How To Connect Rstudio to MYSQL To Read Data

Nnaemeka Okereafor

2021-09-04

About The movie rating dataset:

The code below typically demonstrate how to connect Rstudio to MYSQL database to read data from it. the dataset to read is a movie rating dataset with 44922 observations and 5 variables. To know more about the movie dataset, visit https://www.kaggle.com/rounakbanik/the-movies-dataset.

Databse Connection

library(RODBC)
library(tidyverse)
library("lubridate")
conn1 <- odbcConnect("MYSQL_NEWMAN")
movie_data <- sqlQuery(conn1,"SELECT * FROM movie")
head(movie_data, n=25)
##    userid movieId                            Title rating  Tymestamp
## 1       1    1371                        Rocky III      3 1260759135
## 2       1    1405                            Greed      1 1260759203
## 3       1    2105                     American Pie      4 1260759139
## 4       1    2193                         My Tutor      2 1260759198
## 5       1    2294   Jay and Silent Bob Strike Back      2 1260759108
## 6       1    2455             Confidentially Yours      3 1260759113
## 7       2      17                         The Dark      5  835355681
## 8       2      62            2001: A Space Odyssey      3  835355749
## 9       2     110                Three Colors: Red      4  835355532
## 10      2     144                  Wings of Desire      3  835356016
## 11      2     150                          48 Hrs.      5  835355395
## 12      2     153              Lost in Translation      4  835355441
## 13      2     161                   Ocean's Eleven      3  835355493
## 14      2     165       Back to the Future Part II      3  835355441
## 15      2     168    Star Trek IV: The Voyage Home      3  835355710
## 16      2     185               A Clockwork Orange      3  835355511
## 17      2     186              Lucky Number Slevin      3  835355664
## 18      2     222 Berlin: Symphony of a Great City      5  835355840
## 19      2     223                          Rebecca      1  835355749
## 20      2     225                      Man of Iron      3  835355552
## 21      2     235                      Stand by Me      3  835355664
## 22      2     248            Pocketful of Miracles      3  835355896
## 23      2     253                 Live and Let Die      4  835355511
## 24      2     261            Cat on a Hot Tin Roof      4  835355681
## 25      2     265                     Lili Marleen      5  835355697

Dataset Dimension

dim(movie_data)
## [1] 44922     5

Names of Movies

movies<-unique(movie_data$Title)
movies
##    [1] "Rocky III"                                                                          
##    [2] "Greed"                                                                              
##    [3] "American Pie"                                                                       
##    [4] "My Tutor"                                                                           
##    [5] "Jay and Silent Bob Strike Back"                                                     
##    [6] "Confidentially Yours"                                                               
##    [7] "The Dark"                                                                           
##    [8] "2001: A Space Odyssey"                                                              
##    [9] "Three Colors: Red"                                                                  
##   [10] "Wings of Desire"                                                                    
##   [11] "48 Hrs."                                                                            
##   [12] "Lost in Translation"                                                                
##   [13] "Ocean's Eleven"                                                                     
##   [14] "Back to the Future Part II"                                                         
##   [15] "Star Trek IV: The Voyage Home"                                                      
##   [16] "A Clockwork Orange"                                                                 
##   [17] "Lucky Number Slevin"                                                                
##   [18] "Berlin: Symphony of a Great City"                                                   
##   [19] "Rebecca"                                                                            
##   [20] "Man of Iron"                                                                        
##   [21] "Stand by Me"                                                                        
##   [22] "Pocketful of Miracles"                                                              
##   [23] "Live and Let Die"                                                                   
##   [24] "Cat on a Hot Tin Roof"                                                              
##   [25] "Lili Marleen"                                                                       
##   [26] "Contempt"                                                                           
##   [27] "Batman Begins"                                                                      
##   [28] "The White Sound"                                                                    
##   [29] "Dave Chappelle's Block Party"                                                       
##   [30] "Terminator 3: Rise of the Machines"                                                 
##   [31] "The Science of Sleep"                                                               
##   [32] "Catwoman"                                                                           
##   [33] "Grbavica: The Land of My Dreams"                                                    
##   [34] "True Romance"                                                                       
##   [35] "Night on Earth"                                                                     
##   [36] "Cockles and Muscles"                                                                
##   [37] "The Devil Wears Prada"                                                              
##   [38] "Batman Returns"                                                                     
##   [39] "A Nightmare on Elm Street"                                                          
##   [40] "La Strada"                                                                          
##   [41] "Summer in Berlin"                                                                   
##   [42] "Romeo + Juliet"                                                                     
##   [43] "Sissi"                                                                              
##   [44] "My Own Private Idaho"                                                               
##   [45] "Monsoon Wedding"                                                                    
##   [46] "The Green Mile"                                                                     
##   [47] "Reservoir Dogs"                                                                     
##   [48] "Love Actually"                                                                      
##   [49] "Notting Hill"                                                                       
##   [50] "Once Were Warriors"                                                                 
##   [51] "Not Here to Be Loved"                                                               
##   [52] "Psycho"                                                                             
##   [53] "Fight Club"                                                                         
##   [54] "The Poseidon Adventure"                                                             
##   [55] "Bread and Tulips"                                                                   
##   [56] "Monsters, Inc."                                                                     
##   [57] "Wag the Dog"                                                                        
##   [58] "Big Fish"                                                                           
##   [59] "Silent Hill"                                                                        
##   [60] "The Hours"                                                                          
##   [61] "The Conversation"                                                                   
##   [62] "Solaris"                                                                            
##   [63] "The Last Samurai"                                                                   
##   [64] "The Marriage of Maria Braun"                                                        
##   [65] "The Killing"                                                                        
##   [66] "Live Flesh"                                                                         
##   [67] "The Million Dollar Hotel"                                                           
##   [68] "To Kill a Mockingbird"                                                              
##   [69] "Monsieur  Hulot's Holiday"                                                          
##   [70] "Finding Neverland"                                                                  
##   [71] "Shortbus"                                                                           
##   [72] "Rope"                                                                               
##   [73] "All the Way Boys"                                                                   
##   [74] "The Ewok Adventure"                                                                 
##   [75] "Say Anything..."                                                                    
##   [76] "Tuya's Marriage"                                                                    
##   [77] "Young and Innocent"                                                                 
##   [78] "A Very Long Engagement"                                                             
##   [79] "License to Wed"                                                                     
##   [80] "Loose Screws"                                                                       
##   [81] "Confession of a Child of the Century"                                               
##   [82] "Italian for Beginners"                                                              
##   [83] "Donnie Darko"                                                                       
##   [84] "20,000 Leagues Under the Sea"                                                       
##   [85] "The 39 Steps"                                                                       
##   [86] "Casablanca"                                                                         
##   [87] "Jurassic Park"                                                                      
##   [88] "Rain Man"                                                                           
##   [89] "Cube"                                                                               
##   [90] "Tough Enough"                                                                       
##   [91] "The Day After Tomorrow"                                                             
##   [92] "Aliens vs Predator: Requiem"                                                        
##   [93] "Popular Music"                                                                      
##   [94] "As It Is in Heaven"                                                                 
##   [95] "The Man with the Golden Arm"                                                        
##   [96] "The Terminal"                                                                       
##   [97] "The Grapes of Wrath"                                                                
##   [98] "Sleepless in Seattle"                                                               
##   [99] "Cool Hand Luke"                                                                     
##  [100] "The Big Sleep"                                                                      
##  [101] "The Thomas Crown Affair"                                                            
##  [102] "Blood: The Last Vampire"                                                            
##  [103] "Arlington Road"                                                                     
##  [104] "Point Break"                                                                        
##  [105] "Dreamgirls"                                                                         
##  [106] "Princesses"                                                                         
##  [107] "The Talented Mr. Ripley"                                                            
##  [108] "Because I Said So"                                                                  
##  [109] "Notes on a Scandal"                                                                 
##  [110] "Bridge to Terabithia"                                                               
##  [111] "The Dreamers"                                                                       
##  [112] "Dogtown and Z-Boys"                                                                 
##  [113] "Torrente 3 The Protector"                                                           
##  [114] "Blood Diamond"                                                                      
##  [115] "Rocky IV"                                                                           
##  [116] "Sweet Sixteen"                                                                      
##  [117] "Houseboat"                                                                          
##  [118] "Gleaming the Cube"                                                                  
##  [119] "Superstar: The Karen Carpenter Story"                                               
##  [120] "Mirror"                                                                             
##  [121] "Imagine Me & You"                                                                   
##  [122] "Transformers"                                                                       
##  [123] "Who Killed Bambi?"                                                                  
##  [124] "Or (My Treasure)"                                                                   
##  [125] "The Butterfly Effect"                                                               
##  [126] "My Name Is Bruce"                                                                   
##  [127] "Ask the Dust"                                                                       
##  [128] "Fools Rush In"                                                                      
##  [129] "The Most Dangerous Game"                                                            
##  [130] "Aguirre: The Wrath of God"                                                          
##  [131] "The Last Mistress"                                                                  
##  [132] "Anatomy of Hell"                                                                    
##  [133] "Sister Act"                                                                         
##  [134] "The Edge of Heaven"                                                                 
##  [135] "The Wedding Planner"                                                                
##  [136] "The Bachelor"                                                                       
##  [137] "Jack & Sarah"                                                                       
##  [138] "Infinity"                                                                           
##  [139] "Training Day"                                                                       
##  [140] "The Gift"                                                                           
##  [141] "Mr. Holland's Opus"                                                                 
##  [142] "While You Were Sleeping"                                                            
##  [143] "The Pawnshop"                                                                       
##  [144] "X-Men Origins: Wolverine"                                                           
##  [145] "Romeo Must Die"                                                                     
##  [146] "Nick of Time"                                                                       
##  [147] "The Getaway"                                                                        
##  [148] "The Badge"                                                                          
##  [149] "Roustabout"                                                                         
##  [150] "The Last Castle"                                                                    
##  [151] "Solar Crisis"                                                                       
##  [152] "Rush Hour"                                                                          
##  [153] "Wasabi"                                                                             
##  [154] "Final Fantasy: The Spirits Within"                                                  
##  [155] "Light of Day"                                                                       
##  [156] "Color of Night"                                                                     
##  [157] "Kiss of the Dragon"                                                                 
##  [158] "James Dean"                                                                         
##  [159] "Carla's Song"                                                                       
##  [160] "One Night at McCool's"                                                              
##  [161] "Fantastic Voyage"                                                                   
##  [162] "Music Box"                                                                          
##  [163] "The Golden Compass"                                                                 
##  [164] "Cold Mountain"                                                                      
##  [165] "Holy Matrimony"                                                                     
##  [166] "Teheran '43"                                                                        
##  [167] "The Chronicles of Narnia: Prince Caspian"                                           
##  [168] "Uncle Buck"                                                                         
##  [169] "Heathers"                                                                           
##  [170] "Titanic"                                                                            
##  [171] "David"                                                                              
##  [172] "American Pie 2"                                                                     
##  [173] "Reality Bites"                                                                      
##  [174] "The Chronicles of Riddick: Dark Fury"                                               
##  [175] "Dr. Jekyll and Mr. Hyde"                                                            
##  [176] "Young Frankenstein"                                                                 
##  [177] "Night Watch"                                                                        
##  [178] "The Big Parade"                                                                     
##  [179] "I Love You to Death"                                                                
##  [180] "Frankenstein Created Woman"                                                         
##  [181] "The Projected Man"                                                                  
##  [182] "Shadows in Paradise"                                                                
##  [183] "Run Lola Run"                                                                       
##  [184] "Syriana"                                                                            
##  [185] "Underworld"                                                                         
##  [186] "Bang, Boom, Bang"                                                                   
##  [187] "Mrs. Doubtfire"                                                                     
##  [188] "The Good Shepherd"                                                                  
##  [189] "The Cave of the Yellow Dog"                                                         
##  [190] "Get Carter"                                                                         
##  [191] "Mothra vs. Godzilla"                                                                
##  [192] "Fahrenheit 9/11"                                                                    
##  [193] "Twin Peaks: Fire Walk with Me"                                                      
##  [194] "Two Brothers"                                                                       
##  [195] "Hidalgo"                                                                            
##  [196] "Reign Over Me"                                                                      
##  [197] "The Bourne Supremacy"                                                               
##  [198] "The Searchers"                                                                      
##  [199] "Battle Royale"                                                                      
##  [200] "The Prize"                                                                          
##  [201] "Boogie Nights"                                                                      
##  [202] "Waiter"                                                                             
##  [203] "Miffo"                                                                              
##  [204] "The Very Thought of You"                                                            
##  [205] "Top of the Food Chain"                                                              
##  [206] "Star 80"                                                                            
##  [207] "House of Dracula"                                                                   
##  [208] "Downhill Racer"                                                                     
##  [209] "Best Worst Movie"                                                                   
##  [210] "New York Doll"                                                                      
##  [211] "The Nomi Song"                                                                      
##  [212] "Indestructible Man"                                                                 
##  [213] "Scarface"                                                                           
##  [214] "Knockin' on Heaven's Door"                                                          
##  [215] "A River Runs Through It"                                                            
##  [216] "Ghost Rider"                                                                        
##  [217] "A Brief History of Time"                                                            
##  [218] "Speed 2: Cruise Control"                                                            
##  [219] "Escape from the Planet of the Apes"                                                 
##  [220] "Don Juan DeMarco"                                                                   
##  [221] "We Own the Night"                                                                   
##  [222] "Hard Target"                                                                        
##  [223] "Cyberjack"                                                                          
##  [224] "Madame Bovary"                                                                      
##  [225] "Pleasantville"                                                                      
##  [226] "The Red Elvis"                                                                      
##  [227] "Secret Agent"                                                                       
##  [228] "André Hazes, Zij Gelooft in Mij"                                                    
##  [229] "Don't Make Waves"                                                                   
##  [230] "Read It and Weep"                                                                   
##  [231] "Love Is the Devil: Study for a Portrait of Francis Bacon"                           
##  [232] "Ken Park"                                                                           
##  [233] "The Garden of Eden"                                                                 
##  [234] "My Best Friend's Wedding"                                                           
##  [235] "The Endless Summer"                                                                 
##  [236] "To Be or Not to Be"                                                                 
##  [237] "Dead Poets Society"                                                                 
##  [238] "Grill Point"                                                                        
##  [239] "Bollywood/Hollywood"                                                                
##  [240] "Eyes Wide Shut"                                                                     
##  [241] "Terminator Salvation"                                                               
##  [242] "Harry Potter and the Philosopher's Stone"                                           
##  [243] "The Living Daylights"                                                               
##  [244] "The Sixth Sense"                                                                    
##  [245] "The Passion of Joan of Arc"                                                         
##  [246] "Almost Famous"                                                                      
##  [247] "Dawn of the Dead"                                                                   
##  [248] "The Discovery of Heaven"                                                            
##  [249] "Rocky V"                                                                            
##  [250] "Nostalgia"                                                                          
##  [251] "Cutthroat Island"                                                                   
##  [252] "Casino"                                                                             
##  [253] "Blackmail"                                                                          
##  [254] "Interview with the Vampire"                                                         
##  [255] "Rosemary's Baby"                                                                    
##  [256] "Parenthood"                                                                         
##  [257] "Cleopatra Jones and the Casino of Gold"                                             
##  [258] "Avalon"                                                                             
##  [259] "Local Color"                                                                        
##  [260] "The Tunnel"                                                                         
##  [261] "Beetlejuice"                                                                        
##  [262] "That Man from Rio"                                                                  
##  [263] "Shriek If You Know What I Did Last Friday the Thirteenth"                           
##  [264] "And Then There Were None"                                                           
##  [265] "Muxmäuschenstill"                                                                   
##  [266] "Under the Sand"                                                                     
##  [267] "5 Card Stud"                                                                        
##  [268] "Carry On Doctor"                                                                    
##  [269] "Wayne's World 2"                                                                    
##  [270] "Beloved Enemy"                                                                      
##  [271] "Hero at Large"                                                                      
##  [272] "Walk on Water"                                                                      
##  [273] "Men in Black II"                                                                    
##  [274] "The Hidden Fortress"                                                                
##  [275] "The Rapture"                                                                        
##  [276] "Thelma & Louise"                                                                    
##  [277] "School of Rock"                                                                     
##  [278] "King Kong vs. Godzilla"                                                             
##  [279] "Wedlock"                                                                            
##  [280] "Jacob's Ladder"                                                                     
##  [281] "The Bourne Identity"                                                                
##  [282] "Spanglish"                                                                          
##  [283] "Star Trek: The Motion Picture"                                                      
##  [284] "Teenage Mutant Ninja Turtles III"                                                   
##  [285] "The Miracle of Bern"                                                                
##  [286] "Hostel"                                                                             
##  [287] "The Soft Skin"                                                                      
##  [288] "Marie Antoinette"                                                                   
##  [289] "The Breakfast Club"                                                                 
##  [290] "The Addams Family"                                                                  
##  [291] "The Three Musketeers"                                                               
##  [292] "Million Dollar Baby"                                                                
##  [293] "Predator 2"                                                                         
##  [294] "Savior"                                                                             
##  [295] "La Chienne"                                                                         
##  [296] "Ring of Fire II: Blood and Steel"                                                   
##  [297] "Heart of the Country"                                                               
##  [298] "Harry Potter and the Prisoner of Azkaban"                                           
##  [299] "The Prisoner of Zenda"                                                              
##  [300] "The House of the Spirits"                                                           
##  [301] "Earth"                                                                              
##  [302] "Sleepy Hollow"                                                                      
##  [303] "The War of the Gargantuas"                                                          
##  [304] "Beavis and Butt-Head Do America"                                                    
##  [305] "Red Beard"                                                                          
##  [306] "Dark Blue Almost Black"                                                             
##  [307] "The Wrong Trousers"                                                                 
##  [308] "The Great Dictator"                                                                 
##  [309] "The Yes Men"                                                                        
##  [310] "Iron Eagle III"                                                                     
##  [311] "A Good Marriage"                                                                    
##  [312] "Barry Lyndon"                                                                       
##  [313] "Ariel"                                                                              
##  [314] "Four Rooms"                                                                         
##  [315] "Judgment Night"                                                                     
##  [316] "Star Wars"                                                                          
##  [317] "American Beauty"                                                                    
##  [318] "Dancer in the Dark"                                                                 
##  [319] "Metropolis"                                                                         
##  [320] "Pirates of the Caribbean: The Curse of the Black Pearl"                             
##  [321] "Jarhead"                                                                            
##  [322] "Miami Vice"                                                                         
##  [323] "Armageddon"                                                                         
##  [324] "Leon: The Professional"                                                             
##  [325] "Snatch"                                                                             
##  [326] "The Lord of the Rings"                                                              
##  [327] "Breaking the Waves"                                                                 
##  [328] "Akira"                                                                              
##  [329] "Star Trek III: The Search for Spock"                                                
##  [330] "The Arrival of a Train at La Ciotat"                                                
##  [331] "Edward Scissorhands"                                                                
##  [332] "Ocean's Twelve"                                                                     
##  [333] "Breakfast at Tiffany's"                                                             
##  [334] "28 Days Later"                                                                      
##  [335] "Star Trek V: The Final Frontier"                                                    
##  [336] "The Big Blue"                                                                       
##  [337] "Saw"                                                                                
##  [338] "Minority Report"                                                                    
##  [339] "Star Trek: Generations"                                                             
##  [340] "Back to the Future Part III"                                                        
##  [341] "Saw III"                                                                            
##  [342] "Saw II"                                                                             
##  [343] "Ali: Fear Eats the Soul"                                                            
##  [344] "Rumble Fish"                                                                        
##  [345] "The Wanderers"                                                                      
##  [346] "Young Adam"                                                                         
##  [347] "Zatoichi"                                                                           
##  [348] "Willy Wonka & the Chocolate Factory"                                                
##  [349] "High Noon"                                                                          
##  [350] "Beverly Hills Cop III"                                                              
##  [351] "Rome, Open City"                                                                    
##  [352] "Broken Flowers"                                                                     
##  [353] "Mystic River"                                                                       
##  [354] "Once Upon a Time in the West"                                                       
##  [355] "Summer Storm"                                                                       
##  [356] "The Good, the Bad and the Ugly"                                                     
##  [357] "Human Nature"                                                                       
##  [358] "Klute"                                                                              
##  [359] "Bandyta"                                                                            
##  [360] "7 Virgins"                                                                          
##  [361] "Wild at Heart"                                                                      
##  [362] "Shaft in Africa"                                                                    
##  [363] "Flashdance"                                                                         
##  [364] "D.E.B.S."                                                                           
##  [365] "Basquiat"                                                                           
##  [366] "Die Hard"                                                                           
##  [367] "The Man Who Knew Too Much"                                                          
##  [368] "Final Fantasy VII: Advent Children"                                                 
##  [369] "Beauty and the Beast"                                                               
##  [370] "Saw IV"                                                                             
##  [371] "Ben-Hur"                                                                            
##  [372] "Harry Potter and the Goblet of Fire"                                                
##  [373] "Pulp Fiction"                                                                       
##  [374] "Murder She Said"                                                                    
##  [375] "Monty Python and the Holy Grail"                                                    
##  [376] "Kolya"                                                                              
##  [377] "Annaluise & Anton"                                                                  
##  [378] "Los Olvidados"                                                                      
##  [379] "Lolita"                                                                             
##  [380] "Night and Fog"                                                                      
##  [381] "Roman Holiday"                                                                      
##  [382] "M"                                                                                  
##  [383] "Barren Lives"                                                                       
##  [384] "Brief Encounter"                                                                    
##  [385] "Broken Blossoms"                                                                    
##  [386] "Meet Me in St. Louis"                                                               
##  [387] "The Bank Dick"                                                                      
##  [388] "Bullitt"                                                                            
##  [389] "Cars"                                                                               
##  [390] "Dead Man"                                                                           
##  [391] "Galaxy Quest"                                                                       
##  [392] "Don't Look Now"                                                                     
##  [393] "Madagascar"                                                                         
##  [394] "Straw Dogs"                                                                         
##  [395] "Whale Rider"                                                                        
##  [396] "The Third Man"                                                                      
##  [397] "Elevator to the Gallows"                                                            
##  [398] "Eight Miles High"                                                                   
##  [399] "Rocky Balboa"                                                                       
##  [400] "Hannibal Rising"                                                                    
##  [401] "Hollywoodland"                                                                      
##  [402] "Letters from Iwo Jima"                                                              
##  [403] "Lonely Hearts"                                                                      
##  [404] "Don't Worry, I'm Fine"                                                              
##  [405] "Lotte from Gadgetville"                                                             
##  [406] "Stranger Than Fiction"                                                              
##  [407] "Street Kings"                                                                       
##  [408] "Meet the Robinsons"                                                                 
##  [409] "Sunshine"                                                                           
##  [410] "3-Iron"                                                                             
##  [411] "Bean"                                                                               
##  [412] "Torrente, the Dumb Arm of the Law"                                                  
##  [413] "Torrente 2: Mission in Marbella"                                                    
##  [414] "The Return of the King"                                                             
##  [415] "Rambo III"                                                                          
##  [416] "Y Tu Mamá También"                                                                  
##  [417] "La Vie en Rose"                                                                     
##  [418] "Clean, Shaven"                                                                      
##  [419] "Begotten"                                                                           
##  [420] "The Deathmaker"                                                                     
##  [421] "Thumbsucker"                                                                        
##  [422] "Funeral Parade of Roses"                                                            
##  [423] "28 Weeks Later"                                                                     
##  [424] "Die Hard 2"                                                                         
##  [425] "The Boys from County Clare"                                                         
##  [426] "Meet the Parents"                                                                   
##  [427] "When Saturday Comes"                                                                
##  [428] "Fever Pitch"                                                                        
##  [429] "Erkan & Stefan 2"                                                                   
##  [430] "Erkan & Stefan 3"                                                                   
##  [431] "The Island"                                                                         
##  [432] "The Vanishing"                                                                      
##  [433] "A Time to Kill"                                                                     
##  [434] "Bill & Ted's Bogus Journey"                                                         
##  [435] "The Motorcycle Diaries"                                                             
##  [436] "Comanche Station"                                                                   
##  [437] "Will Penny"                                                                         
##  [438] "Little Buddha"                                                                      
##  [439] "Re-Animator"                                                                        
##  [440] "All the King's Men"                                                                 
##  [441] "Captain Corelli's Mandolin"                                                         
##  [442] "The Forbidden Kingdom"                                                              
##  [443] "The Mummy: Tomb of the Dragon Emperor"                                              
##  [444] "Roger & Me"                                                                         
##  [445] "Stuck on You"                                                                       
##  [446] "Elephant"                                                                           
##  [447] "Viva Zapata!"                                                                       
##  [448] "A Chorus Line"                                                                      
##  [449] "The Next Best Thing"                                                                
##  [450] "Murder, My Sweet"                                                                   
##  [451] "In My Skin"                                                                         
##  [452] "2 Days in Paris"                                                                    
##  [453] "Ninotchka"                                                                          
##  [454] "The Men"                                                                            
##  [455] "Malcolm X"                                                                          
##  [456] "Star Wars: Episode III - Revenge of the Sith"                                       
##  [457] "Memoirs of a Geisha"                                                                
##  [458] "Reclaim Your Brain"                                                                 
##  [459] "FC Venus"                                                                           
##  [460] "Sweet November"                                                                     
##  [461] "Nell"                                                                               
##  [462] "Lucky You"                                                                          
##  [463] "The Elephant Man"                                                                   
##  [464] "Gerry"                                                                              
##  [465] "A Friend of Mine"                                                                   
##  [466] "Bell, Book and Candle"                                                              
##  [467] "The Mourning Forest"                                                                
##  [468] "Persepolis"                                                                         
##  [469] "Silent Light"                                                                       
##  [470] "Addicted to Love"                                                                   
##  [471] "The Perfect Storm"                                                                  
##  [472] "The Time Machine"                                                                   
##  [473] "Voyage to the Bottom of the Sea"                                                    
##  [474] "Within the Woods"                                                                   
##  [475] "The Legend of Paul and Paula"                                                       
##  [476] "Day Watch"                                                                          
##  [477] "À nos amours"                                                                       
##  [478] "Closer"                                                                             
##  [479] "Prime"                                                                              
##  [480] "Married to the Mob"                                                                 
##  [481] "Buddenbrooks"                                                                       
##  [482] "Taxi 3"                                                                             
##  [483] "10 Items or Less"                                                                   
##  [484] "Saving Grace"                                                                       
##  [485] "Asterix at the Olympic Games"                                                       
##  [486] "The Greatest Story Ever Told"                                                       
##  [487] "The Nativity Story"                                                                 
##  [488] "The Lovers"                                                                         
##  [489] "The Tailor of Panama"                                                               
##  [490] "Monsieur Batignole"                                                                 
##  [491] "Short Circuit"                                                                      
##  [492] "The Great Outdoors"                                                                 
##  [493] "Aces Go Places V: The Terracotta Hit"                                               
##  [494] "Ringu"                                                                              
##  [495] "Abraham"                                                                            
##  [496] "The Other Side of the Bed"                                                          
##  [497] "The Adventures of Priscilla, Queen of the Desert"                                   
##  [498] "An American in Paris"                                                               
##  [499] "The Butcher"                                                                        
##  [500] "The First Wives Club"                                                               
##  [501] "Aelita: Queen of Mars"                                                              
##  [502] "Hairspray"                                                                          
##  [503] "Pacific Heights"                                                                    
##  [504] "One on Top of the Other"                                                            
##  [505] "Twelve Plus One"                                                                    
##  [506] "Woman in the Moon"                                                                  
##  [507] "The Cardinal"                                                                       
##  [508] "End of the World"                                                                   
##  [509] "Gods and Monsters"                                                                  
##  [510] "Son of Frankenstein"                                                                
##  [511] "The Goddess"                                                                        
##  [512] "Modern Times"                                                                       
##  [513] "Mr. Smith Goes to Washington"                                                       
##  [514] "Red River"                                                                          
##  [515] "Destroy All Monsters"                                                               
##  [516] "Baise-moi"                                                                          
##  [517] "Frankenstein Conquers the World"                                                    
##  [518] "Three-Step Dance"                                                                   
##  [519] "Bangkok Dangerous"                                                                  
##  [520] "Death Watch"                                                                        
##  [521] "That Most Important Thing: Love"                                                    
##  [522] "The Mask of Fu Manchu"                                                              
##  [523] "88 Minutes"                                                                         
##  [524] "Under Siege 2: Dark Territory"                                                      
##  [525] "Don't Come Knocking"                                                                
##  [526] "U-571"                                                                              
##  [527] "Bagdad Cafe"                                                                        
##  [528] "Mad Dog Coll"                                                                       
##  [529] "Lost Horizon"                                                                       
##  [530] "Girl with a Pearl Earring"                                                          
##  [531] "No Reservations"                                                                    
##  [532] "Flags of Our Fathers"                                                               
##  [533] "Onibaba"                                                                            
##  [534] "Buck Rogers in the 25th Century"                                                    
##  [535] "What Women Want"                                                                    
##  [536] "Team America: World Police"                                                         
##  [537] "Revolutionary Road"                                                                 
##  [538] "Scream"                                                                             
##  [539] "The Sicilian Clan"                                                                  
##  [540] "Scary Movie"                                                                        
##  [541] "Life Is a Long Quiet River"                                                         
##  [542] "Hotel Very Welcome"                                                                 
##  [543] "Bordertown"                                                                         
##  [544] "Just a Question of Love"                                                            
##  [545] "Shall We Dance?"                                                                    
##  [546] "The Count of Monte-Cristo"                                                          
##  [547] "Hot Fuzz"                                                                           
##  [548] "Best Seller"                                                                        
##  [549] "The Guardian"                                                                       
##  [550] "Arctic Tale"                                                                        
##  [551] "A Tale of Two Cities"                                                               
##  [552] "Southland Tales"                                                                    
##  [553] "The Gendarme of St. Tropez"                                                         
##  [554] "The Gendarme in New York"                                                           
##  [555] "Van Gogh"                                                                           
##  [556] "Ghost Dog: The Way of the Samurai"                                                  
##  [557] "Final Analysis"                                                                     
##  [558] "The Legend of Bagger Vance"                                                         
##  [559] "Five Times Two"                                                                     
##  [560] "Windows on Monday"                                                                  
##  [561] "Shark!"                                                                             
##  [562] "Forbidden Games"                                                                    
##  [563] "Carry On Screaming"                                                                 
##  [564] "Carry On Cleo"                                                                      
##  [565] "The Crazy Stranger"                                                                 
##  [566] "Gosford Park"                                                                       
##  [567] "Hum Dil De Chuke Sanam"                                                             
##  [568] "Cruel Intentions 2"                                                                 
##  [569] "Shock"                                                                              
##  [570] "The Chorus"                                                                         
##  [571] "Cousin, Cousine"                                                                    
##  [572] "Count Dracula"                                                                      
##  [573] "A Bridge Too Far"                                                                   
##  [574] "Joshua"                                                                             
##  [575] "The Woman in Red"                                                                   
##  [576] "The Last Laugh"                                                                     
##  [577] "Romeo and Juliet"                                                                   
##  [578] "The Good Thief"                                                                     
##  [579] "Murder by Death"                                                                    
##  [580] "MouseHunt"                                                                          
##  [581] "The Shipping News"                                                                  
##  [582] "The Orphanage"                                                                      
##  [583] "Schtonk!"                                                                           
##  [584] "Idle Hands"                                                                         
##  [585] "Godzilla vs. Mechagodzilla II"                                                      
##  [586] "Sabrina"                                                                            
##  [587] "Love and Other Disasters"                                                           
##  [588] "Yesterday"                                                                          
##  [589] "Ben X"                                                                              
##  [590] "The Village"                                                                        
##  [591] "The 40 Year Old Virgin"                                                             
##  [592] "The Wedding Date"                                                                   
##  [593] "Big Trouble in Little China"                                                        
##  [594] "The Wilby Conspiracy"                                                               
##  [595] "The Wild Geese"                                                                     
##  [596] "Sparrow"                                                                            
##  [597] "Robinson Crusoe on Mars"                                                            
##  [598] "Brothers"                                                                           
##  [599] "xXx"                                                                                
##  [600] "Open Season"                                                                        
##  [601] "Highlander: The Final Dimension"                                                    
##  [602] "Manitou's Shoe"                                                                     
##  [603] "The Happening"                                                                      
##  [604] "K-19: The Widowmaker"                                                               
##  [605] "Deep Blue Sea"                                                                      
##  [606] "Modern Life"                                                                        
##  [607] "The Pearl Color"                                                                    
##  [608] "Bad Boys II"                                                                        
##  [609] "The Out-of-Towners"                                                                 
##  [610] "The War of the Worlds"                                                              
##  [611] "Disclosure"                                                                         
##  [612] "Straight From the Heart"                                                            
##  [613] "Erreur de la banque en votre faveur"                                                
##  [614] "Dread"                                                                              
##  [615] "A Common Thread"                                                                    
##  [616] "Syndromes and a Century"                                                            
##  [617] "Olga's House of Shame"                                                              
##  [618] "The Hunchback of Notre Dame"                                                        
##  [619] "A Kiss Before Dying"                                                                
##  [620] "That Night"                                                                         
##  [621] "Dial 1119"                                                                          
##  [622] "Metamorphosis"                                                                      
##  [623] "Anybody's Son Will Do"                                                              
##  [624] "On Guard"                                                                           
##  [625] "The Pornographers"                                                                  
##  [626] "A Woman, a Gun and a Noodle Shop"                                                   
##  [627] "Big Bad Mama"                                                                       
##  [628] "Don't Look Down"                                                                    
##  [629] "Cheerleaders' Wild Weekend"                                                         
##  [630] "Big Girls Don't Cry... They Get Even"                                               
##  [631] "Wish You Were Here"                                                                 
##  [632] "Gravity"                                                                            
##  [633] "Boat"                                                                               
##  [634] "Horrible Bosses"                                                                    
##  [635] "The Traveler"                                                                       
##  [636] "Adventures of Zatôichi"                                                             
##  [637] "The Mystery of Chess Boxing"                                                        
##  [638] "Righteous Ties"                                                                     
##  [639] "The Holy Modal Rounders: Bound to Lose"                                             
##  [640] "Pufnstuf"                                                                           
##  [641] "The Story of a Cheat"                                                               
##  [642] "Curtains"                                                                           
##  [643] "Longitude"                                                                          
##  [644] "Rio Sex Comedy"                                                                     
##  [645] "The Assassination Bureau"                                                           
##  [646] "American Grindhouse"                                                                
##  [647] "China Seas"                                                                         
##  [648] "Mere Brother Ki Dulhan"                                                             
##  [649] "EVA"                                                                                
##  [650] "Hacker"                                                                             
##  [651] "Kurukshetra"                                                                        
##  [652] "The Dawn Patrol"                                                                    
##  [653] "Hellgate"                                                                           
##  [654] "In the Darkness of the Night"                                                       
##  [655] "Dollman vs. Demonic Toys"                                                           
##  [656] "Secrets of a Soul"                                                                  
##  [657] "Brake"                                                                              
##  [658] "Adventures Of A Taxi Driver"                                                        
##  [659] "The Redeemer: Son of Satan!"                                                        
##  [660] "The Woman with the 5 Elephants"                                                     
##  [661] "'Gator Bait"                                                                        
##  [662] "Blood Ties"                                                                         
##  [663] "This Is 40"                                                                         
##  [664] "Beauty Is Embarrassing"                                                             
##  [665] "Blind Man"                                                                          
##  [666] "You Instead"                                                                        
##  [667] "Edward, My Son"                                                                     
##  [668] "Veerana"                                                                            
##  [669] "The Great Los Angeles Earthquake"                                                   
##  [670] "A Cure for Love"                                                                    
##  [671] "Berkeley Square"                                                                    
##  [672] "Heroic Purgatory"                                                                   
##  [673] "Oscenità"                                                                           
##  [674] "Austin High"                                                                        
##  [675] "The End"                                                                            
##  [676] "Don Q Son of Zorro"                                                                 
##  [677] "One in the Chamber"                                                                 
##  [678] "Gold Diggers in Paris"                                                              
##  [679] "The Caine Mutiny Court-Martial"                                                     
##  [680] "One Tough Cop"                                                                      
##  [681] "Rise of the Zombies"                                                                
##  [682] "Exit"                                                                               
##  [683] "Stolen Seas"                                                                        
##  [684] "Monsieur Ibrahim"                                                                   
##  [685] "Cul-de-sac"                                                                         
##  [686] "Amélie"                                                                             
##  [687] "Alien"                                                                              
##  [688] "Shaft"                                                                              
##  [689] "Being John Malkovich"                                                               
##  [690] "Tomorrow Never Dies"                                                                
##  [691] "Gremlins 2: The New Batch"                                                          
##  [692] "Lethal Weapon 2"                                                                    
##  [693] "The Magnificent Ambersons"                                                          
##  [694] "The Remains of the Day"                                                             
##  [695] "The Host"                                                                           
##  [696] "The Wild Child"                                                                     
##  [697] "The Rules of Attraction"                                                            
##  [698] "Mission to Mars"                                                                    
##  [699] "Sophie Scholl: The Final Days"                                                      
##  [700] "L.A. Confidential"                                                                  
##  [701] "Alice in the Cities"                                                                
##  [702] "Angel Baby"                                                                         
##  [703] "A Tale of Two Sisters"                                                              
##  [704] "Ödipussi"                                                                           
##  [705] "The Inquisitor"                                                                     
##  [706] "Severance"                                                                          
##  [707] "Sky Captain and the World of Tomorrow"                                              
##  [708] "The Nibelungs, Tale 1: Siegfried"                                                   
##  [709] "A Night in Heaven"                                                                  
##  [710] "Twice Upon a Time"                                                                  
##  [711] "Charlie Wilson's War"                                                               
##  [712] "The Unforgiven"                                                                     
##  [713] "Ronin"                                                                              
##  [714] "Eaten Alive!"                                                                       
##  [715] "Lord of Illusions"                                                                  
##  [716] "Felidae"                                                                            
##  [717] "Patton Oswalt: My Weakness Is Strong"                                               
##  [718] "In Bar"                                                                             
##  [719] "CQ"                                                                                 
##  [720] "My Sweet Little Village"                                                            
##  [721] "The Vampire Lovers"                                                                 
##  [722] "The Fifth Element"                                                                  
##  [723] "War of the Worlds"                                                                  
##  [724] "Before Sunrise"                                                                     
##  [725] "Hero"                                                                               
##  [726] "Nausicaä of the Valley of the Wind"                                                 
##  [727] "Raiders of the Lost Ark"                                                            
##  [728] "The Elementary Particles"                                                           
##  [729] "Megacities"                                                                         
##  [730] "Lock, Stock and Two Smoking Barrels"                                                
##  [731] "Bad Education"                                                                      
##  [732] "Catch Me If You Can"                                                                
##  [733] "Nosferatu"                                                                          
##  [734] "A View to a Kill"                                                                   
##  [735] "Evil Dead II"                                                                       
##  [736] "Austin Powers in Goldmember"                                                        
##  [737] "Krull"                                                                              
##  [738] "Antonia's Line"                                                                     
##  [739] "The Simpsons Movie"                                                                 
##  [740] "Pirates of the Caribbean: Dead Man's Chest"                                         
##  [741] "Twelve Monkeys"                                                                     
##  [742] "Talk to Her"                                                                        
##  [743] "Indiana Jones and the Last Crusade"                                                 
##  [744] "Tron"                                                                               
##  [745] "Back to the Future"                                                                 
##  [746] "The Lord of the Rings: The Return of the King"                                      
##  [747] "Star Trek II: The Wrath of Khan"                                                    
##  [748] "Maybe... Maybe Not"                                                                 
##  [749] "The Party"                                                                          
##  [750] "The Fisher King"                                                                    
##  [751] "The Interpreter"                                                                    
##  [752] "Paradise Found"                                                                     
##  [753] "Bride of Frankenstein"                                                              
##  [754] "The War of the Roses"                                                               
##  [755] "The King of Comedy"                                                                 
##  [756] "Breathless"                                                                         
##  [757] "The Edukators"                                                                      
##  [758] "Strange Days"                                                                       
##  [759] "Snakes on a Plane"                                                                  
##  [760] "Inspector Gadget"                                                                   
##  [761] "Magnolia"                                                                           
##  [762] "Everything is Illuminated"                                                          
##  [763] "Seven Samurai"                                                                      
##  [764] "Miller's Crossing"                                                                  
##  [765] "Mala Noche"                                                                         
##  [766] "Short Sharp Shock"                                                                  
##  [767] "The Pianist"                                                                        
##  [768] "Summer '04"                                                                         
##  [769] "Caché"                                                                              
##  [770] "Leaving Las Vegas"                                                                  
##  [771] "Junior Size 36"                                                                     
##  [772] "Bonnie and Clyde"                                                                   
##  [773] "Shaft's Big Score!"                                                                 
##  [774] "Grizzly Man"                                                                        
##  [775] "Monster"                                                                            
##  [776] "Killing Zoe"                                                                        
##  [777] "Fire"                                                                               
##  [778] "Ed Wood"                                                                            
##  [779] "The Horse Whisperer"                                                                
##  [780] "Jaws: The Revenge"                                                                  
##  [781] "Sunset Boulevard"                                                                   
##  [782] "Munich"                                                                             
##  [783] "La Jetée"                                                                           
##  [784] "Annie Hall"                                                                         
##  [785] "All the President's Men"                                                            
##  [786] "Birdman of Alcatraz"                                                                
##  [787] "The City of Lost Children"                                                          
##  [788] "Mother India"                                                                       
##  [789] "Godzilla"                                                                           
##  [790] "The Lady Vanishes"                                                                  
##  [791] "Ice Age: The Meltdown"                                                              
##  [792] "Kindergarten Cop"                                                                   
##  [793] "Mission: Impossible"                                                                
##  [794] "Mission: Impossible II"                                                             
##  [795] "The Magnificent Seven"                                                              
##  [796] "Dog Day Afternoon"                                                                  
##  [797] "The Manchurian Candidate"                                                           
##  [798] "Adam's Apples"                                                                      
##  [799] "The Thirteenth Floor"                                                               
##  [800] "The Thing"                                                                          
##  [801] "Escape from New York"                                                               
##  [802] "The Prestige"                                                                       
##  [803] "In My Father's Den"                                                                 
##  [804] "Breaking and Entering"                                                              
##  [805] "Mr. Bean's Holiday"                                                                 
##  [806] "The Vexxer"                                                                         
##  [807] "The Fountain"                                                                       
##  [808] "Me and You and Everyone We Know"                                                    
##  [809] "Out of Sight"                                                                       
##  [810] "The Contract"                                                                       
##  [811] "Gothika"                                                                            
##  [812] "Pandora's Box"                                                                      
##  [813] "The Beach"                                                                          
##  [814] "The Diving Bell and the Butterfly"                                                  
##  [815] "Irma la Douce"                                                                      
##  [816] "Common Law Cabin"                                                                   
##  [817] "More About the Children of Noisy Village"                                           
##  [818] "Zaat"                                                                               
##  [819] "Sawdust and Tinsel"                                                                 
##  [820] "Kill Bill: Vol. 2"                                                                  
##  [821] "Dogville"                                                                           
##  [822] "Blind Date"                                                                         
##  [823] "Cinderella Man"                                                                     
##  [824] "Halloween"                                                                          
##  [825] "Perfume: The Story of a Murderer"                                                   
##  [826] "Faster, Pussycat! Kill! Kill!"                                                      
##  [827] "Forces of Nature"                                                                   
##  [828] "An Elephant Can Be Extremely Deceptive"                                             
##  [829] "Black Rain"                                                                         
##  [830] "The Bunker"                                                                         
##  [831] "The Accidental Gangster and the Mistaken Courtesean"                                
##  [832] "My Life Without Me"                                                                 
##  [833] "Kill Bill: Vol. 1"                                                                  
##  [834] "Man of Marble"                                                                      
##  [835] "Muriel's Wedding"                                                                   
##  [836] "Ice Age"                                                                            
##  [837] "A Close Shave"                                                                      
##  [838] "The Matrix Revolutions"                                                             
##  [839] "On Her Majesty's Secret Service"                                                    
##  [840] "Oldboy"                                                                             
##  [841] "Dune"                                                                               
##  [842] "Bringing Up Baby"                                                                   
##  [843] "Heat"                                                                               
##  [844] "Gloomy Sunday"                                                                      
##  [845] "Farewell, My Lovely"                                                                
##  [846] "Beyond Rangoon"                                                                     
##  [847] "Traffic"                                                                            
##  [848] "Hulk"                                                                               
##  [849] "Stomp the Yard"                                                                     
##  [850] "Exodus"                                                                             
##  [851] "The Door in the Floor"                                                              
##  [852] "eXistenZ"                                                                           
##  [853] "An Unfinished Life"                                                                 
##  [854] "Zodiac"                                                                             
##  [855] "Manderlay"                                                                          
##  [856] "Enough"                                                                             
##  [857] "8 Women"                                                                            
##  [858] "Swept from the Sea"                                                                 
##  [859] "Mr. Deeds"                                                                          
##  [860] "Totally Blonde"                                                                     
##  [861] "The Glass House"                                                                    
##  [862] "Z"                                                                                  
##  [863] "Postal"                                                                             
##  [864] "Indochine"                                                                          
##  [865] "Tears of the Black Tiger"                                                           
##  [866] "The Fearless Vampire Killers"                                                       
##  [867] "My Darling Clementine"                                                              
##  [868] "Frankenstein's Castle of Freaks"                                                    
##  [869] "Anyone Can Play"                                                                    
##  [870] "What's New Pussycat?"                                                               
##  [871] "Get Out Your Handkerchiefs"                                                         
##  [872] "Sex and the City"                                                                   
##  [873] "Farewell, Friend"                                                                   
##  [874] "Keeping the Faith"                                                                  
##  [875] "An American Tail"                                                                   
##  [876] "The Lost Continent"                                                                 
##  [877] "Dark Horse"                                                                         
##  [878] "Beowulf"                                                                            
##  [879] "We're No Angels"                                                                    
##  [880] "Nosferatu the Vampyre"                                                              
##  [881] "Three Kings"                                                                        
##  [882] "What Have You Done to Solange?"                                                     
##  [883] "Christmas in Boston"                                                                
##  [884] "Wizards of the Lost Kingdom"                                                        
##  [885] "Elite Squad"                                                                        
##  [886] "Run, Fatboy, Run"                                                                   
##  [887] "Blindness"                                                                          
##  [888] "Deep Impact"                                                                        
##  [889] "Twilight"                                                                           
##  [890] "Children of the Corn: Revelation"                                                   
##  [891] "Carriers"                                                                           
##  [892] "Park Row"                                                                           
##  [893] "Hour of the Gun"                                                                    
##  [894] "The Yakuza Papers, Vol. 1: Battles Without Honor and Humanity"                      
##  [895] "Take Out"                                                                           
##  [896] "Once in a Lifetime: The Extraordinary Story of the New York Cosmos"                 
##  [897] "Man's Favorite Sport?"                                                              
##  [898] "The Mikado"                                                                         
##  [899] "The Heart of the World"                                                             
##  [900] "Sundome"                                                                            
##  [901] "Young Black Stallion"                                                               
##  [902] "Dear Brigitte"                                                                      
##  [903] "Blade Runner"                                                                       
##  [904] "The Assassination of Richard Nixon"                                                 
##  [905] "Walk the Line"                                                                      
##  [906] "Muscle Beach Party"                                                                 
##  [907] "Jönssonligans största kupp"                                                         
##  [908] "In Time"                                                                            
##  [909] "The Turkish Gambit"                                                                 
##  [910] "Sixtynine"                                                                          
##  [911] "The Powerpuff Girls Movie"                                                          
##  [912] "American History X"                                                                 
##  [913] "Return of the Jedi"                                                                 
##  [914] "Rocky"                                                                              
##  [915] "Lassie Come Home"                                                                   
##  [916] "Space Jam"                                                                          
##  [917] "Belle Époque"                                                                       
##  [918] "House of 1000 Corpses"                                                              
##  [919] "Carry On Cowboy"                                                                    
##  [920] "Charlie and the Chocolate Factory"                                                  
##  [921] "Mean Streets"                                                                       
##  [922] "The Outsiders"                                                                      
##  [923] "The Blue Angel"                                                                     
##  [924] "King Kong"                                                                          
##  [925] "Schindler's List"                                                                   
##  [926] "Vertigo"                                                                            
##  [927] "Sissi: The Fateful Years of an Empress"                                             
##  [928] "Requiem"                                                                            
##  [929] "Dances with Wolves"                                                                 
##  [930] "Harry Potter and the Half-Blood Prince"                                             
##  [931] "Gattaca"                                                                            
##  [932] "The Omen"                                                                           
##  [933] "Planet of the Apes"                                                                 
##  [934] "Lawrence of Arabia"                                                                 
##  [935] "Double Indemnity"                                                                   
##  [936] "Mulholland Drive"                                                                   
##  [937] "The Weeping Camel"                                                                  
##  [938] "The Departed"                                                                       
##  [939] "Little Children"                                                                    
##  [940] "Mongolian Ping Pong"                                                                
##  [941] "The Last King of Scotland"                                                          
##  [942] "The Bridge"                                                                         
##  [943] "Bring It On"                                                                        
##  [944] "Cape Fear"                                                                          
##  [945] "Hitman"                                                                             
##  [946] "Liar Liar"                                                                          
##  [947] "The Professional"                                                                   
##  [948] "Chelsea Girls"                                                                      
##  [949] "Con Air"                                                                            
##  [950] "Iron Man"                                                                           
##  [951] "To End All Wars"                                                                    
##  [952] "May Fools"                                                                          
##  [953] "The Piano Teacher"                                                                  
##  [954] "A Perfect Murder"                                                                   
##  [955] "4 Months, 3 Weeks and 2 Days"                                                       
##  [956] "Secret Sunshine"                                                                    
##  [957] "The Patriot"                                                                        
##  [958] "Romeo Is Bleeding"                                                                  
##  [959] "Payback"                                                                            
##  [960] "Out of Time"                                                                        
##  [961] "The Whole Ten Yards"                                                                
##  [962] "The Cotton Club"                                                                    
##  [963] "The Revengers' Comedies"                                                            
##  [964] "Eastern Promises"                                                                   
##  [965] "Valkyrie"                                                                           
##  [966] "Chasing Amy"                                                                        
##  [967] "Lola"                                                                               
##  [968] "The Last Mimzy"                                                                     
##  [969] "Crusade in Jeans"                                                                   
##  [970] "A Pyromaniac's Love Story"                                                          
##  [971] "Executive Decision"                                                                 
##  [972] "The Young Girls of Rochefort"                                                       
##  [973] "Children of Paradise"                                                               
##  [974] "Running Out of Time"                                                                
##  [975] "Nobody Knows"                                                                       
##  [976] "Code 46"                                                                            
##  [977] "Only the Lonely"                                                                    
##  [978] "Deconstructing Harry"                                                               
##  [979] "Two Weeks Notice"                                                                   
##  [980] "Memoirs of an Invisible Man"                                                        
##  [981] "15 Minutes"                                                                         
##  [982] "24 Hour Party People"                                                               
##  [983] "Adaptation."                                                                        
##  [984] "Pitch Black"                                                                        
##  [985] "Frankenstein"                                                                       
##  [986] "Becoming Jane"                                                                      
##  [987] "Roar"                                                                               
##  [988] "Duck Soup"                                                                          
##  [989] "Frankenstein Unbound"                                                               
##  [990] "The Ghost of Frankenstein"                                                          
##  [991] "Yankee Doodle Dandy"                                                                
##  [992] "My Step Brother Frankenstein"                                                       
##  [993] "A Star Is Born"                                                                     
##  [994] "Rock 'n' Roll Frankenstein"                                                         
##  [995] "Cesar and Rosalie"                                                                  
##  [996] "Ludwig"                                                                             
##  [997] "The Blood of Fu Manchu"                                                             
##  [998] "Legionnaire"                                                                        
##  [999] "Frances"                                                                            
## [1000] "The Thin Man"                                                                       
## [1001] "Fame"                                                                               
## [1002] "After the Wedding"                                                                  
## [1003] "Last of the Renegades"                                                              
## [1004] "Gang War in Milan"                                                                  
## [1005] "The Believer"                                                                       
## [1006] "Blondie of the Follies"                                                             
## [1007] "The Wonderful Crook"                                                                
## [1008] "The French Revolution"                                                              
## [1009] "Kikujiro"                                                                           
## [1010] "Herr Lehmann"                                                                       
## [1011] "Seabiscuit"                                                                         
## [1012] "My Super Ex-Girlfriend"                                                             
## [1013] "French Twist"                                                                       
## [1014] "Jesus of Montreal"                                                                  
## [1015] "Friday the 13th"                                                                    
## [1016] "The Spirit of the Beehive"                                                          
## [1017] "The Executioner"                                                                    
## [1018] "Pepi, Luci, Bom"                                                                    
## [1019] "Krabat and the Legend of the Satanic Mill"                                          
## [1020] "Enigma"                                                                             
## [1021] "December Boys"                                                                      
## [1022] "Holiday for Henrietta"                                                              
## [1023] "Masculin Féminin"                                                                   
## [1024] "Cassandra's Dream"                                                                  
## [1025] "The 11th Hour"                                                                      
## [1026] "Billion Dollar Brain"                                                               
## [1027] "Hang 'em High"                                                                      
## [1028] "A Guide for the Married Man"                                                        
## [1029] "10 Things I Hate About You"                                                         
## [1030] "Drop Zone"                                                                          
## [1031] "Synecdoche, New York"                                                               
## [1032] "Carry On Don't Lose Your Head"                                                      
## [1033] "The Day of the Locust"                                                              
## [1034] "Rendition"                                                                          
## [1035] "The Astronaut Farmer"                                                               
## [1036] "Three of Hearts"                                                                    
## [1037] "Dust Devil"                                                                         
## [1038] "Mercy"                                                                              
## [1039] "Billy Budd"                                                                         
## [1040] "Teorema"                                                                            
## [1041] "Beowulf & Grendel"                                                                  
## [1042] "The Ladykillers"                                                                    
## [1043] "Hiroshima Mon Amour"                                                                
## [1044] "RoboCop"                                                                            
## [1045] "Elvira, Mistress of the Dark"                                                       
## [1046] "The Blue Lagoon"                                                                    
## [1047] "Shooting War"                                                                       
## [1048] "Once"                                                                               
## [1049] "L'Âge d'Or"                                                                         
## [1050] "Cherry, Harry & Raquel!"                                                            
## [1051] "Sky High"                                                                           
## [1052] "Family Plot"                                                                        
## [1053] "I Know Who Killed Me"                                                               
## [1054] "The Dress"                                                                          
## [1055] "The Sand Pebbles"                                                                   
## [1056] "Junior Bonner"                                                                      
## [1057] "Fanny & Alexander"                                                                  
## [1058] "Thirteen at Dinner"                                                                 
## [1059] "Vaya con Dios"                                                                      
## [1060] "Star Command"                                                                       
## [1061] "The Marksman"                                                                       
## [1062] "The Coast Guard"                                                                    
## [1063] "Amigo, Stay Away"                                                                   
## [1064] "The Wages of Fear"                                                                  
## [1065] "Dirty Dancing"                                                                      
## [1066] "American Psycho"                                                                    
## [1067] "L.A. Story"                                                                         
## [1068] "An Angel at My Table"                                                               
## [1069] "Scary Movie 2"                                                                      
## [1070] "Veer-Zaara"                                                                         
## [1071] "The Return of Martin Guerre"                                                        
## [1072] "Orpheus"                                                                            
## [1073] "The Golden Goose"                                                                   
## [1074] "Good Morning Miss Dove"                                                             
## [1075] "Christine"                                                                          
## [1076] "Semi-Tough"                                                                         
## [1077] "Lisa and the Devil"                                                                 
## [1078] "Out of the Past"                                                                    
## [1079] "This Man Must Die"                                                                  
## [1080] "42nd Street"                                                                        
## [1081] "American Graffiti"                                                                  
## [1082] "Amores perros"                                                                      
## [1083] "Brazil"                                                                             
## [1084] "The 400 Blows"                                                                      
## [1085] "The Godfather: Part III"                                                            
## [1086] "Antoine and Colette"                                                                
## [1087] "Beyond Silence"                                                                     
## [1088] "Mambo Italiano"                                                                     
## [1089] "To Catch a Thief"                                                                   
## [1090] "Stranger Than Paradise"                                                             
## [1091] "Dial M for Murder"                                                                  
## [1092] "Rocky II"                                                                           
## [1093] "Prizzi's Honor"                                                                     
## [1094] "Murder in Three Acts"                                                               
## [1095] "Midnight in the Garden of Good and Evil"                                            
## [1096] "East of Eden"                                                                       
## [1097] "Pirates of the Caribbean: At World's End"                                           
## [1098] "The Lost World: Jurassic Park"                                                      
## [1099] "Good bye, Lenin!"                                                                   
## [1100] "Out of Africa"                                                                      
## [1101] "Brother"                                                                            
## [1102] "Chimes at Midnight"                                                                 
## [1103] "Nowhere in Africa"                                                                  
## [1104] "City of Hope"                                                                       
## [1105] "Red Dawn"                                                                           
## [1106] "Sneakers"                                                                           
## [1107] "Dirty Hands"                                                                        
## [1108] "Dr. Cyclops"                                                                        
## [1109] "Seven Blood-Stained Orchids"                                                        
## [1110] "Blondie on a Budget"                                                                
## [1111] "Nuits rouges"                                                                       
## [1112] "The Machinist"                                                                      
## [1113] "The Garden of the Finzi-Continis"                                                   
## [1114] "Spice World"                                                                        
## [1115] "Prince Valiant"                                                                     
## [1116] "Turner & Hooch"                                                                     
## [1117] "Guter Junge"                                                                        
## [1118] "Videodrome"                                                                         
## [1119] "Kebab Connection"                                                                   
## [1120] "Ghostbusters II"                                                                    
## [1121] "I'll Sleep When I'm Dead"                                                           
## [1122] "Working Girl"                                                                       
## [1123] "Dont Look Back"                                                                     
## [1124] "Life Is Beautiful"                                                                  
## [1125] "The Driver"                                                                         
## [1126] "The Bear"                                                                           
## [1127] "The In-Laws"                                                                        
## [1128] "Cloud 9"                                                                            
## [1129] "Atlantis: Milo's Return"                                                            
## [1130] "The Halliday Brand"                                                                 
## [1131] "Salvatore Giuliano"                                                                 
## [1132] "Halloweentown"                                                                      
## [1133] "Scott Walker: 30 Century Man"                                                       
## [1134] "Let's Get Harry"                                                                    
## [1135] "The Celluloid Closet"                                                               
## [1136] "Prom Night IV: Deliver Us from Evil"                                                
## [1137] "Bandido!"                                                                           
## [1138] "Kettle of Fish"                                                                     
## [1139] "Devil in the Flesh"                                                                 
## [1140] "Power"                                                                              
## [1141] "Killer"                                                                             
## [1142] "Nick Carter, Master Detective"                                                      
## [1143] "Alamar"                                                                             
## [1144] "Red Eagle"                                                                          
## [1145] "5 Days of War"                                                                      
## [1146] "The Butter Battle Book"                                                             
## [1147] "Barking Water"                                                                      
## [1148] "High and Dizzy"                                                                     
## [1149] "Anjathe"                                                                            
## [1150] "The Invincible Armour"                                                              
## [1151] "Qualunquemente"                                                                     
## [1152] "The Prey"                                                                           
## [1153] "Very Annie Mary"                                                                    
## [1154] "From 180 & Taller"                                                                  
## [1155] "Barocco"                                                                            
## [1156] "The Crazy Family"                                                                   
## [1157] "Last Woman on Earth"                                                                
## [1158] "Thawing Out"                                                                        
## [1159] "Sang Pemimpi"                                                                       
## [1160] "Five Bloody Graves"                                                                 
## [1161] "St. Louis Blues"                                                                    
## [1162] "The Comedy"                                                                         
## [1163] "Hell's Hinges"                                                                      
## [1164] "The White Reindeer"                                                                 
## [1165] "Ladybug Ladybug"                                                                    
## [1166] "Margaret Thatcher: The Long Walk to Finchley"                                       
## [1167] "Young, Violent, Dangerous"                                                          
## [1168] "Caesar Must Die"                                                                    
## [1169] "Traces of Red"                                                                      
## [1170] "Daydream Believers: The Monkees Story"                                              
## [1171] "Seven and a Half"                                                                   
## [1172] "Bed and Board"                                                                      
## [1173] "Notorious"                                                                          
## [1174] "The Life Aquatic with Steve Zissou"                                                 
## [1175] "The Bridges of Madison County"                                                      
## [1176] "Aparajito"                                                                          
## [1177] "Sweet Smell of Success"                                                             
## [1178] "Rize"                                                                               
## [1179] "The Bounty"                                                                         
## [1180] "Journey to Italy"                                                                   
## [1181] "Same Old Song"                                                                      
## [1182] "Bedazzled"                                                                          
## [1183] "The Fortune Cookie"                                                                 
## [1184] "Crank"                                                                              
## [1185] "Bandidas"                                                                           
## [1186] "Hababam S?n?f? Uyan?yor"                                                            
## [1187] "Jönssonligan får guldfeber"                                                         
## [1188] "The Godfather"                                                                      
## [1189] "Chocolat"                                                                           
## [1190] "The 13th Warrior"                                                                   
## [1191] "Lara Croft: Tomb Raider"                                                            
## [1192] "Amsterdamned"                                                                       
## [1193] "Beat"                                                                               
## [1194] "The Kindred"                                                                        
## [1195] "8 Mile"                                                                             
## [1196] "Poltergeist"                                                                        
## [1197] "The Wing or the Thigh"                                                              
## [1198] "In China They Eat Dogs"                                                             
## [1199] "The Curse of Frankenstein"                                                          
## [1200] "The Lady Eve"                                                                       
## [1201] "The Old Gun"                                                                        
## [1202] "Gone Baby Gone"                                                                     
## [1203] "2061 - Un anno eccezionale"                                                         
## [1204] "Shiloh"                                                                             
## [1205] "The Human Condition II: Road to Eternity"                                           
## [1206] "Rang Birangi"                                                                       
## [1207] "Leben nach Microsoft"                                                               
## [1208] "Hot Wheels Acceleracers: Ignition"                                                  
## [1209] "Grandview, U.S.A."                                                                  
## [1210] "Always"                                                                             
## [1211] "The Hucksters"                                                                      
## [1212] "Wood & Stock: Sexo, Orégano e Rock'n'Roll"                                          
## [1213] "Love, Cheat & Steal"                                                                
## [1214] "Harold's Going Stiff"                                                               
## [1215] "Cockpit"                                                                            
## [1216] "Angel Heart"                                                                        
## [1217] "What's Eating Gilbert Grape"                                                        
## [1218] "The Grudge 2"                                                                       
## [1219] "The Grudge 3"                                                                       
## [1220] "Stage Fright"                                                                       
## [1221] "Fantastic 4: Rise of the Silver Surfer"                                             
## [1222] "Benny's Video"                                                                      
## [1223] "Lara Croft Tomb Raider: The Cradle of Life"                                         
## [1224] "The Lake House"                                                                     
## [1225] "Gappa, the Triphibian Monster"                                                      
## [1226] "Balzac and the Little Chinese Seamstress"                                           
## [1227] "Breakdown"                                                                          
## [1228] "Batman & Robin"                                                                     
## [1229] "Days of Glory"                                                                      
## [1230] "Heartbreak Hotel"                                                                   
## [1231] "Dear Frankie"                                                                       
## [1232] "Good Morning, Vietnam"                                                              
## [1233] "Me, Myself & Irene"                                                                 
## [1234] "Hoosiers"                                                                           
## [1235] "The Night Child"                                                                    
## [1236] "Mega Python vs. Gatoroid"                                                           
## [1237] "Woman of the Lake"                                                                  
## [1238] "Queen of Hearts"                                                                    
## [1239] "Finding Nemo"                                                                       
## [1240] "Apocalypse Now"                                                                     
## [1241] "Amadeus"                                                                            
## [1242] "Terminator 2: Judgment Day"                                                         
## [1243] "Desert Hearts"                                                                      
## [1244] "The Idiots"                                                                         
## [1245] "Downfall"                                                                           
## [1246] "Sunrise: A Song of Two Humans"                                                      
## [1247] "Boyz n the Hood"                                                                    
## [1248] "Twister"                                                                            
## [1249] "The Shining"                                                                        
## [1250] "Licence to Kill"                                                                    
## [1251] "Finding Forrester"                                                                  
## [1252] "Rififi"                                                                             
## [1253] "Tie Me Up! Tie Me Down!"                                                            
## [1254] "The Curse of the Jade Scorpion"                                                     
## [1255] "Samurai II: Duel at Ichijoji Temple"                                                
## [1256] "National Treasure"                                                                  
## [1257] "Kal Ho Naa Ho"                                                                      
## [1258] "You Only Live Twice"                                                                
## [1259] "A Hard Day's Night"                                                                 
## [1260] "Shrek the Third"                                                                    
## [1261] "Duel"                                                                               
## [1262] "Dracula vs. Frankenstein"                                                           
## [1263] "Blondie Knows Best"                                                                 
## [1264] "Soul Assassin"                                                                      
## [1265] "Citizen Kane"                                                                       
## [1266] "Gladiator"                                                                          
## [1267] "Some Like It Hot"                                                                   
## [1268] "The English Patient"                                                                
## [1269] "Fail-Safe"                                                                          
## [1270] "One Flew Over the Cuckoo's Nest"                                                    
## [1271] "The Experiment"                                                                     
## [1272] "Together"                                                                           
## [1273] "Sommersby"                                                                          
## [1274] "Copying Beethoven"                                                                  
## [1275] "Land of Plenty"                                                                     
## [1276] "I Heart Huckabees"                                                                  
## [1277] "Russian Dolls"                                                                      
## [1278] "The Brasher Doubloon"                                                               
## [1279] "Crime of Passion"                                                                   
## [1280] "Death Proof"                                                                        
## [1281] "Cutaway"                                                                            
## [1282] "Cop Land"                                                                           
## [1283] "Stargate"                                                                           
## [1284] "Beste Zeit"                                                                         
## [1285] "Taxi 4"                                                                             
## [1286] "Oscar"                                                                              
## [1287] "Claire's Knee"                                                                      
## [1288] "The Astronaut's Wife"                                                               
## [1289] "Backdraft"                                                                          
## [1290] "The Hands of Orlac"                                                                 
## [1291] "Bloodline"                                                                          
## [1292] "Mary Shelley's Frankenstein"                                                        
## [1293] "Mahogany"                                                                           
## [1294] "Emma"                                                                               
## [1295] "Doctor X"                                                                           
## [1296] "Death Line"                                                                         
## [1297] "Flesh Gordon"                                                                       
## [1298] "Bis zum Ellenbogen"                                                                 
## [1299] "The Party at Kitty and Stud's"                                                      
## [1300] "Les Misérables"                                                                     
## [1301] "Candy"                                                                              
## [1302] "Conversations with My Gardener"                                                     
## [1303] "The Sum of All Fears"                                                               
## [1304] "Shamus"                                                                             
## [1305] "Pharaoh"                                                                            
## [1306] "Ashes and Diamonds"                                                                 
## [1307] "The Fox & the Child"                                                                
## [1308] "L'Avventura"                                                                        
## [1309] "Pumping Iron"                                                                       
## [1310] "The Canterbury Tales"                                                               
## [1311] "The Pledge"                                                                         
## [1312] "Lars and the Real Girl"                                                             
## [1313] "No Country for Old Men"                                                             
## [1314] "Rising Sun"                                                                         
## [1315] "In the Name of the Father"                                                          
## [1316] "Turtles Can Fly"                                                                    
## [1317] "Superbad"                                                                           
## [1318] "Lonesome Cowboys"                                                                   
## [1319] "Transformers: Revenge of the Fallen"                                                
## [1320] "Mad Max 2: The Road Warrior"                                                        
## [1321] "Steel"                                                                              
## [1322] "Dude, Where’s My Car?"                                                              
## [1323] "Bushwhacked"                                                                        
## [1324] "The Legend of the 7 Golden Vampires"                                                
## [1325] "'Twas the Night Before Christmas"                                                   
## [1326] "Vice Versa"                                                                         
## [1327] "Performance"                                                                        
## [1328] "Wizards of Waverly Place: The Movie"                                                
## [1329] "The Message"                                                                        
## [1330] "The Sorcerer's Apprentice"                                                          
## [1331] "Night of the Demons"                                                                
## [1332] "The Neverending Story III: Escape from Fantasia"                                    
## [1333] "Intruder"                                                                           
## [1334] "Paris is Burning"                                                                   
## [1335] "Stick"                                                                              
## [1336] "An Ideal Husband"                                                                   
## [1337] "The Human Condition III: A Soldier's Prayer"                                        
## [1338] "Payment Deferred"                                                                   
## [1339] "At Risk"                                                                            
## [1340] "Girl Shy"                                                                           
## [1341] "The Emigrants"                                                                      
## [1342] "A Taxing Woman"                                                                     
## [1343] "The Wild Angels"                                                                    
## [1344] "Young Mr. Lincoln"                                                                  
## [1345] "Hatchet II"                                                                         
## [1346] "S21: The Khmer Rouge Death Machine"                                                 
## [1347] "Triple Tap"                                                                         
## [1348] "Julie"                                                                              
## [1349] "Don't Touch the Axe"                                                                
## [1350] "Schizo"                                                                             
## [1351] "The Oyster Princess"                                                                
## [1352] "Premium Rush"                                                                       
## [1353] "The End of Poverty?"                                                                
## [1354] "The Even Stevens Movie"                                                             
## [1355] "Now and Forever"                                                                    
## [1356] "The Pet"                                                                            
## [1357] "The Fairy King Of Ar"                                                               
## [1358] "The Pebble and the Penguin"                                                         
## [1359] "Gaslight"                                                                           
## [1360] "!Women Art Revolution"                                                              
## [1361] "Bridesmaids"                                                                        
## [1362] "Judex"                                                                              
## [1363] "The Anniversary"                                                                    
## [1364] "Betty Blowtorch: And Her Amazing True Life Adventures"                              
## [1365] "Wild Tigers I Have Known"                                                           
## [1366] "Tom and Jerry: Shiver Me Whiskers"                                                  
## [1367] "The Lost Valentine"                                                                 
## [1368] "The Education of Little Tree"                                                       
## [1369] "To the Sea!"                                                                        
## [1370] "Circle of Love"                                                                     
## [1371] "Travelling with Pets"                                                               
## [1372] "Hard to Be a God"                                                                   
## [1373] "I Can't Sleep"                                                                      
## [1374] "Hornblower: Loyalty"                                                                
## [1375] "Verlengd Weekend"                                                                   
## [1376] "Blind"                                                                              
## [1377] "The String"                                                                         
## [1378] "Bangkok Traffic Love Story"                                                         
## [1379] "The Saint In London"                                                                
## [1380] "War of the Buttons"                                                                 
## [1381] "Steppenwolf"                                                                        
## [1382] "Contraband"                                                                         
## [1383] "Jinxed!"                                                                            
## [1384] "The Front Line"                                                                     
## [1385] "Santa and the Ice Cream Bunny"                                                      
## [1386] "Homeless to Harvard: The Liz Murray Story"                                          
## [1387] "The Selling"                                                                        
## [1388] "Air: Eating, Sleeping, Waiting and Playing"                                         
## [1389] "The Monkey Hustle"                                                                  
## [1390] "Posti in piedi in paradiso"                                                         
## [1391] "The Walking Dead"                                                                   
## [1392] "China Gate"                                                                         
## [1393] "The Bride Goes Wild"                                                                
## [1394] "Day of the Reaper"                                                                  
## [1395] "Me and the Colonel"                                                                 
## [1396] "Fantasía... 3"                                                                      
## [1397] "Visions of Europe"                                                                  
## [1398] "Anguish"                                                                            
## [1399] "Big Time"                                                                           
## [1400] "The General's Daughter"                                                             
## [1401] "And Along Come Tourists"                                                            
## [1402] "Nocturna"                                                                           
## [1403] "Dragon Hunter"                                                                      
## [1404] "Don's Plum"                                                                         
## [1405] "Once a Thief"                                                                       
## [1406] "The Tortured"                                                                       
## [1407] "Secret Window"                                                                      
## [1408] "Kafka"                                                                              
## [1409] "The Haunted Castle"                                                                 
## [1410] "The Enforcer"                                                                       
## [1411] "The Howling: New Moon Rising"                                                       
## [1412] "Bella Bettien"                                                                      
## [1413] "House of Boys"                                                                      
## [1414] "The Hunter"                                                                         
## [1415] "Scorpio"                                                                            
## [1416] "Anatomy of a Murder"                                                                
## [1417] "Wilbur Wants to Kill Himself"                                                       
## [1418] "Gandhi"                                                                             
## [1419] "Singin' in the Rain"                                                                
## [1420] "The Sea Inside"                                                                     
## [1421] "The World, the Flesh and the Devil"                                                 
## [1422] "The Kite Runner"                                                                    
## [1423] "Valley of Flowers"                                                                  
## [1424] "Dreamland"                                                                          
## [1425] "The Holy Mountain"                                                                  
## [1426] "Robin Hood: Prince of Thieves"                                                      
## [1427] "Rock 'n' Roll High School"                                                          
## [1428] "The Falcon and the Snowman"                                                         
## [1429] "Sarfarosh"                                                                          
## [1430] "Murder!"                                                                            
## [1431] "David Copperfield"                                                                  
## [1432] "Les Visiteurs du Soir"                                                              
## [1433] "Bloodbath at the House of Death"                                                    
## [1434] "The Red and the White"                                                              
## [1435] "Hotel Rwanda"                                                                       
## [1436] "Reindeer Games"                                                                     
## [1437] "Sicko"                                                                              
## [1438] "Yella"                                                                              
## [1439] "Spellbound"                                                                         
## [1440] "Across the Universe"                                                                
## [1441] "The Common Man"                                                                     
## [1442] "Critters"                                                                           
## [1443] "The Cabinet of Dr. Caligari"                                                        
## [1444] "Stolen Kisses"                                                                      
## [1445] "Fargo"                                                                              
## [1446] "Riding Giants"                                                                      
## [1447] "Cube²: Hypercube"                                                                   
## [1448] "Transamerica"                                                                       
## [1449] "Rashomon"                                                                           
## [1450] "Magnetic Rose"                                                                      
## [1451] "Match Point"                                                                        
## [1452] "The Lord of the Rings: The Two Towers"                                              
## [1453] "No End"                                                                             
## [1454] "The Party 2"                                                                        
## [1455] "Blown Away"                                                                         
## [1456] "North by Northwest"                                                                 
## [1457] "The Terminator"                                                                     
## [1458] "Bull Durham"                                                                        
## [1459] "Barton Fink"                                                                        
## [1460] "Swimming Pool"                                                                      
## [1461] "Jurassic Park III"                                                                  
## [1462] "Mon oncle"                                                                          
## [1463] "Apollo 13"                                                                          
## [1464] "Soldier of Orange"                                                                  
## [1465] "Faces"                                                                              
## [1466] "Fantasia"                                                                           
## [1467] "Army of Darkness"                                                                   
## [1468] "The Day the Earth Stood Still"                                                      
## [1469] "Forbidden Planet"                                                                   
## [1470] "Delicatessen"                                                                       
## [1471] "The Miracle Worker"                                                                 
## [1472] "Down by Law"                                                                        
## [1473] "Shaun of the Dead"                                                                  
## [1474] "The Man in the Iron Mask"                                                           
## [1475] "Silly Little Game"                                                                  
## [1476] "Big Trouble"                                                                        
## [1477] "The Ceremony"                                                                       
## [1478] "Foodfight!"                                                                         
## [1479] "Bend It Like Beckham"                                                               
## [1480] "Ocean Heaven"                                                                       
## [1481] "Star Trek VI: The Undiscovered Country"                                             
## [1482] "Hook"                                                                               
## [1483] "Praxis Dr. Hasenbein"                                                               
## [1484] "The Grudge"                                                                         
## [1485] "The Constant Gardener"                                                              
## [1486] "A Mighty Heart"                                                                     
## [1487] "Hostage"                                                                            
## [1488] "The Whole Nine Yards"                                                               
## [1489] "Days of Thunder"                                                                    
## [1490] "Body of Evidence"                                                                   
## [1491] "Hibernatus"                                                                         
## [1492] "The Chronicles of Riddick"                                                          
## [1493] "Michael"                                                                            
## [1494] "The Strange Case of Dr. Jekyll and Mr. Hyde"                                        
## [1495] "Eye of the Devil"                                                                   
## [1496] "The Naked Island"                                                                   
## [1497] "Things We Lost in the Fire"                                                         
## [1498] "Blindsight"                                                                         
## [1499] "The Breach"                                                                         
## [1500] "Jean de Florette"                                                                   
## [1501] "My Best Friend"                                                                     
## [1502] "Sleuth"                                                                             
## [1503] "The Story of O"                                                                     
## [1504] "A Time for Killing"                                                                 
## [1505] "Wild Orchid"                                                                        
## [1506] "The Magdalene Sisters"                                                              
## [1507] "Nirvana"                                                                            
## [1508] "Aladin"                                                                             
## [1509] "Free Money"                                                                         
## [1510] "Aamdani Atthanni Kharcha Rupaiya"                                                   
## [1511] "Wind with the Gone"                                                                 
## [1512] "The Way of the Gun"                                                                 
## [1513] "Bonjour Tristesse"                                                                  
## [1514] "Raw Deal"                                                                           
## [1515] "Double Dragon"                                                                      
## [1516] "The Final Cut"                                                                      
## [1517] "Joe Versus the Volcano"                                                             
## [1518] "Humoresque"                                                                         
## [1519] "The Untouchables"                                                                   
## [1520] "Marnie"                                                                             
## [1521] "Gremlins"                                                                           
## [1522] "TMNT"                                                                               
## [1523] "Samaritan Girl"                                                                     
## [1524] "Breakfast on Pluto"                                                                 
## [1525] "Spy Game"                                                                           
## [1526] "A Shot in the Dark"                                                                 
## [1527] "Bill & Ted's Excellent Adventure"                                                   
## [1528] "The Mummy Returns"                                                                  
## [1529] "Footloose"                                                                          
## [1530] "Lady in the Lake"                                                                   
## [1531] "Superman"                                                                           
## [1532] "Laura"                                                                              
## [1533] "Alexander"                                                                          
## [1534] "In the Bedroom"                                                                     
## [1535] "Along Came a Spider"                                                                
## [1536] "Jakob the Liar"                                                                     
## [1537] "In the Name of the King: A Dungeon Siege Tale"                                      
## [1538] "Westworld"                                                                          
## [1539] "Fallout"                                                                            
## [1540] "Harley Davidson and the Marlboro Man"                                               
## [1541] "All Stars"                                                                          
## [1542] "Good Neighbor Sam"                                                                  
## [1543] "The Crowd"                                                                          
## [1544] "Basic Instinct 2"                                                                   
## [1545] "The Horror of Frankenstein"                                                         
## [1546] "Far from the Madding Crowd"                                                         
## [1547] "The Broken"                                                                         
## [1548] "Reflections in a Golden Eye"                                                        
## [1549] "Underground"                                                                        
## [1550] "One Million Years B.C."                                                             
## [1551] "Billy Elliot"                                                                       
## [1552] "The Private Lives of Pippa Lee"                                                     
## [1553] "Khadak"                                                                             
## [1554] "A Dandy in Aspic"                                                                   
## [1555] "Sissi: The Young Empress"                                                           
## [1556] "Born into Brothels"                                                                 
## [1557] "Touch of Evil"                                                                      
## [1558] "Bird on a Wire"                                                                     
## [1559] "Marlowe"                                                                            
## [1560] "The Revenge of Frankenstein"                                                        
## [1561] "Women on the Verge of a Nervous Breakdown"                                          
## [1562] "Scream 3"                                                                           
## [1563] "La Collectionneuse"                                                                 
## [1564] "Without You I'm Nothing"                                                            
## [1565] "Planet Terror"                                                                      
## [1566] "Erotic Nights of the Living Dead"                                                   
## [1567] "The Creature Walks Among Us"                                                        
## [1568] "Samaritan Zatôichi"                                                                 
## [1569] "The Rolling Stones: Gimme Shelter"                                                  
## [1570] "Oliver Twist"                                                                       
## [1571] "Raising Arizona"                                                                    
## [1572] "Good Will Hunting"                                                                  
## [1573] "The Crime of Padre Amaro"                                                           
## [1574] "The Murderers Are Among Us"                                                         
## [1575] "Night at the Museum"                                                                
## [1576] "Conquest of the Planet of the Apes"                                                 
## [1577] "Sunflower"                                                                          
## [1578] "Taxi"                                                                               
## [1579] "The Polar Express"                                                                  
## [1580] "Barefoot"                                                                           
## [1581] "The Angry Red Planet"                                                               
## [1582] "Union Station"                                                                      
## [1583] "The Reaping"                                                                        
## [1584] "Peas at 5:30"                                                                       
## [1585] "Prelude to a Kiss"                                                                  
## [1586] "Dolls"                                                                              
## [1587] "A Few Good Men"                                                                     
## [1588] "Lethal Weapon 3"                                                                    
## [1589] "Lights in the Dusk"                                                                 
## [1590] "25th Hour"                                                                          
## [1591] "The 51st State"                                                                     
## [1592] "Freedom Writers"                                                                    
## [1593] "Death Machine"                                                                      
## [1594] "Jungle Fever"                                                                       
## [1595] "50 First Dates"                                                                     
## [1596] "Rent"                                                                               
## [1597] "Poodle Springs"                                                                     
## [1598] "World Trade Center"                                                                 
## [1599] "The Karate Kid"                                                                     
## [1600] "Star Wars: Episode II - Attack of the Clones"                                       
## [1601] "Shattered"                                                                          
## [1602] "Joint Security Area"                                                                
## [1603] "Brother Sun, Sister Moon"                                                           
## [1604] "I Now Pronounce You Chuck & Larry"                                                  
## [1605] "Bluebeard"                                                                          
## [1606] "Jezebel"                                                                            
## [1607] "Equalizer 2000"                                                                     
## [1608] "Indiana Jones and the Kingdom of the Crystal Skull"                                 
## [1609] "Snow Cake"                                                                          
## [1610] "Spider-Man 2"                                                                       
## [1611] "Hellboy"                                                                            
## [1612] "March of the Penguins"                                                              
## [1613] "No Good Deed"                                                                       
## [1614] "Chill Factor"                                                                       
## [1615] "Armed and Dangerous"                                                                
## [1616] "The Number 23"                                                                      
## [1617] "Paprika"                                                                            
## [1618] "Trancers"                                                                           
## [1619] "Man with the Screaming Brain"                                                       
## [1620] "Pale Rider"                                                                         
## [1621] "Crosby, Stills & Nash: Long Time Comin'"                                            
## [1622] "Going Places"                                                                       
## [1623] "Knocked Up"                                                                         
## [1624] "Get Shorty"                                                                         
## [1625] "From a Place of Darkness"                                                           
## [1626] "Beware of the Car!"                                                                 
## [1627] "The Women on the 6th Floor"                                                         
## [1628] "Diary of a Country Priest"                                                          
## [1629] "Urban Explorer"                                                                     
## [1630] "The Tooth Fairy"                                                                    
## [1631] "9 Songs"                                                                            
## [1632] "Open Hearts"                                                                        
## [1633] "Face/Off"                                                                           
## [1634] "Talk to Me"                                                                         
## [1635] "Changing Lanes"                                                                     
## [1636] "The Demolitionist"                                                                  
## [1637] "Supergator"                                                                         
## [1638] "Veronika Voss"                                                                      
## [1639] "Paper Man"                                                                          
## [1640] "Last Days"                                                                          
## [1641] "Brigham Young"                                                                      
## [1642] "American Mullet"                                                                    
## [1643] "Kelin"                                                                              
## [1644] "There's Something About Mary"                                                       
## [1645] "Shrek 2"                                                                            
## [1646] "Chinatown"                                                                          
## [1647] "The Aviator"                                                                        
## [1648] "A Scanner Darkly"                                                                   
## [1649] "Highlander II: The Quickening"                                                      
## [1650] "Boogeyman"                                                                          
## [1651] "The Pretender 2001"                                                                 
## [1652] "The Beales of Grey Gardens"                                                         
## [1653] "The Mad Adventures of Rabbi Jacob"                                                  
## [1654] "Teenage Mutant Ninja Turtles"                                                       
## [1655] "Die Hard: With a Vengeance"                                                         
## [1656] "Les Cousins"                                                                        
## [1657] "Waqt: The Race Against Time"                                                        
## [1658] "Panic in the Streets"                                                               
## [1659] "Monterey Pop"                                                                       
## [1660] "Presumed Guilty"                                                                    
## [1661] "Tough and Deadly"                                                                   
## [1662] "Twenty Years Later"                                                                 
## [1663] "Charlie's Angels"                                                                   
## [1664] "The Seventh Seal"                                                                   
## [1665] "Werewolf Woman"                                                                     
## [1666] "Pulgasari"                                                                          
## [1667] "21 Grams"                                                                           
## [1668] "Underworld: Evolution"                                                              
## [1669] "Bowling for Columbine"                                                              
## [1670] "Mississippi Burning"                                                                
## [1671] "Gigantics"                                                                          
## [1672] "Return of the Ghostbusters"                                                         
## [1673] "The Piano Player"                                                                   
## [1674] "Le Beau Serge"                                                                      
## [1675] "Knight Moves"                                                                       
## [1676] "City of Men"                                                                        
## [1677] "Desperately Seeking Susan"                                                          
## [1678] "Il Divo"                                                                            
## [1679] "Legally Blonde"                                                                     
## [1680] "The X Files: I Want to Believe"                                                     
## [1681] "Casper"                                                                             
## [1682] "Metro"                                                                              
## [1683] "Red Planet"                                                                         
## [1684] "Maradona by Kusturica"                                                              
## [1685] "Tokyo Sonata"                                                                       
## [1686] "Silentium"                                                                          
## [1687] "Beyond Tomorrow"                                                                    
## [1688] "Love on the Run"                                                                    
## [1689] "A Fistful of Dollars"                                                               
## [1690] "Johnny Handsome"                                                                    
## [1691] "When Harry Met Sally..."                                                            
## [1692] "The Silence of the Lambs"                                                           
## [1693] "The Exorcism of Emily Rose"                                                         
## [1694] "The Protector"                                                                      
## [1695] "The Keep"                                                                           
## [1696] "Bad Girls Go to Hell"                                                               
## [1697] "Office Space"                                                                       
## [1698] "Star Trek: First Contact"                                                           
## [1699] "The Rink"                                                                           
## [1700] "Birthday Girl"                                                                      
## [1701] "Night Without Sleep"                                                                
## [1702] "Cruel Intentions 3"                                                                 
## [1703] "The Magliari"                                                                       
## [1704] "The Wrecking Crew"                                                                  
## [1705] "Basket Case 2"                                                                      
## [1706] "Pornography"                                                                        
## [1707] "Souls at Sea"                                                                       
## [1708] "Official Rejection"                                                                 
## [1709] "L'odore della notte"                                                                
## [1710] "Knight of Cups"                                                                     
## [1711] "The Lost Missile"                                                                   
## [1712] "Absolute Power"                                                                     
## [1713] "Star Trek: Insurrection"                                                            
## [1714] "The Godfather: Part II"                                                             
## [1715] "8½"                                                                                 
## [1716] "Scoop"                                                                              
## [1717] "Full Metal Jacket"                                                                  
## [1718] "The Spy Who Loved Me"                                                               
## [1719] "Pünktchen und Anton"                                                                
## [1720] "Total Recall"                                                                       
## [1721] "The Recruit"                                                                        
## [1722] "Octopussy"                                                                          
## [1723] "Forrest Gump"                                                                       
## [1724] "Crouching Tiger, Hidden Dragon"                                                     
## [1725] "Trouble in Paradise"                                                                
## [1726] "Star Trek: Nemesis"                                                                 
## [1727] "High Fidelity"                                                                      
## [1728] "Ronja Robbersdaughter"                                                              
## [1729] "Harold and Maude"                                                                   
## [1730] "Dead Man Walking"                                                                   
## [1731] "All About Eve"                                                                      
## [1732] "Dry Cleaning"                                                                       
## [1733] "My Name Is Joe"                                                                     
## [1734] "The Mechanik"                                                                       
## [1735] "Tuesdays with Morrie"                                                               
## [1736] "The Pillow Book"                                                                    
## [1737] "Wolves of Wall Street"                                                              
## [1738] "Affair in Havana"                                                                   
## [1739] "Son of Lassie"                                                                      
## [1740] "The One-Man Band"                                                                   
## [1741] "Tibet: Cry of the Snow Lion"                                                        
## [1742] "Land of Silence and Darkness"                                                       
## [1743] "Sliver"                                                                             
## [1744] "Heavenly Creatures"                                                                 
## [1745] "Brubaker"                                                                           
## [1746] "American Splendor"                                                                  
## [1747] "Hunting and Gathering"                                                              
## [1748] "How to Steal a Million"                                                             
## [1749] "Battle Royale II: Requiem"                                                          
## [1750] "The Lady from Shanghai"                                                             
## [1751] "Frankenstein and the Monster from Hell"                                             
## [1752] "Spaceballs"                                                                         
## [1753] "Lethal Weapon 4"                                                                    
## [1754] "Lammbock"                                                                           
## [1755] "Angel Face"                                                                         
## [1756] "Attack of the Killer Tomatoes!"                                                     
## [1757] "The Harrad Experiment"                                                              
## [1758] "Frankenstein Meets the Wolf Man"                                                    
## [1759] "Lady Frankenstein"                                                                  
## [1760] "Max and the Junkmen"                                                                
## [1761] "Mr. Brooks"                                                                         
## [1762] "Godzilla vs. The Sea Monster"                                                       
## [1763] "Frankenstein 90"                                                                    
## [1764] "The Mist"                                                                           
## [1765] "The Queen"                                                                          
## [1766] "Calling Dr. Gillespie"                                                              
## [1767] "Takva: A Man's Fear of God"                                                         
## [1768] "Class of Nuke 'Em High"                                                             
## [1769] "Don't Grieve!"                                                                      
## [1770] "Wild in the Country"                                                                
## [1771] "Dog Eat Dog"                                                                        
## [1772] "The Scarecrow"                                                                      
## [1773] "The Dark Hour"                                                                      
## [1774] "The Least of These"                                                                 
## [1775] "Calmos"                                                                             
## [1776] "Phase 7"                                                                            
## [1777] "King of Devil's Island"                                                             
## [1778] "The Wearing of the Grin"                                                            
## [1779] "Memory Lane"                                                                        
## [1780] "California Suite"                                                                   
## [1781] "Swimming to Cambodia"                                                               
## [1782] "Cat Run"                                                                            
## [1783] "Feast of All Saints"                                                                
## [1784] "99 francs"                                                                          
## [1785] "Holy Lola"                                                                          
## [1786] "Michael Clayton"                                                                    
## [1787] "Fireworks"                                                                          
## [1788] "Mercury Rising"                                                                     
## [1789] "Lorna's Silence"                                                                    
## [1790] "Wuthering Heights"                                                                  
## [1791] "Vampyr"                                                                             
## [1792] "Crumb"                                                                              
## [1793] "First Target"                                                                       
## [1794] "Golden Door"                                                                        
## [1795] "Trainspotting"                                                                      
## [1796] "The Wizard of Oz"                                                                   
## [1797] "Olympia Part Two: Festival of Beauty"                                               
## [1798] "Wintersleepers"                                                                     
## [1799] "Dragonslayer"                                                                       
## [1800] "The Man Who Fell to Earth"                                                          
## [1801] "Blondie Has Servant Trouble"                                                        
## [1802] "Monster Hunter"                                                                     
## [1803] "The Family Man"                                                                     
## [1804] "Maid in Manhattan"                                                                  
## [1805] "Double Trouble"                                                                     
## [1806] "Parking"                                                                            
## [1807] "Friends with Money"                                                                 
## [1808] "Shock Waves"                                                                        
## [1809] "Trouble in Mind"                                                                    
## [1810] "Cowboy"                                                                             
## [1811] "Kosmos"                                                                             
## [1812] "Tomorrow, When the War Began"                                                       
## [1813] "Carts of Darkness"                                                                  
## [1814] "Tarzan and the Amazons"                                                             
## [1815] "Just Visiting"                                                                      
## [1816] "Sabretooth"                                                                         
## [1817] "Grande école"                                                                       
## [1818] "Doom"                                                                               
## [1819] "The Domino Principle"                                                               
## [1820] "Thunder Bay"                                                                        
## [1821] "Fighting Elegy"                                                                     
## [1822] "Two Men Went To War"                                                                
## [1823] "964 Pinocchio"                                                                      
## [1824] "Zatôichi's Pilgrimage"                                                              
## [1825] "Bedevilled"                                                                         
## [1826] "Falling Sky"                                                                        
## [1827] "The Visit"                                                                          
## [1828] "Arena"                                                                              
## [1829] "Camila Jam"                                                                         
## [1830] "Nuvvostanante Nenoddantana"                                                         
## [1831] "Peek-a-boo"                                                                         
## [1832] "War of the Arrows"                                                                  
## [1833] "Many Rivers to Cross"                                                               
## [1834] "The Comedians"                                                                      
## [1835] "T.N.T."                                                                             
## [1836] "A Countess from Hong Kong"                                                          
## [1837] "Mouth to Mouth"                                                                     
## [1838] "Batman Forever"                                                                     
## [1839] "Moulin Rouge!"                                                                      
## [1840] "Last Tango in Paris"                                                                
## [1841] "Entrapment"                                                                         
## [1842] "Lady Snowblood"                                                                     
## [1843] "Off Beat"                                                                           
## [1844] "City Lights"                                                                        
## [1845] "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb"               
## [1846] "For a Few Dollars More"                                                             
## [1847] "Letter from an Unknown Woman"                                                       
## [1848] "Mission: Impossible III"                                                            
## [1849] "River of No Return"                                                                 
## [1850] "Porgy and Bess"                                                                     
## [1851] "Bunny Lake Is Missing"                                                              
## [1852] "Mr. Destiny"                                                                        
## [1853] "Moon 44"                                                                            
## [1854] "Changeling"                                                                         
## [1855] "In July"                                                                            
## [1856] "Spring, Summer, Fall, Winter... and Spring"                                         
## [1857] "Taxi Driver"                                                                        
## [1858] "People on Sunday"                                                                   
## [1859] "Moonraker"                                                                          
## [1860] "Mister Roberts"                                                                     
## [1861] "The Last Hurrah"                                                                    
## [1862] "Pi"                                                                                 
## [1863] "The Flintstones"                                                                    
## [1864] "The Pink Panther"                                                                   
## [1865] "The General"                                                                        
## [1866] "Dirty Harry"                                                                        
## [1867] "Vollidiot"                                                                          
## [1868] "Sun Alley"                                                                          
## [1869] "Topaz"                                                                              
## [1870] "Asterix & Obelix: Mission Cleopatra"                                                
## [1871] "Jekyll and Hyde ... Together Again"                                                 
## [1872] "The Treasure of the Sierra Madre"                                                   
## [1873] "Casanova '70"                                                                       
## [1874] "Incognito"                                                                          
## [1875] "Nichts als Gespenster"                                                              
## [1876] "Jacob the Liar"                                                                     
## [1877] "The Tulse Luper Suitcases, Part 1: The Moab Story"                                  
## [1878] "Flash Gordon"                                                                       
## [1879] "Apartment Zero"                                                                     
## [1880] "Keoma"                                                                              
## [1881] "Hardcover"                                                                          
## [1882] "Dan in Real Life"                                                                   
## [1883] "Shanghai Noon"                                                                      
## [1884] "Conquest of Space"                                                                  
## [1885] "Basic Training"                                                                     
## [1886] "Das Boot"                                                                           
## [1887] "Mary Poppins"                                                                       
## [1888] "Drugstore Cowboy"                                                                   
## [1889] "Kingdom of Heaven"                                                                  
## [1890] "Paris, je t'aime"                                                                   
## [1891] "Jesus"                                                                              
## [1892] "Three Men and a Cradle"                                                             
## [1893] "Failure to Launch"                                                                  
## [1894] "The Cuckoo"                                                                         
## [1895] "Short Cuts"                                                                         
## [1896] "Ae Fond Kiss..."                                                                    
## [1897] "The Quiet Man"                                                                      
## [1898] "Shane"                                                                              
## [1899] "Volver"                                                                             
## [1900] "Navajo Joe"                                                                         
## [1901] "The Curse of the Were-Rabbit"                                                       
## [1902] "Pink Flamingos"                                                                     
## [1903] "Umberto D."                                                                         
## [1904] "I Woke Up Early The Day I Died"                                                     
## [1905] "The Nasty Girl"                                                                     
## [1906] "Zardoz"                                                                             
## [1907] "Hustle"                                                                             
## [1908] "Sade"                                                                               
## [1909] "Jackie Brown"                                                                       
## [1910] "The X Files"                                                                        
## [1911] "Around the World in Eighty Days"                                                    
## [1912] "The Machine"                                                                        
## [1913] "Pink Floyd: Live at Pompeii"                                                        
## [1914] "Hard Candy"                                                                         
## [1915] "Frankenstein Must Be Destroyed"                                                     
## [1916] "Throne of Blood"                                                                    
## [1917] "Dark Wolf"                                                                          
## [1918] "Where the Spies Are"                                                                
## [1919] "Cabiria"                                                                            
## [1920] "A Guide To Recognizing Your Saints"                                                 
## [1921] "The Bank Job"                                                                       
## [1922] "Fados"                                                                              
## [1923] "Red Light"                                                                          
## [1924] "The Defender"                                                                       
## [1925] "Everybody's Fine"                                                                   
## [1926] "Mother, Jugs & Speed"                                                               
## [1927] "Taking Woodstock"                                                                   
## [1928] "In the Blood"                                                                       
## [1929] "Ju-on: White Ghost"                                                                 
## [1930] "The Legend of Suriyothai"                                                           
## [1931] "The Great Spy Chase"                                                                
## [1932] "Samurai X : Reflection"                                                             
## [1933] "Gray's Anatomy"                                                                     
## [1934] "Before Stonewall"                                                                   
## [1935] "White of the Eye"                                                                   
## [1936] "Satanás - Profile of a Killer"                                                      
## [1937] "King Cobra"                                                                         
## [1938] "Space Chimps 2: Zartog Strikes Back"                                                
## [1939] "A Dangerous Method"                                                                 
## [1940] "The Debt"                                                                           
## [1941] "A Man, a Woman and a Bank"                                                          
## [1942] "Repeaters"                                                                          
## [1943] "The Other Side of Midnight"                                                         
## [1944] "Ninja Academy"                                                                      
## [1945] "Shark Kill"                                                                         
## [1946] "A Chef in Love"                                                                     
## [1947] "History of Postwar Japan as Told by a Bar Hostess"                                  
## [1948] "Idol of the Crowds"                                                                 
## [1949] "Interkosmos"                                                                        
## [1950] "Toomorrow"                                                                          
## [1951] "The Green Butchers"                                                                 
## [1952] "They Live"                                                                          
## [1953] "Cléo from 5 to 7"                                                                   
## [1954] "The Discreet Charm of the Bourgeoisie"                                              
## [1955] "Fried Green Tomatoes"                                                               
## [1956] "A Daughter Of Destiny"                                                              
## [1957] "The Golem: How He Came Into the World"                                              
## [1958] "Bambi Meets Godzilla"                                                               
## [1959] "Shakespeare in Love"                                                                
## [1960] "In the Mouth of Madness"                                                            
## [1961] "Children of the Corn IV: The Gathering"                                             
## [1962] "Dante's Hell Animated"                                                              
## [1963] "Vice Squad"                                                                         
## [1964] "The Horsemen"                                                                       
## [1965] "Green Fire"                                                                         
## [1966] "Voyage to the Beginning of the World"                                               
## [1967] "You Are Not I"                                                                      
## [1968] "Before Sunset"                                                                      
## [1969] "Garden State"                                                                       
## [1970] "The Passion of the Christ"                                                          
## [1971] "Gentlemen Prefer Blondes"                                                           
## [1972] "The Northerners"                                                                    
## [1973] "Vampire's Kiss"                                                                     
## [1974] "10,000 BC"                                                                          
## [1975] "Shine a Light"                                                                      
## [1976] "Harry and the Hendersons"                                                           
## [1977] "Die Wolke"                                                                          
## [1978] "Speed Racer"                                                                        
## [1979] "Don't Think About It"                                                               
## [1980] "The Holiday"                                                                        
## [1981] "Vivre Sa Vie"                                                                       
## [1982] "Leningrad"                                                                          
## [1983] "To Die For"                                                                         
## [1984] "Primal Fear"                                                                        
## [1985] "The Bible: In the Beginning..."                                                     
## [1986] "The Hessen Affair"                                                                  
## [1987] "Johnny Angel"                                                                       
## [1988] "Backlight"                                                                          
## [1989] "Rock Around the Clock"                                                              
## [1990] "Lethal Weapon"                                                                      
## [1991] "Samsara"                                                                            
## [1992] "It Happened One Night"                                                              
## [1993] "Mermaids"                                                                           
## [1994] "Sense and Sensibility"                                                              
## [1995] "The Bodyguard"                                                                      
## [1996] "Doctor Zhivago"                                                                     
## [1997] "The Hi-Lo Country"                                                                  
## [1998] "Moonstruck"                                                                         
## [1999] "Unforgettable"                                                                      
## [2000] "I, Robot"                                                                           
## [2001] "Original Sin"                                                                       
## [2002] "Last Year at Marienbad"                                                             
## [2003] "Blow"                                                                               
## [2004] "Shoot 'Em Up"                                                                       
## [2005] "Breach"                                                                             
## [2006] "Confessions of a Dangerous Mind"                                                    
## [2007] "Vicky Cristina Barcelona"                                                           
## [2008] "Prospero's Books"                                                                   
## [2009] "To Be and to Have"                                                                  
## [2010] "Fred Claus"                                                                         
## [2011] "The Dream Catcher"                                                                  
## [2012] "Beautiful Boxer"                                                                    
## [2013] "Treasure Island"                                                                    
## [2014] "The Rookie"                                                                         
## [2015] "Welcome to Woop Woop"                                                               
## [2016] "The Man Without a Past"                                                             
## [2017] "Far Cry"                                                                            
## [2018] "The Skulls II"                                                                      
## [2019] "Antz"                                                                               
## [2020] "Milk Money"                                                                         
## [2021] "Stop-Loss"                                                                          
## [2022] "Derailed"                                                                           
## [2023] "Ernest Saves Christmas"                                                             
## [2024] "Distant"                                                                            
## [2025] "Franklyn"                                                                           
## [2026] "3 Ninjas: High Noon at Mega Mountain"                                               
## [2027] "American Pie Presents: The Naked Mile"                                              
## [2028] "Dog Day"                                                                            
## [2029] "Long Pigs"                                                                          
## [2030] "Silk"                                                                               
## [2031] "The African Queen"                                                                  
## [2032] "00 Schneider - Jagd auf Nihil Baxter"                                               
## [2033] "Elizabeth"                                                                          
## [2034] "Absolon"                                                                            
## [2035] "De Dominee"                                                                         
## [2036] "Torn Curtain"                                                                       
## [2037] "Dracula"                                                                            
## [2038] "Wayne's World"                                                                      
## [2039] "A Christmas Tale"                                                                   
## [2040] "It's Hard Being Loved by Jerks"                                                     
## [2041] "Green Street Hooligans"                                                             
## [2042] "Tokyo!"                                                                             
## [2043] "A Slit-Mouthed Woman"                                                               
## [2044] "Like Mike 2: Streetball"                                                            
## [2045] "Prep & Landing"                                                                     
## [2046] "Love Jones"                                                                         
## [2047] "The Incredible Shrinking Man"                                                       
## [2048] "The Times of Harvey Milk"                                                           
## [2049] "The Era of Vampires"                                                                
## [2050] "Look Back in Anger"                                                                 
## [2051] "Mirror Mirror"                                                                      
## [2052] "Orfeu"                                                                              
## [2053] "The Teacher"                                                                        
## [2054] "The Art of Love"                                                                    
## [2055] "The Other Side of the Mountain: Part II"                                            
## [2056] "One Fine Day"                                                                       
## [2057] "Burrowing"                                                                          
## [2058] "The Shawshank Redemption"                                                           
## [2059] "Maria Full of Grace"                                                                
## [2060] "A Beautiful Mind"                                                                   
## [2061] "The Bow"                                                                            
## [2062] "Wet Hot American Summer"                                                            
## [2063] "Zazie dans le métro"                                                                
## [2064] "Punishment Park"                                                                    
## [2065] "Little Caesar"                                                                      
## [2066] "Welcome Home, Roxy Carmichael"                                                      
## [2067] "Open Water"                                                                         
## [2068] "The Dark Knight"                                                                    
## [2069] "Snow White and the Seven Dwarfs"                                                    
## [2070] "The Matrix"                                                                         
## [2071] "The Gold Rush"                                                                      
## [2072] "The Phantom of the Opera"                                                           
## [2073] "Sherlock, Jr."                                                                      
## [2074] "Stalker"                                                                            
## [2075] "Pan's Labyrinth"                                                                    
## [2076] "The Double Life of Veronique"                                                       
## [2077] "The Count"                                                                          
## [2078] "Diplomatic Courier"                                                                 
## [2079] "Indecent Proposal"                                                                  
## [2080] "At Long Last Love"                                                                  
## [2081] "Shock Treatment"                                                                    
## [2082] "King of California"                                                                 
## [2083] "Freddy vs. Jason"                                                                   
## [2084] "Fire Birds"                                                                         
## [2085] "Alvin and the Chipmunks"                                                            
## [2086] "Nightwatch"                                                                         
## [2087] "The Contender"                                                                      
## [2088] "Life"                                                                               
## [2089] "The Mugger"                                                                         
## [2090] "The Desperado Trail"                                                                
## [2091] "Alive"                                                                              
## [2092] "The Lovely Bones"                                                                   
## [2093] "Highlander"                                                                         
## [2094] "Torch Song Trilogy"                                                                 
## [2095] "Wild Wild West"                                                                     
## [2096] "Prom Night"                                                                         
## [2097] "The History Boys"                                                                   
## [2098] "My Best Fiend"                                                                      
## [2099] "It Happened at the World's Fair"                                                    
## [2100] "The Shadow"                                                                         
## [2101] "Che: Part Two"                                                                      
## [2102] "Garfield"                                                                           
## [2103] "Johnny Mad Dog"                                                                     
## [2104] "The Ice Harvest"                                                                    
## [2105] "Soccer Dog: The Movie"                                                              
## [2106] "All About My Mother"                                                                
## [2107] "Sin City"                                                                           
## [2108] "Head-On"                                                                            
## [2109] "The World of Apu"                                                                   
## [2110] "Catch a Fire"                                                                       
## [2111] "Fantomas vs. Scotland Yard"                                                         
## [2112] "Timecop"                                                                            
## [2113] "Crimson Tide"                                                                       
## [2114] "Striped Trip"                                                                       
## [2115] "Stitches"                                                                           
## [2116] "Extraordinary Illusions"                                                            
## [2117] "In the Realm of the Senses"                                                         
## [2118] "Rio Bravo"                                                                          
## [2119] "12 Angry Men"                                                                       
## [2120] "Once Upon a Time in Mexico"                                                         
## [2121] "The Bride Wore Black"                                                               
## [2122] "Hearts of Darkness: A Filmmaker's Apocalypse"                                       
## [2123] "Kevin Hart: Laugh at My Pain"                                                       
## [2124] "Two-Minute Warning"                                                                 
## [2125] "Phar Lap"                                                                           
## [2126] "Batman"                                                                             
## [2127] "Stalag 17"                                                                          
## [2128] "A Christmas Story"                                                                  
## [2129] "The Philadelphia Story"                                                             
## [2130] "Frank Herbert's Dune"                                                               
## [2131] "Mr. Jones"                                                                          
## [2132] "The Brothers Grimm"                                                                 
## [2133] "Pillow Talk"                                                                        
## [2134] "Casper's Haunted Christmas"                                                         
## [2135] "X: The Unknown"                                                                     
## [2136] "The Road to Hong Kong"                                                              
## [2137] "Shower"                                                                             
## [2138] "The Country Girl"                                                                   
## [2139] "Junebug"                                                                            
## [2140] "Two Girls and a Guy"                                                                
## [2141] "Cinderella"                                                                         
## [2142] "Our Mother's House"                                                                 
## [2143] "The Phantom of Liberty"                                                             
## [2144] "The Wrong Guys"                                                                     
## [2145] "Club Paradise"                                                                      
## [2146] "Black Lightning"                                                                    
## [2147] "Trouble Every Day"                                                                  
## [2148] "L'Atalante"                                                                         
## [2149] "GoldenEye"                                                                          
## [2150] "Lovers of the Arctic Circle"                                                        
## [2151] "La Chinoise"                                                                        
## [2152] "The Net"                                                                            
## [2153] "The Secret"                                                                         
## [2154] "Desert Saints"                                                                      
## [2155] "Viva Las Vegas"                                                                     
## [2156] "Wattstax"                                                                           
## [2157] "Flesh for Frankenstein"                                                             
## [2158] "I Still Know What You Did Last Summer"                                              
## [2159] "Millennium"                                                                         
## [2160] "Eragon"                                                                             
## [2161] "The Lady and the Duke"                                                              
## [2162] "Two Men in Town"                                                                    
## [2163] "The Sensuous Nurse"                                                                 
## [2164] "Vatel"                                                                              
## [2165] "Cannibal Holocaust"                                                                 
## [2166] "The Hiding Place"                                                                   
## [2167] "The Kingdom"                                                                        
## [2168] "The Snows of Kilimanjaro"                                                           
## [2169] "Irina Palm"                                                                         
## [2170] "Malice"                                                                             
## [2171] "Oh Dem Watermelons"                                                                 
## [2172] "The House"                                                                          
## [2173] "Cube Zero"                                                                          
## [2174] "How the Grinch Stole Christmas"                                                     
## [2175] "The Bastards"                                                                       
## [2176] "Waiting for Armageddon"                                                             
## [2177] "Fixing Frank"                                                                       
## [2178] "Joyride"                                                                            
## [2179] "The Haunted"                                                                        
## [2180] "Annie's Point"                                                                      
## [2181] "Pure"                                                                               
## [2182] "Piranha 3DD"                                                                        
## [2183] "The Right of the Weakest"                                                           
## [2184] "Shanghai Ghetto"                                                                    
## [2185] "One Night in A City"                                                                
## [2186] "Donald Glover: Weirdo"                                                              
## [2187] "Ginger"                                                                             
## [2188] "The Masseurs and a Woman"                                                           
## [2189] "Card Subject To Change"                                                             
## [2190] "Blue Like Jazz"                                                                     
## [2191] "Trapped in the Closet: Chapters 1-12"                                               
## [2192] "October (Ten Days that Shook the World)"                                            
## [2193] "Sounds of Sand"                                                                     
## [2194] "The China Syndrome"                                                                 
## [2195] "The Truth About Cats & Dogs"                                                        
## [2196] "Delphine 1, Yvan 0"                                                                 
## [2197] "Daisies"                                                                            
## [2198] "Bill Burr: Let It Go"                                                               
## [2199] "Royal Deceit"                                                                       
## [2200] "Vares - The Girls of April"                                                         
## [2201] "Many Wars Ago"                                                                      
## [2202] "The Hustler"                                                                        
## [2203] "Teenage Mutant Ninja Turtles II: The Secret of the Ooze"                            
## [2204] "Into the Wild"                                                                      
## [2205] "Jonny Vang"                                                                         
## [2206] "Ana and the Others"                                                                 
## [2207] "Dominick and Eugene"                                                                
## [2208] "Geppo il folle"                                                                     
## [2209] "In Praise of Love"                                                                  
## [2210] "My Super Psycho Sweet 16: Part 2"                                                   
## [2211] "Hidden Assassin"                                                                    
## [2212] "The Jazz Singer"                                                                    
## [2213] "11'09''01 - September 11"                                                           
## [2214] "The Others"                                                                         
## [2215] "The Lost World"                                                                     
## [2216] "The Things of Life"                                                                 
## [2217] "The Hole"                                                                           
## [2218] "Mr. & Mrs. Smith"                                                                   
## [2219] "Manta - Der Film"                                                                   
## [2220] "Big"                                                                                
## [2221] "Shopgirl"                                                                           
## [2222] "I'm Not There."                                                                     
## [2223] "Impostor"                                                                           
## [2224] "Beyond the Darkness"                                                                
## [2225] "Seeing Other People"                                                                
## [2226] "A Song of Lisbon"                                                                   
## [2227] "Airplane!"                                                                          
## [2228] "Dark Star"                                                                          
## [2229] "Beverly Hills Cop II"                                                               
## [2230] "Population 436"                                                                     
## [2231] "The Sentinel"                                                                       
## [2232] "Tom Horn"                                                                           
## [2233] "Times and Winds"                                                                    
## [2234] "13 Tzameti"                                                                         
## [2235] "El Dorado"                                                                          
## [2236] "Weekend at Bernie's"                                                                
## [2237] "The Illustrated Man"                                                                
## [2238] "Scandal Sheet"                                                                      
## [2239] "Harper"                                                                             
## [2240] "The Terminators"                                                                    
## [2241] "Ellen DeGeneres: The Beginning"                                                     
## [2242] "Just the Ticket"                                                                    
## [2243] "Meatball Machine"                                                                   
## [2244] "Prick Up Your Ears"                                                                 
## [2245] "They All Laughed"                                                                   
## [2246] "Kissin' Cousins"                                                                    
## [2247] "Off the Black"                                                                      
## [2248] "The Sea That Thinks"                                                                
## [2249] "Love & Pop"                                                                         
## [2250] "Mosquita y Mari"                                                                    
## [2251] "Natural Born Killers"                                                               
## [2252] "Ménage"                                                                             
## [2253] "The Chant of Jimmie Blacksmith"                                                     
## [2254] "Shadow Run"                                                                         
## [2255] "The Eleventh Victim"                                                                
## [2256] "Ten Little Indians"                                                                 
## [2257] "16 Blocks"                                                                          
## [2258] "Return to Me"                                                                       
## [2259] "Runaway Bride"                                                                      
## [2260] "The Buccaneer"                                                                      
## [2261] "And the Ship Sails On"                                                              
## [2262] "Up!"                                                                                
## [2263] "Pather Panchali"                                                                    
## [2264] "The Strange Case of the End of Civilization as We Know It"                          
## [2265] "Dinner for One"                                                                     
## [2266] "Cherry Blossoms"                                                                    
## [2267] "Orgazmo"                                                                            
## [2268] "O'Horten"                                                                           
## [2269] "Inside Man"                                                                         
## [2270] "INLAND EMPIRE"                                                                      
## [2271] "Fantomas Unleashed"                                                                 
## [2272] "Tanguy"                                                                             
## [2273] "The Celebration"                                                                    
## [2274] "The French Connection"                                                              
## [2275] "Away from Her"                                                                      
## [2276] "La Dolce Vita"                                                                      
## [2277] "Sympathy for Lady Vengeance"                                                        
## [2278] "Flesh"                                                                              
## [2279] "Wild Gals of the Naked West"                                                        
## [2280] "The Promised Land"                                                                  
## [2281] "Atonement"                                                                          
## [2282] "Fires on the Plain"                                                                 
## [2283] "History Is Made at Night"                                                           
## [2284] "Crossing Delancey"                                                                  
## [2285] "Devo: The Complete Truth About De-Evolution"                                        
## [2286] "The White Ship"                                                                     
## [2287] "Lightning Strikes Twice"                                                            
## [2288] "Budrus"                                                                             
## [2289] "Liberty Stands Still"                                                               
## [2290] "Chalte Chalte"                                                                      
## [2291] "Triple Cross"                                                                       
## [2292] "Body Snatchers"                                                                     
## [2293] "Yamakasi"                                                                           
## [2294] "Miracle on Ice"                                                                     
## [2295] "Duel of Hearts"                                                                     
## [2296] "The Care Bears Adventure in Wonderland"                                             
## [2297] "The Delivery"                                                                       
## [2298] "He's Worse than Me"                                                                 
## [2299] "Food of the Gods II"                                                                
## [2300] "Lenny Bruce in 'Lenny Bruce'"                                                       
## [2301] "Wolf and Calf"                                                                      
## [2302] "Kismet"                                                                             
## [2303] "Amelia"                                                                             
## [2304] "The Bed-Sitting Room"                                                               
## [2305] "Sammy and Rosie Get Laid"                                                           
## [2306] "The Periwig-Maker"                                                                  
## [2307] "Aliens"                                                                             
## [2308] "Austin Powers: International Man of Mystery"                                        
## [2309] "There's Only One Jimmy Grimble"                                                     
## [2310] "From Dusk Till Dawn"                                                                
## [2311] "The Hunt for Red October"                                                           
## [2312] "Law of Desire"                                                                      
## [2313] "The Defector"                                                                       
## [2314] "A History of Violence"                                                              
## [2315] "Battletruck"                                                                        
## [2316] "Wee Willie Winkie"                                                                  
## [2317] "Deadlier Than the Male"                                                             
## [2318] "The Sugarland Express"                                                              
## [2319] "Violeta Went to Heaven"                                                             
## [2320] "Pirates of the Caribbean: On Stranger Tides"                                        
## [2321] "Go for Zucker"                                                                      
## [2322] "Salvador (Puig Antich)"                                                             
## [2323] "Lorenzo's Oil"                                                                      
## [2324] "40 Days and 40 Nights"                                                              
## [2325] "House of Frankenstein"                                                              
## [2326] "Frankie and Johnny"                                                                 
## [2327] "Odette Toulemonde"                                                                  
## [2328] "Fort Saganne"                                                                       
## [2329] "The Married Couple of the Year Two"                                                 
## [2330] "The Year of Getting to Know Us"                                                     
## [2331] "Daisy Miller"                                                                       
## [2332] "Layer Cake"                                                                         
## [2333] "Vivere"                                                                             
## [2334] "Dead Bang"                                                                          
## [2335] "The Baby of Mâcon"                                                                  
## [2336] "Two Moon Junction"                                                                  
## [2337] "Virtual Sexuality"                                                                  
## [2338] "The Hunting Party"                                                                  
## [2339] "Love in the Time of Cholera"                                                        
## [2340] "Outbreak"                                                                           
## [2341] "The Weather Man"                                                                    
## [2342] "Jack"                                                                               
## [2343] "Merlin"                                                                             
## [2344] "Titan A.E."                                                                         
## [2345] "Antibodies"                                                                         
## [2346] "The River Wild"                                                                     
## [2347] "Razorback"                                                                          
## [2348] "A Somewhat Gentle Man"                                                              
## [2349] "Cold Steel"                                                                         
## [2350] "I due della legione"                                                                
## [2351] "Lisbon Story"                                                                       
## [2352] "The Cincinnati Kid"                                                                 
## [2353] "Lifeguard"                                                                          
## [2354] "The Day After"                                                                      
## [2355] "Anne of the Indies"                                                                 
## [2356] "Trading Places"                                                                     
## [2357] "From Noon Till Three"                                                               
## [2358] "You're a Big Boy Now"                                                               
## [2359] "The Meaning of Life"                                                                
## [2360] "Ratatouille"                                                                        
## [2361] "The Dark Side of The Moon"                                                          
## [2362] "Ghostbusters"                                                                       
## [2363] "The Maltese Falcon"                                                                 
## [2364] "Earth Girls Are Easy"                                                               
## [2365] "Mildred Pierce"                                                                     
## [2366] "Mostly Martha"                                                                      
## [2367] "Lions for Lambs"                                                                    
## [2368] "Import/Export"                                                                      
## [2369] "Before Night Falls"                                                                 
## [2370] "Death Smiles on a Murderer"                                                         
## [2371] "Lowlands"                                                                           
## [2372] "The Pope's Toilet"                                                                  
## [2373] "The Naked Man"                                                                      
## [2374] "DragonHeart"                                                                        
## [2375] "Gomorrah"                                                                           
## [2376] "Children of the Corn 666: Isaac's Return"                                           
## [2377] "Citizen Dog"                                                                        
## [2378] "Dasepo Naughty Girls"                                                               
## [2379] "Asylum"                                                                             
## [2380] "The Color of Pomegranates"                                                          
## [2381] "Cabin Boy"                                                                          
## [2382] "Under Suspicion"                                                                    
## [2383] "Basket Case 3"                                                                      
## [2384] "Cavegirl"                                                                           
## [2385] "The Ruling Class"                                                                   
## [2386] "?aban O?lu ?aban"                                                                   
## [2387] "Blood River"                                                                        
## [2388] "Hello, Frisco, Hello"                                                               
## [2389] "Running Wild"                                                                       
## [2390] "Gayniggers from Outer Space"                                                        
## [2391] "The Final"                                                                          
## [2392] "Far Away"                                                                           
## [2393] "Racing Dreams"                                                                      
## [2394] "The Stolen Children"                                                                
## [2395] "Return to the 36th Chamber"                                                         
## [2396] "Age of Consent"                                                                     
## [2397] "Carmen Jones"                                                                       
## [2398] "Under the Roofs of Paris"                                                           
## [2399] "Still Bill"                                                                         
## [2400] "Adrenalin: Fear the Rush"                                                           
## [2401] "Passed Away"                                                                        
## [2402] "Intruder in the Dust"                                                               
## [2403] "McCinsey's Island"                                                                  
## [2404] "Damnation Alley"                                                                    
## [2405] "Breaking Up"                                                                        
## [2406] "The Flying Saucer"                                                                  
## [2407] "Berlin is in Germany"                                                               
## [2408] "The Tin Drum"                                                                       
## [2409] "GoodFellas"                                                                         
## [2410] "M. Butterfly"                                                                       
## [2411] "Planes, Trains and Automobiles"                                                     
## [2412] "Badlands"                                                                           
## [2413] "Momentum"                                                                           
## [2414] "National Lampoon's Christmas Vacation"                                              
## [2415] "Scorcher"                                                                           
## [2416] "Messenger of Death"                                                                 
## [2417] "Vanilla Sky"                                                                        
## [2418] "The Hire: Beat the Devil"                                                           
## [2419] "Parade"                                                                             
## [2420] "Earthling"                                                                          
## [2421] "In the Meantime, Darling"                                                           
## [2422] "Noodle"                                                                             
## [2423] "Bloody Cartoons"                                                                    
## [2424] "Monster High"                                                                       
## [2425] "A Streetcar Named Desire"                                                           
## [2426] "The Prime of Miss Jean Brodie"                                                      
## [2427] "Dudes"                                                                              
## [2428] "Soldier of God"                                                                     
## [2429] "Dorian Blues"                                                                       
## [2430] "Dangerous Game"                                                                     
## [2431] "Totò Sceicco"                                                                       
## [2432] "Interceptor Force 2"                                                                
## [2433] "33 Scenes from Life"                                                                
## [2434] "Fighting Back"                                                                      
## [2435] "Holiday For Lovers"                                                                 
## [2436] "Rag. Arturo De Fanti, bancario precario"                                            
## [2437] "The Specialist"                                                                     
## [2438] "The Mothman Prophecies"                                                             
## [2439] "The Game"                                                                           
## [2440] "Addams Family Values"                                                               
## [2441] "Memento"                                                                            
## [2442] "Spider-Man 3"                                                                       
## [2443] "Frenzy"                                                                             
## [2444] "Diamonds Are Forever"                                                               
## [2445] "Pickpocket"                                                                         
## [2446] "Blue Velvet"                                                                        
## [2447] "JFK"                                                                                
## [2448] "The Mask"                                                                           
## [2449] "Monster's Ball"                                                                     
## [2450] "Rambo: First Blood Part II"                                                         
## [2451] "City Slickers"                                                                      
## [2452] "Party Monster"                                                                      
## [2453] "The Dirty Dozen"                                                                    
## [2454] "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan"
## [2455] "29th Street"                                                                        
## [2456] "Mikey and Nicky"                                                                    
## [2457] "Fear and Loathing in Las Vegas"                                                     
## [2458] "Je t'aime, je t'aime"                                                               
## [2459] "Zombie Holocaust"                                                                   
## [2460] "Rear Window"                                                                        
## [2461] "Cool Runnings"                                                                      
## [2462] "The Flintstones in Viva Rock Vegas"                                                 
## [2463] "The Front Page"                                                                     
## [2464] "Laws of Gravity"                                                                    
## [2465] "A Real Young Girl"                                                                  
## [2466] "Small Change"                                                                       
## [2467] "Field of Dreams"                                                                    
## [2468] "Cows"                                                                               
## [2469] "Mimic"                                                                              
## [2470] "Sister Act 2: Back in the Habit"                                                    
## [2471] "Involuntary"                                                                        
## [2472] "Manhattan"                                                                          
## [2473] "Strangers on a Train"                                                               
## [2474] "The Leopard"                                                                        
## [2475] "The Assault"                                                                        
## [2476] "Eternal Sunshine of the Spotless Mind"                                              
## [2477] "Insomnia"                                                                           
## [2478] "Ghost"                                                                              
## [2479] "Indiana Jones and the Temple of Doom"                                               
## [2480] "The Mummy"                                                                          
## [2481] "Close Encounters of the Third Kind"                                                 
## [2482] "The Docks of New York"                                                              
## [2483] "The Devil's Backbone"                                                               
## [2484] "Trick"                                                                              
## [2485] "Goodbye Bafana"                                                                     
## [2486] "Open Your Eyes"                                                                     
## [2487] "Clerks"                                                                             
## [2488] "Time to Leave"                                                                      
## [2489] "Pierrot le Fou"                                                                     
## [2490] "As Good as It Gets"                                                                 
## [2491] "The Great Global Warming Swindle"                                                   
## [2492] "The Night of the Hunter"                                                            
## [2493] "Not Reconciled"                                                                     
## [2494] "The Boom"                                                                           
## [2495] "Three Quarter Moon"                                                                 
## [2496] "The Strip"                                                                          
## [2497] "M*A*S*H"                                                                            
## [2498] "Dark Blue"                                                                          
## [2499] "Shrek"                                                                              
## [2500] "Flirting with Disaster"                                                             
## [2501] "The Princess Bride"                                                                 
## [2502] "Germany Year Zero"                                                                  
## [2503] "The Saragossa Manuscript"                                                           
## [2504] "Babes in Toyland"                                                                   
## [2505] "Tarzan, the Ape Man"                                                                
## [2506] "A Woman Is a Woman"                                                                 
## [2507] "Doppelganger"                                                                       
## [2508] "London Voodoo"                                                                      
## [2509] "L'outremangeur"                                                                     
## [2510] "Un chien andalou"                                                                   
## [2511] "Chances Are"                                                                        
## [2512] "Shanghai Express"                                                                   
## [2513] "Visitor Q"                                                                          
## [2514] "Innocence"                                                                          
## [2515] "Quinceañera"                                                                        
## [2516] "Naughty @ 40"                                                                       
## [2517] "Deranged"                                                                           
## [2518] "Hallam Foe"                                                                         
## [2519] "The Last Emperor"                                                                   
## [2520] "How to Cook Your Life"                                                              
## [2521] "The Station Agent"                                                                  
## [2522] "Capturing the Friedmans"                                                            
## [2523] "About Schmidt"                                                                      
## [2524] "Nashville"                                                                          
## [2525] "The Transporter"                                                                    
## [2526] "Under Capricorn"                                                                    
## [2527] "Appointment with Death"                                                             
## [2528] "Enchanted"                                                                          
## [2529] "Edge of Seventeen"                                                                  
## [2530] "Womanlight"                                                                         
## [2531] "Finder's Fee"                                                                       
## [2532] "Alice's Restaurant"                                                                 
## [2533] "Along Came Polly"                                                                   
## [2534] "Dead Man's Folly"                                                                   
## [2535] "Blue Thunder"                                                                       
## [2536] "Something's Gotta Give"                                                             
## [2537] "Van Helsing"                                                                        
## [2538] "Venom"                                                                              
## [2539] "Zombie Flesh Eaters"                                                                
## [2540] "The Road to Guantanamo"                                                             
## [2541] "Train of Life"                                                                      
## [2542] "Female Agents"                                                                      
## [2543] "¡Three Amigos!"                                                                     
## [2544] "My Neighbor Totoro"                                                                 
## [2545] "The Wild Blue Yonder"                                                               
## [2546] "...And God Created Woman"                                                           
## [2547] "Rocco and His Brothers"                                                             
## [2548] "The Joyless Street"                                                                 
## [2549] "Dangerous Beauty"                                                                   
## [2550] "The Little Thief"                                                                   
## [2551] "The Blob"                                                                           
## [2552] "Jackass: The Movie"                                                                 
## [2553] "The Chosen"                                                                         
## [2554] "Thieves"                                                                            
## [2555] "A Christmas Carol"                                                                  
## [2556] "Tension"                                                                            
## [2557] "Marketa Lazarová"                                                                   
## [2558] "Harry Brown"                                                                        
## [2559] "Legendary Assassin"                                                                 
## [2560] "Excess Baggage"                                                                     
## [2561] "The Liquidator"                                                                     
## [2562] "Wanda Sykes: Sick and Tired"                                                        
## [2563] "Live Nude Girls"                                                                    
## [2564] "Perestroika"                                                                        
## [2565] "Maurice"                                                                            
## [2566] "The Carter"                                                                         
## [2567] "The Climb"                                                                          
## [2568] "Arthur and the Revenge of Maltazard"                                                
## [2569] "Dr. Who and the Daleks"                                                             
## [2570] "Always Outnumbered"                                                                 
## [2571] "Retroactive"                                                                        
## [2572] "Big River Man"                                                                      
## [2573] "Shadows of Forgotten Ancestors"                                                     
## [2574] "Denis Leary: No Cure for Cancer"                                                    
## [2575] "High Wall"                                                                          
## [2576] "Pigs and Battleships"                                                               
## [2577] "The Mostly Unfabulous Social Life of Ethan Green"                                   
## [2578] "Scooby-Doo! and the Reluctant Werewolf"                                             
## [2579] "Portrait in Black"                                                                  
## [2580] "Kiss Me Again"                                                                      
## [2581] "The Beautiful Country"                                                              
## [2582] "The Collector"                                                                      
## [2583] "Désirée"                                                                            
## [2584] "Pony Express"                                                                       
## [2585] "My Rainy Days"                                                                      
## [2586] "Die, Mommie, Die!"                                                                  
## [2587] "The Magic Flute"                                                                    
## [2588] "Xuxa in Crystal Moon"                                                               
## [2589] "The System"                                                                         
## [2590] "Taira Clan Saga"                                                                    
## [2591] "Carancho"                                                                           
## [2592] "Stewart Lee: If You Prefer a Milder Comedian, Please Ask for One"                   
## [2593] "To Kill a Priest"                                                                   
## [2594] "Hungarian Rhapsody"                                                                 
## [2595] "Zozo"                                                                               
## [2596] "Little Italy"                                                                       
## [2597] "Anima Mundi"                                                                        
## [2598] "Hail the Judge"                                                                     
## [2599] "Monogamy"                                                                           
## [2600] "Just Call Me Nobody"                                                                
## [2601] "Haunted Castle"                                                                     
## [2602] "The Model Couple"                                                                   
## [2603] "Dead Times"                                                                         
## [2604] "Wasted on the Young"                                                                
## [2605] "Nobody Knows Anything!"                                                             
## [2606] "Cinderella Liberty"                                                                 
## [2607] "Through the Forest"                                                                 
## [2608] "The Squeeze"                                                                        
## [2609] "Fraternity Demon"                                                                   
## [2610] "The Skinny"                                                                         
## [2611] "Design of Death"                                                                    
## [2612] "The Gun That Won the West"                                                          
## [2613] "More of Me"                                                                         
## [2614] "I Spy Returns"                                                                      
## [2615] "Duck, You Sucker"                                                                   
## [2616] "Pretty Woman"                                                                       
## [2617] "The Lives of Others"                                                                
## [2618] "Dixie Chicks: Shut Up and Sing"                                                     
## [2619] "Paranormal Activity: Tokyo Night"                                                   
## [2620] "Zabriskie Point"                                                                    
## [2621] "Valley of the Dolls"                                                                
## [2622] "Midnight Cowboy"                                                                    
## [2623] "The Fifth Musketeer"                                                                
## [2624] "Cars 2"                                                                             
## [2625] "Three Colors: Blue"                                                                 
## [2626] "Groundhog Day"                                                                      
## [2627] "The Wizard"                                                                         
## [2628] "Sin City: A Dame to Kill For"                                                       
## [2629] "Ladyhawke"                                                                          
## [2630] "Constantine"                                                                        
## [2631] "The Ring"                                                                           
## [2632] "The Birds"                                                                          
## [2633] "Wild Strawberries"                                                                  
## [2634] "Grease"                                                                             
## [2635] "A Trip to the Moon"                                                                 
## [2636] "This Island Earth"                                                                  
## [2637] "The Ox-Bow Incident"                                                                
## [2638] "Miss Congeniality"                                                                  
## [2639] "Emma's Bliss"                                                                       
## [2640] "Games of Love and Chance"                                                           
## [2641] "Pieces of April"                                                                    
## [2642] "Crash"                                                                              
## [2643] "The Devil's Rejects"                                                                
## [2644] "The Cider House Rules"                                                              
## [2645] "Helen"                                                                              
## [2646] "Captain America: The First Avenger"                                                 
## [2647] "The Empire Strikes Back"                                                            
## [2648] "Live and Become"                                                                    
## [2649] "My Blueberry Nights"                                                                
## [2650] "Paranoid Park"                                                                      
## [2651] "The Real McCoy"                                                                     
## [2652] "Open Range"                                                                         
## [2653] "Tomboy"                                                                             
## [2654] "Clerks II"                                                                          
## [2655] "What Lies Beneath"                                                                  
## [2656] "Abel"                                                                               
## [2657] "Les Amants du Pont-Neuf"                                                            
## [2658] "Rumor Has It..."                                                                    
## [2659] "In Bed"                                                                             
## [2660] "Bogus"                                                                              
## [2661] "Secret Agent Super Dragon"                                                          
## [2662] "Blondie Plays Cupid"                                                                
## [2663] "Blondie Goes Latin"                                                                 
## [2664] "The Secret Life of Words"                                                           
## [2665] "The Spanish Apartment"                                                              
## [2666] "The Two Faces of Dr. Jekyll"                                                        
## [2667] "I'll Always Know What You Did Last Summer"                                          
## [2668] "The Passerby"                                                                       
## [2669] "Hercules in New York"                                                               
## [2670] "Made in Hong Kong"                                                                  
## [2671] "Man with a Movie Camera"                                                            
## [2672] "Devil Dog: The Hound of Hell"                                                       
## [2673] "Bright Future"                                                                      
## [2674] "Countdown"                                                                          
## [2675] "The Greatest"                                                                       
## [2676] "Only Angels Have Wings"                                                             
## [2677] "Electra, My Love"                                                                   
## [2678] "For a Moment, Freedom"                                                              
## [2679] "Masques"                                                                            
## [2680] "Stranded"                                                                           
## [2681] "Omagh"                                                                              
## [2682] "Zapped Again!"                                                                      
## [2683] "Psychopathia Sexualis"                                                              
## [2684] "Wild West Comedy Show: 30 Days & 30 Nights - Hollywood to the Heartland"            
## [2685] "On the Edge"                                                                        
## [2686] "Stevie"                                                                             
## [2687] "Stromboli"                                                                          
## [2688] "The Mexican"                                                                        
## [2689] "Equilibrium"                                                                        
## [2690] "Journey to the Beginning of Time"                                                   
## [2691] "Reservation Road"                                                                   
## [2692] "Nothing Like the Holidays"                                                          
## [2693] "The Man I Love"                                                                     
## [2694] "Some Folks Call It a Sling Blade"                                                   
## [2695] "Mr. Magorium's Wonder Emporium"                                                     
## [2696] "The Green Room"                                                                     
## [2697] "1942: A Love Story"                                                                 
## [2698] "B. Monkey"                                                                          
## [2699] "The Fugitive"                                                                       
## [2700] "The Hitchhiker's Guide to the Galaxy"                                               
## [2701] "Flaming Creatures"                                                                  
## [2702] "Small Potatoes: Who Killed the USFL?"                                               
## [2703] "The Cosmonaut"                                                                      
## [2704] "A2"                                                                                 
## [2705] "The Evil Dead"                                                                      
## [2706] "Murder Most Foul"                                                                   
## [2707] "The Running Man"                                                                    
## [2708] "In Good Company"                                                                    
## [2709] "Identity"                                                                           
## [2710] "Wild Things"                                                                        
## [2711] "Babel"                                                                              
## [2712] "Keine Lieder über Liebe"                                                            
## [2713] "Sunless"                                                                            
## [2714] "Live Free or Die Hard"                                                              
## [2715] "You, Me and Dupree"                                                                 
## [2716] "The Promise"                                                                        
## [2717] "The Darjeeling Limited"                                                             
## [2718] "Carolina"                                                                           
## [2719] "House of Cards"                                                                     
## [2720] "White Lightning"                                                                    
## [2721] "Kiss Kiss Bang Bang"                                                                
## [2722] "Van Gogh: Brush with Genius"                                                        
## [2723] "Benny & Joon"                                                                       
## [2724] "Carrie"                                                                             
## [2725] "The Company She Keeps"                                                              
## [2726] "And the Band Played On"                                                             
## [2727] "Island of Lost Souls"                                                               
## [2728] "Things to Come"                                                                     
## [2729] "Corpse Bride"                                                                       
## [2730] "Scream 2"                                                                           
## [2731] "The Devil's Own"                                                                    
## [2732] "Don't Look Now: We're Being Shot At"                                                
## [2733] "Angels and Insects"                                                                 
## [2734] "At Point Blank"                                                                     
## [2735] "Fall of the Republic: The Presidency of Barack H. Obama"                            
## [2736] "Amos & Andrew"                                                                      
## [2737] "Johnny 100 Pesos"                                                                   
## [2738] "Canvas"                                                                             
## [2739] "Silent Night, Deadly Night 5: The Toy Maker"                                        
## [2740] "Catching Hell"                                                                      
## [2741] "An Unforgettable Summer"                                                            
## [2742] "Wild Bill"                                                                          
## [2743] "Looking for Lenny"                                                                  
## [2744] "Mammy"                                                                              
## [2745] "Giliap"                                                                             
## [2746] "The Warped Ones"                                                                    
## [2747] "La montaña rusa"                                                                    
## [2748] "The Monster"                                                                        
## [2749] "Moonshine County Express"                                                           
## [2750] "The Mountain Road"                                                                  
## [2751] "Night #1"                                                                           
## [2752] "Tchoupitoulas"                                                                      
## [2753] "The Touch"                                                                          
## [2754] "Insiang"                                                                            
## [2755] "On Top of the Whale"                                                                
## [2756] "The Lonedale Operator"                                                              
## [2757] "The Diary of Anne Frank"                                                            
## [2758] "The Punk Rock Movie"                                                                
## [2759] "Chi lavora è perduto"                                                               
## [2760] "Lost Highway"                                                                       
## [2761] "About a Boy"                                                                        
## [2762] "Evening"                                                                            
## [2763] "Evil Alien Conquerors"                                                              
## [2764] "Making Contact"                                                                     
## [2765] "American Wedding"                                                                   
## [2766] "Gamera vs. Guiron"                                                                  
## [2767] "Yaji and Kita: The Midnight Pilgrims"                                               
## [2768] "Gun-shy"                                                                            
## [2769] "Mandroid"                                                                           
## [2770] "The Return of Doctor X"                                                             
## [2771] "Fanaa"                                                                              
## [2772] "Anchorman: The Legend of Ron Burgundy"                                              
## [2773] "Brigham City"                                                                       
## [2774] "Lion of the Desert"                                                                 
## [2775] "Babysitter Wanted"                                                                  
## [2776] "Lone Rider"                                                                         
## [2777] "95 Miles to Go"                                                                     
## [2778] "Brooklyn Boheme"                                                                    
## [2779] "Hounded"                                                                            
## [2780] "Mud"                                                                                
## [2781] "Kaiji 2: The Ultimate Gambler"                                                      
## [2782] "Love Is a Ball"                                                                     
## [2783] "K-PAX"                                                                              
## [2784] "Starship Troopers"                                                                  
## [2785] "Spirited Away"

Adding Derived variables to original movie rating dataset

movie_data$Review_date <- as_datetime(movie_data$Tymestamp)
movie_data$Weekday <- weekdays(movie_data$Review_date)
movie_data$Year <- year(movie_data$Review_date)
movie_data$Hour <- hour(movie_data$Review_date)
head(movie_data, n=25)
##    userid movieId                            Title rating  Tymestamp
## 1       1    1371                        Rocky III      3 1260759135
## 2       1    1405                            Greed      1 1260759203
## 3       1    2105                     American Pie      4 1260759139
## 4       1    2193                         My Tutor      2 1260759198
## 5       1    2294   Jay and Silent Bob Strike Back      2 1260759108
## 6       1    2455             Confidentially Yours      3 1260759113
## 7       2      17                         The Dark      5  835355681
## 8       2      62            2001: A Space Odyssey      3  835355749
## 9       2     110                Three Colors: Red      4  835355532
## 10      2     144                  Wings of Desire      3  835356016
## 11      2     150                          48 Hrs.      5  835355395
## 12      2     153              Lost in Translation      4  835355441
## 13      2     161                   Ocean's Eleven      3  835355493
## 14      2     165       Back to the Future Part II      3  835355441
## 15      2     168    Star Trek IV: The Voyage Home      3  835355710
## 16      2     185               A Clockwork Orange      3  835355511
## 17      2     186              Lucky Number Slevin      3  835355664
## 18      2     222 Berlin: Symphony of a Great City      5  835355840
## 19      2     223                          Rebecca      1  835355749
## 20      2     225                      Man of Iron      3  835355552
## 21      2     235                      Stand by Me      3  835355664
## 22      2     248            Pocketful of Miracles      3  835355896
## 23      2     253                 Live and Let Die      4  835355511
## 24      2     261            Cat on a Hot Tin Roof      4  835355681
## 25      2     265                     Lili Marleen      5  835355697
##            Review_date Weekday Year Hour
## 1  2009-12-14 02:52:15  Monday 2009    2
## 2  2009-12-14 02:53:23  Monday 2009    2
## 3  2009-12-14 02:52:19  Monday 2009    2
## 4  2009-12-14 02:53:18  Monday 2009    2
## 5  2009-12-14 02:51:48  Monday 2009    2
## 6  2009-12-14 02:51:53  Monday 2009    2
## 7  1996-06-21 11:14:41  Friday 1996   11
## 8  1996-06-21 11:15:49  Friday 1996   11
## 9  1996-06-21 11:12:12  Friday 1996   11
## 10 1996-06-21 11:20:16  Friday 1996   11
## 11 1996-06-21 11:09:55  Friday 1996   11
## 12 1996-06-21 11:10:41  Friday 1996   11
## 13 1996-06-21 11:11:33  Friday 1996   11
## 14 1996-06-21 11:10:41  Friday 1996   11
## 15 1996-06-21 11:15:10  Friday 1996   11
## 16 1996-06-21 11:11:51  Friday 1996   11
## 17 1996-06-21 11:14:24  Friday 1996   11
## 18 1996-06-21 11:17:20  Friday 1996   11
## 19 1996-06-21 11:15:49  Friday 1996   11
## 20 1996-06-21 11:12:32  Friday 1996   11
## 21 1996-06-21 11:14:24  Friday 1996   11
## 22 1996-06-21 11:18:16  Friday 1996   11
## 23 1996-06-21 11:11:51  Friday 1996   11
## 24 1996-06-21 11:14:41  Friday 1996   11
## 25 1996-06-21 11:14:57  Friday 1996   11