Repository: m-bain/CondensedMovies Branch: master Commit: c4f0c35a34b8 Files: 46 Total size: 9.1 MB Directory structure: gitextract_0eiwykgy/ ├── .gitignore ├── README.md ├── base/ │ ├── __init__.py │ ├── base_data_loader.py │ ├── base_model.py │ └── base_trainer.py ├── configs/ │ └── moe.json ├── data/ │ └── metadata/ │ ├── casts.csv │ ├── clips.csv │ ├── descriptions.csv │ ├── durations.csv │ ├── movie_info.csv │ ├── movies.csv │ ├── split.csv │ └── youtube-dl-dump/ │ ├── 2011.csv │ ├── 2012.csv │ ├── 2013.csv │ ├── 2014.csv │ ├── 2015.csv │ ├── 2016.csv │ ├── 2017.csv │ ├── 2018.csv │ ├── 2019.csv │ └── 2020.csv ├── data_loader/ │ ├── MovieClips_dataset.py │ └── data_loaders.py ├── data_prep/ │ ├── config.json │ ├── download.py │ └── youtube-dl.conf ├── logger/ │ ├── __init__.py │ ├── logger.py │ ├── logger_config.json │ └── visualization.py ├── model/ │ ├── loss.py │ ├── metric.py │ ├── model.py │ └── net_vlad.py ├── parse_config.py ├── test.py ├── train.py ├── trainer/ │ ├── __init__.py │ └── trainer.py ├── utils/ │ ├── __init__.py │ ├── util.py │ └── visualisation.py └── visualise_face_tracks.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ .DS_store .idea/* ================================================ FILE: README.md ================================================ ## CondensedMovies **** ___N.B: Please use the condensed movies challenge https://github.com/m-bain/CondensedMovies-chall with updated splits since some videos in the original paper are unavailable with missing features ****____ ___Contact me directly for the additional dataset queries, details in the challenge repo for feature download.___ ############################################### This repository contains the video dataset, implementation and baselines from Condensed Movies: Story Based Retrieval with Contextual Embeddings. [Project page](https://www.robots.ox.ac.uk/~vgg/research/condensed-movies) | [arXiv preprint](https://arxiv.org/abs/2005.04208) | [Read the paper](https://arxiv.org/pdf/2005.04208.pdf) | [Preview the data](https://www.robots.ox.ac.uk/~vgg/research/condensed-movies/#preview) ---- ### CondensedMovies Dataset ![videocaptions](figs/example_captions.png) The dataset consists of 3K+ movies, 30K+ professionally captioned clips, 1K+ video hours, 400K+ facetracks & precomputed features from 6 different modalities. #### Installation Requirements: - Storage - 20GB for features (required for baseline experiments) - 10GB for facetracks - 250GB for videos - Libraries - ffmpeg (for video download) - youtube-dl (for video download) - pandas, numpy - python 3.6+ #### Prepare Data 1. Navigate to directory `cd CondensedMovies/data_prep/` 2. Edit configuration file `config.json` to download desired subsets of the dataset and their destination. 3. If downloading the source videos (`src: true`), you can edit `youtube-dl.conf` for desired resolution, subtitles etc. Please see [youtube-dl](https://github.com/ytdl-org/youtube-dl) for more info 4. Run `python download.py` If you have trouble downloading the source videos or features (due to geographical restrictions or otherwise), please contact me. ### Video-Text Retrieval #### Baseline (Mixture of Expert Embeddings) Edit `data_dir` and `save_dir` in `configs/moe.json` for the experiments. 1. `python train.py configs/moe.json` 2. `python test.py --resume $SAVED_EXP_DIR/model_best.pth` ### Visualisation Run `python visualise_face_tracks.py` with the appropriate arguments to visualise face tracks for a given videoID (requires facetracks and source videos downloaded). #### TODO: - [x] youtube download script - [x] missing videos check - [x] precomputed features download script - [x] facetrack visualisation - [x] dataloader - [x] video-text retrieval baselines - [ ] intra-movie baselines + char module - [ ] release fixed_seg features #### FAQ Why did some of the source videos fail to download? >This is most likely due to geographical restrictions on the videos, email me at maxbain@robots.ox.ac.uk and I can help. The precomputed features are averaged over the temporal dimension, will you release the original features? >This is to save space, original features in total are ~1TB, contact me to arrange download of this. I think clip X is incorrectly identified as being from movie Y, what do do? >Please let me know any movie identification mistakes and I'll correct it ASAP. #### Acknowledgements We would like to thank Samuel Albanie for his help with feature extraction. ================================================ FILE: base/__init__.py ================================================ from .base_data_loader import * from .base_model import * from .base_trainer import * ================================================ FILE: base/base_data_loader.py ================================================ import numpy as np from torch.utils.data import DataLoader from torch.utils.data.dataloader import default_collate class BaseDataLoader(DataLoader): """ Base class for all data loaders """ def __init__(self, dataset, batch_size, split, shuffle, num_workers, collate_fn=default_collate): self.shuffle = shuffle self.batch_idx = 0 self.n_samples = len(dataset) self.split = split self.init_kwargs = { 'dataset': dataset, 'batch_size': batch_size, 'shuffle': self.shuffle, 'collate_fn': collate_fn, 'num_workers': num_workers } super().__init__(**self.init_kwargs) ================================================ FILE: base/base_model.py ================================================ import torch.nn as nn import numpy as np from abc import abstractmethod class BaseModel(nn.Module): """ Base class for all models """ @abstractmethod def forward(self, *inputs): """ Forward pass logic :return: Model output """ raise NotImplementedError def __str__(self): """ Model prints with number of trainable parameters """ model_parameters = filter(lambda p: p.requires_grad, self.parameters()) params = sum([np.prod(p.size()) for p in model_parameters]) return super().__str__() + '\nTrainable parameters: {}'.format(params) def tot_params(self): model_parameters = filter(lambda p: p.requires_grad, self.parameters()) params = sum([np.prod(p.size()) for p in model_parameters]) return params ================================================ FILE: base/base_trainer.py ================================================ import torch from abc import abstractmethod from numpy import inf from logger import TensorboardWriter class BaseTrainer: """ Base class for all trainers """ def __init__(self, model, loss, metrics, optimizer, config): self.config = config self.logger = config.get_logger('trainer', config['trainer']['verbosity']) # setup GPU device if available, move model into configured device self.device, device_ids = self._prepare_device(config['n_gpu']) self.model = model.to(self.device) if len(device_ids) > 1: self.model = torch.nn.DataParallel(model, device_ids=device_ids) self.loss = loss self.metrics = metrics self.optimizer = optimizer self.config = cfg_trainer = config['trainer'] self.epochs = cfg_trainer['epochs'] self.save_period = cfg_trainer['save_period'] self.monitor = cfg_trainer.get('monitor', 'off') self.tensorboard = cfg_trainer['tensorboard'] # configuration to monitor model performance and save best if self.monitor == 'off': self.mnt_mode = 'off' self.mnt_best = 0 else: self.mnt_mode, self.mnt_metric = self.monitor.split() assert self.mnt_mode in ['min', 'max'] self.mnt_best = inf if self.mnt_mode == 'min' else -inf self.early_stop = cfg_trainer.get('early_stop', inf) self.start_epoch = 1 self.checkpoint_dir = config.save_dir # setup visualization writer instance self.writer = TensorboardWriter(config.log_dir, self.logger, cfg_trainer['tensorboard']) if config.resume is not None: self._resume_checkpoint(config.resume) @abstractmethod def _train_epoch(self, epoch): """ Training logic for an epoch :param epoch: Current epoch number """ raise NotImplementedError def train(self): """ Full training logic """ not_improved_count = 0 for epoch in range(self.start_epoch, self.epochs + 1): result = self._train_epoch(epoch) # save logged informations into log dict log = {'epoch': epoch} for key, value in result.items(): if key == 'metrics': log.update({mtr.__name__: value[i] for i, mtr in enumerate(self.metrics)}) elif key == 'val_metrics': log.update({'val_' + mtr.__name__: value[i] for i, mtr in enumerate(self.metrics)}) elif key == 'nested_val_metrics': # NOTE: currently only supports two layers of nesting for subkey, subval in value.items(): for subsubkey, subsubval in subval.items(): log[f"val_{subkey}_{subsubkey}"] = subsubval else: log[key] = value # print logged informations to the screen for key, value in log.items(): self.logger.info(' {:15s}: {}'.format(str(key), value)) # evaluate model performance according to configured metric, save best checkpoint as model_best best = False if self.mnt_mode != 'off': try: # check whether model performance improved or not, according to specified metric(mnt_metric) improved = (self.mnt_mode == 'min' and log[self.mnt_metric] <= self.mnt_best) or \ (self.mnt_mode == 'max' and log[self.mnt_metric] >= self.mnt_best) except KeyError: self.logger.warning("Warning: Metric '{}' is not found. " "Model performance monitoring is disabled.".format(self.mnt_metric)) self.mnt_mode = 'off' improved = False if improved: self.mnt_best = log[self.mnt_metric] not_improved_count = 0 best = True else: not_improved_count += 1 if not_improved_count > self.early_stop: self.logger.info("Validation performance didn\'t improve for {} epochs. " "Training stops.".format(self.early_stop)) break if epoch % self.save_period == 0: self._save_checkpoint(epoch, save_best=best) def _prepare_device(self, n_gpu_use): """ setup GPU device if available, move model into configured device """ #n_gpu = torch.cuda.device_count() #if n_gpu_use > 0 and n_gpu == 0: # self.logger.warning("Warning: There\'s no GPU available on this machine," # "training will be performed on CPU.") # n_gpu_use = 0 #if n_gpu_use > n_gpu: # self.logger.warning("Warning: The number of GPU\'s configured to use is {}, but only {} are available " # "on this machine.".format(n_gpu_use, n_gpu)) # n_gpu_use = n_gpu device = torch.device('cuda:0' if n_gpu_use > 0 else 'cpu') list_ids = list(range(n_gpu_use)) return device, list_ids def _save_checkpoint(self, epoch, save_best=False): """ Saving checkpoints :param epoch: current epoch number :param log: logging information of the epoch :param save_best: if True, rename the saved checkpoint to 'model_best.pth' """ arch = type(self.model).__name__ state = { 'arch': arch, 'epoch': epoch, 'state_dict': self.model.state_dict(), 'optimizer': self.optimizer.state_dict(), 'monitor_best': self.mnt_best, 'config': self.config } filename = str(self.checkpoint_dir / 'checkpoint-epoch{}.pth'.format(epoch)) torch.save(state, filename) self.logger.info("Saving checkpoint: {} ...".format(filename)) if save_best: best_path = str(self.checkpoint_dir / 'model_best.pth') torch.save(state, best_path) self.logger.info("Saving current best: model_best.pth ...") def _resume_checkpoint(self, resume_path): """ Resume from saved checkpoints :param resume_path: Checkpoint path to be resumed """ resume_path = str(resume_path) self.logger.info("Loading checkpoint: {} ...".format(resume_path)) checkpoint = torch.load(resume_path) self.start_epoch = checkpoint['epoch'] + 1 self.mnt_best = checkpoint['monitor_best'] # load architecture params from checkpoint. if checkpoint['config']['arch'] != self.config['arch']: self.logger.warning("Warning: Architecture configuration given in config file is different from that of " "checkpoint. This may yield an exception while state_dict is being loaded.") self.model.load_state_dict(checkpoint['state_dict']) # load optimizer state from checkpoint only when optimizer type is not changed. if checkpoint['config']['optimizer']['type'] != self.config['optimizer']['type']: self.logger.warning("Warning: Optimizer type given in config file is different from that of checkpoint. " "Optimizer parameters not being resumed.") else: self.optimizer.load_state_dict(checkpoint['optimizer']) self.logger.info("Checkpoint loaded. Resume training from epoch {}".format(self.start_epoch)) ================================================ FILE: configs/moe.json ================================================ { "name": "MoEE", "n_gpu": 1, "arch": { "type": "MoEE", "args": { "pretrained": "", "projection_dim": 512, "use_moe": false, "aggregation_method": { "label": { "type": "net_vlad", "cluster_size": 10, "ghost_clusters": 0 }, "description": { "type": "net_vlad", "cluster_size": 10, "ghost_clusters": 0 }, "face": { "type": "mean" }, "speech": { "type": "mean", "cluster_size": 0, "ghost_clusters": 0 } } } }, "data_loader": { "type": "MovieClipsDataLoader", "args": { "data_dir": "data", "metadata_dir": "data/metadata", "batch_size": 64, "shuffle": true, "num_workers": 4, "label": "description", "experts_used": { "characters": false, "clip_name": false, "description": true, "face": true, "rgb": true, "scene": true, "speech": true, "video": true, "s3d": false }, "experts": { "characters": "", "clip_name": "BERT/bert-large-cased/clip_name/agg/agg.npy", "context": "", "description": "BERT/bert-large-cased/description/agg/agg_word.npy", "face": "SE-ResNet-50/256D_vgg_face2/agg/agg_feats_mean.npy", "plot": "BERT/bert-large-cased/plot/agg/agg.npy", "rgb": "SE-ResNet-154/pred_imagenet_25fps_256px_stride1_offset0/agg/agg_feats_mean.npy", "scene": "DenseNet-161/pred_scene_25fps_256px_stride1_offset0/agg/agg_feats_mean.npy", "speech": "BERT/bert-large-cased/speech/agg/agg.npy", "video": "I3D/pred_i3d_25fps_256px_stride25_offset0_inner_stride1/agg/agg_feats_mean.npy", "s3d": "S3DG/pred_s3dg_10fps_256px_stride16_offset0_inner_stride1/agg/agg_feats_mean.npy" }, "max_tokens": { "description": 20, "characters": 10, "face": 5, "plot": 60, "speech": 20 } } }, "optimizer": { "type": "Adam", "args":{ "lr": 0.001, "weight_decay": 0, "amsgrad": true } }, "loss": { "type": "MaxMarginRankingLoss", "args":{ "margin": 0.12132983763957966, "fix_norm": true } }, "metrics": [ "t2v_metrics", "v2t_metrics" ], "lr_scheduler": { "type": "StepLR", "args": { "step_size": 50, "gamma": 0.1 } }, "trainer": { "epochs": 100, "save_dir": "saved", "save_period": 1, "verbosity": 2, "monitor": "min val_loss", "early_stop": 4, "tensorboard": false, "retrieval": "inter" } } ================================================ FILE: data/metadata/casts.csv ================================================ imdbid,cast tt1707386,"{'Hugh Jackman': 'Jean Valjean', 'Russell Crowe': 'Javert', 'Anne Hathaway': 'Fantine', 'Amanda Seyfried': 'Cosette', 'Sacha Baron Cohen': 'Thénardier', 'Helena Bonham Carter': 'Madame Thénardier', 'Eddie Redmayne': 'Marius', 'Aaron Tveit': 'Enjolras', 'Samantha Barks': 'Éponine', 'Daniel Huttlestone': 'Gavroche', 'Cavin Cornwall': 'Convict 1', 'Josef Altin': 'Convict 2', 'Dave Hawley': 'Convict 3 (as David Hawley)', 'Adam Jones': 'Convict 4', 'John Barr': 'Convict 5'}" tt6398184,"{'Michelle Dockery': 'Lady Mary Talbot', 'Imelda Staunton': 'Maud Bagshaw', 'Matthew Goode': 'Henry Talbot', 'Tuppence Middleton': 'Lucy Smith', 'Maggie Smith': 'Violet Crawley', 'Geraldine James': 'Queen Mary', 'Allen Leech': 'Tom Branson', 'Elizabeth McGovern': 'Cora Crawley', 'Joanne Froggatt': 'Anna Bates', 'Mark Addy': 'Mr. Bakewell', 'Kate Phillips': 'Princess Mary', 'Sophie McShera': 'Daisy Mason', 'Laura Carmichael': 'Lady Edith', 'Raquel Cassidy': 'Miss Baxter', 'Susan Lynch': 'Miss Lawton'}" tt6324278,"{'Chloe Bennet': 'Yi (voice)', 'Albert Tsai': 'Peng (voice)', 'Tenzing Norgay Trainor': 'Jin (voice)', 'Joseph Izzo': 'Everest (voice)', 'Eddie Izzard': 'Burnish (voice)', 'Sarah Paulson': 'Dr. Zara (voice)', 'Tsai Chin': 'Nai Nai (voice)', 'Michelle Wong': ""Yi's Mom (voice)"", 'Rich Dietl': 'Goon Leader (voice) (as Rich B. Dietl)', 'James Hong': 'Yak Leader (voice)', 'Christine Lin': ""Teenage Girl #1 / Boy's Mom / Female Customer (voice)"", 'Kym Miller': 'Teenage Girl #2 (voice)', 'Jason Ko': 'Teenage Boy (voice)', 'Trevor Devall': 'Van Driver / Goon (voice)', 'Karen Huie': 'Dog Lady / Dock Worker / Goon (voice)'}" tt0448115,"{'Zachary Levi': 'Shazam', 'Mark Strong': 'Dr. Sivana', 'Asher Angel': 'Billy Batson', 'Jack Dylan Grazer': 'Freddy Freeman', 'Adam Brody': 'Super Hero Freddy', 'Djimon Hounsou': 'Wizard', 'Faithe Herman': 'Darla Dudley', 'Meagan Good': 'Super Hero Darla', 'Grace Fulton': 'Mary Bromfield', 'Michelle Borth': 'Super Hero Mary', 'Ian Chen': 'Eugene Choi', 'Ross Butler': 'Super Hero Eugene', 'Jovan Armand': 'Pedro Peña', 'D.J. Cotrona': 'Super Hero Pedro', 'Marta Milans': 'Rosa Vasquez'}" tt6343314,"{'Michael B. Jordan': 'Adonis Johnson', 'Sylvester Stallone': 'Rocky Balboa', 'Tessa Thompson': 'Bianca', 'Phylicia Rashad': 'Mary Anne Creed', 'Dolph Lundgren': 'Ivan Drago', 'Florian Munteanu': ""Viktor Drago (as Florian 'Big Nasty' Munteanu)"", 'Russell Hornsby': 'Buddy Marcelle', 'Wood Harris': ""Tony 'Little Duke' Burton"", 'Milo Ventimiglia': 'Robert Balboa', 'Robbie Johns': 'Logan Balboa', 'Andre Ward': ""Danny 'Stuntman' Wheeler"", 'Brigitte Nielsen': 'Ludmilla Drago', 'Patrice Harris': ""Padman (as Patrice 'Boogey' Harris)"", ""Jacob 'Stitch' Duran"": 'Stitch', 'Ana Gerena': ""Adrian's Waitress""}" tt5013056,"{'Fionn Whitehead': 'Tommy', 'Damien Bonnard': 'French Soldier', 'Aneurin Barnard': 'Gibson', 'Lee Armstrong': 'Grenadier', 'James Bloor': 'Irate Soldier', 'Barry Keoghan': 'George', 'Mark Rylance': 'Mr. Dawson', 'Tom Glynn-Carney': 'Peter', 'Tom Hardy': 'Farrier', 'Jack Lowden': 'Collins', 'Luke Thompson': 'Warrant Officer', 'Michel Biel': 'French Soldier 2', 'Constantin Balsan': 'French Soldier 3', 'Billy Howle': 'Petty Officer', 'Mikey Collins': 'Soldier'}" tt0109288,"{'Damon Wayans': 'Darryl Walker', 'David Alan Grier': 'Kevin Walker', 'Robin Givens': 'Kimberly Jonz', 'Christopher Lawford': 'Mayor Marvin Harris', 'Lynne Thigpen': 'Grandma Walker', 'Jon Polito': ""Michael 'The Suit' Minelli"", 'Nick Corello': 'Sammy the Blade', 'Jason Alexander': 'Mr. Stone', 'Harris Peet': 'Commissioner Gains', 'Joseph Vassallo': 'Tony the Match (as Joe Vassallo)', 'Michael Wayans': 'Young Darryl', 'Damon Wayans Jr.': 'Young Kevin', 'John Moschitta Jr.': 'Mr. Crudd', 'Frazer Smith': 'Ned Beadie', 'Mark Schiff': 'Bus Driver'}" tt7343762,"{'Jacob Tremblay': 'Max', 'Keith L. Williams': 'Lucas', 'Brady Noon': 'Thor', 'Molly Gordon': 'Hannah', 'Midori Francis': 'Lily', 'Izaac Wang': 'Soren', 'Millie Davis': 'Brixlee', 'Josh Caras': 'Benji', 'Will Forte': ""Max's Dad"", 'Mariessa Portelance': ""Max's Mom"", 'Lil Rel Howery': ""Lucas's Dad"", 'Retta': ""Lucas' Mom"", 'Michaela Watkins': 'Saleswoman', 'Christian Darrel Scott': 'Marcus (as Christian Scott)', 'Macie Juiles': 'Taylor'}" tt6095472,"{'Jason Sudeikis': 'Red (voice)', 'Josh Gad': 'Chuck (voice)', 'Leslie Jones': 'Zeta (voice)', 'Bill Hader': 'Leonard (voice)', 'Rachel Bloom': 'Silver (voice)', 'Awkwafina': 'Courtney (voice)', 'Sterling K. Brown': 'Garry (voice)', 'Eugenio Derbez': 'Glenn (voice)', 'Tiffany Haddish': 'Debbie (voice)', 'Danny McBride': 'Bomb (voice)', 'Peter Dinklage': 'Mighty Eagle (voice)', 'Pete Davidson': 'Jerry (voice)', 'Zach Woods': 'Carl (voice)', 'Dove Cameron': 'Ella (voice)', 'Maya Rudolph': 'Matilda (voice)'}" tt2709692,"{'Benedict Cumberbatch': 'The Grinch (voice)', 'Cameron Seely': 'Cindy-Lou Who (voice)', 'Rashida Jones': 'Donna Who (voice)', 'Pharrell Williams': 'Narrator (voice)', ""Tristan O'Hare"": 'Groopert (voice)', 'Kenan Thompson': 'Mr. Bricklebaum (voice)', 'Sam Lavagnino': 'Ozzy (voice)', 'Ramone Hamilton': 'Axl (voice)', 'Angela Lansbury': 'Mayor McGerkle (voice)', 'Scarlett Estevez': 'Izzy (voice)', 'Michael Beattie': 'Store Clerk (voice)', 'Lori Alan': 'Additional Voices (voice)', 'Carlos Alazraqui': 'Additional Voices (voice)', 'Doug Burch': 'Additional Voices (voice)', 'Cathy Cavadini': 'Additional Voices (voice) (as Catherine Cavadini)'}" tt5109784,"{'Jennifer Lawrence': 'Mother', 'Javier Bardem': 'Him', 'Ed Harris': 'Man', 'Michelle Pfeiffer': 'Woman', 'Brian Gleeson': 'Younger Brother', 'Domhnall Gleeson': 'Oldest Son', 'Jovan Adepo': 'Cupbearer', 'Amanda Chiu': 'Damsel', 'Patricia Summersett': 'Consoler', 'Eric Davis': 'Bumbler', 'Raphael Grosz-Harvey': 'Philanderer', 'Emily Hampshire': 'Fool', 'Abraham Aronofsky': 'Wanderer', 'Luis Oliva': 'Idler', 'Stephanie Ng Wan': 'Whisperer'}" tt0077288,"{'Ugo Tognazzi': 'Renato Baldi', 'Michel Serrault': 'Albin Mougeotte dit Zaza Napoli', 'Claire Maurier': 'Simone Deblon', 'Rémi Laurent': 'Laurent Baldi', 'Carmen Scarpitta': 'Louise Charrier', 'Benny Luke': 'Jacob', 'Luisa Maneri': 'Andréa Charrier', 'Michel Galabru': 'Simon Charrier', 'Venantino Venantini': 'Le chauffeur de Charrier', 'Carlo Reali': 'Le videur', 'Guido Cerniglia': 'Le médecin', 'Angelo Pellegrino': 'Un assistant de la boîte de nuit', 'Liana Del Balzo': 'Mme Charrier'}" tt0069995,"{'Julie Christie': 'Laura Baxter', 'Donald Sutherland': 'John Baxter', 'Hilary Mason': 'Heather', 'Clelia Matania': 'Wendy', 'Massimo Serato': 'Bishop Barbarrigo', 'Renato Scarpa': 'Inspector Longhi', 'Giorgio Trestini': 'Workman', 'Leopoldo Trieste': 'Hotel Manager', 'David Tree': 'Anthony Babbage', 'Ann Rye': 'Mandy Babbage', 'Nicholas Salter': 'Johnny Baxter', 'Sharon Williams': 'Christine Baxter', 'Bruno Cattaneo': 'Detective Sabbione', 'Adelina Poerio': 'Dwarf'}" tt0070666,"{'Al Pacino': 'Serpico', 'John Randolph': 'Sidney Green', 'Jack Kehoe': 'Tom Keough', 'Biff McGuire': 'Captain McClain', 'Barbara Eda-Young': 'Laurie (as Barbara eda-Young)', 'Cornelia Sharpe': 'Leslie', 'Tony Roberts': 'Bob Blair', 'John Medici': 'Pasquale', 'Allan Rich': 'D.A. Tauber', 'Norman Ornellas': 'Rubello', 'Edward Grover': 'Lombardo (as Ed Grover)', 'Albert Henderson': 'Peluce (as Al Henderson)', 'Hank Garrett': 'Malone', 'Damien Leake': 'Joey', 'Joseph Bova': 'Potts (as Joe Bova)'}" tt2561572,"{'Will Ferrell': 'James', 'Kevin Hart': 'Darnell', 'Craig T. Nelson': 'Martin', 'Alison Brie': 'Alissa', 'Edwina Findley Dickerson': 'Rita (as Edwina Findley)', 'Ariana Neal': 'Makayla', 'Erick Chavarria': 'Cecelio', 'T.I.': ""Russell (as Tip 'T.I.' Harris)"", 'Paul Ben-Victor': 'Gayle', 'John Mayer': 'John Mayer', 'Jon Eyez': 'Big Mike', 'Nito Larioza': 'Jaoa', 'Dan Bakkedahl': 'Leo', 'Greg Germann': 'Peter Penny', 'Ron Funches': 'Jojo'}" tt0408306,"{'Eric Bana': 'Avner', 'Daniel Craig': 'Steve', 'Ciarán Hinds': 'Carl', 'Mathieu Kassovitz': 'Robert', 'Hanns Zischler': 'Hans', 'Ayelet Zurer': 'Daphna', 'Geoffrey Rush': 'Ephraim', 'Gila Almagor': ""Avner's Mother"", 'Michael Lonsdale': 'Papa', 'Mathieu Amalric': 'Louis', 'Moritz Bleibtreu': 'Andreas', 'Valeria Bruni Tedeschi': 'Sylvie (as Valéria Bruni Tedeschi)', 'Meret Becker': 'Yvonne', 'Marie-Josée Croze': 'Jeanette the Dutch Assassin (as Marie-Josee Croze)', 'Yvan Attal': ""Tony - Andreas' Friend""}" tt7547410,"{'Benicio Del Toro': 'Swiper (voice)', 'Madelyn Miranda': 'Dora (6 years)', 'Dee Bradley Baker': 'Animal Vocalizations (voice)', 'Malachi Barton': 'Diego (6 years)', 'Sasha Toro': 'Backpack (voice)', 'Marc Weiner': 'Map (voice)', 'Eva Longoria': 'Elena', 'Michael Peña': 'Cole', 'Joey Vieira': 'Nico', 'Pia Miller': 'Sabrina', 'Isabela Merced': 'Dora (as Isabela Moner)', 'Jeff Wahlberg': 'Diego', 'Adriana Barraza': 'Abuelita Valerie', 'Damien Garvey': 'Security Guard', 'Anikka Abelita': 'Vegan Student'}" tt0071402,"{'Charles Bronson': 'Paul Kersey', 'Hope Lange': 'Joanna Kersey', 'Vincent Gardenia': 'Frank Ochoa', 'Steven Keats': 'Jack Toby', 'William Redfield': 'Sam Kreutzer', 'Stuart Margolin': 'Aimes Jainchill', 'Stephen Elliott': 'Police Commissioner', 'Kathleen Tolan': 'Carol Toby', 'Jack Wallace': 'Hank', 'Fred J. Scollay': 'District Attorney (as Fred Scollay)', 'Chris Gampel': 'Ives', 'Robert Kya-Hill': 'Joe Charles', 'Edward Grover': 'Lt. Briggs (as Ed Grover)', 'Jeff Goldblum': 'Freak #1', 'Christopher Logan': 'Freak #2'}" tt0116225,"{'Kurt Russell': 'Snake Plissken', 'Steve Buscemi': 'Map to the Stars Eddie', 'Peter Fonda': 'Pipeline', 'Cliff Robertson': 'President', 'Valeria Golino': 'Taslima', 'Stacy Keach': 'Cmdr. Malloy', 'Pam Grier': 'Hershe Las Palmas', 'Bruce Campbell': 'Surgeon General of Beverly Hills', 'Georges Corraface': 'Cuervo Jones (as George Corraface)', 'Michelle Forbes': 'Brazen', 'A.J. Langer': 'Utopia', 'Ina Romeo': 'Hooker', 'Peter Jason': 'Duty Sergeant', 'Jordan Baker': 'Police Anchor', 'Caroleen Feeney': 'Woman on Freeway'}" tt0092493,"{'Paul Hogan': ""Michael J. 'Crocodile' Dundee"", 'Linda Kozlowski': 'Sue Charlton', 'John Meillon': 'Walter Reilly', 'Ernie Dingo': 'Charlie', 'Steve Rackman': 'Donk', 'Gerry Skilton': 'Nugget', 'Gus Mercurio': 'Frank', 'Jim Holt': 'Erskine', 'Alec Wilson': 'Denning', 'Maggie Blinco': 'Ida', 'Bill Sandy': 'Teddy', 'Mark Saunders': 'Diamond', 'Betty Bobbitt': 'Meg (Tourist)', 'Jim Cooper': 'Dorrigo Brother', 'Sam Cooper': 'Dorrigo Brother'}" tt0082782,"{'Paul Kelman': 'T.J.', 'Lori Hallier': 'Sarah', 'Neil Affleck': 'Axel', 'Keith Knight': 'Hollis', 'Alf Humphreys': 'Howard', 'Cynthia Dale': 'Patty', 'Helene Udy': 'Sylvia', 'Rob Stein': 'John', 'Thomas Kovacs': 'Mike (as Tom Kovacs)', 'Terry Waterland': 'Harriet', 'Carl Marotte': 'Dave', 'Jim Murchison': 'Tommy', 'Gina Dick': 'Gretchen', 'Peter Cowper': 'The Miner & Harry Warden', 'Don Francks': 'Chief Newby'}" tt0070016,"{'Debbie Reynolds': 'Charlotte (voice)', 'Paul Lynde': 'Templeton (voice)', 'Henry Gibson': 'Wilbur (voice)', 'Rex Allen': 'Narrator (voice)', 'Martha Scott': 'Mrs. Arable (voice)', 'Dave Madden': 'Ram (voice)', 'Danny Bonaduce': 'Avery Arable (voice)', 'Don Messick': 'Jeffrey (voice)', 'Herb Vigran': 'Lurvy (voice)', 'Agnes Moorehead': 'The Goose (voice)', 'Pamelyn Ferdin': 'Fern Arable (voice) (as Pam Ferdin)', 'Joan Gerber': 'Edith Zuckerman / Mrs. Fussy (voice)', 'Bob Holt': 'Homer Zuckerman (voice) (as Robert Holt)', 'John Stephenson': 'Mr. Arable / Parking Officer (voice)', 'William B. White': 'Henry Fussy (voice)'}" tt0073440,"{'David Arkin': 'Norman', 'Barbara Baxley': 'Lady Pearl', 'Ned Beatty': 'Delbert Reese', 'Karen Black': 'Connie White', 'Ronee Blakley': 'Barbara Jean', 'Timothy Brown': 'Tommy Brown', 'Keith Carradine': 'Tom Frank', 'Geraldine Chaplin': 'Opal', 'Robert DoQui': 'Wade (as Robert Doqui)', 'Shelley Duvall': 'L. A. Joan', 'Allen Garfield': 'Barnett', 'Henry Gibson': 'Haven Hamilton', 'Scott Glenn': 'Pfc. Glenn Kelly', 'Jeff Goldblum': 'Tricycle Man', 'Barbara Harris': 'Albuquerque'}" tt5952594,"{'Matthias Schoenaerts': 'Roman', 'Jason Mitchell': 'Henry', 'Bruce Dern': 'Myles', 'Gideon Adlon': 'Martha', 'Connie Britton': 'Psychologist', 'Josh Stewart': 'Dan', 'Thomas Smittle': 'Tom', 'Keith Johnson': 'Elijah', 'Noel Gugliemi': 'Roberto', 'James McFarland': 'Inmate at Anger Management', 'Sean Patrick Bridges': 'Photographer', 'George Schroeder': 'Officer Peters', 'Gregory Williams': 'Auctioneer', 'Joseph Bartlett': ""Guard at Roman's Cell""}" tt0118688,"{'Arnold Schwarzenegger': 'Mr. Freeze / Dr. Victor Fries', 'George Clooney': 'Batman / Bruce Wayne', ""Chris O'Donnell"": 'Robin / Dick Grayson', 'Uma Thurman': 'Poison Ivy / Dr. Pamela Isley', 'Alicia Silverstone': 'Batgirl / Barbara Wilson', 'Michael Gough': 'Alfred Pennyworth', 'Pat Hingle': 'Commissioner Gordon', 'John Glover': 'Doctor Jason Woodrue', 'Elle Macpherson': 'Julie Madison', 'Vivica A. Fox': 'Ms. B. Haven', 'Vendela Kirsebom': 'Nora Fries (as Vendela K. Thommessen)', 'Elizabeth Sanders': 'Gossip Gerty', 'Jeep Swenson': 'Bane', 'John Fink': 'Aztec Museum Guard', 'Michael Reid MacKay': 'Antonio Diego / Bane'}" tt2599716,"{'Jackie Chan': 'Zhong Wen', 'Ye Liu': 'Wu Jiang', 'Tian Jing': 'Miao Miao', 'Tao Yin': 'Lan Lan', 'Yiwei Liu': 'General Manager Niu', 'Wei Na': 'Na Na', 'Xiaoou Zhou': ""Wei Xiao Fu (as Zhou Xiao'ou)"", 'Rongguang Yu': 'Captain Wu', 'Peiqi Liu': 'Chief Zhang', 'Hailong Liu': 'Pi Song (as Liu Hailong)', 'Zha Ka': 'Bin Ge', 'Lu Cai': 'A Kun', 'Hai Fu': 'Tao Zi', 'Yizheng Zou': 'Worker', 'Chenjie Tong': 'Zhu Nan (as Tong Chenjie)'}" tt8079248,"{'Himesh Patel': 'Jack Malik', 'Lily James': 'Ellie Appleton', 'Sophia Di Martino': 'Carol', 'Ellise Chappell': 'Lucy', 'Meera Syal': 'Sheila Malik', 'Harry Michell': 'Nick', 'Vincent Franklin': 'Brian', 'Joel Fry': 'Rocky', 'Michael Kiwanuka': 'Michael Kiwanuka', 'Karma Sood': 'Young Jack', 'Gus Brown': 'Marcus The Dentist', 'Sanjeev Bhaskar': 'Jed Malik', 'Karl Theobald': 'Terry', 'Alexander Arnold': 'Gavin', 'Dominic Coleman': 'Ipswich TV Host'}" tt4532826,"{'Taron Egerton': 'Robin of Loxley', 'Jamie Foxx': 'Yahya / John', 'Ben Mendelsohn': 'Sheriff of Nottingham', 'Eve Hewson': 'Marian', 'Jamie Dornan': 'Will Tillman', 'Tim Minchin': 'Friar Tuck', 'Paul Anderson': 'Guy of Gisbourne', 'F. Murray Abraham': 'Cardinal', 'Ian Peck': 'Arch Deacon', 'Cornelius Booth': 'Lord Pembroke', 'Kane Headley-Cummings': 'Stoker', 'Scot Greenan': 'Clayton', 'Lara Rossi': 'Evelyn', 'Kevin Griffiths': 'Tom', 'Catriona Temple': 'Penny'}" tt5164214,"{'Sandra Bullock': 'Debbie Ocean', 'Griffin Dunne': 'Parole Board Officer', 'Deidre Goodwin': 'Prison Guard', 'Daniella Rabbani': 'Bergdorf Salesperson', 'Brian J. Carter': 'Mr. Randall', 'Gemma Forbes': 'Mrs. Randall', 'Katherine Hozier-Adams': 'Plaza Hotel Front Desk Clerk', 'Freddy J. Davila': 'Plaza Hotel Doorman', 'Francesca Calo': 'Plaza Hotel Maid', 'Cate Blanchett': 'Lou', 'Midori Francis': 'April', 'Elliott Gould': 'Reuben', 'Richard Armitage': 'Claude Becker', 'Charlotte Kirk': 'Cara', 'Anne Hathaway': 'Daphne Kluger'}" tt0058672,"{'Melina Mercouri': 'Elizabeth Lipp', 'Peter Ustinov': 'Arthur Simon Simpson', 'Maximilian Schell': 'Walter Harper', 'Robert Morley': 'Cedric Page', 'Jess Hahn': 'Hans Fisher', 'Gilles Ségal': 'Giulio the Human Fly', 'Akim Tamiroff': 'Gerven - the Cook', 'Titos Vandis': 'Harback (as Titos Wandis)', 'Ege Ernart': 'Maj. Ali Tufan', 'Senih Orkan': 'First Shadow', 'Ahmet Danyal Topatan': 'Second Shadow', 'Joe Dassin': 'Josef (as Joseph Dassin)', 'Despo Diamantidou': 'Voula'}" tt2495118,"{'Anthony Chau-Sang Wong': 'Yip Man', 'Gillian Chung': 'Chan Sei-mui', 'Jordan Chan': 'Tang Shing', 'Eric Tsang': 'Ng Chung', 'Marvel Chow': 'Wang Dong', 'Chuchu Zhou': 'Jenny (as Zhou Chuchu)', 'Timmy Hung': 'Leung Sheung', 'Luxia Jiang': 'Le King', 'Xin Xin Xiong': 'Local Dragon', 'Chun Ip': 'Stall owner with phone', 'Anita Yuen': 'Cheung Wing-Sing', 'Kai Chi Liu': 'Lee Yiu-wah', 'Cho-Lam Wong': 'Blind Chan', 'Jonathan Wong Chee Hynn': 'Ngai Tong (as Jonathan Wong)', 'Leo Au-Yeung': 'Fat Choi'}" tt7634968,"{'Taraji P. Henson': 'Ali Davis', 'Kristen Ledlow': 'Kristen Ledlow', 'Josh Brener': 'Brandon Wallace', 'Kellan Lutz': 'Captain Fucktastic', 'Jason Jones': 'Ethan Fowler', 'Justin Alvarez': 'Valet Guy (as Mathias Alvarez)', 'Chris Witaske': 'Eddie', 'Max Greenfield': 'Kevin Myrtle', 'Paul Brian Johnson': 'Scott (as Paul B. Johnson)', 'Brian Bosworth': 'Nick Ivers', 'Kausar Mohammed': 'Jenna Abbiddi', 'Richard Roundtree': 'Skip Davis', 'Taj-Naranja Jenkines': 'Tough Boxer', 'Aldis Hodge': 'Will', 'Auston Jon Moore': 'Ben (as Auston Moore)'}" tt7634968,"{'Taraji P. Henson': 'Ali Davis', 'Kristen Ledlow': 'Kristen Ledlow', 'Josh Brener': 'Brandon Wallace', 'Kellan Lutz': 'Captain Fucktastic', 'Jason Jones': 'Ethan Fowler', 'Justin Alvarez': 'Valet Guy (as Mathias Alvarez)', 'Chris Witaske': 'Eddie', 'Max Greenfield': 'Kevin Myrtle', 'Paul Brian Johnson': 'Scott (as Paul B. Johnson)', 'Brian Bosworth': 'Nick Ivers', 'Kausar Mohammed': 'Jenna Abbiddi', 'Richard Roundtree': 'Skip Davis', 'Taj-Naranja Jenkines': 'Tough Boxer', 'Aldis Hodge': 'Will', 'Auston Jon Moore': 'Ben (as Auston Moore)'}" tt6017942,"{'Myles Truitt': 'Eli Solinski', 'Jack Reynor': 'Jimmy Solinski', 'Dennis Quaid': 'Hal Solinski', 'Zoë Kravitz': 'Milly', 'James Franco': 'Taylor Balik', 'Carrie Coon': 'Morgan Hunter', 'Ian Matthews': 'Snick', 'Gavin Fox': 'Dutch Balik', 'Stephane Garneau-Monten': 'Remy', 'Lukas Penar': 'Big Man', 'Carleigh Beverly': 'Audrey', 'Lily Gao': 'Female Cleaner', 'Michael B. Jordan': 'Male Cleaner (as Michael B Jordan)', 'Milton Barnes': 'Guidance Counselor', 'Michael Grisley': 'School Bully'}" tt0046754,"{'Humphrey Bogart': 'Harry Dawes', 'Ava Gardner': 'Maria Vargas', ""Edmond O'Brien"": 'Oscar Muldoon', 'Marius Goring': 'Alberto Bravano', 'Valentina Cortese': 'Eleanora Torlato-Favrini (as Valentina Cortesa)', 'Rossano Brazzi': 'Count Vincenzo Torlato-Favrini', 'Elizabeth Sellars': 'Jerry', 'Warren Stevens': 'Kirk Edwards', 'Franco Interlenghi': 'Pedro Vargas', 'Mari Aldon': 'Myrna', 'Alberto Rabagliati': 'Proprietor', 'Enzo Staiola': 'Busboy', 'Maria Zanoli': ""Maria's Mother"", 'Renato Chiantoni': ""Maria's Father"", 'Bill Fraser': 'J. Montague Brown'}" tt1001526,"{'Will Ferrell': 'Megamind (voice)', 'Brad Pitt': 'Metro Man (voice)', 'Tina Fey': 'Roxanne Ritchie (voice)', 'Jonah Hill': 'Tighten (voice)', 'David Cross': 'Minion (voice)', 'Ben Stiller': 'Bernard (voice)', 'Justin Theroux': ""Megamind's Father (voice)"", 'Jessica Schulte': ""Megamind's Mother (voice)"", 'Tom McGrath': 'Lord Scott / Prison Guard (voice)', 'Emily Nordwind': 'Lady Scott (voice)', 'J.K. Simmons': 'Warden (voice)', 'Ella Olivia Stiller': 'Schoolchild (voice)', 'Quinn Dempsey Stiller': 'Schoolchild (voice)', 'Brian Hopkins': 'Prisoner (voice)', 'Christopher Knights': 'Prison Guard (voice)'}" tt2888046,"{'Donnie Yen': 'Ip Man', 'Lynn Xiong': 'Cheung Wing-sing (as Lynn Hung)', 'Jin Zhang': 'Cheung Tin-chi (as Max Zhang)', 'Mike Tyson': 'Frank', 'Patrick Tam': 'Ma King-Sang', 'Karena Ng': 'Miss Wong', 'Kai-Chung Cheung': 'Chui Lek', 'Kent Cheng': 'Fatso', 'Ka-Yan Leung': 'Master Tin', 'Danny Chan Kwok-Kwan': 'Bruce Lee (as Kwok-Kwan Chan)', 'Babyjohn Choi': 'Editor Lee', 'Sung Man Ban': 'David', 'Xiao Long Li': 'Ah Ching', 'Ling Lei': ""Ip Man's Student #1"", 'Tats Lau': 'Principal'}" tt1860353,"{'Ryan Reynolds': 'Turbo (voice)', 'Paul Giamatti': 'Chet (voice)', 'Michael Peña': 'Tito (voice)', 'Samuel L. Jackson': 'Whiplash (voice)', 'Luis Guzmán': 'Angelo (voice)', 'Bill Hader': 'Guy Gagné (voice)', 'Snoop Dogg': 'Smoove Move (voice)', 'Maya Rudolph': 'Burn (voice)', 'Ben Schwartz': 'Skidmark (voice)', 'Richard Jenkins': 'Bobby (voice)', 'Ken Jeong': 'Kim Ly (voice)', 'Michelle Rodriguez': 'Paz (voice)', 'Mario Andretti': 'Dos Bros Customer / Race Official (voice)', 'Mike Bell': 'White Shadow (voice) (as Michael Patrick Bell)', 'Aidan Andrews': 'Bike Boy (voice)'}" tt1386932,"{'Donnie Yen': 'Ip Man', 'Xiaoming Huang': 'Wong Shun-Leung', 'Sammo Kam-Bo Hung': 'Master Hung Chun-Nam', 'Lynn Xiong': 'Cheung Wing-Sing (as Lynn Hung)', 'Kent Cheng': 'Fatso', 'Darren Shahlavi': 'Mr. Miller / Twister', 'Yu-Hang To': 'Cheng Wai-Kei', 'Charles Mayer': 'Superintendent Wallace', 'Ka-nin Ngo': 'Leung Kan', 'Calvin Ka-Sing Cheng': 'Chow Kong-Yiu', 'Siu-Wong Fan': 'Jin Shan Zhao / Kam Shan-Chau', 'Simon Yam': 'Chow Ching-Chuen', ""Christian 'Kang' Bachini"": 'Twister Supporter (as Christian Bachini)', 'Brian Thomas Burrell': 'Emcee', 'Li Chak': 'Yip Chun (as Li Ze)'}" tt0097388,"{'Todd Caldecott': 'Jim Miller (as Todd Shaffer)', 'Tiffany Paulsen': 'Suzi Donaldson', 'Tim Mirkovich': 'Young Jason Voorhees (as Timothy Burr Mirkovich)', 'Kane Hodder': 'Jason Voorhees', 'Jensen Daggett': 'Rennie Wickham', 'Barbara Bingham': 'Colleen Van Deusen', 'Alex Diakun': 'Deck Hand', 'Peter Mark Richman': 'Charles McCulloch', 'Ace': 'Toby', 'Warren Munson': 'Admiral Robertson', 'Fred Henderson': 'Chief Engineer Jim Carlson', 'Scott Reeves': 'Sean Robertson', 'Gordon Currie': 'Miles Wolfe', 'Saffron Henderson': 'J.J. Jarrett', 'Martin Cummins': 'Wayne Webber'}" tt1220719,"{'Donnie Yen': 'Ip Man', 'Simon Yam': 'Quan', 'Lynn Xiong': 'Cheung (as Xiong Dai Lin)', 'Hiroyuki Ikeuchi': 'Miura', 'Ka Tung Lam': 'Li (as Lam Ka Tung)', 'Siu-Wong Fan': 'Jin (as Fan Sui Wong)', 'Xing Yu': 'Lin', 'You-Nam Wong': 'Yuan (as Wong You Nam)', 'Yu-Hang To': 'Wei (as To Yue Hong)', 'Calvin Ka-Sing Cheng': 'Yao (as Calvin Cheng)', 'Zhi-Hui Chen': 'Master Liu (as Chen Zhi Hui)', 'Tenma Shibuya': 'Sato (as Shibuya Tenma)', 'Li Chak': 'Zhun (as Li Ze)', 'Deqiang Shi': 'Southern Master', 'Zhong Zhou': 'Southern Master'}" tt8695030,"{'Bill Murray': 'Chief Cliff Robertson', 'Adam Driver': 'Officer Ronnie Peterson', 'Tom Waits': 'Hermit Bob', 'Chloë Sevigny': 'Officer Mindy Morrison', 'Steve Buscemi': 'Farmer Frank Miller', 'Eszter Balint': 'Fern', 'Danny Glover': 'Hank Thompson', 'Maya Delmont': 'Stella', 'Taliyah Whitaker': 'Olivia', ""Jahi Di'Allo Winston"": 'Geronimo (as Jahi Winston)', 'Kevin McCormick': 'Guard One', ""Sid O'Connell"": 'Guard Two', 'Caleb Landry Jones': 'Bobby Wiggins', 'RZA': 'Dean', 'Larry Fessenden': 'Danny Perkins'}" tt0045920,"{'Richard Carlson': 'John Putnam', 'Barbara Rush': 'Ellen Fields', 'Charles Drake': 'Sheriff Matt Warren', 'Joe Sawyer': 'Frank Daylon', 'Russell Johnson': 'George', 'Kathleen Hughes': 'Jane'}" tt7958736,"{'Octavia Spencer': 'Sue Ann', 'Diana Silvers': 'Maggie', 'Juliette Lewis': 'Erica', 'McKaley Miller': 'Haley', 'Corey Fogelmanis': 'Andy', 'Gianni Paolo': 'Chaz', 'Dante Brown': 'Darrell', 'Tanyell Waivers': 'Genie', 'Dominic Burgess': 'Stu', 'Heather Marie Pate': 'Ashley', 'Tate Taylor': 'Officer Grainger', 'Luke Evans': 'Ben', 'Margaret Fegan': 'Stephanie', 'Missi Pyle': 'Mercedes', 'Allison Janney': 'Doctor Brooks'}" tt2639336,"{'Isabelle Huppert': 'Greta Hideg', 'Chloë Grace Moretz': 'Frances McCullen', 'Maika Monroe': 'Erica Penn', 'Jane Perry': 'Animal Shelter Worker', 'Jeff Hiller': ""Maitre D' Henri"", 'Parker Sawyers': 'Park Hill Manager', 'Brandon Lee Sears': 'Flower Delivery Man', 'Arthur Lee': 'Korean Couple', 'Rosa Escoda': 'Korean Couple', 'Jessica Preddy': 'Park Hill Bartender', 'Thaddeus Daniels': 'Officer Deroy', 'Raven Dauda': 'Officer Regan', 'Colm Feore': 'Chris McCullen', 'Zawe Ashton': 'Alexa Hammond', 'Nagisa Morimoto': 'Park Hill Waitress'}" tt0068909,"{""Peter O'Toole"": 'Don Quixote De La Mancha / Miguel Cervantes / Alonso Quijana', 'Sophia Loren': 'Dulcinea / Aldonza', 'James Coco': 'Sancho Panza', 'Harry Andrews': 'The Innkeeper / The Governor', 'John Castle': 'Sanson Carrasco / The Duke', 'Brian Blessed': 'Pedro', 'Ian Richardson': 'The Padre', 'Julie Gregg': 'Antonia', 'Rosalie Crutchley': 'The Housekeeper', 'Gino Conforti': 'The Barber', 'Marne Maitland': 'Captain of the Guard', 'Dorothy Sinclair': ""The Innkeeper's Wife"", 'Miriam Acevedo': 'Fermina', 'Dominic Barto': 'Muleteer (as Dominic Bartó)', 'Poldo Bendandi': 'Muleteer'}" tt10720210,"{'Buzz Bissinger': 'Himself', 'Caitlyn Jenner': 'Herself', ""James 'Boobie' Miles"": 'Himself', 'Lisa Smith': 'Herself'}" tt6212136,"{'Andie MacDowell': 'Joanne Winters', 'Avan Jogia': 'Dan Delaney', 'Eve Hewson': 'Franny Winters', 'Hamish Linklater': 'Noah Bearinger', 'Evan Stern': 'Young PA', 'Andrew Markowiak': 'Geoff', 'Daniela Barbosa': 'Hailey Turner', 'Amanda Barker': 'Esme', 'Katy Breier': 'Maia', 'Craig Brown': 'Warm-Up Comic', 'Christine Ebadi': 'Game Show Contestant', 'Grace Glowicki': 'Cheyenne', 'Brooks Gray': 'Gavin St. Onge', 'Justin Landry': 'Assistant Director', 'Rishma Malik': 'Pearl'}" tt7334528,"{'Kyrie Irving': 'Uncle Drew', 'Lil Rel Howery': 'Dax', ""Shaquille O'Neal"": 'Big Fella', 'Chris Webber': 'Preacher', 'Reggie Miller': 'Lights', 'Nate Robinson': 'Boots', 'Lisa Leslie': 'Betty Lou', 'Erica Ash': 'Maya', 'Tiffany Haddish': 'Jess', 'Nick Kroll': 'Mookie', 'Aaron Gordon': 'Casper', 'Mike Epps': 'Louis', 'J.B. Smoove': 'Angelo', 'Wesley Witherspoon': 'Mario', 'Thomas Mills': 'Duke Tango'}" tt8426112,{'Rick Jay Glen': 'McBroom / Sgt. Rusty (voice)'} tt6806448,"{'Dwayne Johnson': 'Hobbs', 'Jason Statham': 'Shaw', 'Idris Elba': 'Brixton', 'Vanessa Kirby': 'Hattie', 'Helen Mirren': 'Queenie', 'Eiza González': 'Madame M (as Eiza Gonzalez)', 'Eddie Marsan': 'Professor Andreiko', 'Eliana Sua': ""Sam (as Eliana Su'a)"", 'Cliff Curtis': 'Jonah', 'Lori Pelenise Tuisano': 'Sefina', 'John Tui': 'Kal', 'Joshua Mauga': 'Timo', ""Joe Anoa'i"": ""Mateo (as Joe 'Roman Reigns' Anoai)"", 'Rob Delaney': 'Agent Loeb', 'Alex King': 'Lt. Grapefruit'}" tt8426846,"{'Rick Jay Glen': 'McBroom / Sgt. Rusty (voice)', 'Siobhan Lumsden': 'Bartle Bee (voice)', ""Paul 'Maxx' Rinehart"": 'Joe Croaker (voice)', 'Justin J. Wheeler': 'Cosmo (voice)'}" tt0092605,"{'Diane Keaton': 'J.C. Wiatt', 'Sam Shepard': 'Dr. Jeff Cooper', 'Harold Ramis': 'Steven Buchner', 'Kristina Kennedy': 'Elizabeth Wiatt', 'Michelle Kennedy': 'Elizabeth Wiatt', 'Sam Wanamaker': 'Fritz Curtis', 'James Spader': 'Ken Arrenberg', 'Pat Hingle': 'Hughes Larrabee', 'Britt Leach': 'Verne Boone', 'Linda Ellerbee': 'Narrator', 'Kim Sebastian': 'Robin', 'Mary Gross': 'Charlotte Elkman', 'Patricia Estrin': 'Secretary', 'Elizabeth Bennett': 'Mrs. Atwood', 'Peter Elbling': ""Maitre D'""}" tt7207158,{'Rick Jay Glen': 'McBroom / Sgt. Rusty (voice)'} tt2872518,"{'Sam Worthington': 'Mack Phillips', 'Octavia Spencer': 'Papa', 'Tim McGraw': 'Willie', 'Radha Mitchell': 'Nan Phillips', 'Megan Charpentier': 'Kate Phillips', 'Gage Munroe': 'Josh Phillips', 'Amélie Eve': 'Missy Phillips (as Amelie Eve)', 'Avraham Aviv Alush': 'Jesus', 'Sumire': 'Sarayu', 'Alice Braga': 'Sophia', 'Graham Greene': 'Male Papa', 'Ryan Robbins': 'Emil Ducette', 'Jordyn Ashley Olson': 'Emily Ducette', 'Laura MacKillop': 'Amber Ducette', 'Emily Holmes': 'Vicki Ducette'}" tt0095179,"{'Jennifer Banko': 'Young Tina Shepard', 'John Otrin': 'Mr. John Shepard', 'Susan Blu': 'Mrs. Amanda Shepard', 'Lar Park-Lincoln': 'Tina Shepard', 'Terry Kiser': 'Dr. Crews', 'Kevin Spirtas': 'Nick (as Kevin Blair)', 'Susan Jennifer Sullivan': 'Melissa', 'Heidi Kozak Haddad': 'Sandra (as Heidi Kozak)', 'Kane Hodder': 'Jason Voorhees', 'William Butler': 'Michael', 'Staci Greason': 'Jane', 'Larry Cox': 'Russell', 'Jeff Bennett': 'Eddie', 'Diana Barrows': 'Maddy', 'Elizabeth Kaitan': 'Robin'}" tt2992146,"{'Carina Lau': 'Wu Zetian', 'Chien Sheng': 'The Emperor (as Sheng Chien)', 'Mark Chao': 'Dee Renjie', 'Angelababy': 'Yin Ruiji', 'Shaofeng Feng': 'Yuchi Zhenjin', 'Kenny Lin': 'Shatuo Zhong (as Gengxin Lin)', 'Bum Kim': 'Yuan Zhen (as Ian Kim)', 'Dong Hu': 'Huo Yi', 'Kun Chen': 'Doctor Wang Pu (as Chen Kun)', 'Shan Zhang': 'Chusui Liang (as Zhang Shan)', 'Guoyi Chen': 'Admiral (as Chen Guoyi)', 'Nan Tie': 'Bo Qianzhang (as Tie Nan)', 'Jie Yan': 'Kuang Zhao (as Yan Jie)', 'Yachao Wang': 'Zhou Qian (as Wang Yachao)', 'Jingjing Ma': 'Touba Lie (as Ma Jingjing)'}" tt1563742,"{'Eugenio Derbez': 'Leonardo Montenegro', 'Anna Faris': 'Kate Sullivan', 'Eva Longoria': 'Theresa', 'John Hannah': 'Colin', 'Swoosie Kurtz': 'Grace', 'Mel Rodriguez': 'Bobby', 'Josh Segarra': 'Jason', 'Hannah Nordberg': 'Emily Sullivan', 'Alyvia Alyn Lind': 'Olivia Sullivan', 'Payton Lepinski': 'Molly Sullivan', 'Fernando Luján': 'Papi', 'Cecilia Suárez': 'Magdalena', 'Mariana Treviño': 'Sofia', 'Jesús Ochoa': 'Vito', 'Omar Chaparro': 'Burro'}" tt4795124,"{'Eugenio Derbez': 'Maximo', 'Salma Hayek': 'Sara', 'Raphael Alejandro': 'Hugo', 'Rob Lowe': 'Rick', 'Kristen Bell': 'Cindy', 'Mckenna Grace': 'Arden', 'Raquel Welch': 'Celeste', 'Linda Lavin': 'Millicent', 'Renée Taylor': 'Peggy', 'Rob Corddry': 'Quincy', 'Rob Riggle': 'Scott', 'Rob Huebel': 'Nick', 'Michael Cera': 'Remy', 'Mather Zickel': 'James', 'Vadhir Derbez': 'Maximo (Age 21)'}" tt6663582,"{'Justin Theroux': 'Drew', 'Blanka Györfi-Tóth': 'Little Girl', 'Vilma Szécsi': 'Vendor', 'Mila Kunis': 'Audrey', 'Kate McKinnon': 'Morgan', 'Lolly Adefope': 'Tess', 'Dustin Demri-Burns': 'Viktor', 'David Iserson': 'Friend in the Bar', 'Sam Heughan': 'Sebastian', 'Hasan Minhaj': 'Duffer', 'Peter Schueller': 'TSA Agent', 'Mirjam Novak': 'Verne', 'Ágnes Bánfalvy': 'Jaguar Woman', 'László Áron': 'Jaguar Man', 'Kev Adams': 'Bitteauto Driver Lukas'}" tt5186608,"{'Ik Jo Kang': 'Master Kang', 'Mike Faist': 'Ben', 'Ellie Lee': 'Adrienne', 'Jack DiFalco': 'Dorian', 'Soraya Butler': 'Counselor', 'Kyliegh Curran': 'Lily', 'Cornelius Davidson': 'Ezekiel', 'Kim Fischer': 'Braxton', 'Mark C. Fullhardt': 'Physical Therapist Patient', 'Ryan-James Hatanaka': 'Tom', 'Joe Krieg': 'Jr', 'Geraldine Leer': 'Woman', 'Selenis Leyva': 'Maria', 'Thea McCartan': 'Doctor', 'Erik Ramos': 'Nurse Eric'}" tt0091080,"{'Thom Mathews': 'Tommy', 'Jennifer Cooke': 'Megan', 'David Kagen': 'Sheriff Garris', 'Kerry Noonan': 'Paula', 'Renée Jones': 'Sissy (as Renee Jones)', 'Tom Fridley': 'Cort', 'C.J. Graham': 'Jason', 'Darcy DeMoss': 'Nikki', 'Vincent Guastaferro': 'Deputy Rick Cologne', 'Tony Goldwyn': 'Darren', 'Nancy McLoughlin': 'Lizbeth', 'Ron Palillo': 'Allen Hawes', 'Alan Blumenfeld': 'Larry', 'Matthew Faison': 'Stan', 'Ann Ryerson': 'Katie'}" tt9251598,{'Tina Shuster': 'Captain Stella'} tt0332375,"{'Jena Malone': 'Mary', 'Mandy Moore': 'Hilary Faye', 'Macaulay Culkin': 'Roland', 'Patrick Fugit': 'Patrick', 'Heather Matarazzo': 'Tia', 'Eva Amurri Martino': 'Cassandra (as Eva Amurri)', 'Chad Faust': 'Dean', 'Elizabeth Thai': 'Veronica', 'Martin Donovan': 'Pastor Skip', 'Mary-Louise Parker': 'Lillian', 'Kett Turton': 'Mitch', 'Julia Arkos': 'PE Coach', 'Donna White': 'Trudy Mason', 'James Caldwell': 'Hairdresser', 'Nicki Clyne': 'Guitar Player'}" tt3887158,"{'Ori Pfeffer': 'Salim (voice)', 'Hana Laslo': 'Nanny / Arub (voice)', ""Eden Har'el"": ""Na'ama (voice)"", 'Ori Laizerouvich': 'Tobby (voice)', 'Nitzan Sitzer': 'Hadad (voice)', 'Albert Cohen': 'Shamir (voice)', 'Oded Menashe': 'Shlomo (voice)'}" tt1846589,"{'Ethan Baird': 'Sonar 3', 'Jacob Scipio': 'Sonar 2', 'Dempsey Bovell': 'Sonar 1', 'Corey Johnson': 'Captain', 'Adam James': 'Captain Forbes', 'Common': 'RA John Fisk', 'Henry Goodman': 'Senator from Illinois', 'Colin Stinton': 'Senator from Iowa', 'Gary Oldman': 'CJCS Charles Donnegan', 'Gerard Butler': 'Captain Joe Glass', 'Carter MacIntyre': 'XO Brian Edwards', 'Shane Taylor': 'TMC Turner', 'Kola Bokinni': 'McCaw', 'Mikey Collins': 'Brickowski', 'Will Attenborough': 'Kaplan'}" tt7401588,"{'Mark Wahlberg': 'Pete', 'Rose Byrne': 'Ellie', 'Isabela Merced': 'Lizzy (as Isabela Moner)', 'Gustavo Escobar': 'Juan (as Gustavo Quiroz)', 'Julianna Gamiz': 'Lita', 'Octavia Spencer': 'Karen', 'Tig Notaro': 'Sharon', 'Tom Segura': 'Russ', 'Allyn Rachel': 'Kim', 'Britt Rentschler': 'Linda (as Brittney Rentschler)', 'Jody Thompson': 'Jim', 'Margo Martindale': 'Grandma Sandy', 'Julie Hagerty': 'Jan', ""Michael O'Keefe"": 'Jerry', 'Joan Cusack': 'Mrs. Howard'}" tt4530422,"{'Jovan Adepo': 'Boyce', 'Wyatt Russell': 'Ford', 'Mathilde Ollivier': 'Chloe', 'Pilou Asbæk': 'Wafner', 'John Magaro': 'Tibbet', 'Iain De Caestecker': 'Chase', 'Jacob Anderson': 'Dawson', 'Dominic Applewhite': 'Rosenfeld', 'Gianny Taufer': 'Paul', 'Joseph Quinn': 'Grunauer', 'Bokeem Woodbine': 'Rensin', 'Erich Redman': 'Dr. Schmidt', 'Mark McKenna': 'Murphy', 'Hayley Carmichael': 'Mrs. Lesner', 'Marc Rissmann': 'Scherzer'}" tt0104573,"{'Omar Epps': 'Q', 'Tupac Shakur': 'Bishop', ""Jermaine 'Huggy' Hopkins"": 'Steel (as Jermaine Hopkins)', 'Khalil Kain': 'Raheem', 'Cindy Herron': 'Yolanda', 'Vincent Laresca': 'Radames', 'Samuel L. Jackson': 'Trip', 'George Gore II': 'Brian (as George O. Gore)', 'Grace Garland': ""Q's Mother"", 'Queen Latifah': 'Ruffhouse M.C.', 'Bruklin Harris': 'Keesha (as Idina Harris)', 'Victor Campos': 'Quiles', 'Eric Payne': 'Frank', 'Sharon Cook': 'Record Store Clerk', 'Darien Berry': 'Blizzard'}" tt0087298,"{'Judie Aronson': 'Samantha', 'Peter Barton': 'Doug', 'Erich Anderson': 'Rob (as E. Erich Anderson)', 'Kimberly Beck': 'Trish', 'Tom Everett': 'Flashlight Man', 'Crispin Glover': 'Jimmy Mortimer', 'Corey Feldman': 'Tommy', 'Joan Freeman': 'Mrs. Jarvis', 'Lisa Freeman': 'Nurse Morgan', 'Thad Geer': 'Running Man', 'Wayne Grace': 'Officer Jamison', 'Clyde Hayes': 'Paul (as Alan Hayes)', 'Bonnie Hellman': 'Hitchhiker', 'Frankie Hill': 'Lainie', 'Barbara Howard': 'Sara'}" tt0109447,"{'Martin Short': 'Clifford Daniels', 'Charles Grodin': 'Martin Daniels', 'Mary Steenburgen': 'Sarah Davis', 'Dabney Coleman': 'Gerald Ellis', 'Richard Kind': 'Julien Daniels', 'Jennifer Savidge': 'Theodora Daniels', 'Brandis Kemp': 'Woman on Plane', 'Ben Savage': 'Roger', 'Don Galloway': 'Captain', 'Tim Lane': 'Navigator', 'Susan Varon': 'Woman Passerby', 'Josh Seal': 'Kevin', 'Kevin Mockrin': 'Kevin', 'Timothy Stack': ""Kevin's Father"", 'Marianne Muellerleile': ""Kevin's Mother""}" tt0080487,"{'Chevy Chase': 'Ty Webb', 'Rodney Dangerfield': 'Al Czervik', 'Ted Knight': 'Judge Elihu Smails', ""Michael O'Keefe"": 'Danny Noonan', 'Bill Murray': 'Carl Spackler', 'Sarah Holcomb': ""Maggie O'Hooligan"", 'Scott Colomby': ""Tony D'Annunzio"", 'Cindy Morgan': 'Lacey Underall', 'Dan Resin': 'Dr. Beeper', 'Henry Wilcoxon': 'The Bishop', 'Elaine Aiken': 'Mrs. Noonan', 'Albert Salmi': 'Mr. Noonan', 'Ann Ryerson': 'Grace', 'Brian Doyle-Murray': 'Lou Loomis', 'Hamilton Mitchell': 'Motormouth'}" tt7282468,"{'Ah-in Yoo': 'Lee Jong-su', 'Steven Yeun': 'Ben (as Yeun Sang-yeop)', 'Jong-seo Jun': 'Shin Hae-mi', 'Soo-Kyung Kim': 'Yeon-ju', 'Seung-ho Choi': 'Lee Yong-seok', 'Seong-kun Mun': 'Lawyer', 'Bok-gi Min': 'Judge', 'Soo-Jeong Lee': 'Prosecutor', 'Hye-ra Ban': ""Jong-su's Mom"", 'Mi-Kyung Cha': ""Hae-mi's Mom"", 'Bong-ryeon Lee': ""Hae-mi's Sister"", 'Wonhyeong Jang': 'Won-hyeong', 'Seok-Chan Jeon': 'Seok-chan', 'Joong-ok Lee': 'Patrolman', 'Ja-Yeon Ok': 'Ja-yeon'}" tt6777338,"{'Ok-bin Kim': 'Sook-hee', 'Ha-kyun Shin': 'Joong-sang', 'Jun Sung': 'Hyun-soo', 'Seo-hyeong Kim': 'Chief Kwon', 'Eun-ji Jo': 'Kim Seon', 'Ye-Ji Min': 'Sook-hee (young)', 'Hae-Kyun Jung': 'Jang-Chun', 'Yun-Woo Kim': 'Eun-Hye', 'Seung-Joo Lee': 'Choon-Mo', 'Cheol-min Park': ""Sook-Hee's father"", 'Min-Ji Son': 'Min-Joo'}" tt7040874,"{'Anna Kendrick': 'Stephanie Smothers', 'Ian Ho': 'Nicky Nelson', 'Joshua Satine': 'Miles Smothers', 'Glenda Braganza': 'Mrs. Kerry', 'Andrew Rannells': 'Darren', 'Kelly McCormack': 'Stacy', 'Aparna Nancherla': 'Sona', 'Jiah Mavji': ""Sona's Daughter"", 'Ava LaFramboise': 'Lulu', 'Blake Lively': 'Emily Nelson', 'Henry Golding': 'Sean Townsend', 'Dustin Milligan': 'Chris', 'Danielle Bourgon': ""Grace (Stephanie's Mom)"", 'Gia Sandhu': 'Valerie', 'Lila Yee': ""Margaret (Sean's Mom)""}" tt6371588,"{'Rory Culkin': 'Ollie', 'Robert Sheehan': 'Nikolai', 'Isabelle McNally': 'Isadora', 'Mary Beth Peil': 'Charlie Sway', 'Elizabeth Peña': 'Marlena', 'Jack Falahee': 'Jimmy', 'Brian Dennehy': 'Hal Sway', 'Anna Shields': 'Heather', 'Gary Arzberger': 'Volunteer Fireman', 'John W. Bard': 'Biker Man', 'Jason Brill': 'Timmy Sway', 'Bob Foley': 'John Durant', 'Robert Forgett': 'Angry Man', 'John Grant': 'Tweed McKay', 'Kasey Kenyon': 'Ray'}" tt7752126,"{'Elizabeth Banks': 'Tori Breyer', 'David Denman': 'Kyle Breyer', 'Jackson A. Dunn': 'Brandon Breyer', 'Abraham Clinkscales': 'Royce', 'Christian Finlayson': 'Fauxhawk', 'Jennifer Holland': 'Ms. Espenschied', 'Emmie Hunter': 'Caitlyn', 'Matt Jones': 'Noah McNichol', 'Meredith Hagner': 'Merilee McNichol', 'Becky Wahlstrom': 'Erica', 'Terence Rosemore': 'P.E. Teacher', 'Gregory Alan Williams': 'Sheriff Deever', 'Elizabeth Becka': 'Principal', 'Annie Humphrey': 'Deputy Aryes', 'Steve Agee': 'EJ'}" tt0455857,"{'Camilla Belle': 'Jill Johnson', 'Tommy Flanagan': 'Stranger', 'Katie Cassidy': 'Tiffany', 'Tessa Thompson': 'Scarlet', 'Brian Geraghty': 'Bobby', 'Clark Gregg': 'Ben Johnson', 'Derek de Lint': 'Dr. Mandrakis', 'Kate Jennings Grant': 'Kelly Mandrakis', 'David Denman': 'Officer Burroughs', 'Arthur Young': 'Will Mandrakis', 'Madeline Carroll': 'Allison Mandrakis', 'Steve Eastin': 'Detective Hines', 'John Bobek': 'Officer Lewis', 'Brad Surosky': 'Boom Boom', 'Karina Logue': 'Track Coach'}" tt0110367,"{'Winona Ryder': 'Jo March', 'Gabriel Byrne': 'Friedrich Bhaer', 'Trini Alvarado': 'Meg March', 'Samantha Mathis': 'Older Amy March', 'Kirsten Dunst': 'Younger Amy March', 'Claire Danes': 'Beth March', 'Christian Bale': 'Laurie', 'Eric Stoltz': 'John Brooke', 'John Neville': 'Mr. Laurence', 'Mary Wickes': 'Aunt March', 'Susan Sarandon': 'Mrs. March', 'Florence Paterson': 'Hannah', 'Robin Collins': 'Carriage Boy', 'Corrie Clark': 'Belle Gardiner', 'Rebecca Toolan': 'Mrs. Gardiner'}" tt0046816,"{'Humphrey Bogart': 'Lt. Cmdr. Philip Francis Queeg', 'José Ferrer': 'Lt. Barney Greenwald (as Jose Ferrer)', 'Van Johnson': 'Lt. Steve Maryk', 'Fred MacMurray': 'Lt. Tom Keefer (as Fred Mac Murray)', 'Robert Francis': 'Ens. Willie Keith', 'May Wynn': 'May Wynn', 'Tom Tully': 'Comdr. DeVriess', 'E.G. Marshall': 'Lt. Comdr. Challee', 'Arthur Franz': 'Lt. JG H. Paynter Jr.', 'Lee Marvin': 'Meatball', 'Warner Anderson': 'Capt. Blakely', 'Claude Akins': ""Seaman Lugatch aka 'Horrible'"", 'Katherine Warren': 'Mrs. Keith (as Katharine Warren)', 'Jerry Paris': 'Ens. Barney Harding', 'Steve Brodie': 'Chief Budge'}" tt0060429,"{'Elvis Presley': 'Johnny', 'Donna Douglas': 'Frankie', 'Harry Morgan': 'Cully', 'Sue Ane Langdon': 'Mitzi', 'Nancy Kovack': 'Nellie Bly', 'Audrey Christie': 'Peg', 'Robert Strauss': 'Blackie', 'Anthony Eisley': 'Braden', 'Joyce Jameson': 'Abigail'}" tt0060438,"{'Zero Mostel': 'Pseudolus', 'Phil Silvers': 'Marcus Lycus', 'Buster Keaton': 'Erronius', 'Michael Crawford': 'Hero', 'Jack Gilford': 'Hysterium', 'Annette Andre': 'Philia', 'Michael Hordern': 'Senex', 'Leon Greene': 'Captain Miles Gloriosus', 'Roy Kinnear': 'Gladiator Instructor', 'Alfie Bass': 'Gatekeeper', 'John Bluthal': 'Roman Chief Guard', 'Pamela Brown': 'High Priestess', 'Patricia Jessel': 'Domina', 'Beatrix Lehmann': ""Domina's Mother"", 'Frank Thornton': 'Roman Sentry'}" tt0104009,"{'Janni Brenn': 'Mom Harris (as Janni Brenn-Lowen)', 'Brad Pitt': 'Frank Harris', 'William Frankfather': 'Cop', 'Greg Collins': 'Cop', 'Maurice LaMarche': 'Interrogator / Doc Whiskers / Mash / Drunk Bar Patron / Super Jack (voice)', 'Gabriel Byrne': 'Jack Deebs', 'Joey Camen': ""Interrogator / Slash / Holli's Door (voice)"", 'Kim Basinger': 'Holli Would', 'Michael David Lally': 'Sparks (voice)', 'Michele Abrams': 'Jennifer Malley', 'Carrie Hamilton': 'Comic Bookstore Cashier', 'Stephen Worth': 'Store Patron / Bash', 'Murray Podwal': 'Store Patron', 'Jenine Jennings': 'Craps Bunny / Lonette / Holli (voice)', 'Gregory Snegoff': 'Bash (voice)'}" tt5537600,"{'Susanne Bartsch': 'Herself', 'Hector Xtravaganza': 'Himself'}" tt2066051,"{'Taron Egerton': 'Elton John', 'Jamie Bell': 'Bernie Taupin', 'Richard Madden': 'John Reid', 'Bryce Dallas Howard': 'Sheila', 'Gemma Jones': 'Ivy', 'Steven Mackintosh': 'Stanley', 'Tom Bennett': 'Fred', 'Matthew Illesley': 'Young Reggie', 'Kit Connor': 'Older Reggie', 'Charlie Rowe': 'Ray Williams', ""Peter O'Hanlon"": ""Bobby (as Pete O'Hanlon)"", 'Ross Farrelly': 'Cyril', 'Evan Walsh': 'Elton Dean', 'Tate Donovan': 'Doug Weston', 'Sharmina Harrower': 'Heather'}" tt4911996,"{'Aaron Pedersen': 'Detective Jay Swan', 'Alex Russell': 'Josh Waters', 'Jacki Weaver': 'The Mayor', 'David Wenham': 'Johnny', 'David Gulpilil': 'Jimmy', 'Pei-Pei Cheng': 'Mrs. Lao', 'Michelle Lim Davidson': 'May', 'Tommy Lewis': 'Tommy', 'Max Cullen': 'Old Timer', 'Steve Rodgers': 'Mick (as Steve Rogers)', 'Ursula Yovich': 'Maria', 'Michael Dorman': 'Patch', 'Kate Beahan': 'Pinky', ""Aaron Fa'aoso"": 'Bear', 'Gillian Jones': 'Sally'}" tt2283336,"{'Chris Hemsworth': 'Agent H', 'Tessa Thompson': 'Agent M', 'Kumail Nanjiani': 'Pawny (voice)', 'Rebecca Ferguson': 'Riza', 'Rafe Spall': 'Agent C', 'Emma Thompson': 'Agent O', 'Liam Neeson': 'Agent High T', 'Laurent Bourgeois': 'Alien Twin', 'Larry Bourgeois': 'Alien Twin', 'Kayvan Novak': 'Vungus / Nasr / Bassam', 'Spencer Wilding': 'Luca Brasi', 'Marcy Harriell': ""Molly's Mom"", 'Inny Clemons': ""Molly's Dad"", 'Aaron Serotsky': 'Men in Black #1', 'Mandeiya Flory': 'Young Molly'}" tt0369441,"{'Jim Carrey': 'Dick Harper', 'Téa Leoni': 'Jane Harper', 'Alec Baldwin': 'Jack McCallister', 'Richard Jenkins': 'Frank Bascombe', 'Angie Harmon': 'Veronica Cleeman', 'John Michael Higgins': 'Garth', 'Richard Burgi': 'Joe Cleeman', 'Carlos Jacott': 'Oz Peterson', 'Aaron Michael Drozin': 'Billy Harper', 'Gloria Garayua': 'Blanca', 'Michelle Arthur': ""Dick's Secretary"", 'Stacey Travis': ""Jack's Receptionist"", 'Timm Sharp': ""Jack's Assistant"", 'David Herman': 'Angry Caller (voice)', 'Dempsey Pappion': 'Production Assistant'}" tt6466464,"{'Allie Chan': 'Ying Luo', 'Shaofeng Feng': 'Tangseng', 'Aaron Kwok': 'Sun Wukong', 'Him Law': 'Shaseng (as Chung Him Law)', 'Gigi Leung': 'Advisor', 'Chiling Lin': 'Hebo', 'Tao Liu': 'Guanyin', 'Lun Tsai': 'Warrior', 'Shenyang Xiao': 'Zhu Bajie', 'King-Tan Yuen': 'Priest', 'Zanilia Zhao': ""Nü'erguo guowang""}" tt4591310,"{'Aaron Kwok': 'Sun Wukong / Monkey King', 'Li Gong': 'Baigujing / White-Boned Demon', 'Shaofeng Feng': 'Tang Seng (as William Feng)', 'Shenyang Xiao': 'Zhu Bajie (as Xiao Shen Yang)', 'Him Law': 'Sha Seng', 'Fei Xiang': 'Guowang / King (as Kris Phillips)', 'Kelly Chen': 'Guanyin', 'Giselle Chia': 'Bat demon', 'John Ching': 'Chieftain', 'Chutian Liu': 'Bai Gu Jing, little girl', 'Miya Muqi': 'evil spirit Pig', 'Eddie Peng': 'Pharmacy dispenser', 'Ngawang Rinchen': 'Witch Doctor', 'Lu Wei': 'Evil spirit snake', 'Zimu Zhang': 'Treasurer daughter (as Zi Mu Zhang)'}" tt7275200,{'Tina Shuster': 'Fifi / Trigger / Alba / Mama / Cherie / Mama Sting Ray'} tt0092948,"{'Eddie Murphy': 'Himself', 'Tatyana Ali': 'Singing Child (sketch)', 'Billie Allen': ""Eddie's Aunt (sketch)"", 'Clebert Ford': 'Uncle Lester (sketch)', 'Geri Gibson': 'Card Player #2 (sketch)', 'Birdie M. Hale': 'Aunt Rose (sketch)', 'Tiger Haynes': 'Card Player #3 (sketch)', 'Leonard Jackson': 'Uncle Gus (sketch)', 'Samuel L. Jackson': ""Eddie's Uncle (sketch)"", 'Jody Jones': ""Eddie's Cousin (sketch)"", 'Davenia McFadden': ""Eddie's Aunt (sketch)"", 'Gwen McGee': ""Eddie's Mother (sketch)"", 'Lex Monson': 'Card Player #4 (sketch)', 'Warren Morris': 'Poetry Reader (sketch)', 'Deon Richmond': 'Little Eddie (sketch)'}" tt6212478,"{'Spencer Reinhard': 'The Real Spencer Reinhard', 'Warren Lipka': 'The Real Warren Lipka', 'Eric Borsuk': 'The Real Eric Borsuk', 'Chas Allen': 'The Real Chas Allen', 'Betty Jean Gooch': ""The Real Betty Jean 'BJ' Gooch (as Betty Jean 'BJ' Gooch)"", 'Evan Peters': 'Warren', 'Blake Jenner': 'Chas', 'Barry Keoghan': 'Spencer', 'Jared Abrahamson': 'Eric', 'Eddie King': 'Male Art Professor', 'Karen Wheeling Reynolds': 'Female Art Professor (as Karen Reynolds)', 'James Rackley': 'Active', 'Drew Starkey': 'Frat Boy', 'Anthony J. Police': 'Man with Gun', 'Ann Dowd': ""Betty Jean 'BJ' Gooch""}" tt6320628,"{'Tom Holland': 'Peter Parker / Spider-Man', 'Samuel L. Jackson': 'Nick Fury', 'Jake Gyllenhaal': 'Quentin Beck / Mysterio', 'Marisa Tomei': 'May Parker', 'Jon Favreau': 'Happy Hogan', 'Zendaya': 'MJ', 'Jacob Batalon': 'Ned Leeds', 'Tony Revolori': 'Flash Thompson', 'Angourie Rice': 'Betty Brant', 'Remy Hii': 'Brad Davis', 'Martin Starr': 'Mr. Harrington', 'J.B. Smoove': 'Mr. Dell (as JB Smoove)', 'Jorge Lendeborg Jr.': 'Jason Ionello', 'Cobie Smulders': 'Maria Hill', 'Numan Acar': 'Dimitri'}" tt6857112,"{""Lupita Nyong'o"": 'Adelaide Wilson / Red', 'Winston Duke': 'Gabe Wilson / Abraham', 'Elisabeth Moss': 'Kitty Tyler / Dahlia', 'Tim Heidecker': 'Josh Tyler / Tex', 'Shahadi Wright Joseph': 'Zora Wilson / Umbrae', 'Evan Alex': 'Jason Wilson / Pluto', 'Yahya Abdul-Mateen II': 'Russel Thomas / Weyland', 'Anna Diop': 'Rayne Thomas / Eartha', 'Cali Sheldon': 'Becca Tyler / Io', 'Noelle Sheldon': 'Lindsey Tyler / Nix', 'Madison Curry': 'Young Adelaide Wilson / Young Red', 'Ashley McKoy': 'Teenage Adelaide Wilson / Teenage Red', 'Napiera Groves': 'Dr. Foster', 'Lon Gowan': 'Don', 'Alan Frazier': 'Ferdie / Jeremiah'}" tt0155711,"{'Robert De Niro': 'Walt Koontz', 'Philip Seymour Hoffman': 'Rusty', 'Barry Miller': 'Leonard Wilcox', 'Chris Bauer': 'Jacko', 'Skipp Sudduth': 'Tommy', 'Wilson Jermaine Heredia': 'Cha-Cha', 'Nashom Benjamin': 'Amazing Grace', 'Scott Allen Cooper': 'Ivana', 'Rory Cochrane': 'Pogo', 'Daphne Rubin-Vega': 'Tia', 'Vincent Laresca': 'Raymond Camacho', 'Karina Arroyave': 'Amber', 'John Enos III': 'Sonny (as John Enos)', 'Jude Ciccolella': 'Detective Noonan', 'Mina Bern': 'Mrs. Spivak'}" tt2025526,"{'Hae-il Park': 'Nam-yi', 'Seung-ryong Ryu': 'Jyushinta (as Ryu Seung-Ryong)', 'Mu-Yeol Kim': 'Seo-gun', 'Chae-won Moon': 'Ja-in', 'Han-wi Lee': 'Gap-yong', 'Gu-taek Kim': 'Kang-du', 'Kyeong-yeong Lee': 'Kim Mu-seon', 'Gi-woong Park': 'Prince Doreugon', 'Seung-Joon Lee': 'Wanhan (as Seung-joon Lee)', 'Jae-goo Lee': 'Hu-man', 'No-shik Park': 'Jang-sun', 'Da-wit Lee': 'Young Nam-yi', 'Min-seo Jeon': 'Young Ja-in', 'Ryôhei Ohtani': 'Nogami (as Rye Hei Otani)', 'Hyeon-tae Kim': 'Hu Reu-gang'}" tt1456661,"{'Donnie Yen': 'Chen Zhen', 'Qi Shu': 'Fang Qing', 'Anthony Chau-Sang Wong': 'Liu Yutian (as Anthony Wong)', 'Bo Huang': 'Inspector Huang Hao Long', 'Ryu Kohata': 'Colonel Takeshi Chikaraishi (as Kohata Ryuichi)', 'Siyan Huo': 'Vivian', 'Zhou Yang': 'Qi Zhi-Shan', 'Shawn Yue': 'General Zeng', 'Yasuaki Kurata': 'Tsuyoshi Chikaraishi', 'Akira': 'Sasaki Chikaraishi', 'Yue Ma': 'General Zhou', 'Jiajia Chen': 'Huang Lan', 'Songwen Zhang': 'Wen-Zai', 'Gregory Wong': '(as Wong Chung Yiu)'}" tt1999890,"{'Cynthea Mercado': 'Jodi (as Cynthia Mercado)', 'Stephen Conroy': 'The Other', 'Amy Forsyth': 'Natalie', 'Bex Taylor-Klaus': 'Taylor', 'Reign Edwards': 'Brooke', 'Christian James': 'Quinn', 'Matt Mercurio': 'Asher', 'Roby Attal': 'Gavin', 'George Howard Adams': 'Gate Guard (as George Adams)', 'Courtney Dietz': 'Britney', 'Markus Silbiger': 'Bored Carny Kid', 'Michael Tourek': 'Security Guard', 'Tony Todd': 'The Barker', 'Aaron Gillespie': 'Stagehand', 'Cecil Elmore Jr.': 'Cop (as Cecil Elmore)'}" tt0113464,"{'Steven Weber': 'Jeffrey', 'Peter Jacobson': 'Man #1', 'Tom Cayler': 'Man #2', 'David Thornton': 'Man #3', 'Lee Mark Nelson': 'Crying Guy', 'John Ganun': 'Tourist', 'Michael T. Weiss': 'Steve Howard', 'Joe Dain': 'Movie Theatre Guy #1 (as Joseph Dain)', 'Jeffrey Ross': 'Movie Theatre Guy #2', 'Irma St. Paule': 'Mother Teresa', 'Patrick Stewart': 'Sterling', 'Nicky Paraiso': 'Salesman', 'K. Todd Freeman': ""Barney's Waiter"", 'Robert Klein': 'Skip Winkley', ""Patti Ann O'Connell"": 'Cheryl the Showgirl'}" tt3531824,"{'Emma Roberts': 'Vee', 'Dave Franco': 'Ian', 'Emily Meade': 'Sydney', 'Miles Heizer': 'Tommy', 'Juliette Lewis': 'Nancy', 'Kimiko Glenn': 'Liv', 'Marc John Jefferies': 'Wes', 'Machine Gun Kelly': 'Ty (as Colson Baker)', 'Brian Marc': 'J.P.', 'Ed Squires': 'Chuck', 'Rightor Doyle': 'Bergdorf Salesman', 'Josh Ostrovsky': 'Dirt Beard', ""Eric D'Alessandro"": 'Hype Boi', 'Arielle Vandenberg': 'Bergdorf Sales Lady', 'Jonny Beauchamp': 'Gatekeeper'}" tt7042862,"{'Sam Elliott': 'Calvin Barr', 'Aidan Turner': 'Calvin Barr', 'Caitlin FitzGerald': 'Maxine', 'Ron Livingston': 'Flag Pin', 'Sean Bridgers': 'Mr. Gardner', 'Larry Miller': 'Ed Barr', 'Rizwan Manji': 'Maple Leaf', 'Ellar Coltrane': 'The Clerk', 'Mark Steger': 'The Bigfoot', 'Kristen Anne Ferraro': 'Concentration Camp Prisoner', 'Alton Fitzgerald White': 'George', 'Kelley Curran': 'Mrs. Gardner', 'Nikolai Tsankov': 'Russian Officer', 'Silas Archer Gustav': ""Young Calvin Barr's dog(Ralph)"", 'Mickey Gilmore': 'Ukrainian Police Officer'}" tt0083972,"{'Terry Ballard': 'State Trooper #2', 'Richard Brooker': 'Jason', 'Gloria Charles': 'Fox', 'Rachel Howard': 'Chili', 'David Katims': 'Chuck', 'Dana Kimmell': 'Chris', 'Paul Kratka': 'Rick', 'Cheri Maugans': 'Edna', 'Terence McCorry': 'State Trooper #3', 'Charlie Messenger': 'State Trooper #1', ""Kevin O'Brien"": 'Loco', 'Anne Gaybis': 'The Cashier (as Annie Gaybis)', 'Catherine Parks': 'Vera', 'Jeffrey Rogers': 'Andy', 'Nick Savage': 'Ali'}" tt4761916,"{'Colin Woodell': 'Matias', 'Stephanie Nogueras': 'Amaya', 'Betty Gabriel': 'Nari', 'Rebecca Rittenhouse': 'Serena', 'Andrew Lees': 'Damon', 'Connor Del Rio': 'AJ', 'Savira Windyani': 'Lexx', 'Douglas Tait': 'Charon IV', 'Bryan Adrian': 'Charon IV', 'Chelsea Alden': 'Kelly', 'Alexa Mansour': 'Erica Dunne', 'Rob Welsh': 'Charon', 'Alexander Ward': 'Charon', 'Kurt Carley': 'Charon', 'Chuck Lines': 'Charon'}" tt8726116,"{'Peter Yu': 'Lok', 'Xiaoyi Liu': 'Wang', 'Yue Guo': 'Mindy (as Luna Kwok)', 'Jack Tan': 'Jason', 'Ishtiaque Zico': 'Ajit', 'Kelvin Ho': 'George', 'George Low': 'Foreman Lee', 'Debabrota Basu': 'Hossein', 'Andie Chen': 'Ming Ming', 'Khalishan Liang': 'Tong', 'Qin Tianshu': 'Brat', 'Ottylia Liu': ""Brat's Girlfriend"", 'Xiao Jing': 'Zhou', 'Andy Nyo': 'Ah Hao', 'Joey Heng': 'Couple Girl'}" tt9251718,"{'Todd Quills': 'Cyan', 'Maria Petrano': 'Lily', 'Chen Tsung': 'Teddy', 'Tony Roberts': 'Lacerta', 'Dave Soltura': 'Nala', 'Thomas Carr': 'Drako', 'Timothy Banfield': 'Argon / Grus', 'Kelsey Painter': 'Leo / Mika', 'Ken Young': 'Pixypaw', 'Carmen Piroli': 'Mia'}" tt5113040,"{'Patton Oswalt': 'Max (voice)', 'Kevin Hart': 'Snowball (voice)', 'Harrison Ford': 'Rooster (voice)', 'Eric Stonestreet': 'Duke (voice)', 'Jenny Slate': 'Gidget (voice)', 'Tiffany Haddish': 'Daisy (voice)', 'Lake Bell': 'Chloe (voice)', 'Dana Carvey': 'Pops (voice)', 'Bobby Moynihan': 'Mel (voice)', 'Hannibal Buress': 'Buddy (voice)', 'Chris Renaud': 'Norman / Additional Voices (voice)', 'Ellie Kemper': 'Katie (voice)', 'Pete Holmes': 'Chuck (voice)', 'Henry Lynch': 'Liam (voice)', 'Nick Kroll': 'Sergei (voice)'}" tt7073518,{'Zelda Roberts': '(as Lovie Underwood)'} tt0418819,"{'Simon Baker': 'Riley Denbo', 'John Leguizamo': 'Cholo DeMora', 'Dennis Hopper': 'Kaufman', 'Asia Argento': 'Slack', 'Robert Joy': 'Charlie', 'Eugene Clark': 'Big Daddy', 'Joanne Boland': 'Pretty Boy', 'Tony Nappo': 'Foxy', 'Jennifer Baxter': 'Number 9', 'Boyd Banks': 'Butcher', 'Jasmin Geljo': 'Tambourine Man', 'Maxwell McCabe-Lokos': 'Mouse', 'Tony Munch': 'Anchor', 'Shawn Roberts': 'Mike', 'Pedro Miguel Arce': 'Pillsbury'}" tt0085970,"{'Michael Keaton': 'Jack', 'Teri Garr': 'Caroline Butler', 'Frederick Koehler': 'Alex Butler', 'Taliesin Jaffe': 'Kenny Butler', 'Courtney White': 'Megan Butler', 'Brittany White': 'Megan Butler', 'Martin Mull': 'Ron Richardson', 'Ann Jillian': 'Joan Hampton', 'Jeffrey Tambor': 'Jinx Lathman', 'Christopher Lloyd': 'Larry', 'Tom Leopold': 'Stan', 'Graham Jarvis': 'Howard Humphries', 'Carolyn Seymour': 'Eve', 'Michael Alaimo': 'Bert', 'Valri Bromfield': 'Doris'}" tt6146586,"{'Keanu Reeves': 'John Wick', 'Halle Berry': 'Sofia', 'Ian McShane': 'Winston', 'Laurence Fishburne': 'Bowery King', 'Mark Dacascos': 'Zero', 'Asia Kate Dillon': 'The Adjudicator', 'Lance Reddick': 'Charon', 'Tobias Segal': 'Earl', 'Anjelica Huston': 'The Director', 'Saïd Taghmaoui': 'The Elder', 'Jerome Flynn': 'Berrada', 'Randall Duk Kim': 'Doctor', 'Margaret Daly': 'Operator', 'Robin Lord Taylor': 'Administrator', 'Susan Blommaert': 'Librarian'}" tt0096256,"{'Roddy Piper': 'Nada', 'Keith David': 'Frank', 'Meg Foster': 'Holly', ""George 'Buck' Flower"": 'Drifter', 'Peter Jason': 'Gilbert', 'Raymond St. Jacques': 'Street Preacher', 'Jason Robards III': 'Family Man', 'John Lawrence': 'Bearded Man', 'Susan Barnes': 'Brown Haired Woman', 'Sy Richardson': 'Black Revolutionary', 'Wendy Brainard': ""Family Man's Daughter"", 'Lucille Meredith': 'Female Interviewer', 'Susan Blanchard': 'Ingenue', 'Norman Alden': 'Foreman', 'Dana Bratton': 'Black Junkie'}" tt8155288,"{'Jessica Rothe': 'Tree Gelbman', 'Israel Broussard': 'Carter Davis', 'Phi Vu': 'Ryan Phan', 'Suraj Sharma': 'Samar Ghosh', 'Sarah Yarkin': ""Andrea 'Dre' Morgan"", 'Rachel Matthews': 'Danielle Bouseman', 'Ruby Modine': 'Lori Spengler', 'Steve Zissis': 'Dean Roger Bronson', 'Charles Aitken': 'Gregory Butler', 'Laura Clifton': 'Stephanie Butler', 'Missy Yager': 'Julie Gelbman', 'Jason Bayle': 'David Gelbman', 'Caleb Spillyards': 'Tim Bauer', 'Jimmy Gonzales': 'Police Officer', 'Peter Jaymes Jr.': 'Police Officer'}" tt0289765,"{'Anthony Hopkins': 'Dr. Hannibal Lecter', 'Edward Norton': 'Will Graham', 'Ralph Fiennes': 'Francis Dolarhyde', 'Harvey Keitel': 'Jack Crawford', 'Emily Watson': 'Reba McClane', 'Mary-Louise Parker': 'Molly Graham', 'Philip Seymour Hoffman': 'Freddy Lounds', 'Anthony Heald': 'Dr. Frederick Chilton', 'Ken Leung': 'Lloyd Bowman', 'Frankie Faison': 'Barney Matthews', 'Tyler Patrick Jones': 'Josh Graham', 'Lalo Schifrin': 'Conductor', 'Tim Wheater': 'Flautist', 'John Rubinstein': 'Dinner Guest', 'David Doty': 'Dinner Guest'}" tt3281548,"{'Saoirse Ronan': 'Jo March', 'Emma Watson': 'Meg March', 'Florence Pugh': 'Amy March', 'Eliza Scanlen': 'Beth March', 'Laura Dern': 'Marmee March', 'Timothée Chalamet': ""Theodore 'Laurie' Laurence"", 'Tracy Letts': 'Mr. Dashwood', 'Bob Odenkirk': 'Father March', 'James Norton': 'John Brooke', 'Louis Garrel': 'Friedrich Bhaer', 'Jayne Houdyshell': 'Hannah', 'Chris Cooper': 'Mr. Laurence', 'Meryl Streep': 'Aunt March', 'Rafael Silva': ""Friedrich's Friend"", 'Mason Alban': ""Friedrich's Friend""}" tt5649108,"{'Olivia Cooke': 'Amanda', 'Anya Taylor-Joy': 'Lily', 'Anton Yelchin': 'Tim', 'Paul Sparks': 'Mark', 'Francie Swift': 'Cynthia', 'Kaili Vernoff': 'Karen', 'Svetlana Orlova': 'Housekeeper', 'Alyssa Fishenden': 'Jessica', 'Jackson Damon': 'Phil', 'James Haddad': 'Michael', 'Nolan Ball': 'Delivery Guy', 'Celeste Oliva': 'Receptionist'}" tt7287136,"{'Jerod Haynes': 'Jerod', 'Tai Davis': ""Tai (as Tai'isha Davis)"", 'Sandra Adams-Monegain': 'Sandra', 'Jalaiya Lee-Haynes': 'Jalaiya', 'Edgar Miguel Sanchez': 'Edgar', 'Jeremy Pargo': 'Jeremy', 'Curtis Posey': 'Curtis', 'Shanesia Davis': 'Shanesia (as Shanesia Davis-Williams)'}" tt4666228,"{'Andrew Allen': 'Himself', 'Tony Alva': 'Himself', 'Ray Barbee': 'Himself', 'Pedro Barros': 'Himself', 'Elijah Berle': 'Himself', 'Steve Caballero': 'Himself', 'Curren Caples': 'Himself', 'John Cardiel': 'Himself', 'Gilbert Crockett': 'Himself', 'Jason Dill': 'Himself', 'Dustin Dollin': 'Himself', 'Chima Ferguson': 'Himself', 'Jeff Grosso': 'Himself', 'Omar Hassan': 'Himself', 'Christian Hosoi': 'Himself'}" tt5968394,"{'John Goodman': 'William Mulligan', 'Ashton Sanders': 'Gabriel Drummond', 'Jonathan Majors': 'Rafe Drummond', 'Vera Farmiga': 'Jane Doe', 'Kevin Dunn': 'Commissioner Eugene Igoe', 'James Ransone': 'Patrick Ellison', 'Alan Ruck': 'Charles Rittenhouse', 'Madeline Brewer': 'Rula', 'Machine Gun Kelly': 'Jurgis (as Colson Baker)', ""Kevin J. O'Connor"": 'Kermode', 'Ben Daniels': 'Daniel', 'Caitlin Ewald': 'Anita', 'Lawrence Grimm': 'Evan Hayes', 'Guy Van Swearingen': 'Eddie the Priest', 'Elena Marisa Flores': 'Flores (as Elena Flores)'}" tt0837563,"{'Jason Clarke': 'Louis', 'Amy Seimetz': 'Rachel', 'John Lithgow': 'Jud', 'Jeté Laurence': 'Ellie', 'Hugo Lavoie': 'Gage', 'Lucas Lavoie': 'Gage', 'Obssa Ahmed': 'Victor Pascow', 'Alyssa Brooke Levine': 'Zelda (as Alyssa Levine)', 'Maria Herrera': 'Marcella', 'Frank Schorpion': ""Rachel's Father"", 'Linda E. Smith': ""Rachel's Mother"", 'Sonia Maria Chirila': 'Young Rachel', 'Naomi Frenette': 'Upset Student (as Naomi Jean)', 'Suzi Stingl': 'Norma', 'Kelly Lee': 'Nurse Kelly'}" tt5599818,"{'Aslihan Gürbüz': 'Emine', 'Caner Cindoruk': 'Cemal', 'Taner Birsel': 'Ziya', 'Istar Gökseven': 'Selahattin (as Istar Gokseven)', 'Çaglar Çorumlu': 'Aslan', 'Talha Yayikci': 'Remzi', 'Dolunay Soysert': 'Zuhal', 'Berat Özdemir': 'Mete', 'Genco Ozak': 'Muhasebevi', 'Apo Demirkubuz': 'Tamirci'}" tt3391782,{} tt0098084,"{'Dale Midkiff': 'Louis Creed', 'Fred Gwynne': 'Jud Crandall', 'Denise Crosby': 'Rachel Creed', 'Brad Greenquist': 'Victor Pascow', 'Michael Lombard': 'Irwin Goldman', 'Miko Hughes': 'Gage Creed', 'Blaze Berdahl': 'Ellie Creed', 'Susan Blommaert': 'Missy Dandridge', 'Mara Clark': 'Marcy Charlton', 'Kavi Raz': 'Steve Masterton', 'Mary Louise Wilson': 'Dory Goldman', 'Andrew Hubatsek': 'Zelda', 'Liz Davies': 'Girl at Infirmary', 'Kara Dalke': 'Candystriper', 'Matthew August Ferrell': 'Jud as a Child'}" tt6428676,"{'Sofia Mali': 'Young June (voice)', 'Jennifer Garner': 'Mom (voice)', 'Ken Hudson Campbell': 'Boomer (voice)', 'Kenan Thompson': 'Gus (voice)', 'Mila Kunis': 'Greta (voice)', 'John Oliver': 'Steve (voice)', 'Ken Jeong': 'Cooper (voice)', 'Norbert Leo Butz': 'Peanut (voice)', 'Matthew Broderick': 'Dad (voice)', 'Brianna Denski': 'June (voice)', 'Oev Michael Urbas': 'Banky (voice)', 'Kate McGregor-Stewart': 'Aunt Albertine (voice)', 'Kevin Chamberlin': 'Uncle Tony (voice)', 'Kath Soucie': 'Bus Counselor Shannon (voice)'}" tt2267858,"{'Robert Higden': 'Taxi Driver', 'Dawn Ford': 'Dr. Turcotte', 'Paul Van Dyck': 'Dr. Miller', 'Jane Gilchrist': 'Mrs. Wheeler', 'Marie-Noelle Dufour': 'Nurse', 'Karl Werleman': 'Large Ordely', 'Tristan D. Lalla': 'Short Orderly', 'Timothy Hine': 'Napoleon', 'Marc Francoeur': 'Old patient', 'Alison Louder': 'Terrified woman', 'Jean-Michel Bélanger': 'Extras', 'Nicolas Didtsch': 'Extras', 'François Guinaudeau': 'Extras', 'Patrick Martin': 'Extras', 'Arantza Maldonado': 'Extras'}" tt6495770,"{'Johnny Knoxville': 'D.C.', 'Eleanor Worthington-Cox': 'Boogie', 'Chris Pontius': 'Benny', 'Dan Bakkedahl': 'Knoblach', 'Johnny Pemberton': 'Ziffel', 'Brigette Lundy-Paine': 'Four Finger Annie', 'Eric Manaka': 'Rodney', 'Joshua Hoover': 'Hot Headed Pete', 'Conner McVicker': 'Stiv', 'Michael Everson': 'Slappy', 'Aidan Whytock': 'Ron', 'Matthew Peterson': 'Travis', 'Aidan Scott': 'Bobo', 'Ashley Dickerson': 'Steffi', 'Matt Schulze': 'Killer'}" tt0106220,"{'Anjelica Huston': 'Morticia Addams', 'Raul Julia': 'Gomez Addams', 'Christopher Lloyd': 'Uncle Fester Addams', 'Joan Cusack': 'Debbie Jellinsky', 'Christina Ricci': 'Wednesday Addams', 'Carol Kane': 'Granny', 'Jimmy Workman': 'Pugsley Addams', 'Kaitlyn Hooper': 'Pubert Addams', 'Kristen Hooper': 'Pubert Addams', 'Carel Struycken': 'Lurch', 'David Krumholtz': 'Joel Glicker', 'Christopher Hart': 'Thing', 'Dana Ivey': 'Margaret Addams', 'Peter MacNicol': 'Gary Granger', 'Christine Baranski': 'Becky Martin-Granger'}" tt0117894,"{'Robert John Burke': 'Billy Halleck', 'Lucinda Jenney': 'Heidi Halleck', 'Bethany Joy Lenz': 'Linda Halleck (as Joy Lenz)', 'Time Winters': 'Prosecutor', 'Howard Erskine': 'Judge Phillips', 'Joe Mantegna': 'Richie Ginelli', 'Terrence Garmey': 'Bailiff', 'Randy Jurgensen': 'Court Clerk', 'Jeff Ware': 'Max Duggenfield', 'Antonette Schwartzberg': 'Mama Ginelli', 'Terence Kava': 'Gabe Lempke (as Terrence Kava)', 'Kari Wuhrer': 'Gina Lempke', 'Adriana Delphine': 'Gypsy Woman', 'Ruth Miller': ""Billy's Secretary"", 'Walter Bobbie': 'Kirk Penschley'}" tt9428920, tt5596104,"{'Sam Keeley': 'Jamie', 'Manoel Orfanaki': 'JC', 'Hera Hilmar': 'Sophie', 'Kal Penn': 'Nitin', 'Radhika Apte': 'Gayatri', 'Melissa Leo': 'Chandra', 'Kallirroi Tziafeta': 'Caterina', 'Zachary Coffin': 'Dr. Michaels', 'Yasemin Delikan': 'Claudia', 'Kristian Hedegaard-Petersen': 'Hans', 'Ashish Juneja': 'Ashish', 'Andrea Ravera': 'Surya (as Andy Rave)'}" tt7014006,"{'Elsie Fisher': 'Kayla Day', 'Josh Hamilton': 'Mark Day', 'Emily Robinson': 'Olivia', 'Jake Ryan': 'Gabe', 'Daniel Zolghadri': 'Riley', 'Fred Hechinger': 'Trevor', 'Imani Lewis': 'Aniyah', 'Luke Prael': 'Aiden', 'Catherine Oliviere': 'Kennedy', 'Nora Mullins': 'Steph', 'Gerald W. Jones': 'Tyler', 'Missy Yager': 'Mrs. Graves', 'Shacha Temirov': 'Mason', 'Greg Crowe': 'Mr. McDaniel', ""Thomas John O'Reilly"": 'Edmund'}" tt3576060,"{'Joseph Oliveira': 'Lt Rashidd', 'Matt Sager': 'TV News Anchor', 'Matthew Vandyke': 'Himself'}" tt3206798,"{'Valerie Brandy': 'Lola', 'Travis Quentin Young': 'Sam', 'Annamarie Kenoyer': 'Ree', 'Peter Banifaz': 'Pete', 'Tom Colitt': 'Tim'}" tt6958014,"{'Alia Shawkat': 'Naima', 'Laia Costa': 'Sergio', 'Mae Whitman': 'Ellen', 'Hong Chau': 'Glow', 'Kumail Nanjiani': 'Jake', 'Kate Berlant': 'Kathy', 'Deborah Adair': 'Old Neighbor', 'LaDonna Adams': 'Oil Can Harrys Background', 'Cassandra Borges': 'El Cid Background', 'Lindsay Burdge': 'Kate', 'Andrew Y. Byrd': 'Andrea', 'Jibz Cameron': 'Jess', 'Marguerite Carter': ""Oil Can Harry's MC"", 'Dolores Castelano': 'Oil Can Harrys Background', 'Chelsea Choi': 'El Cid Background'}" tt6921996,"{'Kevin Eldon': 'MI7 Night Duty Agent', 'Emma Thompson': 'Prime Minister', 'Adam James': 'Pegasus', 'Rowan Atkinson': 'Johnny English', 'Noah Spiers': 'Baggaley', 'Kendra Mei': 'Ibadulla', 'Alfie Kennedy': 'Straker', 'Jasmine Brightmore': 'Dowling', 'George Turner': 'Hattersley', 'Rua Robertson': 'Ridley', 'Adam Greaves-Neal': 'Tomlinson', 'Nifemi Bankole': 'Obasanjo', 'Gus Brown': 'Headmaster', 'Pippa Bennett-Warner': 'Lesley', 'Michael Gambon': 'Agent Five'}" tt5610554,"{'Charlize Theron': 'Marlo', 'Mackenzie Davis': 'Tully', 'Ron Livingston': 'Drew', 'Asher Miles Fallica': 'Jonah', 'Lia Frankland': 'Sarah', 'Mark Duplass': 'Craig', 'Elaine Tan': 'Elyse', 'Gameela Wright': 'Laurie', 'Tattiawna Jones': 'Violet', 'Stormy Ent': 'Shasta', 'Maddie Dixon-Poirier': 'Emmy', 'Bella Star Choy': 'Greta', 'Dominic Good': 'Dash', 'Joshua Pak': 'Dallas', 'Em Haine': 'Barista (as Emily Haine)'}" tt0397535,"{'Suzuka Ohgo': 'Chiyo', 'Togo Igawa': 'Tanaka', 'Mako': 'Sakamoto', 'Samantha Futerman': 'Satsu', 'Elizabeth Sung': ""Sakamoto's Wife"", 'Thomas Ikeda': 'Mr. Bekku', 'Li Gong': 'Hatsumomo (as Gong Li)', 'Tsai Chin': 'Auntie', 'Kaori Momoi': 'Mother', 'Zoe Weizenbaum': 'Young Pumpkin', 'David Okihiro': 'Shamisen Teacher', 'Miyako Tachibana': 'Dance Teacher', 'Kotoko Kawamura': 'Granny', 'Karl Yune': 'Koichi', 'Eugenia Yuan': 'Korin'}" tt4092422,"{'Johnny Flynn': 'Arthur', 'Lydia Wilson': 'Vida', 'Ellie Kendrick': 'Helen', 'Al Weaver': 'Adam Berliner', 'Juliet Stevenson': 'Ethel', 'Henry Goodman': 'Levi', 'Jessica Gunning': 'Emily', 'Alex Lanipekun': 'Llion', 'Matt Barber': ""Vida's Ex Lover"", 'Edward Akrout': 'Simon', 'Remy Beasley': 'Brenda (as Remy Beasly)', 'Sharon Morgan': 'Sara', 'Joelle Koissi': 'Art Gallery Goer', 'Daniel Eghan': 'Family Member', 'Hedydd Dylan': 'Anwyn'}" tt2798920,"{'Natalie Portman': 'Lena', 'Benedict Wong': 'Lomax', 'Sonoya Mizuno': 'Humanoid & Katie (Med Student)', 'David Gyasi': 'Daniel', 'Oscar Isaac': 'Kane', 'John Schwab': 'Paramedic', 'Jennifer Jason Leigh': 'Dr Ventress', 'Gina Rodriguez': 'Anya Thorensen', 'Tuva Novotny': 'Cass Sheppard', 'Tessa Thompson': 'Josie Radek', 'Sammy Hayman': 'Mayer', 'Josh Danford': 'Shelley', 'Kristen McGarrity': 'Lena Double'}" tt7575702,{} tt4953610,"{'Alana Chester': 'Kacie', 'Paul Cross': 'Mayor Densmore', 'Tomas Decurgez': 'Mark', 'Sherry Driggs': 'Crystal', 'Steve Jacques': 'Bruce', 'Sophia Louisa': 'Maria', 'Jim Marshall': 'Craig', 'Tom McLaren': 'Chris Carter', 'David Mendoza': 'Manny', ""Cara O'Brien"": ""Jennifer (as Carolyn O'Brien)"", 'Phil Pierce': 'Phil', 'Art Roberts': 'Officer Morrison', 'Dean Testerman': 'Detective Richardson', 'Jovita Trujillo': 'Stacey'}" tt0114608,"{'John Kassir': 'Crypt Keeper (voice)', 'Billy Zane': 'The Collector', 'William Sadler': 'Brayker', 'Jada Pinkett Smith': 'Jeryline (as Jada Pinkett)', 'Brenda Bakke': 'Cordelia', 'CCH Pounder': 'Irene', 'Dick Miller': 'Uncle Willy', 'Thomas Haden Church': 'Roach', 'John Schuck': 'Sheriff Tupper', 'Gary Farmer': 'Deputy Bob Martel', 'Charles Fleischer': 'Wally Enfield', 'Tim DeZarn': 'Homer (as Tim deZarn)', 'Sherrie Rose': 'Wanda', ""Ryan O'Donohue"": ""Danny (as Ryan Sean O'Donohue)"", 'Tony Salome': 'Sirach'}" tt4953610,"{'Alana Chester': 'Kacie', 'Paul Cross': 'Mayor Densmore', 'Tomas Decurgez': 'Mark', 'Sherry Driggs': 'Crystal', 'Steve Jacques': 'Bruce', 'Sophia Louisa': 'Maria', 'Jim Marshall': 'Craig', 'Tom McLaren': 'Chris Carter', 'David Mendoza': 'Manny', ""Cara O'Brien"": ""Jennifer (as Carolyn O'Brien)"", 'Phil Pierce': 'Phil', 'Art Roberts': 'Officer Morrison', 'Dean Testerman': 'Detective Richardson', 'Jovita Trujillo': 'Stacey'}" tt7043070,"{'Katrina Ann Volonnino': 'Mackenzie', 'Becka Adams': ""(segment 'Alone')"", 'Jack Egber': ""Ryan (segment 'Pieces of the Heart')"", 'Holgie Forrester': ""Tina (segment 'Pieces of the Heart')"", 'Kalyna Leigh': ""(segment 'The Dweller')"", 'Kirsten Livie': '(as Kristen Livie-Primero)', 'Tessa Netting': ""(segment 'The Dweller')"", 'Brock Powell': ""(segment 'The Dweller')"", 'Jeff Prewitt': ""(segment 'Toothbrush')""}" tt0455760,"{'Ryan Kwanten': 'Jamie Ashen', 'Amber Valletta': 'Ella Ashen', 'Donnie Wahlberg': 'Det. Lipton', 'Michael Fairman': 'Henry Walker', 'Joan Heney': 'Marion Walker', 'Bob Gunton': 'Edward Ashen', 'Laura Regan': 'Lisa Ashen', 'Dmitry Chepovetsky': 'Richard Walker', 'Judith Roberts': 'Mary Shaw', 'Keir Gilchrist': 'Young Henry', 'Steven Taylor': 'Michael Ashen', 'David Talbot': 'Priest', 'Steve Adams': '1941 Detective', 'Shelley Peterson': ""Lisa's Mom"", 'Enn Reitel': 'Billy (voice)'}" tt5886046,"{'Taylor Russell': 'Zoey Davis', 'Logan Miller': 'Ben Miller', 'Jay Ellis': 'Jason Walker', 'Tyler Labine': 'Mike Nolan', 'Deborah Ann Woll': 'Amanda Harper', 'Nik Dodani': 'Danny Khan', 'Yorick van Wageningen': 'Games Master WooTan Yu', 'Cornelius Geaney Jr.': 'College Professor', 'Russell Crous': ""Charlie - Jason's Assistant"", 'Bart Fouche': ""Gary - Ben's Boss"", 'Jessica Sutton': ""Allison - Zoey's Roommate"", 'Paul Hampshire': 'Hazmat One', 'Vere Tindale': 'Minos Security Guard / Hazmat Two', 'Kenneth Fok': 'Detective Li', 'Caely-Jo Levy': 'Nurse (as Caely Jo Levy)'}" tt5941692,"{'Gina Rodriguez': 'Gloria', 'Thomas Dekker': 'Makeup Supervisor', 'Vivian Chan': 'Fashion Designer', 'Barbarella Pardo': 'MX Customs Officer', 'Cristina Rodlo': 'Suzu', 'Sebastián Cano': 'Chava (as Sebastian Cano Echegollen)', 'Gaby Orihuela': 'Pageant Coordinator', 'Damián Alcázar': 'Chief Saucedo', 'Ricardo Abarca': 'Poyo', 'Ismael Cruz Cordova': 'Lino (as Ismael Cruz Córdova)', 'Erick Delgadillo': 'Tucán (as Erick Rene Delgadillo Urbina)', 'Mikhail Plata': 'Chivo', 'Jorge Humberto Millan Mardueño': 'Ortiz', 'Job Sarmiento': 'Officer at Club', 'Roberto Sosa': 'Police Officer'}" tt3080844,{'Gennadiy Mokhnenko': 'Himself'} tt5160154,"{'Russell Tovey': 'Jason', 'Arinzé Kene': 'Ade (as Arinze Kene)', 'Lisa McGrillis': 'Lyndsey', 'Nico Mirallegro': 'Harry', 'Rory J. Saper': 'Bellboy (as Rory Saper)', 'Danielle Meehan': 'Voice Artist (voice)', 'Jonathan Fitzmaurice': 'Voice Artist (voice)', 'Jonathan Gaida': 'Voice Artist (voice)'}" tt6205872,"{'Odessa Young': 'Lily', 'Abra': 'Em', 'Suki Waterhouse': 'Sarah', 'Hari Nef': 'Bex', 'Colman Domingo': 'Principal Turrell', 'Danny Ramirez': 'Diamond', 'Joel McHale': 'Nick Mathers', 'Maude Apatow': 'Grace', 'Cody Christian': 'Johnny', 'Bill Skarsgård': 'Mark', 'Cullen Moss': 'Mayor Bartlett', 'Bella Thorne': 'Reagan', 'Kelvin Harrison Jr.': 'Mason', 'Anika Noni Rose': 'Nance', 'Jeff Pope': 'Officer Richter'}" tt0864835,"{'Ty Burrell': 'Mr. Peabody (voice)', 'Max Charles': 'Sherman (voice)', 'Lauri Fraser': 'Marie Antoinette / Egyptian Woman (voice)', 'Guillaume Aretos': 'Robespierre (voice)', 'Pat Musick': 'Teacher (voice) (as Patrice A. Musick)', 'Ariel Winter': 'Penny Peterson (voice)', 'Karan Brar': 'Mason (voice)', 'Joshua Rush': 'Carl (voice) (as Josh Rush)', 'Stephen Tobolowsky': 'Principal Purdy (voice)', 'Allison Janney': 'Ms. Grunion (voice)', 'Dennis Haysbert': 'Judge (voice)', 'Stephen Colbert': 'Paul Peterson (voice)', 'Leslie Mann': 'Patty Peterson (voice)', 'Zach Callison': 'King Tut (voice)', 'Steve Valentine': 'Ay (voice)'}" tt2582784,"{'Zoey Deutch': 'Erica Vandross', 'Kathryn Hahn': 'Laurie Vandross', 'Tim Heidecker': 'Bob Sherman', 'Adam Scott': 'Will Jordan', 'Joey Morgan': 'Luke Sherman', 'Dylan Gelula': 'Kala', 'Maya Eshet': 'Claudine', 'Eric Edelstein': 'Dale Cotter', 'Romy Byrne': 'Alli Whitman', 'Liz Mohun': 'Waitress #1', 'Kee Broussard': 'Waitress #2', 'Alison White': ""Claudine's Mom"", 'Alex Marshall-Brown': 'Cop (as Alex Marshall Brown)', 'Joel Ezra Hebner': 'Highway Patrol (as Joel Hebner)', 'Rickie Peete': 'Guard (as Rickie Montaldo Peete)'}" tt0245429,"{'Rumi Hiiragi': 'Chihiro Ogino / Sen (voice)', 'Miyu Irino': 'Haku (voice)', 'Mari Natsuki': 'Yubaba / Zeniba (voice)', 'Takashi Naitô': 'Akio Ogino (voice)', 'Yasuko Sawaguchi': 'Yûko Ogino (voice)', 'Tatsuya Gashûin': 'Aogaeru (voice)', 'Ryûnosuke Kamiki': 'Bô (voice)', 'Yumi Tamai': 'Rin (voice)', 'Yô Ôizumi': 'Bandai-gaeru (voice)', 'Koba Hayashi': 'Kawa no Kami (voice)', 'Tsunehiko Kamijô': 'Chichiyaku (voice)', 'Takehiko Ono': 'Aniyaku (voice)', 'Bunta Sugawara': 'Kamajî (voice)', 'Shigeru Wakita': '(voice)', 'Shirô Saitô': '(voice)'}" tt5912454,"{'Mark Duplass': 'Jim', 'Sarah Paulson': 'Amanda', 'Clu Gulager': 'Waynie', 'James Andrews': 'Background', 'Harris Benbury': 'Background', 'Daniel Brooks': 'Background', 'Mary Brooks': 'Background', 'Bill Greer': 'Background', 'Cindy Greer': 'Background', 'Ana Iovine': 'Background', 'Leo Munoz': 'Background', 'Loretta Munoz': 'Background', 'Brady Rice': 'Background', 'Karen Rice': 'Background'}" tt0424095,"{'Hugh Jackman': 'Roddy (voice)', 'Kate Winslet': 'Rita (voice)', 'Ian McKellen': 'The Toad (voice)', 'Jean Reno': 'Le Frog (voice)', 'Bill Nighy': 'Whitey (voice)', 'Andy Serkis': 'Spike (voice)', 'Shane Richie': 'Sid (voice)', 'Kathy Burke': ""Rita's Mum (voice)"", 'David Suchet': ""Rita's Dad (voice)"", 'Miriam Margolyes': ""Rita's Grandma (voice)"", 'Rachel Rawlinson': 'Tabitha (voice)', 'Susan Duerden': 'Mother (voice)', 'Miles Richardson': 'Father (voice)', 'John Motson': 'Football Commentator (voice)', 'Douglas Weston': 'Newspaper Seller (voice)'}" tt2518848,"{'Casper Van Dien': 'Nathan Sims', 'Michael Beach': 'Simon Caprisi', 'Sarah Lieving': 'Mona Sims', 'Bryan Head': 'Johnny Sims', 'Keith Meriweather': 'Captain Wright', 'Chad Brummett': 'Gage', 'James Lawrence Sicard': 'Specialist Tudor (as James Sicard)', ""Dale O'Malley"": 'Tech Oxenberg', 'Hayley Derryberry': 'Tech Lewis', 'Alex Knight': 'Sergeant Gentile', 'Jeremiah Wood': 'Science Tech #1 (as Jeremiah Z. Wood)', 'Lawrence Kruckeberg': ""Science Tech #2 (as Lawrence 'Law' Kruckeberg)"", 'Stephen Turselli': 'Science Tech #3', 'Gerard Pitpitan': 'Science Tech #4', 'Kim Trujillo': 'Reporter'}" tt0120587,"{'Woody Allen': 'Z (voice)', 'Dan Aykroyd': 'Chip (voice)', 'Anne Bancroft': 'Queen (voice)', 'Jane Curtin': 'Muffy (voice)', 'Danny Glover': 'Barbatus (voice)', 'Gene Hackman': 'Mandible (voice)', 'Jennifer Lopez': 'Azteca (voice)', 'John Mahoney': 'Drunk Scout (voice)', 'Paul Mazursky': 'Psychologist (voice)', 'Grant Shaud': 'Foreman (voice)', 'Sylvester Stallone': 'Weaver (voice)', 'Sharon Stone': 'Bala (voice)', 'Christopher Walken': 'Cutter (voice)', 'Jim Cummings': 'Additional Voices (voice)', 'Jerry Sroka': 'Additional Voices (voice)'}" tt3120508,"{'David DeLuise': 'Dad', 'Kim Little': 'Mom', 'Davis Cleveland': 'Dillon', 'Gerald Webb': 'Columbus (voice)', 'Natalie Jane': 'KC', 'Kevin Sorbo': 'Quentin', 'Jeremy Mascia': 'Jake', 'Jonathan Nation': 'Anthony', 'Justin Hoffmeister': 'Rob', 'Hooligan': 'Bone the dog', 'Bill Pomeroy': 'Bone (voice) (as William R. Pomeroy)', 'John Kenward': 'Phil', 'Torpedo': 'Columbus the Dog', 'Kevin Yarbrough': 'Cupcake (voice)', 'Hitchcock': 'Cupcake the Dog'}" tt0110366,"{'Travis Tedford': 'Spanky', 'Kevin Jamal Woods': 'Stymie', 'Jordan Warkol': 'Froggy', 'Zachary Mabry': 'Porky', 'Ross Bagley': 'Buckwheat (as Ross Elliot Bagley)', 'Courtland Mead': 'Uh-Huh', 'Sam Saletta': 'Butch', 'Blake Jeremy Collins': 'Woim', 'Blake McIver Ewing': 'Waldo', 'Juliette Brewer': 'Mary Ann', 'Heather Karasek': 'Jane', 'Brittany Ashton Holmes': 'Darla', 'Bug Hall': 'Alfalfa', 'Elmer': 'Himself', 'Petey': 'Himself'}" tt6644200,"{'Emily Blunt': 'Evelyn Abbott', 'John Krasinski': 'Lee Abbott', 'Millicent Simmonds': 'Regan Abbott', 'Noah Jupe': 'Marcus Abbott', 'Cade Woodward': 'Beau Abbott', 'Leon Russom': 'Man in the Woods'}" tt1628841,"{'Liam Hemsworth': 'Jake Morrison', 'Jeff Goldblum': 'David Levinson', 'Jessie T. Usher': 'Dylan Hiller', 'Bill Pullman': 'President Whitmore', 'Maika Monroe': 'Patricia Whitmore', 'Sela Ward': 'President Lanford', 'William Fichtner': 'General Adams', 'Judd Hirsch': 'Julius Levinson', 'Brent Spiner': 'Dr. Brakish Okun', 'Patrick St. Esprit': 'Secretary of Defense Tanner', 'Vivica A. Fox': 'Jasmine Hiller', 'Angelababy': 'Rain Lao', 'Charlotte Gainsbourg': 'Catherine Marceaux', 'Deobia Oparei': 'Dikembe Umbutu (as DeObia Oparei)', 'Nicolas Wright': 'Floyd Rosenberg'}" tt4520924,"{'Madison Iseman': 'Pam', 'Jeff Kober': 'Bruce', 'Laura Bell Bundy': 'Lorraine', 'Deirdre Lovejoy': 'Pastor Hodges', 'Catherine Curtin': 'Ruth Ann', 'Auden Thornton': 'Angie', 'Ben Curtis': 'Billy', 'Paten Hughes': 'Kaylee', 'Schann Mobley': ""Dyer's Secretary"", 'Wynn Reichert': 'Ray', 'Allie Spetalnick': 'Geena', 'Bridget Berger': 'Sophie', 'Kristina L. Ives': 'Terry', 'Jon Arthur': 'Sheriff Stevens', 'Libby Barnes': 'Karen'}" tt1343092,"{'Lisa Adam': 'Weeping / Singing Woman', 'Frank Aldridge': ""Well Dressed Male Witness - Wilson's Garage"", 'Amitabh Bachchan': 'Meyer Wolfsheim', 'Steve Bisley': 'Dan Cody', 'Richard Carter': 'Herzog', 'Jason Clarke': 'George Wilson', 'Adelaide Clemens': 'Catherine', 'Vince Colosimo': 'Michaelis', 'Max Cullen': 'Owl Eyes', 'Mal Day': 'The Boss-Probity Trust', 'Elizabeth Debicki': 'Jordan Baker', 'Leonardo DiCaprio': 'Jay Gatsby', 'Joel Edgerton': 'Tom Buchanan', 'Emmanuel Ekwenski': 'Jazz Player', 'Eden Falk': 'Mr. McKee'}" tt3626442,"{'David Attenborough': 'Himself - Opening sequence voice (voice)', 'Björk': 'Herself'}" tt3986978,"{'Julie Adams': 'Herself', 'Damon Albarn': 'Himself', 'Fred C. Caruso': 'Himself', 'Todd Colombo': 'Himself', 'Satya De La Manitou': 'Himself', 'Samantha Fuller': 'Herself', 'Stella Garcia': 'Herself', 'Frank Gehry': 'Himself', 'Michael Goodwin': 'Himself', 'Michael Gruskoff': 'Himself', 'Jamie Hewlett': 'Himself', 'Dennis Hopper': 'Himself (archive footage)', 'Brian Kehew': 'Himself', 'Yasmine Kittles': 'the Beautiful Young Woman', 'Barbara Lamelza': 'Herself'}" tt1210166,"{'Brad Pitt': 'Billy Beane', 'Jonah Hill': 'Peter Brand', 'Philip Seymour Hoffman': 'Art Howe', 'Robin Wright': 'Sharon', 'Chris Pratt': 'Scott Hatteberg', 'Stephen Bishop': 'David Justice', 'Reed Diamond': 'Mark Shapiro', 'Brent Jennings': 'Ron Washington', 'Ken Medlock': 'Grady Fuson', 'Tammy Blanchard': 'Elizabeth Hatteberg', 'Jack McGee': 'John Poloni', 'Vyto Ruginis': 'Pittaro', 'Nick Searcy': 'Matt Keough', 'Glenn Morshower': 'Ron Hopkins', 'Casey Bond': 'Chad Bradford'}" tt2401878,"{'David Thewlis': 'Michael Stone (voice)', 'Jennifer Jason Leigh': 'Lisa Hesselman (voice)', 'Tom Noonan': 'Everyone else (voice)'}" tt2385752,"{'Tom Riley': 'Adrian', 'Freya Mavor': 'Natalie', 'Jessie Cave': 'Kerry', 'Steven Mackintosh': 'Lenny', 'Sorcha Cusack': 'Mary', 'Josh Whitehouse': 'Liam', 'Daisy Bevan': 'Layla', 'Will Merrick': 'Olly', 'Matt Milne': 'Gus', 'Caroline Boulton': 'Fretful Mother', 'Tallulah Haddon': 'Holly (as Tallulah Rose Haddon)', 'Yinka Awoni': 'Music Executive', 'Emma Bryant': 'Emma'}" tt1230168,"{'Greg Kinnear': 'Ron Hall', 'Renée Zellweger': 'Debbie Hall', 'Djimon Hounsou': 'Denver Moore', 'Jon Voight': 'Earl', 'Olivia Holt': 'Regan', 'Austin Filson': 'Carson', 'Geraldine Singer': 'Tommye', 'Daniel Zacapa': 'Julio', 'Dana Gourrier': 'Willow', 'Thomas Francis Murphy': 'Chef Jim', 'Ann Mahoney': 'Clara', 'Theodus Crane': 'Tiny', 'David Dino Wells Jr.': 'Mister (as Dino Wells)', 'Pedro Lucero': 'Killer', 'Mary Hunter Johnston': 'Little Girl'}" tt2368619,"{'Idris Elba': 'Sean Briar', 'Richard Madden': 'Michael Mason', 'Charlotte Le Bon': 'Zoe', 'Kelly Reilly': 'Karen Dacre', 'José Garcia': 'Victor Gamieux', 'Thierry Godard': 'Rafi Bertrand', 'Vincent Londez': 'Yannick Bertrand', 'Arieh Worthalter': 'Jean', 'Mohamed Makhtoumi': 'Christophe', 'Théo Costa-Marini': 'Xavier (as Théo Costa Marini)', 'Jérôme Gaspard': 'Yves', 'Ismaël Sy Savané': 'Serge (as Ismael Sy Savane)', 'James Stewart': 'Henri', 'James Cox': 'Pierre', 'James Harris': 'Marcel'}" tt5081618,"{'Anna Luca Biani': 'Natia Orbeliani (as Anna Biani)', 'Bai Ling': 'Lilly', 'Michael Madsen': 'Detective Brennan', 'Konstantin Kryukov': 'Sasha', 'Rob Nilsson': 'Ruthven', 'Kato Kaelin': 'Thaddeus Wilson', 'Bailey Coppola': 'Luke', 'Bayra Bela': 'Aria (as Bela Flor)', 'Nino Bugeshashvili': 'Nutsa the Interiewer', 'Miranda Butskhrikhidze': 'Aerialist', 'Fontana Butterfield': 'Mary', 'Joseph Coleman': 'Rico', 'Spencer Davie': 'Hipster', 'Natalia Diasamibze': 'Dedika Orbeliani', 'Nathanael Foster': 'Bartender'}" tt6857166,"{'Diane Keaton': 'Diane', 'Jane Fonda': 'Vivian', 'Candice Bergen': 'Sharon', 'Mary Steenburgen': 'Carol', 'Andy Garcia': 'Mitchell', 'Craig T. Nelson': 'Bruce', 'Don Johnson': 'Arthur', 'Ed Begley Jr.': 'Tom', 'Richard Dreyfuss': 'George', 'Wallace Shawn': 'Dr. Derek', 'Alicia Silverstone': 'Jill', 'Katie Aselton': 'Adrianne', 'Mircea Monroe': 'Cheryl', 'Tommy Dewey': 'Chris', 'John Shartzer': 'Andrew'}" tt5338644,"{'Isabelle Huppert': 'Marie Géquil / Madame Hyde', 'Romain Duris': 'Le proviseur', 'José Garcia': 'Pierre Géquil', 'Adda Senani': 'Malik', 'Guillaume Verdier': 'Le stagiaire', 'Patricia Barzyk': 'La voisine', 'Pierre Léon': ""L'inspecteur"", 'Roxane Arnal': 'La déléguée de classe 1', 'Angèle Metzger': 'La déléguée de classe 2', 'Belkacem Lalaoui': 'Belkacem', 'Jamel Barbouche': 'Le père de Malik', 'Gernina Mombili': 'Fille TPE 1', 'Sanaa El Morsali': 'Fille TPE 2', 'Youssouf Diagouraga': 'Youssouf', 'Charlotte Véry': 'La prof de français'}" tt0318155,"{'Brendan Fraser': 'DJ Drake / Himself / Voice of Tasmanian Devil and She-Devil', 'Jenna Elfman': 'Kate', 'Steve Martin': 'Mr. Chairman', 'Timothy Dalton': 'Damien Drake', 'Heather Locklear': 'Dusty Tails', 'Joan Cusack': 'Mother', 'Bill Goldberg': 'Mr. Smith', 'Don Stanton': 'Mr. Warner', 'Dan Stanton': ""Mr. Warner's Brother"", 'Dick Miller': 'Security Guard', 'Roger Corman': 'Hollywood Director', 'Kevin McCarthy': 'Dr. Bennell', 'Jeff Gordon': 'Himself', 'Matthew Lillard': 'Himself', 'Mary Woronov': 'Acme VP, Bad Ideas'}" tt2991532,"{'Marissa Lynne Johnson': 'Bell Witch', 'Laura Alexandra Ramos': 'Lynn'}" tt0093756,"{'Steve Guttenberg': 'Mahoney', 'Bubba Smith': 'Hightower', 'Michael Winslow': 'Jones', 'David Graf': 'Tackleberry', 'Tim Kazurinsky': 'Sweetchuck', 'Sharon Stone': 'Claire Mattson', 'Leslie Easterbrook': 'Callahan', 'Marion Ramsey': 'Hooks', 'Lance Kinsey': 'Proctor', 'G.W. Bailey': 'Capt. Harris', 'Bobcat Goldthwait': 'Zed', 'George Gaynes': 'Commandant Lassard', 'Derek McGrath': 'Butterworth', 'Scott Thomson': 'Copeland', 'Billie Bird': 'Mrs. Feldman'}" tt6981634,"{'Tate Ellington': 'Alex', 'Tara Summers': 'Penelope', 'Victoria Clark': 'Shirley', 'Harris Yulin': 'Charles', 'Drew Powell': 'Donny Softlicker', 'Douglas Hodge': 'Dr. Rock Positano', 'Adepero Oduye': 'Anais', 'Dree Hemingway': 'Lisa Leonard', 'Jack Dishel': 'Kale', 'Ronald Guttman': 'Dan Tanner', 'Wendy Makkena': 'Sandy Tanner', 'Adelind Horan': 'Hope', 'Austin Pendleton': 'Raphael', 'Marceline Hugot': ""Donny's Mom"", 'Migs Govea': 'Tall Dark Strange Guy'}" tt6981634,"{'Tate Ellington': 'Alex', 'Tara Summers': 'Penelope', 'Victoria Clark': 'Shirley', 'Harris Yulin': 'Charles', 'Drew Powell': 'Donny Softlicker', 'Douglas Hodge': 'Dr. Rock Positano', 'Adepero Oduye': 'Anais', 'Dree Hemingway': 'Lisa Leonard', 'Jack Dishel': 'Kale', 'Ronald Guttman': 'Dan Tanner', 'Wendy Makkena': 'Sandy Tanner', 'Adelind Horan': 'Hope', 'Austin Pendleton': 'Raphael', 'Marceline Hugot': ""Donny's Mom"", 'Migs Govea': 'Tall Dark Strange Guy'}" tt3597400,"{'Grant Baldwin': 'Himself', 'Jenny Rustemeyer': 'Herself', 'Dana Gunders': 'Herself - Interviewee', 'Jonathan Bloom': 'Himself - Interviewee', 'Tristram Stuart': 'Himself - Interviewee', 'Nick Baldwin': 'Himself', 'Delaney Zayac': 'Himself - Interviewee', 'Harold McClarty': 'Himself - Interviewee', 'Chris Holland': 'Himself - Interviewee', 'Cameron Anderson': 'Himself - Interviewee', 'Dana Hauser': 'Herself - Interviewee', 'Mick Baldwin': 'Himself', 'Linda Baldwin': 'Herself', 'Spencer Whitney': 'Himself', 'David Lavallee': 'Himself'}" tt6149802,"{'Renée Felice Smith': 'Beck', 'Matt Bush': 'Liam', 'Nelson Franklin': 'Buddy', 'Floyd Foster Jr.': 'Charlie', 'Brandon Kyle Goodman': 'Franklin', 'Georgia Mischak': 'Sara', 'Alexander Tovar': 'Shane', 'Owain Rhys Davies': 'Bobby', 'Mary Gillis': 'Mary the Waitress', 'Natasha Loring': 'Eden (voice)', 'Eric Christian Olsen': 'Chippy (voice)', 'Amy Hessler': 'Eden / Burlesque Dancer', 'Sally Struthers': ""Liam's Mom (voice)"", 'Linda Hunt': 'Dr. Lipschweiss', 'Jana Kleyn': 'Coffee Shop Patron / Salon-goer'}" tt5167174,"{'Linas Phillips': 'Shonzi', 'Melanie Lynskey': 'Lindsay', 'Timm Sharp': 'Todd', 'Davie-Blue': 'Gretchen', 'Wil Gelin': 'Cat Caller #1', 'Oscar Camacho': 'Cat Caller #2', 'Jesse Villacis': 'Cat Caller #3', 'Tobin Bell': 'Peter', 'Artemis Pebdani': 'Justine', 'Chaz The Dog': 'Pizza', 'Lolita The Dog': 'Pizza', 'Lauren Weedman': 'Nina', 'Reagan Yates': 'Lilly', 'Austin Fryberger': 'Jake', 'Ian Michaels': 'Attorney'}" tt0087928,"{'Steve Guttenberg': 'Carey Mahoney', 'Kim Cattrall': 'Karen Thompson', 'G.W. Bailey': 'Lt. Harris', 'Bubba Smith': 'Moses Hightower', 'Donovan Scott': 'Leslie Barbara', 'George Gaynes': 'Commandant Lassard', 'Andrew Rubin': 'George Martín', 'David Graf': 'Tackleberry', 'Leslie Easterbrook': 'Sgt. Callahan', 'Michael Winslow': 'Larvell Jones', 'Debralee Scott': 'Mrs. Fackler', 'Bruce Mahler': 'Doug Fackler', 'Ted Ross': 'Captain Reed', 'Scott Thomson': 'Chad Copeland', 'Brant von Hoffman': 'Kyle Blankes (as Brant Van Hoffman)'}" tt1791528,"{'Joanna Newsom': 'Sortilège', 'Katherine Waterston': 'Shasta Fay Hepworth', 'Joaquin Phoenix': 'Larry ""Doc"" Sportello', 'Jordan Christian Hearn': 'Denis', 'Taylor Bonin': 'Ensenada Slim', 'Jeannie Berlin': 'Aunt Reet', 'Josh Brolin': 'Lt. Det. Christian F. ""Bigfoot"" Bjornsen', 'Eric Roberts': 'Michael Z. Wolfmann', 'Serena Scott Thomas': 'Sloane Wolfmann', 'Maya Rudolph': 'Petunia Leeway', 'Martin Dew': 'Dr. Buddy Tubeside', 'Michael Kenneth Williams': 'Tariq Khalil', 'Hong Chau': 'Jade', 'Shannon Collis': 'Bambi', 'Christopher Allen Nelson': 'Glenn Charlock'}" tt3084904,"{""Sonja O'Hara"": 'Calpurnia Dylan', 'Hassan Johnson': 'Barnard', 'Rutanya Alda': 'Barbara', 'Jaspal Binning': 'Max Singh', 'Jay Gillespie': 'Kelly Cole', 'Karin Agstam': 'Fiona Ryan', 'Katie Morrison': 'Ellen Ray', 'Laura Poe': 'Isabella West', 'Vincent Petrosini': 'Carl', 'Tom Wardach': 'Darren Dylan', 'Julie Hays': 'Harminia Jones-Dylan', 'Vivian Chiu': 'Jenna Leary', 'Henrik Kromann': 'Dr. Alfred Rabinowitz', 'Michael Wieser': 'Burke Stevens', 'Gillian Abbott': 'Amy, Egg Donor'}" tt2439946,"{'Alex Carter': 'John', 'Monica Keena': 'Tessa', 'Alex Arleo': 'Roger', 'Alex Ball': 'Welker', 'Victoria Barabas': 'Oates', 'Ty Barnett': 'Amato', 'David Bittick': 'Guard', 'Adam Burch': 'Purchase', 'Hector Luis Bustamante': 'Bruce (as Hector Bustamante)', 'Christianna Carmine': 'Lynn', 'Marcus Choi': 'Williams', 'Emily Davenport': 'Jennifer', 'Evan Dumouchel': 'David', 'Susannah Hart Jones': 'Kiley', 'Scott Hoxby': 'Admiral Wallace'}" tt5657846,"{'Will Ferrell': 'Brad', 'Mark Wahlberg': 'Dusty', 'Mel Gibson': 'Kurt', 'John Lithgow': 'Don', 'Linda Cardellini': 'Sara', 'Alessandra Ambrosio': 'Karen', 'Owen Vaccaro': 'Dylan (as Owen Wilder Vaccaro)', 'Scarlett Estevez': 'Megan', 'Didi Costine': 'Adrianna', 'Connor Wise': 'Griffy', 'Daphne Wise': 'Griffy', 'Dylan Wise': 'Griffy', 'John Cena': 'Roger', 'Andrea Anders': 'Principal Hayes', 'Kyle Tristan': 'Christmas Pageant Kid (as Kyle Tristan Wakefield)'}" tt5700672,"{'Yoo Gong': 'Seok-woo', 'Yu-mi Jung': 'Seong-kyeong', 'Dong-seok Ma': 'Sang-hwa', 'Su-an Kim': 'Soo-an', 'Eui-sung Kim': 'Yon-suk', 'Woo-sik Choi': 'Yong-guk', 'Sohee': 'Jin-hee (as Ahn So-hee)', 'Soo-jung Ye': 'In-gil', 'Myung-shin Park': 'Jong-gil (as Myung-sin Park)', 'Gwi-hwa Choi': 'Homeless Man', 'Seok-yong Jeong': 'Captain of KTX', 'Hyuk-jin Jang': 'Ki-chul', 'Seong-soo Han': 'Train Team Leader', 'Do-im Woo': 'Cabin Attendant Min-ji', 'Hye-Yeong Moon': 'Cabin Attendant'}" tt3540136,"{'Jing Wu': 'Leng Feng', 'Nan Yu': 'Long Xiaoyun', 'Dahong Ni': 'Min Deng', 'Kevin Lee': 'Mad Cow', 'Zhu Xiao': 'Wu Ji', 'Dongyan Ma': 'Li Zhijun (as Qiang Ma)', 'Zhaoqi Shi': 'Shi Qingsong', 'Zibin Fang': 'Hostage', 'Sen Wang': '38Shi', 'Tengyuan Liu': 'Yu Fei', 'Yongda Zhang': 'Shao Bing', 'Xiaolong Zhang': 'Ban Zhaun', 'Yi Zhao': 'Chief of Staff', 'Zi Liang': 'Eagle', 'Guangping Guo': 'Father of Feng'}" tt3922754,"{'Tom Stedham': 'Sgt. Lance Dawson', 'Bill Voorhees': 'Private C.K. Luinstra', 'Tino Struckmann': 'Major Heston Zeller', 'Larry Gamell Jr.': 'Sgt. Nathaniel Rose (as Lawrence C. Gamell Jr.)', 'Lauren Vera': 'Sister Claudette', 'Yaron Urbas': 'Corporal Michael Griffin', 'Analiese Anderson': 'Mother Mary', 'Trey Hough': 'Sgt. Freddie McNay', 'Elvin Manges': 'Corporal Donald Gunderson', 'Kyle Golden': 'Private Richard Somers', 'Eric C. Schmitz': 'Sgt. Erik Gretsch (as Eric Schmitz)', 'Jenna Klug': 'Amelie', 'Carl J. Klug': 'Pierre', 'Colleen Sinor': 'Peasant Mother', 'James Poule': 'Peasant Father'}" tt6015706,"{'Dong-xue Li': 'Yan Jian', 'Mike Tyson': 'Kabbah', 'Janicke Askevold': 'Susanna', 'Li Ai': 'Ruan Ling', 'Eriq Ebouaney': 'Sheik Asaid', 'Steven Seagal': 'Lauder', 'Zijian Wang': 'Zheng Ming', 'Bryan Byrne': 'Lauder Henchman', 'Sheri Cheng': 'DH Female Representative', 'Anthony Gavard': 'ONU Officer', 'Scotty Gelt': 'Mr. Alexander (as S.F. Gelt)', 'Marc Philip Goodman': 'Philip (as Marc P. Goodman)', 'Diana Hübel': 'Lawyer', 'Randall Lowell': 'Mr. Carlos, Director of LK Telecom Group', 'Mekael Turner': ""Lauder's Right-hand Man""}" tt1068242,"{'Kenny Wormald': 'Ren', 'Julianne Hough': 'Ariel', 'Dennis Quaid': 'Rev. Shaw Moore', 'Andie MacDowell': 'Vi Moore', 'Miles Teller': 'Willard', 'Ray McKinnon': 'Wes Warnicker', 'Patrick John Flueger': 'Chuck', 'Kim Dickens': 'Lulu Warnicker', 'Ziah Colon': 'Rusty', ""Ser'Darius Blain"": 'Woody', 'L. Warren Young': 'Andy Beamis', 'Brett Rice': 'Roger Dunbar', 'Maggie Elizabeth Jones': 'Amy Warnicker (as Maggie Jones)', 'Mary-Charles Jones': 'Sarah Warnicker', 'Enisha Brewster': 'Etta'}" tt2186712,"{'Shiloh Fernandez': 'James', 'Ella Rae Peck': 'Katie', 'Paten Hughes': 'Monica', 'Layla Khosh': 'Sarah (as Layla Koshnoudi)', 'Christine Evangelista': 'Natalie', 'Cassandra Freeman': 'Anna', 'Helen Rogers': 'Lorraine', 'Stella Maeve': 'Lily', 'Natalia Dyer': 'Marie', 'Ebonee Noel': 'Sade', 'Addison Timlin': 'Rapunzel', 'Justin Fischer': 'Waiter', 'Ben Perry': 'Buckwheat Groats (Penis Bailey)', 'Joe Koplowitz': ""Buckwheat Groats (Lil' Dinky)"", 'Brett Davis': 'Grokkq'}" tt3261182,"{'Domenico Nesci': 'The Lonely Italian', 'Mark Chuakay': 'Marquesa', 'Jonathon Aslay': 'Himself', 'Sofiya Bahauch': 'Cafè Patron', 'Jamie Baker': 'Jamie', 'Manuel Bonesso': 'Art Student', 'Vanessa Born': 'Vanessa', 'Kelvin Brown': 'Big Pretty', 'Mirela Burke': 'Meredith', 'Grace Cassidy': 'Cafè Patron', 'Judy Chen': 'Annie', 'Byong Chan Choi': 'Woman on the Bench', 'Chui Kwi Boon Choi': 'Man on the Bench', 'Georgia Dolenz': 'Georgia', 'Beatrix Farber': 'Little League 2'}" tt5354458,"{'Ben Kobold': 'Björn Eriksson', 'Jennifer Mills': 'Britney Big Time', 'Jamie Bragg': 'Jamie Mackie', 'Brian Schroeck': 'Brian', 'Jake Myers': 'Brock', 'Jeremiah Myers': 'Lake Security / Alien', 'Lara Unnerstall': 'Lake Security 2', 'T.D. Barnes': 'Himself', 'David Liebe Hart': 'Himself', 'Rochelle Davida': 'Elsa Moulton', 'Brian Coleman': 'TV Scientist', 'Traci Van Laarhoven Myers': 'Twins', 'Toni Van Laarhoven': 'Twins', 'Joe Ferrell': 'Joe the Executive', 'Andy Seifert': 'Andrzej Stratos'}" tt5354458,"{'Ben Kobold': 'Björn Eriksson', 'Jennifer Mills': 'Britney Big Time', 'Jamie Bragg': 'Jamie Mackie', 'Brian Schroeck': 'Brian', 'Jake Myers': 'Brock', 'Jeremiah Myers': 'Lake Security / Alien', 'Lara Unnerstall': 'Lake Security 2', 'T.D. Barnes': 'Himself', 'David Liebe Hart': 'Himself', 'Rochelle Davida': 'Elsa Moulton', 'Brian Coleman': 'TV Scientist', 'Traci Van Laarhoven Myers': 'Twins', 'Toni Van Laarhoven': 'Twins', 'Joe Ferrell': 'Joe the Executive', 'Andy Seifert': 'Andrzej Stratos'}" tt2296777,"{'Kelly Asbury': 'Goons (voice)', 'Mary J. Blige': 'Irene (voice)', 'Emily Blunt': 'Juliet (voice)', 'Julio Bonet': 'Mankini (voice)', 'Gary Bradbury': 'Barry the Toilet Gnome (voice)', 'Michael Caine': 'Lord Redbrick (voice)', 'Gang Chi': 'Video Game Player (voice)', 'Rosalie Craig': 'Nimrod Captain (voice)', 'Jamie Demetriou': 'Moriarty (voice)', 'Johnny Depp': 'Sherlock Gnomes (voice)', 'Chiwetel Ejiofor': 'Dr. Watson (voice)', 'Dexter Fletcher': 'Gargoyle Reggie (voice)', 'Steve Hamilton Shaw': 'Steve Gnome (voice)', 'Leyla Hobart': 'Policewoman (voice)', 'James Hong': 'Salt Shaker (voice)'}" tt4701182,"{'Hailee Steinfeld': 'Charlie', 'Jorge Lendeborg Jr.': 'Memo', 'John Cena': 'Agent Burns', 'Jason Drucker': 'Otis', 'Pamela Adlon': 'Sally', 'Stephen Schneider': 'Ron', 'Ricardo Hoyos': 'Tripp', 'John Ortiz': 'Dr. Powell', 'Glynn Turman': 'General Whalen', 'Len Cariou': 'Uncle Hank', 'Kollin Holtz': 'Craig', 'Gracie Dzienny': 'Tina', 'Fred Dryer': 'Sheriff Lock', 'Isabelle Ellingson': 'Mean Girlfriend', 'Mika Kubo': 'Mean Girlfriend'}" tt6215044,"{'Jason Tobias': 'Josh', 'Summer Spiro': 'Pam', 'DeJean Brown': 'Earl', 'Paola Menacho': 'Marjorie', 'Hari Williams': 'Greg', 'Gustavo Escobar': 'Ron (as Gustavo Quiroz Jr.)', 'Arthur Roberts': 'Mel', 'Annabel Barrett': 'Molly', 'Jeff Harms': 'Nick', 'Kevin Young': 'Phil', 'Cedric Jonathan': 'Rob', 'Rickey Alexander Wilson': 'Tom (as Ricky Wilson Jr.)', 'Paul Statman': 'Dr. Zicree', 'Ronak Gandhi': 'Cern Assistant', 'Roy Abramsohn': 'Ron Livingston'}" tt5460416,"{'Jonathan Rosen': 'Malcolm', 'Lola Kirke': 'Lily', 'Dominic Chianese': 'Bart', 'Joanna Merlin': 'Miriam', 'Rosie Perez': 'Zoe', 'Ellen Barkin': 'Lucy', 'Scott Cohen': 'Mick', 'Merwin Goldsmith': 'Hirsch', 'Sondra James': 'Rose', 'Audrey Turner': 'Katrina', 'Michaela Antonella': 'Teenage Girl', 'Mike Faist': 'Teenage Boy', 'Gurdeep Singh': 'Juice Artisans Manager', 'Alison Wright': 'Therapist', 'Harold Hoffman': 'Melvin'}" tt1411238,"{'Natalie Portman': 'Emma', 'Ashton Kutcher': 'Adam', 'Kevin Kline': 'Alvin', 'Cary Elwes': 'Dr. Metzner', 'Greta Gerwig': 'Patrice', 'Lake Bell': 'Lucy', 'Olivia Thirlby': 'Katie Kurtzman', 'Ludacris': ""Wallace (as Chris 'Ludacris' Bridges)"", 'Jake Johnson': 'Eli', 'Mindy Kaling': 'Shira', 'Talia Balsam': 'Sandra Kurtzman', 'Ophelia Lovibond': 'Vanessa', 'Guy Branum': 'Guy', 'Ben Lawson': 'Sam', 'Jennifer Irwin': 'Megan'}" tt3715296,"{'Grey Damon': 'Kevin', 'Bella Dayne': 'Zade', 'Stephen Dorff': 'Hank', 'Dan Fogler': 'Carl', 'James DeBello': 'Steve', 'Kim Allen': 'Sandy', 'James Moses Black': 'Gary', 'Carlos Velazquez': 'Cesar', 'Annalisa Chamberlin': 'Angie', 'Claudio Bellante': 'Clerk', 'Kenneth Kynt Bryan': 'Gay Guy at the Party', 'Theodus Crane': 'Sonny', 'Michelle DeVito': 'Bartender', 'Lara Grice': 'Constance', 'Ryan Charles Griffin': 'Silver Man'}" tt5039994,"{'Kent Osborne': 'Mr. Butler', 'Dylan Sprouse': 'Lucas Ward', 'Rae Gray': 'Becca Vaughn', 'Alycia Delmore': 'Rachel Butler', 'Mitchell Edwards': 'Chris', 'Victoria Zeutzius': 'Paige', 'Chris Bauer': 'Mr. Ward', 'Leslie Thurston': 'Principal Fermont', 'Matthew J. Evans': 'Alex', 'Randall Park': 'Mr. Sheldon', 'Mark Kelly': 'Detective Speck', 'Helen Soraya': 'Mrs. Dubois', 'Robert Longstreet': 'Paul Garrett', 'Brooke Dillman': 'Valerie Lohman', 'Jeanette Maus': 'Nancy'}" tt0113957,"{'Sandra Bullock': 'Angela Bennett', 'Jeremy Northam': 'Jack Devlin', 'Dennis Miller': 'Dr. Alan Champion', 'Diane Baker': 'Mrs. Bennett', 'Wendy Gazelle': 'Imposter', 'Ken Howard': 'Bergstrom', 'Ray McKinnon': 'Dale', 'Daniel Schorr': 'WNN Anchor', 'L. Scott Caldwell': 'Public Defender', 'Robert Gossett': 'Ben Phillips', 'Kristina Krofft': 'Nurse #1', 'Juan Garcia': 'Resort Desk Clerk (as Juan García)', 'Tony Perez': 'Mexican Doctor', 'Margo Winkler': 'Mrs. Raines', 'Gene Kirkwood': 'Stan Whiteman'}" tt2693580,"{'Lily Rabe': 'Miss Stevens', 'Timothée Chalamet': 'Billy', 'Lili Reinhart': 'Margot', 'Anthony Quintal': 'Sam', 'Oscar Nuñez': 'Principal Alvarez', 'Rob Huebel': 'Walter', 'Larry Bam Hall': 'Stage Manager', 'Noah Gray-Cabey': 'Other Student (as Noah Gray)', 'Jammie Patton': 'Miss Conway', 'Mike Holley': 'AAA Guy', 'Tracey Wigfield': 'Front Desk Lady (as Tracey L. Wigfield)', 'Nikhil Pai': 'Waiter', 'Tamir Yardenne': 'George', 'Kristin Slaysman': 'Head Female Judge', 'Temple Dean': 'Male Judge'}" tt1869315,"{'Meredith Monroe': 'Katherine', 'Bonnie Dennison': 'Brooke', 'Michael Welch': 'Denny', 'Parker Coppins': 'Kyle Duncan', 'Donnabella Mortel': 'Dana', 'Amanda Ward': 'Kristin', 'Bill Oberst Jr.': 'Gary', 'Carl Donelson': 'Jose', 'Christina Myhr': 'Pam', 'David Chokachi': 'Walter Duncan', 'Gerald Webb': 'Nate', 'Kaiwi Lyman': 'Frankie (as Kaiwi Lyman-Mersereau)', 'Tony Nowicki': 'Bryan (as Tony Christopher)', 'Emily Erarcy': 'Emma Smith', 'Bennie Wilson': 'Samoja'}" tt1972591,"{'Charlie Hunnam': 'Arthur', 'Astrid Bergès-Frisbey': 'The Mage', 'Jude Law': 'Vortigern', 'Djimon Hounsou': 'Bedivere', 'Eric Bana': 'Uther', 'Aidan Gillen': 'Bill', 'Freddie Fox': 'Rubio', 'Craig McGinlay': 'Percival', 'Tom Wu': 'George', 'Kingsley Ben-Adir': 'Wet Stick', 'Neil Maskell': 'Back Lack', 'Annabelle Wallis': 'Maggie', 'Zac Barker': 'Young Arthur 2 yrs', 'Oliver Barker': 'Young Arthur 2 yrs', 'Geoff Bell': 'Mischief John'}" tt5716380,"{'Eliza Taylor': 'Kat Carter / Meredith', 'Pablo Schreiber': 'Wyatt Rivers', 'Daniel Webber': 'Beaver', 'Ben Feldman': 'Jimmy', 'Lena Headey': 'Ellen', 'Grant Harvey': 'Troy', 'Jazzy De Lisser': 'Gina Anderson', 'Brigitte Kali Canales': 'Rhonda Marquez (as Brigitte Kali)', 'Allius Barnes': 'Flip', 'Britain Dalton': 'Dean', 'Kandis Fay': 'Sharon', 'T.K. Weaver': 'Nathan', 'Brett Rice': 'Mason', 'Alexandra Manea': 'Layla Rivers', 'JoAnna Rhambo': 'Mrs. Flynn'}" tt0081573,"{'Gene Hackman': 'Lex Luthor', 'Christopher Reeve': 'Superman / Clark Kent', 'Ned Beatty': 'Otis', 'Jackie Cooper': 'Perry White', 'Sarah Douglas': 'Ursa', 'Margot Kidder': 'Lois Lane', ""Jack O'Halloran"": 'Non', 'Valerie Perrine': 'Eve Teschmacher', 'Susannah York': 'Lara', 'Clifton James': 'Sheriff', 'E.G. Marshall': 'The President', 'Marc McClure': 'Jimmy Olsen', 'Terence Stamp': 'General Zod', 'Leueen Willoughby': 'Leueen', 'Robin Pappas': 'Alice'}" tt1907668,"{'Nadine Velazquez': 'Katerina Marquez', 'Denzel Washington': 'Whip Whitaker', 'Carter Cabassa': 'Son on Plane', 'Adam C. Edwards': 'Father on Plane (as Adam Ciesielski)', 'Tamara Tunie': 'Margaret Thomason', 'Brian Geraghty': 'Ken Evans', 'Kelly Reilly': 'Nicole', ""Conor O'Neill"": 'Kip', 'Charlie E. Schmidt': 'Tiki Pot (as Charlie E. Schmidt Jr.)', 'Will Sherrod': 'Schecter', 'Boni Yanagisawa': 'Camelia Satou', 'Adam Tomei': 'Fran', 'Dane Davenport': 'Derek Hogue', 'John Crow': 'Field Reporter', 'Bruce Greenwood': 'Charlie Anderson'}" tt0185431,"{'Adam Sandler': 'Nicky', 'Patricia Arquette': 'Valerie Veran', 'Harvey Keitel': 'Dad', 'Rhys Ifans': 'Adrian', ""Tommy 'Tiny' Lister"": ""Cassius (as Tommy 'Tiny' Lister Jr.)"", 'Rodney Dangerfield': 'Lucifer', 'Allen Covert': 'Todd', 'Peter Dante': 'Peter', 'Jonathan Loughran': 'John', 'Robert Smigel': 'Beefy (voice)', 'Reese Witherspoon': 'Holly', 'Dana Carvey': 'Referee', 'Jon Lovitz': 'Peeper', 'Kevin Nealon': 'Gatekeeper', 'Michael McKean': 'Chief of Police'}" tt0096101,"{'Tim Blaney': 'Johnny 5 (voice)', 'Fisher Stevens': 'Ben Jahveri', 'Michael McKean': 'Fred Ritter', 'Cynthia Gibb': 'Sandy Banatoni', 'Jack Weston': 'Oscar Baldwin', 'Dee McCafferty': 'Saunders', 'David Hemblen': 'Jones', 'Don Lake': 'Manic Mike', ""Damon D'Oliveira"": 'Bones', 'Tito Núñez': 'Zorro (as Tito Nuñez)', 'Jason Kuriloff': 'Lil Man', 'Robert LaSardo': 'Spooky', 'Lili Francks': 'Officer Mendez', 'Wayne Best': ""Officer O'Malley"", 'Gerard Parkes': 'Priest (as Gerry Parkes)'}" tt1258972,"{'RZA': 'Blacksmith', 'Rick Yune': 'Zen Yi, The X-Blade', 'Russell Crowe': 'Jack Knife', 'Lucy Liu': 'Madam Blossom', 'Dave Bautista': 'Brass Body', 'Jamie Chung': 'Lady Silk', 'Cung Le': 'Bronze Lion', 'Byron Mann': 'Silver Lion', 'Daniel Wu': 'Poison Dagger', 'Zhu Zhu': 'Chi Chi', 'Chia-Hui Liu': 'Abbott (as Gordon Liu)', 'Andrew Ng': 'Senior Monk', 'Kuan Tai Chen': 'Gold Lion', 'Yoyao Hsueh': 'Copper Lion (as Xue Jing Yao)', 'Telly Liu': 'Iron Lion'}" tt0892791,"{'Mike Myers': 'Shrek (voice)', 'Eddie Murphy': 'Donkey (voice)', 'Cameron Diaz': 'Princess Fiona (voice)', 'Antonio Banderas': 'Puss in Boots (voice)', 'Julie Andrews': 'Queen (voice)', 'Jon Hamm': 'Brogan (voice)', 'John Cleese': 'King (voice)', 'Walt Dohrn': 'Rumpelstiltskin / Priest / Krekraw Ogre (voice)', 'Jane Lynch': 'Gretched (voice)', 'Craig Robinson': 'Cookie (voice)', 'Lake Bell': 'Patrol Witch / Wagon Witch #2 (voice)', 'Kathy Griffin': 'Dancing Witch / Wagon Witch #1 (voice)', 'Mary Kay Place': 'Guard Witch (voice)', 'Kristen Schaal': 'Pumpkin Witch / Palace Witch (voice)', 'Meredith Vieira': 'Broomsy Witch (voice)'}" tt3607812,"{'Jack Black': 'Himself', 'Jim Duggan': 'Himself', 'Mick Foley': 'Himself', 'Todd W. Fulkerson': 'Himself', 'David Golshan': 'Himself', 'Seth Green': 'Himself', 'Keith Elliot Greenberg': 'Himself', 'Bret Hart': 'Himself', 'Jimmy Hart': 'Himself', 'Hulk Hogan': 'Himself', 'Dwayne Johnson': 'Himself', 'Jian Magen': 'Himself', 'Page Magen': 'Himself', 'Greg Oliver': 'Himself', 'Bob Orton Sr.': 'Himself'}" tt0448694,"{'Antonio Banderas': 'Puss in Boots (voice)', 'Salma Hayek': 'Kitty Softpaws (voice)', 'Zach Galifianakis': 'Humpty Alexander Dumpty (voice)', 'Billy Bob Thornton': 'Jack (voice)', 'Amy Sedaris': 'Jill (voice)', 'Constance Marie': 'Imelda (voice)', 'Guillermo del Toro': 'Moustache Man / Comandante (voice)', 'Mike Mitchell': 'Andy Beanstalk (voice)', 'Rich Dietl': 'Bounty Hunter (voice) (as Rich B. Dietl)', 'Ryan Crego': 'Luis (voice)', 'Tom Wheeler': 'Bartender / Mean Boy / Wagon Driver / Hotel Owner / Rodrigo (voice)', 'Conrad Vernon': 'Raoul / Soldier (voice)', 'Tom McGrath': 'Bar Thief (voice)', 'Bob Joles': 'Giuseppe (voice)', 'Latifa Ouaou': 'Crazy Woman / Mean Girl / Milk Lady / Little Boy (voice)'}" tt8804688,"{'Kevin Guthrie': 'Brian', 'Siobhan Reilly': 'Sam', 'Stephen McCole': 'Jeff', 'Sara Vickers': 'Debbie', 'Conor McCarron': 'Eric', 'Cameron Fulton': 'Gavin', 'Jennifer Black': 'Maureen', 'Thomas Wilson': 'Oliver', 'Dolina MacLennan': 'Rose', 'Peter Kelly': 'Arthur', 'Kenneth Grant Ainslie': 'Calum', 'Harrison Nicholls': 'Jake', 'Neil Leiper': 'Simon', 'Simon Weir': 'Stevie Sparkles', 'John McColl': 'Jim'}" tt1192628,"{'Johnny Depp': 'Rango / Lars (voice)', 'Isla Fisher': 'Beans (voice)', 'Abigail Breslin': 'Priscilla (voice)', 'Ned Beatty': 'Mayor (voice)', 'Alfred Molina': 'Roadkill (voice)', 'Bill Nighy': 'Rattlesnake Jake (voice)', 'Stephen Root': 'Doc / Merrimack / Mr. Snuggles (voice)', 'Harry Dean Stanton': 'Balthazar (voice)', 'Timothy Olyphant': 'Spirit of the West (voice)', 'Ray Winstone': 'Bad Bill (voice)', 'Ian Abercrombie': 'Ambrose (voice)', 'Gil Birmingham': 'Wounded Bird (voice)', 'James Ward Byrkit': 'Waffles / Gordy / Papa Joad / Cousin Murt / Curlie / Knife Attacker / Rodent Kid (voice)', 'Claudia Black': 'Angelique (voice)', 'Blake Clark': 'Buford (voice)'}" tt0120630,"{'Phil Daniels': 'Fetcher (voice)', 'Lynn Ferguson': 'Mac (voice)', 'Mel Gibson': 'Rocky (voice)', 'Tony Haygarth': 'Mr. Tweedy (voice)', 'Jane Horrocks': 'Babs (voice)', 'Miranda Richardson': 'Mrs. Tweedy (voice)', 'Julia Sawalha': 'Ginger (voice)', 'Timothy Spall': 'Nick (voice)', 'Imelda Staunton': 'Bunty (voice)', 'Benjamin Whitrow': 'Fowler (voice)'}" tt1277953,"{'Ben Stiller': 'Alex (voice)', 'Chris Rock': 'Marty (voice)', 'David Schwimmer': 'Melman (voice)', 'Jada Pinkett Smith': 'Gloria (voice)', 'Sacha Baron Cohen': 'Julien (voice)', 'Cedric the Entertainer': 'Maurice (voice)', 'Andy Richter': 'Mort (voice)', 'Tom McGrath': 'Skipper / First Policeman (voice)', 'Frances McDormand': 'Captain Chantal Dubois (voice)', 'Jessica Chastain': 'Gia (voice)', 'Bryan Cranston': 'Vitaly (voice)', 'Martin Short': 'Stefano (voice)', 'Chris Miller': 'Kowalski (voice)', 'Christopher Knights': 'Private (voice)', 'Conrad Vernon': 'Mason / Second Policeman (voice)'}" tt0413267,"{'Mike Myers': 'Shrek (voice)', 'Eddie Murphy': 'Donkey (voice)', 'Cameron Diaz': 'Princess Fiona (voice)', 'Antonio Banderas': 'Puss in Boots (voice)', 'Julie Andrews': 'Queen (voice)', 'John Cleese': 'King (voice)', 'Rupert Everett': 'Prince Charming (voice)', 'Eric Idle': 'Merlin (voice)', 'Justin Timberlake': 'Artie (voice)', 'Susanne Blakeslee': 'Evil Queen (voice)', 'Cody Cameron': 'Pinocchio / Three Pigs (voice)', 'Larry King': 'Doris (voice)', 'Christopher Knights': 'Blind Mice / Heckler / Evil Tree #2 / Guard #2 (voice)', 'John Krasinski': 'Lancelot (voice)', 'Ian McShane': 'Captain Hook (voice)'}" tt0481499,"{'Nicolas Cage': 'Grug (voice)', 'Emma Stone': 'Eep (voice)', 'Ryan Reynolds': 'Guy (voice)', 'Catherine Keener': 'Ugga (voice)', 'Cloris Leachman': 'Gran (voice)', 'Clark Duke': 'Thunk (voice)', 'Chris Sanders': 'Belt (voice)', 'Randy Thom': 'Sandy (voice)'}" tt0138749,"{'Kevin Kline': 'Tulio (voice)', 'Kenneth Branagh': 'Miguel (voice)', 'Rosie Perez': 'Chel (voice)', 'Armand Assante': 'Tzekel-Kan (voice)', 'Edward James Olmos': 'Chief (voice)', 'Jim Cummings': 'Cortes (voice)', 'Frank Welker': 'Altivo (voice)', 'Tobin Bell': 'Zaragoza (voice)', 'Duncan Marjoribanks': 'Acolyte (voice)', 'Elijah Chiang': 'Kid #1 (voice)', 'Cyrus Shaki-Khan': 'Kid #2 (voice)', 'Elton John': 'Narrator (voice)'}" tt7399158, tt1694020,"{'Barbra Streisand': 'Joyce Brewster', 'Seth Rogen': 'Andrew Brewster', 'Julene Renee': 'K-Mart Receptionist (as Julene Renee-Preciado)', 'Zabryna Guevara': 'K-Mart Executive', 'John Funk': 'K-Mart Executive', 'Robert Curtis Brown': 'K-Mart Executive', 'Kathy Najimy': 'Gayle', 'Miriam Margolyes': 'Anita', 'Rose Abdoo': 'Diana', 'Tom Virtue': 'Mature Singles Man', 'Vivian Vanderwerd': 'Mature Singles Woman', 'Worth Howe': 'Bob', 'Vicki Goldsmith': 'Young Joyce', 'Matthew Levinson': 'Toddler Andy', 'Joseph Levinson': 'Toddler Andy'}" tt0097778,"{'John Travolta': 'James', 'Kirstie Alley': 'Mollie', 'Olympia Dukakis': 'Rosie', 'George Segal': 'Albert', 'Abe Vigoda': 'Grandpa', 'Bruce Willis': 'Mikey (voice)', 'Twink Caplan': 'Rona', 'Jason Schaller': 'Mikey', 'Jaryd Waterhouse': 'Mikey', 'Jacob Haines': 'Mikey', 'Christopher Aydon': 'Mikey', 'Joy Boushel': 'Melissa', 'Don S. Davis': 'Dr. Fleisher', 'Louis Heckerling': 'Lou', 'Brenda Crichlow': 'Secretary'}" tt0479952,"{'Ben Stiller': 'Alex (voice)', 'Chris Rock': 'Marty / Additional Zebras (voice)', 'David Schwimmer': 'Melman (voice)', 'Jada Pinkett Smith': 'Gloria (voice)', 'Sacha Baron Cohen': 'Julien (voice)', 'Cedric the Entertainer': 'Maurice (voice)', 'Andy Richter': 'Mort (voice)', 'Bernie Mac': 'Zuba (voice)', 'Alec Baldwin': 'Makunga (voice)', 'Sherri Shepherd': 'Mom (voice)', 'Will.i.am': 'Moto Moto (voice) (as Will.I.Am)', 'Elisa Gabrielli': 'Nana (voice)', 'Tom McGrath': 'Skipper / Lemur (voice)', 'Chris Miller': 'Kowalski (voice)', 'Christopher Knights': 'Private (voice)'}" tt1911658,"{'Tom McGrath': 'Skipper (voice)', 'Chris Miller': 'Kowalski (voice)', 'Christopher Knights': 'Private (voice)', 'Conrad Vernon': 'Rico (voice)', 'John Malkovich': 'Dave (voice)', 'Benedict Cumberbatch': 'Classified (voice)', 'Ken Jeong': 'Short Fuse (voice)', 'Annet Mahendru': 'Eva (voice)', 'Peter Stormare': 'Corporal (voice)', 'Andy Richter': 'Mort (voice)', 'Danny Jacobs': 'King Julien (voice)', 'Sean Charmatz': 'Cricket (voice)', 'Werner Herzog': 'Documentary Filmmaker (voice)', 'Stephen Kearin': 'Pilot / Aquarium Employee (voice)', 'Kelly Cooney': 'Mermaid Penguin (voice)'}" tt7454138,"{'Nina-Zofia Amerschläger': 'Mini', 'Achim Barremstrein': 'Hakon', 'Dagmar Bittner': 'Little Jane', 'Marie Blokhus': 'Helinor (voice)', 'Eric Borner': 'Flipp', 'Damir Cosic': 'Martinus', 'Michael Deckner': 'Gustav', 'Anderz Eide': 'Storeblink (voice)', 'Tanja Esche': 'Stella', 'Marcus Gunnarsen': 'Marcus (voice)', 'Martinus Gunnarsen': 'Martinus (voice)', 'Dirk Hardegen': 'Greifffer', 'Sylvia Heid': 'Frieda', 'Christine Hope': 'Duppe (voice)', 'Andrea Bræin Hovig': 'Krana / Jentebåt (voice)'}" tt0298148,"{'Mike Myers': 'Shrek (voice)', 'Eddie Murphy': 'Donkey (voice)', 'Cameron Diaz': 'Princess Fiona (voice)', 'Julie Andrews': 'Queen (voice)', 'Antonio Banderas': 'Puss In Boots (voice)', 'John Cleese': 'King (voice)', 'Rupert Everett': 'Prince Charming (voice)', 'Jennifer Saunders': 'Fairy Godmother (voice)', 'Aron Warner': 'Wolf (voice)', 'Kelly Asbury': ""Page / Elf / Nobleman / Nobleman's Son (voice)"", 'Cody Cameron': 'Pinocchio / Three Pigs (voice)', 'Conrad Vernon': 'Gingerbread Man / Cedric / Announcer / Muffin Man / Mongo (voice)', 'Christopher Knights': 'Blind Mouse (voice)', 'David P. Smith': 'Herald / Man with Box (voice)', 'Mark Moseley': 'Mirror / Dresser (voice)'}" tt0312528,"{'Mike Myers': 'The Cat', 'Alec Baldwin': 'Quinn', 'Kelly Preston': 'Mom', 'Dakota Fanning': 'Sally', 'Spencer Breslin': 'Conrad', 'Amy Hill': 'Mrs. Kwan', 'Sean Hayes': 'Mr. Humberfloob / Voice of the Fish', 'Danielle C. Ryan': 'Thing One (as Danielle Ryan Chuchran)', 'Taylor Rice': 'Thing One', 'Brittany Oaks': 'Thing Two', 'Talia-Lynn Prairie': 'Thing Two (as Talia Prairie)', 'Dan Castellaneta': 'Thing One / Thing Two (voice)', 'Victor Brandt': 'Narrator (voice)', 'Daran Norris': 'Announcer', 'Bugsy': 'Nevins'}" tt7575480,"{'Kj Schrock': '(voice)', 'Sarah Taylor': '(voice)'}" tt5667482,"{'Bonnie Dennison': 'Isabel / Izzie (voice)', 'Tori Spelling': 'April (voice)', 'Zack Ward': 'Thurston (voice)', 'Dawn Richard': 'Ginger / Marcie / Carmel (voice)', 'Tom Virtue': 'Harold (voice)', 'Joey Fatone': 'Carl (voice)', 'Lynne Marie Stewart': 'Clara (voice)', 'Paul M. Walker III': 'Seymour (voice) (as Paul M. Walker)', 'Camille Licate': 'June (voice)', 'Kim Little': 'Kristin (voice)'}" tt6499752,"{'Logan Marshall-Green': 'Grey Trace', 'Melanie Vallejo': 'Asha Trace', 'Steve Danielsen': 'Jeff Handley', 'Abby Craden': 'Kara (voice)', 'Harrison Gilbertson': 'Eron Keen', 'Benedict Hardie': 'Fisk', 'Richard Cawthorne': 'Serk', 'Christopher Kirby': 'Tolan', 'Richard Anastasios': 'Wen', 'Kenny Low': 'Police Driver', 'Linda Cropper': 'Pamela', 'Betty Gabriel': 'Detective Cortez', 'Emily Havea': 'Nurse Henderson', 'Ming-Zhu Hii': 'Dr Diana Gordon', 'Simon Maiden': 'Stem (voice)'}" tt4943934,"{'Lane Townsend': 'Foster', 'Alan Pietruszewski': 'Neil', 'Jennifer Dorogi': 'Miranda', 'Arianna Afsar': 'Ellie', 'Chloe Farnworth': 'Ida', 'Chaim Dunbar': 'Andrews', 'Dionne Neish': 'Reiger', 'Caroline Williams': 'Ulyana', 'Eddy Owdish': 'Klaus', 'Caroline Attwood': 'Dana', 'Dan Czerwonka': 'Carlos', 'James Wong': 'Bryce', 'Maximilian Elfeldt': 'Jenkins', 'Amanda Dyba': 'Background person', 'Amy Hagan': 'Background person'}" tt2196430,"{'Philip Coc': 'Philip Royce (uncredited)', 'Eric Darins': 'Handsome (uncredited)', 'Daniela Flynn': 'Dr. Susan Neiman (uncredited)', 'Mjr. John Frear': 'Dr. Timothy Holden (uncredited)', 'Dennis Johnson': 'Dennis Freisen (uncredited)', 'Trey McCurley': 'Lt. Chris Thompson (uncredited)', 'Kent Noralez': 'Kent Clarkson (uncredited)', 'Saul Pech': 'Saul Vega (uncredited)', 'Peter Pedrero': 'Peter Santos (uncredited)', 'Andres Rash': 'Andres Revell (uncredited)', 'Rupert Tablada': 'Top Dog (uncredited)', 'Alan Usher': 'Major Alan Menton (uncredited)', 'Chelsea Vincent': 'Julia Evans (uncredited)'}" tt0884732,"{'Kevin Hart': 'Jimmy Callahan / Bic', 'Josh Gad': 'Doug Harris', 'Affion Crockett': 'Reggie / Drysdale', 'Kaley Cuoco': 'Gretchen Palmer (as Kaley Cuoco-Sweeting)', 'Jorge Garcia': 'Lurch / Garvey', 'Dan Gill': 'Bronstein / Dickerson', 'Corey Holcomb': 'Otis / Alzado', 'Ken Howard': 'Ed Palmer', 'Colin Kane': 'Fitzgibbons / Plunkett', 'Cloris Leachman': 'Grandma Palmer', 'Jenifer Lewis': 'Doris Jenkins', 'Alan Ritchson': 'Kip / Carew', 'Mimi Rogers': 'Lois Palmer', 'Aaron Takahashi': 'Endo / Rambis', 'Olivia Thirlby': 'Alison Palmer'}" tt0279493,"{'Eddie Griffin': 'Undercover Brother / Anton Jackson', 'Chris Kattan': 'Mr. Feather', 'Denise Richards': 'White She Devil', 'Aunjanue Ellis': 'Sistah Girl', 'Dave Chappelle': 'Conspiracy Brother', 'Chi McBride': 'The Chief', 'Neil Patrick Harris': 'Lance', 'Gary Anthony Williams': 'Smart Brother', 'Billy Dee Williams': 'Gen. Warren Boutwell', 'Jack Noseworthy': 'Mr. Elias', 'Robert Trumbull': 'The Man', 'J.D. Hall': 'Narrator (voice)', 'William S. Taylor': 'Roscoe the Barber (as William Taylor)', 'Shauna MacDonald': 'Wendy Marshall - TV Anchor', 'Ron Pardo': 'Chuck'}" tt0763831,"{'Eddie Murphy': 'Jack McCall', 'Kerry Washington': 'Caroline McCall', 'Emanuel Ragsdale': 'Tyler McCall', 'Jill Basey': 'Woman in Starbucks', 'Greg Collins': 'Construction Worker', 'Robert LeQuang': 'Starbucks Customer', 'Michael G. Wilkinson': 'Starbucks Customer', 'Lyndsey Nelson': 'Starbucks Customer', 'Michael Cody Gilbert': 'Starbucks Customer', 'Lou Saliba': 'Shrink', 'John Gatins': 'Valet', 'Clark Duke': 'Aaron Wiseberger', 'Cliff Curtis': 'Dr. Sinja', 'Mitchell Fink': 'Male Agent', 'Edi Patterson': 'Young Female Agent'}" tt1321509,"{'Keith David': 'Reverend Davis', 'Loretta Devine': 'Cynthia', 'Peter Dinklage': 'Frank', 'Ron Glass': 'Duncan', 'Danny Glover': 'Uncle Russell', 'Regina Hall': 'Michelle', 'Kevin Hart': 'Brian', 'Martin Lawrence': 'Ryan', 'James Marsden': 'Oscar', 'Tracy Morgan': 'Norman', 'Chris Rock': 'Aaron', 'Zoe Saldana': 'Elaine (as Zoë Saldaña)', 'Columbus Short': 'Jeff', 'Luke Wilson': 'Derek', 'Regine Nehy': 'Martina'}" tt0168501,"{'Taye Diggs': 'Harper Stewart', 'Nia Long': 'Jordan Armstrong', 'Morris Chestnut': 'Lance Sullivan', 'Harold Perrineau': 'Julian Murch', 'Terrence Howard': 'Quentin', 'Sanaa Lathan': 'Robin', 'Monica Calhoun': 'Mia Morgan', 'Melissa De Sousa': 'Shelby', 'Victoria Dillard': 'Anita', 'Regina Hall': 'Candy', 'Jim Moody': 'Uncle Skeeter', 'Jarrod Bunch': 'Wayne', ""Stu 'Large' Riley"": 'Fandango', 'Liris Crosse': 'Stripper', 'Lady Madonna': 'Stripper'}" tt1640484,"{'Angela Bassett': 'Mrs. Watson', 'Paula Patton': 'Sabrina Watson', 'Laz Alonso': 'Jason Taylor', 'Loretta Devine': 'Mrs. Taylor', 'Meagan Good': 'Blythe', 'Tasha Smith': 'Shonda', 'Julie Bowen': 'Amy', 'DeRay Davis': 'Malcolm', 'Valarie Pettiford': 'Aunt Geneva', 'Mike Epps': 'Willie Earl', 'Pooch Hall': 'Ricky', 'Romeo Miller': 'Sebastian', 'Brian Stokes Mitchell': 'Mr. Watson', 'Gary Dourdan': 'Chef', 'T.D. Jakes': 'Reverend James'}" tt0081562,"{'Gene Wilder': 'Skip Donahue', 'Richard Pryor': 'Harry Monroe', 'Georg Stanford Brown': 'Rory Schultebrand', 'JoBeth Williams': 'Meredith', 'Miguel Ángel Suárez': 'Jesus Ramirez (as Miguelangel Suarez)', 'Craig T. Nelson': 'Deputy Ward Wilson', 'Barry Corbin': 'Warden Walter Beatty', 'Charles Weldon': 'Blade', 'Nicolas Coster': 'Warden Henry Sampson', 'Joel Brooks': 'Len Garber', 'Jonathan Banks': 'Jack Graham', 'Erland van Lidth': 'Grossberger (as Erland Van Lidth De Jeude)', 'Lewis Van Bergen': 'Guard #1', 'Karmin Murcelo': 'Teresa Ramirez', 'Franklyn Ajaye': 'Young Man in Hospital'}" tt0113845,"{'Wesley Snipes': 'John', 'Woody Harrelson': 'Charlie Robinson', 'Jennifer Lopez': 'Grace Santiago', 'Robert Blake': 'Donald Patterson', 'Chris Cooper': 'Torch', 'Joe Grifasi': 'Riley', 'Scott Sowers': 'Mr. Brown', 'Skipp Sudduth': 'Kowalski', 'Vincent Laresca': 'Subway Robber', 'Nelson Vasquez': 'Subway Robber', 'Vincent Patrick': 'Frank the Bartender', 'Aida Turturro': 'Woman on Platform', 'Alvaleta Guess': 'Woman on Platform', 'Vincent Pastore': 'Gambler', 'David Tawil': 'Gambler'}" tt0297181,"{'Eddie Murphy': 'Kelly', 'Owen Wilson': 'Alex', 'Famke Janssen': 'Rachel', 'Malcolm McDowell': 'Gundars', 'Gary Cole': 'Carlos', 'Phill Lewis': 'Jerry', 'Viv Leacock': 'T.J.', 'Keith Dallas': 'Lunchbox', 'Tate Taylor': 'Lieutenant Percy', 'Lynda Boyd': 'Edna', 'Bill Mondy': 'McIntyre', 'Larry Merchant': 'Vegas Commentator', 'Sugar Ray Leonard': 'Vegas Commentator', 'Jimmy Lennon Jr.': 'Vegas Ring Announcer', 'Joe Cortez': 'Vegas Referee'}" tt7108976,"{'Dal-su Oh': 'Seo-pil', 'Myung-Min Kim': 'Detective K', 'Jong-goo Kim': 'Ha Il-Joo'}" tt6231588,"{'John Hennigan': 'Sinbad', 'Jamie Bernadette': 'Jax', 'Josh Fingerhut': 'Manta', ""Wayne 'Crescendo' Ward"": 'Ace', 'Georgia Thompson': 'Tisiphone (as Georgia Rose Thompson)', 'Terrance Keith Richardson': ""Nick (as Terrance 'TK' Richardson)"", 'Derek Russo': 'Cy', 'Jennifer Dorogi': 'Jinn', 'Chloe Farnworth': 'Alecto', 'Van White': 'Sebastian', 'Ashley Doris': 'Megaera', 'Drew Davis-Wheeler': 'Cardinal (as Drew Daris-Wheeler)', 'Lisa Goodman': 'Lyta', 'Krish Amrahs': 'Abdus the Seller', 'Sole Bovelli': 'Daphne'}" tt6823368,"{'James McAvoy': 'Patricia / Dennis / Hedwig / The Beast / Barry / Heinrich / Jade / Ian / Mary Reynolds / Norma / Jalin / Kat / B.T. / Kevin Wendell Crumb / Mr. Pritchard / Felida / Luke / Goddard / Samuel / Polly', 'Bruce Willis': 'David Dunn', 'Samuel L. Jackson': 'Elijah Price', 'Anya Taylor-Joy': 'Casey Cooke', 'Sarah Paulson': 'Dr. Ellie Staple', 'Spencer Treat Clark': 'Joseph Dunn', 'Charlayne Woodard': 'Mrs. Price', 'Luke Kirby': 'Pierce', 'Adam David Thompson': 'Daryl', 'M. Night Shyamalan': 'Jai, Security Guard', 'Shannon Destiny Ryan': 'Cheerleading Girl (as Shannon Ryan)', 'Diana Silvers': 'Cheerleading Girl', 'Nina Wisner': 'Cheerleading Girl', 'Kyli Zion': 'Cheerleading Girl', 'Serge Didenko': 'Ronald, Powerful Young Man'}" tt1091863,"{'Avi Arad': 'Himself', 'Jim Goodkind': 'Himself', 'Jeremy Piven': 'Himself', 'Sean Astin': 'Himself', 'Michael A. Helfant': 'Himself (as Michael Helfant)', 'Joe Quesada': 'Himself', 'Dick Ayers': 'Himself', 'Paris Hilton': 'Herself', 'Brett Ratner': 'Himself', 'Kenneth Branagh': 'Himself', 'Samuel L. Jackson': 'Himself', 'Mike Richardson': 'Himself', 'Ian Bryce': 'Himself', 'Kenneth Johnson': 'Himself (as Ken Johnson)', 'Cliff Robertson': 'Himself'}" tt7745068,"{'Daiki Yamashita': 'Izuku Midoriya (voice)', 'Kenta Miyake': 'All Might (voice)', 'Mirai Shida': 'Melissa Shield (voice)', 'Nobuhiko Okamoto': 'Katsuki Bakugou (voice)', 'Yûki Kaji': 'Shouto Todoroki (voice)', 'Ayane Sakura': 'Ochako Uraraka (voice)', 'Kaito Ishikawa': 'Tenya Iida (voice)', 'Toshiki Masuda': 'Eijiro Kirishima (voice)', 'Ryô Hirohashi': 'Minoru Mineta (voice)', 'Tasuku Hatanaka': 'Denki Kaminari (voice)', 'Marina Inoue': 'Momo Yaoyorozu (voice)', 'Kei Shindou': 'Kyoka Jiro (voice) (as Kei Shindô)', 'Kiyotaka Furushima': 'Hanta Sero (voice)', 'Tôru Nara': 'Rikido Sato (voice)', 'Masakazu Nishida': 'Mezo Shoji (voice)'}" tt2436386,"{'Jonny Weston': 'David Raskin', ""Sofia Black-D'Elia"": 'Jessie Pierce', 'Sam Lerner': 'Quinn Goldberg', 'Allen Evangelista': 'Adam Le', 'Virginia Gardner': 'Christina Raskin', 'Amy Landecker': 'Kathy Raskin', 'Gary Weeks': 'Ben Raskin', 'Macsen Lintz': 'David, Age 7', 'Gary Grubbs': 'Dr. Lou', 'Michelle DeFraites': 'Sarah Nathan', 'Curry Stone': 'Male Student', 'Jamila Thompson': 'Marina', 'Katie Garfield': 'Liv', 'Hillary Harley': 'Blonde', 'Courtney Bowers': ""Jess' Friend""}" tt0099582,"{'Kiefer Sutherland': 'Nelson Wright', 'Julia Roberts': 'Dr. Rachel Mannus', 'Kevin Bacon': 'David Labraccio', 'William Baldwin': 'Joe Hurley', 'Oliver Platt': 'Randy Steckle', 'Kimberly Scott': 'Winnie Hicks', 'Joshua Rudoy': 'Billy Mahoney', 'Benjamin Mouton': ""Rachel's Father"", 'Aeryk Egan': 'Young Nelson', 'Kesha Reed': 'Young Winnie', 'Hope Davis': 'Anne Coldren', 'Jim Ortlieb': 'Uncle Dave', 'John Duda': 'Young Labraccio (as John Joseph Duda)', 'Megan Stewart': 'Playground Kid', 'Tressa Thomas': 'Playground Kid'}" tt0033553,"{'Spencer Tracy': 'Dr. Harry Jekyll / Mr. Hyde', 'Ingrid Bergman': 'Ivy Peterson', 'Lana Turner': 'Beatrix Emery', 'Donald Crisp': 'Sir Charles Emery', 'Ian Hunter': 'Dr. John Lanyon', 'Barton MacLane': 'Sam Higgins', 'C. Aubrey Smith': 'The Bishop', 'Peter Godfrey': 'Poole', 'Sara Allgood': 'Mrs. Higgins', 'Frederick Worlock': 'Dr. Heath (as Frederic Worlock)', 'William Tannen': 'Intern Fenwick', 'Frances Robinson': 'Marcia', 'Denis Green': 'Freddie', 'Billy Bevan': 'Mr. Weller', 'Forrester Harvey': 'Old Prouty'}" tt0190865,"{""Chris O'Donnell"": 'Peter Garrett', 'Robin Tunney': 'Annie Garrett', 'Stuart Wilson': 'Royce Garrett', 'Augie Davis': 'Aziz', 'Temuera Morrison': 'Major Rasul', 'Roshan Seth': 'Colonel Amir Salim', 'Alejandro Valdes-Rochin': 'Sergeant Asim', 'Nicholas Lea': 'Tom McLaren', 'Rod Brown': 'Ali Hasan', 'Scott Glenn': 'Montgomery Wick', 'Steve Le Marquand': 'Cyril Bench', 'Ben Mendelsohn': 'Malcolm Bench', 'Izabella Scorupco': 'Monique Aubertine', 'Bill Paxton': 'Elliot Vaughn', 'Ed Viesturs': 'Himself'}" tt0059245,"{'Max von Sydow': 'Jesus', 'Michael Anderson Jr.': 'James the Younger', 'Carroll Baker': 'Veronica', 'Ina Balin': 'Martha of Bethany', 'Victor Buono': 'Sorak', 'Richard Conte': 'Barabbas', 'Joanna Dunham': 'Mary Magdalene', 'José Ferrer': 'Herod Antipas', 'Van Heflin': 'Bar Amand', 'Charlton Heston': 'John the Baptist', 'Martin Landau': 'Caiaphas', 'Angela Lansbury': 'Claudia', 'Pat Boone': 'Angel at the Tomb', 'Janet Margolin': 'Mary of Bethany', 'David McCallum': 'Judas Iscariot'}" tt4288674,"{'Harry Lister Smith': 'Brian', 'Alex Mills': 'Lukas', 'Vanessa Grasse': 'Lisa', 'Mark Arnold': 'Dr. Renard', 'Callum McGowan': 'Tim Guarisco', 'Andrew Horton': 'Craig Guarisco', 'James Alper': 'Vodka Guy', 'Michael Majalahti': 'Eradicator', 'José Varela': 'Jorge (as Jose Varela)', 'Jose Leonardo Garcia Torres': 'Flaco', 'Ross Ellis': 'Party Host', 'Gregory Rowbottom': 'Brad', 'Millie Smith': 'Hot Random Girl', 'Aino Sirje': 'Sexy Dancer', 'Joanas Salin': 'Camper Van Boy'}" tt8671462,"{'Kate Avery': 'Lily Double', 'Alexandra Bard': 'Demon Double', 'Bel Deliá': 'Lily', 'Amber Lynn Johnson': 'Pamela', 'Camron Robertson': 'John', 'Jennifer van Heeckeren': 'Mystery Blonde'}" tt0120794,"{'Val Kilmer': 'Moses / God (voice)', 'Ralph Fiennes': 'Rameses (voice)', 'Michelle Pfeiffer': 'Tzipporah (voice)', 'Sandra Bullock': 'Miriam (voice)', 'Jeff Goldblum': 'Aaron (voice)', 'Danny Glover': 'Jethro (voice)', 'Patrick Stewart': 'Seti (voice)', 'Helen Mirren': 'The Queen (voice)', 'Steve Martin': 'Hotep (voice)', 'Martin Short': 'Huy (voice)', 'Bobby Motown': 'Rameses Son (voice)', 'Eden Riegel': 'Young Miriam (voice)', 'Ofra Haza': 'Yocheved (voice)', 'James Avery': 'Additional Voices (voice)', 'Aria Noelle Curzon': 'Additional Voices (voice)'}" tt0095497,"{'Willem Dafoe': 'Jesus', 'Harvey Keitel': 'Judas', 'Paul Greco': 'Zealot', 'Steve Shill': 'Centurian (as Steven Shill)', 'Verna Bloom': 'Mary, Mother of Jesus', 'Barbara Hershey': 'Mary Magdalene', 'Roberts Blossom': 'Aged Master', 'Barry Miller': 'Jeroboam', 'Gary Basaraba': 'Andrew, Apostle', 'Irvin Kershner': 'Zebedee', 'Victor Argo': 'Peter, Apostle', 'Michael Been': 'John, Apostle', 'Paul Herman': 'Phillip, Apostle', 'John Lurie': 'James, Apostle', 'Leo Burmester': 'Nathaniel, Apostle'}" tt0490215,"{'Andrew Garfield': 'Rodrigues', 'Adam Driver': 'Garupe', 'Liam Neeson': 'Ferreira', 'Tadanobu Asano': 'Interpreter', 'Ciarán Hinds': 'Father Valignano', 'Issei Ogata': 'Old Samurai / Inoue (as Issey Ogata)', ""Shin'ya Tsukamoto"": 'Mokichi', 'Yoshi Oida': 'Ichizo', 'Yôsuke Kubozuka': 'Kichijiro (as Yosuke Kubozuka)', 'Kaoru Endô': 'Unzen Samurai (Uneme)', 'Diego Calderón': 'Prisoner Augustinian Friar #2 (as Diego Calderon)', 'Rafael Kading': 'Prisoner Augustinian Friar #1', 'Matthew Blake': 'Prisoner Franciscan Friar', 'Benoit Masse': 'Prisoner Augustinian Friar #3', 'Tetsuya Igawa': 'Prisoner Japanese Jesuit'}" tt5582876,"{'Jonno Davies': 'Adrian', 'Adrian Bouchet': 'Judah Ben Hur', 'Peter Ormond': 'Kaeso', 'Alan Calton': 'Cyprian', 'Marcello Walton': 'Atticus', 'Robert Lease': 'Dio', 'Stephanie Beran': 'Veleda', 'Taylor Jay-Davies': 'Caius', 'Michael Bott': 'Cassius', 'Jo Marriott': 'Braga (as Jo Alexandra Marriott)', 'Lucy Clements': 'Aurelia', 'Jason Beeston': 'Darius', 'Lara Heller': 'Lucia', 'Alf Thompson': 'Tauri', 'Paul James': 'Octus'}" tt1411704,"{'James Marsden': ""Fred O'Hare"", 'Russell Brand': 'E.B. (voice) / Production Assistant', 'Kaley Cuoco': ""Sam O'Hare"", 'Hank Azaria': 'Carlos / Phil (voice)', 'Gary Cole': ""Henry O'Hare"", 'Elizabeth Perkins': ""Bonnie O'Hare"", 'Hugh Laurie': ""E.B.'s Dad (voice)"", 'Tiffany Espensen': ""Alex O'Hare"", 'David Hasselhoff': 'David Hasselhoff', 'Chelsea Handler': 'Mrs. Beck', 'Dustin Ybarra': 'Cody', 'Carlease Burke': 'Receptionist', 'Veronica Alicino': 'Waitress', 'Django Marsh': 'Young E.B. (voice)', 'Jimmy Carter': 'Blind Boys of Alabama (as Jimmy Lee Carter)'}" tt0101329,"{'Phillip Glasser': 'Fievel (voice)', 'James Stewart': 'Wylie (voice)', 'Erica Yohn': 'Mama (voice)', 'Cathy Cavadini': 'Tanya (voice)', 'Nehemiah Persoff': 'Papa (voice)', 'Dom DeLuise': 'Tiger (voice) (as Dom Deluise)', 'Amy Irving': 'Miss Kitty (voice)', 'John Cleese': 'Cat R. Waul (voice)', 'Jon Lovitz': 'Chula (voice)', 'Jack Angel': 'Additional Voices (voice)', 'Fausto Bara': 'Additional Voices (voice)', 'Vanna Bonta': 'Additional Voices (voice)', 'Philip L. Clarke': 'Additional Voices (voice) (as Philip Clarke)', 'Jennifer Darling': 'Additional Voices (voice)', 'Annie Holliday': 'Additional Voices (voice)'}" tt5112578,"{'Owen Campbell': 'Zach', 'Charlie Tahan': 'Josh', 'Elizabeth Cappuccino': 'Allison', 'Amy Hargreaves': 'Karen', 'Max Talisman': 'Daryl', 'Sawyer Barth': 'Charlie', 'Adea Lennox': 'Meghan', 'Ethan Botwick': 'John Whitcomb', 'Philip H. Ashley': 'Chad (as Philip Hackworth Ashley)', 'Anni Krueger': 'Ms. Barron', 'Justin Rose': 'Kevin', 'Kortnee Simmons': 'Eugene', 'Samantha Jones': 'Joan', 'Hayden Oliver': 'Colin', 'Dario Saraceno': 'Sheriff Bowman'}" tt0970179,"{'Ben Kingsley': 'Georges Méliès', 'Sacha Baron Cohen': 'Station Inspector', 'Asa Butterfield': 'Hugo Cabret', 'Chloë Grace Moretz': 'Isabelle', 'Ray Winstone': 'Uncle Claude', 'Emily Mortimer': 'Lisette', 'Christopher Lee': 'Monsieur Labisse', 'Helen McCrory': 'Mama Jeanne', 'Michael Stuhlbarg': 'Rene Tabard', 'Frances de la Tour': 'Madame Emilie', 'Richard Griffiths': 'Monsieur Frick', 'Jude Law': ""Hugo's Father"", 'Kevin Eldon': 'Policeman', 'Gulliver McGrath': 'Young Tabard', 'Shaun Aylward': 'Street Kid'}" tt0085248,"{'Kelly Reno': 'Alec Ramsay', 'Vincent Spano': 'Raj', 'Allen Garfield': 'Kurr (as Allen Goorwitz)', 'Woody Strode': 'Meslar', 'Ferdy Mayne': 'Abu Ben Ishak (as Ferdinand Mayne)', 'Jodi Thelen': 'Tabari', 'Teri Garr': ""Alec's Mother"", 'Larbi Doghmi': 'Tiny Man (as Doghmi Larbi)', 'Angelo Infanti': ""Raj's Father"", 'Luigi Mezzanotte': 'Scarface', 'Franco Citti': 'Foreign Legion Officer', 'Robert Behling': 'Customs Officer (as Robert A. Behling)', 'Joe Murphy': 'Fireman', 'Chris Larrance': 'Neighbor', 'Loris Bazzocchi': 'Berber on Dock'}" tt0093999,"{'Diana Rigg': 'Evil Queen', 'Billy Barty': 'Iddy', 'Sarah Patterson': 'Snow White', 'Nicola Stapleton': 'Snow White as a child', 'Mike Edmonds': 'Biddy (as Mike Edmunds)', 'Ricardo Gil': 'Kiddy', 'Malcolm Dixon': 'Diddy', 'Gary Friedkin': 'Fiddy', 'Arturo Gil': 'Giddy', 'Tony Cooper': 'Liddy', 'Douglas Sheldon': 'The King', 'Dorit Adi': 'Good Queen', 'James Ian Wright': 'Prince', 'Chana Eden': '1st Lady in Waiting', 'Angela Levinson': '2nd Lady in Waiting'}" tt7616798,"{'Ashley Judd': 'Terri', 'Jonah Hauer-King': 'Lucas', 'Edward James Olmos': 'Axel', 'Alexandra Shipp': 'Olivia', 'Chris Bauer': 'Kurch', 'Barry Watson': 'Gavin', 'Motell Gyn Foster': 'Taylor (as Motell Foster)', 'Wes Studi': 'Captain Mica', 'Bryce Dallas Howard': 'Bella (voice)', 'John Cassini': 'Chuck', 'Brian Markinson': 'Gunter', 'Patrick Gallagher': 'Teo', 'Broadus Mattison': 'Mack', 'Rolando Boyce': 'Drew', 'Cesar De León': 'Steve (as Cesar De Leon)'}" tt3606888,"{'Luke Treadaway': 'James', 'Bob the Cat': 'Bob', 'Ruta Gedmintas': 'Betty', 'Joanne Froggatt': 'Val', 'Anthony Head': 'Jack Bowen', 'Darren Evans': 'Baz', 'Tony Jayawardena': 'Tony', 'Adam Riches': 'Man with Car', 'Llewella Gideon': 'Meter Woman', 'Lorraine Ashbourne': 'Local Housing Officer', 'Akbar Kurtha': 'Pharmacist', 'John Henshaw': 'Tube Station Guard', 'Beth Goddard': 'Hilary', 'Ivana Basic': 'Vet Receptionist', 'Jessica Woodland': 'Vet Assistant'}" tt0103786,"{'Charles Grodin': 'George Newton', 'Bonnie Hunt': 'Alice Newton', 'Dean Jones': 'Dr. Varnick', 'Nicholle Tom': 'Ryce', 'Christopher Castile': 'Ted', 'Sarah Rose Karr': 'Emily', 'Oliver Platt': 'Harvey', 'Stanley Tucci': 'Vernon', 'David Duchovny': 'Brad', 'Patricia Heaton': 'Brie', 'Laurel Cronin': 'Devonia Peet', 'O-Lan Jones': 'Biker Woman', 'Nancy Fish': 'Miss Grundel', 'Craig Pinkard': 'Homeless Man', 'Robi Davidson': 'Mark'}" tt7008872,"{'Lucas Hedges': 'Jared Eamons', 'Nicole Kidman': 'Nancy Eamons', 'Russell Crowe': 'Marshall Eamons', 'Madelyn Cline': 'Chloe', 'Victor McCay': 'Aaron', 'David Joseph Craig': 'Michael', 'Troye Sivan': 'Gary', 'Emily Hinkler': 'Lee', 'Devin Michael': 'Anders', 'Matt Burke': 'Simon', 'Lindsey Moser': 'Tina', 'Jesse LaTourette': 'Sarah', 'Britton Sear': 'Cameron', 'David Ditmore': 'Phillip', 'William Ngo': 'Carl'}" tt2018111,"{'Arman Darbo': 'Edwin', 'Melonie Diaz': 'Ms. Meier', 'Lucy Shepard': 'Girl in Class with Book', 'Tony Hale': 'Mr. Mosley', 'Sawyer Barth': 'Flake', 'Mike Reyes': 'Soccer Player', 'Louis Robert Thompson': 'Soccer Coach (as Robert Thompson)', 'Justin Long': 'Tim', 'Melanie Lynskey': 'Janice', 'Kannon Hicks': 'Gus', 'Michael Rousselet': 'Pranked Caller', 'Sean Cook': 'Detention Monitor (as Sean G. Cook)', 'Hunter Trammell': 'Matthew Sfikas', 'Sharon Murray': 'Ms. Pengue', 'Steele Whitney': 'Dickhead'}" tt1645170,"{'Sacha Baron Cohen': 'Aladeen / Efawadh', 'Sayed Badreya': 'Omar', 'Rocky Citron': 'Baby Aladeen', 'Liam Campora': 'Aladeen Age 6', 'Aasif Mandvi': 'Doctor', 'Rizwan Manji': 'Patient', 'Rick Chambers': 'Newscaster Voiceover (voice)', 'Elsayed Mohamed': 'Wadiyan Olympic Official', 'Adeel Akhtar': 'Maroush', 'Horatio Sanz': 'Aide on Balcony', 'Ben Kingsley': 'Tamir', 'Elena Goode': 'Virgin Guard', 'Nazanin Homa': 'Virgin Guard (as Naz Homa)', 'Dawn Jackson': 'Virgin Guard (as Dawn Zimniak)', 'Victoria Beltran': 'Virgin Guard'}" tt3553442,"{'Tina Fey': 'Kim Baker', 'Margot Robbie': 'Tanya Vanderpoel', 'Martin Freeman': 'Iain MacKelpie', 'Alfred Molina': 'Ali Massoud Sadiq', 'Christopher Abbott': 'Fahim Ahmadzai', 'Billy Bob Thornton': 'General Hollanek', 'Nicholas Braun': 'Tall Brian', 'Stephen Peacocke': 'Nic', 'Sheila Vand': 'Shakira Khar', 'Evan Jonigkeit': 'Specialist Coughlin', 'Fahim Anwar': 'Jaweed', 'Josh Charles': 'Chris', 'Cherry Jones': 'Geri Taub', 'Scott Takeda': 'Ed Faber', 'Eli Goodman': 'Tucker Wang'}" tt4225696,"{'Clayton Rohner': 'Harold', 'Melanie Minichino': 'Deputy Gary', 'Megan Hensley': 'Squeaky', 'Daheli Hall': 'Nina', 'Charlie Farrell': 'Sheriff Albright', 'Dawn Brodey': 'Dr. Nancy', 'Amy Heidt': 'Officer Maggie', 'Brett Maline': 'Charlie', 'Christian Drerup': 'Sally', 'Scott Monahan': 'Curtis', 'Gina Brown': 'Victoria Nightboobs', 'David Henry Schneider': 'Mr. Pruitt / Soda Jerk', 'Shey Lyn Zanotti': 'Mary Beth', 'Sean Cork': 'Finn Potter', 'Katherine Canipe': 'Smith'}" tt4217392,"{'Jackie Chan': 'Jack', 'Yixing Zhang': 'Xiaoguang (as Lay Zhang)', 'Miya Muqi': 'Nuomin (as Mu Qimiya)', 'Disha Patani': 'Ashmita', 'Aarif Rahman': 'Jones (as Aarif Lee)', 'Amyra Dastur': 'Kyra', 'Sonu Sood': 'Randall', 'Paul Philip Clark': 'Max (as Paul Clark)', 'Yuxian Shang': 'Circe (as Circe Shang)', 'Jiang Wen': 'Jiang Wen (as Coco Jiang)', 'Eric Tsang': 'Jianghua', 'Guoli Zhang': 'Jonathan', 'Ming Gao': 'Museum Curator', 'Lavlin Thadani': 'Professor Ashmita', 'Bob Tao': 'Nerdy Chap'}" tt3228302,{'Elliot Scott': 'Himself'} tt2839312,"{'Marco Antonio Alvarez': 'Carlos Castillo', 'Dennis Ruel': 'Ricky', 'O.G. Dave Rivera': 'Morales', 'E. Ambriz DeColosio': 'Eduardo Ruiz', 'Morgan Benoit': 'Chuy', 'Stacey Rose': 'Vanessa', 'Justin Perez': 'Diego', 'Jon Carlo': 'Drew', 'Jenna Davi': 'Karen', 'Natalie Aldajani': 'Sonia', 'Melissa Locsin': 'Marta', 'Maya Tapia': 'Abuelita', 'Giovannie Espiritu': 'Stella', 'George Herman': 'Christopher', 'Ricardo Gamboa': 'The Announcer (as Richard Gamboa)'}" tt4537896,"{'Matthew McConaughey': 'Richard Wershe Sr.', 'Richie Merritt': 'Rick Wershe Jr.', 'Bel Powley': 'Dawn Wershe', 'Jennifer Jason Leigh': 'FBI Agent Snyder', 'Brian Tyree Henry': 'Detective Jackson', 'Rory Cochrane': 'FBI Agent Byrd', 'RJ Cyler': ""Rudell 'Boo' Curry"", 'Jonathan Majors': ""Johnny 'Lil Man' Curry"", 'Eddie Marsan': 'Art Derrick', 'Taylour Paige': 'Cathy Volsan-Curry', 'Bruce Dern': ""Grandpa Roman 'Ray' Wershe"", 'Piper Laurie': 'Grandma Verna Wershe', 'Raekwon Haynes': ""Edwin 'Nugg' Crutcher"", 'Ishmael Ali': ""'Freaky Steve' Roussell (as Ishmael 'Ishdarr' Ali)"", 'James Howard': 'Chief Homicide Inspector Hill'}" tt2165735,"{'Honglei Sun': 'Captain Zhang (as Sun Honglei)', 'Louis Koo': 'Timmy Choi', 'Yi Huang': 'Yang Xiaobei (as Huang Yi)', 'Yunxiang Gao': 'Xu Guoxiang (as Gao Yunxiang)', 'Wallace Chung': 'Guo Weijun', 'Guangjie Li': 'Chen Shixong (as Li Guangjie)', 'Tao Guo': 'Senior Dumb (as Guo Tao)', 'Jing Li': 'Junior Dumb', 'Hoi-Pang Lo': 'Birdie (as Lo Hoi Pang)', 'Siu-Fai Cheung': 'Su (as Cheung Siu Fai)', 'Ka Tung Lam': 'East Lee (as Lam Ka Tung)', 'Michelle Ye': 'Sal', 'Suet Lam': 'Fatso (as Lam Suet)', 'Ting Yip Ng': 'Hatred (as Ng Yuk San)', 'Philip Keung': 'Darkie (as Keung Hon Man)'}" tt5177088,"{'Claire Foy': 'Lisbeth Salander', 'Beau Gadsdon': 'Young Lisbeth Salander', 'Sverrir Gudnason': 'Mikael Blomkvist', 'LaKeith Stanfield': 'Ed Needham', 'Sylvia Hoeks': 'Camilla Salander', 'Carlotta von Falkenhayn': 'Young Camilla Salander', 'Stephen Merchant': 'Frans Balder', 'Christopher Convery': 'August Balder', 'Claes Bang': 'Jan Holtser', 'Synnøve Macody Lund': 'Gabriella Grane', 'Cameron Britton': 'Plague', 'Vicky Krieps': 'Erika Berger', 'Andreja Pejic': 'Sofia', 'Mikael Persbrandt': 'Alexander Zalachenko', 'Thomas Wingrich': ""Grane's Home Security""}" tt1255919,"{'Will Ferrell': 'Sherlock Holmes', 'John C. Reilly': 'Dr. Watson', 'Rebecca Hall': 'Grace Hart', 'Rob Brydon': 'Inspector Lestrade', 'Kelly Macdonald': 'Mrs. Martha Hudson', 'Lauren Lapkus': 'Millicent', 'Pam Ferris': 'Queen Victoria', 'Ralph Fiennes': 'Professor James Moriarty', 'Hector Bateman-Harden': 'Young Holmes', 'Codie-Lei Eastick': 'Young Watson', 'Laura Stevely': ""Sherlock's Mom"", 'Layla Rose Boyce': 'Nicotine Stains / Nancy', 'Sadie Newman': 'Jane', 'Harry Baxendale': 'Seamus', 'Ella Bright': 'Bridgette'}" tt1758810,"{'Michael Fassbender': 'Harry Hole', 'Rebecca Ferguson': 'Katrine Bratt', 'Charlotte Gainsbourg': 'Rakel', 'Jonas Karlsson': 'Mathias', 'Michael Yates': 'Oleg', 'Ronan Vibert': 'Gunnar Hagen', 'J.K. Simmons': 'Arve Stop', 'Val Kilmer': 'Rafto', 'David Dencik': 'Vetlesen', 'Toby Jones': 'DC Svensson', ""Genevieve O'Reilly"": 'Birte Becker', ""James D'Arcy"": 'Filip Becker', 'Jeté Laurence': 'Josephine Becker', 'Adrian Dunbar': 'Frederik Aasen', 'Chloë Sevigny': 'Sylvia Ottersen / Ane Pedersen'}" tt4504438,"{'Kevin Crane': 'Himself - State Prosecutor (archive footage)', 'Chuck Erickson': 'Himself (as Charles Erickson)', 'Bill Ferguson': ""Himself - Ryan's Father"", 'Leslie Ferguson': ""Herself - Ryan's Mother"", 'Ryan Ferguson': 'Himself', 'Kent Heitholt': 'Himself - Victim (archive footage)', 'Dallas Mallory': 'Himself - Witness (archive footage)', 'Cynthia Martin': 'Herself - Judge', 'Erin Moriarty': 'Herself - 48 Hours, CBS', 'Shawna Ornt': 'Herself - Tribune Janitor (archive footage)', 'Charlie Rogers': ""Himself - Ryan's Defense Attorney (archive footage)"", 'Ellen Roper': 'Herself - Judge', 'Jerry Trump': 'Himself - Tribune Janitor (archive footage)', 'Kathleen Zellner': ""Herself - Ryan's Attorney""}" tt7074886,"{'Hugh Jackman': 'Gary Hart', 'Vera Farmiga': 'Lee Hart', 'J.K. Simmons': 'Bill Dixon', ""Mark O'Brien"": 'Billy Shore', 'Molly Ephraim': 'Irene Kelly', 'Chris Coy': 'Kevin Sweeney', 'Alex Karpovsky': 'Mike Stratton', 'Josh Brener': 'Doug Wilson', 'Tommy Dewey': 'John Emerson', 'Kaitlyn Dever': 'Andrea Hart', 'Oliver Cooper': 'Joe Trippi', 'Jenna Kanell': 'Ginny Terzano', 'RJ Brown': 'Bill Martin', 'Alfred Molina': 'Ben Bradlee', 'Mamoudou Athie': 'AJ Parker'}" tt1477834,"{'Jason Momoa': 'Arthur', 'Amber Heard': 'Mera', 'Willem Dafoe': 'Vulko', 'Patrick Wilson': 'King Orm', 'Nicole Kidman': 'Atlanna', 'Dolph Lundgren': 'King Nereus', 'Yahya Abdul-Mateen II': 'Manta', 'Temuera Morrison': 'Tom Curry', 'Ludi Lin': 'Captain Murk', 'Michael Beach': ""Jesse (Manta's Father)"", 'Randall Park': 'Dr. Stephen Shin', 'Graham McTavish': 'King Atlan', 'Leigh Whannell': 'Cargo Pilot', 'Tainui Kirkwood': 'Young Arthur (Three Years Old)', 'Tamor Kirkwood': 'Young Arthur (Three Years Old)'}" tt1596363,"{'Ryan Gosling': 'Jared Vennett', 'Rudy Eisenzopf': 'Lewis Ranieri', 'Casey Groves': 'Fund Manager', 'Charlie Talbert': 'Lewis Bond Trader', 'Harold Gervais': 'Lewis Bond Trader', 'Maria Frangos': 'Exotic Dancer', 'Christian Bale': 'Michael Burry', 'Hunter Burke': 'Analyst', 'Bernard Hocke': 'Coach', 'Shauna Rappold': ""Michael Burry's Mom"", 'Brandon Stacy': ""Michael Burry's Dad"", 'Aiden Flowers': 'Young Michael Burry', 'Peter Epstein': 'Paul Baum', 'Anthony Marble': 'Therapy Businessman', 'Silas Cooper': 'Therapy Businessman'}" tt4925292,"{'Saoirse Ronan': 'Lady Bird McPherson', 'Laurie Metcalf': 'Marion McPherson', 'Tracy Letts': 'Larry McPherson', 'Lucas Hedges': ""Danny O'Neill"", 'Timothée Chalamet': 'Kyle Scheible', 'Beanie Feldstein': 'Julie Steffans', 'Lois Smith': 'Sister Sarah Joan', 'Stephen McKinley Henderson': 'Father Leviatch', 'Odeya Rush': 'Jenna Walton', 'Jordan Rodrigues': 'Miguel McPherson', 'Marielle Scott': 'Shelly Yuhan', 'John Karna': 'Greg Anrue', 'Jake McDorman': 'Mr. Bruno', 'Bayne Gibby': 'Casey Kelly', 'Laura Marano': 'Diana Greenway'}" tt1663143,"{'Victoria Justice': 'Wren', 'Jackson Nicoll': 'Albert', 'Chelsea Handler': 'Joy', 'Josh Pence': 'Keevin', 'Jane Levy': 'April', 'Thomas Mann': 'Roosevelt', 'Thomas McDonell': 'Aaron Riley', 'Carrie Clifford': 'Pumpkin Mom', 'Barry Livingston': 'Halloween Dad', 'Ele Bardha': 'Mariposa Dad', 'Osric Chau': 'Peng', 'Zamani Munashe': 'Spider Girl', 'Bobby Thomas': 'Old Spider Man', 'James Pumphrey': 'Brueder', 'Thomas Middleditch': 'Fuzzy'}" tt1817771,"{'Nicholas Braun': 'Dag', 'Mackenzie Davis': 'Petra', 'Josh Fadem': 'Ned', 'Denis Leary': 'Rick Wilson', 'Ed Westwick': 'Milan Pinache', 'Vanessa Hudgens': 'Lorelei', 'Keegan-Michael Key': 'Mr. Keller', 'Bob Odenkirk': 'Shooter Parker', 'Joan Cusack': 'Peg Parker', 'Chris Zylka': 'Chaz Jr.', 'Ian Roberts': 'Chaz Sr.', 'Rachael Harris': 'Mrs. Mosely', 'Mae Whitman': 'Jenna Zombie', 'Patton Oswalt': 'Stuart Miller', 'Pat Healy': 'Zombie Priest'}" tt5734576,"{'Shay Mitchell': 'Megan Reed', 'Grey Damon': 'Andrew Kurtz', 'Kirby Johnson': 'Hannah Grace / Cadaver', 'Nick Thune': 'Randy', 'Louis Herthum': 'Man / Killer / Grainger', 'Stana Katic': 'Lisa Roberts', 'Maximillian McNamara': 'Dave (as Max McNamara)', 'Jacob Ming-Trent': 'Ernie Gainor', 'James A. Watson Jr.': 'Dr. Henry Lewis', 'Marianne Bayard': 'Female Ambulance Driver', 'Adrian M. Mompoint': 'Other Ambulance Driver (as Adrian Mompoint)', 'Matt Mings': ""Megan's Police Partner"", 'Gijs Scholten van Aschat': 'Father Marcato', 'Guy Clemens': 'Father Cunningham', 'Sean Burns': 'Junkie'}" tt5173032,"{'Rami Malek': 'Buster', 'DJ Qualls': 'The Last Free Man', 'Kate Lyn Sheil': 'Marty', 'Sukha Belle Potter': 'Roxy', 'Toby Huss': 'Deputy Winston', 'Lin Shaye': 'Pauline', 'Mark Kelly': 'Oscar', 'Bruce Bundy': 'Ranger Meg', 'Teresa Yenque': 'Adelita', 'Jared Larson': 'Dale', 'Sandra Ellis Lafferty': 'Mrs. Bowery', 'Nicholas Pryor': 'Mr. Bowery', 'R.J. Burns': 'Ryan (as RJ Burns)', 'Gabriel Clark': 'Bill Western', 'Lily Gladstone': 'Morning Shift Concierge'}" tt5664636,"{'Wendi McLendon-Covey': 'Kathy', 'Madison Iseman': 'Sarah', 'Jeremy Ray Taylor': 'Sonny', 'Caleel Harris': 'Sam', 'Ken Jeong': 'Mr. Chu', 'Chris Parnell': 'Walter', 'Bryce Cass': 'Tyler', 'Peyton Wich': 'Tommy Madigan', 'Shari Headley': 'Mrs. Carter', 'Christian Finlayson': 'Cooper', 'Matthew J. Vasquez': 'Derek (as Matthew Jose Vasquez)', 'Courtney Lauren Cummings': ""Tyler's Crew (as Courtney Cummings)"", 'Jessi Goei': ""Tyler's Crew"", 'Drew Scheid': ""Tyler's Crew"", 'Tyler Silva': ""Tyler's Crew""}" tt2267968,"{'Jack Black': 'Po (voice)', 'Bryan Cranston': 'Li (voice)', 'Dustin Hoffman': 'Shifu (voice)', 'Angelina Jolie': 'Tigress (voice)', 'J.K. Simmons': 'Kai (voice)', 'Jackie Chan': 'Monkey (voice)', 'Seth Rogen': 'Mantis (voice)', 'Lucy Liu': 'Viper (voice)', 'David Cross': 'Crane (voice)', 'Kate Hudson': 'Mei Mei (voice)', 'James Hong': 'Mr. Ping (voice)', 'Randall Duk Kim': 'Oogway (voice)', 'Steele Gagnon': 'Bao (voice)', 'Liam Knight': 'Lei Lei (voice)', 'Wayne Knight': 'Big Fun / Hom-Lee (voice)'}" tt0090633,"{'Erica Yohn': 'Mama Mousekewitz (voice)', 'Nehemiah Persoff': 'Papa Mousekewitz (voice)', 'Amy Green': 'Tanya Mousekewitz (voice)', 'Phillip Glasser': 'Fievel Mousekewitz (voice)', 'Christopher Plummer': 'Henri (voice)', 'John Finnegan': 'Warren T. Rat (voice)', 'Will Ryan': 'Digit (voice)', 'Hal Smith': 'Moe (voice)', 'Pat Musick': 'Tony Toponi (voice)', 'Cathianne Blore': 'Bridget (voice)', 'Neil Ross': 'Honest John (voice)', 'Madeline Kahn': 'Gussie Mausheimer (voice)', 'Dom DeLuise': 'Tiger (voice)'}" tt2832470,"{'Vegar Hoel': 'Martin', 'Ørjan Gamst': 'Herzog', 'Martin Starr': 'Daniel', 'Jocelyn DeBoer': 'Monica', 'Ingrid Haas': 'Blake', 'Stig Frode Henriksen': 'Glenn Kenneth', 'Hallvard Holmen': 'Gunga', 'Kristoffer Joner': 'Sidekick Zombie', 'Amrita Acharia': 'Reidun', 'Derek Mears': 'Stavarin', 'Bjarte Tjøstheim': 'Priest', 'Christian Rubeck': 'Politiman', 'Charlotte Frogner': 'Hanna', 'Jesper Sundnes': 'Nazi Doktor', 'Tage Guddingsmo': 'Zombie Navigatør'}" tt5938084,"{'Anne Curtis': 'Nina Manigan', 'Brandon Vera': 'Rico Yatco', 'Victor Neri': 'Bernie Lacson', 'Arjo Atayde': 'Biggie Chen', 'Levi Ignacio': 'Chongki', 'Alex Calleja': 'Teban', 'Lao Rodriguez': 'Rudy Dela Cruz', 'Joross Gamboa': 'Cocky', 'Ricky Pascua': 'Solomon', 'Nonie Buencamino': 'Director Alvarez', 'Sheen Gener': 'Alda Lacson (as Sheenly Gener)', 'AJ Muhlach': 'Gelo Elia', 'Mara Lopez': 'Loren Santos', 'Tarek El Tayech': 'Iggy Hizon', 'Maddie Martinez': 'Dora'}" tt0841046,"{'Nat Faxon': 'Awards Show Stage Manager', 'John C. Reilly': 'Dewey Cox', 'Tim Meadows': 'Sam', 'Conner Rayburn': 'Dewey Age 8', 'Chip Hormess': 'Nate', 'Raymond J. Barry': 'Pa Cox', 'Terrence Beasor': 'Country Doctor', 'Margo Martindale': 'Ma Cox', 'Honeyboy Edwards': 'Old Bluesman (as David Honeyboy Edwards)', 'Gerry Black': 'Harmonica Player', 'Aron Johnson': 'Teenage Band', 'Jack Donovan Saperstein': 'Teenage Band (as Jack Saperstein)', 'Taylor Hubert': 'Teenage Band (as Taylor Jamison Hubert)', 'Christopher Hurt': 'Teenage Band', 'Matt Price': 'MC (Teacher)'}" tt1302011,"{'Jack Black': 'Po (voice)', 'Angelina Jolie': 'Tigress (voice)', 'Dustin Hoffman': 'Shifu (voice)', 'Gary Oldman': 'Shen (voice)', 'Jackie Chan': 'Monkey (voice)', 'Seth Rogen': 'Mantis (voice)', 'Lucy Liu': 'Viper (voice)', 'David Cross': 'Crane (voice)', 'James Hong': 'Mr. Ping (voice)', 'Michelle Yeoh': 'Soothsayer (voice)', 'Danny McBride': 'Wolf Boss (voice)', 'Dennis Haysbert': 'Master Ox (voice)', 'Jean-Claude Van Damme': 'Master Croc (voice)', 'Victor Garber': 'Master Rhino (voice)', 'Mike Bell': 'Gorilla Guard 1 (voice) (as Michael Patrick Bell)'}" tt7349662,"{'Alec Baldwin': 'Dr. Kennebrew Beauregard', 'John David Washington': 'Ron Stallworth', 'Isiah Whitlock Jr.': 'Mr. Turrentine', 'Robert John Burke': 'Chief Bridges', 'Brian Tarantina': 'Officer Clay Mulaney', 'Arthur J. Nascarella': 'Officer Wheaton (as Arthur Nascarella)', 'Ken Garito': 'Sergeant Trapp', 'Frederick Weller': 'Master Patrolman Andy Landers', 'Adam Driver': 'Flip Zimmerman', 'Michael Buscemi': 'Jimmy Creek (as Michael Joseph Buscemi)', 'Laura Harrier': 'Patrice Dumas', 'Damaris Lewis': 'Odetta', 'Ato Blankson-Wood': 'Hakeem', 'Corey Hawkins': 'Kwame Ture', 'Dared Wright': 'Officer Cincer'}" tt6966692,"{'Viggo Mortensen': 'Tony Lip', 'Mahershala Ali': 'Dr. Donald Shirley', 'Linda Cardellini': 'Dolores', 'Sebastian Maniscalco': 'Johnny Venere', 'Dimiter D. Marinov': 'Oleg', 'Mike Hatton': 'George', 'P.J. Byrne': 'Record Exec', 'Joe Cortese': 'Gio Loscudo', 'Maggie Nixon': 'Copa Coat Check Girl', 'Von Lewis': 'Bobby Rydell', 'Jon Sortland': 'Rydell Band Leader', 'Don Stark': 'Jules Podell', 'Anthony Mangano': 'Copa Bouncer Danny', 'Paul Sloan': ""Copa Maître D' Carmine"", 'Quinn Duffy': 'Mikey Cerrone'}" tt2119543,"{'Jack Black': 'Jonathan Barnavelt', 'Cate Blanchett': 'Florence Zimmerman', 'Owen Vaccaro': 'Lewis Barnavelt', 'Kyle MacLachlan': 'Isaac Izard', 'Renée Elise Goldsberry': 'Selena Izard', 'Colleen Camp': 'Mrs. Hanchett', 'Sunny Suljic': 'Tarby Corrigan', 'Lorenza Izzo': 'Mother', 'Braxton Bjerken': 'Woody Mingo', 'Vanessa Anne Williams': 'Rose Rita Pottinger', 'Ricky Muse': 'Bus Driver (as Ricky Lynn Muse)', 'Charles Green': 'Soda Jerk', ""De'Jon Watts"": 'Clark (as DJ Watts)', 'Aaron Beelner': 'Clown Automaton', 'Joshua Phillips': 'Clown Automaton'}" tt4244998,"{'Kodi Smit-McPhee': 'Keda', 'Jóhannes Haukur Jóhannesson': 'Tau', 'Marcin Kowalczyk': 'Sigma', 'Jens Hultén': 'Xi', 'Natassia Malthe': 'Rho', 'Spencer Bogaert': 'Kappa', 'Mercedes de la Zerda': 'Nu', 'Leonor Varela': 'Shaman Woman', 'Morgan Freeman': 'Narrator (voice)'}" tt1270797,"{'Tom Hardy': 'Eddie Brock / Venom', 'Michelle Williams': 'Anne Weying', 'Riz Ahmed': 'Carlton Drake / Riot', 'Scott Haze': 'Security Chief Roland Treece', 'Reid Scott': 'Dr. Dan Lewis', 'Jenny Slate': 'Dr. Dora Skirth', 'Melora Walters': 'Homeless Woman Maria', 'Woody Harrelson': 'Cletus Kasady', 'Peggy Lu': 'Mrs. Chen', 'Malcolm C. Murray': 'Lewis Donate', 'Sope Aluko': 'Dr. Collins', 'Wayne Pére': 'Dr. Emerson (as Wayne Péré)', 'Michelle Lee': 'Malaysia EMT / Riot Host', 'Kurt Yue': 'Mission Control Translator', ""Chris O'Hara"": 'Astronaut JJ Jameson, III'}" tt3766354,"{'Denzel Washington': 'Robert McCall', 'Pedro Pascal': 'Dave York', 'Ashton Sanders': 'Miles Whittaker', 'Orson Bean': 'Sam Rubinstein', 'Bill Pullman': 'Brian Plummer', 'Melissa Leo': 'Susan Plummer', 'Jonathan Scarfe': 'Resnik', 'Sakina Jaffrey': 'Fatima', 'Kazy Tauginas': 'Ari', 'Garrett Golden': 'Kovac (as Garrett A. Golden)', 'Adam Karst': 'Turkish Father', 'Alican Barlas': 'Dining Car Porter', 'Rhys Olivia Cote': 'Nine Year Old Braelick Girl (as Rhys Cote)', 'Tamara Hickey': 'Grace Braelick', 'Ken Baltin': ""Grace Braelick's Lawyer""}" tt4633694,"{'Shameik Moore': 'Miles Morales (voice)', 'Jake Johnson': 'Peter B. Parker (voice)', 'Hailee Steinfeld': 'Gwen Stacy (voice)', 'Mahershala Ali': 'Uncle Aaron (voice)', 'Brian Tyree Henry': 'Jefferson Davis (voice)', 'Lily Tomlin': 'Aunt May (voice)', 'Luna Lauren Velez': 'Rio Morales (voice)', 'Zoë Kravitz': 'Mary Jane (voice)', 'John Mulaney': 'Spider-Ham (voice)', 'Kimiko Glenn': 'Peni Parker (voice)', 'Nicolas Cage': 'Spider-Man Noir (voice)', 'Kathryn Hahn': 'Doc Ock (voice)', 'Liev Schreiber': 'Wilson Fisk (voice)', 'Chris Pine': 'Peter Parker (voice)', 'Natalie Morales': 'Miss Calleros (voice)'}" tt7668870,"{'John Cho': 'David Kim', 'Sara Sohn': 'Pamela Nam Kim', 'Alex Jayne Go': 'Young Margot (5 yrs)', 'Megan Liu': 'Young Margot (7 yrs)', 'Kya Dawn Lau': 'Young Margot (9 yrs)', 'Michelle La': 'Margot', 'Joseph Lee': 'Peter', 'Dominic Hoffman': 'Michael Porter', 'Sylvia Minassian': 'Mrs. Shahinian (voice)', 'Melissa Disney': ""Isaac's Mom (voice)"", 'Connor McRaith': 'Isaac', 'Colin Woodell': '911 Operator (voice)', 'Debra Messing': 'Detective Vick', 'Joseph John Schirle': 'Jonah Emmi (voice) (as Joseph K. Shirle)', 'Ashley Edner': ""Margot's Friend #1 (voice)""}" tt0181316,"{'Martin Lawrence': 'Miles Logan', 'Luke Wilson': 'Carlson', 'Peter Greene': 'Deacon', 'Dave Chappelle': 'Tulley', 'Nicole Ari Parker': 'Melissa Green', 'Graham Beckel': 'Rizzo', 'Robert Miranda': 'Glenfiddish', 'Olek Krupa': 'Jean LaFleur', 'Saverio Guerra': 'Benny', 'Richard C. Sarafian': 'Uncle Lou', 'Tamala Jones': 'Janiece', 'Julio Oscar Mechoso': 'Detective Diaz', 'Steve Rankin': 'FBI Agent Gray', 'Carmen Argenziano': 'Captain Penelli', 'John Hawkes': 'Eddie'}" tt3450650,"{'Kevin James': 'Paul Blart', 'Raini Rodriguez': 'Maya Blart', 'Neal McDonough': 'Vincent Sofel', 'Daniella Alonso': 'Divina Martinez', 'Eduardo Verástegui': 'Eduardo Furtillo (as Eduardo Verastegui)', 'David Henrie': 'Lane', 'Shirley Knight': 'Mom', 'Gary Valentine': 'Saul Gundermutt', 'Ana Gasteyer': 'Mrs. Gundermutt', 'Nicholas Turturro': 'Nick Panero', 'Loni Love': 'Donna Ericone', 'Shelly Desai': 'Khan Mubi', 'Vic Dibitetto': 'Gino Chizetti', 'D.B. Woodside': 'Robinson (as DB Woodside)', 'Bas Rutten': 'Henk'}" tt0095647,"{'Gene Hackman': 'Anderson', 'Willem Dafoe': 'Ward', 'Frances McDormand': 'Mrs. Pell', 'Brad Dourif': 'Deputy Pell', 'R. Lee Ermey': 'Mayor Tilman', 'Gailard Sartain': 'Sheriff Stuckey', 'Stephen Tobolowsky': 'Townley', 'Michael Rooker': 'Frank Bailey', 'Pruitt Taylor Vince': 'Lester Cowens', 'Badja Djola': 'Agent Monk', 'Kevin Dunn': 'Agent Bird', 'Frankie Faison': 'Eulogist', 'Thomas B. Mason': 'Judge (as Tom Mason)', 'Geoffrey Nauffts': 'Goatee', 'Rick Zieff': 'Passenger'}" tt0092563,"{'Mickey Rourke': 'Harry Angel', 'Robert De Niro': 'Louis Cyphre', 'Lisa Bonet': 'Epiphany Proudfoot', 'Charlotte Rampling': 'Margaret Krusemark', 'Stocker Fontelieu': 'Ethan Krusemark', 'Brownie McGhee': 'Toots Sweet', 'Michael Higgins': 'Dr. Albert Fowler', 'Elizabeth Whitcraft': 'Connie', 'Eliott Keener': 'Det. Sterne', 'Charles Gordone': 'Spider Simpson', 'Dann Florek': 'Herman Winesap', 'Kathleen Wilhoite': 'Nurse', 'George Buck': 'Izzy', 'Judith Drake': ""Izzy's Wife"", 'Gerald Orange': 'Pastor John (as Gerald L. Orange)'}" tt1213641,"{'Ryan Gosling': 'Neil Armstrong', 'Claire Foy': 'Janet Armstrong', 'Jason Clarke': 'Ed White', 'Kyle Chandler': 'Deke Slayton', 'Corey Stoll': 'Buzz Aldrin', 'Patrick Fugit': 'Elliot See', 'Christopher Abbott': 'Dave Scott', 'Ciarán Hinds': 'Bob Gilruth', 'Olivia Hamilton': 'Pat White', 'Pablo Schreiber': 'James Lovell', 'Shea Whigham': 'Gus Grissom', 'Lukas Haas': 'Mike Collins', 'Ethan Embry': 'Pete Conrad', ""Brian d'Arcy James"": 'Joe Walker', 'Cory Michael Smith': 'Roger Chaffee'}" tt2671706,"{'Denzel Washington': 'Troy Maxson', 'Viola Davis': 'Rose Maxson', 'Stephen McKinley Henderson': 'Jim Bono', 'Jovan Adepo': 'Cory', 'Russell Hornsby': 'Lyons', 'Mykelti Williamson': 'Gabriel', 'Saniyya Sidney': 'Raynell', 'Christopher Mele': 'Deputy Commissioner', 'Lesley Boone': 'Evangelist Preacher (as Leslie Boone)', 'Jason Silvis': 'Garbage Truck Driver', 'Liz Barentine': 'Background Actor'}" tt0057251,"{'Sidney Poitier': 'Homer Smith', 'Lilia Skala': 'Mother Maria', 'Lisa Mann': 'Sister Gertrude', 'Isa Crino': 'Sister Agnes', 'Francesca Jarvis': 'Sister Albertine', 'Pamela Branch': 'Sister Elizabeth', 'Stanley Adams': 'Juan', 'Dan Frazer': 'Father Murphy'}" tt1285009,"{'Christina Hendricks': 'Cindy', 'Martin Henderson': 'Mike', 'Bailee Madison': 'Kinsey', 'Lewis Pullman': 'Luke', 'Damian Maffei': 'Man in the Mask', 'Emma Bellomy': 'Dollface', 'Lea Enslin': 'Pinup', 'Mary Louise Casanta': 'Aunt Sheryl', 'Ken Strunk': 'Uncle Marv', 'Rachel Kuhn': 'Waitress', 'Leah Roberts': 'Young Mother', 'Preston Sadleir': 'State Trooper', 'Gabriel A. Byrne': 'Young Son'}" tt0102960,"{'Tim Matheson': 'Jim Norman', 'Brooke Adams': 'Sally Norman', 'Robert Rusler': 'Richard Lawson', 'Chris Demetral': 'Wayne Norman', 'Robert Hy Gorman': 'Scott Norman', 'William Sanderson': 'Carl Mueller (age 44)', 'Nicholas Sadler': 'Vinnie Vincent', 'Bentley Mitchum': 'David North', 'Matt Nolan': 'Billy Sterns', 'Tasia Valenza': 'Kate', 'Chadd Nyerges': 'Chip', 'T. Max Graham': 'Chief Pappas', 'William Kuhlke': 'Principal Simmons', 'Duncan McLeod': 'Old Officer Neil', 'Nancy McLoughlin': 'Dr. Bernardi'}" tt0470993,"{'Dina Meyer': 'Jennifer Jones', 'George Newbern': 'Father Lyle Dey', 'Traci Lords': 'Gina Conte', 'Dan DeLuca': 'Wayne Morrison', 'Frank Whaley': 'Brent Sykes', 'Gabrielle Anwar': 'Beth Patterson', 'Christine Eads': 'Nurse', 'Stephen Szibler': 'Orderly', 'Michael Gabel': 'Dr. Pike', 'Cheryl Scungio': ""Jennifer's Mother"", 'Karen Beriss': 'Karen', 'Joe Hansard': 'Flashback Doctor', 'James A. Ray': 'Jimmy Ray (as Jimmy Ray)', 'Chloe J. Lindsey': 'Hospital patient', 'Linda Delpierre': 'Extra'}" tt1428538,"{'Jeremy Renner': 'Hansel', 'Gemma Arterton': 'Gretel', 'Famke Janssen': 'Muriel', 'Pihla Viitala': 'Mina', 'Derek Mears': 'Edward', 'Robin Atkin Downes': 'Edward (voice)', 'Ingrid Bolsø Berdal': 'Horned Witch', 'Joanna Kulig': 'Red Haired Witch', 'Thomas Mann': 'Ben', 'Peter Stormare': 'Sheriff Berringer', 'Bjørn Sundquist': 'Jackson', 'Rainer Bock': 'Mayor Engleman', 'Thomas Scharff': 'Father', 'Kathrin Kühnel': 'Adrianna', 'Cedric Eich': 'Young Hansel'}" tt5481984,"{'Johnny Rey Diaz': 'Rumpelstiltskin', 'Christina Licciardi': 'Alice', 'Lindsay Sawyer': 'Goldilocks', 'Talia A Davis': 'Gelda (as Talia Davis)', 'Trae Ireland': 'Bluebeard', 'Isaac Reyes': 'Piper', 'Fiona Rene': 'Carabosse', 'Joseph Michael Harris': 'Big Bad Wolf (as Joseph Harris)', 'Nick Principe': 'Death', 'Aaron Moses': 'Tweedledee / Tweedledum', 'Randall Yarbrough': 'Hatter'}" tt0365957,"{'Omarion': 'David (as Omari Grandberry)', 'Marques Houston': 'Elgin', 'Jennifer Freeman': 'Liyah', 'Jarell Houston': 'Rico', ""Lil' Fizz"": 'Rashann (as Dreux Frederic)', 'Raz B': 'Vick (as DeMario Thornton)', 'Marty Dew': 'Marty', 'Jerome Jones': 'Sonny', 'Tanee McCall': ""Toya (as Tuere 'Tanee' McCall)"", 'Malcolm David Kelley': 'Lil Saint', 'Meagan Good': 'Beautifull', 'Steve Harvey': 'Mr. Rad', 'Christopher Jones': 'Wade', 'Robert Hoffman': 'Max (as Robert James Hoffman III)', 'Michael Taliferro': ""Emerald (as Michael 'Bear' Taliferro)""}" tt4145324,"{'Charisma Carpenter': 'Michelle Mulan', 'Bryce Draper': 'Ryan Black', 'Morgan Obenreder': 'Dara', 'Michael Monks': 'Preston', 'Daniel Baldwin': 'Walter', 'Andy T. Tran': 'Lee', 'Mark McClain Wilson': 'George', 'Hayley McLaughlin': 'Alana', 'Noel Arthur': 'Jesse Aaron', 'Steffinnie Phrommany': 'Kori', 'Steve Suh': 'Security Officer', 'Cedric Scott': 'Concierge', 'Lyndsay Haldorson': 'Receptionist', 'Heather Paige Cohn': 'Nurse', 'Terrell Owens': 'Terrell'}" tt6781982,"{'Kevin Hart': 'Teddy', 'Tiffany Haddish': 'Carrie', 'Rob Riggle': 'Mackenzie', 'Romany Malco': 'Jaylen', 'Taran Killam': 'Stewart', 'Megalyn Echikunwoke': 'Lisa', 'Al Madrigal': 'Luis', 'Mary Lynn Rajskub': 'Theresa', 'Keith David': 'Gerald', 'Anne Winters': 'Mila', 'Fat Joe': 'Bobby', 'Ben Schwartz': 'Marvin', 'Yvonne Orji': 'Maya', 'Bresha Webb': 'Denise', 'Jeff Rose': 'Isaac'}" tt2937696,"{'Blake Jenner': 'Jake', 'Juston Street': 'Jay', 'Ryan Guzman': 'Roper', 'Tyler Hoechlin': 'McReynolds', 'Wyatt Russell': 'Willoughby', 'Glen Powell': 'Finnegan', 'Temple Baker': 'Plummer', 'J. Quinton Johnson': 'Dale', 'Will Brittain': 'Beuter', 'Courtney Tailor': 'Sorority Girl #1', 'Taylor Murphy': 'Sorority Girl #2', 'Christina Burdette': 'Cute Coed #1', 'Zoey Deutch': 'Beverly', 'Sophia Ali': ""Beverly's Roommate"", 'Austin Amelio': 'Nesbit'}" tt0090685,"{'Rodney Dangerfield': 'Thornton Melon', 'Sally Kellerman': 'Dr. Diane Turner', 'Burt Young': 'Lou', 'Keith Gordon': 'Jason Melon', 'Robert Downey Jr.': 'Derek Lutz', 'Paxton Whitehead': 'Philip Barbay', 'Terry Farrell': 'Valerie Desmond', 'M. Emmet Walsh': 'Coach Turnbull', 'Adrienne Barbeau': 'Vanessa', 'William Zabka': 'Chas', 'Ned Beatty': 'Dean David Martin', 'Severn Darden': 'Dr. Barazini', 'Sam Kinison': 'Professor Terguson', 'Robert Picardo': 'Giorgio', 'Kurt Vonnegut Jr.': 'Himself'}" tt6911608,"{'Amanda Seyfried': 'Sophie', 'Andy Garcia': 'Fernando Cienfuegos', 'Celia Imrie': 'Vice Chancellor', 'Lily James': 'Young Donna', 'Alexa Davies': 'Young Rosie', 'Jessica Keenan Wynn': 'Young Tanya', 'Dominic Cooper': 'Sky', 'Julie Walters': 'Rosie', 'Christine Baranski': 'Tanya', 'Hugh Skinner': 'Young Harry', 'Pierce Brosnan': 'Sam', 'Omid Djalili': 'Greek Official', 'Josh Dylan': 'Young Bill', 'Gerard Monaco': 'Alexio', 'Anna Antoniades': 'Apollonia'}" tt3640424,"{'Brad Pitt': 'Max Vatan', 'Vincent Ebrahim': 'Driver in Desert', 'Xavier de Guillebon': 'Claude', 'Marion Cotillard': 'Marianne Beauséjour', 'Camille Cottin': 'Monique', 'Michael McKell': 'German Officer at Anfa Café', 'Vincent Latorre': 'Vincent (as Vincent La Torre)', 'Fleur Poad': ""Hobar's Secretary"", 'August Diehl': 'Hobar', 'Miryam Hayward': 'Moroccan Girl', 'Iselle Rifat': 'Moroccan Girl', 'Aysha Kanayo': 'Moroccan Girl', 'Anton Blake': 'German Ambassador', 'Daniel Betts': 'George Kavanagh', 'Sally Messham': 'Margaret'}" tt0427152,"{'Steve Carell': 'Barry', 'Paul Rudd': 'Tim', 'Zach Galifianakis': 'Therman', 'Jemaine Clement': 'Kieran', 'Stephanie Szostak': 'Julie', 'Lucy Punch': 'Darla', 'Bruce Greenwood': 'Lance Fender', 'David Walliams': 'Müeller', 'Ron Livingston': 'Caldwell', 'Larry Wilmore': 'Williams', 'Kristen Schaal': 'Susana', 'P.J. Byrne': 'Davenport', 'Andrea Savage': 'Robin', 'Nick Kroll': 'Josh', 'Randall Park': 'Henderson'}" tt0077504,"{'Burt Reynolds': 'Wendell Sonny Lawson', 'Dom DeLuise': 'Marlon Borunki', 'Sally Field': 'Mary Ellen', 'Strother Martin': 'Dr. Waldo Kling', 'David Steinberg': 'Marty Lieberman', 'Joanne Woodward': 'Jessica Lawson', 'Norman Fell': 'Dr. Samuel Krugman', 'Myrna Loy': 'Maureen Lawson', 'Kristy McNichol': 'Julie Lawson', ""Pat O'Brien"": 'Ben Lawson', 'Robby Benson': 'Father Dave Benson', 'Carl Reiner': 'Dr. James Maneet', 'Louise LeTourneau': 'Receptionist', 'Bill Ewing': 'Hearse Driver', 'Robert Rothwell': 'Limousine Driver'}" tt0111143,"{'Alec Baldwin': 'Lamont Cranston / The Shadow', 'John Lone': 'Shiwan Khan', 'Penelope Ann Miller': 'Margo Lane', 'Peter Boyle': 'Moe Shrevnitz', 'Ian McKellen': 'Reinhardt Lane', 'Tim Curry': 'Farley Claymore', 'Jonathan Winters': 'Police Commissioner Wainwright Barth', 'Sab Shimono': 'Dr. Roy Tam', 'Andre Gregory': 'Burbank', 'Brady Tsurutani': 'Tulku', 'James Hong': 'Li Peng', ""Arsenio 'Sonny' Trinidad"": 'Wu', 'Joseph Maher': 'Isaac Newboldt', 'John Kapelos': 'Duke Rollins', 'Max Wright': 'Berger'}" tt0117107,"{'Nick Nolte': 'Max Hoover', 'Melanie Griffith': 'Katherine Hoover', 'Chazz Palminteri': 'Elleroy Coolidge', 'Michael Madsen': 'Eddie Hall', 'Chris Penn': 'Arthur Relyea', 'Treat Williams': 'Colonel Nathan Fitzgerald', 'Jennifer Connelly': 'Allison Pond', 'Daniel Baldwin': 'McCafferty', 'Andrew McCarthy': 'Jimmy Fields', 'John Malkovich': 'General Thomas Timms', 'Kyle Chandler': 'Captain', 'Ed Lauter': 'Earl', 'Larry Garrison': ""Perino's Maitre d'"", 'Chelsea Harrington': 'Lolita', 'Johnna Johnson': 'Bar Woman'}" tt0281686,"{'Bruce Campbell': 'Elvis Presley / Sebastian Haff', 'Ossie Davis': 'Jack', 'Ella Joyce': 'The Nurse', 'Heidi Marnhout': 'Callie', 'Bob Ivy': 'Bubba Ho-tep', 'Edith Jefferson': 'Elderly Woman', 'Larry Pennell': 'Kemosabe', 'Reggie Bannister': 'Rest Home Administrator', 'Daniel Roebuck': 'Hearse Driver', 'Daniel Schweiger': 'Hearse Driver', 'Harrison Young': ""Elvis' Roommate"", 'Linda Flammer': 'Room Nurse', 'Cean Okada': 'Attending Nurse', 'Solange Morand': 'Iron Lung Lady', 'Karen Placencia': 'Baby'}" tt0089489,"{'Steve Railsback': 'Col. Tom Carlsen', 'Peter Firth': 'Col. Colin Caine', 'Frank Finlay': 'Dr. Hans Fallada', 'Mathilda May': 'Space Girl', 'Patrick Stewart': 'Dr. Armstrong', 'Michael Gothard': 'Dr. Bukovsky', 'Nicholas Ball': 'Roger Derebridge', 'Aubrey Morris': 'Sir Percy Heseltine', 'Nancy Paul': 'Ellen Donaldson', 'John Hallam': 'Lamson', 'John Keegan': 'Guard', 'Chris Jagger': 'First Vampire (as Christopher Jagger)', 'Bill Malin': 'Second Vampire', 'Jerome Willis': 'Pathologist', 'Derek Benfield': 'Physician'}" tt2042447,"{'Jason Williams': 'Douglas Benson', 'Amy Van Horne': 'Virginia Benson', 'Devin Clark': 'Tyler Benson', 'Nadine Crocker': 'Lori Benson', 'Gracie Largent': 'Melanie Benson', 'Luke Barnett': 'Ronald J. Defeo Jr. / The Ghost', 'Tyler Shamy': 'Greg', 'Kristen Hager Meed': 'Kristen', 'Jon Kondelik': 'Brett', 'Alex Rzechowicz': 'Donny Reddit', 'Mary LeGault': 'Ivey', 'Piper Kennedy': 'Bri', 'Casey Campbell': 'Detective', 'Jon Gale': 'Officer Nathen'}" tt1502407,"{'Jamie Lee Curtis': 'Laurie Strode', 'Judy Greer': 'Karen', 'Andi Matichak': 'Allyson', 'James Jude Courtney': 'The Shape', 'Nick Castle': 'The Shape', 'Haluk Bilginer': 'Dr. Sartain', 'Will Patton': 'Officer Hawkins', 'Rhian Rees': 'Dana Haines', 'Jefferson Hall': 'Aaron Korey', 'Toby Huss': 'Ray', 'Virginia Gardner': 'Vicky', 'Dylan Arnold': 'Cameron Elam', 'Miles Robbins': 'Dave', 'Drew Scheid': 'Oscar', 'Jibrail Nantambu': 'Julian'}" tt6133466,"{""Y'lan Noel"": 'Dmitri', 'Lex Scott Davis': 'Nya', 'Joivan Wade': 'Isaiah', 'Mugga': 'Dolores', 'Patch Darragh': 'Chief of Staff - Arlo Sabian', 'Marisa Tomei': 'The Architect - Dr. Updale', 'Luna Lauren Velez': 'Luisa', 'Kristen Solis': 'Selina', 'Rotimi Paul': 'Skeletor', 'Mo McRae': '7 & 7', 'Jermel Howard': 'Lorenzo', 'Siya': 'Blaise', 'Christian Robinson': 'Capital A', 'Steve Harris': 'Freddy', 'Derek Basco': 'Taz'}" tt4786282,"{'Teresa Palmer': 'Rebecca', 'Gabriel Bateman': 'Martin', 'Alexander DiPersia': 'Bret', 'Billy Burke': 'Paul', 'Maria Bello': 'Sophie', 'Alicia Vela-Bailey': 'Diana', 'Andi Osho': 'Emma', 'Rolando Boyce': 'Officer Brian Andrews', 'Maria Russell': 'Officer Gomez', 'Elizabeth Pan': 'Nurse', 'Lotta Losten': 'Esther', 'Amiah Miller': 'Young Rebecca', 'Ava Cantrell': 'Teen Diana', 'Emily Alyn Lind': 'Teen Sophie'}" tt1980209,"{'Mark Wahlberg': 'Daniel Lugo', 'Dwayne Johnson': 'Paul Doyle', 'Anthony Mackie': 'Adrian Doorbal', 'Tony Shalhoub': 'Victor Kershaw', 'Ed Harris': 'Ed DuBois', 'Rob Corddry': 'John Mese', 'Bar Paly': 'Sorina Luminita', 'Rebel Wilson': 'Robin Peck', 'Ken Jeong': 'Jonny Wu', 'Michael Rispoli': 'Frank Griga', 'Keili Lefkovitz': 'Krisztina Furton', 'Emily Rutherfurd': ""Carolyn 'Cissy' DuBois"", 'Larry Hankin': 'Pastor Randy', 'Tony Plana': 'Captain Lopez', 'Peter Stormare': 'Dr. Bjornson'}" tt0479884,"{'Jason Statham': 'Chev Chelios', 'Amy Smart': 'Eve', 'Jose Pablo Cantillo': 'Verona', 'Efren Ramirez': 'Kaylo', 'Dwight Yoakam': 'Doc Miles', 'Carlos Sanz': 'Carlito', 'Reno Wilson': 'Orlando', 'Edi Gathegi': 'Haitian Cabbie', 'Glenn Howerton': 'Doctor', 'Jay Xcala': 'Alex', 'Keone Young': 'Don Kim', 'Valarie Rae Miller': 'Chocolate', 'Yousuf Azami': 'Arab Cabbie', 'Laurent Schwaar': 'Man in Garage (as Laurent Schwar)', 'David Brown': 'Sin City Brother'}" tt5734548,"{'Dylan Vox': 'Odysseus', 'Lara Heller': 'Circe / Shadow Warrior', 'Hachem Hicham': 'Aesus', 'David Gray': 'Eurylochus (as David W. Gray)', 'Kelly B. Jones': 'Penelope', ""Eoin O'Brien"": 'Achilles', 'David Blazejko': 'Agamemnon / Minotaur Priest', 'Ego Mikitas': 'King Priam', 'Nikola Mitic': 'Paris', 'Katrina Grey': 'Helen', 'Dan Renalds': 'Telemachus (as Daniel Renalds)', 'Daniel Whyte': 'Antinoos', 'Torstein Olaussen': 'Old Thelonious', 'Cecilia Belletti': 'Calypso', 'Kat Ingkarat': 'Siren / Old Hag (as Kat Ingkarat Jaraswongkosol)'}" tt0409847,"{'Daniel Craig': 'Jake Lonergan', 'Abigail Spencer': 'Alice', 'Buck Taylor': 'Wes Claiborne', 'Matthew Taylor': 'Luke Claiborne (as Matt Taylor)', 'Cooper Taylor': 'Mose Claiborne', 'Clancy Brown': 'Meacham', 'Paul Dano': 'Percy Dolarhyde', 'Chris Browning': 'Jed Parker', 'Adam Beach': 'Nat Colorado', 'Sam Rockwell': 'Doc', 'Ana de la Reguera': 'Maria (as Ana De La Reguera)', 'Noah Ringer': 'Emmett Taggart', 'Brian Duffy': 'Deputy', 'Olivia Wilde': 'Ella Swenson', 'Keith Carradine': 'Sheriff John Taggart'}" tt1335975,"{'Keanu Reeves': 'Kai', 'Hiroyuki Sanada': 'Ôishi', 'Ko Shibasaki': 'Mika (as Kô Shibasaki)', 'Tadanobu Asano': 'Lord Kira', 'Min Tanaka': 'Lord Asano', 'Jin Akanishi': 'Chikara', 'Masayoshi Haneda': 'Yasuno', 'Hiroshi Sogabe': 'Hazama', 'Takato Yonemoto': 'Basho', 'Hiroshi Yamada': 'Hara', 'Shû Nakajima': 'Horibe', 'Cary-Hiroyuki Tagawa': 'Shogun Tsunayoshi', 'Neil Fingleton': 'Lovecraftian Samurai', 'Rinko Kikuchi': 'Witch', 'Natsuki Kunimoto': 'Riku'}" tt0076239,"{'Desi Arnaz Jr.': 'Scott', 'Robert Carradine': 'John', 'Melanie Griffith': 'Susie', 'Anne Lockhart': 'Cindy Young', 'Tom Ligon': 'Sanders', 'Cliff Lenz': 'Henderson', 'Robert Loper': 'Simon Williams', 'Diana Grayf': 'Rhonda', ""Diane O'Mack"": 'Debbie', 'Susan Ludlow': 'Personnel Lady', ""Ted D'Arms"": 'Site Manager', 'Gail Rosella': 'Cashier', 'Richard Mazzola': 'Car Salesman', ""Michael O'Neill"": ""Henderson's Assistant"", 'Duncan Maclean': 'Diner Owner'}" tt2543164,"{'Amy Adams': 'Louise Banks', 'Jeremy Renner': 'Ian Donnelly', 'Forest Whitaker': 'Colonel Weber', 'Michael Stuhlbarg': 'Agent Halpern', ""Mark O'Brien"": 'Captain Marks', 'Tzi Ma': 'General Shang', 'Abigail Pniowsky': '8-Year-Old-Hannah', 'Julia Scarlett Dan': '12-Year-Old-Hannah', 'Jadyn Malone': '6-Year-Old-Hannah', 'Frank Schorpion': 'Dr. Kettler', 'Lucas Chartier-Dessert': 'Private Lasky', 'Christian Jadah': 'Private Combs', 'Lucy Van Oldenbarneveld': 'CNAC Anchor', 'Andrew Shaver': 'Environmental Tech', 'Pat Kiely': 'Environmental Tech'}" tt0134983,"{'James Spader': 'Nick Vanzant', 'Angela Bassett': 'Dr. Kaela Evers', 'Robert Forster': 'A.J. Marley', 'Lou Diamond Phillips': 'Yerzy Penalosa', 'Peter Facinelli': 'Karl Larson', 'Robin Tunney': 'Danika Lund', 'Wilson Cruz': 'Benj Sotomejor', 'Eddy Rice Jr.': 'Flyboy', 'Knox White': 'Troy Larson (as Knox Grantham White)', 'Kerrigan Mahan': 'Troy Larson (voice)', 'Vanessa Marshall': 'Sweetie (voice)'}" tt0062622,"{'Keir Dullea': 'Dr. Dave Bowman', 'Gary Lockwood': 'Dr. Frank Poole', 'William Sylvester': 'Dr. Heywood R. Floyd', 'Daniel Richter': 'Moon-Watcher', 'Leonard Rossiter': 'Dr. Andrei Smyslov', 'Margaret Tyzack': 'Elena', 'Robert Beatty': 'Dr. Ralph Halvorsen', 'Sean Sullivan': 'Dr. Bill Michaels', 'Douglas Rain': 'HAL 9000 (voice)', 'Frank Miller': 'Mission Controller (voice)', 'Bill Weston': 'Astronaut', 'Ed Bishop': 'Aries-1B Lunar Shuttle Captain (as Edward Bishop)', 'Glenn Beck': 'Astronaut', 'Alan Gifford': ""Poole's Father"", 'Ann Gillis': ""Poole's Mother""}" tt0074559,"{'Peter Fonda': 'Chuck Browning', 'Blythe Danner': 'Tracy Ballard', 'Arthur Hill': 'Duffy', 'Yul Brynner': 'The Gunslinger', 'John P. Ryan': 'Dr. Schneider (as John Ryan)', 'Stuart Margolin': 'Harry', 'Allen Ludden': 'Game Show Host', 'Robert Cornthwaite': 'Mr. Reed', 'Angela Greene': 'Mrs. Reed', 'Darrell Larson': 'Eric', 'Nancy Bell': 'Erica', 'Burt Conroy': 'Mr. Karnovski', 'Dorothy Konrad': 'Mrs. Karnovski', 'John Fujioka': 'Mr. Takaguchi', 'Dana Lee': ""Mr. Takaguchi's Aide""}" tt0983193,"{'Jamie Bell': 'Tintin (voice)', 'Andy Serkis': 'Captain Haddock / Sir Francis Haddock (voice)', 'Daniel Craig': 'Sakharine / Red Rackham (voice)', 'Nick Frost': 'Thomson (voice)', 'Simon Pegg': 'Thompson (voice)', 'Daniel Mays': 'Allan / Pirate Flunky #1 (voice)', 'Gad Elmaleh': 'Ben Salaad (voice)', 'Toby Jones': 'Silk (voice)', 'Joe Starr': 'Barnaby (voice)', 'Enn Reitel': 'Nestor / Mr. Crabtree (voice)', 'Mackenzie Crook': 'Tom / Pirate Flunky #2 (voice)', 'Tony Curran': 'Lieutenant Delcourt (voice)', 'Sonje Fortag': 'Mrs. Finch (voice)', 'Cary Elwes': 'Pilot (voice)', 'Phillip Rhys': 'Co-Pilot / French Medic (voice)'}" tt2279373,"{'Antonio Banderas': 'Burger Beard', 'Eric Bauza': 'Seagull (voice)', 'Tim Conway': 'Seagull (voice)', 'Eddie Deezen': 'Seagull (voice)', 'Rob Paulsen': 'Seagull (voice)', 'Kevin Michael Richardson': 'Seagull (voice)', 'April Stewart': 'Seagull (voice)', 'Cree Summer': 'Seagull (voice)', 'Billy West': 'Seagull (voice)', 'Carlos Alazraqui': 'Seagull / Dead Parrot (voice)', 'Nolan North': 'Seagull / Dead Parrot / Pigeon Cabbie (voice)', 'Paul Tibbitt': 'Kyle / Helpful Angry Mob Member (voice)', 'Tom Kenny': 'SpongeBob / Gary / Agreeable Mob Member / Waffle (voice)', 'Bill Fagerbakke': 'Patrick / Male Fish / Eager Customer (voice)', 'Rodger Bumpass': 'Doctor / Squidward / Angry Mob Member #2 / Doughnut / Squidasaurus Rex (voice)'}" tt3095734,"{'Lucas Till': 'Tripp', 'Jane Levy': 'Meredith', 'Thomas Lennon': 'Jim Dowd', 'Barry Pepper': 'Sheriff Rick', 'Rob Lowe': 'Reece Tenneson', 'Danny Glover': 'Mr. Weathers', 'Amy Ryan': 'Cindy', 'Holt McCallany': 'Burke', 'Frank Whaley': 'Wade Coley', ""Aliyah O'Brien"": 'Junior Scientist', 'Daniel Bacon': 'Technician', 'Faustino Di Bauda': 'Roughneck', 'Jedidiah Goodacre': 'Jake (Letterman Kid)', 'Samara Weaving': 'Brianne', 'Ruairi MacDonald': '9th Grader'}" tt2202750,"{'Andrew Beckham': 'Oliver Richmond', 'Shannon Elizabeth': 'Jessica Richmond', 'Jason Brooks': 'Jeff Richmond', 'Charles Irving Beale': 'Ben', 'Madeleine Falk': 'Mrs. Geitzen', 'Sam Elliot Hafermalz': 'Scooter (as Samuel E. Hafermalz)', 'Joe Hursley': 'Frankie', 'Ava Kolker': 'Marybeth Geitzen', 'Jon Kondelik': 'Tommy', 'Rae Latt': 'Mrs. Mildred Bell', 'Richard Lund': 'Mr. Williams', 'Christian Mooney': 'Timmy Geitzen', 'Clyde Tull': 'Mr. Garvey', 'Jim Turner': 'Mr. Geitzen', 'Zach Louis': 'Charley'}" tt3860916,"{'Simone Landers': 'Thoomi', 'Martin Freeman': 'Andy', 'Marlee Jane McPherson-Dobbins': 'Rosie', 'Lily Anne McPherson-Dobbins': 'Rosie', 'Finlay Sjoberg': 'Rosie', 'Nova Sjoberg': 'Rosie', 'Susie Porter': 'Kay', 'Ella Barter': 'River Girl', 'Aiden Squire': 'River Boy', 'Alexandra Schulze': 'River Mother', 'Andy Rodoreda': 'River Father', 'Bruce R. Carter': 'Willie', 'Kris McQuade': 'Etta', 'Natasha Wanganeen': 'Josie', 'Shannon Mckenzie': 'Hunting Party'}" tt0938283,"{'Noah Ringer': 'Aang', 'Dev Patel': 'Prince Zuko', 'Nicola Peltz': 'Katara', 'Jackson Rathbone': 'Sokka', 'Shaun Toub': 'Uncle Iroh', 'Aasif Mandvi': 'Commander Zhao', 'Cliff Curtis': 'Fire Lord Ozai', 'Seychelle Gabriel': 'Princess Yue', 'Katharine Houghton': ""Katara's Grandma"", 'Francis Guinan': 'Master Pakku', 'Damon Gupton': 'Monk Gyatso', 'Summer Bishil': 'Azula', 'Randall Duk Kim': 'Old Man in Temple', ""John D'Alonzo"": ""Zhao's Assistant"", 'Keong Sim': 'Earthbending Father'}" tt0082348,"{'Nigel Terry': 'King Arthur', 'Helen Mirren': 'Morgana', 'Nicholas Clay': 'Lancelot', 'Cherie Lunghi': 'Guenevere', 'Paul Geoffrey': 'Perceval', 'Nicol Williamson': 'Merlin', 'Robert Addie': 'Mordred', 'Gabriel Byrne': 'Uther Pendragon', 'Keith Buckley': 'Uryens', 'Katrine Boorman': 'Igrayne', 'Liam Neeson': 'Gawain', 'Corin Redgrave': 'Cornwall', ""Niall O'Brien"": 'Kay', 'Patrick Stewart': 'Leondegrance', 'Clive Swift': 'Ector'}" tt0026714,"{'Ian Hunter': 'Theseus - Duke of Athens', 'Verree Teasdale': 'Hippolyta - Queen of the Amazons - Betrothed to Theseus', 'Hobart Cavanaugh': 'Philostrate - Master of Revels to Theseus', 'Dick Powell': 'Lysander - In Love with Hermia', 'Ross Alexander': 'Demetrius - In Love with Hermia', 'Olivia de Havilland': 'Hermia - In Love with Lysander (as Olivia de Haviland)', 'Jean Muir': 'Helena - In Love with Demetrius', 'Grant Mitchell': 'Egeus - Father to Hermia', 'Frank McHugh': 'Quince - the Carpenter', 'Dewey Robinson': 'Snug - the Joiner', 'James Cagney': 'Bottom - the Weaver', 'Joe E. Brown': 'Flute - the Bellows-Mender', 'Hugh Herbert': 'Snout - the Tinker', 'Otis Harlan': 'Starveling - the Tailor', 'Arthur Treacher': 'Epilogue'}" tt4912910,"{'Tom Cruise': 'Ethan Hunt', 'Henry Cavill': 'August Walker', 'Ving Rhames': 'Luther Stickell', 'Simon Pegg': 'Benji Dunn', 'Rebecca Ferguson': 'Ilsa Faust', 'Sean Harris': 'Solomon Lane', 'Angela Bassett': 'Erika Sloane', 'Vanessa Kirby': 'The White Widow', 'Michelle Monaghan': 'Julia', 'Wes Bentley': 'Erik', 'Frederick Schmidt': 'Zola', 'Alec Baldwin': 'Alan Hunley', 'Liang Yang': 'Lark Decoy', 'Kristoffer Joner': 'Nils Debruuk', 'Wolf Blitzer': 'Wolf Blitzer'}" tt1205537,"{'Chris Pine': 'Jack Ryan', 'Keira Knightley': 'Cathy Muller', 'Kevin Costner': 'Thomas Harper', 'Kenneth Branagh': 'Viktor Cherevin', 'Lenn Kudrjawizki': 'Constantin', 'Alec Utgoff': 'Aleksandr Borovsky', 'Peter Andersson': 'Dimitri Lemkov', 'Elena Velikanova': 'Katya', 'Nonso Anozie': 'Embee Deng', 'Seth Ayott': 'Teddy Hefferman', 'Colm Feore': 'Rob Behringer', 'Gemma Chan': 'Amy Chang', 'Aleksandar Aleksiev': ""Cherevin's Bodyguard"", 'Andrew Byron': ""Cherevin's Bodyguard"", 'Derek Lea': ""Cherevin's Bodyguard""}" tt2538128,"{'Jeff Fahey': 'Steve Foster', 'Sara Malakul Lane': 'Taryn Foster', 'Marc Ewins': 'Ryan Foster', 'John Rhys-Davies': 'Colonel Ralph Dillard', 'Iván Kamarás': 'Dr. Goldschein', 'Luke Healy': 'Lieutenant Perkins', 'Judit Fekete': 'Lacey', 'Zsófi Trecskó': 'Angelique', 'Fru Roszil': 'Ana', 'Peter Linka': 'C-160 Pilot', 'András Korcsmáros': 'Philippe - French Soldier', 'Tamás Deák': 'Stuart the Furrier', 'Declan Hannigan': 'Channel Attendant', 'Tamás Lengyel': 'Claude', 'Zoltan Erdelyi': 'Channel Guard'}" tt0101452,"{'Keanu Reeves': 'Ted', 'Alex Winter': 'Bill / Granny Preston', 'William Sadler': 'Grim Reaper', 'Joss Ackland': 'De Nomolos', 'Pam Grier': 'Ms. Wardroe', 'George Carlin': 'Rufus', 'Amy Stoch': 'Missy (as Amy Stock-Poynton)', 'Jim Martin': 'Sir James Martin', 'Hal Landon Jr.': 'Captain Logan', 'Annette Azcuy': 'Elizabeth', 'Sarah Trigger': 'Joanna', 'Chelcie Ross': 'Colonel Oats', 'Taj Mahal': 'Gatekeeper', 'Robert Noble': 'Bach', 'Hal Landon Sr.': 'Thomas Edison'}" tt0109045,"{'Hugo Weaving': 'Tick / Mitzi', 'Guy Pearce': 'Adam / Felicia', 'Terence Stamp': 'Bernadette', 'Rebel Penfold-Russell': 'Logowoman (as Rebel Russell)', 'John Casey': 'Bartender', 'June Marie Bennett': 'Shirley', 'Murray Davies': 'Miner', 'Frank Cornelius': 'Piano Player', 'Bob Boyce': 'Petrol Station Attendant', 'Leighton Picken': 'Young Adam', 'Maria Kmet': 'Ma', 'Joseph Kmet': 'Pa', 'Alan Dargin': 'Aboriginal Man', 'Bill Hunter': ""Robert 'Bob' Spart"", 'Julia Cortez': 'Cynthia Campos'}" tt2136808,"{'Jack Cullison': 'Ross Gans', 'Howard Cai': 'Kwan', 'Jonathan Brett': 'Ed', 'Colbert Alembert': 'Marcus', 'Andre Meadows': 'Doug', 'Julie Barzman': 'Kim', 'Alex Arleo': 'Delaney', 'Jenny Lin': 'Gina', 'Ed Callison': 'Buck Hollister', 'Diana Terranova': 'Lexa', 'Amanda Ward': 'Mellony Adams', 'Alex Zanger': 'Duncan', 'James E. Hurd Jr.': 'Danny Silver', 'Emily Addison': 'Emily', 'Piper Major': 'Meg'}" tt0058586,"{'Peter Sellers': 'Jacques Clouseau', 'Elke Sommer': 'Maria Gambrelli', 'George Sanders': 'Benjamin Ballon', 'Herbert Lom': 'Charles Dreyfus', 'Tracy Reed': 'Dominique Ballon', 'Graham Stark': 'Hercule LaJoy', 'Moira Redmond': 'Simone', 'Vanda Godsell': 'Madame LaFarge', 'Maurice Kaufmann': 'Pierre', 'Ann Lynn': 'Dudu', 'David Lodge': 'Georges', 'André Maranne': 'Francois', 'Martin Benson': 'Maurice', 'Burt Kwouk': 'Cato', 'Reginald Beckwith': 'Receptionist at nudist camp'}" tt0078163,"{'Peter Sellers': 'Chief Insp. Jacques Clouseau', 'Herbert Lom': 'Chief Insp. Charles Dreyfus', 'Burt Kwouk': 'Cato Fong', 'Dyan Cannon': 'Simone Legree', 'Robert Webber': 'Philippe Douvier', 'Tony Beckley': 'Guy Algo', 'Robert Loggia': 'Al Marchione', 'Paul Stewart': 'Julio Scallini', 'André Maranne': 'Sgt. François Chevalier (as Andre Maranne)', 'Graham Stark': 'Dr. Auguste Balls', 'Alfie Bass': 'Fernet', 'Sue Lloyd': 'Claude Russo', 'Danny Schiller': 'Cunny', 'Douglas Wilmer': 'Police Commissioner', 'Ferdy Mayne': 'Dr. Paul Laprone'}" tt0051786,"{'Marshall Thompson': 'Col. Edward Carruthers', 'Shirley Patterson': 'Ann Anderson (as Shawn Smith)', 'Kim Spalding': 'Col. Van Heusen', 'Ann Doran': 'Mary Royce', 'Dabbs Greer': 'Eric Royce', 'Paul Langton': 'Lt. James Calder', 'Robert Bice': 'Maj. John Purdue', 'Richard Benedict': 'Bob Finelli', 'Richard Hervey': 'Gino Finelli', 'Thom Carney': 'Joe Kienholz', 'Ray Corrigan': 'It'}" tt5160954,"{'Zech Johnson': 'Jonas', 'Sean Taylor': 'Damian', 'Randall Cropp': 'Matthew', 'Jeremy Michael Pereira': 'Rhodes', 'Christopher Cowley': 'Hunter', 'Harold Dennis': '1SG Johnson', 'Gemma Garcia': 'Rachel', 'Chelsea Taylor Leech': 'Karen', 'August Lysy': 'Conspiracy Theorist', 'Walt Sloan': 'Andrew Taylor', 'Joette Waters': 'Lisa'}" tt1679335,"{'Anna Kendrick': 'Poppy (voice)', 'Justin Timberlake': 'Branch (voice)', 'Zooey Deschanel': 'Bridget (voice)', 'Christopher Mintz-Plasse': 'King Gristle (voice)', 'Christine Baranski': 'Chef (voice)', 'Russell Brand': 'Creek (voice)', 'Gwen Stefani': 'DJ Suki (voice)', 'John Cleese': 'King Gristle Sr. (voice)', 'James Corden': 'Biggie (voice)', 'Jeffrey Tambor': 'King Peppy (voice)', 'Ron Funches': 'Cooper (voice)', 'Aino Jawo': 'Satin (voice)', 'Caroline Hjelt': 'Chenille (voice)', 'Kunal Nayyar': 'Guy Diamond (voice)', 'Quvenzhané Wallis': 'Harper (voice)'}" tt8560130,{'Stephanie Magee': '(voice)'} tt6408946,"{'Danni DanDan Gadigan': '(as Danni Dandan Gadigan)', 'Bill Oberst Jr.': 'Bull (voice)'}" tt9004516,"{'Thomas Freeley': 'Bongo Bananas', 'Bobbi Maxwell': 'Princess Sparklefrather', 'Maria Petrano': 'Burp', 'Carmen Piroli': 'Bull Boss', 'Kj Schrock': 'Nuke', 'Martin Singer': 'Chewflies', 'Charlie Suntress': 'Chubby', 'Evan Tramel': 'Captain Ripp', 'Chen Tsung': 'Boo Boo Squeal', 'Jacob Whiteshed': 'Frog'}" tt5936438,"{'Bobby Catalano': 'Trevor the T-Rex', 'Doc Phineas Kastle': 'Himself - Doc Phineas T. Kastle', 'William McNamara': 'General Ruff', 'Jason Pascoe': 'Benny'}" tt0312004,"{'Peter Sallis': 'Wallace / Hutch (voice)', 'Ralph Fiennes': 'Victor Quartermaine (voice)', 'Helena Bonham Carter': 'Lady Campanula Tottington (voice)', 'Peter Kay': 'PC Mackintosh (voice)', 'Nicholas Smith': 'Reverend Clement Hedges (voice)', 'Liz Smith': 'Mrs. Mulch (voice)', 'John Thomson': 'Mr. Windfall (voice)', 'Mark Gatiss': 'Miss Blight (voice)', 'Vincent Ebrahim': 'Mr. Caliche (voice)', 'Geraldine McEwan': 'Miss Thripp (voice)', 'Edward Kelsey': 'Mr. Growbag (voice)', 'Dicken Ashworth': 'Mr. Mulch (voice)', 'Robert Horvath': 'Mr. Dibber (voice)', 'Pete Atkin': 'Mr. Crock (voice)', 'Noni Lewis': 'Mrs. Girdling (voice)'}" tt3604958,"{'Fadi Awad': 'Himself', 'Mira Awad': 'Herself', 'David Broza': 'Himself', 'Steve Earle': 'Himself', 'Issa Freij': 'Himself', 'Steve Greenberg': 'Himself', 'The Jerusalem Youth Chorus': 'Themselves', 'Muhammad Mughrabi': 'Himself (as Muhamad Mughrabi)', 'Alon Nadel': 'Himself', 'Ariel Qassis': 'Himself', 'Gadi Seri': 'Himself', 'Elias Wakileh': 'Himself', 'Jean-Paul Zimbriz': 'Himself'}" tt5974388,"{'Mouna Hawa': 'Leila Bakhr', 'Sana Jammelieh': 'Salma', 'Shaden Kanboura': 'Nour', 'Mahmud Shalaby': 'Ziad Hamdi', 'Nisrin Abou-Hanna': ""Nour's mother"", 'Miri Abu': 'Landlady', 'Henry Andrawes': 'Wissam', 'Ali Assadi': 'First Match - Jamil', 'Elias Assadi': ""Elias's Father"", 'Ahlam Canaan': 'Dounia', 'Afaf Danien': 'Aunt', 'Aiman Daw': 'Saleh', 'Khawlah Hag-Debsy': ""Salma's mother"", 'Nahed Hamed': ""Ziad's sister""}" tt1928329,"{'Nuno Lopes': 'Sargento Francisco Xavier', 'Soraia Chaves': 'Martírio', 'Marisa Paredes': 'D. Filipa Sanches', 'John Malkovich': 'Duke of Wellington', 'Carloto Cotta': 'Tenente Pedro de Alencar', 'Victoria Guerra': 'Clarissa', 'Marcello Urgeghe': 'Major Jonathan Foster', 'Jemima West': 'Maureen', 'Afonso Pimentel': 'Zé Maria', 'Miguel Borges': 'Manuel Penabranca', 'Mathieu Amalric': 'Barão Marbot', 'Melvil Poupaud': 'Marechal Massena', 'Filipe Vargas': 'Vicente de Almeida', 'Adriano Luz': 'Bordalo', 'João Arrais': 'Idiot'}" tt0064395,"{'George Kennedy': 'Chris', 'James Whitmore': 'Levi', 'Monte Markham': 'Keno', 'Reni Santoni': 'Max', 'Bernie Casey': 'Cassie', 'Scott Thomas': 'P.J.', 'Joe Don Baker': 'Slater', 'Tony Davis': 'Emil', 'Michael Ansara': 'Col. Diego', 'Frank Silvera': 'Lobero', 'Wende Wagner': 'Tina', 'Sancho Gracia': 'Miguel', 'Luis Rivera': 'Lt. Prensa', 'George Rigaud': 'Gabriel (as Jorge Rigaud)', 'Fernando Rey': 'Quintero'}" tt5091014,"{'Levi Miller': 'Charlie Bucktin', 'Kevin Long': 'Jeffrey Lu', 'Toni Collette': 'Ruth Bucktin', 'Aaron L. McGrath': 'Jasper Jones', 'Nandalie Campbell Killick': 'Laura Wishart', 'Dan Wyllie': 'Wes Bucktin', 'Matt Nable': 'Sarge', 'Wilson Moore': 'Warwick Trent', 'Luke Hewitt': 'Coach', 'Cooper van Grootel': 'Batsman', 'Jack Kilrain': 'Cricketer', 'Jesse Callaghan': 'Cricketer', 'Igor Sas': 'Howard Daglish', 'Angourie Rice': 'Eliza Wishart', 'Susan Prior': 'Gwyn Wishart'}" tt1492842,"{'Christopher Denham': 'Kevin Wolfe', 'Lindsay Beamish': 'Jamie', 'Elizabeth Rice': 'Beth Dalewell', 'Paul Sparks': 'Tanner', 'Anna Camp': 'Adrienne Gilcrest', 'Phyllis Somerville': 'Ruby', 'Joel de la Fuente': 'Derek', 'Sara Balmas': 'French Film Girl 2', 'Agathe Biarrotte': 'French Film Girl 1', 'Heather Capuano': 'Studio Girl', 'Caitlin Carmichael': 'Nicole', 'Dina Deleasa': 'Girl in Park', 'Brenton Duplessie': 'EMT', 'Holley Fain': 'Denise Gilcrest'}" tt4779682,"{'Jason Statham': 'Jonas Taylor', 'Bingbing Li': 'Suyin (as Li Bingbing)', 'Rainn Wilson': 'Morris', 'Cliff Curtis': 'Mac', 'Winston Chao': 'Zhang', 'Shuya Sophia Cai': 'Meiying (as Sophia Cai)', 'Ruby Rose': 'Jaxx', 'Page Kennedy': 'DJ', 'Robert Taylor': 'Heller', 'Ólafur Darri Ólafsson': 'The Wall', 'Jessica McNamee': 'Lori', 'Masi Oka': 'Toshi', 'Raymond Vinten': 'Dive Control Technician', 'Hongmei Mai': 'Mother (as Mai Hongmei)', 'Wei Yi': 'Awesome Kid on Beach'}" tt7681902,"{'Fred Rogers': 'Himself (archive footage)', 'Joanne Rogers': 'Herself', 'John Rogers': 'Himself', 'Jim Rogers': 'Himself', 'Bill Isler': 'Himself', 'Hedda Sharapan': 'Herself', 'Junlei Li': 'Himself', 'Max King': 'Himself', 'Margaret Whitmer': 'Herself (as Margy Whitmer)', 'Tom Junod': 'Himself', 'Betty Seamans': 'Herself (as Elizabeth Seamans)', 'Joe Negri': 'Himself', 'David Newell': 'Himself', 'Elaine Crozier': 'Herself', 'George Wirth': 'Himself'}" tt6599064,{'Stéphane Lissner': 'Himself'} tt2833768,"{'Nolan Cook': 'Himself', 'Carla Fabrizio': 'Herself', 'Matt Groening': 'Himself', 'Molly Harvey': 'Herself', 'The Residents': 'The Residents'}" tt0389790,"{'Jerry Seinfeld': 'Barry B. Benson (voice)', 'Renée Zellweger': 'Vanessa Bloome (voice)', 'Matthew Broderick': 'Adam Flayman (voice)', 'Patrick Warburton': 'Ken (voice)', 'John Goodman': 'Layton T. Montgomery (voice)', 'Chris Rock': 'Mooseblood (voice)', 'Kathy Bates': 'Janet Benson (voice)', 'Barry Levinson': 'Martin Benson (voice)', 'Larry King': 'Bee Larry King (voice)', 'Ray Liotta': 'Ray Liotta (voice)', 'Sting': 'Sting (voice)', 'Oprah Winfrey': 'Judge Bumbleton (voice)', 'Larry Miller': 'Buzzwell (voice)', 'Megan Mullally': 'Trudy (voice)', 'Rip Torn': 'Lou Lo Duca (voice)'}" tt5363648,"{'April Rose': 'Cleo (voice)', 'Evan Tramel': 'Crash / Other Voices (voice)', 'Anthony Quintarius': 'Puffer (voice) (as Dr. Anthony Quintarius)'}" tt1235522,"{'Mark Wahlberg': 'Billy Taggart', 'Russell Crowe': 'Mayor Hostetler', 'Catherine Zeta-Jones': 'Cathleen Hostetler', 'Jeffrey Wright': 'Carl Fairbanks', 'Barry Pepper': 'Jack Valliant', 'Alona Tal': 'Katy Bradshaw', 'Natalie Martinez': 'Natalie Barrow', 'Michael Beach': 'Tony Jansen', 'Kyle Chandler': 'Paul Andrews', 'James Ransone': 'Todd Lancaster', 'Griffin Dunne': 'Sam Lancaster', 'Odessa Feaster': 'Secretary - Hostetler (as Odessa Sykes)', 'Britney Theriot': 'Valerie', 'Luis Tolentino': 'Mikey Tavarez', 'Tony Bentley': 'Judge'}" tt0102388,"{'Sam Waterston': 'Matthew Trant', 'Tess Harper': 'Abigail Trant', 'Gail Strickland': 'Marie Foster', 'Reese Witherspoon': 'Dani Trant', 'Jason London': 'Court Foster', 'Emily Warfield': 'Maureen Trant', 'Bentley Mitchum': 'Billy Sanders', 'Ernie Lively': 'Will Sanders', 'Dennis Letts': 'Doc White', 'Earleen Bergeron': 'Mrs. Sanders', 'Anna Chappell': 'Mrs. Taylor', 'Brandi Smith': 'Missy Trant', 'Sandi Smith': 'Missy Trant', 'Derek Ball': 'Foster Twin', 'Spencer Ball': 'Foster Twin'}" tt5758778,"{'Dwayne Johnson': 'Will Sawyer', 'Neve Campbell': 'Sarah Sawyer', 'Chin Han': 'Zhao Long Ji', 'Roland Møller': 'Kores Botha', 'Noah Taylor': 'Mr. Pierce', 'Byron Mann': 'Inspector Wu', 'Pablo Schreiber': 'Ben', 'McKenna Roberts': 'Georgia Sawyer', 'Noah Cottrell': 'Henry Sawyer', 'Hannah Quinlivan': 'Xia', 'Adrian Holmes': 'Ajani Okeke', 'Elfina Luk': 'Sergeant Han', 'Kevin Rankin': 'Ray', 'Gretal Montgomery': ""Ray's Wife"", 'Jett Klyne': ""Ray's Son""}" tt1268799,"{'Patton Oswalt': 'Mall Santa', 'Isabella Gielniak': 'Caren', 'Kal Penn': 'Kumar', 'Austin Bickel': 'Kid in Line', 'Inga R. Wilson': 'Mom in Line (as Inga Wilson)', 'John Cho': 'Harold', 'Bobby Lee': 'Kenneth Park', 'Thomas Lennon': 'Todd (as Tom Lennon)', 'Amir Blumenfeld': 'Adrian', 'Paula Garcés': 'Maria (as Paula Garces)', 'Danny Trejo': 'Mr. Perez', 'Marvin Cruz': 'Timo Perez', 'Allyson Lengers': 'Wafflebot Kid (as Allyson V. Lengers)', 'Gabriel Anderson': 'Wafflebot Kid', 'Eric Kissack': 'Wafflebot (voice)'}" tt1951261,"{'Bradley Cooper': 'Phil', 'Ed Helms': 'Stu', 'Zach Galifianakis': 'Alan', 'Justin Bartha': 'Doug', 'Ken Jeong': 'Mr. Chow', 'John Goodman': 'Marshall', 'Melissa McCarthy': 'Cassie', 'Jeffrey Tambor': 'Sid', 'Heather Graham': 'Jade', 'Mike Epps': 'Black Doug', 'Sasha Barrese': 'Tracy', 'Jamie Chung': 'Lauren', 'Sondra Currie': 'Linda', 'Gillian Vigman': 'Stephanie', 'Oliver Cooper': 'Pharmacy Assistant'}" tt4738802,"{'Alice Foulcher': 'Polly / Amy Cuthbert', 'Rowan Davie': 'Oliver Brook', 'Belinda Misevski': 'Ariel', 'Richard Davies': 'Jack Campbell', 'Andrew S. Gilbert': 'Stephen Cuthbert (as Andrew Gilbert)', 'Catherine Hill': 'Diane Cuthbert', 'Janine Watson': 'Patricia Clarke', 'Steve Mouzakis': 'Anthony', 'Lloyd Allison-Young': 'Simon', 'Nikita Leigh-Pritchard': 'Tiana, a supermarket chick', 'Christopher Kirby': 'Cameron Pollock, a US Customs officer', 'Benjamin Rigby': 'Evan, a casting director', 'Ming-Zhu Hii': 'Corrie, a director', 'Arthur Angel': 'Nick, a producer', 'Bill Allert': 'Nigel, a cinema patron'}" tt2767266,"{'Frida Giannini': 'Herself', 'Matvey Lykov': 'Himself'}" tt7137846,"{'Gabrielle Union': 'Shaun Russell', 'Billy Burke': 'Eddie', 'Richard Cabral': 'Duncan', 'Ajiona Alexus': 'Jasmine Russell', 'Levi Meaden': 'Sam', 'Seth Carr': 'Glover Russell', 'Mark Furze': 'Peter', 'Jason George': 'Justin Russell', 'Christa Miller': 'Maggie Harris', 'Damien Leake': 'Isaac Paulson'}" tt7260048,"{'Edie Falco': 'Carol', 'Jay Duplass': 'Chris', 'Kaitlyn Dever': 'Hildy', 'Ben Schwartz': 'Ted', 'Aaron Blakely': 'Shane', 'Emily Cowan': ""Hildy's Friend"", 'Alycia Delmore': 'Tara', 'Stephen Grenley': 'Phil', 'Saige Hawthorne': 'Flirting Girl', 'Louis Hobson': 'Matt', 'Charles Leggett': 'Tom', 'Tori Leos': ""Hildy's Friend"", 'Matt Malloy': 'Russell', 'Claudine Mboligikpelani Nako': 'Courtney', 'Mackenzy Petit': ""Hildy's Friend""}" tt2309260,"{'Reese Mishler': 'Reese Houser', 'Pfeifer Brown': 'Pfeifer Ross', 'Ryan Shoos': 'Ryan Shoos', 'Cassidy Gifford': 'Cassidy Spilker', 'Travis Cluff': 'Mr. Schwendiman', 'Price T. Morgan': 'Stage Boy (as Price Morgan)', 'Melissa Bratton': ""Pfeifer's Mom"", 'Theo Burkhardt': 'Rick Houser (as Théo Burkhardt)', 'David Herrara': 'David the Janitor', 'Gannon Del Fierro': 'Gannon', 'Mackie Burt': 'Cheerleader #1', 'Adrian Salas': 'Superstar Football Player', 'Mark Hales': 'Peasant #5', 'John Hales': 'The King', 'Shannon Wetzel': 'Ms. Shannon'}" tt6883152,"{'Gabriele Amorth': 'Himself', 'Robert Barron': 'Himself', 'William Friedkin': 'Himself'}" tt5725894,"{'Francesca Santoro': 'Amy', 'Stephen Manley': 'Henry', ""David O'Donnell"": 'Neal', 'London Grace': 'Martha (as Phyllis Spielman)', 'Liz Fenning': 'Jessica', 'Crystal Web': 'Devon', 'Kjai Block': 'Religious Man', 'Kim Shannon': 'Sally (as Kimberly Shannon)', 'Kris Marconi': 'Officer Mack', 'Anna Harr': 'Gabby', 'Aaron Moses': 'Stanley'}" tt5725894,"{'Francesca Santoro': 'Amy', 'Stephen Manley': 'Henry', ""David O'Donnell"": 'Neal', 'London Grace': 'Martha (as Phyllis Spielman)', 'Liz Fenning': 'Jessica', 'Crystal Web': 'Devon', 'Kjai Block': 'Religious Man', 'Kim Shannon': 'Sally (as Kimberly Shannon)', 'Kris Marconi': 'Officer Mack', 'Anna Harr': 'Gabby', 'Aaron Moses': 'Stanley'}" tt5725894,"{'Francesca Santoro': 'Amy', 'Stephen Manley': 'Henry', ""David O'Donnell"": 'Neal', 'London Grace': 'Martha (as Phyllis Spielman)', 'Liz Fenning': 'Jessica', 'Crystal Web': 'Devon', 'Kjai Block': 'Religious Man', 'Kim Shannon': 'Sally (as Kimberly Shannon)', 'Kris Marconi': 'Officer Mack', 'Anna Harr': 'Gabby', 'Aaron Moses': 'Stanley'}" tt0095990,"{'Michael Kenworthy': 'Jesse Wilson', 'Thor Van Lingen': 'Billy', 'Jason Hogan': 'Johnny', 'James Karen': 'Ed', 'Thom Mathews': 'Joey', 'Suzanne Snyder': 'Brenda', 'Marsha Dietlein': 'Lucy Wilson', 'Hanala Sagal': 'Aerobics Instructor (as Suzan Stadner)', 'Jonathan Terry': 'Colonel (as Jonathon Terry)', 'Dana Ashbrook': 'Tom Essex', 'Sally Smythe': ""Billy's Mom"", 'Allan Trautman': 'Tarman', 'Don Maxwell': ""Billy's Dad"", 'Reynold Cindrich': 'Soldier', 'Philip Bruns': 'Doc Mandel'}" tt5435476,"{'Christian Calloway': 'Homeless man', 'Elijah Collins': 'Youth 1', 'Joseph Cross': 'Joseph Burns', 'Jessy Hodges': 'Kendra', 'Billy Khoury': 'Woodworker', 'Kyle Koromaldi': 'Porsche Driver', 'C.S. Lee': 'Doug Park', 'Brian Leng': 'Chusuke Hasegawa', 'Ron Marasco': 'Tourist', 'Rya Meyers': 'Porsche Passenger', 'Shelley Mitchell': 'Cheryl', 'Alexia Rasmussen': 'Joanne Burns', 'Jade Sealey': 'Allison', 'Kelvin Yu': 'Andy', 'Junes Zahdi': 'Neighbor'}" tt0085470,"{'Rodney Dangerfield': 'Monty Capuletti', 'Joe Pesci': 'Nicky Cerone', 'Geraldine Fitzgerald': 'Mrs. Monahan', 'Candice Azzara': 'Rose Capuletti (as Candy Azzara)', 'Val Avery': 'Louie the Bartender', 'Tom Noonan': 'Paddy', 'Taylor Negron': 'Julio', 'Lili Haydn': 'Belinda Capuletti', 'Jeffrey Jones': 'Clive Barlow', 'Tom Ewell': 'Scrappleton', 'Jennifer Jason Leigh': 'Allison Capuletti', 'Jeff Altman': 'Bill Jones (as Jeffrey Altman)', 'David Vasquez': 'Hector', 'Kimberly McArthur': 'Ginger Jones', 'Frank Simpson': 'Father McIntyre'}" tt6580394,"{'Adrian Paul': 'Coleman', 'Dominique Swain': 'Juliette', 'Moose Ali Khan': 'Khalib', 'Mimi Davila': 'Donna', 'Zach Steffey': 'Benji', 'Jannica Olin': 'Alexis', 'Jason Tobias': 'Kurt', 'Joe Chambrello': 'J.C.', 'Shamar Philippe': 'Matthew', 'Monique Parent': 'Harriet (as Monique T. Parent)', 'Jes Selane': 'Henry', 'Kyle Butenhoff': 'Agent Michaels', 'Quinn Knox': 'Frankie', 'Sophia Thomas': 'Stevie', 'Anthony Cangialosi': 'David'}" tt3399112,"{'Larry Demery': 'Himself', 'Dock Ellis': 'Himself', 'Ron Howard': 'Himself'}" tt0061512,"{'Paul Newman': 'Luke', 'George Kennedy': 'Dragline', 'J.D. Cannon': 'Society Red', 'Lou Antonio': 'Koko', 'Robert Drivas': 'Loudmouth Steve', 'Strother Martin': 'Captain', 'Jo Van Fleet': 'Arletta', 'Clifton James': 'Carr', 'Morgan Woodward': 'Boss Godfrey', 'Luke Askew': 'Boss Paul', 'Marc Cavell': 'Rabbitt', 'Richard Davalos': 'Blind Dick', 'Robert Donner': 'Boss Shorty', 'Warren Finnerty': 'Tattoo', 'Dennis Hopper': 'Babalugats'}" tt0195714,"{'Devon Sawa': 'Alex Browning', 'Ali Larter': 'Clear Rivers', 'Kerr Smith': 'Carter Horton', 'Kristen Cloke': 'Valerie Lewton', 'Daniel Roebuck': 'Agent Weine', 'Roger Guenveur Smith': 'Agent Schreck', 'Chad Donella': 'Tod Waggner (as Chad E. Donella)', 'Seann William Scott': 'Billy Hitchcock', 'Tony Todd': 'Bludworth', 'Amanda Detmer': 'Terry Chaney', 'Brendan Fehr': 'George Waggner', 'Forbes Angus': 'Larry Murnau', 'Lisa Marie Caruk': 'Christa Marsh', 'Christine Chatelain': 'Blake Dreyer', 'Barbara Tyson': 'Barbara Browning'}" tt0083642,"{'Burt Reynolds': 'Sheriff Ed Earl Dodd', 'Dolly Parton': 'Mona Stangley', 'Dom DeLuise': 'Melvin', 'Charles Durning': 'Governor', 'Jim Nabors': 'Deputy Fred', 'Robert Mandan': 'Senator Wingwood', 'Lois Nettleton': 'Dulcie Mae', 'Theresa Merritt': 'Jewel', 'Noah Beery Jr.': 'Edsel (as Noah Beery)', 'Raleigh Bond': 'Mayor', 'Barry Corbin': 'C.J.', 'Ken Magee': 'Mansel', 'Mary Jo Catlett': 'Rita', 'Mary Louise Wilson': 'Modene', 'Howard K. Smith': 'Howard K. Smith'}" tt8033592,"{'Boran Jing': 'Jianqing', 'Dongyu Zhou': 'Xiaoxiao'}" tt0111686,"{'Jeff Davis': ""Freddy's Hand Double (as Jeffrey John Davis)"", 'Heather Langenkamp': 'Heather Langenkamp', 'Miko Hughes': 'Dylan', 'Matt Winston': 'Chuck', 'Rob LaBelle': 'Terry', 'David Newsom': 'Chase Porter', 'Wes Craven': 'Wes Craven', 'Marianne Maddalena': 'Marianne Maddalena', 'Gretchen Oehler': 'Script Supervisor', 'Tracy Middendorf': 'Julie', 'Cully Fredricksen': 'Limo Driver', 'Bodhi Elfman': 'TV Studio P.A.', 'Sam Rubin': 'Sam Rubin', 'Robert Englund': 'Robert Englund / Freddy Krueger', 'Claudia Haro': 'New Line Receptionist'}" tt0111686,"{'Jeff Davis': ""Freddy's Hand Double (as Jeffrey John Davis)"", 'Heather Langenkamp': 'Heather Langenkamp', 'Miko Hughes': 'Dylan', 'Matt Winston': 'Chuck', 'Rob LaBelle': 'Terry', 'David Newsom': 'Chase Porter', 'Wes Craven': 'Wes Craven', 'Marianne Maddalena': 'Marianne Maddalena', 'Gretchen Oehler': 'Script Supervisor', 'Tracy Middendorf': 'Julie', 'Cully Fredricksen': 'Limo Driver', 'Bodhi Elfman': 'TV Studio P.A.', 'Sam Rubin': 'Sam Rubin', 'Robert Englund': 'Robert Englund / Freddy Krueger', 'Claudia Haro': 'New Line Receptionist'}" tt0101917,"{'Robert Englund': 'Freddy Krueger', 'Lisa Zane': 'Maggie Burroughs', 'Shon Greenblatt': 'John Doe', 'Lezlie Deane': 'Tracy', 'Ricky Dean Logan': 'Carlos', 'Breckin Meyer': 'Spencer', 'Yaphet Kotto': 'Doc', 'Tom Arnold': 'Childless Man (as Mr. Tom Arnold)', 'Roseanne Barr': 'Childless Woman (as Mrs. Tom Arnold)', 'Elinor Donahue': 'Orphanage Woman', 'Johnny Depp': 'Guy on TV (as Oprah Noodlemantra)', 'Cassandra Rachel Friel': 'Little Maggie / Katherine Krueger', 'David Dunard': 'Kelly', 'Marilyn Rockafellow': 'Mrs. Burroughs', 'Virginia Peters': 'Woman in Plane'}" tt0417148,"{'Samuel L. Jackson': 'Neville Flynn', 'Julianna Margulies': 'Claire Miller', 'Nathan Phillips': 'Sean Jones', 'Rachel Blanchard': 'Mercedes', 'Flex Alexander': ""Three G's"", 'Kenan Thompson': 'Troy', 'Keith Dallas': 'Big Leroy (as Keith [Blackman] Dallas)', 'Lin Shaye': 'Grace', 'Bruce James': 'Ken', 'Sunny Mabrey': 'Tiffany', 'Casey Dubois': 'Curtis', 'Daniel Hogarth': 'Tommy', 'Gerard Plunkett': 'Paul', 'Terry Chen': 'Chen Leong', 'Elsa Pataky': 'Maria'}" tt0102266,"{'Bruce Willis': 'Joe Hallenbeck', 'Damon Wayans': 'Jimmy Dix', 'Chelsea Field': 'Sarah Hallenbeck', 'Noble Willingham': 'Sheldon Marcone', 'Taylor Negron': 'Milo', 'Danielle Harris': 'Darian Hallenbeck', 'Halle Berry': 'Cory', 'Bruce McGill': 'Mike Matthews', 'Badja Djola': 'Alley Thug', 'Kim Coates': 'Chet', 'Chelcie Ross': 'Senator Baynard', 'Joe Santos': 'Bessalo', 'Clarence Felder': 'McCaskey', 'Tony Longo': 'Big Ray Walton', 'Frank Collison': 'Pablo'}" tt0102266,"{'Bruce Willis': 'Joe Hallenbeck', 'Damon Wayans': 'Jimmy Dix', 'Chelsea Field': 'Sarah Hallenbeck', 'Noble Willingham': 'Sheldon Marcone', 'Taylor Negron': 'Milo', 'Danielle Harris': 'Darian Hallenbeck', 'Halle Berry': 'Cory', 'Bruce McGill': 'Mike Matthews', 'Badja Djola': 'Alley Thug', 'Kim Coates': 'Chet', 'Chelcie Ross': 'Senator Baynard', 'Joe Santos': 'Bessalo', 'Clarence Felder': 'McCaskey', 'Tony Longo': 'Big Ray Walton', 'Frank Collison': 'Pablo'}" tt1037705,"{'Denzel Washington': 'Eli', 'Gary Oldman': 'Carnegie', 'Mila Kunis': 'Solara', 'Ray Stevenson': 'Redridge', 'Jennifer Beals': 'Claudia', 'Evan Jones': 'Martz', 'Joe Pingue': 'Hoyt', 'Frances de la Tour': 'Martha (as Frances De La Tour)', 'Michael Gambon': 'George', 'Tom Waits': 'Engineer', 'Chris Browning': 'Hijack Leader', 'Richard Cetrone': 'Hijacker', 'Lateef Crowder': 'Hijacker / Construction Thug', 'Keith Splinter Davis': 'Hijacker (as Keith Davis)', 'Don Thai Theerathada': 'Hijacker (as Don Theerathada)'}" tt1690991,"{'Barry Atsma': 'Father bunny (voice)', 'Hanna Verboom': 'Melanie (voice)', 'Huub van der Lubbe': 'Zoo keeper (voice)', 'Marc-Marie Huijbregts': 'Snuffy (voice)', 'Isa Hoes': 'Mother bunny (voice)', 'Eva Poppink': 'Miffy (Nijntje) (voice)'}" tt7424200,"{'Greg Cipes': 'Beast Boy (voice)', 'Scott Menville': 'Robin (voice)', 'Khary Payton': 'Cyborg (voice)', 'Tara Strong': 'Raven (voice)', 'Hynden Walch': 'Starfire (voice)', 'Will Arnett': 'Slade (voice)', 'Kristen Bell': 'Jade Wilson (voice)', 'Eric Bauza': ""Aquaman / Stan Lee's Assistant (voice)"", 'Michael Bolton': 'Tiger (voice)', 'Kal-El Cage': 'Young Bruce Wayne (voice)', 'Nicolas Cage': 'Superman (voice)', 'Joey Cappabianca': 'Plastic Man (voice)', 'Greg Davies': 'Balloon Man (voice)', 'John DiMaggio': 'Guard / Synth Skate Voice (voice)', 'Halsey': 'Wonder Woman (voice)'}" tt5639446,"{'Ansel Elgort': 'Jonathan / John', 'Suki Waterhouse': 'Elena', 'Patricia Clarkson': 'Dr. Mina Nariman', 'Matt Bomer': 'Ross Craine', 'Douglas Hodge': 'Hans', 'Souleymane Sy Savane': 'Sembene', 'Shunori Ramanathan': 'Allison', 'Joe Egender': 'Myles', 'Ian Unterman': 'Josh', 'Alok Tewari': 'Leslie Nariman', 'Jeff Kim': 'Co-worker', 'Alaska L. McFadden': 'Party Girl', 'Ramses Torres': 'Perez'}" tt3874544,"{'Alec Baldwin': 'Boss Baby (voice)', 'Steve Buscemi': 'Francis Francis (voice)', 'Jimmy Kimmel': 'Dad (voice)', 'Lisa Kudrow': 'Mom (voice)', 'Tobey Maguire': 'Adult Tim / Narrator (voice)', 'Miles Bakshi': 'Tim (voice)', 'James McGrath': 'Wizzie / Elvis Impersonator (voice)', 'Conrad Vernon': 'Eugene (voice)', 'ViviAnn Yee': 'Staci (voice) (as Viviann Yee)', 'Eric Bell Jr.': 'Triplets (voice)', 'David Soren': 'Jimbo (voice)', 'Edie Mirman': 'Big Boss Baby (voice)', 'James Ryan': 'Story Bear (voice)', 'Walt Dohrn': 'Photographer (voice)', 'Jules Winter': 'Crying Boy / Little Boy / Boy (voice)'}" tt0061791,"{'Robert Morse': 'J. Pierpont Finch', 'Michele Lee': 'Rosemary Pilkington', 'Rudy Vallee': 'Jasper B. Biggley', ""Anthony 'Scooter' Teague"": 'Bud Frump (as Anthony Teague)', 'Maureen Arthur': 'Hedy LaRue', 'John Myhers': 'Bert O. Bratt', 'Carol Worthington': 'Lucille Krumholtz', 'Kathryn Reynolds': 'Miss Smith aka Smitty (as Kay Reynolds)', 'Ruth Kobart': 'Miss Jones', 'Sammy Smith': 'Twimble / Wally Womper', 'Jeff DeBenning': 'Gatch (as Jeff Debenning)', 'Janice Carroll': 'Brenda', 'Robert Q. Lewis': 'Tackaberry', 'Paul Hartman': 'Toynbee', 'Dan Tobin': 'Johnson'}" tt0126029,"{'Mike Myers': 'Shrek (voice)', 'Eddie Murphy': 'Donkey (voice)', 'Cameron Diaz': 'Princess Fiona (voice)', 'John Lithgow': 'Lord Farquaad (voice)', 'Vincent Cassel': 'Monsieur Hood (voice)', 'Peter Dennis': 'Ogre Hunter (voice)', 'Clive Pearse': 'Ogre Hunter (voice)', 'Jim Cummings': 'Captain of Guards (voice)', 'Bobby Block': 'Baby Bear (voice)', 'Chris Miller': 'Geppetto / Magic Mirror (voice)', 'Cody Cameron': 'Pinnochio / Three Pigs (voice)', 'Kathleen Freeman': 'Old Woman (voice)', 'Michael Galasso': 'Peter Pan (voice)', 'Christopher Knights': 'Blind Mouse (voice)', 'Simon J. Smith': 'Blind Mouse (voice)'}" tt0974015,"{'Ben Affleck': 'Batman / Bruce Wayne', 'Henry Cavill': 'Superman / Clark Kent', 'Amy Adams': 'Lois Lane', 'Gal Gadot': 'Wonder Woman / Diana Prince', 'Ezra Miller': 'The Flash / Barry Allen', 'Jason Momoa': 'Aquaman / Arthur Curry', 'Ray Fisher': 'Cyborg / Victor Stone', 'Jeremy Irons': 'Alfred', 'Diane Lane': 'Martha Kent', 'Connie Nielsen': 'Queen Hippolyta', 'J.K. Simmons': 'Commissioner Gordon', 'Ciarán Hinds': 'Steppenwolf (voice)', 'Amber Heard': 'Mera', 'Joe Morton': 'Silas Stone', 'Lisa Loven Kongsli': 'Menalippe'}" tt2126355,"{'Dwayne Johnson': 'Raymond Gaines', 'Carla Gugino': 'Emma Gaines', 'Alexandra Daddario': 'Blake Gaines', 'Ioan Gruffudd': 'Daniel Riddick', 'Archie Panjabi': 'Serena Johnson', 'Paul Giamatti': 'Dr. Lawrence Hayes', 'Hugo Johnstone-Burt': 'Ben Taylor', 'Art Parkinson': 'Ollie Taylor', 'Will Yun Lee': 'Dr. Kim Park', 'Kylie Minogue': 'Susan Riddick', 'Colton Haynes': ""Joby O'Leary"", 'Todd Williams': 'Marcus', 'Matt Gerald': 'Harrison', 'Alec Utgoff': 'Alexi', 'Marissa Neitling': 'Phoebe'}" tt0351283,"{'Ben Stiller': 'Alex (voice)', 'Chris Rock': 'Marty (voice)', 'David Schwimmer': 'Melman (voice)', 'Jada Pinkett Smith': 'Gloria (voice)', 'Sacha Baron Cohen': 'Julien (voice)', 'Cedric the Entertainer': 'Maurice (voice)', 'Andy Richter': 'Mort (voice)', 'Tom McGrath': 'Skipper / Fossa / Panicky Man on Subway (voice)', 'Christopher Knights': 'Private (voice)', 'Chris Miller': 'Kowalski (voice)', 'Conrad Vernon': 'Mason (voice)', 'Eric Darnell': 'Zoo Announcer / Lemur #1 / Fossa / Subway Car Announcer (voice)', 'David Cowgill': 'Police Horse (voice)', 'Stephen Apostolina': 'Police Officer (voice) (as Steve Apostolina)', 'Elisa Gabrielli': 'Old Lady (voice)'}" tt0441773,"{'Jack Black': 'Po (voice)', 'Dustin Hoffman': 'Shifu (voice)', 'Angelina Jolie': 'Tigress (voice)', 'Ian McShane': 'Tai Lung (voice)', 'Jackie Chan': 'Monkey (voice)', 'Seth Rogen': 'Mantis (voice)', 'Lucy Liu': 'Viper (voice)', 'David Cross': 'Crane (voice)', 'Randall Duk Kim': 'Oogway (voice)', 'James Hong': 'Mr. Ping (voice)', 'Dan Fogler': 'Zeng (voice)', 'Michael Clarke Duncan': 'Commander Vachir (voice)', 'Wayne Knight': 'Gang Boss (voice)', 'Kyle Gass': 'KG Shaw (voice)', 'JR Reed': 'JR Shaw (voice)'}" tt4624424,"{'Andy Samberg': 'Junior (voice)', 'Katie Crown': 'Tulip (voice)', 'Kelsey Grammer': 'Hunter (voice)', 'Jennifer Aniston': 'Sarah Gardner (voice)', 'Ty Burrell': 'Henry Gardner (voice)', 'Anton Starkman': 'Nate Gardner (voice)', 'Keegan-Michael Key': 'Alpha Wolf (voice)', 'Jordan Peele': 'Beta Wolf (voice)', 'Danny Trejo': 'Jasper (voice)', 'Stephen Kramer Glickman': 'Pigeon Toady / Additional Voices (voice)', 'Christopher Nicholas Smith': 'Dougland (voice) (as Chris Smith)', 'Awkwafina': 'Quail (voice)', 'Ike Barinholtz': 'Miscellaneous Storks (voice)', 'Jorma Taccone': 'Miscellaneous Storks (voice)', 'Amanda Lund': 'Miscellaneous Storks (voice)'}" tt1935859,"{'Eva Green': 'Miss Peregrine', 'Asa Butterfield': 'Jake', 'Samuel L. Jackson': 'Barron', 'Judi Dench': 'Miss Avocet', 'Rupert Everett': 'Ornithologist', 'Allison Janney': 'Dr. Golan', ""Chris O'Dowd"": 'Frank', 'Terence Stamp': 'Abe', 'Ella Purnell': 'Emma', 'Finlay MacMillan': 'Enoch', 'Lauren McCrostie': 'Olive', 'Hayden Keeler-Stone': 'Horace', 'Georgia Pemberton': 'Fiona', 'Milo Parker': 'Hugh', 'Raffiella Chapman': 'Claire'}" tt0063829,"{'Lucille Ball': 'Helen North Beardsley', 'Henry Fonda': 'Frank Beardsley', 'Van Johnson': 'Warrant Officer Darrel Harrison', 'Louise Troy': 'Madeleine Love', 'Sidney Miller': 'Dr. Ashford', 'Tom Bosley': 'Family Doctor', 'Nancy Howard': 'Nancy Beardsley', 'Walter Brooke': 'Howard Beardsley', 'Tim Matheson': 'Mike Beardsley (as Tim Matthieson)', 'Gil Rogers': 'Rusty Beardsley', 'Nancy Roth': 'Rosemary Beardsley', 'Gary Goetzman': 'Greg Beardsley', 'Morgan Brittany': 'Louise Beardsley (as Suzanne Cupito)', ""Holly O'Brien"": 'Susan Beardsley', 'Michele Tobin': 'Veronica Beardsley'}" tt1446192,"{'Chris Pine': 'Jack Frost (voice)', 'Alec Baldwin': 'North (voice)', 'Jude Law': 'Pitch (voice)', 'Isla Fisher': 'Tooth (voice)', 'Hugh Jackman': 'Bunny (voice)', 'Dakota Goyo': 'Jamie Bennett (voice)', 'Khamani Griffin': 'Caleb (voice)', 'Kamil McFadden': 'Claude (voice)', 'Georgie Grieve': 'Sophie Bennett (voice)', 'Emily Nordwind': ""Jamie's Mom / Jack's Mother (voice)"", 'Jacob Bertrand': 'Monty (voice)', 'Olivia Mattingly': ""Pippa / Jack's Sister (voice)"", 'Dominique Grund': 'Cupcake (voice)', 'Ryan Crego': 'Burgess Dog Walker (voice)', 'April Lawrence': 'Burgess Pedestrian #1 (voice)'}" tt0083767,"{'Hal Holbrook': 'Henry Northrup (segment ""The Crate"")', 'Adrienne Barbeau': 'Wilma Northrup (segment ""The Crate"")', 'Fritz Weaver': 'Dexter Stanley (segment ""The Crate"")', 'Leslie Nielsen': 'Richard Vickers (segment ""Something To Tide You Over"")', 'Carrie Nye': 'Sylvia Grantham (segment ""Father\'s Day"")', 'E.G. Marshall': 'Upson Pratt (segment ""They\'re Creeping Up On You"")', 'Viveca Lindfors': 'Aunt Bedelia (segment ""Father\'s Day"")', 'Ed Harris': 'Hank Blaine (segment ""Father\'s Day"")', 'Ted Danson': 'Harry Wentworth (segment ""Something To Tide You Over)', 'Stephen King': 'Jordy Verrill (segment ""The Lonesome Death of Jordy Verrill"")', 'Warner Shook': 'Richard Grantham (segment ""Father\'s Day"")', 'Robert Harper': 'Charlie Gereson (segment ""The Crate"")', 'Elizabeth Regan': 'Cass Blaine (segment ""Father\'s Day"")', 'Gaylen Ross': 'Becky Vickers (segment ""Something To Tide You Over"")', 'Jon Lormer': 'Nathan Grantham (segment ""Father\'s Day"")'}" tt0082250,"{'Charles Bronson': 'Paul Kersey', 'Jill Ireland': 'Geri Nichols', 'Vincent Gardenia': 'Det. Frank Ochoa', 'J.D. Cannon': 'New York D.A.', 'Anthony Franciosa': 'Herman Baldwin', 'Ben Frank': 'Inspector Lt. Mankiewicz', 'Robin Sherwood': 'Carol Kersey', 'Silvana Gallardo': 'Rosario', 'Robert F. Lyons': 'Fred McKenzie', 'Michael Prince': 'Elliott Cass', 'Drew Snyder': 'Deputy Comm. Hawkins', 'Paul Lambert': 'New York Police Comm.', 'Thomas F. Duffy': 'Nirvana (as Thomas Duffy)', 'Kevyn Major Howard': 'Stomper', 'Stuart K. Robinson': 'Jiver'}" tt3230934,"{'Cody Wilson': 'Himself', 'Greg Bokor': 'Himself', 'Leah Gunn Barrett': 'Herself', 'Keith Coniglio': 'Himself', 'Angela Giron': 'Herself', 'Shaina Harrison': 'Herself', 'Victor Head': 'Himself', 'Phillip Hofmeister': 'Himself', 'Anthony L. Herbert': 'Himself', 'James Jacobs': 'Himself', 'Dan Kahan': 'Himself', 'Sanford Levinson': 'Himself', 'Terry Maketa': 'Himself', 'John Morse': 'Himself', 'Thomas Szczepanski': 'Himself'}" tt0245803,"{'Yun-Fat Chow': 'Monk With No Name (as Chow Yun-Fat)', 'Seann William Scott': 'Kar', 'Jaime King': 'Jade', 'Karel Roden': 'Strucker', 'Victoria Smurfit': 'Nina', 'Marcus Jean Pirae': 'Mr. Funktastic', 'Mako': 'Mr. Kojima', 'Roger Yuan': 'Master Monk', 'K.C. Collins': 'Sax (as Chris Collins)', 'Sean Bell': 'Diesel', 'Kishaya Dudley': 'DV', 'Rob Archer': 'Buzz', 'Mauricio Rodas': 'Wicho', 'Bayo Akinfemi': 'Shade', 'Russell Yuen': 'Brother Tenzin'}" tt0060921,"{'Carl Reiner': 'Walt Whittaker', 'Eva Marie Saint': 'Elspeth Whittaker', 'Alan Arkin': 'Lt. Rozanov', 'Brian Keith': 'Police Chief Link Mattocks', 'Jonathan Winters': 'Norman Jonas', 'Paul Ford': 'Fendall Hawkins', 'Theodore Bikel': 'The Russian Captain', ""Tessie O'Shea"": 'Alice Foss', 'John Phillip Law': 'Alexei Kolchin', 'Ben Blue': 'Luther Grilk', 'Andrea Dromm': 'Alison Palmer', 'Sheldon Collins': 'Pete Whittaker (as Sheldon Golomb)', 'Guy Raymond': 'Lester Tilly', 'Cliff Norton': 'Charlie Hinkson', 'Richard Schaal': 'Oscar Maxwell'}" tt0088915,"{'Michael Blevins': 'Mark', 'Yamil Borges': 'Morales', 'Jan Gan Boyd': 'Connie', 'Sharon Brown': 'Kim', 'Gregg Burge': 'Richie', 'Michael Douglas': 'Zach', 'Cameron English': 'Paul', 'Tony Fields': 'Al', 'Nicole Fosse': 'Kristine', 'Vicki Frederick': 'Sheila', 'Michelle Johnston': 'Bebe', 'Janet Jones': 'Judy', 'Pam Klinger': 'Maggie', 'Audrey Landers': 'Val', 'Terrence Mann': 'Larry'}" tt0094118,"{'Jason Bateman': 'Todd Howard', 'Kim Darby': 'Professor Brooks', 'John Astin': 'Dean Dunn', 'Paul Sand': 'Coach Finstock', 'James Hampton': 'Uncle Harold', 'Mark Holton': 'Chubby', 'Estee Chandler': 'Nicki', 'Robert Neary': 'Gustavson', 'Stuart Fratkin': 'Stiles', 'Beth Miller': 'Lisa (as Beth Ann Miller)', 'Rachel Sharp': 'Emily', 'David Burton': 'Peter', 'William H. Burton Jr.': 'Pug (as William H. Burton)', 'Kathleen Freeman': 'Admissions Lady', 'Eric Matthew': 'Admissions Kid'}" tt0892782,"{'Reese Witherspoon': 'Susan Murphy / Ginormica (voice)', 'Seth Rogen': 'B.O.B. (voice)', 'Hugh Laurie': 'Dr. Cockroach Ph.D. (voice)', 'Will Arnett': 'The Missing Link (voice)', 'Kiefer Sutherland': 'General W.R. Monger (voice)', 'Rainn Wilson': 'Gallaxhar (voice)', 'Stephen Colbert': 'President Hathaway (voice)', 'Paul Rudd': 'Derek Dietl (voice)', 'Julie White': 'Wendy Murphy (voice)', 'Jeffrey Tambor': 'Carl Murphy (voice)', 'Amy Poehler': 'Computer (voice)', 'Ed Helms': 'News Reporter (voice)', 'Renée Zellweger': 'Katie (voice)', 'John Krasinski': 'Cuthbert (voice)', 'Sean Bishop': 'Private Bullhorn / Helicopter Pilot / Advisor Ortega (voice)'}" tt2091256,"{'Kevin Hart': 'George (voice)', 'Ed Helms': 'Captain Underpants / Mr. Krupp (voice)', 'Nick Kroll': 'Professor Poopypants (voice)', 'Thomas Middleditch': 'Harold (voice)', 'Jordan Peele': 'Melvin (voice)', 'Kristen Schaal': 'Edith (voice)', 'DeeDee Rescher': 'Ms. Ribble (voice) (as Dee Dee Rescher)', 'Brian Posehn': 'Mr. Rected (voice)', 'David Soren': 'Tommy (voice)', 'Mel Rodriguez': 'Mr. Fyde (voice)', 'Susan Fitzer': 'Ms. Dayken (voice)', 'Lynnanne Zager': ""George's Mom (voice)"", 'Tiffany Lauren Bennicke': 'Sad Girl (voice) (as Tiffany Bennike)', 'James Ryan': 'Mime (voice)', 'Leslie David Baker': 'Officer McPiggly (voice)'}" tt0062803,"{'Dick Van Dyke': 'Caractacus Potts', 'Sally Ann Howes': 'Truly Scrumptious', 'Lionel Jeffries': 'Grandpa Potts', 'Gert Fröbe': 'Baron Bomburst (as Gert Frobe)', 'Anna Quayle': 'Baroness Bomburst', 'Benny Hill': 'Toymaker', 'James Robertson Justice': 'Lord Scrumptious', 'Robert Helpmann': 'Child Catcher', 'Heather Ripley': 'Jemima', 'Adrian Hall': 'Jeremy', 'Barbara Windsor': 'Blonde', 'Davy Kaye': 'Admiral', 'Alexander Doré': 'First Spy (as Alexander Dore)', 'Bernard Spear': 'Second Spy', 'Stanley Unwin': 'Chancellor'}" tt1646971,"{'Jay Baruchel': 'Hiccup (voice)', 'Cate Blanchett': 'Valka (voice)', 'Gerard Butler': 'Stoick (voice)', 'Craig Ferguson': 'Gobber (voice)', 'America Ferrera': 'Astrid (voice)', 'Jonah Hill': 'Snotlout (voice)', 'Christopher Mintz-Plasse': 'Fishlegs (voice)', 'T.J. Miller': 'Tuffnut (voice)', 'Kristen Wiig': 'Ruffnut (voice)', 'Djimon Hounsou': 'Drago (voice)', 'Kit Harington': 'Eret (voice)', 'Kieron Elliott': 'Hoark the Haggard (voice)', 'Philip McGrade': 'Starkard (voice)', 'Andrew Ableson': 'Ug (voice)', 'Gideon Emery': 'Teeny (voice)'}" tt0892769,"{'Jay Baruchel': 'Hiccup (voice)', 'Gerard Butler': 'Stoick (voice)', 'Craig Ferguson': 'Gobber (voice)', 'America Ferrera': 'Astrid (voice)', 'Jonah Hill': 'Snotlout (voice)', 'Christopher Mintz-Plasse': 'Fishlegs (voice)', 'T.J. Miller': 'Tuffnut (voice)', 'Kristen Wiig': 'Ruffnut (voice)', 'Robin Atkin Downes': 'Ack (voice)', 'Philip McGrade': 'Starkard (voice)', 'Kieron Elliott': 'Hoark the Haggard (voice)', 'Ashley Jensen': 'Phlegma the Fierce (voice)', 'David Tennant': 'Spitelout (voice)'}" tt7690670,"{'Trevor Jackson': 'Youngblood Priest', 'Jason Mitchell': 'Eddie', 'Michael Kenneth Williams': 'Scatter', 'Lex Scott Davis': 'Georgia', 'Jennifer Morrison': 'Detective Mason', 'Kaalan Walker': ""Juju (as Kaalan 'KR' Walker)"", 'Esai Morales': 'Adalberto Gonzalez', 'Andrea Londo': 'Cynthia', 'Big Bank Black': 'Q', 'Big Boi': ""Mayor Atkins (as Antwan 'Big Boi' Patton)"", 'Jacob Ming-Trent': 'Fat Freddy', 'Brian F. Durkin': 'Officer Turk Franklin (as Brian Durkin)', 'Dominique Madison': 'Rochelle', 'Angel Love': 'Hot Coco', 'Terayle Hill': 'Dee'}" tt0067741,"{'Richard Roundtree': 'John Shaft', 'Moses Gunn': 'Bumpy Jonas', 'Charles Cioffi': 'Vic Androzzi', 'Christopher St. John': 'Ben Buford', 'Gwenn Mitchell': 'Ellie Moore', 'Lawrence Pressman': 'Tom Hannon', 'Victor Arnold': 'Charlie', 'Sherri Brewer': 'Marcy', 'Rex Robbins': 'Rollie', 'Camille Yarbrough': 'Dina Greene', 'Margaret Warncke': 'Linda', 'Joseph Leon': 'Byron Leibowitz', 'Arnold Johnson': 'Cul', 'Dominic Barto': 'Patsy', 'George Strus': 'Carmen'}" tt0095348,"{'Keenen Ivory Wayans': 'Jack Spade', 'Bernie Casey': 'John Slade', 'Antonio Fargas': 'Flyguy', 'Steve James': 'Kung Fu Joe', 'Isaac Hayes': 'Hammer', 'Jim Brown': 'Slammer', ""Ja'net DuBois"": 'Ma Bell', 'Dawnn Lewis': 'Cheryl', 'John Vernon': 'Mr. Big', 'Clu Gulager': 'Lt. Baker', 'Kadeem Hardison': 'Willie', 'Damon Wayans': 'Leonard', 'George James': 'Bruno', 'Marc Figueroa': 'Knuckles', 'Robert Colbert': 'Farrell'}" tt0111161,"{'Tim Robbins': 'Andy Dufresne', 'Morgan Freeman': ""Ellis Boyd 'Red' Redding"", 'Bob Gunton': 'Warden Norton', 'William Sadler': 'Heywood', 'Clancy Brown': 'Captain Hadley', 'Gil Bellows': 'Tommy', 'Mark Rolston': 'Bogs Diamond', 'James Whitmore': 'Brooks Hatlen', 'Jeffrey DeMunn': '1946 D.A.', 'Larry Brandenburg': 'Skeet', 'Neil Giuntoli': 'Jigger', 'Brian Libby': 'Floyd', 'David Proval': 'Snooze', 'Joseph Ragno': 'Ernie', 'Jude Ciccolella': 'Guard Mert'}" tt0051525,"{'Tony Curtis': ""John 'Joker' Jackson"", 'Sidney Poitier': 'Noah Cullen', 'Theodore Bikel': 'Sheriff Max Muller', 'Charles McGraw': 'Capt. Frank Gibbons', 'Lon Chaney Jr.': 'Big Sam (as Lon Chaney)', 'King Donovan': 'Solly', 'Claude Akins': 'Mack', 'Lawrence Dobkin': 'Editor', 'Whit Bissell': 'Lou Gans', ""Carl 'Alfalfa' Switzer"": 'Angus (as Carl Switzer)', 'Kevin Coughlin': 'Billy', 'Cara Williams': ""Billy's Mother""}" tt0313443,"{'Denzel Washington': 'Matt Lee Whitlock', 'Eva Mendes': 'Alex Diaz Whitlock', 'Sanaa Lathan': 'Ann Merai Harrison', 'Dean Cain': 'Chris Harrison', 'John Billingsley': 'Chae', 'Robert Baker': 'Tony Dalton', 'Alex Carter': 'Cabot', 'Antoni Corone': 'Deputy Baste', 'Terry Loughlin': 'Agent Stark', 'Nora Dunn': 'Dr. Donovan', 'James Murtaugh': 'Dr. Frieland', 'Peggy Sheffield': 'Judy Anderson', 'Evelyn Brooks': ""Judy's Mom"", 'Eric Hissom': 'Hotel Clerk', 'Tom Hillmann': 'Living Gift Salesman (as Tom Hilmann)'}" tt0087800,"{'John Saxon': 'Lt. Thompson', 'Ronee Blakley': 'Marge Thompson', 'Heather Langenkamp': 'Nancy Thompson', 'Amanda Wyss': 'Tina Gray', 'Jsu Garcia': 'Rod Lane (as Nick Corri)', 'Johnny Depp': 'Glen Lantz', 'Charles Fleischer': 'Dr. King', 'Joseph Whipp': 'Sgt. Parker', 'Robert Englund': 'Fred Krueger', 'Lin Shaye': 'Teacher', 'Joe Unger': 'Sgt. Garcia', 'Mimi Craven': 'Nurse (as Mimi Meyer-Craven)', 'Jack Shea': 'Minister', 'Ed Call': 'Mr. Lantz', 'Sandy Lipton': 'Mrs. Lantz'}" tt0089901,"{'Fred Ward': 'Remo Williams', 'Joel Grey': 'Chiun', 'Wilford Brimley': 'Harold Smith', 'J.A. Preston': 'Conn MacCleary', 'George Coe': 'Gen. Scott Watson', 'Charles Cioffi': 'George Grove', 'Kate Mulgrew': 'Maj. Rayner Fleming', 'Patrick Kilpatrick': 'Stone', 'Michael Pataki': 'Jim Wilson', 'Davenia McFadden': 'N.Y. Traffic Control Cop', 'Cosie Costa': 'Pvt. Damico', 'J.P. Romano': 'Boomer #1', 'Joel Kramer': 'Boomer #2 (as Joel J. Kramer)', 'Frank Ferrara': 'Boomer #3', 'Marv Albert': 'Sports Announcer (voice)'}" tt5220122,"{'Adam Sandler': 'Dracula (voice)', 'Andy Samberg': 'Johnny (voice)', 'Selena Gomez': 'Mavis (voice)', 'Kevin James': 'Frankenstein (voice)', 'Fran Drescher': 'Eunice (voice)', 'Steve Buscemi': 'Wayne (voice)', 'Molly Shannon': 'Wanda (voice)', 'David Spade': 'Griffin (voice)', 'Keegan-Michael Key': 'Murray (voice)', 'Jim Gaffigan': 'Van Helsing (voice)', 'Kathryn Hahn': 'Ericka (voice)', 'Asher Blinkoff': 'Dennis (voice)', 'Chris Parnell': 'Stan / Fish Man (voice)', 'Joe Jonas': 'The Kraken (voice)', 'Chrissy Teigen': 'Crystal (voice)'}" tt1179056,"{'Jackie Earle Haley': 'Freddy Krueger', 'Kyle Gallner': 'Quentin Smith', 'Rooney Mara': 'Nancy Holbrook', 'Katie Cassidy': 'Kris Fowles', 'Thomas Dekker': 'Jesse Braun', 'Kellan Lutz': 'Dean Russell', 'Clancy Brown': 'Alan Smith', 'Connie Britton': 'Dr. Gwen Holbrook', 'Lia D. Mortensen': 'Nora Fowles (as Lia Mortensen)', 'Julianna Damm': 'Little Kris', 'Christian Stolte': ""Jesse's Father"", 'Katie Schooping Knight': 'Creepy Girl #1', 'Hailey Schooping Knight': 'Creepy Girl #2', 'Leah Uteg': 'Creepy Girl #3', 'Don Robert Cass': 'History Teacher'}" tt6772950,"{'Lucy Hale': 'Olivia Barron', 'Tyler Posey': 'Lucas Moreno', 'Violett Beane': 'Markie Cameron', 'Hayden Szeto': 'Brad Chang', 'Sophia Ali': 'Penelope Amari', 'Nolan Gerard Funk': 'Tyson Curran', 'Landon Liboiron': 'Carter / Sam Meehan', 'Sam Lerner': ""Ronald 'Ronnie' Wakowski"", 'Tom Choi': 'Officer Han Chang', 'Aurora Perrineau': 'Giselle Hammond', 'Gregg Daniel': 'Detective Kranis', 'Brady Smith': 'Roy Cameron', 'Vera Taylor': 'Inez Reyes', 'Ezmie Garcia': ""Young Inez / Inez's Granddaughter"", 'Andrew Howard': 'Randall Himoff'}" tt1540011,"{'James Allen McCune': 'James', 'Callie Hernandez': 'Lisa Arlington', 'Corbin Reid': 'Ashley', 'Brandon Scott': 'Peter', 'Wes Robinson': 'Lane', 'Valorie Curry': 'Talia'}" tt2660888,"{'Chris Pine': 'Captain James T. Kirk', 'Zachary Quinto': 'Commander Spock', 'Karl Urban': ""Doctor 'Bones' McCoy"", 'Zoe Saldana': 'Lieutenant Uhura', 'Simon Pegg': ""Montgomery 'Scotty' Scott"", 'John Cho': 'Sulu', 'Anton Yelchin': 'Chekov', 'Idris Elba': 'Krall', 'Sofia Boutella': 'Jaylah', 'Joe Taslim': 'Manas', 'Lydia Wilson': 'Kalara', 'Deep Roy': 'Keenser', 'Melissa Roxburgh': 'Ensign Syl', 'Anita Brown': 'Tyvanna', 'Doug Jung': 'Ben'}" tt2660888,"{'Chris Pine': 'Captain James T. Kirk', 'Zachary Quinto': 'Commander Spock', 'Karl Urban': ""Doctor 'Bones' McCoy"", 'Zoe Saldana': 'Lieutenant Uhura', 'Simon Pegg': ""Montgomery 'Scotty' Scott"", 'John Cho': 'Sulu', 'Anton Yelchin': 'Chekov', 'Idris Elba': 'Krall', 'Sofia Boutella': 'Jaylah', 'Joe Taslim': 'Manas', 'Lydia Wilson': 'Kalara', 'Deep Roy': 'Keenser', 'Melissa Roxburgh': 'Ensign Syl', 'Anita Brown': 'Tyvanna', 'Doug Jung': 'Ben'}" tt0078346,"{'Marlon Brando': 'Jor-El', 'Gene Hackman': 'Lex Luthor', 'Christopher Reeve': 'Superman / Clark Kent', 'Ned Beatty': 'Otis', 'Jackie Cooper': 'Perry White', 'Glenn Ford': 'Pa Kent', 'Trevor Howard': '1st Elder', 'Margot Kidder': 'Lois Lane', ""Jack O'Halloran"": 'Non', 'Valerie Perrine': 'Eve Teschmacher', 'Maria Schell': 'Vond-Ah', 'Terence Stamp': 'General Zod', 'Phyllis Thaxter': 'Ma Kent', 'Susannah York': 'Lara', 'Jeff East': 'Young Clark Kent'}" tt0114069,"{'Dustin Hoffman': 'Sam Daniels', 'Rene Russo': 'Robby Keough', 'Morgan Freeman': 'General Billy Ford', 'Kevin Spacey': 'Casey Schuler', 'Cuba Gooding Jr.': 'Major Salt', 'Donald Sutherland': 'General Donald McClintock', 'Patrick Dempsey': 'Jimbo Scott', 'Zakes Mokae': 'Dr. Benjamin Iwabi', 'Malick Bowens': 'Dr. Raswani', 'Susan Lee Hoffman': 'Dr. Lisa Aronson', 'Benito Martinez': 'Dr. Julio Ruiz', 'Bruce Jarchow': 'Dr. Mascelli', 'Leland Hayward III': 'Henry Seward', 'Daniel Chodos': 'Rudy Alvarez', 'Dale Dye': 'Colonel Briggs'}" tt0092710,"{'Whoopi Goldberg': 'Bernice Rhodenbarr', 'Bobcat Goldthwait': 'Carl Hefler', 'G.W. Bailey': 'Ray Kirschman', 'Lesley Ann Warren': 'Dr. Cynthia Sheldrake', 'James Handy': 'Carson Verrill', 'Anne De Salvo': 'Detective Todras (as Anne DeSalvo)', 'John Goodman': 'Detective Nyswander', 'Elizabeth Ruscio': 'Frankie', 'Vyto Ruginis': 'K.E. Graybow', 'Larry Mintz': ""Vincent 'Knobby' DiCarno"", 'Raye Birk': 'The Jogger', 'Eric Poppick': 'Deliveryman', 'Scott Lincoln': 'Man in Cadillac', 'Thom Bray': 'Shoplifter in Bookstore', 'Nathan Davis': 'Mr. Paggif'}" tt0102526,"{'Wesley Snipes': 'Nino Brown', 'Ice-T': 'Scotty Appleton (as Ice T)', 'Allen Payne': 'Gee Money', 'Chris Rock': 'Pookie', 'Mario Van Peebles': 'Stone', 'Michael Michele': 'Selina', 'Bill Nunn': 'Duh Duh Duh Man', 'Russell Wong': 'Park', 'Bill Cobbs': 'Old Man', 'Christopher Williams': 'Kareem Akbar', 'Judd Nelson': 'Nick Peretti', 'Vanessa Williams': 'Keisha', 'Tracy Camilla Johns': 'Uniqua', 'Anthony DeSando': 'Frankie Needles', 'Nick Ashford': 'Reverend Oates'}" tt0106455,"{'Wesley Snipes': 'Jimmy', 'Dennis Hopper': 'Red', 'Lolita Davidovich': 'Vikki', 'Viggo Mortensen': 'Ronnie', 'Seymour Cassel': 'Leach', 'Jonathan Banks': 'Max', 'Christine Elise': 'Carol', 'Tony Lo Bianco': 'Dio', 'Valerie Perrine': 'Mona', 'James Tolkan': 'Levitt', 'Paul Gleason': 'Transaction Man', 'Lorraine Evanoff': 'Connie', 'Stephanie Williams': 'Sally (as Stephanie E. Williams)', 'Tobin Bell': 'Roth', 'Bobby Hosea': 'Steve'}" tt2404233,"{'Brenton Thwaites': 'Bek', 'John Samaha': 'Vendor', 'Courtney Eaton': 'Zaya', 'Nikolaj Coster-Waldau': 'Horus', 'Paula Arundell': 'Fussy Older Maidservant', ""Alia Seror-O'Neill"": 'First Young Maidservant', 'Emily Wheaton': 'Second Younger Maidservant', 'Elodie Yung': 'Hathor', 'Rachael Blake': 'Isis', 'Bryan Brown': 'Osiris', 'Michael-Anthony Taylor': 'Priest', 'Emma Booth': 'Nephthys', 'Felix Williamson': 'Nobleman', 'Chadwick Boseman': 'Thoth', 'Gerard Butler': 'Set'}" tt0104265,"{'Richard Gere': 'Isaac Barr', 'Kim Basinger': 'Heather Evans', 'Uma Thurman': 'Diana Baylor', 'Eric Roberts': 'Jimmy Evans', 'Paul Guilfoyle': ""Mike O'Brien"", 'Keith David': 'Detective Huggins', 'Robert Harper': 'Alan Lowenthal', 'Agustin Rodriguez': 'Pepe Carrero', 'Rita Zohar': 'Dr. Grusin', 'George Murdock': 'Judge Costello', 'Shirley Prestia': 'D.A. Kaufman', 'Tony Genaro': 'Hector', 'Katherine Cortez': 'Woman Speaker', 'Wood Moy': 'Dr. Lee', 'Corey Fischer': 'Forensic Doctor'}" tt3110958,"{'Jesse Eisenberg': 'J. Daniel Atlas', 'Mark Ruffalo': 'Dylan Rhodes', 'Woody Harrelson': 'Merritt McKinney / Chase McKinney', 'Dave Franco': 'Jack Wilder', 'Daniel Radcliffe': 'Walter Mabry', 'Lizzy Caplan': 'Lula', 'Jay Chou': 'Li', 'Sanaa Lathan': 'Deputy Director Natalie Austin', 'Michael Caine': 'Arthur Tressler', 'Morgan Freeman': 'Thaddeus Bradley', 'David Warshofsky': 'Agent Cowan', 'Tsai Chin': 'Bu Bu', 'William Henderson': 'Young Dylan', 'Richard Laing': 'Lionel Shrike', 'Henry Lloyd-Hughes': 'Allen Scott-Frank'}" tt0101984,"{'Robert De Niro': 'David Merrill', 'Annette Bening': 'Ruth Merrill', 'George Wendt': 'Bunny Baxter', 'Patricia Wettig': 'Dorothy Nolan', 'Sam Wanamaker': 'Felix Graff', 'Luke Edwards': 'Paulie Merrill', 'Chris Cooper': 'Larry Nolan', 'Ben Piazza': 'Darryl Zanuck', 'Martin Scorsese': 'Joe Lesser', 'Barry Primus': 'Bert Alan', 'Gailard Sartain': 'Chairman Wood', 'Robin Gammell': 'Congressman Tavenner', 'Brad Sullivan': 'Congressman Velde', 'Tom Sizemore': 'Ray Karlin', 'Roxann Dawson': 'Felicia Barron (as Roxann Biggs)'}" tt1411697,"{'Bradley Cooper': 'Phil', 'Ed Helms': 'Stu', 'Zach Galifianakis': 'Alan', 'Justin Bartha': 'Doug', 'Ken Jeong': 'Mr. Chow', 'Paul Giamatti': 'Kingsley', 'Mike Tyson': 'Mike Tyson', 'Jeffrey Tambor': 'Sid Garner', 'Mason Lee': 'Teddy', 'Jamie Chung': 'Lauren', 'Sasha Barrese': 'Tracy', 'Gillian Vigman': 'Stephanie', 'Aroon Seeboonruang': 'Monk', 'Nirut Sirichanya': 'Fohn', 'Yasmin Lee': 'Kimmy'}" tt1119646,"{'Bradley Cooper': 'Phil', 'Ed Helms': 'Stu', 'Zach Galifianakis': 'Alan', 'Justin Bartha': 'Doug', 'Heather Graham': 'Jade', 'Sasha Barrese': 'Tracy', 'Jeffrey Tambor': 'Sid', 'Ken Jeong': 'Mr. Chow', 'Rachael Harris': 'Melissa', 'Mike Tyson': 'Mike Tyson', 'Mike Epps': 'Black Doug', 'Jernard Burks': 'Leonard', 'Rob Riggle': 'Officer Franklin', 'Cleo King': 'Officer Garden', 'Bryan Callen': 'Eddie'}" tt5052474,"{'Benicio Del Toro': 'Alejandro', 'Josh Brolin': 'Matt Graver', 'Isabela Merced': 'Isabel Reyes (as Isabela Moner)', 'Jeffrey Donovan': 'Steve Forsing', 'Catherine Keener': 'Cynthia Foards', 'Manuel Garcia-Rulfo': 'Gallo', 'Matthew Modine': 'James Riley', 'Shea Whigham': 'Andy Wheeldon', 'Elijah Rodriguez': 'Miguel Hernandez', 'Howard Ferguson Jr.': 'Troy', 'David Castañeda': 'Hector (as David Castaneda)', 'Jacqueline Torres': 'Blandina', 'Raoul Max Trujillo': 'Rafael (as Raoul Trujillo)', 'Bruno Bichir': 'Angel', 'Jake Picking': 'Shawn'}" tt0112401,"{'Sylvester Stallone': 'Robert Rath', 'Antonio Banderas': 'Miguel Bain', 'Julianne Moore': 'Electra', 'Anatoli Davydov': 'Nicolai Tashlinkov (as Anatoly Davydov)', 'Muse Watson': 'Ketcham', 'Steve Kahan': 'Alan Branch (as Stephen Kahan)', 'Kelly Rowan': ""Jennifer, Electra's Neighbor"", 'Reed Diamond': 'Bob', 'Kai Wulff': 'Remy', 'Kerry Skalsky': 'Buyer with Remy', 'James Douglas Haskins': 'Buyer with Remy', 'Stephen Liska': 'Cop', 'John Harms': 'Cop', 'Edward J. Rosen': 'Cemetery Caretaker', 'Christina Orchid': 'Dowager'}" tt0111255,"{'Sylvester Stallone': 'Ray Quick', 'Sharon Stone': 'May Munro', 'James Woods': 'Ned Trent', 'Rod Steiger': 'Joe Leon', 'Eric Roberts': 'Tomas Leon', 'Mario Ernesto Sánchez': 'Charlie', 'Sergio Doré Jr.': 'Strongarm', 'Chase Randolph': ""May's Dad"", 'Jeana Bell': ""May's Mom"", 'Brittany Paige Bouck': 'Young May', 'Emilio Estefan Jr.': 'Piano Player', 'LaGaylia Frazier': 'Singer #1', 'Ramón González Cuevas': 'Priest at Cemetery (as Ramon Gonzalez-Cuevas)', 'Tony Munafo': 'Tony', 'Cheito Quinonez': 'Singer at Party'}" tt2557478,"{'John Boyega': 'Jake Pentecost', 'Scott Eastwood': 'Nate Lambert', 'Cailee Spaeny': 'Amara Namani', 'Burn Gorman': 'Hermann Gottlieb', 'Charlie Day': 'Dr. Newton Geiszler', 'Tian Jing': 'Liwen Shao (as Jing Tian)', 'Jin Zhang': 'Marshal Quan (as Max Zhang)', 'Adria Arjona': 'Jules Reyes', 'Rinko Kikuchi': 'Mako Mori', 'Karan Brar': 'Cadet Suresh', 'Wesley Wong': 'Cadet Jinhai', 'Ivanna Sakhno': 'Cadet Viktoria', 'Mackenyu': 'Cadet Ryoichi', 'Lily Ji': 'Cadet Meilin', 'Shyrley Rodriguez': 'Cadet Renata'}" tt0293815,"{'Ice Cube': 'Craig', 'Mike Epps': 'Day-Day / Old Man with Shotgun', 'John Witherspoon': 'Mr. Jones', ""Don 'D.C.' Curry"": 'Uncle Elroy', 'Anna Maria Horsford': 'Mrs. Jones', 'Clifton Powell': 'Pinky', 'K.D. Aubert': 'Donna', 'Bebe Drake': 'Mrs. Pearly', 'Katt Williams': 'Money Mike', 'Rickey Smiley': 'Santa Claus', 'Terry Crews': 'Damon', 'Maz Jobrani': 'Moly', 'Reggie Gaskins': 'Officer Dix', 'Joel McKinnon Miller': 'Officer Hole', 'Brian Stepanek': 'Officer #3'}" tt2531344,"{'Leslie Mann': 'Lisa', 'John Cena': 'Mitchell', 'Ike Barinholtz': 'Hunter', 'Kathryn Newton': 'Julie', 'Geraldine Viswanathan': 'Kayla', 'Gideon Adlon': 'Sam', 'Ramona Young': 'Angelica', 'Graham Phillips': 'Austin', 'Miles Robbins': 'Connor', 'Jimmy Bellinger': 'Chad', 'Colton Dunn': 'Rudy', 'Sarayu Blue': 'Marcie', 'Gary Cole': 'Ron', 'Gina Gershon': 'Cathy', 'June Diane Raphael': 'Brenda'}" tt3393786,"{'Tom Cruise': 'Jack Reacher', 'Cobie Smulders': 'Turner', 'Aldis Hodge': 'Espin', 'Danika Yarosh': 'Samantha', 'Patrick Heusinger': 'The Hunter', 'Holt McCallany': 'Col. Morgan', 'Robert Knepper': 'Gen. Harkness', 'Judd Lormand': 'Local Deputy', 'Christopher Berry': 'Onlooker at Diner', 'Hunter Burke': 'Onlooker at Diner', 'Jason Douglas': 'Sheriff', 'Lizeth Hutchings': 'Smuggled Woman', 'Marisela Zumbado': 'Smuggled Woman', 'Alexandra Lucchesi': 'Smuggled Woman', 'Madalyn Horcher': 'Sgt. Leach'}" tt0790724,"{'Tom Cruise': 'Reacher', 'Rosamund Pike': 'Helen', 'Richard Jenkins': 'Rodin', 'David Oyelowo': 'Emerson', 'Werner Herzog': 'The Zec', 'Jai Courtney': 'Charlie', 'Vladimir Sizov': 'Vlad', 'Joseph Sikora': 'Barr', 'Michael Raymond-James': 'Linsky', 'Alexia Fast': 'Sandy', 'Josh Helman': 'Jeb', 'Robert Duvall': 'Cash', 'James Martin Kelly': 'Rob Farrior', 'Dylan Kussman': 'Gary', 'Denver Milord': 'Punk'}" tt1055292,"{'Katherine Heigl': 'Holly Berenson', 'Josh Duhamel': 'Eric Messer', 'Josh Lucas': 'Sam', 'Alexis Clagett': 'Sophie', 'Brynn Clagett': 'Sophie', 'Brooke Clagett': 'Sophie', 'Hayes MacArthur': 'Peter Novak', 'Christina Hendricks': 'Alison Novak', 'Sarah Burns': 'Janine Groff', 'Jessica St. Clair': 'Beth', 'Brooke Liddell': 'Older Sophie', 'Kiley Liddell': 'Older Sophie', 'Britt Flatmo': 'Amy', 'Rob Huebel': 'Ted', 'Melissa McCarthy': 'DeeDee'}" tt1322312,"{'Drew Barrymore': 'Erin', 'Justin Long': 'Garrett', 'Charlie Day': 'Dan', 'Jason Sudeikis': 'Box', 'Christina Applegate': 'Corinne', 'Ron Livingston': 'Will', 'Oliver Jackson-Cohen': 'Damon', 'Jim Gaffigan': 'Phil', 'Natalie Morales': 'Brandy', 'Kelli Garner': 'Brianna', 'June Diane Raphael': 'Karen', 'Rob Riggle': 'Ron', 'Sarah Burns': 'Harper', 'Terry Beaver': 'Professor', 'Matt Servitto': 'Hugh'}" tt0419843,"{'Elena Anaya': 'Sofia Buñuel', 'Adam Brody': 'Carter Webb', 'Kelsey Keel': 'Teenage Girl', 'Danielle Savre': 'Teenage Girl', 'Gia Mantegna': 'Teenage Girl (as Gina Mantegna)', 'Rob Reinis': 'Avi Rosenberg (voice) (as Robert Reinis)', 'JoBeth Williams': 'Agnes Webb', 'Makenzie Vega': 'Paige Hardwicke', 'Kristen Stewart': 'Lucy Hardwicke', 'Meg Ryan': 'Sarah Hardwicke', 'Olympia Dukakis': 'Phyllis', 'Dustin Milligan': 'Eric Watts', 'Graham Wardle': 'Gabe Foley', 'Elise Gatien': 'Tiffany', 'Christine Danielle': 'Tanya'}" tt1340138,"{'Arnold Schwarzenegger': 'Guardian', 'Jason Clarke': 'John Connor', 'Emilia Clarke': 'Sarah Connor', 'Jai Courtney': 'Kyle Reese', 'J.K. Simmons': ""O'Brien"", 'Dayo Okeniyi': 'Danny Dyson', 'Matt Smith': 'Alex (as Matthew Smith)', 'Courtney B. Vance': 'Miles Dyson', 'Byung-Hun Lee': 'Cop / T-1000', 'Michael Gladis': 'Lt. Matias', 'Sandrine Holt': 'Detective Cheung', 'Wayne Bastrup': ""Young O'Brien"", 'Gregory Alan Williams': 'Detective Harding (as Greg Alan Williams)', 'Otto Sanchez': 'Detective Timmons', 'Matty Ferraro': 'Agent Janssen'}" tt0090859,"{'Sylvester Stallone': 'Marion Cobretti', 'Brigitte Nielsen': 'Ingrid', 'Reni Santoni': 'Gonzales', 'Andrew Robinson': 'Detective Monte', 'Brian Thompson': 'Night Slasher', 'John Herzfeld': 'Cho', 'Lee Garlington': 'Nancy Stalk', 'Art LaFleur': 'Captain Sears (as Art La Fleur)', 'Marco Rodríguez': 'Supermarket Killer (as Marco Rodriguez)', 'Ross St. Phillip': 'Security Guard', 'Val Avery': 'Chief Halliwell', 'David Rasche': 'Dan', 'John Hauk': 'Low Rider', 'Nick Angotti': 'Prodski', 'Nina Axelrod': 'Waitress'}" tt1469304,"{'Dwayne Johnson': 'Mitch Buchannon', 'Zac Efron': 'Matt Brody', 'Priyanka Chopra': 'Victoria Leeds', 'Alexandra Daddario': 'Summer Quinn', 'Kelly Rohrbach': 'CJ Parker', 'Ilfenesh Hadera': 'Stephanie Holden', 'Jon Bass': 'Ronnie Greenbaum', 'Yahya Abdul-Mateen II': 'Sgt. Ellerbee', 'Hannibal Buress': 'Dave the Tech', 'Rob Huebel': 'Captain Thorpe', 'Amin Joseph': 'Frankie', 'Jack Kesy': 'Leon', 'Oscar Nuñez': 'Councilman Rodriguez', 'David Hasselhoff': 'The Mentor', 'Pamela Anderson': 'Casey Jean Parker'}" tt0095188,"{'Chevy Chase': 'Andy Farmer', 'Madolyn Smith Osborne': 'Elizabeth Farmer (as Madolyn Smith)', ""Kevin O'Morrison"": 'Sheriff Ledbetter', 'Joseph Maher': 'Michael Sinclair', 'Jack Gilpin': 'Bud Culbertson', 'Caris Corfman': 'Betsy Culbertson', 'William Severs': 'Newspaper Editor', 'Mike Starr': 'Crocker', 'Glenn Plummer': 'Mickey', 'William Duell': 'Old Character', 'Helen Lloyd Breed': 'Old Operator', 'Kit Le Fever': 'Young Operator (as Le Fevre)', 'Dakin Matthews': 'Marion Corey Jr.', 'William Newman': 'Gus Lotterhand', 'Alice Drummond': 'Mrs. Ethel Dinges'}" tt4881806,"{'Chris Pratt': 'Owen Grady', 'Bryce Dallas Howard': 'Claire Dearing', 'Rafe Spall': 'Eli Mills', 'Justice Smith': 'Franklin Webb', 'Daniella Pineda': 'Zia Rodriguez', 'James Cromwell': 'Benjamin Lockwood', 'Toby Jones': 'Mr. Eversoll', 'Ted Levine': 'Ken Wheatley', 'Jeff Goldblum': 'Ian Malcolm', 'BD Wong': 'Dr. Wu', 'Geraldine Chaplin': 'Iris', 'Isabella Sermon': 'Maisie Lockwood', 'Robert Emms': 'Tech Merc', 'Peter Jason': 'Senator Sherwood', 'Kevin Layne': 'Sub Pilot'}" tt1179933,"{'John Goodman': 'Howard', 'Mary Elizabeth Winstead': 'Michelle', 'John Gallagher Jr.': 'Emmett', 'Douglas M. Griffin': 'Driver', 'Suzanne Cryer': 'Woman', 'Bradley Cooper': 'Ben (voice)', 'Sumalee Montano': 'Voice on Radio (voice)', 'Frank Mottek': 'Radio Broadcaster (voice)'}" tt2118624,"{'Taissa Farmiga': 'Max Cartwright', 'Malin Akerman': 'Nancy / Amanda Cartwright', 'Alexander Ludwig': 'Chris Briggs', 'Nina Dobrev': 'Vicki Summers', 'Alia Shawkat': 'Gertie Michaels', 'Thomas Middleditch': 'Duncan', 'Adam Devine': 'Kurt (as Adam DeVine)', 'Angela Trimbur': 'Tina', 'Chloe Bridges': 'Paula', 'Tory N. Thompson': 'Blake', 'Reginald Robinson': 'Hunky Hiker', 'Lauren Gros': 'Mimi', 'Daniel Norris': 'Billy Murphy', 'Eric Michael Carney': 'Young Billy Murphy (as Eric Carney)', 'Cory Hart': 'Doctor'}" tt0822847,"{'Paul Bettany': 'Priest', 'Karl Urban': 'Black Hat', 'Cam Gigandet': 'Hicks', 'Maggie Q': 'Priestess', 'Lily Collins': 'Lucy Pace', 'Brad Dourif': 'Salesman', 'Stephen Moyer': 'Owen Pace', 'Christopher Plummer': 'Monsignor Orelas', 'Alan Dale': 'Monsignor Chamberlain', 'Mädchen Amick': 'Shannon Pace', 'Jacob Hopkins': 'Boy', 'Dave Florek': 'Crocker', 'Joel Polinsky': 'Dr. Tomlin', 'Josh Wingate': 'Familiar', 'Jon Braver': 'Familiar'}" tt2304933,"{'Chloë Grace Moretz': 'Cassie Sullivan', 'Matthew Zuk': 'Wounded Man with Crucifix', 'Gabriela Lopez': 'Lizbeth', 'Bailey Anne Borders': 'Julia (as Bailey Borders)', 'Nick Robinson': 'Ben Parish / Zombie', 'Ron Livingston': 'Oliver Sullivan', 'Maggie Siff': 'Lisa Sullivan', 'Zackary Arthur': 'Sam Sullivan', 'David Maldonado': 'Soccer Coach (as Dave Maldonado)', 'Paul Ryden': 'TV News Anchor', 'E. Roger Mitchell': 'White House Spokesman', 'Charmin Lee': 'Ms. Paulson', 'Parker Wierling': 'Jeremy', 'Madison Staines': 'Teary School Kid', 'Tony Revolori': 'Dumbo'}" tt3862750,"{'Sanaa Lathan': 'Leah', 'Michael Ealy': 'Carter', 'Morris Chestnut': 'Dave', 'L. Scott Caldwell': 'Evelyn', 'Charles S. Dutton': 'Roger', 'John Getz': 'Renkin', 'Tess Harper': 'Mrs. McCarthy', 'Kathryn Morris': 'Karen', 'Rutina Wesley': 'Alicia', 'Holt McCallany': 'Detective Hansen', 'Jessica Parker Kennedy': 'Rachel', 'David Starzyk': 'Frank', 'Ronnie Gene Blevins': 'Roy the Mechanic', 'Wilmer Calderon': 'Detective Gardner', 'Gordon Clapp': 'Bill Forsythe'}" tt1198138,"{'Idris Elba': 'Derek', 'Beyoncé': 'Sharon (as Beyoncé Knowles)', 'Ali Larter': 'Lisa', ""Jerry O'Connell"": 'Ben', 'Bonnie Perlman': 'Marge', 'Christine Lahti': 'Reese', 'Nathan Myers': 'Kyle', 'Nicolas Myers': 'Kyle', 'Matthew Humphreys': 'Patrick', 'Scout Taylor-Compton': 'Samantha', 'Richard Ruccolo': 'Hank', 'Bryan Ross': 'Security Man', 'Nelson Mashita': 'Doctor', 'Bruce McGill': 'Joe Gage', 'Ron Roggé': 'Roger'}" tt2011159,"{'Idris Elba': 'Colin', 'Taraji P. Henson': 'Terry', 'Leslie Bibb': 'Meg', 'Kate del Castillo': 'Alexis', 'Henry Simmons': 'Jeffrey', 'Mirage Moonschein': 'Ryan (as Mirage Spann)', 'Kenny Alfonso': 'Javier', 'Dan Caudill': 'Cop', 'Tatom Pender': 'Sally', ""Kelly O'Neal"": 'Officer Jacobs', 'Mark Rhino Smith': 'EMT (as Mark Ferrol Smith)', 'Bobbie Elzey': 'Landlord', 'Leon Lamar': 'McKinley', 'Frank Brennan': 'Chairman', 'Wilbur Fitzgerald': 'Dr. Ross'}" tt2011159,"{'Idris Elba': 'Colin', 'Taraji P. Henson': 'Terry', 'Leslie Bibb': 'Meg', 'Kate del Castillo': 'Alexis', 'Henry Simmons': 'Jeffrey', 'Mirage Moonschein': 'Ryan (as Mirage Spann)', 'Kenny Alfonso': 'Javier', 'Dan Caudill': 'Cop', 'Tatom Pender': 'Sally', ""Kelly O'Neal"": 'Officer Jacobs', 'Mark Rhino Smith': 'EMT (as Mark Ferrol Smith)', 'Bobbie Elzey': 'Landlord', 'Leon Lamar': 'McKinley', 'Frank Brennan': 'Chairman', 'Wilbur Fitzgerald': 'Dr. Ross'}" tt2381249,"{'Tom Cruise': 'Ethan Hunt', 'Jeremy Renner': 'William Brandt', 'Simon Pegg': 'Benji Dunn', 'Rebecca Ferguson': 'Ilsa Faust', 'Ving Rhames': 'Luther Stickell', 'Sean Harris': 'Lane', 'Simon McBurney': 'Atlee', 'Jingchu Zhang': 'Lauren', 'Tom Hollander': 'Prime Minister', 'Jens Hultén': 'Janik Vinter', 'Alec Baldwin': 'Alan Hunley', 'Mateo Rufino': 'A400 Pilot', 'Fernando Abadie': 'A400 Pilot', 'Alec Utgoff': 'A400 Crewman', 'Hermione Corfield': 'Record Shop Girl'}" tt0419706,"{'Karl Urban': 'John Grimm', 'Rosamund Pike': 'Samantha Grimm', 'Deobia Oparei': 'Destroyer (as DeObia Oparei)', 'Ben Daniels': 'Goat', 'Razaaq Adoti': 'Duke (as Raz Adoti)', 'Richard Brake': 'Portman', 'Al Weaver': 'The Kid', 'Dexter Fletcher': 'Pinky', 'Brian Steele': 'Hell Knight', 'Dwayne Johnson': 'Sarge (as The Rock)', 'Yao Chin': 'Mac', 'Robert Russell': 'Dr. Carmack', 'Daniel York': 'Lt. Huengs', 'Ian Hughes': 'Sanford Crosby', 'Sara Houghton': 'Dr. Jenna Willits'}" tt0483607,"{'Caryn Peterson': 'Vagrant Girl', 'Adeola Ariyo': 'Nurse', 'Emma Cleasby': 'Katherine Sinclair', 'Christine Tomlinson': 'Young Eden Sinclair', 'Vernon Willemse': 'David / Gimp', 'Paul Hyett': 'Hot Dog Victim', 'Daniel Read': 'Sergeant #1', 'Karl Thaning': 'Pilot', 'Stephen Hughes': 'Soldier #1 / Johnson', 'Jason Cope': 'Wall Guard', 'Ryan Kruger': 'Soldier', 'Nathan Wheatley': ""Patient 'X'"", 'Cecil Carter': 'DDS Assault Trooper', 'Jeremy Crutchley': 'Richter', 'Rhona Mitra': 'Eden Sinclair'}" tt0482606,"{'Alex Fisher': 'Mormon Boy #1', 'Peter Clayton-Luce': 'Mormon Boy #2', 'Scott Speedman': 'James Hoyt', 'Liv Tyler': 'Kristen McKay', 'Gemma Ward': 'Dollface', 'Kip Weeks': 'Man in Mask', 'Laura Margolis': 'Pin-Up Girl', 'Glenn Howerton': 'Mike'}" tt7518466,"{'José Aldo': 'Himself', 'Audie Attar': 'Himself', 'Ryan Buescher': 'Himself', 'Kiefer Crosbie': 'Himself', 'Dillon Danis': 'Himself', 'Dee Devlin': 'Herself', 'Nate Diaz': 'Himself', 'Tom Egan': 'Himself', 'Lorenzo Fertitta': 'Himself', 'Nikolay Grozdev': 'Himself', 'Ariel Helwani': 'Himself', 'John Kavanagh': 'Himself', 'Artem Lobov': 'Himself', 'Conor McGregor': 'Himself', 'Erin McGregor': 'Herself'}" tt0795421,"{'Amanda Seyfried': 'Sophie', 'Stellan Skarsgård': 'Bill', 'Pierce Brosnan': 'Sam', 'Nancy Baldwin': ""Sam's PA"", 'Colin Firth': 'Harry', 'Heather Emmanuel': ""Harry's Housekeeper"", 'Colin Davis': ""Harry's Driver"", 'Rachel McDowall': 'Lisa', 'Ashley Lilley': 'Ali', 'Meryl Streep': 'Donna', 'Julie Walters': 'Rosie', 'Christine Baranski': 'Tanya', 'Ricardo Montez': 'Stavros', 'Mia Soteriou': 'Arina', 'Enzo Squillino Jr.': 'Gregoris'}" tt5308322,"{'Jessica Rothe': 'Tree Gelbman', 'Israel Broussard': 'Carter Davis', 'Ruby Modine': 'Lori Spengler', 'Charles Aitken': 'Gregory Butler', 'Laura Clifton': 'Stephanie Butler', 'Jason Bayle': 'David Gelbman', 'Rob Mello': 'John Tombs', 'Rachel Matthews': 'Danielle Bouseman', 'Ramsey Anderson': 'Keith Lumbly', 'Brady Lewis': 'Frat Brother', 'Phi Vu': 'Ryan Phan', 'Tenea Intriago': 'Student Protester', 'Blaine Kern III': 'Nick Sims', 'Cariella Smith': 'Becky Shepard', 'Jimmy Gonzales': 'Police Officer'}" tt5776858,"{'Vicky Krieps': 'Alma', 'Daniel Day-Lewis': 'Reynolds Woodcock', 'Lesley Manville': 'Cyril', 'Julie Vollono': 'London Housekeeper', 'Sue Clark': 'Biddy', 'Joan Brown': 'Nana', 'Harriet Leitch': 'Pippa', 'Dinah Nicholson': 'Elsa', 'Julie Duck': 'Irma', 'Maryanne Frost': 'Winn', 'Elli Banks': 'Elli', 'Amy Cunningham': 'Mabel', 'Amber Brabant': 'Amber', 'Geneva Corlett': 'Geneva', 'Juliet Glaves': 'Florist'}" tt7109844,"{'Freddie Johnson': 'Himself', 'Marianne Barnes': 'Herself', 'Jimmy Russell': 'Himself', 'Denny Potter': 'Himself', 'Brent Elliot': 'Himself', 'Chester Zoeller': 'Himself', 'Greg Davis': 'Himself', 'Fred Noe': 'Himself', 'Dixon Dedmon': 'Himself', 'Chris Morris': 'Himself', 'Paul Steele': 'Himself', 'Jackie Zykan': 'Herself', 'Mike Veach': 'Himself', 'Steve Zahn': 'Himself'}" tt4542660,"{'Chris Colbourn': 'Himself', 'Clive Dixon': 'Himself', 'Tiago Lemos': 'Himself', 'Sean Malto': 'Himself', 'Jordan Maxham': 'Himself', ""Luis 'Moose' De Los Reyes"": 'Himself', 'Paul Rodriguez': 'Himself (as Paul Rodriguez Jr.)', 'Jamie Thomas': 'Himself', 'Clint Walker': 'Himself', 'Chase Webb': 'Himself'}" tt2527336,"{'Mark Hamill': 'Luke Skywalker / Dobbu Scay', 'Carrie Fisher': 'Leia Organa', 'Adam Driver': 'Kylo Ren', 'Daisy Ridley': 'Rey', 'John Boyega': 'Finn', 'Oscar Isaac': 'Poe Dameron', 'Andy Serkis': 'Snoke', ""Lupita Nyong'o"": 'Maz Kanata', 'Domhnall Gleeson': 'General Hux', 'Anthony Daniels': 'C-3PO', 'Gwendoline Christie': 'Captain Phasma', 'Kelly Marie Tran': 'Rose Tico', 'Laura Dern': 'Vice Admiral Holdo', 'Benicio Del Toro': 'DJ', 'Frank Oz': 'Yoda (voice)'}" tt5117670,"{'James Corden': 'Peter Rabbit (voice)', 'Fayssal Bazzi': 'Mr. Tod (voice)', 'Domhnall Gleeson': 'Mr. Jeremy Fisher / Mr. Thomas McGregor', 'Sia': 'Mrs. Tiggy-Winkle (voice)', 'Colin Moody': 'Benjamin Bunny (voice)', 'Sam Neill': 'Old Mr. McGregor / Tommy Brock', 'Margot Robbie': 'Flopsy / The Narrator (voice)', 'Elizabeth Debicki': 'Mopsy (voice)', 'Daisy Ridley': 'Cotton-Tail (voice)', 'Rose Byrne': 'Bea / Jemima Puddle-Duck', 'Christian Gazal': ""Felix D'eer (voice)"", 'Ewen Leslie': 'Pigling Bland (voice)', 'Natalie Dew': 'Harrods Worker - Janelle', 'Terenia Edwards': 'Harrods Worker - Siobhan', 'Marianne Jean-Baptiste': 'General Manager (as Marianne Jean Baptiste)'}" tt6000478,"{'Denzel Washington': 'Roman J. Israel, Esq.', 'Colin Farrell': 'George Pierce', 'Carmen Ejogo': 'Maya Alston', 'Lynda Gravatt': 'Vernita Wells (as Lynda Gravátt)', 'Amanda Warren': 'Lynn Jackson', 'Hugo Armstrong': 'Fritz Molinar', 'Sam Gilroy': 'Connor Novick', 'Tony Plana': 'Jessie Salinas', 'DeRon Horton': 'Derrell Ellerbee', 'Amari Cheatom': 'Carter Johnson', 'Vince Cefalu': 'Security Bailiff', 'Tarina Pouncy': 'Hallway Bailiff', 'Nazneen Contractor': ""Melina Nassour (Ass't. DA)"", 'Niles Fitch': 'Langston Bailey', 'Jocelyn Ayanna': 'Court Officer Bailiff'}" tt6116682,"{'Cynthia Erivo': 'Rosa Parks', 'Recy Taylor': 'Herself', 'Robert Corbitt': 'Himself', 'Alma Daniels': 'Herself', 'Crystal Feimster': 'Herself', 'Esther Cooper Jackson': 'Herself', 'Danielle L. McGuire': 'Herself', 'James Johnson II': 'Himself', 'Chris Money': 'Himself', 'John L. Payne': 'John O. Harris', 'Jack Kyser': 'Dillard York / Willie Joe Culpepper', 'Tom Gibbs': 'Luther Lee / Herbert Lovett', 'Tommy Bernardi': 'Billy Howerton / Hugo Wilson'}" tt4572792,"{'Naomi Watts': 'Susan Carpenter', 'Jaeden Martell': 'Henry Carpenter (as Jaeden Lieberher)', 'Jacob Tremblay': 'Peter Carpenter', 'Sarah Silverman': 'Sheila', 'Dean Norris': 'Glenn Sickleman', 'Lee Pace': 'Dr. David Daniels', 'Maddie Ziegler': 'Christina', 'Tonya Pinkins': 'Principal Wilder', 'Bobby Moynihan': 'John', 'Geraldine Hughes': 'Mrs. Evans', 'Maxwell Simkins': 'Tommy (as Max Simkins)', 'Jackson Nicoll': 'Morris', 'Donnetta Lavinia Grays': 'Nurse Leah', 'Joel Marsh Garland': 'Big Ed', 'Wass Stevens': 'Gary'}" tt5325030,"{'Blair Brown': 'Herself', 'Robert Clohessy': 'Frank', 'Lena Dunham': 'Meryl', 'Parker Posey': 'Angie', 'John Rothman': 'John', 'Josh Safdie': 'Tom (as Joshua Safdie)', 'Laurie Simmons': 'Ellie'}" tt1578275,"{'Vince Vaughn': 'Ronny Valentine', 'Kevin James': 'Nick Brannen', 'Jennifer Connelly': 'Beth', 'Winona Ryder': 'Geneva', 'Channing Tatum': 'Zip', 'Queen Latifah': 'Susan Warner', 'Amy Morton': 'Diane Popovich', 'Chelcie Ross': 'Thomas Fern', 'Eduardo N. Martinez': 'Felix', 'Rance Howard': 'Burt', 'Clint Howard': 'Herbert Trimpy', 'Guy Van Swearingen': 'Saul', 'Troy West': 'Dr. Rosenstone', 'Laura Whyte': 'Sue', 'Grace Rex': 'Cousin Betty'}" tt3957170,"{'Julius Arile': 'Julius Arile', 'Robert Matanda': 'Robert Matanda'}" tt0455944,"{'Denzel Washington': 'Robert McCall', 'Marton Csokas': 'Teddy', 'Chloë Grace Moretz': 'Teri', 'David Harbour': 'Masters', 'Haley Bennett': 'Mandy', 'Bill Pullman': 'Brian Plummer', 'Melissa Leo': 'Susan Plummer', 'David Meunier': 'Slavi', 'Johnny Skourtis': 'Ralphie', 'Alex Veadov': 'Tevi', 'Vladimir Kulich': 'Vladimir Pushkin', 'E. Roger Mitchell': 'Lead Investigator', 'James Wilcox': 'Pederson', ""Mike O'Dea"": ""Remar (as Mike P. O'Dea)"", 'Anastasia Mousis Sanidopoulos': 'Jenny (as Anastasia Mousis)'}" tt3532216,"{'Tom Cruise': 'Barry Seal', 'Domhnall Gleeson': ""Monty 'Schafer'"", 'Sarah Wright': 'Lucy Seal', 'Jesse Plemons': 'Sheriff Downing', 'Caleb Landry Jones': 'JB', 'Lola Kirke': 'Judy Downing', 'Jayma Mays': 'Dana Sibota', 'Alejandro Edda': 'Jorge Ochoa', 'Benito Martinez': 'James Rangel', 'E. Roger Mitchell': 'Agent Craig McCall', 'Jed Rees': 'Louis Finkle', 'Fredy Yate': 'Carlos Lehder (as Fredy Yate Escobar)', 'Mauricio Mejía': 'Pablo Escobar', 'Robert Farrior': 'Oliver North', 'Morgan Hinkleman': 'Christina'}" tt3532216,"{'Tom Cruise': 'Barry Seal', 'Domhnall Gleeson': ""Monty 'Schafer'"", 'Sarah Wright': 'Lucy Seal', 'Jesse Plemons': 'Sheriff Downing', 'Caleb Landry Jones': 'JB', 'Lola Kirke': 'Judy Downing', 'Jayma Mays': 'Dana Sibota', 'Alejandro Edda': 'Jorge Ochoa', 'Benito Martinez': 'James Rangel', 'E. Roger Mitchell': 'Agent Craig McCall', 'Jed Rees': 'Louis Finkle', 'Fredy Yate': 'Carlos Lehder (as Fredy Yate Escobar)', 'Mauricio Mejía': 'Pablo Escobar', 'Robert Farrior': 'Oliver North', 'Morgan Hinkleman': 'Christina'}" tt0462504,"{'Christian Bale': 'Dieter Dengler', 'Zach Grenier': 'Squad Leader', 'Marshall Bell': 'Admiral', 'Toby Huss': 'Spook', 'Pat Healy': 'Norman', 'GQ': 'Farkas (as Gregory J. Qaiyum)', 'James Aaron Oliver': 'Jet Pilot (as James Oliver)', 'Brad Carr': 'U.S. Navy Pilot', 'Saichia Wongwiroj': 'Pathet Lao Guard', 'François Chau': 'Province Governor (as Francois Chau)', 'Teerawat Mulvilai': ""Little Hitler (as Teerawat 'Ka-Ge' Mulvilai)"", 'Yuttana Muenwaja': 'Crazy Horse', 'Kriangsak Ming-olo': 'Jumbo', ""Somkuan 'Kuan' Siroon"": 'Nook the Rook', 'Chorn Solyda': 'Walkie Talkie'}" tt0102316,"{'Jodie Foster': 'Dede Tate', 'Alex Lee': 'Fred Tate at 2', 'Adam Hann-Byrd': 'Fred Tate', 'Michael Shulman': 'Matt Montini', 'Nathan Lee': ""Matt's Teammate"", 'Celia Weston': 'Miss Nimvel', 'Danitra Vance': 'Clinic Doctor', 'Dianne Wiest': 'Jane Grierson', 'David Hyde Pierce': 'Garth (as David Pierce)', 'Debi Mazar': 'Gina', 'Richard Fredette': 'Bartender', 'George Plimpton': 'Winston F. Buckner', 'Jennifer Trier': 'Grierson Institute Teacher', 'P.J. Ochlan': 'Damon Wells', 'John Bell': 'Joey X'}" tt0056264,"{'Marlon Brando': '1st Lt. Fletcher Christian', 'Trevor Howard': 'Captain William Bligh', 'Richard Harris': 'Seaman John Mills', 'Hugh Griffith': 'Alexander Smith', 'Richard Haydn': 'William Brown', 'Tarita': 'Maimiti', 'Percy Herbert': 'Seaman Matthew Quintal', 'Duncan Lamont': 'John Williams', 'Gordon Jackson': 'Seaman Edward Birkett', 'Chips Rafferty': 'Michael Byrne', 'Noel Purcell': 'Seaman William McCoy', 'Ashley Cowan': 'Samuel Mack', 'Eddie Byrne': 'John Fryer (Sailing Master)', 'Frank Silvera': 'Minarii', 'Tim Seely': ""Midshipman Edward 'Ned' Young""}" tt4555426,"{'Gary Oldman': 'Winston Churchill', 'Kristin Scott Thomas': 'Clemmie', 'Ben Mendelsohn': 'King George VI', 'Lily James': 'Elizabeth Layton', 'Ronald Pickup': 'Neville Chamberlain', 'Stephen Dillane': 'Viscount Halifax', 'Nicholas Jones': 'Sir John Simon', 'Samuel West': 'Sir Anthony Eden', 'David Schofield': 'Clement Atlee', 'Richard Lumsden': 'General Ismay', 'Malcolm Storry': 'General Ironside', 'Hilton McRae': 'Arthur Greenwood', 'Benjamin Whitrow': 'Sir Samuel Hoare', 'Joe Armstrong': 'John Evans', 'Adrian Rawlins': 'Air Chief Marshal Dowding (as Adrian Rawlings)'}" tt0077572,"{'Robert Shaw': 'Mallory', 'Harrison Ford': 'Barnsby', 'Barbara Bach': 'Maritza', 'Edward Fox': 'Miller', 'Franco Nero': 'Lescovar', 'Carl Weathers': 'Weaver', 'Richard Kiel': 'Drazak', 'Alan Badel': 'Petrovitch', 'Michael Byrne': 'Schroeder', 'Philip Latham': 'Jensen', 'Angus MacInnes': 'Reynolds', 'Michael Sheard': 'Sgt. Bauer', 'Petar Buntic': 'Marko', 'Leslie Schofield': 'Interrogation Officer 1', 'Anthony Langdon': 'Interrogation Officer 2 (as Antony Langdon)'}" tt5719108,"{'Obaidah Zytoon': 'Herself, Syrian DJ, radio Sham FM', 'Nawwara': 'Herself', 'Amal': 'Herself', 'Muhammad Houssam': 'Himself', 'Lulu': 'Herself', 'Hisam': ""Himself, Lulu's boyfriend"", 'Rabea': 'Himself', 'Argha': 'Himself', 'Fifi': 'Herself, Fifi the Dog', 'Madaya': 'Himself', 'Hasan': 'Himself, Free Syrian Army', 'Raed Al-Fares': 'Himself (as Raed al-Fares)'}" tt0104815,"{'Carlos Gallardo': 'El Mariachi', 'Consuelo Gómez': 'Domino', 'Jaime de Hoyos': 'Bigotón (as Jaime De Hoyos)', 'Peter Marquardt': 'Mauricio', 'Reinol Martinez': 'Azul', 'Ramiro Gómez': 'Cantinero (as Ramiro Gomez)', 'Jesús López': 'Viejo Clerk (as Jesus Lopez)', 'Luis Baró': ""Domino's Assistant (as Luis Baro)"", 'Oscar Fabila': 'The Boy', 'Poncho Ramón': ""Azul's Rat (as Poncho Ramon)"", 'Fernando Martínez': ""Azul's Rat (as Fernando Martinez)"", 'Manuel Acosta': 'Bodyguard', 'Walter Vargas': 'Prisoner', 'Roberto Martinez': 'Prisoner', 'Virgen Delgado': 'Female Bodyguard'}" tt0066448,"{'Kirk Douglas': 'Paris Pitman, Jr.', 'Henry Fonda': 'Woodward W. Lopeman', 'Hume Cronyn': 'Dudley Whinner', 'Warren Oates': 'Floyd Moon', 'Burgess Meredith': 'The Missouri Kid', 'John Randolph': 'Cyrus McNutt', 'Lee Grant': 'Mrs. Bullard', ""Arthur O'Connell"": 'Mr. Lomax', 'Martin Gabel': 'Warden LeGoff', 'Michael Blodgett': 'Coy Cavendish', 'C.K. Yang': 'Ah-Ping', 'Alan Hale Jr.': 'Tobaccy (as Alan Hale)', 'Victor French': 'Whiskey', 'Claudia McNeil': 'Madam', 'Bert Freed': 'Skinner'}" tt0059803,"{'Marga López': 'Mariana Sampedro', 'Jorge Martínez de Hoyos': 'Juan Sayago', 'Enrique Rocha': 'Pedro Trueba', 'Alfredo Leal': 'Julián Trueba', 'Blanca Sánchez': 'Sonia', 'Tito Junco': 'Comisario', 'Quintín Bulnes': 'Diego Martín Ibáñez', 'Miguel Macía': 'Druggist', 'Carlos Jordán': 'Casildo', 'Arturo Martínez': 'Cantinero', 'Hortensia Santoveña': 'Rosita', 'Carolina Barret': 'Mamá de Sonia', 'Manuel Dondé': 'Barber', 'Claudio Isaac': 'Claudio Sampedro'}" tt4477536,"{'Dakota Johnson': 'Anastasia Steele', 'Jamie Dornan': 'Christian Grey', 'Eric Johnson': 'Jack Hyde', 'Eloise Mumford': 'Kate Kavanagh', 'Rita Ora': 'Mia Grey', 'Luke Grimes': 'Elliot Grey', 'Victor Rasuk': 'José', 'Max Martini': 'Taylor', 'Jennifer Ehle': 'Carla', 'Marcia Gay Harden': 'Grace Grey', 'Bruce Altman': 'Jerry Roach', 'Arielle Kebbel': 'Gia Matteo', 'Callum Keith Rennie': 'Ray', 'Robinne Lee': 'Ros Bailey', 'Brant Daugherty': 'Sawyer'}" tt4477536,"{'Dakota Johnson': 'Anastasia Steele', 'Jamie Dornan': 'Christian Grey', 'Eric Johnson': 'Jack Hyde', 'Eloise Mumford': 'Kate Kavanagh', 'Rita Ora': 'Mia Grey', 'Luke Grimes': 'Elliot Grey', 'Victor Rasuk': 'José', 'Max Martini': 'Taylor', 'Jennifer Ehle': 'Carla', 'Marcia Gay Harden': 'Grace Grey', 'Bruce Altman': 'Jerry Roach', 'Arielle Kebbel': 'Gia Matteo', 'Callum Keith Rennie': 'Ray', 'Robinne Lee': 'Ros Bailey', 'Brant Daugherty': 'Sawyer'}" tt0382992,"{'Josh Lucas': 'Lt. Ben Gannon', 'Jessica Biel': 'Lt. Kara Wade', 'Jamie Foxx': 'Lt. Henry Purcell', 'Sam Shepard': 'Capt. George Cummings', 'Richard Roxburgh': 'Dr. Keith Orbit', 'Joe Morton': 'Capt. Dick Marshfield', 'Ian Bliss': 'Lt. Aaron Shaftsbury', 'Ebon Moss-Bachrach': 'Tim', 'Michael Denkha': 'Naval Controller', 'Rocky Helton': 'Master at Arms', 'Clayton Adams': 'USS Abraham Lincoln Sailor', 'Maurice Morgan': 'USS Abraham Lincoln Sailor', 'Woody Naismith': 'USS Abraham Lincoln Sailor (as Christopher Naismith)', 'Charles Ndibe': 'USS Abraham Lincoln Sailor', 'Nicholas Hammond': 'Executive Officer'}" tt0257076,"{'Samuel L. Jackson': ""Sgt. Dan 'Hondo' Harrelson"", 'Colin Farrell': 'Jim Street', 'Michelle Rodriguez': 'Chris Sanchez', 'LL Cool J': ""Deacon 'Deke' Kaye (as James Todd Smith aka LL Cool J)"", 'Josh Charles': 'T.J. McCabe', 'Jeremy Renner': 'Brian Gamble', 'Brian Van Holt': 'Michael Boxer', 'Olivier Martinez': 'Alex Montel', 'Reg E. Cathey': 'Lt. Greg Velasquez (as Reginald E. Cathey)', 'Larry Poindexter': 'Capt. Thomas Fuller', 'Page Kennedy': 'Travis', 'Domenick Lombardozzi': 'GQ', 'James DuMont': 'Gus', 'Denis Arndt': 'Sgt. Howard', 'Lindsey Ginter': 'Agent Hauser'}" tt0048380,"{'Henry Fonda': 'Lt. j.g. Douglas A. Roberts', 'James Cagney': 'The Captain', 'William Powell': 'Doc', 'Jack Lemmon': 'Ensign Frank Thurlowe Pulver', 'Betsy Palmer': 'Lt. Ann Girard', 'Ward Bond': 'Chief Petty Officer Dowdy', 'Philip Carey': 'Mannion (as Phil Carey)', 'Nick Adams': 'Reber', 'Perry Lopez': 'Rodrigues', 'Ken Curtis': 'Dolan', 'Robert Roark': 'Insigna', 'Harry Carey Jr.': 'Stefanowski', 'Patrick Wayne': 'Bookser (as Pat Wayne)', 'Frank Aletter': 'Gerhart', 'Tige Andrews': 'Wiley (as Tiger Andrews)'}" tt0250720,"{'David Arquette': 'Gordon', 'Michael Clarke Duncan': 'Murdoch', 'Leslie Bibb': 'Stephanie', 'Joe Viterelli': 'Gino', 'Angus T. Jones': 'James', 'Steve Schirripa': 'Arliss (as Steven R. Schirripa)', 'Anthony Anderson': 'Benny', 'Paul Sorvino': 'Sonny Talia', 'Kim Hawthorne': 'Cassavettes', 'Kavan Smith': 'Ricky', 'Peter Bryant': 'Cop', 'Fiona Hogan': 'Cop', 'Roger Haskett': 'Michaels', 'Fulvio Cecere': 'Lawyer', 'Stephen E. Miller': 'Danvers'}" tt0077235,"{'Jan-Michael Vincent': 'Matt Johnson', 'William Katt': 'Jack Barlow', 'Gary Busey': 'Leroy Smith', ""Patti D'Arbanville"": 'Sally Jacobson', 'Lee Purcell': 'Peggy Gordon', 'Sam Melville': 'Bear', 'Darrell Fetty': ""Jim 'Waxer' King"", 'Gerry Lopez': 'Gerry Lopez', 'Hank Worden': 'Shopping Cart (as Hank Warden)', 'Joe Spinell': 'Psychologist', 'Steve Kanaly': ""Sally's Husband"", 'Barbara Hale': 'Mrs. Barlow', 'Fran Ryan': 'Lucy', 'Dennis Aaberg': 'Slick', 'Reb Brown': 'Enforcer'}" tt0034587,"{'Simone Simon': 'Irena Dubrovna Reed', 'Kent Smith': 'Oliver Reed', 'Tom Conway': 'Dr. Louis Judd', 'Jane Randolph': 'Alice Moore', 'Jack Holt': 'The Commodore'}" tt0036855,"{'Charles Boyer': 'Gregory Anton', 'Ingrid Bergman': 'Paula Alquist', 'Joseph Cotten': 'Brian Cameron', 'May Whitty': 'Miss Thwaites (as Dame May Whitty)', 'Angela Lansbury': 'Nancy', 'Barbara Everest': 'Elizabeth', 'Emil Rameau': 'Maestro Guardi', 'Edmund Breon': 'General Huddleston', 'Halliwell Hobbes': 'Mr. Muffin', 'Tom Stevenson': 'Williams', 'Heather Thatcher': 'Lady Dalroy', 'Lawrence Grossmith': 'Lord Dalroy', 'Jakob Gimpel': 'Pianist'}" tt0071675,"{'John P. Ryan': 'Frank Davies (as John Ryan)', 'Sharon Farrell': 'Lenore Davies', 'Andrew Duggan': 'The Professor', 'Guy Stockwell': 'Bob Clayton', 'James Dixon': 'Lt. Perkins', 'Michael Ansara': 'The Captain', 'Robert Emhardt': 'The Executive', 'William Wellman Jr.': 'Charley', 'Shamus Locke': 'The Doctor', 'Nancy Burnett': 'Nurse (as Mary Nancy Burnett)', 'Patrick McAllister': 'Expectant Father (as Patrick Macallister)', 'Daniel Holzman': 'Chris', 'Diana Hale': 'Secretary', 'Gerald York': 'Expectant Father', 'Jerry Taft': 'Expectant Father'}" tt0079239,"{'Robert Duvall': 'Bull Meechum', 'Blythe Danner': 'Lillian Meechum', ""Michael O'Keefe"": 'Ben Meechum', 'Lisa Jane Persky': 'Mary Anne Meechum', 'Julie Anne Haddock': 'Karen Meechum', 'Brian Andrews': 'Matthew Meechum', 'Stan Shaw': 'Toomer Smalls', 'Theresa Merritt': 'Arrabella Smalls', 'David Keith': 'Red Pettus', 'Paul Mantee': 'Col. Virgil Hedgepath', 'Michael Strong': 'Col. Varney', 'Bennett Liss': 'Corp. Atcherly', 'Joe Dorsey': 'Coach Spinks', 'David Frankham': 'Capt. Weber', 'Jan Stratton': 'Mrs. Weber'}" tt6333066,"{'Tim Black': 'Himself', 'Philip Glass': 'Himself', 'Christo Gomes': 'Himself', 'John Hume': 'Himself', 'Bill Travers Jr.': 'Himself (as Will Travers)'}" tt4397414,"{'Tom Asta': 'Himself', 'Edmund Bacon': 'Himself (archive footage)', 'Rob Dyrdek': 'Himself', 'Tony Hawk': 'Himself', 'Nyjah Huston': 'Himself', 'Sean Malto': 'Himself', 'Bam Margera': 'Himself', 'Guy Mariano': 'Himself', 'Rodney Mullen': 'Himself', 'Michael Nutter': 'Himself', 'Chaz Ortiz': 'Himself', 'Edward Rendell': 'Himself', 'Jesse Rendell': 'Himself', 'Paul Rodriguez': 'Himself (as Paul Rodriguez Jr.)'}" tt0451279,"{'Gal Gadot': 'Diana', 'Chris Pine': 'Steve Trevor', 'Connie Nielsen': 'Hippolyta', 'Robin Wright': 'Antiope', 'Danny Huston': 'Ludendorff', 'David Thewlis': 'Sir Patrick', 'Saïd Taghmaoui': 'Sameer', 'Ewen Bremner': 'Charlie', 'Eugene Brave Rock': 'The Chief', 'Lucy Davis': 'Etta', 'Elena Anaya': 'Dr. Maru', 'Lilly Aspell': 'Young Diana (8)', 'Lisa Loven Kongsli': 'Menalippe', 'Ann Wolfe': 'Artemis (as Ann J. Wolfe)', 'Ann Ogbomo': 'Philippus'}" tt0918940,"{'Alexander Skarsgård': 'John Clayton / Tarzan', 'Rory J. Saper': 'Young Tarzan (18 Years)', 'Christian Stevens': 'Young Tarzan (5 Years)', 'Christoph Waltz': 'Leon Rom', 'Samuel L. Jackson': 'George Washington Williams', 'Margot Robbie': 'Jane Clayton', 'Sidney Ralitsoele': 'Wasimbu', 'Osy Ikhile': 'Kwete', 'Mens-Sana Tamakloe': 'Kolo', 'Antony Acheampong': 'Kanam', 'Edward Apeagyei': 'Kimanga', 'Ashley Byam': 'Kasai', 'Casper Crump': 'Major Kerckhover', 'Adam Ganne': 'German Force Publique', 'Aleksandar Mikic': 'Muscular Force Publique'}" tt0211443,"{'Kane Hodder': 'Jason Voorhees / Uber-Jason', 'Jeff Geddis': 'Johnson (Soldier #1)', 'Lexa Doig': 'Rowan', 'David Cronenberg': 'Dr. Wimmer', 'Markus Parilo': 'Sgt. Marcus (as Marcus Parilo)', 'Jonathan Potts': 'Professor Lowe', 'Lisa Ryder': 'Kay-Em 14', 'Dov Tiefenbach': 'Azrael', 'Chuck Campbell': 'Tsunaron', 'Melyssa Ade': 'Janessa', 'Boyd Banks': 'Fat Lou', 'Barna Moricz': 'Kicker', 'Dylan Bierk': 'Briggs', 'Todd Farmer': 'Dallas', 'Peter Mensah': 'Sgt. Brodski'}" tt2967226,"{'Ken Jeong': 'Chris Kim', 'Jim Jefferies': 'Tommy', 'Colton Dunn': 'Redix', 'David Hasselhoff': 'The Hoff', 'Dan Bakkedahl': 'Nick', 'Ron Funches': 'Bill Sigliano', 'Jennifer Ikeda': 'Ann', 'Rhys Darby': 'Fish', 'Victor Turpin': 'Sebastian', 'Harry S. Murphy': 'Mr. Keady', 'Katy Stoll': 'Jenn', 'Jon Lovitz': 'Barry', 'Datari Turner': 'Bouncer', 'Master P': 'Del Toro', 'Taylor Coliee': ""Gina D'Andrea""}" tt4872162,"{'Nic Nemeth': 'Ray Thompson (as Dolph Ziggler)', 'Glenn Jacobs': ""Lt. Cronin (as Glenn 'Kane' Jacobs)"", 'Katharine Isabelle': 'Julia Baker', 'Josh Blacker': 'Detective Al Kendricks', 'Alexander Kalugin': 'Nikolai', 'Michael Kopsa': 'Makarov', ""Alan O'Silva"": 'Vladislav Pavel', 'Catherine Lough Haggquist': 'Lilly (as Catherine Lough-Haggquist)', 'Jennifer Cheon Garcia': 'Rachel (as Jennifer Cheon)', 'Luke Roessler': 'Anatoly', 'Andrea Stefancikova': 'Russian Wife', 'Alexander Mandra': ""Boris (as Alexander 'Sasha' Mandra)"", 'Sarwan Badesha': 'Technician #1', 'Simon Hill': 'Technician #2', 'Paul Vos': 'Technician #3'}" tt4497338,"{'Adam Copeland': ""Lucas Nolan (as Adam 'Edge' Copeland)"", 'Julia Benson': 'Sara Ward', 'C.J. Perry': ""Becky (as CJ 'Lana' Perry)"", 'Erica Carroll': 'Joan Marian', 'Patrick Sabongui': 'Vasti', 'Josh Blacker': 'Bartender #1', 'Kevin McNulty': 'Eli Reed', 'Michael J Rogers': 'Mark Bennett (as Michael Rogers)', 'Mitchell Kummen': 'Teen Lucas', 'Eric Breker': 'EOD Officer #2', 'Kwesi Ameyaw': 'Federal Agent (as Kewsi Ameyaw)', 'Jana Mitsoula': 'Agent #1', 'Adrian Petriw': 'Tech', 'Todd Thomson': 'EOD Officer #1', 'Bob Frazer': 'Federal Officer'}" tt3957956,"{'Jonathan Good': 'John Shaw (as Dean Ambrose)', 'Roger Cross': 'Tyler Burke (as Roger R. Cross)', 'Daniel Cudmore': 'Gideon', 'Lochlyn Munro': 'Darrow', 'Ty Olsson': 'Harris', 'Sarah Smyth': 'Officer Jenny Taylor', 'Rebecca Marshall': 'Captain Matthews', 'Kirby Morrow': 'Saul', 'Samuel Smith': 'Porter', 'Toby Levins': 'Meeks', 'James Michalopolous': 'Friels (as James Michalopoulos)', 'Jaeson Lee': 'Robertson', 'Bill Dow': 'Keppler', 'Sharon Taylor': 'Carmen', 'Hugo Steele': 'Hurst'}" tt4765284,"{'Anna Kendrick': 'Beca', 'Rebel Wilson': 'Fat Amy', 'Brittany Snow': 'Chloe', 'Anna Camp': 'Aubrey', 'Hailee Steinfeld': 'Emily', 'Ester Dean': 'Cynthia Rose', 'Hana Mae Lee': 'Lilly', 'Kelley Jakle': 'Jessica', 'Shelley Regner': 'Ashley', 'Chrissie Fit': 'Flo', 'Elizabeth Banks': 'Gail', 'John Michael Higgins': 'John', 'John Lithgow': 'Fergus', 'Matt Lanter': 'Chicago', 'Guy Burnet': 'Theo'}" tt5726086,"{'Lin Shaye': 'Elise Rainier', 'Leigh Whannell': 'Specs', 'Angus Sampson': 'Tucker', 'Kirk Acevedo': 'Ted Garza', 'Caitlin Gerard': 'Imogen Rainier', 'Spencer Locke': 'Melissa Rainier', 'Josh Stewart': 'Gerald Rainier', 'Tessa Ferrer': 'Audrey Rainier', 'Aleque Reid': 'Anna', 'Ava Kolker': 'Young Elise Rainier', 'Pierce Pope': 'Young Christian Rainier', 'Bruce Davison': 'Christian Rainier', 'Javier Botet': 'KeyFace', 'Marcus Henderson': 'Detective Whitfield', 'Amanda Jaros': 'Mara Jennings'}" tt6421110,"{'Taraji P. Henson': 'Mary', 'Billy Brown': 'Tom', ""Jahi Di'Allo Winston"": 'Danny', 'Neal McDonough': 'Walter', 'Margaret Avery': 'Mina', 'Xander Berkeley': 'Uncle', 'Rade Serbedzija': 'Luka', 'Erik LaRay Harvey': 'Reggie', 'Danny Glover': 'Benny', 'Adobuere Ebiama': 'Woman', 'Owen Burke': 'Jerome', 'Bo Cleary': ""Benny's Guy / Tyson"", 'Therese Plaehn': 'Saleswoman', 'James Milord': 'Miller', 'Alex Portenko': 'Ivan'}" tt3829920,"{'Josh Brolin': 'Eric Marsh', 'Miles Teller': 'Brendan McDonough', 'Jeff Bridges': 'Duane Steinbrink', 'Jennifer Connelly': 'Amanda Marsh', 'James Badge Dale': 'Jesse Steed', 'Taylor Kitsch': 'Christopher MacKenzie', 'Andie MacDowell': 'Marvel Steinbrink', 'Geoff Stults': 'Travis Turbyfill', 'Alex Russell': 'Andrew Ashcraft', 'Thad Luckinbill': 'Scott Norris', 'Ben Hardy': 'Wade Parker', 'Scott Haze': 'Clayton Whitted', 'Jake Picking': 'Anthony Rose', 'Scott Foxx': 'Travis Carter', 'Dylan Kenin': 'Robert Caldwell'}" tt3783958,"{'Ryan Gosling': 'Sebastian', 'Emma Stone': 'Mia', 'Amiée Conn': 'Famous Actress', 'Terry Walters': 'Linda (Coffee Shop Manager)', 'Thom Shelton': 'Coffee Spiller', 'Cinda Adams': 'Casting Director (First Audition)', 'Callie Hernandez': 'Tracy', 'Jessica Rothe': 'Alexis', 'Sonoya Mizuno': 'Caitlin', 'Rosemarie DeWitt': 'Laura', 'J.K. Simmons': 'Bill', 'Claudine Claudio': 'Karen (Waitress)', 'Jason Fuchs': 'Carlo', 'D.A. Wallach': ""'80s Singer"", 'Trevor Lissauer': 'Valet'}" tt0451279,"{'Gal Gadot': 'Diana', 'Chris Pine': 'Steve Trevor', 'Connie Nielsen': 'Hippolyta', 'Robin Wright': 'Antiope', 'Danny Huston': 'Ludendorff', 'David Thewlis': 'Sir Patrick', 'Saïd Taghmaoui': 'Sameer', 'Ewen Bremner': 'Charlie', 'Eugene Brave Rock': 'The Chief', 'Lucy Davis': 'Etta', 'Elena Anaya': 'Dr. Maru', 'Lilly Aspell': 'Young Diana (8)', 'Lisa Loven Kongsli': 'Menalippe', 'Ann Wolfe': 'Artemis (as Ann J. Wolfe)', 'Ann Ogbomo': 'Philippus'}" tt1219827,"{'Scarlett Johansson': 'Major', 'Pilou Asbæk': 'Batou', 'Takeshi Kitano': ""Aramaki (as 'Beat' Takeshi Kitano)"", 'Juliette Binoche': 'Dr. Ouelet', 'Michael Pitt': 'Kuze (as Michael Carmen Pitt)', 'Chin Han': 'Togusa', 'Danusia Samal': 'Ladriya', 'Lasarus Ratuere': 'Ishikawa', 'Yutaka Izumihara': 'Saito', 'Tawanda Manyimo': 'Borma', 'Peter Ferdinando': 'Cutter', 'Anamaria Marinca': 'Dr. Dahlin', 'Daniel Henshall': 'Skinny Man', 'Mana Hira Davis': 'Bearded Man (as Mana Davis)', 'Erroll Anderson': 'Hanka Security Agent'}" tt4966046,"{'James Zimbardi': 'Adam Morris', 'Skyler Caleb': 'Jake', 'Jean Smart': 'Evette', 'Emily Somers': 'Beth', 'Andrea Hunt': 'Christy', 'Robert R. Shafer': 'Tom', 'Raam Weinfeld': 'Lawrence', 'Grace Van Dien': 'Samantha', 'Sophie Labelle': 'Angela', 'Casey Kramer': 'Glenda', 'Karah Britton': 'Sarah', 'Jasper Cole': 'Peter', 'Mario Daggett': 'Scrapyard worker', 'Angie Teodora Dick': 'Gloria (as Angie Dick)', 'Marisa Dzintars': 'Candice'}" tt3371366,"{'Mark Wahlberg': 'Cade Yeager', 'Anthony Hopkins': 'Sir Edmund Burton', 'Josh Duhamel': 'Colonel William Lennox', 'Laura Haddock': 'Vivian Wembley', 'Santiago Cabrera': 'Santos', 'Isabela Merced': 'Izabella (as Isabela Moner)', 'Jerrod Carmichael': 'Jimmy', 'Stanley Tucci': 'Merlin', 'Liam Garrigan': 'Arthur', 'Martin McCreadie': 'Lancelot', 'Rob Witcomb': 'Percival', 'Marcus Fraser': 'Gawain', 'John Hollingworth': 'Tristan', 'Daniel Adegboyega': 'Saebert', 'Trent Seven': 'Hengist'}" tt6094944,"{'Honlenny Huffington': 'Corn', 'Kiara Howard': 'Rita', 'Jean Bush Howard': 'Goat Owner', 'Eduardo Cantillo': 'Champ', 'Elkin Robinson': 'Rainbow', 'Michel Robinson': 'Butcher', 'Ambrosio Huffington': 'Goldie', 'Arelis Fonseca': 'Mother / Pauline', 'Alvin Brayan': 'Father', 'Carlos Robinson': ""Officer Bold (as Carlos 'Shala' Robinson)"", 'Johann Peñaloza': 'Officer Livingston', 'Evaristo Howard': 'Rasta Buggy', 'Josue Taylor': 'Rasta Buggy 2', 'Edison Velasquez': 'Gardener', 'Leisha Howard': ""Rita's Friend""}" tt4211312,"{'Jonathan Pryce': 'Colonel Fitz', 'Fiona Shaw': 'Kathrin Fitz', 'Olivia Williams': 'Sophia (voice)', 'Greta Scacchi': 'General Meade', 'Agyness Deyn': 'Hannah', 'Ólafur Darri Ólafsson': 'Pickaxe', 'Clare-Hope Ashitey': 'Gaby', 'Declan Hannigan': 'Young Soldier', 'Ross Partridge': 'Peter', 'Derek de Lint': 'Silver Hair', 'Matthew Postlethwaite': 'Remus Frunza', 'Vilmos Heim': 'Frunza Boy', 'Björn Freiberg': 'Security Guard', 'Jeffrey Postlethwaite': 'Romulus Frunza', 'Ton Kas': 'Iron Fist'}" tt1291150,"{'Megan Fox': ""April O'Neil"", 'Will Arnett': 'Vern Fenwick', 'William Fichtner': 'Eric Sacks', 'Alan Ritchson': 'Raphael', 'Noel Fisher': 'Michelangelo', 'Pete Ploszek': 'Leonardo', 'Johnny Knoxville': 'Leonardo (voice)', 'Jeremy Howard': 'Donatello', 'Danny Woodburn': 'Splinter', 'Tony Shalhoub': 'Splinter (voice)', 'Tohoru Masamune': 'Shredder', 'Whoopi Goldberg': 'Bernadette Thompson', 'Minae Noji': 'Karai', 'Abby Elliott': 'Taylor', 'Madison Mason': 'Councilman'}" tt5061162,"{'Zuzana Mauréry': 'Mária Drazdechová', 'Zuzana Konecná': 'Iveta Kucerová', 'Csongor Kassai': 'Marek Kucera', 'Tamara Fischer': 'Danka Kucerová', 'Martin Havelka': 'Jaroslav Binder', 'Éva Bandor': 'Hana Binderová', 'Oliver Oswald': 'Filip Binder', 'Peter Bebjak': 'Václav Littmann', 'Richard Labuda': 'Karol Littmann', 'Inka Gogálová': 'Head Teacher (as Ina Gogálová)', 'Monika Certezni': 'Assistant Head Teacher', 'Judita Hansman': 'Mrs. Bártová', 'Ladislav Hrusovský': 'Mr. Malinovský'}" tt5529680,"{'Ben Schamma': 'Darth Maul', 'Mathis Landwehr': 'Jedi Master', 'Svenja Jung': 'Jedi Apprentice', 'Eskindir Tesfay': 'Jedi Berserker', 'Maja Felicitas Bergmann': 'Togruta Jedi', 'Paul Cless': 'Jedi Knight I', 'Sefa Demirbas': 'Jedi Knight II', 'Dirk Chwialkowsky': 'Darth Sidious', 'Lee Hua': 'Darth Sidious (voice)', 'Sean M. Sinclair': 'Darth Maul'}" tt1293847,"{'Vin Diesel': 'Xander Cage', 'Donnie Yen': 'Xiang', 'Deepika Padukone': 'Serena Unger', 'Kris Wu': 'Nicks', 'Ruby Rose': 'Adele Wolff', 'Tony Jaa': 'Talon', 'Nina Dobrev': 'Becky Clearidge', 'Rory McCann': 'Tennyson Torch', 'Toni Collette': 'Jane Marke', 'Samuel L. Jackson': 'Augustus Gibbons', 'Ice Cube': 'Darius Stone', 'Hermione Corfield': 'Ainsley', 'Tony Gonzalez': 'Paul Donovan', 'Michael Bisping': 'Hawk', 'Al Sapienza': 'CIA Director'}" tt3773378,{} tt1519461,"{'Reid Warner': 'Reid', 'Darrin Bragg': 'Darrin', 'Ben Rovner': 'Ben', 'Jelena Nik': 'Jelena', 'Roy Abramsohn': 'Jim Nelson', 'Frank Novak': 'Frank Novak', 'Glenn Campbell': 'Glenn Campbell', 'Connie West': ""Little A'Le'Inn Waitress (as Conception West)"", 'James Decker': 'Kooky Rachel Local', 'Patrick Sullivan': ""Lazar's Insider Security"", 'David Thornsberry': 'Employee', 'Jenna Thornsberry': ""Area 51 Employee's Wife"", 'Amelia Thornsberry': 'Employee Daughter', 'Wray Featherstone': ""Reid's Dad"", 'Sandra Staggs': ""Reid's Mom""}" tt2283362,"{'Dwayne Johnson': 'Spencer', 'Kevin Hart': 'Fridge', 'Jack Black': 'Bethany', 'Karen Gillan': 'Martha', 'Rhys Darby': 'Nigel', 'Bobby Cannavale': 'Van Pelt', 'Nick Jonas': 'Alex', 'Alex Wolff': 'Young Spencer', ""Ser'Darius Blain"": 'Young Fridge', 'Madison Iseman': 'Young Bethany', 'Morgan Turner': 'Young Martha', 'Sean Buxton': 'Jogger', 'Mason Guccione': 'Gamer', 'Marin Hinkle': ""Spencer's Mom"", 'Tracey Bonner': ""Fridge's Mom""}" tt5301544,"{'Alex Beh': 'Ethan Smith', 'Arthur L. Bernstein': 'Daryl Hoats', 'Adam Falkoff': 'James Johnson', 'Sean Astin': 'Bob Bernard', 'Harriet Divine': 'McKenzie Hoats', 'Ted Levine': 'Rouge Holmes', 'Shane Black': 'Luke', 'Taryn Manning': 'Adrienne Lockhart', 'Helene Wren': 'Lauren Hoats', 'Jenica Bergere': 'Sheila Browning', 'Bo Brinkman': 'Sergeant Bo Regards', 'Lee Broda': 'Cindy', 'Ivory Broome': 'Hospital Security', 'Jake Busey': 'Woody Woodrow', 'Heath Calvert': 'Dr. Jefferson Spitz'}" tt1386697,"{'Will Smith': 'Deadshot', 'Jaime FitzSimons': 'Sergeant Ames Bravo 14', 'Ike Barinholtz': 'Griggs', 'Margot Robbie': 'Harley Quinn', 'Christopher Dyson': 'Missing Hand Guard', 'Bambadjan Bamba': 'T-Shirt Vendor', 'Viola Davis': 'Amanda Waller', 'Ted Whittall': 'Admiral Olsen', 'David Harbour': 'Dexter Tolliver', 'Robin Atkin Downes': 'Angelo', 'Robert B. Kennedy': 'U.S. Marshal', 'Billy Otis': 'Mafia Snitch', 'Shailyn Pierre-Dixon': 'Zoe', 'Jared Leto': 'The Joker', 'James McGowan': 'Panda Man'}" tt5612742,"{'Danielle Campbell': 'Maddy Datner', 'Joel Courtney': 'Cole Reede', 'Madelaine Petsch': 'Marissa', 'Cameron Palatas': 'Kane', 'Meg DeLacy': ""Felicity 'City' Stufts (as Meg Delacy)"", 'Jill Cimorelli': 'TIG / Abbey', 'Luke Bilyk': 'T.J.', 'Michael Chey': 'Sweats / Larry', 'Brendan Calton': 'Strings / Efraim', 'Adan Allende': 'Mutey / Emile', 'Ian Ziering': 'Ken Reede', 'Cheri Oteri': 'Christine Datner', 'Richard Karn': 'Murphy Datner', 'Nicholle Tom': 'Principal Statszill', 'Diamond White': 'Rayna'}" tt4848010,"{'Wyatt Cenac': 'David', 'Greta Lee': 'Jennifer', 'Maria Dizzia': 'Sawyer Edwards', 'Alex Karpovsky': 'Charles', 'Ben Sinclair': 'Parking Attendant', 'Larry Murphy': 'McDannell', 'Sam Seder': 'Dressler', 'Diane Ciesla': 'Lily Geist', 'Buzz Bovshow': 'Bernard Geist', 'Michael Cyril Creighton': 'Richard Pringle', 'Matt Dellapina': 'Jordan Roth', 'Jennifer Prediger': 'Shopper', 'Dan Bartfield': 'Violinist', 'Louis Cancelmi': 'Daniel', 'Nicholas Colia': 'The Monk'}" tt3518988,"{'Dan Harmon': 'Himself', 'Jeff Bryan Davis': 'Himself (as Jeff B. Davis)', 'Erin McGathy': 'Herself', 'Spencer Crittenden': 'Himself', 'Steve Agee': 'Himself', 'Jack Black': 'Himself', 'Matt Braunger': 'Himself', 'Alison Brie': 'Herself', 'Yvette Nicole Brown': 'Herself', 'Diane Crittenden': 'Herself', 'Abed Gheith': 'Himself', 'Donald Glover': 'Himself', 'Chris Hardwick': 'Himself', 'Gillian Jacobs': 'Herself', 'Ken Jeong': 'Himself'}" tt1754767,"{'Aerli Austen': 'Gail (voice)', 'Sheila Brothers': 'Margaret (voice)', 'Jon Etheridge': 'Alien #1 / Cactus #2 / Casket Outlaw #1 / Crazy Ass Frank / Dynamite Jr. / Mayor / Mrs. Rose / Pretty Boy McCoy / Slim / Stinky Pinky / Town Guy / Trigger Happy Wilson / Two Eyed Jack (voice)', 'Bryan Mahoney': 'Doc Jenkins / Casket Outlaw #2 / Dildorado Sheriff / Finch / Town City Deputy (voice)', 'John Marchioni': 'Vulture (voice) (as Mario Marchioni)', 'Brad McWaters': 'Casket Dealer (voice)', 'Cullen Moss': 'Wild Harry Johnson (voice) (as Cullen D. Moss)', ""Shaun O'Rourke"": ""Butterfly (voice) (as Shaun P. O'Rourke)"", 'Nate Panning': 'Dalton / Mr. Purdue (voice)', 'Tony Schnur': 'Acondo / Bruno / Cactus #1 / Camel Tocy / Casket Outlaw #3 / Crazy Ass Bill / Dildorado Reporter (voice)', 'Brent Triplett': 'Alien #2 / Cactus #3 / Drippy Peters / McConaughorse / Pee Paw / Pinky Outlaw 1 / Tom / Dark Owl / Willie (voice)', 'Matthew Warzel': 'Crazy Ass Pete (voice) (as Matt Warzel)'}" tt1540115, tt3605266,"{'Julia Garner': 'Rola', 'Joseph Cross': 'Lernert', 'C.S. Lee': 'The Stranger', 'Jillian Mayer': 'Susan (voice)'}" tt1856101,"{'Ryan Gosling': ""'K'"", 'Dave Bautista': 'Sapper Morton', 'Robin Wright': 'Lieutenant Joshi', 'Mark Arnold': 'Interviewer', 'Vilma Szécsi': 'Angry Old Lady', 'Ana de Armas': 'Joi', 'Wood Harris': 'Nandez', 'David Dastmalchian': 'Coco', 'Tómas Lemarquis': 'File Clerk', 'Sylvia Hoeks': 'Luv', 'Edward James Olmos': 'Gaff', 'Jared Leto': 'Niander Wallace', 'Sallie Harmsen': 'Female Replicant', 'Hiam Abbass': 'Freysa', 'Mackenzie Davis': 'Mariette'}" tt4877122,"{'T.J. Miller': 'Gene (voice)', 'James Corden': 'Hi-5 (voice)', 'Anna Faris': 'Jailbreak (voice)', 'Maya Rudolph': 'Smiler (voice)', 'Steven Wright': 'Mel Meh (voice)', 'Jennifer Coolidge': 'Mary Meh (voice)', 'Patrick Stewart': 'Poop (voice) (as Sir Patrick Stewart)', 'Christina Aguilera': 'Akiko Glitter (voice)', 'Sofía Vergara': 'Flamenca (voice)', 'Rachael Ray': 'Spam (voice)', 'Sean Hayes': ""'Devil' Steven (voice)"", 'Jake T. Austin': 'Alex (voice)', 'Tati Gabrielle': 'Addie (voice)', 'Jude Kouyate': ""Poop Jr. 'PJ' (voice)"", 'Jeffrey Ross': 'Internet Troll (voice) (as Jeff Ross)'}" tt1650062,"{'Joel Courtney': 'Joe Lamb', 'Jessica Tuck': 'Mrs. Kaznyk', 'Joel McKinnon Miller': 'Mr. Kaznyk', 'Ryan Lee': 'Cary', 'Zach Mills': 'Preston', 'Riley Griffiths': 'Charles Kaznyk', 'Gabriel Basso': 'Martin', 'Kyle Chandler': 'Deputy Jackson Lamb', 'Ron Eldard': 'Louis Dainard', 'AJ Michalka': 'Jen Kaznyk', 'Andrew Miller': 'Kaznyk Twin', 'Jakob Miller': 'Kaznyk Twin', 'Jade Griffiths': 'Benji Kaznyk', 'Britt Flatmo': 'Peg Kaznyk', 'Elle Fanning': 'Alice Dainard'}" tt1648190,"{'Matthew McConaughey': 'Walter', 'Idris Elba': 'Roland', 'Tom Taylor': 'Jake', 'Dennis Haysbert': 'Steven', 'Ben Gavin': 'Soldier', 'Claudia Kim': 'Arra', 'Jackie Earle Haley': 'Sayre', 'Fran Kranz': 'Pimli', 'Abbey Lee': 'Tirana', 'Katheryn Winnick': 'Laurie', 'Nicholas Pauling': 'Lon', 'Michael Barbieri': 'Timmy', 'José Zúñiga': 'Dr. Hotchkiss (as José Zuñiga)', 'Nicholas Hamilton': 'Lucas Hanson', 'Inge Beckmann': 'Teacher'}" tt1959563,"{'Elodie Yung': 'Amelia Roussel', 'Ryan Reynolds': 'Michael Bryce', 'Tsuwayuki Saotome': 'Kurosawa', 'Roy Hill': 'Helicopter Pilot / Newscaster', 'Richard E. Grant': 'Seifert', 'Gary Oldman': 'Vladislav Dukhovich', 'Rod Hallett': 'Professor Asimov', 'Yuri Kolokolnikov': 'Ivan', 'Nadia Konakchieva': 'Mrs. Asimov', 'Valentin Stojanov': 'Petr Asimov Jr.', 'Noortje Herlaar': 'ICC Court Clerk', 'Georgie Glen': 'ICC Lead Judge', 'Michael Gor': 'Livitin', 'Barry Atsma': 'Moreno', 'Ralitsa Vassileva': 'Newscaster'}" tt3892618,"{'Terrance Zdunich': 'Lucifer', 'Paul Sorvino': 'God', 'Adam Pascal': 'The Agent', 'Marc Senter': 'The Scorpion', 'Emilie Autumn': 'The Painted Doll', ""Kevin 'ohGr' Ogilvie"": 'The Twin (as Nivek Ogre)', 'Dayton Callie': 'The Ticket Keeper', 'Tech N9ne': 'The Librarian', 'Briana Evigan': 'Ms. Merrywood', 'Kayla Allen': 'Carnie', 'Amy Argyle': 'Applicant (as Amy Lawhorn)', 'Lauren Michelle Bishop': ""The Magician's Assistant"", 'Barry Bostwick': 'The Watchword', 'Alexis Brandt': 'Applicant', 'Alisa Burket': 'Virginia / His Lady Of Virtue'}" tt4335520,"{'Tracy Chou': 'Herself', 'Evelyn Cordner': 'Herself', 'Danielle Feinberg': 'Herself', 'Grace Hopper': 'Herself (archive footage)', 'Julie Ann Horvath': 'Herself', 'Walter Isaacson': 'Himself', 'Maria Klawe': 'Herself', 'Courtney Nash': 'Herself', 'Aliya Rahman': 'Herself', 'Megan Smith': 'Herself', 'Claude Steele': 'Himself'}" tt2378507,"{'Brie Larson': 'Jeannette', 'Woody Harrelson': 'Rex', 'Naomi Watts': 'Rose Mary', 'Ella Anderson': 'Young Jeannette', 'Chandler Head': 'Youngest Jeannette', 'Max Greenfield': 'David', 'Josh Caras': 'Brian', 'Charlie Shotwell': 'Young Brian', 'Iain Armitage': 'Youngest Brian', 'Sarah Snook': 'Lori', 'Sadie Sink': 'Young Lori', 'Olivia Kate Rice': 'Youngest Lori', 'Brigette Lundy-Paine': 'Maureen', 'Shree Crooks': 'Young Maureen (as Shree Grace Crooks)', 'Eden Grace Redfield': 'Youngest Maureen'}" tt4131800,"{'Uzo Aduba': 'Queen Novo (voice)', 'Ashleigh Ball': 'Applejack / Rainbow Dash (voice)', 'Adam Bengis': 'Code Red (voice)', 'Emily Blunt': 'Tempest Shadow / Fizzlepop Berrytwist (voice)', 'Kristin Chenoweth': 'Princess Skystar (voice)', 'Michelle Creber': 'Applebloom (voice)', 'Taye Diggs': 'Capper (voice)', 'Brian Dobson': 'Verko / Additional Voices (voice)', 'Michael Dobson': 'Bulk Biceps / Canterlot & Klugetown Featured Voices (voice)', 'Andrea Libman': 'Fluttershy / Pinkie Pie (voice)', 'Max Martini': 'Boyle (voice)', 'Britt McKillip': 'Princess Cadance (voice)', 'Peter New': 'Big Mac / Klugetown Featured Voices (voice)', 'Mark Oliver': 'First Mate Mullet (voice)', 'Nicole Oliver': 'Princess Celestia / Lix Spittle / Klugetown Featured Voices (voice)'}" tt3469046,"{'Steve Carell': 'Gru / Dru (voice)', 'Kristen Wiig': 'Lucy (voice)', 'Trey Parker': 'Balthazar Bratt (voice)', 'Miranda Cosgrove': 'Margo (voice)', 'Dana Gaier': 'Edith (voice)', 'Nev Scharrel': 'Agnes (voice)', 'Pierre Coffin': 'Minions / Museum Director / Additional Voices (voice)', 'Steve Coogan': 'Fritz / Silas Ramsbottom (voice)', 'Julie Andrews': ""Gru's Mom (voice)"", 'Jenny Slate': 'Valerie Da Vinci (voice)', 'Michael Beattie': 'TV Show Host / Scar-Faced Man (voice)', 'Andy Nyman': 'Clive the Robot (voice)', 'Adrian Ciscato': 'Niko (voice)', 'Brian T. Delaney': 'Commercial Announcer / Military Officer / Additional Voices (voice)', 'Katia Saponenko': ""Niko's Mother (voice)""}" tt3564472,"{'Regina Hall': 'Ryan Pierce', 'Queen Latifah': 'Sasha Franklin', 'Jada Pinkett Smith': 'Lisa Cooper', 'Tiffany Haddish': 'Dina', 'Larenz Tate': 'Julian Stevens', 'Mike Colter': 'Stewart Pierce', 'Kate Walsh': 'Elizabeth Davelli', 'Kofi Siriboe': 'Malik', 'Lara Grice': 'Bethany', 'Deborah Ayorinde': 'Simone', 'Janeline Hayes': 'Print Reporter (as Janeline Condez Hayes)', 'Wild Wayne': ""DJ (as Wayne 'Wild Wayne' Benjamin Jr.)"", 'Sunny Hostin': 'Sunny Hostin', 'Nick Mundy': 'Tow Truck Driver', 'Ricky Wayne': 'Ted'}" tt1711525,"{'Jason Bateman': 'Josh Parker', 'Olivia Munn': 'Tracey Hughes', 'T.J. Miller': 'Clay Vanstone', 'Jennifer Aniston': 'Carol Vanstone', 'Kate McKinnon': 'Mary', 'Courtney B. Vance': 'Walter Davis', 'Jillian Bell': 'Trina', 'Rob Corddry': 'Jeremy', 'Vanessa Bayer': 'Allison', 'Randall Park': 'Fred', 'Sam Richardson': 'Joel', 'Karan Soni': 'Nate', 'Jamie Chung': 'Meghan', 'Abbey Lee': 'Savannah', ""Da'Vine Joy Randolph"": 'Carla'}" tt0498381,"{'Matilda Anna Ingrid Lutz': 'Julia (as Matilda Lutz)', 'Alex Roe': 'Holt', 'Johnny Galecki': 'Gabriel', ""Vincent D'Onofrio"": 'Burke', 'Aimee Teegarden': 'Skye', 'Bonnie Morgan': 'Samara', 'Se Oh': 'Blue (as Chuck Willis)', 'Patrick R. Walker': 'Jamal (as Patrick Walker)', 'Zach Roerig': 'Carter', 'Laura Wiggins': 'Faith (as Laura Slade Wiggins)', 'Lizzie Brocheré': 'Kelly (as Lizzie Brochere)', 'Karen Ceesay': 'Flight Attendant', 'Dave Blamy': 'First Officer', 'Michael E. Sanders': 'Pilot', 'Randall Taylor': ""Holt's Father""}" tt2473510,"{'Chris J. Murray': 'Ryan', 'Brit Shaw': 'Emily', 'Ivy George': 'Leila', 'Dan Gill': 'Mike', 'Olivia Taylor Dudley': 'Skyler', 'Chloe Csengery': 'Katie', 'Jessica Tyler Brown': 'Kristi (as Jessica Brown)', 'Don McManus': 'Kent', 'Michael Krawic': 'Father Todd', 'Hallie Foote': 'Grandma Lois', 'Aiden Lovekamp': 'Hunter Rey', 'Cara Pifko': 'Laura', 'Mark Steger': 'Tobi'}" tt3065204,"{'Patrick Wilson': 'Ed Warren', 'Vera Farmiga': 'Lorraine Warren', 'Madison Wolfe': 'Janet Hodgson', ""Frances O'Connor"": 'Peggy Hodgson', 'Lauren Esposito': 'Margaret Hodgson', 'Benjamin Haigh': 'Billy Hodgson', 'Patrick McAuley': 'Johnny Hodgson', 'Simon McBurney': 'Maurice Grosse', 'Maria Doyle Kennedy': 'Peggy Nottingham', 'Simon Delaney': 'Vic Nottingham', 'Franka Potente': 'Anita Gregory', 'Bob Adrian': 'Bill Wilkins', 'Robin Atkin Downes': 'Demon Voice (voice)', 'Bonnie Aarons': 'Demon Nun', 'Javier Botet': 'Crooked Man'}" tt3322940,"{'Annabelle Wallis': 'Mia', 'Ward Horton': 'John', 'Tony Amendola': 'Father Perez', 'Alfre Woodard': 'Evelyn', ""Kerry O'Malley"": 'Sharon Higgins', 'Brian Howe': 'Pete Higgins', 'Eric Ladin': 'Detective Clarkin', 'Ivar Brogger': 'Dr. Burgher', 'Geoff Wehner': 'Neighbor', 'Gabriel Bateman': 'Little Boy', 'Shiloh Nelson': 'Little Girl', 'Sasha Sheldon': 'Nurse', 'Camden Singer': 'Clerk', 'Robin Pearson Rose': 'Mother', 'Keira Daniels': 'Young Annabelle Higgins'}" tt3799694,"{'Russell Crowe': 'Jackson Healy', 'Ryan Gosling': 'Holland March', 'Angourie Rice': 'Holly March', 'Matt Bomer': 'John Boy', 'Margaret Qualley': 'Amelia Kuttner', 'Yaya DaCosta': 'Tally', 'Keith David': 'Older Guy', 'Beau Knapp': 'Blueface', 'Lois Smith': 'Mrs. Glenn', 'Murielle Telio': 'Misty Mountains', 'Gil Gerard': 'Bergen Paulsen', 'Daisy Tahan': 'Jessica', 'Kim Basinger': 'Judith Kuttner', 'Jack Kilmer': 'Chet', 'Lance Valentine Butler': 'Kid on Bike'}" tt3280262,"{'Allison Dawn Doiron': 'Rachel', 'Alex Vincent': 'Andy Barclay', 'Brad Dourif': 'Chucky (voice)', 'Fiona Dourif': 'Nica Pierce', 'Dan De Jaeger': 'Orderly #1 (as Dan DeJaeger)', 'Matthew Stefanson': 'Orderly #2', 'Michael Therriault': 'Dr. Foley', 'Zak Santiago': 'Nurse Carlos', 'Ali Tataryn': 'Nurse Ashley', 'Marina Stephenson Kerr': 'Angela', 'Adam Hurtig': 'Michael', 'Grace Lynn Kung': 'Claire', 'Elisabeth Rosen': 'Madeleine', 'Jennifer Tilly': 'Tiffany Valentine', 'Summer H. Howell': 'Alice Pierce (as Summer Howell)'}" tt2975590,"{'Ben Affleck': 'Bruce Wayne / Batman', 'Henry Cavill': 'Clark Kent / Superman', 'Amy Adams': 'Lois', 'Jesse Eisenberg': 'Lex Luthor', 'Diane Lane': 'Martha Kent', 'Laurence Fishburne': 'Perry White', 'Jeremy Irons': 'Alfred', 'Holly Hunter': 'Senator Finch', 'Gal Gadot': 'Diana Prince / Wonder Woman', 'Scoot McNairy': 'Wallace Keefe', 'Callan Mulvey': 'Anatoli Knyazev', 'Tao Okamoto': 'Mercy Graves', 'Brandon Spink': 'Young Bruce Wayne', 'Lauren Cohan': 'Martha Wayne', 'Alan D. Purwin': 'Wayne Industries Pilot'}" tt1528854,"{'Will Ferrell': 'Brad Whitaker', 'Mark Wahlberg': 'Dusty Mayron', 'Linda Cardellini': 'Sara', 'Thomas Haden Church': 'Leo Holt', 'Scarlett Estevez': 'Megan', 'Owen Vaccaro': 'Dylan (as Owen Wilder Vaccaro)', 'Bobby Cannavale': 'Dr. Francisco', 'Hannibal Buress': 'Griff', 'Bill Burr': ""Jerry (Bully's Dad)"", 'Jamie Denbo': 'Doris', 'Mark L. Young': 'Dental Hygienist', 'Matthew Paul Martinez': 'Pete (Recording Engineer)', 'Dave Davis': 'Panda Singer #1', 'James Harlon Palmer': 'Panda Singer #2', 'Riley Ann Corbin': 'Hello Kitty Girl'}" tt0088206,"{'Faye Dunaway': 'Selena', 'Helen Slater': 'Supergirl / Linda Lee', ""Peter O'Toole"": 'Zaltar', 'Mia Farrow': 'Alura', 'Brenda Vaccaro': 'Bianca', 'Peter Cook': 'Nigel', 'Simon Ward': 'Zor-El', 'Marc McClure': 'Jimmy Olsen', 'Hart Bochner': 'Ethan', 'Maureen Teefy': 'Lucy Lane', 'David Healy': 'Mr. Danvers', 'Sandra Dickinson': 'Pretty Young Lady', 'Robyn Mandell': 'Myra', 'Jenifer Landor': 'Muffy', 'Diana Ricardo': 'Mrs. Murray'}" tt1253863,"{'Sullivan Stapleton': 'Themistokles', 'Eva Green': 'Artemisia', 'Lena Headey': 'Queen Gorgo', 'Hans Matheson': 'Aeskylos', 'Callan Mulvey': 'Scyllias', 'David Wenham': 'Dilios', 'Rodrigo Santoro': 'Xerxes', ""Jack O'Connell"": 'Calisto', 'Andrew Tiernan': 'Ephialtes', 'Igal Naor': 'King Darius', 'Andrew Pleavin': 'Daxos', 'Peter Mensah': 'Persian Emissary', 'Ben Turner': 'General Artaphernes', 'Ashraf Barhom': 'General Bandari', 'Christopher Sciueref': 'General Kashani'}" tt3482062,"{'Patrick Renna': 'Bobby', 'Tommy Savas': 'Raymond', 'Annie Monroe': 'Chloe', 'Jackie Tohn': 'Jennifer', 'Page Kennedy': 'Bud', 'Kyle Howard': 'Smith', 'Jordan Masterson': 'Fred', 'Christopher Masterson': 'Trevor', 'Lynsey Bartilson': 'Claire', 'Eric Pumphrey': 'Carl', 'Lindsey Reckis': 'Lizzy', 'Hanover Savas': 'Jasmine', 'Dwayne Adway': 'Lamarcus', 'Jared Bell': 'Slater', 'Morgan Krantz': 'Ronnie'}" tt2406566,"{'Charlize Theron': 'Lorraine Broughton', 'James McAvoy': 'David Percival', 'Eddie Marsan': 'Spyglass', 'John Goodman': 'Emmett Kurzfeld', 'Toby Jones': 'Eric Gray', 'James Faulkner': ""Chief 'C'"", 'Roland Møller': 'Aleksander Bremovych (as Roland Moller)', 'Sofia Boutella': 'Delphine Lasalle', 'Bill Skarsgård': 'Merkel', 'Sam Hargrave': 'James Gasciogne', 'Jóhannes Haukur Jóhannesson': 'Yuri Bakhtin (as Jóhannes Jóhannesson)', 'Til Schweiger': 'Watchmaker', 'Barbara Sukowa': 'Coroner', 'Attila C. Arpa': 'East German Guard #1 (as Attila Arpa)', 'Martin Angerbauer': 'East German Guard #2'}" tt4139124,"{'Jordan Peele': 'Rell Williams / Oil Dresden', 'Keegan-Michael Key': 'Clarence Goobril / Smoke Dresden', 'Tiffany Haddish': 'Hi-C', 'Method Man': 'Cheddar', 'Darrell Britt-Gibson': 'Trunk', 'Jason Mitchell': 'Bud', 'Jamar Malachi Neighbors': 'Stitches', 'Luis Guzmán': 'Bacon', 'Will Forte': 'Hulka', 'Nia Long': 'Hannah', 'Rob Huebel': 'Spencer', 'Madison Wolfe': 'Alexis', 'Jordyn A. Davis': 'Belle', 'James Yeargain': 'Donnie', 'Brittany Seymour': 'Rachel'}" tt10146586,"{'Alastair Aiken': 'Himself', 'Diamond Minecart': 'Himself'}" tt3534842,"{'Jaime Pressly': 'Alyson Simon', 'Patrick Muldoon': 'Jonathan Simon', 'Tobin Bell': 'Dr. Freeman', 'Marina Sirtis': 'Janine', 'Justina Machado': 'Prof. Elena Carranza', 'Kylie Rogers': 'Claire Simon', 'Mark DeCarlo': 'Ken Stevens', 'Trilby Glover': 'Kathy', 'Joey Luthman': 'Zachary', ""Gabe O'Mara"": 'Zachary age 10', 'Kristen Kerr': 'Nurse', 'Lauren K. Montgomery': 'Ofelia', 'Mary Pat Gleason': 'Carol', 'Mercy Malick': 'Officer Adrien', 'Joseph Gatt': 'Officer Cobbs'}" tt5278578,"{'Gene Rosen': 'Himself - Sandy Hook Elementary School Neighbor', 'Syeda Suriya Ahmed': 'Herself - Mother of Surviving First Grader', 'Abbey Clements': 'Herself - Sandy Hook Elementary School Teacher', 'Sally Cox': 'Herself - Sandy Hook Elementary School Nurse', 'Bill Cario': 'Himself - Connecticut State Trooper (as Sgt. Bill Cario)', 'Mark Barden': 'Himself - Father of Daniel Barden', 'Daniel Barden': 'Himself - Victim (archive footage)', 'James Barden': 'Himself - Brother of Daniel Barden', 'Natalie Barden': 'Herself - Sister of Daniel Barden', 'Jackie Barden': 'Herself - Mother of Daniel Barden', 'Melissa Malin': ""Herself - The Bardens' Neighbor"", 'Kyle Malin': 'Himself (archive footage)', 'Caroline Malin': 'Herself - Daughter of Melissa Malin', 'Robert Weiss': 'Himself - Msgr. St. Rose of Lima Church', 'Sarah Clements': 'Herself - Daughter of Surviving Teacher'}" tt2250912,"{'Tom Holland': 'Peter Parker / Spider-Man', 'Michael Keaton': 'Adrian Toomes / Vulture', 'Robert Downey Jr.': 'Tony Stark / Iron Man', 'Marisa Tomei': 'May Parker', 'Jon Favreau': 'Happy Hogan', 'Gwyneth Paltrow': 'Pepper Potts', 'Zendaya': 'Michelle', 'Donald Glover': 'Aaron Davis', 'Jacob Batalon': 'Ned', 'Laura Harrier': 'Liz', 'Tony Revolori': 'Flash', 'Bokeem Woodbine': 'Herman Schultz / Shocker #2', 'Tyne Daly': 'Anne Marie Hoag', 'Abraham Attah': 'Abe', 'Hannibal Buress': 'Coach Wilson'}" tt3717490,"{'Dacre Montgomery': 'Jason (Red Ranger)', 'Naomi Scott': 'Kimberly (Pink Ranger)', 'RJ Cyler': 'Billy (Blue Ranger)', 'Ludi Lin': 'Zack (Black Ranger)', 'Becky G': 'Trini (Yellow Ranger)', 'Elizabeth Banks': 'Rita Repulsa', 'Bryan Cranston': 'Zordon', 'Bill Hader': 'Alpha 5 (voice)', 'Matt Shively': 'Damo', 'Cody Kearsley': 'Hawkeye', 'David Denman': 'Sam Scott', 'Robert Moloney': 'Ted Hart', 'Anjali Jay': 'Maddy Hart', 'Sarah Grey': 'Amanda', 'Morgan Taylor Campbell': 'Harper'}" tt4005332,"{'Roger Buehler': 'Narrator', 'Niall Horan': 'Himself', 'Zayn Malik': 'Himself', 'One Direction': 'Themselves', 'Liam Payne': 'Himself', 'Harry Styles': 'Himself', 'Louis Tomlinson': 'Himself'}" tt3890160,"{'Ansel Elgort': 'Baby', 'Jon Bernthal': 'Griff', 'Jon Hamm': 'Buddy', 'Eiza González': 'Darling', 'Micah Howard': 'Barista', 'Lily James': 'Debora', 'Morgan Brown': 'Street Preacher', 'Kevin Spacey': 'Doc', 'Morse Diggs': 'Morse Diggs', 'CJ Jones': 'Joseph', 'Sky Ferreira': ""Baby's Mom"", 'Lance Palmer': ""Baby's Dad"", 'Hudson Meek': 'Young Baby', 'Viviana Chavez': 'Diner Waitress', 'Hal Whiteside': 'Cook'}" tt6414866,{'Residente': 'Himself'} tt4425200,"{'Keanu Reeves': 'John Wick', 'Riccardo Scamarcio': ""Santino D'Antonio"", 'Ian McShane': 'Winston', 'Ruby Rose': 'Ares', 'Common': 'Cassian', 'Claudia Gerini': ""Gianna D'Antonio"", 'Lance Reddick': 'Charon', 'Laurence Fishburne': 'Bowery King', 'Tobias Segal': 'Earl', 'John Leguizamo': 'Aurelio', 'Bridget Moynahan': 'Helen', 'Thomas Sadoski': 'Jimmy', 'Erik Frandsen': 'Numismatic', 'David Patrick Kelly': 'Charlie', 'Perry Yung': 'Doctor'}" tt3038734,"{'Jessica Szohr': 'Tanya', 'Robert Davi': 'Bobby', 'Jay R. Ferguson': 'Steven', 'Jerry Ferrara': 'Johnny D', 'Danny A. Abeckaser': 'Mark', 'Al Sapienza': 'William Taylor', ""Ryan O'Nan"": 'Sebastian', 'Malea Rose': 'Sam (as Malea Richardson)', 'Busta Rhymes': 'Himself', 'Jennifer Missoni': 'Ellen', 'Annalaina Marks': 'Fiona Sky', 'Allegra Carpenter': 'Stephanie', 'Jay Giannone': 'Detective Duffy', 'Marie Zoumanigui': 'Girl sitting outside (as Marie J. Zoumanigui)', 'Gregg Bello': 'Dr. Fenton'}" tt4935334,"{'Chad Villella': 'Mitch', 'Matt Bettinelli-Olpin': 'Jack', 'Kristina Pesic': 'Sutter', 'Fabianne Therese': 'Sadie', 'Nathalie Love': 'Kim', 'Hannah Marks': 'Ava', 'Dana Gould': 'Raymond Kensington', 'Anessa Ramsey': 'Bunny Kensington / Phone Operator', 'Susan Burke': 'Betty', 'Davey Johnson': 'Dale', 'Mather Zickel': 'Lucas', 'Karla Droege': 'EMT', 'Zoe Cooper': 'Dispatch', 'Justin Welborn': 'Surgeon', 'David Yow': 'Danny'}" tt5115546,"{'Jon Heder': 'Louis', 'David Krumholtz': 'Stan', 'Justin Long': 'Ross', 'Melonie Diaz': 'Ellie', 'Amy Sedaris': 'Victoria', 'Paul W. Downs': 'Zak', 'Tom Schiller': 'Mitch', 'Joel Marsh Garland': 'Hammer', 'Martin Barabas': 'Detective Whittards', 'Veronika Dash': 'Officer Finley', 'Rob DeRosa': 'Crazy Junkie', 'Doug Drucker': 'Tattooed Junkie', 'Steve Gonsalves': 'Randy', 'Jason Hawes': 'Troy', 'Clem McIntosh': 'H.J'}" tt5462602,"{'Kumail Nanjiani': 'Kumail', 'Zoe Kazan': 'Emily', 'Holly Hunter': 'Beth', 'Ray Romano': 'Terry', 'Anupam Kher': 'Azmat', 'Zenobia Shroff': 'Sharmeen', 'Adeel Akhtar': 'Naveed', 'Bo Burnham': 'CJ', 'Aidy Bryant': 'Mary', 'Kurt Braunohler': 'Chris', 'Vella Lovell': 'Khadija', 'Myra Lucretia Taylor': 'Nurse Judy', 'Jeremy Shamos': 'Bob Dalavan', 'David Alan Grier': 'Andy Dodd', 'Ed Herbstman': 'Sam Highsmith'}" tt6231792,"{'Haiden Deegan': 'Himself', 'Josh Hill': 'Himself', 'Dean Wilson': 'Himself'}" tt5199588,"{'John John Florence': '(as John Florence)', 'John C. Reilly': 'Narrator (voice)'}" tt5226436,"{'Mikkel Bang': 'Himself', 'Shin Biyajima': 'Himself', 'Ben Ferguson': 'Himself', 'Cam FitzPatrick': 'Himself', 'Torstein Horgmo': 'Himself', 'Bryan Iguchi': 'Himself', 'Eric Jackson': 'Himself', 'Mark Landvik': 'Himself', 'Bode Merrill': 'Himself', 'Pat Moore': 'Himself', 'Gerald Pollack': 'Narration (voice)', 'Travis Rice': 'Himself'}" tt4698584,"{'Luis Gnecco': 'Pablo Neruda', 'Gael García Bernal': 'Óscar Peluchonneau', 'Mercedes Morán': 'Delia del Carril', 'Emilio Gutiérrez Caba': 'Picasso', 'Diego Muñoz': 'Martínez', 'Alejandro Goic': 'Jorge Bellet', 'Pablo Derqui': 'Víctor Pey', 'Marcelo Alonso': 'Pepe Rodríguez', 'Michael Silva': 'Álvaro Jara', 'Francisco Reyes': 'Bianchi', 'Jaime Vadell': 'Arturo Alessandri', 'Néstor Cantillana': 'Ministro del Interior', 'Alfredo Castro': 'Gabriel González Videla', 'Amparo Noguera': 'Mujer Borracha'}" tt4939066,"{'Liam Neeson': 'Douglas MacArthur', 'Josie Bissett': 'Jean', 'Jon Gries': 'Gen Hoyt Vandenberg', 'Justin Rupple': 'Alexander Haig', 'Do-Hwan Woo': ""Ri Kyung Shik's subordinate"", 'Jung-jae Lee': 'Jang, Hak-soo (South Korean Navy Lieutenant)', 'Sean Dulake': 'Lt. Col. Edward L. Rowny', 'Jun-ho Jeong': 'Seo Jin-Chul', 'Se-Yeon Jin': 'Han Jae-Sun', 'Beom-su Lee': 'Lim, Gye-jin (North Korean Senior Colonel)', 'Sunghoon Choo': 'North Korean General Baek San', 'Troy Zitzelsberger': 'F. Charkhorn (as Troy Mark Zitzelsberger)', 'Howard Neilson-Sewell': 'Colonel, planning Office', 'Darin Shaw': 'Soldier 1 (voice)', 'Damien Furtado': 'Foster'}" tt2989524,"{'Bel Powley': 'Carrie Pilby', 'Nathan Lane': 'Dr. Petrov', 'Gabriel Byrne': 'Mr. Pilby', 'Vanessa Bayer': 'Tara', ""Colin O'Donoghue"": 'Professor Harrison', 'Jason Ritter': 'Matt', 'William Moseley': 'Cy', 'Desmin Borges': 'Douglas P. Simpson', 'Poorna Jagannathan': 'Fliss', 'Zachary Infante': 'Davy', 'Andy Bustillos': 'Ted', 'Mahaley Patel': 'Amanda', 'Joel Michaely': 'George', 'Scott Keiji Takeda': 'Ronald', 'Cornelia Guest': 'Mrs. Rubin'}" tt3717316,"{'Andre Royo': 'Ashley', 'Jeannetta Arnette': 'Dr. Merton', 'Kellee Stewart': 'Nat', 'Kevin Jackson': 'Ray', 'Larry Flash Jenkins': 'Robert fix it guy', 'Myles Cranford': 'Pawnbroker', 'Antonio D. Charity': 'Dwayne', 'Johnnie Johnson III': 'Construction Worker', 'Karina Bonnefil': 'Santa', 'George Sample III': 'Jeremy Pittman', 'DeMorge Brown': 'Janitor', 'Nicholas Anthony Reid': ""Santa's Assistant"", 'Alexis DeLaRosa': 'Carlos', 'Hubert Escarpeta': 'Swimmer', 'Celestial': ""Ashley's Mom""}" tt5072406,"{'Emmanuelle Devos': 'Diane Roy, alias Hélène', 'Nathalie Baye': 'Marlène', 'David Clavel': 'Michel', 'Diane Rouxel': ""Elodie / Marlène's daughter"", 'Olivier Chantreau': 'Vincent', 'Samuel Labarthe': ""Simon / Diane's ex-husband"", 'Jean-Philippe Écoffey': 'Le détective / The detective', 'Marion Reymond': ""Adrienne / Luc's girlfriend"", 'Paulin Jaccoud': ""Luc / Diane's son"", 'Sakir Uyar': ""L'homme""}" tt7456468,"{'Minami Takahashi': 'Yui Yamada', 'Ayane Sakura': 'Tomoka Kase', 'Ibuki Kido': 'Mikawa', 'Bryn Apprill': 'Yui Yamada (voice)', 'Morgan Berry': 'Kase-san (voice)', 'Shelley Calene-Black': ""Yamada's Mother (voice)"", 'Luci Christian': 'Teacher (voice)', 'Elissa Cuellar': '(voice)', 'Patricia Duran': 'Coach (voice)', 'Karlii Hoch': 'Additional Voices (voice)', 'Ty Mahany': 'Additional Voices (voice)', 'Melissa Molano': 'Additional Voices (voice)', 'Holly Segarra': 'Additional Voices (voice)', 'Avery Smithhart': '(voice)', 'Olivia Swasey': 'Additional Voices (voice)'}" tt5022872,"{'Sivan Noam Shimon': 'Naama Barash', 'Hadas Jade Sakori': 'Dana Hershko (as Jade Sakori)', 'Dvir Benedek': 'Gideon Barash', 'Irit Pashtan': 'Michelle Barash', 'Amit Muchtar': 'Dudu Barash', 'Bar Ben Vakil': 'Liora Barash', 'Oleg Rodovilski': 'Oleg', 'Koral Bosidon': 'Yifat', 'Hila Gozlan': 'Iris', 'Einav Levi': 'Lili', 'Yifat Mizrahi': 'Arabic Teacher', 'Reut Akkerman': 'Dracula'}" tt5186236,"{'Boguslaw Linda': 'Wladyslaw Strzeminski', 'Bronislawa Zamachowska': 'Nika Strzeminska', 'Zofia Wichlacz': 'Hania', 'Krzysztof Pieczynski': 'Julian Przybos', 'Mariusz Bonaszewski': 'Madejski', 'Szymon Bobrowski': 'Wlodzimierz Sokorski', 'Aleksander Fabisiak': 'Rajner', 'Paulina Galazka': 'Wasinska', 'Irena Melcer': 'Jadzia', 'Tomasz Chodorowski': 'Tomek', 'Filip Gurlacz': 'Konrad', 'Mateusz Rusin': 'Stefan', 'Mateusz Rzezniczak': 'Mateusz', 'Tomasz Wlosok': 'Roman', 'Adrian Zaremba': 'Wojtek'}" tt5120042,"{'Jimmy Duck Holmes': ""Himself (as Jimmy 'Duck' Holmes)"", 'L.C. Ulmer': 'Himself', 'Bobby Rush': 'Himself', 'Little Freddie King': 'Himself', 'Robert Bilbo Walker': 'Himself', 'R.L. Boyce': 'Himself', 'McKinney Williams': 'Himself', 'Barbara Lynn': 'Herself', ""Lil' Buck Sinegal"": 'Himself', 'Lazy Lester': 'Himself', 'Henry Gray': 'Himself', 'Carol Fran': 'Herself', 'Bud Spires': 'Himself', 'John Wilkins': 'Himself (as Reverend John Wilkins)'}" tt4666726,"{'Rebecca Hall': 'Christine', 'Michael C. Hall': 'George', 'Tracy Letts': 'Michael', 'Maria Dizzia': 'Jean', 'J. Smith-Cameron': 'Peg', 'Timothy Simons': 'Steve (as Tim Simons)', 'Kim Shaw': 'Andrea', 'John Cullum': 'Bob Andersen', 'Morgan Spector': 'Doctor Parsons', 'Jayson Warner Smith': 'Mitch', 'Kimberley Drummond': 'Gail', 'Lindsay Ayliffe': 'Capt. Frank Basil', 'Susan Pourfar': 'Miranda', 'Rachel Hendrix': 'Crystal', 'David Foster': 'Bandaged Man'}" tt4799050,"{'Scarlett Johansson': 'Jess', 'Jillian Bell': 'Alice', 'Zoë Kravitz': 'Blair', 'Ilana Glazer': 'Frankie', 'Kate McKinnon': 'Kiwi / Pippa', 'Paul W. Downs': 'Peter', 'Ryan Cooper': 'Jay', 'Ty Burrell': 'Pietro', 'Demi Moore': 'Lea', 'Enrique Murciano': 'Detective Ruiz', 'Dean Winters': 'Detective Frazier', 'Colton Haynes': 'Real Scotty', 'Patrick Carlyle': 'Patrick', 'Eric André': 'Jake (as Eric Andre)', 'Bo Burnham': 'Tobey'}" tt2763304,"{'Ewan McGregor': 'Renton', 'Logan Gillies': 'Simon (aged 9)', 'Ben Skelton': 'Renton (aged 9)', 'Aiden Haggarty': 'Spud (aged 9)', 'Daniel Smith': 'Begbie (aged 9)', 'Elijah Wolf': 'Tommy (aged 9)', 'Robert Carlyle': ""Begbie / Begbie's Father"", 'Steven Robertson': 'Stoddart', 'Ewen Bremner': 'Spud', 'John Kazek': 'Tom (Rehab Group)', 'Shirley Henderson': 'Gail', 'Charlie Hardie': 'Fergus (aged 9)', 'Scott Aitken': 'Farmer', 'Gordon Kennedy': 'Tulloch', 'Jonny Lee Miller': 'Simon'}" tt3121332,"{'Sebastián Silva': 'Freddy', 'Kristen Wiig': 'Polly', 'Tunde Adebimpe': 'Mo', 'Reg E. Cathey': 'The Bishop', 'Mark Margolis': 'Richard', 'Agustín Silva': 'Chino', 'Alia Shawkat': 'Wendy', 'Lillias White': 'Cecilia', 'Anthony Chisholm': ""Mo's Father"", 'Marsha Stephanie Blake': ""Mo's Sister / Haimy"", 'William Oliver Watkins': ""Mo's Brother-in-Law"", 'Constance Shulman': ""Bishop's Girlfriend"", 'Neal Huff': 'Gallery Owner', 'Jesse Thurston': 'Gallery Owner Assistant', 'Catrina Ganey': 'Policewoman'}" tt3416742,"{'Jemaine Clement': 'Vladislav', 'Taika Waititi': 'Viago', 'Jonny Brugh': 'Deacon (as Jonathan Brugh)', 'Cori Gonzalez-Macuer': 'Nick', 'Stu Rutherford': 'Stu', 'Ben Fransham': 'Petyr', 'Jackie van Beek': 'Jackie (as Jackie Van Beek)', 'Elena Stejko': 'Pauline (The Beast)', 'Jason Hoyte': 'Julian', ""Karen O'Leary"": 'Policewoman', 'Mike Minogue': 'Policeman', 'Chelsie Preston Crayford': 'Josephine (as Chelsie Preston-Crayford)', 'Ian Harcourt': 'Zombie', 'Ethel Robinson': 'Katherine', 'Brad Harding': 'Vampire Hunter'}" tt2592614,"{'Milla Jovovich': 'Alice / Alicia Marcus', 'Iain Glen': 'Dr. Isaacs', 'Ali Larter': 'Claire Redfield', 'Shawn Roberts': 'Wesker', 'Eoin Macken': 'Doc', 'Fraser James': 'Razor', 'Ruby Rose': 'Abigail', 'William Levy': 'Christian', 'Rola': 'Cobalt', 'Ever Anderson': 'Young Alicia / Red Queen', 'Mark Simpson': 'James Marcus', 'Milton Schorr': 'Thin Man', 'Siobhan Hodgson': 'Emaciated Woman', 'Joon-Gi Lee': 'Commander Chu (as Lee Joon Gi)', 'Aubrey Shelton': 'Scars'}" tt5442430,"{'Hiroyuki Sanada': 'Sho Murakami', 'Ryan Reynolds': 'Rory Adams', 'Rebecca Ferguson': 'Miranda North', 'Jake Gyllenhaal': 'David Jordan', 'Olga Dykhovichnaya': 'Ekaterina Golovkina (as Olga Dihovichnaya)', 'Ariyon Bakare': 'Hugh Derry', 'Jesus Del Orden': 'Student 2', 'Allen McLean': 'Student 1', 'Leila Grace': 'Student 3 (as Leila Grace Bostwick-Riddell)', 'Mari Gvelesiani': 'Student 4', 'David Muir': '20 / 20 Anchor', 'Elizabeth Vargas': '20 / 20 Anchor', 'Camiel Warren-Taylor': 'Dominique', 'Haruka Kuroda': 'Doctor', 'Naoko Mori': 'Kazumi'}" tt4698684,"{'Sam Neill': 'Hec', 'Julian Dennison': 'Ricky', 'Rima Te Wiata': 'Bella', 'Rachel House': 'Paula', 'Tioreore Ngatai-Melbourne': 'Kahu', 'Oscar Kightley': 'Andy', 'Stan Walker': 'Ron', 'Mike Minogue': 'Joe', 'Cohen Holloway': 'Hugh', 'Rhys Darby': 'Psycho Sam', 'Troy Kingi': 'TK', 'Taika Waititi': 'Minister', 'Hamish Parkinson': 'Gavin', 'Stu Giles': 'Sick Man', 'Lloyd Scott': 'Tourist'}" tt3917210,"{'Owen Suskind': 'Himself', 'Ron Suskind': 'Himself', 'Cornelia Suskind': 'Herself', 'Walter Suskind': ""Himself, Owen Suskind's big brother"", 'Alan Rosenblatt': 'Himself', 'Emily Jathas': ""Herself, Owen Suskind's girlfriend"", 'Michelle Garcia Winner': 'Herself, speech language pathologist', 'Jonathan Freeman': 'Himself', 'Gilbert Gottfried': 'Himself', 'Jeffrey Ortiz': 'Himself'}" tt2398241,"{'Demi Lovato': 'Smurfette (voice)', 'Rainn Wilson': 'Gargamel (voice)', 'Joe Manganiello': 'Hefty Smurf (voice)', 'Jack McBrayer': 'Clumsy Smurf (voice)', 'Danny Pudi': 'Brainy Smurf (voice)', 'Mandy Patinkin': 'Papa Smurf (voice)', 'Dee Bradley Baker': 'Monty (voice)', 'Frank Welker': 'Azrael (voice)', 'Michelle Rodriguez': 'SmurfStorm (voice)', 'Ellie Kemper': 'SmurfBlossom (voice)', 'Julia Roberts': 'SmurfWillow (voice)', 'Ariel Winter': 'SmurfLily (voice)', 'Meghan Trainor': 'SmurfMelody (voice)', 'Bret Marnell': 'Snappy Bug / Handy Smurf (voice)', 'Brandon Jeffords': 'Cauldron (voice)'}" tt4160708,"{'Stephen Lang': 'The Blind Man', 'Jane Levy': 'Rocky', 'Dylan Minnette': 'Alex', 'Daniel Zovatto': 'Money', 'Emma Bercovici': 'Diddy', 'Franciska Töröcsik': 'Cindy', 'Christian Zagia': 'Raul', 'Katia Bokor': 'Ginger', 'Sergej Onopko': 'Trevor', 'Olivia Gillies': ""Blind Man's Daughter (Young Emma)"", 'Dayna Clark': 'TV Anchor', 'Athos': 'Dog', 'Astor': 'Dog', 'Nomad': 'Dog'}" tt0079714,"{'A. Michael Baldwin': 'Mike (as Michael Baldwin)', 'Bill Thornbury': 'Jody', 'Reggie Bannister': 'Reggie', 'Kathy Lester': 'Lady in Lavender', 'Terrie Kalbus': ""Fortuneteller's Granddaughter"", 'Kenneth V. Jones': 'Caretaker (as Ken Jones)', 'Susan Harper': 'Girlfriend', 'Lynn Eastman-Rossi': 'Sally (as Lynn Eastman)', 'David Arntzen': 'Toby', 'Ralph Richmond': 'Bartender', 'Bill Cone': 'Tommy', 'Laura Mann': 'Double Lavender', 'Mary Ellen Shaw': 'Fortuneteller', 'Myrtle Scotton': 'Maid', 'Angus Scrimm': 'The Tall Man'}" tt0101625,"{'John Candy': 'Augie Morosco', 'Jim Belushi': 'Neil Schwary (as James Belushi)', 'Cybill Shepherd': 'Marilyn Schwary', 'Sean Young': 'Phoebe', 'Richard Lewis': 'Julian Peters', 'Ornella Muti': 'Elena Morosco', 'Giancarlo Giannini': 'Inspector Bonnard', 'George Hamilton': 'Alfonso de la Pena', 'Roberto Sbaratto': 'Detective Toussaint', 'Joss Ackland': 'Hercules Popodopoulos', 'Ann Way': 'Housekeeper', 'Geoffrey Andrews': 'Butler', 'Caterina Boratto': 'Madame de Senneville', 'Elsa Martinelli': 'Carla the Agent', 'Riccardo Parisio Perrotti': 'Customs Officer'}" tt0406375,"{'Jonah Bobo': 'Danny', 'Josh Hutcherson': 'Walter', 'Dax Shepard': 'Astronaut', 'Kristen Stewart': 'Lisa', 'Tim Robbins': 'Dad', 'Frank Oz': 'Robot (voice)', 'John Alexander': 'Robot', 'Derek Mears': 'Lead Zorgon', 'Douglas Tait': 'Zorgon', 'Joe Bucaro III': 'Zorgon (as Joe Bucaro)', 'Jeff Wolfe': 'Zorgon'}" tt0079073,"{'Frank Langella': 'Count Dracula', 'Laurence Olivier': 'Prof. Abraham Van Helsing', 'Donald Pleasence': 'Dr. Jack Seward', 'Kate Nelligan': 'Lucy Seward', 'Trevor Eve': 'Jonathan Harker', 'Jan Francis': 'Mina Van Helsing', 'Janine Duvitski': 'Annie', 'Tony Haygarth': 'Milo Renfield', 'Teddy Turner': 'Swales', 'Sylvester McCoy': 'Walter (as Sylveste McCoy)', 'Kristine Howarth': 'Mrs. Galloway', 'Joe Belcher': 'Tom Hindley', 'Ted Carroll': 'Scarborough Sailor', 'Frank Birch': 'Harbormaster', 'Gabor Vernon': 'Captain of Demeter'}" tt2345759,"{'Tom Cruise': 'Nick Morton', 'Russell Crowe': 'Henry Jekyll', 'Annabelle Wallis': 'Jenny Halsey', 'Sofia Boutella': 'Ahmanet', 'Jake Johnson': 'Sgt. Vail', 'Courtney B. Vance': 'Colonel Greenway', 'Marwan Kenzari': 'Malik', 'Simon Atherton': 'Crusader', 'Stephen Thompson': 'First Man', 'James Arama': 'Second Man', 'Matthew Wilkas': 'Reporter', 'Sohm Kapila': 'Reporter', 'Sean Cameron Michael': 'Archaeologist', 'Rez Kempton': 'Construction Manager', 'Erol Ismail': ""Ahmanet's Warrior""}" tt2639254,"{'Thomas Allam': 'Louis Alexander', 'Alan Rickman': 'King Louis XIV', 'Hope Hancock': 'Francoise Marie', 'Isabella Steinbarth': 'Louise Francoise', 'Hal Hewetson': 'Philippe', 'Carolina Valdés': 'Queen Marie Therese', 'Eleanor Montgomery': 'Royal Nurse', 'Matthias Schoenaerts': 'André Le Notre', 'Danny Webb': 'Claude Moulin', 'Kate Winslet': 'Sabine De Barra', 'Cathy Belton': 'Louise', 'Steven Waddington': 'Thierry Duras', 'Adrian Scarborough': 'Daniel Le Vielle', 'Adrian Schiller': 'Jean Risse', 'Ben Fox': 'Monsieur Mauve'}" tt0024184,"{'Claude Rains': 'Dr. Jack Griffin aka The Invisible Man', 'Gloria Stuart': 'Flora Cranley', 'William Harrigan': 'Dr. Arthur Kemp', 'Henry Travers': 'Dr. Cranley', ""Una O'Connor"": 'Jenny Hall', 'Forrester Harvey': 'Herbert Hall', 'Holmes Herbert': 'Chief of Police', 'E.E. Clive': 'Constable Jaffers', 'Dudley Digges': 'Chief Detective', 'Harry Stubbs': 'Inspector Bird', 'Donald Stuart': 'Inspector Lane', 'Merle Tottenham': 'Millie'}" tt0034398,"{'Lon Chaney Jr.': 'Larry Talbot - The Wolf Man (as Lon Chaney)', 'Claude Rains': 'Sir John Talbot', 'Warren William': 'Dr. Lloyd', 'Ralph Bellamy': 'Colonel Paul Montford', 'Patric Knowles': 'Frank Andrews', 'Bela Lugosi': 'Bela', 'Maria Ouspenskaya': 'Maleva', 'Evelyn Ankers': 'Gwen Conliffe', 'J.M. Kerrigan': 'Charles Conliffe', 'Fay Helm': 'Jenny Williams', 'Forrester Harvey': 'Twiddle'}" tt0355702,"{'John Robinson': 'Stacy', 'Emile Hirsch': 'Jay', 'Rebecca De Mornay': 'Philaine', 'William Mapother': 'Donnie', 'Julio Oscar Mechoso': 'Mr. Alva', 'Victor Rasuk': 'Tony', 'Nikki Reed': 'Kathy Alva', 'Heath Ledger': 'Skip', 'Vincent Laresca': 'Chino', 'Brian Zarate': 'Montoya', 'Pablo Schreiber': 'Stecyk', 'Elden Henson': 'Billy Z', 'Michael Angarano': 'Sid', 'Mitch Hedberg': 'Urethane Wheels Guy', 'Benjamin Nurick': 'Browser'}" tt1374989,"{'Lily James': 'Elizabeth Bennet', 'Sam Riley': 'Mr. Darcy', 'Bella Heathcote': 'Jane Bennet', 'Ellie Bamber': 'Lydia Bennet', 'Millie Brady': 'Mary Bennet', 'Suki Waterhouse': 'Kitty Bennet', 'Douglas Booth': 'Mr. Bingley', 'Sally Phillips': 'Mrs. Bennet', 'Charles Dance': 'Mr. Bennet', 'Jack Huston': 'George Wickham', 'Lena Headey': 'Lady Catherine de Bourgh', 'Matt Smith': 'Parson Collins', 'Emma Greenwell': 'Caroline Bingley', 'Eva Bell': 'Louisa', 'Aisling Loftus': 'Charlotte'}" tt2513074,"{'Joe Alwyn': 'Billy', 'Garrett Hedlund': 'Dime', 'Arturo Castro': 'Mango', 'Mason Lee': 'Foo', 'Astro': ""Lodis (as Brian 'Astro' Bradley)"", 'Beau Knapp': 'Crack', 'Ismael Cruz Cordova': 'Holliday', 'Barney Harris': 'Sykes', 'Vin Diesel': 'Shroom', 'Steve Martin': 'Norm', 'Chris Tucker': 'Albert', 'Kristen Stewart': 'Kathryn', 'Makenzie Leigh': 'Faison', 'Ben Platt': 'Josh', 'Bruce McKinnon': ""Billy's Father""}" tt3717252,"{'Kate Beckinsale': 'Selene', 'Theo James': 'David', 'Tobias Menzies': 'Marius', 'Lara Pulver': 'Semira', 'Charles Dance': 'Thomas', 'James Faulkner': 'Cassius', 'Peter Andersson': 'Vidar', 'Clementine Nicholson': 'Lena', 'Bradley James': 'Varga', 'Daisy Head': 'Alexia', 'Oliver Stark': 'Gregor', 'Zuzana Stivínová': 'Vampire Council #1 (as Zuzana Stivinova)', 'Brian Caspe': 'Vampire Council #2', 'Jan Nemejovský': 'Vampire Council #3 (as Jan Nemejovsky)', 'Sveta Driga': 'Amelia (as Driga Sveta)'}" tt1355644,"{'Jennifer Lawrence': 'Aurora Lane', 'Chris Pratt': 'Jim Preston', 'Michael Sheen': 'Arthur', 'Laurence Fishburne': 'Gus Mancuso', 'Andy Garcia': 'Captain Norris', 'Vince Foster': 'Executive Officer', 'Kara Flowers': 'Communications Officer', 'Conor Brophy': 'Crew Member', 'Julee Cerda': 'Instructor (Hologram)', 'Aurora Perrineau': 'Best Friend', 'Lauren Farmer': 'Party Friend', 'Emerald Mayne': 'Party Friend', 'Kristin Brock': 'Party Friend', 'Tom Ferrari': 'Party Friend', 'Quansae Rutledge': 'Party Friend'}" tt3170902,"{'Jacir Eid Al-Hwietat': 'Theeb (as Jacir Eid)', 'Hassan Mutlag Al-Maraiyeh': 'The Stranger (as Hassan Mutlag)', 'Hussein Salameh Al-Sweilhiyeen': 'Hussein (as Hussein Salameh)', 'Jack Fox': 'Edward', 'Marji Audeh': 'Marji', 'Hmood Ali': 'Sheikh', 'Abdul Aziz Mousa': 'Suleiman', 'Baha Othman': 'Mulazim', 'Ali Omayan': 'Revolt Commander', 'Aswad Gasem': 'Revolt Officer', 'Ali Saleh': 'Revolter', 'Abdullah Atawi': 'Revolter', 'Suleiman Fraj': 'Revolter', 'Hisham Ahmand': 'Revolter', 'Ouday Hassan': 'Raider'}" tt5294966,"{'Hiroshi Abe': 'Shinoda Ryôta', 'Yôko Maki': 'Shiraishi Kyôko', 'Satomi Kobayashi': 'Chinatsu Nakashima', 'Lily Franky': 'Yamanabe', 'Sôsuke Ikematsu': 'Kento Machida', 'Taiyô Yoshizawa': 'Shiraishi Shingo', 'Shôno Hayama': 'High school student'}" tt4882174,"{'Samira Wiley': 'Joyce Smith', 'Michael Potts': 'Archibald Smith', 'Maria Dizzia': 'Mary Cunningham', 'Jamie Harrold': 'Bob Cunningham', 'Thomas Kopache': 'George Bernstein', 'Lucy Martin': 'Florel Bernstein', 'Adrian Martinez': 'Gonzales', 'Evan Fine': 'Billy Cunningham', 'Sophia Lillis': 'Debbie Bernstein', 'Marquise Gary': 'Troy Smith', 'Christina Brucato': 'Kitty Genovese', 'Lynne McCollough': 'Dorothy', 'Sawyer Nunes': 'Mark Cunningham', 'Nancy Ozelli': 'Mowbray Sister', 'Virginia Robinson': 'Mowbray Sister'}" tt3142366,"{'Logan Miller': 'Ryder', 'Robin Weigert': 'Cindy', 'Josh Hamilton': 'Keith', 'Richard Schiff': 'Don', 'Ursula Parker': 'Molly', 'Azura Skye': 'Ruth', 'Elizabeth Franz': 'Evelyn', 'Ashley Gerasimovich': 'Abbey', 'Grant Young': 'Jeremy', 'Seth Young': 'Trenton', 'Amy Hostetler': 'Terry', 'Ella Jaixen': ""Keith's Younger Daughter"", 'Athena Mostek': ""Keith's Youngest Daughter""}" tt0084191,"{'Rainer Werner Fassbinder': 'Polizeileutnant Jansen', 'Günther Kaufmann': 'MK1 Anton', 'Boy Gobert': 'Konzernchef', 'Arnold Marquis': 'Polizeipräsident', 'Richy Müller': 'Neffe', 'Nicole Heesters': 'Barbara', 'Brigitte Mira': 'Personaldirektorin', 'Jörg Holm': 'Vizepräsident', 'Hans Wyprächtiger': 'Zerling', 'Petra Jokisch': 'Elena Farr', 'Andreas Mannkopff': 'Wechselschichtregisseur', 'Ute Koska': 'Polizeiärztin (as Ute Fitz-Koska)', 'Frank Ripploh': 'Gangster', 'Hans-Eckart Eckhardt': 'Polizist', 'Christoph Baumann': 'Kriminalpolizist'}" tt1808339,"{'Karen Gillan': 'Jane Lockhart', 'Stanley Weber': 'Tom Duval', 'Iain De Caestecker': 'Roddy', 'Gary Lewis': 'Benny Lockhart (Dad)', 'Henry Ian Cusick': 'Willie Scott', 'Freya Mavor': 'Nicola Ball', 'Kate Dickie': 'Anna Le Fevre', 'Amy Manson': 'Darsie', 'Niall Greig Fulton': 'Team Member 1', 'Bill Barclay': 'Team Member 2', 'Cora Bisset': 'Bookshop Owner (as Cora Bissett)', 'Louise Goodall': 'Doctor Klinsch', 'John Bett': 'Mr. McLeish', 'Callum Cuthbertson': 'Quiz Master'}" tt3407428,"{'Toni Collette': 'Jean', 'Will Poulter': 'Shane', 'Jack Reynor': 'John', 'Michael Smiley': 'Jim', 'Laura Byrne': 'Head Nurse', 'Ally Ni Chiarain': 'Woman in Taxi', 'Dairíne Ní Dhonnchú': 'Bridie (as Darine Ní Dhonnchadha)', 'Shashi Rami': 'Dr. Shakra', ""Gary Ó'Nualláin"": 'Frank', 'D.J. McGrath': 'Paul DVD Clerk', 'Graham Earley': 'Angry Neighbour', 'Kian Murphy': 'Bike Kid', 'Joe Mullins': 'Taxi Driver', 'Melissa Maria Carton': ""Shane's Ex"", 'Harry Nagle': 'Kit'}" tt4972582,"{'James McAvoy': 'Dennis / Patricia / Hedwig / The Beast / Kevin Wendell Crumb / Barry / Orwell / Jade', 'Anya Taylor-Joy': 'Casey Cooke', 'Betty Buckley': 'Dr. Karen Fletcher', 'Haley Lu Richardson': 'Claire Benoit', 'Jessica Sula': 'Marcia', 'Izzie Coffey': 'Five-Year-Old Casey (as Izzie Leigh Coffey)', 'Brad William Henke': 'Uncle John', 'Sebastian Arcelus': ""Casey's Father"", 'Neal Huff': 'Mr. Benoit', 'Ukee Washington': 'News Anchor', 'Ann Wood': 'Game Show Enthusiast', 'Robert Michael Kelly': 'Joe', 'M. Night Shyamalan': 'Jai / Hooters Lover', 'Rosemary Howard': ""Kevin's Mother"", 'Jerome Gallman': 'Vince, Security Guard'}" tt4361050,"{'Annalise Basso': 'Lina Zander', 'Elizabeth Reaser': 'Alice Zander', 'Lulu Wilson': 'Doris Zander', 'Henry Thomas': 'Father Tom', 'Parker Mack': 'Mikey', 'Halle Charlton': 'Ellie', 'Alexis G. Zall': 'Betty', 'Doug Jones': 'Ghoul Marcus', 'Kate Siegel': 'Jenny Browning', 'Sam Anderson': 'Mr. Browning', 'Chelsea Gonzalez': 'Gloria', 'Lincoln Melcher': 'Jack', 'Nicholas Keenan': 'Walter', 'Michael Weaver': 'Roger Zander', 'Ele Keats': ""Ellie's Mom""}" tt1753383,"{'Josh Gad': 'Bailey / Ellie / Tino / Buddy (voice)', 'Dennis Quaid': 'Adult Ethan', 'Peggy Lipton': 'Adult Hannah', 'Bryce Gheisar': 'Ethan - 8 Years Old', 'K.J. Apa': 'Teen Ethan (as KJ Apa)', 'Juliet Rylance': ""Ethan's Mom"", 'Luke Kirby': ""Ethan's Dad"", 'Gabrielle Rose': 'Grandma Fran', 'Michael Bofshever': 'Grandpa Bill', 'Britt Robertson': 'Teen Hannah', 'Logan Miller': 'Todd', 'Kirby Howell-Baptiste': 'Maya', 'Pooch Hall': 'Al', 'John Ortiz': 'Carlos', 'Nicole LaPlaca': 'Wendi'}" tt4649416,"{'Danny Glover': 'Walter', 'Gabrielle Union': 'Rachel', ""Mo'Nique"": 'Aunt May', 'Kimberly Elise': 'Cheryl', 'Romany Malco': 'Christian', 'J.B. Smoove': 'Lonnie (as JB Smoove)', 'Jessie T. Usher': 'Evan', 'John Michael Higgins': 'Brooks', 'Nicole Ari Parker': 'Sonya', 'Omar Epps': 'Malachi', 'Nadej K. Bailey': 'Niya (as Nadej Bailey)', 'Alkoya Brunson': 'Cameron', 'Marley Taylor': 'Dee', 'D.C. Young Fly': 'Eric (as DC Young Fly)', 'Keri Hilson': 'Jasmine'}" tt2034800,"{'Matt Damon': 'William', 'Tian Jing': 'Commander Lin Mae', 'Willem Dafoe': 'Ballard', 'Andy Lau': 'Strategist Wang', 'Pedro Pascal': 'Tovar', 'Hanyu Zhang': 'General Shao', 'Han Lu': 'Peng Yong', 'Kenny Lin': 'Commander Chen', 'Eddie Peng': 'Commander Wu', 'Xuan Huang': 'Commander Deng', 'Ryan Zheng': 'Shen (as Zheng Kai)', 'Karry Wang': 'Emperor (as Junkai Wang)', 'Cheney Chen': 'Imperial Officer', 'Pilou Asbæk': 'Bouchard', 'Numan Acar': 'Najid'}" tt4550098,"{'Amy Adams': 'Susan Morrow', 'Jake Gyllenhaal': 'Tony Hastings / Edward Sheffield', 'Michael Shannon': 'Bobby Andes', 'Aaron Taylor-Johnson': 'Ray Marcus', 'Isla Fisher': 'Laura Hastings', 'Ellie Bamber': 'India Hastings', 'Armie Hammer': 'Hutton Morrow', 'Karl Glusman': 'Lou', 'Robert Aramayo': 'Turk', 'Laura Linney': 'Anne Sutton', 'Andrea Riseborough': 'Alessia', 'Michael Sheen': 'Carlos', 'Bobbi Salvör Menuez': 'Samantha Morrow (as India Menuez)', 'Imogen Waterhouse': 'Chloe', 'Franco Vega': 'Driver'}" tt3631112,"{'Emily Blunt': 'Rachel', 'Haley Bennett': 'Megan', 'Rebecca Ferguson': 'Anna', 'Justin Theroux': 'Tom', 'Luke Evans': 'Scott', 'Edgar Ramírez': 'Dr. Kamal Abdic (as Édgar Ramírez)', 'Laura Prepon': 'Cathy', 'Allison Janney': 'Detective Riley', 'Darren Goldstein': 'Man in the Suit', 'Lisa Kudrow': 'Martha', 'Cleta Elaine Ellington': 'Oyster Bar Woman (as Cleta E. Ellington)', 'Lana Young': 'Doctor', 'Rachel Christopher': 'Woman with Child', 'Fernando Medina': 'Pool Player', 'Gregory Morley': 'Officer Pete'}" tt4630562,"{'Vin Diesel': 'Dom', 'Jason Statham': 'Deckard', 'Dwayne Johnson': 'Hobbs', 'Michelle Rodriguez': 'Letty', 'Tyrese Gibson': 'Roman', 'Ludacris': ""Tej Parker (as Chris 'Ludacris' Bridges)"", 'Charlize Theron': 'Cipher', 'Kurt Russell': 'Mr. Nobody', 'Nathalie Emmanuel': 'Ramsey', 'Luke Evans': 'Owen', 'Elsa Pataky': 'Elena', 'Kristofer Hivju': 'Rhodes', 'Scott Eastwood': 'Little Nobody', 'Patrick St. Esprit': 'DS Allan', 'Janmarco Santiago': 'Fernando'}" tt3263408,"{'Cassandra Freeman': 'Billie', 'Charles Miller': 'Kofi', 'Marisol Miranda': 'Sofia', 'Dennis Rubin Green': 'Nelson', 'Louisa Ward': 'Alex', 'Aristotle Stamat': 'Elliott', 'Ana Paiva': 'Lauren', 'Dan Winerman': 'Hank', 'David Craig Diaz': 'Worker #1', 'Johanna Anttila': 'Worker #2 (as Johanna Finn)', 'Theodore King': 'Worker #3', 'Daniel Stagliano': 'Random Guy', 'Amanda Seidner': 'Bar Patron'}" tt2650978,"{'Sam Riley': 'Greider', 'Tobias Moretti': 'Hans Brenner', 'Paula Beer': 'Luzi', 'Thomas Schubert': 'Lukas', 'Carmen Gratl': 'Gaderin', 'Clemens Schick': 'Luis Brenner', 'Helmuth Häusler': 'Hubert Brenner (as Helmuth A. Hausler)', 'Martin Leutgeb': 'Otto Brenner', 'Johannes Nikolussi': 'Rudolf Brenner (as Johann Nikolussi)', 'Florian Brückner': 'Edi Brenner', 'Heinz Ollesch': 'Schmied', 'Franz Xaver Brückner': 'Franz', 'Xenia Assenza': 'Maria', 'Beatrix Brunschko': 'Mutter Lukas', 'Gerhard Liebmann': 'Vater Lukas'}" tt5182856,"{'Tadanobu Asano': 'Yasaka', 'Mariko Tsutsui': 'Akié', 'Taiga Nakano': 'Takashi Yamagami (as Taiga)', 'Momone Shinokawa': 'Hotaru', 'Kana Mahiro': 'Hotaru (Adult)', 'Takahiro Miura': 'Atsushi Shitara', 'Kanji Furutachi': 'Toshio'}" tt8071196,"{'Vandolph': '(as Vandolf Quizon)', 'Lander Vera-Perez': '(as Lander Vera Perez)', 'Patrick Carrera': '(as Shane Carrera)', 'Rhen Escano': '(as Rhen Escaño)'}" tt5974624,{'Quniciren': '(as Quni Ciren)'} tt0099938,"{'Arnold Schwarzenegger': 'Kimble', 'Penelope Ann Miller': 'Joyce', 'Pamela Reed': 'Phoebe', 'Linda Hunt': 'Miss Schlowski', 'Richard Tyson': 'Crisp', 'Carroll Baker': 'Eleanor Crisp', 'Joseph Cousins': 'Dominic', 'Christian Cousins': 'Dominic', 'Cathy Moriarty': ""Sylvester's Mother"", 'Park Overall': ""Samantha's Mother"", 'Jayne Brook': ""Zach's Mother"", 'Richard Portnow': 'Captain Salazar', 'Tom Kurlander': 'Danny', 'Alix Koromzay': 'Cindy', 'Betty Lou Henson': ""Keisha's Mother""}" tt0112384,"{'Tom Hanks': 'Jim Lovell', 'Bill Paxton': 'Fred Haise', 'Kevin Bacon': 'Jack Swigert', 'Gary Sinise': 'Ken Mattingly', 'Ed Harris': 'Gene Kranz', 'Kathleen Quinlan': 'Marilyn Lovell', 'Mary Kate Schellhardt': 'Barbara Lovell', 'Emily Ann Lloyd': 'Susan Lovell', 'Miko Hughes': 'Jeffrey Lovell', 'Max Elliott Slade': 'Jay Lovell', 'Jean Speegle Howard': 'Blanch Lovell', 'Tracy Reiner': 'Mary Haise', 'David Andrews': 'Pete Conrad', 'Michele Little': 'Jane Conrad (as Michelle Little)', 'Chris Ellis': 'Deke Slayton'}" tt0046912,"{'Ray Milland': 'Tony Wendice', 'Grace Kelly': 'Margot Wendice', 'Robert Cummings': 'Mark Halliday', 'John Williams': 'Chief Inspector Hubbard', 'Anthony Dawson': 'Charles Swann', 'Leo Britt': 'The Storyteller', 'Patrick Allen': 'Detective Pearson', 'George Leigh': 'Detective Williams', 'George Alderson': 'First Detective', 'Robin Hughes': ""Police Sergeant O'Brien""}" tt0091763,"{'Keith David': 'King', 'Forest Whitaker': 'Big Harold', 'Francesco Quinn': 'Rhah', 'Kevin Dillon': 'Bunny', 'John C. McGinley': ""Sgt. O'Neill"", 'Reggie Johnson': 'Junior', 'Mark Moses': 'Lt. Wolfe', 'Corey Glover': 'Francis', 'Johnny Depp': 'Lerner', 'Chris Pedersen': 'Crawford', 'Bob Orwig': 'Gardner', 'Corkey Ford': 'Manny', 'David Neidorf': 'Tex', 'Tom Berenger': 'Sgt. Barnes', 'Willem Dafoe': 'Sgt. Elias'}" tt0095031,"{'Steve Martin': 'Freddy Benson', 'Michael Caine': 'Lawrence Jamieson', 'Glenne Headly': 'Janet Colgate', 'Anton Rodgers': 'Inspector Andre', 'Barbara Harris': 'Fanny Eubanks', 'Ian McDiarmid': 'Arthur', 'Dana Ivey': 'Mrs. Reed', 'Meagen Fay': 'Lady from Oklahoma', 'Frances Conroy': 'Lady from Palm Beach', 'Nicole Calfan': 'Lady in Dining Car', 'Aïna Wallé': 'Miss Krista Knudsen (as Aïna Walle)', 'Cheryl Pay': 'Lady with Pearls', 'Nathalie Auffret': 'Marion', 'Lolly Susi': 'Lady in Rolls Royce', 'Rupert Holliday-Evans': 'English Sailor #1 (as Rupert Holliday Evans)'}" tt5052448,"{'Daniel Kaluuya': 'Chris Washington', 'Allison Williams': 'Rose Armitage', 'Catherine Keener': 'Missy Armitage', 'Bradley Whitford': 'Dean Armitage', 'Caleb Landry Jones': 'Jeremy Armitage', 'Marcus Henderson': 'Walter', 'Betty Gabriel': 'Georgina', 'LaKeith Stanfield': 'Andre Logan King (as Keith Stanfield)', 'Stephen Root': 'Jim Hudson', 'Lil Rel Howery': 'Rod Williams', 'Ashley LeConte Campbell': 'Lisa Deets', 'John Wilmot': 'Gordon Greene', 'Caren L. Larkey': 'Emily Greene (as Caren Larkey)', 'Julie Ann Doan': 'April Dray', 'Rutherford Cravens': 'Parker Dray'}" tt4465564,"{'Dakota Johnson': 'Anastasia Steele', 'Jamie Dornan': 'Christian Grey', 'Eric Johnson': 'Jack Hyde', 'Eloise Mumford': 'Kate Kavanagh', 'Bella Heathcote': 'Leila', 'Rita Ora': 'Mia Grey', 'Luke Grimes': 'Elliot Grey', 'Victor Rasuk': 'José', 'Max Martini': 'Taylor', 'Bruce Altman': 'Jerry Roach', 'Kim Basinger': 'Elena Lincoln', 'Marcia Gay Harden': 'Grace Trevelyan Grey', 'Andrew Airlie': 'Carrick Grey', 'Robinne Lee': 'Ros Bailey', 'Amy Price-Francis': 'Liz'}" tt0395169,"{'Xolani Mali': 'Policeman', 'Don Cheadle': 'Paul Rusesabagina', 'Desmond Dube': 'Dube', 'Hakeem Kae-Kazim': 'George Rutaganda', 'Tony Kgoroge': 'Gregoire', 'Rosie Motene': 'Receptionist', 'Neil McCarthy': 'Jean Jacques', ""Mabutho 'Kid' Sithole"": 'Head Chef (as Kid Sithole)', 'Nick Nolte': 'Colonel Oliver', 'Fana Mokoena': 'General Bizimungu', 'Jeremiah Ndlovu': 'Old Guard', 'Sophie Okonedo': 'Tatiana Rusesabagina', 'Lebo Mashile': 'Odette', 'Antonio David Lyons': 'Thomas Mirama', 'Leleti Khumalo': 'Fedens'}" tt0881320,"{'Richard Roxburgh': 'Frank', 'Ioan Gruffudd': 'Carl', 'Rhys Wakefield': 'Josh', 'Alice Parkinson': 'Victoria', 'Dan Wyllie': 'Crazy George (as Daniel Wyllie)', 'Christopher James Baker': 'J.D. (as Christopher Baker)', 'Nicole Downs': 'Liz', 'Allison Cratchley': 'Judes', 'Cramer Cain': 'Luko', 'Andrew Hansen': 'Dex', 'John Garvin': 'Jim Sergeant', 'Sean Dennehy': 'Chopper Pilot', 'Nea Diap': 'Kastom Shaman'}" tt0095593,"{'Paul Lazar': 'Tommy', 'Alec Baldwin': ""'Cucumber' Frank de Marco"", 'Captain Haggerty': ""'The Fat Man'"", 'Marlene Willoughby': ""Mrs. 'Fat Man'"", 'Frank Aquilino': 'Conductor', 'Charles Napier': ""Angela's Hairdresser"", 'Michelle Pfeiffer': 'Angela de Marco', 'Joan Cusack': 'Rose', 'Ellen Foley': 'Theresa', 'O-Lan Jones': 'Phyllis', 'Mercedes Ruehl': 'Connie Russo', 'Jason Allen': 'Tony Russo, Jr.', 'Diane Puccerella': 'Three-Card Monte Victim', 'Suzanne Puccerella': 'Three-Card Monte Victim', 'Anthony J. Nici': 'Joey de Marco'}" tt0891527,"{'Robert Redford': 'Professor Stephen Malley', 'Meryl Streep': 'Janine Roth', 'Tom Cruise': 'Senator Jasper Irving', 'Michael Peña': 'Ernest Rodriguez', 'Andrew Garfield': 'Todd Hayes', 'Peter Berg': 'Lt. Col. Falco', 'Kevin Dunn': 'ANX Editor', 'Derek Luke': 'Arian Finch', 'Larry Bates': 'Soldier', 'Christopher May': 'Soldier', 'David Pease': 'Soldier', 'Heidi Janson': 'Soldier', 'Christopher Carley': 'Sniper', 'George Back': 'Student', 'Kristy Wu': 'Student'}" tt0106452,"{'Terry Kinney': 'Steve Malone', 'Meg Tilly': 'Carol Malone', 'Gabrielle Anwar': 'Marti Malone', 'Reilly Murphy': 'Andy Malone', 'Billy Wirth': 'Tim Young', 'Christine Elise': 'Jenn Platt', 'R. Lee Ermey': 'General Platt', 'Kathleen Doyle': 'Mrs. Platt', 'Forest Whitaker': 'Major Collins', 'G. Elvis Phillips': 'Pete', 'Stanley Small': ""Platt's Aide"", 'Tonea Stewart': 'Teacher', 'Keith Smith': 'Soldier Gas Station', 'Winston E. Grant': 'Gas Attendant', 'Phil Neilson': 'MP Gate Captain'}" tt0181739,"{'Chris Rock': 'Osmosis Jones (voice)', 'Laurence Fishburne': 'Thrax (voice)', 'David Hyde Pierce': 'Drix (voice)', 'Brandy Norwood': 'Leah (voice)', 'William Shatner': 'Mayor Phlegmming (voice)', 'Ron Howard': 'Tom Colonic (voice)', 'Kid Rock': 'Kidney Rock (voice)', 'Kenny Olson': 'Kidney Rock (voice)', 'Jason Krause': 'Kidney Rock (voice)', 'Joe C.': 'Kidney Rock (voice)', 'Stefanie Eulinberg': 'Kidney Rock (voice)', 'Jimmie Bones': 'Kidney Rock (voice)', 'Uncle Kracker': 'Kidney Rock (voice)', 'Jonathan Adams': 'Additional Character Voice (voice)', 'Carlos Alazraqui': 'Additional Character Voice (voice)'}" tt0119592,"{'John Travolta': 'Sam', 'Dustin Hoffman': 'Brackett', 'Mia Kirshner': 'Laurie', 'Alan Alda': 'Kevin Hollander', 'Robert Prosky': 'Lou Potts', 'Blythe Danner': 'Mrs. Banks', 'William Atherton': 'Dohlen', 'Ted Levine': 'Lemke', 'Tammy Lauren': 'Miss Rose', ""William O'Leary"": 'CTN Junior Executive', 'Raymond J. Barry': 'Dobbins', 'Lucinda Jenney': 'Jenny', 'Akosua Busia': 'Diane', 'Ebbe Roe Smith': 'Bartholomew', 'Bingwa': 'Nat Jackson'}" tt0104107,"{'James Woods': 'Gabriel Caine', 'Louis Gossett Jr.': ""'Honey' Roy Palmer"", 'Bruce Dern': 'John Gillon', 'Oliver Platt': 'Fitz', 'Heather Graham': 'Emily Forrester', ""Randall 'Tex' Cobb"": 'Wolf Forrester', 'Thomas Wilson Brown': 'Robby Gillon', 'Duane Davis': 'Hambone Busby', 'David Fresco': 'Fish', 'Willie Green': 'Hammerhead Hagan', 'Orestes Matacena': 'Victor Corsini', 'Kim Robillard': 'Sheriff Stennis', 'John Short': ""Corny 'Buster' Robbins"", 'Michael McGrady': 'Frank Mangrum', 'Roger Hewlett': 'Sam Lester'}" tt0041090,"{'Spencer Tracy': 'Adam Bonner', 'Katharine Hepburn': 'Amanda Bonner', 'Judy Holliday': 'Doris Attinger', 'Tom Ewell': 'Warren Attinger', 'David Wayne': 'Kip Lurie', 'Jean Hagen': 'Beryl Caighn', 'Hope Emerson': 'Olympia La Pere', 'Eve March': 'Grace', 'Clarence Kolb': 'Judge Reiser', 'Emerson Treacy': 'Jules Frikke', 'Polly Moran': 'Mrs. McGrath', 'Will Wright': 'Judge Marcasson', 'Elizabeth Flournoy': 'Dr. Margaret Brodeigh'}" tt0031867,"{'James Cagney': 'Eddie Bartlett', 'Priscilla Lane': 'Jean Sherman', 'Humphrey Bogart': 'George Hally', 'Gladys George': 'Panama Smith', 'Jeffrey Lynn': 'Lloyd Hart', 'Frank McHugh': 'Danny Green', 'Paul Kelly': 'Nick Brown', 'Elisabeth Risdon': 'Mrs. Sherman (as Elizabeth Risdon)', 'Edward Keane': 'Henderson (as Ed Keane)', 'Joe Sawyer': 'The Sergeant - Pete Jones', 'Joseph Crehan': 'Michaels', 'George Meeker': 'Masters', 'John Hamilton': 'Judge', 'Robert Elliott': 'First Detective', 'Eddy Chandler': 'Second Detective (as Eddie Chandler)'}" tt0094894,"{'Sean Penn': 'Danny McGavin', 'Robert Duvall': 'Bob Hodges', 'Maria Conchita Alonso': 'Louisa Gomez', 'Randy Brooks': 'Ron Delaney', 'Grand L. Bush': 'Larry Sylvester (as Grand Bush)', 'Don Cheadle': 'Rocket', 'Gerardo Mejía': 'Bird', 'Glenn Plummer': 'High Top', 'Rudy Ramos': 'Melindez', 'Sy Richardson': 'Bailey', 'Trinidad Silva': 'Frog', 'Charles Walker': 'Reed', 'Damon Wayans': 'T-Bone', 'Fred Asparagus': 'Cook', 'Sherman Augustus': 'Officer Porter'}" tt0044685,"{'Danny Kaye': 'Hans Christian Andersen', 'Farley Granger': 'Niels', 'Zizi Jeanmaire': 'Doro (as Jeanmaire The Famous French Ballerina)', 'Joseph Walsh': 'Peter (as Joey Walsh)', 'Philip Tonge': 'Otto', 'Erik Bruhn': 'The Hussar - Danced by', 'Roland Petit': ""The Prince in 'The Little Mermaid' Ballet"", 'John Brown': 'Schoolmaster', 'John Qualen': 'Burgomaster', 'Jeanne Lafayette': 'Celine', 'Robert Malcolm': 'Stage Doorman', 'George Chandler': 'Farmer', 'Fred Kelsey': 'First Gendarme', 'Gil Perkins': 'Second Gendarme', 'Peter J. Votrian': 'Lars (as Peter Votrian)'}" tt0077838,"{'The Band': 'Themselves', 'Rick Danko': 'Himself - Bass / Violin / Vocal', 'Levon Helm': 'Himself - Drums / Mandolin / Vocal', 'Garth Hudson': 'Himself - Organ / Accordion / Saxophone / Synthesizers', 'Richard Manuel': 'Himself - Piano / Keyboards / Drums / Vocal', 'Robbie Robertson': 'Himself - Guitar / Vocal', 'Eric Clapton': 'Himself - Performer', 'Neil Diamond': 'Himself - Performer', 'Bob Dylan': 'Himself - Performer', 'Joni Mitchell': 'Herself - Performer', 'Neil Young': 'Himself - Performer', 'Emmylou Harris': 'Herself - Performer', 'Ringo Starr': 'Himself - Performer', 'Paul Butterfield': 'Himself - Performer', 'Dr. John': 'Himself - Performer'}" tt0098309,"{'Meryl Streep': 'Mary Fisher', 'Roseanne Barr': 'Ruth', 'Ed Begley Jr.': 'Bob', 'Linda Hunt': 'Hooper', 'Sylvia Miles': 'Mrs. Fisher', 'Elisebeth Peters': 'Nicolette Patchett', 'Bryan Larkin': 'Andy Patchett', 'A Martinez': 'Garcia', 'Maria Pitillo': 'Olivia Honey', 'Mary Louise Wilson': 'Mrs. Trumper', 'Susan Willis': 'Ute', 'Jack Gilpin': 'Larry', 'Robin Leach': 'Robin Leach', 'Nitchie Barrett': ""Bob's Secretary"", 'June Gable': 'Realtor'}" tt0101371,"{'Ray Liotta': 'Dr. Richard Sturgess', 'Kiefer Sutherland': 'Dr. Peter Morgan', 'Forest Whitaker': 'Dr. Sid Handleman', 'Lea Thompson': 'Dr. Robin Van Dorn', 'John C. McGinley': 'Dr. Rudy Bobrick', 'John Mahoney': 'Dr. Henry Dreyfoos', 'Keith David': 'Luther Jermoe', 'Kathy Baker': 'Dr. Diana Walton', 'Eli Wallach': 'Sam Abrams', 'Noble Willingham': 'Inspector General', 'Julie Bovasso': 'Amelia Sturdeyvant', 'Troy Evans': 'Pat Travis', 'Lynne Thigpen': 'Nurse White', 'Jeffrey Tambor': 'Dr. Leo Krutz', 'Leo Burmester': 'Shooter Polaski'}" tt0301470,"{'Ray Wise': 'Jack Taggart Sr.', 'Jonathan Breck': 'The Creeper', 'Garikayi Mutambirwa': ""Deaundre 'Double D' Davis"", 'Eric Nenninger': ""Scott 'Scotty' Braddock"", 'Nicki Aycox': 'Minxie Hayes', 'Travis Schiffner': 'Izzy Bohen', 'Lena Cardwell': 'Chelsea Farmer', 'Billy Aaron Brown': ""Andy 'Bucky' Buck"", 'Marieh Delfino': 'Rhonda Truitt', 'Diane Delano': 'Bus Driver Betty Borman', 'Thom Gossom Jr.': 'Coach Charlie Hanna', 'Tom Tarantini': 'Coach Dwayne Barnes', 'Al Santos': 'Dante Belasco', 'Josh Hammond': 'Jake Spencer', 'Kasan Butcher': ""Kimball 'Big K' Ward""}" tt0061452,"{'Peter Sellers': 'Evelyn Tremble (James Bond - 007)', 'Ursula Andress': 'Vesper Lynd (007)', 'David Niven': 'Sir James Bond', 'Orson Welles': 'Le Chiffre', 'Joanna Pettet': 'Mata Bond', 'Daliah Lavi': 'The Detainer (007)', 'Woody Allen': 'Jimmy Bond (Dr. Noah)', 'Deborah Kerr': 'Agent Mimi (Alias Lady Fiona)', 'William Holden': 'Ransome', 'Charles Boyer': 'Le Grand', 'John Huston': 'McTarry (M)', 'Kurt Kasznar': 'Smernov', 'George Raft': 'George Raft', 'Jean-Paul Belmondo': 'French Legionnaire (as Jean Paul Belmondo)', 'Terence Cooper': 'Cooper (James Bond - 007)'}" tt0051201,"{'Tyrone Power': 'Leonard Vole', 'Marlene Dietrich': 'Christine', 'Charles Laughton': 'Sir Wilfrid Roberts', 'Elsa Lanchester': 'Miss Plimsoll', 'John Williams': 'Brogan-Moore', 'Henry Daniell': 'Mayhew', 'Ian Wolfe': 'Carter', 'Torin Thatcher': 'Mr. Myers', 'Norma Varden': 'Mrs. Emily Jane French', ""Una O'Connor"": 'Janet MacKenzie', 'Francis Compton': 'Judge', 'Philip Tonge': 'Inspector Hearne', 'Ruta Lee': 'Diana'}" tt0100232,"{'Charlie Sheen': 'Lt. Dale Hawkins', 'Michael Biehn': 'Lt. James Curran', 'Joanne Whalley': 'Claire Varrens (as Joanne Whalley-Kilmer)', 'Rick Rossovich': 'Leary', ""Cyril O'Reilly"": 'Rexer', 'Bill Paxton': 'Dane', 'Dennis Haysbert': 'Graham', 'Paul Sanchez': 'Ramos', 'Nicholas Kadi': 'Ben Shaheed', 'Ronald G. Joseph': 'Capt. Dunne (as Ron Joseph)', 'S. Epatha Merkerson': 'Jolena', 'Gregory McKinney': 'U.S. Helicopter Pilot (as Greg McKinney)', 'Rob Moran': 'U.S. Helicopter Co-Pilot', 'Richard Venture': 'Admiral Colker', 'Mark Carlton': 'Jim Elmore'}" tt0090056,"{'Mark Stewart': 'Ace Tomato Courier', 'Sean Daniel': 'Ace Tomato Driver', 'Bruce Davison': 'Mr. Ruby', 'William Prince': 'Mr. Keyes', 'Steve Forrest': 'General Sline', 'Tom Hatten': 'General Miegs', 'Chevy Chase': 'Emmett Fitz-Hume', 'Ronald Reagan': 'The President of the United States (archive footage)', 'Jeff Harding': ""Fitz-Hume's Associate"", 'Heidi Sorenson': ""Fitz-Hume's Supervisor"", 'Stephen Hoye': 'Captain Hefling', 'Dan Aykroyd': 'Austin Millbarge', 'Margo Random': 'Reporter', 'Douglas Lambert': 'Reporter', 'Frank Oz': 'Test Monitor'}" tt0113228,"{'Walter Matthau': 'Max Goldman', 'Jack Lemmon': 'John Gustafson', 'Sophia Loren': 'Maria Sophia Coletta Ragetti', 'Ann-Margret': 'Ariel Gustafson', 'Burgess Meredith': 'Grandpa Gustafson', 'Daryl Hannah': 'Melanie Gustafson', 'Kevin Pollak': 'Jacob Goldman', 'Katie Sagona': ""Allie, Melanie's Daughter"", 'Ann Morgan Guilbert': 'Mama Ragetti (as Ann Guilbert)', 'James Andelin': 'Sven', 'Marcus Klemp': 'Eddie, Assistant Manager', 'Max Wright': 'County Health Inspector', 'Cheryl Hawker': 'Lena', 'Wayne A. Evenson': 'Handsome Hans', 'Allison Levine': 'Assistant at Dog Pound'}" tt0089530,"{'Mel Gibson': 'Mad Max Rockatansky', 'Bruce Spence': 'Jedediah the Pilot', 'Adam Cockburn': 'Jedediah Jr.', 'Tina Turner': 'Aunty Entity', 'Frank Thring': 'The Collector', 'Angelo Rossitto': 'The Master', 'Paul Larsson': 'The Blaster', 'Angry Anderson': 'Ironbar', 'Robert Grubb': 'Pig Killer', 'George Spartels': 'Blackfinger', 'Edwin Hodgeman': 'Dr. Dealgood', 'Bob Hornery': 'Waterseller', 'Andrew Oh': 'Ton Ton Tattoo', 'Ollie Hall': ""Aunty's Guard"", 'Lee Rice': ""Aunty's Guard""}" tt0116253,"{'Kurt Russell': 'David Grant', 'Steven Seagal': 'Lt. Colonel Austin Travis', 'Halle Berry': 'Jean', 'John Leguizamo': 'Rat', 'Oliver Platt': 'Cahill', 'Joe Morton': 'Cappy', 'David Suchet': 'Nagi Hassan', 'BD Wong': 'Louie (as B. D. Wong)', 'Len Cariou': 'Secretary of Defense Charles White', 'Whip Hubley': 'Baker', 'Andreas Katsulas': 'Jaffa', 'Mary Ellen Trainor': 'Allison', 'Marla Maples': 'Nancy (as Marla Maples Trump)', 'J.T. Walsh': 'Senator Mavros', 'Ingo Neuhaus': 'Doc'}" tt0053125,"{'Cary Grant': 'Roger Thornhill', 'Eva Marie Saint': 'Eve Kendall', 'James Mason': 'Phillip Vandamm', 'Jessie Royce Landis': 'Clara Thornhill', 'Leo G. Carroll': 'The Professor', 'Josephine Hutchinson': 'Mrs. Townsend', 'Philip Ober': 'Lester Townsend', 'Martin Landau': 'Leonard', 'Adam Williams': 'Valerian', 'Edward Platt': 'Victor Larrabee', 'Robert Ellenstein': 'Licht', 'Les Tremayne': 'Auctioneer', 'Philip Coolidge': 'Dr. Cross', 'Patrick McVey': 'Sergeant Flamm', 'Edward Binns': 'Captain Junket'}" tt0093713,"{'Pelle Hvenegaard': 'Pelle', 'Max von Sydow': 'Lassefar', 'Erik Paaske': 'Forvalter / Foreman', 'Björn Granath': 'Erik (as Bjørn Granath)', 'Astrid Villaume': 'Fru Kongstrup / Mrs. Kongstrup', 'Axel Strøbye': 'Kongstrup', 'Troels Asmussen': 'Rud', 'Kristina Törnqvist': 'Anna', 'Karen Wegener': 'Madam Olsen / Mrs. Olsen', 'Sofie Gråbøl': 'Jomfru Sine / Miss Sine', 'Lars Simonsen': 'Niels Køller', 'Buster Larsen': 'Ole Køller', 'John Wittig': 'Skolelærer / School teacher', 'Troels Munk': 'Læge / Doctor', 'Nis Bank-Mikkelsen': 'Præst / Clergyman'}" tt1391116,"{'Michael Sheen': 'Tommy Atkins', 'Tom Wlaschiha': 'Albrecht', 'Alexander Dreymon': 'Steiner (as Alexander Doetsch)', 'Andrea Riseborough': 'Sarah', 'Iwan Rheon': 'George', 'Kimberley Nixon': 'Bethan', 'Stanislav Yanevski': 'Bernhardt (as Stanislav Ianevski)', 'Anatole Taubman': 'Sebald', 'Melanie Walters': 'Helen Roberts', 'Jassa Ahluwalia': 'Russian Partisan (voice)', 'Sharon Morgan': 'Maggie', 'Simon Armstrong': ""George's Father"", 'Tomos Eames': 'Tom Lewis', 'Matt Hookings': 'German Soldier', 'George Taylor': 'Gernot'}" tt2586118,"{'Kevin Janssens': 'Kenneth', 'Jeroen Perceval': 'Dave', 'Veerle Baetens': 'Sylvie', 'Jan Bijvoet': 'Stef', 'Viviane de Muynck': 'Mariette', 'Sam Louwyck': 'Joyce', 'Peter Van den Begin': 'Robert', 'Eric Godon': 'Gérard', 'Rachid El Ghazaoui': ""Chalid (as Rachid 'Appa' El Ghazaoui)"", 'Nico Sturm': 'Danny', 'Luc Nuyens': 'Moderator hulpgroep', 'Brit Van Hoof': 'Cindy', 'Uwamungu Cornelis': 'Chris (as Cornelis Mungu)', 'Caroline Stas': 'Politieagenten', 'Jacqueline Pluche': 'Politieagenten'}" tt3700392,"{'Anuk Steffen': 'Heidi', 'Anna Schinz': 'Dete', 'Lilian Naef': 'Barbel', 'Bruno Ganz': 'Alpöhi', 'Peter Jecklin': 'Pfarrer', 'Christoph Gaugler': 'Senner', 'Quirin Agrippi': 'Geissenpeter', 'Rebecca Indermaur': 'Geissenpeterin', 'Monica Gubser': 'Grossmutter', 'Arthur Bühler': 'Dörfler', 'Marietta Jemmi': 'Frau im Dorf', 'Peter Lohmeyer': 'Sebastian', 'Katharina Schüttler': 'Fräulein Rottenmeier', 'Isabelle Ottmann': 'Klara', 'Jella Haase': 'Tinette'}" tt0277027,"{'Sean Penn': 'Sam Dawson', 'Michelle Pfeiffer': 'Rita', 'Dakota Fanning': 'Lucy', 'Dianne Wiest': 'Annie', 'Loretta Devine': 'Margaret Calgrove', 'Richard Schiff': 'Turner', 'Laura Dern': 'Randy Carpenter', 'Brad Silverman': 'Brad (as Brad Allan Silverman)', 'Joseph Rosenberg': 'Joe', 'Stanley DeSantis': 'Robert', 'Doug Hutchison': 'Ifty', 'Rosalind Chao': 'Lily', 'Ken Jenkins': 'Judge McNeily', 'Wendy Phillips': 'Miss Wright', 'Mason Lucero': 'Conner Rhodes'}" tt0106701,"{'Walter Matthau': 'Mr. Wilson', 'Mason Gamble': 'Dennis Mitchell', 'Joan Plowright': 'Martha Wilson', 'Christopher Lloyd': 'Switchblade Sam', 'Lea Thompson': 'Alice Mitchell', 'Robert Stanton': 'Henry Mitchell', 'Amy Sakasitz': 'Margaret Wade', 'Kellen Hathaway': 'Joey', 'Paul Winfield': 'Chief of Police', 'Natasha Lyonne': 'Polly', 'Devin Ratray': 'Mickey', 'Hank Johnston': 'Gunther', 'Melinda Mullins': 'Andrea', 'Billie Bird': 'Edith Butterwell', 'Bill Erwin': 'Edward Little'}" tt0101635,"{'Jim Belushi': 'Bill Dancer (as James Belushi)', 'Kelly Lynch': 'Grey Ellison', 'Alisan Porter': 'Curly Sue', 'John Getz': 'Walker McCormick', 'Fred Dalton Thompson': 'Bernard Oxbar', 'Cameron Thor': ""Maitre d'"", 'Branscombe Richmond': 'Albert', 'Steve Carell': 'Tesio (as Steven Carell)', 'Gail Boggs': 'Anise Hall', 'Burke Byrnes': 'Dr. Maxwell', 'Viveka Davis': 'Trina', 'Barbara Tarbuck': 'Mrs. Arnold', 'Edie McClurg': 'Secretary', 'Charles Adams': 'Prison Guard', 'James W. Boinski': 'Pawnbroker'}" tt0094027,"{'Edward James Olmos': 'Jaime Escalante', 'Estelle Harris': 'Secretary', 'Mark Phelan': 'Cop', 'Virginia Paris': 'Raquel Ortega', 'Eliot': 'Tito (as Mark Eliot)', 'Adelaida Alvarez': 'Sexy Girl', 'Will Gotay': 'Pancho', 'Patrick Baca': 'Javier', 'Ingrid Oliu': 'Lupe', 'Carmen Argenziano': 'Molina', 'Richard Martinez': 'Heavy Metal Boy', 'Mark Everett': 'Heavy Metal Boy', 'Tyde Kierney': 'Joe Goodell', 'Rosanna DeSoto': 'Fabiola Escalante (as Rosana De Soto)', 'Bodie Olmos': 'Fernando Escalante'}" tt0120094,"{'Jennifer Lopez': 'Selena Quintanilla', 'Jackie Guerra': 'Suzette Quintanilla', 'Constance Marie': 'Marcela Quintanilla', 'Alex Meneses': 'Sara (as Alexandra Meneses)', 'Jon Seda': 'Chris Perez', 'Edward James Olmos': 'Abraham Quintanilla', 'Jacob Vargas': 'Abie Quintanilla', 'Pete Astudillo': ""Himself - Dinos 1990's"", 'Rueben Gonzáles': ""Joe Ojeda - Dinos 1990's (as Ruben Gonzalez)"", 'Ricky Vela': ""Himself - Dinos 1990's"", 'Don Shelton': 'Stage Dancer', 'Richard Emanuelle': 'Concert Reporter (as Richard Emanuele)', 'Panchito Gómez': 'Young Abraham - Dinos 1961 (as Panchito Gomez)', 'Richard Coca': 'Bobby - Dinos 1961', 'George Perez': 'Seff - Dinos 1961'}" tt0817230,"{'Jessica Alba': 'Morley Clarkson', 'Kathy Bates': 'Susan', 'Jessica Biel': 'Kara Monahan', 'Bradley Cooper': 'Holden', 'Eric Dane': 'Sean Jackson', 'Patrick Dempsey': 'Dr. Harrison Copeland', 'Hector Elizondo': 'Edgar', 'Jamie Foxx': 'Kelvin Moore', 'Jennifer Garner': 'Julia Fitzpatrick', 'Topher Grace': 'Jason', 'Anne Hathaway': 'Liz', 'Carter Jenkins': 'Alex', 'Ashton Kutcher': 'Reed Bennett', 'Queen Latifah': 'Paula Thomas', 'Taylor Lautner': 'Willy'}" tt0065446,"{'Jason Robards': 'Cable Hogue', 'Stella Stevens': 'Hildy', 'David Warner': 'Reverend Joshua Douglas Sloan', 'Strother Martin': 'Bowen', 'Slim Pickens': 'Ben Fairchild', 'L.Q. Jones': 'Taggart', 'Peter Whitney': 'Cushing', 'R.G. Armstrong': 'Quittner', 'Gene Evans': 'Clete', 'William Mims': 'Jensen', 'Kathleen Freeman': 'Mrs. Jensen', ""Susan O'Connell"": 'Claudia', 'Vaughn Taylor': 'Powell', 'Max Evans': 'Webb Seely', 'James Anderson': 'Preacher'}" tt0090856,"{'Robin Williams': 'Jack Moniker', ""Peter O'Toole"": 'Governor Anthony Cloyden Hayes', 'Rick Moranis': 'Barry Nye', 'Jimmy Cliff': 'Ernest Reed', 'Twiggy': 'Phillipa Lloyd', 'Adolph Caesar': 'Prime Minister Solomon Gundy', 'Eugene Levy': 'Barry Steinberg', 'Joanna Cassidy': 'Terry Hamlin', 'Andrea Martin': 'Linda White', 'Brian Doyle-Murray': 'Voit Zerbe', 'Joe Flaherty': 'Pilot', 'Steven Kampmann': 'Randy White', 'Robin Duke': 'Mary Lou', 'Mary Gross': 'Jackie', 'Simon Jones': 'Toby Prooth'}" tt0094921,"{'Amy Irving': 'Isabelle Grossman', 'Peter Riegert': 'Sam Posner', 'Reizl Bozyk': 'Bubbie Kantor', 'Jeroen Krabbé': 'Anton Maes', 'Sylvia Miles': 'Hannah Mandelbaum', 'George Martin': 'Lionel', 'John Bedford Lloyd': 'Nick', 'Claudia Silver': 'Cecilia Monk', 'David Hyde Pierce': 'Mark (as David Pierce)', 'Rosemary Harris': 'Pauline Swift', 'Suzzy Roche': 'Marilyn Cohen', 'Amy Wright': 'Ricki', 'Faye Grant': 'Candyce', 'Deborah Offner': 'Karen', 'Kathleen Wilhoite': 'Myla Bondy'}" tt0085333,"{'Keith Gordon': 'Arnie Cunningham', 'John Stockwell': 'Dennis Guilder', 'Alexandra Paul': 'Leigh Cabot', 'Robert Prosky': 'Will Darnell', 'Harry Dean Stanton': 'Detective Rudolph Junkins', 'Christine Belford': 'Regina Cunningham', 'Roberts Blossom': 'George LeBay', 'William Ostrander': 'Buddy Repperton', 'David Spielberg': 'Mr. Casey', 'Malcolm Danare': 'Moochie', 'Steven Tash': 'Rich', 'Stuart Charno': 'Don Vandenberg', 'Kelly Preston': 'Roseanne', 'Marc Poppel': 'Chuck', 'Robert Darnell': 'Michael Cunningham'}" tt0118661,"{'Ralph Fiennes': 'John Steed', 'Uma Thurman': 'Dr. Emma Peel', 'Sean Connery': 'Sir August de Wynter', 'Patrick Macnee': 'Invisible Jones (voice)', 'Jim Broadbent': 'Mother', 'Fiona Shaw': 'Father', 'Eddie Izzard': 'Bailey', 'Eileen Atkins': 'Alice', 'John Wood': 'Trubshaw', 'Carmen Ejogo': 'Brenda', 'Keeley Hawes': 'Tamara', 'Shaun Ryder': 'Donavan', 'Nicholas Woodeson': 'Dr. Darling', 'Michael Godley': 'Butler', 'Richard Lumsden': ""Boodle's Porter""}" tt2318092,"{'Alex Pettyfer': 'David Elliot', 'Gabriella Wilde': 'Jade Butterfield', 'Bruce Greenwood': 'Hugh Butterfield', 'Joely Richardson': 'Anne Butterfield', 'Robert Patrick': 'Harry Elliot', 'Rhys Wakefield': 'Keith Butterfield', 'Dayo Okeniyi': 'Mace', 'Emma Rigby': 'Jenny', 'Anna Enger Ritch': 'Sabine (as Anna Enger)', 'Fabianne Therese': 'Checka', 'Mike Bland': ""Harry's Friend"", 'Jake Schultz': ""Harry's Friend"", 'Jeff Pope': 'Mechanic (as Jeff Wayne Pope)', 'Zechariah Pierce': 'Waiter', 'Ryan Lewis': 'Maserati Driver'}" tt1582465,"{'Kodi Smit-McPhee': 'David Portnoy', 'James Le Gros': 'Donald Portnoy (as James LeGros)', 'Daniela Lavender': 'Juliana Santos', 'Katie Chang': 'Ellen Reeves', 'Alex Wolff': 'Timmy Barsky', 'Zandi Holup': 'Evelyn Reed', 'Michael Chen': 'Peter Nessbaum', 'Tobias Campbell': 'Rob Lindau', 'Joel Van Liew': 'Mr. Edbrook', 'Daniel Berger': 'Scarsdale High School Capt (as Daniel G.S. Berger)', 'Ben Kingsley': 'Lawrence Konrad', 'Adam Barrie': 'Eric', 'Jessica Perez': 'Trish', 'Ethan Cohn': 'Jeff', 'Lucas Near-Verbrugghe': 'Trent'}" tt0035015,"{'Joseph Cotten': 'Eugene Morgan', 'Dolores Costello': 'Isabel Amberson Minafer', 'Anne Baxter': 'Lucy Morgan', 'Tim Holt': 'George Minafer', 'Agnes Moorehead': 'Fanny Minafer', 'Ray Collins': 'Jack Amberson', 'Erskine Sanford': 'Roger Bronson', 'Richard Bennett': 'Major Amberson', 'Orson Welles': 'Narrator (voice)'}" tt0234829,"{'Freddie Prinze Jr.': 'Ryan Dunne', 'Jessica Biel': 'Tenley Parrish', 'Fred Ward': 'Sean Dunne', 'Matthew Lillard': 'Billy Brubaker', 'Brian Dennehy': 'John Schiffner', 'Jason Gedrick': 'Mike Dunne', 'Brittany Murphy': 'Dede Mulligan', 'Bruce Davison': 'Rand Parrish', 'Marc Blucas': 'Miles Dalrymple', 'Wilmer Valderrama': 'Mickey Dominguez', 'Corey Pearson': 'Eric Van Leemer', 'Christian Kane': 'Dale Robin', 'Cedric Pendleton': 'Calvin Knight', 'Gabriel Mann': 'Auggie Mulligan', 'Jed Rhein': 'Pete (as Jed Robert Rhein)'}" tt0056218,"{'Frank Sinatra': 'Major Bennett Marco', 'Laurence Harvey': 'Raymond Shaw', 'Janet Leigh': 'Eugenie Rose Chaney', 'Angela Lansbury': 'Mrs. Eleanor Shaw Iselin', 'Henry Silva': 'Chunjin', 'James Gregory': 'Senator John Yerkes Iselin', 'Leslie Parrish': 'Jocelyn Jordan', 'John McGiver': 'Senator Thomas Jordan', 'Khigh Dhiegh': 'Dr. Yen Lo', 'James Edwards': 'Corporal Allen Melvin', 'Douglas Henderson': 'Colonel Milt', 'Albert Paulsen': 'Zilkov', 'Barry Kelley': 'Secretary of Defense', 'Lloyd Corrigan': 'Holborn Gaines', 'Madame Spivy': 'Female Berezovo'}" tt0057193,"{'Spencer Tracy': 'Capt. T. G. Culpepper', 'Milton Berle': 'J. Russell Finch', 'Sid Caesar': 'Melville Crump', 'Buddy Hackett': 'Benjy Benjamin', 'Ethel Merman': 'Mrs. Marcus', 'Mickey Rooney': 'Ding Bell', 'Dick Shawn': 'Sylvester Marcus', 'Phil Silvers': 'Otto Meyer', 'Terry-Thomas': 'J. Algernon Hawthorne', 'Jonathan Winters': 'Lennie Pike', 'Edie Adams': 'Monica Crump', 'Dorothy Provine': 'Emeline Marcus-Finch', ""Eddie 'Rochester' Anderson"": 'Second Cab Driver', 'Jim Backus': 'Tyler Fitzgerald', 'Ben Blue': 'Biplane Pilot'}" tt1488555,"{'Ryan Reynolds': 'Mitch Planko', 'Jason Bateman': 'Dave Lockwood', 'Leslie Mann': 'Jamie Lockwood', 'Olivia Wilde': 'Sabrina McKay', 'Alan Arkin': ""Mitch's Dad"", 'Mircea Monroe': 'Tatiana', 'Gregory Itzin': 'Flemming Steel', 'Ned Schmidtke': 'Ted Norton', 'Ming Lo': 'Ken Kinkabe', 'Sydney Rouviere': 'Cara Lockwood', 'Craig Bierko': 'Valtan', 'Dax Griffin': 'Blow-Dried Goon', 'Andrea Moore': 'Sophia', 'Matthew Cornwell': 'Parks Foreman', ""Taaffe O'Connell"": 'Mona'}" tt0423977,"{'Anton Yelchin': 'Charlie Bartlett', 'Robert Downey Jr.': 'Nathan Gardner', 'Hope Davis': 'Marilyn Bartlett', 'Kat Dennings': 'Susan Gardner', 'Tyler Hilton': 'Murphy Bivens', 'Mark Rendall': 'Kip Crombwell', 'Dylan Taylor': 'Len Arbuckle', 'Megan Park': 'Whitney Drummond', 'Jake Epstein': 'Dustin Lauderbach', 'Jonathan Malen': 'Jordan Sunder', 'Derek McGrath': 'Superintendent Sedgwick', 'Stephen Young': 'Dr. Stan Weathers', 'Ishan Davé': 'Henry Freemont', 'David Lawrence Brown': 'Officer Hansen (as David Brown)', 'Eric Fink': 'Thomas'}" tt0245046,"{'Cate Blanchett': 'Charlotte Gray', 'James Fleet': 'Richard Cannerly', 'Abigail Cruttenden': 'Daisy', 'Charlotte McDougall': 'Sally', 'Rupert Penry-Jones': 'Peter Gregory (as Rupert Penry Jones)', 'Robert Hands': 'Borowski', 'Tom Goodman-Hill': 'Business Man at Party', 'Michael Fitzgerald': 'Business Man at Party', 'Hugh Ross': 'Psychiatrist', 'Martin Oldfield': 'Assault Course Instructor', 'Nicholas Farrell': 'Mr. Jackson', 'Mike Burnside': 'Morse Code Instructor', 'Damian Myerscough': 'Gun Instructor', 'Miranda Bell': 'Female Instructor', 'Angus Wright': 'Agent'}" tt0100486,"{'Glenn Close': 'Sunny von Bulow', 'Jeremy Irons': 'Claus von Bulow', 'Ron Silver': 'Alan Dershowitz', 'Annabella Sciorra': 'Sarah', 'Uta Hagen': 'Maria', 'Fisher Stevens': 'David Marriott', 'Jack Gilpin': 'Peter MacIntosh', 'Christine Baranski': 'Andrea Reynolds', 'Stephen Mailer': 'Elon Dershowitz', 'Christine Dunford': 'Ellen', 'Felicity Huffman': 'Minnie', 'Mano Singh': 'Raj', 'Johann Carlo': 'Nancy', 'Keith Reddin': 'Dobbs', 'Alan Pottinger': 'Chuck'}" tt0093660,"{'Barbra Streisand': 'Claudia Draper', 'Richard Dreyfuss': 'Aaron Levinsky', 'Maureen Stapleton': 'Rose Kirk', 'Karl Malden': 'Arthur Kirk', 'Eli Wallach': 'Dr. Herbert A. Morrison', 'Robert Webber': 'Francis MacMillan', 'James Whitmore': 'Judge Stanley Murdoch', 'Leslie Nielsen': 'Allen Green', 'William Prince': 'Clarence Middleton', 'Dakin Matthews': '1st Judge', 'Paul Benjamin': 'Harry Harrison', 'Warren Manzi': 'Saul Kreiglitz', 'Elizabeth Hoffman': 'Dr. Johnson', 'Castulo Guerra': 'Dr. Arantes', 'Stacy Bergman': '16 year-old Claudia'}" tt0120458,"{'Jamie Lee Curtis': 'Kit Foster', 'William Baldwin': 'Steve Baker', 'Donald Sutherland': 'Captain Robert Everton', 'Joanna Pacula': 'Nadia', 'Marshall Bell': 'J.W. Woods Jr.', 'Sherman Augustus': 'Richie', 'Cliff Curtis': 'Hiko', 'Julio Oscar Mechoso': 'Squeaky', 'Yuri Chervotkin': 'Colonel Kominski', 'Keith Flippen': 'Captain Lonya Rostov', 'Olga Rzhepetskaya-Retchin': 'Female Cosmonaut', 'Levani': 'Captain Alexi', 'David Eggby': 'Norfolk Captain'}" tt1564585,"{'Eric Balfour': 'Jarrod', 'Scottie Thompson': 'Elaine', 'Brittany Daniel': 'Candice', 'Crystal Reed': 'Denise', 'Neil Hopkins': 'Ray', 'David Zayas': 'Oliver', 'Donald Faison': 'Terry', 'Robin Gammell': 'Walt', 'Tanya Newbould': 'Jen', 'J. Paul Boehmer': 'Colin', 'Phet Mahathongdy': ""Airplane Mom / Bartender (as Phet Mahathongdy O'Donnell)"", 'Byron McIntyre': 'Limo Driver', 'Jackie Marin': 'Girl in Pool', 'Tony Black': 'Guy at Party', 'Eliza Till': 'Girl at Party'}" tt0097500,"{'Tom Selleck': 'Phil Blackwood', 'Paulina Porizkova': 'Nina Ionescu', 'William Daniels': 'Sam', 'James Farentino': 'Frank Polito', 'Hurd Hatfield': 'Troppa', 'Ronald Guttman': ""'Lucy' Comanescu"", 'Victor Argo': 'Avram', 'Patrick Wayne': 'Gary Blackwood', 'Tess Harper': 'Sally Blackwood', 'Bill Smitrovich': 'Farrell', 'Bobo Lewis': 'Rose', 'Jane Welch': 'Millie', 'Austin Hay': 'Oliver', 'W. Benson Terry': 'FX', 'Joan Copeland': 'Audrey'}" tt0120787,"{'Michael Douglas': 'Steven Taylor', 'Gwyneth Paltrow': 'Emily Bradford Taylor', 'Viggo Mortensen': 'David Shaw', 'David Suchet': 'Mohamed Karaman', 'Sarita Choudhury': 'Raquel Martinez', 'Michael P. Moran': 'Bobby Fain', 'Novella Nelson': 'Ambassador Alice Wills', 'Constance Towers': 'Sandra Bradford', 'Will Lyman': 'Jason Gates', 'Maeve McGuire': 'Ann Gates', 'Stephen Singer': 'Effete Man at Met', 'Laurinda Barrett': 'Met Woman #1', ""Aideen O'Kelly"": 'Met Woman #2', 'Reed Birney': 'Merchant Prince #1', 'Robert Vincent Smith': 'Merchant Prince #2'}" tt0113870,"{'Christian Slater': 'James Stamphill', 'Kevin Bacon': 'Henri Young', 'Gary Oldman': 'Associate Milton Glenn', 'Embeth Davidtz': 'Mary McCasslin', 'William H. Macy': 'William McNeil (as Bill Macy)', 'Stephen Tobolowsky': 'Mr. Henkin', 'Brad Dourif': 'Byron Stamphill', 'R. Lee Ermey': 'Judge Clawson', 'Mia Kirshner': 'Adult Rosetta Young', 'Ben Slack': 'Jerry Hoolihan', 'Stefan Gierasch': 'Warden James Humson', 'Kyra Sedgwick': 'Blanche', 'Alex Bookston': 'Alcatraz Doc (as Alexander Bookston)', 'Richie Allan': 'Jury Foreman', 'Herb Ritts': 'Mike Kelly'}" tt0444682,"{'Hilary Swank': 'Katherine', 'David Morrissey': 'Doug', 'Idris Elba': 'Ben', 'AnnaSophia Robb': 'Loren McConnell', 'Stephen Rea': 'Father Costigan', 'William Ragsdale': 'Sheriff Cade', 'John McConnell': 'Mayor Brooks', 'David Jensen': 'Jim Wakeman', 'Yvonne Landry': 'Brynn Wakeman', 'Samuel Garland': 'William Wakeman', 'Myles Cleveland': 'Kyle Wakeman', 'Andrea Frankle': 'Maddie McConnell', 'Mark Lynch': 'Brody McConnell', 'Stuart Greer': 'Gordon', 'Lara Grice': 'Isabelle'}" tt1139668,"{'Odette Annable': 'Casey Beldon (as Odette Yustman)', 'Gary Oldman': 'Rabbi Sendak', 'Cam Gigandet': 'Mark', 'Meagan Good': 'Romy', 'Idris Elba': 'Arthur Wyndham', 'Jane Alexander': 'Sofi Kozma', 'Atticus Shaffer': 'Matty Newton', 'James Remar': 'Gordon Beldon', 'Carla Gugino': 'Janet Beldon', 'C.S. Lee': 'Dr. Lester Caldwell', 'Rhys Coiro': 'Mr. Shields', 'Michael Sassone': 'Eli Walker', 'Ethan Cutkosky': 'Barto', 'Craig J. Harris': 'Rick Hesse (as Craig Harris)', 'Rachel Brosnahan': 'Lisa'}" tt1190080,"{'John Cusack': 'Jackson Curtis', 'Amanda Peet': 'Kate Curtis', 'Chiwetel Ejiofor': 'Adrian Helmsley', 'Thandie Newton': 'Laura Wilson', 'Oliver Platt': 'Carl Anheuser', 'Tom McCarthy': 'Gordon Silberman', 'Woody Harrelson': 'Charlie Frost', 'Danny Glover': 'President Thomas Wilson', 'Liam James': 'Noah Curtis', 'Morgan Lily': 'Lilly Curtis', 'Zlatko Buric': 'Yuri Karpov', 'Beatrice Rosen': 'Tamara', 'Alexandre Haussmann': 'Alec', 'Philippe Haussmann': 'Oleg', 'Johann Urb': 'Sasha'}" tt1385826,"{'Matt Damon': 'David Norris', 'Emily Blunt': 'Elise Sellas', 'Lisa Thoreson': 'Suburban Mom', 'Florence Kastriner': 'Suburban Mom', 'Michael Kelly': 'Charlie Traynor', 'Phyllis MacBryde': 'Suburban Neighbor', 'Natalie Carter': 'Suburban Neighbor (as Natalie E. Carter)', 'Chuck Scarborough': 'Chuck Scarborough', 'Jon Stewart': 'Jon Stewart', 'Gregory P. Hitchen': 'U.S. Coast Guard Officer (as Capt. Gregory P. Hitchen)', 'Darrell Lenormand': 'Upstate Farmer (as Darrell James LeNormand)', 'Michael Bloomberg': 'Mayor Michael R. Bloomberg (as Mayor Michael R. Bloomberg)', 'Kar': 'Political Consultant', 'RJ Konner': 'Political Consultant', 'Susan D. Michaels': 'Reporter'}" tt2910814,"{'Patrick Davidson': 'Boy Playing Claw Game', 'Brenton Thwaites': 'Nic', 'Olivia Cooke': 'Haley', 'Beau Knapp': 'Jonah', 'Jeffrey Grover': 'Gas Station Clerk', 'Laurence Fishburne': 'Damon', 'Roy Kenny': 'Hazmat 1', 'Timothy Holmes': 'Hazmat 2', 'Ricardo Campos': 'Hazmat 3', 'Drew Sykes': 'Hazmat 4', 'Lin Shaye': 'Mirabelle', 'Robert Longstreet': 'James'}" tt2024469,"{'Liam Neeson': 'Bill Marks', 'Julianne Moore': 'Jen Summers', 'Scoot McNairy': 'Tom Bowen', 'Michelle Dockery': 'Nancy', 'Nate Parker': 'Zack White', 'Corey Stoll': 'Austin Reilly', ""Lupita Nyong'o"": 'Gwen', 'Omar Metwally': 'Dr. Fahim Nasir', 'Jason Butler Harner': 'Kyle Rice', 'Linus Roache': 'David McMillan', 'Shea Whigham': 'Agent Marenick', 'Anson Mount': 'Jack Hammond', 'Quinn McColgan': 'Becca', 'Corey Hawkins': 'Travis Mitchell', 'Frank Deal': 'Charles Wheeler'}" tt0365907,"{'Liam Neeson': 'Matt Scudder', 'Maurice Compte': 'Danny Ortiz', 'Patrick McDade': 'Bar Owner (as Patrick F. McDade)', 'Luciano Acuna Jr.': 'Dominican Banger #1', 'Hans Marrero': 'Dominican Banger #2', 'Laura Birn': 'Leila Alvarez', 'David Harbour': 'Ray', 'Adam David Thompson': 'Albert', 'Boyd Holbrook': 'Peter Kristo', 'Kim Rosen': 'Waitress - Jenny', 'Dan Stevens': 'Kenny Kristo', 'Eric Nelsen': 'Howie', 'Jon Goracy': 'Bag Boy', 'Razane Jammal': 'Carrie Kristo', 'Stephanie Andujar': 'Cashier'}" tt1216491,"{'Jeremy Renner': 'Gary Webb', 'Robert Patrick': 'Ronald J. Quail', 'Jena Sims': ""Quail's Girlfriend"", 'Robert Pralgo': 'L.A. Sheriff', 'Hajji Golightly': 'DEA Agent', 'Ted Huckabee': 'Bob', 'Mary Elizabeth Winstead': 'Anna Simons', 'Lucas Hedges': 'Ian Webb', 'Rosemarie DeWitt': 'Sue Webb', 'Matt Lintz': 'Eric Webb', 'Parker Douglas': 'Christine Webb', 'Kai Schmoll': 'Sacramento Journalist', 'Joshua Close': 'Rich Kline (as Josh Close)', 'Paz Vega': 'Coral Baca', 'Aaron Farb': 'Rafael Cornejo'}" tt0054135,"{'Frank Sinatra': 'Danny Ocean', 'Dean Martin': 'Sam Harmon', 'Sammy Davis Jr.': 'Josh Howard', 'Peter Lawford': 'Jimmy Foster', 'Angie Dickinson': 'Beatrice Ocean', 'Richard Conte': 'Anthony Bergdorf', 'Cesar Romero': 'Duke Santos', 'Patrice Wymore': 'Adele Ekstrom', 'Joey Bishop': ""'Mushy' O'Connors"", 'Akim Tamiroff': 'Spyros Acebos', 'Henry Silva': 'Roger Corneal', 'Ilka Chase': 'Mrs. Restes', 'Buddy Lester': 'Vince Massler', 'Richard Benedict': ""'Curly' Steffans"", 'Jean Willes': 'Mrs. Bergdorf'}" tt2349144,"{'Ben Mendelsohn': 'Gerry', 'Yvonne Landry': 'Louise', 'Anthony Howard': 'Larry', 'Ryan Reynolds': 'Curtis', 'Jayson Warner Smith': 'Clifford', 'Kerry Cahill': 'Riverboat Waitress', 'Jane McNeill': ""'Bloody Mary' Kate"", 'Jason Shaffette': 'Chuck Poker Dealer', 'P.J. Marshall': 'Dale', 'Stephanie Honoré': 'Denise', 'Teri Wyble': 'Home Buying Wife', 'Hunter Burke': 'Home Buying Husband', 'Randy Austin': 'Big Winner', 'Jared Bankens': 'Skinny Thug', 'Alfre Woodard': 'Sam'}" tt0264935,"{'Sandra Bullock': 'Cassie Mayweather', 'Ben Chaplin': 'Sam Kennedy', 'Ryan Gosling': 'Richard Haywood', 'Michael Pitt': 'Justin Pendleton', 'Agnes Bruckner': 'Lisa Mills', 'Chris Penn': 'Ray', 'R.D. Call': 'Captain Rod Cody', 'Tom Verica': 'Al Swanson', 'Janni Brenn': 'Ms. Elder', 'John Vickery': 'Restaurant Manager', 'Michael Canavan': 'Mr. Chechi', 'Krista Carpenter': 'Olivia Lake', 'Neal Matarazzo': 'Male Officer in Flashback', 'Adilah Barnes': 'Lab Technician', 'Jim Jansen': 'Lawyer'}" tt2377322,"{'Eric Bana': 'Sarchie', 'Edgar Ramírez': 'Mendoza', 'Olivia Munn': 'Jen', 'Chris Coy': 'Jimmy', 'Dorian Missick': 'Gordon', 'Sean Harris': 'Santino', 'Joel McHale': 'Butler', 'Mike Houston': 'Nadler', 'Lulu Wilson': 'Christina', 'Olivia Horton': 'Jane', 'Scott Johnsen': 'Lt. Griggs', 'Daniel Sauli': 'Salvatore', 'Antoinette LaVecchia': 'Serafina', 'Aidan Gemme': 'Mario', 'Jenna Gavigan': 'Lucinda'}" tt0102915,"{'Dolph Lundgren': 'Sgt. Chris Kenner', 'Brandon Lee': 'Johnny Murata', 'Cary-Hiroyuki Tagawa': 'Funekei Yoshida', 'Tia Carrere': 'Minako Okeya', 'Toshishiro Obata': 'Sato', 'Philip Tan': 'Tanaka', 'Rodney Kageyama': 'Eddie', 'Ernie Lively': 'Detective Nelson', 'Renee Allman': 'Angel Mueller (as Renee Griffin)', 'Reid Asato': 'Muto', 'Takayo Fischer': 'Mama Yamaguchi', 'Simon Rhee': 'Ito', 'Vernee Watson': 'Nonnie Russell - Coroner (as Vernee Watson-Johnson)', 'Lenny Imamura': 'Kickboxer #1', 'Roger Yuan': 'Kickboxer #2'}" tt0367652,"{'Rob Schneider': 'Deuce Bigalow', 'Eddie Griffin': 'T.J. Hicks', 'Jeroen Krabbé': 'Gaspar Voorsboch', 'Til Schweiger': 'Heinz Hummer', 'Douglas Sills': 'Chadsworth Buckingham, III', 'Carlos Ponce': 'Rodrigo', 'Charles Keating': 'Gian-Carlo', 'Hanna Verboom': 'Eva', 'Alex Dimitriades': 'Enzo Giarraputo', 'Kostas Sommer': 'Assapopoulos Mariolis', 'Federico Dordei': 'Mahmoud', 'Oded Fehr': 'Antoine Laconte', 'Tony Fish': ""Lil' Kim (as Topper)"", 'Elisabetta Canalis': 'Lady in Castle', 'Hilton Myburgh': 'Diego Verga'}" tt0374536,"{'Nicole Kidman': 'Isabel Bigelow / Samantha', 'Will Ferrell': 'Jack Wyatt / Darrin', 'Shirley MacLaine': 'Iris Smythson / Endora', 'Michael Caine': 'Nigel Bigelow', 'Jason Schwartzman': 'Ritchie', 'Kristin Chenoweth': 'Maria Kelly', 'Heather Burns': 'Nina', 'Jim Turner': 'Larry', 'Stephen Colbert': 'Stu Robison', 'David Alan Grier': 'Jim Fields', 'Michael Badalucco': 'Joey Props', 'Carole Shelley': 'Aunt Clara', 'Steve Carell': 'Uncle Arthur', 'Katie Finneran': 'Sheila Wyatt', 'James Lipton': 'James Lipton'}" tt0095925,"{'Lance Henriksen': 'Ed Harley', 'Jeff East': 'Chris', ""John D'Aquino"": 'Joel (as John DiAquino)', 'Kimberly Ross': 'Kim', 'Joel Hoffman': 'Steve', 'Cynthia Bain': 'Tracy', 'Kerry Remsen': 'Maggie', 'Florence Schauffler': 'Haggis', 'Brian Bremer': 'Bunt', ""George 'Buck' Flower"": 'Mr. Wallace (as Buck Flower)', 'Matthew Hurley': 'Billy Harley', 'Lee de Broux': 'Tom Harley (as Lee DeBroux)', 'Peggy Walton-Walker': 'Ellie Harley (as Peggy Walton Walker)', 'Chance Michael Corbitt': 'Eddie Harley (as Chance Corbitt Jr.)', 'Dick Warlock': 'Clayton Heller (as Richard Warlock)'}" tt2788710,"{'James Franco': 'Dave Skylark', 'Seth Rogen': 'Aaron Rapaport', 'Lizzy Caplan': 'Agent Lacey', 'Randall Park': 'President Kim', 'Diana Bang': 'Sook', 'Timothy Simons': 'Malcolm', 'Reese Alexander': 'Agent Botwin', 'James Yi': 'Officer Koh', 'Paul Bae': 'Officer Yu', 'Geoff Gustafson': 'Cole', 'Dominique Lalonde': 'Jackie', 'Anesha Bailey': 'Janet', 'Anders Holm': 'Jake', 'Charles Rahi Chun': 'General Jong', 'Don Chow': 'Two-Fingered Man'}" tt2170299,"{'Jason Bateman': 'Guy Trilby', 'Kathryn Hahn': 'Jenny Widgeon', 'Rohan Chand': 'Chaitanya Chopra', 'Philip Baker Hall': 'Dr. Bowman', 'Allison Janney': 'Dr. Bernice Deagan', 'Ben Falcone': 'Pete Fowler', 'Steve Witting': 'Proctor at Spelling Bee', 'Beth Grant': 'Bedazzled Judge', 'Gwen Parden': 'Brace Faced Girl', 'Anjul Nigam': 'Sriram Chopra', 'Allan Miller': 'Bald Glasses Judge', 'Bob Stephenson': 'Bill Murhoff', 'Patricia Belcher': 'Ingrid', 'Matthew Zhang': 'Braden Aftergood', 'Madison Hu': 'Ling Quan'}" tt0243655,"{'Janeane Garofalo': 'Beth', 'David Hyde Pierce': 'Henry', 'Michael Showalter': 'Coop', 'Marguerite Moreau': 'Katie', 'Paul Rudd': 'Andy', 'Zak Orth': 'J.J.', 'Christopher Meloni': 'Gene', 'A.D. Miles': 'Gary', 'Molly Shannon': 'Gail', 'Gideon Jacobs': 'Aaron', 'Ken Marino': 'Victor', 'Joe Lo Truglio': 'Neil', 'Michael Ian Black': 'McKinley', 'Liam Norton': 'Arty', 'Amy Poehler': 'Susie'}" tt0448157,"{'Will Smith': 'John Hancock', 'Charlize Theron': 'Mary', 'Jason Bateman': 'Ray', 'Jae Head': 'Aaron', 'Eddie Marsan': 'Red', 'David Mattey': 'Man Mountain', 'Maetrix Fitten': 'Matrix', 'Thomas Lennon': 'Mike', 'Johnny Galecki': 'Jeremy', 'Hayley Marie Norman': 'Hottie', 'Dorothy Cecchi': 'Woman in Dive Bar', 'Michelle Lemon': 'Girl at Bus Bench', 'Akiva Goldsman': 'Executive', 'Michael Mann': 'Executive', 'Brad Leland': 'Executive'}" tt0118750,"{'Jamie Foxx': 'Bunz', 'Tommy Davidson': 'Rushon', 'Amy Monique Waddell': 'Arguing Woman', 'Wiley Moore': 'Arguing Man', 'Vivica A. Fox': 'Lysterine', 'Tamala Jones': 'Nikki', 'Kam Ray Chan': 'Ug Lee', 'Ric Young': 'Mr. Chiu', 'Ammie Sin': 'Yoyo', 'Scott LaRose': 'Singh', 'Bernie Mac': 'Judge Peabody', 'Olivia Yap': ""Judge's Woman"", 'Bill MacDonald': 'Hold up Man', 'John Moraitis': 'Greek Cabbie', 'Karen Robinson': 'Admitting Nurse'}" tt0110657,"{'Pat Morita': ""Miyagi (as Noriyuki 'Pat' Morita)"", 'Hilary Swank': 'Julie Pierce', 'Michael Ironside': 'Dugan', 'Constance Towers': 'Louisa', 'Chris Conrad': 'Eric', ""Arsenio 'Sonny' Trinidad"": 'Abbot Monk (as Arsenio Trinidad)', 'Michael Cavalieri': 'Ned', 'Walton Goggins': 'Charlie (as Walt Goggins)', 'Jim Ishida': 'Tall Monk', 'Rodney Kageyama': 'Monk', 'Seth Sakai': 'Buddhist Monk', 'Eugene Boles': 'Mr. Wilkes', 'Keena Keel': 'School Clerk', ""Tom O'Brien"": 'Gabe', 'Thomas Downey': 'Morgan (as Tom Downey)'}" tt0120686,"{'Julia Roberts': 'Isabel Kelly', 'Susan Sarandon': 'Jackie Harrison', 'Ed Harris': 'Luke Harrison', 'Jena Malone': 'Anna Harrison', 'Liam Aiken': 'Ben Harrison', 'Lynn Whitfield': 'Dr. P. Sweikert', 'Darrell Larson': 'Duncan Samuels', 'Mary Louise Wilson': 'Mrs. Franklin', 'Andre B. Blake': 'Cooper (as Andre Blake)', 'Herbert Russell': 'Photo Assistant (as Russel Harper)', 'Jack Eagle': 'Craft Service Man', 'Lu Celania Sierra': 'Photo Shoot Model', 'Lauma Zemzare': 'Photo Shoot Model', 'Holly Schenck': 'Photo Shoot Model', 'Michelle Stone': 'Photo Shoot Model'}" tt0105121,"{'Brandon Quintin Adams': 'Fool (as Brandon Adams)', 'Everett McGill': 'Man', 'Wendy Robie': 'Woman', 'A.J. Langer': 'Alice', 'Ving Rhames': 'Leroy', 'Sean Whalen': 'Roach', 'Bill Cobbs': 'Grandpa Booker', 'Kelly Jo Minter': 'Ruby Williams', 'Jeremy Roberts': 'Spenser', 'Conni Marie Brazelton': 'Mary', 'Josh Coxx': 'Young Cop (as Joshua Cox)', 'John Hostetter': 'Veteran Cop', 'John Mahon': 'Police Sergeant', 'Teresa Velarde': 'Social Worker', 'George R. Parker': 'Attic Cop'}" tt0102492,"{'Dan Aykroyd': 'Harry Sultenfuss', 'Jamie Lee Curtis': 'Shelly DeVoto', 'Macaulay Culkin': 'Thomas J. Sennett', 'Anna Chlumsky': 'Vada Sultenfuss', 'Richard Masur': 'Phil Sultenfuss', 'Griffin Dunne': 'Mr. Bixler', 'Ann Nelson': 'Gramoo Sultenfuss', 'Peter Michael Goetz': 'Dr. Welty', 'Jane Hallaren': 'Nurse Randall', 'Anthony R. Jones': 'Arthur', 'Tom Villard': 'Justin', 'Lara Steinick': 'Ronda', 'Kristian Truelsen': 'Charles', 'David Caprita': 'Ray', 'Jody Wilson': 'Mrs. Hunsaker'}" tt0164912,"{'Michael J. Fox': 'Stuart Little (voice)', 'Geena Davis': 'Mrs. Little', 'Hugh Laurie': 'Mr. Little', 'Jonathan Lipnicki': 'George Little', 'Nathan Lane': 'Snowbell (voice)', 'Chazz Palminteri': 'Smokey (voice)', 'Steve Zahn': 'Monty (voice)', 'Jim Doughan': 'Lucky / Officer Allen (voice)', 'David Alan Grier': 'Red (voice)', 'Bruno Kirby': 'Mr. Stout (voice)', 'Jennifer Tilly': 'Mrs. Stout (voice)', 'Stan Freberg': 'Race Announcer (voice)', 'Jeffrey Jones': 'Uncle Crenshaw', 'Connie Ray': 'Aunt Tina', 'Allyce Beasley': 'Aunt Beatrice'}" tt0243585,"{'Michael J. Fox': 'Stuart Little (voice)', 'Geena Davis': 'Mrs. Little', 'Hugh Laurie': 'Mr. Little', 'Jonathan Lipnicki': 'George Little', 'Anna Hoelck': 'Martha Little', 'Ashley Hoelck': 'Martha Little', 'Nathan Lane': 'Snowbell (voice)', 'Melanie Griffith': 'Margalo (voice)', 'James Woods': 'Falcon (voice)', 'Steve Zahn': 'Monty (voice)', 'Marc John Jefferies': 'Will', 'Angelo Massagli': 'Wallace', 'Jim Doughan': 'Soccerball Coach', 'Brad Garrett': 'Plumber', 'Conan McCarty': 'Referee'}" tt0439815,"{'Don Thompson': 'Wally', 'Nathan Fillion': 'Bill Pardy', 'Gregg Henry': 'Jack MacReady', 'Xantha Radley': 'Uptight Mom', 'Elizabeth Banks': 'Starla Grant', 'Tania Saulnier': 'Kylie Strutemyer', 'Dustin Milligan': 'Drawing Boy', 'Michael Rooker': 'Grant Grant', 'Haig Sutherland': 'Trevor', 'Jennifer Copping': 'Margaret', 'Zak Ludwig': 'Gina Kid', 'Kathryn Kirkpatrick': 'Karaoke Woman', 'Brenda James': 'Brenda Gutierrez', 'Lorena Gale': 'Janene', 'Bart Anderson': 'Butcher'}" tt3322364,"{'Will Smith': 'Dr. Bennet Omalu', 'Alec Baldwin': 'Dr. Julian Bailes', 'Albert Brooks': 'Dr. Cyril Wecht', 'Gugu Mbatha-Raw': 'Prema Mutiso', 'David Morse': 'Mike Webster', 'Arliss Howard': 'Dr. Joseph Maroon', ""Mike O'Malley"": 'Daniel Sullivan', 'Eddie Marsan': 'Dr. Steve DeKosky', 'Hill Harper': 'Christopher Jones', 'Adewale Akinnuoye-Agbaje': 'Dave Duerson', 'Stephen Moyer': 'Dr. Ron Hamilton', 'Richard T. Jones': 'Andre Waters', 'Paul Reiser': 'Dr. Elliot Pellman', 'Luke Wilson': 'Roger Goodell', 'Sara Lindsey': 'Gracie'}" tt1232200,"{'Adam Sandler': 'Donny', 'Andy Samberg': 'Todd', 'Leighton Meester': 'Jamie', 'Vanilla Ice': 'Vanilla Ice', 'James Caan': 'Father McNally', 'Milo Ventimiglia': 'Chad', 'Blake Clark': 'Gerald', 'Meagen Fay': 'Helen', 'Tony Orlando': 'Steve Spirou', 'Will Forte': 'Phil', 'Rachel Dratch': ""Phil's Wife"", 'Nick Swardson': 'Kenny', 'Peggy Stewart': 'Grandma Delores', 'Luenell': 'Champale', 'Ciara': 'Brie'}" tt1564367,"{'Adam Sandler': 'Danny', 'Jennifer Aniston': 'Katherine', 'Nicole Kidman': 'Devlin Adams', 'Nick Swardson': 'Eddie', 'Brooklyn Decker': 'Palmer', 'Bailee Madison': 'Maggie', 'Griffin Gluck': 'Michael', 'Dave Matthews': 'Ian Maxtone Jones', 'Kevin Nealon': 'Adon', 'Rachel Dratch': 'Kirsten Brant', 'Allen Covert': 'Soul Patch', 'Dan Patrick': 'Tanner Patrick', 'Minka Kelly': 'Joanna Damon', 'Jackie Sandler': 'Veruca', 'Rakefet Abergel': 'Patricia'}" tt0960144,"{'Adam Sandler': 'Zohan', 'John Turturro': 'Phantom', 'Emmanuelle Chriqui': 'Dalia', 'Nick Swardson': 'Michael', 'Lainie Kazan': 'Gail', 'Ido Mosseri': 'Oori', 'Rob Schneider': 'Salim', 'Dave Matthews': 'James', 'Michael Buffer': 'Walbridge', 'Charlotte Rae': 'Mrs. Greenhouse', 'Sayed Badreya': 'Hamdi', 'Daoud Heidami': 'Nasi', 'Kevin Nealon': 'Kevin', 'Robert Smigel': 'Yosi', 'Dina Doron': ""Zohan's Mother (as Dina Doronne)""}" tt0371246,"{'Adam Sandler': 'John Clasky', 'Téa Leoni': 'Deborah Clasky', 'Paz Vega': 'Flor', 'Cloris Leachman': 'Evelyn', 'Shelbie Bruce': 'Cristina', 'Sarah Steele': 'Bernice', 'Ian Donovan Hyland': 'Georgie (as Ian Hyland)', 'Victoria Luna': 'Cristina (six years old)', 'Cecilia Suárez': 'Monica (as Cecilia Suarez)', 'Ricardo Molina': ""Flor's Husband"", 'Brenda Canela': 'Luz', 'Eddy Martin': 'Fourteen-Year-Old Boy', 'Nicole Nieth': 'Hostess at Fancy Restaurant', 'Jamie Kaler': 'Businessman', 'James Lancaster': 'Businessman'}" tt0389860,"{'Adam Sandler': 'Michael Newman', 'Kate Beckinsale': 'Donna Newman', 'Christopher Walken': 'Morty', 'David Hasselhoff': 'Ammer', 'Henry Winkler': 'Ted Newman', 'Julie Kavner': 'Trudy Newman', 'Sean Astin': 'Bill', 'Joseph Castanon': 'Ben Newman at 7 Years Old', 'Jonah Hill': 'Ben at 17 Years Old', 'Jake Hoffman': 'Ben Newman at 22-30 Years Old', 'Tatum McCann': 'Samantha Newman at 5 Years Old', 'Lorraine Nicholson': 'Samantha Newman at 14 Years Old', 'Katie Cassidy': 'Samantha at 27 Years Old', 'Cameron Monaghan': ""Kevin O'Doyle"", 'Jennifer Coolidge': 'Janine'}" tt0106379,"{'Robin Williams': 'Hector', 'Kelly Hunter': 'Deirdre', 'Maudie Johnson': 'Girl Child', 'Max Johnson': 'Boy Child', 'Robert Carlyle': 'Priest', 'Eoin McCarthy': 'Leader', 'Irvine Allen': 'Raider', 'Iain Andrew': 'Raider', 'Robert Cavanah': 'Raider', 'Tony Curran': 'Raider', 'Andrew Flanagan': 'Raider (as Andy Flanagan)', 'Seamus Gubbins': 'Raider', 'Iain McAleese': 'Raider', 'David McGowan': 'Raider', 'Gavin Mitchell': 'Raider'}" tt0088707,"{'Kevin Costner': 'Marcus Sommers', 'David Marshall Grant': 'David (as David Grant)', 'Rae Dawn Chong': 'Sarah', 'Alexandra Paul': 'Becky', 'Janice Rule': 'Mrs. Sommers', 'Luca Bercovici': 'Muzzin', 'Robert Townsend': 'Jerome', 'John Amos': 'Dr. Conrad', 'Doi Johnson': 'Randolph', 'John Garber': 'Belov', 'Jennifer Grey': 'Leslie', 'James Terry': 'Hitchhiker', 'Jessica Nelson': 'Hitchhiker', 'Tom Lawrence': 'Timekeeper', 'Brian Drebber': 'Race Announcer'}" tt0088680,"{'Griffin Dunne': 'Paul Hackett', 'Rosanna Arquette': 'Marcy', 'Verna Bloom': 'June', 'Tommy Chong': 'Pepe (as Thomas Chong)', 'Linda Fiorentino': 'Kiki', 'Teri Garr': 'Julie', 'John Heard': 'Tom the Bartender', 'Cheech Marin': 'Neil', ""Catherine O'Hara"": 'Gail', 'Dick Miller': 'Waiter', 'Will Patton': 'Horst', 'Robert Plunket': 'Street Pickup', 'Bronson Pinchot': 'Lloyd', 'Rocco Sisto': 'Coffee Shop Cashier', 'Larry Block': 'Taxi Driver'}" tt0274309,"{'Steve Coogan': 'Tony Wilson', 'John Thomson': 'Charles', 'Paul Popplewell': 'Paul Ryder', 'Lennie James': 'Alan Erasmus', 'Shirley Henderson': 'Lindsay', 'Mark Windows': 'Johnny Rotten', 'Paddy Considine': 'Rob Gretton', 'Raymond Waring': 'Vini', 'Ron Cook': 'Derek Ryder', 'John Simm': 'Bernard Sumner', 'Danny Cunningham': 'Shaun Ryder', 'Dave Gorman': 'John the Postman', 'Ralf Little': 'Hooky (Peter Hook)', 'Andy Serkis': 'Martin Hannett', 'Nigel Pivaro': 'Actor at Granada'}" tt0101701,"{'John Candy': 'Jack Gable', 'Mariel Hemingway': 'Janet Dubois / Louise', 'Emma Samms': 'Rachel Hedison / Laura Claybourne', 'Raymond Burr': 'Carter Hedison', 'Dylan Baker': 'Blake Hedison', 'Charles Rocket': 'Ty Hedison', 'David Rasche': 'Dr. Paul Kirkwood / Dennis', 'Andrea Thompson': 'Nurse Helen Caldwell', 'Zach Grenier': 'Mickey', 'Jerry Orbach': 'Lou Sherwood', 'Renée Taylor': 'Arlene Sherwood', 'Milt Oberman': 'Fetterman', 'Mark Boone Junior': 'Cable Man', 'Tony Steedman': 'Edward - the Butler', 'John Michael Bolger': 'Len'}" tt0100258,"{'Tony Todd': 'Ben', 'Patricia Tallman': 'Barbara', 'Tom Towles': 'Harry Cooper', 'McKee Anderson': 'Helen Cooper', 'William Butler': 'Tom', 'Katie Finneran': 'Judy Rose', 'Bill Moseley': 'Johnnie (as Bill Mosley)', 'Heather Mazur': 'Sarah Cooper', 'David W. Butler': 'Hondo (as David Butler)', 'Zachary Mott': 'Bulldog', 'Pat Reese': 'The Mourner', 'William Cameron': 'The Newsman', 'Pat Logan': 'Uncle Rege', 'Berle Ellis': 'The Flaming Zombie', 'Bill Cardille': ""T.V. Interviewer (as Bill 'Chilly Billy' Cardille)""}" tt1282140,"{'Emma Stone': 'Olive', 'Penn Badgley': 'Woodchuck Todd', 'Amanda Bynes': 'Marianne', 'Dan Byrd': 'Brandon', 'Thomas Haden Church': 'Mr. Griffith', 'Patricia Clarkson': 'Rosemary', 'Cam Gigandet': 'Micah', 'Lisa Kudrow': 'Mrs. Griffith', 'Malcolm McDowell': 'Principal Gibbons', 'Aly Michalka': 'Rhiannon', 'Stanley Tucci': 'Dill', 'Fred Armisen': 'Pastor', 'Juliette Goglia': 'Eighth Grade Olive', 'Jake Sandvig': 'Anson', 'Morgan Rusler': 'Mr. Abernathy'}" tt0852713,"{'Anna Faris': 'Shelley Darlingson', 'Colin Hanks': 'Oliver', 'Emma Stone': 'Natalie', 'Kat Dennings': 'Mona', 'Hugh Hefner': 'Hugh Hefner', 'Christopher McDonald': 'Dean Simmons', ""Beverly D'Angelo"": 'Mrs. Hagstrom', 'Katharine McPhee': 'Harmony', 'Rumer Willis': 'Joanne', 'Kiely Williams': 'Lilly', 'Dana Goodman': 'Carrie Mae', 'Kimberly Makkouk': 'Tanya', 'Monet Mazur': 'Cassandra', 'Tyson Ritter': 'Colby', 'Sarah Wright': 'Ashley'}" tt0879870,"{'Julia Roberts': 'Liz Gilbert', 'I. Gusti Ayu Puspawati': 'Nyomo', 'Hadi Subiyanto': 'Ketut Liyer', 'Billy Crudup': 'Stephen', 'Viola Davis': 'Delia Shiraz', 'A. Jay Radcliff': 'Andre', ""Mike O'Malley"": 'Andy Shiraz', 'Ashlie Atkinson': 'Bookstore Girl', 'James Franco': 'David Piccolo', 'Lisa Roberts Gillan': 'Woman in Play', ""Ryan O'Nan"": 'Play Walk-Out', 'Gita Reddy': 'The Guru', 'Dwayne Clark': 'NYU Student Boyfriend', 'Jen Kwok': 'NYU Student Girlfriend (as Jennifer Kwok)', 'Mary Testa': 'Laundromat Gal'}" tt1114740,"{'Kevin James': 'Paul Blart', ""Keir O'Donnell"": 'Veck Simms', 'Jayma Mays': 'Amy', 'Raini Rodriguez': 'Maya', 'Shirley Knight': 'Mom', 'Stephen Rannazzisi': 'Stuart', 'Peter Gerety': 'Chief Brooks', 'Bobby Cannavale': 'Cmdr. James Kent', 'Adam Ferrara': 'Sergeant Howard', 'Jamal Mixon': 'Leon', 'Adhir Kalyan': 'Pahud', 'Erick Avari': 'Vijay', 'Gary Valentine': 'Karaoke Singer', 'Allen Covert': 'Jerky Security Guy', 'Mike Vallely': 'Rudolph'}" tt0117008,"{'Mara Wilson': 'Matilda', 'Danny DeVito': 'Mr. Wormwood / Narrator', 'Rhea Perlman': 'Mrs. Wormwood', 'Embeth Davidtz': 'Miss Honey', 'Pam Ferris': 'Trunchbull', 'Paul Reubens': 'FBI Agent', 'Tracey Walter': 'FBI Agent', 'Brian Levinson': 'Michael', 'Jean Speegle Howard': 'Miss Phelps', 'Sara Magdalin': 'Matilda, 4 Years', 'R.D. Robb': 'Roy', 'Gregory R. Goliath': 'Luther (as Goliath Gregory)', 'Fred Parnes': 'Waiter', 'Kiami Davael': 'Lavender', 'Leor Livneh Hackel': 'Julius Rottwinkle'}" tt0099204,"{'Robin Williams': ""Joey O'Brien"", 'Tim Robbins': 'Larry', 'Pamela Reed': 'Tina', 'Fran Drescher': 'Joy Munchack', 'Zack Norman': 'Harry Munchack', 'Lori Petty': 'Lila', 'Annabella Sciorra': 'Donna', 'Paul Guilfoyle': 'Little Jack Turgeon', 'Bill Nelson': 'Big Jack Turgeon', 'Eddie Jones': 'Benny', 'Mimi Cecchini': 'Ma', 'Tristine Skyler': 'Lisa', 'Judith Hoag': 'Molly', 'Lauren Tom': 'Helen the Dim Sum Girl', 'Anthony Powers': 'Captain Mason'}" tt0097757,"{'Rene Auberjonois': 'Louis (voice) (as René Auberjonois)', 'Christopher Daniel Barnes': 'Eric (voice)', 'Jodi Benson': 'Ariel (voice)', 'Pat Carroll': 'Ursula (voice)', 'Paddi Edwards': 'Flotsam / Jetsam (voice)', 'Buddy Hackett': 'Scuttle (voice)', 'Jason Marin': 'Flounder (voice)', 'Kenneth Mars': 'Triton (voice)', 'Edie McClurg': 'Carlotta (voice)', 'Will Ryan': 'Seahorse (voice)', 'Ben Wright': 'Grimsby (voice)', 'Samuel E. Wright': 'Sebastian (voice)', 'Hamilton Camp': 'Additional Voices (voice)', 'Debbie Shapiro Gravitte': 'Additional Voices (voice) (as Debbie Shapiro)', 'Robert Weil': 'Additional Voices (voice)'}" tt0409182,"{'Josh Lucas': 'Dylan Johns', 'Kurt Russell': 'Robert Ramsey', 'Jacinda Barrett': 'Maggie James', 'Richard Dreyfuss': 'Richard Nelson', 'Emmy Rossum': 'Jennifer Ramsey', 'Mía Maestro': 'Elena Morales', 'Mike Vogel': 'Christian', 'Kevin Dillon': 'Lucky Larry', 'Freddy Rodríguez': 'Marco Valentin', 'Jimmy Bennett': 'Conor James', 'Fergie': 'Gloria (as Stacy Ferguson)', 'Andre Braugher': 'Captain Bradford', 'Kirk B.R. Woller': 'Chief Officer Reynolds', 'Kelly McNair': 'Emily', 'Gabriel Jarret': '1st Officer Chapman'}" tt0089175,"{'Chris Sarandon': 'Jerry Dandrige', 'William Ragsdale': 'Charley Brewster', 'Amanda Bearse': 'Amy Peterson', 'Roddy McDowall': 'Peter Vincent', 'Stephen Geoffreys': 'Evil Ed', 'Jonathan Stark': 'Billy Cole', 'Dorothy Fielding': 'Judy Brewster', 'Art Evans': 'Detective Lennox (as Art J. Evans)', 'Stewart Stern': 'Cook', 'Nick Savage': 'Bouncer #1', 'Ernie Holmes': 'Bouncer #2', 'Heidi Sorenson': 'Hooker', 'Irina Irvine': 'Teenage Girl', 'Bob Corff': 'Jonathan (as Robert Corff)', 'Pamela Brown': 'Miss Nina'}" tt2241351,"{'George Clooney': 'Lee Gates', 'Julia Roberts': 'Patty Fenn', ""Jack O'Connell"": 'Kyle Budwell', 'Dominic West': 'Walt Camby', 'Caitriona Balfe': 'Diane Lester', 'Giancarlo Esposito': 'Captain Powell', 'Christopher Denham': 'Ron Sprecher', 'Lenny Venito': 'Lenny (The Cameraman)', 'Chris Bauer': 'Lt. Nelson', 'Dennis Boutsikaris': 'Avery Goodloe CFO', 'Emily Meade': 'Molly', 'Condola Rashad': 'Bree (The Assistant)', 'Aaron Yoo': 'Won Joon', 'Carsey Walker Jr.': 'Tech Sam', 'Grant Rosenmeyer': 'Tech Dave'}" tt0172493,"{'Winona Ryder': 'Susanna', 'Angelina Jolie': 'Lisa', 'Clea DuVall': 'Georgina (as Clea Duvall)', 'Brittany Murphy': 'Daisy', 'Elisabeth Moss': 'Polly', 'Jared Leto': 'Tobias Jacobs', 'Jeffrey Tambor': 'Dr. Potts', 'Vanessa Redgrave': 'Dr. Wick', 'Whoopi Goldberg': 'Valerie', 'Angela Bettis': 'Janet', 'Jillian Armenante': 'Cynthia', 'Drucie McDaniel': 'M-G', 'Alison Claire': 'Gretta', 'Christina Myers': 'Margie', 'Joanna Kerns': 'Annette'}" tt0112818,"{'Susan Sarandon': 'Sister Helen Prejean', 'Sean Penn': 'Matthew Poncelet', 'Robert Prosky': 'Hilton Barber', 'Raymond J. Barry': 'Earl Delacroix', 'R. Lee Ermey': 'Clyde Percy', 'Celia Weston': 'Mary Beth Percy', 'Lois Smith': ""Helen's Mother"", 'Scott Wilson': 'Chaplain Farley', 'Roberta Maxwell': 'Lucille Poncelet', 'Margo Martindale': 'Sister Colleen', 'Barton Heyman': 'Captain Beliveau', 'Steve Boles': 'Sgt. Neal Trapp', 'Nesbitt Blaisdell': 'Warden Hartman', 'Ray Aranha': 'Luis Montoya', 'Larry Pine': 'Guy Gilardi'}" tt0310793,"{'Michael Moore': 'Himself - Narrator', 'Salvador Allende': 'Himself - President of Chile (archive footage)', 'Jacobo Arbenz': 'Himself - President of Guatemala (archive footage)', 'Mike Bradley': 'Himself - Mayor of Sarnia, Ontario, Canada', 'Arthur A. Busch': 'Himself - County Prosecutor: Flint, Michigan (as Arthur Busch)', 'George Bush': 'Himself (archive footage)', 'George W. Bush': 'Himself (archive footage)', 'Michael Caldwell': 'Himself - Police Detective', 'Richard Castaldo': 'Himself - Columbine Victim', 'Dick Clark': 'Himself', 'Bill Clinton': 'Himself (archive footage)', 'Steve Davis': 'Himself - Deputy Sheriff (archive footage)', 'Ngo Dinh Diem': 'Himself - President of South Vietnam (archive footage)', 'Mike Epstein': 'Himself - Shopper in Mall', 'Joe Farmer': 'Himself - Superintendent of Schools (archive footage)'}" tt0022913,"{'Wallace Ford': 'Phroso', 'Leila Hyams': 'Venus', 'Olga Baclanova': 'Cleopatra', 'Roscoe Ates': 'Roscoe (as Rosco Ates)', 'Henry Victor': 'Hercules', 'Harry Earles': 'Hans', 'Daisy Earles': 'Frieda', 'Rose Dione': 'Madame Tetrallini', 'Daisy Hilton': 'Siamese Twin', 'Violet Hilton': 'Siamese Twin', 'Schlitze': 'Himself', 'Josephine Joseph': 'Half Woman-Half Man', 'Johnny Eck': 'Half Boy', ""Frances O'Connor"": 'Armless Girl', 'Peter Robinson': 'Human Skeleton'}" tt1535109,"{'Tom Hanks': 'Captain Richard Phillips', 'Catherine Keener': 'Andrea Phillips', 'Barkhad Abdi': 'Muse', 'Barkhad Abdirahman': 'Bilal', 'Faysal Ahmed': 'Najee', 'Mahat M. Ali': 'Elmi', 'Michael Chernus': 'Shane Murphy', 'David Warshofsky': 'Mike Perry', 'Corey Johnson': 'Ken Quinn', 'Chris Mulkey': 'John Cronan', 'Yul Vazquez': 'Captain Frank Castellano', 'Max Martini': 'SEAL Commander', 'Omar Berdouni': 'Nemo', 'Mohamed Ali': 'Asad', 'Issak Farah Samatar': 'Hufan'}" tt4178092,"{'Jason Bateman': 'Simon', 'Rebecca Hall': 'Robyn', 'Joel Edgerton': 'Gordo', 'Allison Tolman': 'Lucy', 'Tim Griffin': ""Kevin 'KK' Keelor"", 'Busy Philipps': 'Duffy', 'Adam Lazarre-White': 'Ron', 'Beau Knapp': 'Detective Walker', 'Wendell Pierce': 'Detective Mills', 'Mirrah Foulkes': 'Wendy Dale', 'Nash Edgerton': 'Frank Dale', 'David Denman': 'Greg', 'Katie Aselton': 'Joan', 'David Joseph Craig': 'Stewart (as David Craig)', 'Susan May Pratt': 'Rhonda Ryan'}" tt2717822,"{'Chris Hemsworth': 'Nick Hathaway', 'Leehom Wang': 'Chen Dawai', 'Wei Tang': 'Chen Lien', 'Viola Davis': 'Carol Barrett', 'Holt McCallany': 'Mark Jessup', 'Andy On': 'Alex Trang', 'Ritchie Coster': 'Elias Kassar', 'Christian Borle': 'Jeff Robichaud', 'John Ortiz': 'Henry Pollack', 'Yorick van Wageningen': 'Sadak', 'Tyson Chak': 'Tech', 'Brandon Molale': 'Sort Guard', 'Danny Burstein': 'Associate Warden Jeffries', 'Archie Kao': 'Shum', 'Abhi Sinha': 'Daniels'}" tt0155267,"{'Pierce Brosnan': 'Thomas Crown', 'Rene Russo': 'Catherine Banning', 'Denis Leary': 'Michael McCann', 'Ben Gazzara': 'Andrew Wallace', 'Frankie Faison': 'Detective Paretti', 'Fritz Weaver': 'John Reynolds', 'Charles Keating': 'Friedrich Golchan', 'Mark Margolis': 'Heinrich Knutzhorn', 'Faye Dunaway': 'The Psychiatrist', 'Michael Lombard': 'Bobby McKinley', 'Bill Ambrozy': 'Proctor', 'Michael Bahr': 'Proctor (as Michael S. Bahr)', 'Robert D. Novak': 'Proctor (as Robert Novak)', 'Joe H. Lamb': 'Proctor (as Joe Lamb)', 'James Saito': 'Paul Cheng'}" tt0063688,"{'Steve McQueen': 'Thomas Crown', 'Faye Dunaway': 'Vicki Anderson', 'Paul Burke': 'Eddy Malone', 'Jack Weston': 'Erwin', 'Biff McGuire': 'Sandy', 'Addison Powell': 'Abe', 'Astrid Heeren': 'Gwen', 'Gordon Pinsent': 'Jamie', 'Yaphet Kotto': 'Carl', 'Sidney Armus': 'Arnie', 'Richard Bull': 'Booth Guard', 'Peg Shirley': 'Honey', 'Patrick Horgan': 'Danny', 'Carol Corbett': 'Miss Sullivan', 'Tom Rosqui': 'Pvt. Detective'}" tt0114134,"{'Vivian Wu': 'Nagiko', 'Yoshi Oida': 'The Publisher', 'Ken Ogata': 'The Father', 'Hideko Yoshida': 'The Aunt / The Maid', 'Ewan McGregor': 'Jerome', 'Judy Ongg': 'The Mother', 'Ken Mitsuishi': 'The Husband', 'Yutaka Honda': 'Hoki', 'Barbara Lott': ""Jerome's Mother"", 'Miwako Kawai': 'Young Nagiko', 'Lynne Langdon': ""Jerome's sister (as Lynne Frances Wachendorfer)"", 'Chizuru Ohnishi': 'Young Nagiko', 'Shiho Takamatsu': 'Young Nagiko', 'Aki Ishimaru': 'Young Nagiko', 'Hisashi Hidaka': 'Calligrapher'}" tt1596345,"{'Tobey Maguire': 'Bobby Fischer', 'Liev Schreiber': 'Boris Spassky', 'Michael Stuhlbarg': 'Paul Marshall', 'Peter Sarsgaard': 'Father Bill Lombardy', 'Edward Zinoviev': 'Efim Geller', 'Alexandre Gorchkov': 'Iivo Nei', 'Lily Rabe': 'Joan Fischer', 'Robin Weigert': 'Regina Fischer', 'Seamus Davey-Fitzpatrick': 'Teenage Bobby Fischer', 'Aiden Lovekamp': 'Young Bobby Fischer', 'Sophie Nélisse': 'Young Joan Fischer', 'Evelyne Brochu': 'Donna', 'Conrad Pla': 'Carmine Nigro', 'Vitali Makarov': 'Ivanovich', 'Brett Watson': 'Lothar Schmid'}" tt4183692,"{'Sean Astin': 'Hank Erwin', 'Nic Bishop': 'Tandy Gerelds', 'Caleb Castille': 'Tony Nathan', 'Sherri Shepherd': 'Momma Nathan', 'Jon Voight': 'Paul Bryant', 'Joy Brunson': 'Johnnie', 'Lance E. Nichols': 'Junior (as Lance Nichols)', 'DeVon Franklin': 'Preacher', 'C. Thomas Howell': 'Shorty', 'Kevin Sizemore': 'Jerry Stearns', 'Brett Rice': 'Whitehurst', 'Virginia Williams': 'Debbie', 'Brando Eaton': 'Morton', 'Richard Kohnke': 'Jeff Rutledge', 'Jet Jurgensmeyer': 'Todd'}" tt0112887,"{'James Duval': 'Jordan White', 'Rose McGowan': 'Amy Blue', 'Johnathon Schaech': 'Xavier Red', 'Cress Williams': 'Peanut', 'Skinny Puppy': 'Gang of Goons', 'Dustin Nguyen': 'Quickiemart Clerk', 'Margaret Cho': ""Clerk's Wife"", 'Lauren Tewes': 'TV Anchorwoman', 'Christopher Knight': 'TV Anchorman', 'Nicky Katt': 'Carnoburger Cashier', 'Johanna Went': 'Carnoburger Co-Worker', 'Perry Farrell': ""Stop 'n' Go Clerk"", 'Amanda Bearse': 'Barmaid', 'Parker Posey': 'Brandi', 'Salvator Xuereb': 'Biker'}" tt0070460,"{'Jacqueline Bisset': 'Julie Baker', 'Valentina Cortese': 'Séverine', 'Dani': 'Liliane, la stagiaire scripte', 'Alexandra Stewart': 'Stacey', 'Jean-Pierre Aumont': 'Alexandre', 'Jean Champion': 'Bertrand, le producteur', 'Jean-Pierre Léaud': 'Alphonse (as Jean-Pierre Leaud)', 'François Truffaut': 'Ferrand, le réalisateur', 'Nike Arrighi': 'Odile, la maquilleuse', 'Nathalie Baye': 'Joëlle, la scripte', 'Maurice Seveno': 'Le reporter TV', 'David Markham': 'Dr. Michael Nelson', 'Bernard Menez': ""Bernard, l'accessoiriste"", 'Gaston Joly': 'Lajoie, le régisseur', 'Zénaïde Rossi': 'Madame Lajoie'}" tt3569230,"{'Paul Anderson': 'Albert Donoghue', 'Tom Hardy': 'Reggie Kray / Ron Kray', 'Christopher Eccleston': 'Nipper Read', 'Joshua Hill': 'Constable Scott', 'Emily Browning': 'Frances Shea', 'Colin Morgan': 'Frank Shea', 'Tara Fitzgerald': 'Mrs Shea', 'Nicholas Farrell': 'Dr Humphries', 'Adam Fogerty': 'Pat Connolly', 'Mel Raido': 'Ian Barrie', 'Major Johnson Finley': 'The Double R Club Singer', 'Millie Brady': 'Joan Collins', 'Chris Mason': 'Ronnie Hart', 'Stephen Thompson': 'Ronnie Bender', 'Sam Spruell': 'Jack McVitie'}" tt3077214,"{'Anne-Marie Duff': 'Violet Miller', 'Grace Stottor': 'Maggie Miller', 'Geoff Bell': 'Norman Taylor', 'Carey Mulligan': 'Maud Watts', 'Amanda Lawrence': 'Miss Withers', 'Shelley Longworth': 'Miss Samson', 'Adam Michael Dodd': 'George Watts', 'Ben Whishaw': 'Sonny Watts', 'Sarah Finigan': 'Mrs Garston', 'Drew Edwards': 'Male Laundry Worker', 'Lorraine Stanley': 'Mrs Coleman', 'Romola Garai': 'Alice Haughton', 'Adam Nagaitis': 'Mr Cummins', 'Helena Bonham Carter': 'Edith Ellyn', 'Finbar Lynch': 'Hugh Ellyn'}" tt0318374,"{'William H. Macy': 'Bernie Lootz', 'Alec Baldwin': 'Shelly Kaplow', 'Maria Bello': 'Natalie Belisario', 'Shawn Hatosy': 'Mikey', 'Ron Livingston': 'Larry Sokolov', 'Paul Sorvino': 'Buddy Stafford', 'Estella Warren': 'Charlene', 'Arthur J. Nascarella': 'Nicky Fingers Bonnatto', 'Joey Fatone': 'Johnny Cappella', 'M.C. Gainey': 'Highway Officer (as MC Gainey)', 'Ellen Greene': 'Doris', 'Don Scribner': 'Lou', 'Tony Longo': 'Tony', 'Richard Israel': 'Marty Goldfarb', 'Timothy Landfield': 'The Player'}" tt0108026,"{'Danny Glover': 'Jerry', 'Matt Dillon': 'Matthew', 'Rick Aviles': 'Rosario', 'Nina Siemaszko': 'Tamsen', 'Ving Rhames': 'Little Leroy', 'Joe Seneca': 'Spits', 'Harry Ellington': 'Arthur', 'Ralph Hughes': 'Jason', 'Bahni Turpin': 'Gloria', 'Robert Beatty': 'Ex-Pharmacist (as Robert Beatty Jr.)', 'Reuben Schafer': 'Greek Man (as Reuben Schaefer)', 'Louis Williams': 'Ennis', 'Adam Trese': 'John', 'Kevin Corrigan': 'Peter', 'Brian Tarantina': 'Fred'}" tt1285016,"{'Jesse Eisenberg': 'Mark Zuckerberg', 'Rooney Mara': 'Erica Albright', 'Bryan Barter': 'Billy Olson', 'Dustin Fitzsimons': 'Phoenix Club President', 'Joseph Mazzello': 'Dustin Moskovitz', 'Patrick Mapel': 'Chris Hughes', 'Andrew Garfield': 'Eduardo Saverin', 'Toby Meuli': 'Phoenix Member Playing Facemash', 'Alecia Svensen': 'Girl at Phoenix Club', 'Jami Owen': 'Student Playing Facemash', 'James Dastoli': 'Student Playing Facemash', 'Robert Dastoli': 'Student Playing Facemash', 'Scotty Crowe': 'Student Playing Facemash', 'Jayk Gallagher': 'Student Playing Facemash', 'Marcella Lentz-Pope': ""Erica's Roommate""}" tt1568346,"{'Daniel Craig': 'Mikael Blomkvist', 'Rooney Mara': 'Lisbeth Salander', 'Christopher Plummer': 'Henrik Vanger', 'Stellan Skarsgård': 'Martin Vanger', 'Steven Berkoff': 'Frode', 'Robin Wright': 'Erika Berger', 'Yorick van Wageningen': 'Bjurman', 'Joely Richardson': 'Anita Vanger', 'Geraldine James': 'Cecilia', 'Goran Visnjic': 'Armansky', 'Donald Sumpter': 'Detective Morell', 'Ulf Friberg': 'Wennerström', 'Bengt C.W. Carlsson': 'Palmgren', 'Tony Way': 'Plague', 'Per Myrberg': 'Harald'}" tt3850214,"{'ASAP Rocky': 'Dom (as A$ap Rocky)', 'Blake Anderson': 'Will Sherwood', 'Bruce Beatty': 'Mr. Bailey', ""De'aundre Bonds"": 'Stacey', 'Julian Finch': 'Mario (as Julian Brand)', 'Quincy Brown': 'Jaleel', 'Kiersey Clemons': 'Diggy', 'Kimberly Elise': 'Lisa Hayes', 'Rick Fox': 'Councilman Blackmon', 'Christopher Glenn': 'Crip 1', 'Ricky Harris': 'Tannehill James', 'Chanel Iman': 'Lily', 'Wyking Jones': 'SAT Proctor', 'Amin Joseph': 'The Voice', 'Kap G': 'Fidel X'}" tt2473602,"{'Chadwick Boseman': 'James Brown', 'Nelsan Ellis': 'Bobby Byrd', 'Dan Aykroyd': 'Ben Bart', 'Viola Davis': 'Susie Brown', 'Lennie James': 'Joe Brown', 'Fred Melamed': 'Syd Nathan', 'Craig Robinson': 'Maceo Parker', 'Jill Scott': 'DeeDee Brown', 'Octavia Spencer': 'Aunt Honey', 'Josh Hopkins': 'Ralph Bass', 'Brandon Mychal Smith': 'Little Richard (as Brandon Smith)', 'Tika Sumpter': 'Yvonne Fair', 'Aunjanue Ellis': 'Vicki Anderson', 'Tariq Trotter': 'Pee Wee Ellis', 'Aloe Blacc': 'Nafloyd Scott'}" tt0811080,"{'Emile Hirsch': 'Speed', 'Nicholas Elia': 'Young Speed Racer', 'Susan Sarandon': 'Mom', 'Melissa Holroyd': ""Speed's Teacher"", 'Ariel Winter': 'Young Trixie', 'Scott Porter': 'Rex Racer', 'Giancarlo Ganziano': 'Everyman Announcer (as Gian Ganziano)', 'Peter Fernandez': 'Local Announcer', 'Harvey Friedman': 'Harold Ledermann Announcer', 'Sadao Ueda': 'Japanese Announcer', 'Valery Tscheplanowa': 'Russian Announcer', 'Sami Loris': 'Italian Announcer', 'Olivier Marlo': 'French Announcer', 'Sean McDonagh': 'Celtic Announcer', 'Kick Gurry': 'Sparky'}" tt0243133,"{'Billy Bob Thornton': 'Ed Crane', 'Frances McDormand': 'Doris Crane', 'Michael Badalucco': 'Frank', 'James Gandolfini': 'Big Dave Brewster', 'Katherine Borowitz': 'Ann Nirdlinger Brewster', 'Jon Polito': 'Creighton Tolliver', 'Scarlett Johansson': 'Birdy Abundas', 'Richard Jenkins': 'Walter Abundas', 'Tony Shalhoub': 'Freddy Riedenschneider', 'Christopher Kriesa': 'Officer Persky', 'Brian Haley': 'Officer Krebs', 'Jack McGee': 'P.I. Burns', 'Gregg Binkley': 'New Man', 'Alan Fudge': 'Dr. Diedrickson', 'Lilyan Chauvin': 'Medium'}" tt0119080,"{'Jurnee Smollett-Bell': 'Eve Batiste (as Jurnee Smollett)', 'Meagan Good': 'Cisely Batiste', 'Lynn Whitfield': 'Roz Batiste', 'Samuel L. Jackson': 'Louis Batiste', 'Debbi Morgan': 'Mozelle Batiste Delacroix', 'Jake Smollett': 'Poe Batiste', 'Ethel Ayler': 'Gran Mere', 'Diahann Carroll': 'Elzora', 'Vondie Curtis-Hall': 'Julian Grayraven', 'Roger Guenveur Smith': 'Lenny Mereaux', 'Lisa Nicole Carson': 'Matty Mereaux', 'Branford Marsalis': 'Harry', 'Afonda Colbert': 'Henrietta', 'Lola Dalferes': 'Lynette', 'Marcus Lyle Brown': 'Hosea'}" tt0065112,"{'Frederick Stafford': 'Andre Devereaux', 'Dany Robin': 'Nicole Devereaux', 'John Vernon': 'Rico Parra', 'Karin Dor': 'Juanita de Cordoba', 'Michel Piccoli': 'Jacques Granville', 'Philippe Noiret': 'Henri Jarre', 'Claude Jade': 'Michele Picard', 'Michel Subor': 'Francois Picard', 'Per-Axel Arosenius': 'Boris Kusenov', 'Roscoe Lee Browne': 'Philippe Dubois', 'Edmon Ryan': 'McKittreck', 'Sonja Kolthoff': 'Mrs. Kusenov', 'Tina Hedström': 'Tamara Kusenov (as Tina Hedstrom)', 'John Van Dreelen': 'Claude Martin', 'Donald Randolph': 'Luis Uribe (as Don Randolph)'}" tt0100519,"{'Gary Oldman': 'Rosencrantz', 'Tim Roth': 'Guildenstern', 'Richard Dreyfuss': 'The Player', 'Livio Badurina': 'Tragedian', 'Tomislav Maretic': 'Tragedian', 'Mare Mlacnik': 'Tragedian', 'Serge Soric': 'Tragedian (as Srdjan Soric)', 'Mladen Vasary': 'Tragedian', 'Zeljko Vukmirica': 'Tragedian', 'Branko Zavrsan': 'Tragedian', 'Joanna Roth': 'Ophelia', 'Iain Glen': 'Hamlet', 'Donald Sumpter': 'Claudius', 'Joanna Miles': 'Gertrude', 'Ljubo Zecevic': 'Osric'}" tt0186508,"{'Octavio Calderon': 'Himself - Musician', 'Joachim Cooder': 'Himself', 'Ry Cooder': 'Himself', 'Angel Terry Domech': 'Himself', 'Ibrahim Ferrer': 'Himself', 'Ibrahim Ferrer Jr.': 'Himself', 'Manuel Galbán': 'Himself - Musician', 'Hugo Garzón': 'Himself', 'Carlos González': 'Himself', 'Juan de Marcos González': 'Himself', 'Rubén González': 'Himself', 'Pío Leyva': 'Himself', ""Manuel 'Puntillita' Licea"": 'Himself', ""Orlando 'Cachaíto' López"": 'Himself', ""Manuel 'Guajiro' Mirabal"": 'Himself'}" tt0205271,"{'Richard Gere': 'Dr. T', 'Helen Hunt': 'Bree', 'Farrah Fawcett': 'Kate', 'Laura Dern': 'Peggy', 'Shelley Long': 'Carolyn', 'Tara Reid': 'Connie', 'Kate Hudson': 'Dee Dee', 'Liv Tyler': 'Marilyn', 'Robert Hays': 'Harlan', 'Matt Malloy': 'Bill', 'Andy Richter': 'Eli', 'Lee Grant': 'Dr. Harper', 'Janine Turner': 'Dorothy Chambliss', 'Holly Pelham': 'Joanne (as Holly Pelham-Davis)', 'Jeanne Evans': 'First Exam Patient'}" tt1632708,"{'Justin Timberlake': 'Dylan', 'Mila Kunis': 'Jamie', 'Patricia Clarkson': 'Lorna', 'Jenna Elfman': 'Annie', 'Bryan Greenberg': 'Parker', 'Richard Jenkins': 'Mr. Harper', 'Woody Harrelson': 'Tommy', 'Nolan Gould': 'Sam', 'Andy Samberg': 'Quincy', 'Shaun White': 'Himself', 'Andrew Fleming': 'Driver', 'Catherine Reitman': 'Female Co-Worker', 'Courtney Henggeler': 'Flight Attendant', 'Masi Oka': 'Darin Arturo Morena', 'Tiya Sircar': 'Hostess'}" tt0101698,"{'Albert Brooks': 'Daniel Miller', 'Michael Durrell': 'Agency Head', 'James Eckhouse': 'Jeep Owner', 'Gary Beach': 'Car Salesman', 'Julie Cobb': 'Tram Guide', 'Peter Schuck': 'Stan', 'Time Winters': 'Porter', 'Rip Torn': 'Bob Diamond', 'Sharlie Stuart': 'Susan', 'Beth Black': 'Soap Opera Woman', 'Clayton Norcross': 'Soap Opera Man', 'James MacKrell': 'Game Show Moderator', 'Wil Albert': 'Game Show Contestant', 'Sage Allen': 'Game Show Contestant', 'Mary Pat Gleason': 'Waitress'}" tt0210358,"{'Glenn Close': 'Dr. Elaine Keener (segments ""This is Dr. Keener"" and ""Fantasies about Rebecca"")', 'Cameron Diaz': 'Carol Faber (segment ""Love Waits For Kathy"")', 'Calista Flockhart': 'Christine Taylor (segments ""Goodnight Lilly, Goodnight Christine"" and ""This is Dr. Keener"")', 'Kathy Baker': 'Rose (segments ""Someone For Rose"" and ""Fantasies about Rebecca"")', 'Amy Brenneman': 'Detective Kathy Faber (segment ""Love Waits For Kathy"")', 'Valeria Golino': 'Lilly (segment ""Goodnight Lilly, Goodnight Christine"")', 'Holly Hunter': 'Rebecca Waynon (segment ""Fantasies About Rebecca"")', 'Matt Craven': 'Walter (segments ""Fantasies About Rebecca"" and ""Love Waits For Kathy"")', 'Gregory Hines': 'Robert (segment ""Fantasies About Rebecca"")', 'Miguel Sandoval': 'Sam (segment ""Love Waits For Kathy""', 'Noah Fleiss': 'Jay (segment ""Someone For Rose"")', 'Danny Woodburn': 'Albert (segments ""Someone For Rose"" and ""Love Waits For Kathy"")', 'Penelope Allen': 'Nancy (segment ""Fantasies About Rebecca"") (as Penny Allen)', 'Roma Maffia': 'Debbie (segments ""Fantasies About Rebecca"" and ""Love Waits For Kathy"")', 'Mika Boorem': 'June (segments ""Love Waits For Kathy"" and ""Goodnight Lilly, Goodnight Christine"")'}" tt0091934,"{'Sean Penn': 'Glendon Wasey', 'Madonna': 'Gloria Tatlock', 'Paul Freeman': 'Walter Faraday', 'Richard Griffiths': 'Willie Tuttle', 'Philip Sayer': 'Justin Kronk', 'Clyde Kusatsu': 'Joe Go', 'Kay Tong Lim': 'Mei Gan', 'Sonserai Lee': 'China Doll', 'Victor Wong': 'Ho Chong', 'Professor Toru Tanaka': 'Yamagani San', 'Michael Aldridge': 'Mr. Burns', 'Sarah Lam': ""China Doll's Maid"", 'George She': ""Wu Ch'En She"", 'Won Gam Bor': 'Rickshaw King', 'To Chee Kan': ""China Doll's Boatman""}" tt1307068,"{'Steve Carell': 'Dodge', 'Keira Knightley': 'Penny', 'Adam Brody': 'Owen', 'Connie Britton': 'Diane', 'Roger Aaron Brown': 'Alfred', 'Rob Huebel': 'Jeremy', 'Trisha Gorman': 'Crying Woman', 'Nancy Carell': 'Linda', 'Mark Moses': 'Anchorman', 'Tonita Castro': 'Elsa', 'Leslie Murphy': 'Amy', 'Rob Corddry': 'Warren', 'Kasey Campbell': 'Danny', 'Melanie Lynskey': 'Karen', 'Vince Grant': 'Man #1 / Chip'}" tt0091777,"{'Steve Guttenberg': 'Sgt. Mahoney', 'Bubba Smith': 'Sgt. Hightower', 'David Graf': 'Sgt. Tackleberry', 'Michael Winslow': 'Sgt. Jones', 'Marion Ramsey': 'Sgt. Hooks', 'Leslie Easterbrook': 'Lt. Callahan', 'Art Metrano': 'Comdt. Mauser', 'Tim Kazurinsky': 'Cadet Sweetchuck', 'Bobcat Goldthwait': 'Cadet Zed', 'George Gaynes': 'Comdt. Lassard', 'Shawn Weatherly': 'Cadet Adams', 'Scott Thomson': 'Sgt. Copeland', 'Brant von Hoffman': 'Sgt. Blanks (as Brant Van Hoffman)', 'Bruce Mahler': 'Sgt. Fackler', 'Ed Nelson': 'Governor Neilson'}" tt0089822,"{'Steve Guttenberg': 'Carey Mahoney', 'Bubba Smith': 'Hightower', 'David Graf': 'Tackleberry', 'Michael Winslow': 'Larvell Jones', 'Bruce Mahler': 'Doug Fackler', 'Marion Ramsey': 'Laverne Hooks', 'Colleen Camp': 'Kirkland', 'Howard Hesseman': 'Pete Lassard', 'Art Metrano': 'Lt. Mauser', 'George Gaynes': 'Commandant Lassard', 'Bobcat Goldthwait': 'Zed (as Bob Goldthwait)', 'Julie Brown': 'Chloe', 'Peter Van Norden': 'Vinnie Schtulman', 'Tim Kazurinsky': 'Merchant', 'Ed Herlihy': 'Dooley'}" tt0102395,"{'Kristy Swanson': 'Jessie', 'William Ragsdale': 'Jason Williamson / Prince William', 'Meshach Taylor': 'Hollywood Montrose / Doorman', 'Terry Kiser': 'Count Spretzle / Sorcerer', 'Stuart Pankin': 'Mr. James', 'Cynthia Harris': 'Mom / Queen', 'Andrew Hill Newman': 'Andy Ackerman', 'Julie Foreman': 'Gail', 'John Edmondson': 'Rolf, Soldier #1', 'Phil Latella': 'Egon, Soldier #2', 'Mark Gray': 'Arnold, Soldier #3', 'Erick Weiss': ""Mr. James' Assistant"", 'Jackye Roberts': ""Mr. James' Assistant"", 'John Casino': 'Horned Soldier', 'Laurie Wing': 'Old Queen'}" tt0093493,"{'Andrew McCarthy': 'Jonathan Switcher', 'Kim Cattrall': 'Emmy', 'Estelle Getty': 'Claire Timkin', 'James Spader': 'Richards', 'G.W. Bailey': 'Felix', 'Carole Davis': 'Roxie', 'Steve Vinovich': 'B.J. Wert (as Stephen Vinovich)', 'Christopher Maher': 'Armand', 'Meshach Taylor': 'Hollywood', 'Phyllis Newman': ""Emmy's Mother"", 'Phil Rubenstein': 'Mannequin Factory Boss', 'Jeffrey Lampert': 'Factory Worker', 'Kenneth Lloyd': 'Superdad', 'Jake Jundef': 'Superkid (as Jake Jundeff)', 'Harvey Levine': 'Balloon Boss'}" tt0097758,"{'Fred Savage': 'Brian Stevenson', 'Howie Mandel': 'Maurice', 'Daniel Stern': 'Glen Stevenson', 'Margaret Whitton': 'Holly Stevenson', 'Rick Ducommun': 'Snik', 'Frank Whaley': 'Boy', 'Ben Savage': 'Eric', 'William Murray Weiss': 'Todd', 'Devin Ratray': 'Ronnie Coleman', 'Amber Barretto': 'Kiersten', 'J. Michael Hunter': 'Mr. Finn', 'Tom Hull': 'Principal', 'Magbee': 'Bus Driver', 'Lisa Cain': ""Holly's Friend"", 'Tony Bonsignore': 'Beach Bum'}" tt0084745,"{'Louis Jourdan': 'Arcane', 'Adrienne Barbeau': 'Alice Cable', 'Ray Wise': 'Dr. Alec Holland', 'David Hess': 'Ferret', 'Nicholas Worth': 'Bruno', 'Don Knight': 'Ritter', 'Al Ruban': 'Charlie', 'Dick Durock': 'Swamp Thing', 'Ben Bates': 'Arcane Monster', 'Nannette Brown': 'Dr. Linda Holland', 'Reggie Batts': 'Jude', 'Mimi Craven': ""Arcane's Secretary (as Mimi Meyer)"", 'Karen Price': ""Arcane's Messenger"", 'Bill Erickson': 'Young Agent', 'Dov Gottesfeld': 'Commando'}" tt0263488,"{'Gina Philips': 'Trish', 'Justin Long': 'Darry', 'Jonathan Breck': 'The Creeper', 'Patricia Belcher': 'Jezelle Gay Hartman', 'Brandon Smith': 'Sergeant Davis Tubbs', 'Eileen Brennan': 'The Cat Lady', 'Peggy Sheffield': 'Waitress Beverly', 'Jeffrey William Evans': 'Manager', 'Patrick Cherry': 'Binky', 'Jon Beshara': 'Trooper Gideon', 'Avis-Marie Barnes': 'Trooper Weston', 'Steve Raulerson': 'Cellblock Officer (as Steven Raulerson)', 'Tom Tarantini': 'Roach', 'William Haze': 'Officer with Hole in Chest (as William Hasenzahl)', 'Kim Kahana': 'Camper Driver'}" tt0097737,"{'Peter Weller': 'Steven Beck', 'Richard Crenna': ""Dr. Glen 'Doc' Thompson"", 'Amanda Pays': ""Elizabeth 'Willie' Williams"", 'Daniel Stern': ""Buzz 'Sixpack' Parrish"", 'Ernie Hudson': 'Justin Jones', 'Michael Carmine': ""Tony 'DeJesus' Rodero"", 'Lisa Eilbacher': 'Bridget Bowman', 'Hector Elizondo': 'G. P. Cobb', 'Meg Foster': 'Ms. Martin', 'Eugene Lipinski': 'Russian Ship Captain (as Eugene Lipinsky)', 'Larry Dolgin': 'Helicopter Pilot', 'Pascal Druant': 'Winch Operator', 'Steve Pelot': 'Winch Operator'}" tt0144814,"{'Emily Bergl': 'Rachel Lang', 'Jason London': 'Jesse Ryan', 'Dylan Bruno': 'Mark', 'J. Smith-Cameron': 'Barbara Lang', 'Amy Irving': 'Sue Snell', 'Zachery Ty Bryan': 'Eric', 'John Doe': 'Boyd', 'Gordon Clapp': ""Eric's Father"", 'Rachel Blanchard': 'Monica', 'Charlotte Ayanna': 'Tracy', 'Justin Urich': 'Brad Winters', 'Mena Suvari': 'Lisa', 'Eli Craig': 'Chuck (as Elijah Craig)', 'Eddie Kaye Thomas': 'Arnie', 'Clint Jordan': 'Sheriff Kelton'}" tt2334879,"{'Channing Tatum': 'Cale', 'Jamie Foxx': 'President Sawyer', 'Maggie Gyllenhaal': 'Finnerty', 'Jason Clarke': 'Stenz', 'Richard Jenkins': 'Raphelson', 'Joey King': 'Emily', 'James Woods': 'Walker', 'Nicolas Wright': 'Donnie the Guide', 'Jimmi Simpson': 'Tyler', 'Michael Murphy': 'Vice President Hammond', 'Rachelle Lefevre': 'Melanie', 'Lance Reddick': 'General Caulfield', 'Matt Craven': 'Agent Kellerman', 'Jake Weber': 'Agent Hope', 'Peter Jacobson': 'Wallace'}" tt1599348,"{'Denzel Washington': 'Tobin Frost', 'Ryan Reynolds': 'Matt Weston', 'Vera Farmiga': 'Catherine Linklater', 'Brendan Gleeson': 'David Barlow', 'Sam Shepard': 'Harlan Whitford', 'Rubén Blades': 'Carlos Villar', 'Nora Arnezeder': 'Ana Moreau', 'Robert Patrick': 'Daniel Kiefer', 'Liam Cunningham': 'Alec Wade', 'Joel Kinnaman': 'Keller', 'Fares Fares': 'Vargas', 'Jenna Dover': 'CIA Analyst', 'Stephen Rider': 'CIA Analyst', 'Daniel Fox': 'CIA Analyst', 'Tracie Thoms': 'CIA Analyst'}" tt2140379,"{'Ryan Reynolds': 'Young Damian', 'Natalie Martinez': 'Madeline', 'Matthew Goode': 'Albright', 'Ben Kingsley': 'Damian', 'Victor Garber': 'Martin', 'Derek Luke': 'Anton', 'Jaynee-Lynne Kinchen': 'Anna', 'Melora Hardin': 'Judy', 'Michelle Dockery': 'Claire', 'Sam Page': 'Carl', 'Brendan McCarthy': 'Anton 2', 'Thomas Francis Murphy': 'Dr. Jensen', 'Sandra Ellis Lafferty': 'Phyllis Jensen', 'Emily Tremaine': 'Mallory', 'Griff Furst': 'EMT #1'}" tt0434409,"{'Natalie Portman': 'Evey', 'Hugo Weaving': 'V', 'Stephen Rea': 'Finch', 'Stephen Fry': 'Deitrich', 'John Hurt': 'Adam Sutler', 'Tim Pigott-Smith': 'Creedy', 'Rupert Graves': 'Dominic', 'Roger Allam': 'Lewis Prothero', 'Ben Miles': 'Dascomb', 'Sinéad Cusack': 'Delia Surridge', 'Natasha Wightman': 'Valerie', 'John Standing': 'Lilliman', 'Eddie Marsan': 'Etheridge', 'Clive Ashborn': 'Guy Fawkes', 'Emma Field-Rayner': 'Guy Fawkes Lover (as Emma Field Rayner)'}" tt0114576,"{'Jean-Claude Van Damme': 'Darren McCord', 'Powers Boothe': 'Joshua Foss', 'Raymond J. Barry': 'Vice President', 'Whittni Wright': 'Emily McCord', 'Ross Malinger': 'Tyler McCord', 'Dorian Harewood': 'Hallmark', 'Kate McNeil': 'Kathi', 'Michael Gaston': 'Hickey', 'Audra Lindley': 'Mrs. Ferrara', 'Brian Delate': 'Blair', 'Steve Aronson': 'Dooley', 'Michael R. Aubele': 'Ace (as Michael Aubele)', 'Karen Elise Baldwin': 'TV Director (as Karen Baldwin)', 'Jennifer D. Bowser': 'Joan', 'Pat Brisson': 'Player #2'}" tt1648179,"{'Kevin James': 'Scott Voss', 'Salma Hayek': 'Bella Flores', 'Henry Winkler': 'Marty Streb', 'Greg Germann': 'Principal Betcher', 'Joe Rogan': 'Joe Rogan', 'Gary Valentine': 'Eric Voss', 'Jake Zyrus': 'Malia (as Charice)', 'Bas Rutten': 'Niko', 'Reggie Lee': 'Mr. De La Cruz', 'Mark DellaGrotte': 'Mark DellaGrotte', 'Mookie Barker': 'Assistant Principal Elkins', 'Jackie Flynn': 'Joe Duffy', 'Nikki Tyler-Flynn': 'Molie Streb', 'Melissa Peterman': 'Lauren Voss', 'Thomas Gallagher': 'Peter Voss'}" tt1204975,"{'Michael Douglas': 'Billy Gherson', 'Robert De Niro': 'Paddy Connors', 'Morgan Freeman': 'Archie Clayton', 'Kevin Kline': 'Sam Harris', 'Mary Steenburgen': 'Diana Boyle', 'Jerry Ferrara': 'Dean', 'Romany Malco': 'Lonnie', 'Roger Bart': 'Maurice Tischler', 'Joanna Gleason': 'Miriam Harris', 'Michael Ealy': 'Ezra Clayton', 'Bre Blair': 'Lisa', 'April Billingsley': 'Maid of Honor', 'Stephen Scott Scarpulla': 'Danny The Greaser', 'Andrea Moore': 'Bachelorette', 'Noah Harden': 'Young Billy'}" tt1655460,"{'Paul Rudd': 'George Gergenblatt', 'Jennifer Aniston': 'Linda Gergenblatt', 'Justin Theroux': 'Seth', 'Alan Alda': 'Carvin', 'Malin Akerman': 'Eva', 'Ken Marino': 'Rick', 'Joe Lo Truglio': 'Wayne', 'Kathryn Hahn': 'Karen', 'Kerri Kenney': 'Kathy (as Kerri Kenney-Silver)', 'Lauren Ambrose': 'Almond', 'Michaela Watkins': 'Marissa', 'Jordan Peele': 'Rodney', 'Linda Lavin': 'Shari', 'Jessica St. Clair': 'Deena Schuster', 'Todd Barry': 'Sherm'}" tt3164256,"{'Bill Murray': 'Richie Lanz', 'Bruce Willis': 'Bombay Brian', 'Kate Hudson': 'Merci', 'Zooey Deschanel': 'Ronnie', 'Leem Lubany': 'Salima', 'Arian Moayed': 'Riza', 'Scott Caan': 'Jake', 'Danny McBride': 'Nick', 'Fahim Fazli': 'Tariq', 'Beejan Land': 'Daoud (as Beehan Land)', 'Sameer Ali Khan': 'Azam Ghol', 'Jonas Khan': 'Nizar', 'Husam Chadat': 'Nasim', 'Taylor Kinney': 'Private Barnes', 'Megan Raich': 'Brittany'}" tt0114852,"{'Christopher Reeve': 'Dr. Alan Chaffee', 'Kirstie Alley': 'Dr. Susan Verner', 'Linda Kozlowski': 'Jill McGowan', 'Michael Paré': 'Frank McGowan', 'Meredith Salenger': 'Melanie Roberts', 'Mark Hamill': 'Reverend George', 'Pippa Pearthree': ""Sarah, George's Wife"", 'Peter Jason': 'Ben Blum', 'Constance Forslund': 'Callie Blum', 'Karen Kahn': 'Barbara Chaffee', 'Thomas Dekker': 'David McGowan', 'Lindsey Haun': 'Mara Chaffee', 'Cody Dorkin': 'Robert', 'Trishalee Hardy': 'Julie', 'Jessye Quarry': 'Dorothy'}" tt1284575,"{'Cameron Diaz': 'Elizabeth Halsey', 'Lucy Punch': 'Amy Squirrel', 'Jason Segel': 'Russell Gettis', 'Justin Timberlake': 'Scott Delacorte', 'Phyllis Smith': 'Lynn Davies', 'John Michael Higgins': 'Principal Wally Snur', 'Dave Allen': ""Sandy Pinkus (as Dave 'Gruber' Allen)"", 'Jillian Armenante': 'Ms. Pavicic', 'Matthew J. Evans': 'Garrett Tiara', 'Kaitlyn Dever': 'Sasha Abernathy', 'Kathryn Newton': 'Chase Rubin-Rossi', 'Igal Ben Yair': 'Arkady', 'Aja Bair': ""Devon (Chase's Friend) (as Aja Cheyenne Bair)"", 'Andra Nechita': 'Gaby', 'Noah Munck': 'Tristan'}" tt1092026,"{'Mia Stallard': 'Young Tara', 'Simon Pegg': 'Graeme Willy', 'Nick Frost': 'Clive Gollings', 'Jeremy Owen': 'Sword Vendor', 'Jeffrey Tambor': 'Adam Shadowchild', 'David House': 'Security Guard', 'Jennifer Granger': 'Adam Shadowchild Fan', 'Nelson Ascencio': 'Jorge', 'Bobby Lee': 'Valet', 'Jane Lynch': 'Pat Stevens', 'David Koechner': 'Gus', 'Jesse Plemons': 'Jake', 'Seth Rogen': 'Paul (voice)', 'Jason Bateman': 'Agent Zoil', 'Sigourney Weaver': 'The Big Guy'}" tt0102303,"{'Mel Brooks': 'Goddard Bolt', 'Lesley Ann Warren': 'Molly', 'Jeffrey Tambor': 'Vance Crasswell', 'Stuart Pankin': 'Pritchard', 'Howard Morris': 'Sailor', 'Rudy De Luca': 'J. Paul Getty', 'Teddy Wilson': 'Fumes', 'Michael Ensign': 'Knowles', 'Matthew Faison': 'Stevens', 'Billy Barty': 'Willy', 'Brian Thompson': 'Mean Victor', ""Raymond O'Connor"": 'Yo', 'Carmine Caridi': 'Flophouse Owner', 'Sammy Shore': 'Reverend at Wedding', 'Frank Roman': 'Spanish Interpreter'}" tt0076489,"{'John Denver': 'Jerry Landers', 'George Burns': 'God', 'Teri Garr': 'Bobbie Landers', 'Donald Pleasence': 'Doctor Harmon', 'Ralph Bellamy': 'Sam Raven', 'William Daniels': 'George Summers', 'Barnard Hughes': 'Judge Baker', 'Paul Sorvino': 'Reverend Willie Williams', 'Barry Sullivan': 'Bishop Reardon', 'Dinah Shore': 'Dinah Shore', 'Jeff Corey': 'Rabbi Silverstone', 'George Furth': 'Briggs', 'David Ogden Stiers': 'Mr. McCarthy', 'Titos Vandis': 'Greek Bishop Markos', 'Moosie Drier': 'Adam Landers'}" tt0069495,"{'Barbra Streisand': 'Judy Maxwell', ""Ryan O'Neal"": 'Howard Bannister', 'Madeline Kahn': 'Eunice Burns', 'Kenneth Mars': 'Hugh Simon', 'Austin Pendleton': 'Frederick Larrabee', 'Michael Murphy': 'Mr. Smith', 'Philip Roth': 'Mr. Jones (as Phil Roth)', 'Sorrell Booke': 'Harry', 'Stefan Gierasch': 'Fritz', 'Mabel Albertson': 'Mrs. Van Hoskins', 'Liam Dunn': 'Judge Maxwell', 'John Hillerman': 'Hotel Manager', 'George Morfogen': 'Headwaiter', 'Graham Jarvis': 'Bailiff', 'Randy Quaid': 'Professor Hosquith'}" tt2719848,"{'Jason Clarke': 'Rob Hall', 'Ang Phula Sherpa': 'Ang Dorjee', 'Thomas M. Wright': 'Michael Groom', 'Martin Henderson': ""Andy 'Harold' Harris"", 'Tom Goodman-Hill': 'Neal Beidleman', 'Charlotte Bøving': 'Lene Gammelgaard', 'Pemba Sherpa': 'Lopsang', 'Amy Shindler': 'Charlotte Fox', 'Simon Harrison': 'Tim Madsen', 'Chris Reilly': 'Klev Schoening', 'John Hawkes': 'Doug Hansen', 'Naoko Mori': 'Yasuko Namba', 'Michael Kelly': 'Jon Krakauer', 'Tim Dantay': 'John Taske', 'Todd Boyce': 'Frank Fischbeck'}" tt1121096,"{'Jeff Bridges': 'Master Gregory', 'Ben Barnes': 'Tom Ward', 'Julianne Moore': 'Mother Malkin', 'Alicia Vikander': 'Alice', 'Antje Traue': 'Bony Lizzie', 'Olivia Williams': 'Mam Ward', 'John DeSantis': 'Tusk', 'Kit Harington': 'Mr. Bradley', 'Djimon Hounsou': 'Radu', 'Gerard Plunkett': 'Inquisitor', 'Jason Scott Lee': 'Urag', 'Kandyse McClure': 'Sarikin', 'Luc Roderique': 'Strix', 'Zahf Paroo': 'Virahadra', 'Timothy Webber': 'Malcom Ward'}" tt0386140,"{'Alberto Reyes': 'Brother Ignacio', 'Julio Oscar Mechoso': 'Frey Felipe', 'Gustavo Sánchez Parra': 'Guillermo Cortez', 'Adrian Alonso': 'Joaquin de la Vega', 'Nick Chinlund': 'Jacob McGivens', 'Giovanna Zacarías': 'Blanca Cortez (as Giovanna Zacarias)', 'Carlos Cobos': 'Tabulador', 'Antonio Banderas': 'Don Alejandro de la Vega / Zorro', 'Michael Emerson': 'Harrigan', 'Shuler Hensley': 'Pike', 'Pedro Armendáriz Jr.': 'Governor Riley (as Pedro Armendariz)', 'Mary Crosby': ""Governor's Wife"", 'Catherine Zeta-Jones': 'Elena de la Vega', 'Mauricio Bonet': 'Don Verdugo', 'Fernando Becerril': 'Don Diaz'}" tt0091530,"{'Robert De Niro': 'Mendoza', 'Jeremy Irons': 'Gabriel', 'Ray McAnally': 'Altamirano', 'Aidan Quinn': 'Felipe', 'Cherie Lunghi': 'Carlotta', 'Ronald Pickup': 'Hontar', 'Chuck Low': 'Cabeza', 'Liam Neeson': 'Fielding', 'Bercelio Moya': 'Indian Boy', 'Sigifredo Ismare': 'Witch Doctor', 'Asuncion Ontiveros': 'Indian Chief', 'Alejandrino Moya': ""Chief's Lieutenant"", 'Daniel Berrigan': 'Sebastian', 'Rolf Gray': 'Young Jesuit', 'Álvaro Guerrero': 'Jesuit'}" tt3062096,"{'Tom Hanks': 'Robert Langdon', 'Felicity Jones': 'Sienna Brooks', 'Omar Sy': 'Christoph Bouchard', 'Irrfan Khan': 'Harry Sims', 'Sidse Babett Knudsen': 'Elizabeth Sinskey', 'Ben Foster': 'Bertrand Zobrist', 'Ana Ularu': 'Vayentha', 'Ida Darvish': 'Marta Alvarez', 'Paolo Antonio Simioni': 'Dr. Marconi', 'Alessandro Grimaldi': 'Florence Hospital Taxi Driver', 'Fausto Maria Sciarappa': 'Parker', 'Robin Mugnaini': 'Apartment Carabinieri Captain', 'Paul Ritter': 'CRC Tech Arbogast', 'Vincenzo Tanassi': 'Boboli Gardens Policeman', 'Alessandro Fabrizi': 'Gallery Guard'}" tt2752772,"{'James Ransone': 'Ex-Deputy So & So', 'Shannyn Sossamon': 'Courtney Collins', 'Robert Daniel Sloan': 'Dylan Collins (as Robert Sloan)', 'Dartanian Sloan': 'Zach Collins', 'Lea Coco': 'Clint Collins', 'Tate Ellington': 'Dr. Stomberg', 'John Beasley': 'Father Rodriguez', 'Lucas Jade Zumann': 'Milo', 'Jaden Klein': 'Ted', 'Laila Haley': 'Emma', 'Caden Marshall Fritz': 'Peter', 'Olivia Rainey': 'Catherine', 'Nicholas King': 'Bughuul (as Nick King)', 'Michael B. Woods': 'The Creeper (as Michael Woods)', 'Tory O. Davis': 'Security Guard'}" tt3713166,"{'Heather Sossaman': 'Laura', 'Matthew Bohrer': 'Matt', 'Courtney Halverson': 'Val', 'Shelley Hennig': 'Blaire', 'Moses Storm': 'Mitch', 'Will Peltz': 'Adam', 'Renee Olstead': 'Jess', 'Jacob Wysocki': 'Ken', 'Mickey River': 'Dank Jimmy', 'Cal Barnes': 'Rando Pauls', 'Christa Hartsock': 'Chatroulette Girl'}" tt2870612,"{'Perdita Weeks': 'Scarlett', 'Ben Feldman': 'George', 'Edwin Hodge': 'Benji', 'François Civil': 'Papillon', 'Marion Lambert': 'Souxie', 'Ali Marhyar': 'Zed', 'Cosme Castro': 'La Taupe', 'Hamid Djavadan': 'Reza (as Hamidreza Javdan)', 'Théo Cholbi': 'Gloomy Teenager', 'Emy Lévy': 'Tour Guide (as Emy Levy)', 'Roger Van Hool': ""Scarlett's Father"", 'Olivia Csiky Trnka': 'Strange Young Woman', 'Hellyette Bess': 'Strange Old Woman', 'Aryan Rahimian': 'Iranian Armed Guard', 'Samuel Aouizerate': 'Danny'}" tt2239832,"{'Adam Brody': 'Isaac', 'Michael Ealy': 'Dominic', 'Jerry Ferrara': 'Jeremy', 'Meagan Good': 'Mya', 'Regina Hall': 'Candace', 'Dennis Haysbert': 'Uncle Eddie', 'Taraji P. Henson': 'Lauren', 'Terrence Jenkins': 'Michael (as Terrence J)', 'Jenifer Lewis': 'Loretta', 'Romany Malco': 'Zeke', 'Wendi McLendon-Covey': 'Tish', 'Gary Owen': 'Bennett', 'Gabrielle Union': 'Kristen', 'David Walton': 'Terrell', 'Kevin Hart': 'Cedric'}" tt1621045,"{'Michael Ealy': 'Dominic', 'Jerry Ferrara': 'Jeremy', 'Meagan Good': 'Mya', 'Regina Hall': 'Candace', 'Kevin Hart': 'Cedric', 'Taraji P. Henson': 'Lauren', 'Terrence Jenkins': 'Michael (as Terrence J)', 'Jenifer Lewis': 'Loretta', 'Romany Malco': 'Zeke', 'Gary Owen': 'Bennett', 'Gabrielle Union': 'Kristen', 'La La Anthony': 'Sonia', 'Chris Brown': 'Alex', 'Wendy Williams': 'Gail', 'Sherri Shepherd': 'Vicki'}" tt1195478,"{'Jason Segel': 'Tom Solomon', 'Emily Blunt': 'Violet Barnes', 'Chris Pratt': 'Alex Eilhauer', 'Alison Brie': 'Suzie Barnes-Eilhauer', 'Lauren Weedman': 'Chef Sally', 'Mimi Kennedy': 'Carol Solomon', 'David Paymer': 'Pete Solomon', 'Jacki Weaver': 'Sylvia Dickerson-Barnes', 'Jim Piddock': 'George Barnes', 'Adam Campbell': 'Gideon', 'Eric Scott Cooper': 'B&B Manager', 'Dakota Johnson': 'Audrey', 'Jane Carr': 'Grandma Katherine', 'Clement von Franckenstein': 'Grandpa Baba', 'Michael Ensign': 'Grandpa Harold'}" tt1135503,"{'Meryl Streep': 'Julia Child', 'Amy Adams': 'Julie Powell', 'Stanley Tucci': 'Paul Child', 'Chris Messina': 'Eric Powell', 'Linda Emond': 'Simone Beck', 'Helen Carey': 'Louisette Bertholle', 'Mary Lynn Rajskub': 'Sarah', 'Jane Lynch': 'Dorothy McWilliams', 'Joan Juliet Buck': 'Madame Brassart', 'Crystal McCreary': 'Ernestine (as Crystal Noelle)', 'George Bartenieff': 'Chef Max Bugnard', 'Vanessa Ferlito': 'Cassie', 'Casey Wilson': 'Regina', 'Jillian Bach': 'Annabelle', 'Andrew Garman': ""John O'Brien""}" tt0457939,"{'Cameron Diaz': 'Amanda', 'Kate Winslet': 'Iris', 'Jude Law': 'Graham', 'Jack Black': 'Miles', 'Eli Wallach': 'Arthur', 'Edward Burns': 'Ethan', 'Rufus Sewell': 'Jasper', 'Miffy Englefield': 'Sophie', 'Emma Pritchard': 'Olivia', 'Sarah Parish': 'Hannah', 'Shannyn Sossamon': 'Maggie', 'Bill Macy': 'Ernie', 'Shelley Berman': 'Norman', 'Kathryn Hahn': 'Bristol', 'John Krasinski': 'Ben'}" tt2404435,"{'Denzel Washington': 'Chisolm', 'Chris Pratt': 'Josh Faraday', 'Ethan Hawke': 'Goodnight Robicheaux', ""Vincent D'Onofrio"": 'Jack Horne', 'Byung-Hun Lee': 'Billy Rocks', 'Manuel Garcia-Rulfo': 'Vasquez', 'Martin Sensmeier': 'Red Harvest', 'Haley Bennett': 'Emma Cullen', 'Peter Sarsgaard': 'Bartholomew Bogue', 'Luke Grimes': 'Teddy Q', 'Matt Bomer': 'Matthew Cullen', 'Jonathan Joss': 'Denali', 'Cam Gigandet': 'McCann', 'Emil Beheshti': 'Maxwell', 'Mark Ashworth': 'Preacher'}" tt0090927,"{'Chuck Norris': 'Scott', 'Lee Marvin': 'Nick', 'Martin Balsam': 'Ben Kaplan', 'Joey Bishop': 'Harry Goldman', 'Robert Forster': 'Abdul', 'Lainie Kazan': 'Sylvia Goldman', 'George Kennedy': ""Father O'Malley"", 'Hanna Schygulla': 'Ingrid', 'Susan Strasberg': 'Debra Levine', 'Bo Svenson': 'Captain Campbell', 'Robert Vaughn': 'General Woodbridge', 'Shelley Winters': 'Edie Kaplan', 'William Wallace': 'Pete Peterson', 'Charles Grant': 'Tom Hale (as Charles Floye)', 'Steve James': 'Bobby'}" tt0172156,"{'Martin Lawrence': 'Detective Marcus Burnett', 'Will Smith': 'Detective Mike Lowrey', 'Jordi Mollà': ""Hector Juan Carlos 'Johnny' Tapia"", 'Gabrielle Union': 'Syd', 'Peter Stormare': 'Alexei', 'Theresa Randle': 'Theresa', 'Joe Pantoliano': 'Captain Howard', 'Michael Shannon': 'Floyd Poteet', 'Jon Seda': 'Roberto', 'Yul Vazquez': 'Detective Mateo Reyes (as Yul Vázquez)', 'Jason Manuel Olazabal': 'Detective Marco Vargas (as Jason Manuel Olazábal)', 'Otto Sanchez': 'Carlos', 'Henry Rollins': 'TNT Leader', 'Antoni Corone': 'DEA Tony Dodd', 'Gary Nickens': 'TNT Fanuti'}" tt0099399,"{'Chuck Norris': 'Col. Scott McCoy', 'Billy Drago': 'Ramon Cota', 'John P. Ryan': 'Gen. Taylor', 'Richard Jaeckel': 'John Page - DEA Agent', 'Begonya Plaza': 'Quiquina Esquilinta (as Begonia Plaza)', 'Paul Perri': 'Maj. Bobby Chavez', 'Héctor Mercado': 'Miguel (as Hector Mercado)', 'Mark Margolis': 'Gen. Olmedo', 'Mateo Gómez': 'Ernesto Flores (as Mateo Gomez)', 'Ruth de Sosa': 'Rita Chavez', 'Gerald Castillo': 'George Fogarty - DEA Director', 'Geoff Brewer': 'Maj. Anderson', 'Rick Prieto': 'Carlos', 'Sharlene Ross': 'DEA Agent in Van', 'Michael Heit': 'DEA Agent in Van'}" tt0093164,"{'Burt Reynolds': 'Mex (as Nick Escalante)', 'Karen Young': 'Holly', 'Peter MacNicol': 'Cyrus Kinnick', 'Howard Hesseman': 'Pinchus Zion', 'Neill Barry': 'Danny DeMarco', 'Diana Scarwid': 'Cassie', 'Joseph Mascolo': 'Baby (as Joe Mascolo)', 'Alfie Wise': 'Felix', 'Deborah Rush': 'D.D.', 'Wendell Burton': 'Osgood', 'Joanne Jackson': 'Millicent', 'Joe Klecko': 'Kinlaw', 'Peter Koch': 'Tiel (as Pete Koch)', 'Joseph Bernard': 'Pit Boss', 'Barry Polkowitz': 'Hot Shot Dealer'}" tt0162346,"{'Thora Birch': 'Enid', 'Scarlett Johansson': 'Rebecca', 'Steve Buscemi': 'Seymour', 'Brad Renfro': 'Josh', 'Illeana Douglas': 'Roberta Allsworth', 'Bob Balaban': ""Enid's Dad"", 'Stacey Travis': 'Dana', 'Charles C. Stevenson Jr.': 'Norman', 'Dave Sheridan': 'Doug', 'Tom McGowan': 'Joe', 'Debra Azar': 'Melora', 'Brian George': 'Sidewinder Boss', 'Pat Healy': 'John Ellis', 'Rini Bell': 'Graduation Speaker', 'T.J. Thyne': 'Todd'}" tt0130018,"{'Jennifer Love Hewitt': 'Julie James', 'Freddie Prinze Jr.': 'Ray Bronson', 'Brandy Norwood': 'Karla Wilson (as Brandy)', 'Mekhi Phifer': 'Tyrell', 'Muse Watson': 'Ben Willis', 'Bill Cobbs': 'Estes', 'Matthew Settle': 'Will Benson', 'Jeffrey Combs': 'Mr. Brooks', 'Jennifer Esposito': 'Nancy', 'John Hawkes': 'Dave', 'Ellerine Harding': 'Olga (as Ellerine!)', 'Benjamin Brown': 'Darick The Dockhand', 'Red West': 'Paulsen', 'Michael P. Byrne': 'Thurston', 'Michael Bryan French': 'Doctor'}" tt0424136,"{'Patrick Wilson': 'Jeff Kohlver', 'Ellen Page': 'Hayley Stark', 'Sandra Oh': 'Judy Tokuda', 'Odessa Rae': 'Janelle Rogers (as Jennifer Holmes)', 'G.J. Echternkamp': 'Nighthawks Clerk (as Gilbert John)'}" tt0118564,"{'Nick Nolte': 'Wade Whitehouse', 'Brigid Tierney': 'Jill Whitehouse', 'Holmes Osborne': 'Gordon LaRiviere', 'Jim True-Frost': 'Jack Hewitt (as Jim True)', 'Tim Post': 'Chick Ward', 'Christopher Heyerdahl': 'Frankie Lacoy (as Chris Heyerdahl)', 'Marian Seldes': 'Alma Pittman', 'Janine Theriault': 'Hettie Rogers', 'Mary Beth Hurt': 'Lillian Horner', 'Paul Stewart': 'Mr. Horner', 'Sissy Spacek': 'Margie Fogg', 'Wayne Robson': 'Nick Wickham', 'Sean McCann': 'Evan Twombley', 'Sheena Larkin': 'Lugene Brooks', 'Penny Mancuso': 'Woman Driver'}" tt1872181,"{'Andrew Garfield': 'Spider-Man / Peter Parker', 'Emma Stone': 'Gwen Stacy', 'Jamie Foxx': 'Electro / Max Dillon', 'Dane DeHaan': 'Green Goblin / Harry Osborn', 'Colm Feore': 'Donald Menken', 'Felicity Jones': 'Felicia', 'Paul Giamatti': 'Aleksei Sytsevich', 'Sally Field': 'Aunt May', 'Embeth Davidtz': 'Mary Parker', 'Campbell Scott': 'Richard Parker', 'Marton Csokas': 'Dr. Ashley Kafka', 'Louis Cancelmi': 'Man in Black Suit', 'Max Charles': 'Young Peter Parker', 'B.J. Novak': 'Alistair Smythe', 'Sarah Gadon': 'Kari'}" tt0990407,"{'Seth Rogen': 'Britt Reid / The Green Hornet', 'Jay Chou': 'Kato', 'Cameron Diaz': 'Lenore Case', 'Tom Wilkinson': 'James Reid', 'Christoph Waltz': 'Chudnofsky', 'David Harbour': 'Scanlon', 'Edward James Olmos': 'Axford', 'Jamie Harris': 'Popeye', 'Chad L. Coleman': 'Chili (as Chad Coleman)', 'Edward Furlong': 'Tupper', 'Jill Remez': 'Daily Sentinel Reporter', ""Joe O'Connor"": 'Daily Sentinel Reporter', 'Morgan Rusler': 'Daily Sentinel Reporter', 'Joshua Erenberg': 'Young Britt (as Joshua Chandler Erenberg)', 'Analeigh Tipton': 'Ana Lee'}" tt0164052,"{'Elisabeth Shue': 'Linda McKay', 'Kevin Bacon': 'Sebastian Caine', 'Josh Brolin': 'Matthew Kensington', 'Kim Dickens': 'Sarah Kennedy', 'Greg Grunberg': 'Carter Abbey', 'Joey Slotnick': 'Frank Chase', 'Mary Randle': 'Janice Walton', 'William Devane': 'Dr. Kramer', 'Rhona Mitra': ""Sebastian's Neighbor"", 'Pablo Espinosa': 'Warehouse Guard', 'Margot Rose': 'Mrs. Kramer', 'Jimmie F. Skaggs': 'Wino', 'Jeffrey Scaperrotta': 'Boy in Car (as Jeffrey George Scaperotta)', 'Sarah Bowles': 'Girl in Car', 'Kelli Scott': 'Mom'}" tt0101846,"{'Bryan Brown': 'Rollie Tyler', 'Brian Dennehy': 'Leo McCarthy', 'Rachel Ticotin': 'Kim Brandon', 'Joanna Gleason': 'Liz Kennedy', 'Philip Bosco': 'Ray Silak', ""Kevin J. O'Connor"": 'Matt Neely', 'Tom Mason': 'Mike Brandon', 'Dominic Zamprogna': 'Chris Brandon', 'Jossie DeGuzman': 'Velez', 'John Walsh': 'Rado', 'Peter Boretski': 'Becker', 'Lisa Fallon': 'Kylie', 'Lee Broker': 'DeMarco', 'Philip Akin': 'Det. McQuay', 'Tony De Santis': 'Det. Santoni (as Tony de Santis)'}" tt0089118,"{'Bryan Brown': ""Roland 'Rollie' Tyler"", 'Brian Dennehy': 'Lt. Leo McCarthy', 'Diane Venora': 'Ellen Keith', 'Cliff De Young': 'Martin Lipton', 'Mason Adams': 'Col. Mason', 'Jerry Orbach': 'Nicholas DeFranco', 'Joe Grifasi': 'Mickey Gaglione', 'Martha Gehman': 'Andy', 'Roscoe Orman': 'Capt. Jake Wallenger', 'Trey Wilson': 'Lt. Murdoch', 'Tom Noonan': 'Varrick', ""Paul D'Amato"": 'Gallagher', 'Jossie DeGuzman': 'Marisa Velez (as Jossie deGuzman)', 'Jean De Baer': 'Whitemore', ""M'el Dowd"": ""Joyce Lehman (Miss Lehman) (as M'eL Dowd)""}" tt3721936,"{'Sasha Lane': 'Star', 'Shia LaBeouf': 'Jake', 'Riley Keough': 'Krystal', 'McCaul Lombardi': 'Corey', 'Arielle Holmes': 'Pagan', 'Crystal Ice': 'Katness (as Crystal B. Ice)', 'Veronica Ezell': 'QT (as Verronikah Ezell)', 'Chad Cox': 'Billy (as Chad McKenzie Cox)', 'Garry Howell': 'Austin', 'Kenneth Kory Tucker': 'Sean', 'Raymond Coalson': 'JJ', 'Isaiah Stone': 'Kalium', 'Dakota Powers': 'Runt', 'Shawna Rae Moseley': 'Shaunte', 'Christopher David Wright': 'Riley'}" tt0401420,"{'Diane Lane': 'Liz Earl', 'Anton Yelchin': 'Finn Earl', 'Donald Sutherland': 'Ogden C. Osborne', 'Chris Evans': 'Bryce', 'Kristen Stewart': 'Maya', 'Paz de la Huerta': 'Jilly', 'Blu Mankuma': 'Gates', 'Elizabeth Perkins': 'Mrs. Langley', 'Christopher Shyer': 'Dr. Leffler', 'Garry Chalk': 'McCallum', 'Ryan McDonald': 'Ian', 'Dexter Bell': 'Marcus Gates', 'Kaleigh Dey': 'Paige', 'Aaron Brooks': 'Giacomo', 'Jeff Westmoreland': 'Whitney'}" tt0492044,"{'Virginia Madsen': 'Sara Campbell', 'Kyle Gallner': 'Matt Campbell', 'Elias Koteas': 'Reverend Popescu', 'Amanda Crew': 'Wendy', 'Martin Donovan': 'Peter Campbell', 'Sophi Knight': 'Mary', 'Ty Wood': 'Billy Campbell', 'Erik J. Berg': 'Jonah (as Erik Berg)', 'John Bluethner': 'Ramsey Aickman', 'D.W. Brown': 'Dr. Brooks', 'John B. Lowe': 'Mr. Sinclair', ""Adriana O'Neil"": 'Chemo Nurse', 'Will Woytowich': 'Cop', 'James Durham': ""Matt's Cell Mate"", 'Darren Ross': 'Paramedic #1'}" tt0098994,"{'Jason Patric': 'Collie', 'Rocky Giordani': 'Bert', 'Rachel Ward': 'Fay', 'Bruce Dern': 'Uncle Bud', 'Tom Wagner': 'Counterman', 'Mike Hagerty': 'Truck Driver (as Michael G. Hagerty)', 'James E. Bowen Jr.': 'Second Driver', 'George Dickerson': 'Doc Goldman', 'Vincent Mazella Jr.': 'Flashback Fighter (as Vince Mazzella Jr.)', 'Napoleon Walls': 'Boxing Referee', 'Corey Carrier': 'Jack', 'Jeanie Moore': 'Nanny', 'James Cotton': 'Charlie', 'Burke Byrnes': 'Cop'}" tt1457765,"{'Abigail Spencer': 'Lisa Wyrick', 'Morgana Shaw': ""Lisa's Mother"", 'Emily Alyn Lind': 'Heidi Wyrick', 'Chad Michael Murray': 'Andy Wyrick', 'Grant James': 'Mr. Gordy', 'Katee Sackhoff': 'Joyce', 'Mary Louise Coffee': 'Lady Ghost Guide', 'Lauren Pennington': 'Nell (as Lauren Whitney Pennington)', 'Sam Polin': 'Burlap Station Master - 1993', 'Lance E. Nichols': 'Pastor Wells', 'Jaren Mitchell': 'Levi', 'Cicely Tyson': 'Mama Kay', 'Brad James': 'Prentiss', 'Wayne Pére': 'Station Master - 1858', 'Hunter Burke': 'Arthur the Conductor'}" tt3470600,"{'Matthew McConaughey': 'Buster Moon (voice)', 'Reese Witherspoon': 'Rosita (voice)', 'Seth MacFarlane': 'Mike (voice) (as Seth Macfarlane)', 'Scarlett Johansson': 'Ash (voice)', 'John C. Reilly': 'Eddie (voice)', 'Taron Egerton': 'Johnny (voice)', 'Tori Kelly': 'Meena (voice)', 'Jennifer Saunders': 'Nana (voice)', 'Jennifer Hudson': 'Young Nana (voice)', 'Garth Jennings': 'Miss Crawly / Additional Voices (voice)', 'Peter Serafinowicz': 'Big Daddy (voice)', 'Nick Kroll': 'Gunter (voice)', 'Beck Bennett': 'Lance (voice)', 'Jay Pharoah': ""Meena's Grandfather (voice)"", 'Nick Offerman': 'Norman (voice)'}" tt4302938,"{'Art Parkinson': 'Kubo (voice)', 'Charlize Theron': 'Mother (voice)', 'Brenda Vaccaro': 'Kameyo (voice)', 'Cary-Hiroyuki Tagawa': 'Hashi (voice)', 'Meyrick Murphy': 'Mari (voice)', 'George Takei': 'Hosato (voice)', 'Rooney Mara': 'The Sisters (voice)', 'Ralph Fiennes': 'Moon King (voice)', 'Matthew McConaughey': 'Beetle (voice)', 'Minae Noji': 'Minae (voice)', 'Alpha Takahashi': 'Aiko (voice)', 'Laura Miro': 'Miho (voice)', 'Ken Takemoto': 'Ken (voice)', 'Aaron Aoki': 'Villager (voice)', 'Luke Donaldson': 'Villager (voice)'}" tt0479500,"{'Emma Roberts': 'Nancy Drew', 'Craig Gellis': 'Thug', 'Rich Cooper': 'Charlie', 'Max Thieriot': 'Ned Nickerson', 'Amy Bruckner': 'Bess', 'Kay Panabaker': 'Georgie', 'Cliff Bemis': 'Chief McGinnis', 'Tate Donovan': 'Carson Drew', 'David Doty': 'Father Murray', 'Laura Harring': 'Dehlia Draycott (as Laura Elena Harring)', 'Pat Carroll': 'Landlady', 'Monica Parker': 'Hannah', 'Caroline Aaron': 'Barbara Barbara', 'Marshall Bell': 'John Leshing', 'Daniella Monet': 'Inga Veinshtein'}" tt1219342,"{'Emily Barclay': 'Gylfie (voice)', 'Abbie Cornish': 'Otulissa (voice)', 'Essie Davis': 'Marella (voice)', 'Adrienne DeFaria': 'Eglantine (voice)', 'Joel Edgerton': 'Metal Beak (voice)', 'Deborra-Lee Furness': 'Barran (voice)', 'Sacha Horler': 'Strix Struma (voice)', 'Bill Hunter': 'Bubo (voice)', 'Ryan Kwanten': 'Kludd (voice)', 'Anthony LaPaglia': 'Twilight (voice)', 'Miriam Margolyes': 'Mrs. Plithiver (voice)', 'Helen Mirren': 'Nyra (voice)', 'Sam Neill': 'Allomere (voice)', 'Barry Otto': 'Echidna (voice)', 'Richard Roxburgh': 'Boron (voice)'}" tt0183790,"{'Heath Ledger': 'William Thatcher', 'Rufus Sewell': 'Count Adhemar', 'Shannyn Sossamon': 'Jocelyn', 'Paul Bettany': 'Geoffrey Chaucer', 'Laura Fraser': 'Kate', 'Mark Addy': 'Roland', 'Alan Tudyk': 'Wat', 'Bérénice Bejo': 'Christiana (as Berenice Bejo)', 'Scott Handy': 'Germaine', 'James Purefoy': 'Colville', 'Leagh Conwell': 'Young William Thatcher', 'Christopher Cazenove': 'John Thatcher', ""Steven O'Donnell"": ""Simon the Summoner (as Steve O'Donnell)"", 'Jonathan Slinger': 'Peter the Pardoner', 'Nick Brimble': 'Sir Ector'}" tt0047795,"{'Bud Abbott': 'Pete Patterson', 'Lou Costello': 'Freddie Franklin', 'Marie Windsor': 'Madame Rontru', 'Michael Ansara': 'Charlie', 'Dan Seymour': 'Josef', 'Richard Deacon': 'Semu', 'Kurt Katch': 'Dr. Zoomer', 'Richard Karlan': 'Hetsut', 'Mel Welles': 'Iben', 'George Khoury': 'Habid', 'Eddie Parker': 'Klaris (as Edwin Parker)', 'Mazzone-Abbott Dancers': 'Dance Troupe (as The Mazzone-Abbott Dancers)', 'Chandra Kaly and His Dancers': 'Dance Troupe', 'Peggy King': 'Vocalist', 'Paul Marion': 'Native (scenes deleted)'}" tt4263482,"{'Anya Taylor-Joy': 'Thomasin', 'Ralph Ineson': 'William', 'Kate Dickie': 'Katherine', 'Harvey Scrimshaw': 'Caleb', 'Ellie Grainger': 'Mercy', 'Lucas Dawson': 'Jonas', 'Julian Richings': 'Governor', 'Bathsheba Garnett': 'The Witch', 'Sarah Stephens': 'The Witch, Young', 'Daniel Malik': 'Black Phillip (voice) (as Wahab Chaudhry)', 'Axtun Henry Dube': 'Samuel', 'Athan Conrad Dube': 'Samuel', 'Viv Moore': 'Lead Coven Witch (as Vivien Moore)', 'Karen Kaeja': 'Coven Witch', 'Brandy Leary': 'Coven Witch'}" tt0288477,"{'Gabriel Byrne': 'Murphy', 'Julianna Margulies': 'Epps', 'Ron Eldard': 'Dodge', 'Desmond Harrington': 'Ferriman', 'Isaiah Washington': 'Greer', 'Alex Dimitriades': 'Santos', 'Karl Urban': 'Munder', 'Emily Browning': 'Katie Harwood', 'Francesca Rettondini': 'Francesca', 'Boris Brkic': 'Chief Steward', 'Bob Ruggiero': 'Captain (as Robert Ruggiero)', 'Iain Gardiner': 'Purser', 'Adam Bieshaar': 'First Officer', 'Cameron Watt': 'Second Officer', 'Jamie Giddens': 'Friendly Officer'}" tt0093091,"{'Damon Martin': 'Larry', 'Royal Dano': 'Uncle Ned', 'Phil Fondacaro': 'Sir Nigel Penneyweight', 'J. Downing': 'P. Hardin', 'Kerry Remsen': 'Nicole', 'Dale Wyatt': 'Dixie', 'Jon Pennell': 'Bobby (as Jon Maynard Pennell)', 'Sasha Jenson': 'Teddy', 'Starr Andreeff': 'Alice', 'William Butler': 'Merle', 'Donnie Jeffcoat': 'Eddie', 'Christopher Burton': 'Leo', 'Mickey Knox': 'Ray', 'Romano Puppo': 'Zampano', 'Ames Morton': 'Patty'}" tt0472458,"{'Pauline Lau': 'Masseuse', 'Tony Ka Fai Leung': 'Mr. Li (as Tony Ka-Fai Leung)', 'Bai Ling': 'Mei, The Cook', 'Meme Tian': 'Connie (as Meme)', 'So-Foon Wong': ""Kate's mother"", 'Miki Yeung': 'Kate', 'Miriam Chin Wah Yeung': 'Mrs. Li'}" tt1700841,"{'Alistair Abell': 'Mariachi Salsa / Gefilte Fish (voice)', 'Iris Apatow': 'Berry Good Candies / Grape #3 / Coconut Milk (voice)', 'Sugar Lyn Beard': 'Baby Carrot / Cookies (voice)', 'Michael Cera': 'Barry (voice)', 'Ian James Corlett': 'Apple / Tickilish Licorice / Relish / Bag of Dog Food (voice)', 'Michael Daingerfield': 'Chunk Munchers Cereal / Light Bulb / Indian Chutney (voice)', 'Brian Dobson': 'Italian Tomato / Lettuce (voice)', 'Michael Dobson': 'Queso (voice)', 'James Franco': 'Druggie (voice)', 'Bill Hader': 'Firewater / Tequila / El Guaco (voice)', 'Ian Hanlin': 'Beet (voice)', 'Salma Hayek': 'Teresa (voice)', 'Maryke Hendrikse': 'Popped Cherry Mixer / Plum #1 / Loretta Bun / Frozen Fruitz (voice)', 'Jonah Hill': 'Carl (voice)', 'Anders Holm': 'Troy (voice)'}" tt0119109,"{'Robin Williams': 'Dale Putley', 'Billy Crystal': 'Jack Lawrence', 'Julia Louis-Dreyfus': 'Carrie Lawrence', 'Nastassja Kinski': 'Collette Andrews', 'Charlie Hofheimer': 'Scott Andrews', 'Bruce Greenwood': 'Bob Andrews', 'Dennis Burkley': 'Calvin the Trucker', 'Haylie Johnson': 'Nikki Trainor', 'Charles Rocket': 'Russ Trainor', ""Patti D'Arbanville"": 'Shirley Trainor', 'Jared Harris': 'Lee', 'Louis Lombardi': 'Matt', 'Mark McGrath': 'Sugar Ray Band', 'Craig Bullock': 'Sugar Ray Band', 'Charles Stan Frazier': 'Sugar Ray Band'}" tt0101745,"{'Michael J. Fox': 'Dr. Ben Stone', 'Julie Warner': 'Lou', 'Barnard Hughes': 'Dr. Aurelius Edsel Hogue', 'Woody Harrelson': 'Hank Gordon', 'David Ogden Stiers': 'Mayor Nick Nicholson', 'Frances Sternhagen': 'Lillian - Welcoming Committee', 'George Hamilton': 'Doctor Halberstrom', 'Bridget Fonda': 'Nancy Lee Nicholson', 'Mel Winkler': 'Melvin - Mechanic', 'Helen Martin': 'Maddie - Welcoming Committee', 'Roberts Blossom': 'Judge Evans', 'Tom Lacy': 'Deputy Cotton', 'Macon McCalman': 'Aubrey Draper', 'Raye Birk': 'Simon Tidwell - First Patient', 'Eyde Byrde': 'Nurse Packer'}" tt0099077,"{'Robert De Niro': 'Leonard Lowe', 'Robin Williams': 'Dr. Malcolm Sayer', 'Julie Kavner': 'Eleanor Costello', 'Ruth Nelson': 'Mrs. Lowe', 'John Heard': 'Dr. Kaufman', 'Penelope Ann Miller': 'Paula', 'Alice Drummond': 'Lucy', 'Judith Malina': 'Rose', 'Barton Heyman': 'Bert', 'George Martin': 'Frank', 'Anne Meara': 'Miriam', 'Richard Libertini': 'Sidney', 'Laura Esterman': 'Lolly', 'Dexter Gordon': 'Rolando', 'Jayne Haynes': 'Frances'}" tt0097236,"{'Jason Robards': 'Coleman Ettinger', 'Corey Feldman': 'Bobby Keller / Coleman Ettinger', 'Piper Laurie': 'Gena Ettinger', 'Meredith Salenger': 'Lainie Diamond', 'Harry Dean Stanton': 'Ike Baker', 'Corey Haim': 'Dinger', 'Susan Blakely': 'Cherry Diamond', 'William McNamara': 'Joel', 'Matt Adler': 'Dumas', 'Victoria Jackson': 'Kit Keller', 'Alex Rocco': 'Gus Keller', 'Ria Pavia': 'Maureen', 'Lala Sloatman': 'Shelley (as Lala)', 'Laura Lee Norton': 'Marge', 'John Ward': 'Derek'}" tt4382872,"{'Bruce Willis': 'Leonard', 'Kellan Lutz': 'Harry Turner', 'Gina Carano': 'Victoria', 'D.B. Sweeney': 'Robertson', 'Joshua Mikel': 'Drake', 'Steve Coulter': 'Sitterson', 'Dan Bilzerian': 'Higgins', 'Heather Johansen': 'Agent Stevens', 'Roman Mitichyan': 'Dmitri', 'Christopher Rob Bowen': 'Purvis', 'Rob Steinberg': 'Ivan', 'Lydia Hull': 'Kris', 'Tyler Jon Olson': 'Darryl (as Tyler J. Olson)', 'David Gordon': 'Sean', 'Nick Loeb': 'Vinn'}" tt2923316,"{'Hayden Christensen': 'James Kelly', 'Adrien Brody': 'Frankie Kelly', 'Jordana Brewster': 'Emily', 'Akon': 'Sugar', 'Tory Kittles': 'Ray', 'Luis Da Silva Jr.': 'Spoonie', 'Lance E. Nichols': 'Auto Shop Boss', 'John McConnell': 'Bank Manager', 'Joe Chrest': '(Police) Captain Sullivan', 'Aaron V. Williamson': 'House', 'Rachel Bilson': 'Eyewitness', 'Laura Cayouette': 'Loan Officer', 'Carol Sutton': 'Hostage Woman', 'Elena Sanchez': 'Katie', 'Belinda Delgado': 'Stripper'}" tt4195278,"{'Hande Dogandemir': 'Ayperi', 'Fatih Artman': 'Riza', 'Cengiz Bozkurt': 'Nafi', 'Sadi Celil Cengiz': 'Haktan', 'Gökçe Bahadir': 'Neriman', 'Tarik Ünlüoglu': 'Timur', 'Gürkan Uygun': 'Jilet', 'Seher Devrim Yakut': 'Selma (as Devrim Yakut)', 'Erdal Tosun': 'Cemal', 'Berat Yenilmez': 'Yasar', 'Cihan Ercan': 'Kubilay', 'Burcu Biricik': 'Ezgi', 'Ercan Yazgan': 'Hasmet', 'Caglar Ertugrul': 'Erdil', 'Andy Boyns': 'Contractor'}" tt3598222,"{'Zoë Bell': 'Cassandra Clay', 'Kristanna Loken': 'Kat Morgan', 'Vivica A. Fox': 'Raven', 'Brigitte Nielsen': 'Ulrika', 'Cynthia Rothrock': 'Mona', 'Nicole Bilderback': 'Mei-Lin Fong', 'Tim Abell': 'Grigori Babishkov', 'Gerald Webb': 'Bobby', 'Edward DeRuiter': 'Vez (as Ed Deruiter)', 'Alexis Raich': 'Lexi', 'Tiffany Panhilason': 'Elise', 'Bernard Babish': 'Pavel', 'Morgan Benoit': 'Stefan', 'Dmitri S. Boudrine': 'Luko (as Dmitri Boudrine)', 'Kevin Fry': 'Jerrod (as Kevin-Fry Bowers)'}" tt3106120,"{'Glenn Jacobs': ""Jacob Goodnight (as Glenn 'Kane' Jacobs)"", 'Danielle Harris': 'Amy', 'Katharine Isabelle': 'Tamara', 'Chelan Simmons': 'Kayla', 'Kaj-Erik Eriksen': 'Seth', 'Greyston Holt': 'Will', 'Lee Majdoub': 'Carter', 'Michael Eklund': 'Holden', 'Reese Alexander': 'EMT #1', 'Kelly-Ruth Mercier': 'EMT #2', 'Lynn Colliar': 'News Reporter', 'Nancy Amelia Bell': ""Jacob's Mother (as Nancy Bell)"", 'Christina Vidal': 'Christine (archive footage)', 'Samantha Noble': 'Kira (archive footage)', 'Steven Vidler': 'Williams (archive footage)'}" tt1043791,"{'Fergus March': 'Webb', 'Emily Juniper': 'Larri', 'John Samuel Worsey': 'Milk', 'Rebecca Craven': 'Jess', 'Nina Kwok': 'Ketsy', 'David Bryant': 'Rob', 'Jay Worthy': 'Driver', 'Leighton Wise': 'Forestry Foreman'}" tt0279688,"{'George Peroulas': 'Happy Home Mental Patient', 'Fountain Yount': 'Edward Eischel', 'Gregory Fawcett': 'Francis (as Greg Fawcett)', 'William Sanderson': 'Joe Slaader', 'Kurt Hargan': 'Dr. Wardlow', 'Frank Schuler': 'Peter Slaader', 'Marco St. John': 'Dr. Fenton', 'Rick Dial': 'Dr. Barnard', 'Tom Savini': 'Sheriff', 'Robert Jayne': 'Jasper (as Bobby Jacoby)', 'Rachel Mellendorf': 'Ardelia', 'Jan Jackson': 'Nurse in operating room (as Jane Jackson)', 'Tonya White': 'Featured Extra', 'David T. Alcorn': 'Syringe Head', 'Tommy Barnes': 'Attendant'}" tt2396701,"{'Alex Arleo': 'Jake Wildman', 'Arielle Brachfeld': 'Vanessa Dane', 'Graham Denman': 'Craig Gavin', 'Stephanie Greco': 'Penny Abbot', 'Carolina Groppa': 'Giselle James', 'Lynn Lowry': 'Bethany Romero', 'Howard McNair': 'Keith Drummond', 'Jason Owsley': 'Ray Roundtree', 'Jon Briddell': 'Officer Downs', 'Leigh Davis': 'Psychic Tourist', 'Jon Kondelik': 'Casey Martin', 'Maria Olsen': 'Anna Whaley', 'Shawn C. Phillips': ""Matthew 'Meathouse' Carter"", 'Abigail Digna Prendes': 'Marion - Ghost Girl', 'Jeff Pride': 'Officer Gates'}" tt2240312,"{'Katrina Bowden': 'Jerry', 'Randy Wayne': 'Johnny', 'Erin Marie Hogan': 'Natasha', 'Steve Hanks': 'McBride', 'Joshua Michael Allen': 'Young McBride (as Josh Allen)', 'Brad Slaughter': 'Tony', 'Seth Cassell': 'Kyle', 'Darin Cooper': 'Warden Wilkes', 'Jordan Pratt-Thatcher': 'Heath', 'Lisa Younger': 'Samantha', 'Keith Allan': 'Van Hausen (as Keith Allen)', 'Devanny Pinn': 'Woman With Scar', 'Natalie Sterling': ""Scar Woman's Sister"", 'Gerald Webb': 'Park Ranger', 'Alex Ball': 'Burly Guard #2'}" tt1658801,"{'Julianne Moore': 'Laurel Hester', 'Ellen Page': 'Stacie Andree', 'Michael Shannon': 'Dane Wells', 'Steve Carell': 'Steven Goldstein', 'Luke Grimes': 'Todd Belkin', 'Gabriel Luna': 'Quesada', 'Anthony DeSando': 'Toohey (as Anthony De Sando)', 'Skipp Sudduth': 'Chief Reynolds', 'Josh Charles': 'Bryan Kelder', ""Kevin O'Rourke"": 'Dan Wickery', 'Tom McGowan': 'William Johnson', 'William Sadler': 'Peter Santucci', 'Dennis Boutsikaris': 'Pat Gerrity', 'Adam LeFevre': 'Don Bennett', 'Jeannine Kaspar': 'Margaret'}" tt1489889,"{'Dwayne Johnson': 'Bob Stone', 'Kevin Hart': 'Calvin Joyner', 'Amy Ryan': 'Agent Pamela Harris', 'Danielle Nicolet': 'Maggie', 'Jason Bateman': 'Trevor', 'Aaron Paul': 'Phil', 'Ryan Hansen': 'Steve', 'Tim Griffin': 'Agent Stan Mitchell', 'Timothy John Smith': 'Agent Nick Cooper', 'Sione Kelepi': 'Young Robbie', 'Dylan Boyack': 'Trevor - 17 Years Old', 'Thomas Kretschmann': 'The Buyer', 'Megan Park': 'Waitress', 'Slaine': 'Thugged Out', 'Annie Kerins': 'Lady MC'}" tt2702724,"{'Melissa McCarthy': 'Michelle Darnell', 'Kristen Bell': 'Claire', 'Peter Dinklage': 'Renault', 'Ella Anderson': 'Rachel', 'Tyler Labine': 'Mike Beals', 'Kathy Bates': 'Ida Marquette', 'Cecily Strong': 'Dana Dandridge', 'Mary Sohn': 'Jan Keller', 'Kristen Schaal': 'Scout Leader Sandy', 'Eva Peterson': 'Chrystal', 'Timothy Simons': 'Stephan (as Tim Simons)', 'Aleandra Newcomb': 'Mariana', 'Annie Mumolo': 'Helen', 'Presley Coley': 'Hannah', 'Dax Shepard': 'Kyle (as Dax Shephard)'}" tt2245003,"{'Drew Barrymore': 'Jess', 'Shola Adewusi': 'Midwife', 'Toni Collette': 'Milly', 'Grace Schneider': 'Jess (10 yrs)', 'Lucinda Raikes': 'Teacher', 'Eleanor Stagg': 'Milly (10 yrs)', 'Emily Trappen': 'Jess (13 yrs)', 'Lucy Morton': 'Milly (13 yrs)', 'Jacqueline Bisset': 'Miranda', 'Lukas Rolfe': 'Little Lord', 'Charlotte Hope': 'Teenage Jess', 'Sophie Holland': 'Teenage Milly', 'Fjokra': 'Lead Singer', 'Max Rinehart': 'Teenage Kit', 'Dominic Cooper': 'Kit'}" tt1767372,"{'Imogen Poots': 'Isabella Patterson', 'Illeana Douglas': 'Judy', 'Graydon Carter': 'Limo Driver', 'Owen Wilson': 'Arnold Albertson', 'Scott Campbell': 'Hotel Guest #1', 'Erin Heatherton': 'Hotel Guest #2', 'Melanie Hill': 'Hotel Receptionist', 'Jake Hoffman': 'Hotel Bellboy', 'Rhys Ifans': 'Seth Gilbert', 'Richard Lewis': 'Al Finkelstein', 'Cybill Shepherd': 'Nettie Finkelstein', 'Debi Mazar': 'Vickie', 'Austin Pendleton': 'Judge Pendergast', 'George Morfogen': 'Harold Fleet', 'Tovah Feldshuh': 'Miriam Pendergast'}" tt4019560,"{'Ana de Armas': 'Isabel De La Cruz', 'Gabe Vargas': ""Manuel 'Rocky' De La Cruz (as Gabriel Vargas)"", 'Sandy Tejada': 'Yesenia', 'Ariel Pacheco': 'Naldo (as Ariel Rolando Pacheco)', 'Ismael Cruz Cordova': 'Jose De La Cruz (as Ismael Cruz Córdova)', 'Anthony Ruiz': 'Homeless Man', 'Stephen Thompson': 'Albino Floating Man', 'Keanu Reeves': 'Detective Galban', 'Mira Sorvino': 'Janine Cullen', 'Denia Brache': 'Gloria De La Cruz', 'Laura Gómez': 'Eva De La Cruz (as Laura Gomez)', 'Jeanette Dilone': 'Marisol De La Cruz', 'Danny Guzman': 'Gucci De La Cruz', 'Christopher McDonald': 'Lieutenant Galway', 'Leopold Manswell': 'Kendu Wallace'}" tt1274586,"{'Nicolas Cage': 'Evan Lake', 'Anton Yelchin': 'Milton Schultz', 'Alexander Karim': 'Muhammad Banir', 'Irène Jacob': 'Michelle Zubarain', 'Tomiwa Edun': 'Mbui (as Adetomiwa Edun)', 'Aymen Hamdouchi': 'Aasim', 'Claudius Peters': 'Ghedi', 'Robert G. Slade': 'James Clifton', 'Geff Francis': 'Dr. Clayborne', 'Silas Carson': 'Dr. Sanjar', 'Serban Celea': 'Dr. Iulian Cornel', 'Derek Ezenagu': 'Dr. Wangari', 'Sharif Sharbek': 'Serban', 'Tim Silano': 'Mike Warner', 'David Lipper': 'Bob Deacon'}" tt2381991,"{'Chris Hemsworth': 'The Huntsman / Eric', 'Charlize Theron': 'Ravenna', 'Jessica Chastain': 'Sara', 'Emily Blunt': 'Queen Freya', 'Nick Frost': 'Nion', 'Rob Brydon': 'Gryff', 'Sheridan Smith': 'Mrs. Bromwyn', 'Alexandra Roach': 'Doreena', 'Sope Dirisu': 'Tull', 'Sam Hazeldine': 'Leifr', 'Sam Claflin': 'William', 'Sophie Cookson': 'Pippa', 'Conrad Khan': 'Young Eric', 'Niamh Walter': 'Young Sara', 'Nana Agyeman-Bediako': 'Young Tull'}" tt0985025,"{'William Hope': 'Jon', 'Leon Herbert': 'Rick', 'Ronald Pickup': 'Tobias', 'Philip Bretherton': 'Walter', 'Noah Huntley': 'Ben', 'Dominique McElligott': 'Emily', 'Skye Bennett': 'Sarah', 'Mr. Lordi': 'Lead Monster', 'Kita': 'Monster', 'Amen': 'Monster', 'Ox': 'Monster', 'Awa': 'Monster', 'Jussi Haukkamaa': 'Family on 8th Floor', 'Hilla Haukkamaa': 'Family on 8th Floor', 'Hugo Haukkamaa': 'Family on 8th Floor'}" tt3307726,"{'Trevor Donovan': 'Chief Trip Oliver', 'Linda Hamilton': 'Admiral Linda Hansen', 'Mya': 'Lt. Plummer (as Mya Harrison)', 'John Savage': 'President DeSteno', 'Jamie Kennedy': 'Dr. Zimmer', 'Jair Burgos': 'Bravo Soldier', 'Richard Whiten': 'Lt. Commander Barclay', 'Ricco Ross': 'Captain Phillips', 'Jeff Rector': 'Captain Warren', 'Robert Blanche': 'Captain Dave Williams', 'Angelique Cinelu': 'Ensign', 'Justin Cuomo': 'Alex Preacher', 'Luke White': 'Stephen Hondo', 'Stephanie Cantu': 'Rivas', 'Darren Anthony Thomas': 'Greg Elfman'}" tt2493486,"{'Clive Owen': 'Raiden', 'Morgan Freeman': 'Bartok', 'Cliff Curtis': 'Lt. Cortez', 'Aksel Hennie': 'Geza Mott', 'IHARA': 'Ito (as Tsuyoshi Ihara)', 'Sung-Ki Ahn': 'Auguste (as Sung Ki Ahn)', 'Payman Maadi': 'Emperor', 'Si-yeon Park': 'Hannah', 'Noah Silver': 'Gabriel', 'Ayelet Zurer': 'Naomi', 'Hannah Rose Caton': 'Lilly (as Rose Caton)', 'Giorgio Caputo': 'Slim Tully', 'James Babson': 'Fat Jim', 'Shohreh Aghdashloo': 'Maria', 'Michael Lombardi': 'Josiah'}" tt2552498,"{'Jane March': 'Serena', 'Ben Cross': 'Agent Hinton', 'Jamie Atkins': 'Jack Krutchens', 'Harry Dyer': 'Newald Krutchens', 'Vicki Glover': 'Lisa Russell', 'Julian Boote': 'Nigel Mason', 'Tanya Winsor': 'Sharon Mason', 'Nigel Peever': 'Oscar Madison', 'Robert Boyle': 'Staff Sergeant Sam Jones', 'Noel Ross': 'Constable Milton', 'Jon Campling': 'Jess Walters', 'Steve McTigue': ""General O'Shauncey"", 'Gemma Lawman': 'Hero Woman', 'Dylan Jones': 'Agent Jones', 'Dennis Carr': 'Simkins'}" tt4145350,"{'Brent Lydic': 'Hansel', 'Lili Baross': 'Gretel', 'Aqueela Zoll': 'Willy', 'Jhey Castles': 'Cthonia', 'Riley Murphy': 'Jacob', 'Adinett Nsabimana': 'Morai', 'Nanrisa Lee': 'Kikimora', 'Barbara Scolaro': 'Lilith', 'Elisha Kriis': 'Circa', 'Carol Stanzione': 'Bag Lady', 'Christopher Callen': 'Grandmother', 'Fawn Stone': 'Deputy Castiniera', 'Kevin Yarbrough': 'Sheriff Lopez', 'Maria Olsen': 'Crone', 'Jennifer Elizabeth': 'Bunny'}" tt1509767,"{'Matthew Macfadyen': 'Athos', 'Milla Jovovich': 'Milady de Winter', 'Helen George': 'Blonde', 'Christian Oliver': 'Venetian Nobleman', 'Luke Evans': 'Aramis', 'Ray Stevenson': 'Porthos', 'Til Schweiger': 'Cagliostro', 'Markus Brandl': 'Sergeant Venetian Guard', 'Orlando Bloom': 'Duke of Buckingham', 'Logan Lerman': ""D'Artagnan"", 'Dexter Fletcher': ""D'Artagnan's Father"", 'Jane Perry': ""D'Artagnan's Mother"", 'Mads Mikkelsen': 'Rochefort', 'Andy Gathergood': 'Drunk', 'Susanne Wolff': 'Cougar'}" tt1572491,"{'Carlos Areces': 'Javier', 'Antonio de la Torre': 'Sergio', 'Carolina Bang': 'Natalia', 'Manuel Tallafé': 'Ramiro', 'Alejandro Tejerías': 'Motorista-fantasma (as Alejandro Tejería)', 'Manuel Tejada': 'Jefe de pista', 'Enrique Villén': 'Andrés', 'Gracia Olayo': 'Sonsoles', 'Sancho Gracia': 'Coronel Salcedo', 'Paco Sagarzazu': 'Anselmo', 'Santiago Segura': 'Padre-Payaso tonto', 'Fernando Guillén Cuervo': 'Capitán miliciano', 'Jorge Clemente': 'Javier (Joven 1943)', 'Fofito': 'Payaso listo', 'Sasha Di Bendetto': 'Javier (Niño 1937) (as Sasha Di Bendetto)'}" tt1031280,"{'Charles Baker': 'Blake Sherman Jr.', 'Jill Wagner': 'Polly Watt', 'Paulo Costanzo': 'Seth Belzer', 'Shea Whigham': 'Dennis Farell', 'Rachel Kerbs': 'Lacey Belisle', 'Laurel Whitsett': 'Sheriff Terri Frankel'}" tt2872810,"{'Ian Bamberg': 'Jimmy', 'Noell Coet': 'Emily', 'Adam C. Edwards': 'The Intruder', 'Stephanie Erb': 'Lauren', 'Daniel Hugh Kelly': 'David', 'Erica Leerhsen': 'Kim', 'Shannon Makhanian': 'Mom', ""Charlie O'Connell"": 'Will', 'Stephen Rhodes': 'Intruder 2', 'Richard Riehle': 'Trucker', 'Ally Walker': 'Dr. Pomock'}" tt1982735,"{'Michael Copon': ""Melvin 'Spider' Holiday"", 'Rachel Lara': 'Taylor', 'Julia Beth Stern': 'Cammi', 'Alex Mandel': 'Derrick', 'Kaley Victoria Rose': 'Madison (as Rachel Wixom)', 'Matt Calloway': 'Trevor', 'David Namminga': 'Dylan', 'Noah Gibbings': 'Cody', 'Gabriel Olivera': 'Adam', 'Richard Hoag': 'Henry Lee (as Rich Hoag)', 'Sydney Rae Shalhoob': 'Young Cammi', 'Randolph Mantooth': 'Detective Bodrogi', 'Puffy Copon': 'Willie', 'Fuse': 'Fuse', 'Brian Harwell': ""Taylor's Dad""}" tt0286306,"{'Jamie Bell': 'Pfc. Charlie Shakespeare', 'Rúaidhrí Conroy': 'Pvt. Colin Chevasse (as Ruaidhri Conroy)', 'Mike Downey': 'Martin Plummer', 'Laurence Fox': 'Capt. Bramwell Jennings', 'Roman Horák': 'German soldier (as Roman Horak)', 'Dean Lennox Kelly': 'Pvt. Willie McNess', 'Torben Liebrecht': 'Friedrich', 'Kris Marshall': 'Pvt. Barry Starinski', 'Hans Matheson': 'Pvt. Jack Hawkstone', ""Hugh O'Conor"": 'Anthony Bradford', 'Matthew Rhys': 'Cpl. Doc Fairweather', 'Andy Serkis': 'Pvt. Thomas Quinn', 'Hugo Speer': 'Sgt. David Tate', 'Pavel Tesar': 'Mudman'}" tt0443435,"{'Jessica Lowndes': 'Emily', 'Ross Kohn': 'Bobby', 'Ross McCall': 'Jude', 'Ashley Schneider': 'Clare', 'Arcadiy Golubovich': 'Dmitriy (as Arkady Golubovich)', 'Gregg Brazzel': 'Man under Car (as Greg Brazzel)', 'Robert LaSardo': 'Scott', 'Michael Bowen': 'Travis', 'Jenette Goldstein': 'Nurse Marian', 'Robert Patrick': 'Dr. Benway', 'Elijah Hardy': 'Gregory', 'Kevin M. White': 'Man in Hall', 'Tatyana Kanavka': 'Gretchen', 'Jeff L. Deist': 'Scarred Naked Man (as Jeff Deist)', 'Eric F. Adams': 'Officer Jacobs'}" tt3384904,"{'Adrian Paul': 'Jeff Pierce', 'Jhey Castles': 'Lynne Pierce', 'Georgina Beedle': 'Mykaela Pierce', 'John Rhys-Davies': 'Col. Carlo Dillard', 'Dylan Vox': 'Kal', 'Dan Cade': 'Cade', 'Constantine Trendafilov': 'Gianni (as Constatine Trendafilda)', 'Assen Vukushev': 'Naveen', 'Alexandra Petrova-Emisti': 'Rashida', 'Yordam Yositov': 'Rosso', 'Harry Anichkin': 'Italian Colonel', 'Vrunda Patel': 'Christina', 'Jonas Talkington': 'Paul', 'Ralitsa Paskaleva': 'Alita', 'J.R. Esposito': 'Smith'}" tt2300975,"{'Sarah Snook': 'Jessie', 'Joelle Carter': 'Kate', 'Mark Webber': 'Preston', 'David Andrews': 'Leon', 'Ana de la Reguera': 'Rosaura', 'Amber Stevens West': 'Dead Girl (as Amber Stevens)', 'Chris Ellis': 'Sheriff Pruitt', 'Brian Hallisay': 'Mark', 'Vaughn Wilson': 'Moses', 'Larisa Oleynik': 'Sam', 'Fran Bennett': 'Mrs. Davis', 'Paul Garrett': 'Christophe', 'Barbara Weetman': 'Nurse', 'Jason Davis': 'Surgeon', 'Lucius Baston': 'Mr. Woods'}" tt1331307,"{'Jackson Rathbone': 'Stephen Grace', 'Hanne Steen': 'Cheryl Fromm', 'Laura Donnelly': 'Abby', 'Jonathan Readwin': 'Joshua Shaw', 'Shaun Evans': 'Quaid', 'Vivian Gray': 'Tabitha Swan', 'Carl McCrystal': 'Axe Man', 'Derek Lea': ""Quaid's Father"", 'Siobhan Hewlett': ""Quaid's Mother"", 'Kieran Murphy': 'Young Quaid', 'Cheyanne Raymond': 'Zooey (as Cheyenne Raymond)', 'Zoe Stollery': 'Shauna', 'Elspeth Rae': 'Samantha', 'Erin Gavin': 'Valerie', 'Kerry Ann Smith': 'Nurse #1'}" tt0492486,"{'Lindsey Haun': 'Tara', 'Jack Huston': 'Jake', 'Max Kasch': 'Troy', 'Maya Hazen': 'Lisa', 'Alice Greczyn': 'Holly', 'Robert Hoffman': 'Bluto', 'Don Wycherley': 'Ernie', 'Sean McGinley': 'Bernie', 'Toby Sedgwick': 'Black Brother', 'André Pollack': 'The Dog', 'Jack Gleeson': 'Lonely Twin', 'Mike Carbery': 'Paramedic', 'Anna Tikhonova': 'Mysterious Woman 1', 'Goranna McDonald': 'Mysterious Woman 2', 'Berry Murphy': ""Lonely Twin's Brother""}" tt3614530,"{'Aubrey Peeples': 'Jerrica / Jem', 'Stefanie Scott': 'Kimber', 'Aurora Perrineau': 'Shana', 'Hayley Kiyoko': 'Aja', 'Molly Ringwald': 'Aunt Bailey', 'Isabella Kai': 'Young Jerrica (as Isabella Rice)', 'Barnaby Carpenter': 'Emmett Benton', 'Jason Kennedy': 'Jason Kennedy', 'Nathan Moore': 'Zipper', 'Juliette Lewis': 'Erica Raymond', 'Ryan Guzman': 'Rio', 'Justin Alastair': 'Esteban', 'Mischke Butler': 'Vocal Coach', 'Samantha Newark': 'Hair Stylist', 'Christopher Scott': 'Choreographer'}" tt2005374,"{'Nicolas Cage': 'Sgt. Jack Halcombe', 'Vanessa Hudgens': 'Cindy Paulson', 'John Cusack': 'Robert Hansen', 'Dean Norris': 'Sgt. Lyle Haugsven', 'Gia Mantegna': 'Debbie Peters', 'Robert Forgit': 'Sgt. Wayne Von Clasen', 'Brad William Henke': 'Carl Galenski', 'Michael McGrady': 'Vice Det. John Gentile', 'Katherine LaNasa': 'Fran Hansen', ""Ryan O'Nan"": 'Officer Gregg Baker', 'Kevin Dunn': 'Lt. Bob Jent', 'Connor Rockom': 'Hansen Son', 'Radha Mitchell': 'Allie Halcombe', 'Matt Gerald': 'Asst. Sgt. Ed Stauber', ""Jodi Lyn O'Keefe"": 'Chelle Ringell'}" tt0382943,"{'Vincent Pastore': 'Frank', 'Michael Gibney': 'Alan', 'Paul DeAngelo': 'Ronnie', 'Jonathan Tiersten': 'Ricky Thomas', 'Isaac Hayes': 'Charlie the Chef', 'Lenny Venito': 'Mickey', 'Erin Broderick': 'Karen', 'Adam Wylie': 'Weed', 'Kate Simses': 'Petey', 'Brye Cooper': 'Randy', 'Michael Werner': 'Michael', 'Christopher Shand': 'T.C.', 'Jaime Radow': 'Jenny', 'Shahidah McIntosh': 'Bella (as Shahida McIntosh)', 'Jackie Tohn': 'Linda'}" tt1757742,"{'Francesc Garrido': 'Heseltine', 'Fiona Glascott': 'Ellen Keegan', 'Rick Gonzalez': 'Paul Ortega', 'Kai Lennox': 'Alan White', 'Gia Mantegna': 'Caitlin White', ""Michael O'Keefe"": 'Dr. Helzer', 'Damian Roman': 'Benny White', 'Laura Martuscelli': 'Cynthia', 'Fermí Reixach': 'Lamson', 'Souleymane Diop': 'Concierge', 'Alex van Kuyk': 'Man in the Subway', 'Marcel Barrena': 'Paramedic 1', 'Vincent Damman': 'Paramedic 2', 'Yatma Sall': 'Paramedic 3', 'Susana García Díez': 'Pedestrian 1'}" tt2474438,"{'Guillaume Gouix': 'Paul / Attila Marcel', 'Anne Le Ny': 'Mme Proust', 'Bernadette Lafont': 'Tante Annie', 'Hélène Vincent': 'Tante Anna', 'Luis Rego': 'M. Coelho', 'Fanny Touron': 'Anita', 'Kea Kaing': 'Michelle', 'Jean-Claude Dreyfus': 'M. Kruzinsky', 'Vincent Deniard': 'Gégé', 'Cyril Couton': 'Le docteur', 'Philippe Soutan': 'Le concierge', 'Guilhem Pellegrin': 'M. Chassepot de Pissy', 'Jean-Paul Solal': 'M. Pineton de Chambrun', 'Jean-Pol Brissart': 'M. Berkoff', 'Elsa Davoine': 'Tante Annie jeune'}" tt1366365,"{'Henry Cavill': 'Will', 'Verónica Echegui': 'Lucia', 'Bruce Willis': 'Martin', 'Sigourney Weaver': 'Carrack', 'Joseph Mawle': 'Gorman', 'Caroline Goodall': 'Laurie', 'Rafi Gavron': 'Josh', 'Emma Hamilton': 'Dara', 'Michael Budd': 'Esmael', 'Roschdy Zem': 'Zahir', 'Óscar Jaenada': 'Maximo', 'Joe Dixon': 'Dixon', 'Jim Piddock': 'Meckler', 'Fermí Reixach': 'Carlos', 'Lolo Herrero': 'Reynaldo'}" tt2395199,"{'Tom Everett Scott': 'Henry', 'Jean-Claude Van Damme': 'Xander', 'Orlando Jones': 'Clay', 'Linzey Cocker': 'Kayla', 'Christopher Robbie': 'Sanderson', 'Zachary Baharov': 'Saul (as Zahari Baharov)', 'Dimo Alexiev': 'Morris', 'Kris Van Damme': 'Francois', 'Vlado Mihailov': 'Jean (as Vladimir Mihailov)', 'Teodor Tsolov': 'Eto (as Teodor Tzolov)', 'Hristo Mitzkov': 'Wooton', 'Ryan Spike Dauner': 'Spota (as Ryan Dauner - Spike)', 'Jonas Talkington': 'I.C.E. Leader', 'Paul Jenkins': 'I.C.E. Agent #1', 'Atanas Srebrev': 'I.C.E. Agent #2'}" tt2012665,"{'Forest Whitaker': 'Angel Sanchez', 'Anthony Mackie': 'Tommy Carter', 'Mike Epps': 'Ben Carter', 'Sanaa Lathan': 'Maggie Carter', 'Nicole Ari Parker': 'Sophie Sanchez', 'Ariana Neal': 'Francesca Sanchez', 'Denise Milfort': 'Seer', 'Selma Pinkard': 'Aunt', 'Avery Edward Landry': 'Boy', 'Margo Swisher': 'Red-head Woman', 'Adella Gautier': ""Angel's Mother"", 'Jessica Medina': ""Angel's Cousin #1"", 'Gina Blocker': ""Angel's Cousin #2"", 'Peter Weller': 'Meyer', 'Ashley Toman': 'Harpist'}" tt3036676,"{'Vinnie Jones': 'Vincent De La Cruz', 'Mischa Barton': 'Lisa Thomas', 'Timothy Woodward Jr.': 'Jaxon Stone', 'Danny Trejo': 'Tattoo', 'Luke Goss': 'Jake Tharseo', 'Erin Marie Hogan': 'Amanda Torres', 'Said Faraj': 'Salvadore', 'Basil Hoffman': 'Judge Eller', 'Jerry G. Angelo': 'Juan Torres', 'Sammy Durrani': 'Selena Lopez', 'Isaac C. Singleton Jr.': 'Spike', 'Matt Cinquanta': 'Detective Pritchard', 'Zach Touchon': 'Alberto Lopez', 'Donald Martin': 'Officer Tucker / Defendant #1', 'Geoff Browne': 'Walter Metcalfe'}" tt1014763,"{'Xavier Atkins': 'Young Leo Demidov', 'Mark Lewis Jones': 'Tortoise', 'Tom Hardy': 'Leo Demidov', 'Joel Kinnaman': 'Vasili', 'Fares Fares': 'Alexei Andreyev', 'Karel Dobrý': 'Photographer', 'Noomi Rapace': 'Raisa Demidov', 'Agnieszka Grochowska': 'Nina Andreyeva', 'Petr Vanek': 'Fyodor', 'Jana Stryková': 'Mara', 'Jason Clarke': 'Anatoly Tarasovich Brodsky', 'Ursina Lardi': 'Zina Gubinova', 'Michael Nardone': 'Semyon Okun', ""Jemma O'Brien"": 'Elena Okun', 'Lottie Steer': 'Tamara Okun'}" tt2304953,"{'Dominic Cooper': 'Mitch Brockden', 'Samuel L. Jackson': 'Clinton Davis', 'Gloria Reuben': 'Det. Blake Kanon', 'Ryan Robbins': 'Jimmy Logan', 'Erin Karpluk': 'Rachel Brockden', 'Dylan Taylor': 'Stuart Wilson', 'Karl Thordarson': 'Cecil Akerman', 'Dean Harder': 'Terry Roberts', 'Carson Nattrass': 'Officer Travis', 'John B. Lowe': 'Judge G. Mckenna', 'Philippe Brenninkmeyer': 'DA Jones', 'Jessica Burleson': 'Secretary', 'Kelly Wolfman': 'Dr. Brown', 'Steven Ratzlaff': 'Coroner (as Steve Ratzlaff)', 'Jon Ljungberg': 'Reporter #1 (Jeff Franklin)'}" tt1730294,"{'Inbar Lavi': 'Talia', 'Edward Furlong': 'Tommy', 'Steven Bauer': 'Hector', 'James Caan': 'Micky', 'Oded Fehr': 'Levi', 'Jonathan Lipnicki': 'Young Yoni', 'J.C. MacKenzie': 'Mr. Phillips', 'Jeffrey Tambor': 'Mr. Solomon', 'Noel Gugliemi': 'Ramon', 'Paul Sorvino': 'Red', 'Leilani Sarelle': 'Nancy', 'Hal Ozsan': 'Abe', 'Delphine Chanéac': 'Aline', 'Michael Benyaer': 'Jacob', 'Meredith Scott Lynn': 'Mazal'}" tt0269743,"{'Sung-Jae Lee': 'Yun-ju', 'Doona Bae': 'Hyun-nam', 'Ho-jung Kim': 'Eun-sil', 'Hee-Bong Byun': 'Janitor (as Hie-bong Byeon)', 'Su-hee Go': ""Jang-mi (Hyun-nam's friend)"", 'Roe-ha Kim': 'Shadow Man', 'Gin-goo Kim': 'Granny', 'Sang-soo Im': 'Senior Joon-pyo', 'Jeong-seon Seong': 'Aengbali', 'Jae-ha Jo': ""Aengbali's baby"", 'Chae-rin Hwang': 'Seul-gi', 'Sookyung Lee': ""Seul-gi's mother"", 'Hyuk-Poon Kwon': 'Management office chief', 'Yeongi Lee': 'Management office old-timer', 'Yong-ok Kim': 'Management office director'}" tt3202890,"{'John Cusack': 'Benjamin', 'Ryan Phillippe': 'Steven', 'Rachelle Lefevre': 'Shannon', 'Jacki Weaver': 'Reigert', 'Luis Guzmán': 'Superintendent', 'Briana Roy': 'Nina', 'Jandres Burgos': 'Salo', 'Veronica Faye Foo': 'Paola', 'Alex Cintrón': 'Hotel Manager', 'Millie Ruperto': 'Female Sergeant', 'Oscar H. Guerrero': 'Taxi Driver', 'Reema Sampat': 'Interpreter', 'Isabelle Adriani': 'Esmeralda (Bank Teller) (as Isabella Adriani)', 'Sunshine Logroño': 'Mr. Lopez (Bank Manager) (as Emmanuel Logrono)', 'Sean Taylor': 'Gerry'}" tt0928375,"{'Vinnie Jones': 'Mr. Hunter', 'Jason Barry': 'David Wallace', 'Nora-Jane Noone': 'Saiorse Reilly', 'Adam Fogerty': 'Bog Body', 'Amy Huberman': 'Hannah Ross', 'Shelly Goldstein': 'Val Leary', 'Gavin Kelty': 'Deano Doyle', 'Olga Wehrly': 'Mallory Ross', 'Michael Collins': 'Foreman', 'Paul Valentine': 'Builder', 'Glen Barry': 'Damo (Shop)', 'Charlene Gleeson': 'Lorna (Taxi)', 'Stephen Farrelly': ""Celtic Warrior (as Sheamus O'Shaunessy)"", 'Sean Condren': 'Circus Boy', 'Aran Condren': 'Circus Boy 2'}" tt2108605,"{'Stephon Stewart': 'Stephon Lancaster', 'Davee Youngblood': 'Davee Lancaster', 'Shy Pilgreen': 'Shy Driskell', 'Sam Ayers': 'Travis', 'Don Scribner': 'Stranger', 'Brad S. Clayton': 'Townie', 'Michael Villar': 'Store Clerk', 'Joey Napoli': 'Townie', 'Johnnie Colter': 'Interviewee', 'Kyle Quinn': 'Himself'}" tt1876261,"{'Danny Bonaduce': 'Harley Anderson', 'Barry Williams': 'Simon Quint', 'Bruce Davison': 'Sheriff Walt Henderson', 'Sherilyn Fenn': 'Sheriff Becky Alvarez', 'Howard Hesseman': 'Mayor Tommy Gillis', 'Andre Royo': 'Al Hunter', 'Alice Cooper': 'Alice Cooper', 'Stephanie Sarreal Park': 'Priya', 'Cynthia Geary': 'Sueanne', 'Noelia Rodriguez': 'Delia', 'Toan Le': 'Alex', 'Demetrius Sager': 'Max', 'Ulric Dihle': 'Colonel Tifton', 'Jennifer Ropella': 'Lynn', 'John Paulsen': 'Laurich'}" tt2457138,"{'Craig Sheffer': 'Major Brian Hoffman', 'Dennis Haysbert': 'Lt. General Christopher Monning', 'Kate Vernon': 'Dr. Ellen Gordon (as Katherine Elizabeth Vernon)', 'Ariana Richards': 'Donna Voorhees', 'Bill Duke': 'President Donald Sheridan', 'Wes Studi': 'Captain Falcons', 'Ernie Hudson': 'Max Stevens', 'Benjamin James': 'Corporal CJ Parkins', 'Anthony Pacella': 'Carl Hammond', 'Darin Cooper': 'Defense Secretary Woods', 'Afrim Gjonbalaj': 'Captain Sims', 'Richard Lounello': 'Platoon Leader (as Rich Lounello)', 'Frank Rossi': 'Air Force Chief of Staff', 'Michael Cipiti': 'Staff Official', 'Richard Satterwhite': 'American Citizen'}" tt1956620,"{'Cameron Diaz': 'Annie', 'Jason Segel': 'Jay', 'Rob Corddry': 'Robby', 'Ellie Kemper': 'Tess', 'Rob Lowe': 'Hank', 'Nat Faxon': 'Max', 'Nancy Lenehan': 'Linda', 'Giselle Eisenberg': 'Nell', 'Harrison Holzer': 'Howard', 'Sebastian Hedges Thomas': 'Clive', 'Timothy Brennen': 'Walt', 'Krisztina Koltai': 'Marta', 'Randall Park': 'Edward', 'Joe Stapleton': 'Piper Bros. Executive', 'James Wilcox': 'Charlie'}" tt2166934,"{'Sean Young': 'Therapist', 'Michael Rapaport': 'Marty', 'Diane Guerrero': 'Malea', 'Tika Sumpter': 'Clarissa', 'John Stamos': 'Mike', 'Bryan Callen': 'Paul', 'Andrea Bordeaux': 'Jordan', 'Carly Brooke': 'Roslyn (as Carly Brooke Pearlstein)', 'Ronnie Mund': 'Strip Club Patron', 'Wass Stevens': 'Trainer Joe', 'Maria Bartiromo': 'Herself', 'Tony Devon': 'Damon', 'Stephanie Domini': 'Dancer (as Stephanie Domini Ehlert)', 'Heidi Armbruster': 'Liz', 'Madison Arnold': 'Maury'}" tt3203890,"{'Jaime Camil': 'Alejandro', 'Laura Ramsey': 'Rachel', 'Omar Chaparro': 'Canicas', 'Aurora Papile': 'Carol', 'Renata Ybarra': 'Maria', 'Mariachi Juvenil de Tecalitlán': ""Alejandro's Mariachi Band"", 'Stockard Channing': 'Virginia', 'Tom Arnold': 'Art', 'Roberto Sosa': 'Hapi', 'Carlos Macias': 'Neron', 'Jorge Zárate': 'Cosme', 'Emilio Guerrero': 'Don Gus', 'Juan Pablo Gil': 'Manolo', 'Luis Fernando Peña': 'Max', 'María del Carmen Farias': 'School Principal'}" tt2378281,"{'Andrés Vázquez': 'Valentín niño', 'Hugo Stiglitz': 'Johnny Bravo', 'Eugenio Derbez': 'Valentín', 'Leia Freitas': 'Amante Brasileña', 'Ángela Moreno': 'Amante Dominicana', 'Gilda Gentile': 'Amante Argentina', 'Nancy Taira': 'Amante Oriental', 'Jessica Lindsey': 'Julie', 'Sammy Pérez': 'Sammy', 'Arcelia Ramírez': 'Judeisy', 'Agustín Bernal': 'Lupe', 'Gregg Lucas': 'Agente migración', 'Roger Cudney': 'Abogado Julie', 'Migael Penix': 'Portero hotel L.A.', 'Daniel Raymont': 'Frank Ryan'}" tt1278449,"{'Bengt Braskered': 'Amadeus Warnebring (as Bengt Nilsson)', 'Sanna Persson': 'Sanna (as Sanna Persson Halapi)', 'Magnus Börjeson': 'Magnus', 'Marcus Boij': 'Marcus (as Marcus Haraldson Boij)', 'Johannes Björk': 'Johannes', 'Fredrik Myhr': 'Myran', 'Anders Vestergard': 'Anders', 'Axel Bergendal': 'Amadeus as a Child', 'Nina Brundahl Warnolf': 'Mother as Young (as Nina Brunndahl Warnolf)', 'Martin Bergendal': 'Father as Young', 'Bilo Frenander': 'Grand-Father', 'Tage Persson': 'Oscar as a Child', 'Benjamin Peetre': 'Policeman with Radio', 'Lasse Svensson': 'Motorcycle Police', 'Paula McManus': 'Colette'}" tt2382396,"{'Nicolas Cage': 'Joe', 'Tye Sheridan': 'Gary', 'Gary Poulter': 'Wade a.k.a. G-Daawg', 'Ronnie Gene Blevins': 'Willie-Russell', 'Adriene Mishler': 'Connie', 'Brian Mays': 'Junior (as Brian D. Mays)', 'Aj Wilson McPhaul': 'Earl (as A.J. Wilson McPhaul)', 'Sue Rock': 'Merle', 'Heather Kafka': 'Lacy', 'Brenda Isaacs Booth': 'Mother (as Brenda Isaacs-Booth)', 'Anna Niemtschk': 'Dorothy', 'Elbert Hill III': 'Shorty (as Elbert Evan Hill III)', 'Milton Fountain': 'Milton', 'Roderick L. Polk': 'Roscoe', 'Aaron Spivey-Sorrells': 'Sammy'}" tt0107302,"{'Brad Pitt': 'Early Grayce', 'Kathy Larson': 'Teenage Girl (as Catherine Larson)', 'David Milford': 'Driver', 'David Duchovny': 'Brian Kessler', 'John Zarchen': 'Peter', 'David Rose': 'Eric', 'Michelle Forbes': 'Carrie Laughlin', 'Tommy Chappelle': 'Old Man', 'Juliette Lewis': 'Adele Corners', 'Judson Vaughn': 'Parole Officer', 'James Michael McDougal': 'John Diebold (as J. Michael McDougal)', 'Patricia Sill': 'Carol', 'Brett Rice': 'Police Officer', 'Marisa Raper': 'Little Girl', 'Bill Crabb': 'Middle Aged Farmer (as Bill Crabbe)'}" tt3093522,"{'Ethan Hawke': 'Iachimo', 'Ed Harris': 'Cymbeline', 'Milla Jovovich': 'The Queen', 'John Leguizamo': 'Pisanio', 'Penn Badgley': 'Posthumus', 'Dakota Johnson': 'Imogen', 'Anton Yelchin': 'Cloten', 'Peter Gerety': 'Dr. Cornelius', 'Kevin Corrigan': 'The Hangman', 'Vondie Curtis-Hall': 'Caius Lucius', 'James Ransone': 'Philario', 'Spencer Treat Clark': 'Guiderius', 'Bill Pullman': 'Sicilius Leonatus', 'Delroy Lindo': 'Belarius', 'Harley Ware': 'Arviragus'}" tt1396523,"{'Justin Chon': 'Sonny', 'Kevin Wu': 'Steven', 'Harry Shum Jr.': 'Paul', 'Eugenia Yuan': 'Snakehead Mama', 'Leonard Wu': 'Ah Chung', 'Jin Au-Yeung': 'Detective Tang (as Jin Auyeung)', 'Jon Kit Lee': 'Teddy', 'Shuya Chang': 'Tina', 'Alex Fox': 'Little Sonny', 'Michael Gregory Fung': 'Little Steven', 'Celia Au': 'Bobo', 'Ron Yuan': 'Born to Kill Dai Lo', 'Billy Magnussen': 'Detective Boyer', 'Geoff Pierson': 'FBI Director Sam Higgins', 'Ray Liotta': 'Michael Bloom'}" tt1663207,"{'Jennifer Aniston': 'Mickey Dawson', 'Yasiin Bey': 'Ordell Robbie', 'Isla Fisher': 'Melanie', 'Will Forte': 'Marshall Taylor', 'Mark Boone Junior': 'Richard Monk', 'Tim Robbins': 'Frank Dawson', 'John Hawkes': 'Louis Gara', 'Clea Lewis': 'Tyra Taylor', 'Charlie Tahan': 'Bo Dawson', 'Kevin Corrigan': 'Ray', 'Leonard Robinson': 'Officer Dixon', 'Kevin Porter Young': 'Officer Kenny', 'Alex Ladove': 'Pamela Taylor', 'Jenna Nye': 'Shelly Taylor', 'Jill Abramovitz': 'Jan'}" tt1972571,"{'Grigoriy Dobrygin': 'Issa Karpov (as Grigory Dobrygin)', 'Philip Seymour Hoffman': 'Günther Bachmann', 'Homayoun Ershadi': 'Abdullah', 'Mehdi Dehbi': 'Jamal', 'Neil Malik Abdullah': ""Abdullah's Bodyguard (as Neil Melik Abdullah)"", 'Nina Hoss': 'Irna Frey', 'Daniel Brühl': 'Maximilian', 'Vicky Krieps': 'Niki', 'Kostja Ullmann': 'Rasheed', 'Franz Hartwig': 'Karl', 'Martin Wuttke': 'The Admiral', 'Vedat Erincin': 'Storekeeper', 'Rainer Bock': 'Dieter Mohr', 'Derya Alabora': 'Leyla Oktay', 'Tamer Yigit': 'Melik Oktay'}" tt1754656,"{'Jeff Bridges': 'The Aviator (voice)', 'Mackenzie Foy': 'The Little Girl (voice)', 'Rachel McAdams': 'The Mother (voice)', 'Marion Cotillard': 'The Rose (voice)', 'Riley Osborne': 'The Little Prince (voice)', 'James Franco': 'The Fox (voice)', 'Bud Cort': 'The King (voice)', 'Benicio Del Toro': 'The Snake (voice)', 'Ricky Gervais': 'The Conceited Man (voice)', 'Albert Brooks': 'The Businessman (voice)', 'Paul Rudd': 'Mr. Prince (voice)', 'Paul Giamatti': 'The Academy Teacher (voice)', 'Jeffy Branion': 'The Policeman (voice) (as Jeff Branion)', 'Jacquie Barnbrook': 'The Nurse / The Worried Neighbor / The Snooty Panelist (voice)', 'Marcel Bridges': 'The Concerned Neighbor (voice)'}" tt1614989,"{'Aksel Hennie': 'Roger', 'Synnøve Macody Lund': 'Diana', 'Nikolaj Coster-Waldau': 'Clas Greve', 'Eivind Sander': 'Ove Kjikerud', 'Julie R. Ølgaard': 'Lotte (as Julie Ølgaard)', 'Kyrre Haugen Sydness': 'Lander', 'Valentina Alexeeva': 'Natasja', 'Reidar Sørensen': 'Brede Sperre', 'Nils Jørgen Kaalstad': 'Stig', 'Joachim Rafaelsen': 'Brugd', 'Mats Mogeland': 'Sunded', 'Gunnar Skramstad Johnsen': 'Monsen 1', 'Lars Skramstad Johnsen': 'Monsen 2', 'Signe Tynning': 'TV-vertinne', 'Nils Gunnar Lie': 'TV-vert'}" tt0479162,"{'Michael Rapaport': 'Les', 'Paul Blackthorne': 'Jonas Exiler', 'Josh Peck': 'Joey', 'Robert Baker': 'Everett', 'Jack Kehler': 'Dr. Dobson', 'Alexandra Holden': 'Maggie', 'Ian Bohen': 'Ted Exiler', 'Christopher Darga': 'Steve', 'Michael Shamus Wiles': 'Cop #1', 'Erich Anderson': 'Newscaster', 'Karyn Bryant': 'Co-host', 'Trish Nelson': 'Pregnant Teen (as Patricia Ann Nelson)', 'Franc Ross': 'Crackhead', 'Marc Schaffer': 'Gorcery Store Mugger (as Marc Shaffer)', 'Amanda Carlin': 'Mugging Victim'}" tt1617661,"{'Mila Kunis': 'Jupiter Jones', 'Channing Tatum': 'Caine Wise', 'Sean Bean': 'Stinger Apini', 'Eddie Redmayne': 'Balem Abrasax', 'Douglas Booth': 'Titus Abrasax', 'Tuppence Middleton': 'Kalique Abrasax', 'Nikki Amuka-Bird': 'Diomika Tsing', 'Christina Cole': 'Gemma Chatterjee', 'Nicholas A. Newman': 'Nesh', 'Ramon Tikaram': 'Phylo Percadium', 'Ariyon Bakare': 'Greeghan', 'Maria Doyle Kennedy': 'Aleksa', 'Frog Stone': 'Aunt Nino', 'David Ajala': 'Ibis', 'Doona Bae': 'Razo'}" tt2223990,"{'Chris Berman': 'Chris Berman', 'Dave Donaldson': 'Danny', 'Patrick St. Esprit': 'Tom Michaels', 'Chi McBride': 'Walt Gordon', 'Mel Kiper': 'Mel Kiper', 'Jon Gruden': 'Jon Gruden', 'Kevin Costner': 'Sonny Weaver Jr.', 'Deion Sanders': 'Deion Sanders', 'Mike Mayock': 'Mike Mayock', 'Jennifer Garner': 'Ali', 'Anthony Rizzo': 'Anthony Rizzo', 'Aaron Goldhammer': 'Aaron Goldhammer', 'Chadwick Boseman': 'Vontae Mack', 'Jordan Harris': ""Vontae's Nephew"", 'Zachary Littlejohn': ""Vontae's Nephew (as Zachary Littleton)""}" tt1621046,"{'Kerry Adra': 'American Lady', 'Maynor Alvarado': 'Chato Chavez', 'Yancey Arias': 'Gilbert Padilla', 'Wes Bentley': 'Jerry Cohen', 'Sara Banerjee': 'Concerned Mother #1 (as Sarah Banerjee)', 'Liv Boughn': 'Concerned Mother #2', 'Darion Basco': 'Larry Itlong', 'Lisa Brenner': 'Jackie Stringer', 'Duncan Bridgeman': 'Anchor', 'Aldo Ceceña': 'Chucho', 'Michael Cudlitz': 'Sheriff Smith', 'Roger Cudney': 'Grower', 'Rosario Dawson': 'Dolores Huerta', 'America Ferrera': 'Helen Chavez', 'Rodolfo Figueroa': 'Mexican Farmer'}" tt2103264,"{'Matthew Fox': 'General Bonner Fellers', 'Tommy Lee Jones': 'General Douglas MacArthur', 'Eriko Hatsune': 'Aya Shimada', 'Toshiyuki Nishida': 'General Kajima', 'Masayoshi Haneda': 'Takahashi', 'Kaori Momoi': 'Mitsuko Kajima', 'Colin Moy': 'General Richter', 'Masatoshi Nakamura': 'Prince Konoe', 'Masatô Ibu': 'Koichi Kido', 'Isao Natsuyagi': 'Teizaburo Sekiya', 'Takatarô Kataoka': 'Emperor Hirohito', 'Aaron Jackson': 'Lt Col. Rogers', 'Nic Sampson': 'Lieutenant Red', 'Shôhei Hino': 'Hideki Tojo', 'Will Wallace': 'CIC Commander'}" tt1811307,"{'Trent Ford': 'Daniel Lynch', 'Tammy Blanchard': 'Susan Stephensen', 'Morgan Spector': 'William Stephensen', 'Rob Mayes': 'Matthew Blackwood', 'William Lee Scott': 'Charlie Trumbo', 'Cotter Smith': 'Admiral Lynch', 'Michael Cumpsty': 'Admiral Stephensen', 'Michael Sirow': 'John Cokely', 'Mark Doherty': 'Skipper', 'Chris Chalk': 'Special Agent Jones', 'Tracy Weiler': 'Nancy', 'Gwynneth Bensen': 'Tammi', 'Jordan Dean': 'Stewie', 'Johnny Hopkins': 'Gorden', 'Haviland Morris': 'Grace Lynch'}" tt2106476,"{'Mads Mikkelsen': 'Lucas', 'Thomas Bo Larsen': 'Theo', 'Annika Wedderkopp': 'Klara', 'Lasse Fogelstrøm': 'Marcus', 'Susse Wold': 'Grethe', 'Anne Louise Hassing': 'Agnes', 'Lars Ranthe': 'Bruun', 'Alexandra Rapaport': 'Nadja', 'Sebastian Bull Sarning': 'Torsten', 'Steen Ordell Guldbrand Jensen': 'Lars T', 'Daniel Engstrup': 'Johan', 'Troels Thorsen': 'Bent', 'Søren Rønholt': 'Big Carsten', 'Hana Shuan': 'Tiny', 'Jytte Kvinesdal': 'Inger'}" tt1713476,"{'Nansi Aluka': 'Jaquline', 'Christopher Denham': 'Sam', 'Stephen Kunken': 'Dr. Abrams', 'Frank Deal': 'Mayor Stockman', 'Kether Donohue': 'Donna', 'Kristen Connolly': 'Stephanie', 'Will Rogers': 'Alex', 'Kimberly Campbell': 'Nurse Rebecca', 'Beckett Clayton-Luce': 'Charles', 'Dave Hager': 'Fisher Jerry', 'Tara Polhemus': 'Teenage Girl', 'Sean Johnson': 'Teenage Boy', 'Murat Erdan': ""Mike Radio Host (as Murat 'Murf Dawg' Erdan)"", 'Lamya Jezek': 'Ms. Rosenblatt (as Lamya Reynolds)', 'Lucia Scarano': 'Marla Spadafora (as Lucia Forte)'}" tt1134854,"{'Alan Van Sprang': 'Sarge', 'Joshua Peace': 'D.J. (as Josh Peace)', 'Hardee T. Lineham': 'Lieutenant Vaughn', 'Dru Viergever': 'Soldier Zombie', 'Eric Woolfe': 'Kenny', 'Shawn Roberts': 'Tony (archive footage)', 'Scott Wentworth': 'Professor Maxwell (archive footage)', 'Amy Lalonde': 'Tracy (archive footage)', 'Michelle Morgan': 'Debra (archive footage)', 'Joshua Close': 'Jason (archive footage)', 'Mitch Risman': 'Drooling Zombie', 'Kenneth Welsh': ""O'Flynn"", 'Julian Richings': 'James', 'Wayne Robson': 'Tawdry', 'Kathleen Munroe': 'Janet / Jane'}" tt3233418,"{'George Lopez': 'Fredi Cameron', 'Marisa Tomei': 'Gwen Kolinsky', 'Jamie Lee Curtis': 'Ms. Karen Lowry', 'Carlos PenaVega': 'Oscar Vazquez', 'José Julián': 'Lorenzo Santillan (as Jose Julian)', 'David Del Rio': 'Cristian Arcega', 'Oscar Javier Gutierrez II': 'Luis Aranda (as Oscar Gutierrez)', 'Alessandra Rosaldo': 'Mrs. Vazquez', 'J.R. Villarreal': 'Hector', 'Aubrey K. Miller': 'Maddy Kolinsky (as Aubrey Miller)', 'Kevin Wiggins': 'Barrows', 'Alexa PenaVega': 'Karla', 'J.P. Murrieta': 'Male Announcer (as J.R. Murrieta)', 'Nicole Brady': 'Female Announcer', 'Edward McGinty': 'Williams (Judge) (as Ed McGinty)'}" tt2725962,"{'Rosamund Pike': 'Abi', 'David Tennant': 'Doug', 'Billy Connolly': 'Gordie', 'Ben Miller': 'Gavin', 'Amelia Bullmore': 'Margaret', 'Emilia Jones': 'Lottie', 'Bobby Smalldridge': 'Mickey', 'Harriet Turnbull': 'Jess', 'Celia Imrie': 'Agnes Chisolm', 'Annette Crosbie': 'Doreen', 'Lewis Davie': 'Kenneth', 'Ralph Riach': 'Jimmy Cazzarotto', 'Ron Donachie': 'Sgt. Murdoch', 'Ben Presley': 'PC McLuhan', 'Michele Austin': 'Lucy'}" tt0391024,"{'Samir Khader': 'Himself', 'Josh Rushing': 'Himself (as Lt. Josh Rushing)', 'George W. Bush': 'Himself (archive footage)', 'Hassan Ibrahim': 'Himself', 'Deema Khatib': 'Herself', 'Tom Mintier': 'Himself', 'Donald Rumsfeld': 'Himself (archive footage)', 'David Shuster': 'Himself'}" tt2017020,"{'Hank Azaria': 'Gargamel', 'Neil Patrick Harris': 'Patrick', 'Brendan Gleeson': 'Victor', 'Jayma Mays': 'Grace', 'Jacob Tremblay': 'Blue', ""Nancy O'Dell"": ""Nancy O'Dell"", 'Karim Babin': 'Room Service Waiter', 'Gaston Morrison': 'New York Taxi Driver (as Gaston Morrisson)', 'Jocelyn Blanchard': 'Toad Man', 'Erika Rosenbaum': 'Pregnant Mom', 'Carolina Bartczak': 'Peanut Mom', 'James A. Woods': 'Peanut Father', 'Henri Pardo': 'Father-to-Be', 'Vanessa Matsui': 'Mother with Camera', 'Dusan Dukic': 'Curious Dad'}" tt0472181,"{'Hank Azaria': 'Gargamel', 'Neil Patrick Harris': 'Patrick Winslow', 'Jayma Mays': 'Grace Winslow', 'Sofía Vergara': 'Odile Anjelou', 'Tim Gunn': 'Henri', 'Madison McKinley': 'Model', 'Meg Phillips': 'Model', 'Julie Chang': 'Newscaster', 'Roger Clark': 'Newscaster', 'Mark Doherty': 'Bluetooth Businessman', 'Minglie Chen': 'Young Woman', 'Sean Kenin': 'Guy in Plaid Shirt', 'Victor Pagan': 'Bum', 'Mahadeo Shivraj': 'Cabbie', 'Adria Baratta': 'Anjelou Employee'}" tt1130088,"{'Bill Milner': 'Edward', 'Anne-Marie Duff': 'Mum', 'Ralph Riach': 'Clive', 'Linzey Cocker': 'Tanya', 'Elizabeth Spriggs': 'Prudence', 'Leslie Phillips': 'Reg', 'Sylvia Syms': 'Lilian', 'Rosemary Harris': 'Elsie', 'David Morrissey': 'Dad', 'Thelma Barlow': 'Ena', 'Peter Vaughan': 'Bob', 'Carl McCrystal': 'Undertaker 1', 'Andrew Turner': 'Undertaker 2', 'Michael Caine': 'Clarence', 'Ollie Kaiper-Leach': 'Barry (as Oliver Leach)'}" tt2094064,"{'Amy Acker': 'Beatrice', 'Alexis Denisof': 'Benedick', 'Nathan Fillion': 'Dogberry', 'Clark Gregg': 'Leonato', 'Reed Diamond': 'Don Pedro', 'Fran Kranz': 'Claudio', 'Jillian Morgese': 'Hero', 'Sean Maher': 'Don John', 'Spencer Treat Clark': 'Borachio', 'Riki Lindhome': 'Conrade', 'Ashley Johnson': 'Margaret', 'Emma Bates': 'Ursula', 'Tom Lenk': 'Verges', 'Nick Kocher': 'First Watchman', 'Brian McElhaney': 'Second Watchman'}" tt1833888,"{'Harry Connick Jr.': 'Michael Walker', 'Connie Britton': 'Susan Walker', 'Chandler Canterbury': 'David Walker', 'Fionnula Flanagan': 'Ma', 'Lyle Lovett': 'Griffin', 'Willie Nelson': 'Nick', 'Kris Kristofferson': 'The Colonel', 'Dana Wheeler-Nicholson': 'Maggie', 'Eloise DeJoria': 'Laura', 'Dylan Summerall': 'Young Uncle David', 'Brennan Barker': 'Young Michael', 'Deborah Cole': 'Theresa', 'Sara Hickman': 'Aunt Claire', 'Turk Pipkin': 'Uncle Theo', 'Lidia Porto': 'Rosalba'}" tt1815862,"{'Jaden Smith': 'Kitai Raige', 'Will Smith': 'Cypher Raige', 'Sophie Okonedo': 'Faia Raige', 'Zoë Kravitz': 'Senshi Raige (as Zoë Isabella Kravitz)', 'Glenn Morshower': 'Commander Velan', 'Kristofer Hivju': 'Security Chief', 'Sacha Dhawan': 'Hesper Pilot', 'Chris Geere': 'Hesper Navigator', 'Diego Klattenhoff': 'Veteran Ranger', 'David Denman': 'Private McQuarrie', 'Lincoln Lewis': 'Running Cadet', 'Jaden Martin': 'Nine-Year-Old Kitai', 'Sincere L. Bobb': 'Three-Year-Old Kitai', 'Monika Jolly': 'Female Ranger'}" tt0490181,"{'Thomas Jane': ""Maj. 'Mitch' Hunter"", 'Ron Perlman': 'Brother Samuel', 'Devon Aoki': 'Cpl. Valerie Duval', 'Sean Pertwee': 'Capt. Nathan Rooker', 'Benno Fürmann': 'Lt. Maximillian von Steiner', 'John Malkovich': 'Constantine', 'Anna Walton': 'Severian', 'Tom Wu': 'Cpl. Juba Kim Wu', 'Steve Toussaint': 'Capt. John McGuire', 'Luis Echegaray': ""Cpl. Jesus 'El Jesus' de Barrera"", 'Pras Michel': 'Captain Michaels', 'Shauna Macdonald': 'Adelaide', 'Roger Ashton-Griffiths': 'Science Monk', 'Christopher Adamson': 'Hodge', 'Nicholas Ball': 'Plutocrat'}" tt1865393,"{'Clifton Collins Jr.': 'Lawrence', 'Clancy Brown': 'Angus', 'Andre Royo': 'Stephen', 'Robyn Rikoon': 'Elizabeth', 'Macon Blair': 'Macon', 'Stephen Gevedon': 'Clint', 'Larry Fessenden': 'Detective Elrod', 'Dan Fogler': 'Eric', 'Aaron Auslender': 'Passenger', 'Edoardo Ballerini': 'Father Atherton', 'Larry Block': 'Rabbi Weinberg', 'Patricia Bruno': 'Passenger', 'Samantha Buck': 'Penelope', 'Dan Chen': 'Demon Man child', 'Nadim Choudhary': ""Macon's Indonesian Lover""}" tt0407304,"{'Tom Cruise': 'Ray Ferrier', 'Dakota Fanning': 'Rachel Ferrier', 'Miranda Otto': 'Mary Ann', 'Justin Chatwin': 'Robbie', 'Tim Robbins': 'Harlan Ogilvy', 'Rick Gonzalez': 'Vincent', 'Yul Vazquez': 'Julio (as Yul Vázquez)', 'Lenny Venito': 'Manny the Mechanic', 'Lisa Ann Walter': 'Bartender', 'Ann Robinson': 'Grandmother', 'Gene Barry': 'Grandfather', 'David Alan Basche': 'Tim', 'Roz Abrams': 'Herself', 'Michael Brownlee': 'TV Reporter, Osaka', 'Camillia Monet': 'News Producer (as Camillia Sanes)'}" tt1321870,"{'Sean Penn': 'Mickey Cohen', 'Holt McCallany': 'Karl Lockwood', 'Wade Williams': 'Rourke', 'James Landry Hébert': 'Mitch Racine (as James Hèbert)', 'Ambyr Childers': 'Milk Skinned Blonde', 'Josh Brolin': ""Sgt. John O'Mara"", 'Mick Betancourt': 'Detective Sgt. Will Hendricks', 'Mac Brandt': 'Bruiser', 'Brandon Molale': ""Jimmy 'Bockscar' Knox"", 'Michael Papajohn': ""Mike 'The Flea'"", 'Jeff Wolfe': 'Giovanni Vacarezza', 'Anthony Molinari': 'Lorenzo Molinari', 'Austin Highsmith': 'Patty', 'Ryan Gosling': 'Sgt. Jerry Wooters', 'Neil Koppel': 'Max Solomon'}" tt1595656,"{'Ben Affleck': 'Neil', 'Olga Kurylenko': 'Marina', 'Rachel McAdams': 'Jane', 'Javier Bardem': 'Father Quintana', 'Tatiana Chiline': 'Tatiana', 'Romina Mondello': 'Anna', ""Tony O'Gans"": 'Sexton', 'Charles Baker': 'Carpenter', 'Marshall Bell': 'Bob', 'Casey Williams': 'Neighbor #1', 'Jack Hines': 'Neighbor #2', 'Paris Always': 'Classmate #1', 'Samaria Folks': 'Classmate #2', 'Jamie Conner': 'Teenage Girl with Baby', 'Francis Gardner': 'Woman at Wedding'}" tt1667889,"{'Aziz Ansari': 'Squint (voice)', 'Joy Behar': 'Eunice (voice)', 'Christopher Campbell': 'Creature Siren / Various (voice)', 'Alain Chabat': 'Silas (voice)', 'Ester Dean': 'Female Siren (voice)', 'Peter Dinklage': 'Captain Gutt (voice)', 'Karen Disher': 'Scratte (voice)', 'Drake': 'Ethan (voice)', 'Jason Fricchione': 'Dumb Mammoth / Various (voice)', 'Nick Frost': 'Flynn (voice)', 'Josh Gad': 'Louis (voice)', 'Ben Gleib': 'Marshall (voice)', 'George Jacobs': 'Beaver (voice)', 'Queen Latifah': 'Ellie (voice)', 'Denis Leary': 'Diego (voice)'}" tt0097322,"{'Jeff Bridges': 'Jack Baker', 'Michelle Pfeiffer': 'Susie Diamond', 'Beau Bridges': 'Frank Baker', 'Ellie Raab': 'Nina', 'Xander Berkeley': 'Lloyd', 'Dakin Matthews': 'Charlie', 'Ken Lerner': 'Ray', 'Albert Hall': 'Henry', 'Terri Treas': 'Girl in Bed', 'Gregory Itzin': 'Vince Nancy', 'Bradford English': 'Earl', 'David Coburn': 'Kid at Vet', 'Todd Jeffries': 'Theo', 'Jeff Nowinski': 'Hotel Masseuse (as Jeffrey J. Nowinski)', 'Nancy Fish': 'Laughing Bar Patron'}" tt1389096,"{'Al Pacino': 'Val', 'Christopher Walken': 'Doc', 'Alan Arkin': 'Hirsch', 'Julianna Margulies': 'Nina Hirsch', 'Mark Margolis': 'Claphands', 'Lucy Punch': 'Wendy', 'Addison Timlin': 'Alex', 'Vanessa Ferlito': 'Sylvia', 'Katheryn Winnick': 'Oxana', 'Bill Burr': 'Larry', 'Craig Sheffer': 'Jargoniew #1', 'Yorgo Constantine': 'Paul', 'Weronika Rosati': 'Irena', 'Keone Young': 'Song', 'Courtney Platt': 'Lisa (as Courtney Galiano)'}" tt2094018,"{'Paul Walker': 'Nolan Hayes', 'Genesis Rodriguez': 'Abigail Hayes', 'Nancy Nave': 'Sandra', 'Shane Jacobsen': 'Marc', 'Natalia Safran': 'Karen', 'TJ Hassan': 'Jeremy (as T.J. Hassan)', 'Lena Clark': 'Lucy', 'Kesha Bullard': 'Nurse', 'Yohance Myles': 'Dr. Edmonds', 'Judd Lormand': 'Glenn', 'Tony Bentley': 'Doctor', 'Ian Hoch': 'Resident', 'Kerry Cahill': 'Nurse Shelly', 'Oscar Gale': 'Hector', 'Christopher Matthew Cook': 'Lenny (as Matt Cook)'}" tt1747958,"{'Clive Owen': 'Chris', 'Billy Crudup': 'Frank', 'Marion Cotillard': 'Monica', 'Mila Kunis': 'Natalie', 'Zoe Saldana': 'Vanessa', 'Matthias Schoenaerts': 'Scarfo', 'James Caan': 'Leon', 'Noah Emmerich': 'Lieutenant Connellan', 'Lili Taylor': 'Marie', 'Domenick Lombardozzi': 'Mike', 'John Ventimiglia': 'Valenti', 'Griffin Dunne': 'McNally', 'Jamie Hector': 'Nick', 'Yul Vazquez': 'Fabio De Soto', 'Eve Hewson': 'Yvonne'}" tt1551621,"{'JeeJa Yanin': 'Deu (as Yanin Vismistananda)', 'Kazu Patrick Tang': 'Sanim (as Patrick Tang)', 'Nui Saendaeng': 'Kee-Muu', 'Sompong Leartvimolkasame': 'Dog', 'Boonprasert Salangam': 'Bull', 'Roongtawan Jindasing': 'Jaguar London', 'Marc Hoang': 'Jaguar Tokyo (as Marc Nghi Hoang)', 'David Bueno': 'Jaguar Bombay', 'Saroch Ruampaothai': 'Pai (as Sarocha Ruampaothai)', 'Klongkrit Klaydang': 'Musician', 'Pramote Keawchan': 'Musician', 'Pongoanai Naiyananont': 'Musician', 'Pakpoom Permpone': 'Transvestite', 'Tulaya Huntra': 'E-Tuk', 'Aino Takeshita': 'Japanese Girl'}" tt1535108,"{'Matt Damon': 'Max', 'Jodie Foster': 'Delacourt', 'Sharlto Copley': 'Kruger', 'Alice Braga': 'Frey', 'Diego Luna': 'Julio', 'Wagner Moura': 'Spider', 'William Fichtner': 'John Carlyle', 'Brandon Auret': 'Drake', 'Josh Blacker': 'Crowe', 'Emma Tremblay': 'Matilda', 'Jose Pablo Cantillo': 'Sandro', 'Maxwell Perry Cotton': 'Young Max', 'Faran Tahir': 'President Patel', 'Adrian Holmes': 'Manuel', 'Jared Keeso': 'Rico'}" tt1764183,"{'Richard Gere': 'Robert Miller', 'Susan Sarandon': 'Ellen Miller', 'Tim Roth': 'Det. Michael Bryer', 'Brit Marling': 'Brooke Miller', 'Laetitia Casta': 'Julie Côte', 'Nate Parker': 'Jimmy Grant', 'Stuart Margolin': 'Syd Felder', 'Chris Eigeman': 'Gavin Briar', 'Graydon Carter': 'James Mayfield', 'Bruce Altman': 'Chris Vogler', 'Larry Pine': 'Jeffrey Greenberg', 'Curtiss Cook': 'Det. Mills', 'Reg E. Cathey': 'Earl Monroe', 'Felix Solis': 'A.D.A. Ray Deferlito', 'Tibor Feldman': 'Judge Rittenband'}" tt1770734,"{'Barry Barnes': 'Gerry Senior', 'Maria Laird': 'Young Collette', 'Ben Smyth': 'Sean', 'Brid Brennan': 'Ma', 'Jamie Scott': 'Young Gerry', 'Bradley Burke': 'Young Connor', 'Andrea Riseborough': 'Collette', 'Daniel Tatarsky': 'Watcher 1', 'Tom Bennett': 'Watcher 2', 'Nia Gwynne': 'Female Watcher', 'Jason Stalkey': 'Agent 1 (as Jason Salkey)', 'Nicholas Asbury': 'Agent 2', 'Clive Owen': 'Mac', 'Morgan Watkins': 'MI5 Officer', 'Cathal Maguire': 'Mark'}" tt0079592,"{'Christopher Plummer': 'Sherlock Holmes', 'James Mason': 'Dr. John H. Watson', 'David Hemmings': 'Inspector Foxborough', 'Susan Clark': 'Mary Kelly', 'Anthony Quayle': 'Sir Charles Warren', 'John Gielgud': 'Prime Minister Lord Salisbury', 'Frank Finlay': 'Inspector Lestrade', 'Donald Sutherland': 'Robert Lees', 'Geneviève Bujold': 'Annie Crook', 'Chris Wiggins': 'Doctor Hardy', 'Tedde Moore': 'Mrs. Lees (as Teddi Moore)', 'Peter Jonfield': 'William Slade', 'Roy Lansford': 'Sir Thomas Spivey', 'Catherine Kessler': 'Carrie', 'Ron Pember': 'Makins'}" tt1132130,"{'Cliff De Young': 'Lloyd', 'Dale Midkiff': 'Dr. Frank Richards', 'Ami Dolenz': 'Susan Reed', 'Danae Nason': 'Sarah', 'Joshua Lee': 'Alex', 'Sara Tomko': 'Wakanna', 'Caroline Amiguet': 'Dr. Trish Lane', 'Shirley Raun': 'Mrs. Reed', 'Louis Graham': 'Dr. Ian Hunter', 'Jonathan Nation': 'Uncle Jim', 'Mark Hengst': 'Matt', 'Gilberto Canto': 'Gino', 'Omar Mora': 'Raul', 'Wil Omar Sanchez': 'Man on Bridge', 'Jason S. Gray': 'Carlos Martinez'}" tt1386703,"{'Colin Farrell': 'Douglas Quaid / Hauser', 'Kate Beckinsale': 'Lori Quaid', 'Jessica Biel': 'Melina', 'Bryan Cranston': 'Cohaagen', 'Bokeem Woodbine': 'Harry', 'Bill Nighy': 'Matthias', 'John Cho': 'McClane', 'Will Yun Lee': 'Marek', 'Milton Barnes': 'Resistance Fighter', 'James McGowan': 'Military Adjutant', 'Natalie Lisinska': 'Bohemian Nurse', 'Michael Therriault': 'Bank Clerk', 'Stephen MacDonald': 'Slacker', 'Mishael Morgan': 'Rekall Receptionist', 'LinLyn Lue': 'Resistance Woman'}" tt0450336,"{'Henry Cavill': 'Evan Marshall', 'Dominic Purcell': 'Victor Alan Marshall', 'Emma Booth': 'Liese Wollner', 'Michael Fassbender': 'Richard Wirth', 'Rainer Winkelvoss': 'Otto Wollner', 'László Mátray': 'Karl Wollner (as Laszlo Matray)', 'Joy McBrinn': 'Mrs. Wollner', 'Shea Whigham': 'Luke Benny', 'Tony Barger': 'Larry', 'Douglas Roger': 'Cop #1', 'Michael Ntumba': 'Cop #2', 'Razvan Oprea': 'Cop #3', 'Ana Popescu': 'Meth Freak Girlfriend', 'Florin Piersic Jr.': 'Scrawny Meth Freak', 'Gerard McSorley': 'Mr. Marshall'}" tt0457572,"{'David Kaye': 'Narrator (voice)', 'Jan Skorzewski': 'Eating Zombie', 'Kevin Tyell': ""Zombie's Victim"", 'Andy Parkin': 'Dr. Hrothgar Geiger', 'Lynn Pendleton': ""1940's Mother"", 'Gary Slater': 'Father Zombie', 'Taylor Petri': 'Little Girl', 'Glenn Richards': 'Vicious Zombie', 'Raphael Kepinski': 'Collar Light Zombie', 'Carl-James Kalbfleisch': 'Child Zombie', 'Tiffany Lyndall-Knight': 'Miss Mills', 'Kesun Loder': ""Timmy Robinson (as K'Sun Ray)"", 'Alexia Fast': 'Cindy Bottoms', 'Henry Czerny': 'Mr. Bottoms', 'Aaron Brown': 'Roy Fraser'}" tt0780607,"{'Anessa Ramsey': 'Mya Denton', 'Sahr Ngaujah': 'Rod (as Sahr)', 'AJ Bowen': 'Lewis Denton', 'Matthew Stanton': 'Jerry (as Matt Stanton)', 'Suehyla El-Attar': 'Janice', 'Justin Welborn': 'Ben Capstone', 'Cheri Christian': 'Anna', 'Scott Poythress': 'Clark', 'Christopher Thomas': 'Ken', 'Lindsey Garrett': 'Laura', 'Chad McKnight': 'Jim Parsons (as Chadrian McKnight)', 'Claire Bronson': 'Sightless Woman', 'David Bruckner': 'Screaming Man (as Dave Bruckner)', 'Dan Bush': 'Screaming Man', 'John Clifton': 'Maintenance Man'}" tt0480669,"{'Karra Elejalde': 'Héctor', 'Candela Fernández': 'Clara', 'Bárbara Goenaga': 'La Chica en el Bosque', 'Nacho Vigalondo': 'El Joven', 'Juan Inciarte': 'Héctor Ocasional (as Ion Inciarte)'}" tt1758830,"{'Paul Rudd': 'Pete', 'Leslie Mann': 'Debbie', 'Maude Apatow': 'Sadie', 'Iris Apatow': 'Charlotte', 'Jason Segel': 'Jason', 'Annie Mumolo': 'Barb', 'Robert Smigel': 'Barry', 'Megan Fox': 'Desi', 'Charlyne Yi': 'Jodi', 'Hugh Fink': 'Male Boutique Customer', 'Graham Parker': 'Graham Parker', 'Tom Freund': 'Graham Parker Solo Band', 'D.A. Sandoval': 'Older Pregnant Parent', 'Megan Grano': 'School Playdate Parent', 'Mackenzie Aladjem': 'School Playmate Child'}" tt1931435,"{'Robert De Niro': 'Don', 'Katherine Heigl': 'Lyla', 'Diane Keaton': 'Ellie', 'Amanda Seyfried': 'Missy', 'Topher Grace': 'Jared', 'Susan Sarandon': 'Bebe', 'Robin Williams': 'Father Moinighan', 'Ben Barnes': 'Alejandro', 'Christine Ebersole': 'Muffin', 'David Rasche': 'Barry', 'Patricia Rae': 'Madonna', 'Ana Ayora': 'Nuria', 'Kyle Bornheimer': 'Andrew', 'Megan Ketch': 'Jane', 'Christa Campbell': 'Kim'}" tt1878942,"{'Quinn Lord': 'Michael (8 Years)', 'Nick Offerman': 'Terry', 'Gary Cole': 'Dwayne', 'Megan Mullally': 'Patricia', 'Darien Provost': 'Matty (8 Years)', 'Jennifer Clement': '3rd Grade Teacher', 'Nicholas Braun': 'Michael', 'Hunter Cope': 'Matty', 'Dustin Ybarra': 'Josh', 'Sarah Hyland': 'Ava', 'Dakota Johnson': 'Em', 'Larry Wilmore': 'Mr. Vernon', 'Cainan Wiebe': 'Frederick (Pirate)', 'Hailey Wiebe': 'Ruth (Pirate)', 'Ray Santiago': 'Salvador'}" tt1839654,"{'Morgan Freeman': 'Monte Wildhorn', 'Kenan Thompson': 'Henry', 'Virginia Madsen': ""Charlotte O'Neil"", 'Emma Fuhrmann': ""Finnegan O'Neil"", 'Madeline Carroll': ""Willow O'Neil"", 'Nicolette Pierini': ""Flora O'Neil"", 'C.J. Wilson': 'Fire Captain', 'Ash Christian': 'Carl Loop', 'Debargo Sanyal': 'Mahmoud', 'Fred Willard': 'Al Kaiser', 'Jessica Hecht': 'Karen Loop', 'Christopher McCann': 'Bookstore Owner', 'Lucas Caleb Rooney': 'Clown (as Lucas Rooney)', 'Kevin Pollak': 'Joe Viola', 'Boyd Holbrook': 'Luke Ford'}" tt0057187,"{'Jack Lemmon': 'Nestor Patou / Lord X', 'Shirley MacLaine': 'Irma La Douce', 'Lou Jacobi': 'Moustache', 'Bruce Yarnell': 'Hippolyte', 'Herschel Bernardi': 'Inspector Lefevre', 'Hope Holiday': 'Lolita', 'Joan Shawlee': 'Amazon Annie', 'Grace Lee Whitney': 'Kiki - the Cossack', 'Paul Dubov': 'Andre', 'Howard McNear': 'Concierge', 'Cliff Osmond': 'Police Sergeant', 'Diki Lerner': 'Jojo', 'Herb Jones': 'Casablanca Charlie', 'Ruth Earl': 'One of the Zebra Twins', 'Jane Earl': 'One of the Zebra Twins'}" tt0094678,"{'Dudley Moore': 'Arthur Bach', 'Liza Minnelli': 'Linda Marolla Bach', 'John Gielgud': 'Hobson', 'Geraldine Fitzgerald': 'Martha Bach', 'Stephen Elliott': 'Burt Johnson', 'Paul Benedict': 'Fairchild', 'Cynthia Sikes': 'Susan Johnson', 'Kathy Bates': 'Mrs. Canby', 'Jack Gilford': 'Mr. Butterworth', 'Ted Ross': 'Bitterman', 'Barney Martin': 'Ralph Marolla', 'Thomas Barbour': 'Stanford Bach', ""David O'Brien"": 'Millionaire', 'Ron Canada': 'Bartender', 'John C. Vennema': ""Maitre D' (as John Vennema)""}" tt0369672,"{'John Travolta': 'Bobby Long', 'Scarlett Johansson': 'Pursy Will', 'Gabriel Macht': 'Lawson Pines', 'Deborah Kara Unger': 'Georgianna', 'Dane Rhodes': 'Cecil', 'David Jensen': 'Junior', 'Clayne Crawford': 'Lee', 'Sonny Shroyer': 'Earl', 'Carol Sutton': 'Ruthie', 'Walter Breaux': 'Ray', 'Warren Kole': 'Sean (as Warren Blosjo)', 'Bernard Johnson': 'Tiny', ""Gina 'Ginger' Bernal"": 'Waitress', 'Douglas M. Griffin': 'Man #1 (as Douglas Griffin)', 'Earl Maddox': 'Man #2'}" tt0099797,"{'Don Johnson': 'Harry Madox', 'Virginia Madsen': 'Dolly Harshaw', 'Jennifer Connelly': 'Gloria Harper', 'Charles Martin Smith': 'Lon Gulick', 'William Sadler': 'Frank Sutton', 'Jerry Hardin': 'George Harshaw', 'Barry Corbin': 'Sheriff', 'Leon Rippy': 'Deputy Tate', 'Jack Nance': 'Julian Ward', 'Virgil Frye': 'Deputy Buck', 'John Hawker': 'Uncle Mort', 'Margaret Bowman': 'Woman at Gas Station', 'Debra Cole': 'Irene Davey', 'Karen Culley': 'Cowgirl', 'Cody Haynes': 'Cowboy'}" tt1270262,"{'Dominic Cooper': 'Uday Hussein / Latif Yahia', 'Ludivine Sagnier': 'Sarrab', 'Raad Rawi': 'Munem', 'Philip Quast': 'Saddam Hussein / Faoaz', 'Mimoun Oaïssa': 'Ali (as Mimoun Oaissa)', 'Khalid Laith': 'Yassem Al-Helou', 'Dar Salim': 'Azzam', 'Nasser Memarzia': ""Latif's Father"", 'Mem Ferda': 'Kamel Hannah', 'Pano Masti': 'Said', 'Akin Gazi': 'Saad', 'Stewart Scudamore': 'Father of School Girl', 'Amrita Acharia': 'School Girl (as Amrita Acaria)', 'Elektra Anastasi': 'School Girl 2', 'Amber Rose Revah': 'Bride'}" tt1629705,"{'Sam Shepard': 'James', 'Eduardo Noriega': 'Ing. Eduardo Apodaca', 'Stephen Rea': 'Mackinley', 'Magaly Solier': 'Yana', 'Nikolaj Coster-Waldau': 'James Joven', 'Pádraic Delaney': 'Sundance', 'Dominique McElligott': 'Etta', 'Luis Bredow': 'Doctor', 'Cristian Mercado': 'General of the Bolivian Army', 'Daniel Aguirre': 'Iván', 'Martin Proctor': 'Caballero inglés', 'María Luque': 'Tabernera', 'Raúl Beltrán': 'Jefe indígena', 'Luis Aduviri': 'Lugarteniente indígena', 'Claudia Coronel': 'Indígena perseguidora 1'}" tt1386588,"{'Will Ferrell': 'Allen Gamble', 'Derek Jeter': 'Derek Jeter', 'Mark Wahlberg': 'Terry Hoitz', 'Eva Mendes': 'Dr. Sheila Gamble', 'Michael Keaton': 'Captain Gene Mauch', 'Larnell Stovall': 'Rasta', 'Jalil Jay Lynch': 'Rasta', 'Roy T. Anderson': 'Rasta', 'Ray Stevenson': 'Roger Wesley', 'Samuel L. Jackson': 'P.K. Highsmith', 'Andrew Secunda': 'Press Conference Reporter', 'Sara Chase': 'Press Conference Reporter', 'Dwayne Johnson': 'Christopher Danson', 'David Gideon': 'Mayor', 'Joshua Church': 'Hot Dog Guy (as Josh Church)'}" tt1531663,"{'Will Ferrell': 'Nick Halsey', 'Christopher Jordan Wallace': 'Kenny Loftus (as Christopher C.J. Wallace)', 'Rebecca Hall': 'Samantha', 'Michael Peña': 'Frank Garcia', 'Rosalie Michaels': 'Kitty', 'Stephen Root': 'Elliot', 'Laura Dern': 'Delilah', 'Glenn Howerton': 'Gary', 'Argos MacCallum': 'Shopper', 'Todd Bryant': 'Driver (Repo Guy)', 'Jason Spisak': 'Hipster', 'Tyler Johnstone': 'Big Teenager', 'Kyle Sharkey': 'Lanky Teenager', 'Scott Takeda': 'Bank Manager', 'Matthew Dearing': 'Jacket Buyer'}" tt0093693,"{'Goldie Hawn': 'Joanna / Annie', 'Kurt Russell': 'Dean Proffitt', 'Edward Herrmann': 'Grant Stayton III', 'Katherine Helmond': 'Edith Mintz', 'Mike Hagerty': 'Billy Pratt (as Michael Hagerty)', 'Roddy McDowall': 'Andrew', 'Jared Rushton': 'Charlie Proffitt', 'Jeffrey Wiseman': 'Joey Proffitt', 'Brian Price': 'Travis Proffitt', 'Jamie Wild': 'Greg Proffitt', 'Frank Campanella': 'Captain Karl', 'Harvey Miller': 'Dr. Norman Korman (as Harvey Alan Miller)', 'Frank Buxton': 'Elk Cove: Wilbur Budd', 'Carol Williard': 'Elk Cove: Rose Budd', 'Doris Hess': 'Elk Cove: Adele Burbridge'}" tt0095684,"{'Robert Sean Leonard': 'Jeremy Capello', 'LeeAnne Locken': 'Candy Andrews (as Lee Anne Locken)', 'Cheryl Pollak': 'Darla Blake', 'Cecilia Peck': 'Nora', 'Fannie Flagg': 'Mrs. Capello', 'Kenneth Kimmins': 'Mr. Capello', 'Evan Mirand': 'Ralph', 'Michelle La Vigne': 'Flo', 'Harvey Christiansen': 'George', 'David Warner': 'Professor Leopold McCarthy', 'Paul Willson': 'Grimsdyke', 'Rene Auberjonois': 'Modoc', 'Erica Zeitlin': 'Gloria', 'Gary Chason': 'Drivers Ed Instructor', 'Kathy Bates': 'Helen Blake (as Kathy D. Bates)'}" tt1436432,"{'Brittany Murphy': 'Dr. Amy Lane', 'Eriq La Salle': ""Charley 'Boomer' Baxter"", 'Bruce Davison': 'Dr. Mark Rhodes', 'Justin Hartley': 'Dan Lane', 'Paul Logan': 'Major Boyd Grayson', 'Jack P. Downing': 'General Banks', 'Jack Goldenberg': 'Sebastian', 'Miranda Schwein': 'Miranda Lane', 'Jessica Stratton': 'Dravinski', 'Sarah Garvey': 'Jerry Blair', 'Jeff Ashcraft': 'Major', 'Gloria Long Collins': 'Vanessa', 'Trevor Collins': 'Norman', 'Mary Cunliffe': 'Joanne Raye', ""Richard 'Goose' Giesecke"": 'Glen'}" tt1240982,"{'Danny McBride': 'Thadeous', 'James Franco': 'Fabious', 'Rasmus Hardiker': 'Courtney', 'Natalie Portman': 'Isabel', 'Toby Jones': 'Julie', 'Justin Theroux': 'Leezar', 'Zooey Deschanel': 'Belladonna', 'Charles Dance': 'King Tallious', 'Damian Lewis': 'Boremont', 'Simon Farnaby': 'Manious the Bold', 'Deobia Oparei': 'Thundarian', 'B.J. Hogg': 'Royal Advisor (as BJ Hogg)', 'Matyelok Gibbs': 'Mother', 'Angela Pleasence': 'Mother', 'Anna Barry': 'Mother'}" tt0087078,"{'Arnold Schwarzenegger': 'Conan', 'Grace Jones': 'Zula', 'Wilt Chamberlain': 'Bombaata', 'Mako': ""Akiro 'The Wizard'"", 'Tracey Walter': 'Malak', 'Sarah Douglas': 'Queen Taramis', ""Olivia d'Abo"": ""Princess Jehnna (as Olivia D'Abo)"", 'Pat Roach': 'Man Ape / Toth-Amon', 'Jeff Corey': 'Grand Vizier', 'Sven-Ole Thorsen': 'Togra (as Sven Ole Thorsen)', 'Bruce Fleischer': 'Village Heckler', 'Ferdy Mayne': 'The Leader (as Ferdinand Mayne)'}" tt1181791,"{'Sean Bean': 'Ulrich', 'Eddie Redmayne': 'Osmund', 'John Lynch': 'Wolfstan', 'Tim McInnerny': 'Hob', 'Kimberley Nixon': 'Averill', 'Andy Nyman': 'Dalywag', 'David Warner': 'Abbot', 'Johnny Harris': 'Mold', 'Emun Elliott': 'Swire', 'Tygo Gernandt': 'Ivo', 'Jamie Ballard': 'Griff', 'Carice van Houten': 'Langiva', 'Daniel Steiner': 'Monk', 'Tobias Kasimirowicz': 'Grimbold', 'Keith Dunphy': 'Witch Finder'}" tt0109835,"{'Rob Lowe': 'Jesse James', 'Bill Paxton': 'Frank James', 'Randy Travis': 'Cole Younger', 'Dana Wheeler-Nicholson': 'Annie', 'Maria Pitillo': 'Zee', 'Luke Askew': 'Lone Rider', 'Sean Patrick Flanery': 'Zack Murphy', 'Alexis Arquette': 'Charlie Ford', 'Todd Field': 'Bob Younger', 'John Pyper-Ferguson': 'Clell Miller', 'Nicholas Sadler': 'Arch Clements (as Nick Sadler)', 'William Atherton': 'Allan Pinkerton', 'Tom Chick': 'Detective Whitcher', 'Mary Neff': 'Widow Miller', 'Richard Maynard': 'John Sheets'}" tt0433412,"{'Hilary Duff': 'Tanzie Marchetta', 'Haylie Duff': 'Ava Marchetta', 'Maria Conchita Alonso': 'Inez', 'Anjelica Huston': 'Fabiella', 'Brent Spiner': 'Tommy Katzenbach', 'Lukas Haas': 'Henry Baines', 'Marcus Coloma': 'Rick', 'Ty Hodges': 'Etienne', 'Reagan Dale Neis': 'Jaden', 'Obba Babatundé': 'Craig (as Obba Babatunde)', 'Henry Cho': 'Ned Nakamori', 'Misti Traya': 'Martinique', 'Christina R. Copeland': 'Brigitta', 'Brandon Beemer': 'Mic Rionn', 'Colleen Camp': 'Charlene'}" tt1221208,"{'Halle Berry': 'Frankie', 'Stellan Skarsgård': 'Oz', 'Phylicia Rashad': 'Edna', 'Chandra Wilson': 'Maxine', 'Alex Diakun': 'Hal', 'Joanne Baron': 'Nurse Susan Shaw', 'Brian Markinson': 'Dr. Backman', 'Matt Frewer': 'Dr. Strassfield', 'Rosalyn Coleman': 'Pearl', 'Sean Tyson': 'Rich Fat Cat', 'Melanie Papalia': 'Tina', 'Kira Clavell': 'Wanda', 'Joey Bothwell': 'Trish', 'Adrian Holmes': 'Cliff', 'James Kirk': 'Bobby'}" tt0094321,"{'Madonna': 'Nikki Finn', 'Griffin Dunne': 'Loudon Trott', 'Haviland Morris': 'Wendy Worthington', 'John McMartin': 'Simon Worthington', 'Bibi Besch': 'Mrs. Worthington', 'John Mills': 'Montgomery Bell (as Sir John Mills)', 'Robert Swan': 'Detective Bellson', 'Drew Pillsbury': 'Detective Doyle', 'Coati Mundi': 'Raoul', 'Dennis Burkley': 'Benny', 'James Dietz': 'Buck', 'Cecile Callan': ""Sandy - Wendy's Friend"", 'Karen Elise Baldwin': ""Heather - Wendy's Friend (as Karen Baldwin)"", 'Kimberlin Brown': ""Rachel - Wendy's Friend"", 'Crystal Carson': ""Denise - Wendy's Friend""}" tt0114614,"{'Lori Petty': 'Tank Girl', 'Ice-T': 'T-Saint', 'Naomi Watts': 'Jet Girl', 'Don Harvey': 'Sgt. Small', 'Jeff Kober': 'Booga', 'Reg E. Cathey': 'Deetee', 'Scott Coffey': 'Donner', 'Malcolm McDowell': 'Kesslee', 'Stacy Linn Ramsower': 'Sam', 'Ann Cusack': 'Sub Girl', 'Brian Wimmer': 'Richard', 'Iggy Pop': 'Rat Face', 'Dawn Robinson': 'Model', 'Billy L. Sullivan': 'Max', 'James Hong': ""Che'tsai""}" tt0399901,"{'Kimberly Elise': 'Michelle Jordan', 'Loretta Devine': 'Cassey Jordan', 'Debbi Morgan': 'Twana', 'Michael Boatman': 'Todd', 'Clifton Powell': 'Reggie', 'Idalis DeLeon': 'Nicole', 'T.D. Jakes': 'Himself (as Bishop T.D. Jakes)', 'Sean Blakemore': 'Pervis', 'Jordan Moseley': 'Michelle, Age Six', 'Philip Bolden': 'Todd, Age 8 (as Philip Daniel Bolden)', 'Destiny Edmond': 'Michelle, Age 12', 'Louisa Abernathy': 'Elderly Mother', 'Amy Aquino': 'Miss Rodgers', 'Malik Barnhardt': 'Dupree', 'Porscha Coleman': ""Lil' Bit""}" tt0111301,"{'Jean-Claude Van Damme': 'Colonel Guile', 'Raul Julia': 'Bison', 'Ming-Na Wen': 'Chun-Li', 'Damian Chapa': 'Ken', 'Kylie Minogue': 'Cammy', 'Simon Callow': 'A.N. Official', 'Byron Mann': 'Ryu', 'Roshan Seth': 'Dhalsim', 'Andrew Bryniarski': 'Zangief', 'Grand L. Bush': 'Balrog', 'Robert Mammone': 'Carlos Blanka', 'Miguel A. Núñez Jr.': 'Dee Jay', 'Gregg Rainwater': 'T. Hawk', 'Kenya Sawada': 'Captain Sawada', 'Jay Tavare': 'Vega'}" tt1155076,"{'Jaden Smith': 'Dre Parker', 'Jackie Chan': 'Mr. Han', 'Taraji P. Henson': 'Sherry Parker', 'Wenwen Han': 'Meiying', 'Rongguang Yu': 'Master Li', 'Zhensu Wu': ""Meiying's Dad"", 'Zhiheng Wang': ""Meiying's Mom"", 'Zhenwei Wang': 'Cheng', 'Jared Minns': ""Dre's Detroit Friend"", 'Shijia Lü': 'Liang', 'Yi Zhao': 'Zhuang', 'Bo Zhang': 'Song', 'Luke Carberry': 'Harry', 'Cameron Hillman': 'Mark', 'Ghye Samuel Brown': 'Oz'}" tt1458175,"{'Russell Crowe': 'John Brennan', 'Elizabeth Banks': 'Lara Brennan', 'Michael Buie': 'Mick Brennan', 'Moran Atias': 'Erit', 'Remy Nozik': 'Jenna', 'Toby Green': 'Three Year Old Luke', 'Tyler Green': 'Three Year Old Luke', 'Jason Beghe': 'Detective Quinn', 'Aisha Hinds': 'Detective Collero', 'Ty Simpkins': 'Luke', 'Veronica Brown': 'Female Guard 1', 'Olivia Wilde': 'Nicole', 'Leslie Merrill': 'Elizabeth Gesas', 'Alissa Sullivan Haggis': 'Junkie (as Alissa Haggis)', 'Daniel Stern': 'Meyer Fisk'}" tt0460810,"{'John Malkovich': 'Buck Howard', 'Colin Hanks': 'Troy Gable', 'Emily Blunt': 'Valerie Brennan', 'Ricky Jay': 'Gil Bellamy', 'Steve Zahn': 'Kenny', 'Tom Hanks': 'Mr. Gable', 'Griffin Dunne': 'Jonathan Finerman', 'Debra Monk': 'Doreen', 'Adam Scott': 'Alan Berkman', 'Patrick Fischler': 'Michael Perry', 'Wallace Langham': 'Dan Green', 'Jonathan Ames': 'Edward Kelly', 'Jacquie Barnbrook': 'Sheila Heller', 'Paul Darricarrere': 'Restaurant Manager', 'Terry Scannell': 'Kip'}" tt0486358,"{'Lou Engle': 'Himself', 'Becky Fischer': 'Herself', 'Ted Haggard': 'Himself', 'Mike Papantonio': 'Himself - Commentator'}" tt0944835,"{'Angelina Jolie': 'Evelyn Salt', 'Liev Schreiber': 'Ted Winter', 'Chiwetel Ejiofor': 'Peabody', 'Daniel Olbrychski': 'Orlov', 'August Diehl': 'Mike Krause', 'Daniel Pearce': 'Young Orlov', 'Hunt Block': 'U.S. President Lewis', 'Andre Braugher': 'Secretary of Defense', 'Olek Krupa': 'Russian President Matveyev', 'Cassidy Hinkle': '12-Year-Old Chenkov', 'Corey Stoll': 'Shnaider', 'Vladislav Koulikov': ""Chenkov's Father"", 'Olya Zueva': ""Chenkov's Mother"", ""Kevin O'Donnell"": 'Young CIA Officer', 'Gaius Charles': 'CIA Officer'}" tt0113855,"{'Christopher Lambert': 'Lord Raiden', 'Robin Shou': 'Liu Kang', 'Linden Ashby': 'Johnny Cage', 'Cary-Hiroyuki Tagawa': 'Shang Tsung', 'Bridgette Wilson-Sampras': 'Sonya Blade (as Bridgette Wilson)', 'Talisa Soto': 'Kitana', 'Trevor Goddard': 'Kano', 'Chris Casamassa': 'Scorpion', 'François Petit': 'Sub-Zero', 'Keith Cooke': 'Reptile (as Keith H. Cooke)', 'Hakim Alston': 'Fighting Monk', 'Kenneth Edwards': 'Art Lean', 'John Fujioka': 'Chief Priest', 'Daniel Haggard': 'Assistant Director', 'Sandy Helberg': 'Director'}" tt0397044,"{'Agnes Bruckner': 'Vivian', 'Hugh Dancy': 'Aiden', 'Olivier Martinez': 'Gabriel', 'Katja Riemann': 'Astrid', 'Bryan Dick': 'Rafe', 'Chris Geere': 'Ulf', 'Tom Harper': 'Gregor', 'John Kerr': 'Finn', 'Jack Wilson': 'Willem', 'Vitalie Ursu': 'Constani', 'Bogdan Voda': 'Albu', 'Kata Dobó': 'Beatrice', 'Rodica Mandache': 'Mrs. Bellagra', 'Sandu Mihai Gruia': 'Pharmacist (as Sandu Gruia)', 'Helga Racz': 'Young Vivian'}" tt1462758,"{'Ryan Reynolds': 'Paul Conroy', 'José Luis García Pérez': 'Jabir (voice) (as José Luis García-Pérez)', 'Robert Paterson': 'Dan Brenner (voice)', 'Stephen Tobolowsky': 'Alan Davenport (voice)', 'Samantha Mathis': 'Linda Conroy (voice)', 'Ivana Miño': 'Pamela Lutti (voice)', 'Warner Loughlin': 'Maryanne Conroy / Donna Mitchell / Rebecca Browning (voice)', 'Erik Palladino': 'Special Agent Harris (voice)', 'Kali Rocha': '911 Operator (voice)', 'Chris William Martin': 'State Department Rep. (voice)', 'Cade Dundish': 'Shane Conroy (voice)', 'Mary Birdsong': '411 Female Operator (voice) (as Mary Songbird)', 'Kirk Baily': '411 Male Operator (voice)', 'Anne Lockhart': 'CRT Operator (voice)', 'Robert Clotworthy': 'CRT Spokesman (voice)'}" tt0478188,"{'Bruce Boxleitner': 'Lt. Challenger', 'Jeff Denton': 'Ed Malone', 'Rhett Giles': 'John Roxton', 'Sarah Lieving': 'Rita Summerlee', 'Christina Rosenberg': 'Dana', 'Steve Railsback': 'Larry', 'Chriss Anglin': 'Olo', 'Amanda Ward': 'Natalie', 'Boni Yanagisawa': 'Tianka', 'Andrew Lauer': 'Steven (as Andy Lauer)', 'Thomas Downey': 'Reggie (as Tom Downey)', 'Amanda Barton': 'Taylor', 'James Ferris': 'Yuri', 'Jennifer Lee Wiggins': 'Etienne (as Jennifer Wiggins)', 'Angela Horvath': 'Chrissy'}" tt0305357,"{'Cameron Diaz': 'Natalie Cook', 'Drew Barrymore': 'Dylan Sanders', 'Lucy Liu': 'Alex Munday', 'Bernie Mac': 'Jimmy Bosley', 'Crispin Glover': 'Thin Man', 'Justin Theroux': ""Seamus O'Grady"", 'Robert Patrick': 'Ray Carter', 'Demi Moore': 'Madison Lee', 'Rodrigo Santoro': 'Randy Emmers', 'Shia LaBeouf': 'Max', 'Matt LeBlanc': 'Jason', 'Luke Wilson': 'Pete', 'John Cleese': 'Mr. Munday', ""Ja'net DuBois"": 'Momma Bosley', 'Cheung-Yan Yuen': 'Deranged Mongol'}" tt0338216,"{'Phyllis Somerville': 'Pawnbroker', 'Eric Bana': 'Huck Cheever', 'Horatio Sanz': 'Ready Eddie', 'Drew Barrymore': 'Billie Offer', 'Joey Kern': ""Billie's Admirer"", 'Debra Messing': 'Suzanne Offer', 'Delaine Yates': 'Ginger', 'Mykel Shannon Jenkins': 'Gary', 'Robert Duvall': 'L. C. Cheever', 'Charles Martin Smith': 'Roy Durucher', 'Robert Downey Jr.': 'Telephone Jack', 'Saverio Guerra': 'Lester', 'Danny Hoch': 'Bobby Basketball', 'Kenny Cau': 'Chinese Restaurant Waiter', 'Kelvin Han Yee': 'Chico Banh'}" tt0104438,"{'James Caan': 'Tommy Korman', 'Nicolas Cage': 'Jack Singer', 'Sarah Jessica Parker': 'Betsy / Donna', 'Pat Morita': 'Mahi Mahi', 'Johnny Williams': 'Johnny Sandwich', 'John Capodice': 'Sally Molars', 'Robert Costanzo': 'Sidney Tomashefsky', 'Anne Bancroft': 'Bea Singer', 'Peter Boyle': 'Chief Orman', 'Burton Gilliam': 'Roy Bacon - Elvis Impersonator', 'Brent Hinkley': 'Vern', 'Dean Hallo': 'Lyle', 'Seymour Cassel': 'Tony Cataracts', 'Jerry Tarkanian': 'Sid Feder', 'Keone Young': 'Eddie Wong'}" tt1235796,"{'Colin Farrell': 'Syracuse', 'Alicja Bachleda': 'Ondine', 'Dervla Kirwan': 'Maura', 'Alison Barry': 'Annie', ""Marion O'Dwyer"": 'Nurse - Dialysis', 'Tony Curran': 'Alex', ""Mary O'Shea"": 'Fish Co Op Woman', 'Gemma Reeves': ""Draper's Shop Tracy"", 'Stephen Rea': 'Priest', 'Norma Sheahan': 'Librarian', 'Emil Hostina': 'Vladic', 'Conor Power': 'Eoin', 'Olwyn Hanley': 'Katie', 'Brendan McCormack': 'Fishery Board George', 'Mark Doherty': 'Fishery Board Man II'}" tt0460740,"{'Michelle Ryan': 'Suzy', 'Sean Biggerstaff': 'Ben Willis', 'Erica Ellis': 'Canteen Lady', 'Jay Bowen': 'Steve Jenkins', 'Shaun Evans': 'Sean Higgins', 'Kenneth Fahy': 'Art Class Life Model', 'Stan Ellis': 'Art Class Teacher', 'Katie Ball': 'Art Class Girl', 'Emilia Fox': 'Sharon Pintey', 'Stuart Goodwin': 'Jenkins', 'Celesta Hodge': ""Deer Girl in Sainsbury's"", 'Nia Roberts': 'Woman at the Till', 'Michael Dixon': 'Barry Brickman', 'Michael Lambourne': 'Matt Stephens', 'Hatti Riemer': 'Old Lady at Deli Counter'}" tt0286716,"{'Eric Bana': 'Bruce Banner', 'Jennifer Connelly': 'Betty Ross', 'Sam Elliott': 'Ross', 'Josh Lucas': 'Talbot', 'Nick Nolte': 'Father', 'Paul Kersey': 'Young David Banner', 'Cara Buono': 'Edith Banner', 'Todd Tesen': 'Young Ross', 'Kevin Rankin': 'Harper', 'Celia Weston': 'Mrs. Krensler', 'Mike Erwin': 'Teenage Bruce Banner', 'Lou Ferrigno': 'Security Guard', 'Stan Lee': 'Security Guard', 'Regi Davis': 'Security Guard', 'Craig Damon': 'Security Guard'}" tt0352277,"{'Kevin Kline': 'Cole Porter', 'Ashley Judd': 'Linda Porter', 'Jonathan Pryce': 'Gabe', 'Kevin McNally': 'Gerald Murphy', 'Sandra Nelson': 'Sara Murphy', 'Allan Corduner': 'Monty Woolley', 'Peter Polycarpou': 'L.B. Mayer', 'Keith Allen': 'Irving Berlin', 'James Wilby': 'Edward Thomas', 'Kevin McKidd': 'Bobby Reed', 'Richard Dillane': 'Bill Wrather', 'Edward Baker-Duly': 'Boris Kochno', 'Angie Hill': 'Ellin Berlin', 'Harry Ditson': 'Dr. Moorhead', 'Tayler Hamilton': 'Honoria Murphy'}" tt0077294,"{'Elliott Gould': 'Robert Caulfield', 'James Brolin': 'Charles Brubaker', 'Brenda Vaccaro': 'Kay Brubaker', 'Sam Waterston': 'Peter Willis', 'O.J. Simpson': 'John Walker', 'Hal Holbrook': 'Dr. James Kelloway', 'Karen Black': 'Judy Drinkwater', 'Telly Savalas': 'Albain', 'David Huddleston': 'Hollis Peaker', 'David Doyle': 'Walter Loughlin', 'Lee Bryant': 'Sharon Willis', 'Denise Nicholas': 'Betty Walker', 'Robert Walden': 'Elliot Whitter', 'James Sikking': 'Control Room Man (as Jim Sikking)', 'Alan Fudge': 'Capsule Communicator'}" tt0055031,"{'Spencer Tracy': 'Chief Judge Dan Haywood', 'Burt Lancaster': 'Dr. Ernst Janning', 'Richard Widmark': 'Col. Tad Lawson', 'Marlene Dietrich': 'Mrs. Bertholt', 'Maximilian Schell': 'Hans Rolfe', 'Judy Garland': 'Irene Hoffman', 'Montgomery Clift': 'Rudolph Petersen', 'William Shatner': 'Capt. Harrison Byers', 'Werner Klemperer': 'Emil Hahn', 'Kenneth MacKenna': 'Judge Kenneth Norris', 'Torben Meyer': 'Werner Lampe', 'Joseph Bernard': 'Maj. Abe Radnitz', 'Alan Baxter': 'Brig. Gen. Matt Merrin', 'Edward Binns': 'Sen. Burkette', 'Virginia Christine': 'Mrs. Halbestadt'}" tt0053946,"{'Spencer Tracy': 'Henry Drummond', 'Fredric March': 'Matthew Harrison Brady', 'Gene Kelly': 'E. K. Hornbeck', 'Dick York': 'Bertram T. Cates', 'Donna Anderson': 'Rachel Brown', 'Harry Morgan': 'Judge Mel Coffey', 'Claude Akins': 'Rev. Jeremiah Brown', 'Elliott Reid': 'Prosecutor Tom Davenport', 'Paul Hartman': 'Bailiff Mort Meeker', 'Philip Coolidge': 'Mayor Jason Carter', 'Jimmy Boyd': 'Howard', 'Noah Beery Jr.': 'John Stebbins', 'Norman Fell': 'WGN Radio Technician', 'Gordon Polk': 'George Sillers', 'Hope Summers': 'Mrs. Krebs - Righteous Townswoman'}" tt0061418,"{'Warren Beatty': 'Clyde Barrow', 'Faye Dunaway': 'Bonnie Parker', 'Michael J. Pollard': 'C.W. Moss', 'Gene Hackman': 'Buck Barrow', 'Estelle Parsons': 'Blanche', 'Denver Pyle': 'Frank Hamer', 'Dub Taylor': 'Ivan Moss', 'Evans Evans': 'Velma Davis', 'Gene Wilder': 'Eugene Grizzard'}" tt0062765,"{'Steve McQueen': 'Bullitt', 'Robert Vaughn': 'Chalmers', 'Jacqueline Bisset': 'Cathy', 'Don Gordon': 'Delgetti', 'Robert Duvall': 'Weissberg', 'Simon Oakland': 'Captain Bennet', 'Norman Fell': 'Baker', 'Georg Stanford Brown': 'Dr. Willard', 'Justin Tarr': 'Eddy', 'Carl Reindel': 'Stanton', 'Felice Orlandi': 'Renick', 'Vic Tayback': 'Pete Ross (as Victor Tayback)', 'Robert Lipton': '1st Aide', 'Ed Peck': 'Westcott', 'Pat Renella': 'John Ross'}" tt0032599,"{'Cary Grant': 'Walter Burns', 'Rosalind Russell': 'Hildy Johnson', 'Ralph Bellamy': 'Bruce Baldwin', 'Gene Lockhart': 'Sheriff Hartwell', 'Porter Hall': 'Murphy', 'Ernest Truex': 'Bensinger', 'Cliff Edwards': 'Endicott', 'Clarence Kolb': 'Mayor', 'Roscoe Karns': 'McCue', 'Frank Jenks': 'Wilson', 'Regis Toomey': 'Sanders', 'Abner Biberman': 'Louie', 'Frank Orth': 'Duffy', 'John Qualen': 'Earl Williams', 'Helen Mack': 'Mollie Malloy'}" tt0233277,"{'Joan Plowright': 'Martha Sowerby', 'Cherie Lunghi': 'Lady Mary Craven', 'Aled Roberts': 'Robert', 'Florence Hoath': 'Geraldine', 'Justin Girdler': 'Stephen', 'Danielle McCormack': 'Penelope', 'Gwyneth Powell': 'Toby, The Maid', 'Kate Ludlow': 'Ora, The Maid', 'George Baker': 'Will Weatherstaff', 'Liza Ross': 'Sister Mary', 'Camilla Belle': 'Lizzie Buscana', 'Leigh Lawson': 'Sir Colin Craven', 'Lisa Martin': 'Doris', 'David Warner': 'Dr. Snodgrass', 'Sheila Steafel': 'Mrs. Chillblaine'}" tt0109279,"{'Docs Keepin Time': 'Black Beauty (as Docs Keepin Time - American Quarter Horse)', 'Alan Cumming': 'Black Beauty (voice)', 'Sean Bean': 'Farmer Grey', 'David Thewlis': 'Jerry Barker', 'Jim Carter': 'John Manly', 'Peter Davison': 'Squire Gordon', 'Alun Armstrong': 'Reuben Smith', 'John McEnery': 'Mr. York', 'Eleanor Bron': 'Lady Wexmire', 'Peter Cook': 'Lord Wexmire', 'Adrian Ross Magenty': 'Lord George', 'Lyndon Davies': 'Head Groom', 'Georgina Armstrong': 'Jessica Gordon', 'Gemma Paternoster': 'Molly Gordon', 'Anthony Walters': 'Alfred Gordon'}" tt1895587,"{'Mark Ruffalo': 'Mike Rezendes', 'Michael Keaton': ""Walter 'Robby' Robinson"", 'Rachel McAdams': 'Sacha Pfeiffer', 'Liev Schreiber': 'Marty Baron', 'John Slattery': 'Ben Bradlee Jr.', ""Brian d'Arcy James"": 'Matt Carroll', 'Stanley Tucci': 'Mitchell Garabedian', 'Elena Wohl': 'Barbara', 'Gene Amoroso': 'Steve Kurkjian', 'Doug Murray': 'Peter Canellos', 'Sharon McFarlane': 'Helen Donovan', 'Jamey Sheridan': 'Jim Sullivan', 'Neal Huff': 'Phil Saviano', 'Billy Crudup': 'Eric Macleish', 'Robert B. Kennedy': 'Court Clerk Mark'}" tt1024648,"{'Ben Affleck': 'Tony Mendez', 'Bryan Cranston': ""Jack O'Donnell"", 'Alan Arkin': 'Lester Siegel', 'John Goodman': 'John Chambers', 'Victor Garber': 'Ken Taylor', 'Tate Donovan': 'Bob Anders', 'Clea DuVall': 'Cora Lijek', 'Scoot McNairy': 'Joe Stafford', 'Rory Cochrane': 'Lee Schatz', 'Christopher Denham': 'Mark Lijek', 'Kerry Bishé': 'Kathy Stafford', 'Kyle Chandler': 'Hamilton Jordan', 'Chris Messina': 'Malinov', 'Zeljko Ivanek': 'Robert Pender', 'Titus Welliver': 'Bates'}" tt0810819,"{'Alicia Vikander': 'Gerda', 'Eddie Redmayne': 'Lili', 'Tusse Silberg': 'Older Woman', 'Adrian Schiller': 'Rasmussen', 'Amber Heard': 'Ulla', 'Emerald Fennell': 'Elsa', 'Henry Pettigrew': 'Niels', 'Claus Bue': 'Man at Window', 'Peter Krag': 'Stage Doorman', 'Angela Curran': 'Dresser', 'Pixie': 'Hvappe', 'Richard Dixon': 'Fonnesbech', 'Ben Whishaw': 'Henrik', 'Pip Torrens': 'Dr. Hexler', 'Paul Bigley': 'Man in Gallery'}" tt0048545,"{'James Dean': 'Jim Stark', 'Natalie Wood': 'Judy', 'Sal Mineo': ""John 'Plato' Crawford"", 'Jim Backus': 'Frank Stark', 'Ann Doran': 'Mrs. Carol Stark', 'Corey Allen': 'Buzz Gunderson', 'William Hopper': ""Judy's Father"", 'Rochelle Hudson': ""Judy's Mother"", 'Dennis Hopper': 'Goon', 'Edward Platt': 'Ray Fremick', 'Steffi Sidney': 'Mil', 'Marietta Canty': 'Crawford Family Maid', 'Virginia Brissac': ""Mrs. Stark - Jim's Grandmother"", 'Beverly Long': 'Helen', 'Ian Wolfe': 'Dr. Minton'}" tt0049730,"{'John Wayne': 'Ethan Edwards', 'Jeffrey Hunter': 'Martin Pawley', 'Vera Miles': 'Laurie Jorgensen', 'Ward Bond': 'Rev. Capt. Samuel Johnston Clayton', 'Natalie Wood': 'Debbie Edwards - Age 15', 'John Qualen': 'Lars Jorgensen', 'Olive Carey': 'Mrs. Jorgensen', 'Henry Brandon': 'Scar / Cicatriz', 'Ken Curtis': 'Charlie McCorry', 'Harry Carey Jr.': 'Brad Jorgensen', 'Antonio Moreno': 'Emilio Gabriel Fernandez y Figueroa', 'Hank Worden': 'Mose Harper', 'Beulah Archuletta': 'Look', 'Walter Coy': 'Aaron Edwards', 'Dorothy Jordan': 'Martha Edwards'}" tt0475290,"{'Josh Brolin': 'Eddie Mannix', 'George Clooney': 'Baird Whitlock', 'Alden Ehrenreich': 'Hobie Doyle', 'Ralph Fiennes': 'Laurence Laurentz', 'Scarlett Johansson': 'DeeAnna Moran', 'Tilda Swinton': 'Thora Thacker / Thessaly Thacker', 'Channing Tatum': 'Burt Gurney', 'Frances McDormand': 'C.C. Calhoun', 'Jonah Hill': 'Joe Silverman', 'Veronica Osorio': 'Carlotta Valdez', 'Heather Goldenhersh': 'Natalie - Secretary', 'Alison Pill': 'Mrs. Mannix', 'Max Baker': 'Head Communist Writer', 'Fisher Stevens': 'Communist Writer', 'Patrick Fischler': 'Communist Writer'}" tt3203606,"{'Bryan Cranston': 'Dalton Trumbo', 'Michael Stuhlbarg': 'Edward G. Robinson', 'David Maldonado': 'Rocco (as Dave Maldonado)', 'John Getz': 'Sam Wood', 'Diane Lane': 'Cleo Trumbo', 'Laura Flannery': 'Party Goer', 'Helen Mirren': 'Hedda Hopper', 'David James Elliott': 'John Wayne', 'Toby Nichols': 'Chris Trumbo (age 6-10) (as Tobias McDowell Nichols)', 'Joseph S. Martino': 'Rally Participant', 'Madison Wolfe': 'Niki Trumbo (age 8-11)', 'Jason Bayle': 'Young Father', 'James DuMont': 'J. Parnell Thomas', 'Alan Tudyk': 'Ian McLellan Hunter', 'Louis C.K.': 'Arlen Hird'}" tt0033467,"{'Joseph Cotten': 'Jedediah Leland / Screening Room Reporter', 'Dorothy Comingore': 'Susan Alexander Kane', 'Agnes Moorehead': 'Mary Kane', 'Ruth Warrick': 'Emily Monroe Norton Kane', 'Ray Collins': 'James W. Gettys', 'Erskine Sanford': 'Herbert Carter / Screening Room Reporter', 'Everett Sloane': 'Mr. Bernstein', 'William Alland': 'Jerry Thompson', 'Paul Stewart': 'Raymond', 'George Coulouris': 'Walter Parks Thatcher', 'Fortunio Bonanova': 'Matiste', 'Gus Schilling': 'The Headwaiter / Screening Room Reporter', 'Philip Van Zandt': 'Mr. Rawlston', 'Georgia Backus': 'Miss Anderson', 'Harry Shannon': ""Kane's Father""}" tt1790885,"{'Jason Clarke': 'Dan', 'Reda Kateb': 'Ammar', 'Jessica Chastain': 'Maya', 'Kyle Chandler': 'Joseph Bradley', 'Jennifer Ehle': 'Jessica', 'Harold Perrineau': 'Jack', 'Jeremy Strong': 'Thomas', 'J.J. Kandel': 'J.J.', 'Wahab Sheikh': 'Detainee on Monitor', 'Alexander Karim': 'Detainee on Monitor', 'Nabil Elouahabi': 'Detainee on Monitor', 'Aymen Hamdouchi': 'Detainee on Monitor', 'Simon Abkarian': 'Detainee on Monitor', 'Ali Marhyar': 'Interrogator on Monitor', 'Parker Sawyers': 'Interrogator on Monitor'}" tt4438848,"{'Seth Rogen': 'Mac Radner', 'Zac Efron': 'Teddy Sanders', 'Rose Byrne': 'Kelly Radner', 'Chloë Grace Moretz': 'Shelby', 'Ike Barinholtz': 'Jimmy', 'Kiersey Clemons': 'Beth', 'Dave Franco': 'Pete', 'Jerrod Carmichael': 'Garf', 'Christopher Mintz-Plasse': 'Scoonie', 'Beanie Feldstein': 'Nora', 'Clara Mamet': 'Maranda', 'Awkwafina': 'Christine', 'Selena Gomez': 'Phi Lambda President', 'Hannibal Buress': 'Officer Watkins', 'Elise Vargas': 'Stella'}" tt1971352,"{'Ann Dowd': 'Sandra', 'Matt Servitto': 'Supplier', 'Dreama Walker': 'Becky', 'Pat Healy': 'Officer Daniels', 'Philip Ettinger': 'Kevin', 'Ashlie Atkinson': 'Marti', 'Nikiya Mathis': 'Connie', 'Ralph Rodriguez': 'Julio', 'Stephen Payne': 'Harold', 'Bill Camp': 'Van', 'Amelia Fowler': 'Brie', 'John Merolla': 'Customer', 'James McCaffrey': 'Detective Neals', 'Desmin Borges': 'Officer Morris', 'Matt Skibiak': 'Robert Gilmour (as Matthew Skibiak)'}" tt0100935,"{'Nicolas Cage': 'Sailor Ripley', 'Laura Dern': 'Lula', 'Willem Dafoe': 'Bobby Peru', 'J.E. Freeman': 'Santos', 'Crispin Glover': 'Dell', 'Diane Ladd': 'Marietta Fortune', 'Calvin Lockhart': 'Reggie', 'Isabella Rossellini': 'Perdita', 'Harry Dean Stanton': 'Johnnie Farragut', 'Grace Zabriskie': 'Juana', 'Sherilyn Fenn': 'Girl in Accident', 'Marvin Kaplan': 'Uncle Pooch', 'William Morgan Sheppard': 'Mr. Reindeer (as W. Morgan Sheppard)', 'David Patrick Kelly': 'Dropshadow', 'Freddie Jones': 'George Kovich'}" tt0056193,"{'James Mason': 'Prof. Humbert Humbert', 'Shelley Winters': 'Charlotte Haze', 'Sue Lyon': 'Lolita', 'Gary Cockrell': 'Richard T. Schiller', 'Jerry Stovin': 'John Farlow', 'Diana Decker': 'Jean Farlow', 'Lois Maxwell': 'Nurse Mary Lore', 'Cec Linder': 'Physician', 'Bill Greene': 'George Swine', 'Shirley Douglas': 'Mrs. Starch', 'Marianne Stone': 'Vivian Darkbloom', 'Marion Mathie': 'Miss Lebone', 'James Dyrenforth': 'Frederick Beale Sr.', 'Maxine Holden': 'Miss Fromkiss', 'John Harrison': 'Tom'}" tt4530832,"{'Chloe Farnworth': 'Nakada', 'Cole Parker': 'Thorne', 'John Freeman': 'Dallas', 'Phillip Andre Botello': 'Kevin', 'LaNell Cooper': 'Sylvia', 'Nikki Bohm': 'Macon', 'Jane Hae Kim': 'Susan (as Jane H. Kim)', 'Marianne Bourg': 'Orsini', 'Kelcey Watson': 'Dirk', 'Michael Wayne Foster': 'Mandheim (as Mike Foster)', 'Micah Fitzgerald': 'Reaver', 'Tonia Marie Rosée': 'Ason', 'Frezno': 'Tophat', 'Jerry G. Angelo': 'Deerhead', 'Victoria Clare': 'Emily'}" tt1232829,"{'Jonah Hill': 'Schmidt', 'Channing Tatum': 'Jenko', 'Brie Larson': 'Molly Tracey', 'Dave Franco': 'Eric Molson', 'Rob Riggle': 'Mr. Walters', 'DeRay Davis': 'Domingo', 'Ice Cube': 'Captain Dickson', 'Dax Flame': 'Zack', 'Chris Parnell': 'Mr. Gordon', 'Ellie Kemper': 'Ms. Griggs', 'Jake Johnson': 'Principal Dadier', 'Nick Offerman': 'Deputy Chief Hardy', 'Holly Robinson Peete': 'Officer Judy Hoffs', 'Johnny Pemberton': 'Delroy', 'Stanley Wong': 'Roman'}" tt3534282,"{'Sam Rockwell': 'Don Verdean', 'Amy Ryan': 'Carol Jensen', 'Will Forte': 'Pastor Fontaine', 'Danny McBride': 'Tony Lazarus', 'Jemaine Clement': 'Boaz', 'Steve Park': 'Poon-Yen (as Stephen Park)', 'Leslie Bibb': 'Joylinda Lazarus', 'Sky Elobar': 'Dr. Stanley', 'P.J. Boudousqué': 'Gary (as P J Boudousque)', 'Yaniv Moyal': 'Israeli Police Officer', 'Jared Shipley': 'Lab Tech', 'Logan Rogan': 'Tourist', 'Michael Flynn': 'Church Elder', 'Pete Rockwell': 'Antique Store Owner', 'Harry Bonner': 'Security Guard'}" tt3457734,"{'Bridey Elliott': 'Harper', 'Clare McNulty': 'Allie', 'Neil Casey': 'Ebb', 'Alysia Reiner': 'Cobble Hill Mom', 'Reggie Watts': 'Reggie Watts', 'Griffin Newman': 'Sam', 'Jeffrey Scaperrotta': 'Russ', 'Peter Vack': 'Benji', 'Mark Wing-Davey': ""Harper's Dad (voice)"", 'Will Hines': 'Abusive Cobble Hill Man', 'Max Jenkins': 'Ashley', 'John Early': 'John', 'Evan Hoyt Thompson': 'Grant', 'Desireé Nash': 'Marin', 'Becky Yamamoto': 'Amanda'}" tt1783732,"{'Chase Williamson': 'Dave', 'Rob Mayes': 'John', 'Paul Giamatti': 'Arnie Blondestone', 'Clancy Brown': 'Dr. Albert Marconi', 'Glynn Turman': 'Detective', 'Doug Jones': 'Roger North', 'Daniel Roebuck': 'Largeman', 'Fabianne Therese': 'Amy', 'Jonny Weston': 'Justin White', 'Jimmy Wong': 'Fred Chu', 'Tai Bennett': 'Robert Marley', 'Allison Weissman': 'Shelly', 'Ethan Erickson': 'Sergeant McElroy', 'Kevin Michael Richardson': 'Korrok (voice)', 'Riley Rose Critchlow': 'Girl with Rastafarian'}" tt4094724,"{'Frank Grillo': 'Leo Barnes', 'Elizabeth Mitchell': 'Senator Charlie Roan', 'Mykelti Williamson': 'Joe Dixon', 'Joseph Julian Soria': 'Marcos', 'Betty Gabriel': 'Laney Rucker', 'Terry Serpico': 'Earl Danzinger', 'Edwin Hodge': 'Dante Bishop', 'Kyle Secor': 'Minister Edwidge Owens', 'Barry Nolan': 'Reporter #1', 'Liza Colón-Zayas': 'Dawn (as Liza Colon-Zayas)', 'Ethan Phillips': 'Chief Couper', 'Adam Cantor': 'Tall Eric Busmalis', 'Christopher James Baker': 'Harmon James', 'Jared Kemp': 'Rondo', 'Brittany Mirabile': 'Schoolgirl #1 Freakbride / Kimmy (as Brittany Mirabilé)'}" tt3079016,"{'Simon Helberg': 'Quinn', 'Melanie Lynskey': 'Devon', 'Zachary Quinto': 'Jameson', 'Judith Light': 'Jean', 'Maggie Grace': 'Kelsey', 'Alfred Molina': 'Terry', 'Jason Ritter': 'Kurt', 'Meredith Hagner': 'Leah', 'Geoffrey Cantor': 'Neighbor', 'Dana Ivey': 'Francoise', 'Jamil Mena': 'Isaac', 'Lizan Mitchell': 'Nurse', 'Ebon Moss-Bachrach': 'Guillaume', 'Fritz Weaver': 'Phillipe', 'Dennis Carter Jr.': 'Villager'}" tt1440732,"{'Robert Pattinson': 'Georges Duroy', 'Uma Thurman': 'Madeleine Forestier', 'Kristin Scott Thomas': 'Virginie Rousset', 'Christina Ricci': 'Clotilde de Marelle', 'Colm Meaney': 'Monsieur Rousset', 'Philip Glenister': 'Charles Forestier', 'Holliday Grainger': 'Suzanne Rousset', 'Natalia Tena': 'Rachel the Prostitute', 'James Lance': 'François Laroche', 'Anthony Higgins': 'Comte de Vaudrec', 'Thomas Arnold': 'Louis', 'Timothy Walker': 'Solicitor', 'Pip Torrens': 'Paul the Butler', 'Christopher Fulford': 'Police Commisioner', 'Amy Marston': 'Nanny'}" tt3746298,"{'Dean Cain': 'Mason Danvers', 'Paul Wight': ""Victor Abbott (as Paul 'Big Show' Wight)"", 'Michael Eklund': 'Warden Snyder', 'Benjamin Hollingsworth': 'Joel Gainer (as Ben Hollingsworth)', 'Adrian Holmes': 'Drexel', 'Matthew MacCaull': 'Ben', 'Kyra Zagorsky': 'Jocelyn', 'Aleks Paunovic': 'Griffin Abbott', 'Jonathan Walker': 'Lester', 'Dee Jay Jackson': 'Will', 'Juan Riedinger': 'Booker', 'Leo Rano': 'R.B.', 'David Allan Pearson': 'Oz', 'Garfield Wilson': 'Dee', 'William Stewart': 'Flynn'}" tt2869728,"{'Ice Cube': 'James Payton', 'Kevin Hart': 'Ben Barber', 'Tika Sumpter': 'Angela Payton', 'Benjamin Bratt': 'Antonio Pope', 'Olivia Munn': 'Maya', 'Ken Jeong': 'AJ', 'Bruce McGill': 'Lt. Brooks', 'Michael Rose': 'The Hitter / Gates', 'Sherri Shepherd': 'Cori', 'Arturo Del Puerto': 'Alonso', 'Eric Goins': 'Assface', 'Carlos Gómez': 'Captain Hernandez (as Carlos Gomez)', 'Utkarsh Ambudkar': 'Amir', 'Glen Powell': 'Troy', 'Nadine Velazquez': 'Tasha'}" tt3760922,"{'Nia Vardalos': 'Toula', 'John Corbett': 'Ian', 'Michael Constantine': 'Gus', 'Lainie Kazan': 'Maria', 'Andrea Martin': 'Aunt Voula', 'Gia Carides': 'Nikki', 'Joey Fatone': 'Angelo', 'Elena Kampouris': 'Paris', 'Alex Wolff': 'Bennett', 'Louis Mandylor': 'Nick', 'Bess Meisler': 'Mana-Yiayia', 'Bruce Gray': 'Rodney Miller', 'Fiona Reid': 'Harriet Miller', 'Ian Gomez': 'Mike', 'Jayne Eastwood': 'Mrs. White'}" tt1334537,"{'Mark Duplass': 'Ben', 'Alycia Delmore': 'Anna', 'Joshua Leonard': 'Andrew', 'Lynn Shelton': 'Monica', 'Trina Willard': 'Lily', 'Olivia': 'Kid on Bike', 'Stellan Mathiesen': 'Kid on Bike', 'Steven Schardt': 'Disgruntled Driver', 'David Bundgren': ""'Dionysus' Extra"", 'J. Martin Dinn': ""'Dionysus' Extra"", 'Paddy Evans-Winfield': ""'Dionysus' Extra (as Patrick Evans-Winfield)"", 'Joy Brooke Fairfield': ""'Dionysus' Extra"", 'Monica Fisk': ""'Dionysus' Extra"", 'Lori Goldston': ""'Dionysus' Extra"", 'Jane Hall': ""'Dionysus' Extra""}" tt0083739,"{'Perry King': 'Andrew Norris', 'Merrie Lynn Ross': 'Diane Norris', 'Timothy Van Patten': 'Peter Stegman', 'Roddy McDowall': 'Terry Corrigan', 'Stefan Arngrim': 'Drugstore', 'Michael J. Fox': 'Arthur (as Michael Fox)', 'Keith Knight': 'Barnyard', 'Lisa Langlois': 'Patsy', 'Neil Clifford': 'Fallon', 'Al Waxman': 'Detective Stewiski', 'Erin Noble': 'Deneen (as Erin Flannery)', 'David Gardner': 'Principal Morganthau', 'Steve Pernie': 'Rejack', 'Robert Reece': 'Leroy', 'Joseph Kelly': 'Jimmy'}" tt0071517,"{'Pam Grier': 'Foxy Brown', 'Antonio Fargas': 'Link Brown', 'Peter Brown': 'Steve Elias', 'Terry Carter': 'Michael Anderson', 'Kathryn Loder': 'Katherine Wall', 'Harry Holcombe': 'Judge Fenton', 'Sid Haig': 'Hays', 'Juanita Brown': 'Claudia', 'Sally Ann Stroud': 'Deb', 'Bob Minor': 'Oscar', 'Tony Giorgio': 'Eddie', 'Fred Lerner': 'Bunyon', 'Judith Cassmore': 'Vicki (as Judy Cassmore)', 'H.B. Haggerty': 'Brandi', ""Boyd 'Red' Morgan"": 'Slauson (as Boyd Red Morgan)'}" tt3960412,"{'Andy Samberg': 'Conner', 'Jorma Taccone': 'Owen', 'Akiva Schaffer': 'Lawrence', 'Sarah Silverman': 'Paula', 'Tim Meadows': 'Harry', 'Maya Rudolph': 'Deborah', 'Joan Cusack': 'Tilly', 'Imogen Poots': 'Ashley', 'Chris Redd': 'Hunter', 'Edgar Blackmon': 'Eddie', 'James Buckley': 'Sponge', 'Evan Fine': '10-Year Old Conner', 'Maxwell Jenkins': '10-Year Old Owen', 'Elliott Smith': '10-Year Old Lawrence', 'Quest Love': ""Ahmir 'Questlove' Thompson / The Roots (as Ahmir 'Questlove' Thompson)""}" tt0366551,"{'John Cho': 'Harold Lee', 'Ethan Embry': 'Billy Carver', 'Rob Tinkler': 'J.D. (as Robert Tinkler)', 'Fred Willard': 'Dr. Willoughby', 'Kal Penn': 'Kumar Patel', 'Steve Braun': 'Cole', 'Dan Bochart': 'Extreme Sports Punk #1', 'Paula Garcés': 'Maria (as Paula Garcès)', 'Mike Sheer': ""'I'm So High' Kid"", 'Christopher Thompson': ""'Don't You Wanna Be Cool' Kid"", 'David Krumholtz': 'Goldstein', 'Eddie Kaye Thomas': 'Rosenberg', 'Angelo Tsarouchas': 'Mean Tollbooth Guy (as Angelo Tsachouras)', 'Anthony Anderson': 'Burger Shack Employee', 'Siu Ta': 'Cindy Kim'}" tt0910936,"{'Seth Rogen': 'Dale Denton', 'James Franco': 'Saul Silver', 'Danny McBride': 'Red', 'Kevin Corrigan': 'Budlofsky', 'Craig Robinson': 'Matheson', 'Gary Cole': 'Ted Jones', 'Rosie Perez': 'Carol / Female Cop', 'Ed Begley Jr.': 'Robert', 'Nora Dunn': 'Shannon', 'Amber Heard': 'Angie Anderson', 'Joe Lo Truglio': 'Mr. Edwards', 'Arthur Napiontek': 'Clark', 'Cleo King': 'Police Liaison Officer', 'Bill Hader': 'Private Miller', 'James Remar': 'General Bratt'}" tt4196776,"{'Matt Damon': 'Jason Bourne', 'Tommy Lee Jones': 'CIA Director Robert Dewey', 'Alicia Vikander': 'Heather Lee', 'Vincent Cassel': 'Asset', 'Julia Stiles': 'Nicky Parsons', 'Riz Ahmed': 'Aaron Kalloor', 'Ato Essandoh': 'Craig Jeffers', 'Scott Shepherd': 'Director NI Edwin Russell', 'Bill Camp': 'Malcolm Smith', 'Vinzenz Kiefer': 'Christian Dassault', 'Stephen Kunken': 'Baumen', 'Ben Stylianou': 'Greek Van Driver', 'Kaya Yuzuki': 'Hacker', ""Matthew O'Neill"": ""Lead Hub Tech (as Matthew O'Neil)"", 'Lizzie Phillips': 'Cyber Hub Tech'}" tt0149261,"{'Thomas Jane': 'Carter Blake', 'Saffron Burrows': 'Dr. Susan McAlester', 'Samuel L. Jackson': 'Russell Franklin', 'Jacqueline McKenzie': 'Janice Higgins', 'Michael Rapaport': 'Tom Scoggins', 'Stellan Skarsgård': 'Jim Whitlock', 'LL Cool J': 'Preacher', 'Aida Turturro': 'Brenda Kerns', 'Cristos': 'Boat Captain', 'Daniel Rey': 'Helicopter Pilot (as Daniel Bahimo Rey)', 'Valente Rodriguez': 'Helicopter Co-Pilot', 'Brent Roam': 'Helicopter Winch Operator', 'Eyal Podell': 'Boy #1', 'Erinn Bartlett': 'Girl #1', 'Dan Thiel': 'Boy #2'}" tt0107362,"{'Arnold Schwarzenegger': 'Jack Slater', 'F. Murray Abraham': 'John Practice', 'Art Carney': 'Frank', 'Charles Dance': 'Benedict', 'Frank McRae': 'Dekker', 'Tom Noonan': 'Ripper', 'Robert Prosky': 'Nick', 'Anthony Quinn': 'Vivaldi', 'Mercedes Ruehl': 'Mom', ""Austin O'Brien"": 'Danny', 'Ian McKellen': 'Death (as Sir Ian McKellan)', 'Professor Toru Tanaka': 'Tough Asian Man', 'Joan Plowright': 'Teacher', 'Keith Barish': 'Keith Barish', 'Jim Belushi': 'James Belushi'}" tt1290471,"{'C. Thomas Howell': 'Josh Myron', 'Judd Nelson': 'Charlie', 'Darren Dalton': 'Prewitt', 'Sinead McCafferty': 'Sky', 'Bug Hall': 'Man', 'Cameron Bender': 'Sam', 'Jonathan Sanders': 'Aide', 'Lew Knopp': 'Davis', 'Reiko Kaneshiro': 'Lisa', 'Jason Ellefson': 'Dr. Shankman', 'Graham Denman': 'Urchin', 'Scotty Carlisle': 'Guard', 'Prince Pheenix Wade': 'Guard', 'Theron Cook': 'Guard (as Theron Cook II)', 'Jose Prendes': 'Guard'}" tt2191701,"{'Adam Sandler': 'Lenny Feder', 'Kevin James': 'Eric Lamonsoff', 'Chris Rock': 'Kurt McKenzie', 'David Spade': 'Marcus Higgins', 'Salma Hayek': 'Roxanne Chase-Feder', 'Maya Rudolph': 'Deanne McKenzie', 'Maria Bello': 'Sally Lamonsoff', 'Nick Swardson': 'Nick', 'Steve Buscemi': 'Wiley', 'Colin Quinn': 'Dickie Bailey', 'Tim Meadows': 'Malcolm', 'Jon Lovitz': 'Squats Fitness Janitor', ""Shaquille O'Neal"": 'Officer Fluzoo', 'Alexander Ludwig': 'Braden', 'Georgia Engel': 'Mrs. Lamonsoff'}" tt1375670,"{'Adam Sandler': 'Lenny Feder', 'Kevin James': 'Eric Lamonsoff', 'Chris Rock': 'Kurt McKenzie', 'David Spade': 'Marcus Higgins', 'Rob Schneider': 'Rob Hilliard', 'Salma Hayek': 'Roxanne Chase-Feder (as Salma Hayek Pinault)', 'Maria Bello': 'Sally Lamonsoff', 'Maya Rudolph': 'Deanne McKenzie', 'Joyce Van Patten': 'Gloria', 'Ebony Jo-Ann': 'Mama Ronzoni', 'Di Quon': 'Rita', 'Steve Buscemi': 'Wiley', 'Colin Quinn': 'Dickie Bailey', 'Tim Meadows': 'Malcolm', 'Madison Riley': 'Jasmine Hilliard'}" tt3499424,"{'John Hennigan': 'Hercules', 'Christian Oliver': 'Arius', 'Marcus Shirock': 'Cyrus', 'James Duval': 'Horace', 'Dylan Vox': 'Nikos', 'Christina Wolfe': 'Princess Theodora (as Christina Ulfsparre)', 'Alistair A. Duff': 'Bartender', 'Foued Mansour': 'Creepy Caretaker', 'Jeremy M. Inman': 'Tymek', 'Jennifer Marie Paul': 'Iona', 'Khalid Ben Chegra': 'King Demetrius (as Ben Chagra Khalid)', 'Aurelie Armelle Simone Chatellier': 'Queen Evenya', 'Rim Tounssi': 'Megara', 'Yassine Amer': 'Abdera', 'Youness Lahlafi': 'Jacob'}" tt1663662,"{'Charlie Hunnam': 'Raleigh Becket', 'Diego Klattenhoff': 'Yancy Becket', 'Idris Elba': 'Stacker Pentecost', 'Rinko Kikuchi': 'Mako Mori', 'Charlie Day': 'Dr. Newton Geiszler', 'Burn Gorman': 'Gottlieb', 'Max Martini': 'Herc Hansen', 'Robert Kazinsky': 'Chuck Hansen (as Rob Kazinsky)', 'Clifton Collins Jr.': 'Ops Tendo Choi', 'Ron Perlman': 'Hannibal Chau', 'Brad William Henke': 'Construction Foreman', 'Larry Joe Campbell': 'Construction Worker', 'Mana Ashida': 'Young Mako', 'Santiago Segura': 'Wizened Man', 'Joe Pingue': 'Captain Merrit'}" tt7069210,"{'Vera Farmiga': 'Lorraine Warren', 'Patrick Wilson': 'Ed Warren', 'Julian Hilliard': 'David Glatzel', 'Charlene Amoia': 'Judy Glatzel', 'Sterling Jerins': 'Judy Warren', ""Ruairi O'Connor"": 'Arne', 'Mitchell Hoog': 'Young Ed', 'Shannon Kook': 'Drew Thomas', 'Ronnie Gene Blevins': 'Bruno', 'Sarah Catherine Hook': 'Debbie Glatzel', 'Lindsay Ayliffe': 'Judge', 'Megan Ashley Brown': 'Young Lorraine'}" tt3276924,"{'Robert De Niro': 'The Pope', 'Jeffrey Dean Morgan': 'Luke Vaughn', 'Dave Bautista': 'Jason Cox', 'Kate Bosworth': 'Sydney', 'Gina Carano': 'Kris', 'Morris Chestnut': 'Dog (Derek Prince)', 'Lydia Hull': 'Pauline', 'Mark-Paul Gosselaar': 'Detective Marconi', 'Stephen Cyrus Sepher': 'Dante', 'D.B. Sweeney': 'Bernie', 'Tyler Jon Olson': 'Steve', 'Alyssa Julya Smith': 'Rebecca', 'Hawn Tran': 'Tom', 'Christopher Rob Bowen': 'Eric', 'Renell Gibbs': 'Tagger'}" tt2547172,"{'Mark Feuerstein': 'Larry Elizabeth Gaye', 'Jessica Lowndes': 'Suzanne', 'Stanley Tucci': 'Publishing Executive', 'Christopher Fitzgerald': 'Curtis', 'Taye Diggs': 'Rasta Cab Driver', 'Molly Millard': 'Female Flight Attendant', 'Danny Pudi': 'Nathan Vignes', 'Michael Cotter': 'Ash Man', 'Staci Roberts Steele': 'Woman in 3B (as Staci Roberts)', 'Kenny Ellis': 'Rabbi', 'Guy Wilson': 'Frat Guy', 'Henry Winkler': 'Stanley Warner', 'Molly Shannon': 'Emily McCoy', 'Michael B. Silver': 'Geddes', 'Rebecca Romijn': 'Sally the Flightpal'}" tt3393070,"{'Michael Jai White': 'Hammond', 'Kadeem Hardison': 'Sgt. Jones', 'Randy Wayne': 'Android Cop', 'Charles S. Dutton': 'Mayor Jacobs', 'Larissa Vereza': 'Helen Jacobs', 'Gerald Webb': 'George Jones', 'Duane Avery': 'Newald Mason', 'Morgan Benoit': 'Ratchet', 'Deena Trudy': 'Officer Jackson (as Deena Trudy Goldberg)', 'Jay Brothers': 'Porter (as Jay C. Brothers)', ""Kay D'Arcy"": 'Trickshot Granny', 'Jay Gillespie': 'Reynolds', 'William Guirola': 'Snake', 'George Kokkoris': 'Sergeant Mills', 'Danny Ledsinger': 'Six Eyes (as Danny Ledsinger Jr.)'}" tt2709768,"{'Louis C.K.': 'Max (voice)', 'Eric Stonestreet': 'Duke (voice)', 'Kevin Hart': 'Snowball (voice)', 'Jenny Slate': 'Gidget (voice)', 'Ellie Kemper': 'Katie (voice)', 'Albert Brooks': 'Tiberius (voice)', 'Lake Bell': 'Chloe (voice)', 'Dana Carvey': 'Pops (voice)', 'Hannibal Buress': 'Buddy (voice)', 'Bobby Moynihan': 'Mel (voice)', 'Chris Renaud': 'Norman (voice)', 'Steve Coogan': 'Ozone / Reginald (voice)', 'Michael Beattie': 'Tattoo (voice)', 'Sandra Echeverría': 'Maria (voice) (as Sandra Echeverria)', 'Jaime Camil': 'Fernando (voice)'}" tt0400717,"{'Martin Lawrence': 'Boog (voice)', 'Ashton Kutcher': 'Elliot (voice)', 'Gary Sinise': 'Shaw (voice)', 'Debra Messing': 'Beth (voice)', 'Billy Connolly': 'McSquizzy (voice)', 'Georgia Engel': 'Bobbie (voice)', 'Jon Favreau': 'Reilly (voice)', 'Jane Krakowski': 'Giselle (voice)', 'Gordon Tootoosis': 'Gordy (voice)', 'Patrick Warburton': 'Ian (voice)', 'Cody Cameron': 'Mr. Weenie (voice)', 'Nika Futterman': 'Rosie (voice)', 'Danny Mann': 'Serge (voice)', 'Jack McGee': 'Hunter (voice)', 'Michelle Murdocca': 'Maria (voice)'}" tt0423294,"{'Shia LaBeouf': 'Cody Maverick (voice)', 'Jeff Bridges': ""Zeke 'Big Z' Topanga / 'Geek' (voice)"", 'Zooey Deschanel': 'Lani Aliikai (voice)', 'Jon Heder': 'Chicken Joe (voice)', 'James Woods': 'Reggie Belafonte (voice)', 'Diedrich Bader': ""Tank 'The Shredder' Evans (voice)"", 'Mario Cantone': 'Mikey Abromowitz (voice)', 'Kelly Slater': 'Kelly (voice)', 'Rob Machado': 'Rob (voice)', 'Sal Masekela': 'SPEN Announcer (voice)', 'Ash Brannon': 'Filmmaker (voice)', 'Chris Buck': 'Filmmaker (voice)', 'Brian Posehn': 'Glen Maverick (voice)', 'Dana Belben': 'Edna Maverick (voice) (as Dana L. Belben)', 'Reed Buck': 'Arnold (voice)'}" tt0787470,"{'Seann William Scott': 'Gary Houseman', 'Randy Quaid': 'Coach Lew Tuttle', 'Brando Eaton': 'Mike Jensen', 'Emilee Wallace': 'Jenny Tuttle', 'A.D. Miles': 'Steve Pimble', 'Leonor Varela': 'Norma Sanchez', 'Tim Williams': 'Dick Daubert', 'Ryan Simpkins': 'Amy Daubert', 'Conor Donovan': 'Burke Nibbons', 'Allen Evangelista': 'Maricar Magwill', 'Justin Chon': 'Joe Chang', 'Vincent Coleman Taylor': 'Kevin Jones (as Vincent Taylor)', 'Bryan Mitchell': 'Randy King', 'Remington Dewan': 'Paul the Videographer', 'Meredith Eaton': 'Mrs. Tuttle'}" tt1276419,"{'Alicia Vikander': 'Caroline Mathilde', 'Mads Mikkelsen': 'Johann Friedrich Struensee', 'Mikkel Boe Følsgaard': 'Christian VII', 'Trine Dyrholm': 'Juliane Marie', 'David Dencik': 'Ove Høegh-Guldberg', 'Thomas W. Gabrielsson': 'Schack Carl Rantzau', 'Cyron Melville': 'Enevold Brandt (as Cyron Bjørn Melville)', 'Bent Mejding': 'J. H. E. Bernstoff', 'Harriet Walter': 'Augusta - Princess of Wales', 'Laura Bro': 'Louise von Plessen', 'Søren Malling': 'Hartmann', 'Jacob Lohmann': ""Juliane's Officer (as Jakob Ulrik Lohmann)"", 'Søren Spanning': 'Munter', 'Frederik Christian Johansen': 'Arveprinsen', 'John Martinus': 'Reventlow'}" tt0803096,"{'Travis Fimmel': 'Anduin Lothar', 'Paula Patton': 'Garona', 'Ben Foster': 'Medivh', 'Dominic Cooper': 'Llane Wrynn', 'Toby Kebbell': 'Durotan / Antonidas', 'Ben Schnetzer': 'Khadgar', 'Robert Kazinsky': 'Orgrim', 'Clancy Brown': 'Blackhand', 'Daniel Wu': ""Gul'dan"", 'Ruth Negga': 'Lady Taria', 'Anna Galvin': 'Draka', 'Callum Keith Rennie': 'Moroes', 'Burkely Duffield': 'Callan', 'Ryan Robbins': 'Karos', 'Dean Redman': 'Varis / Caged Frostwolf'}" tt1133985,"{'Ryan Reynolds': 'Hal Jordan / Green Lantern', 'Blake Lively': 'Carol Ferris', 'Peter Sarsgaard': 'Hector Hammond', 'Mark Strong': 'Sinestro', 'Tim Robbins': 'Hammond', 'Jay O. Sanders': 'Carl Ferris', 'Taika Waititi': 'Tom Kalmaku', 'Angela Bassett': 'Doctor Waller', 'Mike Doyle': 'Jack Jordan', 'Nick Jandl': 'Jim Jordan', 'Dylan James': 'Jason Jordan', 'Gattlin Griffith': 'Young Hal', 'Jon Tenney': 'Martin Jordan', 'Leanne Cochran': 'Janice Jordan', 'Temuera Morrison': 'Abin Sur'}" tt3672840,"{'Jackie Chan': 'Huo An', 'John Cusack': 'Lucius', 'Adrien Brody': 'Tiberius', 'Si Won Choi': 'Yin Po', 'Peng Lin': 'Cold Moon', 'Mika Wang': 'Xiu Qing', 'Yang Xiao': 'Captain', 'Taili Wang': 'Rat', 'Tin Chiu Hung': 'Red Sun (as Sammy Hung)', 'Shaofeng Feng': 'General Huo Qubing (as William Feng)', 'Sharni Vinson': 'Lady Crassus', 'Lorie Pester': 'Parthian Queen', 'Xiangdong Xu': 'Secretary (as Xiang Dong Xu)', 'Qing Xiu': 'Wolf', 'Sung-jun Yoo': 'Cougar (as Steve Yoo)'}" tt2216240,"{'Pilou Asbæk': 'Mikkel Hartmann', 'Søren Malling': 'Peter C. Ludvigsen', 'Dar Salim': 'Lars Vestergaard', 'Roland Møller': 'Jan Sørensen', 'Gary Skjoldmose Porter': 'Connor Julian', 'Abdihakin Asgar': 'Omar', 'Amalie Ihle Alstrup': 'Maria Hartmann (as Amalie Alstrup)', 'Amalie Vulff Andersen': 'Kamilla Hartmann', 'Linda Laursen': 'Anette Ludvigsen', 'Keith Pearson': 'Kaptajn', 'Allan Arnby': 'Niels Giversen', 'Bettina Schjerlund': 'Jytte', 'Derrick Dharmakan': 'Sømænd', 'Juma Mvita': 'Sømænd (as Jumamvita)', ""Mikyan 'Thura' Aung"": 'Sømænd'}" tt2310332,"{'Ian McKellen': 'Gandalf', 'Martin Freeman': 'Bilbo', 'Richard Armitage': 'Thorin', 'Ken Stott': 'Balin', 'Graham McTavish': 'Dwalin', 'William Kircher': 'Bifur', 'James Nesbitt': 'Bofur', 'Stephen Hunter': 'Bombur', ""Dean O'Gorman"": 'Fili', 'Aidan Turner': 'Kili', 'John Callen': 'Oin', 'Peter Hambleton': 'Gloin', 'Jed Brophy': 'Nori', 'Mark Hadlow': 'Dori', 'Adam Brown': 'Ori'}" tt1170358,"{'Ian McKellen': 'Gandalf', 'Martin Freeman': 'Bilbo', 'Richard Armitage': 'Thorin', 'Ken Stott': 'Balin', 'Graham McTavish': 'Dwalin', 'William Kircher': 'Bifur', 'James Nesbitt': 'Bofur', 'Stephen Hunter': 'Bombur', ""Dean O'Gorman"": 'Fili', 'Aidan Turner': 'Kili', 'John Callen': 'Oin', 'Peter Hambleton': 'Gloin', 'Jed Brophy': 'Nori', 'Mark Hadlow': 'Dori', 'Adam Brown': 'Ori'}" tt0903624,"{'Ian McKellen': 'Gandalf', 'Martin Freeman': 'Bilbo', 'Richard Armitage': 'Thorin', 'Ken Stott': 'Balin', 'Graham McTavish': 'Dwalin', 'William Kircher': 'Bifur / Tom Troll', 'James Nesbitt': 'Bofur', 'Stephen Hunter': 'Bombur', ""Dean O'Gorman"": 'Fili', 'Aidan Turner': 'Kili', 'John Callen': 'Oin', 'Peter Hambleton': 'Gloin / William Troll', 'Jed Brophy': 'Nori', 'Mark Hadlow': 'Dori / Bert Troll', 'Adam Brown': 'Ori'}" tt1507566,"{'Robert Loggia': 'Seamus White', 'Fisher Stevens': 'Tom Kozinski', 'Blanche Baker': 'Mrs. Needham', 'Jill Flint': 'Kelly Monaghan', 'Gabriel Mann': 'Daniel Jakor', 'David Thornton': 'Tay Murphy', 'Robert Clohessy': 'Patrick White', 'Rachael Robbins': 'Emily Lane', 'Erika Smith': ""Daniel's Mother"", 'Alan Altschuler': 'Philip Glass', 'Allegra Cohen': 'News Anchor', 'Keith Collins': 'Darren', 'Charles Grady': 'Charlie', 'Dawn Landino': 'FBI Agent', 'Greg Nutcher': 'Art'}" tt0988045,"{'Robert Downey Jr.': 'Sherlock Holmes', 'Jude Law': 'Dr. John Watson', 'Rachel McAdams': 'Irene Adler', 'Mark Strong': 'Lord Henry Blackwood', 'Eddie Marsan': 'Inspector Lestrade', 'Robert Maillet': 'Dredger', 'Geraldine James': 'Mrs. Hudson', 'Kelly Reilly': 'Mary Morstan', 'William Houston': 'Constable Clark', 'Hans Matheson': 'Lord Coward', 'James Fox': 'Sir Thomas Rotheram', 'William Hope': 'Ambassador Standish', 'Clive Russell': 'Captain Tanner', 'Oran Gurel': 'Reordan', 'David Garrick': 'McMurdo'}" tt1656186,"{'Nicolas Cage': 'Will Montgomery', 'Josh Lucas': 'Vincent', 'Danny Huston': 'Tim Harlend', 'Malin Akerman': 'Riley Jeffers', 'Sami Gayle': 'Alison Loeb', 'Edrick Browne': 'Jacobs', 'Mark Valley': 'Fletcher', 'Barry Shabaka Henley': 'Reginald', 'M.C. Gainey': 'Hoyt', 'J.D. Evermore': 'Rookie', 'Garrett Hines': 'Aaron', 'Kevin Foster': 'Motorcycle Cop', 'Tanc Sade': 'Pete', 'Dan Braverman': 'Lefleur', 'Jon Eyez': 'Bertrand'}" tt2097307,"{'Kristen Bell': 'Annie Bean', 'Dax Shepard': 'Yul Perrkins a.k.a. Charles Bronson', 'Tom Arnold': 'Randy Anderson', 'Kristin Chenoweth': 'Debby Kreeger', 'Michael Rosenbaum': 'Gil Rathbinn', 'Jess Rowland': 'Terry Rathbinn', 'Carly Hatter': 'Angella Roth', 'Steve Agee': 'Dude #1', 'Bradley Cooper': 'Alex Dmitri', 'Joy Bryant': 'Neve', 'Kal Bennett': 'Cashier Mary Ann', 'John Duff': 'Body Builder Catalyst', 'David Koechner': 'Sanders', 'Ryan Hansen': 'Allen', 'Beau Bridges': 'Clint Perrkins'}" tt1951265,"{'Jennifer Lawrence': 'Katniss Everdeen', 'Josh Hutcherson': 'Peeta Mellark', 'Liam Hemsworth': 'Gale Hawthorne', 'Woody Harrelson': 'Haymitch Abernathy', 'Donald Sutherland': 'President Snow', 'Philip Seymour Hoffman': 'Plutarch Heavensbee', 'Julianne Moore': 'President Alma Coin', 'Willow Shields': 'Primrose Everdeen', 'Sam Claflin': 'Finnick Odair', 'Elizabeth Banks': 'Effie Trinket', 'Mahershala Ali': 'Boggs', 'Jena Malone': 'Johanna Mason', 'Jeffrey Wright': 'Beetee', 'Paula Malcomson': ""Katniss' Mother"", 'Stanley Tucci': 'Caesar Flickerman'}" tt0844471,"{'Bill Hader': 'Flint Lockwood (voice)', 'Anna Faris': 'Sam Sparks (voice)', 'James Caan': 'Tim Lockwood (voice)', 'Andy Samberg': ""'Baby' Brent (voice)"", 'Bruce Campbell': 'Mayor Shelbourne (voice)', 'Mr. T': 'Earl Devereaux (voice)', ""Bobb'e J. Thompson"": 'Cal Devereaux (voice)', 'Benjamin Bratt': 'Manny (voice)', 'Neil Patrick Harris': 'Steve (voice)', 'Al Roker': 'Patrick Patrickson (voice)', 'Lauren Graham': 'Fran Lockwood (voice)', 'Will Forte': 'Joe Towne (voice)', 'Max Neuwirth': 'Young Flint (voice)', 'Peter Siragusa': 'Rufus (voice)', 'Angela Shelton': 'Regina Devereaux (voice)'}" tt1766094,"{'Miley Cyrus': 'Molly / Brook', 'Jeremy Piven': 'Armon', ""Mike O'Malley"": 'Sam', 'Josh Bowman': 'Nicholas', 'Lauren McKnight': 'Alex', 'Kelly Osbourne': 'Becky', 'Eloise Mumford': 'Sasha', 'Megan Park': 'Cotton', 'Morgan Calhoun': 'Hunter', 'Alexis Knapp': 'Taylor', 'Matthew Settle': 'Professor Talloway', 'Autumn Reeser': 'Bizzy', 'Brian Peterson': 'Zingadi', 'Ric Reitz': 'State Senator', 'Leticia Jimenez': ""State Senator's Girlfriend""}" tt2024506,"{'Ryan Phillippe': 'Scott', 'Anna Paquin': 'Katherine', 'Luke Wilson': 'William', 'Riley Thomas Stewart': 'Charles', 'Ursula Parker': 'Gracie', 'Amparo Garcia-Crow': 'Louisa', 'Augustin Solis': 'Carlos', 'Tess Harper': 'Mother', 'Powers Boothe': 'Father', 'Christa Campbell': 'Dana', 'James Carrol': 'Executive', 'Josh Meyers': 'Jason', 'Kristen Williams': 'Nikki / Craps Table Girl #1', 'Jon Mack': 'Holly / Craps Table Girl #2', 'Simona Williams': 'Carla / Craps Table Girl #3'}" tt1374992,"{'Jim Sturgess': 'Adam', 'Kirsten Dunst': 'Eden', 'Timothy Spall': 'Bob Boruchowitz', 'Blu Mankuma': 'Albert', 'Nicholas Rose': 'Pablo', 'James Kidnie': 'Lagavullan', 'Vlasta Vrana': 'Mr. Hunt', 'Kate Trotter': 'Becky', 'Holly Uloth': ""Paula (as Holly O'Brien)"", 'Elliott Larson': 'Adam 12 Years Old', 'Maurane Arcand': 'Eden 10 Years Old', 'Janine Theriault': 'Miss Maguire', 'Vincent Messina': 'Tommy', 'Cole K. Mickenzie': 'Pato', 'Paul Ahmarani': 'Mr. Tenet'}" tt0770828,"{'Henry Cavill': 'Clark Kent / Kal-El', 'Amy Adams': 'Lois Lane', 'Michael Shannon': 'General Zod', 'Diane Lane': 'Martha Kent', 'Russell Crowe': 'Jor-El', 'Antje Traue': 'Faora-Ul', 'Harry Lennix': 'General Swanwick', 'Richard Schiff': 'Dr. Emil Hamilton', 'Christopher Meloni': 'Colonel Nathan Hardy', 'Kevin Costner': 'Jonathan Kent', 'Ayelet Zurer': 'Lara Lor-Van', 'Laurence Fishburne': 'Perry White', 'Dylan Sprayberry': 'Clark Kent (13 Years)', 'Cooper Timberline': 'Clark Kent (9 Years)', 'Richard Cetrone': 'Tor-An'}" tt0067992,"{'Gene Wilder': 'Willy Wonka', 'Jack Albertson': 'Grandpa Joe', 'Peter Ostrum': 'Charlie', 'Roy Kinnear': 'Mr. Salt', 'Julie Dawn Cole': 'Veruca Salt', 'Leonard Stone': 'Mr. Beauregarde', 'Denise Nickerson': 'Violet Beauregarde', 'Nora Denney': 'Mrs. Teevee (as Dodo Denney)', 'Paris Themmen': 'Mike Teevee', 'Ursula Reit': 'Mrs. Gloop', 'Michael Bollner': 'Augustus Gloop', 'Diana Sowle': 'Mrs. Bucket', 'Aubrey Woods': 'Bill', 'David Battley': 'Mr. Turkentine', 'Günter Meisner': 'Mr. Slugworth (as Gunter Meisner)'}" tt1646987,"{'Sam Worthington': 'Perseus', 'Liam Neeson': 'Zeus', 'Ralph Fiennes': 'Hades', 'Edgar Ramírez': 'Ares (as Edgar Ramirez)', 'Toby Kebbell': 'Agenor', 'Rosamund Pike': 'Andromeda', 'Bill Nighy': 'Hephaestus', 'Danny Huston': 'Poseidon', 'John Bell': 'Helius', 'Lily James': 'Korrina', 'Alejandro Naranjo': 'Mantius', 'Freddy Drabble': 'Apollo', 'Kathryn Carpenter': 'Athena', 'Matt Milne': 'Elite Guard No. 1', 'Kett Turton': 'Elite Guard No. 2'}" tt2383068,"{'Joe Swanberg': 'Jake Williams', 'AJ Bowen': 'Sam Turner', 'Kentucker Audley': 'Patrick', 'Gene Jones': 'Father', 'Amy Seimetz': 'Caroline', 'Kate Forbes': 'Mindy', 'Conphidance': 'Guide #1', 'Derek Roberts': 'Guide #2', 'Shirley Jones Byrd': 'Lorraine Davis', 'Shaun Clay': 'Robert (as Lashaun Clay)', 'Dale Neal': 'Andre', 'Kate Lyn Sheil': 'Sarah White', 'Donna Biscoe': 'Wendy', 'Tovin A. Pristell': 'Guard', 'Christian Ojore Mayfield': ""Pilot (as Christian O'Jore)""}" tt0105698,"{'Jean-Claude Van Damme': 'Luc Deveraux / GR44', 'Dolph Lundgren': 'Andrew Scott / GR13', 'Ally Walker': 'Veronica Roberts', ""Ed O'Ross"": 'Colonel Perry', 'Jerry Orbach': 'Dr. Christopher Gregor', 'Leon Rippy': 'Woodward', 'Tico Wells': 'Garth', 'Ralf Moeller': 'GR76 (as Ralph Moeller)', 'Robert Trebor': 'Motel Owner', 'Gene Davis': 'Lieutenant', 'Drew Snyder': 'Charles', ""Tommy 'Tiny' Lister"": ""GR55 (as 'Tiny' Lister Jr.)"", 'Simon Rhee': 'GR61', 'Eric Norris': 'GR86', 'Michael Winther': 'Technician'}" tt0024216,"{'Fay Wray': 'Ann Darrow', 'Robert Armstrong': 'Carl Denham', 'Bruce Cabot': 'John Driscoll', 'Frank Reicher': 'Capt. Englehorn', 'Sam Hardy': 'Charles Weston', 'Noble Johnson': 'Native Chief', 'Steve Clemente': 'Witch King (as Steve Clemento)', 'James Flavin': 'Second Mate Briggs', 'King Kong': 'The Eighth Wonder of the World'}" tt1709143,"{'Liev Schreiber': 'Vincent Campbell', 'Elias Koteas': 'Charles Brunel', 'Romola Garai': 'Rebecca Lane', 'Olivia Williams': 'Kim Aldrich', 'Johnny Harris': 'Robert Irwin', 'Goran Kostic': 'Marko Petrovic', 'Tom Cullen': 'Richard Harrington', 'Yusra Warsama': 'Lauren Dalby', 'Patrick Joseph Byrnes': 'Flight Commander Ellis', 'Lewis Macleod': 'Infected Voices (voice)'}" tt1578882,"{'Djimon Hounsou': 'Curtie Church', 'Markus Waldow': 'The Man with the Stopwatch', 'Kevin Bacon': 'Jimmy', 'Jirantanin Pitakporntrakul': 'Mae', 'Weeraprawat Wongpuapan': 'Boss Katha', 'Apichart Chusakul': 'Advisor Bhun (as Abhijati Jusakul)', 'Suteerush Channukool': 'Number Two', 'Sahajak Boonthanakit': 'Rajahdon', 'Gigi Velicitat': 'The Drunk Man'}" tt2279339,"{'Steve Martin': 'Rags (voice)', 'Diane Keaton': 'Charlotte', 'John Goodman': 'Sam', 'Ed Helms': 'Hank', 'Alex Borstein': 'Angie', 'Timothée Chalamet': 'Charlie', 'Maxwell Simkins': 'Bo', 'Blake Baumgartner': 'Madison', 'Amanda Seyfried': 'Ruby', 'Alan Arkin': 'Bucky', 'Dan Amboyer': 'Handsome Young Man at Diner', 'Marisa Tomei': 'Emma', 'Scott Garan': 'Department Store Security Guard', 'Dorothy Silver': 'Mrs. Pinkins', 'Olivia Wilde': 'Eleanor'}" tt5323662,"{'Miyu Irino': 'Shôya Ishida (voice)', 'Saori Hayami': 'Shoko Nishimiya (voice)', 'Aoi Yûki': 'Yuzuru Nishimiya (voice)', 'Kenshô Ono': 'Tomohiro Nagatsuka (voice)', 'Yûki Kaneko': 'Naoka Ueno (voice)', 'Yui Ishikawa': 'Miyoko Sahara (voice)', 'Megumi Han': 'Miki Kawai (voice)', 'Toshiyuki Toyonaga': 'Satoshi Mashiba (voice)', 'Mayu Matsuoka': 'Young Shoya Ishida (voice)', 'Sachiko Kojima': 'Young Kazuki Shimada (voice)', 'Hana Takeda': 'Young Keisuke Hirose (voice)', 'Fuminori Komatsu': 'Takeuchi-sensei (voice)', 'Ikuko Tani': 'Ito Nishimiya (voice)', 'Erena Kamata': 'Maria Ishida (voice)', 'Ayano Hamaguchi': ""Shoya's sister (voice)""}" tt0800320,"{'Sam Worthington': 'Perseus', 'Liam Neeson': 'Zeus', 'Ralph Fiennes': 'Hades', 'Jason Flemyng': 'Calibos / Acrisius', 'Gemma Arterton': 'Io', 'Alexa Davalos': 'Andromeda', 'Tine Stapelfeldt': 'Danae', 'Mads Mikkelsen': 'Draco', 'Luke Evans': 'Apollo', 'Izabella Miko': 'Athena', 'Liam Cunningham': 'Solon', 'Hans Matheson': 'Ixas', 'Ashraf Barhom': 'Ozal', 'Mouloud Achour': 'Kucuk', 'Ian Whyte': 'Sheikh Suleiman'}" tt0120912,"{'Tommy Lee Jones': 'Kay', 'Will Smith': 'Jay', 'Rip Torn': 'Zed', 'Lara Flynn Boyle': 'Serleena', 'Johnny Knoxville': 'Scrad / Charlie', 'Rosario Dawson': 'Laura Vasquez', 'Tony Shalhoub': 'Jeebs', 'Patrick Warburton': 'Agent Tee', 'Jack Kehler': 'Ben', 'David Cross': 'Newton', 'Colombe Jacobsen-Derstine': 'Hailey (as Colombe Jacobsen)', 'Peter Spellos': 'Motorman', 'Michael Rivkin': 'Man with Dog', 'Michael Bailey Smith': 'Creepy', 'Lenny Venito': 'New York Guy'}" tt1392190,"{'Tom Hardy': 'Max Rockatansky', 'Charlize Theron': 'Imperator Furiosa', 'Nicholas Hoult': 'Nux', 'Hugh Keays-Byrne': 'Immortan Joe', 'Josh Helman': 'Slit', 'Nathan Jones': 'Rictus Erectus', 'Zoë Kravitz': 'Toast the Knowing', 'Rosie Huntington-Whiteley': 'The Splendid Angharad', 'Riley Keough': 'Capable', 'Abbey Lee': 'The Dag', 'Courtney Eaton': 'Cheedo the Fragile', 'John Howard': 'The People Eater', 'Richard Carter': 'The Bullet Farmer', 'Iota': 'The Doof Warrior (as iOTA)', 'Angus Sampson': 'The Organic Mechanic'}" tt1985949,"{'Jason Sudeikis': 'Red (voice)', 'Josh Gad': 'Chuck (voice)', 'Danny McBride': 'Bomb (voice)', 'Maya Rudolph': 'Matilda (voice)', 'Bill Hader': 'Leonard (voice)', 'Peter Dinklage': 'Mighty Eagle (voice)', 'Sean Penn': 'Terence (voice)', 'Keegan-Michael Key': 'Judge Peckinpah (voice)', 'Kate McKinnon': 'Stella / Eva the Birthday Mom (voice)', 'Tony Hale': 'Ross / Cyrus / Mime (voice)', 'Hannibal Buress': 'Edward the Birthday Dad (voice)', 'Ike Barinholtz': 'Tiny (voice)', 'Tituss Burgess': 'Photog (voice)', 'Ian Hecox': 'Bubbles (voice)', 'Anthony Padilla': 'Hal (voice)'}" tt2379713,"{'Daniel Craig': 'James Bond', 'Christoph Waltz': 'Blofeld', 'Léa Seydoux': 'Madeleine', 'Ralph Fiennes': 'M', 'Monica Bellucci': 'Lucia', 'Ben Whishaw': 'Q', 'Naomie Harris': 'Moneypenny', 'Dave Bautista': 'Hinx', 'Andrew Scott': 'C', 'Rory Kinnear': 'Tanner', 'Jesper Christensen': 'Mr. White', 'Alessandro Cremona': 'Marco Sciarra', 'Stephanie Sigman': 'Estrella', 'Tenoch Huerta': 'Mexican Man in Lift', 'Adriana Paz': 'Mexican Woman in Lift'}" tt1409024,"{'Will Smith': 'Agent J', 'Tommy Lee Jones': 'Agent K', 'Josh Brolin': 'Young Agent K', 'Jemaine Clement': 'Boris The Animal', 'Emma Thompson': 'Agent O', 'Michael Stuhlbarg': 'Griffin', 'Mike Colter': 'Colonel', 'Nicole Scherzinger': ""Boris' Girlfriend"", 'Michael Chernus': 'Jeffrey Price', 'Alice Eve': 'Young Agent O', 'David Rasche': 'Agent X', 'Keone Young': 'Mr. Wu', 'Bill Hader': 'Andy Warhol', 'Cayen Martin': ""Colonel's Son"", 'Clarke Thorell': 'Prison Guard #1'}" tt0120685,"{'Matthew Broderick': 'Dr. Niko Tatopoulos', 'Jean Reno': 'Philippe Roaché', 'Maria Pitillo': 'Audrey Timmonds', 'Hank Azaria': ""Victor 'Animal' Palotti"", 'Kevin Dunn': 'Colonel Hicks', 'Michael Lerner': 'Mayor Ebert', 'Harry Shearer': 'Charles Caiman', 'Arabella Field': 'Lucy Palotti', 'Vicki Lewis': 'Dr. Elsie Chapman', 'Doug Savant': ""Sergeant O'Neal"", 'Malcolm Danare': 'Dr. Mendel Craven', 'Lorry Goldman': ""Gene - Mayor's Aide"", 'Christian Aubert': 'Jean-Luc', 'Philippe Bergeron': 'Jean-Claude', 'Frank Bruynbroek': 'Jean-Pierre'}" tt1985966,"{'Bill Hader': 'Flint Lockwood (voice)', 'Anna Faris': 'Sam Sparks (voice)', 'James Caan': 'Tim Lockwood (voice)', 'Will Forte': 'Chester V (voice)', 'Andy Samberg': 'Brent McHale (voice)', 'Benjamin Bratt': 'Manny (voice)', 'Neil Patrick Harris': 'Steve (voice)', 'Terry Crews': 'Earl Devereaux (voice)', 'Kristen Schaal': 'Barb (voice)', 'Cody Cameron': 'Barry / Dill Pickle (voice)', 'Melissa Sturm': 'Sentinel Louise / Live Corp Scientist (voice)', 'Kris Pearn': 'Sentinel Peter / Labcoat Jenny (voice)', 'Craig Kellman': 'Flintly McCallahan / Idea Pants Guy (voice)', 'Khamani Griffin': 'Cal Devereaux (voice)', 'Bridget Hoffman': 'Young Flint (voice)'}" tt0097647,"{'Ralph Macchio': 'Daniel', 'Pat Morita': ""Mr. Miyagi (as Noriyuki 'Pat' Morita)"", 'Robyn Lively': 'Jessica', 'Thomas Ian Griffith': 'Terry', 'Martin Kove': 'Kreese', 'Sean Kanan': 'Mike Barnes', 'Jonathan Avildsen': 'Snake', 'William Christopher Ford': 'Dennis (as Christopher Paul Ford)', 'Randee Heller': 'Lucille', 'Pat E. Johnson': 'Referee', 'Rick Hurst': 'Announcer', 'Frances Bay': 'Mrs. Milo', 'Joseph V. Perry': 'Uncle Louie', 'Jan Tríska': 'Milos', 'Diana Webster': 'Margaret'}" tt0091326,"{'Pat Morita': ""Miyagi (as Noriyuki 'Pat' Morita)"", 'Ralph Macchio': 'Daniel', 'Pat E. Johnson': 'Referee', 'Bruce Malmuth': 'Announcer', 'Eddie Smith': 'Bystander', 'Martin Kove': 'Kreese', 'Garth Johnson': 'Autograph Fan', 'Brett Johnson': 'Autograph Fan', 'Will Hunt': 'Postman', 'Evan James': 'Cab Driver (as Evan Malmuth)', 'Lee Arnone': 'Stewardess', 'Sarah Kendall': 'Stewardess #2', 'Yuji Okumoto': 'Chozen', 'Joey Miyashima': 'Toshio', 'Danny Kamekona': 'Sato'}" tt1234721,"{'Joel Kinnaman': 'Alex Murphy / RoboCop', 'Gary Oldman': 'Dr. Dennett Norton', 'Michael Keaton': 'Raymond Sellars', 'Abbie Cornish': 'Clara Murphy', 'Jackie Earle Haley': 'Rick Mattox', 'Michael Kenneth Williams': 'Jack Lewis (as Michael K. Williams)', 'Jennifer Ehle': 'Liz Kline', 'Jay Baruchel': 'Tom Pope', 'Marianne Jean-Baptiste': 'Chief Karen Dean', 'Samuel L. Jackson': 'Pat Novak', 'Aimee Garcia': 'Jae Kim', 'Douglas Urbanski': 'Mayor Durant', 'John Paul Ruttan': 'David Murphy', 'Patrick Garrow': 'Antoine Vallon', 'K.C. Collins': 'Andre Daniels'}" tt1217613,"{'Aaron Eckhart': 'Ssgt. Michael Nantz', 'Ramon Rodriguez': '2nd Lt. William Martinez', 'Will Rothhaar': 'Cpl. Lee Imlay', 'Cory Hardrict': 'Cpl. Jason Lockett', 'Jim Parrack': 'LCpl. Peter Kerns', 'Gino Anthony Pesi': 'Cpl. Nick Stavrou', 'Ne-Yo': 'Cpl. Kevin Harris', 'James Hiroyuki Liao': 'LCpl. Steven Mottola', 'Bridget Moynahan': 'Michele', 'Noel Fisher': 'Pfc. Shaun Lenihan', ""Adetokumboh M'Cormack"": 'Corpsman Jibril Adukwu', 'Bryce Cass': 'Hector Rincon', 'Michael Peña': 'Joe Rincon', 'Michelle Rodriguez': 'TSgt. Elena Santos', 'Neil Brown Jr.': 'LCpl. Richard Guerrero'}" tt2637294,"{'Rob Corddry': 'Lou', 'Craig Robinson': 'Nick', 'Clark Duke': 'Jacob', 'Adam Scott': 'Adam Jr.', 'Gillian Jacobs': 'Jill', 'Chevy Chase': 'Hot Tub Repairman', 'Collette Wolfe': 'Kelly', 'Bianca Haase': 'Sophie', 'Jason Jones': 'Gary Winkle (as Jason D. Jones)', 'Kumail Nanjiani': 'Brad', 'Kellee Stewart': 'Courtney', 'Josh Heald': 'Terry', 'Gretchen Koerner': 'Susan', 'Lisa Loeb': 'Lisa Loeb', 'Jessica Williams': 'Jessica Williams'}" tt2967224,"{'Reese Witherspoon': 'Cooper', 'Sofía Vergara': 'Daniella Riva', 'Matthew Del Negro': 'Detective Hauser', 'Michael Mosley': 'Detective Dixon', 'Robert Kazinsky': 'Randy', 'Richard T. Jones': 'Detective Jackson', 'Benny Nieves': 'Jesus', 'Michael Ray Escamilla': 'Angel', 'Joaquín Cosio': 'Vicente Cortez', 'John Carroll Lynch': 'Captain Emmett', 'Jim Gaffigan': 'Red', 'Mike Birbiglia': 'Steve', 'Vincent Laresca': 'Felipe Riva', 'David Jensen': 'Wayne', 'Evaluna Montaner': 'Teresa Cortez'}" tt1355630,"{'Chloë Grace Moretz': 'Mia Hall', 'Mireille Enos': 'Kat', 'Jamie Blackley': 'Adam', 'Joshua Leonard': 'Denny', 'Liana Liberato': 'Kim', 'Stacy Keach': 'Gramps', 'Gabrielle Rose': 'Gran', 'Jakob Davies': 'Teddy', 'Willa Milner': 'Liz (as Ali Milner)', 'Aisha Hinds': 'Nurse Ramirez', 'Gabrielle Cerys Haslett': 'Young Mia', 'Lauren Lee Smith': 'Willow', 'Adam Solomonian': 'Henry', 'John Emmet Tracy': 'Surgeon', 'Chelah Horsdal': 'Liddy'}" tt0089853,"{'Mia Farrow': 'Cecilia', 'Jeff Daniels': 'Tom Baxter / Gil Shepherd', 'Danny Aiello': 'Monk', 'Irving Metzman': 'Theater Manager', 'Stephanie Farrow': ""Cecilia's Sister"", 'David Kieserman': 'Diner Boss', 'Elaine Grollman': 'Diner Patron', 'Victoria Zussin': 'Diner Patron', 'Mark Hammond': 'Diner Patron', 'Wade Barnes': 'Diner Patron', 'Joseph G. Graham': 'Diner Patron', 'Don Quigley': 'Diner Patron', 'Maurice Brenner': 'Diner Patron', 'Paul Herman': 'Penny Pitcher', 'Rick Petrucelli': 'Penny Pitcher'}" tt3850590,"{'Emjay Anthony': 'Max', 'Adam Scott': 'Tom', 'Toni Collette': 'Sarah', 'Stefania LaVie Owen': 'Beth', 'Krista Stadler': 'Omi', 'Conchata Ferrell': 'Aunt Dorothy', 'Allison Tolman': 'Linda', 'David Koechner': 'Howard', 'Maverick Flack': 'Howie, Jr', 'Queenie Samuel': 'Jordan', 'Lolo Owen': 'Stevie', 'Sage Hunefeld': 'Baby Chrissy', 'Leith Towers': 'Derek', 'Curtis Vowell': 'DHL Man', 'Luke Hawker': 'Krampus'}" tt0119282,"{'Tate Donovan': 'Hercules (voice)', 'Josh Keaton': 'Young Hercules (voice)', 'Roger Bart': 'Young Hercules (singing voice)', 'Danny DeVito': 'Phil (voice)', 'James Woods': 'Hades (voice)', 'Susan Egan': 'Meg (voice)', 'Bobcat Goldthwait': 'Pain (voice)', 'Matt Frewer': 'Panic (voice)', 'Rip Torn': 'Zeus (voice)', 'Samantha Eggar': 'Hera (voice)', 'Barbara Barrie': 'Alcmene (voice)', 'Hal Holbrook': 'Amphitryon (voice)', 'Paul Shaffer': 'Hermes (voice)', 'Amanda Plummer': 'Clotho (voice)', 'Carole Shelley': 'Lachesis (voice)'}" tt0296572,"{'Vin Diesel': 'Riddick', 'Colm Feore': 'Lord Marshal', 'Thandie Newton': 'Dame Vaako', 'Judi Dench': 'Aereon', 'Karl Urban': 'Vaako', 'Alexa Davalos': 'Kyra', 'Linus Roache': 'Purifier', 'Yorick van Wageningen': 'The Guv', 'Nick Chinlund': 'Toombs', 'Keith David': 'Imam', 'Mark Gibbon': 'Irgun', 'Roger Cross': 'Toal (as Roger R. Cross)', 'Terry Chen': 'Merc Pilot', 'Christina Cox': 'Eve Logan', 'Nigel Vonas': 'Merc'}" tt0259324,"{'Matt Long': 'Young Johnny Blaze', 'Raquel Alessi': 'Young Roxanne Simpson', 'Brett Cullen': 'Barton Blaze', 'Peter Fonda': 'Mephistopheles', 'Nicolas Cage': 'Johnny Blaze / Ghost Rider', 'Donal Logue': 'Mack', 'Tony Ghosthawk': 'Team Blaze', 'Hugh Sexton': 'Team Blaze', 'Marcus Jones': 'Team Blaze', 'Matt Norman': 'Team Blaze', 'Lawrence Cameron Steele': 'X Games Announcer (as Cameron Steele)', 'Wes Bentley': 'Blackheart', 'Eddie Baroo': 'Motorcycle Gang Member', 'Jessica Napier': 'Broken Spoke Waitress', 'Laurence Breuls': 'Gressil'}" tt3628584,"{'Ice Cube': 'Calvin', 'Cedric the Entertainer': 'Eddie', 'Regina Hall': 'Angie', 'Sean Patrick Thomas': 'Jimmy', 'Eve': 'Terri', 'Anthony Anderson': 'J.D.', 'Jazsmin Lewis': 'Jennifer (as Jazsmin Lewis-Kelley)', 'J.B. Smoove': 'One-Stop (as JB Smoove)', 'Common': 'Rashad', 'Nicki Minaj': 'Draya', 'Lamorne Morris': 'Jerrod', 'Utkarsh Ambudkar': 'Raja', 'Margot Bingham': 'Bree', 'Deon Cole': 'Dante', 'Troy Garity': 'Isaac'}" tt0948470,"{'Andrew Garfield': 'Spider-Man / Peter Parker', 'Emma Stone': 'Gwen Stacy', 'Rhys Ifans': 'The Lizard / Dr. Curt Connors', 'Denis Leary': 'Captain Stacy', 'Martin Sheen': 'Uncle Ben', 'Sally Field': 'Aunt May', 'Irrfan Khan': 'Rajit Ratha', 'Campbell Scott': 'Richard Parker', 'Embeth Davidtz': 'Mary Parker', 'Chris Zylka': 'Flash Thompson', 'Max Charles': 'Peter Parker (Age 4)', 'C. Thomas Howell': ""Jack's Father"", 'Jake Keiffer': 'Jack (as Jake Ryan Keiffer)', 'Kari Coleman': 'Helen Stacy', 'Michael Barra': 'Store Clerk'}" tt0413300,"{'Tobey Maguire': 'Spider-Man / Peter Parker', 'Kirsten Dunst': 'Mary Jane Watson', 'James Franco': 'New Goblin / Harry Osborn', 'Thomas Haden Church': 'Sandman / Flint Marko', 'Topher Grace': 'Venom / Eddie Brock', 'Bryce Dallas Howard': 'Gwen Stacy', 'Rosemary Harris': 'May Parker', 'J.K. Simmons': 'J. Jonah Jameson', 'James Cromwell': 'Captain Stacy', 'Theresa Russell': 'Emma Marko', 'Dylan Baker': 'Dr. Curt Connors', 'Bill Nunn': ""Joseph 'Robbie' Robertson"", 'Bruce Campbell': ""Maître d'"", 'Elizabeth Banks': 'Miss Brant', 'Ted Raimi': 'Hoffman'}" tt1872181,"{'Andrew Garfield': 'Spider-Man / Peter Parker', 'Emma Stone': 'Gwen Stacy', 'Jamie Foxx': 'Electro / Max Dillon', 'Dane DeHaan': 'Green Goblin / Harry Osborn', 'Colm Feore': 'Donald Menken', 'Felicity Jones': 'Felicia', 'Paul Giamatti': 'Aleksei Sytsevich', 'Sally Field': 'Aunt May', 'Embeth Davidtz': 'Mary Parker', 'Campbell Scott': 'Richard Parker', 'Marton Csokas': 'Dr. Ashley Kafka', 'Louis Cancelmi': 'Man in Black Suit', 'Max Charles': 'Young Peter Parker', 'B.J. Novak': 'Alistair Smythe', 'Sarah Gadon': 'Kari'}" tt1038686,"{'Paul Bettany': 'Michael', 'Lucas Black': 'Jeep Hanson', 'Tyrese Gibson': 'Kyle Williams', 'Adrianne Palicki': 'Charlie', 'Charles S. Dutton': 'Percy Walker', 'Jon Tenney': 'Howard Anderson', 'Kevin Durand': 'Gabriel', 'Willa Holland': 'Audrey Anderson', 'Kate Walsh': 'Sandra Anderson', 'Dennis Quaid': 'Bob Hanson', 'Jeanette Miller': 'Gladys Foster', 'Cameron Harlow': 'Minivan Boy', 'Doug Jones': 'Ice Cream Man', 'Josh Stamberg': 'Burton', 'Yancey Arias': 'Estevez'}" tt0091167,"{'Barbara Hershey': 'Lee', 'Carrie Fisher': 'April', 'Michael Caine': 'Elliot', 'Mia Farrow': 'Hannah', 'Dianne Wiest': 'Holly', ""Maureen O'Sullivan"": 'Norma', 'Lloyd Nolan': 'Evan', 'Max von Sydow': 'Frederick (as Max Von Sydow)', 'Woody Allen': 'Mickey', 'Lewis Black': 'Paul', 'Julia Louis-Dreyfus': 'Mary', 'Christian Clemenson': 'Larry', 'Julie Kavner': 'Gail', 'J.T. Walsh': 'Ed Smythe', 'John Turturro': 'Writer'}" tt0079522,"{'Woody Allen': 'Isaac', 'Diane Keaton': 'Mary', 'Michael Murphy': 'Yale', 'Mariel Hemingway': 'Tracy', 'Meryl Streep': 'Jill', 'Anne Byrne Hoffman': 'Emily (as Anne Byrne)', 'Karen Ludwig': 'Connie', ""Michael O'Donoghue"": 'Dennis', 'Victor Truro': 'Party Guest', 'Tisa Farrow': 'Party Guest', 'Helen Hanft': 'Party Guest', 'Bella Abzug': 'Guest of Honor', 'Gary Weis': 'Television Director', 'Kenny Vance': 'Television Producer', 'Charles Levin': 'Television Actor #1'}" tt0316654,"{'Tobey Maguire': 'Spider-Man / Peter Parker', 'Kirsten Dunst': 'Mary Jane Watson', 'James Franco': 'Harry Osborn', 'Alfred Molina': 'Doc Ock / Dr. Otto Octavius', 'Rosemary Harris': 'May Parker', 'J.K. Simmons': 'J. Jonah Jameson', 'Donna Murphy': 'Rosalie Octavius', 'Daniel Gillies': 'John Jameson', 'Dylan Baker': 'Dr. Curt Connors', 'Bill Nunn': ""Joseph 'Robbie' Robertson"", 'Vanessa Ferlito': 'Louise', 'Aasif Mandvi': 'Mr. Aziz', 'Willem Dafoe': 'Green Goblin / Norman Osborn', 'Cliff Robertson': 'Ben Parker', 'Ted Raimi': 'Hoffman'}" tt0075686,"{'Woody Allen': 'Alvy Singer', 'Diane Keaton': 'Annie Hall', 'Tony Roberts': 'Rob', 'Carol Kane': 'Allison', 'Paul Simon': 'Tony Lacey', 'Shelley Duvall': 'Pam', 'Janet Margolin': 'Robin', 'Colleen Dewhurst': 'Mom Hall', 'Christopher Walken': 'Duane Hall (as Christopher Wlaken)', 'Donald Symington': 'Dad Hall', 'Helen Ludlam': 'Grammy Hall', 'Mordecai Lawner': ""Alvy's Dad"", 'Joan Neuman': ""Alvy's Mom (as Joan Newman)"", 'Jonathan Munk': 'Alvy - Age 9', 'Ruth Volner': ""Alvy's Aunt""}" tt1289401,"{'Zach Woods': 'Tour Guide Garrett', 'Kristen Wiig': 'Erin Gilbert', 'Ed Begley Jr.': 'Ed Mulgrave', 'Charles Dance': 'Harold Filmore', 'John Milhiser': 'Higgins Student', 'Ben Harris': 'Higgins Student', 'Melissa McCarthy': 'Abby Yates', 'Karan Soni': 'Bennie', 'Kate McKinnon': 'Jillian Holtzmann', 'Bess Rous': 'Gertrude Aldridge Ghost', 'Steve Higgins': 'Dean', 'Leslie Jones': 'Patty Tolan', 'Neil Casey': 'Rowan North', 'Dave Allen': 'Electrocuted Ghost (as Dave Gruber Allen)', 'Katie Dippold': 'Rental Agent'}" tt3530002,"{'Joseph Gordon-Levitt': 'Ethan', 'Seth Rogen': 'Isaac', 'Anthony Mackie': 'Chris', 'Jillian Bell': 'Betsy', 'Lizzy Caplan': 'Diana', 'Heléne Yorke': 'Cindy (as Helene Yorke)', 'Michael Shannon': 'Mr. Green', 'Mindy Kaling': 'Sarah', 'Ilana Glazer': 'Rebecca Grinch', 'Aaron Hill': 'Tommy Owens', 'Tracy Morgan': 'Narrator / Santa', 'Darrie Lawrence': 'Nana', 'Nathan Fielder': 'Joshua', 'James Franco': 'James Franco', 'Miley Cyrus': 'Miley Cyrus'}" tt1430607,"{'James McAvoy': 'Arthur (voice)', 'Hugh Laurie': 'Steve (voice)', 'Bill Nighy': 'Grandsanta (voice)', 'Jim Broadbent': 'Santa (voice)', 'Imelda Staunton': 'Mrs Santa (voice)', 'Ashley Jensen': 'Bryony (voice)', 'Marc Wootton': 'Peter (voice)', 'Laura Linney': 'North Pole Computer (voice)', 'Eva Longoria': 'Chief De Silva (voice)', 'Ramona Marquez': 'Gwen (voice)', 'Michael Palin': 'Ernie Clicker (voice)', 'Sanjeev Bhaskar': 'Lead Elf (voice)', 'Robbie Coltrane': 'Lead Elf (voice)', 'Joan Cusack': 'Lead Elf (voice)', 'Rhys Darby': 'Lead Elf (voice)'}" tt1430626,"{'Hugh Grant': 'The Pirate Captain (voice)', 'Martin Freeman': 'The Pirate with a Scarf (voice)', 'Imelda Staunton': 'Queen Victoria (voice)', 'David Tennant': 'Charles Darwin (voice)', 'Jeremy Piven': 'Black Bellamy (voice)', 'Salma Hayek': 'Cutlass Liz (voice)', 'Lenny Henry': 'Peg Leg Hastings (voice)', 'Brian Blessed': 'The Pirate King (voice)', 'Russell Tovey': 'The Albino Pirate (voice)', 'Anton Yelchin': 'The Albino Pirate (voice)', 'Brendan Gleeson': 'The Pirate with Gout (voice)', 'Ashley Jensen': 'The Surprisingly Curvaceous Pirate (voice)', 'Al Roker': 'The Pirate Who Likes Sunsets and Kittens (voice)', 'Ben Whitehead': 'The Pirate Who Likes Sunsets and Kittens (voice)', 'Mike Cooper': 'Admiral Collingwood (voice)'}" tt2510894,"{'Adam Sandler': 'Dracula (voice)', 'Andy Samberg': 'Jonathan (voice)', 'Selena Gomez': 'Mavis (voice)', 'Kevin James': 'Frankenstein (voice)', 'Steve Buscemi': 'Wayne (voice)', 'David Spade': 'Griffin (voice)', 'Keegan-Michael Key': 'Murray (voice)', 'Asher Blinkoff': 'Dennis (voice)', 'Fran Drescher': 'Eunice (voice)', 'Molly Shannon': 'Wanda (voice)', 'Megan Mullally': 'Grandma Linda (voice)', 'Nick Offerman': 'Grandpa Mike (voice)', 'Dana Carvey': 'Dana (voice)', 'Rob Riggle': 'Bela (voice)', 'Mel Brooks': 'Vlad (voice)'}" tt0837562,"{'Adam Sandler': 'Dracula (voice)', 'Andy Samberg': 'Jonathan (voice)', 'Selena Gomez': 'Mavis (voice)', 'Kevin James': 'Frankenstein (voice)', 'Fran Drescher': 'Eunice (voice)', 'Steve Buscemi': 'Wayne (voice)', 'Molly Shannon': 'Wanda (voice)', 'David Spade': 'Griffin (voice)', 'CeeLo Green': 'Murray (voice)', 'Jon Lovitz': 'Quasimodo (voice)', 'Brian George': 'Suit of Armor (voice)', 'Luenell': 'Shrunken Heads (voice)', 'Brian Stack': 'Pilot (voice)', 'Chris Parnell': 'Fly (voice)', 'Jackie Sandler': 'Martha (voice)'}" tt1051904,"{'Jack Black': 'Stine / voice of Slappy', 'Dylan Minnette': 'Zach', 'Odeya Rush': 'Hannah', 'Ryan Lee': 'Champ', 'Amy Ryan': 'Gale', 'Jillian Bell': 'Lorraine', 'Halston Sage': 'Taylor', 'Steven Krueger': 'Davidson', 'Keith Arthur Bolden': 'Principal Garrison', 'Amanda Lund': 'Officer Brooks', 'Timothy Simons': 'Officer Stevens', 'Ken Marino': 'Coach Carr', 'Karan Soni': 'Mr. Rooney', 'R.L. Stine': 'Mr. Black', 'Caleb Emery': 'Dumb Jock'}" tt1288558,"{'Jane Levy': 'Mia', 'Shiloh Fernandez': 'David', 'Lou Taylor Pucci': 'Eric', 'Jessica Lucas': 'Olivia', 'Elizabeth Blackmore': 'Natalie', 'Phoenix Connolly': 'Teenager', 'Jim McLarty': 'Harold', 'Sian Davis': 'Old Woman', 'Stephen Butterworth': 'Toothless Redneck', 'Karl Willetts': 'Long Haired Redneck', 'Randal Wilson': 'Abomination Mia', 'Rupert Degas': 'Demon (voice)', 'Bob Dorian': ""Professor Knowby from the Original 'Evil Dead' (voice)"", 'Ellen Sandweiss': ""Cheryl from the Original 'Evil Dead' (voice)"", 'Inca': 'Grandpa the Dog'}" tt4052882,"{'Blake Lively': 'Nancy', 'Óscar Jaenada': 'Carlos', 'Angelo Josue Lozano Corzo': 'Surfer', 'Joseph Salas': 'Surfer (as Jose Manuel Trujillo Salas)', 'Brett Cullen': 'Dad', 'Sedona Legge': 'Chloe', 'Pablo Calva': 'Boy', 'Diego Espejel': 'Intoxicated Man', 'Janelle Bailey': 'Mom', 'Ava Dean': 'Young Nancy', 'Chelsea Moody': 'Young Mom', 'Sully Seagull': ""Sully 'Steven' Seagull (as Sully 'Steven' Seagall)""}" tt7264080,"{'Louis C.K.': 'Glen', 'Chloë Grace Moretz': 'China', 'Rose Byrne': 'Grace', 'Charlie Day': 'Ralph', 'Edie Falco': 'Paula', 'Pamela Adlon': 'Maggie', 'Ebonee Noel': 'Zasha', 'Helen Hunt': 'Aura', 'John Malkovich': 'Leslie', 'Albert Brooks': 'Dick Welker (as A. Brooks)', 'Sincée J. Daniels': 'Personal Trainer (as Sincée Daniels)', 'Robert Kelly': 'French Paparazzi #2', 'Lea Cohen': 'Receptionist', 'Billy K. Peterson': 'Circus King', 'Lucca De Oliveira': 'Boy in Movie'}" tt1496025,"{'Kate Beckinsale': 'Selene', 'Stephen Rea': 'Dr. Jacob Lane', 'Michael Ealy': 'Detective Sebastian', 'Theo James': 'David', 'India Eisley': 'Eve', 'Sandrine Holt': 'Lida', 'Charles Dance': 'Thomas', 'Kris Holden-Ried': 'Quint', 'Jacob Blair': 'Officer Kolb', 'Adam Greydon Reid': 'Med Tech #1', 'Catlin Adams': 'Olivia', 'Robert Lawrenson': 'Waterfront Cop', 'Lee Majdoub': 'Desk Guard #1', 'John Innes': 'Medical Supervisor', 'Tyler McClendon': 'Scientist'}" tt0834001,"{'Michael Sheen': 'Lucian', 'Bill Nighy': 'Viktor', 'Rhona Mitra': 'Sonja', 'Steven Mackintosh': 'Tannis', 'Kevin Grevioux': 'Raze', 'David Aston': 'Coloman', 'Geraldine Brophy': ""Nobleman's Wife"", 'Leighton Cardno': 'Fearful Lycan', 'Alex Carroll': 'Young Lucian (as Alexander Carroll)', 'Elizabeth Hawthorne': 'Orsova', 'Jason Hood': 'Death Dealer', 'Mark Mitchinson': 'Nobleman', 'Tania Nolan': 'Luka', 'Craig Parker': 'Sabas', 'Timothy Raby': 'Janosh (as Tim Raby)'}" tt0401855,"{'Kate Beckinsale': 'Selene', 'Scott Speedman': 'Michael', 'Tony Curran': 'Marcus', 'Derek Jacobi': 'Corvinus (as Sir Derek Jacobi)', 'Bill Nighy': 'Viktor', 'Steven Mackintosh': 'Tanis', 'Shane Brolly': 'Kraven', 'Brian Steele': 'William', 'Zita Görög': 'Amelia (as Zita Gorog)', 'Scott McElroy': 'Soren', 'John Mann': 'Samuel', 'Michael Sheen': 'Lucian', 'Sophia Myles': 'Erika (as Sophia Miles)', 'Richard Cetrone': 'Pierce (as Rich Cetrone)', 'Mike Mukatis': 'Taylor'}" tt0271263,"{'Adam Sandler': 'Davey / Whitey / Eleanore / Deer (voice)', 'Jackie Sandler': 'Jennifer (voice) (as Jackie Titone)', 'Austin Stout': 'Benjamin (voice)', 'Kevin Nealon': 'Mayor (voice)', 'Rob Schneider': 'Chinese Waiter / Narrator (voice)', 'Norm Crosby': 'Judge (voice)', 'Jon Lovitz': 'Tom Baltezor (voice)', 'Tyra Banks': ""Victoria's Secret Gown (voice)"", 'Blake Clark': 'Radio Shack Walkie-Talkie (voice)', 'Peter Dante': 'Foot Locker Guy (voice)', 'Ellen Albertini Dow': ""See's Candies Box (voice)"", 'Kevin P. Farley': 'Panda Express Panda (voice) (as Kevin Farley)', 'Lari Friedman': 'Coffee Bean & Tea Leaf Cup (voice)', 'Tom Kenny': 'Sharper Image Chair (voice)', 'Cole Sprouse': 'K-B Toys Soldier (voice)'}" tt0385880,"{'Ryan Whitney Newman': 'Little Girl (voice) (as Ryan Newman)', 'Steve Buscemi': 'Nebbercracker (voice)', 'Mitchel Musso': 'DJ (voice)', ""Catherine O'Hara"": 'Mom (voice)', 'Fred Willard': 'Dad (voice)', 'Sam Lerner': 'Chowder (voice)', 'Woody Schultz': 'Paramedic #1 (voice)', 'Ian McConnel': 'Paramedic #2 (voice)', 'Maggie Gyllenhaal': 'Zee (voice)', 'Jason Lee': 'Bones (voice)', 'Spencer Locke': 'Jenny (voice)', 'Kevin James': 'Officer Landers (voice)', 'Nick Cannon': 'Officer Lister (voice)', 'Jon Heder': ""Reginald 'Skull' Skulinski (voice)"", 'Kathleen Turner': 'Constance (voice)'}" tt0119345,"{'Jennifer Love Hewitt': 'Julie James', 'Sarah Michelle Gellar': 'Helen Shivers', 'Ryan Phillippe': 'Barry Cox', 'Freddie Prinze Jr.': 'Ray Bronson', 'Muse Watson': 'Benjamin Willis / Fisherman', 'Bridgette Wilson-Sampras': 'Elsa Shivers (as Bridgette Wilson)', 'Anne Heche': 'Melissa Egan', 'Johnny Galecki': 'Max', 'Stuart Greer': 'Officer', 'J. Don Ferguson': 'MC', 'Deborah Hobart': 'Mrs. James', 'Mary McMillan': 'Mrs. Cox', ""Rasool J'Han"": 'Deb', 'Dan Albright': 'Sheriff', 'Lynda Clark': 'Pageant Official'}" tt0115963,"{'Robin Tunney': 'Sarah Bailey', 'Fairuza Balk': 'Nancy Downs', 'Neve Campbell': 'Bonnie', 'Rachel True': 'Rochelle', 'Skeet Ulrich': 'Chris Hooker', 'Christine Taylor': 'Laura Lizzie', 'Breckin Meyer': 'Mitt', 'Nathaniel Marston': 'Trey', 'Cliff De Young': 'Mr. Bailey', 'Assumpta Serna': 'Lirio', 'Helen Shaver': 'Grace Downs', 'Jeanine Jackson': 'Jenny', 'Brenda Strong': 'Doctor', 'Elizabeth Guber': ""Laura's Friend"", 'Jennifer Greenhut': ""Laura's Friend""}" tt0808151,"{'Tom Hanks': 'Robert Langdon', 'Ewan McGregor': 'Camerlengo Patrick McKenna', 'Ayelet Zurer': 'Vittoria Vetra', 'Stellan Skarsgård': 'Commander Richter', 'Pierfrancesco Favino': 'Inspector Olivetti', 'Nikolaj Lie Kaas': 'Assassin', 'Armin Mueller-Stahl': 'Cardinal Strauss', 'Thure Lindhardt': 'Chartrand', 'David Pasquesi': 'Claudio Vincenzi', 'Cosimo Fusco': 'Father Simeon', 'Victor Alfieri': 'Lieutenant Valenti', 'Franklin Amobi': 'Cardinal Lamasse', 'Curt Lowens': 'Cardinal Ebner', 'Bob Yerkes': 'Cardinal Guidera', 'Marc Fiorini': 'Cardinal Baggia (as Marco Fiorini)'}" tt0373051,"{'Brendan Fraser': 'Trevor Anderson', 'Josh Hutcherson': 'Sean Anderson', 'Anita Briem': 'Hannah Ásgeirsson', 'Seth Meyers': 'Professor Alan Kitzens', 'Jean Michel Paré': 'Max Anderson', 'Jane Wheeler': 'Elizabeth', 'Frank Fontaine': 'Old Man', 'Giancarlo Caltabiano': 'Leonard', 'Kaniehtiio Horn': 'Gum-Chewing Girl', 'Garth Gilker': 'Sigurbjörn Ásgeirsson'}" tt2236182,"{'Mariel Hemingway': 'Lynn Snyder', 'Ethan Suplee': 'Marshall', 'LeVar Burton': 'Dr. Halpern', 'Danny Trejo': 'Captain Caspian', 'Heather Hemmens': 'Ashley', 'French Stewart': 'Doctor Arnold', 'Chad Lindberg': 'Kyle', 'Madonna Magee': 'Vivian', 'Andy Clemence': 'Bob', 'Peter Ngo': 'Jud Nagase', 'Lilan Bowden': 'Jun Nagase', 'Kim Little': 'Pauline', 'Lorenzo Eduardo': 'Park Ranger Sanchez', 'Kerisse Hutchinson': 'Julie', 'Jon Kondelik': 'Jason'}" tt2978716,"{'Anthony Michael Hall': 'Patrick', 'Daryl Hannah': 'Birdy', 'Alan Ruck': 'Joseph', 'Rachel G. Fox': 'Tracie Jackson', 'Shirley Jones': 'Nana', 'Jennifer Taylor': 'Karin', 'Daniel Ross Owens': 'Perry', 'Gibson Bobby Sjobeck': 'Nathan', 'Zoe Canner': 'Irina', 'Tia Robinson': 'Janice', 'Diane Ayala Goldner': 'Officer Johnson', 'Rogelio T. Ramos': 'Officer Lopez', 'Hayley Derryberry': 'Bloody Woman', 'James Henderson': 'Desperate Man (as James Mullen Henderson)', 'Destiny Hernandez': 'Teresa'}" tt2621126,{} tt2518926,"{'Treat Williams': 'Gabe Jacobs', 'Ronny Cox': 'Justin', 'Jillian Rose Reed': 'Jade Jacobs', 'Joshua Michael Allen': 'Craig Carson', 'Max Aria': 'Leo Karst', 'Johannes Goetz': 'Hans', 'Julia Paul': 'Leanna', 'Arthur Richardson': 'Sgt. Mike', 'Jose Rosete': 'Doug', 'Laura Tuny': 'Kim Evans', 'Roani Whent': 'Nile', 'Joe Bohn': 'News Pilot', 'Kelly V. Dolan': 'Technican Rosario', 'Kameshia Duncan': 'Reporter', 'Eric Geller': 'Helicopter Pilot'}" tt1020558,"{'Michael Fassbender': 'Centurion Quintus Dias', 'Andreas Wisniewski': 'Commander Gratus', 'Dave Legeno': 'Vortix', 'Axelle Carolyn': 'Aeron', 'Dominic West': 'General Titus Flavius Virilus', ""Dhafer L'Abidine"": 'Arm Wrestling Opponent', 'JJ Feild': 'Thax', 'Lee Ross': 'Septus', 'David Morrissey': 'Bothos', 'Simon Chadwick': 'Carlisle Messenger', 'Ulrich Thomsen': 'Gorlacon', 'Ryan Atkinson': ""Gorlacon's Son"", 'Paul Freeman': 'Governor Julius Agricola', 'Olga Kurylenko': 'Etain', 'Jake Maskall': 'Roman Officer Argos (as Jake Maskell)'}" tt0108149,"{'Stockard Channing': 'Ouisa', 'Will Smith': 'Paul', 'Donald Sutherland': 'Flan', 'Ian McKellen': 'Geoffrey', 'Mary Beth Hurt': 'Kitty', 'Bruce Davison': 'Larkin', 'Richard Masur': 'Dr. Fine', 'Anthony Michael Hall': 'Trent', 'Heather Graham': 'Elizabeth', 'Eric Thal': 'Rick', 'Anthony Rapp': 'Ben', 'Oz Perkins': 'Woody (as Osgood Perkins)', 'Catherine Kellner': 'Tess', 'J.J. Abrams': 'Doug (as Jeffrey Abrams)', 'Joe Pentangelo': 'Police Officer'}" tt1623745,"{'Juno Temple': 'Lily Hobart', 'Kay Panabaker': 'Alison Hoffman', 'Kate Bosworth': 'Bonnie Muller', 'Neal McDonough': 'Hogan', 'David Warshofsky': 'Joseph Hoffman', 'Leslie Mann': 'Margaret Hobart', 'Bob Larkin': 'Mr. Kovacs', 'Kathleen Gati': 'Sally Heron', 'Scotty Noyd Jr.': 'Ray Cawley', 'Kyle Gallner': 'Jesse MacNamara', 'Carlos PenaVega': 'Louis Estes (as Carlos Pena)', 'Chris Coy': 'David Riley', 'Lauren Pennington': 'Shawna Cawley (as Lauren Whitney Pennington)', 'Lydia Blanco Garza': 'Female Cashier (as Lydia Blanco)', 'Marc Rose': 'Man'}" tt1692084,"{'Ben Boodman': 'Dancer', 'Kathryn Burns': 'Orchid', 'Lizzy Caplan': 'Sheila', 'Michael Coleman': 'Bakersfield Bouncer', 'Andrew Daly': 'Mr. Doobin (as Andy Daly)', 'Patrick Daniel': 'Diner', 'Abby Elliott': 'Monica', 'Rich Fulcher': 'Arnie', 'Kyle Gass': 'Winter Wierdo', 'Curtis Gwinn': 'Tow Truck Driver', 'Brandon Johnson': 'Cab Driver', 'Matt Jones': 'Richie (as Matt L. Jones)', 'Joe Lo Truglio': 'Officer Fogerty', 'Shannon Joy Madden': 'Band Merch Buyer', 'Garrett Mendez': 'Office Coworker'}" tt1634121,"{'Clive Owen': 'John Farrow', 'Carice van Houten': 'Susanna', 'Daniel Brühl': 'Father Antonio', 'Pilar López de Ayala': 'Luisa', 'Ella Purnell': 'Mia', 'Izán Corchero': 'Juan', 'Kerry Fox': 'Rachel', 'Héctor Alterio': 'Old Priest', 'Adrian Rawlins': 'Police Inspector', 'Michael Nardone': 'Frank', 'Mark Wingett': 'Dave', ""Peter McNeil O'Connor"": 'David Warlton', 'Mary Woodvine': 'Teacher', 'Lolita Chakrabarti': 'ER Doctor', 'Ralph Ineson': 'Alarm Installer'}" tt0988849,"{'Robert Boulter': 'Sean', 'Sian Breckin': 'Lisa', 'Tom Burke': 'Bluey', 'Nichola Burley': 'Tammi', 'Julian Morris': 'Josh', 'Jay Taylor': 'Marcus', 'Jaime Winstone': 'Kim'}" tt1016268,"{'John Beard': 'Himself - Former Enron Accountant', 'Tim Belden': 'Himself (archive footage)', 'Barbara Boxer': 'Herself (archive footage)', 'George W. Bush': 'Himself (archive footage)', 'James Chanos': 'Himself - President, Kynikos Associates (as Jim Chanos)', 'Dick Cheney': 'Himself', 'Bill Clinton': 'Himself (archive footage)', 'Carol Coale': 'Herself - Ex-Stock Analyst, Prudential Securities', 'Peter Coyote': 'Narrator', 'Gray Davis': 'Himself - Former Governor of California', 'Reggie Dees II': 'Himself - Young man the stripper dances in front of (as Reggie Deets II)', 'Joseph Dunn': 'Himself - California State Senator', 'Max Eberts': 'Himself - Former Spokesman, Enron Energy Services', 'Peter Elkind': ""Himself - Co-Author, 'The Smartest Guys in the Room'"", 'Andrew Fastow': 'Himself (archive footage)'}" tt3064298,"{'Lake Bell': 'Nancy', 'Rory Kinnear': 'Sean', 'Ken Stott': 'Bert', 'Harriet Walter': 'Fran', 'Olivia Williams': 'Hilary', 'Sharon Horgan': 'Elaine', 'Ophelia Lovibond': 'Jessica', 'Simon Pegg': 'Jack', 'Stephen Campbell Moore': 'Ed', 'Keir Charles': 'Dom', 'Phoebe Waller-Bridge': 'Katie', 'Robert Wilfort': 'Ryan', 'Paul Thornley': 'Adam', 'Henry Lloyd-Hughes': 'Daniel', 'James Reilly': 'Cloakroom Attendant (as James Oliver Reilly)'}" tt2051894,"{'Scott Elrod': 'Cory Brand', 'Dorian Brown Pham': 'Emma (as Dorian Brown)', 'Charles Henry Wyson': 'Tyler', 'James Devoti': 'Clay', 'Nicole Leigh': 'Karen', 'Juan Martinez': 'Carlos', 'Drew Waters': 'Coach Pajersky', 'Robert Peters': 'J.T.', 'Vivica A. Fox': 'Helene', 'Johnny Baker': ""Kindricks' Dad"", 'Billy Brazelton': 'Security Guard', 'Bob Carpenter': 'Baseball Announcer', 'Victor Cruz': 'Umpire', 'J. Alan Davidson': 'Meth Addict', 'Gabe Davis': 'Young Cory'}" tt4034228,"{'Casey Affleck': 'Lee Chandler', ""Ben O'Brien"": 'Young Patrick', 'Kyle Chandler': 'Joe Chandler', 'Richard Donelly': 'Mr. Martinez (1st Tenant)', 'Virginia Loring Cooke': 'Mrs. Groom (2nd tenant)', 'Quincy Tyler Bernstine': 'Marianne (3rd Tenant)', 'Missy Yager': 'Mrs. Olsen (4th Tenant)', 'Stephen McKinley Henderson': 'Mr. Emery', 'Ben Hanson': 'Lenny - the bartender', 'Mary Mallen': 'Sharon', 'Lewis D. Wheeler': '1st Businessman at Bar', 'Anthony Estrella': '2nd Businessman at Bar', 'C.J. Wilson': 'George', 'Susan Pourfar': 'Nurse Irene', 'Robert Sella': 'Dr. Muller'}" tt2345112,"{'Marcia Gay Harden': 'Nurse Doris Nelson', 'Matt Barr': 'Dr. Paul Mikkelson', 'Zac Efron': ""Dr. Charles 'Jim' Carrico"", 'Mallory Moye': 'Emergency Room Nurse', 'Paul Giamatti': 'Abraham Zapruder', 'Elizabeth Tulloch': 'Marilyn Sitzman (as Bitsie Tulloch)', 'Ron Livingston': 'James Hosty', 'Jason Douglas': 'Ken Howe', 'David Harbour': 'Gordon Shanklin', 'James Badge Dale': 'Robert Oswald', 'Larry Jack Dotson': 'Acme Brick Supervisor', 'Austin Nichols': 'Emory Roberts', 'Billy Bob Thornton': 'Forrest Sorrels', 'Jonathan Breck': 'Winston Lawson', 'Eugene Lee': 'Orderly'}" tt0038109,"{'Ingrid Bergman': 'Dr. Constance Petersen', 'Gregory Peck': 'John Ballantyne', 'Michael Chekhov': 'Dr. Alexander Brulov', 'Leo G. Carroll': 'Dr. Murchison', 'Rhonda Fleming': 'Mary Carmichael', 'John Emery': 'Dr. Fleurot', 'Norman Lloyd': 'Mr. Garmes', 'Bill Goodwin': 'House Detective', 'Steven Geray': 'Dr. Graff', 'Donald Curtis': 'Harry', 'Wallace Ford': 'Stranger in Hotel Lobby', 'Art Baker': 'Det. Lt. Cooley', 'Regis Toomey': 'Det. Sgt. Gillespie', 'Paul Harvey': 'Dr. Hanish'}" tt0097239,"{'Morgan Freeman': 'Hoke Colburn', 'Jessica Tandy': 'Daisy Werthan', 'Dan Aykroyd': 'Boolie Werthan', 'Patti LuPone': 'Florine Werthan (as Patti Lupone)', 'Esther Rolle': 'Idella', 'Jo Ann Havrilla': 'Miss McClatchey (as Joann Havrilla)', 'William Hall Jr.': 'Oscar', 'Alvin M. Sugarman': 'Dr. Weil', 'Clarice F. Geigerman': 'Nonie', 'Muriel Moore': 'Miriam', 'Sylvia Kaler': 'Beulah', 'Carolyn Gold': 'Neighbor Lady', 'Crystal Fox': 'Katie Bell (as Crystal R. Fox)', 'Bob Hannah': 'Red Mitchell', 'Ray McKinnon': 'Trooper #1'}" tt3168230,"{'Ian McKellen': 'Sherlock Holmes', 'Laura Linney': 'Mrs. Munro', 'Milo Parker': 'Roger', 'Hiroyuki Sanada': 'Tamiki Umezaki', 'Hattie Morahan': 'Ann Kelmot', 'Patrick Kennedy': 'Thomas Kelmot', 'Roger Allam': 'Dr. Barrie', 'Phil Davis': 'Inspector Gilbert', 'Frances de la Tour': 'Madame Schirmer (as Frances De La Tour)', 'Charles Maddox': 'Oswald', 'Takako Akashi': 'Maya Umezaki', 'Zak Shukor': 'Masuo Umezaki', 'John Sessions': 'Mycroft Holmes', 'Michael Culkin': 'Bank Manager', 'David Foxxe': 'Chemist'}" tt0032976,"{'Laurence Olivier': ""'Maxim' de Winter"", 'Joan Fontaine': 'Mrs. de Winter', 'George Sanders': 'Jack Favell', 'Judith Anderson': 'Mrs. Danvers', 'Nigel Bruce': 'Major Giles Lacy', 'Reginald Denny': 'Frank Crawley', 'C. Aubrey Smith': 'Colonel Julyan', 'Gladys Cooper': 'Beatrice Lacy', 'Florence Bates': 'Mrs. Van Hopper', 'Melville Cooper': 'Coroner', 'Leo G. Carroll': 'Dr. Baker', 'Leonard Carey': 'Ben', 'Lumsden Hare': 'Tabbs', 'Edward Fielding': 'Frith', 'Philip Winter': 'Robert'}" tt1876547,"{'Ving Rhames': 'Henry', 'Taryn Manning': 'Ramona', 'Johnny Pacar': 'Julien', 'Gary Weeks': 'Mack', 'Lesley-Ann Brandt': 'Cassie', 'Eddie Steeples': 'Billy', 'Robert Blanche': 'Brockton', 'Gerald Webb': 'Kevin Anderson', 'Lilan Bowden': 'Myrah', 'Anya Monzikova': 'Sara', 'Lauran Doverspike': 'Patient Zero', 'Kimberly Ables Jindra': 'Zombie (as Kimberly Ann Ables Jindra)', 'Ami Albea': 'Zombie', 'Darryl Allen': 'Zombie', 'John Alonzo': 'Zombie'}" tt3567288,"{'Olivia DeJonge': 'Becca', 'Ed Oxenbould': 'Tyler', 'Deanna Dunagan': 'Nana', 'Peter McRobbie': 'Pop Pop', 'Kathryn Hahn': 'Mom', 'Celia Keenan-Bolger': 'Stacey', 'Samuel Stricklen': 'Conductor', 'Patch Darragh': 'Dr. Sam', 'Jorge Cordova': 'Miguel', 'Steve Annan': 'Man on the Street', 'Benjamin Kanes': 'Dad', 'Ocean James': 'Young Becca', 'Seamus Moroney': 'Young Tyler'}" tt1623288,"{'Kodi Smit-McPhee': 'Norman Babcock (voice)', 'Tucker Albrizzi': 'Neil (voice)', 'Anna Kendrick': 'Courtney Babcock (voice)', 'Casey Affleck': 'Mitch (voice)', 'Christopher Mintz-Plasse': 'Alvin (voice)', 'Leslie Mann': 'Sandra Babcock (voice)', 'Jeff Garlin': 'Perry Babcock (voice)', 'Elaine Stritch': 'Grandma (voice)', 'Bernard Hill': 'The Judge (voice)', 'Jodelle Ferland': 'Aggie (voice)', 'Tempestt Bledsoe': 'Sheriff Hooper (voice)', 'Alex Borstein': 'Mrs. Henscher (voice)', 'John Goodman': 'Mr. Prenderghast (voice)', 'Hannah Noyes': 'Salma (voice)', 'Jack Blessing': 'Slob Guy / Civil War Ghost (voice)'}" tt0063350,"{'Duane Jones': 'Ben', ""Judith O'Dea"": 'Barbra', 'Karl Hardman': 'Harry Cooper', 'Marilyn Eastman': 'Helen Cooper', 'Keith Wayne': 'Tom', 'Judith Ridley': 'Judy', 'Kyra Schon': 'Karen Cooper / Corpse in House', 'Charles Craig': 'Newscaster / Zombie', 'S. William Hinzman': 'Zombie (as Bill Heinzman)', 'George Kosana': 'Sheriff McClelland', 'Frank Doak': 'Scientist', 'Bill Cardille': ""Himself - Field Reporter (as Bill 'Chilly Billy' Cardille)"", 'A.C. McDonald': 'Zombie / Posse Member', 'Samuel R. Solito': 'Zombie / Posse Member', 'Mark Ricci': 'Washington Scientist'}" tt1204977,"{'Olivia Cooke': 'Laine Morris', 'Ana Coto': 'Sarah Morris', 'Daren Kagasoff': 'Trevor', 'Bianca A. Santos': 'Isabelle (as Bianca Santos)', 'Douglas Smith': 'Pete', 'Shelley Hennig': 'Debbie Galardi', 'Sierra Heuermann': 'Doris Zander', 'Sunny May Allison': 'Doris (10 years old)', 'Lin Shaye': 'Paulina Zander', 'Claudia Katz Minnick': 'Mother (as Claudia Katz)', 'Vivis Colombetti': 'Nona (as Vivis)', 'Robyn Lively': 'Mrs. Galardi', 'Matthew Settle': 'Mr. Morris', 'Afra Sophia Tully': 'Young Laine (as Afra Tully)', 'Claire Beale': 'Young Debbie'}" tt0298388,"{'Phil Vischer': 'Jonah / Mr. Lunt / Bob the Tomato / Phillipe Pea / Percy Pea / Nezzer / Pa Grape / Cockney Pea #2 / King Twistomer (voice)', 'Mike Nawrocki': 'Larry the Cucumber / Jean Claude Pea / Cockney Pea #1 / Self-Help Tape Voice / Jerry Gourd / Whooping BBQ Pea (voice)', 'Tim Hodge': 'Khalil (voice)', 'Lisa Vischer': 'Junior Asparagus (voice)', 'Shelby Morimoto': 'Annie (voice) (as Shelby Vischer)', 'Dan Anderson': 'Dad Asparagus (voice)', 'Kristin Blegen': 'Laura Carrot (voice)', 'Jim Poole': 'Scooter / Townsperson (voice)', 'Ron Smith': 'City Official / Crazed Jopponian (voice)', 'Sarah Catherine Brooks': 'Message from the Lord Choir (voice)', 'Adam Frick': 'Message from the Lord Choir (voice)', 'Paige Craig': 'Message from the Lord Choir (voice)', 'Michael Harrison': 'Message from the Lord Choir (voice) (as Mike Harrison)', 'Amy Howard': 'Message from the Lord Choir (voice)', 'Chris Geiger': 'Message from the Lord Choir (voice)'}" tt0339291,"{'Jim Carrey': 'Count Olaf', 'Liam Aiken': 'Klaus', 'Emily Browning': 'Violet', 'Kara Hoffman': 'Sunny', 'Shelby Hoffman': 'Sunny', 'Jude Law': 'Lemony Snicket (voice)', 'Timothy Spall': 'Mr. Poe', ""Catherine O'Hara"": 'Justice Strauss', 'Billy Connolly': 'Uncle Monty', 'Meryl Streep': 'Aunt Josephine', 'Luis Guzmán': 'Bald Man (as Luis Guzman)', 'Jamie Harris': 'Hook-Handed Man', 'Craig Ferguson': 'Person of Indeterminate Gender', 'Jennifer Coolidge': 'White Faced Woman', 'Jane Adams': 'White Faced Woman'}" tt0112642,"{'Chauncey Leopardi': 'Nicky', 'Spencer Vrooman': 'Andreas', 'Malachi Pearson': 'Casper (voice)', 'Cathy Moriarty': 'Carrigan', 'Eric Idle': 'Dibs', 'Ben Stein': 'Rugg', 'Don Novello': 'Father Guido Sarducci', 'Fred Rogers': 'Mr. Rogers (archive footage) (as Mr. Rogers)', 'Terry Murphy': ""Terry Murphy ('Hard Copy')"", 'Bill Pullman': 'Dr. Harvey', 'Christina Ricci': 'Kat', 'Ernestine Mercer': 'Woman Being Interviewed', 'Doug Bruckner': 'Reporter (voice) (as Douglas J.O. Bruckner)', 'Joe Nipote': 'Stretch (voice)', 'Joe Alaskey': 'Stinkie (voice)'}" tt0134847,"{'Vin Diesel': 'Richard B. Riddick', 'Radha Mitchell': 'Carolyn Fry', 'Cole Hauser': 'William J. Johns', 'Keith David': ""Abu 'Imam' al-Walid"", 'Lewis Fitz-Gerald': 'Paris P. Ogilvie', 'Claudia Black': ""Sharon 'Shazza' Montgomery"", 'Rhiana Griffith': 'Jack', 'John Moore': ""John 'Zeke' Ezekiel"", 'Simon Burke': 'Greg Owens', 'Les Chantery': 'Suleiman', 'Sam Sari': 'Hassan', 'Firass Dirani': 'Ali', 'Ric Anderson': 'Total Stranger', 'Vic Wilson': 'Captain Tom Mitchell', 'Angela Moore': 'Dead Crew Member'}" tt0905372,"{'Mary Elizabeth Winstead': 'Kate Lloyd', 'Joel Edgerton': 'Carter', 'Ulrich Thomsen': 'Dr. Sander Halvorson', 'Eric Christian Olsen': 'Adam Finch', 'Adewale Akinnuoye-Agbaje': 'Jameson', 'Paul Braunstein': 'Griggs', 'Trond Espen Seim': 'Edvard Wolner', 'Kim Bubbs': 'Juliette', 'Jørgen Langhelle': 'Lars', 'Jan Gunnar Røise': 'Olav', 'Stig Henrik Hoff': 'Peder', 'Kristofer Hivju': 'Jonas', 'Jo Adrian Haavind': 'Henrik', 'Carsten Bjørnlund': 'Karl', 'Jonathan Walker': 'Colin (as Jonathan Lloyd Walker)'}" tt1440129,"{'Taylor Kitsch': 'Lieutenant Alex Hopper', 'Alexander Skarsgård': 'Commander Stone Hopper', 'Rihanna': ""Petty Officer Cora 'Weps' Raikes"", 'Brooklyn Decker': 'Sam', 'Tadanobu Asano': 'Captain Yugi Nagata', 'Hamish Linklater': 'Cal Zapata', 'Liam Neeson': 'Admiral Shane', 'Peter MacNicol': 'Secretary of Defense', 'John Tui': ""Chief Petty Officer Walter 'The Beast' Lynch"", 'Jesse Plemons': ""Boatswain Mate Seaman Jimmy 'Ordy' Ord"", 'Gregory D. Gadson': 'Lieutenant Colonel Mick Canales', 'Jerry Ferrara': 'Sampson JOOD Strodell', 'Adam Godley': 'Dr. Nogrady', 'Rico McClinton': 'Captain Browley', 'Joji Yoshida': 'Chief Engineer Hiroki'}" tt0023245,"{'Boris Karloff': 'Imhotep', 'Zita Johann': 'Helen Grosvenor', 'David Manners': 'Frank Whemple', 'Arthur Byron': 'Sir Joseph Whemple', 'Edward Van Sloan': 'Doctor Muller', 'Bramwell Fletcher': 'Ralph Norton', 'Noble Johnson': 'The Nubian', 'Kathryn Byron': 'Frau Muller', 'Leonard Mudie': 'Professor Pearson', 'James Crane': 'The Pharoh', 'Henry Victor': 'The Saxon Warrior (scenes deleted)', 'Arnold Gray': 'Knight (scenes deleted)'}" tt0085636,"{'Tom Atkins': 'Daniel Challis', 'Stacey Nelkin': 'Ellie Grimbridge', ""Dan O'Herlihy"": 'Conal Cochran', 'Michael Currie': 'Rafferty', 'Ralph Strait': 'Buddy Kupfer', 'Jadeen Barbor': 'Betty Kupfer', 'Brad Schacter': 'Little Buddy (as Bradley Schachter)', 'Garn Stephens': 'Marge', 'Nancy Kyes': 'Linda Challis', 'Jonathan Terry': 'Starker (as Jon Terry)', 'Al Berry': 'Harry Grimbridge', 'Wendy Wessberg': 'Teddy', 'Essex Smith': 'Walter Jones', 'Maidie Norman': 'Nurse Agnes', 'John MacBride': 'Sheriff'}" tt0082495,"{'Jamie Lee Curtis': 'Laurie Strode', 'Donald Pleasence': 'Sam Loomis', 'Charles Cyphers': 'Leigh Brackett', 'Jeffrey Kramer': 'Graham', 'Lance Guest': 'Jimmy', 'Pamela Susan Shoop': 'Karen', 'Hunter von Leer': 'Gary Hunt', 'Dick Warlock': 'The Shape / Patrolman #3', 'Leo Rossi': 'Budd', 'Gloria Gifford': 'Mrs. Alves', 'Tawny Moyer': 'Jill', 'Ana Alicia': 'Janet', 'Ford Rainey': 'Dr. Mixter', 'Cliff Emmich': 'Mr. Garrett', 'Nancy Stephens': 'Marion'}" tt0116365,"{'Michael J. Fox': 'Frank Bannister', 'Trini Alvarado': 'Lucy Lynskey', 'Peter Dobson': 'Ray Lynskey', 'John Astin': 'The Judge', 'Jeffrey Combs': 'Milton Dammers', 'Dee Wallace': 'Patricia Bradley (as Dee Wallace Stone)', 'Jake Busey': 'Johnny Bartlett', 'Chi McBride': 'Cyrus', 'Jim Fyfe': 'Stuart', 'Troy Evans': 'Sheriff Perry', 'Julianna McCarthy': 'Old Lady Bradley', 'R. Lee Ermey': 'Hiles', 'Elizabeth Hawthorne': 'Magda Rees-Jones', 'Angela Bloomfield': 'Debra Bannister', 'Desmond Kelly': 'Harry Sinclair'}" tt0780653,"{'Simon Merrells': 'Ben Talbot', 'Gemma Whelan': ""Gwen's Maid"", 'Emily Blunt': 'Gwen Conliffe', 'Benicio Del Toro': 'Lawrence Talbot', 'Mario Marin-Borquez': 'Young Lawrence', 'Asa Butterfield': 'Young Ben', 'Cristina Contes': 'Solana', 'Anthony Hopkins': 'Sir John Talbot', 'Art Malik': 'Singh', 'Malcolm Scates': 'Butcher', 'Nicholas Day': 'Colonel Montford', 'Michael Cronin': 'Dr. Lloyd', 'David Sterne': 'Mr. Kirk', 'David Schofield': 'Constable Nye', 'Roger Frost': 'Reverend Fisk'}" tt0103956,"{'Justin Whalin': 'Andy Barclay', 'Perrey Reeves': 'De Silva', 'Jeremy Sylvers': 'Tyler', 'Travis Fine': 'Shelton', 'Dean Jacobson': 'Whitehurst', 'Brad Dourif': 'Chucky (voice)', 'Peter Haskell': 'Sullivan', 'Dakin Matthews': 'Colonel Cochrane', 'Andrew Robinson': 'Sergeant Botnick', 'Burke Byrnes': 'Sergeant Clark', 'Matthew Walker': 'Ellis', 'Donna Eskra': 'Ivers', 'Edan Gross': 'Good Guy Doll (voice)', 'Terry Wills': 'Garbage Man', 'Richard Marion': 'Patterson'}" tt0099253,"{'Alex Vincent': 'Andy Barclay', 'Jenny Agutter': 'Joanne Simpson', 'Gerrit Graham': 'Phil Simpson', 'Christine Elise': 'Kyle', 'Brad Dourif': 'Chucky (voice)', 'Grace Zabriskie': 'Grace Poole', 'Peter Haskell': 'Sullivan', 'Beth Grant': 'Miss Kettlewell', 'Greg Germann': 'Mattson', 'Raymond Singer': 'Social Worker', 'Charles Meshack': 'Van Driver (as Charles C. Meshack)', 'Stuart Mabray': 'Homicide Investigator', 'Matt Roe': 'Policeman in Car', 'Herbie Braha': 'Liquor Store Clerk (as Herb Braha)', 'Don Pugsley': 'Technician'}" tt2230358,"{'Chantal Quesnelle': 'Sarah', 'Fiona Dourif': 'Nica', 'Jordan Gavaris': 'US EX Guy', 'Danielle Bisutti': 'Barb', 'A Martinez': 'Father Frank', 'Maitland McConnell': 'Jill', 'Brennan Elliott': 'Ian', 'Summer H. Howell': 'Alice (as Summer Howell)', 'Adam Hurtig': 'Officer Stanton', 'Darren Wall': 'Highway Cop', 'Will Woytowich': 'Lead Fireman', 'Anne Leveille': 'Young Nica', 'Kally Berard': 'Young Barb', 'Kyle Nobess': 'Young Dad', 'Brad Dourif': 'Charles Lee Ray / Chucky (voice)'}" tt0387575,"{'Brad Dourif': 'Chucky (voice)', 'Jennifer Tilly': 'Tiffany / Jennifer Tilly', 'Billy Boyd': 'Glen / Glenda (voice)', 'Redman': 'Redman', 'Hannah Spearritt': 'Joan', 'John Waters': 'Pete Peters', 'Keith-Lee Castle': 'Psychs', 'Steve West': 'Stan (as Steve Lawton)', 'Tony Gardner': 'Tony Gardner', 'Jason Flemyng': 'Santa', 'Nicholas Rowe': 'Lawyer', 'Stephanie Chambers': ""Claudia's Mum"", 'Simon James Morgan': ""Claudia's Dad"", 'Betty Denville': 'Claudia (as Bethany Simons-Denville)', 'Rebecca Santos': 'Fulvia'}" tt0144120,"{'Jennifer Tilly': 'Tiffany', 'Brad Dourif': 'Chucky (voice)', 'Katherine Heigl': 'Jade', 'Nick Stabile': 'Jesse', 'Alexis Arquette': 'Damien', 'Gordon Michael Woolvett': 'David', 'John Ritter': 'Chief Warren Kincaid', 'Lawrence Dane': 'Lt. Preston', 'Michael Louis Johnson': 'Norton', 'James Gallanders': 'Russ', 'Janet Kidder': 'Diane', 'Vince Corazza': 'Bailey (as Vincent Corazza)', 'Kathy Najimy': 'Motel Maid', 'Park Bench': 'Stoner', 'Emily Weedon': 'Girl at One-Stop'}" tt1850457,"{'Amy Poehler': 'Maura Ellis', 'Tina Fey': 'Kate Ellis', 'Maya Rudolph': 'Brinda', 'Ike Barinholtz': 'James', 'James Brolin': 'Bucky Ellis', 'Dianne Wiest': 'Deana Ellis', 'John Cena': 'Pazuzu', 'John Leguizamo': 'Dave', 'Bobby Moynihan': 'Alex', 'Greta Lee': 'Hae-Won', 'Madison Davenport': 'Haley', 'Rachel Dratch': 'Kelly', 'Santino Fontana': 'Mr. Geernt', 'Britt Lower': 'Mrs. Geernt', 'Samantha Bee': 'Liz'}" tt3321300,"{'Michael Wildman': 'Robert Vass', 'Tuppence Middleton': 'June Keaton', 'Geoffrey Streatfeild': 'Calum Reed', 'Peter Firth': 'Harry Pearce', 'Elliot Levey': 'Philip Emerson', 'Matthew Walker': 'Prison Van Officer', 'Elyes Gabel': 'Adem Qasim', 'David Harewood': 'Francis Warrender', 'Jennifer Ehle': 'Geraldine Maltby', 'Tim McInnerny': 'Oliver Mace', 'Ronan Summers': 'Ed Lansbury', 'Luke Harris': 'MI5 Officer', 'Amra Mallassi': 'Hamza Ahmadi', 'Lara Pulver': 'Erin Watts', 'Kit Harington': 'Will Holloway'}" tt0091778,"{'JoBeth Williams': 'Diane Freeling (as Jobeth Williams)', 'Craig T. Nelson': 'Steve Freeling', ""Heather O'Rourke"": 'Carol Anne Freeling', 'Oliver Robins': 'Robbie Freeling', 'Zelda Rubinstein': 'Tangina Barrons', 'Will Sampson': 'Taylor', 'Julian Beck': 'Kane', 'Geraldine Fitzgerald': 'Gramma Jess', 'John P. Whitecloud': 'Old Indian', 'Noble Craig': 'Vomit Creature', 'Susan Peretz': 'Daughter', 'Helen Boll': 'Mother', 'Kelly Jean Peters': 'Young Jess', 'Jaclyn Bernstein': 'Young Diane', 'Robert Lesser': ""Kane's People""}" tt0092076,"{'Dennis Hopper': ""Lieutenant 'Lefty' Enright"", 'Caroline Williams': ""Vanita 'Stretch' Brock"", 'Jim Siedow': 'Cook', 'Bill Moseley': 'Chop-Top', 'Bill Johnson': 'Leatherface', 'Ken Evert': 'Grandpa', 'Harlan Jordan': 'Patrolman', 'Kirk Sisco': 'Detective', 'James N. Harrell': 'Cut-Rite Manager', 'Lou Perryman': 'L.G. McPeters (as Lou Perry)', 'Barry Kinyon': 'Mercedes Driver', 'Chris Douridas': 'Gunner', 'Judy Kelly': 'Gourmet Yuppette', 'John Martin Ivey': 'Yuppie', 'Kinky Friedman': 'Sports Anchorman'}" tt1659216,"{'Sydney Sweeney': 'Emily', 'Patrick Muldoon': 'Jason', 'Christa Campbell': 'Rachel', 'Christian Contreras': 'Pete', 'William Hope': 'Col. Jenkins', 'Jon Mack': 'Doctor Stella', 'Shelly Varod': 'Phoebe', 'Atanas Srebrev': 'Jimmy', 'Pete Lee-Wilson': 'Dr. Darnoff', 'Vincenzo Nicoli': 'Caz', 'Radoslav Parvanov': 'Tunnel Soldier #2', 'Owen Davis': 'Apartment Soldier', 'Misha Dibono': 'News Anchor', 'Zlateto Keremedchieva': 'Agent Fbi', 'Georgi Manchev': 'Hazmat Worker'}" tt0860462,"{'Metinee Kingpayome': 'Arena', 'Anon Saisangcharn': 'Osama bin Ali (as Arnon Saisangchan)', 'Wasan Khantaau': 'Chan (as Vasan Khanta-oo)', 'Jinvipa Kheawkunya': 'Amulet Guardian Purima', 'Atthakorn Suwannaraj': 'Duay', 'Libby Brien': '(voice)', 'Cullet Eric': 'Iron Fist Fighter in the Night Club', 'Philip Hersh': '(voice)', 'Erik Markus Schuetz': 'Nikolai', 'Ashiraya Peerapatkunchaya': 'Punima', 'Alaa Safi': 'Iron-Legs fighter (as Alaa Oumouzoune)', 'Kazu Patrick Tang': 'Iron Stick fighter As Kazu Tang'}" tt3453772,"{'Tia Carrere': 'Marissa Knox', 'Jason Brooks': 'Lt. Commander Chase Seward', 'Tim Russ': 'Captain Rogers', 'Darin Cooper': 'Chief of the Boat', 'Robert R. Shafer': 'Lt. Rouse (as Bobby Ray Shafer)', 'Craig Blair': 'Terry', 'Robert Davi': 'General Masterson', 'Gerald Webb': 'Chief Warrant Officer Mason', 'Melvin Gregg': 'Sonar Lead Petty Officer', 'Theresa June-Tao': 'Navigator', 'Jose Rosete': 'Gunnery Sergeant Luiz Zuniga', 'James Le Feuvre': 'Marine Private Guide', 'Shamar Sanders': 'Marine Corporal Metal', 'Wade F. Wilson': 'Lt. Rudy', 'Brett R. Miller': 'NSA Team Leader'}" tt0068762,"{'Robert Redford': 'Jeremiah Johnson', 'Will Geer': 'Bear Claw', 'Delle Bolton': 'Swan', 'Josh Albee': 'Caleb', 'Joaquín Martínez': 'Paints His Shirt Red (as Joaquin Martinez)', 'Allyn Ann McLerie': 'Crazy Woman', 'Stefan Gierasch': 'Del Gue', 'Richard Angarola': 'Chief Two-Tongues Lebeaux', 'Paul Benedict': 'Reverend Lindquist', 'Charles Tyner': 'Robidoux', 'Jack Colvin': 'Lieutenant Mulvey', 'Matt Clark': 'Qualen'}" tt0452694,"{'Michelle Nolden': 'Annette DeTamble', 'Alex Ferris': 'Henry at Six', 'Arliss Howard': 'Richard DeTamble', 'Eric Bana': 'Henry', 'Katherine Trowell': 'Hospital Receptionist', 'Bart Bedford': 'Library Researcher', 'Esther Jun': 'Waitress', 'Matt Birman': 'Chicago Police #1', 'Craig Snoyer': 'Chicago Police #2', 'Rachel McAdams': 'Clare', 'Carly Street': 'Librarian', 'Romyen Tangsubutra': 'Thai Waiter', 'Brooklynn Proulx': 'Clare at Six and Eight', 'Jane McLean': 'Charisse', 'Ron Livingston': 'Gomez'}" tt2554274,"{'Mia Wasikowska': 'Edith Cushing', 'Jessica Chastain': 'Lucille Sharpe', 'Tom Hiddleston': 'Thomas Sharpe', 'Charlie Hunnam': 'Dr. Alan McMichael', 'Jim Beaver': 'Carter Cushing', 'Burn Gorman': 'Holly', 'Leslie Hope': 'Mrs. McMichael', 'Doug Jones': ""Edith's Mother / Lady Sharpe"", 'Jonathan Hyde': 'Ogilvie', 'Bruce Gray': 'Ferguson', 'Emily Coutts': 'Eunice', 'Alec Stockwell': 'Finlay', 'Brigitte Robinson': 'Secretary Jane', 'Gillian Ferrier': 'Society Girl', 'Tamara Hope': 'Society Girl'}" tt2581244,"{'Aubrey Plaza': 'Beth Slocum', 'Dane DeHaan': 'Zach Orfman', 'John C. Reilly': 'Maury Slocum', 'Molly Shannon': 'Geenie Slocum', 'Cheryl Hines': 'Judy Orfman', 'Paul Reiser': 'Noah Orfman', 'Matthew Gray Gubler': 'Kyle Orfman', 'Anna Kendrick': 'Erica Wexler', 'Eva La Dare': 'Pearline', 'Thomas McDonell': 'Dan (scenes deleted)', 'Alia Shawkat': 'Roz (scenes deleted)', 'Allan McLeod': 'Supermarket Stocker', 'Paul Weitz': 'Mr. Levin', 'Michelle Azar': 'Mrs. Levin', ""Jim O'Heir"": 'Chip the Mailman'}" tt1491044,"{'Michael Shannon': 'Richard Kuklinski', 'Winona Ryder': 'Deborah Pellicotti', 'Chris Evans': 'Mr. Freezy', 'Ray Liotta': 'Roy Demeo', 'David Schwimmer': 'Josh Rosenthal', 'Danny A. Abeckaser': 'Dino Lapron (as Danny Abeckaser)', 'John Ventimiglia': 'Mickey Scicoli', ""Ryan O'Nan"": 'Terry Franzo', 'McKaley Miller': 'Anabel', 'Megan Sherrill': 'Betsy', 'James Franco': 'Marty Freeman', 'Stephen Dorff': 'Joey Kuklinski', 'Hector Hugo': 'Tender Bar Earl (as Hector Hank)', 'Robert Davi': 'Leonard Merks', 'Zoran Radanovich': 'Jimmy'}" tt1341341,"{'Michael Angarano': 'Sam Davis', 'Uma Thurman': 'Zoe', 'Reece Thompson': 'Marshall Schmidt', 'Lee Pace': 'Whit Coutell', 'Jake Johnson': 'Teddy', 'Brooke Bloom': 'Margaret Cornish', 'Harper Dill': 'Carol Archer', 'Rebecca Mader': 'Esme Ball', 'Nathalie Love': 'Blonde Maid', 'Charlie Moss': 'Nico Spicer', 'Lisby Larson': 'Nina Pileggi', 'Paul Amodeo': 'Bruce Singer', 'Philip Carlson': 'Butler', 'Catherine Russell': 'Party Guest #4', 'Jack Koenig': 'Party Guest #5'}" tt0093223,"{'Lindsay Crouse': 'Margaret Ford', 'Joe Mantegna': 'Mike', 'Mike Nussbaum': 'Joey', 'Lilia Skala': 'Dr. Littauer', 'J.T. Walsh': 'The Businessman', 'Willo Hausman': 'Girl with Book', 'Karen Kohlhaas': 'Prison Ward Patient', 'Steven Goldstein': 'Billy Hahn (as Steve Goldstein)', 'Jack Wallace': 'Bartender / House of Games', 'Ricky Jay': 'George / Vegas Man', 'G. Roy Levin': 'Poker Player', 'Bob Lumbra': 'Poker Player', 'Andy Potok': 'Poker Player', 'Allen Soule': 'Poker Player', 'Ben Blakeman': ""Bartender / Charlie's Tavern""}" tt2292182,"{'Yancy Butler': 'Elena', 'Patrick Bergin': 'Tiburon', 'Joshua Michael Allen': 'Cal (as Josh Allen)', 'Bart Baggett': 'Holt', 'Erin Coker': 'Reagan', 'Frankie Cullen': 'Frankie', 'Valerie K. Garcia': 'Layla', 'Billy Ray': 'Guerra', 'Meredith Thomas': 'Francine', 'Robert Matthew Wallace': 'Pete (as Robert Wallace)', 'Eric s Wilson': 'Roger (as Eric Wilson)', 'Israel Wright': 'Alejandro (as Spencer Wright)', 'Josh Williams': 'Henchman #1', 'John Paul Bennett': 'Henchman #2'}" tt1927093,"{'Lucas Cruikshank': 'Fred Figglehorn / Derf Nrohelggif / Judy', 'Jake Weary': 'Kevin', 'Siobhan Fallon Hogan': ""Fred's Mom"", 'Stephanie Courtney': ""Kevin's Mom"", 'Carlos Knight': 'Diesel', 'Seth Morris': 'Mr. Devlin', 'Daniella Monet': 'Bertha', 'John Cena': ""Fred's Dad"", 'Ariel Winter': 'Talia', 'Jack Coghlan': 'Young Fred', 'Alicia Favela': 'Rebecca', 'Jack Feresten': 'Pool Toddler', 'John Gatins': 'Dishwasher', 'Olivia Gonzales': 'Young Talia', 'David A. Goodman': 'Middle Aged Man'}" tt2236160,"{'Shelby Young': 'Robin', 'Carter Jenkins': 'Chris', 'Chloe Bridges': 'Nia', 'Taylor Murphy': 'Amelia', 'Mitch Hewer': 'Ben', 'Kyle Fain': 'Ethan'}" tt2490326,"{'Elijah Wood': 'Clint', 'Rainn Wilson': 'Wade', 'Alison Pill': 'Lucy', 'Jack McBrayer': 'Tracy', 'Leigh Whannell': 'Doug', 'Nasim Pedrad': 'Rebekkah', 'Ian Brennan': 'Vice Principal Simms', 'Jorge Garcia': 'Rick', 'Cooper Roth': 'Patriot', 'Miles Elliot': 'Dink', 'Morgan Lily': 'Tamra', 'Sunny May Allison': 'Shelly', 'Armani Jackson': 'Calvin', 'Peter Kwong': 'Mr. Hatachi', 'Kate Flannery': 'Charman'}" tt0093300,"{'Lorraine Gary': 'Ellen Brody', 'Lance Guest': 'Michael Brody', 'Mario Van Peebles': 'Jake', 'Karen Young': 'Carla Brody', 'Michael Caine': 'Hoagie', 'Judith Barsi': 'Thea', 'Mitchell Anderson': 'Sean Brody', 'Lynn Whitfield': 'Louisa', 'Jay Mello': 'Young Sean Brody (archive footage)', 'Cedric Scott': 'Clarence', 'Charles Bowleg': 'William', 'Melvin Van Peebles': 'Mr. Witherspoon', 'Mary Smith': 'Tiffany', 'Edna Billotto': 'Polly', 'Fritzi Jane Courtney': 'Mrs. Taft'}" tt0077766,"{'Roy Scheider': 'Brody', 'Lorraine Gary': 'Ellen Brody', 'Murray Hamilton': 'Mayor Vaughn', 'Joseph Mascolo': 'Peterson', 'Jeffrey Kramer': 'Hendricks', 'Collin Wilcox Paxton': 'Dr. Elkins (as Collin Wilcox)', 'Ann Dusenberry': 'Tina', 'Mark Gruner': 'Mike', 'Barry Coe': 'Andrews', 'Susan French': 'Old Lady', 'Gary Springer': 'Andy', 'Donna Wilkes': 'Jackie', 'Gary Dubin': 'Ed', 'John Dukakis': 'Polo', 'G. Thomas Dunlop': 'Timmy'}" tt2080374,"{'Michael Fassbender': 'Steve Jobs', 'Kate Winslet': 'Joanna Hoffman', 'Seth Rogen': 'Steve Wozniak', 'Jeff Daniels': 'John Sculley', 'Michael Stuhlbarg': 'Andy Hertzfeld', 'Katherine Waterston': 'Chrisann Brennan', 'Perla Haney-Jardine': 'Lisa Brennan (19)', 'Ripley Sobo': 'Lisa Brennan (9)', 'Makenzie Moss': 'Lisa Brennan (5)', 'Sarah Snook': 'Andrea Cunningham', 'John Ortiz': 'Joel Pforzheimer', 'Adam Shapiro': 'Avie Tevanian', 'John Steen': 'Mike Markkula', 'Stan Roth': 'George Coates', 'Mihran Slougian': 'Jandali (as Mihran Shlougian)'}" tt0061747,"{'Clint Eastwood': 'Marshal Jed Cooper', 'Inger Stevens': 'Rachel Warren', 'Ed Begley': 'Captain Wilson', 'Pat Hingle': 'Judge Fenton', 'Ben Johnson': 'Marshal Dave Bliss', 'Charles McGraw': 'Sheriff Ray Calhoun', 'Ruth White': ""Madame 'Peaches' Sophie"", 'Bruce Dern': 'Miller', 'Alan Hale Jr.': 'Matt Stone', 'Arlene Golonka': 'Jennifer', 'James Westerfield': 'Prisoner', 'Dennis Hopper': 'The Prophet', 'L.Q. Jones': 'Loomis', ""Michael O'Sullivan"": 'Francis Elroy Duffy', 'Joseph Sirola': 'Reno'}" tt0468492,"{'Kang-ho Song': 'Park Gang-Doo', 'Hee-Bong Byun': 'Park Hie-bong (as Byun Hee-bong)', 'Hae-il Park': 'Park Nam-il', 'Doona Bae': 'Park Nam-Joo (as Bae Doo-na)', 'Ko Asung': 'Park Hyun-seo (as Ko A-sung)', 'Dal-su Oh': 'The Monster (voice)', 'Jae-eung Lee': 'Se-jin', 'Dong-ho Lee': 'Se-joo', 'Je-mun Yun': 'Homeless Man', 'David Anselmo': 'Donald (as David Joseph Anselmo)', 'Martin Lord Cayce': 'U.S. Senator', 'Philip Hersh': 'Additional Voices (voice)', 'Paul Lazar': 'US Doctor trying to operate Gang-Du'}" tt0079261,"{'John Savage': 'Claude', 'Treat Williams': 'Berger', ""Beverly D'Angelo"": 'Sheila', 'Annie Golden': 'Jeannie', 'Dorsey Wright': 'Hud', 'Don Dacus': 'Woof', 'Cheryl Barnes': ""Hud's Fiancee"", 'Richard Bright': 'Fenton', 'Nicholas Ray': 'The General', 'Charlotte Rae': 'Lady in Pink', 'Miles Chapin': 'Steve', 'Fern Tailer': ""Sheila's Mother"", 'Charles Denny': ""Sheila's Father"", 'Herman Meckler': ""Sheila's Uncle"", 'Agness Breen': ""Sheila's Aunt""}" tt0988045,"{'Robert Downey Jr.': 'Sherlock Holmes', 'Jude Law': 'Dr. John Watson', 'Rachel McAdams': 'Irene Adler', 'Mark Strong': 'Lord Henry Blackwood', 'Eddie Marsan': 'Inspector Lestrade', 'Robert Maillet': 'Dredger', 'Geraldine James': 'Mrs. Hudson', 'Kelly Reilly': 'Mary Morstan', 'William Houston': 'Constable Clark', 'Hans Matheson': 'Lord Coward', 'James Fox': 'Sir Thomas Rotheram', 'William Hope': 'Ambassador Standish', 'Clive Russell': 'Captain Tanner', 'Oran Gurel': 'Reordan', 'David Garrick': 'McMurdo'}" tt2195548,"{'Paul Rudd': 'Alvin', 'Emile Hirsch': 'Lance', 'Lance LeGault': 'Truck Driver', 'Joyce Payne': 'Lady', 'Gina Grande': 'Madison', 'Lynn Shelton': 'Madison (voice)', 'Larry Kretschmar': 'Lumberjack', 'Enoch Moon': 'Lumberjack', 'David L. Osborne Jr.': 'Lumberjack', 'Danni Wolcott': 'Lumberjack', 'Morgan Calderoni': 'Kid', 'Savanna Porter': 'Kid', 'Juniper Smith': 'Kid'}" tt1536410,"{'Milla Jovovich': 'Anna Marchant', 'Julian McMahon': 'Sam Kerrest', 'David Atrakchi': 'Lanyon / Tearjerk Jack', 'Michael Shanks': 'Bryce', 'Marianne Faithfull': 'Dr. Langenkamp', 'Sarah Wayne Callies': 'Francine', 'Valentina Vargas': 'Nina', 'Kate Yacula': 'Anna #2 - in hospital mirror', 'Apollonia Vanova': 'Anna #4 - in make-up mirror', 'Nels Lennarson': 'Kerrest #2', 'Chris Kalhoon': 'Kerrest #3', 'Aaron Hughes': 'Man #1 / Man #2', 'Aaron Grain': 'Lanyon #2', 'Michael James': 'Lanyon #3', 'Jason Wishnowski': 'Lanyon #4'}" tt1524575,"{'Olivia Taylor Dudley': 'Angela', 'John Patrick Amedori': 'Pete', 'Dougray Scott': 'Roger', 'Michael Peña': 'Father Lozano', 'Peter Andersson': 'Cardinal Mattias Bruun', 'Djimon Hounsou': 'Vicar Imani', 'Kathleen Robertson': 'Dr. Richards', 'Sam Upton': 'Orderly Mason', 'Cas Anvar': 'Dr. Fahti', 'Michael Halsey': 'Dr. Bramwell', 'Alex Sparrow': 'Resident Kulik', 'Jarvis W. George': 'Detective Simmons (as Jarvis George)', 'Michael Paré': 'Detective Harris', 'Alex Corrado': 'Bishop Saldano', 'Montanna Gillis': 'Jackie'}" tt3605418,"{'Keanu Reeves': 'Evan', 'Lorenza Izzo': 'Genesis', 'Ana de Armas': 'Bell', 'Aaron Burns': 'Louis', 'Ignacia Allamand': 'Karen', 'Dan Baily': 'Jake', 'Megan Baily': 'Lisa', 'Colleen Camp': 'Vivian', 'Antonio Quercia': 'Uber Driver', 'Otto': 'Monkey'}" tt2473682,"{'Andrew Jacobs': 'Jesse Arista', 'Jorge Diaz': 'Hector Estrella', 'Gabrielle Walsh': 'Marisol Vargas', 'Renee Victor': 'Irma Arista', 'Noemi Gonzalez': 'Evette Arista', 'David Saucedo': 'Cesar Arista', 'Gloria Sandoval': 'Ana Sanchez', 'Richard Cabral': 'Arturo Lopez', 'Carlos Pratts': 'Oscar Lopez', 'Juan Vasquez': 'Santo', 'Carlos Romeo Arana Figuera': 'Mauro', 'Molly Ephraim': 'Ali Rey', 'Brent Gutierrez': 'Diego', 'Alonso Alvarez': 'Eber', 'Chris Puckett': 'Cop (as Christopher M. Puckett)'}" tt2109184,"{'Katie Featherston': 'Katie', 'Kathryn Newton': 'Alex', 'Matt Shively': 'Ben', 'Aiden Lovekamp': 'Wyatt', 'Brady Allen': 'Robbie', 'Stephen Dunham': 'Doug', 'Alexondra Lee': 'Holly', 'Georgica Pettus': 'Sarah', 'Alisha Boe': 'Tara', 'Brendon Eggertsen': 'Derek', 'Constance Esposito': ""Robbie's Mom's Friend"", 'Ty Dawson': 'Shadow Boy', 'Jonah Pasco': 'Shadow Boy', 'Rightor Doyle': 'Referee', 'Tamara Bersane': ""Wyatt's Soccer Coach""}" tt2205697,"{'Greg Kinnear': 'Bill Borgens', 'Jennifer Connelly': 'Erica', 'Lily Collins': 'Samantha Borgens', 'Nat Wolff': 'Rusty Borgens', 'Kristen Bell': 'Tricia', 'Logan Lerman': 'Louis', 'Liana Liberato': 'Kate', 'Michael Goodwin': 'Professor Abbott', 'Stephen King': 'Stephen King (voice)', 'Rusty Joiner': 'Martin', 'Patrick Schwarzenegger': 'Glen', 'David Carzell': 'Rodney (as David Morris)', 'Barbara Weetman': 'Diane', 'Alex ter Avest': 'Becky (as Alexandria Lauren ter Avest)', 'Zeeko Zaki': 'Gus'}" tt2708254,"{'Cuba Gooding Jr.': 'Eugene', 'Dennis Haysbert': 'Searcy', 'George Dick': 'Jamal', 'Thurston Hill III': 'Henry', 'J.D. Walsh': 'Fritz', 'Rachae Thomas': 'Katrina', 'Derrick L. McMillon': 'Billy West (as Derrick McMillon)', 'LisaGay Hamilton': 'Sheila King', 'Richard T. Jones': 'Perry', 'Meakil Bell': 'Darius', 'Lyn Alicia Henderson': 'Ms. Gadbaw', 'Carlton Byrd': 'Clifton', 'Kevin Hendricks': 'Peanut', 'Malcolm M. Mays': 'Tahime', 'Hammerton Killick': 'Derek'}" tt2226519,"{'Emily Browning': 'Hayley', 'Xavier Samuel': 'Enzo', 'Cam Gigandet': 'Carter', 'Dawn Olivieri': 'Annie', 'Thomas Dekker': 'Jack', 'Frances Fisher': 'Camila (as Francis Fisher)', 'Elizabeth Peña': 'Dr. Lopez', 'Brandon Jay McLaren': 'Butch Hopkins / Writer', 'Marlene Forte': 'Dr. Ortiz (as Marlene Ortez)', 'Bradley James Metcalf': 'The Twins (as Bradley Metcalf)', 'Jack Patrick Metcalf': 'The Twins (as Jack Metcalf)', 'Travis Scott Metcalf': 'The Twins (as Travis Metcalf)', 'Kennedy Waite': 'Lila', 'Steven Asbury': 'Donnie / Drummer (as Steve Asbury)', 'James Kyson': 'Coat & Tie Fan'}" tt0781008,"{'Matt Barr': 'Himself', 'Jason Earles': 'Himself', 'Tad Hilgenbrink': 'Himself', 'Arielle Kebbel': 'Herself', 'Jun Hee Lee': 'Himself', 'Crystle Lightning': 'Herself', 'Angela Little': 'Herself', 'Ginger Lynn': 'Herself (as Ginger Lynn Allen)', 'Dossett Marchese': 'Himself (as Dossett March)', 'Omar Benson Miller': 'Himself', 'Chris Owen': 'Himself', 'Timothy Stack': 'Himself', 'Rachel Veltri': 'Herself'}" tt1602472,"{'Chris Rock': 'Mingus', 'Julie Delpy': 'Marion', 'Albert Delpy': 'Jeannot', 'Alexia Landeau': 'Rose', 'Alexandre Nahon': 'Manu (as Alex Nahon)', 'Kate Burton': 'Bella', 'Dylan Baker': 'Ron', 'Daniel Brühl': 'The Oak Fairy', 'Talen Ruth Riley': 'Willow (as Talen Riley)', 'Owen Shipman': 'Lulu', 'Malinda Williams': 'Elizabeth', 'Carmen Lopez': 'Julia', 'Emily Wagner': 'Susan', 'Arthur French': 'Lee Robinson', 'Petronia Paley': 'Carol Robinson'}" tt1350512,"{'Jeremy London': 'Kurt Ross', 'A Martinez': 'Sheriff Reed Carpenter', 'Paul Logan': 'TR-4', 'Lauren Walsh': 'Chloe', 'Sara Tomko': 'Pallas', 'Dustin Harnish': 'Bronson', 'Clint Browning': 'Chuck', 'Lucinda Rogers': 'Tiffany', 'Mark Hengst': 'Tanner', 'Gary Miller-Youst': 'Sam (as Gary Youst)', 'Joel Ezra Hebner': 'Anson (as Joel E. Hebner)', 'Naómi Hurter': 'Paige (as Naomi Hurter)', 'Russell Reynolds': 'Captain Engineer (as G. Russell Reynolds)', 'Stephen Blackehart': 'Logan', 'Jason S. Gray': 'Lipinski'}" tt1640548,"{'Woody Harrelson': 'David Douglas Brown', 'Jon Bernthal': 'Dan Morone', 'Stella Schnabel': 'Jane', 'Jon Foster': 'Michael Whittaker', 'Ben Foster': 'General Terry', 'Ruben Garfias': 'Pharmacy Security Guard', 'Deadlee': 'Pharmacy Punk', 'Dominic Flores': 'Latino Detective', 'Matt McTighe': '30-Year-Old Cop', 'Cynthia Nixon': 'Barbara', 'Anne Heche': 'Catherine', 'Brie Larson': 'Helen', 'Sammy Boyarsky': 'Margaret', 'Billy Hough': 'Piano Player', 'Audra McDonald': 'Sarah'}" tt0480271,"{'Kal Penn': 'Taj', 'Lauren Cohan': 'Charlotte', 'Daniel Percival': 'Pip', 'Glen Barry': 'Seamus', 'Anthony Cozens': 'Gethin', 'Steven Rathman': 'Simon', 'Holly Davidson': 'Sadie', 'Tom Davey': 'Percy', 'William de Coverly': 'Roger', 'Beth Steel': 'Penelope', 'Amy Steel': 'Alexandra', 'Jonathan Cecil': 'Provost Cunningham', 'Roger Hammond': 'Camford Dean', 'Kulvinder Ghir': ""Taj's Father"", 'Shobu Kapoor': ""Taj's Mother""}" tt1748179,"{'Cillian Murphy': 'Tom Buckley', 'Sigourney Weaver': 'Margaret Matheson', 'Robert De Niro': 'Simon Silver', 'Toby Jones': 'Paul Shackleton', 'Joely Richardson': 'Monica Hansen', 'Elizabeth Olsen': 'Sally Owen', 'Craig Roberts': 'Ben', 'Leonardo Sbaraglia': 'Leonard Palladino', 'Adriane Lenox': 'Rina', 'Garrick Hagon': 'Howard McColm', 'Burn Gorman': 'Benedict Cohen', 'Mitchell Mullen': 'Jim Carroll', 'Nathan Osgood': 'Michael Sidgwick', 'Madeleine Potter': 'Sarah Sidgwick', 'Eloise Webb': 'Susan Sidgwick'}" tt0970866,"{'Robert De Niro': 'Jack Byrnes', 'Ben Stiller': 'Greg Focker', 'Owen Wilson': 'Kevin Rawley', 'Dustin Hoffman': 'Bernie Focker', 'Barbra Streisand': 'Roz Focker', 'Blythe Danner': 'Dina Byrnes', 'Teri Polo': 'Pam Focker', 'Jessica Alba': 'Andi Garcia', 'Laura Dern': 'Prudence', 'Kevin Hart': 'Nurse Louis', 'Daisy Tahan': 'Samantha Focker', 'Colin Baiocchi': 'Henry Focker', 'Tom McCarthy': 'Dr. Bob', 'Harvey Keitel': 'Randy Weir', 'Yul Vazquez': 'Junior'}" tt0068897,"{'Lee Van Cleef': 'Chris', 'Stefanie Powers': 'Laurie Gunn', 'Michael Callan': 'Noah Forbes', 'Mariette Hartley': 'Arrila', 'Luke Askew': 'Mark Skinner', 'Pedro Armendáriz Jr.': 'Pepe Carral (as Pedro Armendariz Jr.)', 'Ralph Waite': 'Jim Mackay', 'Melissa Murphy': 'Madge Buchanan', 'William Lucking': 'Walt Drummond', 'James Sikking': 'Andy Hayes', 'Ed Lauter': 'Scott Elliot', 'Allyn Ann McLerie': 'Mrs. Donavan', 'Gary Busey': 'Hank Allen', 'Robert Jaffe': 'Bob Allen', 'Darrell Larson': 'Shelly'}" tt0805564,"{'Ryan Gosling': 'Lars Lindstrom', 'Emily Mortimer': 'Karin', 'Paul Schneider': 'Gus', 'R.D. Reid': 'Reverend Bock', 'Kelli Garner': 'Margo', 'Nancy Beatty': 'Mrs. Gruner', 'Doug Lennox': 'Mr. Hofstedtler', 'Joe Bostick': 'Mr. Shaw', 'Liz Gordon': 'Mrs. Schindler', 'Nicky Guadagni': 'Mrs. Petersen', 'Patricia Clarkson': 'Dagmar', 'Karen Robinson': 'Cindy', 'Maxwell McCabe-Lokos': 'Kurt', 'Billy Parrott': 'Erik', 'Sally Cahill': 'Deb'}" tt0091983,"{'Jeff Daniels': 'Charles Driggs', 'Melanie Griffith': 'Audrey Hankel', 'Ray Liotta': 'Ray Sinclair', ""George 'Red' Schwartz"": 'Counter Man (as George Schwartz)', 'Margaret Colin': 'Irene', 'Leib Lensky': 'Frenchy', 'Tracey Walter': 'The Country Squire', 'Maggie T.': 'Country Squire Bulldog', 'Patricia Falkenhain': ""Charlie's Secretary"", 'Sandy McLeod': ""Graves' Secretary"", 'Robert Ridgely': 'Richard Graves', 'Buzz Kilman': 'TV Newscaster', 'Kenneth Utt': 'Dad', 'Adelle Lutz': 'Rose', 'Charles Napier': 'Irate Chef'}" tt0102744,"{'Tom Selleck': 'Matthew Quigley', 'Laura San Giacomo': 'Crazy Cora', 'Alan Rickman': 'Elliott Marston', 'Chris Haywood': 'Major Ashley-Pitt', 'Ron Haddrick': 'Grimmelman', 'Tony Bonner': 'Dobkin', 'Jerome Ehlers': 'Coogan', 'Conor McDermottroe': 'Hobb', 'Roger Ward': 'Brophy', 'Ben Mendelsohn': ""O'Flynn"", 'Steve Dodd': 'Kunkurra', 'Karen Davitt': 'Slattern', 'Kylie Foster': 'Slattern', 'William Zappa': 'Reilly', 'Jonathan Sweet': 'Sergeant Thomas'}" tt0098577,"{'Nicolas Cage': 'Peter Loew', 'Maria Conchita Alonso': 'Alva Restrepo', 'Jennifer Beals': 'Rachel', 'Elizabeth Ashley': 'Dr. Glaser', 'Kasi Lemmons': 'Jackie', 'Robert Lujan': 'Emilio (as Bob Lujan)', 'Jessica Lundy': 'Sharon', 'Johnny Walker': 'Donald (as John Walker)', 'Boris Lyoskin': 'Fantasy Cabbie (as Boris Leskin)', 'Michael Knowles': 'Andrew', 'John Michael Higgins': 'Ed', 'Jodie Markell': 'Joke Girl', 'Marc Coppola': 'Joke Guy', 'David Hyde Pierce': 'Theater Guy (as David Pierce)', 'Amy Stiller': 'Theater Girl'}" tt0095082,"{'Jace Alexander': 'Dickie Kerr', 'John Cusack': 'Buck Weaver', 'Gordon Clapp': 'Ray Schalk', 'Don Harvey': 'Swede Risberg', 'Bill Irwin': 'Eddie Collins', 'Perry Lang': 'Fred McMullin', 'John Mahoney': 'Kid Gleason', 'James Read': 'Lefty Williams', 'Michael Rooker': 'Chick Gandil', 'Charlie Sheen': 'Hap Felsch', 'David Strathairn': 'Eddie Cicotte', 'D.B. Sweeney': ""'Shoeless' Joe Jackson"", 'James Desmond': 'Smitty (as Jim Desmond)', 'John Sayles': 'Ring Lardner', 'Studs Terkel': 'Hugh Fullerton'}" tt0089504,"{'Albert Brooks': 'David Howard', 'Julie Hagerty': 'Linda Howard', 'Sylvia Farrel': 'Receptionist', 'Tina Kincaid': 'Model', 'Candy Ann Brown': ""David's Secretary"", 'Maggie Roswell': 'Patty', 'Hans Wagner': 'Hans (voice)', 'Brandy Rubin': ""Paul Dunn's Secretary"", 'Michael Greene': 'Paul Dunn', 'Tom Tarpey': 'Brad Tooley', 'Robert Hughes': 'Security Guard', 'Raynold Gideon': 'Ray', 'John Di Fusco': 'Motorcyclist', 'Michael Cornelison': 'Front Desk Clerk', 'Radu Gavor': 'Bellman'}" tt0106387,"{'Johnny Depp': 'Sam', 'Mary Stuart Masterson': 'Joon Pearl', 'Aidan Quinn': 'Benny Pearl', 'Julianne Moore': 'Ruthie', 'Oliver Platt': 'Eric', 'CCH Pounder': 'Dr. Garvey (as C.C.H. Pounder)', 'Dan Hedaya': 'Thomas', 'Joe Grifasi': 'Mike', 'William H. Macy': 'Randy Burch', 'Liane Curtis': 'Claudia (as Liane Alexandra Curtis)', 'Eileen Ryan': 'Mrs. Smail', 'Don Hamilton': 'UPS Man', 'Waldo Larson': 'Waldo', 'Irvin Johnson': 'Orderly', 'Shane Nilsson': 'Orderly'}" tt1368116,"{'Iko Uwais': 'Yuda', 'Sisca Jessica': 'Astri', 'Christine Hakim': 'Wulan', 'Mads Koudal': 'Ratger', 'Yusuf Aulia': 'Adit', 'Alex Abbad': 'Johni', 'Yayan Ruhian': 'Eric', 'Laurent Buson': 'Luc', 'Donny Alamsyah': 'Yayan', 'Ratna Galih': 'Ayi', 'Libby Brien': 'Wulan (voice)', 'Raiya Galih': 'Ayi', 'Rahyma Yanii': 'Eli'}" tt0997147,"{'Hitoshi Matsumoto': 'Masaru Daisatô / Dai-Nihonjin', 'Riki Takeuchi': 'Haneru-no-jû', 'Ua': 'Manager Kobori', 'Ryûnosuke Kamiki': 'Warabe-no-jû', 'Haruka Unabara': 'Shimeru-no-jû', 'Tomoji Hasegawa': 'Interviewer / Director', 'Itsuji Itao': 'Female Niou-no-jû', 'Hiroyuki Miyasako': 'Stay With Me', 'Takayuki Haranishi': 'Male Niou-no-jû', 'Daisuke Miyagawa': 'Super Justice', 'Takuya Hashimoto': 'Midon', 'Taichi Yazaki': ""Daisatô's Grandfather"", 'Shion Machida': ""Daisatô's Ex-wife"", 'Atsuko Nakamura': 'Bar Proprietress Azusa', 'Daisuke Nagakura': ""Daisatô's Grandfather - Younger""}" tt1634122,"{'Roger Barclay': 'Agent Two', 'Eric Carte': 'Agent One', 'Rowan Atkinson': 'Johnny English', 'Togo Igawa': 'Ting Wang', 'Eleanor Wyld': 'Receptionist 1', 'Mandi Sidhu': 'Receptionist 2', 'Margaret Clunie': 'Receptionist 3', 'Gillian Anderson': 'Pamela', 'Rosamund Pike': 'Kate Sumner', 'Dominic West': 'Simon Ambrose', 'Tim McInnerny': 'Patch Quartermain', 'Mariella Frostrup': 'Royce (voice)', 'Daniel Kaluuya': 'Agent Tucker', 'Miles Jupp': 'Technician', 'Pik Sen Lim': 'Killer Cleaner (as Pik-Sen Lim)'}" tt1959490,"{'Russell Crowe': 'Noah', 'Jennifer Connelly': 'Naameh', 'Ray Winstone': 'Tubal-cain', 'Anthony Hopkins': 'Methuselah', 'Emma Watson': 'Ila', 'Logan Lerman': 'Ham', 'Douglas Booth': 'Shem', 'Nick Nolte': 'Samyaza (voice)', 'Mark Margolis': 'Magog (voice)', 'Kevin Durand': 'Rameel', 'Leo McHugh Carroll': 'Japheth', 'Marton Csokas': 'Lamech', 'Finn Wittrock': 'Young Tubal-cain', 'Madison Davenport': ""Na'el"", 'Gavin Casalegno': 'Young Shem'}" tt1156300,"{'Aric Amendolea': 'Student (segment ""On Sabbath Hill"")', 'Kristen Barrega': 'Student (segment ""On Sabbath Hill"")', 'Amy Lynn Best': 'Nurse Fletcher (segment ""The Gorge"")', 'Carla Bianco': 'Janet Weaver (segment ""On Sabbath Hill"")', 'William Black': 'Student (segment ""On Sabbath Hill"")', 'Leilani Brosnan': 'Sister', 'Amanda Caddy': 'Student (segment ""On Sabbath Hill"")', 'Rebecca Campbell': 'Student (segment ""On Sabbath Hill"")', 'Lex Casciato': 'Student (segment ""On Sabbath Hill"") (as Alexa Casiato)', 'Danny Cooper': 'Markham (segment ""Dust"")', 'Meridith Davis': 'Student (segment ""On Sabbath Hill"")', 'Liz DuChez': 'Donna (segment ""The Gorge"")', 'Siena Frank': 'Student (segment ""On Sabbath Hill"")', 'Amanda Frost': 'Allison Knowles (segment ""On Sabbath Hill"")', 'Barret Hackney': 'Craig (segment ""The Gorge"")'}" tt1334526,"{'Tom Gregg': 'Head Native (segment ""Valley of the Shadow"")', 'Jason Hoehnen': 'Jimmy (segment ""House Call"")', 'Paul Keiserling': 'Paul (segment ""Valley of the Shadow"")', 'Angel Lisboa': 'Native (Segment: Valley of the Shadow)', 'Nick Mancuso': 'Swan (segment ""Wet"")', 'Amy Marsalis': 'Angela (segment ""Valley of the Shadow"")', 'Jeff Monahan': 'Jack (segment ""Wet"")', 'Maryanne Nagel': 'Mrs. Norman (segment ""House Call"")', ""Bingo O'Malley"": 'Dr. Marsten (segment ""House Call"")', 'Antone Pagán': 'Miguel (segment ""Valley of the Shadow"") (as Antone Pagan)', 'George A. Romero': 'Himself - Host', 'Marty Schiff': 'David (segment ""Valley of the Shadow"")', 'Kristin Slaysman': 'She (segment ""Wet"")', 'Robert Gordon Spencer': 'Alan (segment ""Valley of the Shadow"")', 'Matt Walsh': 'Monte (segment ""Valley of the Shadow"")'}" tt1618442,"{'Vin Diesel': 'Kaulder', 'Rose Leslie': 'Chloe', 'Elijah Wood': 'Dolan 37th', 'Ólafur Darri Ólafsson': 'Belial', 'Rena Owen': 'Glaeser', 'Julie Engelbrecht': 'The Witch Queen', 'Michael Caine': 'Dolan 36th', 'Joseph Gilgun': 'Ellic', 'Isaach De Bankolé': 'Max Schlesinger', 'Michael Halsey': 'Grosette', 'Sloane Coombs': 'Elizabeth', 'Lotte Verbeek': 'Helena', 'Dawn Olivieri': 'Danique', 'Inbar Lavi': 'Sonia', 'Armani Jackson': 'Armani'}" tt1705773,"{'Gary Stretch': 'Nigel Putnam', 'Jaleel White': 'Dr. Terry McCormick', 'Sarah Lieving': 'Agent Hutchinson', 'Robert Picardo': 'Admiral Calvin', 'Gerald Webb': 'Jean', 'Dylan Vox': 'CWO Butowski', 'Hannah Cowley': 'Legatt', 'Steve Mason': 'Investigator', 'Robert R. Shafer': 'Charlie Ross (as Bobby Ray Shafer)', 'Nicola Lambo': 'Corrine', 'Michael Gaglio': 'Captain Smalls (as Mike Gaglio)', 'Sean Cory': 'Moise', 'Tarnue Massaquoi': 'Claude', 'Bechir Sylvain': 'Badawi', 'Anica Barbosa': 'Bartender'}" tt1350498,"{'Debbie Gibson': 'Emma MacNeil (as Deborah Gibson)', 'Lorenzo Lamas': 'Allan Baxter', 'Vic Chao': 'Seiji Shimada', 'Jonathan Nation': 'Vince', 'Mark Hengst': 'Dick Ritchie', 'Michael Teh': 'Takeo (as Michael The)', 'Chris Haley': 'Kenji', 'Sean Lawlor': 'Lamar Sanders', 'Dustin Harnish': 'Helmsman', 'Dean Kreyling': 'U.S. Sub Captain', 'Stephen Blackehart': 'U.S. Sub Sonar Chief', 'Dana DiMatteo': 'Marine Biologist (as Dana Dimatteo)', 'Myles Cranford': 'Deputy', 'Dana Healey': 'Naval Officer', 'John Bolen': 'Weapons Officer'}" tt1582248,"{'Chris Evans': 'Mike Weiss', 'Mark Kassen': 'Paul Danziger', 'Marshall Bell': 'Jeffrey Dancort', 'Brett Cullen': 'Nathaniel Price', 'Jesse L. Martin': 'Daryl King', 'Vinessa Shaw': 'Nurse Vicky Rogers', 'Roxanna Hope Radja': 'Sylvia (as Roxanna Hope)', 'Michael Biehn': 'Red', 'Kate Burton': ""Senator O'Reilly"", 'Erinn Allison': 'Kim Danziger', 'Tess Parker': 'Jaime Weiss', 'Justin Anderson': 'Skateboard Kid', 'Jack Lee': 'Mr. Clean', 'Brittney Karbowski': 'Suzie / Blonde Student', 'Mark Lanier': 'Mark Lanier'}" tt2231253,"{'Jason Statham': 'Nick Wild', 'Michael Angarano': 'Cyrus Kinnick', 'Dominik Garcia': 'Holly (as Dominik García-Lorido)', 'Hope Davis': 'Cassandra', 'Milo Ventimiglia': 'Danny DeMarco', 'Max Casella': 'Osgood', 'Stanley Tucci': 'Baby', 'Sofía Vergara': 'DD', 'Jason Alexander': 'Pinky', 'Anne Heche': 'Roxy', 'Chris Browning': 'Tiel', 'Matthew Willig': 'Kinlaw', 'François Vincentelli': 'Benny', 'Davenia McFadden': 'Millicent (as Daviena McFadden)', 'Michael Papajohn': 'Pit Boss'}" tt0044081,"{'Vivien Leigh': 'Blanche DuBois', 'Marlon Brando': 'Stanley Kowalski', 'Kim Hunter': 'Stella Kowalski', 'Karl Malden': ""Harold 'Mitch' Mitchell"", 'Rudy Bond': 'Steve Hull', 'Nick Dennis': 'Pablo Gonzalez', 'Peg Hillias': 'Eunice Hull', 'Wright King': 'Newspaper Collector', 'Richard Garrick': 'The Doctor', 'Ann Dere': 'The Matron', 'Edna Thomas': 'The Mexican Woman', 'Mickey Kuhn': 'The Helpful Sailor'}" tt2870708,"{'Zach Braff': 'Aidan Bloom', 'Pierce Gagnon': 'Tucker Bloom', 'Kate Hudson': 'Sarah Bloom', 'Joey King': 'Grace Bloom', 'Alexander Chaplin': 'Rabbi Rosenberg', 'Leslie David Baker': 'Audition Actor #1', 'James Avery': 'Audition Actor #2', 'Ato Essandoh': 'Audition Actor #3', 'Jim Parsons': 'Paul', 'Mark Thudium': 'Terry', 'Mandy Patinkin': 'Gabe', 'Josh Gad': 'Noah Bloom', 'Allan Rich': 'Rabbi Twersky', 'Ashley Greene': 'Janine', 'Michael Weston': 'Jerry'}" tt1666801,"{'Mae Whitman': 'Bianca Piper', 'Robbie Amell': 'Wesley Rush', 'Bella Thorne': 'Madison Morgan', 'Bianca A. Santos': 'Casey (as Bianca Santos)', 'Skyler Samuels': 'Jess', 'Romany Malco': 'Principal Buchanan', 'Nick Eversman': 'Toby', 'Chris Wylde': 'Mr. Filmore', 'Ken Jeong': 'Mr. Arthur', 'Allison Janney': 'Dottie', 'Rebecca Weil': 'Caitlyn', 'Seth Meriwether': 'A.J.', 'Erick Chavarria': 'Señor Gomez', 'Brian Dewar McNamara': 'Matt', 'Benjamin Taylor Davis': 'Jeffrey (as Benjamin Davis)'}" tt3045616,"{'Johnny Depp': 'Mortdecai', 'Gwyneth Paltrow': 'Johanna', 'Paul Bettany': 'Jock', 'Ewan McGregor': 'Martland', 'Olivia Munn': 'Georgina', 'Jonny Pasvolsky': 'Emil', 'Michael Culkin': 'Sir Graham', 'Ulrich Thomsen': 'Romanov', 'Alec Utgoff': 'Dmitri', 'Rob de Groot': 'Vladimir', 'Guy Burnet': 'Maurice', 'Jeff Goldblum': 'Krampf', 'Paul Whitehouse': 'Spinoza', 'Norma Atallah': 'Bronwen', 'Nicholas Farrell': 'Auctioneer'}" tt1674784,"{'Nicolas Cage': 'Kyle Miller', 'Nicole Kidman': 'Sarah Miller', 'Ben Mendelsohn': 'Elias', 'Liana Liberato': 'Avery Miller', 'Cam Gigandet': 'Jonah', 'Jordana Spiro': 'Petal', 'Dash Mihok': 'Ty', 'Emily Meade': 'Kendra', 'Nico Tortorella': 'Jake', 'Brandon Belknap': 'Dylan', 'Terry Milam': 'Travis', 'Tina Parker': 'Security Operator', 'David Maldonado': 'Security Guard (as Dave Maldonado)', 'Nilo Otero': 'Mr. Big', 'Simona Williams': 'Mrs. Big'}" tt1778304,"{'Lauren Bittner': 'Julie', 'Christopher Nicholas Smith': 'Dennis (as Chris Smith)', 'Chloe Csengery': 'Katie', 'Jessica Tyler Brown': 'Kristi (as Jessica Brown)', 'Hallie Foote': 'Grandma Lois', 'Dustin Ingram': 'Randy Rosen', 'Johanna Braddy': 'Lisa', 'Katie Featherston': 'Adult Katie', 'Brian Boland': 'Daniel', 'Sprague Grayden': 'Adult Kristi', 'William Juan Prieto': 'Hunter (as William Prieto)', 'Jackson Xenia Prieto': 'Hunter (as Jackson Prieto)', 'Paitoon Cheng': 'Ida', 'Eddie Medrano': 'Party Magician', 'Rebecca Delgado Smith': 'Crying Bridesmaid'}" tt1536044,"{'David Bierend': 'Surveillance Camera Expert', 'Brian Boland': 'Daniel Rey', 'Molly Ephraim': 'Ali Rey', 'Katie Featherston': 'Katie', 'Seth Ginsberg': 'Brad', 'Sprague Grayden': 'Kristi Rey', 'William Juan Prieto': 'Hunter Rey', 'Jackson Xenia Prieto': 'Hunter Rey', 'Micah Sloat': 'Micah', 'Vivis Colombetti': 'Martine (as Vivis)'}" tt1748122,"{'Bruce Willis': 'Captain Sharp', 'Edward Norton': 'Scout Master Ward', 'Bill Murray': 'Mr. Bishop', 'Frances McDormand': 'Mrs. Bishop', 'Tilda Swinton': 'Social Services', 'Jared Gilman': 'Sam', 'Kara Hayward': 'Suzy', 'Jason Schwartzman': 'Cousin Ben', 'Bob Balaban': 'The Narrator', 'Lucas Hedges': 'Redford', 'Charlie Kilgore': 'Lazy-Eye', 'Andreas Sheikh': 'Panagle', 'Chandler Frantz': 'Gadge', 'Rob H. Campbell': 'Deluca (as Rob Campbell)', 'L.J. Foley': 'Izod'}" tt2202385,"{'Chico Benymon': 'Adam', 'Courtney Cameron': 'Cream', 'Kendrick Smith': 'Serpeant (as Kendrick R. Smith)', 'Billy Sorrells': 'Cray', 'Aliyauna NyKol': 'Cookie', 'Thada Catalon': 'Tanji (as Theta Catalon)', 'Donny Boaz': 'Sheriff Jenkins', 'Just Brittany': 'Steel', 'Tonyai Palmer': 'Vanilla', 'Xamon Glasper': 'Dirty Nate', 'Shumon Lucas': 'Ev Easy', 'Esther Baxter': 'Maxine', 'Carlos Sepulveda': 'Gregory', 'Latoya Kent': 'Kimmy', 'Paul Vincent Blue': 'Ike'}" tt0089017,"{'Rosanna Arquette': 'Roberta Glass', 'Madonna': 'Susan', 'Aidan Quinn': 'Dez', 'Mark Blum': 'Gary Glass', 'Robert Joy': 'Jim', 'Laurie Metcalf': 'Leslie Glass', 'Anna Levine': 'Crystal', 'Will Patton': 'Wayne Nolan', 'Peter Maloney': 'Ian', 'Steven Wright': 'Larry Stillman D.D.S', 'John Turturro': 'Ray', 'Anne Carlisle': 'Victoria', 'José Angel Santana': 'Boutique Owner (as Jose Santana)', 'Giancarlo Esposito': 'Street Vendor', 'Richard Hell': 'Bruce Meeker'}" tt0810817,"{'C. Thomas Howell': 'Michael Archer', 'Lance Henriksen': 'Dr. John Coven', 'Nicole Sherwin': 'Giulia Pedina', 'Alexis Zibolis': 'Samantha West', 'Jason S. Gray': 'Pejic (as Jason Gray)', 'Elvis Naumovski': 'Elvis', 'Antonio Jaramillo': 'Bob Griffee', 'Timothy Casto': 'DeKorte (as Tim Casto)', 'Rocky Hart': 'Cardinal Ricci', 'A.J. Castro': 'Amal (as Alby Castro)', 'Dru Brock': 'Convent Guard', 'Reza Riazi': 'Goon in Helicopter', 'Brian J. Garland': ""Coven's Thug"", 'Kurt Altschwager': ""Coven's Thug"", 'Steven Linnett': 'Officer'}" tt0061811,"{'Sidney Poitier': 'Virgil Tibbs', 'Rod Steiger': 'Gillespie', 'Warren Oates': 'Sam Wood', 'Lee Grant': 'Mrs. Colbert', 'Larry Gates': 'Endicott', 'James Patterson': 'Mr. Purdy', 'William Schallert': 'Mayor Schubert', 'Beah Richards': 'Mama Caleba', 'Peter Whitney': 'Courtney', 'Kermit Murdock': 'Henderson', 'Larry D. Mann': 'Watkins', 'Matt Clark': 'Packy', 'Arthur Malet': 'Ulam', 'Fred Stewart': 'Dr. Stuart', 'Quentin Dean': 'Delores'}" tt0785035,"{'Tony Jaa': 'Tien', 'Sarunyu Wongkrachang': 'Rajasena Lord (as Sarunyu Wongkrajang)', 'Sorapong Chatree': 'Chernung', 'Primorata Dejudom': 'Pim (as Primrata Det-Udom)', 'Nirut Sirichanya': 'Master Bua (as Nirut Sirijunya)', 'Petchtai Wongkamlao': 'Mhen (as Phetthai Wongkhamlao)', 'Santisuk Promsiri': 'Nobleman Siha Decho (as Santisuk Phromsiri)', 'Patthama Panthong': 'Lady Plai (as Pattama Panthong)', 'Supakorn Kitsuwon': 'Master Armer (as Suppakorn Kitsuwan)', 'Natdanai Kongthong': 'Young Tien (as Natdhanai Kongthong)', 'Prarinya Karmkeaw': 'Young Pim', 'Jaran Ngamdee': '(as Jarun Ngamdee)'}" tt0081455,"{""Jennifer O'Neill"": 'Kim Obrist', 'Stephen Lack': 'Cameron Vale (as Steven Lack)', 'Patrick McGoohan': 'Dr. Paul Ruth', 'Lawrence Dane': 'Braedon Keller', 'Michael Ironside': 'Darryl Revok', 'Robert A. Silverman': 'Benjamin Pierce (as Robert Silverman)', 'Lee Broker': 'Security One', 'Mavor Moore': 'Trevellyan', 'Adam Ludwig': 'Arno Crostic', 'Murray Cruchley': 'Programmer 1 (as Lee Murray)', 'Fred Doederlein': 'Dieter Tautz', 'Géza Kovács': 'Killer in Record Store (as Geza Kovacs)', 'Sonny Forbes': 'Killer in Attic (as Sony Forbes)', 'Jérôme Tiberghien': 'Killer in Attic (as Jerome Tiberghien)', 'Denis Lacroix': 'Killer in Barn'}" tt0047472,"{'Howard Keel': 'Adam Pontipee', 'Jeff Richards': 'Benjamin Pontipee', 'Russ Tamblyn': 'Gideon Pontipee', 'Tommy Rall': 'Frank (Frankincense) Pontipee', 'Marc Platt': 'Daniel Pontipee', 'Matt Mattox': 'Caleb Pontipee', ""Jacques d'Amboise"": 'Ephraim Pontipee', 'Jane Powell': 'Milly Pontipee', 'Julie Newmar': 'Dorcas Gaylen (as Julie Newmeyer)', 'Nancy Kilgas': 'Alice Elcott', 'Betty Carr': 'Sarah Kine', 'Virginia Gibson': 'Liza', 'Ruta Lee': 'Ruth Jepson (as Ruta Kilmonis)', 'Norma Doggett': 'Martha', 'Ian Wolfe': 'Rev. Elcott'}" tt0274166,"{'Rowan Atkinson': 'Johnny English', 'Tasha de Vasconcelos': 'Countess Alexandra - Exotic Woman', 'Ben Miller': ""Bough, English's Sidekick"", 'Greg Wise': 'Agent One', 'Douglas McFerran': 'Carlos Vendetta', 'Steve Nicolson': 'Dieter Klein', 'Terence Harvey': 'Official at Funeral', 'Kevin McNally': 'Prime Minister', 'Tim Pigott-Smith': 'Pegasus, Head of MI7', 'Nina Young': ""Pegasus' Secretary"", 'Rowland Davies': 'Sir Anthony Chevenix', 'Natalie Imbruglia': 'Lorna Campbell', 'Philippa Fordham': 'Snobby Woman', 'John Malkovich': 'Pascal Sauvage, the Greedy Frenchman', 'Tim Berrington': 'Roger'}" tt0085382,"{'Dee Wallace': 'Donna Trenton', 'Danny Pintauro': 'Tad Trenton', 'Daniel Hugh Kelly': 'Vic Trenton (as Daniel Hugh-Kelly)', 'Christopher Stone': 'Steve Kemp', 'Ed Lauter': 'Joe Camber', 'Kaiulani Lee': 'Charity Camber', 'Billy Jayne': 'Brett Camber (as Billy Jacoby)', 'Mills Watson': 'Gary Pervier', 'Sandy Ward': 'Bannerman', 'Jerry Hardin': 'Masen', 'Merritt Olsen': 'Professor', 'Arthur Rosenberg': 'Roger Breakstone', 'Terry Donovan-Smith': 'Harry', 'Robert Elross': 'Meara', 'Robert Behling': 'Fournier'}" tt0086525,"{'Nicolas Cage': 'Randy', 'Deborah Foreman': 'Julie Richman', 'Elizabeth Daily': 'Loryn', 'Michael Bowen': 'Tommy', 'Cameron Dye': 'Fred Bailey', 'Heidi Holicker': 'Stacey', 'Michelle Meyrink': 'Suzi Brent', 'Tina Theberge': 'Samantha', 'Lee Purcell': 'Beth Brent', 'Richard Sanders': ""Drivers' Ed Teacher"", 'Colleen Camp': 'Sarah Richman', 'Frederic Forrest': 'Steve Richman', 'David Ensor': 'Skip', 'Joanne Baron': 'Prom Teacher', 'Tony Plana': 'Low Rider'}" tt1480295,"{'Robert De Niro': 'Benjamin Ford', 'John Travolta': 'Emil Kovac', 'Milo Ventimiglia': 'Chris Ford', 'Elizabeth Olin': 'Sarah Ford', 'Diana Lyubenova': 'Elena', 'Kalin Sarmenov': 'Serbian', 'Stefan Shterev': 'Bar Customer'}" tt0089907,"{'Clu Gulager': 'Burt', 'James Karen': 'Frank', 'Don Calfa': 'Ernie', 'Thom Mathews': 'Freddy', 'Beverly Randolph': 'Tina', 'John Philbin': 'Chuck', 'Jewel Shepard': 'Casey', 'Miguel A. Núñez Jr.': 'Spider (as Miguel Nunez)', 'Brian Peck': 'Scuz', 'Linnea Quigley': 'Trash', 'Mark Venturini': 'Suicide', 'Jonathan Terry': 'Colonel Glover', 'Cathleen Cordell': ""Colonel's Wife"", 'Drew Deighan': 'Paramedic #1', 'James Dalesandro': 'Paramedic #2'}" tt1605630,"{'Jason Biggs': 'Jim', 'Alyson Hannigan': 'Michelle', 'Chris Klein': 'Oz', 'Thomas Ian Nicholas': 'Kevin', 'Tara Reid': 'Vicky', 'Seann William Scott': 'Stifler', 'Mena Suvari': 'Heather', 'Eddie Kaye Thomas': 'Finch', 'John Cho': 'MILF Guy #2', 'Jennifer Coolidge': ""Stifler's Mom"", 'Eugene Levy': ""Jim's Dad"", 'Natasha Lyonne': 'Jessica', 'Dania Ramirez': 'Selena', 'Katrina Bowden': 'Mia', 'Jay Harrington': 'Dr. Ron'}" tt0068833,"{'Sandra Peabody': 'Mari Collingwood (as Sandra Cassell)', 'Lucy Grantham': 'Phyllis Stone', 'David Hess': 'Krug Stillo (as David A. Hess)', 'Fred J. Lincoln': ""Fred 'Weasel' Podowski (as Fred Lincoln)"", 'Jeramie Rain': 'Sadie', 'Marc Sheffler': 'Junior Stillo', 'Richard Towers': 'Dr. John Collingwood (as Gaylord St. James)', 'Cynthia Carr': 'Estelle Collingwood', 'Ada Washington': 'Ada', 'Marshall Anker': 'Sheriff', 'Martin Kove': 'Deputy', 'Ray Edwards': 'Postman'}" tt1649444,"{'Leticia Dolera': 'Clara', 'Diego Martín': 'Koldo', 'Ismael Martínez': 'Rafa', 'Àlex Monner': 'Adrián', 'Borja Glez. Santaolalla': 'Atún (as Sr. B)', 'Emilio Mencheta': 'Tío Pepe Víctor', 'David Ramírez': 'Canon', 'Miguel Ángel González': 'John Esponja', 'Ramón Agirre': 'Danilo (as Ramón Aguirre)', 'Xavier Ruano': 'Cura', 'José de la Cruz': 'Abuelo Matías', 'Antonio Barroso': 'Pequeñín', 'Toni Sans': 'Jumanji', 'Aitor Legardón': 'Amigo Fiestero', 'Paco Moreno': 'Charly'}" tt1655441,"{'Blake Lively': 'Adaline Bowman', 'Michiel Huisman': 'Ellis Jones', 'Harrison Ford': 'William Jones', 'Ellen Burstyn': 'Flemming', 'Kathy Baker': 'Kathy Jones', 'Amanda Crew': 'Kikki Jones', 'Lynda Boyd': 'Regan', 'Hugh Ross': 'Narrator', 'Richard Harmon': 'Tony', 'Fulvio Cecere': 'Cab Driver', 'Anjali Jay': 'Cora', 'Hiro Kanagawa': 'Kenneth', 'Peter J. Gray': 'Clarence James Prescott (as Peter James Grey)', 'Izabel Pearce': 'Flemming (Age 5) (as Izabel A. Pearce)', 'Cate Richardson': 'Flemming (Age 20)'}" tt1245112,"{'Jonathan D. Mellor': 'Dr. Owen (as Jonathan Mellor)', 'Óscar Zafra': 'Jefe (as Oscar Sánchez Zafra)', 'Ariel Casas': 'Larra', 'Alejandro Casaseca': 'Martos', 'Pablo Rosso': 'Rosso', 'Rafa Parra': 'Rosso (voice)', 'Pep Molina': 'Padre Jennifer', 'Andrea Ros': 'Mire', 'Àlex Batllori': 'Ori', 'Pau Poch': 'Tito', 'Juli Fàbregas': 'Bombero', 'Ferran Terraza': 'Manu', 'Claudia Silva': 'Jennifer', 'Martha Carbonell': 'Sra. Izquierdo', 'Jorge-Yamam Serrano': 'Policía Joven'}" tt0816711,"{'Brad Pitt': 'Gerry Lane', 'Mireille Enos': 'Karin Lane', 'Daniella Kertesz': 'Segen', 'James Badge Dale': 'Captain Speke', 'Ludi Boeken': 'Jurgen Warmbrunn', 'Matthew Fox': 'Parajumper', 'Fana Mokoena': 'Thierry Umutoni', 'David Morse': 'Ex-CIA Agent', 'Elyes Gabel': 'Andrew Fassbach', 'Peter Capaldi': 'W.H.O. Doctor', 'Pierfrancesco Favino': 'W.H.O. Doctor', 'Ruth Negga': 'W.H.O. Doctor', 'Moritz Bleibtreu': 'W.H.O. Doctor', 'Sterling Jerins': 'Constance Lane', 'Abigail Hargrove': 'Rachel Lane'}" tt1925518,"{'Tony Jaa': 'Kham', 'RZA': 'LC', 'Petchtai Wongkamlao': 'Mark (as Phetthai Vongkumlao)', 'JeeJa Yanin': 'Ping Ping (as Jija Yanin)', 'Marrese Crump': 'No. 2', 'Yayaying Rhatha Phongam': 'No. 20 (as Rhatha Phongam)', 'Kazu Patrick Tang': 'No. 18', 'David Ismalone': 'No. 24', 'Theerada Kittisiriprasert': 'Sue Sue', 'Boonsong Nakphoo': 'No. 14', 'Sophon Phoonsawat': 'No. 45', 'Anton Kalinitchenko': 'No. 31', 'Jawed El Berni': 'No. 85 (as Jawed Al Berni)', 'Solatorn Lungluang': ""Kham's Father"", 'Patipol Sochada': 'Young Kham'}" tt1932767,"{'Julianne Moore': 'Susanna', 'Steve Coogan': 'Beale', 'Alexander Skarsgård': 'Lincoln', 'Joanna Vanderham': 'Margo', 'Onata Aprile': 'Maisie', 'Sadie Rae': 'Zoe (as Sadie Rae Lee)', 'Jesse Stone Spadaccini': 'Martin (as Jesse Spadaccini)', 'Diana García': 'Cecelia (as Diana Garcia Soto)', 'Amelia Campbell': 'Ms. Baine', 'Maddie Corman': 'Ms. Fairchild-Tetenbaum', 'Paddy Croft': 'Mrs. Wix', 'Trevor Long': 'Musician #1', 'Emma Holzer': 'Holly', 'Nadia Gan': 'Hostess', 'Samantha Buck': ""Zoe's Mother""}" tt3316948,"{'Jesse Eisenberg': 'Mike Howell', 'Kristen Stewart': 'Phoebe Larson', 'Topher Grace': 'Adrian Yates', 'Connie Britton': 'Victoria Lasseter', 'Walton Goggins': 'Laugher', 'John Leguizamo': 'Rose', 'Bill Pullman': 'Krueger', 'Tony Hale': 'Petey Douglas', 'Stuart Greer': 'Sheriff Watts', 'Michael Papajohn': 'Otis', 'Monique Ganderton': 'Crane', 'Nash Edgerton': 'Beedle', ""Paul Andrew O'Connor"": 'Diesel', 'Freddie Poole': 'Potter', 'Ilram Choi': 'Newton'}" tt0029947,"{'Katharine Hepburn': 'Susan', 'Cary Grant': 'David', 'Charles Ruggles': 'Major Applegate (as Charlie Ruggles)', 'Walter Catlett': 'Slocum', 'Barry Fitzgerald': 'Mr. Gogarty', 'May Robson': 'Aunt Elizabeth', 'Fritz Feld': 'Dr. Lehman', 'Leona Roberts': 'Mrs. Gogarty', 'George Irving': 'Mr. Peabody', 'Tala Birell': 'Mrs. Lehman', 'Virginia Walker': 'Alice Swallow', 'John Kelly': 'Elmer'}" tt0993846,"{'Leonardo DiCaprio': 'Jordan Belfort', 'Jonah Hill': 'Donnie Azoff', 'Margot Robbie': 'Naomi Lapaglia', 'Matthew McConaughey': 'Mark Hanna', 'Kyle Chandler': 'Agent Patrick Denham', 'Rob Reiner': 'Max Belfort', 'Jon Bernthal': 'Brad', 'Jon Favreau': 'Manny Riskin', 'Jean Dujardin': 'Jean Jacques Saurel', 'Joanna Lumley': 'Aunt Emma', 'Cristin Milioti': 'Teresa Petrillo', 'Christine Ebersole': 'Leah Belfort', 'Shea Whigham': 'Captain Ted Beecham', 'Katarina Cas': 'Chantalle', 'P.J. Byrne': ""Nicky Koskoff ('Rugrat')""}" tt3397884,"{'Emily Blunt': 'Kate Macer', 'Benicio Del Toro': 'Alejandro', 'Josh Brolin': 'Matt Graver', 'Victor Garber': 'Dave Jennings', 'Jon Bernthal': 'Ted', 'Daniel Kaluuya': 'Reggie Wayne', 'Jeffrey Donovan': 'Steve Forsing', 'Raoul Max Trujillo': 'Rafael (as Raoul Trujillo)', 'Julio Cesar Cedillo': 'Fausto Alarcon', 'Hank Rogerson': 'Phil Coopers', 'Bernardo Saracino': 'Manuel Diaz', 'Maximiliano Hernández': 'Silvio (as Maximiliano Hernandez)', 'Kevin Wiggins': 'Burnett', 'Edgar Arreola': 'Guillermo', 'Kim Larrichio': ""Silvio's Wife""}" tt1592281,"{'Michelle Williams': 'Margot', 'Seth Rogen': 'Lou', 'Luke Kirby': 'Daniel', 'Sarah Silverman': 'Geraldine', 'Jennifer Podemski': 'Karen', ""Diane D'Aquila"": 'Harriet', 'Vanessa Carter': 'Tony (as Vanessa Coelho)', 'Graham Abbey': 'James', 'Damien Atkins': 'Aquafit Instructor', 'Aaron Abrams': 'Aaron', 'Dyan Bell': 'Dyan', 'Albert Howell': 'Albert', 'Danielle Miller': 'Danielle', 'Matt Baram': 'Matt', 'Avi Phillips': 'Avi'}" tt1376709,"{'Brendan Cowell': 'Jim', 'Peter Dinklage': 'Charlie', 'Yvonne Strahovski': 'Alice', 'Peter Helliar': 'Blake', 'Megan Gale': 'Francesca Moretti', 'Bridie Carter': 'Marie', 'Travis McMahon': 'Owen', 'Katrina Milosevic': 'Rebecca', 'Steve Bisley': 'Bill', 'Madeleine Harding': 'Janine', 'Cindy Waddingham': 'Caitlin', 'Leon Bryant': 'I Love You Him', 'Angela Scundi': 'I Love You Her', 'Rachel Waters': 'Grossed Out Child', 'Heidi Valkenburg': 'Jenny'}" tt0787474,"{'Steve Blum': 'Shoe / Sparky (voice)', 'Dee Bradley Baker': 'Fish / Wheels / Bucket (voice)', 'Max Mitchell': 'Baby Eggs (voice)', 'Ben Kingsley': 'Snatcher (voice)', 'Jared Harris': 'Lord Portley-Rind (voice)', 'Nick Frost': 'Mr. Trout (voice)', 'Richard Ayoade': 'Mr. Pickles (voice)', 'Tracy Morgan': 'Mr. Gristle (voice)', 'Nika Futterman': 'Oil Can / Knickers (voice)', 'Pat Fraley': 'Fragile / Sweets (voice)', 'Fred Tatasciore': 'Clocks / Specs (voice)', 'Isaac Hempstead Wright': 'Eggs (voice)', 'Elle Fanning': 'Winnie Portley-Rind (voice)', 'Maurice LaMarche': 'Sir Langsdale (voice)', 'James Urbaniak': 'Sir Broderick / Male Workman 1 / Male Workman 2 (voice)'}" tt4547120,"{'Jhey Castles': 'Molly Dunn', 'Jason Woods': 'Nick', 'Grace Van Dien': 'Ali', 'Elaine Partnow': 'Mrs. Lowenstein', 'Lane Townsend': 'Hank', 'Allison Adams': 'Teen Molly', 'Kyle Wood': 'Danny (as Kyle Barck)', 'Robert Evans': 'Mr. Lowenstein', 'Blaire Chandler': 'Jessica', 'Chris Clanton': 'Resnick', 'Chris Cleveland': 'James Simms', 'Antonio Cullari': 'Inspector', 'Alex Diehl': 'Jackson', 'Bill Voorhees': 'Miles', 'Shaun Gerardo': 'Aviator'}" tt0290747,"{'Matthew Le Nevez': 'Kyle', 'Rachael Taylor': 'Teri', 'Jack Thompson': 'Schist', 'Rawiri Paratene': 'Pete Horn', ""Alex O'Loughlin"": ""Fraser (as Alex O'Lachlan)"", 'Steve Bastoni': 'Rene', 'Robert Mammone': 'Mike Ploog', 'Patrick Thompson': 'Jake (as Pat Thompson)', 'William Zappa': 'Gerber', 'John Batchelor': 'Wayne Thibadeaux', 'Ian Bliss': 'Rodney Thibadeaux', 'Brett Leonard': 'Val Mayerick', 'Imogen Bailey': 'Sarah', 'James Coyne': 'Billy', 'Cheryl Craig': 'Michele'}" tt1529572,"{'Clive Owen': 'Will', 'Catherine Keener': 'Lynn', 'Liana Liberato': 'Annie', 'Jason Clarke': 'Doug Tate', 'Viola Davis': 'Gail Friedman', 'Chris Henry Coffey': 'Graham Weston', 'Spencer Curnutt': 'Peter', 'Aislinn DeButch': 'Katie', 'Noah Emmerich': 'Al Hart', 'Olivia Wickline': 'Louise', 'Zoe Levin': 'Brittany', 'Zanny Laird': 'Serena Edmonds', 'Yolanda Mendoza': 'Tanya', 'Shenell Randall': 'Alexa', 'Jordan Trovillion': 'Waitress'}" tt0096787,"{'Burt Reynolds': 'Charlie B. Barkin (voice)', 'Dom DeLuise': 'Itchy Itchiford (voice)', 'Judith Barsi': 'Anne-Marie (voice)', 'Melba Moore': 'Whippet Angel (voice)', 'Daryl Gilley': 'Dog Caster (voice)', 'Candy Devine': 'Vera (voice)', 'Charles Nelson Reilly': 'Killer (voice)', 'Vic Tayback': 'Carface (voice)', 'Rob Fuller': 'Harold (voice)', 'Earleen Carey': 'Kate (voice)', 'Anna Manahan': 'Stella Dallas (voice)', 'Nigel Pegram': 'Sir Reginald (voice)', 'Loni Anderson': 'Flo (voice)', 'Ken Page': 'King Gator (voice)', 'Godfrey Quigley': 'Terrier (voice)'}" tt0238546,"{'Aaliyah': 'Queen Akasha', 'Stuart Townsend': 'Lestat', 'Marguerite Moreau': 'Jesse', 'Vincent Perez': 'Marius', 'Paul McGann': 'David Talbot', 'Lena Olin': 'Maharet', 'Christian Manon': 'Mael', 'Claudia Black': 'Pandora', 'Bruce Spence': 'Khayman', 'Matthew Newton': 'Armand', 'Tiriel Mora': 'Roger', 'Megan Cooper': 'Maudy (as Megan Dorman)', 'Johnathan Devoy': 'James', 'Robert Farnham': 'Alex', 'Conrad Standish': 'T. C.'}" tt1453403,"{'James Franco': 'William Vincent', 'Julianne Nicholson': 'Ann', 'Martin Donovan': 'Victor', 'Josh Lucas': 'Boss', 'Haskell King': 'Jason', 'Zoe Lister-Jones': 'Rebecca (as Zoe Lister Jones)', 'Ty Anania': 'Older Brother', 'Louis Anania': 'Younger Brother', 'Norm Golden': 'Jasper', 'Gibson Frazier': 'Sitting Man', 'Emily Tremaine': 'Cindy', 'Julienne Hanzelka Kim': 'Juliette', 'Vince Jolivette': 'Russell', 'John Tintori': 'Walking Man', 'Mick Casalle': 'Man with Cigarette'}" tt1825157,"{'Jesse Eisenberg': 'Simon / James', 'Mia Wasikowska': 'Hannah', 'Wallace Shawn': 'Mr Papadopoulos', 'Yasmin Paige': 'Melanie', 'Noah Taylor': 'Harris', 'James Fox': 'The Colonel', 'Cathy Moriarty': 'Kiki', 'Phyllis Somerville': ""Simon's Mother"", 'Gabrielle Downey': 'Strange Woman', 'Jon Korkes': 'Detective', 'Craig Roberts': 'Young Detective', 'Kobna Holdbrook-Smith': 'Guard / Doctor', 'Susan Blommaert': 'Liz', 'Bruce Byron': 'Skinhead', 'J. Mascis': 'Janitor (as J Mascis)'}" tt0453451,"{'Rowan Atkinson': 'Mr. Bean', 'Steve Pemberton': 'Vicar', 'Lily Atkinson': 'Lily at the Stereo', 'Preston Nyman': 'Boy with Train', 'Sharlit Deyzac': 'Buffet Attendant', 'Francois Touch': 'Busker Accordion', 'Emma de Caunes': 'Sabine', 'Arsène Mosca': 'Traffic Controller (as Arsene Mosca)', 'Stéphane Debac': 'Traffic Controller (as Stephane Debac)', 'Willem Dafoe': 'Carson Clay', 'Philippe Spall': 'French Journalist', 'Jean Rochefort': ""Maitre'D"", 'Karel Roden': 'Emil', 'Maxim Baldry': 'Stepan (as Max Baldry)', 'Pascal Jounier': 'Tipsy Man'}" tt1853739,"{'Sharni Vinson': 'Erin', 'Nicholas Tucci': 'Felix', 'Wendy Glenn': 'Zee', 'AJ Bowen': 'Crispian', 'Joe Swanberg': 'Drake', 'Margaret Laney': 'Kelly (as Sarah Myers)', 'Amy Seimetz': 'Aimee', 'Ti West': 'Tariq', 'Rob Moran': 'Paul', 'Barbara Crampton': 'Aubrey', 'L.C. Holt': 'Lamb Mask', 'Simon Barrett': 'Tiger Mask', 'Lane Hughes': 'Fox Mask', 'Larry Fessenden': 'Erik Harson', 'Kate Lyn Sheil': 'Talia'}" tt2039345,"{'Elijah Wood': 'Tom Selznick', 'John Cusack': 'Clem', 'Kerry Bishé': 'Emma Selznick', 'Tamsin Egerton': 'Ashley', 'Allen Leech': 'Wayne', 'Don McManus': 'Norman Reisinger', 'Alex Winter': 'Assistant', 'Dee Wallace': 'A & V Interviewer', 'Jim Arnold': 'Janitor', 'Jack Taylor': 'Patrick Godureaux', 'Beth Rollan': ""Emma's Publicist (as Beth Trollan)"", 'Amy Gwilliam': ""Emma's Assistant"", 'Harris Gordon': ""Emma's Agent"", 'Ricardo Alexander': 'Executive (as Richard A. Newby)', 'Brendan Murphy': 'Mover #1'}" tt2235108,"{'Tyler James Williams': 'Lionel Higgins', 'Tessa Thompson': 'Samantha White', 'Kyle Gallner': 'Kurt Fletcher', 'Teyonah Parris': ""Colandrea 'Coco' Conners"", 'Brandon P Bell': 'Troy Fairbanks (as Brandon Bell)', 'Brittany Curran': 'Sofia Fletcher', 'Justin Dobies': 'Gabe', 'Marque Richardson': 'Reggie', 'Malcolm Barrett': 'Helmut West', 'Dennis Haysbert': 'Dean Fairbanks', 'Peter Syvertsen': 'President Fletcher', 'Brandon Alter': 'George', 'Kate Gaulke': 'Annie (as Katie Gaulke)', 'Brian James': 'Martin', 'Keith Myers': 'Mitch'}" tt0084649,"{'Derek Jacobi': 'Nicodemus (voice)', 'Elizabeth Hartman': 'Mrs. Brisby (voice)', 'Arthur Malet': 'Mr. Ages (voice)', 'Dom DeLuise': 'Jeremy (voice)', 'Hermione Baddeley': 'Auntie Shrew (voice)', 'Shannen Doherty': 'Teresa (voice)', 'Wil Wheaton': 'Martin (voice)', 'Jodi Hicks': 'Cynthia (voice)', 'Ian Fried': 'Timothy (voice)', 'John Carradine': 'Great Owl (voice)', 'Peter Strauss': 'Justin (voice)', 'Paul Shenar': 'Jenner (voice)', 'Tom Hatten': 'Farmer Fitzgibbons (voice)', 'Lucille Bliss': 'Mrs. Fitzgibbons (voice)', 'Aldo Ray': 'Sullivan (voice)'}" tt1302067,"{'Dan Aykroyd': 'Yogi Bear (voice)', 'Justin Timberlake': 'Boo Boo (voice)', 'Anna Faris': 'Rachel', 'Tom Cavanagh': 'Ranger Smith', 'T.J. Miller': 'Ranger Jones', 'Nate Corddry': 'Chief of Staff', 'Andrew Daly': 'Mayor Brown', 'Josh Robert Thompson': 'Narrator (voice)', 'David Stott': ""Mayor's Tailor"", 'Greg Johnson': 'Dirty Shopper', 'Christy Qulliam': 'Stylist (as Christy Quillam)', 'Patricia Aldersley': 'Elderly Purse Lady', 'Tim McLachlan': 'Purse Snatcher', 'Hayden Vernon': 'Security Guard', 'Dean Knowsley': 'Security Guard'}" tt0379786,"{'Nathan Fillion': 'Mal', 'Gina Torres': 'Zoë', 'Alan Tudyk': 'Wash', 'Morena Baccarin': 'Inara', 'Adam Baldwin': 'Jayne', 'Jewel Staite': 'Kaylee', 'Sean Maher': 'Simon', 'Summer Glau': 'River', 'Ron Glass': 'Shepherd Book', 'Chiwetel Ejiofor': 'The Operative', 'David Krumholtz': 'Mr. Universe', 'Michael Hitchcock': 'Dr. Mathias', 'Sarah Paulson': 'Dr. Caron', 'Yan Feldman': 'Mingo', 'Rafael Feldman': 'Fanty'}" tt0087365,"{'Ralph Richardson': 'The Sixth Earl of Greystoke', 'Ian Holm': ""Capitaine Phillippe D'Arnot"", 'James Fox': 'Lord Charles Esker', 'Christopher Lambert': 'John Clayton / Tarzan, Lord of the Apes', 'Andie MacDowell': 'Miss Jane Porter', 'Cheryl Campbell': 'Lady Alice Clayton', 'Ian Charleson': 'Jeffson Brown', 'Nigel Davenport': 'Major Jack Downing', 'Nicholas Farrell': 'Sir Hugh Belcher', 'Paul Geoffrey': ""Lord John 'Jack' Clayton"", 'Richard Griffiths': 'Captain Billings', 'Hilton McRae': 'Willy', 'David Suchet': 'Buller', 'Ravinder': 'Dean', 'John Wells': 'Sir Evelyn Blount'}" tt3181822,"{'Jennifer Lopez': 'Claire Peterson', 'Ryan Guzman': 'Noah Sandborn', 'Ian Nelson': 'Kevin Peterson', 'John Corbett': 'Garrett Peterson', 'Kristin Chenoweth': 'Vicky Lansing', 'Lexi Atkins': 'Allie Callahan', 'Hill Harper': 'Principal Edward Warren', 'Jack Wallace': 'Mr. Sandborn', 'Adam Hicks': 'Jason Zimmer', 'François Chau': 'Detective Johnny Chou (as Francois Chau)', 'Bailey Chase': 'Benny', 'Kent Avenido': 'Mr. Avenido', 'Travis Schuldt': 'Ethan', 'Brian Mahoney': 'Couper', 'Raquel Gardner': 'Barbara'}" tt4566574,"{'Illeana Douglas': 'Dr. Alison Gray', 'Amy Rider': 'Moira King', 'Brody Hutzler': 'Joshua Dane', 'Adam Dunnells': 'Wilhelm', 'Edward DeRuiter': 'Spencer', 'Tara Price': 'Lt. Commander Elisha Parker', 'Ernest Thomas': 'Admiral Titus Jackson', 'Jeff Hatch': 'Dr. John Bullock', 'Tim Abell': 'Ivan', 'Clare Grant': 'Clare', 'Alison Haislip': 'Ali', 'Milynn Sarley': 'Milynn', 'Bryan Hanna': 'Benedict', 'Rileah Vanderbilt': 'Rileah', 'Patrick Bauchau': 'Dr. Sergie Abramov'}" tt0975645,"{'Anthony Hopkins': 'Alfred Hitchcock', 'Helen Mirren': 'Alma Reville', 'Scarlett Johansson': 'Janet Leigh', 'Danny Huston': 'Whitfield Cook', 'Toni Collette': 'Peggy', 'Michael Stuhlbarg': 'Lew Wasserman', 'Michael Wincott': 'Ed Gein', 'Jessica Biel': 'Vera Miles', ""James D'Arcy"": 'Anthony Perkins', 'Richard Portnow': 'Barney Balaban', 'Kurtwood Smith': 'Geoffrey Shurlock', 'Ralph Macchio': 'Joseph Stefano', 'Kai Lennox': 'Hilton Green', 'Tara Summers': 'Rita Riggs', 'Wallace Langham': 'Saul Bass'}" tt0086856,"{'Peter Weller': 'Buckaroo Banzai', 'John Lithgow': 'Lord John Whorfin / Dr. Emilio Lizardo', 'Ellen Barkin': 'Penny Priddy', 'Jeff Goldblum': 'New Jersey', 'Christopher Lloyd': 'John Bigbooté', 'Lewis Smith': 'Perfect Tommy', 'Rosalind Cash': 'John Emdall', 'Robert Ito': 'Professor Hikita', 'Pepe Serna': 'Reno Nevada', 'Ronald Lacey': 'President Widmark', 'Matt Clark': 'Secretary of Defense', 'Clancy Brown': 'Rawhide', 'William Traylor': 'General Catburd', 'Carl Lumbly': 'John Parker', 'Vincent Schiavelli': ""John O'Connor""}" tt1951266,"{'Jennifer Lawrence': 'Katniss Everdeen', 'Josh Hutcherson': 'Peeta Mellark', 'Liam Hemsworth': 'Gale Hawthorne', 'Woody Harrelson': 'Haymitch Abernathy', 'Donald Sutherland': 'President Snow', 'Philip Seymour Hoffman': 'Plutarch Heavensbee', 'Julianne Moore': 'President Alma Coin', 'Willow Shields': 'Primrose Everdeen', 'Sam Claflin': 'Finnick Odair', 'Elizabeth Banks': 'Effie Trinket', 'Mahershala Ali': 'Boggs', 'Jena Malone': 'Johanna Mason', 'Jeffrey Wright': 'Beetee', 'Paula Malcomson': ""Katniss' Mother"", 'Stanley Tucci': 'Caesar Flickerman'}" tt2908446,"{'Kate Winslet': 'Jeanine', 'Jai Courtney': 'Eric', 'Mekhi Phifer': 'Max', 'Shailene Woodley': 'Tris', 'Theo James': 'Four', 'Ansel Elgort': 'Caleb', 'Miles Teller': 'Peter', 'Cynthia Barrett': 'Amity Divergent Woman', 'Justice Leak': 'Amity Divergent Husband', 'Lyndsi LaRose': 'Amity Teacher', 'Charlie Bodin': 'Amity Server', 'Octavia Spencer': 'Johanna', 'Zoë Kravitz': 'Christina', 'Ben Lloyd-Hughes': 'Will', 'Tony Goldwyn': 'Andrew'}" tt2872750,"{'Justin Fletcher': 'Shaun / Timmy (voice)', 'John Sparkes': 'The Farmer / Bitzer (voice)', 'Omid Djalili': 'Trumper (voice)', 'Richard Webber': 'Shirley (voice)', 'Kate Harbour': ""Timmy's Mum / Meryl (voice)"", 'Tim Hands': 'Slip (voice)', 'Andy Nyman': 'Nuts (voice)', 'Simon Greenall': 'Twins (voice)', 'Emma Tate': 'Hazel (voice)', 'Jack Paulson': 'Celebrity with Hair Trouble (voice)', 'Sean Connolly': 'Maitre D / Golfer / Stylists / Angry Panto Horse / Hospital Characters (voice)', 'Henry Burton': 'Junior Doctor / Animal Containment Visitor (voice)', 'Dhimant Vyas': 'Hospital Consultant (voice)', 'Sophie Laughton': 'Animal Containment Visitor (voice)', 'Nia Medi James': 'Operatic Sheep (voice)'}" tt0470752,"{'Domhnall Gleeson': 'Caleb', 'Alicia Vikander': 'Ava', 'Oscar Isaac': 'Nathan', 'Sonoya Mizuno': 'Kyoko', 'Corey Johnson': 'Jay', 'Claire Selby': 'Lily', 'Symara A. Templeman': 'Jasmine (as Symara Templeman)', 'Gana Bayarsaikhan': 'Jade', 'Tiffany Pisani': 'Katya', 'Elina Alminas': 'Amber (as Lina Alminas)'}" tt1356864,"{'Joaquin Phoenix': 'Joaquin Phoenix', 'Antony Langdon': 'Anton', 'Carey Perloff': 'Himself - Play Director', 'Larry McHale': 'Larry McHale', 'Casey Affleck': 'Casey Affleck', 'Jack Nicholson': 'Jack Nicholson', 'Billy Crystal': 'Billy Crystal', 'Danny Glover': 'Danny Glover', 'Bruce Willis': 'Himself', 'Robin Wright': 'Herself', 'Johnny Moreno': ""Victor - Danny DeVito's stand-in (as Johnny Marino)"", 'Danny DeVito': 'Danny DeVito', 'Jerry Penacoli': 'Jerry', 'Susan Patricola': 'Susan', 'Patrick Whitesell': 'Patrick'}" tt1116184,"{'Johnny Knoxville': 'Himself', 'Bam Margera': 'Himself', 'Ryan Dunn': 'Himself', 'Steve-O': 'Himself', ""Jason 'Wee Man' Acuña"": 'Himself', 'Preston Lacy': 'Himself', 'Chris Pontius': 'Himself', 'Ehren McGhehey': 'Himself', 'Dave England': 'Himself', 'Loomis Fall': 'Himself', 'Tony Hawk': 'Himself', 'Eric Koston': 'Himself', 'April Margera': 'Herself', 'Phil Margera': 'Himself', 'Spike Jonze': 'Himself'}" tt2626350,"{'Ryan Guzman': 'Sean', 'Briana Evigan': 'Andie', 'Adam Sevani': 'Moose', 'Misha Gabriel Hamilton': 'Eddy (as Misha Gabriel)', 'Stephen Boss': ""Jason (as Stephen 'tWitch' Boss)"", 'Stephen Stevo Jones': ""Jasper (as Stephen 'Stev-O' Jones)"", 'David Shreibman': ""Chad (as David 'Kid David' Shreibman)"", 'Mari Koda': 'Jenny Kido', 'Christopher Scott': 'Hair', 'Luis Rosado': ""Monster (as Luis 'Luigi' Rosado)"", 'Chadd Smith': 'Vladd', 'Facundo Lombard': 'Marcos Santiago', 'Martín Lombard': 'Martin Santiago', 'Parris Goebel': 'Violet', 'Cyrus Spencer': ""Gauge (as Cyrus 'Glitch' Spencer)""}" tt0107983,"{'Gary Oldman': 'Jack Grimaldi', 'Wallace Wood': 'Waiter', 'Juliette Lewis': 'Sheri', 'David Proval': 'Scully', 'Will Patton': 'Martie', 'Gene Canfield': 'John', 'Larry Joshua': 'Joey', 'Michael Wincott': 'Sal', 'Lena Olin': 'Mona Demarkov', 'William Duff-Griffin': 'Paddy', 'James Cromwell': 'Cage', 'Paul Butler': 'Skouras', 'Annabella Sciorra': 'Natalie Grimaldi', 'Tony Sirico': 'Malacci', 'Victoria Bastel': 'Girl #1'}" tt1229340,"{'Will Ferrell': 'Ron Burgundy', 'Steve Carell': 'Brick Tamland', 'Paul Rudd': 'Brian Fantana', 'David Koechner': 'Champ Kind', 'Christina Applegate': 'Veronica Corningstone', 'Dylan Baker': 'Freddie Shapp', 'Meagan Good': 'Linda Jackson', 'Judah Nelson': 'Walter Burgundy', 'James Marsden': 'Jack Lime', 'Greg Kinnear': 'Gary', 'Josh Lawson': 'Kench Allenby', 'Kristen Wiig': 'Chani Lastnamé', 'Fred Willard': 'Ed Harken', 'Chris Parnell': 'Garth', 'Harrison Ford': 'Mack Tannen'}" tt1229238,"{'Tom Cruise': 'Ethan Hunt', 'Paula Patton': 'Jane', 'Simon Pegg': 'Benji', 'Jeremy Renner': 'Brandt', 'Michael Nyqvist': 'Hendricks', 'Vladimir Mashkov': 'Sidorov', 'Samuli Edelmann': 'Wistrom', 'Ivan Shvedoff': 'Leonid Lisenker', 'Anil Kapoor': 'Brij Nath', 'Léa Seydoux': 'Sabine Moreau', 'Josh Holloway': 'Hanaway', 'Pavel Kríz': 'Marek Stefanski', 'Miraj Grbic': 'Bogdan', 'Ilia Volok': 'The Fog', 'Goran Navojec': 'Burly Russian Prisoner'}" tt1229238,"{'Tom Cruise': 'Ethan Hunt', 'Paula Patton': 'Jane', 'Simon Pegg': 'Benji', 'Jeremy Renner': 'Brandt', 'Michael Nyqvist': 'Hendricks', 'Vladimir Mashkov': 'Sidorov', 'Samuli Edelmann': 'Wistrom', 'Ivan Shvedoff': 'Leonid Lisenker', 'Anil Kapoor': 'Brij Nath', 'Léa Seydoux': 'Sabine Moreau', 'Josh Holloway': 'Hanaway', 'Pavel Kríz': 'Marek Stefanski', 'Miraj Grbic': 'Bogdan', 'Ilia Volok': 'The Fog', 'Goran Navojec': 'Burly Russian Prisoner'}" tt1583421,"{'Dwayne Johnson': 'Roadblock', 'Jonathan Pryce': 'President', 'Byung-Hun Lee': 'Storm Shadow', 'Elodie Yung': 'Jinx', 'Ray Stevenson': 'Firefly', 'D.J. Cotrona': 'Flint', 'Adrianne Palicki': 'Jaye', 'Channing Tatum': 'Duke', 'Ray Park': 'Snake Eyes', 'Luke Bracey': 'Cobra Commander', 'Walton Goggins': 'Warden Nigel James', 'Arnold Vosloo': 'Zartan', 'Joseph Mazzello': 'Mouse (as Joe Mazzello)', 'Nick Erickson': 'President Picture Double', 'RZA': 'Blind Master'}" tt0493430,"{'Johnny Knoxville': 'Himself', 'Bam Margera': 'Himself', 'Steve-O': 'Himself', 'Chris Pontius': 'Himself', 'Ryan Dunn': 'Himself', ""Jason 'Wee Man' Acuña"": 'Himself', 'Preston Lacy': 'Himself', 'Dave England': 'Himself', 'Ehren McGhehey': 'Himself', 'Phil Margera': 'Himself', 'April Margera': 'Herself', 'Jess Margera': 'Himself', 'Brandon DiCamillo': 'Himself', 'Mat Hoffman': 'Himself', 'Tony Hawk': 'Himself'}" tt2333784,"{'Sylvester Stallone': 'Barney Ross', 'Jason Statham': 'Lee Christmas', 'Harrison Ford': 'Drummer', 'Arnold Schwarzenegger': 'Trench', 'Mel Gibson': 'Stonebanks', 'Wesley Snipes': 'Doc', 'Dolph Lundgren': 'Gunner', 'Randy Couture': 'Toll Road', 'Terry Crews': 'Caesar', 'Kelsey Grammer': 'Bonaparte', 'Glen Powell': 'Thorn', 'Antonio Banderas': 'Galgo', 'Victor Ortiz': 'Mars', 'Ronda Rousey': 'Luna', 'Kellan Lutz': 'Smilee'}" tt0286788,"{'Amanda Bynes': 'Daphne Reynolds', 'Colin Firth': 'Henry Dashwood', 'Kelly Preston': 'Libby Reynolds', 'Eileen Atkins': 'Jocelyn Dashwood', 'Anna Chancellor': 'Glynnis Payne', 'Jonathan Pryce': 'Alistair Payne', 'Oliver James': 'Ian Wallace', 'Christina Cole': 'Clarissa Payne', 'Sylvia Syms': 'Princess Charlotte', 'Soleil McGhee': 'Young Daphne', 'Peter Reeves': 'Sir John Dashwood', 'James Greene': 'Percy', 'Steven Osborne': 'Staff Member', 'Mike Toller': ""Libby's Band Member"", 'Tom Penn': ""Libby's Band Member""}" tt0120800,"{'Jessalyn Gilsig': 'Kayley (voice)', 'Andrea Corr': 'Kayley (singing voice)', 'Cary Elwes': 'Garrett (voice)', 'Bryan White': 'Garrett (singing voice)', 'Gary Oldman': 'Ruber (voice)', 'Eric Idle': 'Devon (voice)', 'Don Rickles': 'Cornwall (voice)', 'Jane Seymour': 'Juliana (voice)', 'Céline Dion': 'Juliana (singing voice) (as Celine Dion)', 'Pierce Brosnan': 'King Arthur (voice)', 'Steve Perry': 'King Arthur (singing voice)', 'Bronson Pinchot': 'Griffin (voice)', 'Jaleel White': 'Bladebeak (voice)', 'Gabriel Byrne': 'Lionel (voice)', 'John Gielgud': 'Merlin (voice) (as Sir John Gielgud)'}" tt1571249,"{'Bill Hader': 'Milo Dean', 'Kristen Wiig': 'Maggie Dean', 'Luke Wilson': 'Lance', 'Ty Burrell': 'Rich', 'Boyd Holbrook': 'Billy', 'Joanna Gleason': 'Judy', 'Kathleen Rose Perkins': 'Carlie', 'Adriane Lenox': 'Dr. Linda Essex', 'Sydney Lucas': 'Young Maggie', 'Eddie Schweighardt': 'Young Milo', 'Paul Castro Jr.': 'Eric', 'Benjamin McGowan': 'Cullen', 'Jennifer Smith': 'Bar Woman', 'Genevieve Adams': 'Store Manager', 'Truck Hudson': 'Security Officer'}" tt3899796,"{'Ian Ziering': 'Fin Shepard', 'Tara Reid': 'April Shepard', 'Cassandra Scerbo': 'Nova Clarke (as Cassie Scerbo)', 'Frankie Muniz': 'Lucas Stevens', 'Ryan Whitney Newman': 'Claudia Shepard (as Ryan Newman)', 'David Hasselhoff': 'Gilbert Grayson Shepard', 'Mark Cuban': 'President Marcus Robbins', 'Bo Derek': 'May Wexler', 'Blair Fowler': 'Jess', 'Michael Winslow': ""Brian 'Jonesy' Jones"", 'Jack Griffo': 'Billy', 'Michelle Beadle': 'Agent Argyle', 'Ne-Yo': 'Agent Devoreaux', 'Chris Jericho': 'Bruce the Ride Attendant', 'Mark McGrath': 'Martin Brody'}" tt1680138,"{'Tiffany': ""Terry O'Hara"", 'Debbie Gibson': 'Dr. Nikki Riley', 'A Martinez': 'Dr. Diego Ortiz', 'Kathryn Joosten': 'Angie Polk', 'Kevin M. Horton': 'R.J. Cupelli', 'Carey Van Dyke': 'Justin', 'Micky Dolenz': 'Himself', 'Robert R. Shafer': 'Zeke (as Bobby Ray Shafer)', 'Carl Ciarfalio': 'Billy', 'Steve Hart': 'Ray (as Stephen P. Hart)', 'Kaiwi Lyman': 'Tom (as Kaiwi Lyman-Mersereau)', 'Patrick Hancock': 'Ben', 'Arden Cho': 'Gia', 'Chris Neville': 'Manny', 'Kristen Wilson': 'Barbara'}" tt1450321,"{'James McAvoy': 'Bruce', 'Jamie Bell': 'Lennox', 'Eddie Marsan': 'Bladesey', 'Imogen Poots': 'Drummond', 'Brian McCardie': 'Gillman', 'Emun Elliott': 'Inglis', 'Gary Lewis': 'Gus', 'John Sessions': 'Toal', 'Shauna Macdonald': 'Carole', 'Jim Broadbent': 'Dr. Rossi', 'Joanne Froggatt': 'Mary', 'Kate Dickie': 'Chrissie', 'Martin Compston': 'Gorman', 'Iain De Caestecker': 'Ocky', 'Shirley Henderson': 'Bunty'}" tt1587807,"{'Paul Logan': 'Jason Fitch', 'Tiffany': 'Sarah Monroe', 'Barry Williams': 'Bob Grady', 'David Labiosa': 'Colonel Antonio Diaz', 'Jude Gerard Prest': 'Dr. Brian Higgins', 'Jesse Daly': 'Dr. Eli Gordon', 'Cooper Harris': 'Lt. Julia', 'William Morse': 'Lt. Stritch', 'Clint Browning': 'Captain Jonas', 'Matt Lagan': 'Submarine Captain Jim', 'Jonathan Nation': 'Mort', 'Jesel Ortloff': 'Mom', 'Lola Forsberg': 'Steph', 'Jillian Easton': 'Jane the Reporter', 'Joseph Porter': 'Ensign Filbert'}" tt2637276,"{'Mark Wahlberg': 'John', 'Seth MacFarlane': 'Ted (voice)', 'Amanda Seyfried': 'Samantha', 'Jessica Barth': 'Tami-Lynn', 'Giovanni Ribisi': 'Donny', 'Morgan Freeman': 'Patrick Meighan', 'Sam J. Jones': 'Himself', 'Patrick Warburton': 'Guy', 'Michael Dorn': 'Rick', 'Bill Smitrovich': 'Frank', 'John Slattery': 'Shep Wild', 'Cocoa Brown': 'Joy', 'John Carroll Lynch': 'Tom Jessup', 'Ron Canada': 'Judge', 'Liam Neeson': 'Customer'}" tt0104040,"{'D.B. Sweeney': 'Doug Dorsey (as D. B. Sweeney)', 'Moira Kelly': 'Kate Moseley', 'Roy Dotrice': 'Anton Pamchenko', ""Terry O'Quinn"": 'Jack Moseley', 'Dwier Brown': 'Hale Forrest', 'Chris Benson': 'Walter Dorsey', 'Kevin Peeks': 'Brian Newman', 'Barry Flatman': 'Rick Tuttle', 'Rachelle Ottley': 'Lorie Peckarovski', 'Steve Sears': 'Spindler', 'Nahanni Johnstone': 'Gita', 'Michael Hogan': 'Doctor', 'R.D. Reid': 'Calgary Cop', 'Dick Grant': 'Olympic Commentator', 'Melanie Miller': 'Olympic Commentator'}" tt2109248,"{'Mark Wahlberg': 'Cade Yeager', 'Stanley Tucci': 'Joshua Joyce', 'Kelsey Grammer': 'Harold Attinger', 'Nicola Peltz': 'Tessa Yeager', 'Jack Reynor': 'Shane Dyson', 'Titus Welliver': 'James Savoy', 'Sophia Myles': 'Darcy Tirrel', 'Bingbing Li': 'Su Yueming', 'T.J. Miller': 'Lucas Flannery', 'James Bachman': 'Gill Wembley', 'Thomas Lennon': 'Chief of Staff', 'Charles Parnell': 'CIA Director', 'Erika Fong': 'CIA Analyst', 'Michael Collins': 'CIA Analyst', 'Geng Han': 'Convertible Passenger'}" tt1399103,"{'Shia LaBeouf': 'Sam Witwicky', 'Rosie Huntington-Whiteley': 'Carly', 'Josh Duhamel': 'Lennox', 'John Turturro': 'Simmons', 'Tyrese Gibson': 'Epps', 'Patrick Dempsey': 'Dylan', 'Frances McDormand': 'Mearing', 'John Malkovich': 'Bruce Brazos', 'Kevin Dunn': 'Ron Witwicky', 'Julie White': 'Judy Witwicky', 'Alan Tudyk': 'Dutch', 'Ken Jeong': 'Jerry Wang', 'Glenn Morshower': 'General Morshower', 'Lester Speight': 'Eddie', 'Buzz Aldrin': 'Buzz Aldrin'}" tt1055369,"{'Shia LaBeouf': 'Sam Witwicky', 'Megan Fox': 'Mikaela Banes', 'Josh Duhamel': 'Major Lennox', 'Tyrese Gibson': 'USAF Chief Master Sergeant Epps', 'John Turturro': 'Simmons', 'Ramon Rodriguez': 'Leo Spitz', 'Kevin Dunn': 'Ron Witwicky', 'Julie White': 'Judy Witwicky', 'Isabel Lucas': 'Alice', 'John Benjamin Hickey': 'Galloway', 'Matthew Marsden': 'Special Air Service Forces', 'Andrew Howard': 'Special Air Service Forces', 'Michael Papajohn': 'Cal', 'Glenn Morshower': 'General Morshower', 'John Eric Bentley': 'Aide'}" tt1792794,"{'Cody Deal': 'Thor', 'Richard Grieco': 'Loki', 'Patricia Velasquez': 'Jarnsaxa', 'Kevin Nash': 'Odin', 'Jess Allen': 'Baldir', 'Nicole Arianna Fox': 'Red Norn (as Nicole Fox)', 'Leslea Fisher': 'Blonde Norn', 'Lauren Halperin': 'Norn', 'Charlie Glackin': 'Hundig', 'Chris Ivan Cevic': 'Himdall', 'Rodney Wilson': 'Hrothgar', 'Gerald Webb': 'Street Punk (as William Webb)', 'Kristen Kerr': 'Herja', 'Jason Medbury': 'Guardian of the Tree of Life', 'Hans Linke': 'Background Actor'}" tt0113243,"{'Jonny Lee Miller': 'Dade', 'Angelina Jolie': 'Kate', 'Jesse Bradford': 'Joey', 'Matthew Lillard': 'Cereal', 'Laurence Mason': 'Nikon', 'Renoly Santiago': 'Phreak', 'Fisher Stevens': 'The Plague', 'Alberta Watson': 'Lauren Murphy', 'Darren Lee': 'Razor', 'Peter Y. Kim': 'Blade', 'Ethan Browne': 'Curtis', 'Lorraine Bracco': 'Margo', 'Wendell Pierce': 'Agent Dick Gill', 'Michael Gaston': 'Agent Bob', 'Marc Anthony': 'Agent Ray'}" tt2246549,"{'Bill Oberst Jr.': 'Abraham Lincoln', 'Kent Igleheart': 'Thomas Lincoln', 'Rhianna Van Helton': 'Nancy Lincoln', 'Brennen Harper': 'Young Abe Lincoln', 'Josh Sinyard': 'Aide (as Joshua Sinyard)', 'Debra Crittenden': 'Mary Todd Lincoln', 'Bernie Ask': 'Edwin Stanton', 'Chris Hlozek': 'Major John McGill', 'Richard Schenkman': 'Dr. Malinoff', 'Jim E. Chandler': 'Eckert', 'Corey Seawell': 'Union Soldier', 'Jason Vail': 'John Wilkinson', 'Jason Hughley': 'Wilson Brown', 'Eric Lee Galloway': 'Chris Pike (as Eric Galloway)', 'Ronald Ogden': 'Robert Chamberlin (as Ron Ogden)'}" tt0337579,"{'Ice Cube': 'Calvin', 'Cedric the Entertainer': 'Eddie', 'Sean Patrick Thomas': 'Jimmy', 'Eve': 'Terri', 'Troy Garity': 'Isaac', 'Michael Ealy': 'Ricky', 'Leonard Earl Howze': 'Dinka', 'Harry Lennix': 'Quentin Leroux', 'Robert Wisdom': 'Alderman Brown', 'Jazsmin Lewis': 'Jennifer', 'Carl Wright': 'Checkers Fred', 'DeRay Davis': 'Hustle Guy', 'Kenan Thompson': 'Kenard', 'Queen Latifah': 'Gina', 'Garcelle Beauvais': 'Loretta (as Garcelle Beauvais-Nilon)'}" tt0388500,"{'Queen Latifah': 'Gina Norris', 'Alicia Silverstone': 'Lynn', 'Andie MacDowell': 'Terri', 'Alfre Woodard': 'Ms. Josephine', 'Mena Suvari': 'Joanne', 'Della Reese': 'Mrs. Towner', 'Golden Brooks': 'Chanel', 'Laura Hayes': 'Paulette (as Miss Laura Hayes)', 'Paige Hurd': 'Vanessa', 'Lil J.J.': ""Willie (as L'il JJ)"", 'LisaRaye McCoy': 'Rochelle (as Lisaraye McCoy)', 'Keshia Knight Pulliam': 'Darnelle', 'Sherri Shepherd': 'Ida', 'Kimora Lee Simmons': 'Denise', 'Sheryl Underwood': 'Catfish Rita'}" tt0097576,"{'Harrison Ford': 'Indiana Jones', 'Sean Connery': 'Professor Henry Jones', 'Denholm Elliott': 'Marcus Brody', 'Alison Doody': 'Elsa', 'John Rhys-Davies': 'Sallah', 'Julian Glover': 'Walter Donovan', 'River Phoenix': 'Young Indy', 'Michael Byrne': 'Vogel', 'Kevork Malikyan': 'Kazim', 'Robert Eddison': 'Grail Knight', 'Richard Young': 'Fedora', 'Alexei Sayle': 'Sultan', 'Alex Hyde-White': 'Young Henry', 'Paul Maxwell': 'Panama Hat', 'Isla Blair': 'Mrs. Donovan (as Mrs. Glover)'}" tt0367882,"{'Harrison Ford': 'Indiana Jones', 'Cate Blanchett': 'Irina Spalko', 'Karen Allen': 'Marion Ravenwood', 'Shia LaBeouf': 'Mutt Williams', 'Ray Winstone': ""'Mac' George Michale"", 'John Hurt': 'Professor Oxley', 'Jim Broadbent': 'Dean Charles Stanforth', 'Igor Jijikine': 'Dovchenko', 'Dimitri Diatchenko': 'Russian Suit', 'Ilia Volok': 'Russian Suit', 'Emmanuel Todorov': 'Russian Soldier', 'Pasha D. Lychnikoff': 'Russian Soldier', 'Andrew Divoff': 'Russian Soldier', 'Venya Manzyuk': 'Russian Soldier (as Veniamin Manzyuk)', 'Alan Dale': 'General Ross'}" tt0071360,"{'Gene Hackman': 'Harry Caul', 'John Cazale': 'Stan', 'Allen Garfield': 'Bernie Moran', 'Frederic Forrest': 'Mark', 'Cindy Williams': 'Ann', 'Michael Higgins': 'Paul', 'Elizabeth MacRae': 'Meredith (as Elizabeth Mac Rae)', 'Teri Garr': 'Amy', 'Harrison Ford': 'Martin Stett', 'Mark Wheeler': 'Receptionist', 'Robert Shields': 'The Mime', 'Phoebe Alexander': 'Lurleen'}" tt0077745,"{'Donald Sutherland': 'Matthew Bennell', 'Brooke Adams': 'Elizabeth Driscoll', 'Jeff Goldblum': 'Jack Bellicec', 'Veronica Cartwright': 'Nancy Bellicec', 'Leonard Nimoy': 'Dr. David Kibner', 'Art Hindle': 'Dr. Geoffrey Howell', 'Lelia Goldoni': 'Katherine Hendley', 'Kevin McCarthy': 'Running Man', 'Don Siegel': 'Taxi Driver', 'Tom Luddy': 'Ted Hendley', 'Stan Ritchie': 'Stan', 'David Fisher': 'Mr. Gianni', 'Tom Dahlgren': 'Detective', 'Garry Goodrow': 'Dr. Boccardo (as Gary Goodrow)', 'Jerry Walter': 'Restaurant Owner'}" tt1137470,"{'Jessica Biel': 'Alice Eckle', 'Raymond L. Brown Jr.': 'Burger Hop Manager', 'Jenny Gulley': 'Brenda', ""Beverly D'Angelo"": 'Helen Eckle', 'Steve Boles': 'Bob Eckle', 'James Marsden': 'Scott', 'Bill Hader': 'Doctor Turnstall', 'Darlene Hunt': 'Doctor Adams', 'Cheryl McConnell': 'Woman Administrator', 'Kirstie Alley': 'Aunt Rita', 'Kurt Fuller': 'Reverend Norm', 'Tracy Morgan': 'Keyshawn', 'Jake Gyllenhaal': 'Howard Birdwell', 'Malinda Williams': 'Rakeesha', 'Kendrick Cross': 'Security Guard'}" tt2023587,"{'Jessica Chastain': 'Annabel', 'Nikolaj Coster-Waldau': 'Lucas / Jeffrey', 'Megan Charpentier': 'Victoria', 'Isabelle Nélisse': 'Lilly (as Isabelle Nelisse)', 'Daniel Kash': 'Dr. Dreyfuss', 'Javier Botet': 'Mama', 'Jane Moffat': 'Jean Podolski / Mama (Voice)', 'Morgan McGarry': 'Young Victoria', 'David Fox': 'Burnsie', 'Dominic Cuzzocrea': 'Ron', 'Christopher Marren': 'Cop (as Chris Marren)', 'Julia Chantrey': 'Nina', 'Ray Kahnert': 'Judge', 'Diane Gordon': 'Louise', 'Matthew Edison': 'Young Cop'}" tt1440161,"{'Kate Hudson': 'Marley Corbett', 'Gael García Bernal': 'Julian Goldstein', 'Kathy Bates': 'Beverly Corbett', 'Lucy Punch': 'Sarah Walker', 'Romany Malco': 'Peter Cooper', 'Rosemarie DeWitt': 'Renee Blair (as Rosemarie Dewitt)', 'Whoopi Goldberg': 'God', 'Treat Williams': 'Jack Corbett', 'Steven Weber': 'Rob Randolf', 'Peter Dinklage': 'Vinnie', 'Alan Dale': 'Dr. Sanders', 'Jason Davis': 'Thomas Blair', 'Bailey Bass': 'Cammie Blair', 'Charlotte Bass': 'Cammie Blair', 'Brett Rice': 'Ad Agency Client'}" tt1403981,"{'Caitlyn Rund': 'Alyssa Craig (11 yrs) (as Caitlyn Paige Rund)', 'Moisés Acevedo': 'Mugger (as Moises Acevedo)', 'Noel Rodriguez': 'Mugger', 'Kevin P. McCarthy': 'Police Chief (as Kevin McCarthy)', 'Chris Cooper': 'Sgt. Neil Craig', 'Robert Pattinson': 'Tyler Hawkins', 'Athena Currey': 'Toothbrush Girl', 'Lena Olin': 'Diane Hirsch', 'Gregory Jbara': 'Les Hirsch', 'Ruby Jerins': 'Caroline Hawkins', 'Pierce Brosnan': 'Charles Hawkins', 'Angela Pietropinto': 'Diner Waitress', 'Tate Ellington': 'Aidan Hall', 'David Deblinger': 'NYU Professor', 'Emilie de Ravin': 'Ally Craig'}" tt1699755,"{'Craig Robinson': 'Wade Walker', 'Kerry Washington': 'Grace Peeples', 'David Alan Grier': 'Virgil Peeples', 'S. Epatha Merkerson': 'Daphne Peeples', 'Tyler James Williams': 'Simon Peeples', 'Melvin Van Peebles': 'Grandpa Peeples', 'Diahann Carroll': 'Nana Peeples', 'Kali Hawk': 'Gloria Peeples', 'Kimrie Lewis': 'Meg (as Kimrie Lewis-Davis)', 'Malcolm Barrett': 'Chris Walker', 'Ana Gasteyer': 'Mayor Hodge', 'Briana Marin': 'Sexy Mother', 'Angelee Areu': '5-Year-Old-Girl', 'Tuffy Questell': 'Taxi Driver', 'Jerome Preston Bates': 'Skip'}" tt2024432,"{'Jason Bateman': 'Sandy Patterson', 'Melissa McCarthy': 'Diana', 'Jon Favreau': 'Harold Cornish', 'Amanda Peet': 'Trish Patterson', 'T.I.': ""Julian (as Tip 'T.I.' Harris)"", 'Genesis Rodriguez': 'Marisol', 'Morris Chestnut': 'Detective Reilly', 'John Cho': 'Daniel Casey', 'Robert Patrick': 'Skiptracer', 'Eric Stonestreet': 'Big Chuck', 'Jonathan Banks': 'Paul', 'Ryan Gaul': 'Bartender', 'Steve Mallory': 'Party Guy', 'Tyler Nilson': 'Party Guy', 'Steve Little': ""Party Guy's Buddy""}" tt1649419,"{'Naomi Watts': 'Maria', 'Ewan McGregor': 'Henry', 'Tom Holland': 'Lucas', 'Samuel Joslin': 'Thomas', 'Oaklee Pendergast': 'Simon', 'Marta Etura': 'Simone', 'Sönke Möhring': 'Karl', 'Geraldine Chaplin': 'Old Woman', 'Ploy Jindachote': 'Caregiver', 'Jomjaoi Sae-Limh': 'Red Cross Nurse', 'Johan Sundberg': 'Daniel', 'Jan Roland Sundberg': ""Daniel's Father"", 'La-Orng Thongruang': 'Old Thai Man', 'Tor Klathaley': 'Young Thai Man', 'Douglas Johansson': 'Mr. Benstrom'}" tt3062074,"{'Ian Ziering': 'Fin', 'Tara Reid': 'April', 'Vivica A. Fox': 'Skye', 'Mark McGrath': 'Martin', 'Kari Wuhrer': 'Ellen', 'Courtney Baxter': 'Mora', 'Dante Palminteri': 'Vaughn', 'Judd Hirsch': 'Ben', 'Stephanie Abrams': 'Stephanie Abrams', 'Kurt Angle': 'Fire Chief', 'Benjy Bronk': 'Homeless Guy', 'Downtown Julie Brown': 'Nurse Fletcher', 'Juan Castano': 'Firefighter', 'Don Castro': ""Transit Cop (as Dan Castro 'Makowski')"", 'Lyman Chen': 'Concierge'}" tt2724064,"{'Ian Ziering': 'Fin Shepard', 'Tara Reid': 'April Wexler', 'John Heard': 'George', 'Cassandra Scerbo': 'Nova Clarke (as Cassie Scerbo)', 'Jason Simmons': 'Baz Hogan (as Jaason Simmons)', 'Alex Arleo': 'Bobby', 'Neil H. Berkow': 'Carl Hubert', 'Heather Jocelyn Blair': 'Candice', 'Sumiko Braun': 'Deanna', 'Diane Chambers': 'Agnes', 'Julie McCullough': 'Joni Waves', 'Marcus Choi': 'Palmer', 'Israel Sáez de Miguel': 'Captain Carlos Santiago', 'Tiffany Cole': 'Derek', 'Trish Coren': 'Nurse Holden'}" tt1772925,"{'Jiro Ono': 'Himself', 'Yoshikazu Ono': 'Himself', 'Masuhiro Yamamoto': 'Himself', 'Daisuke Nakazama': 'Himself', 'Hachiro Mizutani': 'Himself', 'Harutaki Takahashi': 'Himself', 'Hiroki Fujita': 'Himself', 'Tsunenori Ida': 'Himself', 'Toichiro Iida': 'Himself', 'Akihiro Oyama': 'Himself', 'Shizuo Oyama': 'Himself', 'Hiroshi Okuda': 'Himself', 'Yukio Watanabe': 'Himself', 'Kazunori Kumakawa': 'Himself', 'Kazuo Fukaya': 'Himself'}" tt0094074,"{'Christopher Reeve': 'Superman / Clark Kent', 'Gene Hackman': 'Lex Luthor / Nuclear Man (voice)', 'Jackie Cooper': 'Perry White', 'Marc McClure': 'Jimmy Olsen', 'Jon Cryer': 'Lenny', 'Sam Wanamaker': 'David Warfield', 'Mark Pillow': 'Nuclear Man', 'Mariel Hemingway': 'Lacy Warfield', 'Margot Kidder': 'Lois Lane', 'Damian McLawhorn': 'Jeremy', 'William Hootkins': 'Harry Howler', 'Jim Broadbent': 'Jean Pierre Dubois', 'Stanley Lebor': 'General Romoff', 'Don Fellows': 'Levon Hornsby', 'Robert Beatty': 'U.S. President'}" tt0086393,"{'Christopher Reeve': 'Superman / Clark Kent', 'Richard Pryor': 'Gus Gorman', 'Jackie Cooper': 'Perry White', 'Marc McClure': 'Jimmy Olsen', ""Annette O'Toole"": 'Lana Lang', 'Annie Ross': 'Vera', 'Pamela Stephenson': 'Lorelei', 'Robert Vaughn': 'Ross Webster', 'Margot Kidder': 'Lois Lane', ""Gavan O'Herlihy"": 'Brad', 'Nancy Roberts': 'Unemployment Clerk', 'Graham Stark': 'Blind Man', 'Henry Woolf': 'Penguin Man', 'Gordon Rollings': 'Man In Cap', 'Peter Wear': 'Bank Robber'}" tt1263670,"{'Jeff Bridges': 'Bad Blake', 'James Keane': 'Manager', 'Anna Felix': 'Barmaid', 'Paul Herman': 'Jack Greene', 'Tom Bower': 'Bill Wilson', 'Ryan Bingham': 'Tony', 'Beth Grant': 'Jo Ann', 'Rick Dial': 'Wesley Barnes', 'Maggie Gyllenhaal': 'Jean Craddock', 'Debrianna Mansini': 'Ann', 'Jerry Handy': 'Cowboy (as Jerry Hardy)', 'Jack Nation': 'Buddy', 'Ryil Adamson': 'Ralphie', 'J. Michael Oliva': ""Bear (as J. Michael 'Yak' Oliva)"", 'David Manzanares': 'Nick'}" tt0162222,"{'Paul Sanchez': 'Ramon', 'Lari White': 'Bettina Peterson', 'Leonid Citer': 'Fyodor', 'David Allen Brooks': 'Dick Peterson', 'Yelena Popovic': 'Beautiful Russian Woman (as Yelena Papovic)', 'Valentina Ananina': 'Russian Babushka', 'Semion Sudarikov': 'Nicolai', 'Tom Hanks': 'Chuck Noland', 'Peter Von Berg': 'Yuri', 'Dmitri S. Boudrine': 'Lev', 'François Duhamel': 'French FedEx Loader', 'Michael Forest': 'Pilot Jack', 'Viveka Davis': 'Pilot Gwen', 'Nick Searcy': 'Stan', 'Jennifer Choe': 'Memphis State Student'}" tt0087469,"{'Harrison Ford': 'Indiana Jones', 'Kate Capshaw': 'Willie Scott', 'Ke Huy Quan': 'Short Round', 'Amrish Puri': 'Mola Ram', 'Roshan Seth': 'Chattar Lal (as Rushan Seth)', 'Philip Stone': 'Captain Blumburtt', 'Roy Chiao': 'Lao Che', 'David Yip': 'Wu Han', 'Ric Young': 'Kao Kan', 'Chua Kah Joo': 'Chen', 'Rex Ngui': ""Maitre d'"", 'Philip Tan': 'Chief Henchman (as Philip Tann)', 'Dan Aykroyd': 'Weber', 'Akio Mitamura': 'Chinese Pilot', 'Michael Yama': 'Chinese Co-Pilot'}" tt0082971,"{'Harrison Ford': 'Indy', 'Karen Allen': 'Marion', 'Paul Freeman': 'Belloq', 'Ronald Lacey': 'Toht', 'John Rhys-Davies': 'Sallah', 'Denholm Elliott': 'Brody', 'Alfred Molina': 'Satipo', 'Wolf Kahler': 'Dietrich', 'Anthony Higgins': 'Gobler', 'Vic Tablian': 'Barranca / Monkey Man', 'Don Fellows': 'Col. Musgrove', 'William Hootkins': 'Major Eaton', 'Bill Reimbold': 'Bureaucrat', 'Fred Sorenson': 'Jock', 'Patrick Durkin': 'Australian Climber'}" tt1305583,"{'Forest Whitaker': 'Brad Boyd', 'America Ferrera': 'Lucia Ramirez', 'Carlos Mencia': 'Miguel Ramirez', 'Regina King': 'Angela', 'Lance Gross': 'Marcus Boyd', 'Diana Maria Riva': 'Sonia Ramirez', 'Lupe Ontiveros': 'Momma Cecilia', 'Anjelah Johnson-Reyes': 'Isabella Ramirez (as Anjelah Johnson)', 'Charlie Murphy': 'T.J.', 'Shannyn Sossamon': 'Ashley McPhee', 'Tonita Castro': 'Aunt Rosita', 'Anna Maria Horsford': 'Diane Boyd', 'Warren Sapp': 'Wendell Boyd', 'Shondrella Avery': 'Keisha Boyd', 'Sterling Ardrey': 'Ardom Boyd (as Sterling D. Ardrey)'}" tt0814255,"{'Logan Lerman': 'Percy Jackson', 'Brandon T. Jackson': 'Grover', 'Alexandra Daddario': 'Annabeth', 'Jake Abel': 'Luke', 'Sean Bean': 'Zeus', 'Pierce Brosnan': 'Mr. Brunner / Chiron', 'Steve Coogan': 'Hades', 'Rosario Dawson': 'Persephone', 'Melina Kanakaredes': 'Athena', 'Catherine Keener': 'Sally Jackson', 'Kevin McKidd': 'Poseidon', 'Joe Pantoliano': 'Gabe Ugliano', 'Uma Thurman': 'Medusa', 'Julian Richings': 'Ferryman', 'Bonita Friedericy': 'Hysterical Woman'}" tt0949731,"{'Mark Wahlberg': 'Elliot Moore', 'Zooey Deschanel': 'Alma Moore', 'John Leguizamo': 'Julian', 'Ashlyn Sanchez': 'Jess', 'Betty Buckley': 'Mrs. Jones', 'Spencer Breslin': 'Josh', 'Robert Bailey Jr.': 'Jared', 'Frank Collison': 'Nursery Owner', 'Jeremy Strong': 'Private Auster', 'Alan Ruck': 'Principal', 'Victoria Clark': ""Nursery Owner's Wife"", 'M. Night Shyamalan': 'Joey (voice)', 'Alison Folland': 'Woman Reading on Bench with Hair Pin', 'Kristen Connolly': 'Woman Reading on Bench', 'Cornell Womack': 'Construction Foreman'}" tt0416212,"{'Dakota Fanning': 'Lily Owens', 'Queen Latifah': 'August Boatwright', 'Jennifer Hudson': 'Rosaleen Daise', 'Alicia Keys': 'June Boatwright', 'Sophie Okonedo': 'May Boatwright', 'Paul Bettany': 'T. Ray Owens', 'Hilarie Burton': 'Deborah Owens', 'Tristan Mack Wilds': 'Zach Taylor (as Tristan Wilds)', 'Nate Parker': 'Neil', 'Shondrella Avery': 'Greta', 'Renee Ford Clark': 'Doll (as Renée Clark)', 'Sharon Conley': 'Violet (as Sharon Morris)', 'Nicky Buggs': 'Cressie', 'Jasmine Burke': 'Sugar Girl', 'Emma Sage Bowman': 'Young Lily'}" tt0311429,"{'Sean Connery': 'Allan Quatermain', 'Naseeruddin Shah': 'Captain Nemo', 'Peta Wilson': 'Mina Harker', 'Tony Curran': 'Rodney Skinner', 'Stuart Townsend': 'Dorian Gray', 'Shane West': 'Tom Sawyer', 'Jason Flemyng': 'Dr. Henry Jekyll / Edward Hyde', 'Richard Roxburgh': 'M', 'Max Ryan': 'Dante', 'Tom Goodman-Hill': 'Sanderson Reed', 'David Hemmings': 'Nigel', ""Terry O'Neill"": 'Ishmael', 'Rudolf Pellar': 'Draper', 'Robert Willox': 'Constable Dunning', 'Robert Orr': 'Running Officer'}" tt0056197,"{'Eddie Albert': 'Col. Thompson', 'Paul Anka': 'U.S. Army Ranger', 'Arletty': 'Madame Barrault', 'Jean-Louis Barrault': 'Father Louis Roulland', 'Richard Beymer': 'Pvt. Dutch Schultz', 'Hans Christian Blech': 'Maj. Werner Pluskat', 'Bourvil': 'Mayor of Colleville', 'Richard Burton': 'Flying Officer David Campbell', 'Wolfgang Büttner': 'Maj. Gen. Dr. Hans Speidel', 'Red Buttons': 'Pvt. John Steele', 'Pauline Carton': 'Maid', 'Sean Connery': 'Pvt. Flanagan', 'Ray Danton': 'Capt. Frank', 'Irina Demick': 'Janine Boitard (as Irina Demich)', 'Fred Dur': 'U.S. Army Ranger Major'}" tt2553908,"{'Christian Vazquez': 'Juan Osorno (as Christian Vázquez)', 'Kuno Becker': 'General Ignacio Zaragoza (as Kuno Bécker)', 'Liz Gallardo': 'Citlali', 'William Miller': 'General Lorencéz', 'Javier Oliván': 'Artemio Cruz', 'J.C. Montes-Roldan': 'Teniente Fauvet (as Jose Carlos Montes Roldán)', 'Álvaro García': 'Dubois de Saligny (as Álvaro García Trujillo)', 'Mauricio Isaac': 'Capitán León', 'Ginés García Millán': 'General Prim', 'Angélica Aragón': 'Doña Soledad', 'Mario Zaragoza': 'Juan Nepomuceno Almonte', 'Daniel Martínez': 'General Leonardo Márquez', 'Javier Díaz Dueñas': 'Doctor Ruiz', 'Jorge Luis Moreno': 'Sargento Vaché', 'Pascacio López': 'General Porfirio Diaz'}" tt0848537,"{'Blake Anderson': 'Dagda (voice)', 'Aziz Ansari': 'Mub (voice)', 'Allison Bills': 'Dandelion Jinn (voice)', 'Jim Conroy': 'Race Announcer / Additional Voices (voice)', 'Todd Cummings': 'Fruit Fly (Old) (voice)', 'John DiMaggio': 'Pinecone Jinn (voice)', 'Troy Evans': 'Thistle Jinn (voice)', 'Colin Farrell': 'Ronin (voice)', 'Jason Fricchione': ""Bufo's Goon (voice)"", 'Judah Friedlander': 'Taxi Driver (voice)', 'Helen Hong': 'Thistle Lady (voice)', 'Josh Hutcherson': 'Nod (voice)', 'Kelly Keaton': 'Berry Lady (voice)', 'Emma Kenney': 'Marigold Girl (voice)', 'Kyle Kinane': 'Biker Dude (voice)'}" tt1389137,"{'Matt Damon': 'Benjamin Mee', 'Scarlett Johansson': 'Kelly Foster', 'Thomas Haden Church': 'Duncan Mee', 'Colin Ford': 'Dylan Mee', 'Maggie Elizabeth Jones': 'Rosie Mee', 'Angus Macfadyen': 'Peter MacCready (as Angus MacFadyen)', 'Elle Fanning': 'Lily Miska', 'Patrick Fugit': 'Robin Jones', 'John Michael Higgins': 'Walter Ferris', 'Carla Gallo': 'Rhonda Blair', 'J.B. Smoove': 'Mr. Stevens (as JB Smoove)', 'Stephanie Szostak': 'Katherine Mee', 'Michael Panes': 'Principal', 'Kym Whitley': 'Cashier', 'Todd Stanton': 'San Diego Vet'}" tt1033575,"{'George Clooney': 'Matt King', 'Shailene Woodley': 'Alexandra King', 'Amara Miller': 'Scottie King', 'Nick Krause': 'Sid', 'Patricia Hastie': 'Elizabeth King', 'Grace A. Cruz': ""Scottie's Teacher"", 'Kim Gennaula': 'School Counselor', 'Karen Kuioka Hironaga': 'Barb Higgins', 'Carmen Kaichi': 'Lani Higgins', 'Kaui Hart Hemmings': ""Matt's Secretary Noe"", 'Beau Bridges': 'Cousin Hugh', 'Matt Corboy': 'Cousin Ralph', 'Matt Esecson': 'Cousin Hal', 'Michael Ontkean': 'Cousin Milo', 'Stanton Johnston': 'Cousin Stan'}" tt1279935,"{'Steve Carell': 'Phil Foster', 'Tina Fey': 'Claire Foster', 'Mark Wahlberg': 'Holbrooke', 'Taraji P. Henson': 'Detective Arroyo', 'Jimmi Simpson': 'Armstrong', 'Common': 'Collins', 'William Fichtner': 'DA Frank Crenshaw', 'Leighton Meester': 'Katy', 'J.B. Smoove': 'Cabbie', 'Kristen Wiig': 'Haley Sullivan', 'Mark Ruffalo': 'Brad Sullivan', 'James Franco': 'Taste', 'Mila Kunis': 'Whippit', 'Bill Burr': 'Detective Walsh', 'Jonathan Morgan Heit': 'Oliver Foster'}" tt1033643,"{'Cameron Diaz': 'Joy McNally', 'Ashton Kutcher': 'Jack Fuller', 'Rob Corddry': 'Hater', 'Lake Bell': 'Tipper', 'Jason Sudeikis': 'Mason', 'Treat Williams': 'Jack Fuller Sr.', ""Deirdre O'Connell"": 'Mrs. Fuller', 'Michelle Krusiec': 'Chong', 'Dennis Farina': 'Banger', 'Zach Galifianakis': 'Dave the Bear', 'Queen Latifah': 'Dr. Twitchell', 'Krysten Ritter': 'Kelly', 'Ricky Garcia': 'Fuller Closets Worker', 'Andrew Daly': 'Curtis', 'Benita Robledo': 'Maid'}" tt0429493,"{'Liam Neeson': 'Hannibal', 'Bradley Cooper': 'Face', 'Jessica Biel': 'Charissa Sosa', ""Quinton 'Rampage' Jackson"": 'B.A. Baracus', 'Sharlto Copley': 'Murdock', 'Patrick Wilson': 'Lynch', 'Gerald McRaney': 'General Morrison', 'Henry Czerny': 'Director McCready', 'Yul Vazquez': 'General Javier Tuco (as Yul Vázquez)', 'Brian Bloom': 'Pike', 'Maury Sterling': 'Gammons', 'Terry Chen': 'Ravech', 'Omari Hardwick': 'Chopshop Jay', 'David Hugghins': 'Oskar Shunt', 'Jacob Blair': 'Agent Blair'}" tt2345613,"{'Dylan Postl': ""The Leprechaun (as Dylan 'Hornswoggle' Postl)"", 'Stephanie Bennett': 'Sophie', 'Andrew Dunbar': 'Ben', 'Melissa Roxburgh': 'Jeni', 'Brendan Fletcher': 'David', 'Garry Chalk': 'Hamish', 'Teach Grant': 'Sean', 'Bruce Blain': 'Ian', 'Mary Black': 'Mary', 'Emilie Ullerup': 'Catherine', 'Adam Boys': 'Francois', 'Gary Peterman': 'Irish Farmer'}" tt1194173,"{'Jeremy Renner': 'Aaron Cross', 'Scott Glenn': 'Ezra Kramer', 'Stacy Keach': 'Adm Mark Turso USN Ret.', 'Edward Norton': 'Col Eric Byer, USAF, Ret.', 'Donna Murphy': 'Dita Mandy', 'Michael Chernus': 'Arthur Ingram', 'Corey Stoll': 'Zev Vendel', 'Alice Gainer': 'Lean Forward MSNBC Anchor', 'Prue Lewarne': 'CNN Reporter', 'Howard Leader': 'MSNBC Man Analyst', ""James Joseph O'Neil"": 'Sterisyn-Morlanta Gateman', 'Rachel Weisz': 'Dr. Marta Shearing', 'Tony Guida': 'Dr. Benezara', 'Sonnie Brown': 'Dr. Lieberburg', 'Neil Brooks Cunningham': 'Dr. Dan Hillcott'}" tt1408101,"{'Chris Pine': 'Kirk', 'Zachary Quinto': 'Spock', 'Zoe Saldana': 'Uhura (as Zoë Saldana)', 'Karl Urban': 'Bones', 'Simon Pegg': 'Scotty', 'John Cho': 'Sulu', 'Benedict Cumberbatch': 'Khan', 'Anton Yelchin': 'Chekov', 'Bruce Greenwood': 'Pike', 'Peter Weller': 'Marcus', 'Alice Eve': 'Carol Marcus', 'Noel Clarke': 'Thomas Harewood', 'Nazneen Contractor': 'Rima Harewood', 'Amanda Foreman': 'Ensign Brackett', 'Jay Scully': 'Lieutenant Chapin'}" tt0083550,"{'James Olson': 'Father Adamsky', 'Burt Young': 'Anthony Montelli', 'Rutanya Alda': 'Delores Montelli', 'Jack Magner': 'Sonny Montelli', 'Andrew Prine': 'Father Tom', 'Diane Franklin': 'Patricia Montelli', 'Moses Gunn': 'Turner', 'Ted Ross': 'Mr. Booth', 'Erika Katz': 'Jan Montelli', 'Brent Katz': 'Mark Montelli', 'Leonardo Cimino': 'Chancellor', 'Danny Aiello III': 'Removal Man 1', 'Gilbert Stafford': 'Removal Man 2', 'Petra Leah': 'Mrs. Greer (as Petra Lea)', 'Alan Dellay': 'Judge (as Allan Dellay)'}" tt2293640,"{'Sandra Bullock': 'Scarlet Overkill (voice)', 'Jon Hamm': 'Herb Overkill (voice)', 'Michael Keaton': 'Walter Nelson (voice)', 'Allison Janney': 'Madge Nelson (voice)', 'Steve Coogan': 'Professor Flux (voice)', 'Jennifer Saunders': 'The Queen (voice)', 'Geoffrey Rush': 'Narrator (voice)', 'Steve Carell': 'Young Gru (voice)', 'Pierre Coffin': 'The Minions (voice)', 'Katy Mixon': 'Tina (voice)', 'Michael Beattie': 'VNC Announcer (voice)', 'Hiroyuki Sanada': 'Sumo Villain (voice)', 'Dave Rosenbaum': 'Fabrice (voice)', 'Alex Dowding': 'Royal Advisor (voice)', 'Paul Thornley': 'News Reporter (voice)'}" tt2911666,"{'Keanu Reeves': 'John Wick', 'Michael Nyqvist': 'Viggo Tarasov', 'Alfie Allen': 'Iosef Tarasov', 'Willem Dafoe': 'Marcus', 'Dean Winters': 'Avi', 'Adrianne Palicki': 'Ms. Perkins', 'Omer Barnea': 'Gregori', 'Toby Leonard Moore': 'Victor (as Toby Moore)', 'Daniel Bernhardt': 'Kirill', 'Bridget Moynahan': 'Helen', 'John Leguizamo': 'Aurelio', 'Ian McShane': 'Winston', 'Bridget Regan': 'Addy', 'Lance Reddick': 'Hotel Manager / Charon', 'Keith Jardine': 'Kuzma'}" tt2235779,"{'Jared Harris': 'Professor Joseph Coupland', 'Sam Claflin': 'Brian McNeil', 'Erin Richards': 'Krissi Dalton', 'Rory Fleck Byrne': 'Harry Abrams (as Rory Fleck-Byrne)', 'Olivia Cooke': 'Jane Harper', 'Laurie Calvert': 'Phillip', 'Aldo Maland': 'David Q', 'Max Pirkis': 'David Q (older)', 'Tracy Ray': ""David Q's Mother"", 'Richard Cunningham': 'Provost', 'Eileen Nicholas': 'Angry Neighbor', 'Rebecca Scott': 'Student #1', 'Aretha Ayeh': 'Student #2', 'Max Macintosh': 'Student #3 (as Max Mackintosh)', 'Harman Singh': 'Student #4'}" tt1807944,"{'James Franco': 'Darl Bundren', 'Tim Blake Nelson': 'Anse', 'Jim Parrack': 'Cash', ""Ahna O'Reilly"": 'Dewey Dell', 'Logan Marshall-Green': 'Jewel', 'Brady Permenter': 'Vardaman Bundren', 'Danny McBride': 'Vernon Tull', 'Beth Grant': 'Addie Bundren', 'Brian Lally': 'Dr. Peabody', 'Jennifer Kristen Howell': 'Cora Tull (as Jennifer Howell)', 'Natalie Minton': 'Kate Tull', 'Anna Kooris': 'Eula Tull', 'Steve Nabors': 'Reverend Whitfield', 'John Still': 'Samson', 'Susan McMillin': 'Mrs. Samson'}" tt1932718,"{'Mark Ruffalo': 'Adam', 'Tim Robbins': 'Mike', 'Gwyneth Paltrow': 'Phoebe', 'Josh Gad': 'Neil', 'Joely Richardson': 'Katie', 'Patrick Fugit': 'Danny', 'Pink': 'Dede (as Alecia Moore)', 'Carol Kane': 'Roberta', 'Emily Meade': 'Becky', 'Isiah Whitlock Jr.': 'Charles', 'Michaela Watkins': 'Margo', 'Poorna Jagannathan': 'Dr. Kazhani', 'Natalia Volkodaeva': 'Ana', 'Paul Urcioli': 'Owner', 'Kenneth Maharaj': 'Cabbie'}" tt1935179,"{'Matthew McConaughey': 'Mud', 'Reese Witherspoon': 'Juniper', 'Tye Sheridan': 'Ellis', 'Jacob Lofland': 'Neckbone', 'Sam Shepard': 'Tom', 'Ray McKinnon': 'Senior', 'Sarah Paulson': 'Mary Lee', 'Michael Shannon': 'Galen', 'Joe Don Baker': 'King', 'Paul Sparks': 'Carver', 'Bonnie Sturdivant': 'May Pearl', 'Stuart Greer': 'Miller', 'John Ward Jr.': ""Galen's Helper"", 'Kristy Barrington': 'Princess', 'Johnny Cheek': 'Kyle'}" tt2051879,"{'Daniel Wu': 'William Xu', 'Sharlto Copley': 'James Corrigan', 'Christian Camargo': 'Daniel Luxembourg', 'Karolina Wydra': 'Katya Petrovna', 'Michael Nyqvist': 'Andrei Blok', 'Anamaria Marinca': 'Rosa Dasque', 'Embeth Davidtz': 'Dr. Unger', 'Isiah Whitlock Jr.': 'Dr. Tarik Pamuk', 'Dan Fogler': 'Dr. Sokolov'}" tt1155592,"{'Philippe Petit': 'Himself', 'Jean François Heckel': 'Himself (as Jean-François Heckel)', 'Jean-Louis Blondeau': 'Himself', 'Annie Allix': 'Herself', 'David Forman': 'Himself', 'Alan Welner': 'Himself', 'Mark Lewis': 'Himself', 'Barry Greenhouse': 'Himself (as N. Barry Greenhouse)', 'Jim Moore': 'Himself', 'Guy F. Tozzoli': 'Himself (as Guy Tozzoli)', 'Paul McGill': 'Philippe - Drama Reconstructions', 'David Demato': 'Jean-Louis - Drama Reconstructions', 'Ardis Campbell': 'Annie - Drama Reconstructions', 'Aaron Haskell': 'Jean-François - Drama Reconstructions', 'Shawn Dempewolff-Barrett': 'David - Drama Reconstructions (as Shawn Dempewolff)'}" tt1398426,"{""O'Shea Jackson Jr."": 'Ice Cube', 'Corey Hawkins': 'Dr. Dre', 'Jason Mitchell': 'Eazy-E', 'Neil Brown Jr.': 'DJ Yella', 'Aldis Hodge': 'MC Ren', 'Marlon Yates Jr.': 'D.O.C.', 'R. Marcos Taylor': 'Suge Knight (as R. Marcus Taylor)', 'Carra Patterson': 'Tomica', 'Alexandra Shipp': 'Kim', 'Paul Giamatti': 'Jerry Heller', 'Elena Goode': 'Nicole', 'Keith Powers': 'Tyree', 'Joshua Brockington': 'Young Warren G', 'Sheldon A. Smith': 'Warren G', 'LaKeith Stanfield': 'Snoop (as Lakeith Lee Stanfield)'}" tt2975578,"{'Frank Grillo': 'Sergeant', 'Carmen Ejogo': 'Eva Sanchez', 'Zach Gilford': 'Shane', 'Kiele Sanchez': 'Liz', 'Zoë Soul': 'Cali', 'Justina Machado': 'Tanya', 'John Beasley': 'Papa Rico', 'Jack Conley': 'Big Daddy', 'Noel Gugliemi': 'Diego (as Noel G.)', 'Castulo Guerra': 'Barney', 'Michael Kenneth Williams': 'Carmelo (as Michael K. Williams)', 'Edwin Hodge': 'Bloody Stranger', 'LaKeith Stanfield': 'Young Ghoul Face (as Keith Stanfield)', 'Roberta Valderrama': 'Lorraine', 'Niko Nicotera': 'Roddy'}" tt2093977,"{'Ashleigh Craig': 'Young Girl', 'Cody Hamilton': 'Young Boy', 'Lucas Till': 'Scott', 'Crystal Reed': 'Bess', 'Isaiah Mustafa': 'Coach Evans', 'Dan Metcalfe': 'Referee', 'Derrick Kemp': 'Brock (as DJ Kemp)', 'Preston Davis': 'Corey (Teammate)', 'Mariah Buzolin': 'Karen', 'Sarah Bolger': 'Jules', 'Holt McCallany': 'Mike', 'Camille Guaty': 'Mrs. Brown', 'Caitriona Balfe': 'Andie', 'Leigh Whannell': 'David', 'Reid Ewing': 'Jeffrey'}" tt1196948,"{'Shia LaBeouf': 'Charlie Countryman', 'Evan Rachel Wood': 'Gabi Ibanescu', 'Mads Mikkelsen': 'Nigel', 'Til Schweiger': 'Darko', 'Rupert Grint': 'Karl', 'James Buckley': 'Luc', 'Ion Caramitru': 'Victor Ibanescu', ""Vincent D'Onofrio"": 'Bill', 'Melissa Leo': 'Kate', 'Andrei Finti': 'Bela', 'Aubrey Plaza': 'Ashley', 'Lachlan Nieboer': 'Ted', 'Vanessa Kirby': 'Felicity', 'Gabriel Spahiu': 'Taxi Driver', 'Bogdan Farkas': 'Hostel Clerk (as Bodgan Farcas)'}" tt0044953,"{'James Stewart': 'Howard Kemp', 'Janet Leigh': 'Lina Patch', 'Robert Ryan': 'Ben Vandergroat', 'Ralph Meeker': 'Roy Anderson', 'Millard Mitchell': 'Jesse Tate'}" tt0120654,"{'Norm MacDonald': 'Mitch', 'Jack Warden': 'Pops', 'Artie Lange': 'Sam', 'Traylor Howard': 'Kathy', 'Don Rickles': 'Hamilton', 'Christopher McDonald': 'Travis Cole', 'Chevy Chase': 'Dr. Farthing', 'Bradley Reid': 'Mitch (at 8 Years Old)', 'Matt Steinberg': 'Mitch (at 16 Years Old) (as Matthew Steinberg)', 'Joseph Sicilia': 'Sam (at 8 Years Old)', 'Austin Pool': 'Sam (at 16 Years Old) (as Austin John Pool)', 'Gerry Mendicino': 'Manetti', 'A. Frank Ruffo': 'Aldo', 'Hrant Alianak': 'Kirkpatrick', 'Michael Vollans': 'Derek (at 10 Years Old)'}" tt0040872,"{""Cathy O'Donnell"": 'Keechie', 'Farley Granger': 'Bowie', 'Howard Da Silva': 'Chickamaw', 'Jay C. Flippen': 'T-Dub', 'Helen Craig': 'Mattie', 'Will Wright': 'Mobley', 'William Phipps': 'Young Farmer', 'Ian Wolfe': 'Hawkins', 'Harry Harvey': 'Hagenheimer', 'Marie Bryant': 'Singer', 'Will Lee': 'Jeweler', 'James Nolan': 'Schreiber (as Jim Nolan)', 'Charles Meredith': 'Comm. Hubbell', 'Teddy Infuhr': 'Alvin', 'Byron Foulger': 'Lambert'}" tt1294970,"{'Robin Williams': 'Henry Altmann', 'Mila Kunis': 'Dr. Sharon Gill', 'Peter Dinklage': 'Aaron Altmann', 'Melissa Leo': 'Bette Altmann', 'Hamish Linklater': 'Tommy Altmann', 'Sutton Foster': 'Adela', 'James Earl Jones': 'Ruben', 'Richard Kind': 'Bix Field', 'Daniel Raymont': 'Ulugbek', 'Chris Gethard': 'Dr. Jordan Reed', 'Jerry Adler': 'Cooper', 'Isiah Whitlock Jr.': 'Yates', ""Da'Vine Joy Randolph"": 'Nurse Rowan', 'Jeremie Harris': 'Leon', 'Lee Garlington': 'Gummy'}" tt2458106,"{'Scott Adkins': 'Casey', 'Kane Kosugi': 'Nakabara', 'Mika Hijii': 'Namiko', 'Markus Waldow': 'Ninja Student', 'Shun Sugata': 'Goro', 'Vithaya Pansringarm': 'General Sung', 'Mukesh Bhatt': 'Mike', 'Tim Man': 'Myat', 'Jawed El Berni': 'Lucas', 'Saichia Wongwirot': 'Suu', 'Shogo Tanikawa': 'Assistant Instructor', 'Futoshi Hashimoto': 'Toji', 'Charlie Ruedpokanon': 'Thug #1', 'Kazu Patrick Tang': 'Thug #2', 'Yasuhiko Miyauchi': 'Shopkeeper'}" tt0082332,"{'Franco Nero': 'Cole', 'Susan George': 'Mary Ann', 'Shô Kosugi': 'Hasegawa', 'Christopher George': 'Venarius', 'Alex Courtney': 'Frank', 'Will Hare': 'Dollars', 'Zachi Noy': 'The Hook', 'Constantine Gregory': 'Mr. Parker (as Constantin de Goguel)', 'Dale Ishimoto': 'Komori', 'Joonee Gamboa': 'Mr. Mesuda', 'Leo Martinez': 'Pee Wee', 'Ken Metcalfe': 'Elliot', 'Subas Herrero': 'Alberto', 'Alan Amiel': 'Maroon Ninja', 'Douglas Ivan': 'Maroon Ninja (as Doug Ivan)'}" tt1809398,"{""Jack O'Connell"": 'Louis Zamperini', 'Domhnall Gleeson': 'Phil', 'Garrett Hedlund': 'Fitzgerald', 'Miyavi': 'Watanabe (as Takamasa Ishihara)', 'Finn Wittrock': 'Mac', 'Jai Courtney': 'Cup', 'Maddalena Ischiale': 'Louise', 'Vincenzo Amato': 'Anthony', 'John Magaro': 'Tinker', 'Luke Treadaway': 'Miller', 'Louis McIntosh': 'Harris', 'Ross Anderson': 'Blackie', 'C.J. Valleroy': 'Young Louie', ""John D'Leo"": 'Young Pete', 'Alex Russell': 'Older Pete'}" tt1470023,"{'Will Forte': 'MacGruber', 'Kristen Wiig': 'Vicki', 'Ryan Phillippe': 'Piper', 'Val Kilmer': 'Dieter Von Cunth', 'Powers Boothe': 'Colonel Faith', 'Maya Rudolph': 'Casey', 'Rhys Coiro': 'Yerik Novikov', 'Andy Mackenzie': 'Hoss', 'Jasper Cole': 'Zeke', 'Timothy V. Murphy': 'Constantine (as Tim Murphy)', 'Kevin Skousen': 'Senator Garver', 'Robert M. Reid': 'Priest', 'Jim Giesler': 'Janitor (as Jimmy G. Giesler)', 'Chris Jericho': 'Frank Korver', 'Mark Henry': 'Tut Beemer'}" tt1139797,"{'Kåre Hedebrant': 'Oskar', 'Lina Leandersson': 'Eli', 'Per Ragnar': 'Håkan', 'Henrik Dahl': 'Erik', 'Karin Bergquist': 'Yvonne', 'Peter Carlberg': 'Lacke', 'Ika Nord': 'Virginia', 'Mikael Rahm': 'Jocke', 'Karl-Robert Lindgren': 'Gösta', 'Anders T. Peedu': 'Morgan', 'Pale Olofsson': 'Larry', 'Cayetano Ruiz': 'Magister Avila', 'Patrik Rydmark': 'Conny', 'Johan Sömnes': 'Andreas', 'Mikael Erhardsson': 'Martin'}" tt0378109,"{'Paul Walker': 'Jared', 'Jessica Alba': 'Sam', 'Scott Caan': 'Bryce', 'Ashley Scott': 'Amanda', 'Josh Brolin': 'Bates', 'James Frain': 'Reyes', 'Tyson Beckford': 'Primo', 'Dwayne Adway': 'Roy', 'Javon Frazer': 'Danny', 'Chris Taloa': 'Quinn', 'Peter R.V. Bowleg Jr.': 'Jake', 'Clifford McIntosh': 'Kash', 'Adam Collins': 'Raolo', 'Gill Montie': 'Big Dave', 'Dan Ballard': 'Scuba Bob'}" tt2322441,"{'Dakota Johnson': 'Anastasia Steele', 'Jamie Dornan': 'Christian Grey', 'Jennifer Ehle': 'Carla', 'Eloise Mumford': 'Kate', 'Victor Rasuk': 'José', 'Luke Grimes': 'Elliot Grey', 'Marcia Gay Harden': 'Mrs. Grey', 'Rita Ora': 'Mia Grey', 'Max Martini': 'Taylor', 'Callum Keith Rennie': 'Ray', 'Andrew Airlie': 'Mr. Grey', 'Dylan Neal': 'Bob', 'Elliat Albrecht': 'Olivia', 'Rachel Skarsten': 'Andrea', 'Emily Fonda': 'Martina'}" tt0478304,"{'Brad Pitt': ""Mr. O'Brien"", 'Sean Penn': 'Jack', 'Jessica Chastain': ""Mrs. O'Brien"", 'Hunter McCracken': 'Young Jack', 'Laramie Eppler': 'R.L.', 'Tye Sheridan': 'Steve', 'Fiona Shaw': 'Grandmother', 'Jessica Fuselier': 'Guide', 'Nicolas Gonda': 'Mr. Reynolds', 'Will Wallace': 'Architect', 'Kelly Koonce': 'Father Haynes', 'Bryce Boudoin': 'Robert', 'Jimmy Donaldson': 'Jimmy', 'Kameron Vaughn': 'Cayler', 'Cole Cockburn': 'Harry Bates'}" tt0822832,"{'Owen Wilson': 'John', 'Jennifer Aniston': 'Jenny', 'Eric Dane': 'Sebastian', 'Kathleen Turner': 'Ms. Kornblut', 'Alan Arkin': 'Arnie Klein', 'Nathan Gamble': 'Patrick (Age 10)', 'Haley Bennett': 'Lisa', 'Ann Dowd': 'Dr. Platt', 'Clarke Peters': 'Editor', 'Finley Jacobsen': 'Conor (Age 8)', 'Lucy Merriam': 'Colleen (Age 5)', 'Bryce Robinson': 'Patrick (Age 7)', 'Ben Hyland': 'Conor (Age 5)', ""Sarah O'Kelly"": 'Neighbor Mom (Nurse)', 'Keith Hudson': 'Big Guy'}" tt1131734,"{'Megan Fox': 'Jennifer', 'Amanda Seyfried': 'Needy', 'Johnny Simmons': 'Chip Dove', 'Adam Brody': 'Nikolai', 'Sal Cortez': 'Chas', 'Ryan Levine': 'Mick', 'Juan Riedinger': 'Dirk', 'Colin Askey': 'Keyboardist', 'Chris Pratt': 'Officer Roman Duda', 'Juno Rinaldi': 'Officer Warzak (as Juno Ruddell)', 'Kyle Gallner': 'Colin Gray', 'Josh Emerson': 'Jonas Kozelle (as Joshua Emerson)', 'J.K. Simmons': 'Mr. Wroblewski', 'Amy Sedaris': 'Toni Lesnicki', 'Cynthia Stevenson': 'Mrs. Dove'}" tt0432283,"{'George Clooney': 'Mr. Fox (voice)', 'Meryl Streep': 'Mrs. Fox (voice)', 'Jason Schwartzman': 'Ash (voice)', 'Bill Murray': 'Badger (voice)', 'Wallace Wolodarsky': 'Kylie (voice) (as Wally Wolodarsky)', 'Eric Chase Anderson': 'Kristofferson (voice) (as Eric Anderson)', 'Michael Gambon': 'Franklin Bean (voice)', 'Willem Dafoe': 'Rat (voice)', 'Owen Wilson': 'Coach Skip (voice)', 'Jarvis Cocker': 'Petey (voice)', 'Wes Anderson': 'Weasel (voice)', 'Karen Duffy': 'Linda Otter (voice)', 'Robin Hurlstone': 'Walter Boggis (voice)', 'Hugo Guinness': 'Nathan Bunce (voice)', 'Helen McCrory': 'Mrs. Bean (voice)'}" tt1698648,"{'Kristen Wiig': 'Imogene Duncan', 'Annette Bening': 'Zelda Duncan', 'Matt Dillon': 'George Bousche', 'Darren Criss': 'Lee', 'Christopher Fitzgerald': 'Ralph Duncan', 'June Diane Raphael': 'Dara', 'Natasha Lyonne': 'Allyson', 'Bob Balaban': 'Maxwell P. Duncan', 'Sydney Lucas': 'Little Imogene', 'Ilana Levine': 'Teacher', 'Jimmy Palumbo': 'Doorman Joe', 'Michelle Morgan': 'Georgina', 'Mickey Sumner': 'Hannah', 'Elizabeth Inghram': 'Sloane', 'Brian Petsos': 'Peter Van Woodsen'}" tt0109370,"{'John Candy': 'Sheriff Bud Boomer', 'Alan Alda': 'President of the United States', 'Rhea Perlman': 'Honey', 'Kevin Pollak': 'Stu Smiley', 'Rip Torn': 'General Dick Panzer', ""Kevin J. O'Connor"": 'Roy Boy', 'Bill Nunn': 'Kabral', 'G.D. Spradlin': 'R.J. Hacker', 'Steven Wright': 'Niagara Mountie', 'Jim Belushi': 'Charles Jackal', 'Brad Sullivan': 'Gus', 'Stanley Anderson': 'Edwin S. Simon', 'Richard Council': 'Russian President', 'Wallace Shawn': 'Canadian Prime Minister', 'Michael Copeman': ""Panzer's Aide""}" tt1659337,"{'Logan Lerman': 'Charlie', 'Dylan McDermott': 'Father', 'Kate Walsh': 'Mother', 'Patrick de Ledebur': 'Senior Bully', 'Johnny Simmons': 'Brad', 'Brian Balzerini': 'Linebacker', 'Tom Kruszewski': 'Nose Tackle', 'Nina Dobrev': 'Candace', 'Nicholas Braun': 'Ponytail Derek', 'Julia Garner': 'Susan', 'Ezra Miller': 'Patrick', 'Tom Savini': 'Mr. Callahan', 'Emily Marie Callaway': 'Mean Freshman Girl (as Emily Callaway)', 'Paul Rudd': 'Mr. Anderson', 'Chelsea Zhang': 'Shakespeare Girl'}" tt1592873,"{'Jean-Luc Bilodeau': 'Jeremy', 'Douglas Booth': 'Kyle', 'Vivian Le Borgne': ""Lily's Mother"", 'Bridget Brown': 'Lily', 'Jim Carrane': 'Biology Teacher (as Jimmy Carrane)', 'Woody Carter': 'Male Student', 'Miley Cyrus': 'Lola', 'Felix Dayan': 'French Father', 'Sam Derence': ""Ashley's Father"", 'Nora Dunn': ""Emily's Mother"", 'Lina Esco': 'Janice', 'Trevor Fahnstrom': 'Ethan', 'George Finn': 'Chad', 'Rebecca Finnegan': 'Therapist', 'Alix Freihage': 'Young Wife'}" tt1735898,"{'Kristen Stewart': 'Snow White', 'Chris Hemsworth': 'The Huntsman', 'Charlize Theron': 'Ravenna', 'Sam Claflin': 'William', 'Sam Spruell': 'Finn', 'Ian McShane': 'Beith', 'Bob Hoskins': 'Muir', 'Ray Winstone': 'Gort', 'Nick Frost': 'Nion', 'Eddie Marsan': 'Duir', 'Toby Jones': 'Coll', 'Johnny Harris': 'Quert', 'Brian Gleeson': 'Gus', 'Vincent Regan': 'Duke Hammond', 'Liberty Ross': ""Snow White's Mother""}" tt1935896,"{'Eva Llorach': 'Woman (segment ""A is for Apocalypse"")', 'Miquel Insua': 'Man (segment ""A is for Apocalypse"")', 'Alejandra Urdiaín': 'Dulce (segment ""B is for Bigfoot"") (as Alejandra Urdiain)', 'Harold Torres': 'Erik (segment ""B is for Bigfoot"")', 'Greta Martinez': 'Xochitl (segment ""B is for Bigfoot"") (as Greta Martínez)', 'Pablo Guisa Koestinger': 'Yeti (segment ""B is for Bigfoot"")', 'Matías Oviedo': 'Bruno (segment ""C is for Cycle"")', 'Juanita Ringeling': 'Alicia (segment ""C is for Cycle"")', 'Steve Berens': 'The Fighter (segment ""D is for Dogfight"")', 'Riley the Dog': 'The Dog (segment ""D is for Dogfight"")', 'Chris Hampton': 'The Figther\'s Trainer (segment ""D is for Dogfight"")', 'George Marquez': 'The Dog\'s Trainer (segment ""D is for Dogfight"")', 'Erik Aude': 'Beat Down Dude (segment ""D is for Dogfight"")', 'Lisa Lynch': 'Card Girl (segment ""D is for Dogfight"")', 'Imogen Mcaulay': 'The Baby (segment ""D is for Dogfight"")'}" tt0113161,"{'John Travolta': 'Chili Palmer', 'Gene Hackman': 'Harry Zimm', 'Rene Russo': 'Karen Flores', 'Danny DeVito': 'Martin Weir', 'Dennis Farina': ""Ray 'Bones' Barboni"", 'Delroy Lindo': 'Bo Catlett', 'James Gandolfini': 'Bear', 'Jon Gries': 'Ronnie Wingate', 'Renee Props': 'Nicki', 'David Paymer': 'Leo Devoe', 'Martin Ferrero': 'Tommy Carlo', 'Miguel Sandoval': 'Mr. Escobar', 'Jacob Vargas': 'Yayo Portillo', 'Linda Hart': 'Fay Devoe', 'Bobby Slayton': 'Dick Allen'}" tt0408524,"{'Billy Bob Thornton': 'Morris Buttermaker', 'Greg Kinnear': 'Roy Bullock', 'Marcia Gay Harden': 'Liz Whitewood', 'Sammi Kane Kraft': 'Amanda Whurlitzer', 'Ridge Canipe': 'Toby Whitewood', 'Brandon Craggs': 'Mike Engelberg', 'Jeffrey Davies': 'Kelly Leak', 'Timmy Deters': 'Tanner Boyle', 'Carlos Estrada': 'Miguel Agilar', 'Emmanuel Estrada': 'Jose Agilar', 'Troy Gentile': 'Matthew Hooper', ""Kenneth 'K.C.' Harris"": 'Ahmad Abdul Rahim', 'Aman Johal': 'Prem Lahiri', 'Tyler Patrick Jones': 'Timmy Lupus', 'Jeffrey Tedmori': 'Garo Daragabrigadien'}" tt1496422,"{'Zac Efron': 'Jack Jansen', 'Matthew McConaughey': 'Ward Jansen', 'Nicole Kidman': 'Charlotte Bless', 'John Cusack': 'Hillary Van Wetter', 'David Oyelowo': 'Yardley Acheman', 'Scott Glenn': 'W.W. Jansen', 'Ned Bellamy': 'Tyree Van Wetter', 'Nealla Gordon': 'Ellen Guthrie', 'Macy Gray': 'Anita Chester', 'Edrick Browne': 'Hustler #1', 'Kevin Waterman': 'Victim', 'Danny Hanemann': 'Sheriff Thurmond Call', 'Peter Murnik': 'Death Row Guard', 'John P. Fertitta': 'Sam Ellison (as John Fertitta)', 'Jay Oliver': 'Mr. Guthrie / Wedding Guest (as James Oliver)'}" tt0120184,"{'Dustin Hoffman': 'Norman', 'Sharon Stone': 'Beth', 'Samuel L. Jackson': 'Harry', 'Peter Coyote': 'Barnes', 'Liev Schreiber': 'Ted', 'Queen Latifah': 'Fletcher', 'Marga Gómez': 'Jane Edmunds', 'Huey Lewis': 'Helicopter Pilot', 'Bernard Hocke': 'Seaman', 'James Pickens Jr.': 'O.S.S.A. Instructor', 'Michael Keys Hall': 'O.S.S.A. Official', 'Ralph Tabakin': 'O.S.S.A. Official'}" tt0078227,"{'Burt Reynolds': 'Billy Clyde Puckett', 'Kris Kristofferson': ""Marvin 'Shake' Tiller"", 'Jill Clayburgh': 'Barbara Jane Bookman', 'Robert Preston': 'Big Ed Bookman', 'Bert Convy': 'Friedrich Bismark', 'Roger E. Mosley': 'Puddin Patterson Sr.', 'Lotte Lenya': 'Clara Pelf', 'Richard Masur': 'Phillip Hooper', 'Carl Weathers': 'Dreamer Tatum', 'Brian Dennehy': 'T.J. Lambert', 'Mary Jo Catlett': 'Earlene Emery', 'Joe Kapp': 'Hose Manning', 'Ron Silver': 'Vlada Kostov', 'James MacKrell': 'Bud McNair (as Jim McKrell)', 'Peter Bromilow': ""Kostov's Interpreter""}" tt2450186,"{'Lawrence Michael Levine': 'Larry (segment ""Tape 49"")', 'Kelsy Abbott': 'Ayesha (segment ""Tape 49"")', 'L.C. Holt': 'Kyle (segment ""Tape 49"")', 'Simon Barrett': 'Steve (segment ""Tape 49"")', 'Mindy Robinson': 'Tabitha (segment ""Tape 49"")', 'Mónica Sánchez Navarro': 'Hotel Maid (segment ""Tape 49"")', 'Adam Wingard': 'Herman (segment ""Phase I Clinical Trials"")', 'Hannah Hughes': 'Clarissa (segment ""Phase I Clinical Trials"")', 'John T. Woods': 'Dr. Fleischer (segment ""Phase I Clinical Trials"")', 'Corrie Lynn Fitzpatrick': 'Young Girl (segment ""Phase I Clinical Trials"")', 'Brian Udovich': 'Bloody Man (segment ""Phase I Clinical Trials"")', 'John Karyus': 'Uncle (segment ""Phase I Clinical Trials"")', 'Casey Adams': 'Justin (segment ""Phase I Clinical Trials"")', 'Jay Saunders': 'Biker (segment ""A Ride in the Park"")', 'Bette Cassatt': 'Screaming Girl (segment ""A Ride in the Park"")'}" tt2105044,"{'Calvin Reeder': 'Gary (segment ""Tape 56"")', 'Lane Hughes': 'Zak (segment ""Tape 56"")', 'Kentucker Audley': 'Rox (segment ""Tape 56"")', 'Adam Wingard': 'Brad (segment ""Tape 56"")', 'Frank Stack': 'Old Man (segment ""Tape 56"")', 'Sarah Byrne': 'Abbey (segment ""Tape 56"")', 'Melissa Boatright': 'Tabitha (segment ""Tape 56"")', 'Simon Barrett': 'Steve (segment ""Tape 56"")', 'Andrew Droz Palermo': 'Fifth Thug (segment ""Tape 56"")', 'Hannah Fierman': 'Lily (segment ""Amateur Night"")', 'Mike Donlan': 'Shane (segment ""Amateur Night"")', 'Joe Sykes': 'Patrick (segment ""Amateur Night"")', 'Drew Sawyer': 'Clint (segment ""Amateur Night"")', 'Jasper Sams': 'Lisa (segment ""Amateur Night"") (as Jas Sams)', 'Nicholas Tecosky': 'Bartender (segment ""Amateur Night"")'}" tt0835418,"{'Paul Schneider': 'Tommy Macklin', 'Olivia Munn': 'Audrey Macklin', 'Michael Yurchak': 'Sommellier', 'Wood Harris': 'Darrell', 'Kevin Heffernan': 'Wade', 'Nat Faxon': 'Zig-Zag', 'Lindsey Kraft': 'Greta', 'Constance Zimmer': 'Mona', 'Aisha Tyler': 'Karen', 'Jude Ciccolella': 'Coach Stubbs', 'Soren Hellerup': 'Swedish Mechanic', 'Tom Wright': 'Butcher - Deli Worker', 'Tommy Dewey': 'Todd', 'Sharon Maughan': 'Dr. Roberts', 'Tony Sancho': 'Pedro'}" tt1155056,"{'Paul Rudd': 'Peter Klaven', 'Rashida Jones': 'Zooey Rice', 'Sarah Burns': 'Hailey', 'Greg Levine': ""Hailey's Date"", 'Jaime Pressly': 'Denise', 'Jon Favreau': 'Barry', 'Jane Curtin': 'Joyce Klaven', 'J.K. Simmons': 'Oswald Klaven', 'Andy Samberg': 'Robbie Klaven', 'Jean Villepique': 'Leanne (Davis Dunn Receptionist)', 'Rob Huebel': 'Tevin Downey', 'Kym Whitley': 'Female Co-Worker', 'Colleen Crabtree': 'Female Co-Worker', 'Caroline Farah': 'Female Co-Worker', 'Mather Zickel': 'Gil'}" tt3152624,"{'Colin Quinn': 'Gordon', 'Devin Fabry': 'Nine Year Old Amy', 'Carla Oudin': 'Five Year Old Kim', 'Amy Schumer': 'Amy', 'Josh Segarra': 'Staten Island Oli', 'Ryan Farrell': 'One-Night Stand Guy', 'Robert E. Torres': 'One-Night Stand Guy', 'Jim Florentine': 'One-Night Stand Guy', 'Robert Kelly': 'One-Night Stand Guy (as Bobby Kelly)', 'Dan Soder': 'Dumpster Guy', 'John Cena': 'Steven', 'Dave Attell': 'Noam', 'Vanessa Bayer': 'Nikki', 'Tilda Swinton': 'Dianna', 'Randall Park': 'Bryson'}" tt2872732,"{'Scarlett Johansson': 'Lucy', 'Morgan Freeman': 'Professor Norman', 'Min-sik Choi': 'Mr. Jang', 'Amr Waked': 'Pierre Del Rio', 'Julian Rhind-Tutt': 'The Limey', 'Pilou Asbæk': 'Richard', 'Analeigh Tipton': 'Caroline', 'Nicolas Phongpheth': 'Jii', 'Jan Oliver Schroeder': 'German Mule', 'Luca Angeletti': 'Italian Mule', 'Loïc Brabant': 'Professor', 'Pierre Grammont': 'Professor', 'Pierre Poirot': 'Professor', 'Bertrand Quoniam': 'Professor', 'Pascal Loison': 'Drug Addict'}" tt2004420,"{'Seth Rogen': 'Mac Radner', 'Rose Byrne': 'Kelly Radner', 'Elise Vargas': 'Stella', 'Zoey Vargas': 'Stella', 'Brian Huskey': 'Bill Wazowkowski', 'Ike Barinholtz': 'Jimmy', 'Carla Gallo': 'Paula', 'Zac Efron': 'Teddy Sanders', 'Dave Franco': 'Pete', 'Halston Sage': 'Brooke', 'Christopher Mintz-Plasse': 'Scoonie', 'Jerrod Carmichael': 'Garf', 'Craig Roberts': 'Assjuice', 'Ali Cobrin': 'Whitney', 'Kira Sternbach': 'Brittany'}" tt2096672,"{'Jim Carrey': 'Lloyd', 'Jeff Daniels': 'Harry', 'Rob Riggle': 'Travis / Captain Lippincott', 'Laurie Holden': 'Adele', 'Rachel Melvin': 'Penny', 'Steve Tom': 'Dr. Pinchelow', 'Don Lake': 'Dr. Meldmann', 'Patricia French': 'Ms. Sourpuss', 'Elizabeth Cooper': 'Mrs. Julie James', 'Kathleen Turner': 'Fraida', 'Bill Murray': 'Ice Pick', 'Tembi Locke': 'Dr. Walcott', 'Paul Blackthorne': 'Emergency Room Doctor', 'Brady Bluhm': 'Billy', 'Eddie Shin': 'Gordy'}" tt1596350,"{'Reese Witherspoon': 'Lauren', 'Chris Pine': 'FDR Foster', 'Tom Hardy': 'Tuck', 'Til Schweiger': 'Heinrich', 'Chelsea Handler': 'Trish', 'John Paul Ruttan': 'Joe', 'Abigail Spencer': 'Katie (as Abigail Leigh Spencer)', 'Angela Bassett': 'Collins', 'Rosemary Harris': 'Nana Foster', 'George Touliatos': 'Grandpa Foster', 'Clint Carleton': 'Jonas', 'Warren Christie': 'Steve', 'Leela Savasta': 'Kelly', 'Natassia Malthe': 'Xenia', 'Laura Vandervoort': 'Britta'}" tt1412386,"{'Judi Dench': 'Evelyn Greenslade', 'Tom Wilkinson': 'Graham Dashwood', 'Patrick Pearson': ""Graham's Colleague"", 'Hugh Dickson': 'Judge', 'James Rawlings': 'Estate Agent', 'Bill Nighy': 'Douglas Ainslie', 'Penelope Wilton': 'Jean Ainslie', 'Maggie Smith': 'Muriel Donnelly', 'Liza Tarbuck': 'Staff Nurse', 'Paul Bhattacharjee': 'Dr. Ghujarapartidar', 'Lucy Robinson': 'Judith', 'Ronald Pickup': 'Norman Cousins', 'Celia Imrie': 'Madge Hardcastle', 'Simon Wilson': ""Madge's Son-in-Law"", 'Sara Stewart': ""Madge's Daughter""}" tt0356680,"{'Claire Danes': 'Julie Morton', 'Diane Keaton': 'Sybil Stone', 'Rachel McAdams': 'Amy Stone', 'Dermot Mulroney': 'Everett Stone', 'Craig T. Nelson': 'Kelly Stone', 'Sarah Jessica Parker': 'Meredith Morton', 'Luke Wilson': 'Ben Stone', 'Tyrone Giordano': 'Thad Stone (as Ty Giordano)', 'Brian White': 'Patrick Thomas', 'Elizabeth Reaser': 'Susannah Stone Trousdale', 'Paul Schneider': 'Brad Stevenson', 'Savannah Stehlin': 'Elizabeth Trousdale', 'Jamie Kaler': 'John Trousdale', 'Robert Dioguardi': 'David Silver', 'Carol Locatell': 'Jeweler'}" tt2382009,"{'Charlotte Gainsbourg': 'Joe', 'Stellan Skarsgård': 'Seligman', 'Stacy Martin': 'Young Joe', 'Shia LaBeouf': 'Jerôme', 'Christian Slater': ""Joe's Father"", 'Jamie Bell': 'K', 'Uma Thurman': 'Mrs. H', 'Willem Dafoe': 'L', 'Mia Goth': 'P', 'Sophie Kennedy Clark': 'B', 'Michael Pas': 'Old Jerôme', 'Jean-Marc Barr': 'Debtor Gentleman', 'Udo Kier': 'The Waiter', 'Ananya Berg': 'Joe - 10 Years', 'Morgan Hartley': 'B - 12 Years'}" tt1091191,"{'Mark Wahlberg': 'Marcus Luttrell', 'Taylor Kitsch': 'Michael Murphy', 'Emile Hirsch': 'Danny Dietz', 'Ben Foster': ""Matt 'Axe' Axelson"", 'Yousuf Azami': 'Shah', 'Ali Suliman': 'Gulab', 'Eric Bana': 'Erik Kristensen', 'Alexander Ludwig': 'Shane Patton', 'Rich Ting': 'James Suh', 'Dan Bilzerian': 'Healy', 'Jerry Ferrara': 'Hasslert', 'Rick Vargas': 'Crew Chief', 'Scott Elrod': 'QRF SEAL', 'Gregory Rockwood': 'Chinook Pilot #1', 'Ryan Kay': 'Chinook Pilot #2'}" tt1937390,"{'Charlotte Gainsbourg': 'Joe', 'Stellan Skarsgård': 'Seligman', 'Stacy Martin': 'Young Joe', 'Shia LaBeouf': 'Jerôme', 'Christian Slater': ""Joe's Father"", 'Uma Thurman': 'Mrs. H', 'Sophie Kennedy Clark': 'B', 'Connie Nielsen': ""Joe's Mother"", 'Ronja Rissmann': 'Joe - 2 Years', 'Maja Arsovic': 'Joe - 7 years', 'Sofie Kasten': 'B - 7 Years', 'Ananya Berg': 'Joe - 10 Years', 'Anders Hove': 'Odin', 'James Northcote': 'Young Lad 1 on Train', 'Charlie Hawkins': 'Young Lad 2 on Train'}" tt2349460,"{'AJ Michalka': 'Gracie Trey', 'James Denton': 'Johnny Trey', 'Kevin Pollak': ""Frank 'Mossy' Mostin"", 'Shawnee Smith': 'Michelle Trey', 'Michael Welch': 'Quentin', 'Jamie Grace': 'Rachel', 'Emma Catherwood': 'Kendra Burroughs', 'Chris Ellis': 'Pastor Tim Bryant', 'Pia Toscano': 'Alyssa', 'Kelly Thiebaud': 'Renae Taylor', 'Rob Steinberg': 'Mark Reynolds', 'Patricia French': 'Sally Benson', 'Anthony Reynolds': ""Rick (Quentin's dad)"", 'Aimee Dunn': ""Donna (Quentin's mom)"", 'Juan Martinez': 'Noah'}" tt1821694,"{'Bruce Willis': 'Frank', 'John Malkovich': 'Marvin', 'Mary-Louise Parker': 'Sarah', 'Helen Mirren': 'Victoria', 'Anthony Hopkins': 'Bailey', 'Byung-Hun Lee': 'Han Cho Bai (as Byung Hun Lee)', 'Jong Kun Lee': ""Han's Father"", 'Catherine Zeta-Jones': 'Katja', 'Neal McDonough': 'Jack Horton', 'David Thewlis': 'The Frog', 'Garrick Hagon': 'Davis', 'Tim Pigott-Smith': 'Director Philips', 'Brian Cox': 'Ivan', 'Philip Arditti': 'Arman', 'Mitchell Mullen': 'Wade'}" tt1913166,"{'Paz de la Huerta': 'Abby Russell', 'Katrina Bowden': 'Danni Rogers', 'Judd Nelson': 'Dr. Robert Morris', 'Corbin Bleu': 'Steve', 'Boris Kodjoe': 'Detective Rogan', 'Melanie Scrofano': 'Rachel Adams', 'Niecy Nash': 'Regina', 'Martin Donovan': 'Larry Cook', 'Chris Hoffman': 'Married Man / Fred', 'Brittany Adams': 'Young Nurse', 'Kathleen Turner': 'Head Nurse', 'Jake Michaels': 'New Dad', 'Adam Herschman': 'Jared', 'Patrick Kwok-Choon': 'EMT #1', 'Tracy Michailidis': ""Abby's Mom""}" tt1704573,"{'Jack Black': 'Bernie Tiede', 'Shirley MacLaine': 'Marjorie Nugent', 'Matthew McConaughey': 'Danny Buck', 'Brady Coleman': 'Scrappy Holmes', 'Richard Robichaux': 'Lloyd Hornbuckle', 'Rick Dial': 'Don Leggett', 'Brandon Smith': 'Sheriff Huckabee', 'Larry Jack Dotson': 'Rev. Woodard', 'Merrilee McCommas': 'Molly', 'Mathew Greer': 'Carl (as Matthew Greer)', 'Marjorie Dome': 'Townsperson', 'Tim Cariker': 'Townsperson', 'Fern Luker': 'Townsperson', 'Jack Payne': 'Townsperson', 'Sonny Carl Davis': 'Townsperson (as Sonny Davis)'}" tt1297919,"{'Jason Statham': 'Brant', 'Paddy Considine': 'Nash', 'Aidan Gillen': 'Weiss', 'Zawe Ashton': 'Falls', 'David Morrissey': 'Dunlop', 'Ned Dennehy': 'Radnor', 'Mark Rylance': 'Roberts', 'Luke Evans': 'Stokes', 'Nicky Henson': 'Superintendent Brown', 'Steven Harwood-Brown': 'Metal (as Steven Harwood Brown)', 'Bill Champion': 'Dr. Leonard', 'Richard Riddell': 'McDonald', 'Ron Donachie': 'Cross', 'Elly Fairman': 'Sandra (as Ellie Fairman)', 'Alex Lanipekun': 'Precocious PC'}" tt0087985,"{'Patrick Swayze': 'Jed', 'C. Thomas Howell': 'Robert', 'Lea Thompson': 'Erica', 'Charlie Sheen': 'Matt', 'Darren Dalton': 'Daryl', 'Jennifer Grey': 'Toni', 'Brad Savage': 'Danny', 'Doug Toby': 'Aardvark', 'Ben Johnson': 'Mr. Mason', 'Harry Dean Stanton': 'Mr. Eckert', ""Ron O'Neal"": 'Bella', 'William Smith': 'Strelnikov', 'Vladek Sheybal': 'Bratchenko', 'Powers Boothe': 'Andy', 'Frank McRae': 'Mr. Teasdale'}" tt0101764,"{'Jean-Claude Van Damme': 'Alex / Chad Wagner', 'Geoffrey Lewis': 'Frank Avery', 'Alonna Shaw': 'Danielle Wilde', 'Corinna Everson': 'Kara', 'Philip Chan': 'Raymond Zhang', 'Alan Scarfe': 'Nigel Griffith', 'Bolo Yeung': 'Moon', 'Andy Armstrong': 'Paul Wagner', 'Wu Fong Lung': 'Chinese Nurse', 'Peter Malota': 'Body Guard With Spurs', 'Sarah-Jane Varley': 'Katherine Wagner', 'Kamel Krifa': 'Mah Jong Manager', 'Eugene Choy': 'Mr. Chen', 'Jack Gilardi Jr.': 'Karate Student', 'David Lea': 'Karate Student'}" tt0829150,"{'Luke Evans': 'Vlad', 'Sarah Gadon': 'Mirena', 'Dominic Cooper': 'Mehmed', 'Art Parkinson': 'Ingeras', 'Charles Dance': 'Master Vampire', 'Diarmaid Murtagh': 'Dumitru', 'Paul Kaye': 'Brother Lucian', 'William Houston': 'Cazan', 'Noah Huntley': 'Captain Petru', 'Ronan Vibert': 'Simion', 'Zach McGowan': 'Shkelgim', 'Ferdinand Kingsley': 'Hamza Bey', 'Joseph Long': 'General Omer', 'Thor Kristjansson': 'Bright Eyes', 'Jakub Gierszal': 'Acemi'}" tt1065073,"{'Ellar Coltrane': 'Mason', 'Patricia Arquette': 'Olivia', 'Elijah Smith': 'Tommy', 'Lorelei Linklater': 'Samantha', 'Steven Chester Prince': 'Ted (as Steven Prince)', 'Bonnie Cross': 'Teacher', 'Sydney Orta': 'Elementary School Girl (as Sidney Orta)', 'Libby Villari': 'Grandma', 'Ethan Hawke': 'Dad', 'Marco Perella': 'Professor Bill Welbrock', 'Jamie Howard': 'Mindy', 'Andrew Villarreal': 'Randy', 'Shane Graham': 'Neighborhood Friend #1', 'Tess Allen': 'Neighborhood Friend #2', 'Ryan Power': 'Paul'}" tt2481480,"{'Michael Pitt': 'Tommy Uva', 'Nina Arianda': 'Rosie', 'Andy Garcia': 'Big Al', 'Ray Romano': 'Jerry Cardozo', 'Griffin Dunne': 'Dave Lovell', 'Michael Rispoli': 'Sal', 'Yul Vazquez': 'Vinny Gorgeous', 'Frank Whaley': 'Agent Frank Hurd', 'Samira Wiley': 'Agent Annie Bell', 'Brian Tarantina': 'Ronnie', 'Aida Turturro': 'Anna', 'Matthew Sean Blumm': 'Marco (as Matthew Blumm)', 'Luke Fava': 'Robbie', 'Burt Young': 'Joey D', 'Cathy Moriarty': 'Constance Uva (as Cathy Moriarty-Gentile)'}" tt2274570,"{'Ken Marino': 'Duncan', 'Gillian Jacobs': 'Sarah', 'Mary Kay Place': 'Beatrice', 'Claudia Choi': 'Jillian', 'Toby Huss': 'Dr. Yeager', 'Patrick Warburton': 'Phil', 'Erik Charles Nielsen': 'Allistair', 'Peter Stormare': 'Highsmith', 'Kumail Nanjiani': 'Bobbi', 'Steve Zissis': 'Dr. Yip / Milo (voice)', 'Jake Broder': 'Bradley', 'Jonathan Daniel Brown': 'Joey', 'Nick Jaine': 'Abhilash', 'Dee Baldus': 'Diane', 'Diana Toshiko': 'Brittany'}" tt2265398,"{'Olivia Wilde': 'Kate', 'Jake Johnson': 'Luke', 'Anna Kendrick': 'Jill', 'Ron Livingston': 'Chris', 'Ti West': 'Dave', 'Jason Sudeikis': 'Gene Dentler', 'Mike Brune': 'Mike', 'Frank V. Ross': 'Frank', 'Michael Gaertner': 'Man w / Fiance', 'Kristin Davis': 'Fiance', 'Jim Cibak': 'Jim', 'Alicia Van Couvering': 'Amy', 'Michael Zeller': 'Eli', 'Joe Swanberg': 'Angry Car Guy'}" tt1211956,"{'Sylvester Stallone': 'Breslin', 'Arnold Schwarzenegger': 'Rottmayer', 'Jim Caviezel': 'Hobbes', 'Faran Tahir': 'Javed', 'Amy Ryan': 'Abigail', 'Sam Neill': 'Dr. Kyrie', ""Vincent D'Onofrio"": 'Lester Clark', 'Vinnie Jones': 'Drake', 'Matt Gerald': 'Roag', '50 Cent': ""Hush (as Curtis '50 Cent' Jackson)"", 'Caitriona Balfe': 'Jessica Miller', 'David Joseph Martinez': 'Captain Newal Beradah', 'Alec Rayme': 'Pilot', 'Christian Stokes': 'Babcock', 'Graham Beckel': 'Brims'}" tt0469021,"{'Colm Meaney': 'Pat Farrell', 'Steve Coogan': 'Alan Partridge / Jason Statham / Jason Bourne / Jason Argonaut', 'Tim Key': 'Side Kick Simon', 'Karl Theobald': 'Greg Frampton', 'Nigel Lindsay': 'Jason Tresswell', 'Felicity Montagu': 'Lynn Benfield', 'Dustin Demri-Burns': 'Danny Sinclair', 'Molly Seymour': ""Danny's Posse"", 'Adam Langstaff': ""Danny's Posse"", 'Aaron Heffernan': ""Danny's Posse"", 'Simon Greenall': 'Michael', 'Phil Cornwell': 'Dave Clifton', 'Monica Dolan': 'Angela Ashbourne', 'Kieran Hodgson': 'Exec', 'Elizabeth Berrington': 'Bettie'}" tt0114508,"{'Ben Kingsley': 'Xavier Fitch', 'Michael Madsen': 'Preston Lennox', 'Alfred Molina': 'Dr. Stephen Arden', 'Forest Whitaker': 'Dan Smithson', 'Marg Helgenberger': 'Dr. Laura Baker', 'Natasha Henstridge': 'Sil', 'Michelle Williams': 'Young Sil', 'Jordan Lund': 'Aide', 'Don Fischer': 'Aide', 'Scott McKenna': 'Train Hobo', 'Virginia Morris': 'Mother', 'Jayne Luke': 'Snack Shop Clerk', 'David K. Schroeder': 'German Tourist', 'David Jensen': 'Conductor', 'Esther Scott': 'Female Conductor'}" tt0089200,"{'Peter Liapis': 'Jonathan Graves', 'Lisa Pelikan': 'Rebecca', 'Michael Des Barres': 'Malcolm Graves', 'Jack Nance': 'Wolfgang', 'Peter Risch': 'Grizzel', 'Tamara De Treaux': 'Greedigut', 'Scott Thomson': 'Mike', 'Ralph Seymour': 'Mark (Toad Boy)', 'Mariska Hargitay': 'Donna', 'Keith Joe Dick': 'Dick', 'David Dayan': 'Eddie', 'Victoria Catlin': 'Anastasia', 'Charene Cathleen': 'Robin', 'Bobbie Bresee': 'Temptress', 'Jamie Bronow': 'Jonathan Graves, as a child'}" tt1637725,"{'Mark Wahlberg': 'John Bennett', 'Mila Kunis': 'Lori Collins', 'Seth MacFarlane': 'Ted (voice)', 'Joel McHale': 'Rex', 'Giovanni Ribisi': 'Donny', 'Patrick Warburton': 'Guy', 'Matt Walsh': 'Thomas', 'Jessica Barth': 'Tami-Lynn', 'Aedin Mincks': 'Robert', 'Bill Smitrovich': 'Frank', 'Patrick Stewart': 'Narrator (voice)', 'Norah Jones': 'Norah Jones', 'Sam J. Jones': 'Sam Jones (as Sam Jones)', 'Tom Skerritt': 'Tom Skerritt', 'Bretton Manley': 'Young John (as Brett Manley)'}" tt0780622,"{'Jess Weixler': 'Dawn', 'John Hensley': 'Brad', 'Josh Pais': 'Dr. Godfrey', 'Hale Appleman': 'Tobey', 'Lenny von Dohlen': 'Bill', 'Vivienne Benesch': 'Kim', 'Ashley Springer': 'Ryan', 'Laila Liliana Garro': 'Gwen (as Julia Garro)', 'Nicole Swahn': 'Melanie', 'Adam Wagner': 'Phil', 'Hunter Ulvog': 'Little Brad', 'Ava Ryen Plumb': 'Little Dawn', 'Trent Moore': 'Mr. Vincent', 'Mike Yager': 'Elliot', 'Nathan Parsons': 'Soda Spritzer'}" tt1213663,"{'Thomas Law': 'Young Gary', 'Zachary Bailess': 'Young Andy', 'Jasper Levine': 'Young Steven', 'James Tarpey': 'Young Peter', 'Luke Bromley': 'Young Oliver', 'Sophie Evans': 'Becky Salt', 'Samantha White': 'Erika Leekes', 'Rose Reynolds': 'Tracy Benson', 'Richard Hadfield': 'Young Shane', 'Flora Slorach': 'Young Sam', 'Francesca Reidie': 'Teenage Twins', 'Charlotte Reidie': 'Teenage Twins', 'Pierce Brosnan': 'Guy Shepherd', 'David Bradley': 'Basil', 'Michael Smiley': 'Reverend Green'}" tt2557490,"{'Seth MacFarlane': 'Albert', 'Charlize Theron': 'Anna', 'Amanda Seyfried': 'Louise', 'Liam Neeson': 'Clinch', 'Giovanni Ribisi': 'Edward', 'Neil Patrick Harris': 'Foy', 'Sarah Silverman': 'Ruth', 'Christopher Hagen': 'George Stark', 'Wes Studi': 'Cochise', 'Matt Clark': 'Old Prospector', 'Evan Jones': 'Lewis', 'Aaron McPherson': 'Ben', 'Rex Linn': 'Sheriff / Narrator', 'Brett Rickaby': 'Charlie Blanche', 'Alex Borstein': 'Millie'}" tt2318527,"{'Rob Corddry': 'Jack', 'Leslie Bibb': 'Vanessa', 'Alex Berg': 'Mrs. Nussbaum / Cheerful Guy', 'Keegan-Michael Key': ""F'resnel"", 'Robert Ben Garant': 'Father Sebastian', 'Thomas Lennon': 'Father Padrigo', 'David Pasquesi': 'Cardinal Vicente', 'David Wain': 'Dr. Marsden', 'Michael Ian Black': 'Dr. Marshall', 'Rob Huebel': 'Mickey', 'Paul Scheer': 'Ron', 'Dave Holmes': 'Rental Car Guy', 'Brittney Alger': 'Italian Nurse', 'Tara Cullen': 'Italian Nurse', 'Jessica Loyacono': 'Italian Nurse'}" tt2017038,{'Robert Redford': 'Our Man'} tt1247640,"{'Cyril Raffaelli': 'Capt. Damien Tomaso', 'David Belle': 'Leïto', 'Philippe Torreton': 'Le président de la République', 'Daniel Duval': 'Walter Gassman', 'Elodie Yung': 'Tao', ""MC Jean Gab'1"": 'Molko', 'James Deano': 'Karl le skin', 'Laouni Mouhid': 'Ali-K (as La Fouine)', 'Fabrice Feltzinger': 'Little Montana', 'Pierre-Marie Mosconi': 'Roland', 'Johnny Amaro': 'Policier centre de contrôle', ""Pascal D'Amato"": 'Le garde escaller préfecture', 'Guy Amram': 'Le chef commando GIGN', 'Pascal Aubert': 'Le Chef De Poste', 'Jean-Gilles Barbier': 'Le commandant de police'}" tt0120241,"{'Mark Watson': 'Doorman', 'Christopher Walken': 'Carlo Bartolucci / Charlie Barret', 'Denis Leary': 'Lono Veccio', 'Nina Siemaszko': 'Jennifer', 'Jay Della': 'Bartender (as Jay Fiondella)', 'Henry Thomas': 'Avery Chasten', 'Sean Patrick Flanery': 'Max Minot', 'Nathan Dana Aldrich': 'Marcus (as Nathan Dana)', 'Jay Mohr': 'Brett Cambell', 'Jeremy Sisto': 'T. K.', 'Frank Medrano': 'Heckle', 'Brad Garrett': 'Jeckyll', ""James Peter 'JP' O'Fallon Jr."": 'Kid #1', 'Nicholas Huttloff': 'Kid #2', 'Trent Bross': ""Maitre D'""}" tt0377471,"{'John Travolta': 'Chili Palmer', 'Uma Thurman': 'Edie Athens', 'Vince Vaughn': 'Raji', 'Cedric the Entertainer': 'Sin LaSalle', 'André Benjamin': 'Dabu', 'Steven Tyler': 'Steven Tyler', 'Robert Pastorelli': 'Joe Loop', 'Christina Milian': 'Linda Moon', 'Paul Adelstein': 'Hy Gordon', 'Debi Mazar': 'Marla', 'Gregory Alan Williams': 'Darryl (as GregAlan Williams)', 'Harvey Keitel': 'Nick Carr', 'Dwayne Johnson': 'Elliot Wilhelm (as The Rock)', 'Danny DeVito': 'Martin Weir', 'James Woods': 'Tommy Athens'}" tt1478338,"{'Kristen Wiig': 'Annie', 'Terry Crews': 'Boot Camp Instructor', 'Maya Rudolph': 'Lillian', 'Tom Yi': 'Jewelry Store Couple', 'Elaine Kao': 'Jewelry Store Couple', 'Michael Hitchcock': 'Don Cholodecki', 'Kali Hawk': 'Kahlua', 'Joe Nunez': 'Oscar the Security Guard (as Joseph A. Nunez)', 'Rebel Wilson': 'Brynn', 'Matt Lucas': 'Gil', 'Jill Clayburgh': ""Annie's Mom"", 'Wendi McLendon-Covey': 'Rita', 'Ellie Kemper': 'Becca', 'Greg Tuculescu': 'Kevin', 'Steve Bannos': ""Annie's Mistaken Husband""}" tt1981677,"{'Anna Kendrick': 'Beca', 'Skylar Astin': 'Jesse', 'Ben Platt': 'Benji', 'Brittany Snow': 'Chloe', 'Anna Camp': 'Aubrey', 'Rebel Wilson': 'Fat Amy', 'Alexis Knapp': 'Stacie', 'Ester Dean': 'Cynthia Rose', 'Hana Mae Lee': 'Lilly', 'Kelley Jakle': 'Jessica (as Kelley Alice Jakle)', 'Wanetah Walmsley': 'Denise', 'Shelley Regner': 'Ashley', 'Caroline Fourmy': 'Mary Elise', 'Nicole Lovince': 'Kori', 'Adam Devine': 'Bumper (as Adam DeVine)'}" tt2398249,"{'Paul Rudd': 'Joel', 'Amy Poehler': 'Molly', 'Bill Hader': 'Kyle', 'Ellie Kemper': 'Karen', 'Cobie Smulders': 'Tiffany', 'Noureen DeWulf': 'Melanie', 'Jason Mantzoukas': 'Bob', 'Michael Ian Black': 'Trevor', 'Michaela Watkins': 'Habermeyer', 'Randall Park': 'Martinson', 'Christopher Meloni': 'Roland', 'Teyonah Parris': 'Wanda', 'Ed Helms': 'Eggbert', 'David Wain': 'Keith', 'Jack McBrayer': 'Oliver'}" tt0351977,"{'Michael Bowen': 'Sheriff Stan Watkins', 'Johnny Knoxville': 'Ray Templeton', 'Dwayne Johnson': 'Chris Vaughn (as The Rock)', 'Neal McDonough': 'Jay Hamilton', 'Ashley Scott': 'Deni', 'John Beasley': 'Chris Vaughn Sr.', 'Barbara Tarbuck': 'Connie Vaughn', 'Kristen Wilson': 'Michelle Vaughn', 'Khleo Thomas': 'Pete Vaughn', 'Kevin Durand': 'Booth', 'Andrew Tarbet': 'Jimmy', 'Patrick Gallagher': 'Keith', 'John Stewart': 'Rusty', 'Eric Breker': 'Deputy Ralston', 'Ryan Robbins': 'Travis'}" tt0985694,"{'Danny Trejo': 'Machete', 'Robert De Niro': 'Senator McLaughlin', 'Jessica Alba': 'Sartana', 'Steven Seagal': 'Torrez', 'Michelle Rodriguez': 'Luz', 'Jeff Fahey': 'Booth', 'Cheech Marin': 'Padre', 'Don Johnson': 'Von', 'Shea Whigham': 'Sniper', 'Lindsay Lohan': 'April', 'Daryl Sabara': 'Julio', 'Gilbert Trejo': 'Jorge', 'Ara Celi': 'Reporter', 'Tom Savini': 'Osiris Amanpour', 'Billy Blair': ""Von's Henchman""}" tt1013743,"{'Tom Cruise': 'Roy Miller', 'Cameron Diaz': 'June Havens', 'Peter Sarsgaard': 'Fitzgerald', 'Jordi Mollà': 'Antonio', 'Viola Davis': 'Director George', 'Paul Dano': 'Simon Feck', 'Falk Hentschel': 'Bernhard', 'Marc Blucas': 'Rodney', 'Lennie Loftin': 'Braces', 'Maggie Grace': 'April Havens', 'Rich Manley': 'Danny', 'Dale Dye': 'Frank Jenkins', 'Celia Weston': 'Molly', 'Gal Gadot': 'Naomi', ""Jack O'Connell"": ""Wilmer (as Jack A. O'Connell)""}" tt1022603,"{'Joseph Gordon-Levitt': 'Tom', 'Zooey Deschanel': 'Summer', 'Geoffrey Arend': 'McKenzie', 'Chloë Grace Moretz': 'Rachel', 'Matthew Gray Gubler': 'Paul', 'Clark Gregg': 'Vance', 'Patricia Belcher': 'Millie', 'Rachel Boston': 'Alison', 'Minka Kelly': 'Autumn - Girl at Interview', 'Charles Walker': ""Millie's New Husband"", 'Ian Reed Kesler': 'Douche', 'Darryl Alan Reed': 'Bus Driver', 'Valente Rodriguez': 'Employee #1', 'Yvette Nicole Brown': 'New Secretary', 'Nicole Vicius': 'Partygoer'}" tt0327850,"{'Dwayne Johnson': 'Beck (as The Rock)', 'Seann William Scott': 'Travis', 'Rosario Dawson': 'Mariana', 'Christopher Walken': 'Hatcher', 'Ewen Bremner': 'Declan', 'Jon Gries': 'Harvey', 'William Lucking': 'Walker', 'Ernie Reyes Jr.': 'Manito', 'Stuart F. Wilson': 'Swenson', 'Dennis Keiffer': 'Naylor', 'Garrett Warren': 'Henshaw', 'Toby Holguin': 'Head Indian Tracker', 'Paul S. Power': 'Martin (as Paul Power)', 'Stephen Bishop': 'Knappmiller', 'Chuck Norman': 'Mullaire'}" tt0947798,"{'Natalie Portman': 'Nina Sayers / The Swan Queen', 'Mila Kunis': 'Lily / The Black Swan', 'Vincent Cassel': 'Thomas Leroy / The Gentleman', 'Barbara Hershey': 'Erica Sayers / The Queen', 'Winona Ryder': 'Beth Macintyre / The Dying Swan', 'Benjamin Millepied': 'David / The Prince', 'Ksenia Solo': 'Veronica / Little Swan', 'Kristina Anapau': 'Galina / Little Swan', 'Janet Montgomery': 'Madeline / Little Swan', 'Sebastian Stan': 'Andrew / Suitor', 'Toby Hemingway': 'Tom / Suitor', 'Sergio Torrado': 'Sergio / Rothbart', 'Mark Margolis': 'Mr. Fithian / Patron', 'Tina Sloan': 'Mrs. Fithian / Patron', 'Abraham Aronofsky': 'Mr. Stein / Patron (as Abe Aronofsky)'}" tt1542344,"{'James Franco': 'Aron Ralston', 'Kate Mara': 'Kristi', 'Amber Tamblyn': 'Megan', 'Sean Bott': ""Aron's Friend (as Sean A. Bott)"", 'Koleman Stinger': 'Aron Age 5', 'Treat Williams': ""Aron's Dad"", 'John Lawrence': 'Brian', 'Kate Burton': ""Aron's Mom"", 'Bailee Michelle Johnson': 'Sonja Age 10', 'Parker Hadley': 'Aron Age 15', 'Clémence Poésy': 'Rana', 'Fenton Quinn': 'Blue John (as Fenton G. Quinn)', 'Lizzy Caplan': 'Sonja', 'Peter Joshua Hull': 'Boy on Sofa (as P.J. Hull)', 'Pieter Jan Brugge': 'Eric Meijer'}" tt1538819,"{'Ugur Yücel': 'Çerkez Abbas', 'Kenan Imirzalioglu': 'Akrep Celal', 'Nejat Isler': 'Ensar', 'Berrak Tüzünataç': 'Ezo', 'Ceyda Düvenci': 'Cavidan Sonay', 'Gokhan Duran': 'Zihinsel Özürlü Genç', 'Ilker Aksum': 'Doktor', 'Hakan Boyav': 'Adli Muhabir', 'Emir Bozkurt': 'Cinayet Masasi Komiseri', 'Ozan Güven': 'Remzi (as Ozan Guven)', 'Kadir Kandemir': 'Kamer', 'Uraz Kaygilaroglu': 'Journalist', 'Baris Kaçkar': ""Ensar's brother"", 'Cengiz Keles': 'Selim (as Görkem Keles)'}" tt0451079,"{'Jim Carrey': 'Horton (voice)', 'Steve Carell': 'Mayor (voice)', 'Carol Burnett': 'Kangaroo (voice)', 'Will Arnett': 'Vlad (voice)', 'Seth Rogen': 'Morton (voice)', 'Dan Fogler': 'Councilman / Yummo Wickersham (voice)', 'Isla Fisher': 'Dr. Mary Lou Larue (voice)', 'Jonah Hill': 'Tommy (voice)', 'Amy Poehler': ""Sally O'Malley (voice)"", 'Jaime Pressly': 'Mrs. Quilligan (voice)', 'Charles Osgood': 'Narrator (voice)', 'Josh Flitter': 'Rudy (voice)', 'Niecy Nash': 'Miss Yelp (voice)', 'Jesse McCartney': 'JoJo (voice)', 'Shelby Adamowsky': 'Hedy / Hooly / Additional Voices (voice)'}" tt0098206,"{'Patrick Swayze': 'Dalton', 'Kelly Lynch': 'Doc', 'Sam Elliott': 'Wade Garrett', 'Ben Gazzara': 'Brad Wesley', 'Marshall R. Teague': 'Jimmy (as Marshall Teague)', 'Julie Michaels': 'Denise', 'Red West': 'Red Webster', 'Sunshine Parker': ""Emmet (as 'Sunshine' Parker)"", 'Jeff Healey': 'Cody', 'Kevin Tighe': 'Tilghman', 'John Doe': 'Pat McGurn', 'Kathleen Wilhoite': 'Carrie', 'Travis McKenna': 'Jack', 'Roger Hewlett': 'Younger', 'Kurt James Stefka': 'Hank'}" tt0050825,"{'Kirk Douglas': 'Col. Dax', 'Ralph Meeker': 'Cpl. Philippe Paris', 'Adolphe Menjou': 'Gen. George Broulard', 'George Macready': 'Gen. Paul Mireau', 'Wayne Morris': 'Lt. Roget', 'Richard Anderson': 'Maj. Saint-Auban', 'Joe Turkel': 'Pvt. Pierre Arnaud (as Joseph Turkel)', 'Christiane Kubrick': 'German Singer (as Susanne Christian)', 'Jerry Hausner': 'Proprietor of Cafe', 'Peter Capell': 'Narrator of Opening Sequence / Chief Judge of Court-Martial', 'Emile Meyer': 'Father Dupree', 'Bert Freed': 'Sgt. Boulanger', 'Kem Dibbs': 'Pvt. Lejeune', 'Timothy Carey': 'Pvt. Maurice Ferol', 'Fred Bell': 'Shell-Shocked Soldier'}" tt0095690,"{'Annabeth Gish': 'Kat', 'Julia Roberts': 'Daisy', 'Lili Taylor': 'Jojo', ""Vincent D'Onofrio"": ""Bill (as Vincent Phillip D'Onofrio)"", 'William R. Moses': 'Tim', 'Adam Storke': 'Charlie', 'Conchata Ferrell': 'Leona', 'Joanna Merlin': 'Mrs. Arujo', 'Porscha Radcliffe': 'Phoebe', 'Bucky Walsh': 'Manny (as Arthur Walsh)', 'John Fiore': 'Jake', 'Gene Amoroso': 'Mr. Barboza', 'Sheila Ferrini': 'Mrs. Barboza', 'Janet Zarish': 'Nicole Travers', 'Louis Turenne': 'Everyday Gourmet'}" tt0091217,"{'Gene Hackman': 'Coach Norman Dale', 'Barbara Hershey': 'Myra Fleener', 'Dennis Hopper': 'Shooter', 'Sheb Wooley': 'Cletus', 'Fern Persons': 'Opal Fleener', 'Chelcie Ross': 'George', 'Robert Swan': 'Rollin', ""Michael O'Guinne"": 'Rooster', 'Wil Dewitt': 'Reverend Doty', 'John Robert Thompson': 'Sheriff Finley', 'Michael Sassone': 'Preacher Purl', 'Gloria Dorson': 'Millie', 'Mike Dalzell': 'Mayor Carl', 'Skip Welker': 'Junior (as Calvert L. Welker)', 'Eric Gilliom': 'J. June'}" tt0106856,"{'Michael Douglas': 'D-Fens', 'Robert Duvall': 'Prendergast', 'Barbara Hershey': 'Beth', 'Rachel Ticotin': 'Sandra', 'Tuesday Weld': 'Mrs. Prendergast', 'Frederic Forrest': 'Surplus Store Owner', 'Lois Smith': ""D-Fens' Mother"", 'Joey Singer': ""Adele (Beth's Child) (as Joey Hope Singer)"", 'Ebbe Roe Smith': 'Guy on Freeway', 'Michael Paul Chan': 'Mr. Lee', 'Raymond J. Barry': 'Captain Yardley', 'D.W. Moffett': 'Detective Lydecker', 'Steve Park': 'Detective Brian', 'Kimberly Scott': 'Detective Jones', 'James Keane': 'Detective Keene'}" tt0048028,"{'Julie Harris': 'Abra', 'James Dean': 'Cal Trask', 'Raymond Massey': 'Adam Trask', 'Burl Ives': 'Sam - the Sheriff', 'Richard Davalos': 'Aron Trask', 'Jo Van Fleet': 'Kate', 'Albert Dekker': 'Will Hamilton', 'Lois Smith': 'Anne', 'Harold Gordon': 'Gustav Albrecht', 'Nick Dennis': 'Rantani'}" tt0059113,"{'Omar Sharif': 'Yuri', 'Julie Christie': 'Lara', 'Geraldine Chaplin': 'Tonya', 'Rod Steiger': 'Komarovsky', 'Alec Guinness': 'Yevgraf', 'Tom Courtenay': 'Pasha', 'Siobhan McKenna': 'Anna', 'Ralph Richardson': 'Alexander', 'Rita Tushingham': 'The Girl', 'Jeffrey Rockland': 'Sasha', 'Tarek Sharif': 'Yuri at 8 Years Old', 'Bernard Kay': 'The Bolshevik', 'Klaus Kinski': 'Kostoyed', 'Gérard Tichy': 'Liberius (as Gerard Tichy)', 'Noel Willman': 'Razin'}" tt0250494,"{'Reese Witherspoon': 'Elle Woods', 'Luke Wilson': 'Emmett', 'Selma Blair': 'Vivian Kensington', 'Matthew Davis': 'Warner', 'Victor Garber': 'Professor Callahan', 'Jennifer Coolidge': 'Paulette', 'Holland Taylor': 'Professor Stromwell', 'Ali Larter': 'Brooke Taylor Windham', 'Jessica Cauffiel': 'Margot', 'Alanna Ubach': 'Serena', 'Oz Perkins': 'Dorky David Kidney', 'Linda Cardellini': 'Chutney', 'Bruce Thomas': 'UPS Guy', 'Meredith Scott Lynn': 'Enid', 'Raquel Welch': 'Mrs. Windham Vandermark'}" tt0479143,"{'Sylvester Stallone': 'Rocky Balboa', 'Burt Young': 'Paulie', 'Antonio Tarver': ""Mason 'The Line' Dixon"", 'Geraldine Hughes': 'Marie', 'Milo Ventimiglia': 'Robert Balboa Jr.', 'Tony Burton': 'Duke', 'A.J. Benza': 'L.C.', 'James Francis Kelly III': 'Steps', 'Talia Shire': 'Adrian (archive footage)', 'Lou DiBella': 'Lou DiBella', 'Mike Tyson': 'Mike Tyson', 'Henry G. Sanders': 'Martin', 'Pedro Lovell': 'Spider Rico', 'Ana Gerena': 'Isabel', 'Angelyna Martinez': 'Angie (as Angela Boyd)'}" tt0113321,"{'Holly Hunter': 'Claudia Larson', 'Robert Downey Jr.': 'Tommy Larson', 'Anne Bancroft': 'Adele Larson', 'Charles Durning': 'Henry Larson', 'Dylan McDermott': 'Leo Fish', 'Geraldine Chaplin': 'Aunt Glady', 'Steve Guttenberg': 'Walter Wedman', 'Cynthia Stevenson': 'Joanne Wedman', 'Claire Danes': 'Kitt', 'Emily Ann Lloyd': 'Brittany Lace', 'Zack Duhame': 'Walter Wedman Jr.', 'Austin Pendleton': 'Peter Arnold', 'David Strathairn': 'Russell Terziak', 'Amy Yasbeck': 'Ginny Johnson Drewer', 'James Lecesne': 'Ron Drewer'}" tt0311648,"{'Katie Holmes': 'April Burns', 'Derek Luke': 'Bobby', 'Oliver Platt': 'Jim Burns', 'Alison Pill': 'Beth Burns', 'John Gallagher Jr.': 'Timmy Burns', 'Patricia Clarkson': 'Joy Burns', 'Alice Drummond': 'Grandma Dottie', 'Vitali Baganov': 'Half Asleep Man', 'Lillias White': 'Evette', 'Isiah Whitlock Jr.': 'Eugene', 'Adrian Martinez': 'Man in Mohair Sweater', 'Susan Bruce': 'Tish', 'Jamari Richardson': 'Boy on Bicycle', 'Leila Danette': 'Woman in Stairwell', 'Stephen Chen': 'Lee Loung Tan'}" tt1731141,"{'Asa Butterfield': 'Ender Wiggin', 'Harrison Ford': 'Colonel Graff', 'Hailee Steinfeld': 'Petra Arkanian', 'Abigail Breslin': 'Valentine Wiggin', 'Ben Kingsley': 'Mazer Rackham', 'Viola Davis': 'Major Gwen Anderson', 'Aramis Knight': 'Bean', 'Suraj Partha': 'Alai (as Suraj Parthasarathy)', 'Moises Arias': 'Bonzo Madrid', 'Khylin Rhambo': 'Dink Meeker', ""Jimmy 'Jax' Pinchak"": 'Peter Wiggin (as Jimmy Jax Pinchak)', 'Nonso Anozie': 'Sergeant Dap', 'Conor Carroll': 'Bernard', 'Caleb J. Thaggard': 'Stilson (as Caleb Thaggard)', 'Cameron Gaskins': 'Slattery (Leopard Army)'}" tt1670345,"{'Jesse Eisenberg': 'J. Daniel Atlas', 'Mark Ruffalo': 'Dylan Rhodes', 'Woody Harrelson': 'Merritt McKinney', 'Isla Fisher': 'Henley Reeves', 'Dave Franco': 'Jack Wilder', 'Mélanie Laurent': 'Alma Dray', 'Morgan Freeman': 'Thaddeus Bradley', 'Michael Caine': 'Arthur Tressler', 'Michael Kelly': 'Agent Fuller (as Michael J. Kelly)', 'Common': 'Evans', 'David Warshofsky': 'Cowan', 'José Garcia': 'Etienne Forcier', 'Jessica Lindsey': 'Hermia (as Jessica C. Lindsey)', 'Caitriona Balfe': 'Jasmine Tressler', 'Stephanie Honoré': 'Atlas Groupie'}" tt1418377,"{'Aaron Eckhart': 'Adam', 'Yvonne Strahovski': 'Terra', 'Miranda Otto': 'Leonore', 'Bill Nighy': 'Naberius', 'Jai Courtney': 'Gideon', 'Socratis Otto': 'Zuriel', 'Aden Young': 'Victor Frankenstein', 'Caitlin Stasey': 'Keziah', 'Mahesh Jadu': 'Ophir', 'Steve Mouzakis': 'Helek', 'Nicholas Bell': 'Carl Avery', 'Deniz Akdeniz': 'Barachel', 'Chris Pang': 'Levi (as Christopher Pang)', 'Kevin Grevioux': 'Dekar', 'Bruce Spence': 'Molokai'}" tt1572315,"{'Alexandra Daddario': 'Heather Miller', 'Dan Yeager': 'Leatherface', 'Trey Songz': ""Ryan (as Tremaine 'Trey Songz' Neverson)"", 'Scott Eastwood': 'Carl', 'Tania Raymonde': 'Nikki', 'Shaun Sipos': 'Darryl', 'Keram Malicki-Sánchez': 'Kenny (as Keram Malicki-Sanchez)', 'James MacDonald': 'Officer Marvin', 'Thom Barry': 'Sheriff Hooper', 'Paul Rae': 'Burt Hartman', 'Richard Riehle': 'Farnsworth', 'Bill Moseley': 'Drayton Sawyer', 'Gunnar Hansen': 'Boss Sawyer / Leatherface (archive footage)', 'David Born': 'Gavin Miller', 'Sue Rock': 'Arlene Miller'}" tt1588173,"{'Nicholas Hoult': 'R', 'Teresa Palmer': 'Julie', 'Analeigh Tipton': 'Nora', 'Rob Corddry': 'M', 'Dave Franco': 'Perry', 'John Malkovich': 'Grigio', 'Cory Hardrict': 'Kevin', 'Daniel Rindress-Kay': 'Soldier #1', 'Vincent Leclerc': ""Perry's Dad (as Vincent LeClerc)"", 'Clifford LeDuc-Vaillancourt': 'Boy at Airport', 'Billie Calmeau': 'Girl at Airport', 'Adam Driscoll': 'Young Man at ATM', 'Chris Cavener': 'Soldier #2', 'Jonathan Dubsky': 'Berg', 'Alec Bourgeois': 'Perry (11 years old)'}" tt1549920,"{'Arron Shiver': 'State Trooper', 'Arnold Schwarzenegger': 'Ray Owens', 'Titos Menchaca': 'Mayor', 'Richard Dillard': 'Irv', 'Doug Jackson': 'Harry', 'Mathew Greer': 'Sam', 'Peter Stormare': 'Burrell', 'Chris Browning': 'Pony Tail', 'Christiana Leucas': 'Christie', 'Johnny Knoxville': 'Lewis Dinkum', 'Zach Gilford': 'Jerry Bailey', 'Luis Guzmán': 'Mike Figuerola', 'Rio Alexander': 'Faceburn', 'James Burnett': 'Poyo', 'David Midthunder': 'Cohan'}" tt1650043,"{'Zachary Gordon': 'Greg Heffley', 'Devon Bostick': 'Rodrick Heffley', 'Rachael Harris': 'Susan Heffley', 'Robert Capron': 'Rowley Jefferson', 'Steve Zahn': 'Frank Heffley', 'Connor Fielding': 'Manny Heffley', 'Owen Fielding': 'Manny Heffley', 'Peyton List': 'Holly Hills', 'Karan Brar': 'Chirag', 'Laine MacNeil': 'Patty Farrell', 'Grayson Russell': 'Fregley', 'Terence Kelly': 'Grandpa', 'Fran Kranz': 'Bill', 'Bryce Hodgson': 'Ben Segal', 'Andrew McNee': 'Coach Malone'}" tt1408253,"{'Ice Cube': 'James Payton', 'Kevin Hart': 'Ben Barber', 'John Leguizamo': 'Santiago', 'Bruce McGill': 'Lt. Brooks', 'Tika Sumpter': 'Angela Payton', 'Bryan Callen': 'Miggs', 'Laurence Fishburne': 'Omar', 'Dragos Bucur': 'Marko', 'Gary Owen': 'Crazy Cody', 'Jacob Latimore': 'Ramon', 'Jay Pharoah': 'Runflat', 'Benjamin Flores Jr.': ""Morris the Kid (as Benjamin 'Lil P-Nut' Flores)"", 'Greg Rementer': ""Marko's Gunman"", 'Eric Benson': ""Marko's Gunman"", 'Anna House': 'Cafeteria Lady'}" tt2848292,"{'Anna Kendrick': 'Beca', 'Rebel Wilson': 'Fat Amy', 'Hailee Steinfeld': 'Emily', 'Brittany Snow': 'Chloe', 'Skylar Astin': 'Jesse', 'Adam Devine': 'Bumper (as Adam DeVine)', 'Katey Sagal': 'Katherine', 'Anna Camp': 'Aubrey', 'Ben Platt': 'Benji', 'Alexis Knapp': 'Stacie', 'Hana Mae Lee': 'Lilly', 'Ester Dean': 'Cynthia Rose', 'Chrissie Fit': 'Flo', 'Birgitte Hjort Sørensen': 'Kommissar (as Birgitte Hjort-Sørensen)', 'Flula Borg': 'Pieter Krämer'}" tt0369610,"{'Chris Pratt': 'Owen', 'Bryce Dallas Howard': 'Claire', 'Irrfan Khan': 'Masrani', ""Vincent D'Onofrio"": 'Hoskins', 'Ty Simpkins': 'Gray', 'Nick Robinson': 'Zach', 'Jake Johnson': 'Lowery', 'Omar Sy': 'Barry', 'BD Wong': 'Dr. Henry Wu', 'Judy Greer': 'Karen', 'Lauren Lapkus': 'Vivian', 'Brian Tee': 'Hamada', 'Katie McGrath': 'Zara', 'Andy Buckley': 'Scott', 'Eric Edelstein': 'Paddock Supervisor'}" tt2820852,"{'Vin Diesel': 'Dominic Toretto', 'Paul Walker': ""Brian O'Conner"", 'Jason Statham': 'Deckard Shaw', 'Michelle Rodriguez': 'Letty', 'Jordana Brewster': 'Mia', 'Tyrese Gibson': 'Roman', 'Ludacris': ""Tej (as Chris 'Ludacris' Bridges)"", 'Dwayne Johnson': 'Hobbs', 'Lucas Black': 'Sean Boswell', 'Kurt Russell': 'Mr. Nobody', 'Nathalie Emmanuel': 'Ramsey', 'Elsa Pataky': 'Elena', 'Gal Gadot': 'Gisele', 'John Brotherton': 'Sheppard', 'Luke Evans': 'Owen Shaw'}" tt2980516,"{'Eddie Redmayne': 'Stephen Hawking', 'Felicity Jones': 'Jane Hawking', 'Tom Prior': 'Robert Hawking - Age 17', 'Sophie Perry': 'Lucy Hawking - Age 14', 'Finlay Wright-Stephens': 'Timothy Hawking - Age 8', 'Harry Lloyd': 'Brian', 'Alice Orr-Ewing': 'Diana King', 'David Thewlis': 'Dennis Sciama', 'Thomas Morrison': 'Carter', 'Michael Marcus': 'Ellis', 'Gruffudd Glyn': 'Rees', 'Paul Longley': 'Barman - Rowing Club', 'Emily Watson': 'Beryl Wilde', 'Guy Oliver-Watts': 'George Wilde', 'Simon McBurney': 'Frank Hawking'}" tt0066995,"{'Sean Connery': 'James Bond', 'Jill St. John': 'Tiffany Case', 'Charles Gray': 'Blofeld', 'Lana Wood': ""Plenty O'Toole"", 'Jimmy Dean': 'Willard Whyte', 'Bruce Cabot': 'Saxby', 'Putter Smith': 'Mr. Kidd', 'Bruce Glover': 'Mr. Wint', 'Norman Burton': 'Leiter', 'Joseph Fürst': 'Dr Metz (as Joseph Furst)', 'Bernard Lee': ""'M'"", 'Desmond Llewelyn': ""'Q'"", 'Leonard Barr': 'Shady Tree', 'Lois Maxwell': 'Moneypenny', 'Margaret Lacey': 'Mrs. Whistler'}" tt0086006,"{'Sean Connery': 'James Bond', 'Klaus Maria Brandauer': 'Maximilian Largo', 'Max von Sydow': 'Blofeld (as Max Von Sydow)', 'Barbara Carrera': 'Fatima', 'Kim Basinger': 'Domino Petachi', 'Bernie Casey': 'Leiter', 'Alec McCowen': ""'Q' Algy"", 'Edward Fox': ""'M'"", 'Pamela Salem': 'Miss Moneypenny', 'Rowan Atkinson': 'Small-Fawcett', 'Valerie Leon': 'Lady in Bahamas', 'Milos Kirek': 'Kovacs (as Milow Kirek)', 'Pat Roach': 'Lippe', 'Anthony Sharp': 'Lord Ambrose', 'Prunella Gee': 'Patricia'}" tt0062512,"{'Sean Connery': 'James Bond', 'Akiko Wakabayashi': 'Aki', 'Mie Hama': 'Kissy Suzuki', 'Tetsurô Tanba': 'Tiger Tanaka (as Tetsuro Tamba)', 'Teru Shimada': 'Mr. Osato', 'Karin Dor': 'Helga Brandt', 'Donald Pleasence': 'Blofeld', 'Bernard Lee': ""'M'"", 'Lois Maxwell': 'Miss Moneypenny', 'Desmond Llewelyn': ""'Q'"", 'Charles Gray': 'Henderson', 'Tsai Chin': 'Ling, Chinese Girl in Hong Kong', 'Peter Fanene Maivia': 'Car Driver', 'Burt Kwouk': 'Spectre 3', 'Michael Chow': 'Spectre 4'}" tt0246460,"{'Pierce Brosnan': 'James Bond', 'Halle Berry': 'Jinx Johnson', 'Toby Stephens': 'Gustav Graves', 'Rosamund Pike': 'Miranda Frost', 'Rick Yune': 'Zao', 'Judi Dench': 'M', 'John Cleese': 'Q', 'Michael Madsen': 'Damian Falco', 'Will Yun Lee': 'Colonel Moon', 'Kenneth Tsang': 'General Moon', 'Emilio Echevarría': 'Raoul', 'Michael Gor': 'Vlad (as Michael Gorevoy)', 'Lawrence Makoare': 'Mr. Kil', 'Colin Salmon': 'Charles Robinson', 'Samantha Bond': 'Miss Moneypenny'}" tt0057076,"{'Sean Connery': 'James Bond', 'Daniela Bianchi': 'Tatiana Romanova', 'Pedro Armendáriz': 'Ali Kerim Bey (as Pedro Armendariz)', 'Lotte Lenya': 'Rosa Klebb', 'Robert Shaw': ""Donald 'Red' Grant"", 'Bernard Lee': ""'M'"", 'Eunice Gayson': 'Sylvia Trench', 'Walter Gotell': 'Morzeny', 'Francis De Wolff': 'Vavra (as Francis de Wolff)', 'George Pastell': 'Train Conductor', 'Nadja Regin': ""Kerim's Mistress"", 'Lois Maxwell': 'Miss Moneypenny', 'Aliza Gur': 'Vida', 'Martine Beswick': 'Zora (as Martin Beswick)', 'Vladek Sheybal': 'Kronsteen'}" tt0058150,"{'Sean Connery': 'James Bond', 'Gert Fröbe': 'Goldfinger (as Gert Frobe)', 'Honor Blackman': 'Pussy Galore', 'Shirley Eaton': 'Jill Masterson', 'Tania Mallet': 'Tilly Masterson', 'Harold Sakata': 'Oddjob (as Harold Sakata {Tosh Togo})', 'Bernard Lee': ""'M'"", 'Martin Benson': 'Solo', 'Cec Linder': 'Felix Leiter', 'Austin Willis': 'Simmons', 'Lois Maxwell': 'Moneypenny', 'Bill Nagy': 'Midnight', 'Michael Mellinger': 'Kisch', 'Peter Cranwell': 'Johnny', 'Nadja Regin': 'Bonita'}" tt0830515,"{'Daniel Craig': 'James Bond', 'Olga Kurylenko': 'Camille', 'Mathieu Amalric': 'Dominic Greene', 'Judi Dench': 'M', 'Giancarlo Giannini': 'Rene Mathis', 'Gemma Arterton': 'Strawberry Fields', 'Jeffrey Wright': 'Felix Leiter', 'David Harbour': 'Gregg Beam', 'Jesper Christensen': 'Mr. White', 'Anatole Taubman': 'Elvis', 'Rory Kinnear': 'Bill Tanner', 'Tim Pigott-Smith': 'Foreign Secretary', 'Joaquín Cosio': 'General Medrano', 'Fernando Guillén Cuervo': 'Colonel of Police', 'Jesús Ochoa': 'Lt. Orso'}" tt1074638,"{'Daniel Craig': 'James Bond', 'Judi Dench': 'M', 'Javier Bardem': 'Silva', 'Ralph Fiennes': 'Gareth Mallory', 'Naomie Harris': 'Eve', 'Bérénice Marlohe': 'Severine (as Bérénice Lim Marlohe)', 'Albert Finney': 'Kincade', 'Ben Whishaw': 'Q', 'Rory Kinnear': 'Tanner', 'Ola Rapace': 'Patrice', 'Helen McCrory': 'Clair Dowar MP', 'Nicholas Woodeson': 'Doctor Hall', 'Bill Buckhurst': 'Ronson', 'Elize du Toit': ""Vanessa (M's Assistant)"", 'Ian Bonar': 'MI6 Technician'}" tt0059800,"{'Sean Connery': 'James Bond', 'Claudine Auger': 'Domino', 'Adolfo Celi': 'Largo', 'Luciana Paluzzi': 'Fiona', 'Rik Van Nutter': 'Felix Leiter', 'Guy Doleman': 'Count Lippe', 'Molly Peters': 'Patricia', 'Martine Beswick': 'Paula', 'Bernard Lee': ""'M'"", 'Desmond Llewelyn': ""'Q'"", 'Lois Maxwell': 'Moneypenny', 'Roland Culver': 'Foreign Secretary', 'Earl Cameron': 'Pinder', 'Paul Stassino': 'Palazzi', 'Rose Alba': 'Madame Boitier'}" tt0381061,"{'Daniel Craig': 'James Bond', 'Eva Green': 'Vesper Lynd', 'Mads Mikkelsen': 'Le Chiffre', 'Judi Dench': 'M', 'Jeffrey Wright': 'Felix Leiter', 'Giancarlo Giannini': 'Rene Mathis', 'Caterina Murino': 'Solange', 'Simon Abkarian': 'Alex Dimitrios', 'Isaach De Bankolé': 'Steven Obanno (as Isaach De Bankole)', 'Jesper Christensen': 'Mr. White', 'Ivana Milicevic': 'Valenka', 'Tobias Menzies': 'Villiers', 'Claudio Santamaria': 'Carlos', 'Sebastien Foucan': 'Mollaka (as Sébastien Foucan)', 'Malcolm Sinclair': 'Dryden'}" tt0064757,"{'George Lazenby': 'James Bond', 'Diana Rigg': 'Tracy', 'Telly Savalas': 'Blofeld', 'Gabriele Ferzetti': 'Draco', 'Ilse Steppat': 'Irma Bunt', 'Lois Maxwell': 'Moneypenny', 'George Baker': 'Sir Hilary Bray', 'Bernard Lee': ""'M'"", 'Bernard Horsfall': 'Campbell', 'Desmond Llewelyn': ""'Q'"", 'Yuri Borienko': 'Grunther', 'Virginia North': 'Olympe', 'Geoffrey Cheshire': 'Toussaint', 'Irvin Allen': 'Che Che', 'Terence Mountain': 'Raphael (as Terry Mountain)'}" tt0113189,"{'Pierce Brosnan': 'James Bond', 'Sean Bean': 'Alec Trevelyan', 'Izabella Scorupco': 'Natalya Simonova', 'Famke Janssen': 'Xenia Onatopp', 'Joe Don Baker': 'Jack Wade', 'Judi Dench': 'M', 'Robbie Coltrane': 'Valentin Zukovsky', 'Tchéky Karyo': 'Dimitri Mishkin (as Tcheky Karyo)', 'Gottfried John': 'Colonel Ourumov', 'Alan Cumming': 'Boris Grishenko', 'Desmond Llewelyn': 'Q', 'Samantha Bond': 'Moneypenny', 'Michael Kitchen': 'Bill Tanner', 'Serena Gordon': 'Caroline', 'Simon Kunz': 'Severnaya Duty Officer'}" tt0120347,"{'Pierce Brosnan': 'James Bond', 'Jonathan Pryce': 'Elliot Carver', 'Michelle Yeoh': 'Wai Lin', 'Teri Hatcher': 'Paris Carver', 'Ricky Jay': 'Henry Gupta', 'Götz Otto': 'Stamper', 'Joe Don Baker': 'Wade', 'Vincent Schiavelli': 'Dr. Kaufman', 'Judi Dench': 'M', 'Desmond Llewelyn': 'Q', 'Samantha Bond': 'Moneypenny', 'Colin Salmon': 'Robinson', 'Geoffrey Palmer': 'Admiral Roebuck', 'Julian Fellowes': 'Minister of Defence', 'Terence Rigby': 'General Bukharin'}" tt0090264,"{'Roger Moore': 'James Bond', 'Christopher Walken': 'Max Zorin', 'Tanya Roberts': 'Stacey Sutton', 'Grace Jones': 'May Day', 'Patrick Macnee': 'Tibbett', 'Patrick Bauchau': 'Scarpine', 'David Yip': 'Chuck Lee', 'Fiona Fullerton': 'Pola Ivanova', 'Manning Redwood': 'Bob Conley', 'Alison Doody': 'Jenny Flex', 'Willoughby Gray': 'Dr. Carl Mortner', 'Desmond Llewelyn': 'Q', 'Robert Brown': 'M', 'Lois Maxwell': 'Miss Moneypenny', 'Walter Gotell': 'General Gogol'}" tt0071807,"{'Roger Moore': 'James Bond', 'Christopher Lee': 'Scaramanga', 'Britt Ekland': 'Goodnight', 'Maud Adams': 'Andrea Anders', 'Hervé Villechaize': 'Nick Nack (as Herve Villechaize)', 'Clifton James': 'J.W. Pepper', 'Richard Loo': 'Hai Fat', 'Soon-Tek Oh': 'Hip (as Soon-Taik Oh)', 'Marc Lawrence': 'Rodney', 'Bernard Lee': ""'M'"", 'Lois Maxwell': 'Moneypenny', 'Marne Maitland': 'Lazar', 'Desmond Llewelyn': ""'Q'"", 'James Cossins': 'Colthorpe', 'Yao Lin Chen': 'Chula (as Chan Yiu Lam)'}" tt0097742,"{'Timothy Dalton': 'James Bond', 'Carey Lowell': 'Pam Bouvier', 'Robert Davi': 'Franz Sanchez', 'Talisa Soto': 'Lupe Lamora', 'Anthony Zerbe': 'Milton Krest', 'Frank McRae': 'Sharkey', 'Everett McGill': 'Killifer', 'Wayne Newton': 'Professor Joe Butcher', 'Benicio Del Toro': 'Dario', 'Anthony Starke': 'Truman-Lodge', 'Pedro Armendáriz Jr.': 'President Hector Lopez (as Pedro Armendariz)', 'Desmond Llewelyn': 'Q', 'David Hedison': 'Felix Leiter', 'Priscilla Barnes': 'Della Churchill', 'Robert Brown': 'M'}" tt0143145,"{'Pierce Brosnan': 'James Bond', 'Sophie Marceau': 'Elektra King', 'Robert Carlyle': 'Renard', 'Denise Richards': 'Dr. Christmas Jones', 'Robbie Coltrane': 'Valentin Zukovsky', 'Judi Dench': 'M', 'Desmond Llewelyn': 'Q', 'John Cleese': 'R', 'Maria Grazia Cucinotta': 'Cigar Girl', 'Samantha Bond': 'Moneypenny', 'Michael Kitchen': 'Tanner', 'Colin Salmon': 'Robinson', 'Goldie': 'Bull', 'David Calder': 'Sir Robert King', 'Serena Scott Thomas': 'Dr. Molly Warmflash'}" tt0082398,"{'Roger Moore': ""Ian Fleming's James Bond 007"", 'Carole Bouquet': 'Melina Havelock', 'Topol': 'Milos Columbo', 'Lynn-Holly Johnson': 'Bibi Dahl', 'Julian Glover': 'Kristatos', 'Cassandra Harris': 'Lisl', 'Jill Bennett': 'Jacoba Brink', 'Michael Gothard': 'Locque', 'John Wyman': 'Erich Kriegler', 'Jack Hedley': 'Sir Timothy Havelock', 'Lois Maxwell': 'Miss Moneypenny', 'Desmond Llewelyn': 'Q', 'Geoffrey Keen': 'Minister of Defence', 'Walter Gotell': 'General Gogol', 'James Villiers': 'Tanner'}" tt0086034,"{'Roger Moore': 'James Bond', 'Maud Adams': 'Octopussy', 'Louis Jourdan': 'Kamal Khan', 'Kristina Wayborn': 'Magda', 'Kabir Bedi': 'Gobinda', 'Steven Berkoff': 'Orlov', 'David Meyer': 'Twin One', 'Tony Meyer': 'Twin Two (as Anthony Meyer)', 'Desmond Llewelyn': 'Q', 'Robert Brown': 'M', 'Lois Maxwell': 'Miss Moneypenny', 'Michaela Clavell': 'Penelope Smallbone', 'Walter Gotell': 'Gogol', 'Vijay Amritraj': 'Vijay', 'Albert Moses': 'Sadruddin'}" tt0070328,"{'Roger Moore': 'James Bond', 'Yaphet Kotto': 'Kananga / Mr. Big', 'Jane Seymour': 'Solitaire', 'Clifton James': 'Sheriff Pepper', 'Julius Harris': 'Tee Hee (as Julius W. Harris)', 'Geoffrey Holder': 'Baron Samedi', 'David Hedison': 'Leiter', 'Gloria Hendry': 'Rosie', 'Bernard Lee': ""'M'"", 'Lois Maxwell': 'Moneypenny', 'Tommy Lane': 'Adam', 'Earl Jolly Brown': 'Whisper', 'Roy Stewart': 'Quarrel', 'Lon Satton': 'Strutter', 'Arnold Williams': 'Cab Driver 1'}" tt0076752,"{'Roger Moore': 'James Bond', 'Barbara Bach': 'Maj. Anya Amasova / Agent XXX', 'Curd Jürgens': 'Karl Stromberg (as Curt Jurgens)', 'Richard Kiel': 'Jaws', 'Caroline Munro': 'Naomi', 'Walter Gotell': 'Gen. Anatol Gogol', 'Geoffrey Keen': 'Sir Frederick Gray', 'Bernard Lee': 'M', 'George Baker': 'Capt. Benson', 'Michael Billington': 'Sergei Barsov', 'Olga Bisera': 'Felicca', 'Desmond Llewelyn': 'Q', 'Edward de Souza': 'Sheikh Hosein (as Edward De Souza)', 'Vernon Dobtcheff': 'Max Kalba', 'Valerie Leon': 'Hotel Receptionist'}" tt0093428,"{'Timothy Dalton': 'James Bond', ""Maryam d'Abo"": 'Kara Milovy', 'Jeroen Krabbé': 'General Georgi Koskov', 'Joe Don Baker': 'Brad Whitaker', 'John Rhys-Davies': 'General Leonid Pushkin', 'Art Malik': 'Kamran Shah', 'Andreas Wisniewski': 'Necros', 'Thomas Wheatley': 'Saunders', 'Desmond Llewelyn': 'Q', 'Robert Brown': 'M', 'Geoffrey Keen': 'Minister of Defence', 'Walter Gotell': 'General Anatol Gogol', 'Caroline Bliss': 'Miss Moneypenny', 'John Terry': 'Felix Leiter', 'Virginia Hey': 'Rubavitch'}" tt0055928,"{'Sean Connery': 'James Bond', 'Ursula Andress': 'Honey Ryder', 'Joseph Wiseman': 'Dr. No', 'Jack Lord': 'Felix Leiter', 'Bernard Lee': 'M.', 'Anthony Dawson': 'Professor Dent', 'Zena Marshall': 'Miss Taro', 'John Kitzmiller': 'Quarrel (as John Kitzmuller)', 'Eunice Gayson': 'Sylvia Trench', 'Lois Maxwell': 'Miss Moneypenny', 'Peter Burton': 'Major Boothroyd', 'Yvonne Shima': 'Sister Lily', 'Michel Mok': 'Sister Rose', 'Marguerite LeWars': 'Annabel Chung - Photographer (as Margaret Le Wars) (as Marguerite Lewars: end credits)', 'William Foster-Davis': 'Superintendent Duff (as Wm. Foster-Davis)'}" tt0079574,"{'Roger Moore': 'James Bond', 'Lois Chiles': 'Holly Goodhead', 'Michael Lonsdale': 'Hugo Drax', 'Richard Kiel': 'Jaws', 'Corinne Cléry': 'Corinne Dufour (as Corinne Clery)', 'Bernard Lee': 'M', 'Geoffrey Keen': 'Sir Frederick Gray', 'Desmond Llewelyn': 'Q', 'Lois Maxwell': 'Miss Moneypenny', 'Toshirô Suga': 'Chang (as Toshiro Suga)', 'Emily Bolton': 'Manuela', 'Blanche Ravalec': ""Dolly - Jaws' Girlfriend"", 'Irka Bochenko': 'Blonde Beauty', 'Mike Marshall': 'Col. Scott (as Michael Marshall)', 'Leila Shenna': 'Hostess Private Jet'}" tt1436562,"{'Karen Disher': 'Mother Bird (voice)', 'Jason Fricchione': 'Truck Driver (voice)', 'Sofia Scarpa Saldanha': 'Young Linda (voice)', 'Leslie Mann': 'Linda (voice)', 'Kelly Keaton': 'Bookstore Customer / Lady Tourist (voice)', 'Jesse Eisenberg': 'Blu (voice)', 'Wanda Sykes': 'Chloe (The Goose) (voice)', 'Jane Lynch': 'Alice (The Other Goose) (voice)', 'Rodrigo Santoro': 'Tulio / Soccer Announcer (voice)', 'Gracinha Leporace': 'Dr. Barbosa (voice)', 'Jamie Foxx': 'Nico (voice)', 'Will.i.am': 'Pedro (voice) (as will.i.am)', 'Phil Miler': 'Aviary Intern / Waiter (voice)', 'Anne Hathaway': 'Jewel (voice)', 'Bernardo De Paula': 'Sylvio / Kipo (voice) (as Bernardo de Paula)'}" tt1318514,"{'Andy Serkis': 'Caesar', 'Karin Konoval': 'Maurice / Court Clerk', 'Terry Notary': 'Rocket / Bright Eyes', 'Richard Ridings': 'Buck - Ape', 'Christopher Gordon': 'Koba - Ape (as Chris Gordon)', 'Devyn Dalton': 'Cornelia - Ape', 'Jay Caputo': 'Alpha', 'James Franco': 'Will Rodman', 'Freida Pinto': 'Caroline Aranha', 'John Lithgow': 'Charles Rodman', 'Brian Cox': 'John Landon', 'Tom Felton': 'Dodge Landon', 'David Oyelowo': 'Steven Jacobs', 'Tyler Labine': 'Robert Franklin', 'Jamie Harris': 'Rodney - Shelter Assistant'}" tt0477347,"{'Ben Stiller': 'Larry Daley', 'Carla Gugino': 'Rebecca', 'Dick Van Dyke': 'Cecil', 'Mickey Rooney': 'Gus', 'Bill Cobbs': 'Reginald', 'Jake Cherry': 'Nick Daley', 'Ricky Gervais': 'Dr. McPhee', 'Robin Williams': 'Teddy Roosevelt', 'Kim Raver': 'Erica Daley', 'Patrick Gallagher': 'Attila the Hun', 'Rami Malek': 'Ahkmenrah', 'Pierfrancesco Favino': 'Christopher Columbus', 'Charlie Murphy': 'Taxi Driver', 'Steve Coogan': 'Octavius', 'Mizuo Peck': 'Sacajawea'}" tt0489099,"{'Hayden Christensen': 'David Rice', 'Jamie Bell': 'Griffin', 'Rachel Bilson': 'Millie', 'Diane Lane': 'Mary Rice', 'Samuel L. Jackson': 'Roland', 'Michael Rooker': 'William Rice', 'AnnaSophia Robb': 'Young Millie (as Annasophia Robb)', 'Max Thieriot': 'Young David', 'Jesse James': 'Young Mark', 'Tom Hulce': 'Mr. Bowker', 'Kristen Stewart': 'Sophie', 'Teddy Dunn': 'Mark Kobold', 'Barbara Garrick': 'Ellen', 'Michael Winther': 'Day Bank Manager', 'Massimiliano Pazzaglia': 'Italian Desk Cop'}" tt0455499,"{'Breckin Meyer': 'Jon Arbuckle', 'Jennifer Love Hewitt': 'Liz', 'Billy Connolly': 'Dargis', 'Bill Murray': 'Garfield (voice)', 'Ian Abercrombie': 'Smithee', 'Roger Rees': 'Mr. Hobbs', 'Lucy Davis': 'Abby', 'Lena Cardwell': 'Teenage Tourist', 'Veronica Alicino': 'Veterinary Assistant', 'Jane Carr': 'Mrs. Whitney', 'Oliver Muirhead': 'Mr. Greene', 'JB Blanc': 'Hotel Porter', 'Vernee Watson': 'Tourist #2 (as Vernée Watson Johnson)', 'Russell Milton': 'Bobby', 'Ben Falcone': 'American Tourist'}" tt0303933,"{'Nick Cannon': 'Devon Miles', 'Zoe Saldana': 'Laila (as Zoë Saldana)', 'Orlando Jones': 'Dr. Lee', 'Leonard Roberts': 'Sean Taylor', 'GQ': 'Jayson', 'Jason Weaver': 'Ernest', 'Earl Poitier': 'Charles (as Earl C. Poitier)', 'Candace Carey': 'Diedre', 'Shay Roundtree': 'Big Rob', 'Miguel A. Gaetan': 'Trey', 'J. Anthony Brown': 'Mr. Wade', 'Afemo Omilami': 'President Wagner', 'Angela Elayne Gibbs': 'Dorothy Miles (as Angela E. Gibbs)', 'Tyreese Burnett': 'Henry', 'Brandon Hirsch': 'Buck Wild'}" tt0098621,"{'Michael Douglas': 'Oliver Rose', 'Kathleen Turner': 'Barbara Rose', 'Danny DeVito': ""Gavin D'Amato"", 'Marianne Sägebrecht': 'Susan', 'Sean Astin': 'Josh at 17', 'Heather Fairfield': 'Carolyn at 17', 'G.D. Spradlin': 'Harry Thurmont', 'Peter Donat': 'Jason Larrabee', 'Dan Castellaneta': 'Man in Chair', 'Gloria Cromwell': 'Mrs. Marshall', 'Harlan Arnold': 'Mr. Dell', 'Mary Fogarty': 'Mrs. Dell', 'Rika Hofmann': 'Elke', 'Patricia Allison': 'Maureen', 'Peter Brocco': 'Elderly Mourner'}" tt0120461,"{'Tommy Lee Jones': 'Mike Roark', 'Anne Heche': 'Dr. Amy Barnes', 'Gaby Hoffmann': 'Kelly Roark', 'Don Cheadle': 'Emmit Reese', 'Jacqueline Kim': 'Dr. Jaye Calder', 'Keith David': 'Police Lieutenant Ed Fox', 'John Corbett': 'Norman Calder', 'Michael Rispoli': 'Gator Harris', 'John Carroll Lynch': 'Stan Olber', 'Marcello Thedford': 'Kevin', 'Laurie Lathem': 'Rachel', 'Bert Kramer': 'L.A. Fire Chief', 'Bo Eason': 'Bud McVie', 'James MacDonald': 'Terry Jasper (as James G. MacDonald)', 'Dayton Callie': 'Roger Lapher'}" tt0120913,"{'Drew Barrymore': 'Akima (voice)', 'Jim Breuer': 'The Cook (voice)', 'Ken Hudson Campbell': 'Po (voice) (as Ken Campbell)', 'Thomas A. Chantler': 'Male Announcer (voice)', 'Tsai Chin': 'Old Woman (voice)', 'Elaine A. Clark': 'Citizen (voice)', 'Roy Conrad': 'Second Human (voice)', 'Jim Cummings': 'Chowquin (voice)', 'Matt Damon': 'Cale (voice)', 'Janeane Garofalo': 'Stith (voice)', 'Leslie Hedger': 'First Human (voice)', 'Roger Jackson': 'First Alien (voice) (as Roger L. Jackson)', 'David L. Lander': 'The Mayor (voice)', 'Nathan Lane': 'Preed (voice)', 'John Leguizamo': 'Gune (voice)'}" tt0114885,"{'Whitney Houston': 'Savannah Jackson', 'Angela Bassett': 'Bernadine Harris', 'Loretta Devine': 'Gloria Matthews', 'Lela Rochon': 'Robin Stokes', 'Gregory Hines': 'Marvin King', 'Dennis Haysbert': 'Kenneth Dawkins', 'Mykelti Williamson': 'Troy', 'Michael Beach': 'John Harris, Sr.', 'Leon': 'Russell', 'Wendell Pierce': 'Michael Davenport', 'Donald Faison': 'Tarik Matthews', 'Jeffrey D. Sams': 'Lionel', 'Jazz Raycole': 'Onika Harris', 'Brandon Hammond': 'John Harris, Jr.', 'Kenya Moore': 'Denise'}" tt0120902,"{'David Duchovny': 'Agent Fox Mulder', 'Gillian Anderson': 'Agent Dana Scully', 'John Neville': 'The Well-Manicured Man', 'William B. Davis': 'The Cigarette-Smoking Man', 'Martin Landau': 'Kurtzweil', 'Mitch Pileggi': 'Assistant Director Walter Skinner', 'Jeffrey DeMunn': 'Bronschweig (as Jeffrey De Munn)', 'Blythe Danner': 'Cassidy', ""Terry O'Quinn"": 'Michaud', 'Armin Mueller-Stahl': 'Strughold', 'Lucas Black': 'Stevie', 'Christopher Fennell': '2nd Boy (as Chris Fennell)', 'Cody Newton': '3rd Boy', 'Blake Stokes': '4th Boy', 'Dean Haglund': 'Langly'}" tt0105812,"{'Wesley Snipes': 'Sidney Deane', 'Woody Harrelson': 'Billy Hoyle', 'Rosie Perez': 'Gloria Clemente', 'Tyra Ferrell': 'Rhonda Deane', 'Cylk Cozart': 'Robert', 'Kadeem Hardison': 'Junior', 'Ernest Harden Jr.': 'George', 'John Marshall Jones': 'Walter', 'Marques Johnson': 'Raymond', 'David Roberson': 'T.J.', 'Kevin Benton': 'Zeke', 'Nigel Miguel': ""Dwight 'The Flight' McGhee"", 'Duane Martin': 'Willie Lewis', 'Bill Henderson': 'The Venice Beach Boys', 'Sonny Craver': 'The Venice Beach Boys'}" tt0473308,"{'Keri Russell': 'Jenna Hunterson', 'Nathan Fillion': 'Dr. Jim Pomatter', 'Cheryl Hines': 'Becky', 'Jeremy Sisto': 'Earl Hunterson', 'Andy Griffith': 'Old Joe', 'Adrienne Shelly': 'Dawn', 'Eddie Jemison': 'Ogie', 'Lew Temple': 'Cal', 'Darby Stanchfield': 'Francine Pomatter', 'Heidi Sulzman': 'Exhausted Mother', 'Lauri Johnson': 'Nurse Norma', 'Sarah Hunley': 'Dr. Lily Mueller', 'Cindy Drummond': 'Hospital Nurse', 'Nathan Dean': 'Minister', 'Caroline Fogarty': ""Doctor's Assistant""}" tt0096463,"{'Harrison Ford': 'Jack Trainer', 'Sigourney Weaver': 'Katharine Parker', 'Melanie Griffith': 'Tess McGill', 'Alec Baldwin': 'Mick Dugan', 'Joan Cusack': 'Cyn', 'Philip Bosco': 'Oren Trask', 'Nora Dunn': 'Ginny', 'Oliver Platt': 'Lutz', 'James Lally': 'Turkel', 'Kevin Spacey': 'Bob Speck', 'Robert Easton': 'Armbrister', 'Olympia Dukakis': 'Personnel Director', 'Amy Aquino': 'Alice Baxter', 'Jeffrey Nordling': 'Tim Rourke', 'Elizabeth Whitcraft': 'Doreen DiMucci'}" tt0084855,"{'Paul Newman': 'Frank Galvin', 'Charlotte Rampling': 'Laura Fischer', 'Jack Warden': 'Mickey Morrissey', 'James Mason': 'Ed Concannon', ""Milo O'Shea"": 'Judge Hoyle', 'Lindsay Crouse': 'Kaitlin Costello Price', 'Edward Binns': 'Bishop Brophy', 'Julie Bovasso': 'Maureen Rooney', 'Roxanne Hart': 'Sally Doneghy', 'James Handy': 'Kevin Doneghy', 'Wesley Addy': 'Dr. Towler', 'Joe Seneca': 'Dr. Thompson', 'Lewis J. Stadlen': 'Dr. Gruber (as Lewis Stadlen)', 'Kent Broadhurst': 'Joseph Alito', 'Colin Stinton': 'Billy'}" tt0250797,"{'Diane Lane': 'Connie Sumner', 'Erik Per Sullivan': 'Charlie Sumner', 'Richard Gere': 'Edward Sumner', 'Olivier Martinez': 'Paul Martel', 'Myra Lucretia Taylor': 'Gloria', 'Michelle Monaghan': 'Lindsay', 'Chad Lowe': 'Bill Stone', 'Joseph Badalucco Jr.': 'Train conductor', 'Erich Anderson': 'Bob Gaylord', 'Damon Gupton': 'Other businessman', 'Kate Burton': 'Tracy', 'Margaret Colin': 'Sally', 'Marc Forget': 'Café bartender', 'Larry Gleason': 'Tim', 'Dominic Chianese': 'Frank Wilson'}" tt0117979,"{'Uma Thurman': 'Noelle', 'Janeane Garofalo': 'Abby', 'Ben Chaplin': 'Brian', 'Jamie Foxx': 'Ed', 'James McCaffrey': 'Roy', 'Richard Coca': 'Eric', 'Stanley DeSantis': 'Mario', 'Antoinette Valente': 'Susan', 'Mitch Rouse': 'Bee Man', 'La Tanya M. Fisher': 'Emily', 'Faryn Einhorn': 'Child Model', 'David Cross': 'Voice of Male Radio Caller / Bookstore Man', 'Mary Lynn Rajskub': 'Female Radio Caller (voice)', 'Bob Odenkirk': 'Bookstore Man', 'Dechen Thurman': 'Bookstore Cashier'}" tt0316732,"{'Queen Latifah': ""Isabelle 'Belle' Williams"", 'Jimmy Fallon': ""Andrew 'Andy' Washburn"", 'Henry Simmons': 'Jesse', 'Jennifer Esposito': 'Lt. Marta Robbins', 'Gisele Bündchen': 'Vanessa', 'Ana Cristina de Oliveira': 'Redhead', 'Ingrid Vandebosch': 'Third Robber', 'Magali Amadei': 'Fourth Robber', 'Ann-Margret': 'Mrs. Washburn', 'Christian Kane': 'Agent Mullins', 'Boris McGiver': 'Franklin', 'Adrian Martinez': 'Brasilian Man', 'Joe Lisi': 'Mr. Scalia', 'Bryna Weiss': 'Mrs. Scalia', 'GQ': 'Stopwatch Messenger'}" tt1753584,"{'Mathias Melloul': 'Romain', 'Valérie Maës': 'Claire', 'Stephan Hersoen': 'Hervé', 'Leïla Denio': 'Marie', 'Nathan Duval': 'Pierre', 'Yan Brian': 'Michel', 'Adeline Rebeillard': 'Coralie', 'Grégory Annoni': 'Cédric', 'Laetitia Favart': 'Nathalie', 'Benjamin Houot': 'Homme triolisme 1', 'Maïlys Amrous': 'Femme triolisme 1', 'Pierre Perrier': 'Maxime', 'Faustine Dubois': 'Sophie', 'Stéphane Clerc': 'Sébastien', 'Philippe Duquesne': 'Le directeur du lycée'}" tt0988595,"{'Brian Kerwin': 'Hal', 'Charli Barcena': 'Young Tess', 'Peyton List': 'Young Jane (as Peyton Roi List)', 'Jane Pfitsch': 'Cousin Lisa', 'Katherine Heigl': 'Jane', 'Jennifer Lim': 'Bridal Salesgirl #1', 'Brigitte Bourdeau': 'Salesgirl Olga', 'Judy Greer': 'Casey', 'Danielle Skraastad': 'Bride Suzanne', 'Marilyn L. Costello': ""Bride Suzanne's Minister"", 'James Marsden': 'Kevin', 'Michael Paul': 'Taxi Driver Khaleel (as Michael Ziegfeld)', 'Yetta Gottesman': 'Hip Bridesmaid', 'Erin Fogel': 'Shari Rabinowitz', 'Bern Cohen': 'Rabbi'}" tt0094291,"{'Charlie Sheen': 'Bud Fox', 'Tamara Tunie': 'Carolyn', 'Franklin Cover': 'Dan', 'Chuck Pfeiffer': 'Chuckie (as Chuck Pfeifer)', 'John C. McGinley': 'Marvin', 'Hal Holbrook': 'Lou Mannheim', 'James Karen': 'Lynch', 'Leslie Lyles': 'Natalie', 'Michael Douglas': 'Gordon Gekko', 'Faith Geer': ""Natalie's Assistant"", 'Frank Adonis': 'Charlie', 'John Capodice': 'Dominick', 'Martin Sheen': 'Carl Fox', 'Suzen Murakoshi': 'Girl in Bed', 'Dani Klein': 'Receptionist'}" tt0358273,"{'Joaquin Phoenix': 'John R. Cash', 'Reese Witherspoon': 'June Carter', 'Ginnifer Goodwin': 'Vivian Cash', 'Robert Patrick': 'Ray Cash', 'Dallas Roberts': 'Sam Phillips', 'Dan John Miller': 'Luther Perkins', 'Larry Bagby': 'Marshall Grant', 'Shelby Lynne': 'Carrie Cash', 'Tyler Hilton': 'Elvis Presley', 'Waylon Payne': 'Jerry Lee Lewis (as Waylon Malloy Payne)', 'Shooter Jennings': 'Waylon Jennings', 'Sandra Ellis Lafferty': 'Maybelle Carter', 'Dan Beene': 'Ezra Carter', 'Clay Steakley': ""W.S. 'Fluke' Holland"", 'Johnny Holiday': 'Carl Perkins'}" tt0293662,"{'Jason Statham': 'Frank Martin', 'Qi Shu': 'Lai (as Shu Qi)', 'François Berléand': 'Inspector Tarconi', 'Matt Schulze': 'Wall Street', 'Ric Young': 'Mr. Kwai', 'Doug Rand': 'Leader', 'Didier Saint Melin': 'Boss', 'Tonio Descanvelle': 'Thug 1', 'Laurent Desponds': 'Thug 2', 'Matthieu Albertini': 'Thug 3', 'Vincent Nemeth': 'Pilot', 'Jean-Yves Bilien': 'Little Thug', 'Jean-Marie Paris': 'Giant Thug', 'Adrian Dearnell': 'Newscaster', 'Alfred Lot': 'Cop 1'}" tt0117509,"{'Leonardo DiCaprio': 'Romeo', 'Claire Danes': 'Juliet', 'John Leguizamo': 'Tybalt', 'Harold Perrineau': 'Mercutio', 'Pete Postlethwaite': 'Father Laurence', 'Paul Sorvino': 'Fulgencio Capulet', 'Brian Dennehy': 'Ted Montague', 'Paul Rudd': 'Dave Paris', 'Vondie Curtis-Hall': 'Captain Prince', 'Miriam Margolyes': 'The Nurse', 'Jesse Bradford': 'Balthasar', 'M. Emmet Walsh': 'Apothecary', 'Zak Orth': 'Gregory', 'Jamie Kennedy': 'Sampson', 'Dash Mihok': 'Benvolio'}" tt1323594,"{'Steve Carell': 'Gru (voice)', 'Jason Segel': 'Vector (voice)', 'Russell Brand': 'Dr. Nefario (voice)', 'Julie Andrews': ""Gru's Mom (voice)"", 'Will Arnett': 'Mr. Perkins (voice)', 'Kristen Wiig': 'Miss Hattie (voice)', 'Miranda Cosgrove': 'Margo (voice)', 'Dana Gaier': 'Edith (voice)', 'Elsie Fisher': 'Agnes (voice)', 'Pierre Coffin': 'Tim the Minion / Bob the Minion / Mark the Minion / Phil the Minion / Stuart the Minion (voice)', 'Chris Renaud': 'Dave the Minion (voice)', 'Jemaine Clement': 'Jerry the Minion (voice)', 'Jack McBrayer': 'Carnival Barker / Tourist Dad (voice)', 'Danny McBride': 'Fred McDade (voice)', 'Mindy Kaling': 'Tourist Mom (voice)'}" tt0059742,"{'Julie Andrews': 'Maria', 'Christopher Plummer': 'Captain Von Trapp', 'Eleanor Parker': 'The Baroness', 'Richard Haydn': 'Max Detweiler', 'Peggy Wood': 'Mother Abbess', 'Charmian Carr': 'Liesl', 'Heather Menzies-Urich': 'Louisa (as Heather Menzies)', 'Nicholas Hammond': 'Friedrich', 'Duane Chase': 'Kurt', 'Angela Cartwright': 'Brigitta', 'Debbie Turner': 'Marta', 'Kym Karath': 'Gretl', 'Anna Lee': 'Sister Margaretta', 'Portia Nelson': 'Sister Berthe', 'Ben Wright': 'Herr Zeller'}" tt0048605,"{'Marilyn Monroe': 'The Girl', 'Tom Ewell': 'Richard Sherman (as Tommy Ewell)', 'Evelyn Keyes': 'Helen Sherman', 'Sonny Tufts': 'Tom MacKenzie', 'Robert Strauss': 'Mr. Kruhulik', 'Oskar Homolka': 'Dr. Brubaker (as Oscar Homolka)', 'Marguerite Chapman': 'Miss Morris', 'Victor Moore': 'Plumber', 'Dolores Rosedale': 'Elaine (as Roxanne)', 'Donald MacBride': 'Mr. Brady', 'Carolyn Jones': 'Miss Finch - Nurse'}" tt0117887,"{'Tom Everett Scott': 'Guy Patterson', 'Liv Tyler': 'Faye Dolan', 'Johnathon Schaech': 'Jimmy', 'Steve Zahn': 'Lenny', 'Ethan Embry': 'The Bass Player', 'Tom Hanks': 'Mr. White', 'Charlize Theron': 'Tina', 'Obba Babatundé': 'Lamarr', 'Giovanni Ribisi': 'Chad', 'Chris Ellis': 'Horace', 'Alex Rocco': 'Sol Siler', 'Bill Cobbs': 'Del Paxton', 'Peter Scolari': 'Troy Chesterfield', 'Rita Wilson': 'Margueritte', 'Chris Isaak': 'Uncle Bob'}" tt0427944,"{'Joan Lunden': 'Joan Lunden', 'Eric Haberman': 'Robin Williger', 'Aaron Eckhart': 'Nick Naylor', 'Mary Jo Smith': 'Sue Maclean', 'Todd Louiso': 'Ron Goode', 'Jeff Witzke': 'Kidnapper', 'J.K. Simmons': 'BR', 'Marianne Muellerleile': 'Teacher', 'Cameron Bright': 'Joey Naylor', 'Alex Diaz': 'Kid #1', 'Jordan Garrett': 'Kid #2', 'Courtney Taylor Burness': 'Kid #3 (as Courtney Burness)', 'Jordan Del Spina': 'Kid #4 (as Jordan Orr)', 'Maria Bello': 'Polly Bailey', 'David Koechner': 'Bobby Jay Bliss'}" tt0120169,"{'Vanessa Williams': 'Teri (as Vanessa L. Williams)', 'Vivica A. Fox': 'Maxine', 'Nia Long': 'Bird', 'Michael Beach': 'Miles', 'Mekhi Phifer': 'Lem', 'Brandon Hammond': 'Ahmad', 'Jeffrey D. Sams': 'Kenny', 'Gina Ravera': 'Faith', 'Irma P. Hall': 'Mother Joe', 'Carl Wright': 'Reverend Williams', 'Mel Jackson': 'Simuel', 'Morgan Méchelle Smith': 'Kelly', 'John M. Watson Sr.': 'Uncle Pete', 'M.T. Alexander': 'Jada', 'Lawrence Petty': 'Harome'}" tt0119313,"{'Sandra Bullock': 'Birdee Pruitt', 'Harry Connick Jr.': 'Justin Matisse', 'Gena Rowlands': 'Ramona Calvert', 'Mae Whitman': 'Bernice Pruitt', 'Michael Paré': 'Bill Pruitt', 'Cameron Finley': 'Travis', 'Kathy Najimy': 'Toni Post', 'Bill Cobbs': 'Nurse', 'Connie Ray': 'Bobbi-Claire', 'Mona Lee Fultz': 'Teacher', 'Sydney Berry': 'Orange Julia', 'Rachel Snow': 'Big Dolores (as Rachel Lena Snow)', 'Christina Stojanovich': 'Kristen', 'Alissa Alban': 'Debbie Reissen (as Allisa Alban)', 'Dee Hennigan': 'Dot'}" tt0901476,"{'Kate Hudson': 'Liv', 'Anne Hathaway': 'Emma', 'Bryan Greenberg': 'Nate', 'Chris Pratt': 'Fletcher', 'Steve Howey': 'Daniel', 'Candice Bergen': 'Marion', 'Kristen Johnston': 'Deb', 'Michael Arden': 'Kevin', 'Victor Slezak': 'Colson', 'Kelly Coffield Park': 'Kathy', 'John Pankow': 'John', ""Zoe O'Grady"": 'Young Liv', 'Shannon Ferber': 'Young Emma', 'June Diane Raphael': 'Amanda', 'Charles Bernard': 'Wedding DJ'}" tt0455824,"{'Shea Adams': 'Carney Boy #3', 'Eddie Baroo': 'Bull', 'Ray Barrett': 'Ramsden', 'Tony Barry': 'Sergeant Callahan', 'Jamal Sydney Bednarz': 'Mission Boy (as Jamal Bednarz-Metallah)', 'Damian Bradford': 'Constable #1', 'Bryan Brown': 'King Carney', 'Nathin Butler': 'Carney Boy #1', 'Tara Carpenter': 'Essential Services Woman', 'Rebecca Chatfield': ""Magarri's Niece"", 'Lillian Crombie': 'Bandy Legs', 'Max Cullen': 'Old Drunk', 'Essie Davis': 'Cath Carney', 'Arthur Dignam': 'Father Benedict', 'Michelle Dyzla': 'Hairdresser'}" tt0114887,"{'Keanu Reeves': 'Paul Sutton', 'Aitana Sánchez-Gijón': 'Victoria Aragon (as Aitana Sanchez-Gijon)', 'Anthony Quinn': 'Don Pedro Aragon', 'Giancarlo Giannini': 'Alberto Aragon', 'Angélica Aragón': 'Marie Jose Aragon (as Angelica Aragon)', 'Evangelina Elizondo': 'Guadelupe Aragon', 'Freddy Rodríguez': 'Pedro Aragon, Jr. (as Freddy Rodriguez)', 'Debra Messing': 'Betty Sutton', 'Febronio Covarrubias': 'Jose Manuel', 'Roberto Huerta': 'Jose Luis', 'Juan Jiménez': 'Jose Marie (as Juan Jimenez)', 'Ismael Gallegos': ""Jose's Musical Son"", 'Alejandra Flores': 'Consuelo', 'Gema Sandoval': 'Maria', 'Don Amendolia': 'Father Coturri'}" tt0129387,"{'Cameron Diaz': 'Mary', 'Matt Dillon': 'Healy', 'Ben Stiller': 'Ted', 'Lee Evans': 'Tucker', 'Chris Elliott': 'Dom', 'Lin Shaye': 'Magda', 'Jeffrey Tambor': 'Sully', 'Markie Post': ""Mary's Mom"", 'Keith David': ""Mary's Dad"", 'W. Earl Brown': 'Warren', 'Sarah Silverman': 'Brenda', 'Khandi Alexander': 'Joanie', 'Marnie Alexenburg': 'Lisa', 'Danny Murphy': ""Boss' Brother (as Dan Murphy)"", 'Richard Tyson': 'Detective Krevoy (as Richard M. Tyson)'}" tt1216496,"{'Hye-ja Kim': 'Mother', 'Won Bin': 'Yoon Do-joon', 'Goo Jin': 'Jin-tae', 'Je-mun Yun': 'Je-moon (as Jae-moon Yoon)', 'Mi-seon Jeon': 'Mi-sun', 'Sae-byeok Song': 'Sepaktakraw Detective (as Sae-beauk Song)', 'Byoung-Soon Kim': 'Group Leader', 'Woo-hee Chun': 'Mi-na', 'Gin-goo Kim': ""Ah-jeong's Grandma"", 'Moo-yeong Yeo': 'Lawyer Kong Seok-ho (as Ou-hyung Yum)', 'Young-Suck Lee': 'Elder at Junk Shop', 'Hee-ra Mun': 'Moon Ah-jeong (as Hee-ra Moon)', 'Mi-do Lee': 'Hyung-teo', 'Young-ki Jung': 'Kkang-ma', 'Gyu-pil Go': 'Ddung-ddung (as Kyu-phill Ko)'}" tt0101889,"{'Jeff Bridges': 'Jack', 'Adam Bryant': 'Radio Engineer', 'Paul Lombardi': 'Radio Engineer', 'David Hyde Pierce': 'Lou Rosen (as David Pierce)', 'Ted Ross': 'Limo Bum', 'Lara Harris': 'Sondra', 'Warren Olney': 'TV Anchorman', 'Frazer Smith': 'News Reporter', 'Mercedes Ruehl': 'Anne', 'Kathy Najimy': 'Crazed Video Customer', 'Harry Shearer': 'Sitcom Actor Ben Starr', 'Melinda Culea': 'Sitcom Wife', 'James Remini': 'Bum at Hotel', 'Mark Bowden': 'Doorman', 'John Ottavino': 'Father at Hotel'}" tt1196141,"{'Zachary Gordon': 'Greg Heffley', 'Robert Capron': 'Rowley Jefferson', 'Rachael Harris': 'Susan Heffley', 'Steve Zahn': 'Frank Heffley', 'Connor Fielding': 'Manny Heffley', 'Owen Fielding': 'Manny Heffley', 'Devon Bostick': 'Rodrick Heffley', 'Chloë Grace Moretz': 'Angie Steadman', 'Karan Brar': 'Chirag Gupta', 'Grayson Russell': 'Fregley', 'Laine MacNeil': 'Patty Farrell', 'Alex Ferris': 'Collin', 'Andrew McNee': 'Coach Malone', 'Belita Moreno': 'Mrs. Norton', 'Rob LaBelle': 'Mr. Winsky'}" tt1201607,"{'Ralph Fiennes': 'Lord Voldemort', 'Michael Gambon': 'Professor Albus Dumbledore', 'Alan Rickman': 'Professor Severus Snape', 'Daniel Radcliffe': 'Harry Potter', 'Rupert Grint': 'Ron Weasley', 'Emma Watson': 'Hermione Granger', 'Evanna Lynch': 'Luna Lovegood', 'Domhnall Gleeson': 'Bill Weasley', 'Clémence Poésy': 'Fleur Delacour', 'Warwick Davis': 'Griphook / Professor Filius Flitwick', 'John Hurt': 'Ollivander', 'Helena Bonham Carter': 'Bellatrix Lestrange', 'Graham Duff': 'Death Eater', 'Anthony Allgood': ""Gringotts' Guard"", 'Rusty Goffe': ""Aged Gringotts' Goblin""}" tt0952640,"{'Jason Lee': 'Dave', 'David Cross': 'Ian', 'Cameron Richardson': 'Claire', 'Jane Lynch': 'Gail', 'Justin Long': 'Alvin (voice)', 'Matthew Gray Gubler': 'Simon (voice)', 'Jesse McCartney': 'Theodore (voice)', 'Allison Karman': 'Female Intern #1', 'Tiara Parker': 'Female Intern #2', 'Kira Verrastro': 'Female Intern #3', 'Veronica Alicino': 'Amy', 'Beth Riesgraf': 'Mother in Store', 'Adriane Lenox': 'Vet', 'Don Tiffany': 'Engineer', 'Lorne Green': 'Director'}" tt0111257,"{'Keanu Reeves': 'Jack Traven', 'Dennis Hopper': 'Howard Payne', 'Sandra Bullock': 'Annie', 'Joe Morton': 'Capt. McMahon', 'Jeff Daniels': 'Harry', 'Alan Ruck': 'Stephens', 'Glenn Plummer': 'Jaguar Owner', 'Richard Lineback': 'Norwood', 'Beth Grant': 'Helen', 'Hawthorne James': 'Sam', 'Carlos Carrasco': 'Ortiz', 'David Kriegel': 'Terry', 'Natsuko Ohama': 'Mrs. Kamino', 'Daniel Villarreal': 'Ray', 'Simone Gad': 'Bus Passenger #1'}" tt0247745,"{'André Vippolis': 'College Boy 1 (as Andre Vippolis)', 'Joey Kern': 'College Boy 2', 'Geoffrey Arend': 'College Boy 3', 'Erik Stolhanske': 'Rabbit', 'Jay Chandrasekhar': 'Thorny', 'Steve Lemme': 'Mac', 'Kevin Heffernan': 'Farva', 'Paul Soter': 'Foster', 'Camille Hickman': 'Thin Queen Bartender', 'Marisa Coughlan': 'Ursula', 'Aria Alpert Adjani': 'Waitress (as Aria Alpert)', 'Daniel von Bargen': 'Chief Grady (as Daniel Von Bargen)', 'James Grace': 'Local Officer Rando', 'Michael Weaver': 'Local Officer Smy', 'Dan Fey': 'Local Officer Burton'}" tt1840309,"{'Shailene Woodley': 'Tris', 'Theo James': 'Four', 'Ashley Judd': 'Natalie', 'Jai Courtney': 'Eric', 'Ray Stevenson': 'Marcus', 'Zoë Kravitz': 'Christina', 'Miles Teller': 'Peter', 'Tony Goldwyn': 'Andrew', 'Ansel Elgort': 'Caleb', 'Maggie Q': 'Tori', 'Mekhi Phifer': 'Max', 'Kate Winslet': 'Jeanine', 'Ben Lloyd-Hughes': 'Will', 'Christian Madsen': 'Al', 'Amy Newbold': 'Molly'}" tt1951266,"{'Jennifer Lawrence': 'Katniss Everdeen', 'Josh Hutcherson': 'Peeta Mellark', 'Liam Hemsworth': 'Gale Hawthorne', 'Woody Harrelson': 'Haymitch Abernathy', 'Donald Sutherland': 'President Snow', 'Philip Seymour Hoffman': 'Plutarch Heavensbee', 'Julianne Moore': 'President Alma Coin', 'Willow Shields': 'Primrose Everdeen', 'Sam Claflin': 'Finnick Odair', 'Elizabeth Banks': 'Effie Trinket', 'Mahershala Ali': 'Boggs', 'Jena Malone': 'Johanna Mason', 'Jeffrey Wright': 'Beetee', 'Paula Malcomson': ""Katniss' Mother"", 'Stanley Tucci': 'Caesar Flickerman'}" tt0376994,"{'Hugh Jackman': 'Logan / Wolverine', 'Halle Berry': 'Ororo Munroe / Storm', 'Ian McKellen': 'Erik Lehnsherr / Magneto', 'Patrick Stewart': 'Charles Xavier / Professor X', 'Famke Janssen': 'Jean Grey / Phoenix', 'Anna Paquin': 'Marie / Rogue', 'Kelsey Grammer': ""Dr. Henry 'Hank' McCoy / Beast"", 'James Marsden': 'Scott Summers / Cyclops', 'Rebecca Romijn': 'Raven Darkholme / Mystique', 'Shawn Ashmore': 'Bobby Drake / Iceman', 'Aaron Stanford': 'John Allerdyce / Pyro', 'Vinnie Jones': 'Cain Marko / Juggernaut', 'Ellen Page': 'Kitty Pryde / Shadowcat', 'Daniel Cudmore': 'Peter Rasputin / Colossus', 'Ben Foster': 'Warren Worthington III / Angel'}" tt0290334,"{'Patrick Stewart': 'Professor Charles Xavier', 'Hugh Jackman': 'Logan / Wolverine', 'Ian McKellen': 'Eric Lehnsherr / Magneto', 'Halle Berry': 'Ororo Munroe / Storm', 'Famke Janssen': 'Jean Grey', 'James Marsden': 'Scott Summers / Cyclops', 'Anna Paquin': 'Rogue', 'Rebecca Romijn': 'Raven Darkholme / Mystique / Grace (as Rebecca Romijn-Stamos)', 'Brian Cox': 'William Stryker', 'Alan Cumming': 'Kurt Wagner / Nightcrawler', 'Bruce Davison': 'Senator Kelly', 'Aaron Stanford': 'John Allerdyce / Pyro', 'Shawn Ashmore': 'Bobby Drake / Ice Man', 'Kelly Hu': 'Yuriko Oyama / Lady Deathstrike', 'Katie Stuart': 'Shadowcat'}" tt0120903,"{'Hugh Jackman': 'Logan / Wolverine', 'Patrick Stewart': 'Professor Charles Xavier', 'Ian McKellen': 'Eric Lensherr / Magneto', 'Famke Janssen': 'Jean Grey', 'James Marsden': 'Scott Summers / Cyclops', 'Halle Berry': 'Ororo Munroe / Storm', 'Anna Paquin': 'Rogue', 'Tyler Mane': 'Sabretooth', 'Ray Park': 'Toad', 'Rebecca Romijn': 'Mystique (as Rebecca Romijn-Stamos)', 'Bruce Davison': 'Senator Kelly', 'Matthew Sharp': 'Henry Gyrich', 'Brett Morris': 'Young Magneto', 'Rhona Shekter': ""Magneto's Mother"", 'Kenneth McGregor': ""Magneto's Father""}" tt0120179,"{'Sandra Bullock': 'Annie', 'Jason Patric': 'Officer Alex Shaw', 'Willem Dafoe': 'John Geiger', 'Temuera Morrison': 'Juliano', 'Brian McCardie': 'Merced', 'Christine Firkins': 'Drew', 'Mike Hagerty': 'Harvey (as Michael G. Hagerty)', 'Colleen Camp': 'Debbie', 'Lois Chiles': 'Celeste', 'Francis Guinan': 'Rupert', 'Tamia': 'Sheri Silver', 'Jeremy Hotz': 'Ashton', 'Enrique Murciano': 'Alejandro (as Enrique Murciano Jr.)', 'Jessica Diz': 'Isabel', 'Connie Ray': 'Fran Fisher'}" tt0256380,"{'Gwyneth Paltrow': 'Rosemary', 'Jack Black': 'Hal', 'Jason Alexander': 'Mauricio', 'Joe Viterelli': 'Steve Shanahan', 'Rene Kirby': 'Walt', 'Bruce McGill': 'Reverend Larson', 'Anthony Robbins': 'Himself (as Tony Robbins)', 'Susan Ward': 'Jill', 'Zen Gesner': 'Ralph', 'Brooke Burns': 'Katrina', 'Rob Moran': 'Second Tiffany', ""Joshua 'Li'iBoy' Shintani"": ""Li'iBoy"", 'Kyle Gass': 'Artie', 'Laura Kightlinger': 'Jen', 'Nan Martin': 'Nurse Tanya Peeler'}" tt0268380,"{'Ray Romano': 'Manfred (voice)', 'John Leguizamo': 'Sid (voice)', 'Denis Leary': 'Diego (voice)', 'Goran Visnjic': 'Soto (voice)', 'Jack Black': 'Zeke (voice)', 'Cedric the Entertainer': 'Carl (voice)', 'Stephen Root': 'Frank / Start (voice)', 'Diedrich Bader': 'Oscar (voice)', 'Alan Tudyk': 'Lenny / Oscar / Dab (voice)', 'Lorri Bagley': 'Jennifer (voice)', 'Jane Krakowski': 'Rachel (voice)', 'Peter Ackerman': 'Dodo / Macrauchenia (voice)', 'P.J. Benjamin': 'Dodo (voice)', 'Josh Hamilton': 'Dodo / Aardvark (voice)', 'Chris Wedge': 'Dodo / Scrat (voice)'}" tt0133952,"{'Denzel Washington': 'Anthony Hubbard', 'Annette Bening': 'Elise Kraft / Sharon Bridger', 'Bruce Willis': 'General William Devereaux', 'Tony Shalhoub': 'Frank Haddad', 'Sami Bouajila': 'Samir Nazhde', 'Ahmed Ben Larby': 'Sheik Achmed Bin Talal', 'Mosleh Mohamed': 'Muezzin', 'Lianna Pai': 'Tina Osu (as Liana Pai)', 'Mark Valley': 'Mike Johanssen', 'Jack Gwaltney': 'Fred Darius', 'David Proval': 'Danny Sussman', 'Lance Reddick': 'FBI Agent Floyd Rose', 'Jeremy Knaster': 'INS Official', 'William Hill': 'INS Uniform', 'Aasif Mandvi': 'Khalil Saleh'}" tt0244970,"{'Ashley Judd': 'Jane Goodale', 'Greg Kinnear': 'Ray Brown', 'Hugh Jackman': 'Eddie Alden', 'Marisa Tomei': 'Liz', 'Ellen Barkin': 'Diane Roberts', 'Catherine Dent': 'Alice', 'Peter Friedman': 'Stephen', 'Laura Regan': 'Evelyn', 'Sue Jin Song': 'Female Scientist', 'Keith Reddin': 'Male Scientist', 'Derick Karlton Grant': 'Flower Delivery Man', 'Donna Hanover': 'Mary Lou Corkle', 'Matthew Coyle': 'Staff Member', 'Nicolle Rochelle': 'Nia (as Nicole Leach)', 'Pon Yang': 'Chinese Vendor'}" tt0120831,"{'Natasha Lyonne': 'Vivian', 'Alan Arkin': 'Murray', 'Bryna Weiss': 'Saleslady', 'Marisa Tomei': 'Rita', 'Charlotte Stewart': 'Landlady', 'Eli Marienthal': 'Rickey', 'David Krumholtz': 'Ben', 'Kevin Corrigan': 'Eliot', 'Brendan Burns': 'Cop in Station', 'Harris Laskawy': 'Charlie the Cook', 'Jessica Walter': 'Doris', 'Mena Suvari': 'Rachel', 'Marley McClean': 'Brooke', 'Mary Portser': 'Mrs. Hoffman', 'Jock MacDonald': 'Man at Brymans'}" tt0375063,"{'Paul Giamatti': 'Miles', 'Thomas Haden Church': 'Jack', 'Virginia Madsen': 'Maya', 'Sandra Oh': 'Stephanie', 'Marylouise Burke': ""Miles's Mother"", 'Jessica Hecht': 'Victoria', 'Missy Doty': 'Cammi', 'M.C. Gainey': ""Cammi's Husband"", 'Alysia Reiner': 'Christine Erganian', 'Shake Tukhmanyan': 'Mrs. Erganian (as Shaké Toukhmanian)', 'Shaun Duke': 'Mike Erganian (as Duke Moosekian)', 'Robert Covarrubias': ""Miles's Building Manager"", 'Patrick Gallagher': 'Gary the Bartender', 'Stephanie Faracy': ""Stephanie's Mother"", 'Joe Marinelli': 'Frass Canyon Pourer'}" tt0117628,"{'John Mahoney': 'Mr. Fitzpatrick', 'Edward Burns': 'Mickey Fitzpatrick', 'Michael McGlone': 'Francis Fitzpatrick (as Mike McGlone)', 'Maxine Bahns': 'Hope', 'Jennifer Aniston': 'Renee', 'Cameron Diaz': 'Heather', 'Malachy McCourt': 'Tom', 'Leslie Mann': 'Connie', 'Amanda Peet': 'Molly', 'Anita Gillette': 'Carol', 'Frank Vincent': 'Ron', 'Beatrice Winde': 'Older Woman', 'Eugene Osborne Smith': 'Older Man', 'Robert Weil': 'Mr. Deluca', 'Tom Tammi': 'Father John'}" tt0203119,"{'Ray Winstone': 'Gal', 'Ben Kingsley': 'Don Logan', 'Ian McShane': 'Teddy Bass', 'Amanda Redman': 'Deedee Dove', 'James Fox': 'Harry', 'Cavan Kendall': 'Aitch', 'Julianne White': 'Jackie', 'Álvaro Monje': 'Enrique (as Alvaro Monje)', 'Robert Atiko': 'Andy', 'Nieves del Amo Oruet': 'Air Hostess', 'Enrique Alemán Fabrega': 'Pilot', 'Gérard Barray': 'Spanish Official (as Gerard Barray)', 'José Maria Cano Ramos': ""Felipe's Friend 1 (as José Ma. Cano Ramos)"", 'Desirée Erasmus': 'Jean', 'Santiago Frias Munoz': 'Policia 2'}" tt0073629,"{'Tim Curry': 'Dr. Frank-N-Furter - A Scientist', 'Susan Sarandon': 'Janet Weiss - A Heroine', 'Barry Bostwick': 'Brad Majors - A Hero', ""Richard O'Brien"": 'Riff Raff - A Handyman', 'Patricia Quinn': 'Magenta - A Domestic', 'Nell Campbell': 'Columbia - A Groupie (as Little Nell)', 'Jonathan Adams': 'Dr. Everett V. Scott - A Rival Scientist', 'Peter Hinwood': 'Rocky Horror - A Creation', 'Meat Loaf': 'Eddie - Ex Delivery Boy (as Meatloaf)', 'Charles Gray': 'The Criminologist - An Expert', 'Jeremy Newson': 'Ralph Hapschatt', 'Hilary Farr': 'Betty Munroe (as Hilary Labow)', 'Perry Bedden': 'A Transylvanian', 'Christopher Biggins': 'A Transylvanian', 'Gaye Brown': 'A Transylvanian'}" tt0107977,"{'Cary Elwes': 'Robin Hood', 'Richard Lewis': 'Prince John', 'Roger Rees': 'Sheriff of Rottingham', 'Amy Yasbeck': 'Marian', 'Mark Blankfield': 'Blinkin', 'Dave Chappelle': 'Ahchoo', 'Isaac Hayes': 'Asneeze', 'Megan Cavanagh': 'Broomhilde', 'Eric Allan Kramer': 'Little John', 'Matthew Porretta': ""Will Scarlet O'Hara"", 'Tracey Ullman': 'Latrine', 'Patrick Stewart': 'King Richard', 'Dom DeLuise': 'Don Giovanni', 'Dick Van Patten': 'The Abbot', 'Robert Ridgely': 'The Hangman'}" tt0443632,"{'Michael Douglas': 'Pete Garrison', 'Kiefer Sutherland': 'David Breckinridge', 'Eva Longoria': 'Jill Marin', 'Martin Donovan': 'William Montrose', 'Ritchie Coster': 'The Handler', 'Kim Basinger': '1st Lady Sarah Ballentine', 'Blair Brown': 'National Security Advisor', 'David Rasche': 'President Ballentine', 'Kristin Lehman': 'Cindy Breckinridge', 'Raynor Scheine': 'Walter Xavier', 'Chuck Shamata': 'Director Overbrook', 'Paul Calderon': 'Deputy Director Cortes', 'Clark Johnson': 'Charlie Merriweather (as Clarque Johnson)', 'Raoul Bhaneja': 'Aziz Hassad', 'Yanna McIntosh': 'Teddy Vargas'}" tt0069113,"{'Gene Hackman': 'Reverend Scott', 'Ernest Borgnine': 'Mike Rogo', 'Red Buttons': 'James Martin', 'Carol Lynley': 'Nonnie Parry', 'Roddy McDowall': 'Acres', 'Stella Stevens': 'Linda Rogo', 'Shelley Winters': 'Belle Rosen', 'Jack Albertson': 'Manny Rosen', 'Pamela Sue Martin': 'Susan Shelby', ""Arthur O'Connell"": 'Chaplain', 'Eric Shea': 'Robin', 'Fred Sadoff': 'Linarcos', 'Sheila Allen': 'Nurse (as Sheila Mathews)', 'Jan Arvan': 'Doctor Caravello', 'Byron Webster': 'Purser'}" tt0120772,"{'Paul Rudd': 'George Hanson', 'Kali Rocha': 'Melissa Marx', 'Jennifer Aniston': 'Nina Borowski', 'Lena Cardwell': 'Girl at Community Center', 'Natalie B. Kikkenborg': 'Girl at Community Center', 'Lauren Pratt': 'Sally Miller', 'Hayden Panettiere': 'Mermaid', 'Lauren Chen': 'Violin Player', 'Liam Aiken': 'Nathan', 'Alan Alda': 'Sidney Miller', 'Allison Janney': 'Constance Miller', 'Tim Daly': 'Dr. Robert Joley', 'Janet Zarish': 'Dinner Guest', 'Ellen Tobie': 'Dinner Guest', 'Virl Andrick': 'Dinner Guest'}" tt0098258,"{'John Cusack': 'Lloyd Dobler', 'Ione Skye': 'Diane Court', 'John Mahoney': 'James Court', 'Lili Taylor': 'Corey Flood', 'Amy Brooks': 'D.C.', 'Pamela Adlon': 'Rebecca (as Pamela Segall)', 'Jason Gould': 'Mike Cameron', 'Loren Dean': 'Joe', 'Glenn Walker Harris Jr.': 'Jason Dobler', 'Charles Walker': 'Principal', 'Russel Lunday': 'Parent', 'Polly Platt': 'Mrs. Flood', 'Gloria Cromwell': 'Ruth', 'Jeremy Piven': 'Mark', ""Patrick O'Neill"": 'Denny'}" tt0343818,"{'Will Smith': 'Del Spooner', 'Bridget Moynahan': 'Susan Calvin', 'Alan Tudyk': 'Sonny', 'James Cromwell': 'Dr. Alfred Lanning', 'Bruce Greenwood': 'Lawrence Robertson', 'Adrian Ricard': 'Granny (as Adrian L. Ricard)', 'Chi McBride': 'Lt. John Bergin', 'Jerry Wasserman': 'Baldez', 'Fiona Hogan': 'V.I.K.I.', 'Peter Shinkoda': 'Chin', 'Terry Chen': 'Chin', 'David Haysom': 'NS4 Robot / NS5 Robot', 'Scott Heindl': 'NS4 Robot / NS5 Robot', 'Sharon Wilkins': 'Asthmatic Woman', 'Craig March': 'Detective'}" tt0093822,"{'Nicolas Cage': 'H.I. McDunnough', 'Holly Hunter': 'Ed', 'Trey Wilson': 'Nathan Arizona, Sr.', 'John Goodman': 'Gale', 'William Forsythe': 'Evelle', 'Sam McMurray': 'Glen', 'Frances McDormand': 'Dot', ""Randall 'Tex' Cobb"": 'Leonard Smalls', 'T.J. Kuhn': 'Nathan Junior (as T.J. Kuhn Jr.)', 'Lynne Kitei': 'Florence Arizona (as Lynne Dumin Kitei)', 'Peter Benedek': 'Prison Counselor', ""Charles 'Lew' Smith"": 'Nice Old Grocery Man', 'Warren Keith': 'Younger FBI Agent', 'Henry Kendrick': 'Older FBI Agent', 'Sidney Dawson': 'Ear-Bending Cellmate'}" tt0100403,"{'Kevin Peter Hall': 'The Predator', 'Danny Glover': 'Lieutenant Mike Harrigan', 'Gary Busey': 'Peter Keyes', 'Rubén Blades': 'Danny Archuleta (as Ruben Blades)', 'Maria Conchita Alonso': 'Leona Cantrell', 'Bill Paxton': 'Jerry Lambert', 'Robert Davi': 'Captain Phil Heinemann', 'Adam Baldwin': 'Garber', 'Kent McCord': 'Captain B. Pilgrim', 'Morton Downey Jr.': 'Tony Pope', 'Calvin Lockhart': 'King Willie', 'Steve Kahan': 'Sergeant', 'Henry Kingi': 'El Scorpio', 'Corey Rand': 'Ramon Vega', 'Elpidia Carrillo': 'Anna'}" tt0063442,"{'Charlton Heston': 'George Taylor', 'Roddy McDowall': 'Cornelius', 'Kim Hunter': 'Zira', 'Maurice Evans': 'Dr. Zaius', 'James Whitmore': 'President of the Assembly', 'James Daly': 'Honorious', 'Linda Harrison': 'Nova', 'Robert Gunner': 'Landon', 'Lou Wagner': 'Lucius', 'Woodrow Parfrey': 'Maximus', 'Jeff Burton': 'Dodge', 'Buck Kartalian': 'Julius', 'Norman Burton': 'Hunt Leader', 'Wright King': 'Dr. Galen', 'Paul Lambert': 'Minister'}" tt0119896,"{'Jennifer Aniston': 'Kate', 'Jay Mohr': 'Nick', 'Kevin Bacon': 'Sam', 'Olympia Dukakis': 'Rita', 'Illeana Douglas': 'Darcy', 'Kevin Dunn': 'Mr. Mercer', 'Anne Twomey': 'Sela', 'Faith Prince': 'Mrs. Mercer', 'John Rothman': 'Jim Davenport', 'Meg Gibson': 'Mrs. Davenport (as Margaret Gibson)', 'Paul Cassell': 'Brad', 'Ivar Brogger': '1st Ad Executive', 'Peter McRobbie': '2nd Ad Executive', 'Bray Poor': '3rd Ad Executive', 'Daryl Edwards': '4th Ad Executive'}" tt0183649,"{'Colin Farrell': 'Stu Shepard', 'Kiefer Sutherland': 'The Caller', 'Forest Whitaker': 'Captain Ramey', 'Radha Mitchell': 'Kelly Shepard', 'Katie Holmes': 'Pamela McFadden', 'Paula Jai Parker': 'Felicia', 'Arian Ash': 'Corky', 'Tia Texada': 'Asia', 'John Enos III': 'Leon', 'Richard T. Jones': 'Sergeant Cole', 'Keith Nobbs': 'Adam', 'Dell Yount': 'Pizza Guy', 'James MacDonald': 'Negotiator (as James Macdonald)', 'Josh Pais': 'Mario', 'Yorgo Constantine': 'ESU Commander'}" tt0066206,"{'George C. Scott': 'General George S. Patton Jr.', 'Karl Malden': 'General Omar N. Bradley', 'Stephen Young': 'Captain Chester B. Hansen', 'Michael Strong': 'Brigadier General Hobart Carver', 'Carey Loftin': ""General Bradley's Driver (as Cary Loftin)"", 'Albert Dumortier': 'Moroccan Minister', 'Frank Latimore': 'Lieutenant Colonel Henry Davenport', 'Morgan Paull': 'Captain Richard N. Jenson', 'Karl Michael Vogler': 'Field Marshal Erwin Rommel', 'Bill Hickman': ""General Patton's Driver"", 'Pat Zurica': 'First Lieutenant Alexander Stiller (as Patrick J. Zurica)', 'James Edwards': 'Sergeant William George Meeks', 'Lawrence Dobkin': 'Colonel Gaston Bell', 'David Bauer': 'Lieutenant Gen. Harry Buford', 'John Barrie': 'Air Vice-Marshal Sir Arthur Coningham'}" tt0265459,"{'Robin Williams': 'Seymour Parrish', 'Connie Nielsen': 'Nina Yorkin', 'Michael Vartan': 'Will Yorkin', 'Dylan Smith': 'Jakob Yorkin', 'Erin Daniels': 'Maya Burson', 'Paul Hansen Kim': 'Yoshi Araki', 'Lee Garlington': 'Waitress', 'Gary Cole': 'Bill Owens', 'Marion Calvert': 'Mrs. Von Unwerth', 'David Moreland': 'Mr. Siskind', ""Shaun P. O'Hagan"": 'Young Father', 'Jim Rash': 'Amateur Porn Guy', 'Nick Searcy': 'Repairman', 'Dave Engfer': 'Sav-Mart Clerk', 'Jimmy Shubert': 'Soccer Coach'}" tt0151738,"{'Drew Barrymore': 'Josie Geller', 'David Arquette': 'Rob Geller', 'Michael Vartan': 'Sam Coulson', 'Molly Shannon': 'Anita', 'John C. Reilly': 'Gus', 'Garry Marshall': 'Rigfort', 'Sean Whalen': 'Merkin', 'Cress Williams': 'George', 'Octavia Spencer': 'Cynthia (as Octavia L. Spencer)', 'Sarah DeVincentis': 'Rhoda', 'Allen Covert': 'Roger in Op-Ed', 'Armand Reiser': 'Dutton', 'David Doty': 'Hairplug Bruns', 'Derek Morgan': 'Armcast Henson (as Derrick Morgan)', 'Kathleen Marshall': 'Sun-Times Worker'}" tt0110638,"{'Jodie Foster': 'Nell', 'Liam Neeson': 'Jerome Lovell', 'Natasha Richardson': 'Paula Olsen', 'Richard Libertini': 'Alexander Paley', 'Nick Searcy': 'Todd Peterson', 'Robin Mullins': 'Mary Peterson', 'Jeremy Davies': 'Billy Fisher', ""O'Neal Compton"": 'Don Fontana', 'Heather M. Bomba': 'Twin #1', 'Marianne E. Bomba': 'Twin #2', 'Sean Bridgers': 'Mike Ibarra', 'Joe Inscoe': 'Judge', 'Stephanie Dawn Wood': 'Ruthie Lovell', 'Mary Lynn Riner': 'Janet Baring', 'Lucile McIntyre': 'Sally'}" tt0374900,"{'Jon Heder': 'Napoleon Dynamite', 'Jon Gries': 'Uncle Rico', 'Aaron Ruell': 'Kip', 'Efren Ramirez': 'Pedro', 'Diedrich Bader': 'Rex', 'Tina Majorino': 'Deb', 'Sandy Martin': 'Grandma', 'Haylie Duff': 'Summer Wheatly', 'Trevor Snarr': 'Don', 'Shondrella Avery': 'Lafawnduh', 'Bracken Johnson': 'Randy', 'Carmen Brady': 'Starla', 'Ellen Dubin': 'Ilene', 'J.C. Cunningham': 'Jock #1', 'Jimmy Stevens': 'Jock #2 (as James Smooth)'}" tt0151804,"{'Ron Livingston': 'Peter', 'Jennifer Aniston': 'Joanna', 'David Herman': 'Michael Bolton', 'Ajay Naidu': 'Samir', 'Diedrich Bader': 'Lawrence', 'Stephen Root': 'Milton', 'Gary Cole': 'Bill Lumbergh', 'Richard Riehle': 'Tom Smykowski', 'Alexandra Wentworth': 'Anne', 'Joe Bays': 'Dom Portwood', 'John C. McGinley': 'Bob Slydell', 'Paul Willson': 'Bob Porter', 'Kinna McInroe': 'Nina', 'Todd Duffey': ""Chotchkie's Waiter"", 'Greg Pitts': 'Drew'}" tt0093773,"{'Arnold Schwarzenegger': 'Dutch', 'Carl Weathers': 'Dillon', 'Elpidia Carrillo': 'Anna', 'Bill Duke': 'Mac', 'Jesse Ventura': 'Blain', 'Sonny Landham': 'Billy', 'Richard Chaves': 'Poncho', 'R.G. Armstrong': 'General Phillips', 'Shane Black': 'Hawkins', 'Kevin Peter Hall': 'The Predator / Helicopter Pilot'}" tt0433416,"{'Kal Penn': 'Nikhil a.k.a. Gogol', 'Tabu': 'Ashima', 'Irrfan Khan': 'Ashoke', 'Jacinda Barrett': 'Maxine', 'Zuleikha Robinson': 'Moushumi Mazumdar', 'Brooke Smith': 'Sally', 'Sahira Nair': 'Sonia', 'Jagannath Guha': 'Ghosh', 'Ruma Guha Thakurta': ""Ashoke's Mother"", 'Sandip Deb': 'Music Teacher', 'Sukanya': 'Rini', 'Tanushree Shankar': ""Ashima's Mother"", 'Sabyasachi Chakrabarty': ""Ashima's Father"", 'Tamal Ray Chowdhury': ""Ashoke's Father"", 'Dhruv Mookerji': 'Rana'}" tt0051878,"{'Paul Newman': 'Ben Quick', 'Joanne Woodward': 'Clara Varner', 'Anthony Franciosa': 'Jody Varner', 'Orson Welles': 'Will Varner', 'Lee Remick': 'Eula Varner', 'Angela Lansbury': 'Minnie Littlejohn', 'Richard Anderson': 'Alan Stewart', 'Sarah Marshall': 'Agnes Stewart', 'Mabel Albertson': 'Elizabeth Stewart', ""J. Pat O'Malley"": 'Ratliff', 'Bill Walker': 'Lucius (as William Walker)'}" tt0104691,"{'Daniel Day-Lewis': 'Hawkeye (Nathaniel Poe)', 'Madeleine Stowe': 'Cora Munro', 'Russell Means': 'Chingachgook', 'Eric Schweig': 'Uncas', 'Jodhi May': 'Alice Munro', 'Steven Waddington': 'Maj. Duncan Heyward', 'Wes Studi': 'Magua', 'Maurice Roëves': 'Col. Edmund Munro', 'Patrice Chéreau': 'Gen Montcalm', 'Edward Blatchford': 'Jack Winthrop', 'Terry Kinney': 'John Cameron', 'Tracey Ellis': 'Alexandra Cameron', 'Justin M. Rice': 'James Cameron', 'Dennis Banks': 'Ongewasgone', 'Pete Postlethwaite': 'Capt. Beams'}" tt0455590,"{'Forest Whitaker': 'Idi Amin', 'James McAvoy': 'Dr. Nicholas Garrigan', 'Kerry Washington': 'Kay Amin', 'Gillian Anderson': 'Sarah Merrit', 'Simon McBurney': 'Stone', 'David Oyelowo': 'Dr. Junju', 'Stephen Rwangyezi': 'Jonah Wasswa', 'Abby Mukiibi Nkaaga': 'Masanga (as Abby Mukiibi)', 'Adam Kotz': 'Dr. Merrit', 'Sam Okelo': 'Bonny', 'Sarah Nagayi': 'Tolu', 'Chris Wilson': 'Perkins', 'Dick Stockley': 'Times Journalist (as Dr. Dick Stockley)', 'Barbara Rafferty': 'Mrs. Garrigan', 'David Ashton': 'Dr. Garrigan - Senior'}" tt0203009,"{'Nicole Kidman': 'Satine', 'Ewan McGregor': 'Christian', 'John Leguizamo': 'Toulouse-Lautrec', 'Jim Broadbent': 'Harold Zidler', 'Richard Roxburgh': 'The Duke', 'Garry McDonald': 'The Doctor', 'Jacek Koman': 'The Unconscious Argentinean', 'Matthew Whittet': 'Satie', 'Kerry Walker': 'Marie', ""Caroline O'Connor"": 'Nini Legs In The Air', 'Christine Anu': 'Arabia', 'Natalie Mendoza': 'China Doll', 'Lara Mulcahy': 'Môme Fromage', 'David Wenham': 'Audrey', 'Kylie Minogue': 'The Green Fairy'}" tt0104952,"{'Joe Pesci': 'Vinny Gambini', 'Ralph Macchio': 'Bill Gambini', 'Marisa Tomei': 'Mona Lisa Vito', 'Mitchell Whitfield': 'Stan Rothenstein', 'Fred Gwynne': 'Judge Chamberlain Haller', 'Lane Smith': 'Jim Trotter III', 'Austin Pendleton': 'John Gibbons', 'Bruce McGill': 'Sheriff Farley', 'Maury Chaykin': 'Sam Tipton', 'Paulene Myers': 'Constance Riley (as Pauline Meyers)', 'Raynor Scheine': 'Ernie Crane', 'James Rebhorn': 'George Wilbur', 'Chris Ellis': 'J.T.', 'Michael Simpson': 'Neckbrace', 'Lou Walker': 'Grits Cook'}" tt0107614,"{'Robin Williams': 'Daniel Hillard / Mrs. Doubtfire', 'Sally Field': 'Miranda Hillard', 'Pierce Brosnan': 'Stu', 'Harvey Fierstein': 'Frank', 'Polly Holliday': 'Gloria', 'Lisa Jakub': 'Lydia Hillard', 'Matthew Lawrence': 'Chris Hillard', 'Mara Wilson': 'Natalie Hillard', 'Robert Prosky': 'Mr. Lundy', 'Anne Haney': 'Mrs. Sellner', 'Scott Capurro': 'Jack', 'Sydney Walker': 'Bus Driver', 'Joe Bellan': 'TV Boss', 'Martin Mull': 'Justin Gregory', 'Terence McGovern': 'ADR Director Lou'}" tt0039628,"{""Maureen O'Hara"": 'Doris Walker', 'John Payne': 'Fred Gailey', 'Edmund Gwenn': 'Kris Kringle', 'Gene Lockhart': 'Judge Henry X. Harper', 'Natalie Wood': 'Susan Walker', 'Porter Hall': 'Granville Sawyer', 'William Frawley': 'Charlie Halloran', 'Jerome Cowan': 'Dist. Atty. Thomas Mara', 'Philip Tonge': 'Julian Shellhammer'}" tt0183505,"{'Jim Carrey': 'Charlie / Hank', 'Renée Zellweger': 'Irene', 'Anthony Anderson': 'Jamaal', 'Mongo Brownlee': 'Lee Harvey', 'Jerod Mixon': 'Shonté Jr.', 'Chris Cooper': 'Lieutenant Gerke', 'Michael Bowman': 'Whitey', 'Richard Jenkins': 'Agent Boshane', 'Robert Forster': 'Colonel Partington', 'Mike Cerrone': 'Officer Stubie', 'Rob Moran': 'Trooper Finneran', 'Daniel Greene': 'Dickie Thurman', 'Tony Cox': 'Limo Driver', 'Andrew Phillips': 'Lee Harvey - Age 9', 'Jeremy Maleek Leggett': 'Jamaal - Age 9'}" tt0203019,"{'Robert De Niro': 'Master Chief Billy Sunday', 'Cuba Gooding Jr.': 'Chief Carl Brashear', 'Charlize Theron': 'Gwen Sunday', 'Aunjanue Ellis': 'Jo', 'Hal Holbrook': ""'Mr. Pappy'"", 'Michael Rapaport': 'GM1 Snowhill', 'Powers Boothe': 'Captain Pullman', 'David Keith': 'Captain Hartigan', 'Holt McCallany': 'MM1 Dylan Rourke', 'David Conrad': 'Lt. / Cmdr. / Capt. Hanks', 'Joshua Leonard': 'PO2 Timothy Douglas Isert', 'Carl Lumbly': 'Mac Brashear', 'Lonette McKee': 'Ella Brashear', 'Glynn Turman': 'Chief Floyd', 'Dennis Troutman': 'Boots'}" tt0066026,"{'Donald Sutherland': 'Hawkeye Pierce', 'Elliott Gould': 'Trapper John McIntyre', 'Tom Skerritt': 'Duke Forrest', 'Sally Kellerman': ""Maj. Margaret 'Hot Lips' O'Houlihan"", 'Robert Duvall': 'Maj. Frank Burns', 'Roger Bowen': 'Lt. Col. Henry Blake', 'Rene Auberjonois': 'Father John Mulcahy', 'David Arkin': 'Sgt. Major Vollmer', 'Jo Ann Pflug': ""Lt. 'Dish'"", 'Gary Burghoff': ""Cpl. 'Radar' O'Reilly"", 'Fred Williamson': ""Dr. Oliver 'Spearchucker' Jones"", 'Michael Murphy': ""'Me Lai' Marston"", 'Indus Arthur': 'Lt. Leslie', 'Ken Prymus': 'PFC. Seidman', 'Bobby Troup': 'Sgt. Gorman'}" tt0100114,"{'Steven Seagal': 'John Hatcher', 'Basil Wallace': 'Screwface', 'Keith David': 'Max', 'Tom Wright': 'Charles', 'Joanna Pacula': 'Leslie', 'Elizabeth Gracen': 'Melissa', 'Bette Ford': 'Kate Hatcher', 'Danielle Harris': 'Tracey', 'Al Israel': 'Tito Barco', 'Arlen Dean Snyder': 'Duvall', 'Victor Romero Evans': 'Nesta', 'Michael Ralph': 'Monkey', 'Jeffrey Anderson-Gunter': 'Nago', 'Tony DiBenedetto': 'Jimmy Fingers', 'Kevin Dunn': 'Lt. Sal Roselli'}" tt0328107,"{'Denzel Washington': 'John W. Creasy', 'Dakota Fanning': 'Lupita Ramos', 'Radha Mitchell': 'Lisa Ramos', 'Christopher Walken': 'Paul Rayburn', 'Marc Anthony': 'Samuel Ramos', 'Giancarlo Giannini': 'Miguel Manzano', 'Mickey Rourke': 'Jordan Kalfus', 'Rachel Ticotin': 'Mariana Garcia Guerrero', 'Roberto Sosa': 'Daniel Sanchez', 'Jesús Ochoa': 'Victor Fuentes', 'Gero Camilo': 'Aurelio Sanchez', 'Mario Zaragoza': 'Jorge Gonzalez', 'Charles Paraventi': 'Jersey Boy', 'Carmen Salinas': 'Guardian Three', 'Esteban De La Trinidad': 'Guardian Two'}" tt0337978,"{'Bruce Willis': 'John McClane', 'Timothy Olyphant': 'Thomas Gabriel', 'Justin Long': ""Matthew 'Matt' Farrell"", 'Maggie Q': 'Mai Linh', 'Cliff Curtis': 'FBI Deputy Director Miguel Bowman', 'Jonathan Sadowski': 'Trey', 'Andrew Friedman': 'Casper', 'Kevin Smith': ""Frederick 'Warlock' Kaludis"", 'Yorgo Constantine': 'Russo', 'Cyril Raffaelli': 'Rand', 'Chris Palermo': 'Del (as Christopher Palermo)', 'Mary Elizabeth Winstead': 'Lucy Gennaro McClane', 'Sung Kang': 'Raj', 'Zeljko Ivanek': 'Agent Molina', 'Christina Chang': 'Taylor'}" tt0449059,"{'Abigail Breslin': 'Olive Hoover', 'Greg Kinnear': 'Richard Hoover', 'Paul Dano': 'Dwayne', 'Alan Arkin': 'Grandpa Edwin Hoover', 'Toni Collette': 'Sheryl Hoover', 'Steve Carell': 'Frank Ginsberg', 'Marc Turtletaub': 'Doctor #1', 'Jill Talley': 'Cindy', 'Brenda Canela': 'Diner Waitress', 'Julio Oscar Mechoso': 'Mechanic', 'Chuck Loring': 'Convenience Store Proprietor', 'Justin Shilton': 'Josh', 'Gordon Thomson': 'Larry Sugarman', 'Steven Christopher Parker': 'Teen Boy #1', 'Bryan Cranston': 'Stan Grossman'}" tt0240468,"{'Steve Oedekerk': 'Chosen One', 'Fei Lung': 'Master Pain (Betty) (archive footage) (as Lung Fai)', 'Leo Lee': 'Young Master Pain', 'Ling-Ling Hsieh': 'Ling (archive footage) (as Tse Ling Ling)', 'Lin Yan': 'Dying Ling (as Yan Lin)', 'Chia Yung Liu': 'Wimp Lo (archive footage) (as Lau Kar Wing)', 'Hui Lou Chen': 'Master Tang (archive footage) (as Chen Hui Lou)', 'Chi Ma': 'Master Doe (archive footage) (as Ma Chi)', 'Jennifer Tung': 'Whoa', 'Escobar Tongue': 'Tonguey (credit only)', 'Ming Lo': 'Father', 'Peggy Lu': 'Mother', 'Tad Horino': 'Chew Fat Lip', 'Tori Tran': 'Peasant Woman', 'Simon Rhee': ""Young Master Pain's Henchman""}" tt0264761,"{'Jennifer Westfeldt': 'Jessica Stein', 'Tovah Feldshuh': 'Judy Stein', 'Esther Wurmfeld': 'Grandma Esther', 'Hillel Friedman': 'Rabbi', 'Ben Feldman': 'Himself', 'Robert Ari': 'Sidney Stein', 'David Aaron Baker': 'Dan Stein', 'Jennifer Carta': ""Rachel - Dan's Fiancée"", 'Ben Weber': 'Larry', 'Brian Stepanek': 'Peter', 'Nick Corley': 'Howard', 'Jackie Hoffman': 'Joan', 'John Cariani': 'Chuck', 'Scott Cohen': 'Josh Meyers', 'Christopher Berger': 'Malaprops Guy'}" tt0320661,"{'Martin Hancock': 'Gravedigger', 'Michael Sheen': 'Priest', 'Nathalie Cox': ""Balian's Wife"", 'Eriq Ebouaney': 'Firuz', 'Jouko Ahola': 'Odo', 'David Thewlis': 'Hospitaler', 'Liam Neeson': 'Godfrey de Ibelin', 'Philip Glenister': 'Squire', 'Orlando Bloom': 'Balian de Ibelin', 'Bronson Webb': 'Apprentice', 'Kevin McKidd': 'English Sergeant', 'Nikolaj Coster-Waldau': 'Village Sheriff', 'Steven Robertson': 'Angelic Priest', 'Marton Csokas': 'Guy de Lusignan', 'Alexander Siddig': 'Imad'}" tt0305711,"{'Ashton Kutcher': 'Tom', 'Brittany Murphy': 'Sarah', 'Christian Kane': 'Peter Prentiss', 'David Moscow': 'Kyle', 'Monet Mazur': 'Lauren (as Monét Mazur)', 'David Rasche': 'Mr. McNerney', 'Thad Luckinbill': 'Willie McNerney', 'David Agranov': 'Paul McNerney', 'Taran Killam': 'Dickie McNerney', 'Raymond J. Barry': 'Mr. Leezak', 'Toshi Toda': 'Yuan', 'George Gaynes': 'Father Robert', 'Massimo Schina': 'Fredo', 'Valeria Andrews': 'Wendy (as Valeria)', 'Alex Thomas': 'Fred'}" tt0091306,"{'Whoopi Goldberg': 'Terry Doolittle', 'Stephen Collins': 'Marty Phillips', 'John Wood': 'Jeremy Talbott', 'Carol Kane': 'Cynthia', 'Annie Potts': 'Liz Carlson', 'Peter Michael Goetz': 'Mr. Page', 'Roscoe Lee Browne': 'Archer Lincoln', 'Sara Botsford': 'Lady Sarah Billings', 'Jeroen Krabbé': 'Mark Van Meter (as Jeroen Krabbe)', 'Vyto Ruginis': 'Carl', 'Jonathan Pryce': 'Jack', 'Tony Hendra': 'Hunter', 'Jon Lovitz': 'Doug', 'Phil Hartman': 'Fred (as Phil E. Hartmann)', 'Lynne Marie Stewart': 'Karen'}" tt0359517,"{'Cedric the Entertainer': 'Nate Johnson / Uncle Earl', 'Vanessa Williams': 'Dorothy Johnson', 'Solange': 'Nikki Johnson (as Solange Knowles)', 'Shad Moss': 'D.J. Johnson (as Bow Wow)', 'Gabby Soleil': 'Destiny Johnson', 'Shannon Elizabeth': 'Chrishelle Rene Boudreau', 'Steve Harvey': 'Mack Johnson', 'Aloma Wright': 'Glorietta Johnson', 'Shari Headley': 'Jacqueline', 'Jennifer Freeman': 'Jill', 'Philip Bolden': 'Mack, Jr. (as Philip Daniel Bolden)', 'Rodney Perry': 'Cousin Lump (as Rodney B. Perry)', 'Christopher B. Duncan': 'Stan', 'Lorna Scott': 'Gladys', 'Kevin P. Farley': 'Stall Guy (as Kevin Farley)'}" tt0036613,"{'Cary Grant': 'Mortimer Brewster', 'Priscilla Lane': 'Elaine Harper', 'Raymond Massey': 'Jonathan Brewster', 'Jack Carson': ""O'Hara"", 'Edward Everett Horton': 'Mr. Witherspoon', 'Peter Lorre': 'Dr. Einstein', 'James Gleason': 'Lt. Rooney', 'Josephine Hull': 'Abby Brewster', 'Jean Adair': 'Martha Brewster', 'John Alexander': ""'Teddy Roosevelt' Brewster"", 'Grant Mitchell': 'Reverend Harper', 'Edward McNamara': 'Brophy', 'Garry Owen': 'Taxi Cab Driver', 'John Ridgely': 'Saunders', 'Vaughan Glaser': 'Judge Cullman'}" tt0107034,"{'Macaulay Culkin': 'Henry', 'Elijah Wood': 'Mark', 'Wendy Crewson': 'Susan', 'David Morse': 'Jack', 'Daniel Hugh Kelly': 'Wallace', 'Jacqueline Brookes': 'Alice', 'Quinn Culkin': 'Connie', 'Ashley Crow': 'Janice', 'Guy Strauss': 'Arizona Doctor', 'Keith Brava': 'Doctor in Blackport', 'Jerem Goodwin': 'Factory Worker', 'Andria Hall': 'Woman Reporter', 'Bobby Huber': 'Axe Man', 'Mark Stefanich': 'Ice Man', 'Susan Hopper': 'Woman at Rescue'}" tt0454841,"{'Maxime Giffard': 'First Victim', 'Michael Bailey Smith': 'Pluto', 'Tom Bower': 'Gas Station Attendant', 'Ted Levine': 'Big Bob', 'Kathleen Quinlan': 'Ethel', 'Dan Byrd': 'Bobby', 'Emilie de Ravin': 'Brenda', 'Aaron Stanford': 'Doug', 'Vinessa Shaw': 'Lynn', 'Maisie Camilleri Preziosi': 'Baby Catherine', 'Robert Joy': 'Lizard', 'Laura Ortiz': 'Ruby', 'Ezra Buzzington': 'Goggle', 'Billy Drago': 'Papa Jupiter', 'Greg Nicotero': 'Cyst'}" tt0054997,"{'Paul Newman': 'Eddie Felson', 'Jackie Gleason': 'Minnesota Fats', 'Piper Laurie': 'Sarah Packard', 'George C. Scott': 'Bert Gordon', 'Myron McCormick': 'Charlie Burns', 'Murray Hamilton': 'Findley', 'Michael Constantine': 'Big John', 'Stefan Gierasch': 'Preacher', 'Clifford A. Pellow': 'Turk (as Cliff Pellow)', 'Jake LaMotta': 'Bartender', 'Gordon B. Clarke': 'Cashier', 'Alexander Rose': 'Score Keeper', 'Carolyn Coates': 'Waitress', 'Carl York': 'Young Hustler', 'Vincent Gardenia': 'Bartender'}" tt0120703,"{'Angela Bassett': 'Stella Payne', 'Taye Diggs': 'Winston Shakespeare', 'Whoopi Goldberg': 'Delilah Abraham', 'Regina King': 'Vanessa', 'Suzzanne Douglas': 'Angela', 'Michael J. Pagan': 'Quincy Payne', 'Sicily Johnson': 'Chantel (as Sicily)', 'Richard Lawson': 'Jack', 'Barry Shabaka Henley': 'Buddy', 'Lee Weaver': 'Nate', 'Glynn Turman': 'Dr. Shakespeare', 'Phyllis Yvonne Stickney': 'Mrs. Shakespeare', 'Denise Hunt': 'Ms. Thang', 'Lisa Hanna': 'Abby', 'James Pickens Jr.': 'Walter Payne'}" tt0465494,"{'Timothy Olyphant': 'Agent 47', 'Dougray Scott': 'Mike Whittier', 'Olga Kurylenko': 'Nika Boronina', 'Robert Knepper': 'Yuri Marklov', 'Ulrich Thomsen': 'Mikhail Belicoff', 'Henry Ian Cusick': 'Udre Belicoff', 'Michael Offei': 'Jenkins', 'Christian Erickson': 'General Kormarov', 'Eriq Ebouaney': 'Bwana Ovie', 'Joe Sheridan': 'Captain Gudnayev', 'James Faulkner': 'Smith Jamison', 'Jean-Marc Bellu': 'Hitman #2', 'Nicky Naudé': 'Hitman #3 (as Nicky Naude)', 'Abdou Sagna': 'Hitman #4', 'Ilya Nikitenko': 'Hitman #5'}" tt0101410,"{'John Turturro': 'Barton Fink', 'John Goodman': 'Charlie Meadows', 'Judy Davis': 'Audrey Taylor', 'Michael Lerner': 'Jack Lipnick', 'John Mahoney': 'W.P. Mayhew', 'Tony Shalhoub': 'Ben Geisler', 'Jon Polito': 'Lou Breeze', 'Steve Buscemi': 'Chet', 'David Warrilow': 'Garland Stanford', 'Richard Portnow': 'Detective Mastrionotti', 'Christopher Murney': 'Detective Deutsch', 'I.M. Hobson': 'Derek', 'Meagen Fay': 'Poppy Carnahan (as Megan Faye)', 'Lance Davis': 'Richard St. Claire', 'Harry Bugin': 'Pete'}" tt0356721,"{'Jason Schwartzman': 'Albert Markovski', 'Isabelle Huppert': 'Caterine Vauban', 'Dustin Hoffman': 'Bernard', 'Lily Tomlin': 'Vivian', 'Jude Law': 'Brad Stand', 'Mark Wahlberg': 'Tommy Corn', 'Naomi Watts': 'Dawn Campbell', 'Angela Grillo': 'Angela Franco', 'Ger Duany': 'Mr. Stephen Nimieri', 'Darlene Hunt': 'Darlene', 'Kevin Dunn': 'Marty', 'Ben Hernandez Bray': 'Davy (as Benny Hernandez)', 'Richard Appel': 'Josh', 'Benjamin Nurick': 'Harrison', 'Jake Muxworthy': 'Tim'}" tt0119381,"{'Joaquin Phoenix': 'Doug Holt', 'Billy Crudup': 'Jacey Holt', 'Will Patton': 'Lloyd Abbott', 'Kathy Baker': 'Helen Holt', 'Jennifer Connelly': 'Eleanor Abbott', 'Michael Sutton': 'Steve', 'Liv Tyler': 'Pamela Abbott', 'Joanna Going': 'Alice Abbott', 'Barbara Williams': 'Joan Abbott', 'Alessandro Nivola': 'Peter Vanlaningham', 'Nicole M. Vassallo': 'Giggling Girl #1', 'Amanda Sherman': 'Giggling Girl #2', 'Shawn Hatosy': 'Victor', 'Garrett M. Brown': 'Webb Crosby', 'Julie Benz': 'Co-ed'}" tt0388125,"{'Cameron Diaz': 'Maggie', 'Anson Mount': 'Todd', 'Toni Collette': 'Rose', 'Richard Burgi': 'Jim Danvers', 'Candice Azzara': 'Sydelle Feller', 'Brooke Smith': 'Amy', 'John Mastrangelo Sr.': 'Di Bruno Bros. Cheese Guy', 'Emilio Mignucci': 'Di Bruno Bros. Cheese Guy (as Emilo Mignucci)', 'Mark Feuerstein': 'Simon Stein', 'Terrance Christopher Jones': 'Lawyer', 'Nicole Randall Johnson': ""Rose's Assistant"", 'Kateri DeMartino': 'Ferocious Shopper (as Kateri Demartino)', 'Brandon Karrer': 'Canal House Guy', 'Jon Ingrassia': 'Bartender', 'Jason Peck': 'Cuervo Carl'}" tt0455967,"{'Jesse Metcalfe': 'John Tucker', 'Brittany Snow': 'Kate', 'Ashanti': 'Heather', 'Sophia Bush': 'Beth', 'Arielle Kebbel': 'Carrie', 'Penn Badgley': 'Scott', 'Jenny McCarthy': 'Lori', 'Fatso-Fasano': 'Tommy (as Fatsô-Fasanô)', 'Kevin McNulty': 'Basketball Coach', 'Patricia Drake': 'Coach Williams', 'Amanda Li': 'Spelling Bee Girl', 'Jeffrey Ballard': 'Cute Boy (as Jeff Ballard)', 'Taylor Kitsch': 'Justin', 'Steve Bacic': 'Skip #1', 'Dean Wray': 'Skip #2'}" tt0116705,"{'Arnold Schwarzenegger': 'Howard Langston', 'Sinbad': 'Myron Larabee', 'Phil Hartman': 'Ted Maltin', 'Rita Wilson': 'Liz Langston', 'Robert Conrad': 'Officer Hummell', 'Martin Mull': 'D.J.', 'Jake Lloyd': 'Jamie Langston', 'Jim Belushi': 'Mall Santa (as James Belushi)', 'E.J. De la Pena': 'Johnny (as E.J. de la Pena)', 'Laraine Newman': 'First Lady', 'Justin Chapman': 'Billy', 'Harvey Korman': 'President', 'Richard Moll': 'Dementor', 'Daniel Riordan': 'Turbo Man', 'Jeff L. Deist': 'T.V. Booster / Puppeteer (as Jeff Deist)'}" tt0119349,"{'Kevin Kline': 'Ben Hood', 'Joan Allen': 'Elena Hood', 'Sigourney Weaver': 'Janey Carver', 'Henry Czerny': 'George Clair', 'Tobey Maguire': 'Paul Hood', 'Christina Ricci': 'Wendy Hood', 'Elijah Wood': 'Mikey Carver', 'Adam Hann-Byrd': 'Sandy Carver', 'David Krumholtz': 'Francis Davenport', 'Jamey Sheridan': 'Jim Carver', 'Kate Burton': 'Dorothy Franklin', 'William Cain': 'Ted Shackley', 'Michael Cumpsty': 'Philip Edwards', 'Maia Danziger': 'Mrs. Gadd', 'Katie Holmes': 'Libbets Casey'}" tt0298845,"{'Paddy Considine': 'Johnny', 'Samantha Morton': 'Sarah', 'Sarah Bolger': 'Christy', 'Emma Bolger': 'Ariel', 'Neal Jones': 'Immigration Officer #1', 'Randall Carlton': 'Immigration Officer #2', 'Ciaran Cronin': 'Frankie', 'Djimon Hounsou': 'Mateo', 'Juan Carlos Hernández': 'Papo (as Juan Hernandez)', 'Nye Heron': 'Blind Man', 'Jason Salkey': 'Tony', 'Rene Millan': 'Steve', 'Sara James': ""Papo's Girlfriend"", 'Bob Gallico': 'Theatre Director', 'Jason Killalee': 'Assistant Theatre Director'}" tt0089370,"{'Michael Douglas': 'Jack', 'Kathleen Turner': 'Joan', 'Danny DeVito': 'Ralph', 'Spyros Fokas': 'Omar (as Spiros Focás)', 'Avner Eisenberg': 'Jewel', 'Paul David Magid': 'Tarak', 'Howard Jay Patterson': 'Barak', 'Randall Edwin Nelson': 'Karak', 'Samuel Ross Williams': 'Arak', 'Timothy Daniel Furst': 'Sarak', 'Hamid Fillali': 'Rachid', 'Holland Taylor': 'Gloria', 'Guy Cuevas': 'Le Vasseur', 'Peter DePalma': 'Missionary (as Peter De Palma)', 'Mark Daly Richards': 'Pirate'}" tt0343818,"{'Will Smith': 'Del Spooner', 'Bridget Moynahan': 'Susan Calvin', 'Alan Tudyk': 'Sonny', 'James Cromwell': 'Dr. Alfred Lanning', 'Bruce Greenwood': 'Lawrence Robertson', 'Adrian Ricard': 'Granny (as Adrian L. Ricard)', 'Chi McBride': 'Lt. John Bergin', 'Jerry Wasserman': 'Baldez', 'Fiona Hogan': 'V.I.K.I.', 'Peter Shinkoda': 'Chin', 'Terry Chen': 'Chin', 'David Haysom': 'NS4 Robot / NS5 Robot', 'Scott Heindl': 'NS4 Robot / NS5 Robot', 'Sharon Wilkins': 'Asthmatic Woman', 'Craig March': 'Detective'}" tt0116629,"{'Will Smith': 'Capt. Steven Hiller', 'Bill Pullman': 'President Thomas J. Whitmore', 'Jeff Goldblum': 'David Levinson', 'Mary McDonnell': 'Marilyn Whitmore', 'Judd Hirsch': 'Julius Levinson', 'Robert Loggia': 'General William Grey', 'Randy Quaid': 'Russell Casse', 'Margaret Colin': 'Constance Spano', 'James Rebhorn': 'Albert Nimziki', 'Harvey Fierstein': 'Marty Gilbert', 'Adam Baldwin': 'Major Mitchell', 'Brent Spiner': 'Dr. Brakish Okun', 'James Duval': 'Miguel', 'Vivica A. Fox': 'Jasmine Dubrow', 'Lisa Jakub': 'Alicia'}" tt0449010,"{'Ed Speleers': 'Eragon', 'Jeremy Irons': 'Brom', 'Sienna Guillory': 'Arya', 'Robert Carlyle': 'Durza', 'John Malkovich': 'Galbatorix', 'Garrett Hedlund': 'Murtagh', 'Alun Armstrong': 'Uncle Garrow', 'Christopher Egan': 'Roran (as Chris Egan)', 'Gary Lewis': 'Hrothgar', 'Djimon Hounsou': 'Ajihad', 'Rachel Weisz': 'Saphira (voice)', 'Richard Rifkin': 'Horst', 'Steve Speirs': 'Sloan', 'Joss Stone': 'Angela', 'Michael Mehlmann': 'Villager #1 (as Michael A. Mehlmann)'}" tt0104431,"{'Macaulay Culkin': 'Kevin', 'Joe Pesci': 'Harry', 'Daniel Stern': 'Marv', ""Catherine O'Hara"": 'Kate', 'John Heard': 'Peter', 'Devin Ratray': 'Buzz', 'Hillary Wolf': 'Megan', 'Maureen Elisabeth Shay': 'Linnie', 'Michael C. Maronna': 'Jeff', 'Gerry Bamman': 'Uncle Frank', 'Terrie Snell': 'Aunt Leslie', 'Jedidiah Cohen': 'Rod', 'Senta Moses Mikan': 'Tracy (as Senta Moses)', 'Diana Rein': 'Sondra (as Daiana Campeanu)', 'Kieran Culkin': 'Fuller'}" tt0382077,"{'Robert De Niro': 'David Callaway', 'Dakota Fanning': 'Emily Callaway', 'Famke Janssen': 'Katherine', 'Elisabeth Shue': 'Elizabeth', 'Amy Irving': 'Alison Callaway', 'Dylan Baker': 'Sheriff Hafferty', 'Melissa Leo': 'Laura', 'Robert John Burke': 'Steven', 'Molly Grant Kallins': 'Amy', 'David Chandler': 'Mr. Haskins', 'Stewart Summers': 'Doctor', 'Jake Dylan Baumer': 'Disturbed Boy'}" tt0107144,"{'Charlie Sheen': 'Topper Harley', 'Lloyd Bridges': 'Tug Benson', 'Valeria Golino': 'Ramada Rodham Hayman', 'Richard Crenna': 'Col. Denton Walters', 'Brenda Bakke': 'Michelle Rodham Huddleston', 'Miguel Ferrer': 'Harbinger', 'Rowan Atkinson': 'Dexter Hayman', 'Jerry Haleva': 'Saddam Hussein', 'David Wohl': 'Gerou', 'Mitchell Ryan': 'Gray Edwards', 'Michael Colyar': 'Williams', 'Ryan Stiles': 'Rabinowitz', 'Rosemary Johnston': 'Lavinia Rodham Benson', 'Ben Lemon': 'Team 2 Leader', 'Buck McDancer': 'Richard Nixon'}" tt0102059,"{'Charlie Sheen': 'Topper Harley / Rhett Butler / Superman', 'Cary Elwes': 'Kent Gregory', 'Valeria Golino': ""Ramada Thompson / Scarlett O'Hara / Lois Lane"", 'Lloyd Bridges': 'Admiral Benson', 'Kevin Dunn': 'Lt. Commander Block', 'Jon Cryer': ""Jim 'Wash Out' Pfaffenbach"", ""William O'Leary"": ""Pete 'Dead Meat' Thompson"", 'Kristy Swanson': 'Kowalski', 'Efrem Zimbalist Jr.': 'Wilson', 'Bill Irwin': 'Buzz Harley', 'Heidi Swedberg': ""Mrs. 'Deat Meat' Thompson"", 'Bruce A. Young': ""'Red' Herring"", 'Ryan Stiles': ""'Mailman' Farnham"", 'Rino Thunder': ""Owatonna, 'The Old One'"", 'Mark Arnott': 'Rosener'}" tt0120681,"{'Johnny Depp': 'Inspector Frederick Abberline', 'Heather Graham': 'Mary Kelly', 'Ian Holm': 'Sir William Gull', 'Robbie Coltrane': 'Sergeant Peter Godley', 'Ian Richardson': 'Sir Charles Warren', 'Jason Flemyng': 'Netley, the Coachman', 'Katrin Cartlidge': 'Dark Annie Chapman', 'Terence Harvey': ""Benjamin 'Ben' Kidney"", 'Susan Lynch': 'Liz Stride', 'Paul Rhys': 'Dr. Ferral', 'Lesley Sharp': 'Kate Eddowes', 'Estelle Skornik': 'Ada', 'Nicholas McGaughey': 'Officer Bolt', 'Annabelle Apsion': 'Polly Nichols', 'Joanna Page': 'Ann Crook'}" tt0377062,"{'Dennis Quaid': 'Frank Towns', 'Tyrese Gibson': 'A.J.', 'Giovanni Ribisi': 'Elliott', 'Miranda Otto': 'Kelly Johnson', 'Tony Curran': 'Alex Rodney', 'Sticky Fingaz': 'Jeremy (as Kirk Jones)', 'Jacob Vargas': 'Sammi', 'Hugh Laurie': 'Ian', 'Scott Michael Campbell': 'James Liddle', 'Kevork Malikyan': 'Rady', 'Jared Padalecki': 'John Davis', 'Paul Ditchfield': 'Dr. Gerber', 'Martin Hindy': ""Newman (as Martin 'Mako' Hindy)"", 'Bob Brown': 'Kyle', 'Anthony Brandon Wong': 'Lead Smuggler (as Anthony Wong)'}" tt0099785,"{'Macaulay Culkin': 'Kevin', 'Joe Pesci': 'Harry', 'Daniel Stern': 'Marv', 'John Heard': 'Peter', 'Roberts Blossom': 'Marley', ""Catherine O'Hara"": 'Kate', 'Angela Goethals': 'Linnie', 'Devin Ratray': 'Buzz', 'Gerry Bamman': 'Uncle Frank', 'Hillary Wolf': 'Megan', 'John Candy': 'Gus Polinski', 'Larry Hankin': 'Officer Balzak', 'Michael C. Maronna': 'Jeff', 'Kristin Minter': 'Heather', 'Diana Rein': 'Sondra (as Daiana Campeanu)'}" tt0104427,"{'Jack Nicholson': 'James R. Hoffa', 'Danny DeVito': 'Bobby Ciaro', 'Armand Assante': ""Carol D'Allesandro"", 'J.T. Walsh': 'Fitzsimmons', 'John C. Reilly': 'Pete Connelly', 'Frank Whaley': 'Young Kid', 'Kevin Anderson': 'Robert Kennedy', 'John P. Ryan': 'Red Bennett', 'Robert Prosky': 'Billy Flynn', 'Natalija Nogulich': 'Jo Hoffa', 'Nicholas Pryor': ""Hoffa's Attorney"", 'Paul Guilfoyle': 'Ted Harmon', 'Karen Young': 'Young Woman at RTA', 'Cliff Gorman': 'Solly Stein', 'Joanne Neer': 'Soignee Woman'}" tt0356634,"{'Breckin Meyer': 'Jon', 'Jennifer Love Hewitt': 'Liz', 'Stephen Tobolowsky': 'Happy Chapman', 'Bill Murray': 'Garfield (voice)', 'Evan Arnold': 'Wendell', 'Mark Christopher Lawrence': 'Christopher Mello', 'Vanessa Campbell': 'Miss Ace Hardware (as Vanessa Christelle)', 'Daamen J. Krall': 'Announcer (as Daamen Krall)', 'Rufus Gifford': 'Dog Owner #1', 'Randee Reicher': 'Dog Owner #2', 'Ryan McKasson': 'Dog Owner #3', 'Susan Moore': 'Dog Owner #4', 'Eve Brent': 'Mrs. Baker', 'Bill Hoag': 'Roy the Lodge Member', 'Michael Monks': 'Deputy Hopkins'}" tt0067116,"{'Gene Hackman': 'Jimmy Doyle', 'Fernando Rey': 'Alain Charnier', 'Roy Scheider': 'Buddy Russo', 'Tony Lo Bianco': 'Sal Boca', 'Marcel Bozzuffi': 'Pierre Nicoli', 'Frédéric de Pasquale': 'Devereaux (as Frederic De Pasquale)', 'Bill Hickman': 'Mulderig', 'Ann Rebbot': 'Marie Charnier', 'Harold Gary': 'Weinstock', 'Arlene Farber': 'Angie Boca', 'Eddie Egan': 'Simonson', 'André Ernotte': 'La Valle (as Andre Ernotte)', 'Sonny Grosso': 'Klein', 'Benny Marino': 'Lou Boca', 'Patrick McDermott': 'Chemist (as Pat McDermott)'}" tt0242423,"{'Ashton Kutcher': 'Jesse Montgomery III', 'Seann William Scott': 'Chester Greenburg', 'Jennifer Garner': 'Wanda', 'Marla Sokoloff': 'Wilma', 'Kristy Swanson': 'Christie Boner', 'David Herman': 'Nelson', 'Hal Sparks': 'Zoltan - Cult Leader', ""Charlie O'Connell"": 'Tommy', 'John Toles-Bey': 'Mr. Pizzacoli', 'Christian Middelthon': 'Alien Nordic Dude #1', 'Dave Bannick': 'Alien Nordic Dude #2 (as David W. Bannick)', 'James Vincent': 'Jeff - Cult Member (as Turtle)', 'Bob Clendenin': 'Zarnoff - Cult Member (as Robert Clendenin)', 'Mary Lynn Rajskub': 'Zelmina - Cult Member', 'Kevin Christy': 'Zellner - Cult Member'}" tt0099487,"{'Johnny Depp': 'Edward Scissorhands', 'Winona Ryder': 'Kim', 'Dianne Wiest': 'Peg', 'Anthony Michael Hall': 'Jim', 'Kathy Baker': 'Joyce', 'Robert Oliveri': 'Kevin', 'Conchata Ferrell': 'Helen', 'Caroline Aaron': 'Marge', 'Dick Anthony Williams': 'Officer Allen', 'O-Lan Jones': 'Esmeralda', 'Vincent Price': 'The Inventor', 'Alan Arkin': 'Bill', 'Susan Blommaert': 'Tinka (as Susan J. Blommaert)', 'Linda Perri': 'Cissy (as Linda Perry)', 'John Davidson': 'Host-TV'}" tt0137523,"{'Edward Norton': 'The Narrator', 'Brad Pitt': 'Tyler Durden', 'Meat Loaf': ""Robert 'Bob' Paulsen (as Meat Loaf Aday)"", 'Zach Grenier': 'Richard Chesler', 'Richmond Arquette': 'Intern', 'David Andrews': 'Thomas', 'George Maguire': 'Group Leader', 'Eugenie Bondurant': 'Weeping Woman', 'Helena Bonham Carter': 'Marla Singer', 'Christina Cabot': 'Group Leader', ""Sydney 'Big Dawg' Colston"": 'Speaker', 'Rachel Singer': 'Chloe', 'Christie Cronenweth': 'Airline Attendant', 'Tim DeZarn': 'Inspector Bird (as Tim de Zarn)', 'Ezra Buzzington': 'Inspector Dent'}" tt0838221,"{'Owen Wilson': 'Francis', 'Adrien Brody': 'Peter', 'Jason Schwartzman': 'Jack', 'Amara Karan': 'Rita', 'Wallace Wolodarsky': 'Brendan (as Wally Wolodarsky)', 'Waris Ahluwalia': 'The Chief Steward', 'Irrfan Khan': 'The Father', 'Barbet Schroeder': 'The Mechanic', 'Camilla Rutherford': 'Alice', 'Bill Murray': 'The Businessman', 'Anjelica Huston': 'Patricia', 'A.P. Singh': 'Taxi Driver', 'Kumar Pallana': 'Old Man', 'Dalpat Singh': 'Waiter', 'Trudy Matthys': 'German Lady #1 (as Trudy Mathis)'}" tt0357277,"{'Jennifer Garner': 'Elektra', 'Goran Visnjic': 'Mark Miller', 'Kirsten Zien': 'Abby Miller (as Kirsten Prout)', 'Will Yun Lee': 'Kirigi', 'Cary-Hiroyuki Tagawa': 'Roshi', 'Terence Stamp': 'Stick', 'Natassia Malthe': 'Typhoid', 'Bob Sapp': 'Stone', 'Chris Ackerman': 'Tattoo', 'Edson T. Ribeiro': 'Kinkou', 'Colin Cunningham': 'McCabe', 'Hiro Kanagawa': 'Meizumi', 'Mark Houghton': 'Bauer', 'Laura Ward': 'Young Elektra', 'Kurt Max Runte': 'Nikolas Natchios'}" tt0332047,"{'Drew Barrymore': 'Lindsey', 'Jimmy Fallon': 'Ben', 'Jason Spevack': 'Ben - 1980', 'Jack Kehler': 'Al', 'Scott Severance': 'Artie (as Scott H. Severance)', 'Jessamy Finet': 'Teresa (as Jessamy R. Finét)', 'Maureen Keiller': 'Viv', 'Lenny Clarke': 'Uncle Carl', 'Ione Skye': 'Molly', 'KaDee Strickland': 'Robin', 'Marissa Jaret Winokur': 'Sarah', 'Evan Helmuth': 'Troy', 'Brandon Craggs': 'Casey', 'Brett Murphy': 'Ryan', 'Isabella Fink': 'Audrey'}" tt0120631,"{'Drew Barrymore': 'Danielle', 'Anjelica Huston': 'Rodmilla', 'Dougray Scott': 'Prince Henry', 'Patrick Godfrey': 'Leonardo', 'Megan Dodds': 'Marguerite', 'Melanie Lynskey': 'Jacqueline', 'Timothy West': 'King Francis', 'Judy Parfitt': 'Queen Marie', 'Jeroen Krabbé': 'Auguste', 'Lee Ingleby': 'Gustave', 'Kate Lansbury': 'Paulette', 'Matyelok Gibbs': 'Louise', 'Walter Sparrow': 'Maurice', 'Jeanne Moreau': 'Grande Dame', 'Anna Maguire': 'Young Danielle'}" tt0364725,"{'Vince Vaughn': 'Peter La Fleur', 'Christine Taylor': 'Kate Veatch', 'Ben Stiller': 'White Goodman', 'Rip Torn': ""Patches O'Houlihan"", 'Justin Long': 'Justin', 'Stephen Root': 'Gordon', 'Joel David Moore': 'Owen', 'Chris Williams': 'Dwight', 'Alan Tudyk': 'Steve the Pirate', 'Missi Pyle': 'Fran', 'Jamal Duff': ""Me'Shell Jones (as Jamal E. Duff)"", 'Gary Cole': 'Cotton McKnight', 'Jason Bateman': 'Pepper Brooks', 'Hank Azaria': ""Young Patches O'Houlihan"", 'Al Kaplon': 'Tournament Referee'}" tt0164114,"{'Melissa Joan Hart': 'Nicole Maris', 'Adrian Grenier': 'Chase Hammond', 'Stephen Collins': 'Mr. Maris', 'Mark Metcalf': 'Mr. Rope', 'William Converse-Roberts': 'Mr. Hammond', 'Faye Grant': 'Mrs. Maris', 'Susan May Pratt': 'Alicia', 'Kris Park': 'Ray Neeley', 'Ali Larter': 'Dulcie', 'Mark Webber': 'Dave', 'Gabriel Carpenter': 'Brad', 'Lourdes Benedicto': 'Chloe Frost', 'Keri Lynn Pratt': 'Dee Vine', 'Natasha Pearce': 'Sue', 'Derrick Shore': 'Tom'}" tt0099423,"{'Bruce Willis': 'John McClane', 'Bonnie Bedelia': 'Holly McClane', 'William Atherton': 'Thornberg', 'Reginald VelJohnson': 'Al Powell', 'Franco Nero': 'Esperanza', 'William Sadler': 'Stuart', 'John Amos': 'Grant', 'Dennis Franz': 'Carmine Lorenzo', 'Art Evans': 'Barnes', 'Fred Dalton Thompson': 'Trudeau', 'Tom Bower': 'Marvin', 'Sheila McCarthy': 'Samantha Coleman', 'Don Harvey': 'Garber', 'Tony Ganios': 'Baker', 'Peter Nelson': 'Thompson'}" tt0095016,"{'Bruce Willis': 'John McClane', 'Bonnie Bedelia': 'Holly Gennaro McClane', 'Reginald VelJohnson': 'Sgt. Al Powell', 'Paul Gleason': 'Dwayne T. Robinson', ""De'voreaux White"": 'Argyle', 'William Atherton': 'Thornburg', 'Hart Bochner': 'Ellis', 'James Shigeta': 'Takagi', 'Alan Rickman': 'Hans Gruber', 'Alexander Godunov': 'Karl', 'Bruno Doyon': 'Franco', 'Andreas Wisniewski': 'Tony', 'Clarence Gilyard Jr.': 'Theo', 'Joey Plewa': 'Alexander', 'Lorenzo Caccialanza': 'Marco'}" tt0458352,"{'Meryl Streep': 'Miranda Priestly', 'Anne Hathaway': 'Andy Sachs', 'Emily Blunt': 'Emily', 'Stanley Tucci': 'Nigel', 'Simon Baker': 'Christian Thompson', 'Adrian Grenier': 'Nate', 'Tracie Thoms': 'Lily', 'Rich Sommer': 'Doug', 'Daniel Sunjata': 'James Holt', 'David Marshall Grant': 'Richard Sachs', 'James Naughton': 'Stephen', 'Tibor Feldman': 'Irv Ravitz', 'Rebecca Mader': 'Jocelyn', 'Jimena Hoyos': 'Lucia', 'Gisele Bündchen': 'Serena'}" tt0043456,"{'Michael Rennie': 'Klaatu', 'Patricia Neal': 'Helen Benson', 'Hugh Marlowe': 'Tom Stevens', 'Sam Jaffe': 'Professor Jacob Barnhardt', 'Billy Gray': 'Bobby Benson', 'Frances Bavier': 'Mrs. Barley', 'Lock Martin': 'Gort'}" tt0092115,"{'Noah Hathaway': 'Harry Potter Jr.', 'Michael Moriarty': 'Harry Potter Sr.', 'Shelley Hack': 'Anne Potter', 'Jenny Beck': 'Wendy Anne Potter', 'Sonny Bono': 'Peter Dickinson', 'Phil Fondacaro': 'Malcolm Mallory / Torok the Troll', 'Brad Hall': 'William Daniels', 'Anne Lockhart': 'Young Eunice St. Clair', 'Julia Louis-Dreyfus': 'Jeanette Cooper', 'Gary Sandy': 'Barry Tabor', 'June Lockhart': 'Eunice St. Clair', 'Robert Hathaway': 'First Policeman', 'James Beck': 'Second Policeman', 'Dale Wyatt': ""Dickinson's Girlfriend"", 'Barbara Sciorilli': 'Fairy'}" tt0116282,"{'William H. Macy': 'Jerry Lundegaard', 'Steve Buscemi': 'Carl Showalter', 'Peter Stormare': 'Gaear Grimsrud', 'Kristin Rudrüd': 'Jean Lundegaard', 'Harve Presnell': 'Wade Gustafson', 'Tony Denman': 'Scotty Lundegaard', 'Gary Houston': 'Irate Customer', 'Sally Wingert': ""Irate Customer's Wife"", 'Kurt Schweickhardt': 'Car Salesman', 'Larissa Kokernot': 'Hooker #1', 'Melissa Peterman': 'Hooker #2', 'Steve Reevis': 'Shep Proudfoot (as Steven Reevis)', 'Warren Keith': 'Reilly Diefenbach (voice)', 'Steve Edelman': 'Morning Show Host', 'Sharon Anderson': 'Morning Show Hostess'}" tt0286499,"{'Parminder Nagra': 'Jess', 'Keira Knightley': 'Jules', 'Jonathan Rhys Meyers': 'Joe', 'Anupam Kher': 'Mr. Bhamra', 'Archie Panjabi': 'Pinky Bhamra', 'Shaznay Lewis': 'Mel', 'Frank Harper': 'Alan Paxton', 'Juliet Stevenson': 'Paula Paxton', 'Shaheen Khan': 'Mrs. Bhamra', 'Ameet Chana': 'Tony', 'Pooja Shah': 'Meena (as Poojah Shah)', 'Pavenpreet Kaur': 'Bubbly (as Paven Virk)', 'Preeya Kalidas': 'Monica', 'Trey Farley': 'Taz', 'Saraj Chaudhry': 'Sonny (as Saraj Chaudry)'}" tt0319262,"{'Dennis Quaid': 'Jack Hall', 'Jake Gyllenhaal': 'Sam Hall', 'Emmy Rossum': 'Laura Chapman', 'Dash Mihok': 'Jason Evans', 'Jay O. Sanders': 'Frank Harris', 'Sela Ward': 'Dr. Lucy Hall', 'Austin Nichols': 'J.D.', 'Arjay Smith': 'Brian Parks', 'Tamlyn Tomita': 'Janet Tokada', 'Sasha Roiz': 'Parker', 'Ian Holm': 'Terry Rapson', 'Nassim Sharara': 'Saudi Delegate', 'Carl Alacchi': 'Venezuelan Delegate', 'Kenneth Welsh': 'Vice President Becker', ""Michel 'Gish' Abou-Samah"": 'Saudi Translator (as Michael A. Samah)'}" tt0088944,"{'Arnold Schwarzenegger': 'John Matrix', 'Rae Dawn Chong': 'Cindy', 'Dan Hedaya': 'Arius', 'Vernon Wells': 'Bennett', 'James Olson': 'Major General Franklin Kirby', 'David Patrick Kelly': 'Sully', 'Alyssa Milano': 'Jenny Matrix', 'Bill Duke': 'Cooke', 'Drew Snyder': 'Lawson', 'Sharon Wyatt': 'Leslie', 'Michael DeLano': 'Forrestal', 'Bob Minor': 'Jackson', 'Michael Adams': 'Harris (as Mike Adams)', 'Gary Carlos Cervantes': 'Diaz (as Carlos Cervantes)', 'Lenny Juliano': 'Soldier'}" tt0452598,"{'Steve Martin': 'Tom Baker', 'Eugene Levy': 'Jimmy Murtaugh', 'Bonnie Hunt': 'Kate Baker', 'Tom Welling': 'Charlie Baker', 'Piper Perabo': 'Nora Baker-McNulty', 'Carmen Electra': 'Sarina Murtaugh', 'Jaime King': 'Anne Murtaugh', 'Hilary Duff': 'Lorraine Baker', 'Taylor Lautner': 'Eliot Murtaugh', 'Alyson Stoner': 'Sarah Baker', 'Jonathan Bennett': 'Bud McNulty', 'Jacob Smith': 'Jake Baker', 'Liliana Mumy': 'Jessica Baker', 'Morgan York': 'Kim Baker', 'Kevin G. Schmidt': 'Henry Baker'}" tt0349205,"{'Steve Martin': 'Tom Baker', 'Bonnie Hunt': 'Kate Baker', 'Piper Perabo': 'Nora Baker', 'Tom Welling': 'Charlie Baker', 'Hilary Duff': 'Lorraine Baker', 'Kevin G. Schmidt': 'Henry Baker', 'Alyson Stoner': 'Sarah Baker', 'Jacob Smith': 'Jake Baker', 'Liliana Mumy': 'Jessica Baker', 'Morgan York': 'Kim Baker', 'Forrest Landis': 'Mark Baker', 'Blake Woodruff': 'Mike Baker', 'Brent Kinsman': 'Nigel Baker', 'Shane Kinsman': 'Kyle Baker', 'Paula Marshall': 'Tina Shenk'}" tt0115857,"{'Keanu Reeves': 'Eddie Kasalivich', 'Morgan Freeman': 'Paul Shannon', 'Rachel Weisz': 'Dr. Lily Sinclair', 'Fred Ward': 'FBI Agent Leon Ford', 'Kevin Dunn': 'FBI Agent Doyle', 'Brian Cox': 'Lyman Earl Collier', 'Joanna Cassidy': 'Maggie McDermott', 'Chelcie Ross': 'Ed Rafferty', 'Nicholas Rudall': 'Dr. Alistair Barkley', 'Tzi Ma': 'Lu Chen', 'Krzysztof Pieczynski': 'Lucasz Screbneski', 'Julie Pearl': 'Emily Pearl (as Julie R. Pearl)', 'Godfrey': 'Chidi Egbuna', 'Gene Barge': 'James Washington', 'Nathan Davis': 'Morris Grodsky'}" tt0118798,"{'Kimberly Deauna Adams': 'Denisha', 'Vinny Argiro': 'Debate Director', 'Sean Astin': 'Gary', 'Kirk Baltz': 'Debate Producer', 'Ernie Lee Banks': 'Leroy (as Ernie Banks)', 'Amiri Baraka': 'Rastaman', 'Christine Baranski': 'Constance Bulworth', 'Adilah Barnes': 'Mrs. Brown', 'Warren Beatty': 'Jay Bulworth', 'Graham Beckel': 'Man with Dark Glasses', 'Halle Berry': 'Nina', 'Brandon N. Bowlin': 'Bouncer #2', 'Mongo Brownlee': 'Henchman #3', 'Thomas Jefferson Byrd': 'Uncle Rafeeq', 'J. Kenneth Campbell': 'Anthony'}" tt0297037,"{'Taye Diggs': ""Andre Romulus 'Dre' Ellis"", 'Sanaa Lathan': ""Sidney 'Syd' Shaw"", 'Yasiin Bey': ""Chris 'Cav' Anton Vichon (as Mos Def)"", 'Nicole Ari Parker': 'Reese Marie Wiggam Ellis', 'Boris Kodjoe': 'Kelby Dawson', 'Queen Latifah': 'Francine', 'Wendell Pierce': 'Simon', 'Erik Weiner': 'Ren', 'Reg Wyns': 'Ten (as Reggi Wyns)', 'Melissa Martinez': 'Meghan', 'Aaliyyah Hill': 'Young Sidney', 'Marc John Jefferies': 'Young Dre', 'Venida Evans': 'Older Woman', 'Breece Wilson': 'Woman', 'Brette Taylor': 'Woman 2'}" tt0120620,"{'Claire Danes': 'Alice Marano', 'Kate Beckinsale': 'Darlene Davis', 'Bill Pullman': 'Hank Greene', 'Jacqueline Kim': 'Yon Greene', 'Lou Diamond Phillips': 'Roy Knox', 'Daniel Lapaine': 'Nick Parks', 'Tom Amandes': 'Doug Davis', 'Aimee Graham': 'Beth Ann Gardener', 'John Doe': 'Bill Marano', 'Kay Tong Lim': 'Chief Detective Jagkrit', 'Beulah Quo': 'Guard Velie', 'Henry O': 'Emissary to Crown', 'Bahni Turpin': 'Jamaican Prisoner', 'Amanda De Cadenet': 'English Prisoner', 'Inthira Charoenpura': 'Prisoner Shub (as Intira Jaroenpura)'}" tt0092699,"{'William Hurt': 'Tom Grunick', 'Albert Brooks': 'Aaron Altman', 'Holly Hunter': 'Jane Craig', 'Robert Prosky': 'Ernie Merriman', 'Lois Chiles': 'Jennifer Mack', 'Joan Cusack': 'Blair Litton (as Joan Cusak)', 'Peter Hackes': 'Paul Moore', 'Christian Clemenson': 'Bobby', 'Jack Nicholson': 'Bill Rorish', 'Robert Katims': 'Martin Klein', 'Ed Wheeler': 'George Weln', 'Stephen Mendillo': 'Gerald Grunick', 'Kimber Shoop': 'Young Tom', 'Dwayne Markee': 'Young Aaron', 'Gennie James': 'Young Jane'}" tt0078902,"{'Dennis Christopher': 'Dave', 'Dennis Quaid': 'Mike', 'Daniel Stern': 'Cyril', 'Jackie Earle Haley': 'Moocher', 'Barbara Barrie': 'Mom', 'Paul Dooley': 'Dad', 'Robyn Douglass': 'Katherine', 'Hart Bochner': 'Rod', 'Amy Wright': 'Nancy', 'Peter Maloney': 'Doctor', 'John Ashton': ""Mike's Brother"", 'Lisa Shure': 'French Girl', 'Jennifer K. Mickel': 'Girl', 'P.J. Soles': 'Suzy (as Pamela Jayne Soles)', 'David K. Blase': '500 Race Announcer'}" tt0421729,"{'Martin Lawrence': 'Malcolm / Big Momma', 'Nia Long': 'Sherri', 'Emily Procter': 'Leah Fuller', 'Zachary Levi': 'Kevin', 'Mark Moses': 'Tom Fuller', 'Kat Dennings': 'Molly', 'Chloë Grace Moretz': 'Carrie (as Chloe Grace Moretz)', 'Marisol Nichols': 'Liliana Morales', 'Josh Flitter': 'Stewart', 'Dan Lauria': 'Crawford', 'Jascha Washington': 'Trent', 'Jeanene Fox': 'Yasmeen', 'Preston Shores': 'Andrew', 'Trevor Shores': 'Andrew', 'Sarah Brown': 'Constance (as Sarah Joy Brown)'}" tt0208003,"{'Martin Lawrence': 'Malcolm Turner', 'Nia Long': 'Sherry Pierce', 'Paul Giamatti': 'John', 'Jascha Washington': 'Trent Pierce', 'Terrence Howard': 'Lester Vesco (as Terrence Dashon Howard)', 'Anthony Anderson': 'Nolan', 'Ella Mitchell': 'Hattie Mae Pierce (Big Momma)', 'Carl Wright': 'Ben Rawley', 'Phyllis Applegate': 'Sadie', 'Starletta DuPois': 'Miss Patterson', 'Jessie Mae Holmes': 'Miss Other Patterson', 'Nicole Prescott': 'Lena', 'Octavia Spencer': 'Twila (as Octavia L. Spencer)', 'Tichina Arnold': 'Ritha', 'Cedric the Entertainer': 'Reverend'}" tt0065466,"{'Dolly Read': 'Kelly Mac Namara', 'Cynthia Myers': 'Casey Anderson', 'Marcia McBroom': 'Petronella Danforth', 'John Lazar': 'Ronnie (Z-Man) Barzell (as John La Zar/John LaZar)', 'Michael Blodgett': 'Lance Rocke', 'David Gurian': 'Harris Allsworth', 'Edy Williams': 'Ashley St. Ives', 'Erica Gavin': 'Roxanne', 'Phyllis Davis': 'Susan Lake', 'Harrison Page': 'Emerson Thorne', 'Duncan McLeod': 'Porter Hall (as Duncan Mc Leod/Duncan McLeod)', 'James Iglehart': 'Randy Black (as Jim Iglehart)', 'Charles Napier': 'Baxter Wolfe', 'Henry Rowland': 'Otto', 'Princess Livingston': 'Matron'}" tt0163978,"{'Leonardo DiCaprio': 'Richard', 'Daniel York': 'Hustler', 'Patcharawan Patarakijjanon': 'Hotel Receptionist', 'Virginie Ledoyen': 'Françoise', 'Guillaume Canet': 'Étienne', 'Robert Carlyle': 'Daffy', 'Somboon Phutaroth': 'Cleaning Woman', ""Weeratham 'Norman' Wichairaksakui"": 'Detective', 'Sahajak Boonthanakit': 'Travel Agent (as Jak Boon)', 'Peter Youngblood Hills': 'Zeph', 'Jerry Swindall': 'Sammy', 'Krongthong Thampradith': 'Woman with Key', 'Apichart Chusakul': ""Senior Farmer (as Abhijati 'Muek' Jusakul)"", ""Sanya 'Gai' Cheunjit"": 'Farmer', ""Kaneung 'Nueng' Kenia"": 'Farmer'}" tt0280460,"{'Goldie Hawn': 'Suzette', 'Susan Sarandon': 'Lavinia Kingsley', 'Geoffrey Rush': 'Harry Plummer', 'Erika Christensen': 'Hannah Kingsley', 'Robin Thomas': 'Raymond Kingsley', 'Eva Amurri Martino': 'Ginger Kingsley (as Eva Amurri)', 'Matthew Carey': 'Jules', 'Andre Ware': 'Jake', 'Adam Tomei': 'Club Owner', 'Sal Lopez': 'Pump Attendant', 'Kohl Sudduth': 'Hotel Clerk', 'Tinsley Grimes': 'Prom Girl', 'Larry Krask': 'Man in Bar', 'Marlayna Cherisse': 'Young Groupie (as Marlayna Garrett)', 'Josh Todd': 'L.A. Buckcherry Band Member'}" tt0042192,"{'Bette Davis': 'Margo Channing', 'Anne Baxter': 'Eve Harrington', 'George Sanders': 'Addison DeWitt', 'Celeste Holm': 'Karen Richards', 'Gary Merrill': 'Bill Simpson', 'Hugh Marlowe': 'Lloyd Richards', 'Gregory Ratoff': 'Max Fabian', 'Barbara Bates': 'Phoebe', 'Marilyn Monroe': 'Miss Casswell', 'Thelma Ritter': 'Birdie Coonan', 'Walter Hampden': 'Aged Actor', 'Randy Stuart': 'Girl', 'Craig Hill': 'Leading Man', 'Leland Harris': 'Doorman', 'Barbara White': 'Autograph Seeker'}" tt0168786,"{'Derek Luke': 'Antwone Fisher', 'Malcolm David Kelley': 'Antwone Fisher Age 7', 'Cory Hodges': 'Antwone Fisher Age 14', 'Denzel Washington': 'Dr. Jerome Davenport', 'Joy Bryant': 'Cheryl Smolley', 'Salli Richardson-Whitfield': 'Berta Davenport (as Salli Richardson)', 'Leonard Earl Howze': 'Pork Chop', 'Kente Scott': 'Kansas City (as Kenté Scott)', 'Kevin Connolly': 'Slim', 'Rainoldo Gooding': 'Grayson', 'Novella Nelson': 'Mrs. Tate', 'Stephen Snedden': 'Berkley', 'Leo Nepomuceno': 'SP #1', 'Sung Kang': 'Receptionist', 'Cordell Stokes': 'Keith Age 5'}" tt0118583,"{'Sigourney Weaver': 'Ripley', 'Winona Ryder': 'Call', 'Dominique Pinon': 'Vriess', 'Ron Perlman': 'Johner', 'Gary Dourdan': 'Christie', 'Michael Wincott': 'Elgyn', 'Kim Flowers': 'Hillard', 'Dan Hedaya': 'General Perez', 'J.E. Freeman': 'Dr. Wren', 'Brad Dourif': 'Gediman', 'Raymond Cruz': 'Distephano', 'Leland Orser': 'Purvis', 'Carolyn Campbell': 'Anesthesiologist', 'Marlene Bush': 'Scientist', 'David St. James': 'Surgeon'}" tt0103644,"{'Sigourney Weaver': 'Ripley', 'Charles S. Dutton': 'Dillon', 'Charles Dance': 'Clemens', 'Paul McGann': 'Golic', 'Brian Glover': 'Andrews', 'Ralph Brown': 'Aaron', 'Danny Webb': 'Morse', 'Christopher John Fields': 'Rains', 'Holt McCallany': 'Junior', 'Lance Henriksen': 'Bishop II', 'Christopher Fairbank': 'Murphy (as Chris Fairbank)', 'Carl Chase': 'Frank', 'Leon Herbert': 'Boggs', 'Vincenzo Nicoli': 'Jude', 'Pete Postlethwaite': 'David'}" tt0311113,"{'Russell Crowe': 'Capt. Jack Aubrey', 'Paul Bettany': 'Dr. Stephen Maturin, Surgeon', ""James D'Arcy"": '1st Lt. Tom Pullings', 'Edward Woodall': '2nd Lt. William Mowett', 'Chris Larkin': 'Capt. Howard, Royal Marines', 'Max Pirkis': 'Blakeney, Midshipman', 'Jack Randall': 'Boyle, Midshipman', 'Max Benitz': 'Calamy, Midshipman', 'Lee Ingleby': 'Hollom, Midshipman', 'Richard Pates': 'Williamson, Midshipman', 'Robert Pugh': 'Mr. Allen, Master', 'Richard McCabe': ""Mr. Higgins, Surgeon's Mate"", 'Ian Mercer': 'Mr. Hollar, Boatswain', 'Tony Dolan': 'Mr. Lamb, Carpenter', 'David Threlfall': ""Preserved Killick, Captain's Steward""}" tt0198021,"{'Natalie Portman': 'Novalee Nation', 'Ashley Judd': 'Lexie Coop', 'Stockard Channing': 'Sister Husband', 'Joan Cusack': 'Ruth Meyers', 'James Frain': 'Forney Hull', 'Dylan Bruno': 'Willy Jack Pickens', 'Sue McCormick': 'Cake Supplier', 'Keith David': 'Moses Whitecotten', 'Ray Prewitt': 'Tim', 'Laura House': 'Nicki', 'Karey Green': 'Rhonda', 'Mary Ashleigh Green': 'Girl in Bathroom', 'Kinna McInroe': 'Wal-Mart Clerk', 'Laura Auldridge': 'Wal-Mart Assistant Manager', 'Alicia Godwin': 'Jolene'}" tt0283026,"{'Jesse Bradford': 'Ben Cronin', 'Erika Christensen': 'Madison Bell', 'Shiri Appleby': 'Amy Miller', 'Kate Burton': 'Carla Cronin', 'Clayne Crawford': 'Josh', 'Jason Ritter': 'Randy', 'Kia Goodwin': 'Rene (as Kia Joy Goodwin)', 'Dan Hedaya': 'Coach Simkins', 'Michael Higgins': 'Mr. Tillman', 'Nick Sandow': 'Detective John Zabel', 'Pamela Isaacs': 'Mrs. Egan', 'James DeBello': 'Christopher Dante (as James Debello)', 'Phyllis Somerville': 'Aunt Gretchen Christopher', 'Tom Cappadona': 'Janitor', 'Malcolm Barrett': 'Jock'}" tt0467406,"{'Ellen Page': 'Juno MacGuff', 'Michael Cera': 'Paulie Bleeker', 'Jennifer Garner': 'Vanessa Loring', 'Jason Bateman': 'Mark Loring', 'Allison Janney': 'Bren MacGuff', 'J.K. Simmons': 'Mac MacGuff', 'Olivia Thirlby': 'Leah', 'Eileen Pedde': 'Gerta Rauss', 'Rainn Wilson': 'Rollo', 'Daniel Clark': 'Steve Rendazo', 'Darla Fay': ""Bleeker's Mom (as Darla Vandenbossche)"", 'Aman Johal': 'Vijay', 'Valerie Tian': 'Su-Chin', 'Emily Perkins': 'Punk Receptionist', 'Kaaren de Zilva': 'Ultrasound Technician (as Kaaren De Zilva)'}" tt0166396,"{'Ian Bannen': ""Jackie O'Shea"", 'David Kelly': ""Michael O'Sullivan"", 'Fionnula Flanagan': ""Annie O'Shea"", 'Susan Lynch': ""Maggie O'Toole"", 'James Nesbitt': 'Pig Finn', 'Paul Vaughan': 'Narrator (voice)', 'Adrian Robinson': 'Lotto Observer', ""Maura O'Malley"": 'Mrs. Kennedy', 'Robert Hickey': ""Maurice O'Toole"", 'Paddy Ward': ""Brendy O'Toole"", 'James Ryland': 'Dennis Fitzgerald', 'Fintan McKeown': 'Pat Mulligan', 'Eileen Dromey': 'Lizzy Quinn', 'Kitty Fitzgerald': 'Kitty', 'Dermot Kerrigan': 'Father Patrick'}" tt0388482,"{'Jason Statham': 'Frank Martin', 'Alessandro Gassmann': 'Gianni Chellini (as Alessandro Gassman)', 'Amber Valletta': 'Audrey Billings', 'Kate Nauta': 'Lola', 'Matthew Modine': 'Jefferson Billings', 'Jason Flemyng': 'Dimitri', 'Keith David': 'Stappleton', 'Hunter Clary': 'Jack Billings', 'Shannon Briggs': 'Max', 'François Berléand': 'Inspector Tarconi', 'Raymond Tong': 'Rastaman', 'George Kapetan': 'Dr. Sonovitch', 'Jeff Chase': 'Vasily', 'Gregg Weiner': 'Tipov', 'Gregg Davis': 'Techie at Billings'}" tt0139414,"{'Bill Pullman': 'Jack Wells', 'Bridget Fonda': 'Kelly Scott', 'Oliver Platt': 'Hector Cyr', 'Brendan Gleeson': 'Sheriff Hank Keough', 'Betty White': 'Mrs. Delores Bickerman', 'David Lewis': 'Walt Lawson', 'Tim Dixon': 'Stephen Daniels', 'Natassia Malthe': 'Janine', 'Mariska Hargitay': 'Myra Okubo', 'Meredith Salenger': 'Deputy Sharon Gare', 'Jed Rees': 'Deputy Burke', 'Richard Leacock': 'Deputy Stevens', 'Jake T. Roberts': 'Officer Coulson', 'Warren Takeuchi': 'Paramedic', 'Ty Olsson': 'State Trooper'}" tt0112864,"{'Bruce Willis': 'John McClane', 'Jeremy Irons': 'Simon Gruber', 'Samuel L. Jackson': 'Zeus Carver', 'Graham Greene': 'Joe Lambert', 'Colleen Camp': 'Connie Kowalski', 'Larry Bryggman': 'Insp. Walter Cobb', 'Anthony Peck': 'Ricky Walsh', 'Nick Wyman': 'Mathias Targo', 'Sam Phillips': 'Katya', 'Kevin Chamberlin': 'Charles Weiss', 'Sharon Washington': 'Officer Jane', 'Stephen Pearlman': 'Dr. Fred Schiller', 'Michael Alexander Jackson': 'Dexter', 'Aldis Hodge': 'Raymond', 'Mischa Hausserman': 'Mischa'}" tt0333766,"{'Zach Braff': 'Andrew Largeman', 'Kenneth Graymez': 'Busboy', 'George C. Wolfe': 'Restaurant Manager', 'Austin Lysy': 'Waiter', 'Gary Gilbert': 'Young Hollywood Guy', 'Jill Flint': 'Obnoxious Girl', 'Ian Holm': 'Gideon Largeman', 'Peter Sarsgaard': 'Mark', 'Alex Burns': 'Dave', 'Jackie Hoffman': 'Aunt Sylvia Largeman', 'Michael Weston': 'Kenny', 'Christopher Carley': 'Gleason Party Drunk (as Chris Carley)', 'Armando Riesco': 'Jesse', 'Amy Ferguson': 'Dana', 'Trisha LaFache': 'Kelly'}" tt0094737,"{'Tom Hanks': 'Josh', 'Elizabeth Perkins': 'Susan', 'Robert Loggia': 'MacMillan', 'John Heard': 'Paul', 'Jared Rushton': 'Billy', 'David Moscow': 'Young Josh', 'Jon Lovitz': 'Scotty Brennen', 'Mercedes Ruehl': 'Mrs. Baskin', 'Josh Clark': 'Mr. Baskin', 'Kimberlee M. Davis': 'Cynthia Benson', 'Oliver Block': 'Freddie Benson', 'Erika Katz': ""Cynthia's Friend"", 'Allan Wasserman': 'Gym Teacher', 'Mark Ballou': 'Derek', 'Gary Howard Klar': 'Ticket Taker (as Gary Klar)'}" tt0090728,"{'Kurt Russell': 'Jack Burton', 'Kim Cattrall': 'Gracie Law', 'Dennis Dun': 'Wang Chi', 'James Hong': 'David Lo Pan', 'Victor Wong': 'Egg Shen', 'Kate Burton': 'Margo', 'Donald Li': 'Eddie Lee', 'Carter Wong': 'Thunder', 'Peter Kwong': 'Rain', 'James Pax': 'Lightning', 'Suzee Pai': 'Miao Yin', 'Chao Li Chi': 'Uncle Chu', 'Jeff Imada': 'Needles', 'Rummel Mor': 'Joe Lucky', 'Craig Ng': 'One Ear'}" tt0456554,"{'Linda Cardellini': 'Samantha', 'Allen Covert': 'Alex', 'Peter Dante': 'Dante', 'Shirley Jones': 'Grace', 'Shirley Knight': 'Bea', 'Joel David Moore': 'J.P.', 'Kevin Nealon': 'Mr. Cheezle', 'Doris Roberts': 'Grandma Lilly', 'Nick Swardson': 'Jeff', 'Jonah Hill': 'Barry', 'Kelvin Yu': 'Kane', 'Chuck Church': 'Dan', 'Scott Halberstadt': 'Bobby, Co-Worker #1', 'Heidi Hawking': 'Milk Maid', 'Shana Hiatt': 'Pamela Mills'}" tt0159273,"{'Owen Wilson': 'Burnett', 'Gene Hackman': 'Reigart', 'Gabriel Macht': 'Stackhouse', 'Charles Malik Whitfield': 'Rodway', 'Joaquim de Almeida': 'Piquet (as Joaquim De Almeida)', 'David Keith': ""O'Malley"", 'Olek Krupa': 'Lokar', 'Vladimir Mashkov': 'Tracker', 'Marko Igonda': 'Bazda', 'Eyal Podell': 'Petty Officer Kennedy', 'Geoff Pierson': 'Admiral Donnelly', 'Aernout Van Lynden': 'Aernout Van Lynden', 'Sam Jaeger': 'Red Crown Operator #1', 'Shane Johnson': 'Red Crown Operator #2 (as Shane Mikael Johnson)', 'Don Winston': 'Red Crown Operator #3'}" tt0115759,"{'John Travolta': 'Vic Deakins', 'Christian Slater': 'Riley Hale', 'Samantha Mathis': 'Terry Carmichael', 'Delroy Lindo': 'Colonel Max Wilkins', 'Bob Gunton': 'Pritchett', 'Frank Whaley': 'Giles Prentice', 'Howie Long': 'Kelly', 'Vondie Curtis-Hall': 'Lt. Colonel Sam Rhodes', 'Jack Thompson': 'Chairman, Joint Chief of Staff', 'Vyto Ruginis': 'Johnson', 'Ousaun Elam': 'Lt. Thomas', 'Shaun Toub': 'Max', 'Casey Biggs': 'Novacek', 'Jeffrey Stephan': 'Shepherd (as Jeffrey J. Stephen)', 'Joey Box': 'Frakes'}" tt0064115,"{'Paul Newman': 'Butch Cassidy', 'Robert Redford': 'The Sundance Kid', 'Katharine Ross': 'Etta Place', 'Strother Martin': 'Percy Garris', 'Henry Jones': 'Bike Salesman', 'Jeff Corey': 'Sheriff Bledsoe', 'George Furth': 'Woodcock', 'Cloris Leachman': 'Agnes', 'Ted Cassidy': 'Harvey Logan', 'Kenneth Mars': 'Marshal', 'Donnelly Rhodes': 'Macon', 'Jody Gilbert': 'Large Woman', 'Timothy Scott': 'News Carver', 'Don Keefer': 'Fireman', 'Charles Dierkop': 'Flat Nose Curry'}" tt0118617,"{'Meg Ryan': 'Anastasia (voice)', 'John Cusack': 'Dimitri (voice)', 'Kelsey Grammer': 'Vladimir (voice)', 'Christopher Lloyd': 'Rasputin (voice)', 'Hank Azaria': 'Bartok (voice)', 'Bernadette Peters': 'Sophie (voice)', 'Kirsten Dunst': 'Young Anastasia (voice)', 'Angela Lansbury': 'The Dowager Empress Marie (voice)', 'Rick Jones': 'Czar Nicholas / Servant / Revolutionary Soldier / Ticket Agent (voice)', 'Andrea Martin': 'Phlegmenkoff / Old Woman (voice)', 'Glenn Walker Harris Jr.': 'Young Dimitri (voice)', 'Debra Mooney': 'Actress (voice)', 'Arthur Malet': 'Travelling Man / Major Domo (voice)', 'Charity James': 'Anastasia Impostor (voice)', 'Liz Callaway': 'Anastasia (singing voice)'}" tt0370263,"{'Sanaa Lathan': 'Alexa Woods', 'Raoul Bova': 'Sebastian de Rosa', 'Lance Henriksen': 'Charles Bishop Weyland', 'Ewen Bremner': 'Graeme Miller', 'Colin Salmon': 'Maxwell Stafford', 'Tommy Flanagan': 'Mark Verheiden', 'Joseph Rye': 'Joe Connors', 'Agathe de La Boulaye': 'Adele Rousseau', 'Carsten Norgaard': 'Rusten Quinn', 'Sam Troughton': 'Thomas Parks', 'Petr Jákl': 'Stone', 'Pavel Bezdek': 'Bass', 'Kieran Bew': 'Klaus', 'Carsten Voigt': 'Mikkel', 'Jan Filipenský': 'Boris (as Jan Filipensky)'}" tt0078748,"{'Tom Skerritt': 'Dallas', 'Sigourney Weaver': 'Ripley', 'Veronica Cartwright': 'Lambert', 'Harry Dean Stanton': 'Brett', 'John Hurt': 'Kane', 'Ian Holm': 'Ash', 'Yaphet Kotto': 'Parker', 'Bolaji Badejo': 'Alien', 'Helen Horton': 'Mother (voice)'}" tt0463854,"{'Robert Carlyle': 'Don', 'Rose Byrne': 'Scarlet', 'Jeremy Renner': 'Doyle', 'Harold Perrineau': 'Flynn', 'Catherine McCormack': 'Alice', 'Idris Elba': 'Stone', 'Imogen Poots': 'Tammy', 'Mackintosh Muggleton': 'Andy', 'Amanda Walker': 'Sally', 'Shahid Ahmed': 'Jacob', 'Garfield Morgan': 'Geoff', 'Emily Beecham': 'Karen', 'Beans El-Balawi': 'Boy in Cottage (as Beans Balawi)', 'Meghan Popiel': 'DLR Soldier', 'Stewart Alexander': 'Military Officer'}" tt0289043,"{'Alex Palmer': 'Activist', 'Bindu De Stoppani': 'Activist', 'Jukka Hiltunen': 'Activist', 'David Schneider': 'Scientist', 'Cillian Murphy': 'Jim', 'Toby Sedgwick': 'Infected Priest', 'Naomie Harris': 'Selena', 'Noah Huntley': 'Mark', 'Christopher Dunne': ""Jim's Father"", 'Emma Hitching': ""Jim's Mother"", 'Alexander Delamere': 'Mr. Bridges', 'Kim McGarrity': ""Mr. Bridges' Daughter"", 'Brendan Gleeson': 'Frank', 'Megan Burns': 'Hannah', 'Justin Hackney': 'Infected Kid'}" tt0086998,"{'Lucinda Dickey': 'Kelly / Special K', 'Adolfo Quinones': ""Ozone / Orlando (as Adolfo 'Shabba-Doo' Quinones)"", 'Michael Chambers': ""Turbo / Tony (as Michael 'Boogaloo Shrimp' Chambers)"", 'Ben Lokey': 'Franco', 'Christopher McDonald': 'James', 'Phineas Newborn III': 'Adam', 'Bruno Falcon': ""Electro Rock 1 (as Bruno 'Pop N' Taco' Falcon)"", 'Timothy Solomon': ""Electro Rock 2 (as Timothy 'Poppin' Pete' Solomon)"", 'Ana Sánchez': ""Electro Rock 3 (as Ana 'Lollipop' Sanchez)"", 'Ice-T': 'Rap Talker (as Ice T)', 'Peter Bromilow': 'Judge', 'Eleanor Zee': 'Judge', 'Scott Cooper': 'Judge', 'Eb Lottimer': ""Judge's Assistant"", 'Teresa Kelly': 'Vicky (as T.C. Laughlin)'}" tt0095159,"{'John Cleese': 'Archie Leach', 'Jamie Lee Curtis': 'Wanda Gershwitz', 'Kevin Kline': 'Otto', 'Michael Palin': 'Ken Pile', 'Maria Aitken': 'Wendy', 'Tom Georgeson': 'Georges Thomason', 'Patricia Hayes': 'Mrs. Coady', 'Geoffrey Palmer': 'Judge', 'Cynthia Cleese': 'Portia (as Cynthia Caylor)', 'Mark Elwes': ""Customer in Jeweler's Shop"", 'Neville Phillips': ""Manager of Jeweler's Shop"", 'Peter Jonfield': 'Inspector Marvin', 'Ken Campbell': 'Bartlett', 'Al Ashton': 'Warder', 'Roger Hume': 'Locksmith'}" tt0103596,"{'Victor Wong': 'Grandpa', 'Michael Treanor': 'Rocky', 'Max Elliott Slade': 'Colt', 'Chad Power': 'Tum Tum', 'Rand Kingsley': 'Snyder', 'Alan McRae': 'Sam Douglas', 'Margarita Franco': 'Jessica Douglas', 'Kate Sargeant': 'Emily', 'Joel Swetow': 'Brown', 'Professor Toru Tanaka': 'Rushmore (as Toru Tanaka)', 'Patrick Labyorteaux': 'Fester', 'Race Nelson': 'Marcus', 'D.J. Harder': 'Hammer', 'Baha Jackson': 'Bully', 'Scott Caudill': 'Bully'}" tt0075066,"{'Peter Sellers': 'Chief Inspector Clouseau', 'Herbert Lom': 'Charles Dreyfus', 'Lesley-Anne Down': 'Olga', 'Burt Kwouk': 'Cato', 'Colin Blakely': 'Drummond', 'Leonard Rossiter': 'Quinlan', 'André Maranne': 'Francois (as Andre Maranne)', 'Byron Kane': 'Secretary of State', 'Howard K. Smith': 'Himself (scenes deleted)', 'Dick Crockett': 'The President', 'Richard Vernon': 'Dr. Hugo Fassbender', 'Briony McRoberts': 'Margo Fassbender', 'Dudley Sutton': 'McClaren', 'Murray Kash': 'Dr. Zelmo Flek (scenes deleted)', 'Hal Galili': 'Danny Salvo'}" tt0120841,"{'Michael Madsen': 'Press', 'Natasha Henstridge': 'Eve', 'Marg Helgenberger': 'Dr. Laura Baker', 'Mykelti Williamson': 'Dennis Gamble', 'George Dzundza': 'Colonel Carter Burgess Jr', 'James Cromwell': 'Senator Judson Ross', 'Justin Lazard': 'Patrick Ross', 'Myriam Cyr': 'Anne Sampas', 'Sarah Wynter': 'Melissa', 'Baxter Harris': 'Dr. Orinsky', 'Scott Morgan': 'Harry Sampas', 'Nancy La Scala': 'Debutante', 'Raquel Gardner': ""Debutante's Sister"", 'Henderson Forsythe': 'Pentagon Personnel', 'Robert Hogan': 'Pentagon Personnel'}" tt0072081,"{'Peter Sellers': 'Insp. Jacques Clouseau', 'Christopher Plummer': 'Sir Charles Litton', 'Catherine Schell': 'Lady Claudine Litton', 'Herbert Lom': 'Chief Insp. Charles Dreyfus', 'Peter Arne': 'Colonel Sharki', 'Peter Jeffrey': 'General Wadafi', 'Grégoire Aslan': 'Chief of Lugash Police (as Gregoire Aslan)', 'David Lodge': 'Mac', 'Graham Stark': 'Pepi', 'Eric Pohlmann': 'Fat Man', 'André Maranne': 'Sgt. François Chevalier', 'Burt Kwouk': 'Cato Fong', 'Victor Spinetti': 'Hotel Concierge', 'John Bluthal': 'Blind Beggar', 'Mike Grady': 'Bell Boy'}" tt0111282,"{'Kurt Russell': ""Colonel Jonathan 'Jack' O'Neil"", 'James Spader': 'Dr. Daniel Jackson', 'Jaye Davidson': 'Ra', 'Viveca Lindfors': 'Catherine Langford', 'Alexis Cruz': 'Skaara', 'Mili Avital': ""Sha'uri"", 'Leon Rippy': 'General W.O. West', 'John Diehl': 'Lieutenant Kawalsky', 'Carlos Lauchu': 'Anubis', 'Djimon Hounsou': 'Horus (as Djimon)', 'Erick Avari': 'Kasuf', 'French Stewart': 'Lieutenant Ferretti', 'Gianin Loffler': 'Nabeh', 'Christopher John Fields': 'Freeman', 'Derek Webster': 'Brown'}" tt0095444,"{'Grant Cramer': 'Mike Tobacco', 'Suzanne Snyder': 'Debbie Stone', 'John Allen Nelson': 'Dave Hansen', 'John Vernon': 'Curtis Mooney', 'Michael S. Siegel': 'Rich Terenzi (as Michael Siegel)', 'Peter Licassi': 'Paul Terenzi', 'Royal Dano': 'Farmer Gene Green', 'Christopher Titus': 'Bob McReed (as Chris Titus)', 'Irene Michaels': 'Stacy', 'Karla Sue Krull': 'Tracy', 'Aeron Macintyre': 'Punk #1 (as Brian Degan Scott)', 'Danny Kovacs': 'Punk #2', 'Adele Proom': 'Mrs. Franco', 'Howard Malpas': 'Mr. Myers', 'Karen Raff': 'Mom #1'}" tt0109831,"{'Hugh Grant': 'Charles - Wedding One', 'James Fleet': 'Tom - Wedding One', 'Simon Callow': 'Gareth - Wedding One', 'John Hannah': 'Matthew - Wedding One', 'Kristin Scott Thomas': 'Fiona - Wedding One', 'David Bower': 'David - Wedding One', 'Charlotte Coleman': 'Scarlett - Wedding One', 'Andie MacDowell': 'Carrie - Wedding One (as Andie Macdowell)', 'Timothy Walker': 'Angus the Groom - Wedding One', 'Sara Crowe': 'Laura the Bride - Wedding One', 'Ronald Herdman': 'Vicar - Wedding One', 'Elspet Gray': ""Laura's Mother - Wedding One"", 'Philip Voss': ""Laura's Father - Wedding One"", 'Rupert Vansittart': 'George the Boor at The Boatman - Wedding One', 'Nicola Walker': 'Frightful Folk Duo - Wedding One'}" tt0093409,"{'Mel Gibson': 'Martin Riggs', 'Danny Glover': 'Roger Murtaugh', 'Gary Busey': 'Joshua', 'Mitchell Ryan': 'The General', 'Tom Atkins': 'Michael Hunsaker', 'Darlene Love': 'Trish Murtaugh', 'Traci Wolfe': 'Rianne Murtaugh', 'Jackie Swanson': 'Amanda Hunsaker', 'Damon Hines': 'Nick Murtaugh', 'Ebonie Smith': 'Carrie Murtaugh', 'Bill Kalmenson': 'Beat Cop', 'Lycia Naff': 'Dixie', 'Patrick Cameron': 'Cop #1', 'Don Gordon': 'Cop #2', 'Jimmie F. Skaggs': 'Drug Dealer #1'}" tt0078872,"{'Kelly Reno': 'Alec Ramsey', 'Mickey Rooney': 'Henry Dailey', 'Teri Garr': ""Alec's Mother"", 'Clarence Muse': 'Snoe', 'Hoyt Axton': ""Alec's Father"", 'Michael Higgins': 'Neville', 'Ed McNamara': 'Jake', 'Larbi Doghmi': 'Arab (as Dogmi Larbi)', 'John Burton': 'Jockey #1', 'John Buchanan': 'Jockey #2', 'Kristen Vigard': 'Becky', 'Fausto Tozzi': 'Rescue Captain', 'John Karlsen': 'Archeologist (as John Karlson)', 'Leopoldo Trieste': 'Priest', 'Frank Cousins': 'African Chieftain'}" tt0107616,"{'Richard Briers': 'Leonato', 'Kate Beckinsale': 'Hero', 'Imelda Staunton': 'Margaret', 'Jimmy Yuill': 'Friar Francis', 'Brian Blessed': 'Antonio', 'Andy Hockley': 'George Seacole', 'Chris Barnes': 'Francis Seacole', 'Conrad Nelson': 'Hugh Oatcake', 'Phyllida Law': 'Ursula', 'Emma Thompson': 'Beatrice', 'Alex Lowe': 'Messenger', 'Denzel Washington': 'Don Pedro', 'Keanu Reeves': 'Don John', 'Richard Clifford': 'Conrade', 'Gerard Horan': 'Borachio'}" tt0100054,"{'Balthazar Getty': 'Ralph', 'Chris Furrh': 'Jack Merridew', 'Danuel Pipoly': 'Piggy', 'James Badge Dale': 'Simon (as Badgett Dale)', 'Andrew Taft': 'The Twins', 'Edward Taft': 'The Twins', 'Gary Rule': 'Roger', 'Terry Wells': 'Andy', 'Braden MacDonald': 'Larry', 'Angus Burgin': 'Greg', 'Martin Zentz': 'Sheraton', 'Brian Jacobs': 'Peter', 'Vincent Amabile': 'Patterson', 'David Weinstein': 'Mikey', 'Chuck Bell': 'Steve'}" tt0333780,"{'Reese Witherspoon': 'Elle Woods', 'Sally Field': 'Congresswoman Rudd', 'Regina King': 'Grace Rossiter', 'Jennifer Coolidge': 'Paulette Parcelle', 'Bruce McGill': 'Stanford Marks', 'Dana Ivey': 'Libby Hauser', 'Mary Lynn Rajskub': 'Reena Giuliani', 'Jessica Cauffiel': 'Margot', 'Alanna Ubach': 'Serena McGuire', 'J Barton': 'Timothy McGinn', 'Stanley Anderson': 'Michael Blaine', 'Bruce Thomas': 'UPS Guy', 'Bob Newhart': 'Sid Post', 'Luke Wilson': 'Emmett Richmond', 'Ruth Williamson': 'Madeline Kroft'}" tt0212985,"{'Anthony Hopkins': 'Hannibal Lecter', 'Julianne Moore': 'Clarice Starling', 'Gary Oldman': 'Mason Verger', 'Ray Liotta': 'Paul Krendler', 'Frankie Faison': 'Nurse Barney (as Frankie R. Faison)', 'Giancarlo Giannini': 'Insp. Rinaldo Pazzi', 'Francesca Neri': 'Allegra Pazzi', 'Zeljko Ivanek': 'Dr. Cordell Doemling', 'Hazelle Goodman': 'Evelda Drumgo', 'David Andrews': 'FBI Agent Pearsall', 'Francis Guinan': 'FBI Asst. Director Noonan', 'James Opher': 'DEA Agent John Eldridge', 'Enrico Lo Verso': 'Gnocco', 'Ivano Marescotti': 'Carlo', 'Fabrizio Gifuni': 'Matteo'}" tt0085862,"{'Chuck Norris': 'J.J. McQuade', 'David Carradine': 'Rawley Wilkes', 'Barbara Carrera': 'Lola Richardson', 'Leon Isaac Kennedy': 'Jackson', 'Robert Beltran': 'Kayo', 'L.Q. Jones': 'Dakota', 'Dana Kimmell': 'Sally McQuade', 'R.G. Armstrong': 'T. Tyler', 'Jorge Cervera Jr.': 'Jefe', 'Sharon Farrell': 'Molly', 'Daniel Frishman': 'Falcon', 'William Sanderson': 'Snow', 'John Anderson': 'Burnside', 'Robert Arenas': 'Gas Station Attendant', 'Tommy Ballard': 'Colonel'}" tt0092675,"{'Jean-Claude Van Damme': 'Frank Dux (as Jean Claude Van Damme)', 'Donald Gibb': 'Jackson', 'Leah Ayres': 'Janice', 'Norman Burton': 'Helmer', 'Forest Whitaker': 'Rawlins', 'Roy Chiao': 'Tanaka', 'Philip Chan': 'Captain Chen', 'Pierre Rafini': 'Young Frank', 'Bolo Yeung': 'Chong Li', 'Ken Siu': 'Victor (as Kenneth Siu)', 'Kimo Lai Kwok Ki': 'Hiro', 'Bernard Mariano': 'Hossein', 'Bill Yuen Ping Kuen': 'Oshima', 'Shun-Yin Leung': 'Mrs. Tanaka', 'Joshua Schroder': 'Chuck / Older Boy (as Jousha Schroder)'}" tt0103074,"{'Susan Sarandon': 'Louise', 'Geena Davis': 'Thelma', 'Harvey Keitel': 'Hal', 'Michael Madsen': 'Jimmy', 'Christopher McDonald': 'Darryl', 'Stephen Tobolowsky': 'Max', 'Brad Pitt': 'J.D.', 'Timothy Carhart': 'Harlan', 'Lucinda Jenney': 'Lena, the Waitress', 'Jason Beghe': 'State Trooper', 'Sonny Carl Davis': 'Albert', 'Shelly Desai': 'East Indian Motel Clerk (as Shelly De Sai)', 'Ken Swofford': 'Major', 'Carol Mansell': 'Waitress', 'Stephen Polk': 'Surveillance Man'}" tt0032904,"{'Cary Grant': 'C. K. Dexter Haven', 'Katharine Hepburn': 'Tracy Lord', 'James Stewart': 'Macaulay Connor', 'Ruth Hussey': 'Elizabeth Imbrie', 'John Howard': 'George Kittredge', 'Roland Young': 'Uncle Willie', 'John Halliday': 'Seth Lord', 'Mary Nash': 'Margaret Lord', 'Virginia Weidler': 'Dinah Lord', 'Henry Daniell': 'Sidney Kidd', 'Lionel Pape': 'Edward', 'Rex Evans': 'Thomas'}" tt0379725,"{'Allie Mickelson': 'Laura Kinney', 'Kelci Stephenson': 'Nancy Clutter', 'Philip Seymour Hoffman': 'Truman Capote', 'Craig Archibald': 'Christopher', 'Bronwen Coleman': 'Barbara', 'Kate Shindle': 'Rose', 'David Wilson Barnes': 'Grayson', 'Michael J. Burg': 'Williams (as Michael J. Berg)', 'Catherine Keener': 'Nelle Harper Lee', 'Kwesi Ameyaw': 'Porter', 'Andrew Farago': 'Car Rental Agent', 'Ken Krotowich': 'Courthouse Guard', 'Chris Cooper': 'Alvin Dewey', 'R.D. Reid': 'Roy Church', 'Rob McLaughlin': 'Harold Nye (as Robert McLaughlin)'}" tt0080745,"{'Sam J. Jones': 'Flash Gordon', 'Melody Anderson': 'Dale Arden', 'Max von Sydow': 'The Emperor Ming (as Max Von Sydow)', 'Topol': 'Dr. Hans Zarkov', 'Ornella Muti': 'Princess Aura', 'Timothy Dalton': 'Prince Barin', 'Brian Blessed': 'Prince Vultan', 'Peter Wyngarde': 'Klytus', 'Mariangela Melato': 'Kala', 'John Osborne': 'Arborian Priest', ""Richard O'Brien"": 'Fico', 'John Hallam': 'Luro', 'Philip Stone': 'Zogi, the High Priest', 'Suzanne Danielle': 'Serving Girl', 'William Hootkins': 'Munson'}" tt0116778,"{'Woody Harrelson': 'Roy Munson', 'Randy Quaid': 'Ishmael', 'Vanessa Angel': 'Claudia', 'Bill Murray': 'Ernie McCracken', 'Chris Elliott': 'The Gambler', 'William Jordan': 'Mr. Boorg', 'Richard Tyson': ""Owner Of Stiffy's"", 'Lin Shaye': 'Landlady', 'Zen Gesner': 'Thomas', 'Prudence Wright Holmes': 'Mrs. Boorg', 'Rob Moran': 'Stanley Osmanski', 'Daniel Greene': 'Calvert Munson (as Danny Green)', 'Will Rothhaar': 'Young Roy', 'Mark Charpentier': '1979 Bowling Buddy', 'Brad Faxon': '1979 Bowling Buddy'}" tt0098627,"{'Andrew McCarthy': 'Larry Wilson', 'Jonathan Silverman': 'Richard Parker', 'Catherine Mary Stewart': 'Gwen Saunders', 'Terry Kiser': 'Bernie Lomax', 'Don Calfa': ""Paulie, Vito's Hit Man"", 'Catherine Parks': ""Tina, Vito's Girl"", 'Eloise DeJoria': 'Tawny (as Eloise Broady)', 'Gregory Salata': ""Marty, Vito's Assistant"", 'Louis Giambalvo': 'Vito', 'Ted Kotcheff': ""Jack Parker, Richard's Dad"", 'Margaret Hall': ""Lomax's Secretary"", 'Tim Perez': 'Central Park Mugger (as Timothy Perez)', 'Mark Kenneth Smaltz': 'Harris, Security Oficer', 'Anthony Mannino': 'Superintendant', 'Polly Segal': 'Woman in Elevator'}" tt0050083,"{'Martin Balsam': 'Juror 1', 'John Fiedler': 'Juror 2', 'Lee J. Cobb': 'Juror 3', 'E.G. Marshall': 'Juror 4', 'Jack Klugman': 'Juror 5', 'Edward Binns': 'Juror 6', 'Jack Warden': 'Juror 7', 'Henry Fonda': 'Juror 8', 'Joseph Sweeney': 'Juror 9', 'Ed Begley': 'Juror 10', 'George Voskovec': 'Juror 11', 'Robert Webber': 'Juror 12'}" tt0245574,"{'Daniel Giménez Cacho': 'Narrator (voice)', 'Ana López Mercado': 'Ana Morelos', 'Diego Luna': 'Tenoch Iturbide', 'Gael García Bernal': 'Julio Zapata', 'Nathan Grinberg': 'Manuel Huerta', 'Verónica Langer': 'María Eugenia Calles de Huerta', 'María Aura': 'Cecilia Huerta', 'Giselle Audirac': 'Nicole Bazaine', 'Arturo Ríos': 'Esteban Morelos', 'Andrés Almeida': ""Diego 'Saba' Madero"", 'Diana Bracho': 'Silvia Allende de Iturbide', 'Emilio Echevarría': 'Miguel Iturbide', 'Marta Aura': ""Enriqueta 'Queta' Allende"", 'Maribel Verdú': 'Luisa Cortés', 'Juan Carlos Remolina': ""Alejandro 'Jano' Montes de Oca""}" tt0070849,"{'Marlon Brando': 'Paul', 'Maria Schneider': 'Jeanne', 'Maria Michi': ""Rosa's Mother / La mère de Rosa"", 'Giovanna Galletti': 'Prostitute / La prostituée', 'Gitt Magrini': ""Jeanne's Mother / La mère de Jeanne"", 'Catherine Allégret': 'Catherine (as Catherine Allegret)', 'Luce Marquand': 'Olympia', 'Marie-Hélène Breillat': 'Monique (as Marie-Helene Breillat)', 'Catherine Breillat': 'Mouchette', 'Dan Diament': ""TV Sound Engineer / L'ingénieur du son"", 'Catherine Sola': 'TV Script Girl / La script-girl', 'Mauro Marchetti': 'TV Cameraman / Le cameraman', 'Jean-Pierre Léaud': 'Tom - un cinéaste, le fiancé de Jeanne (as Jean-Pierre Leaud)', 'Massimo Girotti': 'Marcel', 'Peter Schommer': ""TV Assistant Cameraman / L'assistant-opérateur""}" tt0424345,"{""Brian O'Halloran"": 'Dante', 'Jeff Anderson': 'Randal', 'Jason Mewes': 'Jay', 'Kevin Smith': 'Silent Bob', 'Jake Richardson': 'Teen #1', 'Ethan Suplee': 'Teen #2', 'Rachel Larratt': 'Counter Girl with Ear Guy', 'Shannon Larratt': 'Ear Guy', 'Jennifer Schwalbach Smith': 'Emma (as Jennifer Schwalbach)', 'Ben Affleck': 'Gawking Guy', 'Sarah Ault': 'Catholic Schoolgirl', 'Lalida Sujjavasin': 'Catholic Schoolgirl', 'Trevor Fehrman': 'Elias', 'Gail Stanley': ""Elias' Mom"", 'Bruce Macintosh': ""Elias' Dad""}" tt0095560,"{'Christine Ebersole': 'Janet Cruise', 'Jonathan Ward': 'Michael Cruise', 'Tina Caspary': 'Courtney (as Katrina Caspary)', 'Lauren Stanley': 'Debbie', 'Jade Calegory': 'Eric Cruise', 'Vinnie Torrente': 'Mitford', 'Martin West': 'Wickett', 'Ivan J. Rado': 'Zimmerman', 'Danny Cooksey': 'Jack Jr', 'Laura Waterbury': 'Linda', 'Jack Eiseman': 'Splatter Car Driver', 'Barbara Allyne Bennet': 'Scientist', 'Richard Bravo': 'Mover #1', 'Gary Brockette': 'Doctor #2', 'Sherri Stone Butler': 'Checkout Girl'}" tt0087803,"{'John Hurt': 'Winston Smith', 'Richard Burton': ""O'Brien"", 'Suzanna Hamilton': 'Julia', 'Cyril Cusack': 'Charrington', 'Gregor Fisher': 'Parsons', 'James Walker': 'Syme', 'Andrew Wilde': 'Tillotson', 'David Trevena': ""Tillotson's Friend"", 'David Cann': 'Martin', 'Anthony Benson': 'Jones', 'Peter Frye': 'Rutherford', 'Roger Lloyd Pack': 'Waiter', 'Rupert Baderman': 'Winston Smith as a Boy', 'Corinna Seddon': ""Winston's Mother"", 'Martha Parsey': ""Winston's Sister""}" tt0097499,"{'Derek Jacobi': 'Chorus', 'Kenneth Branagh': 'King Henry V', 'Simon Shepherd': 'Duke Humphrey of Gloucester', 'James Larkin': 'Duke John of Bedford', 'Brian Blessed': 'Duke Thomas Beaufort of Exeter', 'James Simmons': 'Duke Edward of York', 'Paul Gregory': 'Westmoreland', 'Charles Kay': 'Archbishop of Canterbury', 'Alec McCowen': 'Bishop of Ely', 'Fabian Cartwright': 'Earl Richard of Cambridge', 'Stephen Simms': 'Lord Henry Scroop', 'Jay Villiers': 'Sir Thomas Grey', 'Edward Jewesbury': 'Sir Thomas Erpingham', 'Ian Holm': 'Captain Fluellen', 'Danny Webb': 'Gower (as Daniel Webb)'}" tt0090142,"{'Michael J. Fox': 'Scott Howard', 'James Hampton': 'Harold Howard', 'Susan Ursitti': 'Boof', 'Jerry Levine': 'Stiles', 'Matt Adler': 'Lewis', 'Lorie Griffin': 'Pamela', 'James MacKrell': 'Mr. Thorne (as Jim MacKrell)', 'Mark Arnold': 'Mick', 'Jay Tarses': 'Coach Finstock', 'Mark Holton': 'Chubby', 'Scott Paulin': 'Kirk Lolley', 'Elizabeth Gorcey': 'Tina', 'Melanie Manos': 'Gina', 'Doug Savant': 'Brad', 'Charles Zucker': 'Malcolm'}" tt0040724,"{'John Wayne': 'Thomas Dunson', 'Montgomery Clift': 'Matt Garth', 'Joanne Dru': 'Tess Millay', 'Walter Brennan': 'Nadine Groot', 'Coleen Gray': 'Fen (as Colleen Gray)', 'Harry Carey': 'Mr. Melville (as Harry Carey Sr.)', 'John Ireland': 'Cherry Valance', 'Noah Beery Jr.': 'Buster McGee', 'Harry Carey Jr.': 'Dan Latimer', 'Chief Yowlachie': 'Quo (as Chief Yowlatchie)', 'Paul Fix': 'Teeler Yacey', 'Hank Worden': 'Simms Reeves', 'Mickey Kuhn': 'Matt - as a Boy', 'Ray Hyke': 'Walt Jergens', 'Hal Taliaferro': 'Old Leather (as Hal Talliaferro)'}" tt0053291,"{'Marilyn Monroe': 'Sugar Kane Kowalczyk', 'Tony Curtis': 'Joe / Josephine / Shell Oil Junior', 'Jack Lemmon': 'Jerry / Daphne', 'George Raft': 'Spats Colombo', ""Pat O'Brien"": 'Detective Mulligan', 'Joe E. Brown': 'Osgood Fielding III', 'Nehemiah Persoff': 'Little Bonaparte', 'Joan Shawlee': 'Sweet Sue', 'Billy Gray': 'Sig Poliakoff', 'George E. Stone': 'Toothpick Charlie', 'Dave Barry': 'Beinstock', 'Mike Mazurki': ""Spats' Henchman"", 'Harry Wilson': ""Spats' Henchman"", 'Beverly Wills': 'Dolores', 'Barbara Drew': 'Nellie'}" tt0114814,"{'Stephen Baldwin': 'McManus', 'Gabriel Byrne': 'Keaton', 'Benicio Del Toro': 'Fenster', 'Kevin Pollak': 'Hockney', 'Kevin Spacey': 'Verbal', 'Chazz Palminteri': 'Dave Kujan', 'Pete Postlethwaite': 'Kobayashi', 'Suzy Amis': 'Edie Finneran', 'Giancarlo Esposito': 'Jack Baer', 'Dan Hedaya': 'Jeff Rabin', 'Paul Bartel': 'Smuggler', 'Carl Bressler': 'Saul Berg', 'Phillipe Simon': 'Fortier', 'Jack Shearer': 'Renault', 'Christine Estabrook': 'Dr. Plummer'}" tt0101587,"{'Billy Crystal': 'Mitch Robbins', 'Daniel Stern': 'Phil Berquist', 'Bruno Kirby': 'Ed Furillo', 'Patricia Wettig': 'Barbara Robbins', 'Helen Slater': 'Bonnie Rayburn', 'Jack Palance': 'Curly', 'Noble Willingham': 'Clay Stone', 'Tracey Walter': 'Cookie', 'Josh Mostel': 'Barry Shalowitz', 'David Paymer': 'Ira Shalowitz', 'Bill Henderson': 'Ben Jessup', 'Jeffrey Tambor': 'Lou', 'Phill Lewis': 'Steve Jessup', 'Kyle Secor': 'Jeff', 'Dean Hallo': 'T.R.'}" tt0100157,"{'James Caan': 'Paul Sheldon', 'Kathy Bates': 'Annie Wilkes', 'Richard Farnsworth': 'Buster', 'Frances Sternhagen': 'Virginia', 'Lauren Bacall': 'Marcia Sindell', 'Graham Jarvis': 'Libby', 'Jerry Potter': 'Pete', 'Thomas Brunelle': 'Anchorman (as Tom Brunelle)', 'June Christopher': 'Anchorwoman', 'Julie Payne': 'Reporter #1', 'Archie Hahn': 'Reporter #2 (as Archie Hahn III)', 'Gregory Snegoff': 'Reporter #3', 'Wendy Bowers': 'Waitress', 'Misery the Pig': 'Herself'}" tt0299117,"{'Campbell Scott': 'Roger Swanson', 'Jesse Eisenberg': 'Nick', 'Isabella Rossellini': 'Joyce', 'Elizabeth Berkley': 'Andrea', 'Jennifer Beals': 'Sophie', 'Mina Badie': 'Donna', 'Ben Shenkman': 'Donovan', 'Chris Stack': 'Chris', 'Morena Baccarin': 'Girl in Bar', 'Lisa Emery': 'Woman in Bar', 'Flora Diaz': 'Young Working Girl', 'Stephanie Gatschet': 'Angela - High School Beauty', 'Colin Fickes': 'Angus', 'Tommy Savas': 'Darren', 'Gabriel Millman': 'Felix'}" tt0264616,"{'Bill Paxton': 'Dad Meiks', 'Matthew McConaughey': 'Adam Meiks', 'Powers Boothe': 'FBI Agent Wesley Doyle', ""Matt O'Leary"": 'Young Fenton', 'Jeremy Sumpter': 'Young Adam', 'Luke Askew': 'Sheriff Smalls', 'Levi Kreis': 'Fenton Meiks', 'Derk Cheetwood': 'Agent Griffin Hull', 'Missy Crider': 'Becky Meiks (as Melissa Crider)', 'Alan Davidson': 'Brad White', 'Cynthia Ettinger': 'Cynthia Harbridge', 'Vincent Chase': 'Edward March', 'Gwen McGee': 'Operator', 'Edmond Scott Ratliff': 'The Angel', 'Rebecca Tilney': 'Teacher'}" tt1046163,"{'Dane Cook': 'Tank', 'Kate Hudson': 'Alexis', 'Alec Baldwin': 'Professor Turner', 'Jason Biggs': 'Dustin', 'Diora Baird': 'Rachel', 'Lizzy Caplan': 'Ami', 'Riki Lindhome': 'Hilary', 'Mini Anden': 'Lizzy', 'Hilary Pingle': 'Claire', 'Nate Torrence': 'Craig', 'Malcolm Barrett': 'Dwalu', 'Taran Killam': 'Josh', 'Faye Grant': 'Merrilee', 'Richard Snee': 'Brian', 'Amanda Brooks': 'Carly'}" tt0151568,"{'Allan Corduner': 'Arthur Sullivan', 'Dexter Fletcher': 'Louis', 'Sukie Smith': 'Clothilde', 'Roger Heathcott': 'Stage Doorkeeper', 'Wendy Nottingham': 'Helen Lenoir', 'Stefan Bednarczyk': 'Frank Cellier', 'Geoffrey Hutchings': 'Armourer', 'Timothy Spall': 'Richard Temple', 'Francis Lee': 'Butt', 'William Neenan': 'Cook', 'Adam Searle': 'Shrimp', 'Martin Savage': 'George Grossmith', 'Jim Broadbent': 'William Schwenck Gilbert', 'Lesley Manville': 'Lucy Gilbert (Kitty)', 'Kate Doherty': 'Mrs. Judd'}" tt0092654,"{'Dennis Quaid': 'Remy McSwain', 'Ellen Barkin': 'Anne Osborne', 'Ned Beatty': 'Jack Kellom', 'John Goodman': 'Det. Andre DeSoto', 'Lisa Jane Persky': 'McCabe', 'Ebbe Roe Smith': 'Ed Dodge', ""Tom O'Brien"": 'Bobby McSwain', 'Charles Ludlam': 'Lamar Parmentel', 'Grace Zabriskie': 'Mama', 'Marc Lawrence': ""Vinnie 'The Cannon' DiMotti"", 'Solomon Burke': 'Daddy Mention', 'Gailard Sartain': 'Chef Paul', 'Jim Chimento': 'Freddie Angelo', ""Edward Saint Pe'"": 'Patrolman (as Edward St. Pe)', 'Robert Lesser': ""'Silky' Foster""}" tt1081935,"{'Francesco Scianna': 'Peppino Torrenuova', 'Margareth Madè': 'Mannina', 'Lina Sastri': 'Tana / Beggard', 'Ángela Molina': 'Sarina', 'Nicole Grimaudo': 'Sarina as a young woman', 'Ficarra': 'Nino (as Salvo Ficarra)', 'Picone': 'Luigi (as Valentino Picone)', 'Gaetano Aronica': 'Cicco', 'Alfio Sorbello': 'Cicco as a young man', 'Lollo Franco': 'Don Giacinto', 'Giovanni Gambino': 'Peppino as a child', 'Giuseppe Garufì': 'Pietro as a child', 'Aldo Baglio': 'Speculator', 'Raoul Bova': 'Roman journalist', 'Paolo Briguglia': 'Catechist'}" tt1403177,"{'Joseph Gordon-Levitt': 'Hesher', 'Devin Brochu': 'TJ', 'Rainn Wilson': 'Paul', 'Piper Laurie': 'Grandma', 'Natalie Portman': 'Nicole', 'Brendan Hill': 'Dustin', 'John Carroll Lynch': 'Larry', 'Monica Staggs': 'Mom', 'Mary Elizabeth Barrett': 'Meryl', 'Audrey Wasilewski': 'Coleen', 'Lyle Kanouse': 'Jack', 'Frank Collison': 'Funeral Director', 'Van Epperson': 'Angry Driver', 'Helen Slayton-Hughes': 'Mrs. Rosowski', 'Paul Bates': 'Mr. Elsberry'}" tt1277737,"{'Shohreh Aghdashloo': 'Zahra', 'Mozhan Marnò': 'Soraya M.', 'Jim Caviezel': 'Freidoune Sahebjam', 'Navid Negahban': 'Ali', 'Ali Pourtash': 'Mullah', 'David Diaan': 'Ebrahim', 'Parviz Sayyad': 'Hashem', 'Vida Ghahremani': 'Mrs. Massoud', 'Vachik Mangassarian': ""Morteza Ramazani - Soraya's Father"", 'Bita Sheibani': 'Leila', 'Noor Taher': 'Kataneh (as Noor Al Taher)', 'Haya Al Taher': 'Malaka', 'Khalid Khan': 'Warden', 'Sheede Dana': 'Second Woman', 'Fay Yan': 'Bita'}" tt1213012,"{'Justin Long': 'Humphrey (voice)', 'Hayden Panettiere': 'Kate (voice)', 'Dennis Hopper': 'Tony (voice)', 'Danny Glover': 'Winston (voice)', 'Larry Miller': 'Marcel (voice)', 'Eric Price': 'Paddy / Mooch (voice)', 'Vicki Lewis': 'Eve (voice)', 'Christina Ricci': 'Lilly (voice)', 'Chris Carmack': 'Garth (voice)', 'Brian Donovan': 'Salty (voice)', 'Kevin Sussman': 'Shakey (voice)', 'Maya Kay': 'Bear Cub (voice) (as Maya Feltheimer)', 'Christine Lakin': 'Reba (voice)', 'Marilyn Tokuda': 'Claws / Janice (voice)', 'Eric Lopez': 'Can-do (voice)'}" tt0164181,"{'Zachary David Cope': 'Jake', 'Kevin Bacon': 'Tom', 'Kathryn Erbe': 'Maggie', 'Illeana Douglas': 'Lisa', 'Kevin Dunn': 'Frank', ""Conor O'Farrell"": 'Harry', 'Lusia Strus': 'Sheila', 'Stephen Eugene Walker': 'Bobby', 'Mary Kay Cook': 'Vanessa', 'Larry Neumann Jr.': 'Lenny', 'Jennifer Morrison': 'Samantha (as Jenny Morrison)', 'Richard Cotovsky': 'Neighborhood Man', 'Steve Rifkin': 'Kurt', 'Chalon Williams': 'Adam', 'Liza Weil': 'Debbie the Babysitter'}" tt0245238,"{'Piper Perabo': ""Pauline 'Paulie' Oster"", 'Jessica Paré': ""Victoria 'Tori' Moller"", 'Mischa Barton': ""Mary 'Mouse' Bedford"", 'Jackie Burroughs': 'Fay Vaughn', 'Mimi Kuzyk': 'Eleanor Bannet', 'Graham Greene': 'Joe Menzies', 'Emily VanCamp': 'Allison Moller (as Emily Vancamp)', 'Amy Stewart': 'Cordelia', 'Caroline Dhavernas': 'Kara', 'Luke Kirby': 'Jake Hollander', 'Alan Fawcett': 'Bruce Moller', 'Peter Oldring': 'Phil', 'Grace Lynn Kung': 'Lauren (as Grace Kung)', 'Stephen Mwinga': 'John', 'Lydia Zadel': 'Monica'}" tt0367913,"{'Noriko Sakai': 'Kyoko Harase', 'Chiharu Niiyama': 'Tomoka Miura', 'Kei Horie': 'Noritaka Yamashita', 'Yui Ichikawa': 'Chiharu', 'Ayumu Saitô': 'Masashi Ishikura', 'Emi Yamamoto': 'Megumi Ôbayashi', 'Erika Kuroishi': 'Hiromi', 'Kaoru Mizuki': 'Aki Harase', 'Shinobu Yûki': 'Kaoru Ishikura', 'Takako Fuji': 'Kayako Saeki', 'Yuya Ozeki': 'Toshio Saeki (as Yûya Ozeki)', 'Shingo Katsurayama': 'Keisuke Ôkuni', 'Fumika Hidejima': 'DJ', 'Hidetoshi Kageyama': 'Kazumasa Ishikura', 'Hiroko Toda': 'Shojo Yaku no Haiyû'}" tt0873886,"{'Michael Angarano': 'Travis', 'Deborah Aquila': 'Mrs. Vasquez', 'Nicholas Braun': 'Billy-Ray', 'Ronnie Connell': 'Randy', 'Kaylee DeFer': 'Dana', 'Joey Figueroa': 'Route 9 Friend', 'Kyle Gallner': 'Jarod', 'Anna Gunn': ""Travis' Mother"", 'Matt Jones': 'Deputy Pete', 'John Lacy': ""Travis' Father"", 'Catherine McCord': 'News Reporter', 'Alexa Nikolas': 'Jesse', 'Stephen Root': 'Sheriff Wynan', 'Cooper Thornton': 'Plastic Wrap Man', 'Betty Aberlin': 'Abigail'}" tt0090837,"{'Kelli Maroney': 'Alison Parks', ""Tony O'Dell"": 'Ferdy Meisel', 'Russell Todd': 'Rick Stanton', 'Karrie Emerson': 'Linda Stanton', 'Barbara Crampton': 'Suzie Lynn', 'Nick Segal': 'Greg Williams', 'John Terlesky': 'Mike Brennan', 'Suzee Slater': 'Leslie Todd', 'Paul Bartel': 'Paul Bland', 'Mary Woronov': 'Mary Bland', 'Dick Miller': 'Walter Paisley', 'Gerrit Graham': 'Technician Nessler', 'Mel Welles': 'Cook', 'Angela Aames': 'Miss Vanders', 'Paul Coufos': 'Dr. Stan Simon'}" tt0098141,"{'Dolph Lundgren': 'Frank Castle', 'Louis Gossett Jr.': 'Jake Berkowitz', 'Jeroen Krabbé': 'Gianni Franco (as Jeroen Krabbe)', 'Kim Miyori': 'Lady Tanaka', 'Bryan Marshall': 'Dino Moretti', 'Nancy Everhard': 'Sam Leary', 'Barry Otto': 'Shake', 'Brian Rooney': 'Tommy Franco', 'Zoska Aleece': ""Tanaka's Daughter (as Zoshka Mizak)"", 'Kenji Yamaki': 'Sato', 'Hirofumi Kanayama': 'Tomio', 'Larry McCormick': 'TV Newsreader', 'Todd Boyce': 'Tarrone', 'Lani John Tupu': 'Laccone (as Larney Tupu)', 'Gianfranco Negroponte': 'Musso (as John Negroponte)'}" tt0173716,"{'Melanie Griffith': 'Honey Whitlock', 'Stephen Dorff': 'Cecil', 'Alicia Witt': 'Cherish', 'Adrian Grenier': 'Lyle', 'Lawrence Gilliard Jr.': 'Lewis (as Larry Gilliard Jr.)', 'Maggie Gyllenhaal': 'Raven', 'Jack Noseworthy': 'Rodney', 'Mink Stole': 'Mrs. Sylvia Mallory', 'Ricki Lake': 'Libby', 'Patricia Hearst': ""Fidget's Mom"", 'Michael Shannon': 'Petie (as Mike Shannon)', 'Kevin Nealon': 'Kevin', 'Eric Barry': 'Fidget (as Eric M. Barry)', 'Zenzele Uzoma': 'Chardonnay', 'Erika Auchterlonie': 'Pam (as Erika Lynn Rupli)'}" tt0090713,"{'Robin Williams': 'Jack Dundee', 'Kurt Russell': 'Reno Hightower', 'Pamela Reed': 'Gigi Hightower', 'Holly Palance': 'Elly Dundee', 'Donald Moffat': 'The Colonel', 'Margaret Whitton': 'Darla', 'M. Emmet Walsh': 'Charlie', 'Donovan Scott': 'Eddie', 'R.G. Armstrong': 'Schutte', 'Dub Taylor': 'Mac', 'Carl Ballantine': 'Arturo', 'Kathleen Freeman': 'Rosie', 'Tony Plana': 'Chico', 'Kirk Cameron': 'Teddy', 'Robyn Lively': 'Jaki'}" tt0100196,"{'Patrick Bergin': 'Richard Burton', 'Iain Glen': 'John Hanning Speke', 'Richard E. Grant': 'Oliphant', 'Fiona Shaw': 'Isabel', 'John Savident': 'Lord Murchison', 'James Villiers': 'Lord Oliphant', 'Adrian Rawlins': 'Edward', 'Peter Vaughan': 'Lord Houghton', 'Delroy Lindo': 'Mabruki', 'Bernard Hill': 'Dr. Livingstone', 'Matthew Marsh': 'William', 'Richard Caldicot': 'Lord Russell', 'Christopher Fulford': 'Herne', 'Garry Cooper': 'Stroyan', 'Roshan Seth': 'Ben Amir'}" tt0107492,"{'Michael Riley': 'Clive Walton', 'Stephen Rappaport': 'Marvin Handleman', 'Tamara Mello': 'Dial S Woman', 'Ashlie Rhey': 'Nude Ninja', 'Monique Parent': 'Nude Ninja (as Monique Paurent)', 'Lisa Comshaw': 'Nude Ninja (as Lisa Sutton)', 'Jen Sung': 'Wilhelm / Jimmi Lee', 'Daniel Tisman': 'Chip Greenfield', 'Tino Orsini': 'Walter / Writer', 'Jason Edwards': 'Peter Carbone / P.D. (as Jay Edwards)', 'Peter Macdissi': 'Jordan Sales Rep.', 'Nathalie Canessa-White': 'Girl #1 (as Natalie Lake)', 'Renée Felix': 'Girl #2 (as Renee Felix)', 'Darlene Waye': 'Girl #3', 'Christy Taylor': 'Eve (as Christy Michelle)'}" tt0119576,"{'Mickey Rourke': 'John Gray', 'Agathe de La Fontaine': 'Claire', 'Angie Everhart': 'Lea Calot', 'Steven Berkoff': 'Vittorio DaSilva', 'Dougray Scott': 'Charlie', 'Werner Schreyer': 'Gilles', 'Faisal Attia': 'Drug Dealer #2', 'Philippe Beglia': 'Hotel Raphael Doorman', 'Christin Amy Artner': 'Kahidijah (as Christine Brandner)', 'Sandra Cervik': 'Hotel Maid', 'Lana Clarkson': 'Woman at Fashion Show', 'Cyrille Cohen': 'Auctioneer', 'Sophie Dolce': 'Cafe Marly Hostess', 'Carolin Dichtl': 'Dominatrix', 'Andrea Eckert': 'Celeste'}" tt0081398,"{'Robert De Niro': 'Jake La Motta', 'Cathy Moriarty': 'Vickie La Motta', 'Joe Pesci': 'Joey', 'Frank Vincent': 'Salvy', 'Nicholas Colasanto': 'Tommy Como', 'Theresa Saldana': 'Lenore', 'Mario Gallo': 'Mario', 'Frank Adonis': 'Patsy', 'Joseph Bono': 'Guido', 'Frank Topham': 'Toppy', 'Lori Anne Flax': 'Irma', 'Charles Scorsese': 'Charlie - Man with Como', 'Don Dunphy': 'Himself - Radio Announcer for Dauthuille Fight', 'Bill Hanrahan': 'Eddie Eagan', 'Rita Bennett': ""Emma - Miss 48's""}" tt0125879,"{'Harvey Keitel': 'Izzy Maurer', 'Richard Edson': 'Dave Reilly', 'Don Byron': 'Tyrone Lord', 'Kevin Corrigan': 'Man With Gun', 'Mira Sorvino': 'Celia Burns', 'Victor Argo': 'Pierre', 'Peggy Gormley': 'Dr. Fisher', 'Harold Perrineau': 'Bobby Perez', 'Gina Gershon': 'Hannah', 'Sophie Auster': 'Sonia Kleinman', 'Vanessa Redgrave': 'Catherine Moore', 'Mandy Patinkin': 'Philip Kleinman', 'Greg Johnson': 'Stanley Mar', 'David Byrne': ""'Laughing Man' Escort"", 'Holly Buczek': 'Dying Girl'}" tt0151582,"{'Owen Wilson': 'Vann', 'Sheryl Crow': 'Casper', 'Dwight Yoakam': 'Blair', 'Dennis Haysbert': 'Graves', 'Alex Warren': 'State Trooper', 'Mercedes Ruehl': 'Jane', 'Chloe Black': 'Karen - Age 18', 'Brian Cox': 'Doug', 'Eric Mabius': 'Gene', 'Larry Miller': 'Paul', 'Lois Gerace': 'Lois', 'Erik Holland': 'Coach', ""Danny 'Big Black' Rey"": ""Arthur (as Daniel 'Big Black' Rey)"", 'Janeane Garofalo': 'Ferrin', 'Axel Ovregaard': 'Joe La Moine'}" tt0217355,"{'Charlotte Ayanna': 'Jessie', 'Kristin Bauer van Straten': 'Nico (as Kristin Bauer)', 'W. Earl Brown': 'Bobby', 'Daryl Hannah': 'Angel', 'Chris Hogan': 'Dennis', 'Sheila Kelley': 'Stormy', 'Elias Koteas': 'Sully', 'Vladimir Mashkov': 'Sacha', 'Sandra Oh': 'Jasmine', 'Rodney Rowland': 'Charlie', 'Jennifer Tilly': 'Jo', 'Robert Wisdom': 'Eddie', 'David Amos': 'Dave', 'Carolyne Aycaguer': 'Sophie', 'R.C. Bates': 'Jimmy (as RC Bates)'}" tt0218922,"{'Antonio Banderas': 'Luis Antonio Vargas', 'Angelina Jolie': 'Julia Russell / Bonny Castle', 'Thomas Jane': 'Billy / Walter Downs / Mephisto', 'Jack Thompson': 'Alan Jordan', 'Gregory Itzin': 'Colonel Worth', 'Allison Mackie': 'Augusta Jordan', 'Joan Pringle': 'Sara', 'Cordelia Richards': 'Emily Russell', 'James Haven': 'Faust - Stage', 'Pedro Armendáriz Jr.': 'Jorge Cortés (as Pedro Armendáriz)', 'Mario Iván Martínez': 'Cuban Priest', 'Harry Porter': 'Stage Manager', 'Fernando Torre Laphame': 'Wedding Priest (as Fernando Torre Lapham)', 'Shaula Vega': 'Dressmaker Girl', 'Lisa Owen': 'Margareta - Stage'}" tt0239060,"{'Antonie Kamerling': 'Eric', 'Angela Schijf': 'Reza', 'Beau van Erven Dorens': 'Fraser', 'Florence Kasumba': 'Silke', 'Dorothée Capelluto': 'Nadine (as Dorothee Capelluto)', 'Anniek Pheifer': 'Liesbeth', 'Leo Hogenboom': 'Father Eric', 'Guusje Westermann': 'Mother Eric (as Guusje Westerman)', 'Tijn Docter': 'Brother Eric', 'Arjan ten Broecke': 'Tom', 'Cynthia de Graaff': 'Claire', 'Antoinette Jelgersma': 'Mother Reza', 'Titus Muizelaar': 'Father Reza', 'Rinco van der Baan': 'Barkeeper', 'Marieke de Kruijf': 'Patricia'}" tt0234354,"{'Chelcie Ross': 'Mike', 'Steve Martin': 'Frank Sangster', 'Laura Dern': 'Jean Noble', 'Lynne Thigpen': 'Pat', 'Polly Noonan': 'Sally', 'Helena Bonham Carter': 'Susan', 'JoBe Cerny': 'Pharmacist Wayne Ponze', 'Elias Koteas': 'Harlan Sangster', 'Yasen Peyankov': ""'Sunshine Lounge' Bartender"", 'Scott Caan': 'Duane', 'Teri Cotruzzola': 'Attractive Complaining Patient', 'Lucina Paquet': 'Mrs. Langston', 'Preston Maybank': 'Gelding', 'Sally Kao': 'Chinese Wife', 'Quincy Wong': 'Chinese Husband'}" tt0067093,"{'Topol': 'Tevye', 'Norma Crane': 'Golde', 'Leonard Frey': 'Motel', 'Molly Picon': 'Yente', 'Paul Mann': 'Lazar Wolf', 'Rosalind Harris': 'Tzeitel', 'Michele Marsh': 'Hodel', 'Neva Small': 'Chava', 'Paul Michael Glaser': 'Perchik (as Michael Glaser)', 'Ray Lovelock': 'Fyedka (as Raymond Lovelock)', 'Elaine Edwards': 'Shprintze', 'Candy Bonstein': 'Bielke', 'Shimen Ruskin': 'Mordcha', 'Zvee Scooler': 'Rabbi', 'Louis Zorich': 'Constable'}" tt0226935,"{'Bianca Hunter': 'Lorna Doone', 'Kevin Corrigan': 'Crutches', 'Rosario Dawson': 'Audrey', 'Matthew Del Negro': 'Rookie Cop', 'Paz de la Huerta': 'Girl (as Paz De La Huerta)', 'Guillermo Díaz': 'Kid', ""Vincent D'Onofrio"": 'Frank', 'Paul D. Failla': 'Cop (as Paul Failla)', 'Kris Kristofferson': 'Bud', 'Robert Sean Leonard': 'Terry Olsen', 'Duane McLaughlin': 'Wall', 'Natasha Richardson': 'Mary', 'Jimmy Scott': 'Skinny Bones', 'John Seitz': 'Dean', 'Mark Strand': 'Journalist'}" tt0250202,"{'Dan Bucatinsky': 'Eli Wyckoff', 'Richard Ruccolo': 'Tom Vecchione', 'Sasha Alexander': 'Jackie Samantha Gold', 'Adam Goldberg': 'Brett Miles Sanford', 'Andrea Martin': 'Dr. Ellen Wyckoff', 'Joanna Kerns': 'Lydia Vecchione', 'Christina Ricci': 'Rayna Wyckoff', 'Lisa Kudrow': 'Marie', 'Doris Roberts': 'Esther', 'Tony Abatemarco': 'Dr. David Wyckoff', 'Julie Claire': 'Lizz', 'Ben Foreman': 'Young Eli', 'Sydney Foreman': 'Young Rayna', 'Chris Gann': 'Stripper (as Christian Gann)', 'Blaise Garza': 'Young Tom'}" tt0094812,"{'Kevin Costner': 'Crash Davis', 'Susan Sarandon': 'Annie Savoy', 'Tim Robbins': ""Ebby Calvin 'Nuke' LaLoosh"", 'Trey Wilson': 'Skip', 'Robert Wuhl': 'Larry', ""William O'Leary"": 'Jimmy', 'David Neidorf': 'Bobby', 'Danny Gans': 'Deke', 'Tom Silardi': 'Tony', 'Lloyd T. Williams': 'Mickey (as Lloyd Williams)', 'Rick Marzan': 'Jose', 'George Buck': ""Nuke's Father"", 'Jenny Robertson': 'Millie', 'Gregory Avellone': 'Doc (as Greg Avelone)', 'Garland Bunting': ""Teddy - Radio Announcer (as Carey 'Garland' Bunting)""}" tt0372334,"{'Anton Yelchin': 'Tommy', 'Robin Williams': 'Pappass', 'Téa Leoni': 'Mrs. Warshaw', 'Erykah Badu': 'Lady / Bernadette', 'David Duchovny': 'Tom Warshaw', 'Frank Langella': 'Reverend Duncan', 'Zelda Williams': 'Melissa', 'Magali Amadei': 'Coralie Warshaw', 'Olga Sosnovska': 'Simone', 'Orlando Jones': 'Superfly', 'Bernie Sheredy': 'Sasha (as Bernard Sheredy)', 'Stephen Spinella': 'Ticket Seller', 'Alice Drummond': 'Mrs. Brevoort', 'Harold Cartier': 'Odell Warshaw', 'Mark Margolis': 'Mr. Pappass'}" tt0363473,"{'Kevin Spacey': 'Bobby Darin', 'Kate Bosworth': 'Sandra Dee', 'John Goodman': 'Steve Blauner', 'Bob Hoskins': 'Charlie Maffia', 'Brenda Blethyn': 'Polly Cassotto', 'Greta Scacchi': 'Mary Duvan', 'Caroline Aaron': 'Nina Cassotto Maffia', 'Peter Cincotti': 'Dick Behrke', 'William Ullrich': 'Little Bobby', 'Michael Byrne': 'Dr. Andretti', 'Matt Rippy': 'David Gershenson', 'Gary Whelan': 'Jules Podell', 'Jake Broder': '1st Assistant Director', 'Tayfun Bademsoy': 'Ahmet Ertegun', 'Tomas Spencer': 'Delivery Guy'}" tt0098635,"{'Billy Crystal': 'Harry Burns', 'Meg Ryan': 'Sally Albright', 'Carrie Fisher': 'Marie', 'Bruno Kirby': 'Jess', 'Steven Ford': 'Joe', 'Lisa Jane Persky': 'Alice', 'Michelle Nicastro': 'Amanda', 'Gretchen Palmer': 'Stewardess', 'Robert Alan Beuth': 'Man on Aisle', 'David Burdick': '9 Year Old Boy', 'Joe Viviani': 'Judge', 'Harley Jane Kozak': 'Helen (as Harley Kozak)', 'Joseph Hunt': 'Waiter at Wedding', 'Kevin Rooney': 'Ira', 'Franc Luz': 'Julian'}" tt0430919,"{'Stuart Townsend': 'Olly Pickering', 'Raphael Schwartz': 'Olly Aged 2', 'Jacob Collier': 'Olly Aged 10 (as Jacob Moriarty)', 'Callum Williams': 'Murray Aged 10', 'Seth Green': 'Murray', 'Steve John Shepherd': 'James', 'Simon Callow': 'Big-Time Publisher', 'Jodhi May': 'Tania', 'Máté Haumann': 'Work Experience (as Mate Haumann)', 'Anna Chancellor': 'Dana', 'Burn Gorman': 'Bus Driver', 'Ian Hanmore': 'Drunk', 'Raymond Coulthard': 'Chris', 'Mike Kelly': 'Party Bore', 'Philip Jackson': 'Mr. Barker'}" tt0426615,"{'Usher Raymond': 'Darrell (as Usher)', 'Chazz Palminteri': 'Frank', 'Emmanuelle Chriqui': 'Dolly', 'Robert Costanzo': 'Fat Tony', 'Robert Davi': 'Fish', 'Matt Gerald': 'Jackie', 'Anthony Fazio': 'Frankie Junior', 'Geoff Stults': 'Chad', 'Chris Tardio': 'Angelo', 'Kevin Hart': 'Busta', 'K.D. Aubert': 'Cherise', 'Isis Faust': 'Lexi', 'Nick Mancuso': 'Salvatore', 'Page Kennedy': 'Twizzie', 'Deezer D': 'Jojo'}" tt0090756,"{'Isabella Rossellini': 'Dorothy Vallens', 'Kyle MacLachlan': 'Jeffrey Beaumont', 'Dennis Hopper': 'Frank Booth', 'Laura Dern': 'Sandy Williams', 'Hope Lange': 'Mrs. Williams', 'Dean Stockwell': 'Ben', 'George Dickerson': 'Detective Williams', 'Priscilla Pointer': 'Mrs. Beaumont', 'Frances Bay': 'Aunt Barbara', 'Jack Harvey': 'Mr. Beaumont', 'Ken Stovitz': 'Mike', 'Brad Dourif': 'Raymond', 'Jack Nance': 'Paul', 'J. Michael Hunter': 'Hunter', 'Dick Green': 'Don Vallens'}" tt0357507,"{'Barry Watson': 'Tim', 'Emily Deschanel': 'Kate Houghton', 'Skye McCole Bartusiak': 'Franny', 'Tory Mussett': 'Jessica', 'Andrew Glover': 'Boogeyman', 'Lucy Lawless': ""Tim's Mother"", 'Charles Mesure': ""Tim's Father"", 'Philip Gordon': 'Uncle Mike', 'Aaron Murphy': 'Young Tim', 'Jennifer Rucker': 'Pam', 'Scott Wills': 'Co-Worker', 'Michael Saccente': ""Jessica's Dad"", 'Louise Wallace': ""Jessica's Mom"", 'Brenda Simmons': ""Jessica's Grandma"", 'Josie Tweed': ""Jessica's Sister""}" tt0397401,"{'Jason Lee': 'Frank', 'Crispin Glover': 'Eddie', 'Burton Gilliam': 'Big Tex', 'Xander Berkeley': 'Harkness', 'Pruitt Taylor Vince': 'Spider', 'Joseph D. Reitman': 'Tiny (as Joseph Reitman)', 'Steven Chester Prince': 'Otto', 'Suzanna Urszuly': 'Sky', 'Diane Klimaszewski': 'Brandy', 'Elaine Klimaszewski': 'Amber', 'Lin Shaye': 'Ma Muzzy', 'Melissa Keller': 'Crystal', 'Mathew Greer': 'Randolf', 'Audrey Marie Anderson': 'Natalie', 'Amber Heard': 'Candy'}" tt0086979,"{'John Getz': 'Ray', 'Frances McDormand': 'Abby', 'Dan Hedaya': 'Julian Marty', 'M. Emmet Walsh': 'Private Detective Loren Visser', 'Samm-Art Williams': 'Meurice', 'Deborah Neumann': 'Debra', 'Raquel Gavia': 'Landlady', 'Van Brooks': 'Man from Lubbock', 'Señor Marco': 'Mr. Garcia', 'William Creamer': 'Old Cracker', 'Loren Bivens': 'Strip Bar Exhorter', 'Bob McAdams': 'Strip Bar Senator', 'Shannon Sedwick': 'Stripper', 'Nancy Finger': 'Girl on Overlook', 'William Preston Robertson': 'Radio Evangelist (voice) (as Rev. William Preston Robertson)'}" tt0100507,"{'Sylvester Stallone': 'Rocky Balboa', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Sage Stallone': 'Rocky Balboa Jr.', 'Burgess Meredith': 'Mickey Goldmill', 'Tommy Morrison': ""Tommy 'Machine' Gunn"", 'Richard Gant': 'George Washington Duke', 'Tony Burton': 'Duke', 'Jimmy Gambina': 'Jimmy (as James Gambina)', 'Delia Sheppard': 'Karen', 'Mike Sheehan': 'Merlin Sheets (as Michael Sheehan)', 'Michael Anthony Williams': 'Union Cane (as Michael Williams)', 'Kevin Connolly': 'Chickie', 'Elisebeth Peters': 'Jewel', 'Hayes Swope': ""Chickie's Pal""}" tt0089927,"{'Sylvester Stallone': 'Rocky Balboa', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Carl Weathers': 'Apollo Creed', 'Brigitte Nielsen': 'Ludmilla', 'Tony Burton': 'Duke', 'Michael Pataki': 'Nicoli Koloff', 'Dolph Lundgren': 'Ivan Drago', 'Stu Nahan': 'Commentator #1', 'R.J. Adams': 'Sports Announcer', 'Al Bandiero': 'American Commentator #2', 'Dominic Barto': 'Russian Government Official', 'Danial Brown': ""Rocky Jr.'s Friend"", 'James Brown': 'The Godfather of Soul', 'Rose Mary Campos': 'Maid'}" tt0084602,"{'Sylvester Stallone': 'Rocky Balboa', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Carl Weathers': 'Apollo Creed', 'Burgess Meredith': 'Mickey Goldmill', 'Tony Burton': 'Duke', 'Mr. T': 'Clubber Lang', 'Hulk Hogan': 'Thunderlips', 'Ian Fried': 'Rocky Jr.', 'Al Silvani': 'Al', 'Wally Taylor': ""Clubber's Manager"", 'Jim Hill': 'Sportscaster', 'Don Sherman': 'Andy', 'Dennis James': 'Wrestling Commentator', 'Jim Healy': 'Wrestling Commentator'}" tt0079817,"{'Sylvester Stallone': 'Rocky Balboa', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Carl Weathers': 'Apollo Creed', 'Burgess Meredith': 'Mickey', 'Tony Burton': ""Apollo's Trainer"", 'Joe Spinell': 'Gazzo', 'Leonard Gaines': 'Agent', 'Sylvia Meals': 'Mary Anne Creed', 'Frank McRae': 'Meat Foreman', 'Al Silvani': 'Cutman', 'John Pleshette': 'Director', 'Stu Nahan': 'Announcer', 'Bill Baldwin': 'Commentator', 'Jerry Ziesmer': 'Salesman'}" tt0099348,"{'Kevin Costner': 'Lieutenant Dunbar', 'Mary McDonnell': 'Stands With A Fist', 'Graham Greene': 'Kicking Bird', 'Rodney A. Grant': 'Wind In His Hair', ""Floyd 'Red Crow' Westerman"": 'Ten Bears (as Floyd Red Crow Westerman)', 'Tantoo Cardinal': 'Black Shawl', 'Robert Pastorelli': 'Timmons', 'Charles Rocket': 'Lieutenant Elgin', 'Maury Chaykin': 'Major Fambrough', 'Jimmy Herman': 'Stone Calf', 'Nathan Lee Chasing His Horse': 'Smiles A Lot', 'Michael Spears': 'Otter', 'Jason R. Lone Hill': 'Worm', 'Tony Pierce': 'Spivey', 'Doris Leader Charge': 'Pretty Shield'}" tt0429573,"{'Donald Sutherland': 'John Bell', 'Sissy Spacek': 'Lucy Bell', ""James D'Arcy"": 'Richard Powell', 'Rachel Hurd-Wood': 'Betsy Bell / Entity Voice', 'Matthew Marsh': 'James Johnston', 'Thom Fell': 'John Bell Jr.', 'Zoe Thorne': 'Theny Thorn (as Zoë Thorne)', 'Gaye Brown': 'Kathe Batts', 'Sam Alexander': 'Joshua Gardner', 'Miquel Brown': 'Chloe', 'Vernon Dobtcheff': 'Elder #1', 'Shauna Shim': 'Anky', 'Madalina Stan': 'Ethereal Girl', 'Philip Hurd-Wood': 'Partygoer (as Phillip Hurd-Wood)', 'Vlad Cruceru': 'Richard Bell (aged 6)'}" tt0433386,"{'Sarah Michelle Gellar': 'Karen', 'Amber Tamblyn': 'Aubrey', 'Arielle Kebbel': 'Allison', 'Takako Fuji': 'Kayako', 'Edison Chen': 'Eason', 'Sarah Roemer': 'Lacey', 'Matthew Knight': 'Jake', 'Misako Uno': 'Miyuki', 'Teresa Palmer': 'Vanessa', 'Ohga Tanaka': 'Toshio (as Oga Tanaka)', 'Yuya Ozeki': 'Toshio (archive footage)', 'Jennifer Beals': 'Trish', 'Christopher Cousins': 'Bill', 'Zen Kajihara': 'Folklore Guy', 'Takashi Matsuyama': 'Takeo'}" tt0114436,"{'Elizabeth Berkley': 'Nomi Malone', 'Kyle MacLachlan': 'Zack Carey', 'Gina Gershon': 'Cristal Connors', 'Glenn Plummer': 'James Smith', 'Robert Davi': 'Al Torres', 'Alan Rachins': 'Tony Moss', 'Gina Ravera': 'Molly Abrams', 'Lin Tucci': ""Henrietta 'Mama' Bazoom"", 'Greg Travis': 'Phil Newkirk', 'Al Ruscio': 'Mr. Karlman', 'Patrick Bristow': 'Marty Jacobsen', 'William Shockley': 'Andrew Carver', 'Bobbie Phillips': 'Dee', 'Dewey Weber': 'Jeff', 'Rena Riffel': 'Penny / Hope'}" tt0472160,"{'Richard E. Grant': 'Franklin Wilhern', ""Catherine O'Hara"": 'Jessica Wilhern', 'Nick Prideaux': ""Penelope's Great-Grandfather (as Nicholas Prideaux)"", 'Michael Feast': 'Jake / Witch', 'Christina Ricci': 'Penelope Wilhern', 'Ronni Ancona': 'Wanda', 'Simon Woods': 'Edward Vanderman', 'Paul Herbert': 'Leonard Wilhern', 'Simon Chandler': 'Doctor', 'Peter Dinklage': 'Lemon', 'Andi-Marie Townsend': 'Young Penelope', 'John Voce': 'Station Cop', 'Burn Gorman': 'Larry', 'Andrew Bailey': 'Floorman in Card Club', 'James McAvoy': 'Johnny / Max'}" tt0804516,"{'Wes Bentley': 'Thomas', 'Rachel Nichols': 'Angela', 'Simon Reynolds': 'Jim Harper', 'Philip Akin': 'Karl', 'Stephanie Moore': 'Lorraine (voice)', 'Miranda Edwards': 'Jody', 'Paul Sun-Hyung Lee': 'Man in Elevator', 'Grace Lynn Kung': 'Woman in Elevator', 'Bathsheba Garnett': 'Homeless Woman', 'Philip Williams': 'Cop #1', 'Arnold Pinnock': 'Cop #2', 'Franck Khalfoun': 'Newsman'}" tt0079501,"{'Mel Gibson': 'Max', 'Joanne Samuel': 'Jessie', 'Hugh Keays-Byrne': 'Toecutter', 'Steve Bisley': 'Jim Goose', 'Tim Burns': 'Johnny the Boy', 'Roger Ward': 'Fifi', 'Lisa Aldenhoven': 'Nurse', 'David Bracks': 'Mudguts', 'Bertrand Cadart': 'Clunk', 'David Cameron': 'Underground Mechanic', 'Robina Chaffey': 'Singer', 'Stephen Clark': 'Sarse', 'Mathew Constantine': 'Toddler', 'Jerry Day': 'Ziggy', 'Reg Evans': 'Station Master'}" tt0097659,"{'Jean-Claude Van Damme': 'Kurt Sloane', 'Dennis Alexio': 'Eric Sloane', 'Dennis Chan': 'Xian Chow', 'Michel Qissi': 'Tong Po', 'Haskell V. Anderson III': 'Winston Taylor', 'Rochelle Ashana': 'Mylee', 'Ka Ting Lee': 'Freddy Li', 'Richard Foo': 'Tao Liu', 'Ricky Liu': 'Big Thai Man', 'Ho-Ying Sin': 'Huge Village Man #1', 'Tony Chan': 'Huge Village Man #2', 'Brad Kerner': 'U.S. Announcer', 'Dean Harrington': 'U.S. Announcer', 'Mark DiSalle': 'U.S. Reporter', 'Richard Santoro': 'U.S. Reporter'}" tt0060196,"{'Eli Wallach': 'Tuco', 'Clint Eastwood': 'Blondie', 'Lee Van Cleef': 'Sentenza / Angel Eyes', 'Aldo Giuffrè': ""Alcoholic Union Captain (as Aldo Giuffre')"", 'Luigi Pistilli': 'Father Pablo Ramirez', 'Rada Rassimov': 'Maria', 'Enzo Petito': 'Storekeeper', 'Claudio Scarchilli': 'Mexican Peon', 'John Bartha': 'Sheriff (as John Bartho)', 'Livio Lorenzon': 'Baker', 'Antonio Casale': 'Jackson / Bill Carson', 'Sandro Scarchilli': 'Mexican Peon', 'Benito Stefanelli': ""Member of Angel Eyes' Gang"", 'Angelo Novi': 'Monk', 'Antonio Casas': 'Stevens'}" tt0058461,"{'Clint Eastwood': 'Joe', 'Marianne Koch': 'Marisol', 'Gian Maria Volontè': 'Ramón Rojo (as John Wells) (as Johnny Wels)', 'Wolfgang Lukschy': 'John Baxter (as W. Lukschy)', 'Sieghardt Rupp': 'Esteban Rojo (as S. Rupp)', 'Joseph Egger': 'Piripero (as Joe Edger)', 'Antonio Prieto': 'Don Benito Rojo / Don Miguel Rojo', 'José Calvo': 'Silvanito (as Jose Calvo)', 'Margarita Lozano': 'Consuelo Baxter (as Margherita Lozano)', 'Daniel Martín': 'Julián (as Daniel Martin)', 'Benito Stefanelli': 'Rubio (as Benny Reeves)', 'Mario Brega': 'Chico (as Richard Stuyvesant)', 'Bruno Carotenuto': 'Antonio Baxter (as Carol Brown)', 'Aldo Sambrell': 'Rojo gang member (as Aldo Sambreli)'}" tt0805570,"{'Bradley Cooper': 'Leon', 'Leslie Bibb': 'Maya', 'Brooke Shields': 'Susan Hoff', 'Vinnie Jones': 'Mahogany', 'Roger Bart': 'Jurgis', 'Tony Curran': 'Driver', 'Barbara Eve Harris': 'Detective Lynn Hadley', 'Peter Jacobson': 'Otto', 'Stephanie Mace': 'Leigh Cooper', 'Ted Raimi': 'Randle Cooper', 'Nori Satô': 'Erika Sakaki (as NorA)', ""Quinton 'Rampage' Jackson"": 'Guardian Angel', 'Dan Callahan': 'Troy Taleveski', 'Donnie Smith': 'Station Cop', 'Earl Carroll': 'Jack Franks'}" tt0092086,"{'Steve Martin': 'Lucky Day', 'Chevy Chase': 'Dusty Bottoms', 'Martin Short': 'Ned Nederlander', 'Alfonso Arau': 'El Guapo', 'Tony Plana': 'Jefe', 'Patrice Martinez': 'Carmen', 'Jorge Cervera Jr.': 'Bandito #1 (as Jorge Cervera)', 'Kai Wulff': 'German', 'Abel Franco': 'Papa Sanchez', 'Fred Asparagus': 'Bartender', 'Jon Lovitz': 'Morty', 'Joe Mantegna': 'Harry Flugleman', 'Philip Gordon': 'Rodrigo', 'Michael Wren': 'Cowboy', 'Gene Hartline': 'Silent Movie Bandito'}" tt0059578,"{'Clint Eastwood': 'Monco', 'Lee Van Cleef': 'Col. Douglas Mortimer', 'Gian Maria Volontè': 'El Indio (The Indian)', 'Mario Brega': ""Nino, Member of Indio's Gang"", 'Luigi Pistilli': ""Groggy, Member of Indio's Gang"", 'Aldo Sambrell': 'Cuchillio', 'Klaus Kinski': 'Juan Wild - The Hunchback', 'Benito Stefanelli': ""Luke 'Hughie'"", 'Luis Rodríguez': ""Manuel, Member of Indio's Gang (as Luis Rodriguez)"", 'Panos Papadopulos': ""Sancho Perez, Member of Indio's Gang (as Panos Papadopoulos)"", 'Mara Krupp': ""Mary - Hotel Manager's Beautiful Wife (as Mara Krup)"", 'Roberto Camardiel': 'Tucumcari station clerk (as Robert Camardiel)', 'Joseph Egger': 'Old Prophet (as Josef Egger)', 'Tomás Blanco': 'Tucumcari sheriff (as Tomas Blanco)', 'Lorenzo Robledo': ""Tomaso, Indio's Traitor""}" tt0094012,"{'Mel Brooks': 'President Skroob / Yogurt', 'John Candy': 'Barf', 'Rick Moranis': 'Dark Helmet', 'Bill Pullman': 'Lone Starr', 'Daphne Zuniga': 'Princess Vespa', 'Dick Van Patten': 'King Roland', 'George Wyner': 'Colonel Sandurz', 'Michael Winslow': 'Radar Technician', 'Joan Rivers': 'Dot Matrix (voice)', 'Lorene Yarnell Jansson': 'Dot Matrix (as Lorene Yarnell)', 'John Hurt': 'John Hurt', 'Sal Viscuso': 'Radio Operator', 'Ronny Graham': 'Minister', 'Jim J. Bullock': 'Prince Valium (as JM J. Bullock)', 'Leslie Bevis': 'Commanderette Zircon'}" tt0299981,"{'Adrian Paul': 'Duncan MacLeod', 'Thekla Reuten': 'Anna Teshemka', 'Cristian Solimeno': 'The Guardian', 'Peter Wingfield': 'Methos', 'Jim Byrnes': 'Joe Dawson', 'Stephen Rahman Hughes': 'Zai Jie', 'Stephen Wight': 'Reggie Weller', 'Thom Fell': 'Cardinal Giovanni', 'Patrice Naiambana': 'The Elder', 'Sakalas Uzdavinys': 'Security Guard', 'Laurynas Jurgelis': 'Boy in Stadium', 'Geoffrey T. Bersey': 'Brother Radu (as Geofry Bersey)', 'Antanas Surgailis': 'Monk 1', 'Leonas Ciunis': 'Monk 2', 'Rolandas Boravskis': 'Jurgis'}" tt0887912,"{'Jeremy Renner': 'Staff Sergeant William James', 'Anthony Mackie': 'Sergeant JT Sanborn', 'Brian Geraghty': 'Specialist Owen Eldridge', 'Guy Pearce': 'Sergeant Matt Thompson', 'Ralph Fiennes': 'Contractor Team Leader', 'David Morse': 'Colonel Reed', 'Evangeline Lilly': 'Connie James', 'Christian Camargo': 'Colonel John Cambridge', 'Suhail Dabbach': 'Black Suit Man (as Suhail Al-Dabbach)', 'Christopher Sayegh': 'Beckham', 'Nabil Koni': 'Professor Nabil', 'Sam Spruell': 'Contractor Charlie', 'Sam Redford': 'Contractor Jimmy', 'Feisal Sadoun': 'Contractor Feisal', 'Barrie Rice': 'Contractor Chris'}" tt1023111,"{'Sean Faris': 'Jake Tyler', 'Amber Heard': 'Baja Miller', 'Cam Gigandet': 'Ryan McCarthy', 'Evan Peters': 'Max Cooperman', 'Leslie Hope': 'Margot Tyler', 'Djimon Hounsou': 'Jean Roqua', 'Wyatt Smith': 'Charlie Tyler', 'Affion Crockett': 'Beatdown DJ', 'Neil Brown Jr.': 'Aaron', 'Lauren Leech': 'Jenny', 'Tilky Jones': 'Eric', 'Steven Crowley': 'Ben', 'Tom Nowicki': 'Mr. Lloyd', 'Chele André': ""Max's Girl"", 'Chris Lindsay': 'Beat Down Referee'}" tt0430912,"{'Stan Collymore': 'Kevin Franks', 'Sharon Stone': 'Catherine Tramell', 'Neil Maskell': 'Detective Ferguson', 'David Thewlis': 'Roy Washburn', 'Jan Chappell': 'Solicitor', 'David Morrissey': 'Michael Glass', 'Terence Harvey': 'Henry Rose', 'Hugh Dancy': 'Adam Towers', 'Ellen Thomas': 'Prosecutor', 'Mark Sangster': 'Court Reporter One', 'Tim Berrington': 'Court Reporter Two', 'Indira Varma': 'Denise Glass', 'Charlotte Rampling': 'Milena Gardosh', 'Heathcote Williams': 'Jakob Gerst', 'Flora Montgomery': 'Michelle Broadwin'}" tt0486321,"{'Christopher Lloyd': 'Amos (voice)', 'Kelly Ripa': ""Nat's Mom (voice)"", 'Nicollette Sheridan': 'Nadia (voice)', 'Tim Curry': 'Yegor (voice)', 'Trevor Gagnon': 'Nat (voice)', 'Philip Bolden': 'I.Q. (voice)', 'David Gore': 'Scooter (voice)', 'Ed Begley Jr.': 'Poopchev (voice)', 'Adrienne Barbeau': ""Scooter's Mom (voice)"", 'Robert Patrick': 'Louie (voice)', 'Buzz Aldrin': 'Himself', 'Sandy Simpson': 'Commander Armstrong (voice)', 'Eddie Frierson': 'Commander Aldrin (voice)', 'David Cowgill': 'Commander Collins (voice)', 'Steve Kramer': 'Leonid (voice)'}" tt1124048,"{'America Olivo': 'Sophia', 'Paulie Rojas Redding': 'Amber (as Paulie Rojas)', 'Marissa Tait': 'Kathleen', 'Sita Young': 'Beth', 'Arianne Zucker': 'Jessica (as Arianne Zuker)', 'Nick Ballard': 'Rob', 'Jeremy Glazer': 'Jeremy', 'Jamil Mena': 'Benito', 'Sandro Del Casale': 'Hector', 'Ian Patrick Williams': 'The Founder', 'Roman Salcedo': 'Mexican', 'Jo Jordan': 'Old Woman', 'Christian Boeving': 'Big Daddy', 'Dereck Rizk': 'Bartender', 'David Villa': 'Leader'}" tt1053859,"{'Matthew Knight': 'Jake', 'Shawnee Smith': 'Sullivan', 'Mike Straub': 'Orderly', 'Aiko Horiuchi': 'Kayako', 'Shimba Tsuchiya': 'Toshio', 'Emi Ikehata': 'Naoko', 'Takatsuna Mukai': 'Daisuke (as Takatsuma Mukai)', 'Johanna Braddy': 'Lisa', 'Beau Mirchoff': 'Andy', 'Jadie Rose Hobson': 'Rose (as Jadie Hobson)', 'Marina Sirtis': 'Gretchen', 'Gil McKinney': 'Max', 'Laura Giosh': 'Renee', 'Mihaela Nankova': 'Brenda', 'Michael McCoy': 'Praski'}" tt0093870,"{'Peter Weller': 'Murphy / RoboCop', 'Nancy Allen': 'Lewis', ""Dan O'Herlihy"": ""The Old Man (as Daniel O'Herlihy)"", 'Ronny Cox': 'Jones', 'Kurtwood Smith': 'Clarence', 'Miguel Ferrer': 'Morton', 'Robert DoQui': 'Sgt. Reed', 'Ray Wise': 'Leon', 'Felton Perry': 'Johnson', 'Paul McCrane': 'Emil', 'Jesse D. Goins': 'Joe (as Jesse Goins)', 'Del Zamora': 'Kaplan', 'Calvin Jung': 'Minh', 'Rick Lieberman': 'Walker', 'Lee de Broux': 'Sal (as Lee DeBroux)'}" tt0465580,"{'Colin Ford': 'Young Nick', 'Joel Gretsch': ""Nick's Father"", 'Djimon Hounsou': 'Henry Carver', 'Dakota Fanning': 'Cassie Holmes', 'Robert Tsonos': 'Division Doctor', 'Brandon Rhea': 'Division Doctor', 'Camilla Belle': 'Kira Hudson', 'Neil Jackson': 'Victor Budarin', 'Chris Evans': 'Nick Gant', 'Kai Cheung Leung': 'Dice Man', 'Hsin Nan Hung': ""Dice Man's Heavy (as Sun Nan Hung)"", 'Corey Stoll': 'Agent Mack', 'Scott Michael Campbell': 'Agent Holden', 'Wai-Man Tam': 'Cook in Fish Market', 'Hal Yamanouchi': 'Pop Father (as Haruihko Yamanouchi)'}" tt0093779,"{'Cary Elwes': 'Westley', 'Mandy Patinkin': 'Inigo Montoya', 'Chris Sarandon': 'Prince Humperdinck', 'Christopher Guest': 'Count Rugen', 'Wallace Shawn': 'Vizzini', 'André the Giant': 'Fezzik (as Andre the Giant)', 'Fred Savage': 'The Grandson', 'Robin Wright': 'The Princess Bride', 'Peter Falk': 'The Grandfather', 'Peter Cook': 'The Impressive Clergyman', 'Mel Smith': 'The Albino', 'Carol Kane': 'Valerie', 'Billy Crystal': 'Miracle Max', 'Anne Dyson': 'The Queen', 'Margery Mason': 'The Ancient Booer'}" tt1232783,"{'Teri Andrez': 'Bra-Clad Sister (as Teri Andrzejewski)', 'Adam Barrie': 'Danny (as Adam Berry)', 'Megan Wolfley': 'Trampoline Sister (as Megan Elizabeth Wolfley)', 'Robert Belushi': 'Amazed Senior Guy (as Rob Belushi)', 'Marie Blanchard': 'Over-It Sister', 'Briana Evigan': 'Cassidy', 'Zack Garrett': 'Thwarted Guy (as Zachary Garrett)', 'Margo Harshman': 'Chugs', 'Rumer Willis': 'Ellie', 'Jamie Chung': 'Claire', 'Leah Pipes': 'Jessica', 'Audrina Patridge': 'Megan', ""Matt O'Leary"": 'Garret', 'Julian Morris': 'Andy', 'Debra Gordon': 'Mrs. Tappan'}" tt2091473,"{'Matt Damon': 'Steve Butler', 'Benjamin Sheeler': 'Attendant', 'Terry Kinney': 'David Churchill', 'Carla Bianco': 'Waitress', 'Joe Coyle': 'Michael Downey', 'Hal Holbrook': 'Frank Yates', 'Dorothy Silver': 'Arlene', 'Frances McDormand': 'Sue Thomason', 'Titus Welliver': 'Rob', 'Lexi Cowan': ""Drew's Girl"", 'Tim Guinee': 'Drew Scott', 'Sara Lindsey': 'Claire Allen', 'Frank Conforti': 'Coach', 'Garrett Ashbaugh': 'Basketball Player', 'Jericho Morgan': 'Jericho (as Jerico Morgan)'}" tt0100502,"{'John Glover': 'Magnavolt Salesman', 'Mario Machado': 'Casey Wong', 'Leeza Gibbons': 'Jess Perkins', 'John Ingle': 'Surgeon General', 'Tom Noonan': 'Cain', 'Roger Aaron Brown': 'Whittaker', 'Mark Rolston': 'Stef', 'Lila Finn': 'Homeless Woman', 'John Hateley': 'Purse Snatcher', 'Gage Tarrant': 'Hooker', 'Thomas Rosales Jr.': 'Chet (as Tommy Rosales)', 'Brandon Smith': 'Flint', 'Wallace Merck': 'Gun Shop Owner', 'Peter Weller': 'Robocop', 'Michael Medeiros': 'Catzo'}" tt1477855,"{'Bill Murray': 'FDR', 'Laura Linney': 'Daisy', 'Samuel West': 'Bertie', 'Olivia Colman': 'Elizabeth', 'Elizabeth Marvel': 'Missy', 'Olivia Williams': 'Eleanor', 'Elizabeth Wilson': 'Mrs. Roosevelt', 'Martin McDougall': 'Tommy', 'Andrew Havill': 'Cameron', 'Eleanor Bron': ""Daisy's Aunt"", 'Nancy Baldwin': 'Mrs. Astor', 'Tim Beckmann': ""President's Aide #1"", 'Guy Paul': ""President's Aide #2"", 'Eben Young': ""President's Aide #3"", 'Samantha Dakin': 'Mary the Maid'}" tt1814621,"{'Tina Fey': 'Portia Nathan', 'Ann Harada': 'Mrs. Lafont', 'Ben Levin': 'Junior Lafont', 'Dan Levy': 'James (as Daniel Joseph Levy)', 'Maggie Keenan-Bolger': 'Girl on Tour', 'Gloria Reuben': 'Corinne', 'Paul Rudd': 'John Pressman', 'Wallace Shawn': 'Clarence', 'Elaine Kussack': 'Abby', 'Christopher Evan Welch': 'Brandt', 'Michael Genadry': 'Ben', 'Juliet Brett': 'Praying Applicant', 'John Brodsky': 'Smug Kid', 'Camille Branton': 'Gymnast', 'Sarita Choudhury': 'Rachael'}" tt0082846,"{'Katharine Hepburn': 'Ethel Thayer', 'Henry Fonda': 'Norman Thayer Jr.', 'Jane Fonda': 'Chelsea Thayer Wayne', 'Doug McKeon': 'Billy Ray', 'Dabney Coleman': 'Bill Ray', 'William Lanteau': 'Charlie Martin', 'Christopher Rydell': 'Sumner Todd (as Chris Rydell)'}" tt1272878,"{'Denzel Washington': 'Bobby', 'Mark Wahlberg': 'Stig', 'Paula Patton': 'Deb', 'Edward James Olmos': 'Papi Greco', 'Bill Paxton': 'Earl', 'Robert John Burke': 'Jessup', 'James Marsden': 'Quince', 'Greg Sproles': 'Chief Lucas', 'Fred Ward': 'Admiral Tuwey', 'Patrick Fischler': 'Dr. Ken', 'Derek Solorsano': 'Ferret Nose Julio', 'Edgar Arreola': ""Rudy (Papi's Men)"", 'Kyle Clements': 'Teemo (as Kyle Russell Clements)', 'Christopher Matthew Cook': 'Thick (as Matthew Cook)', 'Tim Bell': 'Lean (as Timothy Bell)'}" tt1231587,"{'John Cusack': 'Adam', 'Clark Duke': 'Jacob', 'Craig Robinson': 'Nick', 'Rob Corddry': 'Lou', 'Sebastian Stan': 'Blaine', 'Lyndsy Fonseca': 'Jenny', 'Crispin Glover': 'Phil', 'Chevy Chase': 'Repairman', 'Charlie McDermott': 'Chaz', 'Lizzy Caplan': 'April', 'Collette Wolfe': 'Kelly', 'Aliu Oyofo': 'Young Nick', 'Jake Rose': 'Young Adam', 'Brook Bennett': 'Young Lou', 'Yan-Kay Crystal Lowe': 'Zoe (as Crystal Lowe)'}" tt2083355,"{'Monica Calhoun': 'Mia', 'Morris Chestnut': 'Lance', 'Melissa De Sousa': 'Shelby', 'Taye Diggs': 'Harper', 'Regina Hall': 'Candace', 'Terrence Howard': 'Quentin', 'Sanaa Lathan': 'Robyn', 'Nia Long': 'Jordan', 'Harold Perrineau': 'Julian', 'Eddie Cibrian': 'Brian', 'Riele Downs': 'Faith', 'Richie Lawrence': 'August', 'Millie Davis': 'Hope', 'Linden Liles-McCurdy': 'L.J.', 'Isis Moore': 'Kennedy'}" tt1103275,"{'Joaquin Phoenix': 'Leonard Kraditor', 'Anne Joyce': ""Leonard's Ex-Fiancée"", 'Elliot Villar': 'Bystander', 'Craig Walker': 'Bystander #2', 'Carmen M. Herlihy': 'Lady with Baby Carriage', 'Donald John Hewitt': 'Another Bystander (as Don Hewitt Jr.)', 'Christian Albrizo': 'Some Kid', 'Isabella Rossellini': 'Ruth Kraditor', 'Moni Moshonov': 'Reuben Kraditor', 'Julie Budd': 'Carol Cohen', 'Bob Ari': 'Michael Cohen', 'Iain J. Bopp': 'David Cohen', 'Vinessa Shaw': 'Sandra Cohen', 'Gwyneth Paltrow': 'Michelle Rausch', 'Samantha Ivers': 'Stephanie'}" tt1172994,"{'Jocelin Donahue': 'Samantha', 'Tom Noonan': 'Mr. Ulman', 'Mary Woronov': 'Mrs. Ulman', 'Greta Gerwig': 'Megan', 'AJ Bowen': 'Victor Ulman', 'Dee Wallace': 'Landlady', 'Heather Robb': 'Roommate', 'Darryl Nau': 'Random Guy', 'Brenda Cooney': 'Nurse', 'Danielle Noe': 'Mother', 'Mary B. McCann': 'Elaine Cross (as Mary McCann)', 'John Speredakos': 'Ted Stephen', 'Lena Dunham': '911 Operator (voice)', 'Graham Reznick': 'Local DJ (voice)', 'Ti West': 'Favorite Teacher'}" tt1612774,"{'Stephen Spinella': 'Lieutenant Chad', 'Jack Plotnick': 'Accountant', 'Wings Hauser': 'Man in Wheelchair', 'Roxane Mesquida': 'Sheila', 'Ethan Cohn': 'Film Buff Ethan', 'Charley Koontz': 'Film Buff Charley', 'Daniel Quinn': 'Dad', 'Devin Brochu': 'Son', 'Hayley Holmes': 'Teenager Cindy', 'Haley Ramm': 'Teenager Fiona', 'Cecelia Antoinette': 'Black Woman (as Cecilia Antoinette)', 'David Bowe': 'Mr. Hughes', 'Remy Thorne': 'Zach (as Remi Thorne)', ""Tara Jean O'Brien"": ""Cleaning Lady (as Tara O'Brien)"", 'Thomas F. Duffy': 'Cop Xavier'}" tt1640459,"{'Rutger Hauer': 'Hobo', 'Pasha Ebrahimi': 'Bumfight Filmmaker', 'Robb Wells': 'Logan (as Rob Wells)', 'Brian Downey': 'Drake', 'Gregory Smith': 'Slick', 'Nick Bateman': 'Ivan / Rip', ""Drew O'Hara"": 'Otis', 'Molly Dunsworth': 'Abby', 'Jeremy Akerman': 'Chief of Police', 'Andre Haines': 'Large Man', 'Agnes M. Laan': 'Prostitute (as Agnes Laan)', 'Duane Patterson': 'Pimp', 'Brian Jamieson': 'Santa', 'Tim Dunn': 'Store Clerk', 'Glen Matthews': 'Gang Leader'}" tt0074285,"{'Sissy Spacek': 'Carrie', 'Piper Laurie': 'Margaret White', 'Amy Irving': 'Sue Snell', 'William Katt': 'Tommy Ross', 'John Travolta': 'Billy Nolan', 'Nancy Allen': 'Chris Hargensen', 'Betty Buckley': 'Miss Collins', 'P.J. Soles': 'Norma', 'Priscilla Pointer': 'Mrs. Snell', 'Sydney Lassick': 'Mr. Fromm', 'Stefan Gierasch': 'Mr. Morton', 'Michael Talbott': 'Freddy', 'Doug Cox': 'The Beak', 'Harry Gold': 'George', 'Noelle North': 'Frieda'}" tt1912398,"{'Joel Murray': 'Frank', 'Tara Lynne Barr': 'Roxy', 'Melinda Page Hamilton': 'Alison', 'Mackenzie Brooke Smith': 'Ava', 'Rich McDonald': 'Brad', 'Maddie Hasson': 'Chloe', 'Larry Miller': ""Chloe's Dad"", 'Dorie Barton': ""Chloe's Mom"", 'Travis Wester': 'Ed', 'Lauren Benz Phillips': 'Donna (as Lauren Phillips)', 'Guerrin Gardner': 'Tampon-Throwing Tuff Gurl', 'Kellie Ramdhanie': 'Melissa Tuff Gurl (as Kellie Marie Ramdhanie)', 'Aris Alvarado': 'Steven Clark', 'Romeo Brown': 'John Tyler', 'Sandra Vergara': 'American Superstarz Judge'}" tt1172570,"{'Tom Hardy': 'Charles Bronson / Michael Peterson', 'Kelly Adams': 'Irene', 'Luing Andrews': 'Hysterical Screw', 'Katy Barker': 'Julie', 'Gordon Brown': 'Screw', 'Amanda Burton': ""Charlie's Mum"", 'Mark Devenport': 'Nurse 1 (as Mark Davenport)', 'Paul Donnelly': 'Screw', 'Andrew Forbes': ""Charlie's Dad"", 'Jon House': 'Webber', 'Matt King': 'Paul Daniels', 'James Lance': 'Phil', 'Holly Lucas': 'Young Man', 'Juliet Oldfield': 'Alison', 'Jonny Phillips': 'Prison Governor'}" tt1175709,"{'Ryan Gosling': 'David Marks', 'Kirsten Dunst': 'Katie Marks', 'Frank Langella': 'Sanford Marks', 'Lily Rabe': 'Deborah Lehrman', 'Philip Baker Hall': 'Malvern Bump', 'Michael Esper': 'Daniel Marks', 'Diane Venora': 'Janice Rizzo', 'Nick Offerman': 'Jim McCarthy', 'Kristen Wiig': 'Lauren Fleck', 'Stephen Kunken': 'Todd Fleck', 'John Cullum': 'Richard Panatierre', 'Maggie Kiley': 'Mary McCarthy', 'Liz Stauber': 'Sharon McCarthy', 'Marion McCorry': 'Ann McCarthy', 'Mia Dillon': ""Katie's Aunt""}" tt0365485,"{'Pierce Brosnan': 'Julian Noble', 'Arlin Miller': 'Radio DJ (voice)', 'Azucena Medina': 'Young Denver Fling', 'Jonah Meyerson': 'Ten Year Old Boy', 'Wiveca Bonerais': ""Ten Year Old Boy's Mother"", 'Greg Kinnear': 'Danny Wright', 'Hope Davis': ""Carolyn 'Bean' Wright"", 'Adam Scott': 'Phil Garrison', 'Portia Dawson': 'Genevive', 'Roberto Sosa': 'Skinny Mexican Man', 'Antonio Zavala Kugler': 'Hotel Bartender 1', 'Ramon Alvarez': 'Shooting Stand Owner', 'Luz Maria Molina': 'School Girl', 'Philip Baker Hall': 'Mr. Randy', 'Carolyn Horwitz': 'Cantina Turista #1'}" tt0790736,"{'Jeff Bridges': 'Roy', 'Ryan Reynolds': 'Nick', 'Kevin Bacon': 'Hayes', 'Mary-Louise Parker': 'Proctor', 'Stephanie Szostak': 'Julia', 'James Hong': ""Nick's Avatar"", 'Marisa Miller': ""Roy's Avatar"", 'Robert Knepper': 'Stanley Nawicki', ""Mike O'Malley"": 'Elliot', 'Devin Ratray': 'Pulaski', 'Larry Joe Campbell': 'Officer Murphy', 'Michael Coons': 'Detective in Locker Room', 'Chris Everett': 'R.I.P.D. Evidence Clerk (as Christina Everett)', 'Michael Tow': 'R.I.P.D. Evidence Clerk', 'Lonnie Farmer': ""Proctor's Avatar""}" tt0443536,"{'Anne Hathaway': 'Red Puckett (voice)', 'Glenn Close': 'Granny (voice)', 'Jim Belushi': 'Kirk the Woodsman (voice)', 'Patrick Warburton': 'Wolf W. Wolf (voice)', 'Anthony Anderson': 'Detective Bill Stork (voice)', 'David Ogden Stiers': 'Nicky Flippers (voice)', 'Xzibit': 'Chief Grizzly (voice)', 'Chazz Palminteri': 'Woolworth (voice)', 'Andy Dick': 'Boingo (voice)', 'Cory Edwards': 'Twitchy (voice)', 'Benjy Gaither': 'Japeth the Goat (voice)', 'Ken Marino': 'Raccoon Jerry (voice)', 'Tom Kenny': 'Tommy (voice)', 'Preston Stutzman': 'Timmy (voice)', 'Tony Leech': 'Glen (voice)'}" tt0426459,"{'Duane Whitaker': 'Boss Man', 'Balthazar Getty': 'Bozo', 'Chauntae Davies': 'Drunk Girl (as Chauntae Davis)', 'Hannah Bernall': 'Finger Girl (as Hannah Schick)', 'Diane Ayala Goldner': 'Harley Mom (as Diane Goldner)', 'Josh Zuckerman': 'Hot Wheels', 'Henry Rollins': 'Coach', 'Eileen Ryan': 'Grandma', 'Jason Mewes': 'Edgy Cat', 'Judah Friedlander': 'Beer Guy', 'Clu Gulager': 'Bartender', 'Krista Allen': 'Tuffy', ""Anthony 'Treach' Criss"": 'Vet', 'Jenny Wade': 'Honey Pie', 'Tyler Patrick Jones': 'Cody'}" tt0462519,"{'Billy Bob Thornton': 'Dr. P', 'Jon Heder': 'Roger Waddell', 'Jacinda Barrett': 'Amanda', 'Michael Clarke Duncan': 'Lesher', 'Sarah Silverman': 'Becky', 'David Cross': 'Ian', 'Matt Walsh': 'Walsh', 'Horatio Sanz': 'Diego', 'Todd Louiso': 'Eli', 'Jon Glaser': 'Ernie', 'Paul Scheer': 'Little Pete', 'Ben Stiller': 'Lonnie Radcliff', 'Luis Guzmán': 'Sergeant Moorehead', 'Dan Fogler': 'Zack', 'DeRay Davis': 'Bee Bee'}" tt0489237,"{'Scarlett Johansson': 'Annie Braddock', 'Donna Murphy': 'Judy Braddock', 'John Henry Cox': 'Dean', 'Alicia Keys': 'Lynette', 'Lewis Payton Jr.': 'Bike Messenger', 'Sonnie Brown': 'Human Resources Director', 'Georgina Chapman': 'TriBeCa Fashionista', 'Nicholas Art': 'Grayer (as Nicholas Reese Art)', 'Jodi Michelle Pynn': 'Screeching Lady', 'Mike Rad': 'Dude', 'Laura Linney': 'Mrs. X', 'Joanna Heimbold': 'Glamour Mom', 'Marla Sucharetza': 'Charity Mom', 'Phoebe Jonas': 'Xanax Mom', 'Allison Sarofim': 'Eating Disorder Mom'}" tt1979320,"{'Chris Hemsworth': 'James Hunt', 'Daniel Brühl': 'Niki Lauda', 'Olivia Wilde': 'Suzy Miller', 'Alexandra Maria Lara': 'Marlene Lauda', 'Pierfrancesco Favino': 'Clay Regazzoni', 'David Calder': 'Louis Stanley', 'Natalie Dormer': 'Nurse Gemma', 'Stephen Mangan': 'Alastair Caldwell', 'Christian McKay': 'Lord Hesketh', 'Alistair Petrie': 'Stirling Moss', 'Julian Rhind-Tutt': ""Anthony 'Bubbles' Horsley"", 'Colin Stinton': 'Teddy Mayer', 'Jamie de Courcey': ""Harvey 'Doc' Postlethwaite"", 'Augusto Dallara': ""Enzo Ferrari (as Augusto Dall'ara)"", 'Ilario Calvo': 'Luca Di Montezemolo'}" tt0884328,"{'Thomas Jane': 'David Drayton', 'Marcia Gay Harden': 'Mrs. Carmody', 'Laurie Holden': 'Amanda Dunfrey', 'Andre Braugher': 'Brent Norton', 'Toby Jones': 'Ollie Weeks', 'William Sadler': 'Jim', 'Jeffrey DeMunn': 'Dan Miller', 'Frances Sternhagen': 'Irene Reppler', 'Nathan Gamble': 'Billy Drayton', 'Alexa Davalos': 'Sally', 'Chris Owen': 'Norm', 'Sam Witwer': 'Private Jessup', 'Robert C. Treveiler': 'Bud Brown (as Robert Treveiler)', 'David Jensen': 'Myron', 'Melissa McBride': 'Woman With Kids at Home'}" tt0427309,"{'Denzel Washington': 'Melvin B. Tolson', 'Nate Parker': 'Henry Lowe', 'Jurnee Smollett-Bell': 'Samantha Booke (as Jurnee Smollett)', 'Denzel Whitaker': 'James Farmer Jr.', 'Jermaine Williams': 'Hamilton Burgess', 'Forest Whitaker': 'Dr. James Farmer Sr.', 'Gina Ravera': 'Ruth Tolson', 'John Heard': 'Sheriff Dozier', 'Kimberly Elise': 'Pearl Farmer', 'Devyn A. Tyler': 'Helen Farmer (as Devyn Tyler)', 'Trenton McClain Boyd': 'Nathaniel Farmer', 'Ritchie Montgomery': 'Deputy', 'Jackson Walker': 'Pig Owner', 'Tim Parati': 'Pig Farmer', 'Robert X. Golphin': 'Dunbar Reed'}" tt0386032,"{'Michael Moore': 'Himself', 'Tucker Albrizzi': 'Himself', 'Tony Benn': 'Himself', 'George W. Bush': 'Himself (archive footage)', 'Reggie Cervantes': 'Herself', 'Bill Clinton': 'Himself (archive footage)', 'Hillary Clinton': 'Herself (archive footage) (as Hillary Rodham Clinton)', 'Billy Crystal': 'Himself (archive footage)', 'John Graham': 'Himself', 'Aleida Guevara': 'Herself', 'William Maher': 'Himself', 'Richard Nixon': 'Himself (archive footage)', 'Patrick Pedraja': 'Himself', 'Linda Peeno': 'Herself'}" tt0368794,"{'Cate Blanchett': 'Jude', 'Ben Whishaw': 'Arthur', 'Christian Bale': 'Jack / Pastor John', 'Richard Gere': 'Billy', 'Marcus Carl Franklin': 'Woody / Chaplin Boy', 'Heath Ledger': 'Robbie', 'Kris Kristofferson': 'Narrator (voice)', 'Don Francks': 'Hobo Joe', 'Roc LaFortune': 'Hobo Moe', 'Larry Day': 'Government Agent', 'Paul Cagelet': 'Carny / Bell-Hop', 'Brian R.C. Wilmes': 'Circus Man (as Brian RC Wilmes)', 'Pierre-Alexandre Fortin': 'Gorgeous George', 'Richie Havens': 'Old Man Arvin', 'Tyrone Benskin': 'Mr. Arvin'}" tt0367959,"{'Aaran Thomas': 'Young Hannibal', 'Gaspard Ulliel': 'Hannibal Lecter', 'Li Gong': 'Lady Murasaki (as Gong Li)', 'Helena-Lia Tachovská': 'Mischa Lecter', 'Richard Leaf': 'Father Lecter', 'Dominic West': 'Inspector Popil', 'Rhys Ifans': 'Vladis Grutas', 'Michelle Wade': 'Nanny', 'Richard Brake': 'Enrikas Dortlich', 'Martin Hub': 'Lothar', 'Ingeborga Dapkunaite': 'Mother Lecter', 'Kevin McKidd': 'Petras Kolnas', 'Joerg Stadler': 'Berndt', 'Stephen Walters': 'Zigmas Milko', 'Ivan Marevich': 'Bronys Grentz'}" tt1817273,"{'Ryan Gosling': 'Luke', 'Craig Van Hook': 'Jack', 'Eva Mendes': 'Romina', 'Olga Merediz': 'Malena', 'Angelo Anthony Pizza': 'Baby Jason (as Anthony Angelo Pizza Jr.)', 'Mahershala Ali': 'Kofi', 'John Facci': 'Priest (as Rev. John Facci)', 'Ben Mendelsohn': 'Robin', 'Tula': ""Robin's Dog"", 'Penny': ""Robin's Dog"", 'Cynthia Pelletier-Sullivan': 'Teller #1 - Bank #1', 'Mackenzie Trainor': 'Teller #2 - Bank #1', 'Nicole Califano': 'Teller #3 - Bank #1', 'Shannon Plumb': 'Lady in Ice Cream Shop', 'Tracey Agustin': 'Teller #1 - Bank #2'}" tt0373883,"{'Malcolm McDowell': 'Dr. Samuel Loomis', 'Brad Dourif': 'Sheriff Lee Brackett', 'Tyler Mane': 'Michael Myers', 'Daeg Faerch': 'Michael Myers, age 10', 'Sheri Moon Zombie': 'Deborah Myers', 'William Forsythe': 'Ronnie White', 'Richard Lynch': 'Principal Chambers', 'Udo Kier': 'Morgan Walker', 'Clint Howard': 'Doctor Koplenson', 'Danny Trejo': 'Ismael Cruz', 'Lew Temple': 'Noel Kluggs', 'Tom Towles': 'Larry Redgrave', 'Bill Moseley': ""Zach 'Z-Man' Garrett"", 'Leslie Easterbrook': 'Patty Frost', 'Steve Boyles': 'Stan Payne'}" tt0848557,"{'Todd Schroeder': 'Brody (as Todd William Schroeder)', 'Laura de Carteret': 'Bree', 'Amy Lalonde': 'Tracy Thurman', 'Martin Roach': 'Stranger', 'Joshua Close': 'Jason Creed (as Josh Close)', 'Joe Dinicol': 'Eliot Stone', 'Michelle Morgan': 'Debra Moynihan', 'Shawn Roberts': 'Tony Ravello', 'Philip Riccio': 'Ridley Wilmott', 'Tatiana Maslany': 'Mary Dexter', 'Daniel Kash': 'Police Officer', 'Chris Violette': 'Gordo Thorsen', 'Megan Park': 'Francine Shane', 'Scott Wentworth': 'Andrew Maxwell', 'George Buza': 'Tattooed Biker'}" tt0421082,"{'Sam Riley': 'Ian Curtis', 'Samantha Morton': 'Debbie Curtis', 'Alexandra Maria Lara': 'Annik Honore', 'Joe Anderson': 'Peter Hook aka Hooky', 'James Anthony Pearson': 'Bernard Sumner', 'Harry Treadaway': 'Steve Morris', 'Craig Parkinson': 'Tony Wilson', 'Toby Kebbell': 'Rob Gretton', 'Andrew Sheridan': 'Terry', 'Robert Shelly': 'Twinny', 'Richard Bremmer': ""Mr. Curtis - Ian's Father"", 'Tanya Myers': ""Ian's Mother"", 'Martha Myers Lowe': ""Ian's Sister (as Martha Myers-Lowe)"", 'Matthew McNulty': 'Nick', 'David Whittington': 'Chemistry Teacher'}" tt0790636,"{'Matthew McConaughey': 'Ron Woodroof', 'Jennifer Garner': 'Eve', 'Jared Leto': 'Rayon', ""Denis O'Hare"": 'Dr. Sevard', 'Steve Zahn': 'Tucker', ""Michael O'Neill"": 'Richard Barkley', 'Dallas Roberts': 'David Wayne', 'Griffin Dunne': 'Dr. Vass', 'Kevin Rankin': 'T.J.', 'Donna Duplantier': 'Nurse Frazin', 'Deneen Tyler': 'Denise (as Deneen D. Tyler)', 'J.D. Evermore': 'Clint', 'Ian Casselberry': 'Hispanic Orderly', 'Noelle Wilcox': 'Kelly', 'Bradford Cox': 'Sunny'}" tt0795493,"{'Ewan McGregor': 'Ian Blaine', 'Colin Farrell': 'Terry Blaine', 'Peter-Hugo Daly': 'Boat Owner (as Peter Hugo-Daly)', 'John Benfield': 'Brian Blaine', 'Clare Higgins': 'Dorothy Blaine', 'Ashley Madekwe': 'Lucy (as Ashley Medekwe)', 'Andrew Howard': 'Jerry', 'Hayley Atwell': 'Angela Stark', 'Sally Hawkins': 'Kate', 'Keith Smee': ""Terry's Track Mate"", 'Stephen Noonan': 'Mel', 'Dan Carter': 'Fred', 'Richard Lintern': 'Director', 'Jennifer Higham': 'Helen', 'Lee Whitlock': 'Mike'}" tt0450385,"{'John Cusack': 'Mike Enslin', 'Tony Shalhoub': 'Sam Farrell', 'Len Cariou': ""Mike's Father"", 'Isiah Whitlock Jr.': 'Hotel Engineer', 'Jasmine Jessica Anthony': 'Katie', 'Paul Birchard': 'Mr. Innkeeper', 'Margot Leicester': 'Mrs. Innkeeper', 'Walter Lewis': 'Book Store Cashier', 'Eric Meyers': 'Man #1 at Book Signing', 'David Nicholson': 'Man #2 at Book Signing', 'Holly Hayes': 'Lady at Book Signing', 'Alexandra Silber': 'Young Woman at Book Signing', 'Johann Urb': 'Surfer Dude', 'Andrew Lee Potts': 'Mailbox Guy', 'Emily Harvey': 'Secretary'}" tt1266029,"{'Aaron Taylor-Johnson': 'John (as Aaron Johnson)', 'Kristin Scott Thomas': 'Mimi', 'David Threlfall': 'Uncle George', 'Josh Bolt': 'Pete', 'Ophelia Lovibond': 'Marie', 'Kerrie Hayes': ""Marie's Friend"", 'Angela Walsh': 'Schoolmistress', 'Paul Ritter': 'Popjoy', 'Richard Syms': 'Reverend', 'Anne-Marie Duff': 'Julia', 'James Johnson': 'Stan', 'Alex Ambrose': 'Young John', 'Angelica Jopling': 'Julia - aged 8', 'Abby Greenhalgh': 'Jackie - aged 6', 'David Morrissey': 'Bobby'}" tt1007028,"{'Elizabeth Banks': 'Miri', 'Seth Rogen': 'Zack', 'Craig Robinson': 'Delaney', 'Gerry Bednob': 'Mr. Surya', 'Edward Janda': 'Customer', 'Nicholas Lombardi': 'Teen #1', 'Chris Milan': 'Teen #2', 'Jennifer Schwalbach Smith': 'Betsy (as Jennifer Schwalbach)', 'Kenny Hotz': 'Zack II', 'Brandon Routh': 'Bobby Long', 'Anne Wade': 'Roxanne', 'Justin Long': 'Brandon', 'Tom Savini': 'Jenkins', 'Jeff Anderson': 'Deacon', 'Jim Norton': 'Auditioner (as Jimmy Norton)'}" tt0976051,"{'Ralph Fiennes': 'Michael Berg', 'Jeanette Hain': 'Brigitte', 'David Kross': 'Young Michael Berg', 'Kate Winslet': 'Hanna Schmitz', 'Susanne Lothar': 'Carla Berg', 'Alissa Wilms': 'Emily Berg', 'Florian Bartholomäi': 'Thomas Berg', 'Friederike Becht': 'Angela Berg', 'Matthias Habich': 'Peter Berg', 'Frieder Venus': 'Doctor', 'Marie-Anne Fliegel': ""Hanna's Neighbour (as Marie Anne Fliegel)"", 'Hendrik Arnst': 'Woodyard Worker', 'Rainer Sellien': 'Teacher', 'Torsten Michaelis': 'Sports Master', 'Moritz Grove': 'Holger'}" tt0443559,"{'Mickey Rourke': 'Blackbird', 'Brandon McGibbon': ""Blackbird's Kid Brother"", 'Peter Kelly Gaudreault': ""Blackbird's Brother"", 'Michelle Arvizu': 'Nurse', 'Richard Zeppieri': 'Son-in-Law / Mafia Boss', 'Alexis Butler': 'Girl in Hotel Room', 'Hal Holbrook': 'Papa', 'Diane Lane': 'Carmen', 'Robert Gow': 'Prospective Buyer', 'Catherine Hayos': 'Prospective Buyer', 'Thomas Jane': 'Wayne Colson', 'Craig Blair': 'Construction Site Foreman', 'Joseph Gordon-Levitt': 'Richie', 'Lynne Deragon': 'Mrs. Palino', 'Rosario Dawson': 'Donna'}" tt0403702,"{'Michael Cera': 'Nick Twisp / Francois', 'Portia Doubleday': 'Sheeni Saunders', 'Jean Smart': 'Estelle Twisp', 'Zach Galifianakis': 'Jerry', 'Erik Knudsen': 'Lefty', 'Adhir Kalyan': 'Vijay Joshi', 'Steve Buscemi': 'George Twisp', 'Fred Willard': 'Mr. Ferguson', 'Ari Graynor': 'Lacey', 'Ray Liotta': 'Lance Wescott', 'Justin Long': 'Paul Saunders', 'Rooney Mara': 'Taggarty', 'Jade Fusco': 'Bernice Lynch', 'Lise Lacasse': 'Matron', 'M. Emmet Walsh': 'Mr. Saunders'}" tt2184339,"{'Ethan Hawke': 'James Sandin', 'Lena Headey': 'Mary Sandin', 'Max Burkholder': 'Charlie Sandin', 'Adelaide Kane': 'Zoey Sandin', 'Edwin Hodge': 'Bloody Stranger', 'Rhys Wakefield': 'Polite Leader', 'Tony Oller': 'Henry', 'Arija Bareikis': 'Mrs. Grace Ferrin', 'Tom Yi': 'Mr. Cali', 'Chris Mulkey': 'Mr. Halverson', 'Tisha French': 'Mrs. Halverson', 'Dana Bunch': 'Mr. Ferrin', 'Peter Gvozdas': 'Dr. Peter Buynak', 'John Weselcouch': 'Freak Interrupting', 'Alicia Vela-Bailey': 'Female Freak'}" tt0898367,"{'Viggo Mortensen': 'Man', 'Kodi Smit-McPhee': 'Boy', 'Robert Duvall': 'Old Man', 'Guy Pearce': 'Veteran', 'Molly Parker': 'Motherly Woman', 'Michael Kenneth Williams': 'Thief', 'Garret Dillahunt': 'Gang Member', 'Charlize Theron': 'Woman', 'Bob Jennings': 'Bearded Man', 'Agnes Herrmann': ""Archer's Woman"", 'Buddy Sosthand': 'Archer', 'Kirk Brown': 'Bearded Face', 'Jack Erdie': 'Bearded Man #2', 'David August Lindauer': 'Man On Mattress', 'Gina Preciado': 'Well Fed Woman'}" tt1742650,"{'Sarah Jessica Parker': 'Kate Reddy', 'Pierce Brosnan': 'Jack Abelhammer', 'Greg Kinnear': 'Richard Reddy', 'Christina Hendricks': 'Allison Henderson', 'Kelsey Grammer': 'Clark Cooper', 'Seth Meyers': 'Chris Bunce', 'Olivia Munn': 'Momo Hahn', 'Jane Curtin': 'Marla Reddy', 'Mark Blum': 'Lew Reddy', 'Busy Philipps': 'Wendy Best', 'Sarah Shahi': 'Janine LoPietro', 'Jessica Szohr': 'Paula', 'Emma Rayne Lyle': 'Emily Reddy', 'Julius Goldberg': 'Ben Reddy', 'Theodore Goldberg': 'Ben Reddy'}" tt0497465,"{'Rebecca Hall': 'Vicky', 'Scarlett Johansson': 'Cristina', 'Christopher Evan Welch': 'Narrator (voice)', 'Chris Messina': 'Doug', 'Patricia Clarkson': 'Judy', 'Kevin Dunn': 'Mark', 'Julio Perillán': 'Charles', 'Juan Quesada': 'Guitarist in Barcelona', 'Ricard Salom': 'Art Gallery Guest', 'Maurice Sonnenberg': 'Art Gallery Guest', 'Javier Bardem': 'Juan Antonio', 'Manel Barceló': 'Doctor', 'Josep Maria Domènech': 'Julio', 'Emilio de Benito': 'Guitarist in Asturias', 'Jaume Montané': ""Juan Antonio's Friend""}" tt1483013,"{'Tom Cruise': 'Jack', 'Morgan Freeman': 'Beech', 'Olga Kurylenko': 'Julia', 'Andrea Riseborough': 'Victoria', 'Nikolaj Coster-Waldau': 'Sykes', 'Melissa Leo': 'Sally', 'Zoë Bell': 'Kara', 'Abigail Lowe': ""Julia's Child"", 'Isabelle Lowe': ""Julia's Child""}" tt0426592,"{'Drake Bell': 'Rick Riker', 'Sara Paxton': 'Jill Johnson', 'Christopher McDonald': 'Lou Landers', 'Leslie Nielsen': 'Uncle Albert', 'Kevin Hart': 'Trey', 'Marion Ross': 'Aunt Lucille', 'Ryan Hansen': 'Lance Landers', 'Keith David': 'The Chief of Police', 'Brent Spiner': 'Dr. Strom', 'Robert Joy': 'Dr. Hawking', 'Jeffrey Tambor': 'Dr. Whitby', 'Robert Hays': 'Blaine Riker', 'Nicole Sullivan': 'Julia Riker', 'Sam Cohen': 'Young Rick', 'Tracy Morgan': 'Professor Xavier'}" tt0362120,"{'Anna Faris': 'Cindy', 'Regina Hall': 'Brenda', 'Craig Bierko': 'Tom', 'Bill Pullman': 'Henry Hale', 'Anthony Anderson': 'Mahalik', 'Leslie Nielsen': 'President Baxter Harris', 'Molly Shannon': 'Marilyn', 'Michael Madsen': 'Oliver', 'Chris Elliott': 'Ezekiel', 'Carmen Electra': 'Holly', ""Shaquille O'Neal"": 'Shaq', 'Phil McGraw': 'Dr. Phil (as Dr. Phil McGraw)', 'Cloris Leachman': 'Mrs. Norris', 'Conchita Campbell': 'Rachel', 'Beau Mirchoff': 'Robbie'}" tt1077258,"{'Rose McGowan': 'Cherry Darling', 'Freddy Rodríguez': 'Wray (as Freddy Rodriguez)', 'Josh Brolin': 'Dr. William Block', 'Marley Shelton': 'Dr. Dakota Block', 'Jeff Fahey': 'J.T.', 'Michael Biehn': 'Sheriff Hague', 'Rebel Rodriguez': 'Tony Block', 'Bruce Willis': 'Lt. Muldoon', 'Naveen Andrews': 'Abby', 'Julio Oscar Mechoso': 'Romy', 'Fergie': 'Tammy (as Stacy Ferguson)', 'Nicky Katt': 'Joe', 'Hung Nguyen': 'Dr. Crane', 'Cecilia Conti': 'Paramedic Cecil', 'Tommy Nix': 'Paramedic Nixer'}" tt1411250,"{'Vin Diesel': 'Riddick', 'Jordi Mollà': 'Santana', 'Matt Nable': 'Boss Johns', 'Katee Sackhoff': 'Dahl', 'Dave Bautista': 'Diaz', 'Bokeem Woodbine': 'Moss', 'Raoul Max Trujillo': 'Lockspur (as Raoul Trujillo)', 'Conrad Pla': 'Vargas', 'Danny Blanco Hall': 'Falco', 'Noah Dalton Danby': 'Nunez (as Noah Danby)', 'Neil Napier': 'Rubio', 'Nolan Gerard Funk': 'Luna', 'Karl Urban': 'Vaako', 'Andreas Apergis': 'Krone', 'Keri Hilson': ""Santana's Prisoner (as Keri Lynn Hilson)""}" tt1028528,"{'Kurt Russell': 'Stuntman Mike', 'Zoë Bell': 'Zoë Bell', 'Rosario Dawson': 'Abernathy', 'Vanessa Ferlito': 'Arlene', 'Sydney Tamiia Poitier': 'Jungle Julia (as Sydney Poitier)', 'Tracie Thoms': 'Kim', 'Rose McGowan': 'Pam', 'Jordan Ladd': 'Shanna', 'Mary Elizabeth Winstead': 'Lee', 'Quentin Tarantino': 'Warren', 'Marcy Harriell': 'Marcy', 'Eli Roth': 'Dov', 'Omar Doom': 'Nate', 'Michael Bacall': 'Omar', 'Monica Staggs': 'Lanna Frank'}" tt0281322,"{'Wesley Snipes': 'Monroe Hutchen', 'Ving Rhames': ""George 'Iceman' Chambers"", 'Peter Falk': 'Mendy Ripstein', 'Michael Rooker': 'A.J. Mercker', 'Jon Seda': ""Jesus 'Chuy' Campos"", 'Wes Studi': 'Mingo Pace', 'Fisher Stevens': ""James 'Ratbag' Kroycek"", 'Dayton Callie': 'Yank Lewis', 'Amy Aquino': 'Darlene Early', 'Johnny Williams': 'Al', ""Joe D'Angerio"": 'Vinnie', 'Nils Allen Stewart': 'Vern Van Zant', 'Denis Arndt': 'Warden Lipscom', 'Jim Lampley': 'Jim Lampley', 'Ed Lover': 'Marvin Bonds'}" tt0280778,"{'Kate Winslet': 'Young Iris Murdoch', 'Hugh Bonneville': 'Young John Bayley', 'Judi Dench': 'Iris Murdoch', 'Jim Broadbent': 'John Bayley', 'Eleanor Bron': 'Principal', 'Angela Morant': 'Hostess', 'Penelope Wilton': 'Janet Stone', 'Siobhan Hayes': 'Check-Out Girl', 'Juliet Aubrey': 'Young Janet Stone', 'Joan Bakewell': 'BBC Presenter', 'Nancy Carroll': 'BBC PA', 'Kris Marshall': 'Dr. Gudgeon', 'Tom Mannion': 'Neurologist', 'Derek Hutchinson': 'Postman', 'Samuel West': 'Young Maurice (as Sam West)'}" tt1650554,"{'Aaron Taylor-Johnson': 'Dave Lizewski / Kick-Ass', 'Chloë Grace Moretz': 'Mindy Macready / Hit Girl', 'Morris Chestnut': 'Detective Marcus Williams', 'Claudia Lee': 'Brooke', 'Amy Anzel': 'Mrs Zane', 'Clark Duke': 'Marty / Battle Guy', 'Augustus Prew': 'Todd / Ass Kicker', 'Mary Kitchen': 'News Reporter', 'Donald Faison': 'Dr. Gravity', 'Matt Steinberg': 'Mr. Radical', 'Steven Mackintosh': ""Tommy's Dad"", 'Monica Dolan': ""Tommy's Mum"", 'Garrett M. Brown': 'Mr. Lizewski', 'Lyndsy Fonseca': 'Katie Deauxma', 'Christopher Mintz-Plasse': ""Chris D'Amico / The Motherfucker""}" tt0171359,"{'Ethan Hawke': 'Hamlet', 'Kyle MacLachlan': 'Claudius', 'Diane Venora': 'Gertrude', 'Sam Shepard': 'Ghost', 'Bill Murray': 'Polonius', 'Liev Schreiber': 'Laertes', 'Julia Stiles': 'Ophelia', 'Karl Geary': 'Horatio', 'Paula Malcomson': 'Marcella', 'Steve Zahn': 'Rosencrantz', 'Dechen Thurman': 'Guildenstern', 'Rome Neal': 'Barnardo', 'Jeffrey Wright': 'Gravedigger', 'Paul Bartel': 'Osric', 'Casey Affleck': 'Fortinbras'}" tt1596343,"{'Vin Diesel': 'Dominic Toretto', 'Paul Walker': ""Brian O'Conner"", 'Jordana Brewster': 'Mia', 'Tyrese Gibson': 'Roman', 'Ludacris': ""Tej (as Chris 'Ludacris' Bridges)"", 'Matt Schulze': 'Vince', 'Sung Kang': 'Han', 'Gal Gadot': 'Gisele', 'Tego Calderon': 'Leo', 'Don Omar': 'Santos', 'Joaquim de Almeida': 'Reyes', 'Dwayne Johnson': 'Hobbs', 'Elsa Pataky': 'Elena', 'Michael Irby': 'Zizi', 'Fernando Chien': 'Wilkes (as Fernando F. Chien)'}" tt0104409,"{'Kevin Bernhardt': 'J.P. Monroe / Pistonhead Cenobite', 'Lawrence Mortorff': 'Bum', 'Terry Farrell': ""Joanne 'Joey' Summerskill"", 'Ken Carpenter': ""Daniel 'Doc' Fisher / Camerahead Cenobite"", 'Sharon Hill': 'Blond Nurse', 'Paula Marshall': 'Terri / Skinless Sandy / Dreamer Cenobite', 'Robert C. Treveiler': 'Paramedic 1 (as Rob Treveiler)', 'Christopher Frederick': 'Paramedic 2', 'Lawrence Kuppin': 'Derelict', 'Sharon Percival': 'Brittany Virtue', 'Philip Hyland': 'Brad', 'David Young': 'Bill the Bouncer', 'Brent Bolthouse': 'CD the DJ', 'Peter Atkins': 'Rick the Barman / Barbie Cenobite', 'Paul Coleman': 'Soldier 1 (as Paul Vincent Coleman)'}" tt0068935,"{'Bruce Lee': 'Tang Lung', 'Nora Miao': 'Chen Ching Hua', 'Chuck Norris': 'Colt', 'Ping Ou Wei': 'Ho (as Paul Wei Ping-Ao)', 'Chung-Hsin Huang': ""'Uncle' Wang (as Wang Chung Hsin)"", 'Robert Wall': 'Bob', 'Ing-Sik Whang': 'Japanese Fighter', 'Ti Chin': 'Ah Quen', 'Tony Liu': 'Tony', 'Little Unicorn': 'Jimmy', 'Malisa Longo': 'Italian Beauty', 'Ngan Wu': 'Waiter', 'Fu Ching Chen': 'Robert (as Robert Chen)', 'Jon T. Benn': 'The Boss', 'John Kenny': 'Quen (voice)'}" tt0120604,"{'Christopher Lambert': 'Beowulf', 'Rhona Mitra': 'Kyra', 'Oliver Cotton': 'Hrothgar', 'Götz Otto': 'Roland', 'Charles Robinson': 'Weaponsmaster (as Charlie Robinson)', 'Brent Jefferson Lowe': 'Will (as Brent J. Lowe)', 'Roger Sloman': 'Karl', 'Layla Roberts': ""Grendel's Mother"", 'Robert Willox': 'Chief Officer', 'Patricia Velasquez': 'Pendra', 'Marcel Cobzariu': 'Lookout (as Marcelo Cobzariu)', 'Vlad Jipa': 'Sentry', 'Diana Dumbrava': ""Hrothgar's Wife"", 'Andrei Rusu': '1st Soldier', 'Vitalie Bantas': '1st Guard'}" tt0122541,"{'Peter Vaughan': 'Phipps', 'Rupert Everett': 'Lord Goring', 'Minnie Driver': 'Mabel', 'Cate Blanchett': 'Gertrude', 'Ben Pullen': 'Tommy Trafford', 'Marsha Fitzalan': 'Countess', 'Julianne Moore': 'Mrs Cheveley', 'Lindsay Duncan': 'Lady Markby', 'Neville Phillips': 'Mason', 'John Wood': 'Lord Caversham', 'Jeremy Northam': 'Sir Robert', 'Nickolas Grace': 'Vicounte de Nanjac', 'Simon Russell Beale': 'Sir Edward', 'Anna Patrick': 'Miss Danvers', 'Delia Lindsay': 'Lady Basildon'}" tt0240601,"{'Mark Keller': 'Peter', 'Jasmin Gerat': 'Gwen', 'Maximilian Schell': 'Walter Ekland', 'Burkhard Driest': 'Decker', 'Katja Burkard': 'Fernsehsprecherin', 'Prince Hughes': 'Real Decker', 'Mario Irrek': 'Richie Rich', 'Wolfram Kons': 'Fernsehsprecher', 'Lorenzo Bassa Mestre': 'Taxifahrer', 'Patrizia Moresco': 'Maria', 'Ralph Morgenstern': 'Sickenberger', 'Peter Rappenglück': 'Cookie', 'Pierre Shrady': 'Barkeeper'}" tt1690953,"{'Steve Carell': 'Gru (voice)', 'Kristen Wiig': 'Lucy (voice)', 'Benjamin Bratt': 'Eduardo Pérez / El Macho (voice)', 'Miranda Cosgrove': 'Margo (voice)', 'Russell Brand': 'Dr. Nefario (voice)', 'Ken Jeong': 'Floyd Eagle-san (voice)', 'Steve Coogan': 'Silas Ramsbottom (voice)', 'Elsie Fisher': 'Agnes (voice)', 'Dana Gaier': 'Edith (voice)', 'Moises Arias': 'Antonio Pérez (voice)', 'Nasim Pedrad': 'Jillian (voice)', 'Kristen Schaal': 'Shannon (voice)', 'Pierre Coffin': 'Kevin the Minion / Bob the Minion / Stuart the Minion / Additional Minions / Evil Minions (voice)', 'Chris Renaud': 'Additional Minions / Evil Minions / Italian Waiter (voice)', 'Nickolai Stoilov': 'Arctic Lab Guards (voice)'}" tt0102370,"{'Madonna': 'Herself', 'Donna DeLory': 'Herself - Vocals and Dancer (as Donna Delory)', 'Niki Harris': 'Herself - Vocals and Dancer (as Niki Harris)', 'Luis Camacho': 'Himself - Dancer', 'Oliver Crumes Jr.': 'Himself - Dancer (as Oliver Crumes)', 'Salim Gauwloos': 'Himself - Dancer', 'Kevin Alexander Stea': 'Himself - Dancer (as Kevin Stea)', 'Gabriel Trupin': 'Himself - Dancer', 'Carlton Wilborn': 'Himself - Dancer', 'Sharon Gault': 'Herself - Mama Make-up', 'Joanne Gair': ""Herself - Madonna's Make-up"", 'Jai Winding': 'Himself - Keyboards', 'Jonathan Moffett': 'Himself - Drums', 'David Williams': 'Himself - Guitar', 'Luis Conte': 'Himself - Percussion'}" tt0110027,"{'Christopher Lambert': 'Connor MacLeod / Russell Nash', 'Mario Van Peebles': 'Kane', 'Deborah Kara Unger': 'Alex Johnson / Sarah', 'Mako': 'Nakano', 'Raoul Max Trujillo': 'Warrior #1 (as Raoul Trujillo)', 'Jean-Pierre Pérusse': 'Warrior #2 (as Jean-Pierre Perusse)', 'Martin Neufeld': 'Lt. John Stenn', 'Frederick Y. Okimura': 'Old Japanese Man', 'Daniel Do': 'Dr. Fuji Takamura', 'Gabriel Kakon': 'John MacLeod', 'Louis Bertignac': 'Pierre Bouchet', 'Michael Jayston': 'Jack Donovan', 'Zhenhu Han': 'Innkeeper (as Zenhu Han)', 'Akira Inoue': ""Innkeeper's Son"", 'Darcy Laurie': 'Banger 1'}" tt0133046,"{'Helen Mirren': 'Mrs. Tingle', 'Katie Holmes': 'Leigh Ann Watson', 'Jeffrey Tambor': 'Coach Wenchell', 'Barry Watson': 'Luke Churner', 'Marisa Coughlan': 'Jo Lynn Jordan', 'Liz Stauber': 'Trudie Tucker', 'Michael McKean': 'Principal Potter', 'Molly Ringwald': 'Miss Banks', 'Vivica A. Fox': 'Miss Gold', 'John Patrick White': 'Brian Berry', 'Robert Gant': 'Professor', 'Harvey Silver': 'Roger'}" tt1905041,"{'Vin Diesel': 'Dominic Toretto', 'Paul Walker': ""Brian O'Conner"", 'Dwayne Johnson': 'Hobbs', 'Jordana Brewster': 'Mia', 'Michelle Rodriguez': 'Letty', 'Tyrese Gibson': 'Roman', 'Sung Kang': 'Han', 'Gal Gadot': 'Gisele', 'Ludacris': ""Tej (as Chris 'Ludacris' Bridges)"", 'Luke Evans': 'Shaw', 'Elsa Pataky': 'Elena', 'Gina Carano': 'Riley', 'Clara Paget': 'Vegh', 'Kim Kold': 'Klaus', 'Joe Taslim': 'Jah'}" tt0120915,"{'Liam Neeson': 'Qui-Gon Jinn', 'Ewan McGregor': 'Obi-Wan Kenobi', 'Natalie Portman': 'Queen Amidala / Padmé', 'Jake Lloyd': 'Anakin Skywalker', 'Ian McDiarmid': 'Senator Palpatine', 'Pernilla August': 'Shmi Skywalker', 'Oliver Ford Davies': 'Sio Bibble', 'Hugh Quarshie': 'Captain Panaka', 'Ahmed Best': 'Jar Jar Binks', 'Anthony Daniels': 'C-3PO (voice)', 'Kenny Baker': 'R2-D2', 'Frank Oz': 'Yoda (voice)', 'Terence Stamp': 'Chancellor Valorum', 'Brian Blessed': 'Boss Nass (voice)', 'Andy Secombe': 'Watto (voice) (as Andrew Secombe)'}" tt0144964,"{'Adrian Paul': 'Duncan MacLeod', 'Christopher Lambert': 'Connor MacLeod', 'Bruce Payne': 'Jacob Kell', 'Lisa Barbuscia': 'Kate MacLeod / Faith', 'Donnie Yen': 'Jin Ke', 'Jim Byrnes': 'Joe Dawson', 'Peter Wingfield': 'Methos', 'Damon Dash': 'Carlos', 'Beatie Edney': 'Heather MacLeod', 'Sheila Gish': 'Rachel Ellenstein', 'Oris Erhuero': 'Winston', 'Ian Paul Cassidy': 'Cracker Bob', 'Adam Copeland': 'Lachlan (as Edge)', 'Mihnea Trusca': 'Villager', 'June Watson': 'Caiolin MacLeod'}" tt0246544,"{'Catherine Deneuve': 'The Queen', 'Mena Suvari': 'Francesca Bonacieux', 'Stephen Rea': 'Cardinal Richelieu', 'Tim Roth': 'Febre the Man in Black', 'Justin Chambers': ""D'Artagnan"", 'Bill Treacher': 'Bonacieux', 'Daniel Mesguich': 'King Louis XIII', 'David Schofield': 'Rochefort, Richelieu Henchman', 'Nick Moran': 'Aramis', 'Steve Speirs': 'Porthos', 'Jan-Gregor Kremp': 'Athos', 'Jeremy Clyde': 'Lord Buckingham', 'Michael Byrne': 'Treville, Head of the Musketeers', 'Jean-Pierre Castaldi': 'Planchet', 'Tsilla Chelton': 'Madame Lacross'}" tt0193560,"{'James Van Der Beek': 'Lincoln Rogers Dunnison', 'Rachael Leigh Cook': 'Caroline Dukes', 'Ashton Kutcher': 'George Durham', 'Dylan McDermott': 'Leander McNelly', 'Usher Raymond': 'Randolph Douglas Scipio', 'Tom Skerritt': 'Richard Dukes', 'Randy Travis': 'Frank Bones', 'Leonor Varela': 'Perdita', 'Brian Martell': 'Jean-Pierre Marsele', 'Alfred Molina': 'John King Fisher', 'Billy Morton': 'Abajo', 'Kate Newby': 'Henrietta Dukes', 'Robert Patrick': 'Sgt. John Armstrong', 'Gordon Michaels': 'Mariachi Guard', 'Joe Renteria': 'General Cortinas'}" tt0252299,"{'Joaquin Phoenix': 'Ray Elwood', 'Ed Harris': 'Colonel Berman', 'Scott Glenn': 'Sergeant Lee', 'Anna Paquin': 'Robyn Lee', 'Elizabeth McGovern': 'Mrs. Berman', 'Michael Peña': 'Garcia', 'Leon': 'Stoney (as Leon Robinson)', 'Gabriel Mann': 'Knoll', 'Dean Stockwell': 'General Lancaster', 'Brian Delate': 'Colonel Marshall', 'Shiek Mahmud-Bey': 'Sergeant Saad (as Sheik Mahmud-Bey)', 'Amani Gethers': 'Kirschfield', 'Noah Lee Margetts': 'Rothfuss (as Noah)', 'Tom Ellis': 'Squash', 'Kick Gurry': 'Video'}" tt0220506,"{'Jamie Lee Curtis': 'Laurie Strode', 'Brad Loree': 'Michael Myers', 'Busta Rhymes': 'Freddie Harris', 'Bianca Kajlich': 'Sara Moyer', 'Sean Patrick Thomas': 'Rudy', 'Daisy McCrackin': 'Donna', 'Katee Sackhoff': 'Jen (as Katee Sachoff)', 'Luke Kirby': 'Jim', 'Thomas Ian Nicholas': 'Bill', 'Ryan Merriman': 'Myles Barton', 'Tyra Banks': 'Nora', 'Billy Kay': 'Scott', 'Gus Lynch': 'Harold', 'Lorena Gale': 'Nurse Wells', 'Marisa Rudiak': 'Nurse Phillips'}" tt0290212,"{'David Duchovny': 'Gus', 'Nicky Katt': 'Hitler', 'Catherine Keener': 'Lee', 'Mary McCormack': 'Linda', 'David Hyde Pierce': 'Carl', 'Julia Roberts': 'Francesca / Catherine', 'Blair Underwood': 'Calvin / Nicholas', 'Enrico Colantoni': 'Arty / Ed', 'Erika Alexander': 'Lucy', 'Tracy Vilar': 'Heather', 'Brandon Keener': ""Francesca's Assistant"", 'Jeff Garlin': 'Harvey, probably', 'David Alan Basche': ""Nicholas's Agent"", 'Terence Stamp': 'Man on Plane / Himself', 'Nancy Lenehan': 'Woman on Plane'}" tt0282209,"{'Chaney Kley': 'Kyle', 'Emma Caulfield Ford': 'Caitlin (as Emma Caulfield)', 'Lee Cormie': 'Michael', 'Grant Piro': 'Larry', 'Sullivan Stapleton': 'Matt', 'Steve Mouzakis': 'Dr. Murphy', 'Peter Curtin': 'Dr. Travis', 'Kestie Morassi': 'Nurse Lauren', 'Jenny Lovell': 'Nurse Alex', 'John Stanton': 'Captain Henry', 'Angus Sampson': 'Ray (as Angus Murray Lincoln Sampson)', 'Charlotte Rose': ""Ray's Wife (as Charlotte Rees)"", 'Joshua Anderson': 'Young Kyle', 'Emily Browning': 'Young Caitlin', 'Rebecca McCauley': ""Kyle's Mom""}" tt1139328,"{'Ewan McGregor': 'The Ghost', 'Jon Bernthal': 'Rick Ricardelli', 'Tim Preece': 'Roy', 'Jim Belushi': 'John Maddox (as James Belushi)', 'Timothy Hutton': 'Sidney Kroll', 'Anna Botting': 'SKY TV Newsreader', 'Yvonne Tomlinson': 'Stewardess', 'Milton Welsh': 'Taxi Driver', 'Alister Mazzotti': 'Protection Officer #1', 'Tim Faraday': 'Barry', 'Kim Cattrall': 'Amelia Bly', 'Kate Copeland': 'Alice', 'Soogi Kang': 'Dep', 'Lee Hong Thay': 'Duc', 'Olivia Williams': 'Ruth Lang'}" tt0427470,"{'Joseph Gordon-Levitt': 'Chris Pratt', 'Jeff Daniels': 'Lewis', 'Matthew Goode': 'Gary Spargo', 'Isla Fisher': 'Luvlee', 'Carla Gugino': 'Janet', 'Bruce McGill': 'Robert Pratt', 'Alberta Watson': 'Barbara Pratt', 'Alex Borstein': 'Mrs. Lange', 'Sergio Di Zio': 'Deputy Ted', 'David Huband': 'Mr. Tuttle', 'Laura Vandervoort': 'Kelly', 'Greg Dunham': 'Bone', 'Morgan Kelly': 'Marty', 'Aaron Berg': 'Cork', 'Tinsel Korey': 'Maura'}" tt0052618,"{'Charlton Heston': 'Judah Ben-Hur', 'Jack Hawkins': 'Quintus Arrius', 'Haya Harareet': 'Esther', 'Stephen Boyd': 'Messala', 'Hugh Griffith': 'Sheik Ilderim', 'Martha Scott': 'Miriam', ""Cathy O'Donnell"": 'Tirzah', 'Sam Jaffe': 'Simonides', 'Finlay Currie': 'Balthasar / Narrator', 'Frank Thring': 'Pontius Pilate', 'Terence Longdon': 'Drusus', 'George Relph': 'Tiberius Caesar', 'André Morell': 'Sextus'}" tt0417741,"{'Daniel Radcliffe': 'Harry Potter', 'Michael Gambon': 'Professor Albus Dumbledore', 'Dave Legeno': 'Fenrir Greyback', 'Elarica Johnson': 'Waitress (as Elarica Gallacher)', 'Jim Broadbent': 'Professor Horace Slughorn', 'Geraldine Somerville': 'Lily Potter', 'Bonnie Wright': 'Ginny Weasley', 'Julie Walters': 'Molly Weasley', 'Rupert Grint': 'Ron Weasley', 'Emma Watson': 'Hermione Granger', 'Helena Bonham Carter': 'Bellatrix Lestrange', 'Helen McCrory': 'Narcissa Malfoy', 'Timothy Spall': 'Wormtail', 'Alan Rickman': 'Professor Severus Snape', 'Oliver Phelps': 'George Weasley'}" tt0377818,"{'Johnny Knoxville': 'Luke Duke', 'Seann William Scott': 'Bo Duke', 'Alice Greczyn': 'Laurie Pullman', 'Steve Lemme': 'Jimmy', 'Michael Weston': 'Deputy Enos Strate', 'Mitch Braswell': 'Out of Towner #1', 'Michael Roof': 'Dil Driscoll', 'Jessica Simpson': 'Daisy Duke', 'Rusty Tennant': 'Local #1', 'Dolan Wilson': 'Local #2', 'James Roday': 'Billy Prickett', 'Heather Hemmens': 'Girl #1', 'David Leitch': 'Puncher', 'A.J. Foyt IV': 'Race Car Driver #1', 'M.C. Gainey': 'Sheriff Rosco P. Coltrane'}" tt0348836,"{'Halle Berry': 'Miranda Grey', 'Robert Downey Jr.': 'Pete Graham', 'Charles S. Dutton': 'Dr. Douglas Grey', 'John Carroll Lynch': 'Sheriff Ryan', 'Bernard Hill': 'Phil Parsons', 'Penélope Cruz': 'Chloe Sava', 'Dorian Harewood': 'Teddy Howard', 'Bronwen Mantel': 'Irene', 'Kathleen Mackey': 'Rachel Parsons', 'Matthew G. Taylor': 'Turlington', 'Michel Perron': 'Joe', 'Andrea Sheldon': 'Tracey Seavers', 'Anana Rydvald': 'Glass Cell Nurse', 'Laura Mitchell': 'Inmate', 'Amy Sloan': 'Inmate'}" tt0112462,"{'Val Kilmer': 'Batman / Bruce Wayne', 'Tommy Lee Jones': 'Harvey Two-Face / Harvey Dent', 'Jim Carrey': 'Riddler / Edward Nygma', 'Nicole Kidman': 'Dr. Chase Meridian', ""Chris O'Donnell"": 'Robin / Dick Grayson', 'Michael Gough': 'Alfred Pennyworth', 'Pat Hingle': 'Commissioner Gordon', 'Drew Barrymore': 'Sugar', 'Debi Mazar': 'Spice', 'Elizabeth Sanders': 'Gossip Gerty', 'Rene Auberjonois': 'Dr. Burton', 'Joe Grifasi': 'Bank Guard', 'Philip Moon': 'Male Newscaster', 'Jessica Tuck': 'Female Newscaster', 'Dennis Paladino': 'Crime Boss Moroni'}" tt1120985,"{'Ryan Gosling': 'Dean', 'Michelle Williams': 'Cindy', 'Faith Wladyka': 'Frankie', 'John Doman': 'Jerry', 'Mike Vogel': 'Bobby', 'Marshall Johnson': 'Marshall', 'Jen Jones': 'Gramma', 'Maryann Plunkett': 'Glenda', 'James Benatti': 'Jamie', 'Barbara Troy': 'Jo', 'Carey Westbrook': 'Charley', 'Ben Shenkman': 'Dr. Feinberg', 'Eileen Rosen': 'Mimi', 'Enid Graham': 'Professor', 'Ashley Gurnari': 'Checker'}" tt0120891,"{'Will Smith': 'James West', 'Kevin Kline': 'Artemus Gordon / President Grant', 'Kenneth Branagh': 'Dr. Arliss Loveless', 'Salma Hayek': 'Rita Escobar', 'M. Emmet Walsh': 'Coleman', 'Ted Levine': 'General McGrath', 'Frederique Van Der Wal': 'Amazonia (as Frederique van der Wal)', 'Musetta Vander': 'Munitia', 'Sofia Eng': 'Miss Lippenrieder', 'Bai Ling': 'Miss East', 'Garcelle Beauvais': 'Girl In Water Tower', 'Mike H. McGaughy': 'Big Reb (as Mike McGaughy)', 'Jerry Wills': 'Other Reb', 'Rodney A. Grant': 'Hudson', 'Buck Taylor': 'Eye-Crossed Reb'}" tt0289879,"{'Ashton Kutcher': 'Evan', 'Melora Walters': 'Andrea', 'Amy Smart': 'Kayleigh', 'Elden Henson': 'Lenny', 'William Lee Scott': 'Tommy', 'John Patrick Amedori': 'Evan at 13', 'Irina Gorovaia': 'Kayleigh at 13 (as Irene Gorovaia)', 'Kevin G. Schmidt': 'Lenny at 13', 'Jesse James': 'Tommy at 13', 'Logan Lerman': 'Evan at 7', 'Sarah Widdows': 'Kayleigh at 7', 'Jake Kaese': 'Lenny at 7', 'Cameron Bright': 'Tommy at 7', 'Eric Stoltz': 'Mr. Miller', 'Callum Keith Rennie': 'Jason'}" tt0329101,"{'Robert Englund': 'Freddy Krueger', 'Ken Kirzinger': 'Jason Voorhees', 'Monica Keena': 'Lori Campbell', 'Jason Ritter': 'Will Rollins', 'Kelly Rowland': 'Kia Waterson', 'Chris Marquette': 'Charlie Linderman (as Christopher George Marquette)', 'Brendan Fletcher': 'Mark Davis', 'Katharine Isabelle': 'Gibb', 'Lochlyn Munro': 'Deputy Scott Stubbs', 'Kyle Labine': 'Bill Freeburg', 'Tom Butler': 'Dr. Campbell', 'David Kopp': 'Blake', 'Paula Shaw': ""Mrs. Pamela Voorhees (Jason's Mother)"", 'Jesse Hutch': 'Trey', 'Zack Ward': ""Bobby Davis (Mark's Brother)""}" tt0251160,"{'Gabriela Oltean': 'Beautiful BMW Driver', 'Denzel Washington': 'John Quincy Archibald', 'Kimberly Elise': 'Denise Archibald', 'Ron Annabelle': 'Tow Truck Driver', 'Daniel E. Smith': ""Michael 'Mike' Archibald"", 'David Thornton': 'Jimmy Palumbo', 'Barry G. King': 'Employee Manager', 'Laura Harring': 'Gina Palumbo (as Laura Elena Harring)', 'Kevin Connolly': 'Steve Maguire', 'Larissa Laskin': 'Dr. Ellen Klein', 'Vanessa Branch': 'Registered Nurse', 'Stephanie Moore': 'Admitting Nurse', 'James Finnerty': 'Nurse Reggie', 'Anne Heche': 'Rebecca Payne', 'James Woods': 'Dr. Raymond Turner'}" tt0331632,"{'Freddie Prinze Jr.': 'Fred', 'Sarah Michelle Gellar': 'Daphne', 'Matthew Lillard': 'Shaggy', 'Linda Cardellini': 'Velma', 'Seth Green': 'Patrick Wisely', 'Peter Boyle': 'Old Man Wickles', 'Tim Blake Nelson': 'Jacobo', 'Alicia Silverstone': 'Heather', 'Neil Fanning': 'Scooby-Doo (voice)', ""Pat O'Brien"": 'Himself', 'Bill Meilen': 'Chauffeur', 'Zahf Paroo': 'Ned', 'Chris Gauthier': ""Daphne's Tattooed Fan #1 (as Christopher Gauthier)"", 'Peter New': ""Daphne's Tattooed Fan #2"", 'Morgan Brayton': 'Mullet Nerdette #1'}" tt0267913,"{'Freddie Prinze Jr.': 'Fred', 'Sarah Michelle Gellar': 'Daphne', 'Matthew Lillard': 'Shaggy', 'Linda Cardellini': 'Velma', 'Rowan Atkinson': 'Mondavarious', 'Isla Fisher': 'Mary Jane', 'Miguel A. Núñez Jr.': 'Voodoo Maestro (as Miguel A. Nunez Jr.)', 'Steven Grives': ""N' Goo Tuana"", 'Charles Stan Frazier': 'Sugar Ray (as Stan Frazier)', 'Craig Bullock': 'Sugar Ray (as DJ Homicide)', 'Matthew Murphy Karges': 'Sugar Ray (as Murphy Karges)', 'Mark McGrath': 'Sugar Ray', 'Rodney Sheppard': 'Sugar Ray', 'Sam Greco': 'Zarkos', 'Charlie Cousins': ""Velma's Friend (as Charles Cousins)""}" tt0186566,"{'Clint Eastwood': 'Frank Corvin', 'Tommy Lee Jones': 'Hawk Hawkins', 'Donald Sutherland': ""Jerry O'Neill"", 'James Garner': 'Tank Sullivan', 'James Cromwell': 'Bob Gerson', 'Marcia Gay Harden': 'Sara Holland', 'William Devane': 'Eugene Davis', 'Loren Dean': 'Ethan Glance', 'Courtney B. Vance': 'Roger Hines', 'Barbara Babcock': 'Barbara Corvin', 'Rade Serbedzija': 'General Vostov (as Rade Sherbedgia)', 'Blair Brown': 'Dr. Anne Caruthers', 'Jay Leno': 'Jay Leno', 'Nils Allen Stewart': 'Tiny', 'Deborah Jolly': 'Cocktail Waitress'}" tt0244244,"{'John Travolta': 'Gabriel', 'Hugh Jackman': 'Stanley', 'Halle Berry': 'Ginger', 'Don Cheadle': 'Roberts', 'Sam Shepard': 'Senator Reisman', 'Vinnie Jones': 'Marco', 'Drea de Matteo': 'Melissa', 'Rudolf Martin': 'Axl Torvalds', 'Zach Grenier': 'A.D. Joy', 'Camryn Grimes': 'Holly', 'Angelo Pagán': 'Torres', 'Chic Daniel': 'SWAT Leader', 'Kirk B.R. Woller': 'Lawyer', 'Carmen Argenziano': 'Agent', 'Tim DeKay': 'Agent'}" tt0100944,"{'Anjelica Huston': 'Miss Ernst / Grand High Witch', 'Mai Zetterling': 'Helga', 'Jasen Fisher': 'Luke', 'Rowan Atkinson': 'Mr. Stringer', 'Bill Paterson': 'Mr. Jenkins', 'Brenda Blethyn': 'Mrs. Jenkins', 'Charlie Potter': 'Bruno Jenkins', 'Anne Lambton': 'Woman in Black', 'Jane Horrocks': 'Miss Irvine', 'Sukie Smith': 'Marlene', 'Rose English': 'Dora', 'Jenny Runacre': 'Elsie', 'Annabel Brooks': 'Nicola', 'Emma Relph': 'Millie', 'Nora Connolly': 'Beatrice'}" tt0105695,"{'Clint Eastwood': 'Bill Munny', 'Gene Hackman': 'Little Bill Daggett', 'Morgan Freeman': 'Ned Logan', 'Richard Harris': 'English Bob', 'Jaimz Woolvett': ""The 'Schofield Kid'"", 'Saul Rubinek': 'W.W. Beauchamp', 'Frances Fisher': 'Strawberry Alice', 'Anna Levine': 'Delilah Fitzgerald (as Anna Thomson)', 'David Mucci': 'Quick Mike', 'Rob Campbell': 'Davey Bunting', 'Anthony James': 'Skinny Dubois', 'Tara Frederick': 'Little Sue (as Tara Dawn Frederick)', 'Beverley Elliott': 'Silky', 'Liisa Repo-Martell': 'Faith', 'Josie Smith': 'Crow Creek Kate'}" tt0089791,"{'Paul Reubens': 'Pee-wee Herman (as Pee-wee Herman)', 'Elizabeth Daily': 'Dottie', 'Mark Holton': 'Francis Buxton', 'Diane Salinger': 'Simone', 'Judd Omen': 'Mickey', 'Irving Hellman': 'Mr. Crowtray', 'Monte Landis': 'Mario', 'Damon Martin': 'Chip (as Damon Landis)', 'David Glasser': 'BMX Kid', 'Gregory Brown': 'BMX Kid', 'Mark Everett': 'BMX Kid', 'Daryl Keith Roach': 'Chuck (as Daryl Roach)', 'Bill Cable': 'Policeman #1', 'Peter Looney': 'Policeman #2', 'Starletta DuPois': 'Sgt. Hunter'}" tt0195945,"{'Ice Cube': 'Craig Jones', 'Mike Epps': 'Day-Day', 'Justin Pierce': 'Roach', 'John Witherspoon': 'Mr. Jones', ""Don 'D.C.' Curry"": 'Uncle Elroy', 'Jacob Vargas': 'Joker', 'Lobo Sebastian': 'Lil Joker', 'Rolando Molina': 'Baby Joker', 'Lisa Rodríguez': 'Karla (as Lisa Rodriguez)', ""Tommy 'Tiny' Lister"": ""Deebo (as Tommy 'Tiny' Lister Jr.)"", 'Kym Whitley': 'Suga (as Kym E. Whitley)', 'Amy Hill': 'Mrs. Ho-Kym', 'Tamala Jones': ""D'wana"", 'The Lady of Rage': ""Baby D' (as Robin Allen)"", 'Carmen Serano': 'Girl #1'}" tt0066999,"{'Clint Eastwood': 'Harry', 'Harry Guardino': 'Bressler', 'Reni Santoni': 'Chico', 'John Vernon': 'The Mayor', 'Andrew Robinson': 'Killer (as Andy Robinson)', 'John Larch': 'Chief', 'John Mitchum': 'De Giorgio', 'Mae Mercer': 'Mrs. Russell', 'Lyn Edgington': 'Norma', 'Ruth Kobart': 'Bus Driver', 'Woodrow Parfrey': 'Mr. Jaffe', 'Josef Sommer': 'Rothko', 'William Paterson': 'Bannerman', 'James Nolan': 'Liquor Proprietor', 'Maurice Argent': 'Sid Kleinman (as Maurice S. Argent)'}" tt0327056,"{'Sean Penn': 'Jimmy Markum', 'Tim Robbins': 'Dave Boyle', 'Kevin Bacon': 'Sean Devine', 'Laurence Fishburne': 'Whitey Powers', 'Marcia Gay Harden': 'Celeste Boyle', 'Laura Linney': 'Annabeth Markum', 'Kevin Chapman': 'Val Savage', 'Tom Guiry': 'Brendan Harris (as Thomas Guiry)', 'Emmy Rossum': 'Katie Markum', 'Spencer Treat Clark': 'Silent Ray Harris', 'Andrew Mackin': ""John O'Shea"", 'Adam Nelson': 'Nick Savage', 'Robert Wahlberg': 'Kevin Savage', ""Jenny O'Hara"": 'Esther Harris', 'John Doman': 'Driver'}" tt0770752,"{'Matthew McConaughey': 'Finn', 'Kate Hudson': 'Tess', 'Donald Sutherland': 'Nigel Honeycutt', 'Alexis Dziena': 'Gemma Honeycutt', 'Ewen Bremner': 'Alfonz', 'Ray Winstone': 'Moe Fitch', 'Kevin Hart': 'Bigg Bunny', 'Malcolm-Jamal Warner': 'Cordell', 'Brian Hooks': 'Curtis', 'David Roberts': 'Cyrus', 'Michael Mulheren': 'Eddie', 'Adam LeFevre': 'Gary', 'Rohan Nichol': 'Stefan', 'Roger Sciberras': 'Andras', 'Elizabeth Connolly': 'Precious Gem Crew Nurse'}" tt0480249,"{'Will Smith': 'Robert Neville', 'Alice Braga': 'Anna', 'Charlie Tahan': 'Ethan', 'Salli Richardson-Whitfield': 'Zoe Neville (as Salli Richardson)', 'Willow Smith': 'Marley Neville', 'Darrell Foster': 'Mike - Military Escort', 'April Grace': 'TV Personality', 'Dash Mihok': 'Alpha Male', 'Joanna Numata': 'Alpha Female', 'Abbey': 'Sam (as Abbey)', 'Kona': 'Sam', 'Samuel Glen': 'Military Driver - Jay', 'James McCauley': 'Male Evacuee', 'Marin Ireland': 'Woman Evacuee', 'Pedro Mojica': 'Sergeant'}" tt0366548,"{'Carlos Alazraqui': 'Nestor (voice)', 'Lombardo Boyar': 'Raul (voice)', 'Jeffrey Garcia': 'Rinaldo (voice) (as Jeff Garcia)', 'Johnny A. Sanchez': 'Lombardo (voice) (as Johnny Sanchez III)', 'Robin Williams': 'Ramon / Lovelace (voice)', 'Elijah Wood': 'Mumble (voice)', 'Brittany Murphy': 'Gloria (voice)', 'Hugh Jackman': 'Memphis (voice)', 'Nicole Kidman': 'Norma Jean (voice)', 'Hugo Weaving': 'Noah the Elder (voice)', 'Elizabeth Daily': 'Baby Mumble (voice) (as E.G. Daily)', 'Magda Szubanski': 'Miss Viola (voice)', 'Miriam Margolyes': 'Mrs. Astrakhan (voice)', 'Fat Joe': 'Seymour (voice)', 'Alyssa Shafer': 'Baby Gloria (voice)'}" tt0066434,"{'Robert Duvall': 'THX', 'Donald Pleasence': 'SEN', 'Don Pedro Colley': 'SRT', 'Maggie McOmie': 'LUH', 'Ian Wolfe': 'PTO', 'Marshall Efron': 'TWA', 'Sid Haig': 'NCH', 'John Pearce': 'DWY', 'Irene Cagen': 'IMM (as Irene Forrest)', 'Gary Alan Marsh': 'CAM', 'John Seaton': 'OUE', 'Eugene I. Stillman': 'JOT', 'Jack Walsh': 'TRG (as Raymond J. Walsh)', 'Mark Lawhead': 'Shell Dweller', 'Robert Feero': 'Chrome Robot'}" tt0100133,"{'Matthew Modine': 'Capt. Dennis Dearborn', 'Eric Stoltz': 'Sgt. Danny ""Danny Boy"" Daly', 'Tate Donovan': '1st Lt. Luke Sinclair', 'D.B. Sweeney': 'Lt. Phil Lowenthal', 'Billy Zane': 'Lt. Val ""Valentine"" Kozlowski', 'Sean Astin': 'Sgt. Richard ""Rascal"" Moore', 'Harry Connick Jr.': 'Sgt. Clay Busby', 'Reed Diamond': 'Sgt. Virgil Hoogesteger (as Reed Edward Diamond)', 'Courtney Gains': 'Sgt. Eugene McVey', 'Neil Giuntoli': 'Sgt. Jack Bocci', 'David Strathairn': 'Col. Craig Harriman', 'John Lithgow': 'Lt.Col. Bruce Derringer', 'Jane Horrocks': 'Faith', 'Mac McDonald': 'Les (as Mac Macdonald)', 'Jodie Brooke Wilson': 'Singer (as Jodie Wilson)'}" tt0084917,"{'Robin Williams': 'Garp', 'Mary Beth Hurt': 'Helen Holm', 'Glenn Close': 'Jenny Fields', 'John Lithgow': 'Roberta Muldoon', 'Hume Cronyn': 'Mr. Fields', 'Jessica Tandy': 'Mrs. Fields', 'Swoosie Kurtz': 'The Hooker', 'James McCall': 'Young Garp', 'Peter Michael Goetz': 'John Wolfe', 'George Ede': 'Dean Bodger', 'Mark Soper': 'Michael Milton', 'Nathan Babcock': 'Duncan', 'Ian MacGregor': 'Walt', 'Warren Berlinger': 'Stew Percy', 'Susan Browning': 'Midge Percy'}" tt0037913,"{'Joan Crawford': 'Mildred Pierce Beragon', 'Jack Carson': 'Wally Fay', 'Zachary Scott': 'Monte Beragon', 'Eve Arden': 'Ida Corwin', 'Ann Blyth': 'Veda Pierce', 'Bruce Bennett': 'Bert Pierce', 'Lee Patrick': 'Mrs. Maggie Biederhof', 'Moroni Olsen': 'Inspector Peterson', 'Veda Ann Borg': 'Miriam Ellis', 'Jo Ann Marlowe': 'Kay Pierce'}" tt0036098,"{'Roddy McDowall': 'Joe Carraclough', 'Donald Crisp': 'Sam Carraclough', 'May Whitty': 'Dally (as Dame May Whitty)', 'Edmund Gwenn': 'Rowlie', 'Nigel Bruce': 'Duke of Rudling', 'Elsa Lanchester': 'Mrs. Carraclough', 'Elizabeth Taylor': 'Priscilla', 'Ben Webster': ""Dan'l Fadden"", ""J. Pat O'Malley"": ""Hynes (as J. Patrick O'Malley)"", 'Alan Napier': 'Jock', 'Arthur Shields': 'Andrew', 'John Rogers': 'Snickers', 'Alec Craig': 'Buckles', 'Pal': 'Lassie (as Lassie)'}" tt0239395,"{'Jeff Goldblum': 'Professor Brody', 'Elizabeth Perkins': 'Mrs. Brody', 'Alexander Pollock': 'Scott Brody', 'Miriam Margolyes': 'Sophie', 'Myron Natwick': 'Mr. Mason', 'Doris Chillcott': 'Mrs. Calvert', 'Kirsten Robek': 'Pie Mom', 'Frank C. Turner': 'The Farmer', 'Mar Andersons': 'Guard at Gate', 'Gillian Barber': 'Factory Receptionist', 'Carol Ann Susi': ""Sophie's Sister"", 'Randi Kaplan': ""Sophie's Sister"", 'Mary Bogue': ""Sophie's Sister"", 'Alvin Sanders': 'Mason Employee', 'Mark Schooley': 'Mason Employee'}" tt0103776,"{'Michael Keaton': 'Batman / Bruce Wayne', 'Danny DeVito': 'Penguin', 'Michelle Pfeiffer': 'Catwoman / Selina', 'Christopher Walken': 'Max Shreck', 'Michael Gough': 'Alfred', 'Michael Murphy': 'Mayor', 'Cristi Conaway': 'Ice Princess', 'Andrew Bryniarski': 'Chip', 'Pat Hingle': 'Commissioner Gordon', 'Vincent Schiavelli': 'Organ Grinder', 'Steve Witting': 'Josh', 'Jan Hooks': 'Jen', 'John Strong': 'Sword Swallower', 'Rick Zumwalt': 'Tattooed Strongman', 'Anna Katarina': 'Poodle Lady'}" tt0443649,"{'Steven Strait': ""D'Leh"", 'Camilla Belle': 'Evolet', 'Cliff Curtis': ""Tic'Tic"", 'Joel Virgel': 'Nakudu', 'Affif Ben Badra': 'Warlord (as Ben Badra)', 'Mo Zinal': ""Ka'Ren (as Mo Zainal)"", 'Nathanael Baring': 'Baku', 'Mona Hammond': 'Old Mother', 'Marco Khan': 'One-Eye', 'Reece Ritchie': 'Moha', 'Joel Fry': ""Lu'kibu"", 'Omar Sharif': 'Narrator (voice)', 'Kristian Beazley': ""D'Leh's Father"", 'Junior Oliphant': 'Tudu', ""Louise Tu'u"": ""Baku's Mother""}" tt0448011,"{'Nicolas Cage': 'John Koestler', 'Chandler Canterbury': 'Caleb Koestler', 'Rose Byrne': 'Diana', 'Lara Robinson': 'Abby / Lucinda', 'D.G. Maloney': 'The Stranger', 'Nadia Townsend': 'Grace', 'Alan Hopgood': 'Reverend Koestler', 'Adrienne Pickering': 'Allison', 'Joshua Long': 'Younger Caleb', 'Danielle Carter': 'Miss Taylor (1959)', 'Alethea McGrath': 'Miss Taylor (2009)', 'David Lennie': 'Principal Clark (1959)', 'Tamara Donnellan': ""Lucinda's Mother"", 'Travis Waite': ""Lucinda's Father"", 'Ben Mendelsohn': 'Phil Beckman'}" tt1136608,"{'Sharlto Copley': 'Wikus Van De Merwe', 'Jason Cope': 'Grey Bradnam - UKNR Chief Correspondent / Christopher Johnson', 'Nathalie Boltt': 'Sarah Livingstone - Sociologist', 'Sylvaine Strike': 'Dr Katrina McKenzie', 'Elizabeth Mkandawie': 'Interviewee', 'John Sumner': 'Les Feldman - MIL Engineer', 'William Allen Young': 'Dirk Michaels', 'Greg Melvill-Smith': 'Interviewer', 'Nick Blake': 'Francois Moraneu - CIV Engineer Team', 'Morena Busa Sesatsa': 'Interviewee', 'Themba Nkosi': 'Interviewee', 'Mzwandile Nqoba': 'Interviewee', 'Barry Strydom': 'Interviewee', 'Jed Brophy': 'James Hope - Police Officer', 'Louis Minnaar': 'Piet Smit'}" tt1097013,"{'Donald Faison': 'Leo', 'Mike Epps': 'Brody', 'Wood Harris': 'Guch', 'Omari Hardwick': 'Shavoo', 'Emilio Rivera': 'Bodega', 'Darius McCrary': 'Buddy', 'Cisco Reyes': 'Jesus', 'Yasmin Deliz': 'Chita', 'Lobo Sebastian': 'Rhino', 'Malik Barnhardt': 'Hassie', 'Yasiin Bey': 'Eric (as Mos Def)', 'Debbie Allen': 'Ms. Jackson', 'Lauren London': 'Ivy', 'Jo D. Jonz': 'Wade', 'Shawn Michael Howard': 'Derrick'}" tt0464154,"{'Richard Dreyfuss': 'Matt Boyd', 'Ving Rhames': 'Deputy Fallon', 'Elisabeth Shue': 'Julie Forester', 'Christopher Lloyd': 'Mr. Carl Goodman', 'Eli Roth': 'Wet T-Shirt Host', ""Jerry O'Connell"": 'Derrick Jones', 'Steven R. McQueen': 'Jake Forester', 'Jessica Szohr': 'Kelly', 'Kelly Brook': 'Danni', 'Riley Steele': 'Crystal', 'Adam Scott': 'Novak', 'Ricardo Chavira': 'Sam', 'Dina Meyer': 'Paula', 'Paul Scheer': 'Andrew', 'Brooklynn Proulx': 'Laura Forester'}" tt0892318,"{'Amanda Seyfried': 'Sophie', 'Marcia DeBonis': 'Lorraine', 'Gael García Bernal': 'Victor', 'Giordano Formenti': 'Viticoltore', 'Paolo Arvedi': 'Signor Ricci (Olive Farmer)', 'Dario Conti': 'Cheese Supplier', 'Ivana Lotito': 'Young Girl', 'Luisa Ranieri': 'Isabella', 'Marina Massironi': 'Francesca', 'Lidia Biondi': 'Donatella (as Lydia Biondi)', 'Milena Vukotic': 'Maria', 'Luisa De Santis': 'Angelina', 'Christopher Egan': 'Charlie', 'Vanessa Redgrave': 'Claire', 'Remo Remotti': 'Farm House Lorenzo'}" tt1655420,"{'Michelle Williams': 'Marilyn Monroe', 'Eddie Redmayne': 'Colin Clark', 'Julia Ormond': 'Vivien Leigh', 'Kenneth Branagh': 'Sir Laurence Olivier', 'Pip Torrens': 'Sir Kenneth Clark', 'Geraldine Somerville': 'Lady Jane Clark', 'Michael Kitchen': 'Hugh Perceval', 'Miranda Raison': 'Vanessa', 'Karl Moffatt': 'Jack Cardiff', 'Simon Russell Beale': 'Cotes-Preedy', 'Toby Jones': 'Arthur Jacobs', 'Robert Portal': 'David Orton', 'Philip Jackson': 'Roger Smith', 'Jim Carter': 'Barry', 'Victor McGuire': 'Andy'}" tt1637706,"{'Paul Rudd': 'Ned', 'Nick Sullivan': 'Customer', 'Francesca Papalia': 'Sadie', 'Bob Stephenson': 'Officer Washburn', 'Elizabeth Banks': 'Miranda', 'Peter Hermann': 'Terry', 'Adam Scott': 'Jeremy', 'Kelly Briter': 'Girl with Jeremy', 'Rashida Jones': 'Cindy', 'Zooey Deschanel': 'Natalie', 'Emily Mortimer': 'Liz', 'Steve Coogan': 'Dylan', 'Kathryn Hahn': 'Janet', 'T.J. Miller': 'Billy', 'Shirley Knight': 'Ilene'}" tt1262416,"{'Lucy Hale': 'Sherrie', 'Roger Jackson': 'The Voice (voice)', 'Shenae Grimes-Beech': 'Trudie (as Shenae Grimes)', 'Dane Farwell': 'Ghostface', 'Anna Paquin': 'Rachel', 'Kristen Bell': 'Chloe', 'Aimee Teegarden': 'Jenny Randall', 'Britt Robertson': 'Marnie Cooper (as Brittany Robertson)', 'Neve Campbell': 'Sidney Prescott', 'Alison Brie': 'Rebecca Walters', 'David Arquette': 'Dewey Riley', 'Courteney Cox': 'Gale Weathers-Riley', 'Hayden Panettiere': 'Kirby Reed', 'Emma Roberts': 'Jill Roberts', 'Marielle Jaffe': 'Olivia Morris'}" tt1655442,"{'Jean Dujardin': 'George Valentin', 'Bérénice Bejo': 'Peppy Miller', 'John Goodman': 'Al Zimmer', 'James Cromwell': 'Clifton', 'Penelope Ann Miller': 'Doris', 'Missi Pyle': 'Constance', 'Beth Grant': ""Peppy's Maid"", 'Ed Lauter': ""Peppy's Butler"", 'Joel Murray': 'Policeman Fire', 'Elizabeth Tulloch': 'Norma (as Bitsie Tulloch)', 'Ken Davitian': 'Pawnbroker', 'Malcolm McDowell': 'The Butler', 'Basil Hoffman': 'Auctioneer', 'Bill Fagerbakke': 'Policeman Tuxedo', 'Nina Siemaszko': 'Admiring Woman (as Nina Siemazko)'}" tt1270761,"{'Bruce Gleeson': 'Buggy Driver', 'Eddie Ritchard': 'Housekeeper (as Edwina Ritchard)', 'Garry McDonald': 'Blackwood', 'Bailee Madison': 'Sally', 'Carolyn Shakespeare-Allen': 'Airport Cart Driver', 'Katie Holmes': 'Kim', 'Guy Pearce': 'Alex', 'Jack Thompson': 'Harris', 'Julia Blake': 'Mrs. Underhill', 'David Tocci': 'Workman', 'Lance Drisdale': 'Policeman', 'Nicholas Bell': 'Psychiatrist', 'Libby Gott': 'Nurse', 'James Mackay': 'Librarian', 'Emilia Burns': 'Caterer (as Emelia Burns)'}" tt1504320,"{'Colin Firth': 'King George VI', 'Helena Bonham Carter': 'Queen Elizabeth', 'Derek Jacobi': 'Archbishop Cosmo Lang', 'Robert Portal': 'Equerry', 'Richard Dixon': 'Private Secretary', 'Paul Trussell': 'Chauffeur', 'Adrian Scarborough': 'BBC Radio Announcer', 'Andrew Havill': 'Robert Wood', 'Charles Armstrong': 'BBC Technician', 'Roger Hammond': 'Dr. Blandine Bentham', 'Geoffrey Rush': 'Lionel Logue', 'Calum Gittins': 'Laurie Logue', 'Jennifer Ehle': 'Myrtle Logue', 'Dominic Applewhite': 'Valentine Logue', 'Ben Wimsett': 'Anthony Logue'}" tt0361748,"{'Brad Pitt': 'Lt. Aldo Raine', 'Mélanie Laurent': 'Shosanna', 'Christoph Waltz': 'Col. Hans Landa', 'Eli Roth': 'Sgt. Donny Donowitz', 'Michael Fassbender': 'Lt. Archie Hicox', 'Diane Kruger': 'Bridget von Hammersmark', 'Daniel Brühl': 'Fredrick Zoller', 'Til Schweiger': 'Sgt. Hugo Stiglitz', 'Gedeon Burkhard': 'Cpl. Wilhelm Wicki', 'Jacky Ido': 'Marcel', 'B.J. Novak': 'Pfc. Smithson Utivich', 'Omar Doom': 'Pfc. Omar Ulmer', 'August Diehl': 'Major Hellstrom', 'Denis Ménochet': 'Perrier LaPadite', 'Sylvester Groth': 'Joseph Goebbels'}" tt1311067,"{'Sheri Moon Zombie': 'Deborah Myers', 'Chase Wright Vanek': 'Young Michael (as Chase Vanek)', 'Scout Taylor-Compton': 'Laurie Strode', 'Brad Dourif': 'Sheriff Lee Brackett', 'Caroline Williams': 'Dr. Maple', 'Malcolm McDowell': 'Dr. Samuel Loomis', 'Tyler Mane': 'Michael Myers', 'Dayton Callie': 'Coroner Hooks', 'Richard Brake': 'Gary Scott', 'Octavia Spencer': 'Nurse Daniels', 'Danielle Harris': 'Annie Brackett', 'Richard Riehle': 'Buddy the Night Watchman', 'Margot Kidder': 'Barbara Collier', 'Mary Birdsong': 'Nancy McDonald', 'Brea Grant': 'Mya Rockwell'}" tt0489049,"{'Sam Huntington': 'Eric', 'Chris Marquette': 'Linus', 'Dan Fogler': 'Hutch', 'Jay Baruchel': 'Windows', 'Kristen Bell': 'Zoe', 'David Denman': 'Chaz', 'Christopher McDonald': 'Big Chuck (as Chris McDonald)', 'Charlie B. Brown': 'Myron', 'Isaac Kappy': 'Garfunkel', 'Stephen Pina': 'Simon', 'Seth Rogen': 'Admiral Seasholtz / Alien / Roach', 'Tarek Bishara': 'The Vulcan / Gruvock (as Thom Bishops)', 'Clark Sanchez': 'Bartender', 'Stanley Shunkamolah': 'Thick-Necked Thug', 'Danny Trejo': 'The Chief'}" tt0976222,"{'Aly Michalka': 'Charlotte', 'Vanessa Hudgens': 'Sa5m', 'Gaelan Connell': 'Will', 'Scott Porter': 'Ben Wheatly', 'Ryan Donowho': 'Basher', 'Charlie Saxton': 'Bug', 'Lisa Kudrow': 'Karen', 'Tim Jo': 'Omar', 'Elvy': 'Irene (Cello) (as Elvy Yost)', 'Lisa Chung': 'Kim Lee (Keyboards)', 'J.W. Wright': 'Dylan Dyer (Glory Dogs Guitar) (as J.W. Wright II)', 'Blair Bomar': 'Megan', 'Casey Williams': 'Ms. Wittenberg', 'Maggie Maye': 'Kyra 17-1', 'Jennifer Blair': ""Kyra's Friend""}" tt0375568,"{'Charlize Theron': ""'Our Friends' Narrator (voice)"", 'Freddie Highmore': 'Astro / Toby (voice)', 'Ryan Stiles': 'Mr. Moustachio / Burning Robot (voice)', 'Eugene Levy': 'Orrin (voice)', 'Nicolas Cage': 'Dr. Tenma (voice)', 'Donald Sutherland': 'President Stone (voice)', 'Bill Nighy': 'Dr. Elefun / Robotsky (voice)', 'David Alan Grier': 'Mr. Squirt / Math Cowboy / Boxer Robot (voice)', 'Alan Tudyk': 'Mr. Squeegee / Scrapheap Head / Stinger Two (voice)', 'Newell Alexander': 'General Heckler (voice)', 'Bob Logan': 'Stinger One (voice)', 'Dee Bradley Baker': 'Trashcan (voice)', 'Kristen Bell': 'Cora (voice)', 'Moises Arias': 'Zane (voice)', 'Sterling Beaumon': 'Sludge (voice)'}" tt1315981,"{'Colin Firth': 'George', 'Julianne Moore': 'Charley', 'Nicholas Hoult': 'Kenny', 'Matthew Goode': 'Jim', 'Jon Kortajarena': 'Carlos', 'Paulette Lamori': 'Alva', 'Ryan Simpkins': 'Jennifer Strunk', 'Ginnifer Goodwin': 'Mrs. Strunk', 'Teddy Sears': 'Mr. Strunk', 'Paul Butler': 'Christopher Strunk', 'Aaron Sanders': 'Tom Strunk', 'Aline Weber': 'Lois', 'Keri Lynn Pratt': 'Blonde Secretary', 'Jenna Gavigan': 'Other Secretary #1', 'Alicia Carr': 'Other Secretary #2'}" tt1951264,"{'Jennifer Lawrence': 'Katniss Everdeen', 'Liam Hemsworth': 'Gale Hawthorne', 'Jack Quaid': 'Marvel', 'Taylor St. Clair': 'Ripper', 'Sandra Ellis Lafferty': 'Greasy Sae (as Sandra Lafferty)', 'Woody Harrelson': 'Haymitch Abernathy', 'Josh Hutcherson': 'Peeta Mellark', 'Paula Malcomson': ""Katniss' Mother"", 'Willow Shields': 'Primrose Everdeen', 'Donald Sutherland': 'President Snow', 'Elizabeth Banks': 'Effie Trinket', 'Bruce Bundy': 'Octavia', 'Nelson Ascencio': 'Flavius', 'Lenny Kravitz': 'Cinna', 'Stanley Tucci': 'Caesar Flickerman'}" tt0977855,"{'Naomi Watts': 'Valerie Plame', 'Sonya Davison': 'Chanel Suit', 'Vanessa Chong': 'Tabir Secretary #1', 'Anand Tiwari': 'Hafiz', 'Stephanie Chai': 'Tabir Secretary #2', 'Sean Penn': 'Joe Wilson', 'Ty Burrell': 'Fred', 'Jessica Hecht': 'Sue', 'Norbert Leo Butz': 'Steve', 'Rebecca Rigg': 'Lisa', 'Brooke Smith': 'Diana', 'Tom McCarthy': 'Jeff', 'Ashley Gerasimovich': 'Samantha Wilson', 'Quinn Broggy': 'Trevor Wilson', 'Nicholas Sadler': 'CIA Tour Leader'}" tt1860355,"{""Montrail 'Money' Brown"": 'Himself', 'O.C. Brown': 'Himself', 'Bill Courtney': 'Himself', 'Chavis Daniels': 'Himself', 'Jeff Germany': 'Himself'}" tt1509767,"{'Matthew Macfadyen': 'Athos', 'Milla Jovovich': 'Milady de Winter', 'Helen George': 'Blonde', 'Christian Oliver': 'Venetian Nobleman', 'Luke Evans': 'Aramis', 'Ray Stevenson': 'Porthos', 'Til Schweiger': 'Cagliostro', 'Markus Brandl': 'Sergeant Venetian Guard', 'Orlando Bloom': 'Duke of Buckingham', 'Logan Lerman': ""D'Artagnan"", 'Dexter Fletcher': ""D'Artagnan's Father"", 'Jane Perry': ""D'Artagnan's Mother"", 'Mads Mikkelsen': 'Rochefort', 'Andy Gathergood': 'Drunk', 'Susanne Wolff': 'Cougar'}" tt1007029,"{'Meryl Streep': 'Margaret Thatcher', 'Jim Broadbent': 'Denis Thatcher', 'Susan Brown': 'June - Housekeeper', 'Alice da Cunha': 'Cleaner', 'Phoebe Waller-Bridge': ""Susie - Margaret's Secretary"", 'Iain Glen': 'Alfred Roberts', 'Alexandra Roach': 'Young Margaret Thatcher', 'Victoria Bewick': 'Muriel Roberts', 'Emma Dewhurst': 'Beatrice Roberts', 'Olivia Colman': 'Carol Thatcher', 'Harry Lloyd': 'Young Denis Thatcher', 'Sylvestra Le Touzel': 'Hostess 1949', 'Michael Culkin': 'Host 1949', 'Stephanie Jacob': 'Female Guest 1949', 'Robert Portal': 'Grey Suited Guest - 1949'}" tt1093357,"{'Emile Hirsch': 'Sean', 'Olivia Thirlby': 'Natalie', 'Max Minghella': 'Ben', 'Rachael Taylor': 'Anne', 'Joel Kinnaman': 'Skyler', 'Veronika Vernadskaya': 'Vika', 'Dato Bakhtadze': 'Sergei', 'Yuriy Kutsenko': 'Matvei (as Gosha Kutsenko)', 'Nikolay Efremov': 'Sasha (as Nikolai Efremov)', 'Georgiy Gromov': 'Boris (as Georgy Gromov)', 'Artur Smolyaninov': 'Yuri (as Arthur Smoljaninov)', 'Anna Rudakova': 'Tess (as Anna Roudakova)', 'Pyotr Fyodorov': 'Anton Batkin (as Petr Fedorov)', 'Ivan Gromov': 'Bartender No. 1', 'Aleksandr Chernykh': 'Bartender No. 2 (as Alexsandr Chernyh)'}" tt1045658,"{'Bradley Cooper': 'Pat', 'Jennifer Lawrence': 'Tiffany', 'Robert De Niro': 'Pat Sr.', 'Jacki Weaver': 'Dolores', 'Chris Tucker': 'Danny', 'Anupam Kher': 'Dr. Cliff Patel', 'John Ortiz': 'Ronnie', 'Shea Whigham': 'Jake', 'Julia Stiles': 'Veronica', 'Paul Herman': 'Randy', 'Dash Mihok': 'Officer Keogh', 'Matthew Russell': ""Ricky D'Angelo"", 'Cheryl Williams': ""Tiffany's Mother"", 'Patrick McDade': ""Tiffany's Father (as Patrick Mcdade)"", 'Brea Bee': 'Nikki'}" tt1673434,"{'Kristen Stewart': 'Bella Swan', 'Robert Pattinson': 'Edward Cullen', 'Taylor Lautner': 'Jacob Black', 'Peter Facinelli': 'Dr. Carlisle Cullen', 'Elizabeth Reaser': 'Esme Cullen', 'Ashley Greene': 'Alice Cullen', 'Jackson Rathbone': 'Jasper Hale', 'Kellan Lutz': 'Emmett Cullen', 'Nikki Reed': 'Rosalie Hale', 'Billy Burke': 'Charlie Swan', 'Chaske Spencer': 'Sam Uley', 'Mackenzie Foy': 'Renesmee', 'Maggie Grace': 'Irina', 'Jamie Campbell Bower': 'Caius', 'Christopher Heyerdahl': 'Marcus'}" tt1321860,"{'Mel Gibson': 'Walter Black', 'Cherry Jones': 'Vice President', 'Jodie Foster': 'Meredith Black', 'Anton Yelchin': 'Porter Black', 'Riley Thomas Stewart': 'Henry Black', 'Zachary Booth': 'Jared', 'Jennifer Lawrence': 'Norah', 'Jeff Corbett': 'Volunteer Dad', 'Baylen Thomas': 'Skeptical Man', 'Sam Breslin Wright': 'Man', 'Kelly Coffield Park': ""Norah's Mom"", 'Michael Rivera': 'Hector', 'Kris Arnold': 'Waiter', 'Elizabeth Kaledin': 'Reporter', 'Matt Lauer': 'Matt Lauer'}" tt1517489,"{'Jessica Alba': 'Marissa Wilson', 'Joel McHale': 'Wilbur Wilson', 'Rowan Blanchard': 'Rebecca Wilson', 'Mason Cook': 'Cecil Wilson', 'Jeremy Piven': ""Danger D'Amo / Tick Tock / Time Keeper"", 'Alexa PenaVega': 'Carmen Cortez (as Alexa Vega)', 'Daryl Sabara': 'Juni Cortez', 'Danny Trejo': 'Uncle Machete', 'Belle Solorzano': 'Spy Baby', 'Genny Solorzano': 'Spy Baby', 'Ricky Gervais': 'Argonaut (voice)', 'Elmo': 'Argonaut', 'Jett Good': 'Young Danger', 'Chuck Cureau': 'News Anchor', 'Albert Im': 'Head Scientist'}" tt0945513,"{'Jake Gyllenhaal': 'Colter Stevens', 'Michelle Monaghan': 'Christina Warren', 'Vera Farmiga': 'Colleen Goodwin', 'Jeffrey Wright': 'Dr. Rutledge', 'Michael Arden': 'Derek Frost', 'Cas Anvar': 'Hazmi', 'Russell Peters': 'Max Denoff', 'Brent Skagford': 'George Troxel', 'Craig Thomas': 'Gold Watch Executive', 'Gordon Masten': 'Conductor', 'Susan Bain': 'Nurse', 'Paula Jean Hixson': 'Coffee Mug Lady', 'Lincoln Ward': 'Minister Sudoku', 'Kyle Gatehouse': 'College Student', 'Albert Kwan': 'Soda Can Guy'}" tt1502404,"{'Nicolas Cage': 'Milton', 'Amber Heard': 'Piper', 'William Fichtner': 'The Accountant', 'Billy Burke': 'Jonah King', 'David Morse': 'Webster', 'Todd Farmer': 'Frank', 'Christa Campbell': 'Mona', 'Charlotte Ross': 'Candy', 'Tom Atkins': 'Cap', 'Jack McGee': 'Fat Lou', 'Katy Mixon': 'Norma Jean', 'Wanetah Walmsley': 'American Indian Mother', 'Robin McGee': 'Guy with Camera Phone', 'Fabian C. Moreno': 'Latino Busboy (as Fabian Moreno)', 'Edrick Browne': 'Rookie'}" tt1682181,"{""Ja'Meya Jackson"": 'Herself', 'Kelby Johnson': 'Herself', 'Lona Johnson': 'Herself', 'Bob Johnson': 'Himself', 'Alex Libby': 'Himself', 'Jackie Libby': 'Herself', 'Philip Libby': 'Himself', 'Maya Libby': 'Herself', 'Jada Libby': 'Herself', 'Ethan Libby': 'Himself', 'Logan Libby': 'Himself', 'Kim Lockwood': 'Herself', 'David Long': 'Himself', 'Tina Long': 'Herself', 'Teryn Long': 'Herself'}" tt1586265,"{'Cameron Diaz': 'Jules', 'Jennifer Lopez': 'Holly', 'Elizabeth Banks': 'Wendy', 'Chace Crawford': 'Marco', 'Brooklyn Decker': 'Skyler', 'Ben Falcone': 'Gary', 'Anna Kendrick': 'Rosie', 'Matthew Morrison': 'Evan', 'Dennis Quaid': 'Ramsey', 'Chris Rock': 'Vic', 'Rodrigo Santoro': 'Alex', 'Joe Manganiello': 'Davis', 'Rob Huebel': 'Gabe', 'Thomas Lennon': 'Craig (as Tom Lennon)', 'Amir Talai': 'Patel'}" tt0431021,"{'Jeffrey Dean Morgan': 'Clyde', 'Kyra Sedgwick': 'Stephanie', 'Natasha Calis': 'Em', 'Madison Davenport': 'Hannah', 'Matisyahu': 'Tzadok', 'Grant Show': 'Brett', 'Rob LaBelle': 'Russell', 'Nana Gbewonyo': 'Darius', 'Anna Hagan': 'Eleanor', 'Brenda Crichlow': 'Miss Shandy (as Brenda M. Crichlow)', 'Jay Brazeau': 'Professor McMannis', 'Iris Quinn': 'Doctor', 'Graeme Duffy': 'Lab Tech', 'David Hovan': 'Adan', 'Chris Shields': 'Assistant Coach'}" tt1764651,"{'Sylvester Stallone': 'Barney Ross', 'Jason Statham': 'Lee Christmas', 'Jet Li': 'Yin Yang', 'Dolph Lundgren': 'Gunner Jensen', 'Chuck Norris': 'Booker', 'Jean-Claude Van Damme': 'Vilain', 'Bruce Willis': 'Church', 'Arnold Schwarzenegger': 'Trench', 'Terry Crews': 'Hale Caesar', 'Randy Couture': 'Toll Road', 'Liam Hemsworth': 'Billy The Kid', 'Scott Adkins': 'Hector', 'Nan Yu': 'Maggie', 'Amanda Ooms': 'Pilar', 'Charisma Carpenter': 'Lacy'}" tt1259521,"{'Kristen Connolly': 'Dana', 'Chris Hemsworth': 'Curt', 'Anna Hutchison': 'Jules', 'Fran Kranz': 'Marty', 'Jesse Williams': 'Holden', 'Richard Jenkins': 'Sitterson', 'Bradley Whitford': 'Hadley', 'Brian White': 'Truman', 'Amy Acker': 'Lin', 'Tim DeZarn': 'Mordecai', 'Tom Lenk': 'Ronald The Intern', 'Dan Payne': 'Mathew Buckner', 'Jodelle Ferland': 'Patience Buckner', 'Dan Shea': 'Father Buckner', 'Maya Massar': 'Mother Buckner'}" tt1800741,"{'Cleopatra Coleman': 'Penelope', 'Ryan Guzman': 'Sean', 'Misha Gabriel Hamilton': 'Eddy (as Misha Gabriel)', ""Michael 'Xeno' Langebeck"": 'Mercury', 'Stephen Boss': ""Jason (as Stephen 'tWitch' Boss)"", 'Claudio Pinto': 'Francisco', 'Nicole Dabeau': 'Newscaster', 'Chris Charles Herbert': 'Lamborghini Driver (as Chris Charles)', 'Katie Peterson': 'People by the Ocean', 'Alejandro Posada': 'People by the Ocean', 'Marc Macaulay': 'Uniformed Cop', 'Tommy Dewey': 'Trip', 'Kathryn McCormick': 'Emily', 'Mario Ernesto Sánchez': 'Ricky', 'Sabina V. Gomez': ""Ricky's Mother""}" tt1212450,"{'Shia LaBeouf': 'Jack Bondurant', 'Tom Hardy': 'Forrest Bondurant', 'Jason Clarke': 'Howard Bondurant', 'Guy Pearce': 'Charley Rakes', 'Jessica Chastain': 'Maggie Beaufort', 'Mia Wasikowska': 'Bertha Minnix', 'Dane DeHaan': 'Cricket Pate', 'Chris McGarry': 'Danny', 'Tim Tolin': 'Mason Wardell', 'Gary Oldman': 'Floyd Banner', 'Lew Temple': 'Deputy Henry Abshire', 'Marcus Hester': 'Deputy Jeff Richards', 'Bill Camp': 'Sheriff Hodges', 'Alex Van': 'Tizwell Minnix', 'Noah Taylor': 'Gummy Walsh'}" tt1764234,"{'Brad Pitt': 'Jackie', 'Scoot McNairy': 'Frankie', 'Ben Mendelsohn': 'Russell', 'James Gandolfini': 'Mickey', 'Richard Jenkins': 'Driver', 'Vincent Curatola': 'Johnny Amato', 'Ray Liotta': 'Markie Trattman', 'Trevor Long': 'Steve Caprio', 'Max Casella': 'Barry Caprio', 'Sam Shepard': 'Dillon', 'Slaine': 'Kenny Gill', 'Linara Washington': 'Hooker', 'Ross Brodar': 'Poker Guy', 'Wade Allen': 'Business Suit Agent', 'Christopher Berry': 'Cab Driver Agent'}" tt1599348,"{'Denzel Washington': 'Tobin Frost', 'Ryan Reynolds': 'Matt Weston', 'Vera Farmiga': 'Catherine Linklater', 'Brendan Gleeson': 'David Barlow', 'Sam Shepard': 'Harlan Whitford', 'Rubén Blades': 'Carlos Villar', 'Nora Arnezeder': 'Ana Moreau', 'Robert Patrick': 'Daniel Kiefer', 'Liam Cunningham': 'Alec Wade', 'Joel Kinnaman': 'Keller', 'Fares Fares': 'Vargas', 'Jenna Dover': 'CIA Analyst', 'Stephen Rider': 'CIA Analyst', 'Daniel Fox': 'CIA Analyst', 'Tracie Thoms': 'CIA Analyst'}" tt1568338,"{'Sam Worthington': 'Nick Cassidy', 'Mandy Gonzalez': 'Manager', 'William Sadler': 'Valet', 'Barbara Marineau': 'Screaming Woman', 'J. Smith-Cameron': 'Psychiatrist', 'Anthony Mackie': 'Mike Ackerman', 'Patrick Collins': 'Father Leo', 'Jamie Bell': 'Joey Cassidy', 'Genesis Rodriguez': 'Angie', 'Afton Williamson': 'Janice Ackerman', 'Robert Clohessy': 'Prison Guard', 'Joe Lisi': 'Desk Sergeant', 'Candice McKoy': 'Cop - Bullhorn', 'Edward Burns': 'Jack Dougherty (as Ed Burns)', 'Johnny Solo': 'Cop - Room (as John Solo)'}" tt1838544,"{'Amanda Seyfried': 'Jill', 'Daniel Sunjata': 'Powers', 'Jennifer Carpenter': 'Sharon Ames', 'Sebastian Stan': 'Billy', 'Wes Bentley': 'Peter Hood', 'Nick Searcy': 'Mr. Miller', 'Socratis Otto': 'Jim', 'Emily Wickersham': 'Molly', 'Joel David Moore': 'Nick Massey', 'Katherine Moennig': 'Erica Lonsdale', 'Michael Paré': 'Lt. Ray Bozeman', 'Sam Upton': 'Officer McKay', 'Ted Rooney': 'Henry Massey', 'Erin Carufel': 'Officer Ash', 'Amy Argyle': 'Tanya Muslin (as Amy Lawhorn)'}" tt1343727,"{'Karl Urban': 'Judge Dredd', 'Rachel Wood': 'Control Operator 1', 'Andile Mngadi': 'Passenger', 'Porteus Xandau': 'Driver', 'Jason Cope': 'Zwirner', 'Emma Breschi': 'Hostage', 'Olivia Thirlby': 'Anderson', 'Rakie Ayola': 'Chief Judge', 'Lena Headey': 'Ma-Ma', 'Tamer Burjaq': 'Ma-Ma Bodyguard', 'Warrick Grier': 'Caleb', 'Wood Harris': 'Kay', 'Shoki Mokgapa': 'Woman with Child', 'Yohan Chun': 'Girl in Window', 'Eden Knowles': 'Girl in Window'}" tt1920849,"{'Kirsten Dunst': 'Regan', 'Rebel Wilson': 'Becky', 'Lizzy Caplan': 'Gena', 'Paul Corning': 'Jack Johnson Guy (as Paul Corning Jr.)', 'Isla Fisher': 'Katie', 'Andrew Rannells': 'Manny', 'Anna Rose Hopkins': 'Club Monaco Customer', 'Sue Jean Kim': 'Wedding Planner', 'Horatio Sanz': 'Barely Attractive Guy', 'Hayes MacArthur': 'Dale', 'Kyle Bornheimer': 'Joe', 'James Marsden': 'Trevor', 'Ann Dowd': 'Victoria', 'Adam Scott': 'Clyde', 'Ella Rae Peck': 'Stefanie'}" tt0795461,"{'Ashley Tisdale': 'Jody', 'Simon Rex': 'Dan', 'Gracie Whitton': 'Kathy', 'Ava Kolker': 'Lily', 'Dylan Morris': 'Aidan', 'Ryan Morris': 'Aidan', 'Lidia Porto': 'Maria', 'Darrell Hammond': 'Dr. Hall', 'Snoop Dogg': ""Ja' Marcus"", 'Mac Miller': ""D'Andre"", 'Erica Ash': 'Kendra Brooks', 'J.P. Manoux': 'Pierre', 'Molly Shannon': 'Heather Daltry', 'Josh Robert Thompson': 'Narrator (voice)', 'Marisa Saks': 'Amy'}" tt1327773,"{'Forest Whitaker': 'Cecil Gaines', 'David Banner': 'Earl Gaines', 'Michael Rainey Jr.': 'Cecil Gaines (8)', 'LaJessie Smith': 'Abraham', 'Mariah Carey': 'Hattie Pearl', 'Alex Pettyfer': 'Thomas Westfall', 'Vanessa Redgrave': 'Annabeth Westfall', 'Aml Ameen': 'Cecil Gaines (15)', 'Clarence Williams III': 'Maynard', 'John P. Fertitta': 'Mr. Jenkins (as John Fertitta)', 'Jim Gleason': 'R.D. Warner', 'Oprah Winfrey': 'Gloria Gaines', 'Isaac White': 'Charlie Gaines (10)', 'David Oyelowo': 'Louis Gaines', 'Joe Chrest': 'White Usher'}" tt2334649,"{'Michael B. Jordan': 'Oscar Grant', 'Melonie Diaz': 'Sophina', 'Octavia Spencer': 'Wanda', 'Kevin Durand': 'Officer Caruso', 'Chad Michael Murray': 'Officer Ingram', ""Ahna O'Reilly"": 'Katie', 'Ariana Neal': 'Tatiana', 'Keenan Coogler': 'Cato', 'Trestin George': 'Brandon', 'Joey Oglesby': 'Cale', 'Michael James': 'Carlos', 'Marjorie Crump-Shears': 'Grandma Bonnie (as Marjorie Shears)', 'Destiny Ekwueme': 'Chantay', 'Bianca Rodriguez III': 'Vanessa (as Bianca Rodriguez)', 'Julian Keyes': 'Kris'}" tt0075148,"{'Sylvester Stallone': 'Rocky', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Carl Weathers': 'Apollo', 'Burgess Meredith': 'Mickey', 'Thayer David': 'Jergens', 'Joe Spinell': 'Gazzo', 'Jimmy Gambina': 'Mike', 'Bill Baldwin': 'Fight Announcer', 'Al Silvani': 'Cut Man (as Al Salvani)', 'George Memmoli': 'Ice Rink Attendant', 'Jodi Letizia': 'Marie', 'Diana Lewis': 'TV Commentator', ""George O'Hanlon"": 'TV Commentator', 'Larry Carroll': 'TV Interviewer'}" tt1245526,"{'Bruce Willis': 'Frank Moses', 'Mary-Louise Parker': 'Sarah Ross', 'Heidi von Palleske': 'Woman Neighbor', 'Jefferson Brown': 'Fred', 'Karl Urban': 'William Cooper', 'Chris Owens': 'Hanged Man', 'Rebecca Pidgeon': 'Cynthia Wilkes', 'Morgan Freeman': 'Joe Matheson', 'Jaqueline Fleming': 'Marna', 'Randy Wade Kelley': 'Paramedic', 'Jason Giuliano': 'Endercott', 'Alec Rayme': 'Cop at Intersection', 'Lawrence Turner': 'Retirement Home Assassin', 'Emily Kuroda': 'Mrs. Chan', 'Joe Chrest': 'Retirement Home Detective'}" tt0102753,"{'Laura Dern': 'Rose', 'Robert Duvall': 'Daddy', 'Diane Ladd': 'Mother', 'Lukas Haas': 'Buddy', 'John Heard': 'Willcox Hillyer', 'Kevin Conway': 'Dr. Martinson', 'Robert John Burke': 'Dave Wilkie (as Robert Burke)', 'Lisa Jakub': 'Doll', 'Evan Lockwood': 'Waski', 'Taylor Sutherland': 'Billy (as Matt Sutherland)', 'D. Anthony Pender': 'Foster', 'David E. Scarborough': 'Horton', 'Robin Robertson': 'Young Salesman (as Robin Dale Robertson)', 'General Fermon Judd Jr.': 'Shadrack', 'Richard K. Olsen': 'Chief of Police'}" tt0053604,"{'Jack Lemmon': 'C.C. Baxter', 'Shirley MacLaine': 'Fran Kubelik', 'Fred MacMurray': 'Jeff D. Sheldrake', 'Ray Walston': 'Joe Dobisch', 'Jack Kruschen': 'Dr. Dreyfuss', 'David Lewis': 'Al Kirkeby', 'Hope Holiday': 'Mrs. Margie MacDougall', 'Joan Shawlee': 'Sylvia', 'Naomi Stevens': 'Mrs. Mildred Dreyfuss', 'Johnny Seven': 'Karl Matuschka', 'Joyce Jameson': 'The Blonde', 'Willard Waterman': 'Mr. Vanderhoff', 'David White': 'Mr. Eichelberger', 'Edie Adams': 'Miss Olsen'}" tt0367085,"{'Tom Arnold': 'Mr. Hunkee', 'Kevin Hart': 'Nashawn', 'Method Man': 'Muggsy', 'Snoop Dogg': 'Captain Mack', 'K.D. Aubert': 'Giselle', 'Godfrey': 'Gaeman', 'Brian Hooks': 'DJ', 'D.L. Hughley': 'Johnny', 'Arielle Kebbel': 'Heather Hunkee', 'Loni Love': 'Shaniece', ""Mo'Nique"": 'Jamiqua', 'Ryan Pinkston': 'Billy Hunkee', 'Missi Pyle': 'Barbara', 'Sommore': 'Cherry', 'Sofía Vergara': 'Blanca (as Sofia Vergara)'}" tt0067411,"{'Warren Beatty': 'John McCabe', 'Julie Christie': 'Constance Miller', 'Rene Auberjonois': 'Sheehan', 'William Devane': 'The Lawyer', 'John Schuck': 'Smalley', 'Corey Fischer': 'Mr. Elliott', 'Bert Remsen': 'Bart Coyle', 'Shelley Duvall': 'Ida Coyle', 'Keith Carradine': 'Cowboy', 'Michael Murphy': 'Sears', 'Antony Holland': 'Hollander', 'Hugh Millais': 'Butler', 'Manfred Schulz': 'Kid', 'Jace Van Der Veen': 'Breed (as Jace Vander Veen)', 'Jackie Crossland': 'Lily'}" tt0478197,"{'Leonard Cohen': 'Himself', 'Martha Wainwright': 'Herself', 'Beth Orton': 'Herself', 'Jarvis Cocker': 'Himself', 'Rufus Wainwright': 'Himself', 'Nick Cave': 'Himself', 'Perla Batalla': 'Herself', 'Julie Christensen': 'Herself', 'Anohni': 'Himself (as Antony)', 'Linda Thompson': 'Herself', 'Teddy Thompson': 'Himself', 'Kate McGarrigle': 'Herself', 'Anna McGarrigle': 'Herself', 'The Handsome Family': 'Themselves', 'Hal Willner': 'Himself - Music Producer'}" tt0117108,"{'Michael Keaton': 'Doug Kinney', 'Andie MacDowell': 'Laura Kinney', 'Zack Duhame': 'Zack Kinney', 'Katie Schlossberg': 'Jennifer Kinney', 'Harris Yulin': 'Dr. Leeds', 'Richard Masur': 'Del King', 'Eugene Levy': 'Vic', 'Ann Cusack': 'Noreen', 'John de Lancie': 'Ted', 'Judith Kahan': 'Franny', 'Brian Doyle-Murray': 'Walt', 'Obba Babatundé': 'Paul', 'Julie Bowen': 'Robin', 'Dawn Maxey': 'Beth', 'Kari Coleman': 'Patti'}" tt0226009,"{'Matt Frewer': 'Al Fisher', 'Mary Gross': 'Patti Fisher', 'Kevin Mundy': 'Adam Fisher', 'Reagan Pasternak': 'Amber', 'Aly Purrott-Armstrong': 'Gynger (as Alycia Purrott)', 'Scott McCord': 'Chuck Clopperman', 'Mo Gaffney': 'Lydia Stone', 'John Anderson': 'Reporter #3', 'James Binkley': 'Crazed Cell Mate', 'Joe Bostick': 'Salacious Juror', 'Melanie Boyko': 'Dancer #1', 'Katherine Caldwell': 'Dancer #2', 'John Henry Canavan': 'Johnny', 'Vanessa Cobham': 'Dancer #3', 'Tiffany Deriveau': 'Penny'}" tt1341167,"{'Riz Ahmed': 'Omar', 'Arsher Ali': 'Hassan', 'Nigel Lindsay': 'Barry', 'Kayvan Novak': 'Waj', 'Adeel Akhtar': 'Faisal', 'Julia Davis': 'Alice', 'Craig Parkinson': 'Matt', 'Preeya Kalidas': 'Sofia', 'Wasim Zakir': 'Ahmed', 'Mohamad Akil': 'Mahmood (as Mohammad Aqil)', 'Karl Seth': 'Uncle Imran', 'Waleed Elgadi': 'Khalid (as Willliam El-Gardi)', 'Alex Macqueen': 'Malcolm Storge MP (as Alex MacQueen)', 'Shameem Ahmad': 'Chairwoman', 'Jonathan Maitland': 'Newsreader (as Jonny Maitland)'}" tt0348333,"{'Ryan Reynolds': 'Monty', 'Anna Faris': 'Serena', 'Justin Long': 'Dean', 'David Koechner': 'Dan', 'Luis Guzmán': 'Raddimus', 'Chi McBride': 'Bishop', 'John Francis Daley': 'Mitch', 'Kaitlin Doubleday': 'Amy', 'Rob Benedict': 'Calvin (as Robert Patrick Benedict)', 'Alanna Ubach': 'Naomi', 'Vanessa Lengies': 'Natasha', 'Max Kasch': 'T-Dog', 'Andy Milonakis': 'Nick', 'Dane Cook': 'Floyd', 'Jordan Ladd': 'Danielle'}" tt0338095,"{'Cécile de France': 'Marie (as Cécile De France)', 'Maïwenn': 'Alexia', 'Philippe Nahon': 'Le tueur', 'Franck Khalfoun': 'Jimmy', 'Andrei Finti': 'Père Alex', 'Oana Pellea': 'Mère Alex', 'Marco Claudiu Pascu': 'Tom', 'Jean-Claude de Goros': 'Capitaine Gendarmerie', 'Bogdan Uritescu': 'Gendarme', 'Gabriel Spahiu': 'Homme voiture'}" tt0344510,"{'Audrey Tautou': 'Mathilde', 'Gaspard Ulliel': 'Manech', 'Dominique Pinon': 'Sylvain', 'Chantal Neuwirth': 'Bénédicte', 'André Dussollier': 'Pierre-Marie Rouvières', 'Ticky Holgado': 'Germain Pire', 'Marion Cotillard': 'Tina Lombardi', 'Dominique Bettenfeld': 'Ange Bassignano', 'Jodie Foster': 'Elodie Gordes', 'Jean-Pierre Darroussin': 'Benjamin Gordes (as Jean Pierre Darroussin)', 'Clovis Cornillac': 'Benoît Notre-Dame', 'Jean-Pierre Becker': 'Esperanza (as Jean Pierre Becker)', 'Denis Lavant': 'Six-Soux', 'Jérôme Kircher': 'Bastoche', 'Albert Dupontel': 'Célestin Poux'}" tt1226236,"{'Tilda Swinton': 'Emma Recchi', 'Flavio Parenti': 'Edoardo Recchi Junior', 'Edoardo Gabbriellini': 'Antonio Biscaglia', 'Alba Rohrwacher': 'Elisabetta Recchi', 'Pippo Delbono': 'Tancredi Recchi', 'Maria Paiato': 'Ida Marangon', 'Diane Fleri': 'Eva Ugolini', 'Waris Ahluwalia': 'Shai Kubelkian', 'Mattia Zaccaro': 'Gianluca Recchi', 'Ginevra Notarbartolo': 'Rachele Piermarini', 'Giangaleazzo Visconti di Modrone': 'Andrea Tavecchia', 'Gabriele Ferzetti': 'Edoardo Recchi Senior', 'Marisa Berenson': 'Allegra Rori Recchi', 'Liliana Flores': 'Liliana Macedo', 'Jimmi Carlos Zuniga Macias': 'Joso Macedo'}" tt0048356,"{'Ernest Borgnine': 'Marty Piletti', 'Betsy Blair': 'Clara Snyder', 'Esther Minciotti': 'Mrs. Teresa Piletti', 'Augusta Ciolli': 'Aunt Catherine', 'Joe Mantell': 'Angie', 'Karen Steele': 'Virginia', 'Jerry Paris': 'Tommy'}" tt0420757,"{'Ben Affleck': 'Jack Giamoro', 'Rebecca Romijn': 'Nina Giamoro', 'John Cleese': 'Dr. Primkin', 'Sam Ball': 'Jimmy Dooley (as Samuel Ball)', 'Mike Binder': 'Morty', 'Erica Cerra': 'Sela', 'Gina Gershon': 'Arlene Kreiner', 'Adam Goldberg': 'Phil Balow', 'Howard Hesseman': 'Ben Giamoro', 'Bai Ling': 'Barbi Ling', ""Jerry O'Connell"": 'David Lilly', 'Kal Penn': 'Alan Fineberg', 'Amber Valletta': 'Brynn Lilly', 'Damien Dante Wayans': 'Lucky Reynolds', 'Laura Soltis': 'Barbara Giamoro'}" tt0070355,"{'Clint Eastwood': 'Harry Callahan', 'Hal Holbrook': 'Lt. Briggs', 'Mitchell Ryan': 'Charlie McCoy', 'David Soul': 'Davis', 'Tim Matheson': 'Sweet', 'Kip Niven': 'Astrachan', 'Robert Urich': 'Grimes', 'Felton Perry': 'Early Smith', 'Maurice Argent': 'Nat Weinstein', 'Margaret Avery': 'Prostitute', 'Richard Devon': 'Ricca', 'Tony Giorgio': 'Palancio', 'Jack Kosslyn': 'Walter', 'Bob March': 'Estabrook', 'Bob McClurg': 'Cab Driver'}" tt0892782,"{'Reese Witherspoon': 'Susan Murphy / Ginormica (voice)', 'Seth Rogen': 'B.O.B. (voice)', 'Hugh Laurie': 'Dr. Cockroach Ph.D. (voice)', 'Will Arnett': 'The Missing Link (voice)', 'Kiefer Sutherland': 'General W.R. Monger (voice)', 'Rainn Wilson': 'Gallaxhar (voice)', 'Stephen Colbert': 'President Hathaway (voice)', 'Paul Rudd': 'Derek Dietl (voice)', 'Julie White': 'Wendy Murphy (voice)', 'Jeffrey Tambor': 'Carl Murphy (voice)', 'Amy Poehler': 'Computer (voice)', 'Ed Helms': 'News Reporter (voice)', 'Renée Zellweger': 'Katie (voice)', 'John Krasinski': 'Cuthbert (voice)', 'Sean Bishop': 'Private Bullhorn / Helicopter Pilot / Advisor Ortega (voice)'}" tt0064665,"{'Dustin Hoffman': 'Ratso', 'Jon Voight': 'Joe Buck', 'Sylvia Miles': 'Cass', 'John McGiver': ""Mr. O'Daniel"", 'Brenda Vaccaro': 'Shirley', 'Barnard Hughes': 'Towny', 'Ruth White': 'Sally Buck - Texas', 'Jennifer Salt': 'Annie - Texas', 'Gilman Rankin': 'Woodsy Niles - Texas (as Gil Rankin)', 'Gary Owens': 'Little Joe - Texas', 'T. Tom Marlow': 'Little Joe - Texas', 'George Eppersen': 'Ralph - Texas', 'Al Scott': 'Cafeteria Manager - Texas', 'Linda Davis': 'Mother on the Bus - Texas', 'J.T. Masters': 'Old Cow-Hand - Texas'}" tt0795426,"{'Stephen Baldwin': 'Lefty', 'K Callan': 'Eva', 'Kirk B.R. Woller': 'Kirk', 'Mary Thornton': 'Mary', 'Mitchell Jarvis': 'Mitch', 'Richard Fancy': 'Pastor Mark', 'Victoria Jackson': 'Margaret', 'Richard Riehle': 'Tommy', 'Diane Delano': 'Trudy', 'Wren T. Brown': 'Dale', 'Dominic Scott Kay': 'Jacob', 'Loren Lester': 'Gordon', 'Patricia Rae': 'Samantha', 'Nikki Boyer': ""Megan, Jacob's Teacher"", 'Angie Bolling': 'Caroling Shut-In'}" tt0095953,"{'Dustin Hoffman': 'Raymond Babbitt', 'Tom Cruise': 'Charlie Babbitt', 'Valeria Golino': 'Susanna', 'Gerald R. Molen': 'Dr. Bruner (as Jerry Molen)', 'Jack Murdock': 'John Mooney', 'Michael D. Roberts': 'Vern', 'Ralph Seymour': 'Lenny', 'Lucinda Jenney': 'Iris', 'Bonnie Hunt': 'Sally Dibbs', 'Kim Robillard': 'Small Town Doctor', 'Beth Grant': 'Mother at Farm House', 'Dolan Dougherty': 'Farm House Kid', 'Marshall Dougherty': 'Farm House Kid', 'Patrick Dougherty': 'Farm House Kid', 'John-Michael Dougherty': 'Farm House Kid'}" tt0935075,"{'Nicole Kidman': 'Becca', 'Aaron Eckhart': 'Howie', 'Dianne Wiest': 'Nat', 'Miles Teller': 'Jason', 'Tammy Blanchard': 'Izzy', 'Sandra Oh': 'Gabby', 'Giancarlo Esposito': 'Auggie', 'Jon Tenney': 'Rick', 'Stephen Mailer': 'Kevin', 'Mike Doyle': 'Craig', 'Roberta Wallach': 'Rhonda', 'Patricia Kalember': 'Peg', 'Ali Marsh': 'Donna', 'Yetta Gottesman': 'Ana', 'Colin Mitchell': 'Sam'}" tt0307351,"{'Gina Gershon': 'Jacki', 'Drea de Matteo': 'Tracy', 'Lori Petty': 'Faith', 'Shelly Cole': 'Sally', 'Marc Blucas': 'Animal', 'Ivan Martin': 'Nick', 'Eddie Driscoll': 'Chuck', 'Ashley Eckstein': 'Punk Rock Girl (as Ashley Drane)', 'Shakara Ledard': 'Jessica', 'Texas Terri': 'Herself', 'Sandra Seacat': ""Jacki's Mom"", 'Nancy M. Pimental': 'Natalie (as Nancy Pimental)', 'Greg Rikaart': 'Scott', 'Francois Harold': 'Johnny', 'Joannah Portman': 'Sorority Girl #1'}" tt1262981,"{'Robin Williams': 'Lance', 'Daryl Sabara': 'Kyle Clayton', 'Morgan Murphy': 'Morgan', 'Naomi Glick': 'Ginger', 'Dan Spencer': 'Dan Spencer', 'Geoff Pierson': 'Principal Anderson', 'Henry Simmons': 'Mike Lane', 'Zach Sanchez-Vitale': 'Peter (as Zach Sanchez)', 'Alexie Gilmore': 'Claire Reed', 'Evan Martin': 'Andrew', 'Ellyn Jameson': 'Jennifer (as Ellie Jameson)', 'Michael Thomas Moore': 'Chris (as Michael Moore)', 'Ray Buckley': 'Metal Kid (as Alles Mist)', 'Jermaine Williams': 'Jason', 'Lorraine Nicholson': 'Heather'}" tt1001562,"{'Larry the Cable Guy': 'Deputy Larry Stalder', 'Richard Bull': 'Sheriff Smoot', 'J. David Moeller': 'Elmer', 'Will Clinger': 'Bo', 'Omar Dykes': 'Gus (as Omar Kent Dykes)', 'Reno Collier': 'Tater', 'Jenny McCarthy': 'Connie', 'Yaphet Kotto': 'Ricardo Bodi', 'Ivana Milicevic': 'Madeleine', 'Dan Waller': 'Agent Orange / MIB #1', 'Rick LeFevour': 'MIB #2 (as Rick Lefevour)', 'Joseph Luis Caballero': 'MIB #3 (as Joe Caballero)', 'Sean Bridgers': 'Norm', 'Gerry Bednob': 'Omar', 'Claudia Michelle Wallace': 'TSA Woman'}" tt0245562,"{'Nicolas Cage': 'Joe Enders', 'Adam Beach': 'Ben Yahzee', 'Peter Stormare': 'Hjelmstad', 'Noah Emmerich': 'Chick', 'Mark Ruffalo': 'Pappas', 'Brian Van Holt': 'Harrigan', 'Martin Henderson': 'Nellie', 'Roger Willie': 'Charlie Whitehorse', ""Frances O'Connor"": 'Rita', 'Christian Slater': 'Ox Henderson', 'Jason Isaacs': 'Major Mellitz', 'William Morts': 'Fortino', 'Cameron Thor': 'Mertens', 'Kevin Cooney': 'Ear Doctor', 'Holmes Osborne': 'Colonel Hollings'}" tt0114938,"{'Jeff Bridges': 'Wild Bill Hickok', 'Ellen Barkin': 'Calamity Jane', 'John Hurt': 'Charley Prince', 'Diane Lane': 'Susannah Moore', 'Keith Carradine': 'Buffalo Bill Cody', 'David Arquette': 'Jack McCall', 'Christina Applegate': 'Lurline Newcomb', 'Bruce Dern': 'Will Plummer', 'James Gammon': 'California Joe', 'Marjoe Gortner': 'Preacher', 'James Remar': 'Donnie Lonigan', 'Karen Huie': 'Song Lew', 'Steve Reevis': 'Sioux Chief', 'Robert Knott': 'Dave Tutt', 'Pato Hoffmann': 'Cheyenne Leader'}" tt0486674,"{'Robert De Niro': 'Ben', 'Sean Penn': 'Sean Penn', 'Catherine Keener': 'Lou Tarnow', 'Bruce Willis': 'Actor', 'John Turturro': 'Dick Bell', 'Robin Wright': 'Kelly (as Robin Wright Penn)', 'Stanley Tucci': 'Scott Solomon', 'Kristen Stewart': 'Zoe', 'Michael Wincott': 'Jeremy Brunell', 'Jason Kravits': 'Pollster (as Jason Kravitz)', 'Mark Ivanir': 'Johnny', 'Remy K. Selma': 'Jimmy (as Remy Selma)', 'Christopher Evan Welch': 'Studio Marketing Guy', 'Lily Rabe': 'Dawn', 'Sam Levinson': 'Carl'}" tt1465522,"{'Tyler Labine': 'Dale', 'Alan Tudyk': 'Tucker', 'Katrina Bowden': 'Allison', 'Jesse Moss': 'Chad', 'Philip Granger': 'Sheriff', 'Brandon Jay McLaren': 'Jason (as Brandon McLaren)', 'Christie Laing': 'Naomi', 'Chelan Simmons': 'Chloe', 'Travis Nelson': 'Chuck', 'Alex Arsenault': 'Todd (as Alexander Arsenault)', 'Adam Beauchesne': 'Mitch', 'Joseph Allan Sutherland': 'Mike (as Joseph Sutherland)', 'Mitchell Verigin': 'College Kid #1', 'Angela DeCorte': 'College Kid #2', 'Karen Reigh': 'Cheryl'}" tt0084814,"{'Peter Sellers': 'Chief Insp. Jacques Clouseau (archive footage)', 'David Niven': 'Sir Charles Litton', 'Herbert Lom': 'Chief Insp. Charles Dreyfus', 'Richard Mulligan': ""Clouseau's Father"", 'Joanna Lumley': 'Marie Jouvet', 'Capucine': 'Lady Simone Litton', 'Robert Loggia': 'Bruno Langois', 'Harvey Korman': 'Prof. Auguste Balls (archive footage)', 'Burt Kwouk': 'Cato Fong', 'Graham Stark': 'Hercule Lajoy', 'Peter Arne': 'Col. Bufoni', 'André Maranne': 'Sergeant Francois Duval', 'Ronald Fraser': 'Dr. Longet', 'Leonard Rossiter': 'Superintendant Quinlan (archive footage)', 'Marne Maitland': 'Deputy Commissioner Lasorde'}" tt0070814,"{'Johnny Whitaker': 'Tom Sawyer', 'Celeste Holm': 'Aunt Polly', 'Warren Oates': 'Muff Potter', 'Jeff East': 'Huckleberry Finn', 'Jodie Foster': 'Becky Thatcher', 'Lucille Benson': 'Widder Martha Douglas', 'Henry Jones': 'Mr. Dobbins', 'Noah Keen': 'Judge Cyrus Thatcher', 'Dub Taylor': 'Clayton', 'Richard Eastham': 'Doctor P. R. Robinson', 'Sandy Kenyon': 'Constable Clemmens', 'Joshua Hill Lewis': 'Cousin Sidney', 'Susan Joyce': 'Cousin Mary', 'Steve Hogg': 'Ben Rogers', 'Sean Summers': 'Billy Fisher'}" tt1293842,"{'Sam Rockwell': 'Bill', 'Emma Roberts': 'Abbie', 'Rob Corddry': 'Terry', 'Emily Rios': 'Kathy', 'Rooney Mara': 'Wendy', 'Jessica Hecht': 'Stacey', 'Connor Paolo': 'Damon', 'Meaghan Witri': 'Tamra', 'Melanie Hinkle': 'Mindy', 'Shana Dowdeswell': 'Molly', 'Vanessa Gordillo': 'Flor', 'Shareeka Epps': 'Lisa', 'Margo Martindale': 'Donna', 'Melissa Graver': 'New Rome Forward', 'Caitlin Colford': 'Trish'}" tt0120520,"{'Helena Bonham Carter': 'Kate Croy', 'Linus Roache': 'Merton', 'Alex Jennings': 'Lord Mark', 'Charlotte Rampling': 'Aunt Maude', 'Ben Miles': 'Journalist 1', 'Philip Wright': 'Journalist 2', 'Michael Gambon': ""Kate's Father"", 'Alexander John': 'Butler', 'Alison Elliott': 'Milly', 'Elizabeth McGovern': 'Susan', 'Shirley Chantrell': 'Opium Den Lady', 'Diana Kent': ""Merton's Party Companion"", 'Georgio Serafini': 'Eugenio', 'Rachele Crisafulli': 'Concierge'}" tt0051036,"{'Burt Lancaster': 'J.J. Hunsecker', 'Tony Curtis': 'Sidney Falco', 'Susan Harrison': 'Susan Hunsecker', 'Martin Milner': 'Steve Dallas (as Marty Milner)', 'Jeff Donnell': 'Sally', 'Sam Levene': ""Frank D' Angelo"", 'Joe Frisco': 'Herbie Temple', 'Barbara Nichols': 'Rita', 'Emile Meyer': 'Lt. Harry Kello', 'Edith Atwater': 'Mary', 'The Chico Hamilton Quintet': 'The Chico Hamilton Quintet'}" tt0098384,"{'Sally Field': ""M'Lynn Eatenton"", 'Dolly Parton': 'Truvy Jones', 'Shirley MacLaine': 'Ouiser Boudreaux', 'Daryl Hannah': 'Annelle Dupuy Desoto', 'Olympia Dukakis': 'Clairee Belcher', 'Julia Roberts': 'Shelby Eatenton Latcherie', 'Tom Skerritt': 'Drum Eatenton', 'Sam Shepard': 'Spud Jones', 'Dylan McDermott': 'Jackson Latcherie', ""Kevin J. O'Connor"": 'Sammy Desoto', 'Bill McCutcheon': 'Owen Jenkins', 'Ann Wedgeworth': 'Aunt Fern', 'Knowl Johnson': 'Tommy Eatenton', 'Jonathan Ward': 'Jonathan Eatenton', 'Bibi Besch': 'Belle Marmillion'}" tt0120788,"{'Ben Stiller': 'Jerry Stahl', 'Maria Bello': 'Kitty', 'Jay Paulson': 'Phoenix Punk', 'Spencer Garrett': 'Brad / Tim from Mr. Chompers', 'Owen Wilson': 'Nicky', 'Elizabeth Hurley': 'Sandra', 'Lourdes Benedicto': 'Vola', 'Fred Willard': 'Craig Ziffer', 'Chauncey Leopardi': 'Jerry at 16', 'Mary Thompson': 'Grandma Whittle', 'Connie Nielsen': 'Dagmar', 'Charles Fleischer': 'Allen from Mr. Chompers', 'Liz Torres': 'Dita', 'Douglas Spain': 'Miguel', 'Janeane Garofalo': 'Jana Farmer'}" tt0839880,"{'Alex A. Quinn': 'Bill Welsh (as Alex Quinn)', 'Kelsey Crane': 'Brielle Lake', 'James Devoti': 'Ben Graham (as Jim Devoti)', 'Kelsey Wedeen': 'Kelly Lake', 'Tara Gerard': 'Samantha Lake', 'Vanessa Viola': 'Amy Leigh', 'James C. Burns': 'Sheriff Chuck Lake', 'Pat McNeely': 'Gloria Lake', 'Edwin Craig': 'Willard Lake / Grandpa', 'Christian Stokes': 'Abel Lake', 'Trevor Torseth': 'Kane Lake', 'Dan Woods': 'John Lake', 'Malea Rose': 'Tanya Holt (as Malea Richardson)', 'Kenn Woodard': 'Priest', 'Lydia Hyslop': 'Doomed Teenager #1'}" tt0363276,"{'Joshua Leonard': 'Clark Stevens', 'Jordan Ladd': 'Sara', 'Natasha Lyonne': 'Alice', 'Lance Henriksen': 'Dr. Franks', 'Dendrie Taylor': 'Nurse Hendricks', 'Leslie Jordan': 'Dr. Morton', 'Patrika Darbo': 'Betty', 'Christian Leffler': 'Drake', 'Newell Alexander': 'Dr. Douglas', 'Dan Callahan': 'Dr. Hendricks', 'Mark Holton': 'Mr.Hansen', 'Aaron Strongoni': 'Carl', 'Todd Stites': 'Trannie', 'Rosemary Alexander': 'Grace', 'Muffy Bolding': 'Polly Bond'}" tt0227005,"{'Jon Favreau': 'Bobby', 'Vince Vaughn': 'Ricky', 'Joe Goossen': 'Referee', 'Famke Janssen': 'Jessica', 'Makenzie Vega': 'Chloe', 'Jenteal': 'Wendy (as Reanna Rossi)', 'Tom Morello': 'Best Man', 'Jonathan Silverman': 'Bachelor', 'Kimberley Davies': 'Bartender (as Kimberly Davies)', 'Faizon Love': 'Horrace', 'Elizabeth Barondes': 'Wife', 'Gary Auerbach': 'Husband', 'Bill Capizzi': 'Arthur', 'Peter Falk': 'Max', 'Vernon Vaughn': 'Coach'}" tt0234137,"{'Famke Janssen': 'Kate Welles', 'Jon Favreau': 'Adam Levy', 'Noah Emmerich': 'Eric', 'Ann Magnuson': 'Monique Steinbacher', 'Cheri Oteri': 'Mary', 'Josh Hopkins': 'Joey Santino', 'Robert Knepper': 'Gerard Boussard', 'Vincent Ventresca': 'Richard Miltner', 'Kristen Zang': 'Savannah', 'David Steinberg': 'Tiny Man', 'Elimu Nelson': 'Jerome Davis', 'Don Brunner': 'Police Officer', 'Yvonne Zima': '9-Year-Old Kate', 'Melissa Fitzgerald': 'Melanie', 'Rob Swanson': 'Rob, Blind Date'}" tt0202677,"{'Ryan Phillippe': 'Mr. Parker', 'Benicio Del Toro': 'Harold Longbaugh', 'Juliette Lewis': 'Robin', 'Taye Diggs': 'Jeffers', 'Nicky Katt': 'Obecks', 'Geoffrey Lewis': 'Abner Mercer', 'Dylan Kussman': 'Dr. Allen Painter', 'Scott Wilson': 'Hale Chidduck', 'Kristin Lehman': 'Francesca Chidduck', 'James Caan': 'Joe Sarno', 'Henry Griffin': 'P. Whipped', 'Armando Guerrero': 'Federale #1 (as Mando Guerrero)', 'Andres Orozco': 'Federale #2', 'Jan Hanks': 'Receptionist (as Jan Jensen)', 'José Pérez': '? (as Jose Perez)'}" tt0040897,"{'Humphrey Bogart': 'Fred C. Dobbs', 'Walter Huston': 'Howard', 'Tim Holt': 'Curtin', 'Bruce Bennett': 'Cody', 'Barton MacLane': 'Pat McCormick (as Barton Mac Lane)', 'Alfonso Bedoya': 'Gold Hat', 'Arturo Soto Rangel': 'Presidente (as A. Soto Rangel)', 'Manuel Dondé': 'El Jefe (as Manuel Donde)', 'José Torvay': 'Pablo (as Jose Torvay)', 'Margarito Luna': 'Pancho'}" tt0117774,"{'Tom Berenger': 'Shale', 'Raymond Cruz': 'Joey Six', 'William Forsythe': 'Hollan', 'Luis Guzmán': 'Rem', 'Richard Brooks': 'Wellman', 'Ana Azcuy': 'TV Announcer', 'Diane Venora': 'Jane Hetzko', 'Glenn Plummer': 'Sherman', 'Shar-Ron Corley': 'Jerome (as Sharron Corley)', 'Vincent Laresca': 'Rodriguez', 'Maurice Compte': 'Tay', 'Marc Anthony': 'Lacas', 'Ernie Hudson': 'Rolle', 'Beau Weaver': 'Janus Showreel Narrator', 'Cliff De Young': 'Wolfson'}" tt0120802,"{'Carlo Cecchi': 'Nicolo Bussotti (Cremona)', 'Irene Grazioli': 'Anna Bussotti (Cremona)', 'Anita Laurenzi': 'Cesca (Cremona)', 'Tommaso Puntelli': 'Apprentice (Cremona)', 'Aldo Brugnini': 'Assistant (Cremona)', 'Samuele Amighetti': 'Boy (Cremona)', 'Jean-Luc Bideau': 'Georges Poussin (Vienna)', 'Christoph Koncz': 'Kaspar Weiss (Vienna)', 'Clotilde Mollet': 'Antoinette Pussin (Vienna)', 'Rainer Egger': 'Brother Christophe (Vienna)', 'Wolfgang Böck': 'Brother Michael (Vienna)', 'Florentín Groll': 'Anton von Spielmann (Vienna)', 'Johannes Silberschneider': 'Father Richter (Vienna)', 'Arthur Denberg': 'Prince Mansfeld (Vienna)', 'Paul Koeker': 'Brother Gustav (Vienna)'}" tt0981072,"{'Rachel McAdams': 'Colee', 'Tim Robbins': 'Cheaver', 'Michael Peña': 'TK', 'Molly Hagan': 'Pat Cheaver', 'Mark L. Young': 'Scott Cheaver', 'Howard Platt': 'Stan Tilson', 'Arden Myrin': 'Barbara Tilson', 'Coburn Goss': 'Peter Tilson', 'John Heard': 'Bob', 'Jennifer Joan Taylor': ""Bob's Wife"", 'Katherine LaNasa': 'Janet', 'Leo Ford': ""Janet's Husband"", 'Susan Yeagley': 'Kendra', 'Emily Swallow': 'Brandi', 'John Diehl': 'Tom Klinger'}" tt0070334,"{'Elliott Gould': 'Philip Marlowe', 'Nina van Pallandt': 'Eileen Wade', 'Sterling Hayden': 'Roger Wade', 'Mark Rydell': 'Marty Augustine', 'Henry Gibson': 'Dr. Verringer', 'David Arkin': 'Harry', 'Jim Bouton': 'Terry Lennox', 'Warren Berlinger': 'Morgan', 'Jo Ann Brody': 'Jo Ann Eggenweiler', 'Stephen Coit': 'Detective Farmer (as Steve Coit)', 'Jack Knight': 'Mabel', 'Pepe Callahan': 'Pepe', 'Vincent Palmieri': 'Vince (as Vince Palmieri)', 'Pancho Córdova': 'Doctor (as Pancho Cordoba)', 'Enrique Lucero': 'Jefe'}" tt0165854,"{'Terence Stamp': 'Wilson', 'Lesley Ann Warren': 'Elaine', 'Luis Guzmán': 'Eduardo Roel (as Luis Guzman)', 'Barry Newman': 'Jim Avery', 'Joe Dallesandro': 'Uncle John (as Joe Dallessandro)', 'Nicky Katt': 'Stacy the Hitman', 'Peter Fonda': 'Terry Valentine', 'Amelia Heinle': 'Adhara', 'Melissa George': ""Jennifer 'Jenny' Wilson"", 'William Lucking': 'Warehouse Foreman', 'Matthew Kimbrough': 'Tom Johannson', 'John Robotham': ""Rick (Valentine's Bodyguard)"", 'Steve Heinze': ""Larry (Valentine's Bodyguard)"", 'Nancy Lenehan': 'Lady on Plane', 'Wayne Pére': 'Pool Hall Creep (as Wayne Péré)'}" tt0097613,"{'Kevin Kline': 'Nick Starkey', 'Susan Sarandon': 'Christine Starkey', 'Mary Elizabeth Mastrantonio': 'Bernadette Flynn', 'Harvey Keitel': 'Frank Starkey', 'Danny Aiello': 'Vincent Alcoa', 'Rod Steiger': 'Eamon Flynn', 'Alan Rickman': 'Ed', 'Faye Grant': 'Alison Hawkins', 'Kenneth Welsh': 'Roger Culver (as Ken Welsh)', 'Jayne Haynes': 'Alma', 'Brian Tarantina': 'Cone', 'Bruce MacVittie': 'Rip', 'Bill Cobbs': 'Detective Reilly', 'Greg Walker': 'January Man', 'Tandy Cronyn': 'Lana'}" tt1594562,"{'Sara Paxton': 'Claire', 'Pat Healy': 'Luke', 'Alison Bartlett': 'Angry Mom', 'Jake Ryan': 'Young Boy (as Jake Schlueter)', 'Kelly McGillis': 'Leanne Rease-Jones', 'Lena Dunham': 'Barista', 'Brenda Cooney': ""Madeline O'Malley"", 'George Riddle': 'Old Man', 'John Speredakos': 'Officer Mitchell', 'Sean Reid': 'Medic', 'Kurt Venghaus': 'Medic', 'Thomas Mahoney': 'Medic', 'Michael Martin': 'Medic', 'Michael P. Castelli': 'Medic'}" tt1038919,"{'Gerard Butler': 'Milo Boyd', 'Jennifer Aniston': 'Nicole Hurley', 'Gio Perez': 'Uncle Sam', 'Joel Marsh Garland': 'Dwight', 'Jason Kolotouros': 'Gelman', 'Matt Malloy': 'Gary', 'Jason Sudeikis': 'Stewart', 'Adam Rose': 'Jimmy', 'Christine Baranski': 'Kitty Hurley', 'Dorian Missick': 'Bobby', 'David Costabile': 'Arthur', 'Lynda Gravatt': 'Judge', 'Peter Greene': 'Earl Mahler', 'Jeff Garlin': 'Sid', 'Siobhan Fallon Hogan': 'Teresa'}" tt1392170,"{'Stanley Tucci': 'Caesar Flickerman', 'Wes Bentley': 'Seneca Crane', 'Jennifer Lawrence': 'Katniss Everdeen', 'Willow Shields': 'Primrose Everdeen', 'Liam Hemsworth': 'Gale Hawthorne', 'Elizabeth Banks': 'Effie Trinket', 'Sandra Ellis Lafferty': 'Hob Vendor (as Sandra Lafferty)', 'Paula Malcomson': ""Katniss' Mother"", 'Rhoda Griffis': 'Registration Woman', 'Sandino Moya-Smith': 'Propaganda Film Tribute', 'Josh Hutcherson': 'Peeta Mellark', 'Raiko Bowman': ""Peeta's Mother"", 'Dwayne Boyd': 'Peacekeeper #1', 'Anthony Reynolds': 'Peacekeeper #2', 'Judd Lormand': 'Peacekeeper #3'}" tt1615091,"{'Sean Bean': 'Amal', 'Corey Sevier': 'Savan', 'Sam Claflin': 'Kaleb', 'Annabelle Wallis': 'Dorel', 'Eleanor Tomlinson': 'Miru', 'Hannah Tointon': 'Giselle', 'Jonathan Pienaar': 'Gagen', 'Danny Keogh': 'Yisir', 'Jessica Haines': 'Neenah', 'Tertius Meintjes': 'Uri (as Tertius Meintjies)', 'Garth Breytenbach': 'Remi', 'Bjorn Steinbach': 'Yomack', 'Andre Jacobs': 'Elder #1', 'Stephen Jubber': 'Evan', 'Pope Jerrod': 'Buren'}" tt0106664,"{'Timothy Hutton': 'Thad Beaumont / George Stark', 'Amy Madigan': 'Liz Beaumont', 'Michael Rooker': 'Sheriff Alan Pangborn', 'Julie Harris': 'Reggie Delesseps', 'Robert Joy': 'Fred Clawson', 'Kent Broadhurst': 'Mike Donaldson', 'Beth Grant': 'Shayla Beaumont', 'Rutanya Alda': 'Miriam Cowley', 'Tom Mardirosian': 'Rick Cowley', 'Larry John Meyers': 'Dr. Pritchard', 'Patrick Brannan': 'Young Thad Beaumont', 'Royal Dano': 'Digger Holt', 'Glenn Colerider': 'Homer Gamache', 'Sarah Parker': 'Wendy Beaumont / William Beaumont', 'Elizabeth Parker': 'Wendy Beaumont / William Beaumont'}" tt0115685,"{'Robin Williams': 'Armand Goldman', 'Gene Hackman': 'Senator Keeley', 'Nathan Lane': 'Albert', 'Dianne Wiest': 'Louise Keeley', 'Dan Futterman': 'Val Goldman', 'Calista Flockhart': 'Barbara Keeley', 'Hank Azaria': 'Agador', 'Christine Baranski': 'Katharine', 'Tom McGowan': 'Harry Radman', 'Grant Heslov': 'Photographer', 'Kirby Mitchell': 'Chauffeur', 'James Lally': 'Stage manager', 'Luca Tommassini': 'Celsius', 'Luis Camacho': 'Goldman Girl', 'André Fuentes': 'Goldman Girl (as Andre Fuentes)'}" tt0189584,"{'Kevin Spacey': 'Larry Mann', 'Danny DeVito': 'Phil Cooper (as Danny Devito)', 'Peter Facinelli': 'Bob Walker', 'Paul Dawson': 'Bellboy'}" tt0200465,"{'Jason Statham': 'Terry Leather', 'Saffron Burrows': 'Martine Love', 'Stephen Campbell Moore': 'Kevin Swain', 'Daniel Mays': 'Dave Shilling', 'James Faulkner': 'Guy Singer', 'Alki David': 'Bambas', 'Michael Jibson': 'Eddie Burton', 'Georgia Taylor': 'Ingrid Burton', 'Richard Lintern': 'Tim Everett', 'Peter Bowles': 'Miles Urquart', 'Alistair Petrie': 'Philip Lisle', 'Hattie Morahan': 'Gale Benson', 'Julian Lewis Jones': 'Snow', 'Andrew Brooke': 'Quinn', 'Rupert Frazer': 'Lord Drysdale (as Rupert Fraser)'}" tt0042208,"{'Sterling Hayden': 'Dix Handley', 'Louis Calhern': 'Alonzo D. Emmerich', 'Jean Hagen': 'Doll Conovan', 'James Whitmore': 'Gus Minissi', 'Sam Jaffe': 'Doc Erwin Riedenschneider', 'John McIntire': 'Police Commissioner Hardy', 'Marc Lawrence': 'Cobby', 'Barry Kelley': 'Lt. Ditrich', 'Anthony Caruso': 'Louis Ciavelli', 'Teresa Celli': 'Maria Ciavelli', 'Marilyn Monroe': 'Angela Phinlay', ""William 'Wee Willie' Davis"": 'Timmons (as William Davis)', 'Dorothy Tree': 'May Emmerich', 'Brad Dexter': 'Bob Brannom', 'John Maxwell': 'Dr. Swanson'}" tt0078767,"{'James Brolin': 'George Lutz', 'Margot Kidder': 'Kathy Lutz', 'Rod Steiger': 'Father Delaney', 'Don Stroud': 'Father Bolen', 'Murray Hamilton': 'Father Ryan', 'John Larch': 'Father Nuncio', 'Natasha Ryan': 'Amy', 'K.C. Martel': 'Greg', 'Meeno Peluce': 'Matt', 'Michael Sacks': 'Jeff', 'Helen Shaver': 'Carolyn', 'Amy Wright': 'Jackie', 'Val Avery': 'Sgt. Gionfriddo', 'Irene Dailey': 'Aunt Helena', 'Marc Vahanian': 'Jimmy'}" tt0125659,"{'Eduardo Noriega': 'César', 'Penélope Cruz': 'Sofía', 'Chete Lera': 'Antonio', 'Fele Martínez': 'Pelayo', 'Najwa Nimri': 'Nuria', 'Gérard Barray': 'Duvernois', 'Jorge de Juan': 'Encargado L.E.', 'Miguel Palenzuela': 'Commisario', 'Pedro Miguel Martínez': 'Médico Jefe', 'Ion Gabella': 'Recluso paranoico', 'Joserra Cadiñanos': 'Guardia', 'Tristán Ulloa': 'Camarero', 'Pepe Navarro': 'Presentador T.V.', 'Jaro': 'Médico 1', 'Walter Prieto': 'Médico 2'}" tt0368909,"{'Tony Jaa': 'Ting', 'Petchtai Wongkamlao': 'Humlae / George (as Mum Jokemok)', 'Pumwaree Yodkamol': 'Muay Lek', 'Suchao Pongwilai': 'Komtuan (as Suchoa Pongvilai)', 'Chatthapong Phantana-Angkul': 'Saming (as Chatthapong Pantanaunkul)', 'Wannakit Sirioput': 'Don (as Wannakit Siriput)', 'Cheathavuth Watcharakhun': 'Peng (as Chetwut Wacharakun)', 'Rungrawee Barijindakul': 'Ngek (as Rungrawee Borrijindakul)', 'Pornpimol Chookanthong': 'Mae Waan', 'Chumphorn Thepphithak': 'Uncle Mao (as Chumporn Teppitak)', 'Sukanya Kongkawong': 'Waitress', 'Boonsri Yindee': 'Yai Hom (as Bunsri Yindee)', 'Woranard Tantipidok': 'Pra Cru', 'Sawang Rodnuch': 'Noi', 'Sutin Rodnuch': 'Jamnean'}" tt1598828,"{'Katherine Heigl': 'Stephanie Plum', ""Jason O'Mara"": 'Joseph Morelli', 'Daniel Sunjata': 'Ranger', 'John Leguizamo': 'Jimmy Alpha', 'Sherri Shepherd': 'Lula', 'Debbie Reynolds': 'Grandma Mazur', 'Debra Monk': 'Mrs. Plum', 'Nate Mooney': 'Eddie Gazarra', 'Adam Paul': 'Bernie Kuntz', 'Fisher Stevens': 'Morty Beyers', 'Ana Reeder': 'Connie', 'Patrick Fischler': 'Vinnie Plum', 'Ryan Michelle Bathe': 'Jackie', 'Leonardo Nam': 'John Cho', 'Annie Parisse': 'Mary Lou'}" tt0035140,"{'Bette Davis': 'Charlotte Vale', 'Paul Henreid': 'Jeremiah (Jerry) Durrance', 'Claude Rains': 'Dr. Jaquith', 'Gladys Cooper': 'Mrs. Henry Vale', 'Bonita Granville': 'June Vale', 'John Loder': 'Elliot Livingston', 'Ilka Chase': 'Lisa Vale', 'Lee Patrick': ""'Deb' McIntyre"", 'Franklin Pangborn': 'Mr. Thompson', 'Katharine Alexander': 'Miss Trask (as Katherine Alexander)', 'James Rennie': 'Frank McIntyre', 'Mary Wickes': 'Dora Pickford'}" tt0395972,"{'Charlize Theron': 'Josey Aimes', 'Thomas Curtis': 'Sammy Aimes', 'Elle Peterson': 'Karen Aimes', 'Frances McDormand': 'Glory', 'Sean Bean': 'Kyle', 'Woody Harrelson': 'Bill White', 'Jeremy Renner': 'Bobby Sharp', 'Richard Jenkins': 'Hank Aimes', 'Sissy Spacek': 'Alice Aimes', 'James Cada': 'Don Pearson', 'Rusty Schwimmer': 'Big Betty', 'Linda Emond': 'Leslie Conlin', 'Michelle Monaghan': 'Sherry', 'Brad William Henke': 'Lattavansky', 'Jillian Armenante': 'Peg'}" tt0031725,"{'Greta Garbo': 'Nina Ivanovna Yakushova aka Ninotchka', 'Melvyn Douglas': ""Count Leon d'Algout"", 'Ina Claire': 'Grand Duchess Swana', 'Bela Lugosi': 'Commissar Razinin', 'Sig Ruman': 'Comrade Iranoff (as Sig Rumann)', 'Felix Bressart': 'Comrade Buljanoff', 'Alexander Granach': 'Comrade Kopalski', 'Gregory Gaye': 'Count Alexis Rakonin', 'Rolfe Sedan': 'Hotel Manager', 'Edwin Maxwell': 'Mercier', 'Richard Carle': 'Gaston'}" tt0247786,"{'Luke Goss': 'Saul', 'Sienna Guillory': 'Kate', 'Simon Shepherd': 'Rupert', 'Sabrina Van Tassel': 'Star', 'Glenn Carter': 'Jesus', 'Jonathan Bruun': 'Danny', 'Georgia Reece': 'Joanna', 'Susan Jameson': 'Polly', 'Nick Patrick': 'Josh', 'Ralph Arliss': 'Clive', 'Pandora Clifford': 'Annabelle'}" tt0309912,"{'Stella Gonet': 'Mrs. Nickleby', 'Andrew Havill': 'Mr. Nickleby', 'Henry McGrath': 'Child Nicholas Nickleby', 'Hugh Mitchell': 'Boy Nicholas Nickleby', 'Poppy Rogers': 'Child Kate Nickleby', 'Jessie Lou Roberts': 'Young Kate Nickleby', 'Charlie Hunnam': 'Nicholas Nickleby', 'Romola Garai': 'Kate Nickleby', 'Tom Courtenay': 'Newman Noggs', 'Christopher Plummer': 'Ralph Nickleby', 'Anne Hathaway': 'Madeline Bray', 'Jim Broadbent': 'Mr. Wackford Squeers', 'Angela Curran': 'Parent', 'Jamie Bell': 'Smike', 'Juliet Stevenson': 'Mrs. Squeers'}" tt0116743,"{'Indira Varma': 'Maya', 'Sarita Choudhury': 'Tara, the Queen', 'Ramon Tikaram': 'Jai Kumar', 'Naveen Andrews': 'Raj Singh', 'Rekha': 'Rasa Devi, teacher of the Kama Sutra', 'Khalid Tyabji': 'Biki', 'Arundhati Rao': 'Annabi', 'Surabhi Bhansali': 'Young Maya', 'Garima Dhup': 'Young Tara', 'Pearl Padamsee': 'Maham Anga', 'Kusum Haidar': 'Dilki', 'Harish Patel': 'Doctor Mani', 'Ranjit Chowdhry': 'Babu', 'Achala Sachdev': 'Rupa (as Achla Sachdev)', 'Achla Sachdev': 'Rupa'}" tt1175491,"{'Josh Brolin': 'George W. Bush', 'Colin Hanks': 'Speechwriter #1', 'Toby Jones': 'Karl Rove', 'Dennis Boutsikaris': 'Paul Wolfowitz', 'Jeffrey Wright': 'Colin Powell', 'Thandie Newton': 'Condoleezza Rice', 'Scott Glenn': 'Donald Rumsfeld', 'Richard Dreyfuss': 'Dick Cheney', 'Bruce McGill': 'George Tenet', 'Wes Chatham': 'Fraternity Enforcer', 'Jesse Bradford': 'Fraternity President', 'Sean Stone': 'Fraternity Pledge #1', 'Ben Mayer': 'Fraternity Pledge #2', 'James Cromwell': 'George H.W. Bush', 'Juan Gabriel Pareja': 'Oil Worker'}" tt1855401,"{'Bill A. Jones': 'Serious Announcer', 'Jeff Goldblum': 'Chef Goldblum', 'Bob Odenkirk': 'Schlaaang Announcer', 'Frank Slaten': 'Super Seat Customer', 'Bob Ross': 'Bob Ross', 'Ronnie Rodriguez': 'Diamond Jim / Johnny Depp', 'Nancy Stelle': 'Woman on Paris Street', 'Jean-Michel Richaud': 'Paris Policeman', 'Marilyn Porayko': 'Woman Being Ticketed', 'Erica Durance': 'Paris Waitress', 'Tim Heidecker': 'Tim Heidecker', 'Eric Wareheim': 'Eric Wareheim', 'Robert Loggia': 'Tommy Schlaaang', 'William Atherton': 'Earle Swinter', 'Michael Gross': 'Narrator'}" tt1456635,"{'Seann William Scott': 'Doug Glatt', 'Jay Baruchel': 'Pat', 'Alison Pill': 'Eva', 'Liev Schreiber': 'Ross Rhea', 'Eugene Levy': 'Dr. Glatt', 'Marc-André Grondin': 'Xavier LaFlamme', 'Kim Coates': 'Ronnie Hortense', 'Nicholas Campbell': 'Rollie Hortense', 'Richard Clarkin': 'Gord Ogilvey', 'Jonathan Cherry': 'Marco Belchior', 'Ricky Mabe': 'John Stevenson', 'George Tchortov': 'Evgeni', 'Karl Graboshas': 'Oleg', 'Larry Woo': 'Park Kim', 'Stephen Sim': 'Backup Goalie'}" tt0115798,"{'Jim Carrey': 'The Cable Guy', 'Matthew Broderick': 'Steven M. Kovacs', 'Leslie Mann': 'Robin Harris', 'Jack Black': 'Rick', 'George Segal': ""Steven's Father"", 'Diane Baker': ""Steven's Mother"", 'Ben Stiller': 'Sam Sweet / Stan Sweet', 'Eric Roberts': 'Eric Roberts', 'Janeane Garofalo': 'Medieval Times Waitress', 'Andy Dick': 'Medieval Times Host', ""Harry O'Reilly"": ""Steven's Boss"", 'David Cross': 'Sales Manager', 'Amy Stiller': ""Steven's Secretary"", 'Owen Wilson': ""Robin's Date"", 'Keith Gibbs': 'Basketball Player'}" tt0114388,"{'James Fleet': 'John Dashwood', 'Tom Wilkinson': 'Mr. Dashwood', 'Harriet Walter': 'Fanny Dashwood', 'Kate Winslet': 'Marianne Dashwood', 'Emma Thompson': 'Elinor Dashwood', 'Gemma Jones': 'Mrs. Dashwood', 'Hugh Grant': 'Edward Ferrars', 'Emilie François': 'Margaret Dashwood', 'Elizabeth Spriggs': 'Mrs. Jennings', 'Robert Hardy': 'Sir John Middleton', 'Ian Brimble': 'Thomas', 'Isabelle Amyes': 'Betsy', 'Alan Rickman': 'Colonel Brandon', 'Greg Wise': 'John Willoughby', 'Alexander John': 'Curate'}" tt1233227,"{'Tobin Bell': 'Jigsaw / John', 'Costas Mandylor': 'Hoffman', 'Mark Rolston': 'Erickson', 'Betsy Russell': 'Jill', 'Shawnee Smith': 'Amanda', 'Peter Outerbridge': 'William', 'Athena Karkanis': 'Agent Perez', 'Samantha Lemole': 'Pamela Jenkins', 'Tanedra Howard': 'Simone', 'Marty Moreau': 'Eddie', 'Shawn Ahmed': 'Allen', 'Janelle Hutchison': 'Addy', 'Gerry Mendicino': 'Janitor', 'Caroline Cave': 'Debbie', 'George Newbern': 'Harold'}" tt0120744,"{'Leonardo DiCaprio': 'King Louis / Phillippe', 'Jeremy Irons': 'Aramis', 'John Malkovich': 'Athos', 'Gérard Depardieu': 'Porthos (as Gerard Depardieu)', 'Gabriel Byrne': ""D'Artagnan"", 'Anne Parillaud': 'Queen Anne', 'Judith Godrèche': 'Christine (as Judith Godreche)', 'Edward Atterton': 'Lieutenant Andre', 'Peter Sarsgaard': 'Raoul', 'Hugh Laurie': ""King's Advisor"", 'David Lowe': ""King's Advisor"", 'Brigitte Boucher': 'Madame Rotund', 'Matthew Jocelyn': 'Assassin', 'Karine Belly': 'Wench', 'Emmanuel Guttierez': ""King's Friend""}" tt0985699,"{'Tom Cruise': 'Colonel Claus von Stauffenberg', 'Kenneth Branagh': 'Major-General Henning von Tresckow', 'Bill Nighy': 'General Friedrich Olbricht', 'Tom Wilkinson': 'General Friedrich Fromm', 'Carice van Houten': 'Nina von Stauffenberg', 'Thomas Kretschmann': 'Major Otto Ernst Remer', 'Terence Stamp': 'Ludwig Beck', 'Eddie Izzard': 'General Erich Fellgiebel', 'Kevin McNally': 'Dr. Carl Goerdeler (as Kevin R. McNally)', 'Christian Berkel': 'Colonel Mertz von Quirnheim', 'Jamie Parker': 'Lieutenant Werner von Haeften', 'David Bamber': 'Adolf Hitler', 'Tom Hollander': 'Colonel Heinz Brandt', 'David Schofield': 'Erwin von Witzleben', 'Kenneth Cranham': 'Field Marshal Wilhelm Keitel'}" tt0100135,"{'Charlie Sheen': 'Carl Taylor', 'Emilio Estevez': 'James St. James', 'Leslie Hope': 'Susan Wilkins', 'Keith David': 'Louis Fedders', 'Dean Cameron': 'Pizza Man', 'John Getz': 'Maxwell Potterdam III', 'Hawk Wolinski': 'Biff', 'John Lavachielli': 'Mario', 'Geoffrey Blake': 'Frost', 'Cameron Dye': 'Luzinski', 'John Putch': 'Mike', 'Tommy Hinkley': 'Jeff', 'Darrell Larson': 'Jack Berger', 'Sy Richardson': 'Walt Richardson', 'Kari Whitman': 'Judy'}" tt1095442,"{'Souleymane Sy Savane': 'Solo', 'Red West': 'William', 'Diana Franco Galindo': 'Alex', ""Lane 'Roc' Williams"": 'Roc', 'Mamadou Lam': 'Mamadou', 'Carmen Leyva': 'Quiera', 'Peter N. Anyieth': 'DVD Seller', 'Jim Babel': 'Airline Interviewer', 'Sarah S. Brooks': 'Passenger with Hat', 'Lasheka Brown': 'Crack Passenger', 'Neill Fleeman': 'Airline Interviewer', ""Jamill 'Peaches' Fowler"": 'Pork Chop', 'Evelia Garcia': 'Bar Owner', 'Chris Greene': 'Thug', 'Viktor Hernandez': ""Quiera's Cousin""}" tt0077597,"{'Kirsten Baker': 'June', 'Linda Lawrence': 'Betty', 'Sandy Johnson': 'April', 'Rikki Marin': 'January', 'Leslie King': 'Jane', 'Demetre Phillips': 'Hank', 'Steve Bond': 'Butch', 'Ken Lerner': 'Peewee', 'Dave Shelley': 'Mr. Friendly', 'Huntz Hall': 'Uncle Joe', 'Joe E. Ross': 'Bruno', 'Mike Mazurki': 'Moiv', 'Dennis Bowen': 'Roger', 'Robert Kenneally': 'Hal (as Rob Kenneally)', 'Paul Tinder': 'Michael'}" tt0492389,"{'Brendan Fraser': 'Dan Sanders', 'Ricky Garcia': 'Frank', 'Eugene Cordero': 'Cheese', ""Patrice O'Neal"": 'Gus', 'Jim Norton': 'Hank', 'Brooke Shields': 'Tammy Sanders', 'Matt Prokop': 'Tyler Sanders', 'Billy Bush': 'Drill Sergeant', 'Ken Jeong': 'Neal Lyman', 'Angela Kinsey': 'Felder', 'Samantha Bee': 'Principal Baker', 'Alice Drummond': 'Mrs. Martin', 'Toby Huss': 'Wilson', 'Skyler Samuels': 'Amber', 'Gerry Bednob': 'Mr. Gupta'}" tt0097257,"{'Geena Davis': 'Valerie', 'Jeff Goldblum': 'Mac', 'Jim Carrey': 'Wiploc', 'Damon Wayans': 'Zeebo', 'Julie Brown': 'Candy Pink', 'Michael McKean': 'Woody', 'Charles Rocket': 'Ted', 'Larry Linville': 'Dr. Bob', 'Rick Overton': 'Dr. Rick', 'Diane Stilwell': 'Robin', 'Juney Ellis': 'Mrs. Merkin (as June C. Ellis)', 'Felix Montano': 'Ramon', 'Rick Hurst': 'Joe the Cop (as Richard Hurst)', 'Leslie Morris': 'Mike the Cop', 'Lisa Fuller': 'Kikki'}" tt0059124,"{'Vincent Price': 'Dr. Goldfoot', 'Frankie Avalon': 'Craig Gamble', 'Dwayne Hickman': 'Todd Armstrong', 'Susan Hart': 'Diane', 'Jack Mullaney': 'Igor', 'Fred Clark': 'D.J. Pevney', 'Patti Chandler': 'Robot', 'Mary Hughes': 'Robot', 'Salli Sachse': 'Robot', 'Luree Holmes': 'Robot', 'Sue Hamilton': 'Robot', 'Laura Nicholson': 'Robot', 'Marianne Gaba': 'Robot', 'China Lee': 'Robot', 'Issa Arnal': 'Robot'}" tt0088960,"{""Peter O'Toole"": 'Dr. Harry Wolper', 'Mariel Hemingway': 'Meli', 'Vincent Spano': 'Boris Lafkin', 'Virginia Madsen': 'Barbara Spencer', 'David Ogden Stiers': 'Dr. Sid Kullenbeck', 'John Dehner': 'Paul', 'Karen Kopins': 'Lucy Wolper', 'Kenneth Tigar': 'Pavlo', 'Elsa Raven': 'Mrs. Mallory', 'Lee Kessler': 'Mrs. Pruitt', 'Rance Howard': 'Mr. Spencer', 'Ellen Geer': 'Mrs. Spencer', 'Ian Wolfe': 'Prof. Brauer', 'Mike Jolly': 'Boom-Boom', 'Burton Collins': 'Lyman'}" tt0804452,"{'Logan Browning': 'Sasha', 'Janel Parrish': 'Jade', 'Nathalia Ramos': 'Yasmin', 'Skyler Shaye': 'Cloe', 'Chelsea Kane': 'Meredith (as Chelsea Staub)', 'Anneliese van der Pol': 'Avery', 'Melise': 'Quinn (as Malese Jow)', 'Ian Nelson': 'Dylan', 'Stephen Ford': 'Cameron (as Stephen Lunsford)', 'Jon Voight': 'Principal Dimly', 'Lainie Kazan': 'Bubbie', 'William May': 'Manny', 'Emily Rose Everhard': 'Cherish (as Emily Everhard)', 'Chet Hanks': 'Dexter', 'Carl Rux': 'Mr. Whitman / DJ Wax'}" tt0162662,"{'Lili Taylor': 'Evie Decker', 'Guy Pearce': 'Drumstrings Casey', 'Irma P. Hall': 'Clotelia', 'Tom Bower': 'Mr. Decker', 'Bruno Kirby': 'Kiddie Acres Manager', 'Veronica Cartwright': 'Mrs. Casey', 'Shawnee Smith': 'Faye-Jean Lindsay', 'Sara Rue': 'Violet', 'John Hawkes': 'David Elliot', 'Marshall Bell': 'Mr. Casey', 'Jo Ann Farabee': 'Woman at Salon', 'Harv Morgan': 'Dick St. Clair', 'Jason Russel Waller': 'Audience Member #1 (as Jason Russell Waller)', 'Lew Temple': 'Audience Member #2', 'Jason Kavalewitz': 'Young Sex Band'}" tt0245712,"{'Emilio Echevarría': 'El Chivo', 'Gael García Bernal': 'Octavio (as Gael García)', 'Goya Toledo': 'Valeria', 'Álvaro Guerrero': 'Daniel (as Alvaro Guerrero)', 'Vanessa Bauche': 'Susana', 'Jorge Salinas': 'Luis', 'Marco Pérez': 'Ramiro', 'Rodrigo Murray': 'Gustavo', 'Humberto Busto': 'Jorge', 'Gerardo Campbell': 'Mauricio', 'Rosa María Bianchi': 'Tía Luisa (Aunt Luisa)', 'Dunia Saldívar': ""Mama Susana (Susana's Mother)"", 'Adriana Barraza': ""Mama Octavio (Octavio's Mother)"", 'José Sefami': 'Leonardo', 'Lourdes Echevarría': 'Maru'}" tt1602098,"{'Glenn Close': 'Albert Nobbs', 'Antonia Campbell-Hughes': 'Emmy (as Antonia Campbell Hughes)', 'Mia Wasikowska': 'Helen', 'Pauline Collins': 'Mrs. Baker', 'Maria Doyle Kennedy': 'Mary', 'Mark Williams': 'Sean Casey', 'James Greene': 'Patrick', 'Serena Brabazon': 'Mrs. Moore', 'Michael McElhatton': 'Mr. Moore', 'Dolores Mullally': 'Milady', 'Bonnie McCormack': 'Miss Shaw', 'Phyllida Law': 'Mrs. Cavendish', 'Brendan Gleeson': 'Dr. Holloran', 'Kenneth Collard': 'Monsieur Pigot', 'Judy Donovan': 'Madame Pigot'}" tt1399683,"{'Jennifer Lawrence': 'Ree', 'Isaiah Stone': 'Sonny', 'Ashlee Thompson': 'Ashlee', 'Valerie Richards': 'Connie', 'Shelley Waggener': 'Sonya', 'Garret Dillahunt': 'Sheriff Baskin', 'William White': 'Blond Milton', 'Ramona Blair': 'Parenting Teacher', 'Lauren Sweetser': 'Gail', 'Andrew Burnley': 'Baby Ned', 'Phillip Burnley': 'Baby Ned', 'Isaac Skidmore': 'Baby Ned', 'Cody Brown': 'Floyd', 'Cinnamon Schultz': 'Victoria', 'John Hawkes': 'Teardrop'}" tt1291584,"{'Joel Edgerton': 'Brendan Conlon', 'Tom Hardy': 'Tommy Conlon', 'Nick Nolte': 'Paddy Conlon', 'Jennifer Morrison': 'Tess Conlon', 'Frank Grillo': 'Frank Campana', 'Kevin Dunn': 'Principal Zito', 'Maximiliano Hernández': 'Colt Boyd', 'Bryan Callen': 'Bryan Callen', 'Sam Sheridan': 'Sam Sheridan', 'Fernando Chien': 'Fenroy (as Fernando Funan Chien)', 'Jake McLaughlin': 'Mark Bradford', 'Vanessa Martinez': 'Pilar Fernandez', 'Denzel Whitaker': 'Stephon', 'Carlos Miranda': 'Tito', 'Manuel Espinosa': 'Warden Perez'}" tt0065214,"{'William Holden': 'Pike', 'Ernest Borgnine': 'Dutch', 'Robert Ryan': 'Thornton', ""Edmond O'Brien"": 'Sykes', 'Warren Oates': 'Lyle Gorch', 'Jaime Sánchez': 'Angel (as Jaime Sanchez)', 'Ben Johnson': 'Tector Gorch', 'Emilio Fernández': 'Mapache (as Emilio Fernandez)', 'Strother Martin': 'Coffer', 'L.Q. Jones': 'T.C', 'Albert Dekker': 'Harrigan', 'Bo Hopkins': 'Crazy Lee', 'Dub Taylor': 'Wainscoat', 'Paul Harper': 'Ross', 'Jorge Russek': 'Zamorra'}" tt0075314,"{'Diahnne Abbott': 'Concession Girl (as Diahnne Abbot)', 'Robinson Frank Adu': 'Angry Black Man (as Frank Adu)', 'Victor Argo': 'Melio (as Vic Argo)', 'Gino Ardito': 'Policeman at Rally', 'Garth Avery': ""Iris' Friend"", 'Peter Boyle': 'Wizard', 'Albert Brooks': 'Tom', 'Harry Cohn': 'Cabbie in Bellmore', 'Copper Cunningham': 'Hooker in Cab', 'Robert De Niro': 'Travis Bickle (as Robert DeNiro)', 'Brenda Dickson': 'Soap Opera Woman', 'Harry Fischler': 'Dispatcher', 'Jodie Foster': 'Iris', 'Nat Grant': 'Stick-Up Man', 'Leonard Harris': 'Charles Palantine'}" tt0258000,"{'Jodie Foster': 'Meg Altman', 'Kristen Stewart': 'Sarah Altman', 'Forest Whitaker': 'Burnham', 'Dwight Yoakam': 'Raoul', 'Jared Leto': 'Junior', 'Patrick Bauchau': 'Stephen Altman', 'Ann Magnuson': 'Lydia Lynch', 'Ian Buchanan': 'Evan Kurlander', 'Andrew Kevin Walker': 'Sleepy Neighbor', 'Paul Schulze': 'Officer Keeney', 'Mel Rodriguez': 'Officer Morales', 'Richard Conant': 'SWAT Cop', 'Paul Simon': 'SWAT Cop', 'Victor Thrash': 'SWAT Cop', 'Ken Turner': 'SWAT Cop'}" tt0093565,"{'Cher': 'Loretta Castorini', 'Nicolas Cage': 'Ronny Cammareri', 'Vincent Gardenia': 'Cosmo Castorini', 'Olympia Dukakis': 'Rose Castorini', 'Danny Aiello': 'Mr. Johnny Cammareri', 'Julie Bovasso': 'Rita Cappomaggi', 'John Mahoney': 'Perry', 'Louis Guss': 'Raymond Cappomaggi', 'Feodor Chaliapin Jr.': 'Old Man (as Feodor Chaliapin)', 'Anita Gillette': 'Mona', 'Leonardo Cimino': 'Felix', 'Paula Trueman': 'Lucy', 'Nada Despotovich': 'Chrissy', 'Joe Grifasi': 'Shy Waiter', 'Gina DeAngeles': 'Old Crone'}" tt1527186,"{'Kirsten Dunst': 'Justine', 'Charlotte Gainsbourg': 'Claire', 'Alexander Skarsgård': 'Michael', 'Brady Corbet': 'Tim', 'Cameron Spurr': 'Leo', 'Charlotte Rampling': 'Gaby', 'Jesper Christensen': 'Little Father', 'John Hurt': 'Dexter', 'Stellan Skarsgård': 'Jack', 'Udo Kier': 'Wedding Planner', 'Kiefer Sutherland': 'John', 'James Cagnard': ""Michael's Father"", 'Deborah Fronko': ""Michael's Mother"", 'Charlotta Miller': 'Betty 1', 'Claire Miller': 'Betty 2'}" tt1615147,"{'Kevin Spacey': 'Sam Rogers', 'Paul Bettany': 'Will Emerson', 'Jeremy Irons': 'John Tuld', 'Zachary Quinto': 'Peter Sullivan', 'Penn Badgley': 'Seth Bregman', 'Simon Baker': 'Jared Cohen', 'Mary McDonnell': 'Mary Rogers', 'Demi Moore': 'Sarah Robertson', 'Stanley Tucci': 'Eric Dale', 'Aasif Mandvi': 'Ramesh Shah', 'Ashley Williams': 'Heather Burke', 'Susan Blackwell': 'Lauren Bratberg', 'Maria Dizzia': 'Executive Assistant', 'Jimmy Palumbo': 'Security Guard', 'Al Sapienza': 'Louis Carmelo'}" tt1588170,"{'Byung-Hun Lee': 'Kim Soo-hyeon', 'Min-sik Choi': 'Jang Kyung-chul', 'In-seo Kim': 'Se-jung', 'Joon-Hyuk Lee': 'Agent (as Lee Joon-Hyeok)', 'Bo-ra Nam': ""Section chief's daughter"", 'Gook-hwan Jeon': 'Squad Chief Jang', 'Ho-jin Chun': 'Section Chief Oh', 'Moo-Seong Choi': 'Tae-joo', 'Kap-su Kim': 'Planning team deputy head', 'Tae-goo Eom': 'Detective 4', 'San-ha Oh': 'Joo-yeon', 'Seung-ah Yoon': ""The Cannibal's Girlfriend"", 'Seung-Ri Ha': 'Female high school student at harbor', 'Chae-young Yoon': 'Nurse Han Song-i', 'Seo-yeon Park': 'Woman at pension (as Park Seo-Yeon)'}" tt0926084,"{'Bill Nighy': 'Minister Rufus Scrimgeour', 'Emma Watson': 'Hermione Granger', 'Richard Griffiths': 'Vernon Dursley', 'Harry Melling': 'Dudley Dursley', 'Daniel Radcliffe': 'Harry Potter', 'Julie Walters': 'Molly Weasley', 'Bonnie Wright': 'Ginny Weasley', 'Rupert Grint': 'Ron Weasley', 'Ian Kelly': 'Mr. Granger', 'Michelle Fairley': 'Mrs. Granger', 'Fiona Shaw': 'Petunia Dursley', 'Alan Rickman': 'Professor Severus Snape', 'Carolyn Pickles': 'Charity Burbage', 'Ralph Fiennes': 'Lord Voldemort', 'Helena Bonham Carter': 'Bellatrix Lestrange'}" tt0190332,"{'Yun-Fat Chow': 'Master Li Mu Bai (as Chow Yun Fat)', 'Michelle Yeoh': 'Yu Shu Lien', 'Ziyi Zhang': 'Jen Yu (Mandarin version) / Jiao Long (English dubbed version) (as Zhang Ziyi)', 'Chen Chang': ""Lo 'Dark Cloud' / Luo Xiao Hu"", 'Sihung Lung': 'Sir Te', 'Pei-Pei Cheng': 'Jade Fox (as Cheng Pei-Pei)', 'Fa Zeng Li': 'Governor Yu', 'Xian Gao': 'Bo', 'Yan Hai': 'Madame Yu', 'De Ming Wang': 'Police Inspector Tsai / Prefect Cai Qiu', 'Li Li': 'May (as Li Li)', 'Su Ying Huang': 'Auntie Wu', 'Jin Ting Zhang': 'De Lu', 'Rui Yang': 'Maid', 'Kai Li': 'Gou Jun Pei'}" tt1436045,"{'Kôji Yakusho': 'Shinzaemon Shimada', 'Takayuki Yamada': 'Shinrokuro Shimada', 'Yûsuke Iseya': 'Koyata Kiga', 'Ikki Sawamura': 'Gunjiro Mitsuhashi', 'Arata Furuta': 'Heizo Sahara', 'Sôsuke Takaoka': 'Yasokichi Hioki', 'Seiji Rokkaku': 'Mosuke Otake', 'Kazuki Namioka': 'Rihei Ishizuka', 'Kôen Kondô': 'Yahachi Horii', 'Yûma Ishigaki': 'Gannai Higuchi', 'Masataka Kubota': 'Shojiro Ogura', 'IHARA': 'Kujuro Hirayama (as Tsuyoshi Ihara)', 'Hiroki Matsukata': 'Saheita Kuranaga', 'Kazue Fukiishi': 'Tsuya / Upashi', 'Mitsuki Tanimura': 'Chise Makino'}" tt0098453,"{'Robyn Lively': 'Louise Miller (as Robyn Elaine Lively)', 'Dan Gauthier': 'Brad Powell', 'Joshua John Miller': 'Richie Miller (as Joshua Miller)', 'Caren Kaye': 'Margaret Miller', 'Dick Sargent': 'Frank Miller', 'Lisa Fuller': 'Randa', 'Mandy Ingber': 'Polly', 'Zelda Rubinstein': 'Madame Serena', 'Noah Blake': 'Rhet', 'Tina Caspary': 'Shawn (as Tina Marie Casapary)', 'Megan Gallivan': 'Kiki (as Megan A. Gallivan)', 'Alsari Al-Shehali': 'Vincent (as Alssari Al-Shehail)', 'Shelley Berman': 'Mr. Weaver (as Shelly Berman)', 'Marcia Wallace': 'Ms. Malloy', 'Daniel William Carter': 'Geek (as Dan Carter)'}" tt0094862,"{'Catherine Hicks': 'Karen Barclay', 'Chris Sarandon': 'Mike Norris', 'Alex Vincent': 'Andy Barclay', 'Brad Dourif': 'Charles Lee Ray / Chucky (voice)', 'Dinah Manoff': 'Maggie Peterson', 'Tommy Swerdlow': 'Jack Santos', 'Jack Colvin': 'Dr. Ardmore', 'Neil Giuntoli': 'Eddie Caputo', 'Juan Ramírez': 'Peddler', 'Alan Wilder': 'Mr. Criswell', 'Richard Baird': 'News Reporter at Toy Store', 'Ray Oliver': 'Dr. Death (as Raymond Oliver)', 'Aaron Osborne': 'Orderly', 'Tyler Hard': 'Mona', 'Ted Liss': 'George'}" tt0111653,"{'Joe Bays': 'River Townsman', 'Abraham Benrubi': 'Abe Ferguson (as Abe Benrubi)', 'Jill Boyd': 'Prudence Taylor', 'John Candy': 'James Harlow', 'Douglas Carlson': 'Bar Patron', 'Melinda Culea': 'Constance Taylor', 'Ryan Cutrona': 'Tom', 'Bud Davis': 'Desperado Leader', 'Billy Daydoge': 'Elder (as Bill Daydodge)', 'Thomas F. Duffy': 'Clayton Ferguson', 'David Dunard': 'Harry Bob Ferguson', 'Steve Eastin': 'Bartender', 'Roger Eschbacher': 'Reporter', 'Rodney A. Grant': 'Little Feather', 'Stuart Proud Eagle Grant': 'White Cloud (as Stuart Grant)'}" tt0327919,"{'Ben Tibber': 'David', 'Jim Caviezel': 'Johannes', 'Hristo Shopov': 'The Man', 'Roberto Attias': 'Baker', 'Maria Bonnevie': ""David's Mother"", 'Francesco De Vito': 'Roberto', 'Marin Jivkov': 'Cecha', 'Shaila Rubin': 'Vineyard Owner', 'Robert Syulev': 'Angelo', 'Elisabetta Bartolomei': 'Woman at Party', 'Krasimir Kutzoparov': 'Camp Officer (as Krassimir Kutzuparov)', 'Krassimir Radkov': 'Party Guest', 'Diyan Machev': 'Party Guest (as Deyan Machev)', 'Clem Tibber': 'Young David', 'Adrian McCourt': ""David's Father""}" tt0094910,"{'Dan Aykroyd': 'John W. Burns, Jr.', 'Walter Matthau': 'Donald Becker', 'Charles Grodin': 'George Maitlin', 'Donna Dixon': 'Laura Rollins', 'Richard Romanus': 'Harvey Michaels', 'Mary Gross': 'Vera Maitlin', 'David Clennon': 'Lawrence Baird', 'Arye Gross': 'Perry Kovin', 'Victoria Jackson': 'Robin', 'Michael DeLorenzo': 'Lopez', 'Mickey Jones': 'Watkins', 'J.E. Freeman': 'Unger', 'David Wohl': 'Dr. Smet', 'Michael Ensign': 'Hendricks', 'Carol Mansell': 'Mrs. Blair'}" tt0081071,"{'David Carradine': 'Cole Younger', 'Keith Carradine': 'Jim Younger', 'Robert Carradine': 'Bob Younger', 'James Keach': 'Jesse James', 'Stacy Keach': 'Frank James', 'Dennis Quaid': 'Ed Miller', 'Randy Quaid': 'Clell Miller', 'Kevin Brophy': 'John Younger', 'Harry Carey Jr.': 'George Arthur', 'Christopher Guest': 'Charlie Ford', 'Nicholas Guest': 'Bob Ford', 'Shelby Leverington': 'Annie Ralston', 'Felice Orlandi': 'Mr. Reddick', 'Pamela Reed': 'Belle Starr', 'James Remar': 'Sam Starr'}" tt0072325,"{'Isaac Hayes': ""Mac 'Truck' Turner"", 'Yaphet Kotto': 'Harvard Blue', 'Alan Weeks': 'Jerry', 'Annazette Chase': 'Annie', 'Nichelle Nichols': 'Dorinda', 'Sam Laws': 'Nate Dinwiddie', 'Paul Harris': ""Richard Leroy 'Gator' Johnson"", 'Charles Cyphers': 'Drunk', 'John Kramer': 'Desmond', 'Scatman Crothers': 'Duke', 'Dick Miller': 'Fogarty', 'Jac Emel': 'Reno (as Jac Emeil)', 'Stan Shaw': 'Fontana', 'Wendell Tucker': 'Wendell', 'Sonny Barnes': 'Toro (as Clarence Barnes)'}" tt0087727,"{'Chuck Norris': 'Col. James Braddock', 'M. Emmet Walsh': 'Jack Tucker', 'David Tress': 'Sen. Maxwell Porter', 'Lenore Kasdorf': 'Ann Fitzgerald', 'James Hong': 'Gen. Tran', 'Ernie Ortega': 'Vinh', 'Pierrino Mascarino': 'Jacques', 'Erich Anderson': 'Masucci (as E. Erich Anderson)', 'Joseph Carberry': 'Carter', 'Avi Kleinberger': 'Dalton', 'Willie Williams': 'Randall', 'Ric Segreto': 'GI', 'Bella Flores': 'Madame Pearl', 'Gil Arceo': 'First Vietnamese Businessman', 'Roger Dantes': 'Second Vietnamese Businessman'}" tt0051411,"{'Gregory Peck': 'James McKay', 'Jean Simmons': 'Julie Maragon', 'Carroll Baker': 'Patricia Terrill', 'Charlton Heston': 'Steve Leech', 'Burl Ives': 'Rufus Hannassey', 'Charles Bickford': 'Maj. Henry Terrill', 'Alfonso Bedoya': 'Ramón Gutierrez', 'Chuck Connors': 'Buck Hannassey', 'Chuck Hayward': 'Rafe Hannassey', 'Buff Brady': 'Dude Hannassey', 'Jim Burk': 'Blackie / Cracker Hannassey', 'Dorothy Adams': 'Hannassey Woman', 'Chuck Roberson': 'Terrill Cowboy', 'Bob Morgan': 'Terrill Cowboy', 'John McKee': 'Terrill Cowboy'}" tt0102555,"{'Sally Field': 'Betty Mahmoody', 'Alfred Molina': 'Moody', 'Sheila Rosenthal': 'Mahtob', 'Roshan Seth': 'Houssein', 'Sarah Badel': 'Nicole', 'Mony Rey': 'Ameh Bozorg', 'Georges Corraface': 'Mohsen', 'Mary Nell Santacroce': 'Grandma', 'Ed Grady': 'Grandpa', 'Marc Gowan': 'Doctor', 'Bruce Evers': 'Doctor', 'Jonathan Cherchi': 'Mammal', 'Soudabeh Farrokhnia': 'Nasserine', 'Michael Morim': 'Zia', 'Gili Ben-Ozilio': 'Fereshte'}" tt0093640,"{'Kevin Costner': 'Tom Farrell', 'Gene Hackman': 'David Brice', 'Sean Young': 'Susan Atwell', 'Will Patton': 'Scott Pritchard', 'Howard Duff': 'Senator Duvall', 'George Dzundza': 'Sam Hesselman', 'Jason Bernard': 'Major Donovan', 'Iman': 'Nina Beka', 'Fred Dalton Thompson': 'Marshall', 'Leon Russom': ""Kevin O'Brien"", 'Dennis Burkley': 'Mate', 'Marshall Bell': 'Contra #1', 'Chris D.': 'Contra #2', 'Michael Shillo': 'Schiller', 'Nicholas Worth': 'Cup Breaker'}" tt0083629,"{'Ronny Cox': 'Eli MacCleary', 'Bibi Besch': 'Caroline MacCleary', 'Paul Clemens': 'Michael MacCleary', 'Don Gordon': 'Judge Curwin', 'R.G. Armstrong': 'Doc Schoonmaker', 'Katherine Moffat': 'Amanda Platt (as Kitty Moffat)', 'L.Q. Jones': 'Sheriff Pool', 'Logan Ramsey': 'Edwin Curwin', 'John Dennis Johnston': 'Horace Platt', 'Ron Soble': 'Tom Laws', 'Luke Askew': 'Dexter Ward', 'Meshach Taylor': 'Deputy Herbert', 'Boyce Holleman': 'Doc Odom', 'Natalie Nolan Howard': 'Court Clerk', 'Malcolm McMillin': 'Gas Station Attendant'}" tt0104765,"{'Michelle Pfeiffer': 'Lurene Hallett', 'Dennis Haysbert': 'Paul Cater', 'Stephanie McFadden': 'Jonell', 'Brian Kerwin': 'Ray Hallett', 'Louise Latham': 'Mrs. Enright', 'Peggy Rea': 'Mrs. Heisenbuttel', 'Beth Grant': 'Hazel', 'Johnny Ray McGhee': 'Mechanic', 'Cooper Huckabee': 'Deputy Swinson', 'Troy Evans': 'Lt. Galvan', 'Mark Jeffrey Miller': 'Trooper Exley (as Mark Miller)', 'Pearl Jones': 'Mrs. Baker', 'Janell McLeod': 'Station Cashier', 'Bob Minor': 'Barricade Policeman', 'Rhoda Griffis': 'Jacqueline Kennedy'}" tt0049406,"{'Sterling Hayden': 'Johnny Clay', 'Coleen Gray': 'Fay', 'Vince Edwards': 'Val Cannon', 'Jay C. Flippen': 'Marvin Unger', 'Ted de Corsia': 'Patrolman Randy Kennan (as Ted DeCorsia)', 'Marie Windsor': 'Sherry Peatty', 'Elisha Cook Jr.': 'George Peatty (as Elisha Cook)', 'Joe Sawyer': ""Mike O'Reilly"", 'James Edwards': 'Track Parking Attendant', 'Timothy Carey': 'Nikki Arcane', 'Kola Kwariani': 'Maurice Oboukhoff', 'Jay Adler': 'Leo the Loanshark', 'Tito Vuolo': 'Joe Piano', 'Dorothy Adams': ""Ruthie O'Reilly"", 'Herbert Ellis': 'Second American Airlines Clerk'}" tt0052564,"{'Gerald Mohr': ""Col. Thomas O'Bannion"", 'Nora Hayden': ""Dr. Iris 'Irish' Ryan"", 'Les Tremayne': 'Prof. Theodore Gettell', 'Jack Kruschen': 'CWO Sam Jacobs', 'Paul Hahn': 'Maj. Gen. George Treegar', 'J. Edward McKinley': 'Prof. Paul Weiner', 'Tom Daly': 'Dr. Frank Gordon', 'Don Lamond': 'TV Newscaster / Narrator / Martian (voice)', 'Edward Innes': 'Brig. Gen. Alan Prescott', 'Gordon Barnes': 'Maj. Lyman Ross', 'Jack Haddock': 'Lt. Col. Davis', 'Brandy Bryan': 'Nurse Hayes', 'Joan Patrick': 'Nurse Dixon (as Joan Fitzpatrick)', 'Duke Norton': 'Dr. Muller', 'William Remick': 'Dr. Hawley (as Wm. Remick)'}" tt0081184,"{'Rory Calhoun': 'Vincent Smith', 'Paul Linke': 'Bruce Smith', 'Nancy Parsons': 'Ida Smith', 'Nina Axelrod': 'Terry', 'Wolfman Jack': 'Reverend Billy', 'Elaine Joyce': 'Edith Olson', 'Dick Curtis': 'Guy Robaire / 1st T.V. Preacher', 'Monique St. Pierre': 'Debbie', 'Rosanne Katon': 'Suzi', 'E. Hampton Beagle': 'Bob Anderson', 'Everett Creach': 'Bo Tulinski', 'Michael Melvin': 'Ivan', 'John Ratzenberger': 'Drummer', 'Marc Silver': 'Guitarist', 'Victoria Hartman': 'Female Terrible'}" tt0052832,"{'Marlon Brando': ""Valentine 'Snakeskin' Xavier"", 'Anna Magnani': 'Lady Torrance', 'Joanne Woodward': 'Carol Cutrere', 'Maureen Stapleton': 'Vee Talbot', 'Victor Jory': 'Jabe Torrance', 'R.G. Armstrong': 'Sheriff Jordan Talbot (as R. G. Armstrong)', 'Virgilia Chew': 'Nurse Porter', 'Ben Yaffee': ""'Dog' Hamma"", 'Joe Brown Jr.': ""'Pee Wee' Binnings"", 'Madame Spivy': 'Ruby Lightfoot (as Spivy)', 'John Baragrey': 'David Cutrere', 'Sally Gracie': 'Dolly Hamma', 'Lucille Benson': 'Beulah Binnings', 'Emory Richardson': 'Uncle Pleasant, the Conjure Man'}" tt0084732,"{'Roy Scheider': 'Sam Rice', 'Meryl Streep': 'Brooke Reynolds', 'Jessica Tandy': 'Grace Rice', 'Joe Grifasi': 'Joseph Vitucci', 'Sara Botsford': 'Gail Phillips', 'Josef Sommer': 'George Bynum', 'Frederikke Borge': 'Heather Wilson (as Rikke Borge)', 'Irving Metzman': 'Murray Gordon', 'Larry Joshua': 'Mugger', 'Tom Norton': 'Auctioneer', 'Richmond Hoxie': 'Mr. Harris', 'Hyon Cho': 'Mr. Chang', 'Danielle Cusson': 'Girl', 'John Bentley': 'Night Watchman', 'George A. Tooks': 'Elevator Operator'}" tt0079240,"{'Sean Connery': 'Pierce', 'Donald Sutherland': 'Agar', 'Lesley-Anne Down': 'Miriam', 'Alan Webb': 'Trent', 'Malcolm Terris': 'Fowler', 'Robert Lang': 'Sharp', 'Michael Elphick': 'Burgess', 'Wayne Sleep': 'Clean Willy', 'Pamela Salem': 'Emily Trent', 'Gabrielle Lloyd': 'Elizabeth Trent', 'George Downing': 'Barlow', 'James Cossins': 'Harranby', 'John Bett': 'McPherson', 'Peter Benson': 'Station Despatcher', 'Janine Duvitski': 'Maggie'}" tt0305396,"{'Steve Irwin': 'Steve Irwin', 'Terri Irwin': 'Terri Irwin', 'Magda Szubanski': 'Brozzie Drewitt', 'David Wenham': 'Sam Flynn', 'Lachy Hulme': 'Robert Wheeler', 'Aden Young': 'Ron Buckwhiler', 'Kenneth Ransom': 'Vaughan Archer', 'Kate Beahan': 'Jo Buckley', 'Steve Bastoni': 'Deputy Director Reynolds', 'Steven Vidler': 'Deputy Director Ansell (as Steve Vidler)', 'Alyson Standen': 'Anne Milking', 'Alex Ruiz': 'CIA Agent', 'David Franklin': 'CIA Agent', 'Robert Coleby': 'Dr. Weinberger', 'Kevin Hides': 'Dr. Krug'}" tt0100680,"{'Jane Fonda': 'Iris King', 'Robert De Niro': 'Stanley Cox', 'Swoosie Kurtz': 'Sharon', 'Martha Plimpton': 'Kelly King', 'Harley Cross': 'Richard King', 'Jamey Sheridan': 'Joe', 'Feodor Chaliapin Jr.': 'Leonides Cox (as Feodor Chaliapin)', 'Zohra Lampert': 'Elaine', 'Loretta Devine': 'Bertha', 'Julie Garfield': 'Belinda', 'Karen Ludwig': 'Melissa', 'Kathy Kinney': 'Bernice', 'Laurel Lyle': 'Muriel', 'Mary Testa': 'Joanne', 'Katherine Cortez': 'Jan'}" tt0089572,"{'Kurt Russell': 'Malcolm Anderson', 'Mariel Hemingway': 'Christine Connelly', 'Richard Jordan': 'Alan Delour', 'Richard Masur': 'Bill Nolan', 'Richard Bradford': 'Phil Wilson', 'Joe Pantoliano': 'Andy Porter', 'Andy Garcia': 'Ray Martinez', 'Rose Portillo': 'Kathy Vasquez', 'William Smith': ""Albert O'Shaughnessy"", 'John Palmer': 'Himself', 'Lee Sandman': 'Harold Jacoby', 'Dan Fitzgerald': 'Carl Mason', 'Cynthia Caquelin': 'Ruth Lowenstein', 'Fred Ornstein': 'Warren Phillips', 'Fritz Bronner': 'Peter Peterson'}" tt0048424,"{'Robert Mitchum': 'Harry Powell', 'Shelley Winters': 'Willa Harper', 'Lillian Gish': 'Rachel Cooper', 'James Gleason': 'Uncle Birdie Steptoe', 'Evelyn Varden': 'Icey Spoon', 'Peter Graves': 'Ben Harper', 'Don Beddoe': 'Walt Spoon', 'Billy Chapin': 'John Harper', 'Sally Jane Bruce': 'Pearl Harper', 'Gloria Castillo': 'Ruby (as Gloria Castilo)'}" tt0082416,"{'Meryl Streep': 'Sarah and Anna', 'Jeremy Irons': 'Charles and Mike', 'Hilton McRae': 'Sam', 'Emily Morgan': 'Mary', 'Charlotte Mitchell': 'Mrs. Tranter', 'Lynsey Baxter': 'Ernestina', 'Jean Faulds': 'Cook', 'Peter Vaughan': 'Mr. Freeman', 'Colin Jeavons': 'Vicar', 'Liz Smith': 'Mrs. Fairley', 'Patience Collier': 'Mrs. Poulteney', 'John Barrett': 'Dairyman', 'Leo McKern': 'Dr. Grogan', 'Arabella Weir': 'Girl on Undercliff', 'Ben Forster': 'Boy on Undercliff'}" tt0063415,"{'Peter Sellers': 'Hrundi V. Bakshi', 'Claudine Longet': 'Michele Monet', 'Natalia Borisova': 'Ballerina', 'Jean Carson': 'Nanny', 'Marge Champion': 'Rosalind Dunphy', 'Al Checco': 'Bernard Stein', 'Corinne Cole': 'Janice Kane', 'Dick Crockett': 'Wells', 'Frances Davis': 'Maid', 'Danielle De Metz': ""Stella D'Angelo (as Danielle de Metz)"", 'Herbert Ellis': 'Director (as Herb Ellis)', 'Paul Ferrara': 'Ronnie Smith', 'Steve Franken': 'Levinson', 'Kathe Green': 'Molly Clutterbuck', 'Allen Jung': 'Cook'}" tt0057413,"{'David Niven': 'Sir Charles Lytton', 'Peter Sellers': 'Insp. Jacques Clouseau', 'Robert Wagner': 'George Lytton', 'Capucine': 'Simone Clouseau', 'Brenda de Banzie': 'Angela Dunning', 'Colin Gordon': 'Tucker', 'John Le Mesurier': 'Defence Barrister (as John LeMesurier)', 'James Lanphier': 'Saloud', 'Guy Thomajan': 'Artoff', 'Michael Trubshawe': 'Felix Townes', 'Riccardo Billi': 'Aristotle Sarajos', 'Meri Welles': 'Monica Fawn (as Meri Wells)', 'Martin Miller': 'Pierre Luigi - Photographer', 'Fran Jeffries': ""Greek 'cousin'"", 'Claudia Cardinale': 'The Princess'}" tt0100530,"{'Sean Connery': 'Barley', 'Michelle Pfeiffer': 'Katya', 'Roy Scheider': 'Russell', 'James Fox': 'Ned', 'John Mahoney': 'Brady', 'Michael Kitchen': 'Clive', 'J.T. Walsh': 'Quinn', 'Ken Russell': 'Walter', 'David Threlfall': 'Wicklow', 'Klaus Maria Brandauer': 'Dante', 'Mac McDonald': 'Bob', 'Nicholas Woodeson': 'Niki Landau', 'Martin Clunes': 'Brock', 'Ian McNeice': 'Merrydew (as Ian McNiece)', 'Colin Stinton': 'Henziger'}" tt0055614,"{'Natalie Wood': 'Maria', 'Richard Beymer': 'Tony', 'Russ Tamblyn': 'Riff', 'Rita Moreno': 'Anita', 'George Chakiris': 'Bernardo', 'Simon Oakland': 'Schrank', 'Ned Glass': 'Doc', 'William Bramley': 'Krupke', 'Tucker Smith': 'Ice', 'Tony Mordente': 'Action', 'David Winters': 'A-rab', 'Eliot Feld': 'Baby John', 'Bert Michaels': 'Snowboy', 'David Bean': 'Tiger', 'Robert Banas': 'Joyboy'}" tt0094142,"{'Danny DeVito': 'Owen', 'Billy Crystal': 'Larry Donner', 'Kim Greist': 'Beth', 'Anne Ramsey': 'Momma', 'Kate Mulgrew': 'Margaret', 'Branford Marsalis': 'Lester', 'Rob Reiner': 'Joel', 'Bruce Kirby': 'Detective DeBenedetto', 'Joey DePinto': 'Sargeant', 'Annie Ross': 'Mrs. Hazeltine', 'Raye Birk': 'Pinsky', 'Oprah Winfrey': 'Herself', 'Olivia Brown': 'Ms. Gladstone', 'Philip Perlman': 'Mr. Perlman', 'Stu Silver': 'Ramon'}" tt0054047,"{'Yul Brynner': 'Chris Larabee Adams', 'Eli Wallach': 'Calvera', 'Steve McQueen': 'Vin Tanner', 'Horst Buchholz': 'Chico', 'Charles Bronson': ""Bernardo O'Reilly"", 'Robert Vaughn': 'Lee', 'Brad Dexter': 'Harry Luck', 'James Coburn': 'Britt', 'Jorge Martínez de Hoyos': 'Hilario (as Jorge Martinez de Hoyas)', 'Vladimir Sokoloff': 'Old Man', 'Rosenda Monteros': 'Petra', 'Rico Alaniz': 'Sotero', 'Pepe Hern': 'Tomas', 'Natividad Vacío': 'Villager (as Natividad Vacio)', 'Mario Navarro': ""Boy with O'Reilly""}" tt0120757,"{'Claire Danes': 'Julie', 'Giovanni Ribisi': 'Pete', 'Omar Epps': 'Linc', 'Dennis Farina': 'Greer', 'Josh Brolin': 'Billy', 'Steve Harris': 'Briggs', 'Richard Jenkins': 'Mothershed', 'Larry Brandenburg': 'Eckford', 'Lionel Mark Smith': 'Lanier', 'Sam McMurray': 'Tricky', ""Michael O'Neill"": 'Greene', 'Stephen Kay': 'Bald Dude (as Stephen T. Kay)', 'Bodhi Elfman': 'Gilbert - Skinny Freak (as Bodhi Pine Elfman)', 'Holmes Osborne': 'Mr. Cochrane', 'Dey Young': 'Mrs. Cochrane'}" tt0263757,"{'Brittany Murphy': 'Molly', 'Dakota Fanning': 'Ray', 'Marley Shelton': 'Ingrid', 'Donald Faison': 'Huey', 'Jesse Spencer': 'Neal', 'Austin Pendleton': 'Mr. McConkey', 'Heather Locklear': 'Roma Schleine', 'Will Toale': 'Briefs Model', 'Marceline Hugot': 'Nurse', 'Pell James': 'Julie', 'Quddus': 'Party Guy (as Benjamin Quddus Philippe)', 'Russell Steinberg': 'Party Guy', 'Fisher Stevens': 'Fisher Stevens', 'Susanna Frazer': 'Ballet Teacher', 'Wynter Kullman': 'Holly'}" tt0070915,"{'Burt Reynolds': ""Bobby 'Gator' McKlusky"", 'Jennifer Billingsley': 'Lou', 'Ned Beatty': 'Sheriff J.C. Connors', 'Bo Hopkins': 'Roy Boone', 'Matt Clark': 'Dude Watson', 'Louise Latham': 'Martha Culpepper', 'Diane Ladd': 'Maggie (as Diane Lad)', 'R.G. Armstrong': 'Big Bear', 'Conlan Carter': 'Deputy', 'Dabbs Greer': 'Pa McKlusky', 'Lincoln Demyan': 'Warden', 'John Steadman': 'Skeeter', 'Iris Korn': 'Ma McKlusky', 'Stephanie Burchfield': 'Jenny', 'Barbara Muller': 'Louella'}" tt0098546,"{""'Weird Al' Yankovic"": 'George Newman', 'Victoria Jackson': 'Teri Campbell', 'Kevin McCarthy': 'R.J. Fletcher', 'Michael Richards': 'Stanley Spadowski', 'David Bowe': 'Bob Steckler', 'Stanley Brock': 'Harvey Bilchik', 'Anthony Geary': 'Philo', 'Trinidad Silva': 'Raul Hernandez', 'Gedde Watanabe': 'Kuni', 'Billy Barty': 'Noodles MacIntosh', 'John Paragon': 'Richard Fletcher', 'Fran Drescher': 'Pamela Finklestein', 'Sue Ane Langdon': 'Esther Bilchik', 'David Proval': 'Head Thug', 'Grant James': 'Killer Thug'}" tt0098090,"{'Robert Englund': 'Erik Destler / The Phantom', 'Jill Schoelen': 'Christine Day', 'Alex Hyde-White': 'Richard Dutton', 'Bill Nighy': 'Martin Barton', 'Stephanie Lawrence': 'La Carlotta', 'Terence Harvey': 'Insp. Hawkins', 'Nathan Lewis': 'Davies', 'Peter Clapham': 'Harrison', 'Molly Shannon': 'Meg (New York)', 'Emma Rawson': 'Meg (London)', 'Mark Ryan': 'Mott', 'Yehuda Efroni': 'The Rat Catcher', 'Terence Beesley': 'Joseph Buquet', 'Ray Jewers': 'Elise', 'Robin Hunter': 'Roland'}" tt0102926,"{'Jodie Foster': 'Clarice Starling', 'Lawrence A. Bonney': 'FBI Instructor', 'Kasi Lemmons': 'Ardelia Mapp', 'Lawrence T. Wrentz': 'Agent Burroughs', 'Scott Glenn': 'Jack Crawford', 'Anthony Heald': 'Dr. Frederick Chilton', 'Frankie Faison': 'Barney', 'Don Brockett': 'Friendly Psychopath', 'Frank Seals Jr.': 'Brooding Psychopath', 'Stuart Rudin': 'Miggs', 'Anthony Hopkins': 'Dr. Hannibal Lecter', 'Maria Skorobogatov': 'Young Clarice (as Masha Skorobogatov)', 'Jeffrie Lane': ""Clarice's Father"", 'Leib Lensky': 'Mr. Lang', ""George 'Red' Schwartz"": ""Mr. Lang's Driver (as Red Schwartz)""}" tt0086567,"{'Matthew Broderick': 'David', 'Dabney Coleman': 'McKittrick', 'John Wood': 'Falken', 'Ally Sheedy': 'Jennifer', 'Barry Corbin': 'General Beringer', 'Juanin Clay': 'Pat Healy', 'Kent Williams': 'Cabot', 'Dennis Lipscomb': 'Watson', 'Joe Dorsey': 'Conley', 'Irving Metzman': 'Richter', 'Michael Ensign': ""Beringer's Aide"", 'William Bogert': 'Mr. Lightman', 'Susan Davis': 'Mrs. Lightman', 'James Tolkan': 'Wigan', 'David Clover': 'Stockman'}" tt0086619,"{'Barbra Streisand': 'Yentl', 'Mandy Patinkin': 'Avigdor', 'Amy Irving': 'Hadass', 'Nehemiah Persoff': ""Reb Mendel 'Papa'"", 'Steven Hill': 'Reb Alter Vishkower', 'Allan Corduner': 'Shimmele', 'Ruth Goring': 'Esther Rachel', 'David de Keyser': 'Rabbi Zalman (as David De Keyser)', 'Bernard Spear': 'Tailor', 'Doreen Mantle': 'Mrs. Shaemen', 'Lynda Baron': 'Peshe (as Lynda Barron)', 'Jack Lynn': 'Bookseller', 'Anna Tzelniker': 'Mrs. Kovner', 'Miriam Margolyes': 'Sarah', 'Mary Henry': 'Mrs. Jacobs'}" tt0092003,"{'Willie Nelson': 'Doc Holliday', 'Kris Kristofferson': 'Ringo / Ringo Kid / Bill Williams', 'Johnny Cash': 'Marshal Curly Wilcox', 'Waylon Jennings': 'Hatfield - Gambler', 'John Schneider': 'Buck - Overland Stage Driver', 'Elizabeth Ashley': 'Dallas', 'Anthony Newley': ""Trevor Peacock - Old John's Whiskey Salesman"", 'Anthony Franciosa': 'Henry Gatewood - Tonto Banker (as Tony Franciosa)', 'Merritt Butrick': 'Lt. Blanchard', 'Mary Crosby': 'Mrs. Lucy Mallory', 'June Carter Cash': 'Mrs. Pickett', 'Jessi Colter': 'Martha (as Jesse Colter)', 'Alex Kubik': 'Luke Plummer (as Alex Kubic)', 'David Allan Coe': 'Ike Plummer', 'Bob Mclean': 'Chris (as Bob McLean)'}" tt0086999,"{'Lucinda Dickey': 'Kelly', 'Adolfo Quinones': ""Ozone (as Adolfo 'Shabba-Doo' Quinones)"", 'Michael Chambers': ""Turbo (as Michael 'Boogaloo Shrimp' Chambers)"", 'Susie Coelho': 'Rhonda (as Susie Bono)', 'Harry Caesar': 'Byron', 'Jo de Winter': 'Mrs. Bennett (as Jo De Winter)', 'John Christy Ewing': 'Mr. Bennett', 'Steve Notario': ""Strobe / Electro-Rockers Dancer (as Steve 'Sugarfoot' Notario)"", 'Sabrina García': 'Lucia', 'Lu Leonard': 'Head Nurse', 'Ken Olfson': 'Randall', 'Peter MacLean': 'Mr. Douglas', 'Herb Mitchell': 'Stanley', 'Sandy Lipton': 'Mrs. Snyder', 'William Cort': 'Howard Howard'}" tt0072251,"{'Walter Matthau': 'Lt. Garber', 'Robert Shaw': 'Blue', 'Martin Balsam': 'Green', 'Hector Elizondo': 'Grey', 'Earl Hindman': 'Brown', 'James Broderick': 'Denny Doyle', ""Dick O'Neill"": 'Correll', 'Lee Wallace': 'The Mayor', 'Tom Pedi': 'Caz Dolowicz', 'Beatrice Winde': 'Mrs. Jenkins', 'Jerry Stiller': 'Lt. Rico Patrone', 'Nathan George': 'Ptl. James', 'Rudy Bond': 'Police Commissioner', 'Kenneth McMillan': 'Borough Commander (as Kenneth Mc Millan)', 'Doris Roberts': ""Mayor's Wife""}" tt0071746,"{'Dustin Hoffman': 'Lenny Bruce', 'Valerie Perrine': 'Honey Bruce', 'Jan Miner': 'Sally Marr', 'Stanley Beck': 'Artie Silver', 'Frankie Man': 'Baltimore Comic', 'Rashel Novikoff': 'Aunt Mema', 'Gary Morton': 'Sherman Hart', 'Guy Rennie': 'Jack Goldstein', 'Michele Yonge': 'Nurse', 'Kathryn Witt': 'Girl (as Kathie Witt)', 'Monroe Myers': 'Hawaiin Judge', 'John DiSanti': 'John Santi', 'Mickey Gatlin': 'San Francisco Policeman', 'Martin Begley': 'San Francisco Judge', 'Mark Harris': 'Defense Attorney'}" tt0118900,"{'Jim Belushi': 'Det. Frank Divinci (as James Belushi)', 'Tupac Shakur': 'Det. Rodriguez', 'Lela Rochon': 'Cynthia Webb', 'Dennis Quaid': 'Joe Doe / William', 'James Earl Jones': 'Arthur Baylor', 'David Paymer': 'Elliot Goff', 'Wendy Crewson': 'Helen Eden', 'Gary Cole': 'Richard Simms', ""Terrence 'T.C.' Carson"": 'Manny Landrew', 'Brad Greenquist': 'Richard Stein', 'James Handy': 'Capt. Henderson', 'Kool Moe Dee': 'Lionel Hudd', 'Victor Love': 'Hooper', 'Robert LaSardo': 'Sarkasian', 'Perry Anzilotti': 'Vic'}" tt0251114,"{'Bruce Willis': 'Col. William A. McNamara', 'Colin Farrell': 'Lt. Thomas W. Hart', 'Terrence Howard': 'Lt. Lincoln A. Scott', 'Cole Hauser': 'Staff Sgt. Vic W. Bedford', 'Marcel Iures': 'Col. Werner Visser', 'Linus Roache': 'Capt. Peter A. Ross', 'Vicellous Shannon': 'Lt. Lamar T. Archer', 'Maury Sterling': 'Pfc. Dennis A. Gerber', 'Sam Jaeger': 'Capt. R.G. Sisk', 'Scott Michael Campbell': 'Cpl. Joe S. Cromin', 'Rory Cochrane': 'Sgt. Carl S. Webb', 'Sebastian Tillinger': ""Pvt. Bert D. 'Moose' Codman"", 'Rick Ravanello': 'Maj. Joe Clary', 'Adrian Grenier': 'Pvt. Daniel E. Abrams', 'Michael Weston': 'Pfc. W. Roy Potts'}" tt0070653,"{'Burt Lancaster': 'Cross', 'Alain Delon': ""Jean 'Scorpio' Laurier"", 'Paul Scofield': 'Zharkov', 'John Colicos': 'McLeod', 'Gayle Hunnicutt': 'Susan', 'J.D. Cannon': 'Filchock', 'Joanne Linville': 'Sarah', 'Mel Stewart': 'Pick (as Melvin Stewart)', 'Vladek Sheybal': 'Zemetkin', 'Mary Maude': 'Anne', 'Jack Colvin': 'Thief', 'James Sikking': 'Harris', 'Burke Byrnes': 'Morrison', 'William Smithers': 'Mitchell', 'Shmuel Rodensky': 'Lang'}" tt0089730,"{'Lauren Hutton': 'Countess', 'Jim Carrey': 'Mark Kendall', 'Karen Kopins': 'Robin Pierce', 'Cleavon Little': 'Sebastian', 'Thomas Ballatore': 'Jamie', 'Skip Lackey': 'Russ', 'Jeb Stuart Adams': 'World War I Ace Vampire (as Jeb Adams)', 'Joseph Brutsman': 'Confederate Vampire', 'Stuart Charno': 'Cabin Boy Vampire', 'Robin Klein': 'Flowerchild Vampire', 'Glen Mauro': 'Twin Vampire #1', 'Gary Mauro': 'Twin Vampire #2', 'Carey More': 'Moll Flanders Vampire', 'Peter Elbling': 'Bookseller', 'Richard Schaal': 'Mr. Kendall'}" tt0091699,"{'Plácido Domingo': 'Otello', 'Katia Ricciarelli': 'Desdemona', 'Justino Díaz': 'Iago', 'Petra Malakova': 'Emilia', 'Urbano Barberini': 'Cassio', 'Massimo Foschi': 'Lodovico', 'Edwin Francis': 'Montano', 'Sergio Nicolai': 'Roderigo', 'Remo Remotti': 'Brabantio', 'Antonio Pierfederici': 'Doge', 'Gabriella Borni': 'Dancer Soloist', 'Peter Lapres': ""Cassio's Aide""}" tt0105046,"{'John Malkovich': 'Lennie Small', 'Gary Sinise': 'George Milton', 'Ray Walston': 'Candy', 'Casey Siemaszko': 'Curley', 'Sherilyn Fenn': ""Curley's Wife"", 'John Terry': 'Slim', 'Richard Riehle': 'Carlson', 'Alexis Arquette': 'Whitt', 'Joe Morton': 'Crooks', 'Noble Willingham': 'The Boss', ""Joe D'Angerio"": 'Jack', 'Tuck Milligan': 'Mike', 'David Steen': 'Tom', 'Moira Sinise': 'Girl in Red Dress (as Moira Harris)', 'Mark Boone Junior': 'Bus Driver'}" tt0094783,"{'James Woods': 'Lenny Brown', 'Sean Young': 'Linda Brown', 'John Kapelos': 'Joel Miller', 'Steven Hill': 'Max Sherman', 'Kelle Kerr': 'Rochelle', 'John Rothman': 'Ned', 'Amanda Blake': 'Barbara', 'Grace Zabriskie': 'Sheryl', 'Marc Poppel': 'Mark', 'Fred McCarren': 'Tom', 'Suzanne Kent': 'Helen', 'Libby Boone': 'Delores', 'Greg Deason': 'Michael', 'David Preston': 'Surfer', 'June Chandler': 'Secretary'}" tt0078790,"{'Tim Conway': 'Amos Tucker', 'Don Knotts': 'Theodore', 'Tim Matheson': 'Pvt. Jeff Reed - aka Capt. Phillips', 'Kenneth Mars': 'Marshal Woolly Bill Hitchcock', 'Elyssa Davalos': 'Miss Millie Gaskill', 'Jack Elam': 'Big Mac', 'Robert Pine': 'Lt. Jim Ravencroft', 'Harry Morgan': 'Maj. T.P. Gaskill', 'Ruth Buzzi': ""Old Tough Kate - aka 'Granny'"", 'Audrey Totter': 'Martha Osten - Blind Cabin Widow', 'Richard X. Slattery': 'Sgt. Slaughter - Head Soldier', 'John Crawford': 'Capt. Sherick', 'Cliff Osmond': 'Wes Hardin - Bank Robber', 'Ted Gehring': 'Hank Starrett - Bank Robber', 'Morgan Paull': 'Corporal #1'}" tt0086993,"{'Mel Gibson': 'Fletcher Christian', 'Anthony Hopkins': 'Lt. William Bligh', 'Laurence Olivier': 'Admiral Hood', 'Edward Fox': 'Captain Greetham', 'Daniel Day-Lewis': 'Fryer', 'Bernard Hill': 'Cole', 'Phil Davis': 'Young (as Philip Davis)', 'Liam Neeson': 'Churchill', 'Wi Kuki Kaa': 'King Tynah', 'Tevaite Vernette': 'Mauatua', 'Philip Martin Brown': 'Adams', 'Simon Chandler': 'Nelson', 'Malcolm Terris': 'Doctor Huggan', 'Simon Adams': 'Heywood', 'John Sessions': 'Smith'}" tt0068931,"{'Charles Bronson': 'Arthur Bishop', 'Jan-Michael Vincent': 'Steve McKenna', 'Keenan Wynn': 'Harry McKenna', 'Jill Ireland': 'The Girl', 'Linda Ridgeway': ""Louise, Steve McKenna's Girlfriend"", 'Frank DeKova': 'The Man (as Frank De Kova)', 'James Davidson': 'Intern', 'Lindsay Crosby': 'Policeman (as Lindsay H. Crosby)', 'Steve Cory': 'Messenger', 'Tak Kubota': 'Yamoto (as Takayuki Kubota)', ""Patrick O'Moore"": 'Old Man', 'Martin Gordon': 'American Tourist', 'Celeste Yarnall': ""The Mark's Girl"", 'Athena Lorde': 'Old Woman', 'Alison Rose': 'Young Girl'}" tt0056241,"{'Anne Bancroft': 'Annie Sullivan', 'Victor Jory': 'Captain Arthur Keller', 'Inga Swenson': 'Kate Keller', 'Andrew Prine': 'James Keller', 'Kathleen Comegys': 'Aunt Ev', 'Patty Duke': 'Helen Keller'}" tt0087231,"{'Timothy Hutton': 'Christopher Boyce', 'Sean Penn': 'Daulton Lee', 'Pat Hingle': 'Mr. Charlie Boyce', 'Joyce Van Patten': 'Mrs. Boyce', 'Rob Reed': 'Boyce Child', 'Rob Newell': 'Boyce Child', 'Karen West': 'Boyce Child', 'Art Camacho': 'Boyce Child (as Arturo Comacho)', 'Annie Kozuch': 'Boyce Child', 'Richard Dysart': 'Dr. Lee', 'Priscilla Pointer': 'Mrs. Lee', 'Chris Makepeace': 'David Lee', 'Dorian Harewood': 'Gene', 'Mady Kaplan': 'Laurie', 'Macon McCalman': 'Larry Rogers'}" tt0076210,"{'Burt Lancaster': 'Dr. Paul Moreau', 'Michael York': 'Andrew Braddock', 'Nigel Davenport': 'Montgomery', 'Barbara Carrera': 'Maria', 'Richard Basehart': 'Sayer of the Law', 'Nick Cravat': ""M'Ling"", 'The Great John L.': 'Boarman', 'Bob Ozman': 'Bullman', 'Fumio Demura': 'Hyena Man', 'Gary Baxley': 'Lionman', 'John Gillespie': 'Tigerman', 'David S. Cass Sr.': 'Bearman (as David Cass)'}" tt0057115,"{'Steve McQueen': ""Hilts 'The Cooler King'"", 'James Garner': ""Hendley 'The Scrounger'"", 'Richard Attenborough': ""Bartlett 'Big X'"", 'James Donald': ""Ramsey 'The SBO'"", 'Charles Bronson': ""Danny 'Tunnel King'"", 'Donald Pleasence': ""Blythe 'The Forger'"", 'James Coburn': ""Sedgwick 'Manufacturer'"", 'Hannes Messemer': ""Von Luger 'The Kommandant'"", 'David McCallum': ""Ashley-Pitt 'Dispersal'"", 'Gordon Jackson': ""MacDonald 'Intelligence'"", 'John Leyton': ""Willie 'Tunnel King'"", 'Angus Lennie': ""Ives 'The Mole'"", 'Nigel Stock': ""Cavendish 'The Surveyor'"", 'Robert Graf': ""Werner 'The Ferret'"", 'Jud Taylor': 'Goff'}" tt0055184,"{'Clark Gable': 'Gay Langland', 'Marilyn Monroe': 'Roslyn Taber', 'Montgomery Clift': 'Perce Howland', 'Thelma Ritter': 'Isabelle Steers', 'Eli Wallach': 'Guido', 'James Barton': ""Fletcher's Grandfather"", 'Kevin McCarthy': 'Raymond Taber', 'Estelle Winwood': 'Church Lady Collecting Money in Bar'}" tt0054428,"{'Burt Lancaster': 'Ben Zachary', 'Audrey Hepburn': 'Rachel Zachary', 'Audie Murphy': 'Cash Zachary', 'John Saxon': 'Johnny Portugal', 'Charles Bickford': 'Zeb Rawlins', 'Lillian Gish': 'Mattilda Zachary', 'Albert Salmi': 'Charlie Rawlins', 'Joseph Wiseman': 'Abe Kelsey', 'June Walker': 'Hagar Rawlins', 'Kipp Hamilton': 'Georgia Rawlins', 'Arnold Merritt': 'Jude Rawlins', 'Doug McClure': 'Andy Zachary', 'Carlos Rivas': 'Lost Bird'}" tt0383216,"{'Steve Martin': 'Clouseau', 'Kevin Kline': 'Dreyfus', 'Jean Reno': 'Ponton', 'Emily Mortimer': 'Nicole', 'Henry Czerny': 'Yuri', 'Kristin Chenoweth': 'Cherie', 'Roger Rees': 'Raymond Larocque', 'Beyoncé': 'Xania (as Beyoncé Knowles)', 'Philip Goodwin': 'Deputy Chief Renard', 'Henri Garcin': 'President', 'William Abadie': 'Bizu', 'Daniel Sauli': 'Music Producer', 'Jean Dell': 'Justice Minister Clochard', 'Anna Katarina': 'Agent Corbeille', 'Nick Toren': 'Agent Savard'}" tt0107863,"{'Mario Van Peebles': 'Jesse Lee', 'Stephen Baldwin': ""Jimmy J. 'Little J' Teeters"", 'Charles Lane': 'Weezie', ""Tommy 'Tiny' Lister"": 'Obobo (as Tiny Lister)', 'Big Daddy Kane': 'Father Time', 'Billy Zane': 'Colonel Graham', 'Blair Underwood': 'Carver', 'Melvin Van Peebles': 'Papa Joe', 'Salli Richardson-Whitfield': 'Lana (as Salli Richardson)', 'Tone Loc': 'Angel', 'Pam Grier': 'Phoebe', 'Vesta Williams': 'Vera (as Vesta)', 'Isaac Hayes': 'Cable', 'Richard Jordan': 'Sheriff Bates', 'Paul Bartel': 'Mayor Bigwood'}" tt0091875,"{'Gregory Hines': 'Ray Hughes', 'Billy Crystal': 'Danny Costanzo', 'Steven Bauer': 'Det. Frank Sigliano', 'Darlanne Fluegel': 'Anna Costanzo', 'Joe Pantoliano': 'Snake', 'Dan Hedaya': 'Captain Logan', 'Jon Gries': 'Det. Tony Montoya (as Jonathan Gries)', 'Tracy Reed': 'Maryann', 'Jimmy Smits': 'Julio Gonzales', 'John DiSanti': 'Vinnie', 'Larry Hankin': 'Ace', 'Don Calfa': ""Women's Room Lawyer"", 'Robert Lesser': 'Supoena Lawyer', 'Betty Carvalho': 'Apartment Manager', 'Louis Perez': 'Thug'}" tt0108187,"{'Roberto Benigni': 'Gendarme Jacques Gambrelli', 'Herbert Lom': 'Police Commisioner Charles Dreyfus', 'Claudia Cardinale': 'Maria Gambrelli', 'Shabana Azmi': 'Queen', 'Debrah Farentino': 'Princess Yasmin', 'Jennifer Edwards': 'Yussa', 'Robert Davi': 'Hans Zarba', 'Mark Schneider': 'Arnon', 'Mike Starr': 'Hanif', 'Kenny Spalding': 'Garth', 'Anton Rodgers': 'Police Chief Charles Lazar', 'Burt Kwouk': 'Cato Fong', 'Graham Stark': 'Professor Auguste Balls', 'Oliver Cotton': 'King Haroak', 'Aharon Ipalé': 'Gen. Jaffar'}" tt0098042,"{'Laura Alcalde': 'Customer #2', 'Madison Arnold': 'Plumber #1', 'Carmen Alvarez Block': 'Mrs. Rifkin', 'Lisa Blount': 'Phyllis', 'Alan Blumenfeld': 'Lew', 'Thomas Byrd': 'Mr. Holstrom (as Tom Byrd)', 'Frederick Coffin': 'Sgt. Haroldson', 'Richard Embardo': 'Frankie', 'Teri Garr': 'Sunny', 'Carole Goldman': 'Mrs. Colby', 'Debra Lamb': ""Panetti's Dancer (as Deborah Lamb)"", 'James Lashly': 'Cop #1 (as James Lashley)', 'John Lithgow': 'Dave', 'Ada Maris': 'Customer #1', 'Bruce McGill': 'Ernie'}" tt0114287,"{'Liam Neeson': 'Rob Roy', 'Jessica Lange': 'Mary', 'John Hurt': 'Montrose', 'Tim Roth': 'Cunningham', 'Eric Stoltz': 'McDonald', 'Andrew Keir': 'Argyll', 'Brian Cox': 'Killearn', 'Brian McCardie': 'Alasdair', 'Gilbert Martin': 'Guthrie', 'Vicki Masson': 'Betty', 'Gilly Gilchrist': 'Iain', 'Jason Flemyng': 'Gregor', 'Ewan Stewart': 'Coll', 'David Hayman': 'Sibbald', 'Brian McArthur': 'Ranald'}" tt0122690,"{'Robert De Niro': 'Sam', 'Jean Reno': 'Vincent', 'Natascha McElhone': 'Deirdre', 'Stellan Skarsgård': 'Gregor', 'Sean Bean': 'Spence', 'Skipp Sudduth': 'Larry', 'Michael Lonsdale': 'Jean-Pierre', 'Jan Tríska': 'Dapper Gent', 'Jonathan Pryce': ""Seamus O'Rourke"", 'Ron Perkins': 'Man with the Newspaper', 'Féodor Atkine': 'Mikhi', 'Katarina Witt': 'Natacha Kirilova', 'Bernard Bloch': 'Sergi', 'Dominic Gugliametti': 'Clown Ice Skater', 'Alan Beckworth': 'Clown Ice Skater'}" tt0075268,"{'Jeff Bridges': 'Craig Blake', 'Sally Field': 'Mary Tate Farnsworth', 'Arnold Schwarzenegger': 'Joe Santo', 'R.G. Armstrong': 'Thor Erickson', 'Robert Englund': 'Franklin', 'Helena Kallianiotes': 'Anita', 'Roger E. Mosley': 'Newton', 'Woodrow Parfrey': 'Uncle Albert', 'Scatman Crothers': 'William', 'Kathleen Miller': 'Dorothy Stephens', 'Fannie Flagg': 'Amy', 'Joanna Cassidy': 'Zoe', 'Richard Gilliland': 'Hal', 'Mayf Nutter': 'Richard Packman', 'Ed Begley Jr.': 'Lester'}" tt0102103,"{'Judy Davis': 'George Sand', 'Hugh Grant': 'Frederic Chopin', 'Mandy Patinkin': 'Alfred De Musset', 'Bernadette Peters': ""Marie D'Agoult"", 'Julian Sands': 'Franz Liszt', 'Ralph Brown': 'Eugene Delacroix', 'Georges Corraface': 'Felicien Mallefille', 'Anton Rodgers': ""Duke D'Antan"", 'Emma Thompson': ""Duchess D'Antan"", 'Anna Massey': ""George Sand's Mother"", 'David Birkin': 'Maurice', 'Nimer Rashed': 'Didier', 'Fiona Vincente': 'Solange', 'John Savident': 'Buloz', 'Lucy Speed': 'Young Aurora'}" tt0059287,"{'Annette Funicello': 'Dee Dee', 'Dwayne Hickman': 'Ricky', 'Brian Donlevy': ""B.D. 'Big Deal' MacPherson"", 'Harvey Lembeck': 'Eric Von Zipper', 'Beverly Adams': 'Cassandra', 'John Ashley': 'Johnny', 'Jody McCrea': 'Bonehead', 'Marianne Gaba': 'Animal', 'Len Lesser': 'North Dakota Pete', 'Irene Tsu': 'Native Girl', 'Arthur Julian': 'Dr. Melamed', 'Bobbie Shaw Chance': 'Khola Koku (as Bobbi Shaw)', 'Buster Keaton': 'Bwana', 'The Kingsmen': 'The Kingsmen', 'Alberta Nelson': 'Puss'}" tt0089348,"{'Chuck Norris': 'Matt Hunter', 'Richard Lynch': 'Mikhail Rostov', 'Melissa Prophet': 'Dahlia McGuire', 'Alexander Zale': 'Nikko', 'Alex Colon': 'Tomas', 'Eddie Jones': 'Cassidy', 'Jon DeVries': 'Johnston', ""James O'Sullivan"": 'Harper', 'Billy Drago': 'Mickey', 'Jaime Sánchez': 'Castillo (as Jaime Sanchez)', 'Dehl Berti': 'John Eagle', 'Stephen Markle': 'Flynn', 'Shane McCamey': 'Kurt', 'Martin Shakar': 'Adams', 'James Pax': 'Koyo'}" tt0102005,"{'Mickey Rourke': 'Harley Davidson', 'Don Johnson': 'Marlboro', 'Chelsea Field': 'Virginia Slim', 'Daniel Baldwin': 'Alexander', 'Giancarlo Esposito': 'Jimmy Jiles', 'Vanessa Williams': 'Lulu Daniels', 'Robert Ginty': 'Thom', 'Tia Carrere': 'Kimiko', 'Julius Harris': 'Old Man', 'Eloy Casados': 'Jose', 'Big John Studd': 'Jack Daniels', 'Tom Sizemore': 'Chance Wilder', 'Mitzi Martin': 'The Woman', 'Kelly Hu': 'Suzie', 'James Nardini': 'Punk with Gun'}" tt0093200,"{'Robert Townsend': 'Bobby Taylor / Jasper / Speed / Sam Ace / Rambro', 'Craigus R. Johnson': 'Stevie Taylor', 'Helen Martin': ""Bobby's Grandmother"", 'Starletta DuPois': ""Bobby's Mother"", 'Marc Figueroa': 'Sitcom Father / Client #2', 'Sarah Kaite Coughlan': 'Sitcom Girlfriend / Rehearsing Actress (as Sarah Kate Coughlin)', 'Sean Michal Flynn': 'Sitcom Boyfriend', 'Brad Sanders': 'Batty Boy', 'David McKnight': 'Uncle Ray', 'Keenen Ivory Wayans': 'Donald / Jheri Curl', 'Lou B. Washington': 'Tiny (as Ludie Washington)', 'Anne-Marie Johnson': 'Lydia / Willie Mae / Hooker #5', 'Don Reed': 'Maurice', 'Kim Wayans': 'Customer in Chair', ""Gregory 'Popeye' Alexander"": 'Pimp / Eddie Murphy-Type'}" tt0080895,"{'Susan Saint James': 'Jane', 'Jane Curtin': 'Elaine', 'Jessica Lange': 'Louise', 'Richard Benjamin': 'Albert', 'Eddie Albert': 'Max', 'Cathryn Damon': 'Natalie', 'Dabney Coleman': 'Jack Heintzel', 'Fred Willard': 'Robert', 'Art Metrano': 'Gas Station Attendant', 'Ronnie Schell': 'Bill Pike', 'Michael Bell': 'Tom', 'Sybil Danning': 'Charlotte', 'Al Checco': 'Tim Lundy', 'Susan Tolsky': 'Patty', 'Garrett Morris': 'Power & Light Man'}" tt0085672,"{'Lou Ferrigno': 'Hercules', 'Brad Harris': 'King Augeias', 'Sybil Danning': 'Adriana', 'Rossana Podestà': 'Hera', 'Ingrid Anderson': 'Cassiopeia', ""Mirella D'Angelo"": 'Circe', 'William Berger': 'King Minos', 'Bobby Rhodes': 'King Xenodama', 'Gianni Garko': 'Valcheus (as John Garko)', 'Yehuda Efroni': 'Dorcon', 'Delia Boccardo': 'Athena', 'Claudio Cassinelli': 'Zeus', 'Franco Garofalo': 'The Thief (as Frank Garland)', 'Gabriella Giorgelli': 'Mother (as Gabriella George)', 'Raf Baldassarre': 'Sostratos (as Ralph Baldassar)'}" tt0068673,"{'Fred Williamson': 'B.J. Hammer', 'Bernie Hamilton': 'Davis', 'Vonetta McGee': 'Lois', 'William Smith': 'Brenner', 'Charles Lampkin': 'Big Sid', 'Elizabeth Harding': 'Rhoda', 'Mel Stewart': 'Professor', ""D'Urville Martin"": 'Sonny', 'Stack Pierce': 'Roughhouse', 'Jamal Moore': 'Henry Jones', 'Nawana Davis': 'Mary', 'John Quade': 'Riley', 'Johnny Silver': 'Tiny', 'Juan DeCarlos': 'Bruiser (as Juan De Carlos)', 'Jorge Cervera Jr.': 'Medina (as George Cervera Jr.)'}" tt0109913,"{'V.S. Brodie': 'Ely', 'Guinevere Turner': ""Camille 'Max' West"", 'T. Wendy McMillan': 'Kia', 'Migdalia Melendez': 'Evy', 'Anastasia Sharp': 'Daria', 'Mary Garvey': 'Student #1 (jury member)', 'Jennifer Allen': 'Student #2', 'Walter Youngblood': 'Student #3', 'Danielia Falcon': 'Student #4 (jury member)', 'Art Stone': 'Student #5', 'Elspeth Kydd': 'Angry Student', 'Tracy Kimme': 'Student #6 (jury member)', 'Brooke Webster': 'Mel', 'Mimi Weddell': 'Mimi', 'Scout': 'Haircutter'}" tt0048254,"{'Frank Silvera': 'Vinnie Rapallo', 'Jamie Smith': 'Davey Gordon', 'Irene Kane': 'Gloria Price', 'Jerry Jarrett': 'Albert', 'Mike Dana': 'Gangster', 'Felice Orlandi': 'Gangster', ""Shaun O'Brien"": 'Landlord', 'Barbara Brand': 'Taxi Dance Lady', 'David Vaughan': 'Conventioneer #1', 'Alec Rubin': 'Conventioneer #2', 'Ralph Roberts': 'Bouncer #1', 'Phil Stevenson': 'Bouncer #2', 'Arthur Feldman': 'Policeman #1', 'Bill Funaro': 'Taxi Driver', 'Skippy Adelman': 'Mannequin Factory Owner'}" tt0071706,"{'Richard Harris': 'Lt. Cmdr. Anthony Fallon', 'Omar Sharif': 'Captain Alex Brunel', 'David Hemmings': 'Charlie Braddock', 'Anthony Hopkins': 'Supt. John McCleod', 'Shirley Knight': 'Barbara Bannister', 'Ian Holm': 'Nicholas Porter', 'Clifton James': 'Corrigan', 'Roy Kinnear': 'Social Director Curtain', 'Caroline Mortimer': 'Susan McCleod', 'Mark Burns': 'Hollingsworth', 'John Stride': 'Hughes', 'Freddie Jones': 'Sidney Buckland', 'Julian Glover': 'Commander Marder', 'Jack Watson': 'Chief Engineer Mallicent', 'Roshan Seth': 'Azad'}" tt0070379,"{'Robert De Niro': 'Johnny Boy', 'Harvey Keitel': 'Charlie', 'David Proval': 'Tony', 'Amy Robinson': 'Teresa', 'Richard Romanus': 'Michael', 'Cesare Danova': 'Giovanni', 'Victor Argo': 'Mario (as Vic Argo) (as Victor Argo)', 'George Memmoli': 'Joey', 'Lenny Scaletta': 'Jimmy', 'Jeannie Bell': 'Diane', 'Murray Moston': 'Oscar (as Murray Mosten)', 'David Carradine': 'Drunk', 'Robert Carradine': 'Boy With Gun', 'Lois Walden': 'Jewish Girl', 'Harry Northup': 'Soldier'}" tt0283897,"{'Robert Duvall': 'John J.', 'Rubén Blades': 'Miguel', 'Kathy Baker': 'Maggie', 'Luciana Pedraza': 'Manuela', 'Julio Oscar Mechoso': 'Orlando', 'James Keane': 'Whitey', 'Frank Gio': 'Frankie (as Frankie Gio)', 'Kate Micheaux': 'Jenny', 'Frank Cassavetes': 'Jo Jo', 'Michael Corrente': 'Cop at Newsstand', 'Raúl Outeda': 'Tony Manas', 'Géraldine Rojas': 'Pirucha', 'Renee Victor': 'Stella', 'Richard Marquez': 'Salsa Band Member', 'Nelson Marquez': 'Salsa Band Member'}" tt0373469,"{'Robert Downey Jr.': 'Harry Lockhart', 'Val Kilmer': 'Gay Perry', 'Michelle Monaghan': 'Harmony Faith Lane', 'Corbin Bernsen': 'Harlan Dexter', 'Dash Mihok': 'Mr. Frying Pan', 'Larry Miller': 'Dabney Shaw', 'Rockmond Dunbar': 'Mr. Fire', 'Shannyn Sossamon': 'Pink Hair Girl', 'Angela Lindvall': 'Flicka', 'Indio Falconer Downey': 'Harry Lockhart - Age 9', 'Ariel Winter': 'Harmony Faith Lane - Age 7', 'Duane Carnahan': 'Chainsaw Kid', 'Josh Richman': 'Richie', 'Martha Hackett': 'Pistol Woman', 'Nancy Fish': 'N.Y. Casting Woman'}" tt0105690,"{'Steven Seagal': 'Casey Ryback', 'Damian Chapa': 'Tackman', 'Troy Evans': 'Granger', 'David McKnight': 'Flicker', 'Lee Hinton': 'Cue Ball', ""Patrick O'Neal"": 'Captain Adams', 'Gary Busey': 'Commander Krill', 'Glenn Morshower': 'Ensign Taylor', 'Leo Alexander': 'Lt. Smart', 'John Rottger': 'Commander Green', 'Brad Rea': 'Marine Guard', 'Michael Welden': 'Lt. Ballard', 'Bernie Casey': 'Commander Harris', 'Rickey Pierre': 'Kitchen Helper', 'Raymond Cruz': 'Ramirez'}" tt0438488,"{'Christian Bale': 'John Connor', 'Sam Worthington': 'Marcus Wright', 'Moon Bloodgood': 'Blair Williams', 'Helena Bonham Carter': 'Dr. Serena Kogan', 'Anton Yelchin': 'Kyle Reese', 'Jadagrace': 'Star (as Jadagrace Berry)', 'Bryce Dallas Howard': 'Kate Connor', 'Common': 'Barnes', 'Jane Alexander': 'Virginia', 'Michael Ironside': 'General Ashdown', ""Ivan G'Vera"": 'General Losenko (as Ivan Gvera)', 'Chris Browning': 'Morrison', 'Dorian Nkono': 'David', 'Beth Bailey': 'Lisa', 'Victor J. Ho': 'Mark (as Victor Ho)'}" tt0059825,"{'Burt Lancaster': 'Paul Labiche', 'Paul Scofield': 'Colonel Franz Von Waldheim', 'Jeanne Moreau': 'Christine', 'Suzanne Flon': 'Mlle. Villard', 'Michel Simon': 'Papa Boule', 'Wolfgang Preiss': 'Major Herren', 'Albert Rémy': 'Didont (as Albert Remy)', 'Charles Millot': 'Pesquet', 'Richard Münch': 'General Von Lubitz (as Richard Munch)', 'Jacques Marin': 'Jacques - Rive-Reine Station Master', 'Paul Bonifas': 'Spinet - Resistance Leader', 'Jean Bouchaud': 'Captain Schmidt', ""Donald O'Brien"": ""Sergeant Schwartz (as Donal O'Brien)"", 'Jean-Pierre Zola': 'Octave', 'Arthur Brauss': 'Pilzer (as Art Brauss)'}" tt0091055,"{'Chuck Norris': 'Max Donigan', 'Louis Gossett Jr.': 'Leo Porter', 'Melody Anderson': 'Patricia Goodwin', 'Will Sampson': 'Tall Eagle', 'Sonny Landham': 'El Coyote', 'John Rhys-Davies': 'Corky Taylor', 'Ian Abercrombie': 'Boggs', 'Richard Lee-Sung': 'Chinese Man / The General', 'Zaide Silvia Gutiérrez': 'Indian Girl', 'Álvaro Carcaño': 'Willie', 'John Hazelwood': 'Tubbs', 'José Escandón': 'Co-Pilot', 'Mario Arévalo': 'Guerilla Leader', 'Juan Jaramillo': 'Tough Guerilla', 'Miguel Ángel Fuentes': 'Big Man (as Miguel Fuentes)'}" tt0295289,"{'Jason Lee': 'Paul', 'Julia Stiles': 'Becky', 'Selma Blair': 'Karen', 'James Brolin': 'Ken', 'Shawn Hatosy': 'Jim', 'Lochlyn Munro': 'Ray', 'Diana Scarwid': 'Sandra', 'David Koechner': 'Buck', 'Julie Hagerty': 'Dorothy', 'Thomas Lennon': 'Pete', 'Jackie Burroughs': 'Aunt Budge', 'Jay Brazeau': 'Howard', 'Matthew Walker': 'Minister Green', 'Fred Ewanuick': 'Jeff', 'Lisa Calder': 'Tonya'}" tt0052896,"{'Frank Sinatra': 'Tony Manetta', 'Edward G. Robinson': 'Mario Manetta', 'Eleanor Parker': 'Eloise Rogers', 'Carolyn Jones': 'Shirl', 'Thelma Ritter': 'Sophie Manetta', 'Keenan Wynn': 'Jerry Marks', 'Joi Lansing': 'Dorine', 'Connie Sawyer': 'Miss Wexler', 'James Komack': 'Julius Manetta (as Jimmy Komack)', 'Dub Taylor': 'Fred', 'George DeWitt': 'Mendy Yales', 'Benny Rubin': 'Abe Diamond', 'Ruby Dandridge': 'Sally', 'B.S. Pully': 'Hood', 'Joyce Nizzari': 'Alice'}" tt0096769,"{'Judie Aronson': 'Jennifer (segment ""A Night on the Town"")', 'Marg Helgenberger': 'Alex (segment ""All Night Operator"")', 'Marc McClure': 'Kevin (segment ""The Old Dark House"")', 'Ed Monaghan': 'Russ (segment ""Allison\'s Story"")', 'Alan Rosenberg': 'Richard (segment ""All Night Operator"")', 'Monique Salcido': 'Lisa (segment ""A Night on the Town"")', 'Pamela Adlon': 'Cheryl (segment ""Allison\'s Story) (as Pamela Segall)', 'Penelope Sudrow': 'Kelly (segment ""A Night on the Town"")', 'Nadine Van der Velde': 'Joan (segment ""The Old Dark House"")', 'Tracy Wells': 'Amy (segment ""A Night on the Town"")', 'Ramy Zada': 'Prof. Edward Derek (segment ""Allison\'s Story"")', 'Jillian McWhirter': 'Allison (segment ""Allison\'s Story"")', 'Patty Avery': 'Pat (segment ""Allison\'s Story"")', 'Kent Burden': 'Ron (segment ""Allison\'s Story"")', 'Jordana Capra': 'Vanessa (segment ""All Night Operator"")'}" tt0049414,"{'Robert Wagner': 'Bud Corliss', 'Jeffrey Hunter': 'Gordon Grant', 'Virginia Leith': 'Ellen Kingship', 'Joanne Woodward': 'Dorothy Kingship', 'Mary Astor': 'Mrs. Corliss', 'George Macready': 'Leo Kingship', 'Robert Quarry': 'Dwight Powell', 'Howard Petrie': 'Police Chief Howard Chesser', 'Bill Walker': 'Bill', 'Molly McCart': 'Annabelle Koch', 'Marlene Felton': 'Medical Student'}" tt0303714,"{'Ice Cube': 'Calvin Palmer', 'Anthony Anderson': 'J.D.', 'Cedric the Entertainer': 'Eddie', 'Sean Patrick Thomas': 'Jimmy James', 'Eve': 'Terri Jones', 'Troy Garity': 'Isaac Rosenberg', 'Michael Ealy': 'Ricky Nash', 'Leonard Earl Howze': 'Dinka', 'Keith David': 'Lester Wallace', 'Jazsmin Lewis': 'Jennifer Palmer', 'Lahmard J. Tate': 'Billy (as Lahmard Tate)', 'Tom Wright': 'Detective Williams', 'Jason George': 'Kevin', 'DeRay Davis': 'Hustle Guy', 'Sonya Eddy': 'Janelle'}" tt0069897,"{'Pam Grier': 'Coffy', 'Booker Bradshaw': 'Howard Brunswick', 'Robert DoQui': 'King George', 'William Elliott': 'Carter', 'Allan Arbus': 'Arturo Vitroni', 'Sid Haig': 'Omar', 'Barry Cahill': 'McHenry', 'Lee de Broux': 'Nick', 'Ruben Moreno': 'Ramos', 'Lisa Farringer': 'Jeri', 'Carol Locatell': 'Priscilla (as Carol Lawson)', 'Linda Haynes': 'Meg', 'John Perak': 'Aleva', 'Mwako Cumbuka': 'Grover', 'Morris Buchanan': 'Sugarman'}" tt0086946,"{'Rae Dawn Chong': 'Tracy Carlson', 'Guy Davis': ""Kenny 'Double K' Kirkland"", 'Jon Chardiet': 'Ramon', 'Leon W. Grant': 'Chollie', 'Saundra Santiago': 'Carmen Cararro', 'Robert Taylor': 'Lee Kirkland', 'Mary Alice': 'Cora (as Mary Alice Smith)', 'Shawn Elliott': 'Domingo', 'Jim Borrelli': 'Monte', 'Dean Elliott': 'Henri', 'Franc Reyes': 'Luis', 'Tonya Pinkins': 'Angela', 'Lee Chamberlin': 'Alicia', 'Antonia Rey': 'Flora', 'Duane Jones': 'Robert'}" tt0068284,"{'William Marshall': 'Blacula / Mamuwalde', 'Vonetta McGee': 'Tina / Luva', 'Denise Nicholas': 'Michelle', 'Thalmus Rasulala': 'Dr. Gordon Thomas', 'Gordon Pinsent': 'Lt. Jack Peters', 'Charles Macaulay': 'Dracula', 'Emily Yancy': 'Nancy', 'Lance Taylor Sr.': 'Swenson', 'Ted Harris': 'Bobby McCoy', 'Rick Metzler': 'Billy Schaffer', 'Ji-Tu Cumbuka': 'Skillet (as Jitu Cumbuka)', 'Logan Field': 'Sgt. Barnes', 'Ketty Lester': 'Juanita Jones', 'Elisha Cook Jr.': 'Sam (as Elisha Cook)', 'Eric Brotherson': 'Real Estate Agent'}" tt0055798,"{'Burt Lancaster': 'Robert Franklin Stroud', 'Karl Malden': 'Harvey Shoemaker', 'Thelma Ritter': 'Elizabeth Stroud', 'Neville Brand': 'Bull Ransom', 'Betty Field': 'Stella Johnson', 'Telly Savalas': 'Feto Gomez', ""Edmond O'Brien"": 'Tom Gaddis', 'Hugh Marlowe': 'Albert Comstock', 'Whit Bissell': 'Dr. Ellis', 'Crahan Denton': 'Kramer', 'James Westerfield': 'Jess Younger'}" tt0068309,"{'Barbara Hershey': 'Boxcar Bertha', 'David Carradine': 'Big Bill Shelly', 'Barry Primus': 'Rake Brown', 'Bernie Casey': 'Von Morton', 'John Carradine': 'H. Buckram Sartoris', 'Victor Argo': 'McIver #1', 'David Osterhout': 'McIver #2 (as David R. Osterhout)', 'Grahame Pratt': 'Emeric Pressburger (credit only)', ""'Chicken' Holleman"": 'M. Powell (credit only)', 'Harry Northup': 'Harvey Hall (as Harry Northrup)', 'Ann Morell': 'Tillie Parr', 'Marianne Dole': 'Mrs. Mailler', 'Joe Reynolds': 'Joe Cox'}" tt0097138,"{'Jean-Claude Van Damme': 'Gibson Rickenbacker', 'Deborah Richter': 'Nady Simmons', 'Vincent Klyn': 'Fender Tremolo', 'Alex Daniels': 'Marshall Strat', 'Dayle Haddon': 'Pearl Prophet', 'Blaise Loong': 'Furman Vux / Pirate / Bandit', 'Ralf Moeller': 'Brick Bardo (as Rolf Muller)', 'Haley Peterson': 'Haley', 'Terrie Batson': 'Mary', ""Jackson 'Rock' Pinckney"": 'Tytus / Pirate / Bandit', 'Janice Graser': 'Vorg', 'Robert Pentz': 'Base / Pirate / Bandit', 'Sharon K. Tew': 'Prather / Pirate / Bandit', 'Chuck Allen': 'Vondo / Pirate / Bandit', 'Stefanos Miltsakakis': 'Xylo / Pirate / Bandit'}" tt0085384,"{'David Niven': 'Sir Charles Litton', 'Robert Wagner': 'George Lytton', 'Herbert Lom': 'Chief Insp. Charles LaRousse Dreyfus', 'Joanna Lumley': 'Countess Chandra', 'Capucine': 'Lady Simone Litton', 'Robert Loggia': 'Bruno Langois', 'Harvey Korman': 'Prof. Auguste Balls', 'Burt Kwouk': 'Cato Fong', 'Ted Wass': 'Sergeant Clifton Sleigh', 'Roger Moore': 'Chief Insp. Jacques Clouseau (as Turk Thrust II)', 'Leslie Ash': 'Juleta Shane (AKA Julie Morgan)', 'Graham Stark': 'Bored Waiter', 'André Maranne': 'Sergeant Francois Duval', 'Peter Arne': 'General Bufoni', 'Patti Davis': 'Michelle Chauvin (as Patricia Davis)'}" tt0069976,"{'Warren Oates': 'John Dillinger', 'Ben Johnson': 'Melvin Purvis', 'Michelle Phillips': 'Billie Frechette', 'Cloris Leachman': 'Anna Sage', 'Harry Dean Stanton': 'Homer Van Meter', 'Geoffrey Lewis': 'Harry Pierpont', 'John P. Ryan': 'Charles Mackley (as John Ryan)', 'Richard Dreyfuss': 'Baby Face Nelson', 'Steve Kanaly': 'Pretty Boy Floyd', 'John Martino': 'Eddie Martin', 'Roy Jenson': 'Samuel Cowley', 'Read Morgan': 'Big Jim Wollard', 'Frank McRae': 'Reed Youngblood'}" tt0080661,"{'Michael Caine': 'Doctor Robert Elliott', 'Angie Dickinson': 'Kate Miller', 'Nancy Allen': 'Liz Blake', 'Keith Gordon': 'Peter Miller', 'Dennis Franz': 'Detective Marino', 'David Margulies': 'Dr. Levy', 'Ken Baker': 'Warren Lockman', 'Susanna Clemm': 'Betty Luce', 'Brandon Maggart': 'Cleveland Sam', 'Amalie Collier': 'Cleaning Woman', 'Mary Davenport': 'Woman in Restaurant', 'Anneka Di Lorenzo': 'Nurse (as Anneka De Lorenzo)', 'Norman Evans': 'Ted', 'Robbie L. McDermott': 'Man in Shower', 'Bill Randolph': 'Chase Cabbie'}" tt0106873,"{'Armand Assante': 'Ned Ravine', 'Sherilyn Fenn': 'Laura Lincolnberry', 'Kate Nelligan': 'Lana Ravine', 'Sean Young': 'Lola Cain', 'Christopher McDonald': 'Frank Kelbo', 'James Remar': 'Max Shady', 'Tony Randall': 'Judge Skanky', 'Clarence Clemons': 'Clarence', 'Michael Cumpsty': ""Laura's Husband"", 'John Witherspoon': 'Arch', 'Blake Clark': 'Milo Crumley', 'Edward Blanchard': 'Restroom Patron', 'David Greenlee': 'Restroom Stall Patron', 'Tim Frisbie': 'Guy in Bumper Car', 'Michael MacCleod': 'Freckle-Faced Kid'}" tt0057449,"{'Vincent Price': 'Dr. Erasmus Craven', 'Peter Lorre': 'Dr. Adolphus Bedlo', 'Boris Karloff': 'Dr. Scarabus', 'Hazel Court': 'Lenore Craven', 'Olive Sturgess': 'Estelle Craven', 'Jack Nicholson': 'Rexford Bedlo', 'Connie Wallace': 'Maid', 'William Baskin': 'Grimes', 'Aaron Saxon': 'Gort'}" tt0066130,"{'Mick Jagger': 'Ned Kelly', 'Clarissa Kaye-Mason': 'Mrs. Kelly (as Clarissa Kaye)', 'Mark McManus': 'Joe Byrne', 'Ken Goodlet': 'Supt. Nicholson', 'Frank Thring': 'Judge Barry', 'Bruce Barry': 'George King', 'Tony Bazell': 'Mr. Scott', 'Allen Bickford': 'Dan Kelly', 'Robert Bruning': 'Sgt. Steele', 'Alexander Cann': 'McInnes', 'David Copping': 'Curnow', 'Diane Craig': 'Maggie Kelly', 'Gerry Duggan': ""Father O'Hea"", 'Geoff Gilmour': 'Steve Hart', 'Anne Harvey': 'Mrs. Devine'}" tt0313911,"{'Frankie Muniz': 'Cody Banks', 'Hilary Duff': 'Natalie Connors', 'Angie Harmon': 'Ronica Miles', 'Keith David': 'CIA Director', 'Cynthia Stevenson': 'Mrs. Banks', 'Arnold Vosloo': 'Molay', 'Daniel Roebuck': 'Mr. Banks', 'Ian McShane': 'Brinkman', 'Darrell Hammond': 'Earl', 'Martin Donovan': 'Dr. Connors', 'Marc Shelton': 'Surveillance Van Agent', 'Chris Gauthier': 'Surveillance Van Agent', 'Harry Van Gorkum': 'Double Agent', 'Connor Widdows': 'Alex Banks', 'Eliza Norbury': 'Mom'}" tt1228705,"{'Robert Downey Jr.': 'Tony Stark', 'Gwyneth Paltrow': 'Pepper Potts', 'Don Cheadle': ""Lt. Col. James 'Rhodey' Rhodes"", 'Scarlett Johansson': 'Natalie Rushman / Natasha Romanoff', 'Sam Rockwell': 'Justin Hammer', 'Mickey Rourke': 'Ivan Vanko', 'Samuel L. Jackson': 'Nick Fury', 'Clark Gregg': 'Agent Coulson', 'John Slattery': 'Howard Stark', 'Garry Shandling': 'Senator Stern', 'Paul Bettany': 'JARVIS (voice)', 'Kate Mara': 'U.S. Marshal', 'Leslie Bibb': 'Christine Everhart', 'Jon Favreau': 'Happy Hogan', 'Christiane Amanpour': 'Christiane Amanpour'}" tt0085811,"{'Ken Marshall': 'Colwyn', 'Lysette Anthony': 'Lyssa', 'Freddie Jones': 'Ynyr', 'Francesca Annis': 'Widow of the Web', 'Alun Armstrong': 'Torquil', 'David Battley': 'Ergo', 'Bernard Bresslaw': 'Cyclops', 'Liam Neeson': 'Kegan', 'John Welsh': 'Seer', 'Graham McGrath': 'Titch', 'Tony Church': 'Turold', 'Bernard Archard': 'Eirig', 'Belinda Mayne': 'Vella', 'Dicken Ashworth': 'Bardolph', 'Todd Carty': 'Oswyn'}" tt0139134,"{'Sarah Michelle Gellar': 'Kathryn Merteuil', 'Ryan Phillippe': 'Sebastian Valmont', 'Reese Witherspoon': 'Annette Hargrove', 'Selma Blair': 'Cecile Caldwell', 'Louise Fletcher': 'Helen Rosemond', 'Joshua Jackson': 'Blaine Tuttle', 'Eric Mabius': 'Greg McConnell', 'Sean Patrick Thomas': 'Ronald Clifford', 'Swoosie Kurtz': 'Dr. Greenbaum', 'Christine Baranski': 'Bunny Caldwell', 'Alaina Reed-Hall': 'Nurse (as Alaina Reed Hall)', 'Deborah Offner': 'Mrs. Michalak', 'Tara Reid': 'Marci Greenbaum', 'Herta Ware': 'Mrs. Sugarman', 'Hiep Thi Le': 'Mai-Lee'}" tt0057012,"{'Peter Sellers': 'Group Capt. Lionel Mandrake / President Merkin Muffley / Dr. Strangelove', 'George C. Scott': ""Gen. 'Buck' Turgidson"", 'Sterling Hayden': 'Brig. Gen. Jack D. Ripper', 'Keenan Wynn': ""Col. 'Bat' Guano"", 'Slim Pickens': ""Maj. 'King' Kong"", 'Peter Bull': 'Russian Ambassador Alexi de Sadesky', 'James Earl Jones': 'Lt. Lothar Zogg', 'Tracy Reed': 'Miss Scott', 'Jack Creley': 'Mr. Staines', 'Frank Berry': 'Lt. H.R. Dietrich', ""Robert O'Neil"": 'Adm. Randolph', 'Glenn Beck': 'Lt. Kivel (as Glen Beck)', 'Roy Stephens': 'Frank', 'Shane Rimmer': ""Capt. 'Ace' Owens"", 'Hal Galili': 'Burpelson AFB Defense Team Member'}" tt0089886,"{'Val Kilmer': 'Chris Knight', 'Gabriel Jarret': 'Mitch Taylor (as Gabe Jarret)', 'Michelle Meyrink': 'Jordan Cochran', 'William Atherton': 'Prof. Jerry Hathaway', 'Jon Gries': 'Lazlo Hollyfeld (as Jonathan Gries)', ""Patti D'Arbanville"": 'Sherry Nugil', 'Stacy Peralta': 'Shuttle Pilot', 'Daniel Ades': 'Laser Ray Victim', 'Andres Aybar': 'Bartender', 'Louis Giambalvo': 'Major Carnagle', 'Ed Lauter': 'David Decker', 'Charles Shull': 'Air Force General', 'Beau Billingslea': 'George', 'Charles Parks': 'Larry', 'Sean Frye': 'Boy at Science Fair'}" tt0088172,"{'Jeff Bridges': 'Starman', 'Karen Allen': 'Jenny Hayden', 'Charles Martin Smith': 'Mark Shermin', 'Richard Jaeckel': 'George Fox', 'Robert Phalen': 'Major Bell', 'Tony Edwards': 'Sergeant Lemon', 'John Walter Davis': 'Brad Heinmuller', 'Ted White': 'Deer Hunter', 'Dirk Blocker': 'Cop #1', 'M.C. Gainey': 'Cop #2', 'Sean Stanek': 'Hot Rodder (as Sean Faro)', ""George 'Buck' Flower"": 'Cook (as Buck Flower)', 'Russ Benning': 'Scientist', 'Ralph Cosham': 'Marine Lieutenant', 'David Wells': ""Fox's Assistant""}" tt0118708,"{'Chris Farley': 'Haru', 'Nicollette Sheridan': 'Allison Page / Sally Jones', 'Robin Shou': 'Gobei', 'Nathaniel Parker': 'Martin Tanley', 'Soon-Tek Oh': 'Sensei', 'Keith Cooke': 'Nobu (as Keith Cooke Hirabayashi)', 'Chris Rock': 'Joey', 'François Chau': 'Izumo', 'Dale Ishimoto': 'Old Japanese Man', 'Daming Chen': 'Head Kobudosai', 'Burt Bulos': 'Mr. Ozaru', 'Curtis Blanck': 'Billy', 'Tom Bailey': ""Billy's Dad"", 'Jason Tobin': 'Busboy (as Jason J. Tobin)', 'Richard Kline': 'Driver'}" tt0118615,"{'Jennifer Lopez': 'Terri Flores', 'Ice Cube': 'Danny Rich', 'Jon Voight': 'Paul Serone', 'Eric Stoltz': 'Dr. Steven Cale', 'Jonathan Hyde': 'Warren Westridge', 'Owen Wilson': 'Gary Dixon', 'Kari Wuhrer': 'Denise Kalberg', 'Vincent Castellanos': 'Mateo', 'Danny Trejo': 'Poacher', 'Frank Welker': 'Anaconda (voice)'}" tt0381849,"{'Russell Crowe': 'Ben Wade', 'Christian Bale': 'Dan Evans', 'Logan Lerman': 'William Evans', 'Dallas Roberts': 'Grayson Butterfield', 'Ben Foster': 'Charlie Prince', 'Peter Fonda': 'Byron McElroy', 'Vinessa Shaw': 'Emma Nelson', 'Alan Tudyk': 'Doc Potter', 'Luce Rains': 'Marshal Weathers', 'Gretchen Mol': 'Alice Evans', 'Lennie Loftin': 'Glen Hollander', 'Rio Alexander': 'Campos', 'Johnny Whitworth': 'Darden', 'Shawn Howell': 'Jackson (as Shawn D. Howell)', 'Pat Ricotti': 'Jorgensen'}" tt0374102,"{'Blanchard Ryan': 'Susan Watkins', 'Daniel Travis': 'Daniel Kintner', 'Saul Stein': 'Seth', 'Michael E. Williamson': 'Davis (as Michael Williamson)', 'Cristina Zenato': 'Linda (as Cristina Zenaro)', 'John Charles': 'Junior (as Jon Charles)', 'Estelle Lau': 'Estelle'}" tt0814022,"{'Nicolas Cage': 'Joe', 'Shahkrit Yamnarm': 'Kong', 'Charlie Yeung': 'Fon (as Charlie Young)', 'Panward Hemmanee': 'Aom', 'Nirattisai Kaljareuk': 'Surat (as Nirattisai Kaljaruek)', 'Dom Hetrakul': 'Aran', 'Tuck Napaskorn': ""Kong's Brother"", 'Steve Baldocchi': 'Michigan', 'Chris Heebink': 'USC', 'James With': 'Chicago', 'Peter Shadrin': 'Anton', 'Arthajid Puengvicha': 'Official', 'Duangjai Srisawang': 'Man in Arena', 'Veerasak Boonchard': 'Winai', 'Joe Sakol Palvanichkul': 'Tuk Tuk Driver (as Sakol Palvanichkul)'}" tt0142688,"{'Johnny Depp': 'Dean Corso', 'Frank Langella': 'Boris Balkan', 'Lena Olin': 'Liana Telfer', 'Emmanuelle Seigner': 'The Girl', 'Barbara Jefford': 'Baroness Kessler', 'Jack Taylor': 'Victor Fargas', 'José López Rodero': 'Pablo & Pedro Ceniza / 1st & 2nd Workmen (as Jose Lopez Rodero)', 'Tony Amoni': ""Liana's Bodyguard"", 'James Russo': 'Bernie', 'Willy Holt': 'Andrew Telfer', 'Allen Garfield': 'Witkin', 'Jacques Dacqmine': 'Old Man', 'Joe Sheridan': ""Old Man's Son"", 'Rebecca Pauly': 'Daughter-In-Law', 'Catherine Benguigui': 'Concierge'}" tt0452625,"{'Connor Price': 'Young Charlie', 'Troy Gentile': 'Young Stu', 'Mackenzie Mowat': 'Birthday Girl', 'Sasha Pieterse': 'Goth Girl', 'Caroline Ford': 'Jennifer', 'Dane Cook': 'Charlie', 'Chelan Simmons': 'Carol', 'Dan Fogler': 'Stu', 'Natalie Morris': 'Natalie', 'Ellia English': 'Reba', 'Tseng Chang': 'Karaoke Singer', 'Michael Teigen': 'Wedding D.J.', 'Chiara Zanni': 'Bride', 'Benjamin Ayres': 'Groomsman (as Ben Ayres)', 'Carrie Anne Fleming': 'Dirty Talker'}" tt0218839,"{'Jay Brazeau': 'Dr. Chuck Nelken', 'Parker Posey': 'Meg Swan', 'Michael Hitchcock': 'Hamilton Swan', ""Catherine O'Hara"": 'Cookie Fleck', 'Eugene Levy': 'Gerry Fleck', 'Carrie Aizley': 'Fern City Show Spectator', 'Lewis Arquette': 'Fern City Show Spectator', 'Dany Canino': 'Fern City Show Judge', 'Bob Balaban': 'Dr. Theodore W. Millbank, III', 'Will Sasso': ""Fishin' Hole Guy"", 'Stephen E. Miller': ""Fishin' Hole Guy"", 'Christopher Guest': 'Harlan Pepper', 'Michael McKean': 'Stefan Vanderhoof', 'John Michael Higgins': 'Scott Donlan', 'Colin Cunningham': 'New York Butcher'}" tt0800003,"{'Michael Rose': 'Sgt. Major (as Michael Edward Rose)', 'Glenn Morshower': 'General', 'Larry the Cable Guy': 'Larry', 'Christina Moore': 'Karen', 'Lorna Scott': ""Woman at Cowboy Frank's"", 'Bill Engvall': 'Bill Little', 'Parker Goris': ""Bill's Boy"", 'Michael Papajohn': ""Bill's Neighbor"", 'Lisa Lampanelli': 'Connie', 'DJ Qualls': 'Everett', ""Ed O'Ross"": 'Victor', 'Lance Smith': 'Sgt. Adams', 'Bill Doyle': 'Colonel', 'Keith David': 'Sgt. Kilgore', 'McKinley Freeman': 'Airborne Soldier'}" tt0427312,"{'Werner Herzog': 'Himself / Narrator / Interviewer (voice)', 'Carol Dexter': ""Herself - Treadwell's Mother"", 'Val Dexter': ""Himself - Treadwell's Father"", 'Sam Egli': 'Himself - Egli Air Haul', 'Franc G. Fallico': 'Himself - Coroner', 'Willy Fulton': 'Himself - Pilot', 'Marc Gaede': 'Himself - Ecologist', 'Marnie Gaede': 'Herself - Ecologist', 'Sven Haakanson Jr.': 'Himself - Alutiiq Museum Director', 'Amie Huguenard': 'Herself (archive footage)', 'David Letterman': 'Himself (archive footage)', 'Jewel Palovak': 'Herself', 'Kathleen Parker': 'Herself - Close Friend', 'Warren Queeney': 'Himself - Actor and Close Friend', 'Timothy Treadwell': 'Himself (archive footage)'}" tt0099180,"{'Jeffrey Combs': 'Dr. Herbert West', 'Bruce Abbott': 'Dr. Dan Cain', 'Claude Earl Jones': 'Lt. Leslie Chapham', 'Fabiana Udenio': 'Francesca Danelli', 'David Gale': 'Dr. Carl Hill', 'Kathleen Kinmont': 'Gloria', 'Mel Stewart': 'Dr. Graves', 'Irene Cagen': 'Nurse Shelley (as Irene Forrest)', 'Michael Strasser': 'Ernest', 'Mary Sheldon': 'Meg Halsey', 'Marge Turner': 'The Re-Animated: Elizabeth Chapham', 'Johnny Legend': 'The Re-Animated: Skinny Corpse', 'David Bynum': 'The Re-Animated: Black Corpse', 'Noble Craig': 'The Re-Animated: Crypt Creature', 'Kim Parker': 'The Re-Animated: Crypt Creature'}" tt0838283,"{'Will Ferrell': 'Brennan Huff', 'John C. Reilly': 'Dale Doback', 'Mary Steenburgen': 'Nancy Huff', 'Richard Jenkins': 'Dr. Robert Doback', 'Adam Scott': 'Derek', 'Kathryn Hahn': 'Alice', 'Andrea Savage': 'Denise', 'Lurie Poston': 'Tommy', 'Elizabeth Yozamp': 'Tiffany', 'Logan Manus': 'Chris Gardoki', 'Travis T. Flory': 'Redheaded Kid (as Travis Flory)', 'Lili Rose McKay': '7-Year-Old Girl (as Lili McKay)', 'Shira Piven': 'Nurse', 'Seth Morris': 'Doctor', 'Wayne Federman': 'Blind Man'}" tt0117407,"{'Kim Bodnia': 'Frank', 'Zlatko Buric': 'Milo', 'Laura Drasbæk': 'Vic', 'Slavko Labovic': 'Radovan', 'Mads Mikkelsen': 'Tonny', 'Peter Andersson': 'Hasse', 'Vasilije Bojicic': 'Branko (as Vanja Bajicic)', 'Lisbeth Rasmussen': 'Rita', 'Levino Jensen': 'Mike', 'Thomas Bo Larsen': 'Junkie', 'Lars Bom': ""Uro'er"", 'Michael Hasselflug': ""Uro'er"", 'Nicolas Winding Refn': 'Brian (as Jang Go Star)', 'Jesper Lohmann': 'Mikkel', 'Steen Fridberg': 'Lasse'}" tt0145531,"{'Patricia Arquette': 'Frankie Paige', 'Gabriel Byrne': 'Father Andrew Kiernan', 'Jonathan Pryce': 'Cardinal Daniel Houseman', 'Nia Long': 'Donna Chadway', 'Thomas Kopache': 'Father Durning', 'Rade Serbedzija': 'Marion Petrocelli (as Rade Sherbedgia)', 'Enrico Colantoni': 'Father Dario', 'Dick Latessa': 'Father Gianni Delmonico', 'Portia de Rossi': 'Jennifer Kelliho', 'Patrick Muldoon': 'Steven', 'Ann Cusack': 'Dr. Reston', 'Shaun Toub': 'Doctor', 'Tom Hodges': 'ER Nurse', 'Lydia Hazan': 'Attending Nurse', 'Shaun Duke': 'Dr. Eckworth (as Duke Moosekian)'}" tt1324999,"{'Taylor Lautner': 'Jacob Black', 'Gil Birmingham': 'Billy', 'Billy Burke': 'Charlie Swan', 'Sarah Clarke': 'Renee', 'Ty Olsson': 'Phil', 'Kristen Stewart': 'Bella Swan', 'Ashley Greene': 'Alice Cullen', 'Jackson Rathbone': 'Jasper Hale', 'Peter Facinelli': 'Dr. Carlisle Cullen', 'Elizabeth Reaser': 'Esme Cullen', 'Kellan Lutz': 'Emmett Cullen', 'Nikki Reed': 'Rosalie Hale', 'Robert Pattinson': 'Edward Cullen', 'Christian Sloan': 'Unsavory Man', 'James Pizzinato': 'Unsavory Man'}" tt1325004,"{'Xavier Samuel': 'Riley', 'Kristen Stewart': 'Bella Swan', 'Robert Pattinson': 'Edward Cullen', 'Billy Burke': 'Charlie Swan', 'Justin Chon': 'Eric', 'Anna Kendrick': 'Jessica', 'Michael Welch': 'Mike', 'Christian Serratos': 'Angela', 'Jackson Rathbone': 'Jasper Hale', 'Ashley Greene': 'Alice Cullen', 'Paul Jarrett': 'Mr. Biers', 'Iris Quinn': 'Mrs. Biers', 'Sarah Clarke': 'Renee', 'Peter Facinelli': 'Dr. Carlisle Cullen', 'Elizabeth Reaser': 'Esme Cullen'}" tt1259571,"{'Kristen Stewart': 'Bella Swan', 'Christina Jastrzembska': 'Gran', 'Robert Pattinson': 'Edward Cullen', 'Billy Burke': 'Charlie Swan', 'Anna Kendrick': 'Jessica', 'Michael Welch': 'Mike', 'Justin Chon': 'Eric', 'Christian Serratos': 'Angela', 'Taylor Lautner': 'Jacob Black', 'Ashley Greene': 'Alice Cullen', 'Jackson Rathbone': 'Jasper Hale', 'Russell Roberts': 'Mr. Berty', 'Cam Gigandet': 'James (archive footage)', 'Michael Sheen': 'Aro', 'Jamie Campbell Bower': 'Caius'}" tt1099212,"{'Kristen Stewart': 'Bella Swan', 'Sarah Clarke': 'Renée', 'Matt Bushell': 'Phil', 'Billy Burke': 'Charlie Swan', 'Gil Birmingham': 'Billy Black', 'Taylor Lautner': 'Jacob Black', 'Gregory Tyree Boyce': 'Tyler', 'Justin Chon': 'Eric', 'Michael Welch': 'Mike Newton', 'Anna Kendrick': 'Jessica', 'Christian Serratos': 'Angela', 'Nikki Reed': 'Rosalie', 'Kellan Lutz': 'Emmet Cullen', 'Ashley Greene': 'Alice Cullen', 'Jackson Rathbone': 'Jasper'}" tt0415306,"{'Will Ferrell': 'Ricky Bobby', 'John C. Reilly': 'Cal Naughton Jr.', 'Sacha Baron Cohen': 'Jean Girard', 'Gary Cole': 'Reese Bobby', 'Michael Clarke Duncan': 'Lucius Washington', 'Leslie Bibb': 'Carley Bobby', 'Jane Lynch': 'Lucy Bobby', 'Amy Adams': 'Susan', 'Andy Richter': 'Gregory', 'Molly Shannon': 'Mrs. Dennit', 'Greg Germann': 'Larry Dennit Jr.', 'David Koechner': 'Hershell', 'Jack McBrayer': 'Glenn', 'Ian Roberts': 'Kyle', 'Pat Hingle': 'Mr. Dennit Sr.'}" tt0119654,"{'Tommy Lee Jones': 'Kay', 'Will Smith': 'Jay', 'Linda Fiorentino': 'Laurel', ""Vincent D'Onofrio"": 'Edgar', 'Rip Torn': 'Zed', 'Tony Shalhoub': 'Jeebs', 'Siobhan Fallon Hogan': 'Beatrice (as Siobhan Fallon)', 'Mike Nussbaum': 'Gentle Rosenburg', 'Jon Gries': 'Van Driver', 'Sergio Calderón': 'Jose', 'Carel Struycken': 'Arquillian', 'Fredric Lehne': 'INS Agent Janus (as Fredric Lane)', 'Richard Hamilton': 'Dee', 'Kent Faulcon': '1st Lt. Jake Jensen', 'John Alexander': 'Mikey'}" tt0104694,"{'Tom Hanks': 'Jimmy Dugan', 'Geena Davis': 'C Dottie Hinson', 'Lori Petty': 'P Kit Keller', 'Madonna': 'C F Mae Mordabito', ""Rosie O'Donnell"": '3B Doris Murphy', 'Megan Cavanagh': '2B Marla Hooch', 'Tracy Reiner': 'LF / P Betty Horn', 'Bitty Schram': 'RF Evelyn Gardner', 'Ann Cusack': 'LF Shirley Baker', 'Anne Ramsay': '1B Helen Haley (as Anne Elizabeth Ramsay)', 'Freddie Simpson': 'SS / P Ellen Sue Gotlander', 'Renée Coleman': 'LF / C Alice Gaspers (as Renee Coleman)', 'Robin Knight': ""SS 'Beans' Babbitt"", 'Patti Pelton': '2B Marbleann Wilkenson', 'Kelli Simpkins': 'OF Beverly Dixon'}" tt0119822,"{'Jack Nicholson': 'Melvin Udall', 'Helen Hunt': 'Carol Connelly', 'Greg Kinnear': 'Simon Bishop', 'Cuba Gooding Jr.': 'Frank Sachs', 'Skeet Ulrich': 'Vincent', 'Shirley Knight': 'Beverly', 'Yeardley Smith': 'Jackie', 'Lupe Ontiveros': 'Nora', 'Jill the Dog': 'Verdell (as Jill)', 'Timer the Dog': 'Supporting Dog (as Timer)', 'Billy the Dog': 'Supporting Dog (as Billy)', 'Bibi Osterwald': 'Neighbor Woman', 'Ross Bleckner': 'Carl', 'Bernadette Balagtas': 'Caterer', 'Jaffe Cohen': 'Partygoer'}" tt0425637,"{'Tony Chiu-Wai Leung': 'Zhou Yu (as Tony Leung)', 'Takeshi Kaneshiro': 'Zhuge Liang', 'Fengyi Zhang': 'Cao Cao', 'Chen Chang': 'Sun Quan', 'Wei Zhao': 'Sun Shangxiang', 'Jun Hu': 'Zhao Yun', 'Shidô Nakamura': 'Gan Xing (as Shidou Nakamura)', 'Chiling Lin': 'Xiao Qiao (as Chi-Ling Lin)', 'Yong You': 'Liu Bei', 'Yong Hou': 'Lu Su', 'Dawei Tong': 'Sun Shucai', 'Jia Song': 'Li Ji', 'Baasanjav Mijid': 'Guan Yu', 'Jinsheng Zang': 'Zhang Fei', 'Shan Zhang': 'Huang Gai'}" tt0245686,"{'David Spade': 'Joe Dirt', 'Brittany Daniel': 'Brandy', 'Dennis Miller': 'Zander Kelly', 'Adam Beach': 'Kicking Wing', 'Christopher Walken': 'Clem', 'Jaime Pressly': 'Jill', 'Kid Rock': 'Robby', 'Erik Per Sullivan': 'Little Joe Dirt', 'Megan Taylor Harvey': ""Joe's Little Sister"", 'Caroline Aaron': ""Joe's Mom"", 'Fred Ward': ""Joe's Dad"", 'John Farley': 'Security Guard', 'Bob Zany': 'Man', 'Bean Miller': 'Man', 'Lee Walker': 'Zeke'}" tt0079417,"{'Dustin Hoffman': 'Ted Kramer', 'Meryl Streep': 'Joanna Kramer', 'Jane Alexander': 'Margaret Phelps', 'Justin Henry': 'Billy Kramer', 'Howard Duff': 'John Shaunessy', 'George Coe': ""Jim O'Connor"", 'JoBeth Williams': 'Phyllis Bernard (as Jobeth Williams)', 'Bill Moor': 'Gressen', 'Howland Chamberlain': 'Judge Atkins', 'Jack Ramage': 'Spencer', 'Jess Osuna': 'Ackerman', 'Nicholas Hormann': 'Interviewer', 'Ellen Parker': 'Teacher', 'Shelby Brammer': ""Ted's Secretary"", 'Carol Nadell': 'Mrs. Kline'}" tt0343660,"{'Adam Sandler': 'Henry Roth', 'Drew Barrymore': 'Lucy Whitmore', 'Rob Schneider': 'Ula', 'Sean Astin': 'Doug Whitmore', 'Lusia Strus': 'Alexa', 'Dan Aykroyd': 'Dr. Keats', 'Amy Hill': 'Sue', 'Allen Covert': 'Ten Second Tom', 'Blake Clark': 'Marlin Whitmore', 'Maya Rudolph': 'Stacy', ""Pomaika'i Brown"": 'Nick (as Nephi Pomaikai Brown)', 'Joe Nakashima': 'Old Hawaiian Man', 'Peter Dante': 'Security Guard', 'Dom Magwili': 'Security Guard', 'Jonathan Loughran': 'Jennifer'}" tt0104257,"{'Tom Cruise': 'Lt. Daniel Kaffee', 'Jack Nicholson': 'Col. Nathan R. Jessep', 'Demi Moore': 'Lt. Cdr. JoAnne Galloway', 'Kevin Bacon': 'Capt. Jack Ross', 'Kiefer Sutherland': '2nd. Lt. Jonathan Kendrick', 'Kevin Pollak': 'Lt. Sam Weinberg', 'James Marshall': 'Pfc. Louden Downey', 'J.T. Walsh': 'Lt. Col. Matthew Andrew Markinson', 'Christopher Guest': 'Dr. Stone', 'J.A. Preston': 'Judge Julius Alexander Randolph', 'Matt Craven': 'Lt. Dave Spradling', 'Wolfgang Bodison': 'Lance Cpl. Harold W. Dawson', 'Xander Berkeley': 'Capt. Whitaker', 'John M. Jackson': 'Capt. West', 'Noah Wyle': 'Cpl. Jeffrey Barnes'}" tt0113670,"{'Liesel Matthews': 'Sara Crewe', 'Eleanor Bron': 'Miss Minchin', 'Liam Cunningham': 'Capt. Crewe / Prince Rama', 'Rusty Schwimmer': 'Amelia Minchin', 'Arthur Malet': 'Charles Randolph', 'Vanessa Chester': 'Becky (as Vanessa Lee Chester)', 'Errol Sitahal': 'Ram Dass', 'Heather DeLoach': 'Ermengarde', 'Taylor Fry': 'Lavinia', 'Darcie Bradford': 'Jesse', 'Rachael Bella': 'Betsy', 'Alexandra Rea-Baum': 'Gertrude', 'Camilla Belle': 'Jane', 'Lauren Blumenfeld': 'Rosemary', 'Kelsey Mulrooney': 'Lottie'}" tt0310281,"{'Jim Moret': 'Newscaster', 'Stuart Luce': 'Irving Steinbloom', 'Mary Gross': 'Ma Klapper', 'Marty Belafsky': ""Ramblin' Sandy Pitnik (as Marty Belasky)"", 'Michael S. Baser': 'Pa Klapper (as Michael Baser)', 'Jared Nelson Smith': 'Young Chuck Wiseman', 'Ryan Raddatz': 'Bill Weyburn', 'Todd Lieberman': 'Fred Knox', 'Matthew Joy': 'Boy Klapper', 'Laura Harris': 'Girl Klapper', 'Brian Riley': 'Young George Menschell', 'Harry Shearer': 'Mark Shubb', 'Michael McKean': 'Jerry Palter', 'Christopher Guest': 'Alan Barrows', 'Eugene Levy': 'Mitch Cohen'}" tt0105265,"{'Craig Sheffer': 'Norman Maclean', 'Brad Pitt': 'Paul Maclean', 'Tom Skerritt': 'Rev. Maclean', 'Brenda Blethyn': 'Mrs. Maclean', 'Emily Lloyd': 'Jessie Burns', 'Edie McClurg': 'Mrs. Burns', 'Stephen Shellen': 'Neal Burns', 'Vann Gravage': 'Young Paul', 'Nicole Burdette': 'Mabel', 'Susan Traylor': 'Rawhide', 'Michael Cudlitz': 'Chub', 'Rob Cox': 'Conroy', 'Buck Simmonds': 'Humph', 'Fred Oakland': 'Mr. Burns', 'David Creamer': 'Ken Burns'}" tt0268126,"{'Nicolas Cage': 'Charlie Kaufman / Donald Kaufman', 'Tilda Swinton': 'Valerie Thomas', 'Meryl Streep': 'Susan Orlean', 'Chris Cooper': 'John Laroche', 'Jay Tavare': 'Matthew Osceola', 'Litefoot': 'Russell (as G. Paul Davis)', 'Roger Willie': 'Randy', 'Jim Beaver': 'Ranger Tony', 'Cara Seymour': 'Amelia Kavan', 'Doug Jones': 'Augustus Margary', 'Stephen Tobolowsky': 'Ranger Steve Neely (scenes deleted)', 'Gary Farmer': 'Buster Baxley', 'Peter Jason': 'Defense Attorney', 'Gregory Itzin': 'Prosecutor', 'Curtis Hanson': ""Orlean's Husband""}" tt0118571,"{'Harrison Ford': 'President James Marshall', 'Gary Oldman': 'Ivan Korshunov', 'Glenn Close': 'Vice President Kathryn Bennett', 'Wendy Crewson': 'Grace Marshall', 'Liesel Matthews': 'Alice Marshall', 'Paul Guilfoyle': 'Chief of Staff Lloyd Shepherd', 'Xander Berkeley': 'Agent Gibbs', 'William H. Macy': 'Major Caldwell', 'Dean Stockwell': 'Defense Secretary Walter Dean', 'Tom Everett': 'NSA Advisor Jack Doherty', 'Jürgen Prochnow': 'General Alexander Radek (as Jurgen Prochnow)', 'Donna Bullock': 'Press Secretary Melanie Mitchell', 'Michael Ray Miller': 'AFO Pilot Colonel Axelrod', 'Carl Weintraub': 'AFO Co-Pilot Lt. Col. Ingrahams', 'Elester Latham': 'AFO Navigator / Major Bridges'}" tt0074119,"{'Dustin Hoffman': 'Carl Bernstein', 'Robert Redford': 'Bob Woodward', 'Jack Warden': 'Harry Rosenfeld', 'Martin Balsam': 'Howard Simons', 'Hal Holbrook': 'Deep Throat', 'Jason Robards': 'Ben Bradlee', 'Jane Alexander': 'Bookkeeper', 'Meredith Baxter': 'Debbie Sloan', 'Ned Beatty': 'Dardis', 'Stephen Collins': 'Hugh Sloan', 'Penny Fuller': 'Sally Aiken', 'John McMartin': 'Foreign Editor', 'Robert Walden': 'Donald Segretti', 'Frank Wills': 'Frank Wills', 'F. Murray Abraham': 'Arresting Officer #1'}" tt0305224,"{'Adam Sandler': 'Dave Buznik', 'Jack Nicholson': 'Dr. Buddy Rydell', 'Marisa Tomei': 'Linda', 'Luis Guzmán': 'Lou (as Luis Guzman)', 'Allen Covert': 'Andrew', 'Lynne Thigpen': 'Judge Brenda Daniels', 'Kurt Fuller': 'Frank Head', 'Jonathan Loughran': 'Nate', 'Krista Allen': 'Stacy', 'January Jones': 'Gina', 'Woody Harrelson': 'Galaxia / Security Guard Gary', 'John Turturro': 'Chuck', 'Kevin Nealon': 'Sam', 'Conrad Goode': 'Bailiff / Lexus Man', 'Gina Gallego': 'Bar Waitress'}" tt0112442,"{'Lisa Boyle': 'Girl Decoy', 'Michael Taliferro': 'Carjacker', 'Emmanuel Xuereb': 'Eddie Dominguez', 'Tchéky Karyo': 'Fouchet (as Tcheky Karyo)', 'Marc Macaulay': 'Noah Trafficante', 'Ralph Gonzalez': 'Kuni', 'Vic Manni': 'Ferguson', 'Frank John Hughes': 'Casper', 'Mike Kirton': 'Andy', 'Martin Lawrence': 'Marcus Burnett', 'Will Smith': 'Mike Lowrey', 'Will Knickerbocker': ""Officer Bill O'Fee"", 'Theresa Randle': 'Theresa Burnett', 'Tiffany Samuels': 'Megan Burnett', 'Cory Hodges': 'James Burnett'}" tt0414852,"{'Cyril Raffaelli': 'Capt. Damien Tomaso', 'David Belle': 'Leïto', ""Tony D'Amario"": 'K2', 'Bibi Naceri': 'Taha Bemamud (as Larbi Naceri)', 'Dany Verissimo-Petit': 'Lola (as Dany Verissimo)', 'François Chattot': 'Krüger', 'Nicolas Woirion': 'Corsini', 'Patrick Olivier': 'Le colonel', 'Samir Guesmi': 'Jamel', 'Jérôme Gadner': 'K2 boy 1', 'Tarik Boucekhine': 'Yoyo (para 1)', 'Grégory Jean': 'Para 2', 'Warren Zavatta': 'Para 3', 'Dominique Dorol': 'Cerbère Taha', 'Ludovic Berthillot': 'Le gros mercenaire'}" tt0981227,"{'Michael Cera': 'Nick', 'Kat Dennings': 'Norah', 'Aaron Yoo': 'Thom', 'Rafi Gavron': 'Dev', 'Ari Graynor': 'Caroline', 'Alexis Dziena': 'Tris', 'Jonathan B. Wright': 'Beefy Guy (Lethario)', 'Zachary Booth': 'Gary', 'Jay Baruchel': 'Tal', 'Justin Rice': 'Bishop Allen', 'Christian Rudder': 'Bishop Allen', 'Giorgio Angelini': 'Bishop Allen', 'Darbie Nowatka': 'Bishop Allen', 'Cully Symington': 'Bishop Allen', 'Jeremy Haines': 'Randy (Are You Randy)'}" tt0106364,"{'Kevin Conroy': 'Batman (voice)', 'Dana Delany': 'Andrea Beaumont (voice)', 'Hart Bochner': 'Arthur Reeves (voice)', 'Stacy Keach': 'Phantasm / Carl Beaumont (voice) (as Stacy Keach Jr.)', 'Abe Vigoda': 'Salvatore Valestra (voice)', 'Dick Miller': 'Chuckie Sol (voice)', 'John P. Ryan': 'Buzz Bronski (voice)', 'Efrem Zimbalist Jr.': 'Alfred (voice)', 'Bob Hastings': 'Commissioner Gordon (voice)', 'Robert Costanzo': 'Detective Bullock (voice)', 'Mark Hamill': 'The Joker (voice)', 'Jane Downs': 'Additional Voices (voice)', 'Pat Musick': 'Additional Voices (voice)', 'Vernee Watson': 'Additional Voices (voice) (as Vernee Watson-Johnson)', 'Ed Gilbert': 'Additional Voices (voice)'}" tt0094721,"{'Alec Baldwin': 'Adam', 'Geena Davis': 'Barbara', 'Annie McEnroe': 'Jane Butterfield', 'Maurice Page': 'Ernie', 'Hugo Stanger': 'Old Bill', 'Michael Keaton': 'Betelgeuse', 'Rachel Mittelman': 'Little Jane', ""Catherine O'Hara"": 'Delia', 'J. Jay Saunders': 'Moving Man #1', 'Mark Ettlinger': 'Moving Man #2', 'Jeffrey Jones': 'Charles', 'Winona Ryder': 'Lydia', 'Glenn Shadix': 'Otho', 'Patrice Martinez': 'Receptionist', 'Cindy Daly': '3-Fingered Typist (as Cynthia Daly)'}" tt0381681,"{'Ethan Hawke': 'Jesse', 'Julie Delpy': 'Celine', 'Vernon Dobtcheff': 'Bookstore Manager', 'Louise Lemoine Torrès': 'Journalist #1 (as Louise Lemoine Torres)', 'Rodolphe Pauly': 'Journalist #2', 'Mariane Plasteig': 'Waitress', 'Diabolo': 'Philippe', 'Denis Evrard': 'Boat Attendant', 'Albert Delpy': 'Man at Grill', 'Marie Pillet': 'Woman in Courtyard'}" tt0758774,"{'Leonardo DiCaprio': 'Roger Ferris', 'Russell Crowe': 'Ed Hoffman', 'Mark Strong': 'Hani', 'Golshifteh Farahani': 'Aisha', 'Oscar Isaac': 'Bassam', 'Ali Suliman': 'Omar Sadiki', 'Alon Aboutboul': 'Al-Saleem', 'Vince Colosimo': 'Skip', 'Simon McBurney': 'Garland', 'Mehdi Nebbou': 'Nizar', 'Michael Gaston': 'Holiday', 'Kais Nashif': 'Mustafa Karami', 'Jameel Khoury': 'Marwan', 'Lubna Azabal': ""Aisha's Sister Cala"", 'Ghali Benlafkih': ""Aisha's Nephew Rowley""}" tt0142342,"{'Adam Sandler': 'Sonny Koufax', 'Joey Lauren Adams': 'Layla Maloney', 'Jon Stewart': 'Kevin Gerrity', 'Cole Sprouse': ""Julian 'Frankenstien' McGrath"", 'Dylan Sprouse': ""Julian 'Frankenstien' McGrath"", 'Josh Mostel': 'Arthur Brooks', 'Leslie Mann': 'Corinne Maloney', 'Allen Covert': ""Phil D'Amato"", 'Rob Schneider': 'Delivery Guy', 'Kristy Swanson': 'Vanessa', 'Joseph Bologna': 'Lenny Koufax', 'Peter Dante': 'Tommy Grayton', 'Jonathan Loughran': 'Mike', 'Steve Buscemi': 'Homeless Guy', 'Tim Herlihy': 'Singing Kangaroo'}" tt0319061,"{'Ewan McGregor': 'Ed Bloom - Young', 'Albert Finney': 'Ed Bloom - Senior', 'Billy Crudup': 'Will Bloom', 'Jessica Lange': 'Sandra Bloom - Senior', 'Helena Bonham Carter': 'Jenny - Young / Jenny - Senior / The Witch', 'Alison Lohman': 'Sandra Bloom - Young', 'Robert Guillaume': 'Dr. Bennett - Senior', 'Marion Cotillard': 'Josephine Bloom', 'Matthew McGrory': 'Karl the Giant', 'David Denman': 'Don Price - Age 18-22', 'Missi Pyle': 'Mildred', 'Loudon Wainwright III': 'Beamen (as Loudon Wainwright)', 'Ada Tai': 'Ping', 'Arlene Tai': 'Jing', 'Steve Buscemi': 'Norther Winslow'}" tt0115734,"{'Luke Wilson': 'Anthony Adams', 'Owen Wilson': 'Dignan (as Owen C. Wilson)', 'Ned Dowd': 'Dr. Nichols', 'Shea Fowler': 'Grace', 'Haley Miller': 'Bernice', 'Robert Musgrave': 'Bob Mapplethorpe', 'Andrew Wilson': 'Future Man', 'Brian Tenenbaum': 'H. Clay Murchison', 'Jenni Tooley': 'Stacy Sinclair', 'Temple Nash': 'Temple', 'Dipak Pallana': 'Bookstore Employee', 'Darryl Cox': 'Bookstore Manager', 'Stephen Dignan': 'Rob', 'Lumi Cavazos': 'Inez', 'Julie Mayfield': 'Wife in Motelroom'}" tt0101507,"{'Hudhail Al-Amir': 'S.A.T. Man', 'Lloyd Avery II': 'Knucklehead #2', 'Angela Bassett': 'Reva Styles', 'Miya McGhee': 'Female Club Member (as Mia Bell)', 'Lexie Bigham': 'Mad Dog', 'Kenneth A. Brown': 'Little Chris', 'Nicole Brown': 'Brandi - Age 10', 'Ceal': 'Sheryl', 'Morris Chestnut': 'Ricky Baker', 'Darneicea Corley': 'Keisha', 'John Cothran': 'Lewis Crump (as John Cothran Jr.)', 'Ice Cube': 'Doughboy / Darren', ""Na'Blonka Durden"": ""Trina (as Na' Blonka Durden)"", 'Susan Falcon': 'Mrs. Olaf', 'Jessie Lawrence Ferguson': 'Officer Coffey (as Jesse Ferguson)'}" tt0127723,"{'Jennifer Love Hewitt': 'Amanda Beckett', 'Ethan Embry': 'Preston Meyers', 'Charlie Korsmo': 'William Lichter', 'Lauren Ambrose': 'Denise Fleming', 'Peter Facinelli': 'Mike Dexter', 'Seth Green': 'Kenny Fisher', 'Michelle Brookhurst': 'Girl Whose Party It Is', 'Alexander Martin': 'Exchange Student', 'Erik Palladino': 'Cousin Ron', 'Channon Roe': 'Jock #1', 'Sean Patrick Thomas': 'Jock #2', 'Freddy Rodríguez': 'Jock #3 (as Freddy Rodriguez)', 'Joel Michaely': 'X-Phile #1', 'Jay Paulson': 'X-Phile #2', 'Brian Hall': 'Real Homeboy'}" tt0075860,"{'Richard Dreyfuss': 'Roy Neary', 'François Truffaut': 'Claude Lacombe (as Francois Truffaut)', 'Teri Garr': 'Ronnie Neary', 'Melinda Dillon': 'Jillian Guiler', 'Bob Balaban': 'David Laughlin', 'J. Patrick McNamara': 'Project Leader', 'Warren J. Kemmerling': 'Wild Bill (as Warren Kemmerling)', 'Roberts Blossom': 'Farmer', 'Philip Dodds': 'Jean Claude', 'Cary Guffey': 'Barry Guiler', 'Shawn Bishop': 'Brad Neary', 'Adrienne Campbell': 'Silvia Neary', 'Justin Dreyfuss': 'Toby Neary', 'Lance Henriksen': 'Robert', 'Merrill Connally': 'Team Leader'}" tt0376541,"{'Natalie Portman': 'Alice', 'Jude Law': 'Dan', 'Julia Roberts': 'Anna', 'Clive Owen': 'Larry', 'Nick Hobbs': 'Taxi Driver', 'Colin Stinton': 'Customs Officer'}" tt0106673,"{'Kevin Kline': 'Dave Kovic / Bill Mitchell', 'Sigourney Weaver': 'Ellen Mitchell', 'Frank Langella': 'Bob Alexander', 'Kevin Dunn': 'Alan Reed', 'Ving Rhames': 'Duane Stevenson', 'Ben Kingsley': 'Vice-President Nance', 'Charles Grodin': 'Murray Blum', 'Faith Prince': 'Alice', 'Laura Linney': 'Randi', 'Bonnie Hunt': 'White House Tour Guide', 'Parley Baer': 'Senate Majority Leader', 'Stefan Gierasch': 'House Majority Leader', 'Anna Deavere Smith': 'Mrs. Travis', 'Charles Hallahan': 'Policeman', 'Tom Dugan': 'Jerry'}" tt0068473,"{'Jon Voight': 'Ed', 'Burt Reynolds': 'Lewis', 'Ned Beatty': 'Bobby', 'Ronny Cox': 'Drew', 'Ed Ramey': 'Old Man', 'Billy Redden': 'Lonnie', 'Seamon Glass': 'First Griner', 'Randall Deal': 'Second Griner', 'Bill McKinney': 'Mountain Man', ""Herbert 'Cowboy' Coward"": 'Toothless Man', 'Lewis Crone': 'First Deputy', 'Ken Keener': 'Second Deputy', 'Johnny Popwell': 'Ambulance Driver', 'John Fowler': 'Doctor', 'Kathy Rickman': 'Nurse'}" tt0112851,"{'Antonio Banderas': 'El Mariachi', 'Salma Hayek': 'Carolina', 'Joaquim de Almeida': 'Bucho', 'Cheech Marin': 'Short Bartender', 'Steve Buscemi': 'Buscemi', 'Carlos Gómez': 'Right Hand (as Carlos Gomez)', 'Quentin Tarantino': 'Pick-up Guy', 'Tito Larriva': 'Tavo', 'Angel Aviles': 'Zamira', 'Danny Trejo': 'Navajas', 'Abraham Verduzco': 'Niño', 'Carlos Gallardo': 'Campa', 'Albert Michel Jr.': 'Quino', 'David Alvarado': 'Buddy', 'Angela Lanza': 'Tourist Girl'}" tt0088323,"{'Barret Oliver': 'Bastian', 'Gerald McRaney': ""Bastian's Father"", 'Chris Eastman': '1st Bully (as Drum Garrett)', 'Darryl Cooksey': '2nd Bully', 'Nicholas Gilbert': '3rd Bully', 'Thomas Hill': 'Carl Conrad Coreander', 'Deep Roy': 'Teeny Weeny', 'Tilo Prückner': 'Night Hob', 'Moses Gunn': 'Cairon', 'Noah Hathaway': 'Atreyu', 'Sydney Bromley': 'Engywook', 'Patricia Hayes': 'Urgl', 'Tami Stronach': 'The Childlike Empress'}" tt1213644,"{'Matt Lanter': 'Will', 'Vanessa Lachey': 'Amy (as Vanessa Minnillo)', ""Gary 'G. Thang' Johnson"": ""Calvin (as Gary 'G-Thang' Johnson)"", 'Nicole Parker': 'Enchanted Princess / Amy Winehouse Look-A-Like / Jessica Simpson Look-A-Like', 'Crista Flanagan': 'Juney / Hannah Montana', 'Kim Kardashian West': 'Lisa (as Kim Kardashian)', 'Ike Barinholtz': 'Wolf / Javier Bardem Look-A-Like / Police Officer / Hellboy / Batman / Beowulf / Prince Caspian', 'Carmen Electra': 'Beautiful Assassin', 'Tony Cox': 'Indiana Jones', 'Tad Hilgenbrink': 'Prince', 'Nick Steele': 'Underwear Model', 'John Di Domenico': 'Dr. Phil Look-A-Like / Love Guru', 'Jason Boegh': 'Male Carrie', 'Valerie Wildman': 'Samantha', 'Abe Spigner': 'Flava-Flav Look-A-Like'}" tt0072890,"{'Penelope Allen': 'Sylvia', 'Sully Boyar': 'Mulvaney', 'John Cazale': 'Sal', 'Beulah Garrick': 'Margaret', 'Carol Kane': 'Jenny', 'Sandra Kazan': 'Deborah', 'Marcia Jean Kurtz': 'Miriam', 'Amy Levitt': 'Maria', 'John Marriott': 'Howard', 'Estelle Omens': 'Edna', 'Al Pacino': 'Sonny', 'Gary Springer': 'Stevie', 'James Broderick': 'Sheldon', 'Charles Durning': 'Moretti', 'Carmine Foresta': 'Carmine'}" tt0119008,"{'Al Pacino': 'Lefty', 'Johnny Depp': 'Donnie', 'Michael Madsen': 'Sonny', 'Bruno Kirby': 'Nicky', 'James Russo': 'Paulie', 'Anne Heche': 'Maggie', 'Zeljko Ivanek': 'Tim Curley (as Zeljko Ivanek)', 'Gerry Becker': 'Dean Blandford FBI', 'Robert Miano': 'Sonny Red', 'Brian Tarantina': 'Bruno', 'Rocco Sisto': 'Richie Gazzo', 'Zach Grenier': 'Dr. Berger', 'Walt MacPherson': 'Sheriff', 'Ronnie Farer': 'Annette', 'Terry Serpico': 'Strip Club Owner'}" tt0103874,"{'Gary Oldman': 'Dracula', 'Winona Ryder': 'Mina Murray / Elisabeta', 'Anthony Hopkins': 'Professor Abraham Van Helsing', 'Keanu Reeves': 'Jonathan Harker', 'Richard E. Grant': 'Dr. Jack Seward', 'Cary Elwes': 'Lord Arthur Holmwood', 'Billy Campbell': 'Quincey P. Morris (as Bill Campbell)', 'Sadie Frost': 'Lucy Westenra', 'Tom Waits': 'R.M. Renfield', 'Monica Bellucci': ""Dracula's Bride"", 'Michaela Bercu': ""Dracula's Bride"", 'Florina Kendrick': ""Dracula's Bride"", 'Jay Robinson': 'Mr. Hawkins', 'I.M. Hobson': 'Hobbs', 'Laurie Franks': ""Lucy's Maid""}" tt0064276,"{'Peter Fonda': 'Wyatt', 'Dennis Hopper': 'Billy', 'Antonio Mendoza': 'Jesus', 'Phil Spector': 'Connection', 'Mac Mashourian': 'Bodyguard', 'Warren Finnerty': 'Rancher', 'Tita Colorado': ""Rancher's Wife"", 'Luke Askew': 'Stranger on Highway', 'Luana Anders': 'Lisa', 'Sabrina Scharf': 'Sarah', 'Sandy Brown Wyeth': 'Joanne (as Sandy Wyeth)', 'Robert Walker Jr.': 'Jack (as Robert Walker)', 'Robert Ball': 'Mime #1', 'Carmen Phillips': 'Mime #2', 'Ellie Wood Walker': 'Mime #3 (as Ellie Walker)'}" tt0181536,"{'Sean Connery': 'Forrester', 'Rob Brown': 'Jamal', 'F. Murray Abraham': 'Crawford', 'Anna Paquin': 'Claire', 'Busta Rhymes': 'Terrell', 'April Grace': 'Ms. Joyce', 'Michael Pitt': 'Coleridge', 'Michael Nouri': 'Dr. Spence', 'Richard Easton': 'Matthews', 'Glenn Fitzgerald': 'Massie', ""Lil' Zane"": 'Damon (as Zane Copeland Jr.)', 'Stephanie Berry': 'Janice', 'Fly Williams III': 'Fly', 'Damany Mathis': 'Kenzo', 'Damion Lee': 'Clay'}" tt0065724,"{'Jack Nicholson': 'Robert Eroica Dupea', 'Karen Black': 'Rayette Dipesto', 'Billy Green Bush': ""Elton (as Billy 'Green' Bush)"", 'Fannie Flagg': 'Stoney', 'Sally Struthers': 'Betty (as Sally Ann Struthers)', 'Marlena MacGuire': 'Twinky (as Marlena Macguire)', 'Richard Stahl': 'Recording Engineer', 'Lois Smith': 'Partita Dupea', 'Helena Kallianiotes': 'Palm Apodaca', 'Toni Basil': 'Terry Grouse', 'Lorna Thayer': 'Waitress', 'Susan Anspach': 'Catherine Van Oost', 'Ralph Waite': 'Carl Fidelio Dupea', 'William Challee': 'Nicholas Dupea', 'John P. Ryan': 'Spicer (as John Ryan)'}" tt0083987,"{'Ben Kingsley': 'Mahatma Gandhi', 'Rohini Hattangadi': 'Kasturba Gandhi (as Rohini Hattangady)', 'Roshan Seth': 'Pandit Nehru', 'Candice Bergen': 'Margaret Bourke-White', 'Edward Fox': 'General Dyer', 'John Gielgud': 'Lord Irwin', 'Trevor Howard': 'Judge Broomfield', 'John Mills': 'The Viceroy', 'Martin Sheen': 'Walker', 'Ian Charleson': 'Charlie Andrews', 'Günther Maria Halmer': 'Herman Kallenbach (as Gunter Maria Halmer)', 'Athol Fugard': 'General Smuts', 'Saeed Jaffrey': 'Sardar Patel', 'Geraldine James': 'Mirabehn', 'Alyque Padamsee': 'Mohamed Ali Jinnah'}" tt0119177,"{'Ethan Hawke': 'Vincent / Jerome', 'Uma Thurman': 'Irene', 'Gore Vidal': 'Director Josef', 'Xander Berkeley': 'Lamar', 'Jayne Brook': 'Marie', 'Elias Koteas': 'Antonio', 'Maya Rudolph': 'Delivery Nurse', 'Una Damon': 'Head Nurse', 'Elizabeth Dennehy': 'Pre-School Teacher', 'Blair Underwood': 'Geneticist', 'Mason Gamble': 'Younger Vincent', 'Vincent Nielson': 'Younger Anton', 'Chad Christ': 'Young Vincent', 'William Lee Scott': 'Young Anton', 'Clarence Graham': 'Personnel Officer'}" tt0365265,"{'Katharine Isabelle': 'Ginger', 'Emily Perkins': 'Brigitte', 'Nathaniel Arcand': 'Hunter', 'JR Bourne': 'James', 'Hugh Dillon': 'Reverend Gilbert', 'Adrien Dorval': 'Seamus', 'Brendan Fletcher': 'Finn', 'David La Haye': 'Claude (as David LaHaye)', 'Tom McCamus': 'Wallace Rowlands', 'Matthew Walker': 'Doc Murphy', 'Fabian Bird': 'Milo', 'Kirk Jarrett': 'Owen', 'David MacInnis': 'Cormac', 'Stevie Mitchell': 'Geoffrey', 'Edna Rain': 'Elder'}" tt0097441,"{'Matthew Broderick': 'Col. Robert Gould Shaw', 'Denzel Washington': 'Pvt. Trip', 'Cary Elwes': 'Maj. Cabot Forbes', 'Morgan Freeman': 'Sgt. Maj. John Rawlins', 'Jihmi Kennedy': 'Pvt. Jupiter Sharts', 'Andre Braugher': 'Cpl. Thomas Searles', 'John Finn': 'Sgt. Maj. Mulcahy', 'Donovan Leitch Jr.': 'Capt. Charles Fessenden Morse (as Donovan Leitch)', 'JD Cullum': 'Henry Sturgis Russell (as John David Cullum)', 'Alan North': 'Gov. John Albion Andrew', 'Bob Gunton': 'Gen. Charles Garrison Harker', 'Cliff De Young': 'Col. James M. Montgomery (as Cliff DeYoung)', 'Christian Baskous': 'Edward L. Pierce', 'RonReaco Lee': 'Mute Drummer Boy', 'Jay O. Sanders': 'Gen. George Crockett Strong'}" tt0139239,"{'Katie Holmes': 'Claire Montgomery', 'Sarah Polley': 'Ronna Martin', 'Suzanne Krull': 'Stringy Haired Woman', 'Desmond Askew': 'Simon Baines', 'Nathan Bexton': 'Mannie', 'Robert Peters': 'Switterman', 'Scott Wolf': 'Adam', 'Jay Mohr': 'Zack', 'Timothy Olyphant': 'Todd Gaines', 'Jodi Bianca Wise': 'Ballerina Girl', 'William Fichtner': 'Burke', 'Rita Bland': 'Dancing Register Woman', 'Tony Denman': 'Track Suit Guy', 'Scott Hass': 'Raver Dude', 'Natasha Melnick': 'Anorexic Girl'}" tt0120684,"{'Ian McKellen': 'James Whale', 'Brendan Fraser': 'Clayton Boone', 'Lynn Redgrave': 'Hanna', 'Lolita Davidovich': 'Betty', 'David Dukes': 'David Lewis', ""Kevin J. O'Connor"": 'Harry', 'Mark Kiely': 'Dwight', 'Jack Plotnick': 'Edmund Kay', 'Rosalind Ayres': 'Elsa Lanchester', 'Jack Betts': 'Boris Karloff', 'Matt McKenzie': 'Colin Clive', 'Todd Babcock': 'Leonard Barnett', ""Cornelia Hayes O'Herlihy"": 'Princess Margaret', 'Brandon Kleyla': 'Young Whale', 'Pamela Salem': 'Sarah Whale'}" tt0107048,"{'Bill Murray': 'Phil', 'Andie MacDowell': 'Rita', 'Chris Elliott': 'Larry', 'Stephen Tobolowsky': 'Ned', 'Brian Doyle-Murray': 'Buster', 'Marita Geraghty': 'Nancy', 'Angela Paton': 'Mrs. Lancaster', 'Rick Ducommun': 'Gus', 'Rick Overton': 'Ralph', 'Robin Duke': 'Doris the Waitress', 'Carol Bivins': 'Anchorwoman', 'Willie Garson': ""Phil's Assistant Kenny"", 'Ken Hudson Campbell': 'Man in Hallway', 'Les Podewell': 'Old Man', 'Rod Sell': 'Groundhog Official'}" tt0061735,"{'Spencer Tracy': 'Matt Drayton', 'Sidney Poitier': 'John Prentice', 'Katharine Hepburn': 'Christina Drayton', 'Katharine Houghton': 'Joey Drayton', 'Cecil Kellaway': 'Monsignor Ryan', 'Beah Richards': 'Mrs. Prentice', 'Roy Glenn': 'Mr. Prentice (as Roy E. Glenn Sr.)', 'Isabel Sanford': 'Tillie (as Isabell Sanford)', 'Virginia Christine': 'Hilary St. George', 'Alexandra Hay': 'Carhop', 'Barbara Randolph': 'Dorothy', ""D'Urville Martin"": 'Frankie', 'Tom Heaton': 'Peter', 'Grace Gaynor': 'Judith', 'Skip Martin': 'Delivery Boy'}" tt0099726,"{'Mel Gibson': 'Hamlet', 'Glenn Close': 'Gertrude', 'Alan Bates': 'Claudius', 'Paul Scofield': 'The Ghost', 'Ian Holm': 'Polonius', 'Helena Bonham Carter': 'Ophelia', 'Stephen Dillane': 'Horatio', 'Nathaniel Parker': 'Laertes', 'Sean Murray': 'Guildenstern', 'Michael Maloney': 'Rosencrantz', 'Trevor Peacock': 'The Gravedigger', 'John McEnery': 'Osric', 'Richard Warwick': 'Bernardo', 'Christien Anholt': 'Marcellus', 'Dave Duffy': 'Francisco'}" tt0308353,"{'George Carlin': 'The Wizard (voice)', 'John DiMaggio': 'Dwarf 1 / Dwarf 2 / Giant (voice) (as John De Maggio)', 'Andy Dick': 'Mambo (voice)', 'Sarah Michelle Gellar': 'Ella (voice)', 'Lisa Kaplan': 'Fairy Godmother (voice)', 'Jill Talley': ""Stepsister 2 / Witch 2 / Baby's Mother (voice) (as Jill Talley Kenny)"", 'Tom Kenny': 'Amigo 3 / Dwarf 3 / Messenger / Wolf 2 (voice) (as Tom J. Kenny)', 'Tress MacNeille': 'Witch 1 (voice) (as Tress Mac Neille)', 'Michael McShane': 'Rumplestiltskin (voice)', 'Rob Paulsen': 'Amigo 2 (voice) (as Robert F. Paulsen III)', 'Jon Polito': 'Wolf 1 (voice) (as John Polito)', 'Freddie Prinze Jr.': 'Rick (voice)', 'Phil Proctor': 'Amigo 1 (voice) (as Philip G. Proctor)', 'Wallace Shawn': 'Munk (voice)', 'Kath Soucie': 'Stepsister 1 / Baby / Red Riding Hood (voice) (as Kath E. Soucie)'}" tt0113277,"{'Al Pacino': 'Lt. Vincent Hanna', 'Robert De Niro': 'Neil McCauley', 'Val Kilmer': 'Chris Shiherlis', 'Jon Voight': 'Nate', 'Tom Sizemore': 'Michael Cheritto', 'Diane Venora': 'Justine', 'Amy Brenneman': 'Eady', 'Ashley Judd': 'Charlene Shiherlis', 'Mykelti Williamson': 'Sergeant Drucker', 'Wes Studi': 'Casals', 'Ted Levine': 'Bosko', 'Dennis Haysbert': 'Donald Breedan', 'William Fichtner': 'Roger Van Zant', 'Natalie Portman': 'Lauren Gustafson', 'Tom Noonan': 'Kelso'}" tt0386588,"{'Will Smith': 'Hitch', 'Eva Mendes': 'Sara', 'Kevin James': 'Albert', 'Amber Valletta': 'Allegra', 'Julie Ann Emery': 'Casey', 'Adam Arkin': 'Max', 'Robinne Lee': 'Cressida', 'Nathan Lee Graham': 'Geoff', 'Michael Rapaport': 'Ben', 'Jeffrey Donovan': 'Vance', 'Paula Patton': 'Mandy', 'Philip Bosco': ""Mr. O'Brian"", 'Kevin Sussman': 'Neil', 'Navia Nguyen': 'Mika', 'Matt Malloy': 'Pete'}" tt0102057,"{'Dustin Hoffman': 'Captain Hook', 'Robin Williams': 'Peter Banning', 'Julia Roberts': 'Tinkerbell', 'Bob Hoskins': 'Smee', 'Maggie Smith': 'Granny Wendy', 'Caroline Goodall': 'Moira Banning', 'Charlie Korsmo': ""Jack 'Jackie' Banning"", 'Amber Scott': 'Maggie Banning', 'Laurel Cronin': ""Liza, Wendy's Housekeeper"", 'Phil Collins': 'Inspector Good', 'Arthur Malet': 'Tootles', 'Isaiah Robinson': 'Pockets', 'Jasen Fisher': 'Ace', 'Dante Basco': 'Rufio', 'Raushan Hammond': 'Thud Butt'}" tt0090060,"{'Emilio Estevez': 'Kirby Keger', 'Rob Lowe': 'Billy Hicks', 'Andrew McCarthy': 'Kevin Dolenz', 'Demi Moore': 'Jules', 'Judd Nelson': 'Alec Newbary', 'Ally Sheedy': 'Leslie Hunter', 'Mare Winningham': 'Wendy Beamish', 'Martin Balsam': 'Mr. Beamish', 'Andie MacDowell': 'Dale Biberman', 'Joyce Van Patten': 'Mrs. Beamish', 'Jenny Wright': 'Felicia', 'Blake Clark': 'Wally', 'Jon Cutler': 'Howie Krantz', 'Matthew Laurance': 'Ron Dellasandro', 'Gina Hecht': 'Judith'}" tt0061809,"{'Robert Blake': 'Perry', 'Scott Wilson': 'Dick', 'John Forsythe': 'Alvin Dewey', 'Paul Stewart': 'Jensen', ""Gerald S. O'Loughlin"": 'Harold Nye', 'Jeff Corey': 'Mr. Hickock', 'John Gallaudet': 'Roy Church', 'James Flavin': 'Clarence Duntz', 'Charles McGraw': 'Tex Smith', 'Will Geer': 'Prosecutor', 'John McLiam': 'Herbert Clutter', 'Ruth Storey': 'Bonnie Clutter', 'Brenda Currin': 'Nancy Clutter (as Brenda C. Currin)', 'Paul Hough': 'Kenyon Clutter', 'Vaughn Taylor': 'Good Samaritan'}" tt0107206,"{'Clint Eastwood': 'Frank Horrigan', 'John Malkovich': 'Mitch Leary', 'Rene Russo': 'Lilly Raines', 'Dylan McDermott': ""Al D'Andrea"", 'Gary Cole': 'Bill Watts', 'Fred Dalton Thompson': 'Harry Sargent', 'John Mahoney': 'Sam Campagna', 'Gregory Alan Williams': 'Matt Wilder (as Greg Alan-Williams)', 'Jim Curley': 'President', 'Sally Hughes': 'First Lady', 'Clyde Kusatsu': 'Jack Okura', 'Steve Hytner': 'Tony Carducci', 'Tobin Bell': 'Mendoza', 'Bob Schott': 'Jimmy Hendrickson', 'Juan A. Riojas': 'Raul'}" tt0025316,"{'Clark Gable': 'Peter', 'Claudette Colbert': 'Ellie', 'Walter Connolly': 'Andrews', 'Roscoe Karns': 'Shapeley', 'Jameson Thomas': 'Westley', 'Alan Hale': 'Danker', 'Arthur Hoyt': 'Zeke', 'Blanche Friderici': ""Zeke's Wife"", 'Charles C. Wilson': 'Gordon'}" tt0116695,"{'Tom Cruise': 'Jerry Maguire', 'Cuba Gooding Jr.': 'Rod Tidwell', 'Renée Zellweger': 'Dorothy Boyd (as Renee Zellweger)', 'Kelly Preston': 'Avery Bishop', ""Jerry O'Connell"": 'Frank Cushman', 'Jay Mohr': 'Bob Sugar', 'Bonnie Hunt': 'Laurel Boyd', 'Regina King': 'Marcee Tidwell', 'Jonathan Lipnicki': 'Ray Boyd', 'Todd Louiso': 'Chad the Nanny', 'Mark Pellington': 'Bill Dooler', 'Jeremy Suarez': 'Tyson Tidwell', 'Jared Jussim': 'Dicky Fox', 'Benjamin Kimball Smith': 'Keith Cushman', 'Ingrid Beer': 'Anne-Louise'}" tt0102138,"{'Sally Kirkland': 'Rose Cheramie', 'Anthony Ramirez': 'Epileptic', 'Ray LePere': 'Zapruder', 'Steve Reed': 'John F. Kennedy - Double', 'Jodie Farber': 'Jackie Kennedy - Double (as Jodi Farber)', 'Columbia Dubose': 'Nellie Connally - Double', 'Randy Means': 'Gov. Connally - Double', 'Kevin Costner': 'Jim Garrison', 'Jay O. Sanders': 'Lou Ivon', 'E.J. Morris': 'Plaza Witness #1', 'Cheryl Penland': 'Plaza Witness #2', 'Jim Gough': 'Plaza Witness #3', 'Perry R. Russo': 'Angry Bar Patron', 'Mike Longman': 'TV Newsman #1', 'Edward Asner': 'Guy Bannister'}" tt0113497,"{'Robin Williams': 'Alan Parrish', 'Jonathan Hyde': 'Van Pelt / Sam Parrish', 'Kirsten Dunst': 'Judy Shepherd', 'Bradley Pierce': 'Peter Shepherd', 'Bonnie Hunt': 'Sarah Whittle', 'Bebe Neuwirth': 'Nora Shepherd', 'David Alan Grier': 'Bentley', 'Patricia Clarkson': 'Carol Parrish', 'Adam Hann-Byrd': 'Young Alan', 'Laura Bell Bundy': 'Young Sarah', 'James Handy': 'Exterminator', 'Gillian Barber': 'Mrs. Thomas', 'Brandon Obray': 'Benjamin', 'Cyrus Thiedeke': 'Caleb', 'Gary Joseph Thorup': 'Billy Jessup'}" tt0119488,"{'Kevin Spacey': 'Jack Vincennes', 'Russell Crowe': 'Bud White', 'Guy Pearce': 'Ed Exley', 'James Cromwell': 'Dudley Smith', 'Kim Basinger': 'Lynn Bracken', 'Danny DeVito': 'Sid Hudgens', 'David Strathairn': 'Pierce Patchett', 'Ron Rifkin': 'D.A. Ellis Loew', 'Matt McCoy': ""'Badge of Honor' Star Brett Chase"", 'Paul Guilfoyle': 'Mickey Cohen', 'Paolo Seganti': 'Johnny Stompanato', 'Elisabeth Granli': ""Mickey Cohen's Mambo Partner"", 'Sandra Taylor': ""Mickey Cohen's Mambo Partner"", 'Steve Rankin': 'Officer Arresting Mickey Cohen', 'Graham Beckel': 'Dick Stensland'}" tt0089457,"{'Matthew Broderick': 'Gaston', 'Rutger Hauer': 'Navarre', 'Michelle Pfeiffer': 'Isabeau', 'Leo McKern': 'Imperius', 'John Wood': 'Bishop', 'Ken Hutchison': 'Marquet', 'Alfred Molina': 'Cezar', 'Giancarlo Prete': 'Fornac', 'Loris Loddi': 'Jehan', 'Alex Serra': 'Mr. Pitou (as Alessandro Serra)', 'Charles Borromel': 'Insane Prisoner', 'Massimo Sarchielli': 'Innkeeper', 'Nicolina Papetti': 'Mrs. Pitou', 'Russel Case': 'Lieutenant (as Russell Kase)', 'Donald Hodson': 'Guard on Cart (as Don Hudson)'}" tt0056172,"{""Peter O'Toole"": 'T.E. Lawrence', 'Alec Guinness': 'Prince Faisal', 'Anthony Quinn': 'Auda Abu Tayi', 'Jack Hawkins': 'General Allenby', 'Omar Sharif': 'Sherif Ali', 'José Ferrer': 'Turkish Bey (as Jose Ferrer)', 'Anthony Quayle': 'Colonel Brighton', 'Claude Rains': 'Mr. Dryden', 'Arthur Kennedy': 'Jackson Bentley', 'Donald Wolfit': 'General Murray', 'I.S. Johar': 'Gasim', 'Gamil Ratib': 'Majid', 'Michel Ray': 'Farraj', 'John Dimech': 'Daud', 'Zia Mohyeddin': 'Tafas'}" tt0110322,"{'Brad Pitt': 'Tristan', 'Anthony Hopkins': 'Ludlow', 'Aidan Quinn': 'Alfred', 'Julia Ormond': 'Susannah', 'Henry Thomas': 'Samuel', 'Karina Lombard': 'Isabel Two', 'Tantoo Cardinal': 'Pet', 'Gordon Tootoosis': 'One Stab', 'Paul Desmond': 'Decker', 'Christina Pickles': 'Isabel', 'Robert Wisden': ""John T. O'Banion"", 'John Novak': ""James O'Banion (as John Novack)"", 'Kenneth Welsh': 'Sheriff Tynert', 'Bill Dow': 'Longley', 'Sam Sarkar': 'Rodriguez'}" tt0097733,"{'Mel Gibson': 'Martin Riggs', 'Danny Glover': 'Roger Murtaugh', 'Joe Pesci': 'Leo Getz', 'Joss Ackland': 'Arjen Rudd', ""Derrick O'Connor"": 'Pieter Vorstedt', 'Patsy Kensit': 'Rika Van Den Haas', 'Darlene Love': 'Trish Murtaugh', 'Traci Wolfe': 'Rianne Murtaugh', 'Steve Kahan': 'Captain Murphy', 'Mark Rolston': 'Hans', 'Jenette Goldstein': 'Meagan Shapiro', 'Dean Norris': 'Tim Cavanaugh', 'Juney Smith': 'Tom Wyler', 'Nestor Serrano': 'Eddie Estaban', 'Philip Suriano': 'Joseph Ragucci'}" tt0110413,"{'Jean Reno': 'Leon', 'Gary Oldman': 'Stansfield', 'Natalie Portman': 'Mathilda', 'Danny Aiello': 'Tony', 'Peter Appel': 'Malky', 'Willi One Blood': '1st Stansfield Man (as Willie One Blood)', 'Don Creech': '2nd Stansfield man', 'Keith A. Glascoe': '3rd Stansfield man', 'Randolph Scott': '4th Stansfield man', 'Michael Badalucco': ""Mathilda's Father"", 'Ellen Greene': ""Mathilda's Mother"", 'Elizabeth Regen': ""Mathilda's Sister"", 'Carl J. Matusovich': ""Mathilda's Brother"", 'Frank Senger': 'Fatman', 'Lucius Wyatt Cherokee': ""Tonto (as Lucius Wyatt 'Cherokee')""}" tt0107178,"{'Richard Thomas': 'Richard Farley', 'Brooke Shields': 'Laura Black', 'Viveka Davis': 'Mary Ann', 'William Allen Young': 'Chris', 'Richard Yniguez': 'Lt. Grijalva', 'Scott Bryce': 'Sam Waters', 'Linda Emond': 'Penny', 'T. Max Graham': 'Captain Olson', 'Kevin Brief': 'Lt. Mark Shagan', 'Tim Snay': 'SWAT Lt. Bannister', 'Dick Mueller': 'Tom Black', 'Donna Thomason': 'Glenda Moritz', 'Mark McCarthy': 'Wayne Williams', 'Merle Moores': 'Donna Black', 'Caroline Vinciguerra': 'Sarah Black'}" tt0325805,"{'Nicolas Cage': 'Roy Waller', 'Sam Rockwell': 'Frank Mercer', 'Alison Lohman': 'Angela', 'Bruce Altman': 'Dr. Klein', 'Bruce McGill': 'Chuck Frechette', ""Jenny O'Hara"": 'Mrs. Schaffer', 'Steve Eastin': 'Mr. Schaffer', 'Beth Grant': 'Laundry Lady', 'Sheila Kelley': 'Kathy', 'Fran Kranz': 'Slacker Boyfriend', 'Tim Kelleher': 'Bishop', 'Nigel Gibbs': 'Holt', 'Bill Saito': 'Pharmacist #1', 'Tim Maculan': 'Pharmacist #2', 'Stoney Westmoreland': 'Man in Line'}" tt0303361,"{'Angela Bettis': 'May Dove Canady', 'Jeremy Sisto': 'Adam Stubbs', 'Anna Faris': 'Polly', 'James Duval': 'Blank', 'Nichole Hiltz': 'Ambrosia', 'Kevin Gage': 'Papa Canady', 'Merle Kennedy': 'Mama Canady', 'Chandler Riley Hecht': 'Young May', 'Rachel David': 'Petey', 'Nora Zehetner': 'Hoop', 'Will Estes': ""Chris, Adam's Roommate"", 'Roxanne Day': 'Buckle', 'Samantha Adams': 'Lucille', 'Brittney Lee Harvey': 'Diedre', 'Connor Matheus': 'Kindergarten Boy'}" tt0829482,"{'Jonah Hill': 'Seth', 'Michael Cera': 'Evan', 'Christopher Mintz-Plasse': 'Fogell', 'Bill Hader': 'Officer Slater', 'Seth Rogen': 'Officer Michaels', 'Martha MacIsaac': 'Becca', 'Emma Stone': 'Jules', 'Aviva Baumann': 'Nicola (as Aviva)', 'Joe Lo Truglio': 'Francis the Driver', 'Kevin Corrigan': 'Mark', 'Clement Blake': 'Homeless Guy (as Clement E. Blake)', 'Erica Vittina Phillips': 'Liquor Store Cashier', 'Joe Nunez': 'Liquor Store Clerk (as Joseph A. Nunez)', 'Dave Franco': 'Greg the Soccer Player', 'Marcella Lentz-Pope': 'Gaby'}" tt0280590,"{'Adam Sandler': 'Longfellow Deeds', 'Winona Ryder': 'Babe Bennett', 'John Turturro': 'Emilio Lopez', 'Allen Covert': 'Marty', 'Peter Gallagher': 'Chuck Cedar', 'Jared Harris': 'Mac McGrath', 'Erick Avari': 'Cecil Anderson', 'Peter Dante': 'Murph', 'Conchata Ferrell': 'Jan', 'Harve Presnell': 'Preston Blake', 'Steve Buscemi': 'Crazy Eyes', 'Blake Clark': ""Buddy Ward, Kevin's Father"", 'John McEnroe': 'John McEnroe', 'J.B. Smoove': 'Reuben', 'Tom McNulty': 'Red Parka Man'}" tt0031679,"{'Jean Arthur': 'Saunders', 'James Stewart': 'Jefferson Smith', 'Claude Rains': 'Senator Joseph Paine', 'Edward Arnold': 'Jim Taylor', 'Guy Kibbee': 'Governor Hopper', 'Thomas Mitchell': 'Diz Moore', 'Eugene Pallette': 'Chick McGann', 'Beulah Bondi': 'Ma Smith', 'H.B. Warner': 'Senate Majority Leader', 'Harry Carey': 'President of the Senate', 'Astrid Allwyn': 'Susan Paine', 'Ruth Donnelly': 'Mrs. Hopper', 'Grant Mitchell': 'Senator MacPherson', 'Porter Hall': 'Senator Monroe', 'H.V. Kaltenborn': 'H.V. Kaltenborn'}" tt0277371,"{'Chyler Leigh': 'Janey Briggs', 'Chris Evans': 'Jake Wyler', 'Jaime Pressly': 'Priscilla', 'Eric Christian Olsen': 'Austin', 'Mia Kirshner': 'Catherine Wyler', 'Deon Richmond': 'Malik', 'Eric Jungmann': 'Ricky Lipman', 'Ron Lester': 'Reggie Ray', 'Cody McMains': 'Mitch Briggs', 'Sam Huntington': 'Ox', 'JoAnna Garcia Swisher': 'Sandy Sue (as Joanna Garcia)', 'Lacey Chabert': 'Amanda Becker', 'Samm Levine': 'Bruce', 'Cerina Vincent': 'Areola', 'Beverly Polcyn': 'Sadie Agatha Johnson'}" tt0047296,"{'Marlon Brando': 'Terry Malloy', 'Karl Malden': 'Father Barry', 'Lee J. Cobb': 'Johnny Friendly', 'Rod Steiger': 'Charley Malloy', 'Pat Henning': 'Kayo Dugan', 'Leif Erickson': 'Glover', 'James Westerfield': 'Big Mac', 'Tony Galento': 'Truck', 'Tami Mauriello': 'Tillio', 'John F. Hamilton': ""'Pop' Doyle (as John Hamilton)"", 'John Heldabrand': 'Mott', 'Rudy Bond': 'Moose', 'Don Blackman': 'Luke', 'Arthur Keegan': 'Jimmy', 'Abe Simon': 'Barney'}" tt0107818,"{'Tom Hanks': ""Andrew 'Andy' Beckett"", 'Denzel Washington': 'Joe Miller', 'Roberta Maxwell': 'Judge Tate', 'Buzz Kilman': ""'Crutches' - Courthouse Elevator"", 'Karen Finley': 'Dr. Gillman', 'Daniel Chapman': 'Clinic Storyteller', 'Mark Sorensen Jr.': 'Clinic Patient', 'Jeffrey Williamson': 'Tyrone - Clinic Worker', 'Charles Glenn': 'Kenneth Killcoyne', 'Ron Vawter': 'Bob Seidman', 'Anna Deavere Smith': 'Anthea Burton', 'Stephanie Roth Haberle': 'Rachel Smilow (as Stephanie Roth)', 'Lisa Talerico': ""Shelby O'Hara - Andy's Secretary"", 'Joanne Woodward': 'Sarah Beckett', 'Jason Robards': 'Charles Wheeler'}" tt0093886,"{'Steve Martin': 'C. D. Bales', 'Daryl Hannah': 'Roxanne', 'Rick Rossovich': 'Chris', 'Shelley Duvall': 'Dixie', 'John Kapelos': 'Chuck', 'Fred Willard': 'Mayor Deebs', 'Max Alexander': 'Dean', 'Michael J. Pollard': 'Andy', 'Steve Mittleman': 'Ralston', 'Damon Wayans': 'Jerry', 'Matt Lattanzi': 'Trent', 'Shandra Beri': 'Sandy', 'Blanche Rubin': 'Sophie', 'Jane Campbell': 'Dottie', 'Jean Sincere': 'Nina'}" tt0108002,"{'Sean Astin': ""Daniel E. 'Rudy' Ruettiger"", 'Jon Favreau': 'D-Bob', 'Ned Beatty': 'Daniel Ruettiger', 'Greta Lind': 'Mary', 'Scott Benjaminson': 'Frank Ruettiger', 'Mary Ann Thebus': 'Betty', 'Charles S. Dutton': 'Fortune', 'Lili Taylor': 'Sherry', 'Christopher Reed': 'Pete', 'Deborah Wittenberg': 'Young Sherry', 'Christopher Erwin': '7-Year-Old Mark', 'Kevin Duda': '9-Year-Old Bernie', 'Robert Benirschke': '11-Year-Old Mark', 'Luke Massery': '13-Year-Old Rudy', 'Robert J. Steinmiller Jr.': '13-Year-Old Pete'}" tt0323944,"{'Hayden Christensen': 'Stephen Glass', 'Peter Sarsgaard': ""Charles 'Chuck' Lane"", 'Chloë Sevigny': 'Caitlin Avey', 'Rosario Dawson': 'Andy Fox', 'Melanie Lynskey': 'Amy Brand', 'Hank Azaria': 'Michael Kelly', 'Steve Zahn': 'Adam Penenberg', 'Mark Blum': 'Lewis Estridge', 'Simone-Élise Girard': 'Catarina Bannier', 'Chad Donella': 'David Bach', 'Jamie Elman': 'Aaron Bluth', 'Luke Kirby': 'Rob Gruen', 'Cas Anvar': 'Kambiz Foroohar', 'Linda Smith': 'Gloria (as Linda E. Smith)', 'Ted Kotcheff': 'Marty Peretz'}" tt0385004,"{'Takeshi Kaneshiro': 'Jin', 'Andy Lau': 'Leo', 'Ziyi Zhang': 'Xiao Mei (as Zhang Ziyi)', 'Dandan Song': 'Yee', 'Hongfei Zhao': 'Performer', 'Jun Guo': 'Performer', 'Shu Zhang': 'Performer', 'Jiusheng Wang': 'Performer', 'Zhengyong Zhang': 'Performer', 'Yongxin Wang': 'Performer', 'Dong Liu': 'Performer', 'Qi Zi': 'Performer', 'Xuedong Qu': 'Performer', 'Liping Tian': 'Performer', 'Hongwei Zhao': 'Performer'}" tt0091949,"{'Ally Sheedy': 'Stephanie Speck', 'Steve Guttenberg': 'Newton Crosby', 'Fisher Stevens': 'Ben Jabituya', 'Austin Pendleton': 'Howard Marner', 'G.W. Bailey': 'Skroeder', 'Brian McNamara': 'Frank', 'Tim Blaney': 'Number 5 (voice)', 'Marvin J. McIntyre': 'Duke', 'John Garber': 'Otis', 'Penny Santon': 'Mrs. Cepeda', 'Vernon Weddle': 'General Washburne', 'Barbara Tarbuck': 'Senator Mills', 'Tom Lawrence': ""Howard Marner's Aide"", 'Fred Slyter': 'Norman', 'Billy Ray Sharkey': 'Zack'}" tt0067328,"{'Timothy Bottoms': 'Sonny Crawford', 'Jeff Bridges': 'Duane Jackson', 'Cybill Shepherd': 'Jacy Farrow', 'Ben Johnson': 'Sam the Lion', 'Cloris Leachman': 'Ruth Popper', 'Ellen Burstyn': 'Lois Farrow', 'Eileen Brennan': 'Genevieve', 'Clu Gulager': 'Abilene', 'Sam Bottoms': 'Billy', 'Sharon Ullrick': 'Charlene Duggs (as Sharon Taggart)', 'Randy Quaid': 'Lester Marlow', 'Joe Heathcock': 'Sheriff', 'Bill Thurman': 'Coach Popper', 'Barc Doyle': 'Joe Bob Blanton', 'Jessie Lee Fulton': 'Miss Mosey'}" tt0090022,"{'Kevin Kline': 'Paden', 'Scott Glenn': 'Emmett', 'Kevin Costner': 'Jake', 'Danny Glover': 'Mal', 'Marvin J. McIntyre': 'Clerk', 'Brad Leland': 'Trooper (as Brad Williams)', 'Sheb Wooley': 'Cavalry Sergeant', 'Jonathan Kasdan': 'Boy at Outpost (as Jon Kasdan)', 'John Cleese': 'Sheriff Langston', 'Todd Allen': 'Deputy Kern', 'Kenny Call': 'Deputy Block', 'Bill Thurman': 'Carter', 'Meg Kasdan': 'Barmaid', 'Dick Durock': 'Bar Fighter', 'Gene Hartline': 'Bar Fighter'}" tt0105414,"{'Bridget Fonda': 'Allison Jones', 'Jennifer Jason Leigh': 'Hedra Carlson', 'Steven Weber': 'Sam Rawson', 'Peter Friedman': 'Graham Knox', 'Stephen Tobolowsky': 'Mitchell Myerson', 'Frances Bay': 'Elderly Neighbor', 'Michele Farr': ""Myerson's Assistant"", 'Tara Karsian': 'Mannish Applicant', ""Christiana D'Amore"": 'Exotic Applicant (as Christiana Capetillo)', 'Jessica Lundy': 'Talkative Applicant', 'Renée Estevez': 'Perfect Applicant (as Rene Estevez)', 'Tiffany Mataras': 'Twin', 'Krystle Mataras': 'Twin', 'Amelia Campbell': 'Check Cashier', 'Kenneth Tobey': 'Desk Clerk (as Ken Tobey)'}" tt0108160,"{'Tom Hanks': 'Sam Baldwin', 'Ross Malinger': 'Jonah Baldwin', 'Rita Wilson': 'Suzy', 'Victor Garber': 'Greg', 'Tom Riis Farrell': 'Rob', 'Carey Lowell': 'Maggie Baldwin', 'Meg Ryan': 'Annie Reed', 'Bill Pullman': 'Walter', 'Le Clanché du Rand': 'Barbara Reed', ""Kevin O'Morrison"": 'Cliff Reed', 'David Hyde Pierce': 'Dennis Reed', 'Valerie Wright': 'Betsy Reed', 'Frances Conroy': 'Irene Reed', 'Tom Tammi': 'Harold Reed', 'Calvin Trillin': 'Uncle Milton'}" tt0208092,"{'Benicio Del Toro': 'Franky Four Fingers', 'Dennis Farina': 'Cousin Avi', 'Vinnie Jones': 'Bullet-Tooth Tony', 'Brad Pitt': ""Mickey O'Neil"", 'Rade Serbedzija': 'Boris the Blade (as Rade Sherbedgia)', 'Jason Statham': 'Turkish', 'Alan Ford': 'Brick Top', 'Mike Reid': 'Doug the Head', 'Robbie Gee': 'Vinny', 'Lennie James': 'Sol', 'Ewen Bremner': 'Mullet', 'Jason Flemyng': 'Darren', 'Ade': 'Tyrone', 'William Beck': 'Neil', 'Andy Beckwith': 'Errol'}" tt0108174,"{'Mike Myers': 'Charlie Mackenzie / Stuart Mackenzie', 'Nancy Travis': 'Harriet Michaels', 'Anthony LaPaglia': 'Tony Giardino', 'Amanda Plummer': 'Rose Michaels', 'Brenda Fricker': 'May Mackenzie', 'Matt Doherty': 'Heed', 'Charles Grodin': 'Commandeered Driver', 'Phil Hartman': ""Ranger John 'Vicky' Johnson"", 'Debi Mazar': 'Susan', 'Steven Wright': 'Pilot', 'Patrick Bristow': 'Cafe Roads Performer', 'Cintra Wilson': 'Cafe Roads M.C.', 'Al Nalbandian': 'Butchershop Customer', 'George F. Mauricio': 'Butchershop Customer (as George Mauricio)', 'Kiki Douveas': 'Butchershop Customer'}" tt0092005,"{'Wil Wheaton': 'Gordie Lachance', 'River Phoenix': 'Chris Chambers', 'Corey Feldman': 'Teddy Duchamp', ""Jerry O'Connell"": 'Vern Tessio', 'Kiefer Sutherland': 'Ace Merrill', 'Casey Siemaszko': 'Billy Tessio', 'Gary Riley': 'Charlie Hogan', 'Bradley Gregg': 'Eyeball Chambers', 'Jason Oliver Lipsett': 'Vince Desjardins (as Jason Oliver)', 'Marshall Bell': 'Mr. Lachance', 'Frances Lee McCain': 'Mrs. Lachance', 'Bruce Kirby': 'Mr. Quidacioluo', 'William Bronder': 'Milo Pressman', 'Scott Beach': 'Mayor Grundy', 'Richard Dreyfuss': 'The Writer'}" tt0120201,"{'Casper Van Dien': 'Johnny Rico', 'Dina Meyer': 'Dizzy Flores', 'Denise Richards': 'Carmen Ibanez', 'Jake Busey': 'Ace Levy', 'Neil Patrick Harris': 'Carl Jenkins', 'Clancy Brown': 'Sgt. Zim', 'Seth Gilliam': 'Sugar Watkins', 'Patrick Muldoon': 'Zander Barcalow', 'Michael Ironside': 'Jean Rasczak', 'Rue McClanahan': 'Biology Teacher', 'Marshall Bell': 'General Owen', 'Eric Bruskotter': 'Breckinridge', 'Matt Levin': 'Kitten Smith', 'Blake Lindsley': 'Katrina', 'Anthony Ruivivar': 'Shujimi'}" tt0160127,"{'Cameron Diaz': 'Natalie', 'Drew Barrymore': 'Dylan', 'Lucy Liu': 'Alex', 'Bill Murray': 'Bosley', 'Sam Rockwell': 'Eric Knox', 'Kelly Lynch': 'Vivian Wood', 'Tim Curry': 'Roger Corwin', 'Crispin Glover': 'Thin Man', 'Matt LeBlanc': 'Jason', 'LL Cool J': 'Mr. Jones', 'Tom Green': 'Chad', 'Luke Wilson': 'Pete', 'Sean Whalen': 'Pasqual', 'Tim Dunaway': 'Flight Attendant', 'Alex Trebek': 'Himself'}" tt0044079,"{'Farley Granger': 'Guy Haines', 'Ruth Roman': 'Anne Morton', 'Robert Walker': 'Bruno Antony', 'Leo G. Carroll': 'Sen. Morton', 'Patricia Hitchcock': 'Barbara Morton', 'Kasey Rogers': 'Miriam Joyce Haines (as Laura Elliott)', 'Marion Lorne': 'Mrs. Antony', 'Jonathan Hale': 'Mr. Antony', 'Howard St. John': 'Police Capt. Turley', 'John Brown': 'Prof. Collins', 'Norma Varden': 'Mrs. Cunningham', 'Robert Gist': 'Det. Leslie Hennessey'}" tt0083131,"{'Bill Murray': 'John', 'Harold Ramis': 'Russell', 'Warren Oates': 'Sgt. Hulka', 'P.J. Soles': 'Stella', 'Sean Young': 'Louise', 'John Candy': 'Ox', 'John Larroquette': 'Capt. Stillman', 'John Voldstad': ""Stillman's Aide"", 'John Diehl': 'Cruiser', 'Lance LeGault': 'Col. Glass', 'Roberta Leighton': 'Anita', 'Conrad Dunn': 'Psycho', 'Judge Reinhold': 'Elmo', 'Antone Pagán': 'Hector (as Antone Pagan)', 'Glenn-Michael Jones': 'Leon'}" tt0096764,"{'John Neville': 'Hieronymus Karl Frederick Baron von Munchausen', 'Eric Idle': 'Desmond / Berthold', 'Sarah Polley': 'Sally Salt', 'Oliver Reed': 'Vulcan', 'Charles McKeown': 'Rupert / Adolphus', 'Winston Dennis': 'Bill / Albrecht', 'Jack Purvis': 'Jeremy / Gustavus', 'Valentina Cortese': 'Queen Ariadne / Violet', 'Jonathan Pryce': 'The Right Ordinary Horatio Jackson', 'Bill Paterson': 'Henry Salt', 'Peter Jeffrey': 'Sultan', 'Uma Thurman': 'Venus / Rose', 'Alison Steadman': 'Daisy', 'Ray Cooper': 'Functionary', 'Don Henderson': 'Commander'}" tt0080453,"{'Brooke Shields': 'Emmeline Lestrange', 'Christopher Atkins': 'Richard Lestrange', 'Leo McKern': 'Paddy Button', 'William Daniels': 'Arthur Lestrange', 'Elva Josephson': 'Young Emmeline', 'Glenn Kohan': 'Young Richard', 'Alan Hopgood': 'Captain', 'Gus Mercurio': 'Officer', 'Jeffrey Kleiser': 'Lookout (as Jeffrey Means)', 'Bradley Pryce': 'Little Paddy', 'Chad Timmerman': 'Infant Paddy (as Chad Timmermans)', 'Gert Jacoby': 'Sailor', 'Alex Hamilton': 'Sailor', 'Richard Evanson': 'Sailor'}" tt0050212,"{'William Holden': 'Shears', 'Alec Guinness': 'Colonel Nicholson', 'Jack Hawkins': 'Major Warden', 'Sessue Hayakawa': 'Colonel Saito', 'James Donald': 'Major Clipton', 'Geoffrey Horne': 'Lieutenant Joyce', 'André Morell': 'Colonel Green (as Andre Morell)', 'Peter Williams': 'Captain Reeves', 'John Boxer': 'Major Hughes', 'Percy Herbert': 'Grogan', 'Harold Goodwin': 'Baker', 'Ann Sears': 'Nurse', 'Heihachirô Ôkawa': ""Captain Kanematsu (as Heihachirô 'Henry' Ôkawa)"", 'Keiichirô Katsumoto': 'Lieutenant Miura (as Keiichiro Katsumoto) (as K. Katsumoto)', 'M.R.B. Chakrabandhu': 'Yai'}" tt0382625,"{'Tom Hanks': 'Robert Langdon', 'Audrey Tautou': 'Sophie Neveu', 'Ian McKellen': 'Sir Leigh Teabing', 'Jean Reno': 'Captain Bezu Fache', 'Paul Bettany': 'Silas', 'Alfred Molina': 'Bishop Manuel Aringarosa', 'Jürgen Prochnow': 'Andre Vernet', 'Jean-Yves Berteloot': 'Remy Jean', 'Etienne Chicot': 'Lt. Collet', 'Jean-Pierre Marielle': 'Jacques Saunière', 'Marie-Françoise Audollent': 'Sister Sandrine', 'Rita Davies': 'Elegant Woman at Rosslyn', 'Francesco Carnelutti': 'Prefect', 'Seth Gabel': 'Michael', 'Shane Zaza': 'Youth on Bus'}" tt0119116,"{'Bruce Willis': 'Korben Dallas', 'Gary Oldman': 'Zorg', 'Ian Holm': 'Cornelius', 'Milla Jovovich': 'Leeloo', 'Chris Tucker': 'Ruby Rhod', 'Luke Perry': 'Billy', 'Brion James': 'General Munro', ""Tommy 'Tiny' Lister"": ""President Lindberg (as Tommy 'Tiny' Lister Jr.)"", 'Lee Evans': 'Fog', 'Charlie Creed-Miles': 'David (as Charlie Creed Miles)', 'Tricky': 'Right Arm', 'John Neville': 'General Staedert', 'John Bluthal': 'Professor Pacoli', 'Mathieu Kassovitz': 'Mugger', 'Christopher Fairbank': 'Mactilburgh'}" tt0070909,"{'Yul Brynner': 'Gunslinger', 'Richard Benjamin': 'Peter Martin', 'James Brolin': 'John Blane', 'Norman Bartold': 'Medieval Knight', 'Alan Oppenheimer': 'Chief Supervisor', 'Victoria Shaw': 'Medieval Queen', 'Dick Van Patten': 'Banker', 'Linda Gaye Scott': 'Arlette (as Linda Scott)', 'Steve Franken': 'Technician', 'Michael T. Mikler': 'Black Knight (as Michael Mikler)', 'Terry Wilson': 'Sheriff', 'Majel Barrett': 'Miss Carrie', 'Anne Randall': 'Daphne', 'Julie Marcus': 'Girl in Dungeon', 'Sharyn Wynters': 'Apache Girl'}" tt0865556,"{'Jet Li': 'The Monkey King / The Silent Monk', 'Michael Angarano': 'Jason Tripitikas', 'Jackie Chan': 'Lu Yan / Old Hop', 'Juana Collignon': 'Southie Girl', 'Morgan Benoit': 'Lupo', 'Jack Posobiec': 'Southie', 'Thomas McDonell': 'Young Southie', 'Zhi Ma Gui': 'Old Woman', 'Shen Shou He': 'Farmer', 'Bin Jiang': 'Young Village Man', 'Shaohua Yang': 'Jade Soldier', 'Yu Yuan Zeng': 'Inn Keeper', 'Deshun Wang': 'Jade Emperor', 'XiaoLi Liu': 'Queen Mother', 'Collin Chou': 'Jade Warlord'}" tt0087538,"{'Ralph Macchio': 'Daniel', 'Pat Morita': ""Miyagi (as Noriyuki 'Pat' Morita)"", 'Elisabeth Shue': 'Ali', 'Martin Kove': 'Kreese', 'Randee Heller': 'Lucille', 'William Zabka': 'Johnny', 'Ron Thomas': 'Bobby', 'Rob Garrison': 'Tommy', 'Chad McQueen': 'Dutch', ""Tony O'Dell"": 'Jimmy', 'Israel Juarbe': 'Freddy', 'William Bassett': 'Mr. Mills', 'Larry B. Scott': 'Jerry', 'Juli Fields': 'Susan', 'Dana Andersen': 'Barbara'}" tt0033870,"{'Humphrey Bogart': 'Samuel Spade', 'Mary Astor': ""Brigid O'Shaughnessy"", 'Gladys George': 'Iva Archer', 'Peter Lorre': 'Joel Cairo', 'Barton MacLane': 'Lt. of Detectives Dundy', 'Lee Patrick': 'Effie Perine', 'Sydney Greenstreet': 'Kasper Gutman', 'Ward Bond': 'Detective Tom Polhaus', 'Jerome Cowan': 'Miles Archer', 'Elisha Cook Jr.': 'Wilmer Cook', 'James Burke': 'Luke', 'Murray Alper': 'Frank Richman', 'John Hamilton': 'Bryan'}" tt0120746,"{'José María de Tavira': 'Young Alejandro Murrieta (as Jose Maria de Tavira)', 'Diego Sieres': 'Young Joaquín Murrieta', 'Emiliano Guerra': 'Boy Crying', 'Yolanda Orizaga': 'Woman Crying', 'Paco Morayta': 'Undertaker', 'William Marquez': 'Fray Felipe', 'Stuart Wilson': 'Don Rafael Montero', 'Tony Amendola': 'Don Luiz', 'Anthony Hopkins': 'Don Diego de la Vega / Zorro', 'Pedro Altamirano': 'Squad Leader', 'Luisa Huertas': 'Nanny', 'María Fernández Cruz': 'Baby Elena de la Vega (as Maria Fernandez Cruz)', 'Mónica Fernández Cruz': 'Baby Elena de la Vega (as Monica Fernandez Cruz)', 'Julieta Rosen': 'Esperanza de la Vega', 'Antonio Banderas': 'Alejandro Murrieta / Zorro'}" tt0087781,"{'Robert Redford': 'Roy Hobbs', 'Robert Duvall': 'Max Mercy', 'Glenn Close': 'Iris Gaines', 'Kim Basinger': 'Memo Paris', 'Wilford Brimley': 'Pop Fisher', 'Barbara Hershey': 'Harriet Bird', 'Robert Prosky': 'The Judge', 'Richard Farnsworth': 'Red Blow', 'Joe Don Baker': 'The Whammer', 'John Finnegan': 'Sam Simpson', 'Alan Fudge': 'Ed Hobbs', 'Paul Sullivan Jr.': 'Young Roy', 'Rachel Hall': 'Young Iris', 'Robert Rich III': 'Ted Hobbs', 'Michael Madsen': 'Bump Bailey'}" tt0120768,"{'Samuel L. Jackson': 'Danny Roman', 'Kevin Spacey': 'Chris Sabian', 'David Morse': 'Adam Beck', 'Ron Rifkin': 'Grant Frost', 'John Spencer': 'Chief Al Travis', 'J.T. Walsh': 'Terence Niebaum', 'Siobhan Fallon Hogan': 'Maggie (as Siobhan Fallon)', 'Paul Giamatti': 'Rudy', 'Regina Taylor': 'Karen Roman', 'Bruce Beatty': 'Markus', 'Michael Cudlitz': 'Palermo', 'Carlos Gómez': 'Eagle', 'Tim Kelleher': 'Argento', 'Dean Norris': 'Scott', 'Nestor Serrano': 'Hellman'}" tt0187393,"{'Mel Gibson': 'Benjamin Martin', 'Heath Ledger': 'Gabriel Martin', 'Joely Richardson': 'Charlotte Selton', 'Jason Isaacs': 'Col. William Tavington', 'Chris Cooper': 'Col. Harry Burwell', 'Tchéky Karyo': 'Jean Villeneuve', 'Rene Auberjonois': 'Reverend Oliver', 'Lisa Brenner': 'Anne Howard', 'Tom Wilkinson': 'Gen. Lord Charles Cornwallis', 'Donal Logue': 'Dan Scott', 'Leon Rippy': 'John Billings', 'Adam Baldwin': 'Capt. Wilkins', 'Jay Arlen Jones': 'Occam', 'Joey D. Vieira': 'Peter Howard', 'Gregory Smith': 'Thomas Martin'}" tt0117318,"{'Woody Harrelson': 'Larry Flynt', 'Courtney Love': 'Althea Leasure Flynt', 'Edward Norton': 'Alan Isaacman', 'Brett Harrelson': 'Jimmy Flynt', 'Donna Hanover': 'Ruth Carter Stapleton', 'James Cromwell': 'Charles Keating', 'Crispin Glover': 'Arlo', 'Vincent Schiavelli': 'Chester', 'Miles Chapin': 'Miles', 'James Carville': 'Simon Leis', 'Richard Paul': 'Reverend Jerry Falwell', 'Burt Neuborne': 'Roy Grutman', 'Jan Tríska': 'The Assassin', 'Cody Block': '10-Year-Old Larry', 'Ryan Post': '8-Year-Old Jimmy'}" tt0454921,"{'Will Smith': 'Chris Gardner', 'Jaden Smith': 'Christopher (as Jaden Christopher Syre Smith)', 'Thandie Newton': 'Linda', 'Brian Howe': 'Jay Twistle', 'James Karen': 'Martin Frohm', 'Dan Castellaneta': 'Alan Frakesh', 'Kurt Fuller': 'Walter Ribbon', 'Takayo Fischer': 'Mrs. Chu', 'Kevin West': ""World's Greatest Dad"", 'George Cheung': 'Chinese Maintenance Worker (as George K. Cheung)', 'David Michael Silverman': 'Doctor at First Hospital', 'Domenic Bove': 'Tim Ribbon', 'Geoff Callan': 'Ferrari Owner', 'Joyful Raven': 'Hippie Girl', 'Scott Klace': 'Tim Brophy'}" tt0107943,"{'John Haycraft': 'Auctioneer', 'Christopher Reeve': 'Lewis', 'Anthony Hopkins': 'Stevens', 'Emma Thompson': 'Miss Kenton', 'Caroline Hunt': 'Landlady', 'James Fox': 'Lord Darlington', 'Peter Vaughan': 'Father', 'Paula Jacobs': 'Mrs. Mortimer, the Cook', 'Ben Chaplin': 'Charlie, Head Footman', 'Steve Dibben': 'George, Second Footman', 'Abigail Hopkins': 'Housemaid (as Abigail Harrison)', 'Patrick Godfrey': 'Spencer', 'Peter Cellier': 'Sir Leonard Bax', 'Peter Halliday': 'Canon Tufnell', 'Hugh Grant': 'Cardinal'}" tt0292644,"{'James Van Der Beek': 'Sean Bateman', 'Shannyn Sossamon': 'Lauren Hynde', 'Jessica Biel': 'Lara', 'Kip Pardue': 'Victor', 'Kate Bosworth': 'Kelly', 'Ian Somerhalder': 'Paul Denton', 'Joel Michaely': 'Raymond', 'Jay Baruchel': 'Harry', 'Thomas Ian Nicholas': 'Mitchell', 'Clifton Collins Jr.': 'Rupert', 'Clare Kramer': 'Candice', 'Faye Dunaway': 'Mrs. Denton', 'Swoosie Kurtz': 'Mrs. Jared', 'Russell Sams': 'Richard', 'Colin Bain': 'Donald'}" tt0108071,"{'Kate Maberly': 'Mary Lennox', 'Heydon Prowse': 'Colin Craven', 'Andrew Knott': 'Dickon', 'Maggie Smith': 'Mrs. Medlock', 'Laura Crossley': 'Martha', 'John Lynch': 'Lord Archibald Craven', 'Walter Sparrow': 'Ben Weatherstaff', 'Irène Jacob': ""Mary's Mother / Lilias Craven (as Irene Jacob)"", 'Frank Baker': 'Government Official', 'Valerie Hill': 'Cook', 'Andrea Pickering': 'Betty Butterworth', 'Peter Moreton': 'Will', 'Arthur Spreckley': 'John', 'Colin Bruce': 'Major Lennox', 'Parsan Singh': 'Ayah'}" tt1273678,"{'Jackie Chan': 'Bob Ho', 'Amber Valletta': 'Gillian', 'Madeline Carroll': 'Farren', 'Will Shadley': 'Ian', 'Alina Foley': 'Nora', 'Magnús Scheving': 'Anton Poldark (as Magnus Scheving)', 'Billy Ray Cyrus': 'Colton James', 'George Lopez': 'Glaze', 'Katherine Boecher': 'Creel', 'Mia Stallard': 'Cute Girl', 'Maverick McWilliams': 'Chad', 'Quinn Mason': 'Carl', 'Margaret Murphy': 'Mom', 'Esodie Geiger': 'Principal', 'Arron Shiver': 'Scientist'}" tt0367089,"{'Owen Kline': 'Frank Berkman', 'Jeff Daniels': 'Bernard Berkman', 'Laura Linney': 'Joan Berkman', 'Jesse Eisenberg': 'Walt Berkman', 'William Baldwin': 'Ivan', 'David Benger': 'Carl', 'Anna Paquin': 'Lili', 'Molly Barton': 'Graduate Student', 'Bo Berkman': 'Graduate Student', 'Matthew Kaplan': 'Graduate Student', 'Simon Kaplan': 'Graduate Student', 'Matthew Kirsch': 'Graduate Student', 'Daniella Markowicz': 'Graduate Student', 'Elizabeth Meriwether': 'Graduate Student', 'Ben Schrank': 'Graduate Student'}" tt0087332,"{'Bill Murray': 'Dr. Peter Venkman', 'Dan Aykroyd': 'Dr. Raymond Stantz', 'Sigourney Weaver': 'Dana Barrett', 'Harold Ramis': 'Dr. Egon Spengler', 'Rick Moranis': 'Louis Tully', 'Annie Potts': 'Janine Melnitz', 'William Atherton': 'Walter Peck', 'Ernie Hudson': 'Winston Zeddemore', 'David Margulies': 'Mayor', 'Steven Tash': 'Male Student', 'Jennifer Runyon': 'Female Student', 'Slavitza Jovan': 'Gozer', 'Michael Ensign': 'Hotel Manager', 'Alice Drummond': 'Librarian', 'Jordan Charney': 'Dean Yeager'}" tt0320691,"{'Kate Beckinsale': 'Selene', 'Scott Speedman': 'Michael', 'Michael Sheen': 'Lucian', 'Shane Brolly': 'Kraven', 'Bill Nighy': 'Viktor', 'Erwin Leder': 'Singe', 'Sophia Myles': 'Erika', 'Robbie Gee': 'Kahn (as Robby Gee)', 'Wentworth Miller': 'Dr. Adam', 'Kevin Grevioux': 'Raze', 'Zita Görög': 'Amelia', 'Dennis J. Kozeluh': 'Dignitary (as Dennis Kozeluh)', 'Scott McElroy': 'Soren', 'Todd Schneider': 'Trix', 'Sándor Bolla': 'Rigel'}" tt0383694,"{'Imelda Staunton': 'Vera', 'Richard Graham': 'George', 'Eddie Marsan': 'Reg', 'Anna Keaveney': 'Nellie', 'Alex Kelly': 'Ethel', 'Daniel Mays': 'Sid', 'Phil Davis': 'Stan', 'Lesley Manville': 'Mrs. Wells', 'Sally Hawkins': 'Susan', 'Simon Chandler': 'Mr. Wells', 'Sam Troughton': 'David', 'Marion Bailey': 'Mrs. Fowler', 'Sandra Voe': ""Vera's Mother"", ""Chris O'Dowd"": ""Sid's Customer"", 'Adrian Scarborough': 'Frank'}" tt0120890,"{'Kevin Bacon': 'Ray Duquette', 'Matt Dillon': 'Sam Lombardo', 'Neve Campbell': 'Suzie Toller', 'Theresa Russell': 'Sandra Van Ryan', 'Denise Richards': 'Kelly Van Ryan', 'Daphne Rubin-Vega': 'Gloria Perez', 'Robert Wagner': 'Tom Baxter', 'Bill Murray': 'Ken Bowden', 'Carrie Snodgress': 'Ruby', 'Jeff Perry': 'Bryce Hunter', 'Cory Pendergast': 'Jimmy Leach', 'Marc Macaulay': 'Walter', 'Toi Svane Stepp': 'Nicole (as Toi Svane)', 'Dennis Neal': 'Art Maddox', 'Diane Adams': 'School Secretary'}" tt1156398,"{'Jesse Eisenberg': 'Columbus', 'Woody Harrelson': 'Tallahassee', 'Emma Stone': 'Wichita', 'Abigail Breslin': 'Little Rock', 'Amber Heard': '406', 'Bill Murray': 'Bill Murray', 'Derek Graf': 'Clown Zombie'}" tt1554091,"{'Demián Bichir': 'Carlos Galindo (as Demian Bichir)', ""Eddie 'Piolin' Sotelo"": ""Eddie 'Piolin' Sotelo"", 'Joaquín Cosio': 'Blasco Martinez', 'José Julián': 'Luis Galindo', 'Nancy Lenehan': 'Mrs. Donnelley', 'Gabriel Chavarria': 'Ramon', 'Bobby Soto': 'Facundo', 'Chelsea Rendon': 'Ruthie Valdez', 'Trampas Thompson': 'School Security Officer', 'Tim Griffin': 'Juvie Officer', 'Valorie Hubbard': 'School Secretary', 'Dolores Heredia': 'Anita', 'Isabella Rae Thomas': 'Linda', 'Carlos Linares': 'Santiago', 'Robert Peters': 'Truck Driver'}" tt1740707,"{'Otto Jespersen': 'Hans, trolljegeren', 'Glenn Erland Tosterud': 'Thomas', 'Johanna Mørck': 'Johanna', 'Tomas Alf Larsen': 'Kalle', 'Urmila Berg-Domaas': 'Malica', 'Hans Morten Hansen': 'Finn Haugen', 'Robert Stoltenberg': 'Polsk bjørnejeger', 'Knut Nærum': 'E-verkssjef', 'Eirik Bech': 'Campingplasseier', 'TomTom Jorgensen': 'Polsk bjørnejeger (as Tom Jørgensen)', 'Torunn Lødemel Stokkeland': 'Hilde, veterinär'}" tt1306980,"{'Joseph Gordon-Levitt': 'Adam', 'Seth Rogen': 'Kyle', 'Anna Kendrick': 'Katherine', 'Bryce Dallas Howard': 'Rachael', 'Anjelica Huston': 'Diane', 'Serge Houde': 'Richard - Alzheimer Dad', 'Andrew Airlie': 'Dr. Ross', 'Matt Frewer': 'Mitch', 'Philip Baker Hall': 'Alan', 'Donna Yamamoto': 'Dr. Walderson', 'Sugar Lyn Beard': 'Susan', 'Yee Jee Tso': 'Dr. Lee', 'Sarah Smyth': 'Jenny', 'Peter Kelamis': 'Phil', 'Jessica Parker Kennedy': 'Jackie'}" tt1237838,"{'Donald Glover': 'Jason', 'D.C. Pierson': 'Duncan', 'Dominic Dierkes': 'Charlie', 'Aubrey Plaza': 'Kelly', 'Glenn Kalison': 'Robert', 'Peter Saati': 'Leroy', 'Kay Cannon': 'Destiny', 'Bobby Moynihan': 'Jordy', 'Matt Walsh': 'Jim', 'John Lutz': 'Frank', 'Robbie Sublett': 'Ricky Appleman', 'Tom Shillue': 'Alan McGinty', 'Kevin Brown': 'Bouncer', 'Ellie Kemper': 'Jamie', 'Jon Daly': 'Greg'}" tt0360009,"{'Tia Texada': 'Jackie Black', 'Derek Luke': 'Curtis', 'Val Kilmer': 'Scott', 'Jeremie Campbell': 'Cadre Candidate', 'Bob Jennings': ""Grace's Aide"", 'Lionel Mark Smith': 'Colonel Blane', 'Johnny Messner': 'Grace', 'Chris LaCentra': 'Cpl. Sattler (as Chris J. Lacentra)', 'Renato Magno': 'Grossler', 'Mark FitzGerald': 'Training Facility Guard', 'Tony Mamet': 'Parker', 'Clark Gregg': 'Miller', 'Ron Butler': 'Headquarters Agent', 'Steven Culp': 'Gaines (as Stephen Culp)', 'Vincent Guastaferro': 'Naylor'}" tt0308508,"{'Robert August': 'Robert August', 'Rochelle Ballard': 'Herself', 'Shawn Barron': 'Himself', 'Layne Beachley': 'Herself', 'Jesse Brad Billauer': 'Himself', 'Bruce Brown': 'Himself', 'Dana Brown': 'Narrator', 'Taj Burrow': 'Himself', 'Ken Collins': 'Himself', 'Ami DiCamillo': 'Herself', 'Darrick Doerner': 'Himself', 'Richard Fitzgerald': 'Himself', 'Brad Gerlach': 'Himself', 'Laird Hamilton': 'Himself', 'Dave Kalama': 'Himself'}" tt0118971,"{'Keanu Reeves': 'Kevin Lomax', 'Al Pacino': 'John Milton', 'Charlize Theron': 'Mary Ann Lomax', 'Jeffrey Jones': 'Eddie Barzoon', 'Judith Ivey': 'Mrs. Alice Lomax', 'Connie Nielsen': 'Christabella Andreoli', 'Craig T. Nelson': 'Alexander Cullen', 'Tamara Tunie': 'Mrs. Jackie Heath', 'Ruben Santiago-Hudson': 'Leamon Heath', 'Debra Monk': 'Pam Garrety', 'Vyto Ruginis': 'Mitch Weaver - Justice Department', 'Laura Harrington': 'Melissa Black', 'Pamela Gray': 'Mrs. Diana Barzoon', 'George Wyner': 'Meisel', 'Chris Bauer': 'Lloyd Gettys (as Christopher Bauer)'}" tt0129167,"{'Jennifer Aniston': 'Annie Hughes (voice)', 'Harry Connick Jr.': 'Dean McCoppin (voice)', 'Vin Diesel': 'The Iron Giant (voice)', 'James Gammon': 'Foreman Marv Loach / Floyd Turbeaux (voice)', 'Cloris Leachman': 'Mrs. Tensedge (voice)', 'Christopher McDonald': 'Kent Mansley (voice)', 'John Mahoney': 'General Rogard (voice)', 'Eli Marienthal': 'Hogarth Hughes (voice)', 'M. Emmet Walsh': 'Earl Stutz (voice)', 'Jack Angel': 'Additional Voices (voice)', 'Bob Bergen': 'Additional Voices (as Robert Bergen)', 'Mary Kay Bergman': 'Additional Voices (voice)', 'Michael Bird': 'Additional Voices (voice)', 'Devon Cole Borisoff': 'Additional Voices (voice) (as Devon Borisoff)', 'Rodger Bumpass': 'Additional Voices (voice)'}" tt0093437,"{'Jason Patric': 'Michael', 'Corey Haim': 'Sam', 'Dianne Wiest': 'Lucy', 'Barnard Hughes': 'Grandpa', 'Edward Herrmann': 'Max (as Ed Herrmann)', 'Kiefer Sutherland': 'David', 'Jami Gertz': 'Star', 'Corey Feldman': 'Edgar Frog', 'Jamison Newlander': 'Alan Frog', 'Brooke McCarter': 'Paul', 'Billy Wirth': 'Dwayne', 'Alex Winter': 'Marko (as Alexander Winter)', 'Chance Michael Corbitt': 'Laddie', 'Alexander Bacan Chapman': 'Greg (as Alexander Bacon Chapman)', 'Nori Morgan': 'Shelly'}" tt0120004,"{'Penelope Ann Miller': 'Dr. Margo Green', 'Tom Sizemore': ""Lt. Vincent D'Agosta"", 'Linda Hunt': 'Dr. Ann Cuthbert', 'James Whitmore': 'Dr. Albert Frock', 'Clayton Rohner': 'Det. Hollingsworth', 'Chi Muoi Lo': 'Dr. Greg Lee', 'Thomas Ryan': 'Tom Parkinson', 'Robert Lesser': 'Mayor Robert Owen', 'Diane Robin': ""The Mayor's Wife"", 'Lewis Van Bergen': 'John Whitney', 'Constance Towers': 'Mrs. Blaisedale', 'Francis X. McCarthy': 'Mr. Blaisedale', 'Audra Lindley': 'Dr. Zwiezic', 'John Kapelos': 'McNally', 'Tico Wells': 'Bailey'}" tt0086508,"{'Gene Hackman': 'Colonel Rhodes', 'Robert Stack': 'MacGregor', 'Fred Ward': 'Wilkes', 'Reb Brown': 'Blaster', ""Randall 'Tex' Cobb"": 'Sailor', 'Patrick Swayze': 'Scott', 'Harold Sylvester': 'Johnson', 'Tim Thomerson': 'Charts', 'Alice Lau': 'Lai Fun (as Lau Nga Lai)', 'Kwan Hi Lim': 'Jiang', 'Kelly Junkerman': 'MacGregor (as Kelly Yunkerman)', 'Todd Allen': 'Frank Rhodes', 'Gail Strickland': 'Helen Rhodes', 'Jane Kaczmarek': 'Mrs. Wilkes', 'Gloria Stroock': 'Mrs. MacGregor'}" tt1477076,"{'Tobin Bell': 'Jigsaw / John', 'Costas Mandylor': 'Hoffman', 'Betsy Russell': 'Jill', 'Cary Elwes': 'Dr. Gordon', 'Sean Patrick Flanery': 'Bobby', 'Chad Donella': 'Gibson', 'Gina Holden': 'Joyce', 'Laurence Anthony': 'Rogers', 'Dean Armstrong': 'Cale', 'Naomi Snieckus': 'Nina', 'Rebecca Marshall': 'Suzanne', 'James Van Patten': 'Dr. Heffner', 'Sebastian Pigott': 'Brad', 'Jon Cor': 'Ryan', 'Anne Lee Greene': 'Dina (as Anne Greene)'}" tt0816462,"{'Jason Momoa': 'Conan', 'Stephen Lang': 'Khalar Zym', 'Rachel Nichols': 'Tamara', 'Ron Perlman': 'Corin', 'Rose McGowan': 'Marique', 'Bob Sapp': 'Ukafa', 'Leo Howard': 'Young Conan', ""Steven O'Donnell"": 'Lucius', 'Nonso Anozie': 'Artus', 'Raad Rawi': 'Fassir', 'Laila Rouass': 'Fialla', 'Saïd Taghmaoui': 'Ela-Shan', 'Milton Welsh': 'Remo', 'Borislav Iliev': 'Wild Man', 'Nathan Jones': 'Akhun'}" tt0206275,"{'Julia Stiles': 'Sara', 'Sean Patrick Thomas': 'Derek', 'Kerry Washington': 'Chenille', 'Fredro Starr': 'Malakai', 'Terry Kinney': 'Roy', 'Bianca Lawson': 'Nikki', 'Vince Green': 'Snookie', 'Garland Whitt': 'Kenny', 'Elisabeth Oas': 'Diggy', 'Artel Great': 'Arvel (as Artel Jarod Walker)', 'Cory Stewart': 'Lip', 'Jennifer Anglin': 'Glynn', 'Dorothy Martin': 'Momma Dean', 'Kim Tlusty': 'Lindsay', 'Felicia Fields': 'Woman on Train'}" tt0086873,"{'Steve Martin': 'Roger Cobb', 'Lily Tomlin': 'Edwina Cutwater', 'Victoria Tennant': 'Terry Hoskins', 'Madolyn Smith Osborne': 'Peggy Schuyler (as Madolyn Smith)', 'Richard Libertini': 'Prahka Lasa', 'Dana Elcar': 'Burton Schuyler', 'Jason Bernard': 'Tyrone Wattell', 'Selma Diamond': 'Margo', 'Eric Christmas': 'Fred Hoskins', 'Gailard Sartain': 'Fulton Norris', 'Neva Patterson': 'Gretchen', 'Michael Ensign': 'Mr. Mifflin', 'Peggy Feury': 'Dr. Betty Ahrens', 'Nan Martin': 'Divorce Lawyer', 'Basil Hoffman': 'Court Clerk'}" tt0115738,"{'John Turturro': 'Al Fountain', 'Sam Rockwell': 'The Kid', 'Catherine Keener': 'Floatie Dupre', 'Lisa Blount': 'Purlene Dupre', 'Annie Corley': 'Deb Fountain', 'Alexander Goodwin': 'Bobby Fountain', 'Dermot Mulroney': 'Wick', 'Mike Stanley': 'Doob', 'Rica Martens': 'Doris', 'Ray Aranha': 'Soapy', 'Robert Wightman': 'Dex', 'James Richardson': 'Taco', 'Stephen Dupree': 'Elwood', 'Eugene Wolf': 'Lyle', 'Reathel Bean': 'Luvven Coddle'}" tt0374563,"{'Elisha Cuthbert': 'Jennifer', 'Daniel Gillies': 'Gary Dexter', 'Pruitt Taylor Vince': 'Ben Dexter', 'Michael Harney': 'Det. Bettiger', 'Laz Alonso': 'Det. Ray Di Santos', 'Maggie Damon': 'Detective Susan Luden', 'Carl Paoli': 'Victim #1', 'Trent Broin': 'Victim #2'}" tt0200530,"{'Mike White': ""Buck O'Brien"", 'Chris Weitz': ""Charlie 'Chuck' Sitter"", 'Lupe Ontiveros': 'Beverly Franco', 'Beth Colt': 'Carlyn Carlson', 'Paul Weitz': 'Sam', 'Maya Rudolph': 'Jamilla', 'Mary Wigmore': 'Diane', 'Paul Sand': 'Barry', 'Gino Buccola': 'Tommy', 'Annette Murphy': ""Tommy's Mom"", 'Glory Simon': 'Witch', 'Douglas Kieffer': 'Mark', 'Jonathan Brown': 'Jake', 'Ruthie Bram': 'Dorothy', 'Giovanni Gieco': 'Scarecrow'}" tt0424993,"{'Dane Cook': 'Zack', 'Jessica Simpson': 'Amy', 'Dax Shepard': 'Vince', 'Andy Dick': 'Lon', 'Tim Bagley': 'Glen Gary', 'Brian George': 'Iqbal', 'Efren Ramirez': 'Jorge', 'Marcello Thedford': 'Semi', 'Danny Woodburn': 'Glen Ross', 'Harland Williams': 'Russell', 'Sean Whalen': 'Dirk', 'Barbara Dodd': 'Granny (as Barbara Dodd Ramsen)', 'Victor Izay': 'Greeter (Jerry)', 'Marc Mouchet': 'Gene', 'Kathleen Arc': 'Grumpy Lady'}" tt0317676,"{'Jonathan Cherry': 'Rudy', 'Tyron Leitso': 'Simon', 'Clint Howard': 'Salish', 'Ona Grauer': 'Alicia', 'Ellie Cornell': 'Casper', 'Will Sanderson': 'Greg', 'Enuka Okuma': 'Karma', 'Kira Clavell': 'Liberty', 'Sonya Salomaa': 'Cynthia (as Sonja Salomaa)', 'Michael Eklund': 'Hugh', 'David Palffy': 'Castillo', 'Jürgen Prochnow': 'Kirk (as Jurgen Prochnow)', 'Steve Byers': 'Matt', 'Erica Durance': 'Johanna (as Erica Parker)', 'Birgit Stein': 'Lena'}" tt0160672,"{'Noah Fleiss': 'Joe Henry', 'Karen Young': 'Theresa Henry', 'Camryn Manheim': 'Mrs. Basil', 'Austin Pendleton': 'Winston', 'Val Kilmer': 'Bob Henry', 'Max Ligosh': 'Mike Henry', 'James Costa': 'Ray', 'Jenny Robertson': 'Waitress', 'Amy Wright': 'Mary', 'Richard Bright': 'Roy', 'Raymond De Felitta': 'Mr. Brazer', 'John Leguizamo': 'Jorge', 'Robert Whaley': 'Jerry', 'Peter Anthony Tambakis': 'Little Joe (as Peter Tambakis)', 'Harlee Ott': 'Dawn'}" tt0119426,"{'Tobey Maguire': 'J.T.', 'Amy Hathaway': 'Tanya', 'Wilson Cruz': 'James', 'Christina Zilber': 'Smith (as Christina Naify)', 'James Karen': 'The Client', 'Adam West': 'Harold', 'Benicio Del Toro': 'Detective Lopez', 'Steven Gilborn': 'Arthur', 'J.P. Bumstead': 'Dr. Brewer', 'Kenn Norman': 'Sheriff Cork', 'Judson Mills': 'Redneck Joey', 'Susan Romick': ""Redneck Joey's Girlfriend"", 'Marc Robinson': 'Bobby', 'Julie Rowen': 'Lisa (as Julie Donatt)', 'Leslie Bartlett': 'Martina Hirsch'}" tt0399295,"{'Nicolas Cage': 'Yuri Orlov', 'Bridget Moynahan': 'Ava Fontaine', 'Jared Leto': 'Vitaly Orlov', 'Shake Tukhmanyan': 'Irina Orlov (as Shake Toukhmanian)', 'Jean-Pierre Nshanian': 'Anatoly Orlov', 'Jared Burke': 'Ukrainian Mobster', 'Eric Uys': 'Ukrainian Mobster', 'David Shumbris': 'Ukrainian Mobster', 'Stewart Morgan': 'Ukrainian Mobster', 'Jasper Lenz': 'Gregor', 'Stephen Gregor': 'Eli Kurtzman', 'Kobus Marx': 'Boris', 'Stephan De Abreu': 'Liev', 'Jeremy Crutchley': 'Arms Fair Salesman', 'Ian Holm': 'Simeon Weisz'}" tt1179891,"{'Jensen Ackles': 'Tom Hanniger', 'Jaime King': 'Sarah Palmer', 'Kerr Smith': 'Axel Palmer', 'Betsy Rue': 'Irene', 'Edi Gathegi': 'Deputy Martin', 'Tom Atkins': 'Burke', 'Kevin Tighe': 'Ben Foley', 'Megan Boone': 'Megan', 'Karen Baum': 'Deputy Ferris', 'Joy de la Paz': 'Rosa', 'Marc Macaulay': 'Riggs', 'Todd Farmer': 'Frank the Trucker', 'Jeff Hochendoner': 'Red', ""Bingo O'Malley"": 'Officer Hinch', 'Liam Rhodes': 'Michael'}" tt0138704,"{'Sean Gullette': 'Maximillian Cohen', 'Mark Margolis': 'Sol Robeson', 'Ben Shenkman': 'Lenny Meyer', 'Pamela Hart': 'Marcy Dawson', 'Stephen Pearlman': 'Rabbi Cohen', 'Samia Shoaib': 'Devi', 'Ajay Naidu': 'Farrouhk', 'Kristyn Mae-Anne Lao': 'Jenna', 'Espher Lao Nieves': ""Jenna's Mom"", 'Joanne Gordon': 'Mrs. Ovadia', 'Lauren Fox': 'Jenny Robeson', 'Stanley B. Herman': 'Moustacheless Man (as Stanley Herman)', 'Clint Mansell': 'Photographer', 'Tom Tumminello': 'Ephraim', 'Henri Falconi': 'Kaballah Scholar'}" tt0114594,"{'Kevin Spacey': 'Buddy Ackerman', 'Frank Whaley': 'Guy', 'Michelle Forbes': 'Dawn Lockard', 'Benicio Del Toro': 'Rex', 'T.E. Russell': 'Foster Kane', 'Roy Dotrice': 'Cyrus Miles', 'Matthew Flint': 'Manny', 'Patrick Fischler': 'Moe', 'Jerry Levine': 'Jack'}" tt0283111,"{'Ryan Reynolds': 'Van Wilder', 'Tara Reid': 'Gwen Pearson', 'Tim Matheson': 'Vance Wilder Sr.', 'Kal Penn': 'Taj Mahal Badalandabad', 'Teck Holmes': 'Hutch', 'Daniel Cosgrove': 'Richard Bagg', 'Deon Richmond': 'Mini Cochran', 'Alex Burns': 'Gordon', 'Emily Rutherfurd': 'Jeannie', 'Paul Gleason': 'Professor McDoogle', 'Erik Estrada': 'Erik Estrada', 'Curtis Armstrong': 'Campus Cop', 'Jason Winer': 'Panos Patakos', 'Chris Owen': 'Suicidal Freshman', 'Simon Helberg': 'Vernon'}" tt0283090,"{'Jeremy Davies': 'The Drifter', 'Michael Lerner': 'The Judge', 'Litefoot': 'The Warrior #1 (as G. Paul Davis a.k.a Litefoot)', 'Russell Means': 'The Chief', ""Chris O'Donnell"": 'The Hitman', 'Jon Polito': 'The Security Guard', 'Kevin Sifuentes': 'The Head of Security', 'Michael Rapaport': 'The Cop', 'Anita Maltin': 'The Old Lady', 'Bill Pullman': 'The Ticket Clerk', 'Keith David': 'The Sheriff', 'Rachael Leigh Cook': 'The Waitress', 'P.J. Byrne': 'The Doctor', 'Carlos Mencia': 'The Comedian'}" tt0189998,"{'John Malkovich': 'Friedrich Wilhelm Murnau', 'Willem Dafoe': 'Max Schreck', 'Udo Kier': 'Albin Grau', 'Cary Elwes': 'Fritz Arno Wagner', 'Catherine McCormack': 'Greta Schröder', 'Eddie Izzard': 'Gustav von Wangenheim', 'Aden Gillett': 'Henrik Galeen', 'Nicholas Elliott': 'Paul (as Nicholas Elliot)', 'Ronan Vibert': 'Wolfgang Müller', 'Sophie Langevin': 'Elke', 'Myriam Muller': 'Maria', 'Milos Hlavac': 'Innkeeper (as Milos Hlavak)', 'Marja-Leena Junker': ""Innkeeper's Wife"", 'Derek Kueter': 'Reporter 1', 'Norman Golightly': 'Reporter 2'}" tt0437800,"{'Keke Palmer': 'Akeelah', 'Laurence Fishburne': 'Dr. Larabee', 'Angela Bassett': 'Tanya', 'Curtis Armstrong': 'Mr. Welch', 'J.R. Villarreal': 'Javier (as JR Villarreal)', 'Sean Michael Afable': 'Dylan', 'Sahara Ware': 'Georgia (as Sahara Garey)', 'Lee Thompson Young': 'Devon', 'Julito McCullum': 'Terrence', 'Erica Hubbard': 'Kiana', 'Eddie Steeples': 'Derrick-T', 'Dalia Phillips': 'Ms. Cross', 'Tzi Ma': 'Mr. Chiu', 'Jeris Poindexter': 'Steve (as Jeris Lee Poindexter)', 'Sara Niemietz': 'Polly'}" tt0870195,"{'Linus Roache': 'Henry Moores', 'Rahul Bose': 'T. K. Neelan', 'Nandita Das': 'Sajani', 'Jennifer Ehle': 'Laura Moores', 'Leopold Benedict': 'Peter Moores', 'Dr. Ambikathmajan': ""T.K.'s Headmaster"", 'Lakshmi Krishnamurthy': ""T.K.'s mom"", 'Lal': 'Rajat (as Lal Paul)', 'John Standing': 'Charles Humphries', 'Indrajith Sukumaran': 'Manas (as Indrajith)', 'Thilakan': ""T.K.'s Father"", 'Ejji K. Umamahesh': 'Inspector Sampath'}" tt0997143,"{'Sarah Farooqui': 'Sai', 'Chris Ivan Cevic': 'Royce', 'Alex Petrovitch': 'Eric', 'Michele Morrow': 'Kerra', 'Jonathan Oldham': 'Renfield', 'Aric Green': 'Jono', 'Kimberly Rowe': 'Deanna', 'Monica Huntington': 'Candace', 'Warren Draper': 'Grierson', 'Dichen Lachman': 'Aaren', 'Jennifer Lee Wiggins': 'Lynn', 'Ivan L. Moody': 'Incubus'}" tt0450278,"{'Jay Hernandez': 'Paxton', 'Derek Richardson': 'Josh', 'Eythor Gudjonsson': 'Oli', 'Barbara Nedeljakova': 'Natalya', 'Jan Vlasák': 'The Dutch Businessman', 'Jana Kaderabkova': 'Svetlana', 'Jennifer Lim': 'Kana', 'Keiko Seiko': 'Yuki', 'Lubomír Bukový': 'Alex', 'Jana Havlickova': 'Vala', 'Rick Hoffman': 'The American Client', 'Petr Janis': 'The German Surgeon', 'Takashi Miike': 'Miike Takashi', 'Patrik Zigo': 'Bubble Gum Gang Leader (as Zigo Patrik)', 'Milda Jedi Havlas': 'Desk Clerk Jedi'}" tt0364385,"{'Megumi Okina': 'Rika Nishina', 'Misaki Itô': 'Hitomi Tokunaga', 'Misa Uehara': 'Izumi Tôyama', 'Yui Ichikawa': 'Chiharu', 'Kanji Tsuda': 'Katsuya Tokunaga', 'Kayoko Shibata': 'Mariko', 'Yukako Kukuri': 'Miyuki', 'Shuri Matsuda': 'Kazumi Tokunaga', 'Yôji Tanaka': 'Yûji Tôyama', 'Yoshiyuki Morishita': 'Keibiin', 'Hideo Sakaki': 'Fukushi Sentâ Jimuin', 'Takashi Matsuyama': 'Takeo Saeki', 'Yuya Ozeki': 'Toshio', 'Takako Fuji': 'Kayako', 'Chikara Ishikura': 'Hirohashi'}" tt0263734,"{'James B. Douglas': 'Donald Foley', 'Molly Parker': 'Amy Foley', 'Paul Gross': 'Chris Cutter', 'Barbara Gordon': 'Eva Foley', 'Michelle Nolden': 'Julie Foley', 'Connor Price': 'Brandon Foley', 'Stan Coles': 'Minister', 'James Allodi': 'Neil Bucyk', 'Darryl Casselman': 'Ronnie', ""Mike 'Nug' Nahrgang"": ""Nug McTeague (as 'Nug')"", 'Jed Rees': 'Eddie Strombeck', 'Jane Spidell': 'Lilly Strombeck', 'Polly Shannon': 'Joanne', 'Peter Outerbridge': 'James Lennox', 'Kari Matchett': 'Linda Bucyk'}" tt0274812,"{'James Spader': 'Mr. Grey', 'Maggie Gyllenhaal': 'Lee Holloway', 'Jeremy Davies': 'Peter', 'Lesley Ann Warren': 'Joan Holloway', 'Stephen McHattie': 'Burt Holloway', 'Patrick Bauchau': 'Dr. Twardon', 'Jessica Tuck': ""Tricia O'Connor"", 'Oz Perkins': 'Jonathan', 'Amy Locane': ""Lee's Sister"", 'Mary Joy': 'Sylvia', 'Michael Mantell': 'Stewart', 'Lily Knight': 'Paralegal', 'Sabrina Grdevich': 'Allison', 'Lacey Kohl': 'Louisa', 'Julene Renee': 'Jessica'}" tt0239060,"{'Antonie Kamerling': 'Eric', 'Angela Schijf': 'Reza', 'Beau van Erven Dorens': 'Fraser', 'Florence Kasumba': 'Silke', 'Dorothée Capelluto': 'Nadine (as Dorothee Capelluto)', 'Anniek Pheifer': 'Liesbeth', 'Leo Hogenboom': 'Father Eric', 'Guusje Westermann': 'Mother Eric (as Guusje Westerman)', 'Tijn Docter': 'Brother Eric', 'Arjan ten Broecke': 'Tom', 'Cynthia de Graaff': 'Claire', 'Antoinette Jelgersma': 'Mother Reza', 'Titus Muizelaar': 'Father Reza', 'Rinco van der Baan': 'Barkeeper', 'Marieke de Kruijf': 'Patricia'}" tt0831887,"{'Jaime King': 'Lorelei', 'Gabriel Macht': 'Spirit', 'Dan Gerrity': 'Detective Sussman', 'Arthur the Cat': 'Himself', 'Kimberly Cox': 'Damsel in Distress', 'Brian Neal Lucero': 'Thug 1 (as Brian Lucero)', 'David Brian Martin': 'Thug 2 (as David B. Martin)', 'Larry Reinhardt-Meyer': 'Officer MacReady', 'Frank Miller': 'Liebowitz', 'Eva Mendes': 'Sand Saref', 'Eric Balfour': 'Mahmoud', 'Samuel L. Jackson': 'Octopus', 'Louis Lombardi': 'Pathos, etc.', 'Scarlett Johansson': 'Silken Floss', 'Sarah Paulson': 'Ellen'}" tt0337972,"{'Brandon Bollig': 'Will Cross age 12', 'Robert Nolan Clark': 'John Blade', 'Kenn Drescher': 'Townie', 'Anastasia Foster': 'Molly (as Anastasia Roark)', 'Brenda Sue Fowler': ""Ned's wife"", 'John Gerbin': 'Boone', 'Joe Hanrahan': 'Harms', 'Charles Heuvelman': 'Laborer', 'John Ross': 'Gus', 'Mary Schnitzler': ""Woman In Will's House"", 'Alicia Skirball': 'Poker player', 'Craig Thrasher': 'Unnamed outlaw', 'Stephanie Vogt': 'Nell'}" tt0470705,"{'Ashley Judd': 'Agnes White', 'Michael Shannon': 'Peter Evans', 'Harry Connick Jr.': 'Jerry Goss', 'Lynn Collins': 'R.C.', ""Brían F. O'Byrne"": 'Dr. Sweet', 'Neil Bergeron': 'Man in Grocery Store', 'Bob Neill': 'Pizza Harris (voice)'}" tt0814075,"{'Adam': 'Himself', 'Jeff Anderson': 'Himself', 'Pope Benedict XVI': 'Himself (archive footage)', 'Monsignor Cain': 'Himself (archive footage)', 'Case Degroot': 'Himself', 'Jane Degroot': 'Herself', 'Thomas Doyle': 'Himself (as Father Tom Doyle)', ""Mary Gail Frawley-O'Dea"": ""Herself - Psychologist (as Dr. Mary Gail Frawley-O'Dea)"", 'Bill Hodgman': 'Himself - LA Deputy DA', 'Anne Jyono': 'Herself', 'Bob Jyono': 'Himself', 'Maria Jyono': 'Herself', 'Frank Keating': 'Himself', 'Roger Mahony': 'Himself (as Cardinal Roger Mahony)', 'John Manly': 'Himself - Attorney for the Jyonos'}" tt0353489,"{'Emily Perkins': 'Brigitte', 'Brendan Fletcher': 'Jeremy', 'Katharine Isabelle': 'Ginger', 'Tatiana Maslany': 'Ghost', 'Susan Adam': 'Barbara', 'Janet Kidder': 'Alice', 'Chris Fassbender': 'Luke', 'Pascale Hutton': 'Beth-Ann', 'Michelle Beaudoin': 'Winnie', 'Eric Johnson': 'Tyler', 'David McNally': 'Marcus', 'Patricia Idlette': 'Dr. Brookner', 'Lydia Lau': 'Koral', 'Coralie Cairns': 'Nurse', 'Shaun Johnston': 'Jack'}" tt0811138,"{'Jessica Simpson': 'Jessica Simpson', 'Kanye West': 'Kanye West', 'Mike Myers': 'Guru Pitka / Young Pitka / Teenage Pitka / Mike Myers', 'Deepak Chopra': 'Deepak Chopra', 'Rob Blake': 'Rob Blake', 'Jessica Alba': 'Jane Bullard', 'Justin Timberlake': 'Jacques Grande', 'Romany Malco': 'Darren Roanoke', 'Verne Troyer': 'Coach Punch Cherkov', 'Meagan Good': 'Prudence Roanoke', 'Manu Narayan': 'Rajneesh', 'John Oliver': 'Dick Pants', 'Stephen Colbert': 'Jay Kell', 'Jim Gaffigan': 'Trent Lueders', 'Ben Kingsley': 'Guru Tugginmypudha'}" tt0115438,"{'Danny Aiello': 'Dosmo Pizzo', 'Greg Cruttwell': 'Allan Hopper', 'Jeff Daniels': 'Alvin Strayer', 'Teri Hatcher': 'Becky Foxx', 'Glenne Headly': 'Susan Parish', 'Peter Horton': 'Roy Foxx', 'Marsha Mason': 'Audrey Hopper', 'Paul Mazursky': 'Teddy Peppers', 'James Spader': 'Lee Woods', 'Eric Stoltz': 'Wes Taylor', 'Charlize Theron': 'Helga Svelgen', 'Keith Carradine': 'Detective Creighton', 'Louise Fletcher': 'Evelyn', 'Austin Pendleton': 'Ralph Crupi', 'Kathleen Luong': 'Midori'}" tt0488508,"{'Queen Latifah': 'Narrator (voice)', 'Katrina Agate': 'Kid in End Credits', 'Zain Ali': 'Kid in End Credits', 'Preston Bailey': 'Kid in End Credits', 'Kwesi Boakye': 'Kid in End Credits', 'Michael Huang': 'Kid in End Credits', 'Sierra Marcoux': 'Kid in End Credits', 'Dante Pastula': 'Kid in End Credits', 'Peyton Pearson': 'Kid in End Credits', 'Isabella Peschardt': 'Kid in End Credits', 'Christina Robinson': 'Kid in End Credits', 'Lili Sepe': 'Kid in End Credits', ""Ke'ala Valencia"": 'Kid in End Credits'}" tt0393162,"{'Samuel L. Jackson': 'Coach Ken Carter', 'Rob Brown': 'Kenyon Stone', ""Robert Ri'chard"": 'Damien Carter', 'Rick Gonzalez': 'Timo Cruz', 'Nana Gbewonyo': 'Junior Battle', 'Antwon Tanner': 'Worm', 'Channing Tatum': 'Jason Lyle', 'Ashanti': 'Kyra', 'Texas Battle': 'Maddux', 'Denise Dowse': 'Principal Garrison', 'Debbi Morgan': 'Tonya', 'Mel Winkler': 'Coach White', 'Vincent Laresca': 'Renny', 'Sidney Faison': 'Ty Crane', 'Octavia Spencer': 'Mrs. Battle'}" tt0410097,"{'Terrence Howard': 'Djay', 'Anthony Anderson': 'Key', 'Taryn Manning': 'Nola', 'Taraji P. Henson': 'Shug', 'DJ Qualls': 'Shelby (as D.J. Qualls)', 'Ludacris': 'Skinny Black', 'Paula Jai Parker': 'Lexus', 'Elise Neal': 'Yevette', 'Isaac Hayes': 'Arnel', 'Juicy J': 'Tigga', 'William Engram': ""Slobs (as William 'Poon' Engram)"", 'Bobby Sandimanie': ""Yellow Jacket (as Bobby 'I-20' Sandimanie)"", 'Haystak': 'Mickey', 'Claude Phillips': 'Harold', 'Josey Scott': 'Elroy'}" tt0100740,"{'Debbie Harry': 'Betty (wraparound story) (as Deborah Harry)', 'David Forrester': 'Priest (wraparound story)', 'Matthew Lawrence': 'Timmy (wraparound story)', 'Christian Slater': 'Andy (segment ""Lot 249"")', 'Robert Sedgwick': 'Lee (segment ""Lot 249"")', 'Steve Buscemi': 'Bellingham (segment ""Lot 249"")', 'Donald Van Horn': 'Moving Man (segment ""Lot 249"")', 'Michael Deak': 'Mummy (segment ""Lot 249"")', 'Julianne Moore': 'Susan (segment ""Lot 249"")', 'George Guidall': 'Museum Director (segment ""Lot 249"")', 'Kathleen Chalfant': 'Dean (segment ""Lot 249"")', 'Ralph Marrero': 'Cabbie (segment ""Lot 249"")', 'David Johansen': 'Halston (segment ""Cat From Hell"")', 'Paul Greeno': 'Cabbie (segment ""Cat From Hell"")', 'William Hickey': 'Drogan (segment ""Cat From Hell"")'}" tt0037536,"{'Bing Crosby': ""Father Chuck O'Malley"", 'Ingrid Bergman': 'Sister Mary Benedict', 'Henry Travers': 'Horace P. Bogardus', 'William Gargan': ""Joe Gallagher - Patsy's father"", 'Ruth Donnelly': 'Sister Michael', 'Joan Carroll': ""Patricia 'Patsy' Gallagher"", 'Martha Sleeper': ""Mary Gallagher - Patsy's mother"", 'Rhys Williams': 'Dr. McKay', 'Richard Tyler': 'Eddie Breen (as Dickie Tyler)', ""Una O'Connor"": 'Mrs. Breen'}" tt0408839,"{'Ben Stiller': 'Eddie', 'Malin Akerman': 'Lila', 'Michelle Monaghan': 'Miranda', 'Jerry Stiller': 'Doc', 'Rob Corddry': 'Mac', 'Carlos Mencia': 'Tito', 'Scott Wilson': 'Boo', 'Polly Holliday': 'Beryl', 'Danny McBride': 'Martin', 'Roy Jenkins': 'Buzz', 'Stephanie Courtney': 'Gayla', 'Amy Sloan': 'Deborah', 'Jerry Sherman': 'Grandpa Anderson', 'Lauren Bowles': 'Tammy', 'Nicholas Kromka': '12 Year Old Twin'}" tt0434139,"{'Zach Braff': 'Michael', 'Jacinda Barrett': 'Jenna', 'Casey Affleck': 'Chris', 'Rachel Bilson': 'Kim', 'Michael Weston': 'Izzy', 'Eric Christian Olsen': 'Kenny', 'Marley Shelton': 'Arianna', 'Lauren Lee Smith': 'Lisa', 'Harold Ramis': 'Professor Bowler', 'Blythe Danner': 'Anna', 'Tom Wilkinson': 'Stephen', 'David Haydn-Jones': 'Mark (as David Haydyn-Jones)', 'Cindy Sampson': 'Danielle', 'Lisa Hochstein': 'Stripper #1 (as Lisa Mackay)', 'Patricia Stasiak': 'Stripper #2'}" tt0264323,"{'Robert Englund': 'Mayor Buckman', 'Lin Shaye': 'Granny Boone', 'Giuseppe Andrews': 'Harper Alexander', 'Jay Gillespie': 'Anderson Lee', 'Marla Malcolm': 'Joey (as Marla Leigh Malcom)', 'Dylan Edrington': 'Nelson', 'Matthew Carey': 'Cory', 'Peter Stormare': 'Professor Ackerman', 'Gina Marie Heekin': 'Kat', 'Brian Gross': 'Ricky', 'Mushond Lee': 'Malcolm', 'Bianca Smith': 'Leah', 'Brendan McCarthy': 'Rufus', 'Adam Robitel': 'Lester', 'Christa Campbell': 'Milk Maiden'}" tt0384814,"{'Colin Farrell': 'Arturo Bandini', 'Salma Hayek': 'Camilla', 'Donald Sutherland': 'Hellfrick', 'Eileen Atkins': 'Mrs. Hargraves', 'Idina Menzel': 'Vera Rivkin', 'Justin Kirk': 'Sammy', 'Jeremy Crutchley': 'Solomon', 'Ronald France': 'Columbia Sweeper', 'Dionysio Basco': 'Filipino Houseboy (as Dion Basco)', 'Donna Mosley': 'Red Headed Girl', 'Paul Rylander': 'Harold the Bartender', 'Natasha Staples': 'Denver Librarian', 'Wayne Harrison': 'Heilman', 'Yasuhiro Yoshimura': 'Japanese Vegetable Man (as Yoshimura Yasuhiro)', 'Sid': 'Willie the Dog'}" tt0137338,"{'Ben Affleck': 'Bartender', 'Casey Affleck': 'Tom', 'Jennifer Albano': 'Cheryl', 'Jenni Blong': ""Cheryl's Friend (as Jenny Blong)"", 'Morgan Brown': 'French Rocker', 'Caleb Carr': 'Cynical Bar Patron', 'Dave Chappelle': 'Disco Cabbie', 'Elvis Costello': 'Elvis Costello', 'Guillermo Díaz': 'Dave (as Guillermo Diaz)', 'Angela Featherstone': 'Caitlyn', 'Patrick Frederic': 'Tiki Sobbing Man', 'Janeane Garofalo': 'Ellie', 'Gaby Hoffmann': 'Stephie', 'Kate Hudson': 'Cindy', 'David Johansen': 'Tiki Bartender'}" tt0375173,"{'Jude Law': 'Alfie', 'Renée Taylor': 'Lu Schnitman (as Renee Taylor)', 'Jane Krakowski': 'Dorie', 'Jeff Harding': 'Phil', 'Marisa Tomei': 'Julie', 'Kevin Rahm': 'Terry', 'Max Morris': 'Max', 'Omar Epps': 'Marlon', 'Nia Long': 'Lonette', 'Gedde Watanabe': 'Wing', 'Jo Yang': 'Mrs. Wing', 'Tara Summers': 'Carol', 'Sam Vincenti': 'Felix', 'Katherine LaNasa': 'Uta', 'Claudette Mink': 'Bitter Girl'}" tt0312329,"{'Meg Ryan': 'Jackie Kallen', 'Omar Epps': 'Luther Shaw', 'Charles S. Dutton': 'Felix Reynolds', 'Tony Shalhoub': 'Sam LaRocca', 'Tim Daly': 'Gavin Reese', 'Joe Cortese': 'Irving Abel', 'Kerry Washington': 'Renee', 'Sean Bell': 'Ray Kallen', 'Dean McDermott': 'Pete Kallen', 'Skye McCole Bartusiak': 'Little Jackie', 'Juan Carlos Hernández': 'Pedro Hernandez (as Juan Hernandez)', 'Holt McCallany': 'Doug Doherty', 'Tory Kittles': 'Devon Green', 'Gene Mack': 'Kevin Keyes', 'Beau Starr': 'Corcoran'}" tt0101301,"{'Harley Jane Kozak': ""Catherine O'Fallon"", 'Jamey Sheridan': ""Michael O'Fallon"", 'Ethan Embry': ""Ethan O'Fallon (as Ethan Randall)"", 'Kevin Nealon': 'Tony Boer', 'Thora Birch': ""Hallie O'Fallon"", 'Andrea Martin': 'Olivia', 'Lauren Bacall': 'Lillian Brooks', 'Amy Oberer': 'Stephanie', 'Renée Taylor': 'Sylvia', 'Leslie Nielsen': 'Santa', 'Felicity LaFortune': 'Susan', 'Camille Saviola': 'Sonya', 'Michael Alaimo': 'Frankie', 'Joanne Baron': 'Salesdervish #2', 'Alan Brooks': 'Mr. Chase'}" tt0080365,"{'Richard Gere': 'Julian', 'Lauren Hutton': 'Michelle', 'Hector Elizondo': 'Sunday', 'Nina van Pallandt': 'Anne (as Nina Van Pallandt)', 'Bill Duke': 'Leon', 'Brian Davies': 'Charles Stratton', 'K Callan': 'Lisa Williams', 'Tom Stewart': 'Mr. Rheiman', 'Patricia Carr': 'Judy Rheiman (as Patti Carr)', 'David Cryer': 'Lt. Curtis', 'Carole Cook': 'Mrs. Dobrun', 'Carol Bruce': 'Mrs. Sloan', 'Frances Bergen': 'Mrs. Laudner', 'Macdonald Carey': 'Hollywood Actor (as MacDonald Carey)', 'William Dozier': ""Michelle's Lawyer""}" tt0486259,"{'Jake Tusing': 'Himself', 'Megan Krizmanich': 'Herself', 'Colin Clemens': 'Himself', 'Mitch Reinholt': 'Himself', 'Hannah Bailey': 'Herself', 'Geoff Haase': 'Himself', 'Jennifer Lucht': 'Herself', 'Skye Scott': 'Himself', 'Jennifer Sheopherd': 'Herself', 'Ali Wikalinska': 'Herself'}" tt0221799,"{'Scarlett Johansson': 'Suzanne - at 15', 'Nastassja Kinski': 'Margit', 'Raffaella Bánsági': 'Suzanne - Infant', 'Tony Goldwyn': 'Peter', 'Ágnes Bánfalvy': 'Helen (as Ági Bánfalvy)', 'Zoltán Seress': 'George', 'Klaudia Szabó': 'Maria - at 4', 'Zsolt Zágoni': 'Russian Soldier', 'András Szöke': 'Istvan', 'Erzsi Pásztor': 'Ilus', 'Carlos Laszlo': 'Boy on Train', 'Bori Kereszturi': 'Suzanne - at 3 (as Boru Keresztúri)', 'Péter Kálloy Molnár': 'AVO Officer (as Péter Kállóy Molnár)', 'Zsuzsa Czinkóczi': 'Teri', 'Balázs Galkó': 'Jeno'}" tt0491747,"{'Gordon Pinsent': 'Grant Anderson', 'Stacey LaBerge': 'Young Fiona', 'Julie Christie': 'Fiona Anderson', 'Olympia Dukakis': 'Marian', 'Deanna Dezmari': 'Veronica', 'Clare Coulter': 'Phoebe Hart', 'Thomas Hauff': 'William Hart', 'Alberta Watson': 'Dr. Fischer', 'Grace Lynn Kung': 'Nurse Betty', 'Lili Francks': 'Theresa', 'Andrew Moodie': 'Liam', 'Wendy Crewson': 'Madeleine Montpellier', 'Judy Sinclair': 'Mrs. Albright', 'Tom Harvey': 'Michael', 'Carolyn Hetherington': 'Eliza'}" tt0414853,"{'Kevin James': 'Otis the Cow (voice)', 'Courteney Cox': 'Daisy the Cow (voice)', 'Sam Elliott': 'Ben the Cow (voice)', 'Danny Glover': 'Miles the Mule (voice)', 'Wanda Sykes': 'Bessy the Cow (voice)', 'Andie MacDowell': 'Etta the Hen (voice)', 'David Koechner': 'Dag the Coyote (voice)', 'Jeffrey Garcia': 'Pip the Mouse (voice) (as Jeff Garcia)', 'Cam Clarke': 'Freddy the Ferret (voice)', 'Rob Paulsen': 'Peck the Rooster / Gopher (voice)', 'Tino Insana': 'Pig the Pig (voice)', 'Dom Irrera': 'Duke the Dog (voice)', 'S. Scott Bullock': 'Eddy the Cow (voice) (as Scott Bullock)', 'John DiMaggio': ""Bud the Cow / Officer O'Hanlon (voice)"", 'Maurice LaMarche': 'Igg the Cow (voice)'}" tt0103759,"{'Harvey Keitel': 'LT', 'Brian McElroy': ""LT's Son (#1)"", 'Frank Acciarito': ""LT's Son (#2) (as Frankie Acciarito)"", 'Peggy Gormley': ""LT's Wife"", 'Stella Keitel': ""LT's Daughter"", 'Dana Dee': ""LT's Baby Girl"", 'Victor Argo': 'Beat Cop', 'Paul Calderon': 'Cop #1 (as Paul Calderone)', 'Leonard L. Thomas': 'Cop #2 (as Leonard Thomas)', 'Anthony Ruggiero': 'Lite', 'Vincent Laresca': 'JC', 'Robin Burrows': 'Ariane', 'Victoria Bastel': 'Bowtay', 'G. Elvis Phillips': 'Young Cop', 'Stephen Chen': 'Korean Store Owner'}" tt0292963,"{'Philip Seymour Hoffman': 'Andy', 'Ethan Hawke': 'Hank', 'Albert Finney': 'Charles', 'Marisa Tomei': 'Gina', 'Aleksa Palladino': 'Chris', 'Michael Shannon': 'Dex', 'Amy Ryan': 'Martha', 'Sarah Livingston': 'Danielle', ""Brían F. O'Byrne"": 'Bobby', 'Rosemary Harris': 'Nanette', 'Blaine Horton': 'Justin', 'Arija Bareikis': 'Katherine', 'Leonardo Cimino': 'William', 'Lee Wilkof': 'Jake', 'Damon Gupton': 'Doctor'}" tt0482463,"{'Eduardo Verástegui': 'José', 'Tammy Blanchard': 'Nina', 'Manny Perez': 'Manny', 'Angélica Aragón': 'Mother', 'Jaime Tirelli': 'Father', 'Ramon Rodriguez': 'Eduardo', 'Armando Riesco': 'Francisco', 'Sophie Nyweide': 'Bella', 'Ali Landry Monteverde': 'Celia (as Ali Landry)', 'Ewa Da Cruz': 'Veronica', 'Alexa Gerasimovich': 'Loochi', 'Herb Lovelle': 'Homeless Man', 'Tawny Cypress': 'Frannie', 'Doug DeBeech': 'Pieter', 'Michael Mosley': 'Kevin'}" tt0246772,"{'Martina Gedeck': 'Martha Klein', 'Maxime Foerste': ""Lina Klein (Martha's niece)"", 'Sergio Castellitto': 'Mario', 'August Zirner': ""Martha's Therapist"", 'Sibylle Canonica': 'Frida', 'Katja Studt': 'Lea', 'Antonio Wannek': 'Carlos', 'Idil Üner': 'Bernadette', 'Oliver Broumis': 'Jan', 'Ulrich Thomsen': 'Sam Thalberg', 'Gerhard Garbers': 'Herr Steinberg', 'Angela Schmidt': 'Frau Steinberg', 'Diego Ribon': 'Giuseppe Lorenzo', 'Wolf-Dietrich Sprenger': 'Noisy customer (as W.D. Sprenger)', 'Victoria Trauttmansdorff': 'Companion (as Victoria von Trautmannsdorf)'}" tt0294357,"{'Angelina Jolie': 'Sarah Jordan', 'Clive Owen': 'Nick Callahan', 'Teri Polo': 'Charlotte Jordan', 'Linus Roache': 'Henry Bauford', 'Noah Emmerich': 'Elliott Hauser', 'Yorick van Wageningen': 'Steiger', 'Timothy West': 'Lawrence Bauford', 'Kate Trotter': 'Mrs. Bauford', 'Jonathan Higgins': 'Philip (as Johnathan Higgins)', 'John Gausden': 'Jimmy Bauford', 'Isabelle Horler': 'Anna Bauford', 'Iain Lee': 'Master of Ceremonies', 'Keelan Anthony': 'Jojo (as Keelan Anthony Ray Forsythe)', 'John Bourgeois': 'Rolly', 'Kalyane Tea': ""Steiger's Girlfriend""}" tt0109305,"{'Nick Nolte': 'Pete Bell', 'Mary McDonnell': 'Jenny Bell', 'J.T. Walsh': 'Happy', ""Ed O'Neill"": 'Ed', 'Alfre Woodard': 'Lavada McRae', 'Bob Cousy': 'Vic', ""Shaquille O'Neal"": 'Neon', ""Anfernee 'Penny' Hardaway"": 'Butch McRae', 'Matt Nover': 'Ricky Roe', 'Cylk Cozart': 'Slick', 'Anthony C. Hall': 'Tony', 'Kevin Benton': 'Jack', 'Bill Cross': 'Freddie', 'Marques Johnson': 'Mel', 'Robert Wuhl': 'Marty'}" tt0229260,"{'Kurt Loder': 'Kurt Loder', 'Chuck Scarborough': 'Chuck Scarborough', 'Bruce D. Reed': 'Burkittsville Resident #1 (as Bruce Reed)', 'Jeffrey Donovan': 'Jeffrey Patterson', 'Joe Berlinger': 'Burkittsville Tourist #1', 'Sara Phillips': 'Burkittsville Tourist #2', 'Lynda Millard': 'Burkittsville Resident #2', 'Deb Burgoyne': 'Burkittsville Resident #3', 'Andrea Cox': 'Burkittsville Resident #4', 'Lanny Flaherty': 'Sheriff Cravens', 'Pete Burris': 'MBI Man #1', 'Tristine Skyler': 'Tristen Ryler (as Tristen Skyler)', 'Stephen Barker Turner': 'Stephen Ryan Parker', 'Erica Leerhsen': 'Erica Geerson', 'Kim Director': 'Kim Diamond'}" tt0103873,"{'Timothy Balme': 'Lionel Cosgrove', 'Diana Peñalver': 'Paquita Maria Sanchez', 'Elizabeth Moody': 'Mum (Vera Cosgrove)', 'Ian Watkin': 'Uncle Les', 'Brenda Kendall': 'Nurse McTavish', 'Stuart Devenie': 'Father McGruder', 'Jed Brophy': 'Void', 'Stephen Papps': 'Zombie McGruder', 'Murray Keane': 'Scroat', 'Glenis Levestam': 'Nora Matheson', 'Lewis Rowe': 'Mr. Matheson', 'Elizabeth Mulfaxe': 'Rita', 'Harry Sinclair': 'Roger', 'Davina Whitehouse': ""Paquita's Grandmother"", 'Silvio Famularo': ""Paquita's Father""}" tt0103859,"{'Eddie Murphy': 'Marcus', 'Robin Givens': 'Jacqueline', 'Halle Berry': 'Angela', 'David Alan Grier': 'Gerard', 'Martin Lawrence': 'Tyler', 'Grace Jones': 'Strangé', 'Geoffrey Holder': 'Nelson', 'Eartha Kitt': 'Lady Eloise', 'Chris Rock': 'Bony T', 'Tisha Campbell-Martin': 'Yvonne (as Tisha Campbell)', 'Lela Rochon': 'Christie', 'John Witherspoon': 'Mr. Jackson', 'Bebe Drake': 'Mrs. Jackson (as Bebe Drake-Massey)', 'John Canada Terrell': 'Todd', 'Leonard Jackson': 'Chemist'}" tt0163988,"{'Nicolas Cage': 'Frank Pierce', 'Patricia Arquette': 'Mary Burke', 'John Goodman': 'Larry', 'Ving Rhames': 'Marcus', 'Tom Sizemore': 'Tom Wolls', 'Marc Anthony': 'Noel', 'Mary Beth Hurt': 'Nurse Constance', 'Cliff Curtis': 'Cy Coates', 'Nestor Serrano': 'Dr. Hazmat', 'Aida Turturro': 'Nurse Crupp', 'Sonja Sohn': 'Kanita', 'Cynthia Roman': 'Rose', 'Afemo Omilami': 'Griss', 'Cullen O. Johnson': 'Mr. Burke (as Cullen Oliver Johnson)', 'Arthur J. Nascarella': 'Captain Barney (as Arthur Nascarella)'}" tt0838283,"{'Will Ferrell': 'Brennan Huff', 'John C. Reilly': 'Dale Doback', 'Mary Steenburgen': 'Nancy Huff', 'Richard Jenkins': 'Dr. Robert Doback', 'Adam Scott': 'Derek', 'Kathryn Hahn': 'Alice', 'Andrea Savage': 'Denise', 'Lurie Poston': 'Tommy', 'Elizabeth Yozamp': 'Tiffany', 'Logan Manus': 'Chris Gardoki', 'Travis T. Flory': 'Redheaded Kid (as Travis Flory)', 'Lili Rose McKay': '7-Year-Old Girl (as Lili McKay)', 'Shira Piven': 'Nurse', 'Seth Morris': 'Doctor', 'Wayne Federman': 'Blind Man'}" tt0179116,"{'Natasha Lyonne': 'Megan', 'Michelle Williams': 'Kimberly', 'Brandt Wille': 'Jared', 'Bud Cort': 'Peter', 'Mink Stole': 'Nancy', 'RuPaul': 'Mike (as RuPaul Charles)', 'Katie Donahue': 'Cheerleader #1', 'Danielle Rene': 'Cheerleader #2 (as Danielle Reneau)', 'Cathy Moriarty': 'Mary Brown', 'Eddie Cibrian': 'Rock', 'Melanie Lynskey': 'Hilary', 'Clea DuVall': 'Graham', 'Katrina Phillips': 'Jan', 'Katharine Towne': 'Sinead', 'Joel Michaely': 'Joel'}" tt0303816,"{'Rider Strong': 'Paul', 'Jordan Ladd': 'Karen', 'James DeBello': 'Bert', 'Cerina Vincent': 'Marcy', 'Joey Kern': 'Jeff', 'Arie Verveen': 'Henry (The Hermit)', 'Robert Harris': 'Old Man Cadwell', 'Hal Courtney': 'Tommy', 'Matthew Helms': 'Dennis', 'Richard Boone': 'Fenster', 'Tim Parati': 'Andy', 'Dalton McGuire': 'Lemonade Boy', 'Jana Farmer': 'Lemonade Girl', 'Dante Walker': 'Shemp', 'Jeff Rendell': 'Fake Shemp'}" tt0961722,"{'Rider Strong': 'Paul', 'Noah Segan': 'John', 'Alexi Wasser': 'Cassie', 'Rusty Kelley': 'Alex', 'Marc Senter': 'Marc', 'Giuseppe Andrews': 'Deputy Winston', 'Mark Borchardt': 'Herman', 'Michael Bowen': 'Principal Sinclair', 'Judah Friedlander': 'Toby', 'Larry Fessenden': 'Bill the Water Truck Driver', 'Amanda Jelks': 'Frederica', 'Thomas Blake Jr.': 'Rick', 'Angela Oberer': 'Ms. Hawker', 'Taylor Kowalski': 'Darryl', 'Alexander Isaiah Thomas': 'Dane'}" tt0375912,"{'Daniel Craig': 'XXXX', 'Tom Hardy': 'Clarkie', 'Jamie Foreman': 'Duke', 'Sally Hawkins': 'Slasher', 'Burn Gorman': 'Gazza', 'Brinley Green': 'Nobby', 'George Harris': 'Morty', 'Tamer Hassan': 'Terry', 'Colm Meaney': 'Gene', 'Marcel Iures': 'Slavo', 'Francis Magee': 'Paul the Boatman', 'Dimitri Andreas': 'Angelo', 'Kenneth Cranham': 'Jimmy Price', 'Garry Tubbs': 'Brian', 'Nathalie Lunghi': 'Charlie (as Natalie Lunghi)'}" tt0157472,"{'Jesse Bradford': 'Zak Gibbs', 'French Stewart': 'Dr. Earl Dopler', 'Paula Garcés': 'Francesca', 'Michael Biehn': 'Henry Gates', 'Robin Thomas': 'Dr. Gibbs', 'Garikayi Mutambirwa': 'Meeker', 'Julia Sweeney': 'Jenny Gibbs', 'Lindze Letherman': 'Kelly Gibbs', 'Jason George': 'Richard (as Jason Winston George)', 'Linda Kim': 'Jay', 'Ken Jenkins': 'NSA Agent Moore', 'Esperanza Catubig': 'Ticket Agent', 'Jennifer Manley': 'Security Officer', 'Scott Thomson': 'Tourist Dad', 'Deborah Rawlings': 'Tourist Mom'}" tt1153706,"{'Shoshana Bush': 'Megan', 'Damon Wayans Jr.': 'Thomas', 'Essence Atkins': 'Charity', 'Affion Crockett': 'A-Con', 'Chris Elliott': 'Ron', 'Christina Murphy': 'Nora', 'David Alan Grier': 'Sugar Bear', 'Amy Sedaris': 'Ms. Cameltoé', 'Kim Wayans': 'Ms. Dontwannabebothered', 'Lauren Bowles': 'Glynn', 'Brennan Hillard': 'Jack', 'George Gore II': 'Ray', 'Chelsea Makela': 'Tracy Transfat', 'Ross Thomas': 'Tyler', 'Shawn Wayans': 'Baby Daddy'}" tt0433362,"{'Harriet Minto-Day': 'Lisa Barrett', ""Jay Laga'aia"": 'Senator Turner', 'Damien Garvey': 'Senator Westlake', 'Sahaj Dumpleton': 'Homeless Vampire', 'Allan Todd': 'Businessman', 'Gabriella Di Labio': 'Businesswoman', 'Ben Siemer': 'Police Officer', 'Peter Welman': 'Police Officer', 'Ethan Hawke': 'Edward Dalton', 'Callum McLean': 'Vampire School Kid', 'Jarrad Pon': 'Vampire School Kid', 'Victoria Williams': 'Vampire School Kid', 'Zoe White': 'Vampire School Kid', 'Aolani Roy': 'Vampire School Kid', 'Tiffany Lamb': 'News Reader'}" tt0817538,"{'Nate Hartley': 'Wade', 'Troy Gentile': 'Ryan', 'Ian Roberts': 'Jim', 'Owen Wilson': 'Drillbit Taylor', 'Casey Boersma': 'Chuck', 'Dylan Boersma': 'Nick', 'Lisa Ann Walter': 'Dolores', 'Beth Littleford': 'Barbara', 'David Koechner': 'Frightened Dad', 'Matt Walsh': 'Not for Pot Driver', 'Janet Varney': 'Attractive Woman Driver', 'Lisa Lampanelli': ""Ronnie's Mom"", ""Bill O'Neill"": 'Dean', 'Shaun Weiss': 'Bus Driver', 'Jordan Valacich': 'Cute Girl on Stairs (as Jordan Valley)'}" tt0116493,"{'Michelle Trachtenberg': 'Harriet M. Welsch', 'Gregory Smith': 'Sport', 'Vanessa Chester': 'Janie Gibbs (as Vanessa Lee Chester)', ""Rosie O'Donnell"": 'Ole Golly', 'J. Smith-Cameron': 'Mrs. Welsch', 'Robert Joy': 'Ben Welsch', 'Eartha Kitt': 'Agatha K. Plummer', 'Charlotte Sullivan': 'Marion Hawthorne', 'Teisha Kim': 'Rachel Hennessy', 'Cecilley Carroll': 'Beth Ellen Hansen', 'Dov Tiefenbach': 'Boy with Purple Socks', 'Nina Shock': 'Carrie Andrews', 'Conor Devitt': 'Pinky Whitehead', 'Alisha Morrison': 'Laura Peters', 'Nancy Beatty': 'Miss Elson'}" tt0276919,"{'Nicole Kidman': 'Grace Margaret Mulligan', 'Harriet Andersson': 'Gloria', 'Lauren Bacall': 'Ma Ginger', 'Jean-Marc Barr': 'The Man with the Big Hat', 'Paul Bettany': 'Tom Edison', 'Blair Brown': 'Mrs. Henson', 'James Caan': 'The Big Man', 'Patricia Clarkson': 'Vera', 'Jeremy Davies': 'Bill Henson', 'Ben Gazzara': 'Jack McKay', 'Philip Baker Hall': 'Tom Edison Sr.', 'Thom Hoffman': 'Gangster', 'Siobhan Fallon Hogan': 'Martha', 'John Hurt': 'Narrator (voice)', 'Zeljko Ivanek': 'Ben'}" tt0150377,"{'Tommy Lee Jones': 'Travis', 'Ashley Judd': 'Libby', 'Benjamin Weir': 'Matty - Age 4', 'Jay Brazeau': 'Bobby', 'Bruce Greenwood': 'Nick', 'John Maclaren': 'Rudy (as John MacLaren)', 'Ed Evanko': 'Warren (as Edward Evanko)', 'Annabeth Gish': 'Angie', 'Bruce Campbell': 'Bartender At Party', 'Brennan Elliott': 'Yuppie Man', 'Angela Schneider': 'Yuppie Girl', 'Michael Gaston': 'Cutter', 'Gillian Barber': 'Rebecca Tingely', 'Tom McBeath': 'Coast Guard Officer', 'David Jacox': 'Deputy Ben'}" tt0109676,"{'Wesley Snipes': 'Pete Nessip', 'Gary Busey': 'Ty Moncrief', 'Yancy Butler': 'Jessie Crossman', 'Michael Jeter': 'Earl Leedy', 'Corin Nemec': 'Selkirk', 'Kyle Secor': 'Swoop', 'Luca Bercovici': 'Jagger', 'Malcolm-Jamal Warner': 'Terry Nessip', 'Rex Linn': 'Bobby', 'Grace Zabriskie': 'Winona', 'Robert LaSardo': 'Deputy Dog', 'Sam Hennings': 'Torski', 'Claire Stansfield': 'Kara', 'Mickey Jones': 'Deuce', 'Andy Romano': 'Tom McCracken'}" tt0097240,"{'Matt Dillon': 'Bob', 'Kelly Lynch': 'Dianne', 'James Le Gros': 'Rick', 'Heather Graham': 'Nadine', 'Eric Hull': 'Druggist', 'Max Perlich': 'David', 'James Remar': 'Gentry', 'John Kelly': 'Cop', 'Grace Zabriskie': ""Bob's Mother"", 'George Catalano': 'Trousinski', 'Janet Baumhover': 'Neighbor Lady', ""Ted D'Arms"": 'Neighbor Man', 'Neal Thomas': 'Halamer', 'Stephen Rutledge': 'Motel Manager', 'Beah Richards': 'Drug Counselor'}" tt0326856,"{'Ben Stiller': 'Tim Dingman', 'Jack Black': 'Nick Vanderpark', 'Rachel Weisz': 'Debbie Dingman', 'Amy Poehler': 'Natalie Vanderpark', 'Christopher Walken': 'J-Man', 'Ariel Gade': 'Lula Dingman', 'Sam Lerner': 'Michael Dingman', 'Lily Jackson': 'Nellie Vanderpark', 'Connor Matheus': 'Nathan Vanderpark', 'Hector Elias': 'Eduardo', 'Angee Hughes': 'Woman at Play', 'Manny Kleinmuntz': 'Dimitriov', 'Blue Deckert': 'Cal', 'John Gavigan': 'Les', 'Terry Bozeman': '3M Worker'}" tt0215750,"{'Jude Law': 'Vassili', 'Ed Harris': 'Major König', 'Rachel Weisz': 'Tania Chernova', 'Joseph Fiennes': 'Commisar Danilov', 'Bob Hoskins': 'Nikita Khrushchev', 'Ron Perlman': 'Koulikov', 'Eva Mattes': 'Mother Filipov', 'Gabriel Thomson': 'Sacha Filipov (as Gabriel Marshall-Thomson)', 'Matthias Habich': 'General Paulus', 'Sophie Rois': 'Ludmilla', 'Ivan Shvedoff': 'Volodya', 'Mario Bandi': 'Anton', 'Hans Martin Stier': 'Red Army General', 'Clemens Schick': 'German NCO (as Clemans Schick)', 'Mikhail Matveev': 'Grandfather'}" tt0428518,"{'Jay-Z': 'Himself', 'Fonzworth Bentley': 'Himself (as Farnsworth Bentley)', 'Beyoncé': 'Herself (as Beyoncé Knowles)', 'Memphis Bleek': 'Himself', 'Mary J. Blige': 'Herself', 'Foxy Brown': 'Herself', 'Michael Buffer': 'Himself', ""Sean 'Diddy' Combs"": ""Himself (as Sean 'P. Diddy' Combs)"", 'Common': 'Himself', 'Damon Dash': 'Himself', 'Missy Elliott': 'Herself', 'Freeway': 'Himself', 'Funkmaster Flex': 'Himself', 'Ghostface Killah': 'Himself', 'R. Kelly': 'Himself'}" tt0119095,"{'Harvey Keitel': 'Harry Houdini', 'Jason Salkey': 'James Collins', ""Peter O'Toole"": 'Sir Arthur Conan Doyle', 'Lara Morgan': 'Jean Doyle', 'Adam Franks': 'Adrian Doyle', 'Guy Witcher': 'Denis Doyle', 'Joseph May': ""Houdini's Assistant"", 'John Bradley': 'Portly Gentleman', 'Anna Chancellor': 'Peter Pan', 'Florence Hoath': 'Elsie Wright', 'Phoebe Nicholls': 'Polly Wright', 'Leonard Kavanagh': 'Stage Manager', 'Elizabeth Earl': 'Frances Griffiths', 'Paul McGann': 'Arthur Wright', 'Anton Lesser': 'Wounded Corporal'}" tt0289944,"{'John Turturro': 'Harry', 'Deborah Kara Unger': 'Kate', 'Stephen Eric McIntyre': 'Phil (as Stephen McIntyre)', 'William Allen Young': 'Agent Lawrence', 'Gene Davis': 'Ed (as Eugene M. Davis)', 'Mark Houghton': 'Diner Cop', 'Jacqueline Ramel': 'Claire', 'James Remar': 'Peter', 'Nadia Litz': 'Ellen', 'Amanda Ooms': 'Prostitute', 'Liv Corfixen': 'Hotel Waitress', 'Frank Adamson': 'Adamson', 'Spencer Duncanson': 'Man', 'Dan K. Toth': 'Hotel Clerk', 'Jeffrey R. Lawrence': 'Sergeant Frank'}" tt0106912,"{'D.B. Sweeney': 'Travis Walton', 'Robert Patrick': 'Mike Rogers', 'Craig Sheffer': 'Allan Dallis', 'Peter Berg': 'David Whitlock', 'Henry Thomas': 'Greg Hayes', 'Bradley Gregg': 'Bobby Cogdill', 'Noble Willingham': 'Blake Davis', 'Kathleen Wilhoite': 'Katie Rogers', 'James Garner': 'Frank Watters', 'Georgia Emelin': 'Dana Rogers', 'Scott MacDonald': 'Dan Walton', 'Wayne Grace': 'Cyrus Gilson', 'Kenneth White': 'Buck', 'Robert Covarrubias': 'Ray Melendez', 'Bruce Wright': 'Dennis Clay'}" tt0050419,"{'Audrey Hepburn': 'Jo Stockton', 'Fred Astaire': 'Dick Avery', 'Kay Thompson': 'Maggie Prescott', 'Michel Auclair': 'Prof. Emile Flostre', 'Robert Flemyng': 'Paul Duval', 'Dovima': 'Marion', 'Suzy Parker': 'Specialty Dancer (Think Pink Number)', 'Sunny Hartnett': 'Specialty Dancer (Think Pink Number)', 'Jean Del Val': 'Hairdresser', 'Virginia Gibson': 'Babs', 'Sue England': 'Laura', 'Ruta Lee': 'Lettie', 'Alex Gerry': 'Dovitch', 'Iphigenie Castiglioni': 'Armande'}" tt0101912,"{'Al Pacino': 'Johnny', 'Michelle Pfeiffer': 'Frankie', 'Hector Elizondo': 'Nick', 'Nathan Lane': 'Tim', 'Kate Nelligan': 'Cora', 'Jane Morris': 'Nedda', 'Greg Lewis': 'Tino', 'Al Fann': 'Luther', 'Ele Keats': 'Artemis', 'Fernando López': 'Jorge', 'Glenn Plummer': 'Peter', 'Tim Hopper': 'Lester', 'Harvey Miller': 'Mr. Rosen', ""Sean O'Bryan"": 'Bobby', 'Goldie McLaughlin': 'Waitress Helen'}" tt1034032,"{'Gerard Butler': 'Kable', 'Amber Valletta': 'Angie', 'Michael C. Hall': 'Ken Castle', 'Kyra Sedgwick': 'Gina Parker Smith', 'Logan Lerman': 'Simon', 'Alison Lohman': 'Trace', 'Terry Crews': 'Hackman', 'Ramsey Moore': 'Gorge', 'Ludacris': ""Humanz Brother (as Chris 'Ludacris' Bridges)"", 'Aaron Yoo': 'Humanz Dude', 'Jonathan Chase': 'Geek Leader', 'Dan Callahan': 'Backup Geek', 'Brighid Fleming': 'Delia', 'Johnny Whitworth': 'Scotch', 'Keith Jardine': 'Mean Slayer'}" tt0828393,"{'Tierra Abbott': 'Lana', 'Christopher Allport': 'Davey Diamond', 'Lisa Arturo': ""April's Mother"", 'Erik Bragg': 'Dirk', 'Alexander Cendese': 'Nathan (as Alex Cendese)', 'Alesha Rucci': 'Adriana (as Alesha Clarke)', 'Lindley Domingue': 'Second Groupie', 'Fiona Dourif': 'Becky', 'Shelley Dowdy': 'Anna', 'Robert Ellsworth': 'Waiter', 'Carrie Finklea': 'Lost Girl', 'Patrick Fischler': 'Anthony', 'Scott Grossman': 'Super Duper', 'Richard Gunn': 'Todd', 'Jessica Havard': 'First Groupie'}" tt0430308,"{'50 Cent': ""Marcus (as Curtis '50 Cent' Jackson)"", 'Adewale Akinnuoye-Agbaje': 'Majestic', 'Joy Bryant': 'Charlene', 'Omar Benson Miller': 'Keryl', 'Tory Kittles': 'Justice', 'Terrence Howard': 'Bama', 'Ashley Walters': 'Antwan', 'Marc John Jefferies': 'Young Marcus', 'Viola Davis': 'Grandma', 'Sullivan Walker': 'Grandpa', 'Serena Reeder': 'Katrina', 'Bill Duke': 'Levar', 'Mpho Koaho': 'Junebug', 'Russell Hornsby': 'Odell', 'Joseph Pierre': 'Uncle Deuce'}" tt0165798,"{'Forest Whitaker': 'Ghost Dog', 'John Tormey': 'Louie', 'Cliff Gorman': 'Sonny Valerio', 'Dennis Liu': 'Chinese Restaurant Owner', 'Frank Minucci': 'Big Angie', 'Richard Portnow': 'Handsome Frank', 'Tricia Vessey': 'Louise Vargo', 'Henry Silva': 'Ray Vargo', 'Gene Ruffini': 'Old Consigliere', 'Frank Adonis': ""Valerio's Bodyguard"", 'Victor Argo': 'Vinny', 'Damon Whitaker': 'Young Ghost Dog', 'Kenny Guay': 'Boy in Window', 'Vince Viverito': 'Johnny Morini', 'Gano Grills': 'Gangsta in Red'}" tt0405061,"{'Thanarat Poonnarattanakul': 'Salesman', 'Qi Shu': 'Joey', 'Nuhtiya Puppatokasub': 'Male Receptionist', 'Phatanasri Posayanonth': 'Translator', 'Yongyut Jamsai': 'Thai Policemen A', 'Montren Mongkon': 'Thai Policemen B', 'Supasawat Buranavech': 'Female Receptionist', 'Wanchai Srimuang': 'Hotel Manager', 'Phurida Vijitphan': 'Hotel Maid', 'Damrong Phutaramgsee': 'Ghost in Thai Taxi', 'Songdad Yapanga': 'Thai Taxi Driver', 'Jesdaporn Pholdee': 'Sam', 'Porntip Kunphasert': 'Ghost in Cafe', 'Jongchai Poomrmarin': 'Chinese Medicine Practitioner', 'Derek Tsang': ""Joey's Co-worker""}" tt0335119,"{'Colin Firth': 'Vermeer', 'Scarlett Johansson': 'Griet', 'Tom Wilkinson': 'Van Ruijven', 'Judy Parfitt': 'Maria Thins', 'Cillian Murphy': 'Pieter', 'Essie Davis': 'Catharina', 'Joanna Scanlan': 'Tanneke', 'Alakina Mann': 'Cornelia', 'Chris McHallem': ""Griet's Father"", 'Gabrielle Reidy': ""Griet's Mother"", 'Rollo Weeks': 'Frans', 'Anna Popplewell': 'Maertge', 'Anaïs Nepper': 'Lisbeth', 'Melanie Meyfroid': 'Aleydis', 'Nathan Nepper': 'Johannes'}" tt0104348,"{'Al Pacino': 'Ricky Roma', 'Jack Lemmon': 'Shelley Levene', 'Alec Baldwin': 'Blake', 'Alan Arkin': 'George Aaronow', 'Ed Harris': 'Dave Moss', 'Kevin Spacey': 'John Williamson', 'Jonathan Pryce': 'James Lingk', 'Bruce Altman': 'Mr. Spannel', 'Jude Ciccolella': 'Detective', 'Paul Butler': 'Policeman', 'Lori Tan Chinn': 'Coat Check Girl', 'Neal Jones': 'Man in Donut Shop', 'Barry Rohrssen': 'Assistant Detective (as Barry Rossen)', 'Leigh French': 'Additional Voice (voice)', 'George Cheung': 'Additional Voice (voice)'}" tt0064381,"{'Richard Benjamin': 'Neil Klugman', 'Ali MacGraw': 'Brenda Patimkin', 'Jack Klugman': 'Ben Patimkin', 'Nan Martin': 'Mrs. Ben Patimkin', 'Michael Meyers': 'Ron Patimkin', 'Lori Shelle': 'Julie Patimkin', 'Monroe Arnold': 'Uncle Leo', 'Kay Cummings': 'Doris Klugman', 'Sylvie Strause': 'Aunt Gladys', 'Royce Wallace': 'Carlotta', 'Anthony McGowan': 'Boy in Library', 'Mari Gorman': 'Laura Simpson Sockaloe', 'Chris Schenkel': 'Voice on Columbus Record (voice)', 'Jay Jostyn': 'Voice on Columbus Record (voice)', 'Jan Peerce': 'Uncle Manny'}" tt0093137,"{'Anthony Barrile': ""Pvt. Vincent 'Alphabet' Languilli"", 'Michael Boatman': 'Pvt. Ray Motown (as Michael Patrick Boatman)', 'Don Cheadle': 'Pvt. Johnny Washburn', 'Michael Dolan': 'Pvt. Harry Murphy', 'Don James': ""Pvt. Elliott 'Mac' McDaniel"", 'Dylan McDermott': 'Sgt. Adam Frantz', 'Michael A. Nickles': 'Pvt. Paul Galvan (as M.A. Nickles)', ""Harry O'Reilly"": 'Pvt. Michael Duffy', ""Daniel O'Shea"": 'Pvt. Frank Gaigin', 'Tim Quill': 'Pvt. Joe Beletsky', 'Tommy Swerdlow': 'Pvt. Martin Bienstock', 'Courtney B. Vance': ""Spc. Abraham 'Doc' Johnson"", 'Steven Weber': 'Sfc. Dennis Worcester', 'Tegan West': 'Lt. Terry Eden', 'Kieu Chinh': 'Mama San'}" tt1235837,"{'G.K. Bowes': 'Little Red Riding Hood / Little Bo Peep (voice) (as Gina K. Bowes)', 'Kelly Brewster': 'King Cole / Peter / Humpty Dumpty (voice)', 'Doug Erholtz': 'Pied Piper / Simple Simon / McDowner (voice)', 'Jennie Fahn': 'Old Woman in the Shoe (voice)', 'Jim Sullivan': 'Mambo / Magic Mirror (voice)', 'Kate Higgins': 'Goldilocks / Lucy (voice)', 'Helen Niedwick': 'Snow White (voice)', 'Lex Lang': 'Grimm (voice)', 'Catherine Lavin': 'Queen Grace / Fairy Godmother (voice)', 'David Lodge': 'Priest / Rumpelstiltskin (voice)', 'Cindy Robinson': 'Lady Vain (voice)', 'Doug Stone': 'McHugh (voice)', 'Kirk Thornton': 'Munk (voice)'}" tt0361693,"{'Lisa Kudrow': 'Mamie', 'Steve Coogan': 'Charley', 'Jesse Bradford': 'Nicky', 'Bobby Cannavale': 'Javier', 'Maggie Gyllenhaal': 'Jude', 'Jason Ritter': 'Otis', 'Tom Arnold': 'Frank', 'David Sutcliffe': 'Gil', 'Sarah Clarke': 'Diane', 'Laura Dern': 'Pam', 'Hallee Hirsh': 'Mamie at 17', 'Eric Jungmann': 'Charley at 16 / Tom', 'Kim Morgan Greene': 'Connie Peppitone', 'Rayne Marcus': 'Annette', 'Caitlyn Folley': 'Lauren (as Caker Folley)'}" tt0815236,"{'Jay Baruchel': 'Kirk', 'Alice Eve': 'Molly', 'T.J. Miller': 'Stainer', 'Mike Vogel': 'Jack', 'Nate Torrence': 'Devon', 'Lindsay Sloane': 'Marnie', 'Kyle Bornheimer': 'Dylan', 'Jessica St. Clair': 'Debbie', 'Krysten Ritter': 'Patty', 'Debra Jo Rupp': 'Mrs. Kettner', 'Adam LeFevre': 'Mr. Kettner', 'Kim Shaw': 'Katie', 'Jasika Nicole': 'Wendy', 'Geoff Stults': 'Cam', 'Hayes MacArthur': 'Ron'}" tt0180734,"{'Keanu Reeves': ""Conor O'Neill"", 'Diane Lane': 'Elizabeth Wilkes', 'John Hawkes': 'Ticky Tobin', 'Bryan Hearne': 'Andre Ray Peetes (as Bryan C. Hearne)', 'Julian Griffith': 'Jefferson Albert Tibbs', 'Michael B. Jordan': 'Jamal (as Michael Jordan)', 'A. Delon Ellis Jr.': 'Miles Pennfield II', 'Kris D. Lofton': 'Clarence (as Kristopher Lofton)', 'Michael Perkins': 'Kofi Evans', 'Brian M. Reed': ""Raymond 'Ray Ray' Bennet"", 'DeWayne Warren': ""Jarius 'G-Baby' Evans"", 'Carol Hall': 'Pearla Evans (as Carol E. Hall)', 'Jacqueline Williams': 'Lenora Tibbs', 'Freeman Coffey': 'Darryl Mackey', 'D.B. Sweeney': 'Matt Hyland'}" tt0102011,"{'Kevin Bacon': 'Dan Hanson', 'Elizabeth Perkins': 'Lorie Bryer', 'Nathan Lane': 'Wally Thurman', 'Anthony LaPaglia': 'Mark', 'Sharon Stone': 'Linda', 'Stanley Anderson': 'Mr. Weller', 'Charlayne Woodard': 'Cindy', 'Danton Stone': 'Eric', 'Phil Leeds': 'Mr. Spepk', 'Rita Karin': 'Mrs. Spepk', 'Paul Butler': 'Al, at the Deli', 'Erika Alexander': 'Rita, his Daugther', 'Ashley Gardner': 'Susan', 'Michael Harris': 'Adam (as M.K. Harris)', 'Damien Leake': 'Ray, the Technical Director'}" tt0251736,"{'Chad Bannon': 'Killer Karl', 'William Bassett': 'Sheriff Frank Huston (as William H. Bassett)', 'Karen Black': 'Mother Firefly', 'Erin Daniels': 'Denise Willis', 'Joe Dobbs III': 'Gerry Ober', 'Judith Drake': 'Skunk Ape Wife', 'Dennis Fimple': 'Grampa Hugo', 'Gregg Gibbs': 'Dr. Wolfenstein', 'Walton Goggins': 'Steve Naish', 'Sid Haig': 'Captain Spaulding', 'Chris Hardwick': 'Jerry Goldsmith', 'Ken Johnson': 'Skunk Ape Husband', 'Jennifer Jostyn': 'Mary Knowles', 'Irwin Keyes': 'Ravelli', 'Matthew McGrory': 'Tiny Firefly'}" tt0770810,"{'Tre Armstrong': 'Michelle (as Tré Armstrong)', 'Boyd Banks': 'Mike Evans', 'Clé Bennett': 'Garvey', 'Ardon Bess': 'Uncle Cecil', 'Conrad Coates': 'David Green', 'Keyshia Cole': 'Herself', 'Eve Crawford': 'Seaton Teacher', 'DeRay Davis': 'Himself', 'Shawn Fernandez': 'Trey (as Shawn Desman)', 'Nina Dobrev': 'Tall Girl in Bathroom', 'Kevin Duhaney': 'E.C.', 'Brennan Gademans': 'Quake', 'Ingrid Gaynor': 'Pam Green', 'Balford Gordon': 'Neighbourhood Guy', 'Patrick Haye': 'Customer'}" tt0110146,"{'Richard Gere': 'Vincent Eastman', 'Sharon Stone': 'Sally Eastman', 'Lolita Davidovich': 'Olivia Marshak', 'Martin Landau': 'Neal', 'David Selby': 'Richard Quarry', 'Jennifer Morrison': 'Meaghan Eastman (as Jenny Morrison)', 'Ron White': 'Charlie', 'Matthew Walker': 'Surgeon', 'Scott Bellis': 'Van Driver', 'Patricia Harras': ""Van Driver's Wife"", 'Keegan MacIntosh': ""Van Driver's Son (as Keegan Macintosh)"", 'A.C. Peterson': 'Semi-Driver (as Alan C. Peterson)', 'Sandra P. Grant': 'Receptionist', 'Robyn Stevan': 'Step Magazine', 'David Hurtubise': 'Step Magazine (as Dave Hurtubise)'}" tt0186253,"{'Billy Crudup': 'FH', 'Robert Michael Kelly': 'Salesman', 'Torben Brooks': 'Car Crash Driver', 'Dierdre Lewis': ""Driver's Wife"", 'Jimmy Moffit': 'Car Crash Doctor', 'Antoinette LaVecchia': ""Dead Man's Wife"", 'Samantha Morton': 'Michelle', 'Steve Buck': 'Richard', 'Ben Shenkman': 'Tom', 'Scott Oster': 'Stan', 'Brooke Rachel Shive': 'Beatle (as Brooke Shive)', 'Mark Webber': 'Jack Hotel', 'John Ventimiglia': 'McInnes', 'Jesse Weaver Jr.': 'Carl', 'Michael Shannon': 'Dundun (as Mike Shannon)'}" tt0425123,"{'Reese Witherspoon': 'Elizabeth', 'Mark Ruffalo': 'David', 'Donal Logue': 'Jack', 'Dina Spybey-Waters': 'Abby (as Dina Waters)', 'Ben Shenkman': 'Brett', 'Jon Heder': 'Darryl', 'Ivana Milicevic': 'Katrina', 'Caroline Aaron': 'Grace', 'Rosalind Chao': 'Fran', 'Ron Canada': 'Dr. Walsh', 'Willie Garson': ""Maitre D'"", 'Gabrielle Made': 'Nurse Maria', 'William Caploe': 'Nurse Bill', 'Shulie Cowen': 'Nurse Jenny', 'Billy Beck': 'Mr. Clarke'}" tt1059932,"{'Rachel Amanda': 'Dion', 'Restu Sinaga': 'Gaza', 'Anggie': 'Himself', ""Teuku As'Sadiq"": 'Dafi', 'Marcha Caroline': 'Laras', 'Desta Club 80s': 'Didi', 'Nimaz Dewantary': 'Diska', 'Sakurta H. Ginting': 'Deri', 'Karenina': 'Nayla', 'Mike Lucock': 'Dicky (as Mike Muliadro)', 'Agung Prabowo': 'Idos', 'Tien Sudrajat': 'Mimin', 'Ira Wibowo': 'Astari'}" tt0215129,"{'Breckin Meyer': 'Josh', 'Seann William Scott': 'E. L.', 'Amy Smart': 'Beth', 'Paulo Costanzo': 'Rubin', 'DJ Qualls': 'Kyle', 'Rachel Blanchard': 'Tiffany', 'Anthony Rapp': 'Jacob', 'Fred Ward': 'Earl Edwards', 'Tom Green': 'Barry', 'Andy Dick': 'Motel Clerk', 'Ethan Suplee': 'Ed', 'Horatio Sanz': 'French Toast Guy', 'Rhoda Griffis': 'Tour Group Mom', 'Marla Sucharetza': 'Sperm Bank Nurse', 'Ellen Albertini Dow': ""Barry's Grandma""}" tt1250777,"{'Aaron Taylor-Johnson': 'Dave Lizewski / Kick-Ass (as Aaron Johnson)', 'Garrett M. Brown': 'Mr. Lizewski', 'Evan Peters': 'Todd', 'Deborah Twiss': 'Mrs. Zane', 'Lyndsy Fonseca': 'Katie Deauxma', 'Sophie Wu': 'Erika Cho', 'Elizabeth McGovern': 'Mrs. Lizewski', 'Christopher Mintz-Plasse': ""Chris D'Amico / Red Mist"", ""Stu 'Large' Riley"": 'Huge Goon (as Stu Riley)', 'Johnny Hopkins': '1st Gang Kid', 'Ohene Cornelius': '2nd Gang Kid', 'Mark Strong': ""Frank D'Amico"", 'Michael Rispoli': 'Big Joe', 'Corey Johnson': 'Sporty Goon', 'Kenneth Simmons': 'Scary Goon'}" tt0113537,"{'Josh Hamilton': 'Grover', 'Samuel Gould': 'Pete (as Sam Gould)', 'Catherine Kellner': 'Gail', 'Jonathan Baumbach': 'Professor', 'John Lehr': 'Louis', ""Olivia d'Abo"": 'Jane', 'Peter Czernin': 'Lester', 'Carlos Jacott': 'Otis', 'Chris Eigeman': 'Max', 'Eric Stoltz': 'Chet', 'Eliza Roberts': 'Josselyn', 'Jason Wiles': 'Skippy', 'Parker Posey': 'Miami', 'Christopher Reed': 'Friedrich (as Chris Reed)', 'Noah Baumbach': 'Danny'}" tt0074751,"{'Jeff Bridges': 'Jack Prescott', 'Charles Grodin': 'Fred Wilson', 'Jessica Lange': 'Dwan', 'John Randolph': 'Captain Ross', 'Rene Auberjonois': 'Bagley', 'Julius Harris': 'Boan', ""Jack O'Halloran"": 'Joe Perko', 'Dennis Fimple': 'Sunfish', 'Ed Lauter': 'Carnahan', 'Jorge Moreno': 'Garcia', 'Mario Gallo': 'Timmons', 'John Lone': 'Chinese Cook', 'Garry Walberg': 'Army General', 'John Agar': 'City Official', 'Keny Long': 'Ape Masked Man'}" tt0110305,"{'Tom Guiry': 'Matthew Turner (as Thomas Guiry)', 'Helen Slater': 'Laura Turner', 'Jon Tenney': 'Steve Turner', 'Brittany Boyd': 'Jennifer Turner', 'Frederic Forrest': 'Sam Garland', 'Richard Farnsworth': 'Len Collins', 'Michelle Williams': 'April Porter', 'Joe Inscoe': 'Pete Jarman', 'Yvonne Erickson': 'Mrs. Jarman (as Yvonne Brisendine)', 'Clayton Barclay Jones': 'Josh Garland', 'Charlie Hofheimer': 'Jim Garland', 'Jody Smith Strickler': 'Mildred Garland', 'Margaret Peery': 'Mrs. Parker', 'David Bridgewater': 'Customer', 'Earnest Poole Jr.': 'Highway Patrolman #1'}" tt0110329,"{'Warwick Davis': 'The Leprechaun', 'Charlie Heath': 'Cody', 'Shevonne Durkin': 'Bridget', 'Sandy Baron': 'Morty', 'Adam Biesk': 'Ian', 'James Lancaster': ""William O'Day"", 'Linda Hopkins': 'Housewife', 'Arturo Gil': 'Drunk at the Pub', 'Kimmy Robertson': ""Tourist's Girlfriend"", 'Clint Howard': 'Tourist', 'Andrew Craig': 'Midwestern Dad', 'David Powledge': 'Frank', 'Billy Beck': 'Homeless Man', 'Al White': 'Desk Sergeant', 'Martha Hackett': 'Detective'}" tt0420251,"{'Bai Ling': 'Mei (segment ""Dumplings"")', 'Pauline Lau': 'Li\'s Maid (segment ""Dumplings"")', 'Tony Ka Fai Leung': 'Lee (segment ""Dumplings"")', 'Meme Tian': 'Connie (segment ""Dumplings"") (as Meme)', 'Miriam Chin Wah Yeung': 'Ching (segment ""Dumplings"")', 'Sum-Yeung Wong': 'Old Hairdresser (segment ""Dumplings"")', 'Kam-Mui Fung': 'Vomiting Woman (segment ""Dumplings"")', 'Wai-Man Wu': 'Nurse (segment ""Dumplings"")', 'Chak-Man Ho': 'Wang (segment ""Dumplings"")', 'Miki Yeung': 'Kate (segment ""Dumplings"")', 'So-Foon Wong': 'Kate\'s Mother (segment ""Dumplings"")', 'Kai-Piu Yau': 'Gynaecologist (segment ""Dumplings"")', 'Byung-Hun Lee': 'Director (segment ""Cut"")', 'Won-hee Im': 'Stranger (segment ""Cut"") (as Won-Hee Lim)', 'Hye-jeong Kang': 'Director\'s Wife (segment ""Cut"")'}" tt0079640,"{'Nick Nolte': 'Phillip Elliott', 'Mac Davis': 'Seth Maxwell', 'Charles Durning': 'Coach Johnson', 'Dayle Haddon': 'Charlotte Caulder', 'Bo Svenson': 'Jo Bob Priddy', 'John Matuszak': 'O. W. Shaddock', 'Steve Forrest': 'Conrad Hunter', 'G.D. Spradlin': 'B. A. Strothers', 'Dabney Coleman': 'Emmett Hunter', 'Savannah Smith Boucher': 'Joanne Rodney (as Savannah Smith)', 'Marshall Colt': 'Art Hartman', 'Guich Koock': 'Eddie Rand', 'Deborah Benson': 'Mrs. Hartman', 'Jim Boeke': 'Stallings (as James F. Boeke)', 'John Bottoms': 'Vip'}" tt0119783,"{'Andy Garcia': 'Sean Casey', 'Ian Holm': 'Liam Casey', 'James Gandolfini': 'Joey Allegretto', 'Lena Olin': 'Peggy Lindstrom', 'Shiek Mahmud-Bey': 'Jordan Washington', 'Colm Feore': 'Elihu Harrison', 'Ron Leibman': 'Morgenstern', 'Richard Dreyfuss': 'Sam Vigoda', 'Dominic Chianese': 'Judge Impelliteri', 'Paul Guilfoyle': 'McGovern', 'Bonnie Rose': 'Instructor', 'Norman Matlock': 'Detective', 'Sidney Armus': 'Judge', 'James Murtaugh': 'Man in Asylum (as Jim Murtaugh)', 'Melba Martinez': 'Legal Aid Attorney'}" tt0113691,"{'Jessica Lange': 'Margaret Lewin', 'Halle Berry': 'Khaila Richards', 'David Strathairn': 'Charles Lewin', 'Cuba Gooding Jr.': 'Eddie Hughes', 'Daisy Eagan': 'Hannah Lewin', 'Marc John Jefferies': 'Isaiah', 'Samuel L. Jackson': 'Kadar Lewis', 'Joie Lee': 'Marie', 'Regina Taylor': 'Gussie', 'LaTanya Richardson Jackson': 'Caroline Jones (as LaTanya Richardson)', 'Jacqueline Brookes': 'Judge Silbowitz', 'Donovon Ian H. McKnight': 'Amir', 'Rikkia A. Smith': 'Josie', 'Paulette McDaniels': 'Ethel', 'Velma Austin': 'Rehab Leader'}" tt0258273,"{'Troy Ruptash': 'Photographer (voice)', 'Emily Mortimer': 'Elizabeth Marks', 'Brenda Blethyn': 'Jane Marks', 'Raven Goodwin': 'Annie Marks', 'Catherine Keener': 'Michelle Marks', 'Ileen Getz': 'Saleswoman', 'Kristen Dalton': 'Saleswoman', 'Romy Rosemont': 'Dr. Debbie Waldman', 'Aunjanue Ellis': 'Lorraine', 'Brooke Allison': 'Pool Administrator', 'Jennifer Zehnder': 'Teased Girl', 'James Le Gros': 'Paul', 'Ashlynn Rose': 'Maddy', 'Clark Gregg': 'Bill', 'Dreya Weber': 'Donna'}" tt0438205,"{'Heather Berman': 'Herself', 'Emma Therese Biegacki': 'Herself', 'Eva Carrozza': 'Herself', 'Evangelina Carrozzo': 'Herself', 'Paul Daggett': 'Himself', 'Graciela Daniele': 'Herself - Final Competition Judge', 'Pierre Dulaine': 'Himself - Organizer and MC of the Final Dance Competition', 'Leslie Freu': 'Herself - Teacher PS 112', 'Tara Devon Gallagher': 'Herself', 'Madeleine Hackney': 'Herself', 'Charlotte Jorgensen': 'Herself - Final Competition Judge', 'Rodney Lopez': 'Himself', 'Victoria Malvagno': 'Herself', 'Stacee Mandeville': 'Herself', 'Terri Mintzer': 'Herself - Teacher PS 144'}" tt0266747,"{'Lisa Kudrow': 'Marci Feld', 'Damon Wayans': 'Dr. S', 'Richard Benjamin': 'Ben Feld', 'Jane Krakowski': 'Lauren Farb', 'Christine Baranski': 'Mary Ellen Spinkle', 'Paula Garcés': 'Yolanda Quinones', 'Charles Kimbrough': 'Lane Strayfield', 'Veanne Cox': 'Caitlin Mellowitz', 'Sherie Rene Scott': 'Kirsten Blatt', 'Gano Grills': 'Freekazoid', 'Nashawn Kearse': 'Quantrelle', 'Myron Primes': 'T-Bill', 'Billy Griffith': 'Tubby Fenders', 'Andrew Keenan-Bolger': 'Chip Spinkle', 'Adam Fleming': 'Boyz R Us'}" tt0757361,"{'Zane Pais': 'Claude', 'Susan Blackwell': 'Woman on Train', 'Nicole Kidman': 'Margot', 'Jack Black': 'Malcolm', 'Flora Cross': 'Ingrid', 'Jennifer Jason Leigh': 'Pauline', 'Seth Barrish': 'Toby', 'Matthew Arkin': 'Alan', 'Brian Kelley': 'Bruce', 'Christian Hansen': 'Fireman', 'Michael Cullen': 'Mr. Vogler', 'Enid Graham': 'Mrs. Vogler', 'Sophie Nyweide': 'Vogler Daughter', 'Justin Roth': 'Vogler Son', 'Ciarán Hinds': 'Dick Koosman'}" tt0473692,"{'Neil Young': 'Himself', 'Emmylou Harris': 'Herself', 'Ben Keith': 'Himself', 'Spooner Oldham': 'Himself', 'Rick Rosas': 'Himself', 'Karl T. Himmel': 'Himself (as Karl Himmel)', 'Chad Cromwell': 'Himself', 'Wayne Jackson': 'Himself', 'Pegi Young': 'Herself', 'Grant Boatwright': 'Himself', 'Diana DeWitt': 'Herself', 'Gary W. Pigg': 'Himself (as Gary Pigg)', 'Anthony Crawford': 'Himself', 'Tom McGinley': 'Himself', 'Jimmy Sharp': 'Himself'}" tt0416320,"{'Jonathan Rhys Meyers': 'Chris Wilton', 'Alexander Armstrong': 'Mr. Townsend', 'Paul Kaye': 'Estate Agent', 'Matthew Goode': 'Tom Hewett', 'Brian Cox': 'Alec Hewett', 'Penelope Wilton': 'Eleanor Hewett', 'Emily Mortimer': 'Chloe Hewett Wilton', 'Janis Kelly': ""'La Traviata' Performers"", 'Alan Oke': ""'La Traviata' Performers"", 'Mark Gatiss': 'Ping-Pong Player', 'Scarlett Johansson': 'Nola Rice', 'Philip Mansfield': 'Waiter', 'Simon Kunz': 'Rod Carver', 'Geoffrey Streatfeild': 'Alan Sinclair', 'Mary Hegarty': ""'Rigoletto' Performer""}" tt0209144,"{'Guy Pearce': 'Leonard', 'Carrie-Anne Moss': 'Natalie', 'Joe Pantoliano': 'Teddy', 'Mark Boone Junior': 'Burt', 'Russ Fega': 'Waiter', 'Jorja Fox': ""Leonard's Wife"", 'Stephen Tobolowsky': 'Sammy Jankis', 'Harriet Sansom Harris': 'Mrs. Jankis', 'Thomas Lennon': 'Doctor', 'Callum Keith Rennie': 'Dodd', 'Kimberly Campbell': 'Blonde', 'Marianne Muellerleile': 'Tattooist', 'Larry Holden': 'Jimmy'}" tt0291341,"{'Vinnie Jones': 'Danny Meehan', 'David Kelly': 'Doc', 'David Hemmings': 'Governor', 'Ralph Brown': 'Burton', 'Vas Blackwood': 'Massive', 'Robbie Gee': 'Trojan', 'Geoff Bell': 'Ratchett', 'John Forgeham': 'Charlie Sykes', 'Sally Phillips': 'Tracey', 'Danny Dyer': 'Billy the Limpet', 'Jason Flemyng': 'Bob Likely', 'Jason Statham': 'Monk', 'Martin Wimbush': 'Z', 'David Reid': 'Barman', 'David Cropman': 'Second Barman'}" tt0117091,"{'Paul Collins': 'Lawyer', 'Laura Weekes': 'Karen Henderson', 'Albert Brooks': 'John Henderson', 'John C. McGinley': 'Carl', 'Debbie Reynolds': 'Beatrice Henderson', 'Richard Assad': 'TV Installer', 'Joey Naber': 'TV Installer', 'Vanessa Williams': 'Donna', 'Lisa Kudrow': 'Linda', 'Rob Morrow': 'Jeff Henderson', 'Isabel Glasser': 'Cheryl Henderson', 'Danielle Quinn': 'Jill Henderson', 'Spencer Klein': 'Josh Henderson', 'Anne Haney': 'Helen', 'Billye Ree Wallace': 'Alice'}" tt0119715,"{'Nathan Lane': 'Ernie Smuntz', 'Lee Evans': 'Lars Smuntz', 'Vicki Lewis': 'April Smuntz', 'Maury Chaykin': 'Alexander Falko', 'Eric Christmas': ""Ernie and Lars' Lawyer"", 'Michael Jeter': 'Quincy Thorpe', 'Debra Christofferson': 'Ingrid', 'Camilla Søeberg': 'Hilde, the Bench Lady (as Camilla Soeberg)', 'Ian Abercrombie': 'Auctioneer', 'Annabelle Gurwitch': 'Roxanne Atkins', 'Eric Poppick': 'The Banker', 'Ernie Sabella': 'Maury, the Cat Care Society Owner', 'William Hickey': 'Rudolph Smuntz', 'Christopher Walken': 'Caeser, the Exterminator', 'Cliff Emmich': 'Mayor McKrinle'}" tt0119717,"{'Eric Stoltz': 'Lester Grimm, aka Vince', 'Annabella Sciorra': 'Ramona Ray', 'Chris Eigeman': 'Dashiell Frank', 'Carlos Jacott': 'Vince, aka Leo', 'Marianne Jean-Baptiste': 'Lucretia', 'Brian Kerwin': 'Stephen', 'John Lehr': 'Lint', 'Peter Bogdanovich': 'Dr. Howard Poke', 'Vincent Polidoro': 'Young Lester Grimm', 'Yvette Brooks Grant': 'Paulina', 'Jose Soto': 'Club Promoter', 'Delaine Yates': 'Ariana', 'Nico Baumbach': 'Ex-Boyfriend', 'Joel Kastelberg': 'Curt (as Joel Castleberg)', 'Dean Wareham': 'Music Video Director'}" tt0093605,"{'Adrian Pasdar': 'Caleb Colton', 'Jenny Wright': 'Mae', 'Lance Henriksen': 'Jesse Hooker', 'Bill Paxton': 'Severen', 'Jenette Goldstein': 'Diamondback', 'Tim Thomerson': 'Loy Colton', 'Joshua John Miller': 'Homer (as Joshua Miller)', 'Marcie Leeds': 'Sarah Colton', 'Kenny Call': 'Deputy Sheriff', 'Ed Corbett': 'Ticket Seller', 'Troy Evans': 'Plainclothes Officer', 'Bill Cross': 'Sheriff Eakers', 'Roger Aaron Brown': 'Cajun Truck Driver', 'Thomas Wagner': 'Bartender', 'Robert Winley': 'Patron in Bar'}" tt0396171,"{'Ben Whishaw': 'Jean-Baptiste Grenouille', 'Francesc Albiol': 'Court Official', 'Gonzalo Cunill': 'Guard 1 Dungeon', 'Roger Salvany': 'Guard 2 Dungeon', 'Andrés Herrera': 'Door Guard', 'Simon Chandler': 'Mayor of Grasse', 'David Calder': 'Bishop of Grasse', 'Richard Felix': 'Chief Magistrate', 'Birgit Minichmayr': ""Grenouille's Mother"", 'Reg Wilson': 'Customer Fishmarket', 'Catherine Boisgontier': 'Woman Fishmarket', 'Núria Casas': 'Woman 2 Fishmarket', 'Carlos Gramaje': 'Police Lieutenant Fishmarket', 'Sian Thomas': 'Madame Gaillard', 'Michael Smiley': 'Porter'}" tt0322659,"{'James Woods': ""Walter O'Brien"", 'Nick Nolte': 'Father Harlan', 'Douglas Sebern': 'Mayor', 'Claire Forlani': 'Mrs. Hadfield', 'Duel Farnes': 'Irwin', 'Mark Polish': ""Willis O'Brien"", 'Daryl Hannah': 'Flower Hercules', 'Graham Beckel': 'Marvin', 'Josh Barker': 'Matt (as Joshuin Barker)', 'Peter Coyote': 'Eddie', 'Jon Gries': 'Arnold', 'Rick Overton': 'Rudolph', 'Robin Sachs': 'Cup of Tea', 'Ben Foster': 'Cod', 'Anthony Edwards': 'Happy'}" tt0073190,"{'Kirk Douglas': 'Mike Wayne', 'Alexis Smith': 'Deidre Milford Granger', 'David Janssen': 'Tom Colt', 'George Hamilton': 'David Milford', 'Melina Mercouri': 'Karla', 'Gary Conway': 'Hugh', 'Brenda Vaccaro': 'Linda', 'Deborah Raffin': 'January', 'Lillian Randolph': 'Mabel', 'Renata Vanni': 'Maria', 'Mark Roberts': 'Rheingold', 'John Roper': 'Franco', 'Leonard Sachs': 'Dr. Peterson', 'Jim Boles': 'Scotty', 'Ann Marie Moelders': 'Girl at El Morocco'}" tt0120784,"{'Mel Gibson': 'Porter', 'Gregg Henry': 'Val Resnick', 'Maria Bello': 'Rosie', 'David Paymer': 'Arthur Stegman', 'Bill Duke': 'Det. Hicks', 'Deborah Kara Unger': 'Mrs. Lynn Porter', 'John Glover': 'Phil', 'William Devane': 'Carter', 'Lucy Liu': 'Pearl (as Lucy Alexis Liu)', 'Jack Conley': 'Det. Leary', 'Kris Kristofferson': 'Bronson', 'Mark Alfa': ""Johnny's Friend #2"", 'Kwame Amoaku': 'Radioman', 'Justin Ashforth': 'Michael, Bartender #1', 'Len Bajenski': 'Fairfax Bodyguard #1'}" tt0067589,"{'Walter Matthau': 'Roy Hubley / Jesse Kiplinger / Sam Nash', 'Lee Grant': 'Norma Hubley', 'Barbara Harris': 'Muriel Tate', 'Maureen Stapleton': 'Karen Nash', 'Louise Sorel': 'Jean McCormack', 'Dan Ferrone': 'Bellboy', 'José Ocasio': 'Room Service Waiter (as Jose Ocasio)', 'Thomas Carey': 'Borden Eisler', 'Jenny Sullivan': 'Mimsey Hubley', 'Augusta Dabney': 'Mrs. Eisler', 'Alan North': 'Mr. Eisler'}" tt0078111,"{'Brooke Shields': 'Violet', 'Keith Carradine': 'Bellocq', 'Susan Sarandon': 'Hattie', 'Frances Faye': 'Nell', 'Antonio Fargas': 'Professor', 'Matthew Anton': 'Red Top', 'Diana Scarwid': 'Frieda', 'Barbara Steele': 'Josephine', 'Seret Scott': 'Flora', 'Cheryl Markowitz': 'Gussie', 'Susan Manskey': 'Fanny', 'Laura Zimmerman': 'Agnes', 'Miz Mary': 'Odette', 'Gerrit Graham': 'Highpockets', 'Mae Mercer': 'Mama Mosebery'}" tt0462499,"{'Sylvester Stallone': 'John Rambo', 'Julie Benz': 'Sarah', 'Matthew Marsden': 'School Boy', 'Graham McTavish': 'Lewis', 'Reynaldo Gallegos': 'Diaz (as Rey Gallegos)', 'Jake La Botz': 'Reese', 'Tim Kang': 'En-Joo', 'Maung Maung Khin': 'Tint', 'Paul Schulze': 'Michael Burnett', 'Cameron Pearson': 'Missionary #4 (Jeff)', 'Thomas Peterson': 'Missionary #2 (Dentist)', 'Tony Skarberg': 'Missionary #3 (Videographer)', 'James With': 'Missionary #5 (Preacher) (as James Wearing Smith)', 'Kasikorn Niyompattana': 'Snake Hunter #2', ""Shaliew 'Lek' Bamrungbun"": 'Snake Hunter #1'}" tt0180093,"{'Ellen Burstyn': 'Sara Goldfarb', 'Jared Leto': 'Harry Goldfarb', 'Jennifer Connelly': 'Marion Silver', 'Marlon Wayans': 'Tyrone C. Love', 'Christopher McDonald': 'Tappy Tibbons', 'Louise Lasser': 'Ada', 'Marcia Jean Kurtz': 'Rae', 'Janet Sarno': 'Mrs. Pearlman', 'Suzanne Shepherd': 'Mrs. Scarlini', 'Joanne Gordon': 'Mrs. Ovadia', 'Charlotte Aronofsky': 'Mrs. Miles', 'Mark Margolis': 'Mr. Rabinowitz', 'Michael Kaycheck': 'Donut Cop (as Mike Kaycheck)', ""Jack O'Connell"": 'Corn Dog Stand Boss', 'Chas Mastin': 'Lyle Russel'}" tt0337711,"{'Elizabeth Daily': 'Tommy Pickles (voice) (as E.G. Daily)', 'Nancy Cartwright': 'Chuckie Finster (voice)', 'Kath Soucie': 'Phil DeVille / Lil DeVille / Betty DeVille (voice)', 'Dionne Quan': 'Kimi Finster (voice)', 'Cheryl Chase': 'Angelica Pickles (voice)', 'Tim Curry': 'Nigel Thornberry (voice)', 'Joe Alaskey': 'Grandpa Lou Pickles (voice)', 'Tress MacNeille': 'Charlotte Pickles (voice)', 'Michael Bell': ""Drew Pickles / Charles 'Chaz' Finster, Sr. (voice)"", 'Melanie Chartoff': 'Didi Pickles (voice)', 'Julia Kato': 'Kira Finster (voice)', 'Phil Proctor': 'Howard DeVille (voice)', 'Jack Riley': 'Stu Pickles (voice)', 'Tara Strong': 'Dil Pickles (voice)', 'Cree Summer': 'Susie Carmichael (voice)'}" tt0388395,"{'Horst Krause': 'Schultze', 'Harald Warmbrunn': 'Jürgen', 'Karl-Fred Müller': 'Manfred', 'Ursula Schucht': ""Jürgen's Wife"", 'Hannelore Schubert': ""Manfred's Wife"", 'Erwin Meinicke': 'Skatspieler', 'Hans Hohmann': 'Skatspieler', 'Siegfried Zimmermann': 'Skatspieler', 'Maik Gustävel': 'Automaten-Monteur', 'Annegret Fritz': 'Wirtin', 'Wolfgang Boos': 'Gatekeeper', 'Werner Boche': 'Rasenpfleger', 'Dora Solter': 'Dame', 'Anna Spengler': 'Dame', 'Erika Kirchhof': 'Dame'}" tt0046303,"{'Alan Ladd': 'Shane', 'Jean Arthur': 'Marian Starrett', 'Van Heflin': 'Joe Starrett', 'Brandon De Wilde': 'Joey Starrett', 'Jack Palance': 'Jack Wilson (as Walter Jack Palance)', 'Ben Johnson': 'Chris Calloway', 'Edgar Buchanan': 'Fred Lewis', 'Emile Meyer': 'Rufus Ryker', 'Elisha Cook Jr.': 'Stonewall Torrey', 'Douglas Spencer': ""Axel 'Swede' Shipstead"", 'John Dierkes': 'Morgan Ryker', 'Ellen Corby': 'Mrs. Liz Torrey', 'Paul McVey': 'Sam Grafton', 'John Miller': 'Will Atkey - Bartender', 'Edith Evanson': 'Mrs. Shipstead'}" tt0454945,"{'Amanda Bynes': 'Viola', 'Channing Tatum': 'Duke', 'Laura Ramsey': 'Olivia Lennox', 'Vinnie Jones': 'Dinklage', 'David Cross': 'Gold', 'Julie Hagerty': 'Daphne', 'Robert Hoffman': 'Justin', 'Alexandra Breckenridge': 'Monique (as Alex Breckenridge)', 'Jonathan Sadowski': 'Paul', 'Amanda Crew': 'Kia', 'Jessica Lucas': 'Yvonne', 'Brandon Jay McLaren': 'Toby', 'Clifton MaCabe Murray': 'Andrew (as Clifton Murray)', 'James Snyder': 'Malcolm', 'James Kirk': 'Sebastian'}" tt0184907,"{'Chris Elliott': 'Snowplowman', 'Mark Webber': 'Hal Brandston', 'Jean Smart': 'Laura Brandston', 'Schuyler Fisk': 'Lane Leonard', 'Iggy Pop': 'Mr. Zellweger', 'Pam Grier': 'Tina', 'John Schneider': 'Chad Symmonz', 'Chevy Chase': 'Tom Brandston', 'Zena Grey': 'Natalie Brandston', 'Josh Peck': 'Wayne Alworth', 'Jade Yorker': 'Chet Felker', 'Damian Young': 'Principal Weaver', 'Connor Matheus': 'Randy Brandston', 'J. Adam Brown': 'Bill Korn', 'Emmanuelle Chriqui': 'Claire Bonner'}" tt0040823,"{'Barbara Stanwyck': 'Leona Stevenson', 'Burt Lancaster': 'Henry J. Stevenson', 'Ann Richards': 'Sally Hunt Lord', 'Wendell Corey': 'Dr. Philip Alexander', 'Harold Vermilyea': 'Waldo Evans', 'Ed Begley': ""James 'J.B.' Cotterell"", 'Leif Erickson': 'Fred Lord', 'William Conrad': 'Morano', 'John Bromfield': 'Joe - Detective', 'Jimmy Hunt': 'Peter Lord', 'Dorothy Neumann': 'Elizabeth Jennings', 'Paul Fierro': 'Harpootlian'}" tt0489281,"{'Ryan Phillippe': 'Brandon King', 'Joseph Gordon-Levitt': 'Tommy Burgess', 'Rob Brown': ""Isaac 'Eyeball' Butler"", 'Channing Tatum': 'Steve Shriver', 'Victor Rasuk': 'Rico Rodriguez', 'Quay Terry': ""Al 'Preacher' Colson"", 'Matthew Scott Wilcox': 'Harvey', 'Connett Brewer': 'Curtis (as Connett M. Brewer)', 'Timothy Olyphant': 'Lt. Col. Boot Miller', 'Josef Sommer': 'Senator Orton Worrell', 'Linda Emond': 'Ida King', 'Ciarán Hinds': 'Roy King', 'Mamie Gummer': 'Jeanie', 'Abbie Cornish': 'Michelle', 'Alex Frost': 'Shorty'}" tt0117731,"{'Patrick Stewart': 'Picard', 'Jonathan Frakes': 'Riker', 'Brent Spiner': 'Data', 'LeVar Burton': 'Geordi (as Levar Burton)', 'Michael Dorn': 'Worf', 'Gates McFadden': 'Beverly', 'Marina Sirtis': 'Troi', 'Alfre Woodard': 'Lily', 'James Cromwell': 'Zefram Cochran', 'Alice Krige': 'Borg Queen', 'Michael Horton': 'Security Officer', 'Neal McDonough': 'Lt. Hawk', 'Marnie McPhail': 'Eiger', 'Robert Picardo': 'Holographic Doctor', 'Dwight Schultz': 'Lt. Barclay'}" tt0094072,"{'Mark Harmon': 'Freddy Shoop', 'Kirstie Alley': 'Ms. Robin Elizabeth Bishop', 'Robin Thomas': 'Vice Principal Phil Gills', 'Patrick Labyorteaux': 'Kevin Winchester', 'Courtney Thorne-Smith': 'Pam House', 'Dean Cameron': ""Francis 'Chainsaw' Gremp"", 'Gary Riley': 'Dave Frazier', 'Kelly Jo Minter': 'Denise Green (as Kelly Minter)', 'Ken Olandt': 'Larry Kazamias', 'Shawnee Smith': 'Rhonda Altobello', 'Richard Steven Horvitz': 'Alan Eakian', 'Fabiana Udenio': 'Anna-Maria Mazarelli', 'Francis X. McCarthy': 'Principal Kelban (as Frank McCarthy)', 'Tom Troupe': 'Judge', 'Lucy Lee Flippin': 'Substitute Teacher - Ms. Cura'}" tt0324127,"{'Aaron Eckhart': 'Thomas Mackelway', 'Ben Kingsley': ""Benjamin O'Ryan"", 'Carrie-Anne Moss': 'Fran Kulok', 'Harry Lennix': 'Rich Charleton', 'Kevin Chamberlin': 'Harold Speck', 'Julian Reyes': 'Highway Patrolman', 'Keith Campbell': 'Raymond Starkey', 'Chloe Russell': 'Loretta', 'Ellen Blake': 'Dolly', 'William B. Johnson': 'Mel', 'Jerry Gardner': 'Sheriff Harry Dylan', 'Daniel Patrick Moriarty': 'Bud Granger', 'Curtis Plagge': 'Jumbo', 'Nicole DeHuff': 'Katie Potter', 'William Mapother': 'Bill Grieves'}" tt0115571,"{'Charlie Sheen': 'Zane Zaminsky', 'Lindsay Crouse': 'Ilana Green', 'Richard Schiff': 'Calvin', 'Shane': 'JPL Guard #1', 'Ron Silver': 'Phil Gordian / Mexican Guard', 'Teri Polo': 'Char', 'Phyllis Applegate': 'Mrs. Roosevelt', 'Alan Coates': 'Terraformer', 'Leon Rippy': 'DOD #1', 'Buddy Joe Hooker': 'DOD #2', 'Javier Morga': 'Co-worker', 'Tony T. Johnson': 'Kiki', 'Catalina Botello': 'N.C.A.R. Woman', 'Georg Lillitsch': 'Computer Tech', 'David Villalpando': 'Cabbie'}" tt0185937,"{'Heather Donahue': 'Heather Donahue', 'Joshua Leonard': ""Joshua 'Josh' Leonard"", 'Michael C. Williams': ""Michael 'Mike' Williams (as Michael Williams)"", 'Bob Griffin': 'Short Fisherman', 'Jim King': 'Interviewee', 'Sandra Sánchez': 'Waitress (as Sandra Sanchez)', 'Ed Swanson': 'Fisherman With Glasses', 'Patricia DeCou': 'Mary Brown', 'Mark Mason': 'Man in Yellow Hat', 'Susie Gooch': 'Interviewee with Child (as Jackie Hallex)'}" tt0064045,"{'Oliver Reed': 'Ivan Dragomiloff', 'Diana Rigg': 'Sonya Winter', 'Telly Savalas': 'Lord Bostwick', 'Curd Jürgens': 'Gen. von Pinck (as Curt Jurgens)', 'Philippe Noiret': 'Monsieur Lucoville', 'Warren Mitchell': 'Herr Weiss', 'Beryl Reid': 'Madame Otero', 'Clive Revill': 'Cesare Spado', 'Vernon Dobtcheff': 'Baron Muntzof', 'Annabella Incontrera': 'Eleanora Spado', 'Kenneth Griffith': 'Monsieur Popescu', 'Jess Conrad': 'Angelo', 'George Coulouris': 'Swiss Peasant', 'Katherine Kath': 'Mme. Lucoville', 'Olaf Pooley': 'Swiss Cashier'}" tt0321442,"{'Jon Favreau': 'John Person', 'Joey Lauren Adams': 'Grace', 'Bud Cort': 'Neely', 'Jon Gries': 'Elron', 'Daryl Hannah': 'Stella', 'Adam Beach': 'Randy', 'Gary Farmer': 'Indian Bob', 'Rachael Leigh Cook': 'Ruthie', 'Brent Briscoe': 'Dan', 'Melora Walters': 'Candy', 'Kelsey Grammer': 'Agent Banks', 'Sean Bean': 'Cowboy', 'Alejandra Aguilan': 'Traveler', 'Jay Brothers': 'Traveler', 'Sara Fouts': 'Traveler'}" tt0109340,"{'Albert Finney': 'Andrew Crocker-Harris', 'Greta Scacchi': 'Laura Crocker-Harris', 'Matthew Modine': 'Frank Hunter', 'Julian Sands': 'Tom Gilbert', 'Michael Gambon': 'Dr. Frobisher', 'Ben Silverstone': 'Taplow', 'Jim Sturgess': 'Bryant (as James Sturgess)', 'Joseph Beattie': 'Wilson', 'Mark Bolton': 'Grantham', 'Tom Havelock': 'Laughton', 'Walter Micklethwait': 'Buller', 'Jotham Annan': 'Prince Abakendi', 'David Lever': 'David Fletcher', 'Bruce Myers': 'Dr. Rafferty', ""Maryam d'Abo"": 'Diana'}" tt0051436,"{'Yul Brynner': 'Jean Lafitte', 'Claire Bloom': 'Bonnie Brown', 'Charles Boyer': 'Dominique You', 'Inger Stevens': 'Annette Claiborne', 'Henry Hull': 'Ezra Peavey', 'E.G. Marshall': 'Gov. William Claiborne', 'Charlton Heston': 'Gen. Andrew Jackson', 'Lorne Greene': 'Mercier', 'Ted de Corsia': 'Capt. Rumbo', 'Douglass Dumbrille': 'Collector of the Port', 'Robert F. Simon': 'Capt. Brown', 'Sir Lancelot': 'Scipio', 'Fran Jeffries': 'Cariba - Mawbee Girl', 'John Dierkes': 'Deacon', 'Ken Miller': 'Young Sentry'}" tt0101523,"{'Demi Moore': 'Marina Lemke', 'Jeff Daniels': 'Dr. Alex Tremor', 'George Dzundza': 'Leo Lemke', 'Mary Steenburgen': 'Stella Keefover', 'Frances McDormand': 'Grace', 'Margaret Colin': 'Robyn Graves', 'Max Perlich': 'Eugene', 'Miriam Margolyes': 'Gina', 'Helen Hanft': 'Molly', 'Christopher Durang': 'Mr. Liddle', 'Luis Avalos': 'Luis', 'Charles Pierce': 'Beau', 'Elizabeth Lawrence': ""Grammy D'Arbo"", 'Stephanie Laurence': 'Choir Student', 'Barry Neikrug': 'Bicyclist'}" tt0298814,"{'Christopher Shyer': 'Dave Perry', 'Ray Galletti': 'Paul', 'Eileen Pedde': 'Lynne', 'Rekha Sharma': 'Danni (as Rékha Sharma)', 'Tom Scholte': 'Acker', 'Aaron Eckhart': 'Josh', 'Glenn Morshower': 'FBI Agent', 'Anthony Harrison': 'FBI Agent', 'Tchéky Karyo': 'Serge (as Tcheky Karyo)', 'Richard Jenkins': 'General Purcell', 'Bart Anderson': 'Dad', 'Nicole Leroux': 'Mom', 'Justin Callan': 'Little Boy', 'Chris Humphreys': 'GBTV Reporter - Trafalgar Square', 'Hilary Swank': 'Beck'}" tt0435625,"{'Shauna Macdonald': 'Sarah', 'Natalie Mendoza': 'Juno', 'Alex Reid': 'Beth', 'Saskia Mulder': 'Rebecca', 'MyAnna Buring': 'Sam', 'Nora-Jane Noone': 'Holly', 'Oliver Milburn': 'Paul', 'Molly Kayll': 'Jessica', 'Craig Conway': 'Crawler - Scar', 'Leslie Simpson': 'Crawler', 'Mark Cronfield': 'Crawler', 'Stephen Lamb': 'Crawler (as Steve Lamb)', 'Catherine Dyson': 'Crawler', 'Julie Ellis': 'Crawler', 'Sophie Trott': 'Crawler'}" tt0116240,"{'Shirley MacLaine': 'Aurora Greenway', 'Bill Paxton': 'Jerry Bruckner', 'Juliette Lewis': 'Melanie Horton', 'Miranda Richardson': 'Patsy Carpenter', 'Ben Johnson': 'Arthur Cotton', 'Scott Wolf': 'Bruce', 'George Newbern': 'Tommy Horton', 'Marion Ross': 'Rosie Dunlop', 'Mackenzie Astin': 'Teddy Horton', 'Donald Moffat': 'Hector Scott', 'Jennifer Grant': 'Ellen', 'China Kantner': 'Jane', 'Jack Nicholson': 'Garrett Breedlove', 'Shawn Taylor Thompson': 'Bump', 'Jake Langerud': 'Henry'}" tt1320253,"{'Sylvester Stallone': 'Barney Ross', 'Jason Statham': 'Lee Christmas', 'Jet Li': 'Yin Yang', 'Dolph Lundgren': 'Gunner Jensen', 'Eric Roberts': 'James Munroe', 'Randy Couture': 'Toll Road', 'Steve Austin': 'Paine', 'David Zayas': 'General Garza', 'Giselle Itié': 'Sandra', 'Charisma Carpenter': 'Lacy', 'Gary Daniels': 'The Brit', 'Terry Crews': 'Hale Caesar', 'Mickey Rourke': 'Tool', 'Hank Amos': 'Paul', 'Amin Joseph': 'Pirate Leader'}" tt0093075,"{'Stephen Dorff': 'Glen', 'Christa Denton': 'Al', 'Louis Tripp': ""Terrence 'Terry' Chandler"", 'Kelly Rowan': 'Lori Lee', 'Jennifer Irwin': 'Linda Lee', 'Deborah Grover': 'Mom', 'Scot Denton': 'Dad', 'Ingrid Veninger': 'Paula', 'Sean Fagan': 'Eric', 'Linda Goranson': ""Terry's Mom"", 'Carl Kraines': 'Workman', 'Andrew Gunn': 'Brad'}" tt0219699,"{'Cate Blanchett': 'Annie Wilson', 'Giovanni Ribisi': 'Buddy Cole', 'Keanu Reeves': 'Donnie Barksdale', 'Katie Holmes': 'Jessica King', 'Greg Kinnear': 'Wayne Collins', 'Hilary Swank': 'Valerie Barksdale', 'Michael Jeter': 'Gerald Weems', 'Kim Dickens': 'Linda', 'Gary Cole': 'David Duncan', 'Rosemary Harris': ""Annie's Granny"", 'J.K. Simmons': 'Sheriff Pearl Johnson', 'Chelcie Ross': 'Kenneth King', 'John Beasley': 'Albert Hawkins', 'Lynnsee Provence': 'Mike Wilson', 'Hunter McGilvray': 'Miller Wilson'}" tt0064505,"{'Michael Caine': 'Charlie Croker', 'Noël Coward': 'Mr. Bridger', 'Benny Hill': 'Professor Simon Peach', 'Raf Vallone': 'Altabani', 'Tony Beckley': 'Freddie', 'Rossano Brazzi': 'Beckerman', 'Margaret Blye': 'Lorna (as Maggie Blye)', 'Irene Handl': 'Miss Peach', 'John Le Mesurier': 'Governor', 'Fred Emney': 'Birkinshaw', 'John Clive': 'Garage Manager', 'Graham Payn': 'Keats', 'Michael Standing': 'Arthur', 'Stanley Caine': 'Coco', 'Barry Cox': 'Chris'}" tt0074777,"{'Robert De Niro': 'Monroe Stahr', 'Tony Curtis': 'Rodriguez', 'Robert Mitchum': 'Pat Brady', 'Jeanne Moreau': 'Didi', 'Jack Nicholson': 'Brimmer', 'Donald Pleasence': 'Boxley', 'Ray Milland': 'Fleishacker', 'Dana Andrews': 'Red Ridingwood', 'Ingrid Boulting': 'Kathleen Moore', 'Peter Strauss': 'Wylie', 'Theresa Russell': 'Cecilia Brady', 'Tige Andrews': 'Popolos', 'Morgan Farley': 'Marcus', 'John Carradine': 'Tour Guide', 'Jeff Corey': 'Doctor'}" tt0385057,"{'Chris Klein': 'Cooper', 'Brendan Fehr': 'Ed Waxman', 'Chandra West': 'Kim', 'Craig Fairbrass': 'Frank', 'Paul Campbell': 'Roger', 'Cobie Smulders': 'Ellen', 'Andy Thompson': 'Officer Garcia', 'Nicole McKay': 'Cathy', 'Alejandro Rae': 'Jack', 'Roger Haskett': ""Ed's Father"", 'Stephen Park': 'Doctor', 'J. Douglas Stewart': 'Doctor #2', 'Chelan Simmons': 'Susie', 'Charles Andrew Payne': 'Cop #1 (as Charles Payne)', 'Will Sanderson': 'Cop #2'}" tt0380510,"{'Mark Wahlberg': 'Jack Salmon', 'Rachel Weisz': 'Abigail Salmon', 'Susan Sarandon': 'Grandma Lynn', 'Stanley Tucci': 'George Harvey', 'Michael Imperioli': 'Len Fenerman', 'Saoirse Ronan': 'Susie Salmon', 'Rose McIver': 'Lindsey Salmon', 'Christian Ashdale': 'Buckley Salmon', 'Reece Ritchie': 'Ray Singh', 'Carolyn Dando': 'Ruth Connors', 'Nikki SooHoo': 'Holly (as Nikki Soohoo)', 'Andrew James Allen': 'Samuel Heckler', 'Jake Abel': 'Brian Nelson', 'AJ Michalka': 'Clarissa', 'Tom McCarthy': 'Principal Caden'}" tt0071970,"{'Warren Beatty': 'Joseph Frady', 'Paula Prentiss': 'Lee Carter', 'William Daniels': 'Austin Tucker', 'Walter McGinn': 'Jack Younger', 'Hume Cronyn': 'Bill Rintels', 'Kelly Thordsen': 'Sheriff L.D. Wicker', 'Chuck Waters': 'Thomas Richard Linder', 'Earl Hindman': 'Deputy Red', 'William Joyce': 'Senator Charles Carroll (as Bill Joyce)', 'Betty Murray': 'Mrs. Charles Carroll (as Bettie Johnson)', 'Bill McKinney': 'Parallax Assassin', 'Jo Ann Harris': ""Chrissy - Frady's Girl (as JoAnne Harris)"", 'Ted Gehring': 'Schecter - Hotel Clerk', 'Lee Pulford': 'Shirley - Salmontail Bar Girl', 'Doria Cook-Nelson': 'Gale from Salmontail (as Doria Cook)'}" tt0314498,"{'Erika Christensen': 'Anna', 'Chris Evans': 'Kyle', 'Bryan Greenberg': 'Matty Matthews', 'Scarlett Johansson': 'Francesca', 'Darius Miles': 'Desmond', 'Leonardo Nam': 'Roy', 'Tyra Ferrell': ""Desmond's Mother"", 'Matthew Lillard': 'Larry', 'Vanessa Angel': 'Anita Donlee', 'Bill Mackenzie': 'Lobby Guard', 'Dan Zukovic': 'Mr. G', 'Iris Quinn': ""Kyle's Mother"", 'Lorena Gale': 'Proctor', 'Patricia Idlette': 'Receptionist', 'Lynda Boyd': ""Anna's Mother""}" tt1129442,"{'Jason Statham': 'Frank Martin', 'Natalya Rudakova': 'Valentina', 'François Berléand': 'Tarconi', 'Robert Knepper': 'Johnson', 'Jeroen Krabbé': 'Leonid Vasilev', 'Alex Kobold': ""Leonid's Aide"", 'David Atrakchi': 'Malcom Manville', 'Yann Sundberg': 'Flag', 'Eriq Ebouaney': 'Ice', 'David Kammenos': 'Driver Market', 'Silvio Simac': 'Mighty Joe', 'Oscar Relier': 'Thug / Driver', 'Timo Dierkes': 'Otto', 'Igor Koumpan': 'Cop Ukraine', 'Paul Barrett': 'Captain'}" tt0227445,"{'Robert De Niro': 'Nick', 'Edward Norton': 'Jack / Brian', 'Marlon Brando': 'Max', 'Angela Bassett': 'Diane', 'Gary Farmer': 'Burt', 'Paul Soles': 'Danny', 'Jamie Harrold': 'Steven', 'Serge Houde': 'Laurent', 'Jean-René Ouellet': 'André (as Jean Rene Ouellet)', 'Martin Drainville': 'Jean-Claude', 'Claude Despins': 'Albert', 'Richard Waugh': 'Sapperstein', 'Mark Camacho': ""Sapperstein's Cousin"", 'Marie-Josée Colburn': ""Woman in Study (as Marie-Josee D'Amours)"", 'Gavin Svensson': 'Man in Study'}" tt0095897,"{'Sean Connery': 'Lt. Col. Alan Caldwell', 'Mark Harmon': 'Jay Austin', 'Meg Ryan': 'Donna Caldwell', 'Jack Warden': 'Sgt. Maj. Ross Maclure', 'Mark Blum': 'Arthur Peale', 'Dana Gladstone': 'Col. Paul Lawrence', 'Jenette Goldstein': 'Patti Jean Lynch', 'Marvin J. McIntyre': 'MP Zeke', 'Don Calfa': 'Howard Buckely', 'John DiSanti': 'Det. Marvin Powell', 'Robert Lesser': 'Sgt. Mueller', 'James Hooks Reynolds': 'George Spota', 'Curtis W. Sims': 'Sgt. Garfield', 'Rick Zumwalt': 'Bully in Bar', 'Rosalyn Marshall': ""Lawrence's Secretary""}" tt0337697,"{'Julia Stiles': 'Paige Morgan', 'Luke Mably': 'Eddie', 'Ben Miller': 'Soren', 'Miranda Richardson': 'Queen Rosalind', 'James Fox': 'King Haraald', 'Alberta Watson': 'Amy Morgan', 'John Bourgeois': 'Ben Morgan', 'Zachary Knighton': 'John Morgan', ""Stephen O'Reilly"": ""Mike Morgan (as Steve O'Reilly)"", 'Elisabeth Waterston': 'Beth Curtis', 'Eliza Bennett': 'Princess Arabella', 'Devin Ratray': 'Scotty', 'Clare Preuss': 'Stacey', 'Yaani King Mondschein': 'Amanda (as Yaani King)', 'Eddie Irvine': 'Himself'}" tt0268695,"{'Guy Pearce': 'Alexander Hartdegen', 'Mark Addy': 'David Philby', 'Phyllida Law': 'Mrs. Watchit', 'Sienna Guillory': 'Emma', 'Laura Kirk': 'Flower Seller', 'Josh Stamberg': 'Motorist', 'John W. Momrow': 'Fifth Avenue Carriage Driver', 'Max Baker': 'Robber', 'Jeffrey M. Meyer': 'Central Park Carriage Driver', 'Jeremy Irons': 'Über-Morlock', 'Alan Young': 'Flower Store Worker', 'Myndy Crist': 'Jogger', 'Connie Ray': 'Teacher', 'Orlando Jones': 'Vox', 'Lennie Loftin': 'Soldier #1'}" tt0290095,"{'Jackie Chan': 'Jimmy Tong', 'Jennifer Love Hewitt': 'Del Blaine', 'Jason Isaacs': 'Clark Devlin', 'Debi Mazar': 'Steena', 'Ritchie Coster': 'Dietrich Banning', 'Peter Stormare': 'Dr. Simms', 'Mia Cottet': 'Cheryl', 'Romany Malco': 'Mitch', 'Daniel Kash': 'Rogers', 'Jody Racicot': 'Kells', 'Boyd Banks': 'Vic', 'Scott Wickware': 'CSA Agent Wallace', 'Christian Potenza': 'CSA Agent Joel', 'Karen Glave': 'CSA Agent Randa', 'Scott Yaphe': 'CSA Agent Gabe'}" tt0301976,"{'Don Cheadle': 'Pearl Madison', 'Ryan Gosling': 'Leland P. Fitzgerald', 'Chris Klein': 'Allen Harris', 'Jena Malone': 'Becky Pollard', 'Lena Olin': 'Marybeth Fitzgerald', 'Kevin Spacey': 'Albert T. Fitzgerald', 'Michelle Williams': 'Julie Pollard', 'Martin Donovan': 'Harry Pollard', 'Ann Magnuson': 'Karen Pollard', 'Kerry Washington': 'Ayesha', 'Sherilyn Fenn': 'Mrs. Calderon', 'Matt Malloy': 'Charlie', 'Wesley Jonathan': 'Bengel', 'Michael Peña': 'Guillermo', 'Michael Welch': 'Ryan Pollard'}" tt0159097,"{'James Woods': 'Mr. Lisbon', 'Kathleen Turner': 'Mrs. Lisbon', 'Kirsten Dunst': 'Lux Lisbon', 'Josh Hartnett': 'Trip Fontaine', 'Michael Paré': 'Adult Trip Fontaine (as Michael Pare)', 'Scott Glenn': 'Father Moody', 'Danny DeVito': 'Dr. Horniker', 'A.J. Cook': 'Mary Lisbon', 'Hanna Hall': 'Cecilia Lisbon', 'Leslie Hayman': 'Therese Lisbon', 'Chelse Swain': 'Bonnie Lisbon', 'Anthony DeSimone': 'Chase Buell (as Anthony Desimone)', 'Lee Kagan': 'David Barker', 'Robert Schwartzman': 'Paul Baldino', 'FourTee': 'Parkie Denton (as Noah Shebib)'}" tt0282120,"{'Lacey Chabert': 'Eliza Thornberry (voice)', 'Tom Kane': 'Darwin (voice)', 'Cree Summer': 'Phaedra (Elephant) (voice)', 'Tim Curry': 'Nigel Thornberry / Col. Radcliff Thornberry (voice)', 'Lynn Redgrave': 'Cordelia Thornberry (voice)', 'Jodi Carlisle': 'Marianne Thornberry (voice)', 'Danielle Harris': 'Debbie Thornberry (voice)', 'Flea': 'Donnie Thornberry (voice)', 'Crystal Scales': 'Cheetah Cubs (voice)', 'Kimberly Brooks': 'Tally (Cheetah Cub) (voice)', 'Alfre Woodard': 'Akela (Cheetah Mother) (voice)', 'Brock Peters': 'Jomo (voice)', 'Melissa Greenspan': 'Sarah Wellington (voice)', 'Alexandra Boyd': 'Victoria (voice)', 'Moira Quirk': 'Jane (voice)'}" tt0161100,"{'Elayn J. Taylor': ""Roland's Mother (as Elayn Taylor)"", 'Omar Epps': 'Mike', 'Richard T. Jones': 'Slim', 'Sean Nelson': 'Young Mike', 'Duane Finley': 'Young Slim', 'Trent Cameron': 'Young Roland', 'Malinda Williams': 'Young Alicia', 'Patricia Belcher': 'Mrs. Hughes', 'Taye Diggs': 'Roland', 'Tamala Jones': 'Tanya', ""De'aundre Bonds"": ""Stacey (as De'Aundre Bonds)"", 'Cynthia Martells': ""Mike's Mother"", 'Wyking Jones': 'Cashiers in Mini Mart', 'Geoffrey Blackshire': 'Cashiers in Mini Mart', 'Jascha Washington': ""Mike's Brother""}" tt0469623,"{'Halle Berry': 'Audrey Burke', 'Benicio Del Toro': 'Jerry Sunborne', 'David Duchovny': 'Brian Burke', 'Alexis Llewellyn': 'Harper Burke', 'Micah Berry': 'Dory Burke', 'John Carroll Lynch': 'Howard Glassman', 'Alison Lohman': 'Kelly', 'Robin Weigert': 'Brenda', 'Omar Benson Miller': 'Neal', 'Paula Newsome': 'Diane', 'Sarah Dubrovsky': 'Spring', 'Maureen Thomas': 'Grandma Ginnie Burke', 'Patricia Harras': ""Howard's Wife"", 'V.J. Foster': 'Distressed Man (as VJ Foster)', 'Caroline Field': 'Teresa Haddock (as Carolyn Field)'}" tt0300556,"{'Paul Walker': 'Chris Johnston', ""Frances O'Connor"": 'Kate Ericson', 'Gerard Butler': 'Andre Marek', 'Billy Connolly': 'Professor Johnston', 'David Thewlis': 'Robert Doniger', 'Anna Friel': 'Lady Claire', 'Neal McDonough': 'Frank Gordon', 'Matt Craven': 'Steven Kramer', 'Ethan Embry': 'Josh Stern', 'Michael Sheen': 'Lord Oliver', 'Lambert Wilson': 'Lord Arnaut', 'Marton Csokas': 'Sir William De Kere / William Decker', 'Rossif Sutherland': 'François Dontelle', 'Steve Kahan': 'Baker', 'David La Haye': ""Arnaut's Deputy""}" tt0139699,"{'James Van Der Beek': 'Mox', 'Jon Voight': 'Coach Kilmer', 'Paul Walker': 'Lance Harbor', 'Ron Lester': 'Billy Bob', 'Scott Caan': 'Tweeter', 'Richard Lineback': 'Joe Harbor', 'Tiffany C. Love': 'Collette Harbor', 'Amy Smart': 'Julie Harbor', 'Eliel Swinton': 'Wendell', 'Thomas F. Duffy': 'Sam Moxon (as Thomas Duffy)', 'Jill Parker-Jones': 'Mo Moxon (as Jill Parker Jones)', 'Joe Pichler': 'Kyle Moxon', 'Mark Walters': 'Chet McNurty', 'Brady Coleman': 'Sheriff Bigelow', 'James N. Harrell': 'Murray (as James Harrell)'}" tt0070895,"{'Joe Don Baker': 'Buford Pusser', 'Elizabeth Hartman': 'Pauline', 'Leif Garrett': 'Mike', 'Dawn Lyn': 'Dwana', 'Noah Beery Jr.': 'Grandpa (as Noah Beery)', 'Lurene Tuttle': 'Grandma', 'Ed Call': 'Lutie McVeigh', 'Dominick Mazzie': 'Bozo', 'Lynn Borden': 'Margie Ann', 'Brenda Benet': 'Luan Paxton (as Brenda Benét)', 'Arch Johnson': 'Buel Jaggers', 'Russell Thorson': 'Ferrin Meaks', 'Gil Perkins': '1st Bouncer', 'Carey Loftin': 'Dice Player', 'Warner Venetz': 'Stickman'}" tt0049934,"{'Audrey Hepburn': 'Natasha Rostova', 'Henry Fonda': 'Pierre Bezukhov', 'Mel Ferrer': 'Prince Andrei Bolkonsky', 'Vittorio Gassman': 'Anatol Kuragin', 'Herbert Lom': 'Napoleon', 'Oskar Homolka': 'Field Marshal Kutuzov (as Oscar Homolka)', 'Anita Ekberg': 'Helene Kuragina', 'Helmut Dantine': 'Dolokhov', 'Tullio Carminati': 'Prince Vasili Kuragin', 'Barry Jones': 'Prince Mikhail Andreevich Rostov', 'Milly Vitale': 'Lisa Bolkonskaya', 'Lea Seidl': 'Countess Rostov', 'Anna Maria Ferrero': 'Maria Bolkonskaya', 'Wilfrid Lawson': 'Prince Bolkonsky (as Wilfred Lawson)', 'May Britt': 'Sonia Rostova'}" tt0048801,"{'Humphrey Bogart': 'Joseph', 'Aldo Ray': 'Albert', 'Peter Ustinov': 'Jules', 'Joan Bennett': 'Amelie Ducotel', 'Basil Rathbone': 'Andre Trochard', 'Leo G. Carroll': 'Felix Ducotel', 'John Baer': 'Paul Trochard', 'Gloria Talbott': 'Isabelle Ducotel', 'Lea Penman': 'Mme. Parole', 'John Smith': 'Medical Officer Arnaud'}" tt0120524,"{'Tammy Lauren': 'Alexandra Amberson', 'Andrew Divoff': 'The Djinn / Nathaniel Demerest', 'Robert Englund': 'Raymond Beaumont', 'Chris Lemmon': 'Nick Merritt', 'Wendy Benson-Landes': 'Shannon Amberson (as Wendy Benson)', 'Tony Crane': 'Josh Aickman', ""Jenny O'Hara"": 'Wendy Derleth', 'Kane Hodder': ""Merritt's Guard"", 'Tony Todd': 'Johnny Valentine', 'Ricco Ross': 'Lt. Nathanson', 'John Byner': 'Doug Clegg', ""George 'Buck' Flower"": 'Homeless Man (as Buck Flower)', 'Gretchen Palmer': 'Ariella', 'Ted Raimi': 'Ed Finney', 'Angus Scrimm': 'Narrator (voice)'}" tt0477139,"{'Will Arnett': 'Messiah', 'Abraham Benrubi': 'Erik', 'Leslie Bibb': 'Desiree', 'Mark Boone Junior': 'Mike (as Mark Boone Jr.)', 'Cameron Bowen': 'Kostya', 'Clayne Crawford': 'Jim', 'Chase Ellison': 'Kid Kostya', 'Patrick Fugit': 'Zia', 'Adam Gifford': 'Gas Station Attendant (as Adam G.)', 'Mary Pat Gleason': ""Eugene's Mother"", 'John Hawkes': 'Yan', 'Mikal P. Lazarev': 'Nanuk', 'Aaron Parker Mouser': 'Max (as Aaron Mouser)', 'Nick Offerman': 'Cop', 'Anatol Rezmeritza': ""Eugene's Father""}" tt0096487,"{'Emilio Estevez': 'William H. Bonney', 'Kiefer Sutherland': 'Doc Scurlock', 'Lou Diamond Phillips': 'Chavez y Chavez', 'Charlie Sheen': 'Dick Brewer', 'Dermot Mulroney': 'Dirty Steve Stephens', 'Casey Siemaszko': 'Charley Bowdre', 'Terence Stamp': 'John Tunstall', 'Jack Palance': 'L. G. Murphy', ""Terry O'Quinn"": 'Alex McSween', 'Sharon Thomas Cain': 'Susan McSween (as Sharon Thomas)', 'Geoffrey Blake': 'J. McCloskey', 'Alice Carter': 'Yen Sun', 'Brian Keith': 'Buckshot Roberts', 'Thomas Callaway': 'Texas Joe Grant (as Tom Callaway)', 'Patrick Wayne': 'Pat Garrett'}" tt1186830,"{'Rachel Weisz': 'Hypatia', 'Max Minghella': 'Davus', 'Oscar Isaac': 'Orestes', 'Ashraf Barhom': 'Ammonius', 'Michael Lonsdale': 'Theon', 'Rupert Evans': 'Synesius', 'Homayoun Ershadi': 'Aspasius', 'Sami Samir': 'Cyril (as Sammy Samir)', 'Richard Durden': 'Olympius', 'Omar Mostafa': 'Isidorus', 'Manuel Cauchi': 'Theophilus', 'Oshri Cohen': 'Medorus', 'Charles Thake': 'Hesiquius', 'Harry Borg': 'Prefect Evragius', ""Yousef 'Joe' Sweid"": 'Peter (as Yousef Sweid)'}" tt1448755,"{'Jason Statham': 'Danny', 'Clive Owen': 'Spike', 'Robert De Niro': 'Hunter', 'Dominic Purcell': 'Davies', 'Aden Young': 'Meier', 'Yvonne Strahovski': 'Anne', 'Ben Mendelsohn': 'Martin', 'Adewale Akinnuoye-Agbaje': 'Agent', 'David Whiteley': 'MI6 Man', 'Matt Nable': 'Pennock (as Matthew Nable)', 'Lachy Hulme': 'Harris', 'Firass Dirani': 'Bakhait', 'Nick Tate': 'Commander B', 'Bille Brown': 'Colonel Fitz', 'Stewart Morritt': 'Campbell'}" tt0893412,"{'Camilla Belle': 'Nora Dominguez', 'Alexa PenaVega': 'Mary Dominguez (as Alexa Vega)', 'Tina French': 'Old Librarian', 'Luis Rosales': 'Juanito', 'Pablo Martínez de Velasco': 'Pablo the Gardener', 'Alexis Ayala': 'Gabriel Dominguez Sr.', 'Norma Reyna': 'Carmina', 'Adriana Barraza': 'Aurelia Jimenez', 'Oliverio Gareli': 'Marco Antonio Ramirez', 'Catalina López': 'Trinita', 'José María Negri': 'Benjamin Kerensky', 'Mario Zaragoza': 'Federico', 'Pablo Cruz': 'Gabriel Dominguez Jr.', 'April Bowlby': 'Olivia', ""Nicholas D'Agosto"": 'Edward Ferris'}" tt1189340,"{'Matthew McConaughey': 'Mick Haller', 'Marisa Tomei': 'Maggie McPherson', 'Ryan Phillippe': 'Louis Roulet', 'William H. Macy': 'Frank Levin', 'Josh Lucas': 'Ted Minton', 'John Leguizamo': 'Val Valenzuela', 'Michael Peña': 'Jesus Martinez', 'Bob Gunton': 'Cecil Dobbs', 'Frances Fisher': 'Mary Windsor', 'Bryan Cranston': 'Detective Lankford', 'Trace Adkins': 'Eddie Vogel', 'Laurence Mason': 'Earl', 'Margarita Levieva': 'Reggie Campo', 'Pell James': 'Lorna', 'Shea Whigham': 'Corliss'}" tt1600195,"{'Jake Andolina': 'CIA Man', 'Oriah Acima Andrews': 'Riah', 'Ken Arnold': 'Thermal', 'Maria Bello': 'Mara', 'Steve Blass': 'Game Announcer', 'Derek Burnell': 'Hot Dog Vendor', 'Benjamin J. Cain Jr.': 'Driver (as Ben Cain)', 'Holly Scott Cavanaugh': 'Mrs. Murphy', 'Radick Cembrzynski': ""Kozlow's Tech"", 'Richard Cetrone': 'Gregory', 'Mike Clark': 'News Reporter', 'Lily Collins': 'Karen', 'Jack Erdie': 'Short Sleeves', 'Rita Gregory': 'Nurse', 'Tim Griffin': 'Red Flannel'}" tt0805619,"{'Rob Lowe': 'Ted Cogan', 'Marnie McPhail': 'Molly Cogan', 'Ben Lewis': 'Max Cogan', 'Tatiana Maslany': 'Sammi', 'Shawn Roberts': 'Luke', 'Vik Sahay': 'Farzan', 'Colin Williams': 'Drexel', 'PJ Lazic': 'Nunez (as P.J. Lazic)', 'Elias Zarou': 'Iraqi Officer', 'Nicholas Carella': 'Kablinsky', 'Cristine Prosperi': 'Iraqi Girl', 'Jason Mercury': 'Translator', 'Bill Lake': 'Colonel', 'Neil Crone': 'Gary', 'Katya Gardner': 'April'}" tt0929632,"{'Gabourey Sidibe': 'Precious', ""Mo'Nique"": 'Mary', 'Paula Patton': 'Ms. Rain', 'Mariah Carey': 'Ms. Weiss', 'Sherri Shepherd': 'Cornrows', 'Lenny Kravitz': 'Nurse John', 'Stephanie Andujar': 'Rita', 'Chyna Layne': 'Rhonda', 'Amina Robinson': 'Jermaine', 'Xosha Roquemore': 'Joann', 'Angelic Zambrana': 'Consuelo', 'Aunt Dot': 'Toosie', 'Nealla Gordon': 'Mrs. Lichtenstein', 'Grace Hightower': 'Socialworker', 'Barret Helms': 'Tom Cruise (as Barret Isaiah Mindell)'}" tt0082382,"{'Walter Matthau': 'Dan Snow', 'Jill Clayburgh': 'Ruth Loomis', 'Barnard Hughes': 'Chief Justice James Jefferson Crawford', 'Jan Sterling': 'Christine Snow', 'James Stephens': 'Mason Woods', 'Joshua Bryant': 'Bill Russell', 'Wiley Harker': 'Justice Harold Webb', ""F.J. O'Neil"": 'Justice Waldo Thompson', 'Charles Lampkin': 'Justice Josiah Clewes', 'Lew Palter': 'Justice Benjamin Halperin', 'Richard McMurray': 'Justice Richard Carey', 'Herb Vigran': 'Justice Ambrose Quincy', 'Edmund Stoiber': 'Committee Chairman', 'Noble Willingham': 'Nebraska Attorney', 'Richard McKenzie': 'Hostile Senator'}" tt0049096,"{'Danny Kaye': 'Hubert Hawkins', 'Glynis Johns': 'Maid Jean', 'Basil Rathbone': 'Sir Ravenhurst', 'Angela Lansbury': 'Princess Gwendolyn', 'Cecil Parker': 'King Roderick I', 'Mildred Natwick': 'Griselda', 'Robert Middleton': 'Sir Griswold', 'Michael Pate': 'Sir Locksley', 'Herbert Rudley': 'Captain of the Guard', 'Noel Drayton': 'Fergus', 'John Carradine': 'Giacomo', 'Edward Ashley': 'Black Fox', 'Alan Napier': 'Sir Brockhurst', 'Lewis Martin': 'Sir Finsdale', 'Patrick Aherne': 'Sir Pertwee'}" tt0344604,"{'Daniel Auteuil': 'Antoine Letoux', 'José Garcia': 'Louis', 'Sandrine Kiberlain': 'Blanche Grimaldi', 'Marilyne Canto': 'Christine', 'Michèle Moretti': 'Martine', 'Garance Clavel': 'Karine', 'Fabio Zenoni': 'André', 'Jocelyne Desverchère': 'Sandrine the Florist', 'Didier Menin': 'Man at Thai Restaurant', 'Jean-Claude Lecas': 'Cook', 'Blandine Pélissier': 'Nurse', 'Jean-Charles Dumay': 'Serge the Sommelier', 'Ange Ruzé': 'Young Waiter', 'Élise Otzenberger': 'Hairdresser', 'Jean-Luc Abel': 'The Inspector'}" tt0387564,"{'Leigh Whannell': 'Adam Faulkner-Stanheight', 'Cary Elwes': 'Dr. Lawrence Gordon', 'Danny Glover': 'Detective David Tapp', 'Ken Leung': 'Detective Steven Sing', 'Dina Meyer': 'Kerry', 'Mike Butters': 'Paul', 'Paul Gutrecht': 'Mark', 'Michael Emerson': 'Zep Hindle', 'Benito Martinez': 'Brett', 'Shawnee Smith': 'Amanda', 'Makenzie Vega': 'Diana Gordon', 'Monica Potter': 'Alison Gordon', 'Ned Bellamy': 'Jeff', 'Alexandra Bokyun Chun': 'Carla (as Alexandra Chun)', 'Avner Garbi': 'Father'}" tt0285742,"{'Billy Bob Thornton': 'Hank Grotowski', 'Taylor Simpson': 'Lucille', 'Gabrielle Witcher': 'Betty', 'Heath Ledger': 'Sonny Grotowski', 'Amber Rules': 'Vera', 'Peter Boyle': 'Buck Grotowski', 'Charles Cowan Jr.': 'Willie Cooper', 'Taylor LaGrange': 'Darryl Cooper', 'Yasiin Bey': 'Ryrus Cooper (as Mos Def)', 'Anthony Bean': 'Dappa Smith', 'Francine Segal': 'Georgia Ann Paynes', 'John McConnell': 'Harvey Shoonmaker', 'Marcus Lyle Brown': 'Phil Huggins', 'Milo Addica': 'Tommy Roulaine', 'Leah Loftin': 'Booter'}" tt0395584,"{'Sid Haig': 'Captain Spaulding', 'Bill Moseley': 'Otis', 'Sheri Moon Zombie': 'Baby', 'William Forsythe': 'Sheriff Wydell', 'Ken Foree': 'Charlie Altamont', 'Matthew McGrory': 'Tiny', 'Leslie Easterbrook': 'Mother Firefly', 'Geoffrey Lewis': 'Roy Sullivan', 'Priscilla Barnes': 'Gloria Sullivan', 'Dave Sheridan': 'Officer Ray Dobson', 'Kate Norby': 'Wendy Banjo', 'Lew Temple': 'Adam Banjo', 'Danny Trejo': 'Rondo', 'Dallas Page': 'Billy Ray Snapper (as Diamond Dallas Page)', 'Brian Posehn': 'Jimmy'}" tt0107387,"{'Warwick Davis': 'Leprechaun', 'Jennifer Aniston': 'Tory Reding', 'Ken Olandt': 'Nathan Murphy', 'Mark Holton': 'Ozzie', 'Robert Hy Gorman': 'Alex (as Robert Gorman)', 'Shay Duffin': ""Dan O'Grady"", 'John Sanderford': 'J.D. Reding', 'John Voldstad': 'Shop Owner', 'Pamela Mant': ""Mrs. O'Grady"", 'William Newman': 'Sheriff Cronin', 'David Permenter': 'Deputy Tripet', 'Raymond C. Turner': 'Dispatcher (as Raymond Turner)', 'Heather Kennedy': 'Waitress', 'Tim Garrick': 'Customer (as Timothy Garrick)', 'Alexandra Sachs': ""Little Girl's Voice (voice)""}" tt0408236,"{'Johnny Depp': 'Sweeney Todd', 'Helena Bonham Carter': 'Mrs. Lovett', 'Alan Rickman': 'Judge Turpin', 'Timothy Spall': 'Beadle', 'Sacha Baron Cohen': 'Pirelli', 'Jamie Campbell Bower': 'Anthony', 'Laura Michelle Kelly': 'Lucy / Beggar Woman', 'Jayne Wisener': 'Johanna', 'Ed Sanders': 'Toby (as Edward Sanders)', 'Gracie May': 'Baby Johanna', 'Ava May': 'Baby Johanna', 'Gabriella Freeman': 'Baby Johanna', 'Jody Halse': 'Policeman', 'Aron Paramor': 'Policeman', 'Lee Whitlock': 'Policeman'}" tt0123755,"{'Nicole de Boer': 'Leaven', 'Nicky Guadagni': 'Holloway', 'David Hewlett': 'Worth', 'Andrew Miller': 'Kazan', 'Julian Richings': 'Alderson', 'Wayne Robson': 'Rennes', 'Maurice Dean Wint': 'Quentin'}" tt0092890,"{'Jennifer Grey': 'Baby Houseman', 'Patrick Swayze': 'Johnny Castle', 'Jerry Orbach': 'Jake Houseman', 'Cynthia Rhodes': 'Penny Johnson', 'Jack Weston': 'Max Kellerman', 'Jane Brucker': 'Lisa Houseman', 'Kelly Bishop': 'Marjorie Houseman', 'Lonny Price': 'Neil Kellerman', 'Max Cantor': 'Robbie Gould', ""Charles 'Honi' Coles"": 'Tito Suarez (as Charles Honi Coles)', 'Neal Jones': 'Billy Kostecki', ""'Cousin Brucie' Morrow"": 'Magician', 'Wayne Knight': 'Stan', 'Paula Trueman': 'Mrs. Schumacher', 'Alvin Myerovich': 'Mr. Schumacher'}" tt0375679,"{'Karina Arroyave': 'Elizabeth', 'Dato Bakhtadze': 'Lucien', 'Sandra Bullock': 'Jean', 'Don Cheadle': 'Graham', 'Art Chudabala': 'Ken Ho', 'Sean Cory': 'Motorcycle Cop', 'Tony Danza': 'Fred', 'Keith David': 'Lt. Dixon', 'Loretta Devine': 'Shaniqua', 'Matt Dillon': 'Officer Ryan', 'Jennifer Esposito': 'Ria', 'Ime Etuk': 'Georgie (as Ime N. Etuk)', 'Eddie J. Fernandez': 'Officer Gomez (as Eddie Fernandez)', 'William Fichtner': 'Flanagan', 'Howard Fong': 'Store Owner'}" tt0158493,"{'DMX': ""Tommy 'Buns' Bundy"", 'Nas': 'Sincere', 'Hassan Johnson': 'Mark', 'Taral Hicks': 'Kisha', ""Tionne 'T-Boz' Watkins"": 'Tionne', ""Oliver 'Power' Grant"": 'Knowledge (as Power)', 'Louie Rankin': 'Lennox', 'Stan Drayton': 'Wise (as Stanley Drayton)', 'James Parris': 'LaKid', 'Method Man': 'Shameek', 'Kurt Loder': 'Kurt Loder', 'Ben Chavis': 'Rev. Saviour (as Minister Benjamin F. Muhammed)', 'Tyrin Turner': 'Big', 'Jay Black': 'Black', ""John 'B.J.' Bryant"": 'Thug #1'}" tt0078788,"{'Marlon Brando': 'Colonel Walter E. Kurtz', 'Martin Sheen': 'Captain Benjamin L. Willard', 'Robert Duvall': 'Lieutenant Colonel Bill Kilgore', 'Frederic Forrest': ""Jay 'Chef' Hicks"", 'Sam Bottoms': 'Lance B. Johnson', 'Laurence Fishburne': ""Tyrone 'Clean' Miller (as Larry Fishburne)"", 'Albert Hall': 'Chief Phillips', 'Harrison Ford': 'Colonel Lucas', 'Dennis Hopper': 'Photojournalist', 'G.D. Spradlin': 'General R. Corman', 'Jerry Ziesmer': 'Jerry, Civilian', 'Scott Glenn': 'Lieutenant Richard M. Colby', 'Bo Byers': 'MP Sergeant #1', 'James Keane': ""Kilgore's Gunner"", 'Kerry Rossall': 'Mike from San Diego'}" tt0144084,"{'Christian Bale': 'Patrick Bateman', 'Justin Theroux': 'Timothy Bryce', 'Josh Lucas': 'Craig McDermott', 'Bill Sage': 'David Van Patten', 'Chloë Sevigny': 'Jean', 'Reese Witherspoon': 'Evelyn Williams', 'Samantha Mathis': 'Courtney Rawlinson', 'Matt Ross': 'Luis Carruthers', 'Jared Leto': 'Paul Allen', 'Willem Dafoe': 'Donald Kimball', 'Cara Seymour': 'Christie', 'Guinevere Turner': 'Elizabeth', 'Stephen Bogaert': 'Harold Carnes', 'Monika Meier': 'Daisy', 'Reg E. Cathey': 'Homeless Man'}" tt0120151,"{'Greg Kinnear': 'Danny Robertson', 'Lauren Holly': 'Jennifer Robertson', 'Joan Cusack': 'Nancy Tellen', 'Jay Thomas': 'Steve Harris', 'Jill Hennessy': 'Lindsay Hamilton', 'Christopher McDonald': 'Richard Halstrom', 'Donald Moffat': 'Dr. Felber', 'France Nuyen': 'Dr. Chin', 'Marianne Muellerleile': 'Nurse Wheeler', 'Sheridan Samples': 'Holly', 'Barbara Larsen': 'Woman in Window / Woman on Plane', 'Tony Abou-Ganim': 'Welder', 'Nick Scoggin': 'Welder', 'Gene Nakashita': 'Karaoke Bar Owner', 'Lewis Brown': 'Karaoke Act 1'}" tt0261289,"{'Matthew Perry': 'Joe Tyler', 'Elizabeth Hurley': 'Sara Moore', 'Vincent Pastore': 'Tony', 'Bruce Campbell': 'Gordon Moore', 'Cedric the Entertainer': 'Ray Harris', 'Amy Adams': 'Kate', 'Terry Crews': 'Vernon', 'Jerry Stiller': 'Milton the Cop', 'Marshall Bell': 'Warren Cebron', 'Derek Southers': 'Bouncer', 'Alan Ackles': 'Man in Elevator (scenes deleted)', 'Robin McGee': 'Jimmy the Elevator Operator', 'Brent Duncan': 'Blackjack Dealer', 'Eli Jacques': 'Woman at Blackjack Table', 'John Wayne Shafer': 'Pit Boss'}" tt0089945,"{'Tom Berenger': ""Rex O'Herlihan"", 'G.W. Bailey': 'Peter', 'Marilu Henner': 'Miss Tracy', 'Andy Griffith': 'Colonel Ticonderoga', 'Fernando Rey': 'Railroad Colonel', 'Sela Ward': ""Colonel's Daughter"", 'Brant von Hoffman': 'Jim (as Brant Van Hoffman)', 'Christopher Malcolm': 'Jud', 'Jim Carter': 'Blackie', 'Paul Maxwell': 'Sheepherder No.1', 'Manuel Pereiro': 'Sheepherder No.2', 'Margarita Calahorra': ""Sheepherder's Wife"", 'Billy J. Mitchell': 'Town Doctor', 'John Orchard': 'Town Sheriff', 'Emilio Linder': 'Sheepherder in Saloon'}" tt0068245,"{'Jeff Bridges': 'Jake Rumsey', 'Barry Brown': 'Drew Dixon', 'Jim Davis': 'Marshal', 'David Huddleston': 'Big Joe', 'John Savage': 'Loney', 'Jerry Houser': 'Arthur Simms', 'Damon Douglas': 'Jim Bob Logan (as Damon Cofer)', 'Joshua Hill Lewis': 'Boog Bookin', 'Geoffrey Lewis': 'Hobbs', 'Raymond Guth': 'Jackson', 'Ed Lauter': 'Orin (as Edward Lauter)', 'John Quade': 'Nolan', 'Jean Allison': 'Mrs. Dixon', 'Ned Wertimer': 'Mr. Dixon', 'Charles Tyner': 'Egg Farmer'}" tt0348505,"{'Natasha Richardson': 'Stella Raphael', 'Hugh Bonneville': 'Max Raphael', 'Gus Lewis': 'Charlie Raphael', 'Ian McKellen': 'Dr. Peter Cleave', 'Joss Ackland': 'Jack Straffen', 'Wanda Ventham': 'Bridie Straffen', 'Sarah Thurstan': 'Mrs. Rose', 'Alwyne Taylor': 'Monica', 'Maria Aitken': 'Claudia Greene', 'Hazel Douglas': 'Lilly', 'Anna Keaveney': 'Mrs. Bain', 'Marton Csokas': 'Edgar Stark', 'Robert Willox': 'John Archer', 'Judy Parfitt': 'Brenda Raphael', 'Sean Harris': 'Nick'}" tt0218182,"{'Barry McEvoy': 'Colm', ""Brían F. O'Byrne"": 'George', 'Anna Friel': 'Bronagh', 'Pauline McLynn': 'Gerty', 'Ruth McCabe': ""Mrs. O'Neill"", 'Laurence Kinlan': 'Mickey', 'Billy Connolly': 'Scalper', 'Des McAleer': 'Mr. Black', 'Colum Convey': 'IRA Man', 'Ian Cregg': 'Milker', 'David Pearse': 'Comrade', 'Seamus Ball': 'Mr. Duggan', 'Enda Oates': 'Detective', 'Des Braiden': 'Vicar', 'George Shane': 'Billy King'}" tt0118073,"{'Shelley Long': 'Carol Brady', 'Gary Cole': 'Mike Brady', 'Christopher Daniel Barnes': 'Greg Brady', 'Christine Taylor': 'Marcia Brady', 'Paul Sutera': 'Peter Brady', 'Jennifer Elise Cox': 'Jan Brady', 'Jesse Lee Soffer': 'Bobby Brady (as Jesse Lee)', 'Olivia Hack': 'Cindy Brady', 'Henriette Mantel': 'Alice Nelson', 'Tim Matheson': 'Roy Martin / Trevor Thomas', 'Whip Hubley': 'Explorer / Dead Husband', 'Whitney Rydbeck': 'Auctioneer', 'Sue Casey': 'Art Patron #1', 'Gregory White': 'Art Patron #2', 'RuPaul': 'Ms. Cummings'}" tt0096316,"{'Jeff Bridges': 'Preston Tucker', 'Joan Allen': 'Vera', 'Martin Landau': 'Abe', 'Frederic Forrest': 'Eddie', 'Mako': 'Jimmy', 'Elias Koteas': 'Alex Tremulis', 'Christian Slater': 'Junior', 'Nina Siemaszko': 'Marilyn Lee', 'Anders Johnson': 'Johnny', 'Corin Nemec': 'Noble (as Corky Nemec)', 'Marshall Bell': 'Frank', 'Jay O. Sanders': 'Kirby', 'Peter Donat': 'Kerner', 'Dean Goodman': 'Bennington', 'John X. Heart': ""Ferguson's Agent""}" tt0406158,"{'Julianne Moore': 'Evelyn Ryan', 'Woody Harrelson': 'Kelly Ryan', 'Laura Dern': 'Dortha Schaefer', 'Trevor Morgan': 'Bruce Ryan at 16 yrs', 'Ellary Porterfield': 'Tuff Ryan at 13, 16 & 18 yrs', 'Simon Reynolds': 'Ray the Milkman', 'Monté Gagné': 'Lea Anne Ryan at 17 yrs', 'Robert Clark': 'Dick Ryan at 16 yrs', 'Michael Seater': 'Bub Ryan at 15 yrs', 'Erik Knudsen': 'Rog Ryan at 13 yrs', 'Jake Scott': 'Bruce Ryan at 11 yrs', 'Jordan Todosey': 'Tuff Ryan at 9 yrs', 'Ryan Price': 'Mike Ryan at 6 yrs', 'Shae Norris': 'Barb Ryan at 4 yrs', 'Abigail Falle': 'Betsy Ryan at 2 yrs'}" tt0051364,"{'Lana Turner': 'Sara Scott', 'Barry Sullivan': 'Carter Reynolds', 'Glynis Johns': 'Kay Trevor', 'Sean Connery': 'Mark Trevor', 'Terence Longdon': 'Alan Thompson', 'Sidney James': 'Jake Klein', 'Martin Stephens': 'Brian Trevor', 'Doris Hare': 'Mrs. Bunker', 'Julian Somers': 'Hotel Manager', 'John Le Mesurier': 'Dr. Aldridge', 'Cameron Hall': 'Alfy', 'Jane Welsh': 'Jonesy', 'Robin Bailey': 'Captain Barnes', 'Bill Fraser': 'R.E. Sergeant'}" tt0145653,"{'Emily Watson': 'Angela McCourt', 'Robert Carlyle': 'Malachy (Dad)', 'Joe Breen': 'Young Frank', 'Ciaran Owens': 'Middle Frank', 'Michael Legge': 'Older Frank', 'Ronnie Masterson': 'Grandma Sheehan', 'Pauline McLynn': 'Aunt Aggie', 'Liam Carney': 'Uncle Pa Keating', 'Eanna MacLiam': 'Uncle Pat', 'Andrew Bennett': 'Narrator (voice)', 'Shane Murray-Corcoran': 'Young Malachy (as Shane Murray Corcoran)', 'Devon Murray': 'Middle Malachy', 'Peter Halpin': 'Older Malachy', 'Aaron Geraghty': 'New Born Michael', 'Sean Carney Daly': 'Baby Michael'}" tt0060086,"{'Michael Caine': 'Alfie', 'Shelley Winters': 'Ruby', 'Millicent Martin': 'Siddie', 'Julia Foster': 'Gilda', 'Jane Asher': 'Annie', 'Shirley Anne Field': 'Carla', 'Vivien Merchant': 'Lily Clamacraft', 'Eleanor Bron': 'The Doctor', 'Denholm Elliott': 'The Abortionist', 'Alfie Bass': 'Harry Clamacraft', 'Graham Stark': 'Humphrey', 'Murray Melvin': 'Nat', 'Sydney Tafler': 'Frank'}" tt0267248,"{'Katie Holmes': 'Katie Burke', 'Benjamin Bratt': 'Wade Handler', 'Charlie Hunnam': 'Embry Larkin', 'Zooey Deschanel': 'Samantha Harper', 'Fred Ward': 'Lieutenant Bill Stayton', 'Mark Feuerstein': 'Robert Hanson', 'Melanie Lynskey': 'Mousy Julie (as Melanie Jayne Lynskey)', 'Philip Bosco': 'Professor Jergensen', 'Gabriel Mann': 'Harrison Hobart', 'Will McCormack': 'August', 'Gabrielle Union': 'Amanda Luttrell', 'Greg Kramer': 'Andre', 'Gillian Ferrabee': 'Susan', 'Barry Julien': 'Ted', 'Tony Goldwyn': 'Dr. David Schaffer'}" tt0078757,"{'Keith Carradine': 'Hal Raymond', 'Monica Vitti': 'Maria Barone', 'Raf Vallone': ""Federico 'Freddie' Barone"", 'Christian De Sica': 'Carlo Barone', 'Dick Anthony Williams': 'Andrew Jackson', 'Anna Maria Horsford': 'Amy Zon', 'Katya Berger': ""Maria & Freddie's Daughter"", 'Henri Garcin': 'Lt. Montand'}" tt0258038,"{'Lance Crouther': 'Pootie Tang', 'J.B. Smoove': 'Trucky', 'Jennifer Coolidge': 'Ireenie', 'Reg E. Cathey': 'Dirty Dee', 'Robert Vaughn': 'Dick Lecter', 'Wanda Sykes': 'Biggie Shorty', 'Chris Rock': ""JB / Radio DJ / Pootie's Father"", 'Mario Joyner': 'Lacey', 'Cathy Trien': 'Stacy', 'Dave Attell': 'Frank', 'Laura Kightlinger': 'Anchor Woman', 'Christopher Wynkoop': 'Sheriff', 'Rick Shapiro': 'Shakey', 'Qiana Drew': 'Singing Lady', 'Lorria Richards': 'Singing Lady'}" tt0373908,"{'Cedric the Entertainer': 'Ralph Kramden', 'Mike Epps': 'Ed Norton', 'Gabrielle Union': 'Alice Kramden', 'Regina Hall': 'Trixie Norton', 'Eric Stoltz': 'William Davis', 'Jon Polito': 'Kirby', 'John Leguizamo': 'Dodge', 'Carol Woods': ""Alice's Mom"", 'Ajay Naidu': 'Vivek', 'Arnell Powell': 'DJ Suckaslam', 'Leticia Castillo': 'Young Mother', 'Chuy Bravo': 'Grocer', 'Doreen Keogh': 'Miss Celestine', 'Camille Donegan': 'Lissa', 'Joanna Dickens': 'Bus Stop Woman'}" tt0268397,"{'Megan Cavanagh': 'Mom / VOX (voice)', 'Mark DeCarlo': 'Dad / Pilot / Arena Guard (voice)', 'Debi Derryberry': ""James 'Jimmy' Isaac Neutron (voice)"", 'Jeffrey Garcia': 'Sheen (voice)', 'Bob Goen': 'Newscaster (voice)', 'Mary Hart': 'Newscaster (voice)', 'Carolyn Lawrence': 'Cindy Vortex (voice)', 'Andrea Martin': 'Miss Fowl (voice)', 'Candi Milo': 'Nick / Britanny / PJ (voice)', 'Rob Paulsen': ""Carl / Carl's Mom and Dad / Kid in Classroom / Kid (voice)"", 'Crystal Scales': 'Libby (voice)', 'Martin Short': 'Ooblar (voice)', 'Patrick Stewart': 'King Goobot (voice)', 'Jim Cummings': 'Ultra Lord / Mission Control / General (voice)', 'David L. Lander': 'Yokian Guard / Gus (voice)'}" tt0795351,"{'Renée Zellweger': 'Emily Jenkins', 'Jodelle Ferland': 'Lilith Sullivan', 'Ian McShane': 'Detective Barron', 'Bradley Cooper': 'Doug', 'Callum Keith Rennie': 'Edward Sullivan', 'Adrian Lester': 'Wayne', ""Kerry O'Malley"": 'Margaret Sullivan', 'Cynthia Stevenson': 'Nancy', 'Alexander Conti': 'Diego', 'Philip Cabrita': 'Javier', 'Vanesa Tomasino': ""Javier's Wife"", 'Mary Black': 'Custody Judge', ""Domenico D'Ambrosio"": 'Plainclothes Cop', 'Benita Ha': 'Therapist', 'J. Winston Carroll': 'Judge (as John Carroll)'}" tt0099587,"{'Danny Glover': 'Commander Frank Camparelli', 'Willem Dafoe': 'Lt. Cmdr. Virgil Cole', 'Brad Johnson': ""Lt. Jake' Cool Hand' Grafton"", 'Rosanna Arquette': 'Callie', 'Tom Sizemore': 'Boxman', 'J. Kenneth Campbell': ""Lt. Cmdr. 'Cowboy' Parker"", 'Jared Chandler': ""Lt. J.G. Jack 'Razor' Barlow"", 'Dann Florek': 'Mad Jack', 'Madison Mason': ""'Cag'"", 'Ving Rhames': 'McRae', 'Christopher Rich': 'Lt. J.G. Morgan McPherson', 'Douglas Roberts': 'Guffy', 'Scott N. Stevens': 'Hardesty (as Scott Newton Stevens)', 'Justin Williams': 'Sammy', 'John Corbett': 'Big Augie'}" tt0098625,"{'Robert De Niro': 'Ned', 'Sean Penn': 'Jim', 'Demi Moore': 'Molly', 'Hoyt Axton': 'Father Levesque', 'Bruno Kirby': 'Deputy', 'Ray McAnally': 'Warden', 'James Russo': 'Bobby', 'Wallace Shawn': 'Translator', 'John C. Reilly': 'Young Monk', 'Jay Brazeau': 'Sheriff', 'Ken Buhay': 'Bishop Nogalich', 'Elizabeth Lawrence': 'Mrs. Blair', 'Bill Murdoch': 'Deputy', 'Jessica Jickels': 'Rosie', 'Frank C. Turner': 'Shopkeeper'}" tt0314676,"{'Robert Downey Jr.': 'Dan Dark', 'Robin Wright': 'Nicola / Nina / Blonde (as Robin Wright Penn)', 'Mel Gibson': 'Dr. Gibbon', 'Jeremy Northam': 'Mark Binney', 'Katie Holmes': 'Nurse Mills', 'Adrien Brody': 'First Hood', 'Jon Polito': 'Second Hood', 'Carla Gugino': 'Betty Dark / Hooker', 'Saul Rubinek': 'Skin Specialist', 'Alfre Woodard': 'Chief of Staff', 'Amy Aquino': 'Nurse Nozhki', 'David Dorfman': 'Young Dan Dark', 'Eddie Jones': 'Moonglow Bartender', 'Lily Knight': 'Woman Physiotherapist', 'Clyde Kusatsu': 'Visiting Japanese Doctor'}" tt0134067,"{'Elizabeth Daily': 'Tommy Pickles (voice) (as E.G. Daily)', 'Christine Cavanaugh': 'Chuckie Finster (voice)', 'Kath Soucie': 'Philip Deville / Lillian Deville / Betty Deville (voice)', 'Melanie Chartoff': 'Didi Pickles / Minka (voice)', 'Phil Proctor': 'Howard DeVille / Igor (voice)', 'Cree Summer': 'Susie Carmichael (voice)', 'Mary Gross': 'Woman Guest (voice)', 'Kevin McBride': 'Male Guest (voice)', 'Andrea Martin': 'Aunt Miriam (voice)', 'Michael Bell': 'Chas Finster / Grandpa Boris / Drew Pickles (voice)', 'Tress MacNeille': 'Charlotte Pickles (voice)', 'Jack Riley': 'Stu Pickles (voice)', 'Busta Rhymes': 'Reptar Wagon (voice)', 'Joe Alaskey': 'Grandpa Lou Pickles (voice)', 'Cheryl Chase': 'Angelica Pickles (voice)'}" tt0062153,"{'James Coburn': 'Dr. Sidney Schaefer', 'Godfrey Cambridge': 'Don Masters', 'Severn Darden': 'Kropotkin', 'Joan Delaney': 'Nan Butler', 'Pat Harrington Jr.': 'Arlington Hewes (as Pat Harrington)', 'Barry McGuire': 'Old Wrangler', 'Jill Banner': 'Snow White', 'Eduard Franz': 'Ethan Allan Cocket', 'Walter Burke': 'Henry Lux', 'Will Geer': 'Dr. Lee-Evan', 'William Daniels': 'Wynn Quantrill', 'Joan Darling': 'Jeff Quantrill', 'Sheldon Collins': 'Bing Quantrill', 'Arte Johnson': 'Sullivan', 'Martin Horsey': '1st Puddlian'}" tt0060736,"{'Cornel Wilde': 'Man', 'Gert van den Bergh': '2nd Man (as Gert van der Berg)', 'Ken Gampu': 'Leader of the Warriors', 'Patrick Mynhardt': 'Safari Overseer / Slave Dealer / Irish Soldier', 'Bella Randles': 'Little Girl', 'Morrison Gampu': 'Tribe Leader', 'Sandy Nkomo': 'Warrior', 'Eric Mcanyana': 'Warrior', 'John Marcus': 'Warrior', 'Richard Mashiya': 'Warrior', 'Franklyn Mdhluli': 'Warrior', 'Fusi Zazayokwe': 'Warrior', 'Joe Dlamini': 'Warrior', 'Jose Sithole': 'Warrior', 'Horace Gilman': 'Warrior'}" tt0419887,"{'Khalid Abdalla': 'Amir', 'Atossa Leoni': 'Soraya', 'Shaun Toub': 'Rahim Khan', 'Sayed Jafar Masihullah Gharibzada': 'Omar', 'Zekeria Ebrahimi': 'Young Amir', 'Ahmad Khan Mahmoodzada': 'Young Hassan', 'Mir Mahmood Shah Hashimi': ""Business Man in Baba's Study"", 'Homayoun Ershadi': 'Baba', 'Nabi Tanha': 'Ali', 'Elham Ehsas': 'Young Assef', 'Bahram Ehsas': 'Wali', 'Tamim Nawabi': 'Kamal', 'Mohamad Nabi Attai': 'Uncle Saifo the Kite Seller', 'Mohamad Nadir Sarwari': 'Spice Merchant', 'Mustafa Haidari': 'Party Worker'}" tt0366174,"{'Johnny Messner': 'Bill Johnson', 'KaDee Strickland': 'Sam Rogers', 'Matthew Marsden': 'Dr. Jack Byron', 'Nicholas Gonzalez': 'Dr. Ben Douglas', 'Eugene Byrd': 'Cole Burris', 'Karl Yune': 'Tran', 'Salli Richardson-Whitfield': 'Gail Stern', 'Morris Chestnut': 'Gordon Mitchell', 'Andy Anderson': 'John Livingston', 'Nicholas Hope': 'Christian Van Dyke', 'Peter Curtin': 'Lawyer', 'Denis Arndt': 'CEO', 'Khoa Do': 'Lead Lopak Hunter', 'Aireti': 'Lopak Hunter', 'Andre Tandjung': 'Bartender'}" tt0044672,"{'Betty Hutton': 'Holly', 'Cornel Wilde': 'The Great Sebastian', 'Charlton Heston': 'Brad Braden', 'Dorothy Lamour': 'Phyllis', 'Gloria Grahame': 'Angel', 'Henry Wilcoxon': 'FBI Agent Gregory', 'Lyle Bettger': 'Klaus', 'Lawrence Tierney': 'Mr. Henderson', 'Emmett Kelly': 'Emmett Kelly', 'Cucciola': 'Cucciola', 'Antoinette Concello': 'Antoinette Concello', 'John Ringling North': 'John Ringling North', 'Tuffy Genders': 'Tuffy Genders', 'John Kellogg': 'Harry', 'John Ridgely': 'Assistant Manager'}" tt0191133,"{'Nigel Washington': 'Little Darrin', 'Chloe Bailey': 'Little Lilly', 'Demetress Long': 'Church Usher', 'Ann Nesby': 'Aunt Sally Walker', 'Faith Evans': 'Maryann Hill', 'Melba Moore': 'Bessie Cooley', 'Rosalie Washington': 'Faye Jenkins', 'Ricky Dillard': 'Choir Director', 'Larry John Meyers': 'Homer T. (as L. John Myers)', 'Shirley Caesar': 'Herself (as Reverend Shirley Caesar)', 'LaTanya Richardson Jackson': 'Paulina Pritchett (as LaTanya Richardson)', 'Wendell Pierce': 'Reverend Lewis', 'Lou Myers': 'Homer T.', 'Cuba Gooding Jr.': 'Darrin Hill', 'Lourdes Benedicto': 'Rosa Lopez'}" tt1305806,"{'Soledad Villamil': 'Irene Menéndez Hastings', 'Ricardo Darín': 'Benjamín Esposito', 'Carla Quevedo': 'Liliana Coloto', 'Pablo Rago': 'Ricardo Morales', 'Javier Godino': 'Isidoro Gómez', 'Bárbara Palladino': 'Chica Piropo', 'Rudy Romano': 'Ordóñez', 'Alejandro Abelenda': 'Pinche Mariano', 'Mario Alarcón': 'Juez Fortuna Lacalle', 'Guillermo Francella': 'Pablo Sandoval', 'Sebastián Blanco': 'Pinche Tino', 'Mariano Argento': 'Romano', 'José Luis Gioia': 'Báez - Inspector', 'Juan José Ortíz': 'Agente Cardozo', 'Kiko Cerone': 'Molinari'}" tt0085407,"{'Christopher Walken': 'Johnny Smith', 'Brooke Adams': 'Sarah Bracknell', 'Tom Skerritt': 'Sheriff Bannerman', 'Herbert Lom': 'Dr. Sam Weizak', 'Anthony Zerbe': 'Roger Stuart', 'Colleen Dewhurst': 'Henrietta Dodd', 'Martin Sheen': 'Greg Stillson', 'Nicholas Campbell': 'Frank Dodd', 'Sean Sullivan': 'Herb Smith', 'Jackie Burroughs': 'Vera Smith', 'Géza Kovács': 'Sonny Elliman (as Geza Kovacs)', 'Roberta Weiss': 'Alma Frechette', 'Simon Craig': 'Chris Stuart', 'Peter Dvorsky': 'Dardis', 'Julie-Ann Heathwood': 'Amy'}" tt0072848,"{'Donald Sutherland': 'Homer', 'Karen Black': 'Faye', 'Burgess Meredith': 'Harry', 'William Atherton': 'Tod', 'Geraldine Page': 'Big Sister', 'Richard Dysart': 'Claude Estee', 'Bo Hopkins': 'Earle Shoop', 'Pepe Serna': 'Miguel', 'Lelia Goldoni': 'Mary Dove', 'Billy Barty': 'Abe', 'Jackie Earle Haley': 'Adore (as Jackie Haley)', 'Gloria LeRoy': 'Mrs. Loomis (as Gloria Le Roy)', 'Jane Hoffman': 'Mrs. Odlesh', 'Norman Leavitt': 'Mr. Odlesh (as Norm Leavitt)', 'Madge Kennedy': 'Mrs. Johnson'}" tt0055871,"{'William Holden': 'Eric Erickson', 'Lilli Palmer': 'Frau Marianne Möllendorf', 'Hugh Griffith': 'Collins', 'Carl Raddatz': 'Otto Holtz', 'Ernst Schröder': 'Baron Gerhard von Oldenburg', 'Charles Regnier': 'Wilhelm Kortner', 'Ingrid van Bergen': 'Hulda Windler', 'Wolfgang Preiss': 'Col. Nordoff', 'Werner Peters': 'Bruno Ulrich', 'Erica Beer': 'Klara Holtz', 'Stefan Schnabel': 'Gestapo Agent at Funeral', 'Klaus Kinski': 'Kindler', 'Erik Schumann': 'Nazi Gunboat Officer (as Erik Schuman)', 'Poul Reichhardt': 'Fishing Boat Skipper', 'John Wittig': 'Sven'}" tt0102951,"{'Cathy Moriarty': 'Montana Moorehead', 'Teri Hatcher': 'Ariel Maloney', 'Robert Downey Jr.': 'David Barnes', 'Sally Field': 'Celeste Talbert', 'Paul Johansson': 'Bolt', 'Elisabeth Shue': 'Lori Craven', 'Whoopi Goldberg': 'Rose Schwartz', 'Kevin Kline': 'Jeffrey Anderson', 'Arne Nannestad': 'Burton White', 'Tim Choate': 'A.D.', 'Kathy Najimy': 'Tawny Miller', 'Costas Mandylor': 'Mark', 'Cornelia Kiss': 'Receptionist', 'Rob Camilletti': 'Actor (as Robert Camiletti)', 'Marianne Muellerleile': 'Housewife'}" tt0122718,"{'David Cross': 'Irwin Wayfair', 'Jay Mohr': 'Larry Benson', 'Alexandra Wilson': 'Ms. Kegel', 'Denis Leary': 'Gil Mars', 'Gregory Smith': 'Alan Abernathy', 'Dick Miller': 'Joe', 'Kirsten Dunst': 'Christy Fimple', 'Jacob Smith': 'Timmy Fimple', 'Jonathan Bouck': 'Brad (as Jonathan David Bouck)', 'Kevin Dunn': 'Stuart Abernathy', 'Ann Magnuson': 'Irene Abernathy', 'Wendy Schaal': 'Marion Fimple', 'Phil Hartman': 'Phil Fimple', 'Archie Hahn': 'Satellite Dish Installer', 'Robert Picardo': 'Ralph, Clean Room Technician'}" tt0108162,"{'Sharon Stone': 'Carly Norris', 'William Baldwin': 'Zeke Hawkins', 'Tom Berenger': 'Jack Landsford', 'Polly Walker': 'Vida Warren', 'Colleen Camp': 'Judy Marks', 'Amanda Foreman': 'Samantha Moore', 'Martin Landau': 'Alex Parsons', 'CCH Pounder': 'Lt. Victoria Hendrix', 'Nina Foch': 'Evelyn McEvoy', 'Keene Curtis': 'Gus Hale', 'Nicholas Pryor': 'Peter Farrell', 'Anne Betancourt': 'Jackie Kinsella', 'Tony Peck': 'Martin Kinsella', 'Frantz Turner': 'Doorman #1', 'Melvyn Kinder': 'Dr. Palme (as Dr. Melvyn Kinder)'}" tt0239986,"{'Penny Balfour': 'Young Hooker', 'Edward Burns': 'Tommy', 'Michael Leydon Campbell': 'Gio / Harry', 'Nadia Dajani': 'Hilary', 'Rosario Dawson': 'Maria', 'Kathleen Doyle': 'Katy', 'Dennis Farina': 'Carpo', 'Heather Graham': 'Annie', 'Leah Gray': 'Dental Hygienist', 'Timothy Jerome': 'Dr. Lance (as Tim Jerome)', 'David Krumholtz': 'Ben', 'Libby Langdon': 'Make-up Girl', 'Alicia Meer': 'Elevator Girl', 'Brittany Murphy': 'Ashley', 'Ted Neustadt': 'Doctor'}" tt0061385,"{'Robert Redford': 'Paul Bratter', 'Jane Fonda': 'Corie Bratter', 'Charles Boyer': 'Victor Velasco', 'Mildred Natwick': 'Ethel Banks', 'Herb Edelman': 'Harry Pepper (as Herbert Edelman)', 'Mabel Albertson': 'Harriet', 'Fritz Feld': 'Restaurant Proprietor', 'James Stone': 'Delivery Man (as James F. Stone)', 'Ted Hartley': 'Frank'}" tt1130884,"{'Leonardo DiCaprio': 'Teddy Daniels', 'Mark Ruffalo': 'Chuck Aule', 'Ben Kingsley': 'Dr. Cawley', 'Max von Sydow': 'Dr. Naehring', 'Michelle Williams': 'Dolores', 'Emily Mortimer': 'Rachel 1', 'Patricia Clarkson': 'Rachel 2', 'Jackie Earle Haley': 'George Noyce', 'Ted Levine': 'Warden', 'John Carroll Lynch': 'Deputy Warden McPherson', 'Elias Koteas': 'Laeddis', 'Robin Bartlett': 'Bridget Kearns', 'Christopher Denham': 'Peter Breene', 'Nellie Sciutto': 'Nurse Marino', 'Joseph Sikora': 'Glen Miga (as Joe Sikora)'}" tt0096094,"{'Kevin Bacon': 'Jake Briggs', 'Elizabeth McGovern': 'Kristy Briggs', 'Alec Baldwin': 'Davis McDonald', 'James Ray': 'Jim Briggs', 'Holland Taylor': 'Sarah Briggs', 'William Windom': 'Russ Bainbridge', 'Cathryn Damon': 'Gayle Bainbridge', 'Reba McKinney': 'Grandmother', 'Bill Erwin': 'Grandfather', 'Paul Gleason': 'Howard', 'Dennis Dugan': 'Bill', 'Anthony Mockus Sr.': 'Minister', 'John Ashton': 'Ken', 'Larry Hankin': 'Hank', 'Edie McClurg': 'Lynn'}" tt0959337,"{'Kate Winslet': 'April Wheeler', 'Leonardo DiCaprio': 'Frank Wheeler', 'Christopher Fitzgerald': 'Party Guest', 'Jonathan Roumie': 'Party Guest', 'Neal Bledsoe': 'Party Guest', 'Marin Ireland': 'Party Guest', 'Samantha Soule': 'Party Guest', 'Heidi Armbruster': 'Party Guest', 'Sam Rosen': 'Party Guest', 'Maria Rusolo': 'Party Dancer', 'Gena Oppenheim': 'Party Dancer', 'Kathryn Dunn': 'Party Dancer', 'Joe Komara': 'Party Dancer (as Joe Kamara)', 'Allison Twyford': 'Party Dancer', 'David Harbour': 'Shep Campbell'}" tt0421239,"{'Rachel McAdams': 'Lisa Reisert', 'Cillian Murphy': 'Jackson Rippner', 'Brian Cox': 'Joe Reisert', 'Laura Johnson': 'Blonde Woman', 'Max Kasch': 'Headphone Kid', 'Jayma Mays': 'Cynthia', 'Angela Paton': 'Nice Lady', 'Suzie Plakson': 'Senior Flight Attendant', 'Jack Scalia': 'Charles Keefe', 'Terry Press': 'Marianne Taylor (as Teresa Press-Marx)', 'Robert Pine': 'Bob Taylor', 'Carl Gilliard': 'Taxi Driver', 'Mary Kathleen Gordon': 'Airline Representative (as Mary-Kathleen Gordon)', 'Loren Lester': 'Irate Passenger', 'Philip Pavel': 'Dallas Ticket Agent'}" tt0250687,"{'Breckin Meyer': 'Nick Schaffer', 'Jenica Bergere': 'Hotel Clerk', 'Cuba Gooding Jr.': 'Owen Templeton', 'Carrie Diamond': 'Casino Bartender', 'Douglas Haase': 'Guy at Bar', 'Chris Myers': 'Fox Sportscaster', 'Kevin Frazier': 'Fox Sportscaster', 'Seth Green': 'Duane Cody', 'Gloria Allred': 'Gloria Allred', 'Vince Vieluf': 'Blaine Cody', 'Renée Lee': 'Witness in Crowd', 'Corinna Harney': 'Cocktail Waitress (as Corinna Harney Jones)', 'Jane C. Walsh': 'Cocktail Waitress', 'Lanei Chapman': 'Merrill Jennings (as Lanai Chapman)', 'Whoopi Goldberg': 'Vera Baker'}" tt0082970,"{'James Cagney': 'New York Police Commissioner Rhinelander Waldo', 'Brad Dourif': 'Younger Brother', 'Moses Gunn': 'Booker T. Washington', 'Elizabeth McGovern': 'Evelyn Nesbit', 'Kenneth McMillan': 'Willie Conklin', ""Pat O'Brien"": 'Delphin', ""Donald O'Connor"": ""Evelyn's Dance Instructor"", 'James Olson': 'Father', 'Mandy Patinkin': 'Tateh', 'Howard E. Rollins Jr.': 'Coalhouse Walker Jr.', 'Mary Steenburgen': 'Mother', 'Debbie Allen': 'Sarah', 'Jeffrey DeMunn': 'Houdini (as Jeff Demunn)', 'Robert Joy': 'Henry Thaw', 'Norman Mailer': 'Stanford White'}" tt0066181,"{'Barbra Streisand': 'Daisy Gamble', 'Yves Montand': 'Dr. Marc Chabot', 'Bob Newhart': 'Dr. Mason Hume', 'Larry Blyden': 'Warren Pratt', 'Simon Oakland': 'Dr. Conrad Fuller', 'Jack Nicholson': 'Tad Pringle', 'John Richardson': 'Robert Tentrees', 'Pamela Brown': 'Mrs. Fitzherbert', 'Irene Handl': 'Winnie Wainwhisle', 'Roy Kinnear': 'Prince Regent', 'Peter Crowcroft': 'Divorce Attorney', 'Byron Webster': 'Prosecuting Attorney', 'Mabel Albertson': 'Mrs. Hatch', 'Laurie Main': 'Lord Percy', 'Kermit Murdock': 'Hoyt III'}" tt0078024,"{""Ryan O'Neal"": 'Oliver Barrett', 'Candice Bergen': 'Marcie Bonwit', 'Nicola Pagett': 'Joanna Stone', 'Edward Binns': 'Phil Cavilleri', 'Benson Fong': 'John Hsiang', 'Charles Haid': 'Stephen Simpson', 'Kenneth McMillan': 'Jamie Francis', 'Ray Milland': 'Mr. Barrett', 'Josef Sommer': 'Dr. Dienhart', 'Sully Boyar': 'Mr. Gentilano', 'Swoosie Kurtz': 'Gwen Simpson', 'Meg Mundy': 'Mrs. Barrett', 'Beatrice Winde': 'Waltereen', 'Sol Schwade': 'Arlie', 'Frank Toste': 'Father Giamatti (as Father Frank Toste)'}" tt0063356,"{'Rod Steiger': 'Christopher Gill', 'Lee Remick': 'Kate Palmer', 'George Segal': 'Morris Brummel', 'Eileen Heckart': 'Mrs. Brummel', 'Murray Hamilton': 'Inspector Haines', 'Michael Dunn': 'Mr. Kupperman', 'Martine Bartlett': 'Alma Mulloy', 'Barbara Baxley': 'Belle Poppie', 'Irene Dailey': 'Mrs. Fitts', 'Doris Roberts': 'Sylvia Poppie', 'Ruth White': 'Mrs. Himmel', 'Val Bisoglio': 'Detective Monaghan', 'David Doyle': 'Lieutenant Dawson', 'Kim August': 'Sadie'}" tt0056267,"{'Shirley MacLaine': 'Lucy Dell / Yoko Mori', 'Yves Montand': 'Paul Robaix', 'Edward G. Robinson': 'Sam Lewis', 'Robert Cummings': 'Bob Moore', 'Yôko Tani': 'Kazumi Ito', 'Tatsuo Saitô': 'Kenichi Takata', 'Tamae Kiyokawa': 'Amatsu Hisako (as Tamae Kyokawa)', 'Ichirô Hayakawa': 'Hisako', 'Alex Gerry': 'Leonard Lewis', 'Tsugundo Maki': 'Shiga', 'George Furness': ""George (Robaix's butler)""}" tt0110516,"{'Melanie Griffith': 'V', 'Ed Harris': 'Tom', 'Michael Patrick Carter': 'Frank', 'Malcolm McDowell': 'Waltzer', 'Anne Heche': 'Betty', 'Casey Siemaszko': 'Cash', 'Philip Bosco': 'Jerry the Pope', 'Brian Christopher': 'Kevin', 'Adam LaVorgna': 'Brad', 'Kevin Scannell': 'Mr. Clean', 'Jessica Wesson': 'Stacey', 'Amanda Sharkey': 'Holly', 'Margaret Nagle': 'Mrs. Fetch', 'Katie Powell': 'Mrs. Clean (as Kati Powell)', 'Tom Coop': ""Holly's Brother""}" tt0068835,"{'Alan Arkin': 'Barney Cashman', 'Sally Kellerman': 'Elaine', 'Paula Prentiss': 'Bobbi Michele', 'Renée Taylor': 'Jeanette', 'Bella Bruck': 'Cashier', 'Sandy Balson': 'Charlotte', 'Frank Loverde': 'Mel', 'Burt Conroy': 'Bert', 'Charles Woolf': 'Jesse', 'Ben Freedman': 'Mickey', 'Buddy Lewis': 'Waiter #1', ""Paul 'Mousie' Garner"": 'Waiter #2 (as Mousey Garner)', 'Bernie Styles': 'Man with Boxes', 'John Battiste': ""Truckman's Helper"", 'Sully Boyar': 'Man #1 Coffee Shop'}" tt0408985,"{'Queen Latifah': 'Georgia Byrd', 'LL Cool J': 'Sean Matthews', 'Timothy Hutton': 'Matthew Kragen', 'Giancarlo Esposito': 'Senator Dillings', 'Alicia Witt': 'Ms. Burns', 'Gérard Depardieu': 'Chef Didier', 'Jane Adams': 'Rochelle', 'Michel Estime': 'Marlon (as Mike Estime)', 'Susan Kellermann': 'Gunther', 'Jascha Washington': 'Darius', 'Matt Ross': 'Adamian', 'Ranjit Chowdhry': 'Dr. Gupta', 'Michael Nouri': 'Congressman Stewart', 'Jaqueline Fleming': 'Tanya', 'Kendall Mosby': 'Anton'}" tt0119468,"{'Morgan Freeman': 'Dr. Alex Cross', 'Ashley Judd': 'Kate Mctiernan', 'Cary Elwes': 'Casanova / Nick Ruskin', 'Alex McArthur': 'Sikes', 'Tony Goldwyn': 'Will Rudolph', 'Jay O. Sanders': 'Kyle Craig', 'Bill Nunn': 'Sampson', 'Brian Cox': 'Chief Hatfield', 'Richard T. Jones': 'Seth Samuel', 'Roma Maffia': 'Dr. Ruocco', 'Jeremy Piven': 'Henry Castillo', 'Gina Ravera': 'Naomi Cross', 'William Converse-Roberts': 'Dr. Wick Sachs', 'Helen Martin': 'Nana Cross', 'Tatyana Ali': 'Janell Cross (as Tatyana M. Ali)'}" tt0099850,"{'Richard Gere': 'Dennis Peck', 'Andy Garcia': 'Raymond Avilla', 'Nancy Travis': 'Kathleen Avilla', 'Laurie Metcalf': 'Amy Wallace', 'Richard Bradford': 'Grieb', 'William Baldwin': 'Van Stretch', 'Michael Beach': 'Dorian Fletcher', 'Katherine Borowitz': 'Tova Arrocas', 'Faye Grant': 'Penny', 'John Kapelos': 'Steven Arrocas', 'Xander Berkeley': 'Rudy Mohr', 'John Capodice': 'Chief Healy', 'Victoria Dillard': 'Kee', ""Pamella D'Pella"": 'Cheryl', 'Susan Forristal': 'Lolly'}" tt0119360,"{'Kevin Kline': 'Howard Brackett', 'Joan Cusack': 'Emily Montgomery', 'Tom Selleck': 'Peter Malloy', 'Matt Dillon': 'Cameron Drake', 'Debbie Reynolds': 'Berniece Brackett', 'Wilford Brimley': 'Frank Brackett', 'Bob Newhart': 'Tom Halliwell', 'Gregory Jbara': 'Walter Brackett', 'Shalom Harlow': 'Sonya', 'Shawn Hatosy': 'Jack', 'Zak Orth': 'Mike', 'Lauren Ambrose': 'Vicky', 'Alexandra Holden': 'Meredith', 'Lewis J. Stadlen': 'Ed Kenrow', 'Deborah Rush': 'Ava Blazer'}" tt0110099,"{'Tim Robbins': 'Ed Walters', 'Meg Ryan': 'Catherine Boyd', 'Walter Matthau': 'Albert Einstein', 'Lou Jacobi': 'Kurt Gödel', 'Gene Saks': 'Boris Podolsky', 'Joseph Maher': 'Nathan Liebknecht', 'Stephen Fry': 'James Moreland', 'Tony Shalhoub': 'Bob Rosetti', 'Frank Whaley': 'Frank', 'Charles Durning': 'Louis Bamberger', 'Keene Curtis': 'Eisenhower', 'Alice Playten': 'Gretchen', 'Danny Zorn': 'Dennis', 'Helen Hanft': 'Rose', 'Roger Berlind': 'Duncan'}" tt0319531,"{'Clive Owen': 'Will', 'Charlotte Rampling': 'Helen', 'Jonathan Rhys Meyers': 'Davey', 'Malcolm McDowell': 'Boad', 'Jamie Foreman': 'Mickser', 'Ken Stott': 'Turner', 'Sylvia Syms': 'Mrs. Bartz', 'Alexander Morton': 'Victor', 'John Surman': 'Pathologist', 'Paul Mohan': 'Coroner', 'Damian Dibben': 'David Myers', 'Amber Batty': 'Sheridan', 'Daisy Beaumont': 'Stella, Drugs Seeker', 'Lidija Zovkic': 'Philippa, Model', 'Geoff Bell': 'Arnie Ryan'}" tt0051745,"{'Cary Grant': 'Tom Winters', 'Sophia Loren': 'Cinzia Zaccardi', 'Martha Hyer': 'Carolyn Gibson', 'Harry Guardino': 'Angelo Donatello', 'Eduardo Ciannelli': 'Arturo Zaccardi', 'Murray Hamilton': 'Capt. Alan Wilson', 'Mimi Gibson': 'Elizabeth Winters', 'Paul Petersen': 'David Winters', 'Charles Herbert': 'Robert Winters', 'Madge Kennedy': 'Mrs. Farnsworth', 'John Litel': 'Mr. William Farnsworth', 'Werner Klemperer': 'Harold Messner'}" tt0080836,"{'Gary Collins': 'Steve Bancroft', 'Robert Vaughn': 'Gordon Cain', 'James Hampton': 'Lew Price', 'Philip Abbott': 'Frank Morrison', 'Joseph Campanella': 'Frank Lafferty', 'Pamela Bellwood': 'Sarah Michaels', 'Tom Hallick': 'Phil Cameron', 'Steven Keats': 'Paul Bannister', 'William Schallert': 'Professor Mills', 'Darren McGavin': 'Harry Forbes', 'Cliff Osmond': 'Sheriff Barlow', 'Andrew Bloch': 'Neal Kelso', 'Stuart Pankin': 'Sam Tate', 'Betty Ann Carr': 'Flo Mattson', 'H.M. Wynant': 'Flight Director'}" tt0050468,"{'Burt Lancaster': 'Wyatt Earp', 'Kirk Douglas': 'Doc Holliday', 'Rhonda Fleming': 'Laura Denbow', 'Jo Van Fleet': 'Kate Fisher', 'John Ireland': 'Johnny Ringo', 'Lyle Bettger': 'Ike Clanton', 'Frank Faylen': 'Cotton Wilson', 'Earl Holliman': 'Charles Bassett', 'Ted de Corsia': 'Shanghai Pierce (as Ted DeCorsia)', 'Dennis Hopper': 'Billy Clanton', 'Whit Bissell': 'John P. Clum', 'George Mathews': 'John Shanssey', 'John Hudson': 'Virgil Earp', 'DeForest Kelley': 'Morgan Earp', 'Martin Milner': 'James Earp'}" tt0082432,"{'Mark Lee': 'Archy Hamilton', 'Bill Kerr': 'Jack', 'Harold Hopkins': 'Les McCann', 'Charles Lathalu Yunipingu': 'Zac (as Charles Yunupingu)', 'Heath Harris': 'Stockman', 'Ron Graham': 'Wallace Hamilton', 'Gerda Nicolson': 'Rose Hamilton', 'Mel Gibson': 'Frank Dunne', 'Robert Grubb': 'Billy', 'Tim McKenzie': 'Barney', 'David Argue': 'Snowy', 'Brian Anderson': 'Railway Foreman', 'Reg Evans': 'Athletics Official 1', 'Jack Giddy': 'Athletics Official 2', 'Dane Peterson': 'Announcer'}" tt0430105,"{'Mark Wahlberg': 'Bobby Mercer', 'Tyrese Gibson': 'Angel Mercer', 'André Benjamin': 'Jeremiah Mercer', 'Garrett Hedlund': 'Jack Mercer', 'Terrence Howard': 'Lt. Green', 'Josh Charles': 'Detective Fowler', 'Sofía Vergara': 'Sofi', 'Fionnula Flanagan': 'Evelyn Mercer', 'Chiwetel Ejiofor': 'Victor Sweet', 'Taraji P. Henson': 'Camille Mercer', 'Barry Shabaka Henley': 'Councilman Douglas', 'Jernard Burks': 'Evan', 'Kenneth Welsh': 'Robert Bradford', 'Tony Nappo': 'Charlie', 'Shawn Singleton': 'Victor Hoodlum'}" tt0097336,"{'Paul Newman': 'General Leslie R. Groves', 'Dwight Schultz': 'J. Robert Oppenheimer', 'Bonnie Bedelia': 'Kitty Oppenheimer', 'John Cusack': 'Michael Merriman', 'Laura Dern': 'Kathleen Robinson', 'Ron Frazier': 'Peer de Silva', 'John C. McGinley': 'Richard Schoenfield', 'Natasha Richardson': 'Jean Tatlock', 'Ron Vawter': 'Jamie Latrobe', 'Michael Brockman': ""William 'Deke' Parsons"", 'Del Close': 'Dr. Kenneth Whiteside', 'John Considine': 'Robert Tuckson', 'Allan Corduner': 'Franz Goethe (as Alan Corduner)', ""Joe D'Angerio"": ""Seth Neddermeyer (as Joseph D'Angerio)"", 'Jon DeVries': 'Johnny Mount (as Jon De Vries)'}" tt0418647,"{'Kurt Russell': 'Ben Crane', 'Dakota Fanning': 'Cale Crane', 'Kris Kristofferson': 'Pop Crane', 'Elisabeth Shue': 'Lily', 'David Morse': 'Palmer', 'Freddy Rodríguez': 'Manolin', 'Luis Guzmán': 'Balon', 'Oded Fehr': 'Prince Sadir', 'Ken Howard': 'Bill Ford', 'Holmes Osborne': 'Doc Fleming', 'Antonio Badrani': 'Prince Tariq (as Antonio Albadran)', 'John Moyer': 'Security Officer', 'Kayren Butler': 'Teacher', 'Tommy Barnes': 'Short Steward', 'Frank Hoyt Taylor': 'Chairman'}" tt0044509,"{'Burt Lancaster': 'Doc Delaney', 'Shirley Booth': 'Lola Delaney', 'Terry Moore': 'Marie Buckholder', 'Richard Jaeckel': 'Turk Fisher', 'Philip Ober': 'Ed Anderson', 'Edwin Max': 'Elmo Huston', 'Lisa Golm': 'Mrs. Coffman', 'Walter Kelley': 'Bruce Cunningham'}" tt0163983,"{'Kim Basinger': ""Maggie O'Connor"", 'Jimmy Smits': 'John Travis', 'Holliston Coleman': 'Cody', 'Rufus Sewell': 'Eric Stark', 'Angela Bettis': 'Jenna', 'Christina Ricci': 'Cheri', 'Michael Gaston': 'Det. Frank Bugatti', 'Lumi Cavazos': 'Sister Rosa', 'Dimitra Arliss': 'Dahnya (as Dimitra Arlys)', 'Eugene Lipinski': 'Stuart', 'Anne Betancourt': 'Maria', 'Ian Holm': 'Reverend Grissom', 'Helen Stenborg': 'Sister Joseph', 'Matthew Lemche': 'New Dawn Kid at Van', 'Dan Warry-Smith': 'New Dawn Kid'}" tt0075765,"{'Robert Shaw': 'Kabakov', 'Bruce Dern': 'Lander', 'Marthe Keller': 'Dahlia', 'Fritz Weaver': 'Sam Corley', 'Steven Keats': 'Robert Moshevsky', 'Bekim Fehmiu': 'Mohammed Fasil', 'Michael V. Gazzo': 'Muzi', 'William Daniels': 'Pugh', 'Walter Gotell': 'Colonel Riat', 'Victor Campos': 'Nageeb', 'Joseph Robbie': 'Joseph Robbie', 'Robert J. Wussler': 'Robert Wussler (as Robert Wussler)', 'Pat Summerall': 'Pat Summerall', 'Tom Brookshier': 'Tom Brookshier', 'Walter Brooke': 'Fowler'}" tt0326769,"{'Laurence Fishburne': 'Smoke', 'Derek Luke': 'Kid', 'Orlando Jones': 'Soul Train', 'Djimon Hounsou': 'Motherland', 'Lisa Bonet': 'Queenie', 'Brendan Fehr': 'Stuntman', 'Larenz Tate': 'Wood', 'Kid Rock': 'Dogg', 'Rick Gonzalez': 'Primo', 'Meagan Good': 'Tina', 'Salli Richardson-Whitfield': 'Half & Half', 'Vanessa Bell Calloway': 'Anita', 'Dante Basco': 'Philly', 'Dionysio Basco': 'Flip (as Dion Basco)', 'Tyson Beckford': 'Donny'}" tt0109120,"{'Tina Majorino': 'Toni Whitney', 'Chelsea Field': 'Thalice Whitney', 'Shane Meier': 'Steve Whitney', 'Aidan Pendleton': 'Paula Whitney', 'Shirley Broderick': 'Mrs. McCann', 'Keith Carradine': 'Harry Whitney', 'Andrea Libman': 'Mary May', 'Keith Szarabajka': 'Billy Baker', 'Joshua Jackson': 'Mark Baker', 'Jay Brazeau': 'Griff Armstrong', 'Bill Dow': 'Ellwyn', 'Joy Coghill': 'Betsy', 'Stephen Dimopoulos': 'Dan Snow', 'Frank C. Turner': 'John Miller', 'Kristian Ayre': 'Gerald'}" tt1403865,"{'Jeff Bridges': 'Rooster Cogburn', 'Hailee Steinfeld': 'Mattie Ross', 'Matt Damon': 'LaBoeuf', 'Josh Brolin': 'Tom Chaney', 'Barry Pepper': 'Lucky Ned Pepper', 'Dakin Matthews': 'Col. Stonehill', 'Jarlath Conroy': 'Undertaker', 'Paul Rae': 'Emmett Quincy', 'Domhnall Gleeson': 'Moon (The Kid)', 'Elizabeth Marvel': '40-Year-Old Mattie', 'Roy Lee Jones': 'Yarnell', 'Ed Corbin': 'Bear Man (as Ed Lee Corbin)', 'Leon Russom': 'Sheriff', 'Bruce Green': 'Harold Parmalee', 'Candyce Hinkle': 'Boarding House Landlady'}" tt0384680,"{'Nicolas Cage': 'David Spritz', 'Michael Caine': 'Robert Spritzel', 'Hope Davis': 'Noreen', 'Gemmenne de la Peña': 'Shelly (as Gemmenne De La Peña)', 'Nicholas Hoult': 'Mike', 'Michael Rispoli': 'Russ', 'Gil Bellows': 'Don', 'Judith McConnell': 'Lauren', 'Chris Marrs': 'DMV Guy', 'Dina Facklis': 'Andrea', 'J. Nicole Brooks': 'Clerk (as Deanna NJ Brooks)', 'Sia A. Moody': 'Nurse (as Sia Moody)', 'Guy Van Swearingen': 'Nipper Guy', 'Alexander Pine': 'Fast Food Employee (as Alejandro Pina)', 'Jackson Bubala': 'Fast Food Child'}" tt0100828,"{'Jack Nicholson': 'Jake Gittes', 'Harvey Keitel': 'Jake Berman', 'Meg Tilly': 'Kitty Berman', 'Madeleine Stowe': 'Lillian Bodine', 'Eli Wallach': 'Cotton Weinberger', 'Rubén Blades': 'Mickey Nice', 'Frederic Forrest': 'Newty', 'David Keith': 'Loach', 'Richard Farnsworth': 'Earl Rawley', 'Tracey Walter': 'Tyrone Otley', 'Joe Mantell': 'Walsh', 'James Hong': 'Kahn', 'Perry Lopez': 'Captain Escobar', 'Jeff Morris': 'Tilton', 'Rebecca Broussard': 'Gladys'}" tt0963794,"{'Jonathan Tucker': 'Jeff', 'Jena Malone': 'Amy', 'Laura Ramsey': 'Stacy', 'Shawn Ashmore': 'Eric', 'Joe Anderson': 'Mathias', 'Sergio Calderón': 'Lead Mayan (as Sergio Calderon)', 'Jesse Ramirez': 'Mayan Bowman', 'Balder Moreno': 'Mayan Horseman', 'Dimitri Baveas': 'Dimitri', 'Patricio Almeida Rodriguez': 'Taxi Driver', 'Mario Jurado': 'Mayan Archer', 'Luis Antonio Ramos': 'Mayan Rifleman (as Luis Ramos)', 'Walter Quispe': 'Mayan Rifleman', 'Pauline Whyman': 'Wailing Woman', 'Nathan Vega': 'Mayan Boy'}" tt0117331,"{'Billy Zane': 'The Phantom / Kit Walker', 'Kristy Swanson': 'Diana Palmer', 'Treat Williams': 'Xander Drax', 'Catherine Zeta-Jones': 'Sala (as Catherine Zeta Jones)', 'James Remar': 'Quill', 'Cary-Hiroyuki Tagawa': 'The Great Kabai Sengh', 'Bill Smitrovich': 'Uncle Dave Palmer', 'Casey Siemaszko': 'Morgan', 'David Proval': 'Charlie Zephro', 'Joseph Ragno': 'Ray Zephro', 'Samantha Eggar': 'Lily Palmer', 'Jon Tenney': 'Jimmy Wells', 'Patrick McGoohan': ""Phantom's Dad"", 'Robert Coleby': 'Capt. Philip Horton', 'Al Ruscio': 'Police Commissioner Farley'}" tt0059575,"{'Rod Steiger': 'Sol Nazerman', 'Geraldine Fitzgerald': 'Marilyn Birchfield', 'Brock Peters': 'Rodriguez', 'Jaime Sánchez': 'Jesus Ortiz (as Jaime Sanchez)', 'Thelma Oliver': ""Ortiz' Girl"", 'Marketa Kimbrell': 'Tessie', 'Baruch Lumet': 'Mendel', 'Juano Hernandez': 'Mr. Smith', 'Linda Geiser': 'Ruth Nazerman', 'Nancy R. Pollock': 'Bertha', 'Raymond St. Jacques': 'Tangee', 'John McCurry': 'Buck', 'Charles Dierkop': 'Robinson', 'Eusebia Cosme': 'Mrs. Ortiz', 'Warren Finnerty': 'Savarese'}" tt0091129,"{'J.L. Reate': 'The Golden Child', 'Eddie Murphy': 'Chandler Jarrell', 'Charles Dance': 'Sardo Numspa', 'Charlotte Lewis': 'Kee Nang', 'Victor Wong': 'The Old Man', ""Randall 'Tex' Cobb"": 'Til', 'James Hong': 'Doctor Hong', 'Shakti Chen': 'Kala (as Shakti)', 'Tau Logo': 'Yu', 'Tiger Chung Lee': 'Khan', 'Pons Maar': 'Fu', 'Peter Kwong': 'Tommy Tong', 'Wally Taylor': 'Detective Boggs', 'Eric Douglas': 'Yellow Dragon', 'Charles Levin': 'TV Host'}" tt0252028,"{'Ben Affleck': 'Drew Latham', 'James Gandolfini': 'Tom Valco', 'Christina Applegate': 'Alicia Valco', ""Catherine O'Hara"": 'Christine Valco', 'Josh Zuckerman': 'Brian Valco', 'Bill Macy': 'Doo-Dah', 'Jennifer Morrison': 'Missy Vangilder', 'Udo Kier': 'Heinrich', 'David Selby': 'Horace Vangilder', 'Stephanie Faracy': 'Letitia Vangilder', 'Stephen Root': 'Dr. Freeman', 'Sy Richardson': 'Doo-Dah Understudy', 'Tangie Ambrose': 'Kathryn', ""John 'B.J.' Bryant"": 'Cabbie (as John BJ Bryant)', 'Peter Jason': 'Suit'}" tt0251075,"{'David Duchovny': 'Ira', 'Julianne Moore': 'Allison', 'Orlando Jones': 'Harry', 'Seann William Scott': 'Wayne', 'Ted Levine': 'Gen. Woodman', 'Ethan Suplee': 'Deke', 'Michael Bower': 'Danny (as Michael Ray Bower)', 'Pat Kilbane': 'Officer Johnson', 'Ty Burrell': 'Flemming', 'Dan Aykroyd': 'Governor Lewis', 'Katharine Towne': 'Nadine', 'Gregory Itzin': 'Cartwright', 'Ashley Clark': 'Lt. Cryer', 'Michelle Wolff': 'Carla', 'Sarah Silverman': 'Denise'}" tt0249478,"{'John Travolta': 'Frank Morrison', 'James Lashly': 'Jason', 'Rebecca Tilney': 'Laurie', 'Debra Mooney': 'Theresa', 'Vince Vaughn': 'Rick Barnes', 'Teri Polo': 'Susan', 'Leland L. Jones': 'Coach Mark', ""Matt O'Leary"": ""Danny Morrison (as Matthew O'Leary)"", 'Ruben Santiago-Hudson': 'Sgt. Edgar Stevens', 'Susan Floyd': 'Diane', 'William Parry': 'Don Patterson', 'Suzanne Nystrom': 'Wedding Coordinator', 'George Christy': 'Wedding Photographer', 'Steve Buscemi': 'Ray Coleman', 'David Bridgewater': 'Priest'}" tt0821642,"{'Jamie Foxx': 'Nathaniel Ayers', 'Robert Downey Jr.': 'Steve Lopez', 'Catherine Keener': 'Mary Weston', 'Tom Hollander': 'Graham Claydon', 'LisaGay Hamilton': 'Jennifer Ayers (as Lisagay Hamilton)', 'Nelsan Ellis': 'David Carter', 'Rachael Harris': 'Leslie Bloom', 'Stephen Root': 'Curt Reynolds', 'Lorraine Toussaint': 'Flo Ayers', 'Justin Martin': 'Young Nathaniel', 'Kokayi Ampah': 'Bernie Carpenter', 'Patrick Tatten': 'Paul Jr.', 'Susane Lee': 'Marisa (as Susane E. Lee)', 'Marcos De Silvas': 'Mayor Villaraigosa', 'Ilia Volok': 'Harry Barnoff'}" tt0105327,"{'Brendan Fraser': 'David Greene', 'Matt Damon': 'Charlie Dillon', ""Chris O'Donnell"": 'Chris Reece', 'Randall Batinkoff': 'Rip Van Kelt', 'Andrew Lowery': ""'Mack' McGivern"", 'Cole Hauser': 'Jack Connors', 'Ben Affleck': 'Chesty Smith', 'Anthony Rapp': ""Richard 'McGoo' Collins"", 'Amy Locane': 'Sally Wheeler', 'Peter Donat': 'Headmaster Dr. Bartram', 'Zeljko Ivanek': 'Mr. Cleary', 'Kevin Tighe': 'Coach McDevitt', 'Michael Higgins': 'Mr. Gierasch', 'Ed Lauter': 'Alan Greene', 'Peter McRobbie': 'Chaplain'}" tt0069097,"{'Woody Allen': 'Allan', 'Diane Keaton': 'Linda', 'Tony Roberts': 'Dick', 'Jerry Lacy': 'Bogart', 'Susan Anspach': 'Nancy', 'Jennifer Salt': 'Sharon', 'Joy Bang': 'Julie', 'Viva': 'Jennifer', 'Susanne Zenor': 'Discotheque Girl (as Suzanne Zenor)', 'Diana Davila': 'Museum Girl', 'Mari Fletcher': 'Fantasy Sharon', 'Michael Greene': 'Hood #1', 'Ted Markland': 'Hood #2'}" tt0090357,"{'Nicholas Rowe': 'Sherlock Holmes', 'Alan Cox': 'John Watson', 'Sophie Ward': 'Elizabeth Hardy', 'Anthony Higgins': 'Professor Rathe', 'Susan Fleetwood': 'Mrs. Dribb', 'Freddie Jones': 'Chester Cragwitch', 'Nigel Stock': 'Rupert T. Waxflatter', 'Roger Ashton-Griffiths': 'Det. Sgt. Lestrade', 'Earl Rhodes': 'Dudley', 'Brian Oulton': 'Master Snelgrove', 'Patrick Newell': 'Bentley Bobster', 'Donald Eccles': 'The Reverend Duncan Nesbitt', 'Matthew Ryan': ""Dudley's Friend"", 'Matthew Blakstad': ""Dudley's Friend"", 'Jonathan Lacey': ""Dudley's Friend""}" tt0756729,"{'Molly Shannon': 'Peggy', 'Laura Dern': 'Bret', 'Regina King': 'Layla', 'Tom McCarthy': 'Pier (as Thomas McCarthy)', 'Josh Pais': 'Robin', 'John C. Reilly': 'Al', 'Peter Sarsgaard': 'Newt', 'Amy Schlagel': 'Lissie', 'Zoe Schlagel': 'Lissie', 'Dale Godboldo': 'Don', 'Inara George': 'Holly', 'Liza Weil': 'Trishelle', 'Jon Shere': 'Pound Employee', 'Christy Moore': ""Al's Girlfriend (as Christy Lynn Moore)"", 'Audrey Wasilewski': 'Audrey'}" tt0364751,"{'Matthew Price': 'Young Tom', 'Andrew Hampton': 'Young Jerry', 'Jarred Rumbold': 'Young Dan', 'Carl Snell': 'Young Billy', 'Antony Starr': 'Billy Newwood (as Anthony Starr)', 'Dax Shepard': 'Tom Marshall', 'Matthew Lillard': 'Jerry Conlaine', 'Seth Green': 'Dan Mott', 'Nadine Bernecker': 'Angie', 'Danielle Cormack': 'Tony', 'David Stott': 'Dick Stark', 'Bonnie Somerville': 'Denise', 'Scott Adsit': 'Greasy Man', 'Morgan Reese Fairhead': 'Sandi', 'Liddy Holloway': 'Bonnie Newwood'}" tt0277434,"{'Mel Gibson': 'Lt. Col. Hal Moore', 'Madeleine Stowe': 'Julie Moore', 'Greg Kinnear': ""Maj. Bruce 'Snake' Crandall"", 'Sam Elliott': 'Sgt. Maj. Basil Plumley', 'Chris Klein': '2nd Lt. Jack Geoghegan', 'Keri Russell': 'Barbara Geoghegan', 'Barry Pepper': 'Joe Galloway', 'Duong Don': 'Lt. Col. Nguyen Huu An', 'Ryan Hurst': 'Sgt. Ernie Savage', 'Robert Bagnell': '1st Lt. Charlie Hastings', 'Marc Blucas': '2nd Lt. Henry Herrick', 'Josh Daugherty': 'Sp4 Robert Ouellette', 'Jsu Garcia': 'Capt. Tony Nadal', 'Jon Hamm': 'Capt. Matt Dillon', 'Clark Gregg': 'Capt. Tom Metsker'}" tt1193138,"{'George Clooney': 'Ryan Bingham', 'Vera Farmiga': 'Alex Goran', 'Anna Kendrick': 'Natalie Keener', 'Jason Bateman': 'Craig Gregory', 'Amy Morton': 'Kara Bingham', 'Melanie Lynskey': 'Julie Bingham', 'J.K. Simmons': 'Bob', 'Sam Elliott': 'Maynard Finch', 'Danny McBride': 'Jim Miller', 'Zach Galifianakis': 'Steve', 'Chris Lowell': 'Kevin', 'Steve Eastin': 'Samuels', 'Marvin Young': 'Young MC', 'Cut Chemist': 'Conference DJ', 'Adrienne Lamping': 'Tammy'}" tt0073747,"{'Katharine Ross': 'Joanna Eberhart', 'Paula Prentiss': 'Bobbie Markowe', 'Peter Masterson': 'Walter Eberhart', 'Nanette Newman': 'Carol Van Sant', 'Tina Louise': 'Charmaine Wimpiris', 'Carol Eve Rossen': 'Dr. Fancher (as Carol Rossen)', 'William Prince': 'Ike Mazzard', 'Carole Mallory': 'Kit Sunderson', 'Toni Reid': 'Marie Axhelm', 'Judith Baldwin': 'Patricia Cornell', 'Barbara Rucker': 'Mary Ann Stravros', 'George Coe': 'Claude Axhelm', 'Franklin Cover': 'Ed Wimpiris', 'Robert Fields': 'Raymond Chandler', 'Michael Higgins': 'Mr. Cornell'}" tt0345950,"{'Tom Kenny': 'SpongeBob / Narrator / Gary / Clay / Tough Fish #2 / Twin #2 / Houston Voice (voice)', 'Clancy Brown': 'Mr. Krabs (voice)', 'Rodger Bumpass': 'Squidward / Fish #4 (voice)', 'Bill Fagerbakke': 'Patrick Star / Fish #2 / Chum Customer / Local Fish (voice)', 'Mr. Lawrence': 'Plankton / Fish #7 / Attendant #2, Lloyd (voice)', 'Jill Talley': 'Karen / Old Lady (voice)', 'Carolyn Lawrence': 'Sandy (voice)', 'Mary Jo Catlett': 'Mrs. Puff (voice)', 'Jeffrey Tambor': 'King Neptune (voice)', 'Scarlett Johansson': 'Mindy (voice)', 'Alec Baldwin': 'Dennis (voice)', 'David Hasselhoff': 'David Hasselhoff', 'Kristopher Logan': 'Squinty the Pirate', 'D.P. FitzGerald': 'Bonesy the Pirate', 'Cole S. McKay': 'Scruffy the Pirate (as Cole McKay)'}" tt0416236,"{'Freddie Highmore': 'Jared Grace / Simon Grace', 'Mary-Louise Parker': 'Helen Grace', 'Nick Nolte': 'Mulgarath', 'Sarah Bolger': 'Mallory Grace', 'Andrew McCarthy': 'Richard Grace', 'Joan Plowright': 'Aunt Lucinda Spiderwick', 'David Strathairn': 'Arthur Spiderwick', 'Seth Rogen': 'Hogsqueal (voice)', 'Martin Short': 'Thimbletack (voice)', 'Jordy Benattar': 'Young Lucinda Spiderwick', 'Tod Fennell': ""Helen's Co-Worker"", 'Mariah Inger': 'Nurse', 'Jeremy Lavalley': 'Tow Truck Driver', 'Lise Durocher-Viens': 'Mrs. Spiderwick', 'Tyler Patrick Jones': 'Additional Performer'}" tt0120053,"{'Val Kilmer': 'Simon Templar', 'Elisabeth Shue': 'Dr. Emma Russell', 'Rade Serbedzija': 'Ivan Tretiak', 'Valeriy Nikolaev': 'Ilya Tretiak (as Valery Nikolaev)', 'Henry Goodman': 'Dr. Lev Botvin', 'Alun Armstrong': 'Inspector Teal', 'Michael Byrne': ""Vereshagin, Tretiak's Aide"", 'Evgeniy Lazarev': 'President Karpov (as Evgeny Lazarev)', 'Irina Apeksimova': 'Frankie (as Irina Apeximova)', 'Lev Prygunov': 'General Sklarov (as Lev Prigunov)', 'Charlotte Cornwell': 'Inspector Rabineau', 'Emily Mortimer': 'Woman on Plane', 'Lucija Serbedzija': 'Russian Prostitute', 'Velibor Topic': 'Skinhead', 'Tommy Flanagan': 'Scarface'}" tt0120844,"{'Patrick Stewart': 'Picard', 'Jonathan Frakes': 'Riker', 'Brent Spiner': 'Data', 'LeVar Burton': 'Geordi (as Levar Burton)', 'Michael Dorn': 'Worf', 'Gates McFadden': 'Beverly', 'Marina Sirtis': 'Troi', 'F. Murray Abraham': ""Ru'afo"", 'Donna Murphy': 'Anij', 'Anthony Zerbe': 'Dougherty', 'Gregg Henry': 'Gallatin', 'Daniel Hugh Kelly': 'Sojef', 'Michael Welch': 'Artim', 'Mark Deakins': 'Tournel', 'Stephanie Niznik': 'Perim'}" tt0113972,"{'Johnny Depp': 'Gene Watson', 'Courtney Chase': 'Lynn Watson', 'Charles S. Dutton': 'Huey', 'Christopher Walken': 'Mr. Smith', 'Roma Maffia': 'Ms. Jones', 'Marsha Mason': 'Governor Eleanor Grant', 'Peter Strauss': 'Brendan Grant', 'Gloria Reuben': 'Krista Brooks', 'Bill Smitrovich': 'Officer Trust', 'G.D. Spradlin': 'Mystery Man', 'Yul Vazquez': 'Gustino (Guest Services)', 'Edith Diaz': 'Irene (Domestic Maintenance)', 'Armando Ortega': 'Hector (Guest Services)', 'C.J. Bau': 'Mixologist', 'Cynthena Sanders': 'Beverage Server'}" tt0377091,"{'Rory Culkin': 'Sam Merrick', 'Ryan Kelley': 'Clyde', 'Scott Mechlowicz': 'Marty Blank', 'Trevor Morgan': 'Rocky Merrick', 'Josh Peck': 'George Tooney', 'Carly Schroeder': 'Millie', 'Branden Williams': 'Kile', 'Raissa Fleming': 'Maggie Tooney', 'Heath Lourwood': 'Jasper', 'Ryan Peterson': 'Cashier', 'Michael Fisher-Welsh': 'Mr. Levinworth', 'J.W. Crawford': 'Tom (as James W. Crawford)', 'Shelly Lipkin': 'Mr. Merrick', 'Kaz Garas': 'Detective Wright', 'Hagai Shaham': 'Handsome Police Officer'}" tt0115678,"{'Marc Anthony': 'Cristiano', 'Tony Shalhoub': 'Primo', 'Stanley Tucci': 'Secondo', 'Larry Block': 'Man in Restaurant', 'Caroline Aaron': 'Woman in Restaurant', 'Andre Belgrader': 'Stash (as Andrei Belgrader)', 'Minnie Driver': 'Phyllis', 'Peter McRobbie': 'Loan Officer', 'Isabella Rossellini': 'Gabriella', 'Liev Schreiber': 'Leo', 'Pasquale Cajano': 'Alberto N. Pisani', 'Christine Tucci': 'Woman Singer', 'Gene Canfield': 'Charlie', 'Ian Holm': 'Pascal', 'Allison Janney': 'Ann'}" tt0120696,"{'Morgan Freeman': 'Jim', 'Christian Slater': 'Tom', 'Randy Quaid': 'Sheriff Mike Collins', 'Minnie Driver': 'Karen', 'Edward Asner': 'Uncle Charlie', 'Michael A. Goorjian': 'Kenny (as Michael Goorjian)', 'Dann Florek': 'Mr. Mehlor', 'Ricky Harris': 'Ray', 'Mark Rolston': 'Wayne Bryce', 'Peter Murnik': 'Phil', 'Wayne Duvall': 'Hank', 'Richard Dysart': 'Henry Sears', 'Betty White': 'Doreen Sears', 'Ray Baker': 'Mayor', 'Lisa Fuhrman': ""Mayor's Wife""}" tt1126618,"{'Rachel McAdams': 'Becky', 'Noah Bean': 'First Date', 'Jack Davidson': 'Dog Walking Neighbor', 'Vanessa Aspillaga': 'Anna', 'Jeff Hiller': 'Sam - Channel 9 Producer', 'Linda Powell': 'Louanne', 'Mike Hydeck': 'Ralph', 'Joseph J. Vargas': 'Channel 9 Director', 'Mario Frieson': 'Channel 9 Technical Director', 'Kevin Herbst': 'Channel 9 Associate Director', 'Jerome Weinstein': 'Fred', 'Steve Park': 'Channel 9 Weatherperson (as Stephen Park)', 'David Fonteno': 'Oscar', ""Patti D'Arbanville"": ""Becky's Mom"", 'Jeff Goldblum': 'Jerry Barnes'}" tt0114857,"{'Denzel Washington': 'Lt. Parker Barnes', 'Kelly Lynch': 'Madison Carter', 'Russell Crowe': 'SID 6.7', 'Stephen Spinella': 'Lindenmeyer', 'William Forsythe': 'William Cochran', 'Louise Fletcher': 'Elizabeth Deane', 'William Fichtner': 'Wallace', 'Costas Mandylor': 'John Donovan', ""Kevin J. O'Connor"": 'Clyde Reilly', 'Kaley Cuoco': 'Karin Carter', 'Christopher Murray': 'Matthew Grimes', 'Heidi Schanz': 'Sheila 3.2', 'Traci Lords': 'Media Zone Singer', 'Gordon Jennison Noice': 'Big Red (as J. Gordon Noice)', 'Mari Morrow': 'Linda Barnes'}" tt0272020,"{'Robert Redford': 'General Irwin', 'James Gandolfini': 'Col. Winter', 'Mark Ruffalo': 'Yates', 'Steve Burton': 'Capt. Peretz', 'Delroy Lindo': 'Gen. Wheeler', 'Paul Calderon': 'Dellwo', 'Sam Ball': 'Duffy (as Samuel Ball)', 'Jeremy Childs': 'Cutbush', 'Clifton Collins Jr.': 'Aguilar', 'George W. Scott': 'Thumper', 'Brian Goodman': 'Beaupre', 'Michael Irby': 'Enriquez', 'Frank Military': 'Doc', 'Maurice Bullard': 'Sgt. McLaren', 'Nick Kokich': 'Pvt. Niebolt'}" tt0406650,"{'Jamie Bell': 'Dean', 'Camilla Belle': 'Crystal', 'Justin Chatwin': 'Billy', 'Glenn Close': 'Mrs. Johnson', 'Kathi Copeland': 'Parent #1 (as Kathy Copeland)', 'Rory Culkin': 'Charlie Stiffle', 'Thomas Curtis': 'Charlie Bratley', 'Tim DeKay': 'Mr. Peck', 'David Ellison': 'Student #1 (as David Ellsion)', 'William Fichtner': 'Mr. Bill Stiffle', 'Ralph Fiennes': 'Mayor Michael Ebbs', 'Richard Gleason': 'Parent #2', 'Caroline Goodall': 'Mrs. Parker', 'John Heard': 'Officer Lou Bratley', 'Susan Hegarty': 'Aide to Mayor Ebbs'}" tt0830558,"{'William Atherton': 'Adult David Moran', 'Blythe Auffarth': 'Meg Loughlin', 'Blanche Baker': 'Ruth Chandler', 'Kevin Chamberlin': 'Officer Jennings', 'Dean Faulkenberry': 'Kenny', 'Gabrielle Howarth': 'Cheryl Robinson', 'Benjamin Ross Kaplan': 'Donny Chandler (as Ben Kaplan)', 'Spenser Leigh': 'Denise Crocker', 'Daniel Manche': 'David Moran', 'Mark Margolis': 'Homeless Man Hit By Car', 'Graham Patrick Martin': 'Willie Chandler Jr.', 'Michael Nardella': 'Tony', 'Greg Northrop': 'Police Officer #2 (as Gregory Northtrop)', 'Grant Show': 'Mr. Moran', 'Santo Silvestro': 'Ice Cream Vendor'}" tt0097481,"{'Eddie Murphy': 'Quick', 'Richard Pryor': 'Sugar Ray', 'Redd Foxx': 'Bennie Wilson', 'Danny Aiello': 'Phil Cantone', 'Michael Lerner': 'Bugsy Calhoune', 'Della Reese': 'Vera', 'Berlinda Tolbert': 'Annie', 'Stan Shaw': 'Jack Jenkins', 'Jasmine Guy': 'Dominique La Rue', 'Vic Polizos': 'Richie Vento', 'Lela Rochon': 'Sunshine', 'David Marciano': 'Tony', 'Arsenio Hall': 'Crying Man', 'Thomas Mikal Ford': 'Tommy Smalls (as Tommy Ford)', 'Uncle Ray Murphy': 'Willie (as Uncle Ray)'}" tt0084021,"{'Maxwell Caulfield': 'Michael', 'Michelle Pfeiffer': 'Stephanie', 'Lorna Luft': 'Paulette', 'Maureen Teefy': 'Sharon', 'Alison Price': 'Rhonda', 'Pamela Adlon': 'Dolores (as Pamela Segall)', 'Adrian Zmed': 'Nogerelli', 'Peter Frechette': 'DiMucci', 'Christopher McDonald': 'Goose', 'Leif Green': 'Davey', 'Didi Conn': 'Frenchy', 'Eve Arden': 'Miss McGee', 'Sid Caesar': 'Coach Calhoun', 'Dody Goodman': 'Blanche', 'Tab Hunter': 'Mr. Stuart'}" tt0077621,"{'Jack Nicholson': 'Henry Lloyd Moon', 'Mary Steenburgen': 'Julia Tate Moon', 'Christopher Lloyd': 'Deputy Towfield', 'John Belushi': 'Deputy Hector', 'Veronica Cartwright': ""Hermine, Moon's Old Gang"", 'Richard Bradford': 'Sheriff Andrew Kyle', 'Jeff Morris': ""Big Abe, Moon's Old Gang"", 'Danny DeVito': ""Hog, Moon's Old Gang"", 'Tracey Walter': ""Coogan, Moon's Old Gang"", 'Gerald H. Reynolds': 'Polty, Rail Road Manager', 'Luana Anders': 'Lorette Anderson', 'George W. Smith': 'Mr. Anderson', 'Lucy Lee Flippin': 'Diane Haber', 'Ed Begley Jr.': 'Whitey Haber', 'Maureen Byrnes': 'Mrs. Warren'}" tt0335559,"{'Kate Bosworth': 'Rosalee Futch', 'Topher Grace': 'Pete Monash', 'Josh Duhamel': 'Tad Hamilton', 'Nathan Lane': 'Richard Levy the Driven', 'Sean Hayes': 'Richard Levy the Shameless', 'Gary Cole': 'Henry Futch', 'Ginnifer Goodwin': 'Cathy Feely', 'Kathryn Hahn': 'Angelica', 'Octavia Spencer': 'Janine', 'Amy Smart': 'Nurse Betty', 'Ren Trostle': 'Porsche Woman', 'Wendy Worthington': 'Customer', 'Stephen Tobolowsky': 'George Ruddy', 'Moon Bloodgood': 'Gorgeous Woman', 'Mary Jo Smith': 'Sonja'}" tt0272207,"{'Dan Leis': 'Elvin Dowd', 'Jason Patric': 'Nick Tellis', 'Lloyd Adams': 'Walter Dandridge', 'Meagan Issa': 'Little Girl', 'Lina Giornofelice': 'Jeanine Mueller (as Lina Felice)', 'A.C. Peterson': 'Freeman Franks (as Alan C. Peterson)', 'Karen Robinson': 'Liz Detmer', 'Chi McBride': 'Captain Cheevers', 'Booth Savage': 'Cecil Mitchum', 'Alan Van Sprang': 'Michael Calvess', 'Gavyn Donaldson': ""Tellis' Infant Son"", 'Myles Donaldson': ""Tellis' Infant Son"", 'Krista Bridges': 'Audrey Tellis', 'Ray Liotta': 'Henry Oak', 'Thomas Patrice': 'Officer Marcotte'}" tt0338564,"{'Andy Lau': 'Inspector Lau Kin Ming', 'Tony Chiu-Wai Leung': 'Chen Wing Yan (as Tony Leung)', 'Anthony Chau-Sang Wong': 'SP Wong Chi Shing (as Anthony Wong)', 'Eric Tsang': 'Hon Sam', 'Kelly Chen': 'Dr. Lee Sum Yee', 'Sammi Cheng': 'Mary', 'Edison Chen': 'Young Lau Kin Ming', 'Shawn Yue': 'Young Chan Wing Yan', 'Elva Hsiao': 'May', 'Chapman To': 'Tsui Wai-keung', 'Ka Tung Lam': 'Inspector B (as Lam Ka Tung)', 'Ting Yip Ng': 'Inspector Cheung (as Ng Ting Yip)', 'Dion Lam': 'Del Piero', 'Chi Keung Wan': 'Officer Leung (as Wan Chi Keung)', 'Hui Kam Fung': 'Cadet School Principal'}" tt0113451,"{'David Caruso': 'David Corelli', 'Linda Fiorentino': 'Trina Gavin', 'Chazz Palminteri': 'Matt Gavin', 'Richard Crenna': 'Governor Edwards', 'Michael Biehn': 'Bob Hargrove', 'Donna Murphy': 'Karen Heller', 'Ken King': 'Petey Vasko', 'Holt McCallany': 'Bill Barrett', 'David Hunt': 'Pat Callendar', 'Angie Everhart': 'Patrice Jacinto', 'Kevin Tighe': 'D.A. Arnold Clifford', 'Robin Thomas': 'Mr. Green', 'Jay Jacobus': 'Justin Henderson', 'Victoria Smith': 'Sandy', 'Drew Snyder': 'Executive'}" tt0780567,"{'Eddie Murphy': 'Evan Danielson', 'Thomas Haden Church': 'Johnny Whitefeather', 'Yara Shahidi': 'Olivia Danielson', 'Ronny Cox': 'Tom Stevens', 'Stephen Rannazzisi': 'Noah Kulick', 'Nicole Ari Parker': 'Trish', 'DeRay Davis': 'John Strother', 'Vanessa Williams': 'Lori Strother', 'Martin Sheen': ""Dante D'Enzo"", 'Lauren Weedman': 'Rose', 'Timm Sharp': 'Tod', 'Daniel Polo': 'Indigo', 'Stephen Root': 'Fred Franklin', 'Richard Schiff': 'Carl Simons', 'Marin Hinkle': 'Ms. Davis'}" tt0343121,"{'Tupac Shakur': 'Himself (archive footage)', ""Rappin' 4-Tay"": 'Himself (archive footage)', 'Conrad Bain': '(archive footage)', 'Bill Bellamy': 'Himself (archive footage)', 'William J. Bennett': 'Himself (archive footage)', 'Todd Bridges': '(archive footage)', 'Pat Buchanan': 'Himself (archive footage)', 'James Cagney': '(archive footage)', 'Connie Chung': 'Herself (archive footage)', 'Eldridge Cleaver': 'Himself (archive footage)', 'Kathleen Cleaver': 'Herself (archive footage)', 'Gary Coleman': 'Himself (archive footage)', ""Sean 'Diddy' Combs"": 'Himself (archive footage) (as Puffy Combs)', 'Chris Connelly': 'Himself (archive footage)', ""Anthony 'Treach' Criss"": 'Himself (archive footage)'}" tt0815245,"{'Emily Browning': 'Anna', 'Arielle Kebbel': 'Alex', 'David Strathairn': 'Steven', 'Elizabeth Banks': 'Rachel', 'Maya Massar': 'Mom', 'Kevin McNulty': 'Sheriff Emery', 'Jesse Moss': 'Matt', 'Dean Paul Gibson': 'Dr. Silberling', 'Don S. Davis': 'Mr. Henson', 'Lex Burnham': 'Iris', 'Matthew Bristol': 'David', 'Daniel Bristol': 'Samuel (as Danny Bristol)', 'Heather Doerksen': 'Mildred', 'Alf Humphreys': 'Priest (as Alfred E. Humphreys)', 'Ryan Cowie': 'Orderly'}" tt0327162,"{'Nicole Kidman': 'Joanna Eberhart', 'Matthew Broderick': 'Walter Kresby', 'Bette Midler': 'Bobbie Markowitz', 'Glenn Close': 'Claire Wellington', 'Christopher Walken': 'Mike Wellington', 'Roger Bart': 'Roger Bannister', 'David Marshall Grant': 'Jerry Harmon', 'Jon Lovitz': 'Dave Markowitz', 'Dylan Hartigan': 'Pete Kresby', 'Fallon Brooking': 'Kimberly Kresby', 'Faith Hill': 'Sarah Sunderson', 'Matt Malloy': 'Herb Sunderson', 'Kate Shindle': 'Beth Peters', 'Tom Riis Farrell': 'Stan Peters', 'Lorri Bagley': 'Charmaine Van Sant'}" tt0119874,"{'George Clooney': 'Lt. Col. Thomas Devoe', 'Nicole Kidman': 'Dr. Julia Kelly', 'Marcel Iures': 'Dusan Gavrich', 'Aleksandr Baluev': 'General Aleksandr Kodoroff (as Alexander Baluev)', 'Rene Medvesek': 'Vlado Mirich', 'Gary Werntz': 'Terry Hamilton', 'Randall Batinkoff': 'Ken', 'Jim Haynie': 'General Garnett', 'Alexander Strobele': 'Dietrich Schuhmacher', 'Holt McCallany': 'Mark Appleton', 'Michael Boatman': 'CPN Beach', 'Joan Copeland': 'Senator Helen Bevens', 'Carlos Gómez': 'Santiago', 'Armin Mueller-Stahl': 'Dimitri Vertikoff', 'Slavko Juraga': 'Stevo'}" tt0171363,"{'Liam Neeson': 'Dr. David Marrow', 'Catherine Zeta-Jones': 'Theo', 'Owen Wilson': 'Luke Sanderson', 'Lili Taylor': 'Nell', 'Bruce Dern': 'Mr. Dudley', 'Marian Seldes': 'Mrs. Dudley', 'Alix Koromzay': 'Mary Lambetta', 'Todd Field': 'Todd Hackett', 'Virginia Madsen': 'Jane', 'Michael Cavanaugh': 'Dr. Malcolm Keogh', 'Tom Irwin': 'Lou', 'Charles Gunning': 'Hugh Crain', 'Saul Priever': 'Ritchie', 'M.C. Gainey': 'Large Man', 'Hadley Eure': 'Carolyn Crain'}" tt0253754,"{'Patrick Stewart': 'Jean-Luc Picard', 'Jonathan Frakes': 'William Riker', 'Brent Spiner': 'Data / B-4', 'LeVar Burton': 'Geordi La Forge', 'Michael Dorn': 'Worf', 'Marina Sirtis': 'Deanna Troi', 'Gates McFadden': 'Beverly Crusher', 'Tom Hardy': 'Shinzon', 'Ron Perlman': 'Viceroy', 'Shannon Cochran': ""Senator Tal'aura"", 'Dina Meyer': 'Commander Donatra', 'Jude Ciccolella': 'Commander Suran', 'Alan Dale': 'Praetor Hiren', 'John Berg': 'Senator', 'Michael Owen': 'Helm Officer Branson'}" tt0785006,"{'Emma Roberts': 'Andi', 'Jake T. Austin': 'Bruce', 'Don Cheadle': 'Bernie', 'Johnny Simmons': 'Dave', 'Kyla Pratt': 'Heather', 'Troy Gentile': 'Mark', 'Lisa Kudrow': 'Lois Scudder', 'Kevin Dillon': 'Carl Scudder', 'Ajay Naidu': 'ACO Jake', 'Eric Edelstein': 'ACO Max', 'Robinne Lee': 'Carol', 'Yvette Nicole Brown': 'Ms. Camwell', 'Maximiliano Hernández': 'Officer Mike (as Maximiliano Hernandez)', 'Andre Ware': 'Officer Jeff', 'Jonathan Klein': 'Evan'}" tt0995039,"{'Greg Kinnear': 'Frank', 'Jordan Carlos': 'Young Husband', 'Dequina Moore': 'Young Wife', 'Joseph Badalucco Jr.': 'Accident Bystander (as Joe Badalucco)', 'Brian Hutchison': 'Accident Bystander', 'Tyree Michael Simpson': 'Sneezy Cop (as Tyre Simpson)', 'Julia Murney': 'Sneezy Lady', 'Ricky Gervais': 'Pincus', 'Claire Lautier': 'Upper East Side Lady', 'Aasif Mandvi': 'Dr. Prashar', 'Bridget Moloney': 'Receptionist', 'Raymond J. Lee': 'Greenpeace Guy (as Raymond Lee)', 'Joey Mazzarino': 'Food Delivery Guy', 'Brad Oscar': 'Day Doorman', 'Kathleen Landis': 'Resident'}" tt0486822,"{'Shia LaBeouf': 'Kale', 'Sarah Roemer': 'Ashley', 'Carrie-Anne Moss': 'Julie', 'David Morse': 'Mr. Turner', 'Aaron Yoo': 'Ronnie', 'Jose Pablo Cantillo': 'Officer Gutierrez', 'Matt Craven': 'Daniel Brecht', 'Viola Davis': 'Detective Parker', 'Brandon Caruso': 'Greenwood Boy', 'Luciano Rauso': 'Greenwood Boy', 'Daniel Caruso': 'Greenwood Boy', 'Kevin Quinn': 'Mr. Carlson', 'Elyse Mirto': 'Mrs. Carlson', 'Suzanne Rico': 'News Anchor', 'Kent Shocknek': 'News Anchor'}" tt0099044,"{'Eddie Murphy': 'Reggie Hammond', 'Nick Nolte': 'Jack Cates', 'Brion James': 'Ben Kehoe', 'Kevin Tighe': 'Blake Wilson', ""Ed O'Ross"": 'Frank Cruise', 'David Anthony Marshall': 'Willie Hickok', 'Andrew Divoff': ""Richard 'Cherry' Ganz"", 'Bernie Casey': 'Kirkland Smith', 'Brent Jennings': 'Tyrone Burroughs', 'Ted Markland': 'Malcolm Price', 'Tisha Campbell-Martin': 'Amy Smith (as Tisha Campbell)', 'Felice Orlandi': 'Warden', 'Edward Walsh': 'Detective Joe Stevens', 'Page Leong': 'Angel Lee', 'Cathy Haase': 'Girl Bartender'}" tt0120324,"{'Bill Paxton': 'Hank', 'Bridget Fonda': 'Sarah', 'Billy Bob Thornton': 'Jacob', 'Brent Briscoe': 'Lou', 'Jack Walsh': 'Tom Butler', 'Chelcie Ross': 'Carl', 'Becky Ann Baker': 'Nancy Chambers', 'Gary Cole': 'Baxter', 'Bob Davis': 'FBI Agent Renkins', 'Peter Syvertsen': 'FBI Agent Freemont', 'Tom Carey': 'Dwight Stephanson', 'John Paxton': 'Mr. Schmitt', 'Marie Mathay': 'News Reporter', 'Paul Magers': 'Anchorman', 'Joan Steffand': 'Anchorwoman'}" tt0964517,"{'Mark Wahlberg': 'Micky Ward', 'Christian Bale': 'Dicky Eklund', 'Amy Adams': 'Charlene Fleming', 'Melissa Leo': 'Alice Ward', ""Mickey O'Keefe"": ""Mickey O'Keefe"", 'Jack McGee': 'George Ward', 'Melissa McMeekin': ""'Little Alice' Eklund"", 'Bianca Hunter': ""Cathy 'Pork' Eklund"", 'Erica McDermott': ""Cindy 'Tar' Eklund"", 'Jill Quigg': 'Donna Eklund Jaynes', 'Dendrie Taylor': ""Gail 'Red Dog' Eklund"", ""Kate B. O'Brien"": ""Phyllis 'Beaver' Eklund (as Kate O'Brien)"", 'Jenna Lamia': 'Sherri Ward', 'Frank Renzulli': 'Sal Lanano', 'Paul Campbell': ""Gary 'Boo Boo' Giuffrida""}" tt1251757,"{'Luke Wilson': 'Jack Harris', 'Giovanni Ribisi': 'Wayne Beering', 'Gabriel Macht': 'Buck Dolby', 'James Caan': 'Jerry Haggerty', 'Jacinda Barrett': 'Diana Harris', 'Kevin Pollak': 'Curt Allmans', 'Laura Ramsey': 'Audrey Dawns', 'Rade Serbedzija': 'Nikita Sokoloff', 'Terry Crews': 'James', 'Kelsey Grammer': 'Frank Griffin', 'Graham McTavish': 'Ivan Sokoloff', 'Robert Forster': 'Louie LA LA', 'John Ashton': 'Morgan', 'Jason Antoon': 'Denny Z', 'Martin Kove': 'US Senator'}" tt0071771,"{'Burt Reynolds': 'Paul Crewe', 'Eddie Albert': 'Warden Hazen', 'Ed Lauter': 'Captain Knauer', 'Michael Conrad': 'Nate Scarboro', 'James Hampton': 'Caretaker (as Jim Hampton)', 'Harry Caesar': 'Granville', 'John Steadman': 'Pop', 'Charles Tyner': 'Unger', 'Mike Henry': 'Rassmeusen', 'Jim Nicholson': 'Ice Man', 'Bernadette Peters': ""Warden's Secretary"", 'Pervis Atkins': 'Mawabe', 'Tony Cacciotti': 'Rotka', 'Anitra Ford': 'Melissa', 'Michael Fox': 'Announcer'}" tt0499554,"{'Lennie Loftin': 'Chief of Police', 'Danny DeVito': 'District Attorney', 'Robert Ben Garant': 'Deputy Travis Junior', 'Niecy Nash': 'Deputy Raineesha Williams', 'Mary Birdsong': 'Deputy Cherisha Kimball', 'Kerri Kenney': 'Deputy Trudy Wiegel (as Kerry Kenney-Silver)', 'Wendi McLendon-Covey': 'Deputy Clementine Johnson', 'Carlos Alazraqui': 'Deputy James Garcia', 'Cedric Yarbrough': 'Deputy S. Jones', 'Thomas Lennon': 'Lieutenant Jim Dangle', 'Alejandra Gutierrez': 'Miss Acapulco', 'Brandon Molale': 'Kevlar Guy', 'Kathryn Fiore': 'Cheyenne the Helicopter Model', 'David Koechner': 'Sheriff of Aspen', 'Dave Holmes': 'Persnickety Desk Worker'}" tt0203230,"{'Amy Ryan': 'Mrs. Prescott', 'Michael Countryman': 'Mr. Prescott', 'Adam LeFevre': 'Sheriff Darryl', 'Halley Feiffer': 'Amy', 'Whitney Vance': 'Young Sammy', 'Peter Kerwin': 'Young Terry', 'Betsy Aidem': 'Minister', 'Laura Linney': 'Sammy', 'Rory Culkin': 'Rudy', 'J. Smith-Cameron': 'Mabel', 'Matthew Broderick': 'Brian', 'Jon Tenney': 'Bob', 'Gaby Hoffmann': 'Sheila', 'Mark Ruffalo': 'Terry', 'Lisa Altomare': 'Waitress'}" tt0452608,"{'Jason Statham': 'Jensen Ames', 'Joan Allen': 'Hennessey', 'Ian McShane': 'Coach', 'Tyrese Gibson': 'Machine Gun Joe', 'Natalie Martinez': 'Case', 'Max Ryan': 'Pachenko', 'Jason Clarke': 'Ulrich', 'Frederick Koehler': 'Lists (as Frederick Koehler)', 'Jacob Vargas': 'Gunner', 'Justin Mader': 'Travis Colt', 'Robert LaSardo': 'Grimm', 'Robin Shou': '14K', 'Benz Antoine': ""Joe's Navigator"", 'Danny Blanco Hall': ""Joe's Navigator"", 'Christian Paul': ""Joe's Navigator""}" tt0112715,"{'Laura Linney': 'Dr. Karen Ross', 'Dylan Walsh': 'Dr. Peter Elliot', 'Ernie Hudson': 'Captain Monroe Kelly', 'Tim Curry': 'Herkermer Homolka', 'Grant Heslov': 'Richard', 'Joe Don Baker': 'R.B. Travis', 'Lola Noh': 'Amy (as Lorene Noh)', 'Mary Ellen Trainor': 'Moira', 'Misty Rosas': 'Amy the Gorilla', 'Stuart Pankin': 'Boyd', 'Carolyn Seymour': 'Eleanor Romy', 'Romy Rosemont': 'Assistant', 'James Karen': ""College President / Elliot's Boss"", 'Bill Pugin': 'William', 'Lawrence T. Wrentz': 'Prof. Arliss Wender'}" tt0243736,"{'Josh Hartnett': 'Matt', 'Shannyn Sossamon': 'Erica Sutton', 'Paulo Costanzo': 'Ryan', 'Adam Trese': 'John', 'Emmanuelle Vaugier': 'Susie', 'Lorin Heath': 'Diana', 'Aaron Trainor': 'Walter', 'Glenn Fitzgerald': 'Chris', 'Monet Mazur': 'Candy', 'Christine Chatelain': 'Andie', 'Keegan Connor Tracy': 'Mandy', 'Michael C. Maronna': 'Bagel Guy (as Michael Maronna)', 'Vinessa Shaw': 'Nicole', 'Stefanie von Pfetten': 'Girl in Chinatown (as Stefanie Von Pfetten)', 'Stanley Anderson': 'Father Maher'}" tt0118849,"{'Mohammad Amir Naji': ""Ali's Father (as Amir Naji)"", 'Amir Farrokh Hashemian': 'Ali (as Mir Farrokh Hashemian)', 'Bahare Seddiqi': 'Zahra', 'Nafise Jafar-Mohammadi': 'Roya', 'Fereshte Sarabandi': ""Ali's Mother"", 'Kamal Mirkarimi': 'Assistant (as Kamal Mir Karimi)', 'Behzad Rafi': 'Trainer (as Behzad Rafiee)', 'Dariush Mokhtari': ""Ali's Teacher"", 'Mohammad-Hasan Hosseinian': ""Roya's Father"", 'Masume Dair': ""Roya's Mother"", 'Kambiz Peykarnegar': 'Race Organizer', 'Hasan Roohparvari': 'Race Photographer', 'Abbas-Ali Roomandi': 'Shoemaker', 'Jafar Seyfollahi': 'Green Grocer', 'Qolamreza Maleki': 'Salt Seller'}" tt0426501,"{'Vinnie Jones': 'Johnny Doyle', 'Patrick Bergin': 'Flynn', 'Laurence Kinlan': 'Michael', 'Eriq La Salle': 'Julius', 'Lennox Lewis': 'Ras', 'Samantha Mumba': 'Rita', 'Mark Asante': 'Nathan', 'Roger Daltrey': 'Jimmy', 'Sam Sarpong': 'Skip', 'Charles Porter': 'Digs', 'Wilson Jermaine Heredia': 'Sparra', 'Colin Stewart': 'Druggie', 'John Fashanu': 'DJ Fash', 'Emma Little Lawless': 'Cafe Waitress (as Emma Lyttle)', 'Heather Greenleese': 'Painter'}" tt0099558,"{'Jackie Chan': 'Asian Hawk / Condor / Jackie', ""Carol 'Do Do' Cheng"": 'Ada (as Carol Cheng)', 'Eva Cobo': 'Elsa (as Eva Cobo de Garcia)', 'Shôko Ikeda': 'Momoko', 'Aldo Sambrell': 'Adolf (as Alfredo Brel Sánchez)', 'Ken Goodman': ""Adolf's Guard #1"", 'Steve Tartalia': ""Adolf's Guard #2 (as Gregory Tartaglia)"", 'Vincent Lyn': ""Mark / Adolf's Guard #3 (as Lyn Percival)"", 'Bruce Fontaine': ""Adolf's Guard #4"", 'Wayne Archer': ""Adolf's Guard #5 (as Archer Wayne)"", 'Brandon Charles': ""Adolf's Guard #6"", 'Ken Lo': ""Adolf's Guard #7 (as Low Houi Kang)"", 'Peter Klimenko': ""Adolf's Guard #8"", 'Christian Perrochaud': ""Adolf's Guard #9"", 'Jonathan Isgar': 'Tasza'}" tt0118887,"{'Sylvester Stallone': 'Freddy Heflin', 'Harvey Keitel': 'Ray Donlan', 'Ray Liotta': 'Gary Figgis', 'Robert De Niro': 'Moe Tilden', 'Peter Berg': 'Joey Randone', 'Janeane Garofalo': 'Deputy Cindy Betts', 'Robert Patrick': 'Jack Rucker', 'Michael Rapaport': 'Murray Babitch', 'Annabella Sciorra': 'Liz Randone', 'Noah Emmerich': 'Deputy Bill Geisler', 'Cathy Moriarty': 'Rose Donlan', 'John Spencer': 'Leo Crasky', 'Frank Vincent': 'PDA President Lassaro', 'Malik Yoba': 'Detective Carson', 'Arthur J. Nascarella': 'Frank Lagonda (as Arthur Nascarella)'}" tt0413895,"{'Julia Roberts': 'Charlotte the Spider (voice)', 'Steve Buscemi': 'Templeton the Rat (voice)', 'John Cleese': 'Samuel the Sheep (voice)', 'Oprah Winfrey': 'Gussy the Female Goose (voice)', 'Cedric the Entertainer': 'Golly The Male Goose (voice)', 'Kathy Bates': 'Bitsy the Cow (voice)', 'Reba McEntire': 'Betsy the Cow (voice)', 'Robert Redford': 'Ike the Horse (voice)', 'Thomas Haden Church': 'Brooks the Crow (voice)', 'André Benjamin': 'Elwyn the Crow (voice)', 'Dominic Scott Kay': 'Wilbur The Spring Pig (voice)', 'Sam Shepard': 'The Narrator (voice)', 'Abraham Benrubi': 'Uncle The Fatter Pig (voice)', 'Dakota Fanning': 'Fern', 'Kevin Anderson': 'Mr. Arable'}" tt0164184,"{'Ian Mongrain': 'Syrian Radar Operator', 'Russell Bobbitt': 'Israeli Pilot', 'James Cromwell': 'President Fowler', 'Ken Jenkins': 'Admiral Pollack', 'Bruce McGill': 'National Security Advisor Revell', 'John Beasley': 'General Lasseter', 'Morgan Freeman': 'DCI William Cabot', 'Philip Baker Hall': 'Defense Secretary Becker', 'Al Vandecruys': 'US STRATCOM Colonel', 'Richard Cohee': 'Mt. Weather General', 'Philip Pretten': ""President's Military Aide"", 'Alison Darcy': ""Fowler's Aide"", 'Richard Marner': 'President Zorkin', 'Ostap Soroka': ""Zorkin's Translator"", 'Robert Martin Robinson': ""Zorkin's Interviewer""}" tt0445934,"{'Will Ferrell': 'Chazz Michael Michaels', 'Jon Heder': 'Jimmy MacElroy', 'Will Arnett': 'Stranz Van Waldenberg', 'Amy Poehler': 'Fairchild Van Waldenberg', 'Jenna Fischer': 'Katie Van Waldenberg', 'William Fichtner': 'Darren MacElroy', 'Craig T. Nelson': 'Coach', 'Romany Malco': 'Jesse', 'Nick Swardson': 'Hector', 'Scott Hamilton': 'Sports Anchor', 'Andy Richter': 'Mountie', 'Greg Lindsay': 'Mountie', 'Rob Corddry': 'Bryce', 'Nick Jameson': 'PA Announcer', 'Tom Virtue': 'Floor Manager'}" tt0096933,"{'Michael Douglas': 'Nick Conklin', 'Andy Garcia': 'Charlie Vincent', 'Ken Takakura': 'Masahiro', 'Kate Capshaw': 'Joyce', 'Yûsaku Matsuda': 'Sato', 'Shigeru Kôyama': 'Ohashi (as Shigeru Koyama)', 'John Spencer': 'Oliver', 'Guts Ishimatsu': 'Katayama', 'Yûya Uchida': 'Nashida', 'Tomisaburô Wakayama': 'Sugai', 'Miyuki Ono': 'Miyuki', 'Luis Guzmán': 'Frankie (as Luis Guzman)', 'John Costelloe': 'The Kid (as John A. Costelloe)', 'Stephen Root': 'Berg', 'Richard Riehle': 'Crown'}" tt0442933,"{'Robin Wright': 'Wealthow (as Robin Wright-Penn)', 'Anthony Hopkins': 'Hrothgar', 'Paul Baker': 'Musician #1', 'John Bilezikjian': 'Musician #2', 'Rod D. Harbour': 'Musician #3', 'Brice Martin': 'Musician #4 (as Brice H. Martin)', 'Sonje Fortag': 'Gitte (as Sonja Fortag)', 'Sharisse Baker-Bernard': 'Hild', 'Charlotte Salt': 'Estrith', 'Julene Renee': 'Cille (as Julene Rennee)', 'Greg Ellis': 'Garmund', 'Rik Young': 'Eofor', 'Sebastian Roché': 'Wulfgar (as Sebastian Roche)', 'Leslie Zemeckis': 'Yrsa', 'John Malkovich': 'Unferth'}" tt0109506,"{'Brandon Lee': 'Eric', 'Rochelle Davis': 'Sarah', 'Ernie Hudson': 'Albrecht', 'Michael Wincott': 'Top Dollar', 'Bai Ling': 'Myca', 'Sofia Shinas': 'Shelly', 'Anna Levine': 'Darla (as Anna Thomson)', 'David Patrick Kelly': 'T-Bird', 'Angel David': 'Skank', 'Laurence Mason': 'Tin Tin', 'Michael Massee': 'Funboy', 'Tony Todd': 'Grange', 'Jon Polito': 'Gideon', 'Bill Raymond': 'Mickey', 'Marco Rodríguez': 'Torres'}" tt0317248,"{'Alexandre Rodrigues': 'Buscapé - Rocket', 'Leandro Firmino': ""Zé Pequeno - Li'l Zé (as Leandro Firmino da Hora)"", 'Phellipe Haagensen': 'Bené - Benny', 'Douglas Silva': ""Dadinho - Li'l Dice"", 'Jonathan Haagensen': 'Cabeleira - Shaggy', 'Matheus Nachtergaele': 'Sandro Cenoura - Carrot', 'Seu Jorge': 'Mané Galinha - Knockout Ned', 'Jefechander Suplino': 'Alicate - Clipper', 'Alice Braga': 'Angélica', 'Emerson Gomes': 'Barbantinho - Stringy', 'Edson Oliveira': 'Barbantinho Adulto - Older Stringy', 'Michel Gomes': 'Bené Criança - Young Benny (as Michel De Souza Gomes)', 'Roberta Rodrigues': 'Berenice - Bernice', 'Luis Otávio': 'Buscapé Criança - Young Rocket', 'Kiko Marques': 'Cabeção - Melonhead (as Maurício Marques)'}" tt0124315,"{'Tobey Maguire': 'Homer Wells', 'Charlize Theron': 'Candy Kendall', 'Delroy Lindo': 'Mr. Rose', 'Paul Rudd': 'Wally Worthington', 'Michael Caine': 'Dr. Wilbur Larch', 'Jane Alexander': 'Nurse Edna', 'Kathy Baker': 'Nurse Angela', 'Erykah Badu': 'Rose Rose', 'Kieran Culkin': 'Buster', 'Kate Nelligan': 'Olive Worthington', 'Heavy D': 'Peaches', 'K. Todd Freeman': 'Muddy', 'Paz de la Huerta': 'Mary Agnes', 'J.K. Simmons': 'Ray Kendall', 'Evan Parke': 'Jack (as Evan Dexter Parke)'}" tt0043338,"{'Kirk Douglas': 'Chuck Tatum', 'Jan Sterling': 'Lorraine Minosa', 'Robert Arthur': 'Herbie Cook (as Bob Arthur)', 'Porter Hall': 'Jacob Q. Boot', 'Frank Cady': 'Al Federber', 'Richard Benedict': 'Leo Minosa', 'Ray Teal': 'Sheriff Gus Kretzer', 'Lewis Martin': 'McCardle', 'John Berkes': 'Papa Minosa', 'Frances Dominguez': 'Mama Minosa', 'Gene Evans': 'Deputy Sheriff', 'Frank Jaquet': 'Sam Smollett', 'Harry Harvey': 'Dr. Hilton', 'Bob Bumpas': 'Radio Announcer', 'Geraldine Hall': 'Nellie Federber'}" tt0241303,"{'Alfred Molina': 'Comte de Reynaud', 'Carrie-Anne Moss': 'Caroline Clairmont', 'Aurelien Parent Koenig': 'Luc Clairmont (as Aurèlien Parent Koenig)', 'Antonio Gil': 'Jean-Marc Drou (as Antonio Gil-Martinez)', 'Hélène Cardona': ""Francoise 'Fuffi' Drou"", 'Harrison Pratt': 'Dedou Drou', 'Gaelan Connell': 'Didi Drou', 'Élisabeth Commelin': 'Yvette Marceau (as Elisabeth Commelin)', 'Ron Cook': 'Alphonse Marceau', 'Guillaume Tardieu': 'Baptiste Marceau', ""Hugh O'Conor"": 'Father Henri', 'John Wood': 'Guillaume Blérot', 'Lena Olin': 'Josephine Muscat', 'Peter Stormare': 'Serge Muscat', 'Leslie Caron': 'Madame Audel'}" tt0065528,"{'Alan Arkin': 'Yossarian', 'Martin Balsam': 'Colonel Cathcart', 'Richard Benjamin': 'Major Danby', 'Art Garfunkel': 'Nately (as Arthur Garfunkel)', 'Jack Gilford': 'Doc Daneeka', 'Buck Henry': 'Colonel Korn', 'Bob Newhart': 'Major Major', 'Anthony Perkins': 'Chaplain Tappman', 'Paula Prentiss': 'Nurse Duckett', 'Martin Sheen': 'Dobbs', 'Jon Voight': 'Milo Minderbinder', 'Orson Welles': 'General Dreedle', 'Bob Balaban': 'Orr', 'Susanne Benton': ""Dreedle's WAC"", 'Norman Fell': 'Sergeant Towser'}" tt0118799,"{'Roberto Benigni': 'Guido', 'Nicoletta Braschi': 'Dora', 'Giorgio Cantarini': 'Giosué', 'Giustino Durano': 'Zio', 'Sergio Bini Bustric': 'Ferruccio (as Sergio Bustric)', 'Marisa Paredes': 'Madre di Dora', 'Horst Buchholz': 'Dottor Lessing (as Horst Bucholz)', 'Lidia Alfonsi': 'Guicciardini (as Lydia Alfonsi)', 'Giuliana Lojodice': 'Direttrice Didattica', 'Amerigo Fontani': 'Rodolfo', 'Pietro De Silva': 'Bartolomeo', 'Francesco Guzzo': 'Vittorino', 'Raffaella Lebboroni': 'Elena', 'Claudio Alfonsi': 'Amico Rodolfo', 'Gil Baroni': 'Prefetto'}" tt0264472,"{'Ben Affleck': 'Gavin Banek', 'Samuel L. Jackson': 'Doyle Gipson', 'Kim Staunton': 'Valerie Gipson', 'Toni Collette': 'Michelle', 'Sydney Pollack': 'Stephen Delano', 'Tina Sloan': 'Mrs. Delano', 'Richard Jenkins': 'Walter Arnell', 'Akil Walker': 'Stephen Gipson', 'Cole Hawkins': 'Danny Gipson', 'Ileen Getz': 'Ellen', 'Jennifer Dundas': 'Mina Dunne (as Jennifer Dundas Lowe)', 'Matt Malloy': 'Ron Cabot', 'Amanda Peet': 'Cynthia Delano Banek', 'Myra Lucretia Taylor': 'Judge Frances Abarbanel', 'Bruce Altman': 'Terry Kaufman'}" tt0088930,"{'Eileen Brennan': 'Mrs. Peacock', 'Tim Curry': 'Wadsworth', 'Madeline Kahn': 'Mrs. White', 'Christopher Lloyd': 'Professor Plum', 'Michael McKean': 'Mr. Green', 'Martin Mull': 'Colonel Mustard', 'Lesley Ann Warren': 'Miss Scarlet', 'Colleen Camp': 'Yvette', 'Lee Ving': 'Mr. Boddy', 'Bill Henderson': 'The Cop', 'Jane Wiedlin': 'The Singing Telegram Girl', 'Jeffrey Kramer': 'The Motorist', 'Kellye Nakahara': 'The Cook', 'Will Nye': 'Cop #1', 'Rick Goldman': 'Cop #2'}" tt0463998,"{'Hilary Swank': 'Erin Gruwell', 'Patrick Dempsey': 'Scott Casey', 'Scott Glenn': 'Steve Gruwell', 'Imelda Staunton': 'Margaret Campbell', 'April L. Hernandez': 'Eva Benitez (as April Lee Hernandez)', 'Mario': 'Andre Bryant', 'Kristin Herrera': 'Gloria Munez', 'Jaclyn Ngan': 'Sindy', 'Sergio Montalvo': 'Alejandro Santiago', 'Jason Finn': 'Marcus', 'Deance Wyatt': 'Jamal Hill', 'Vanetta Smith': 'Brandy Ross', 'Gabriel Chavarria': 'Tito', 'Hunter Parrish': 'Ben Daniels', 'Antonio García': 'Miguel'}" tt0082418,"{'Amy Steel': 'Ginny', 'John Furey': 'Paul', 'Adrienne King': 'Alice', 'Kirsten Baker': 'Terry', 'Stuart Charno': 'Ted (as Stu Charno)', 'Warrington Gillette': 'Jason', 'Walt Gorney': 'Crazy Ralph', 'Marta Kober': 'Sandra', 'Tom McBride': 'Mark', 'Bill Randolph': 'Jeff', 'Lauren-Marie Taylor': 'Vickie', 'Russell Todd': 'Scott', 'Betsy Palmer': 'Mrs. Voorhees', 'Cliff Cudney': 'Max', 'Jack Marks': 'The Cop'}" tt0787475,"{'Andy Samberg': 'Rod Kimble', 'Jorma Taccone': 'Kevin Powell', 'Bill Hader': 'Dave', 'Danny McBride': 'Rico', 'Isla Fisher': 'Denise', 'Sissy Spacek': 'Marie Powell', 'Ian McShane': 'Frank Powell', 'Will Arnett': 'Jonathan', 'Chris Parnell': 'Barry Pasternack', 'Chester Tam': 'Richardson', 'Mark Acheson': 'Homeless Dude', 'Brittany Tiplady': 'Maggie', 'Ken Kirzinger': 'Trailer Guy', 'Britt Irvin': 'Cathy', 'Alana Husband': 'Waitress'}" tt0427229,"{'Matthew McConaughey': 'Tripp', 'Sarah Jessica Parker': 'Paula', 'Zooey Deschanel': 'Kit', 'Justin Bartha': 'Ace', 'Bradley Cooper': 'Demo', 'Terry Bradshaw': 'Al', 'Kathy Bates': 'Sue', 'Tyrel Jackson Williams': 'Jeffrey', 'Katheryn Winnick': 'Melissa', 'Rob Corddry': 'Gun Salesman #1', 'Patton Oswalt': 'Techie Guy', 'Stephen Tobolowsky': 'Bud', 'Kate McGregor-Stewart': 'Bev', 'Adam Alexi-Malle': 'Mr. Axelrod', 'Gretchen Cleevely': 'Gretchen the Veterinarian'}" tt0209037,"{'Josse De Pauw': 'Jean Vereecken', 'Eva van der Gucht': 'Marva Vereecken', 'Werner De Smedt': 'Willy Van Outreve', 'Thekla Reuten': 'Debbie', 'Victor Löw': 'Michael Jensen', 'Gert Portael': 'Chantal Vereecken', 'Ianka Fleerackers': 'Gaby', 'Alice Reys': 'Lizzy', 'George Arrendell': 'Knappe man', 'François Beukelaers': 'NTO directeur', 'Silvia Claes': 'Omroepster', 'Marc Didden': 'Cameraman', 'Sien Eggers': 'Debbies buurvrouw', 'Lut Hannes': ""Vriendin van Marva's moeder"", 'Wim Opbrouck': 'Rik De Visser'}" tt0112744,"{'Jack Nicholson': 'Freddy Gale', 'David Morse': 'John Booth', 'Anjelica Huston': 'Mary', 'Robin Wright': 'Jojo', 'Piper Laurie': 'Helen Booth', 'Richard Bradford': 'Stuart Booth', 'Priscilla Barnes': 'Verna', 'David Baerwald': 'Peter', 'Robbie Robertson': 'Roger', 'John Savage': 'Bobby', 'Kari Wuhrer': 'Mia', 'Jennifer Leigh Warren': 'Jennifer', 'Kellita Smith': 'Tanya', 'Richard C. Sarafian': 'Sunny Ventura (as Richard Sarafian)', 'Bobby Cooper': 'Coop'}" tt0079540,"{'Bill Murray': 'Tripper', 'Harvey Atkin': 'Morty', 'Kate Lynch': 'Roxanne', 'Russ Banham': 'Crockett', 'Kristine DeBell': 'A.L.', 'Sarah Torgov': 'Candace', 'Jack Blum': 'Spaz', 'Keith Knight': 'Fink', 'Cindy Girling': 'Wendy', 'Todd Hoffman': 'Wheels', 'Margot Pinvidic': 'Jackie', 'Matt Craven': 'Hardware (as Matt Cravenn)', ""Norma Dell'Agnese"": 'Brenda', 'Chris Makepeace': 'Rudy', 'Michael Kirby': 'Eddy'}" tt0796366,"{'Chris Pine': 'Kirk', 'Zachary Quinto': 'Spock', 'Leonard Nimoy': 'Spock Prime', 'Eric Bana': 'Nero', 'Bruce Greenwood': 'Pike', 'Karl Urban': 'Bones', 'Zoe Saldana': 'Uhura (as Zoë Saldana)', 'Simon Pegg': 'Scotty', 'John Cho': 'Sulu', 'Anton Yelchin': 'Chekov', 'Ben Cross': 'Sarek', 'Winona Ryder': 'Amanda Grayson', 'Chris Hemsworth': 'George Kirk', 'Jennifer Morrison': 'Winona Kirk', 'Rachel Nichols': 'Gaila'}" tt0124295,"{'Michael Moore': 'Himself', 'Elaine Bly': 'Herself - Random House Media Escort', 'Dan Burns': 'Himself - Radio Personality', 'Chip Carter': 'Himself - Forbes Campaign', 'Bill Clinton': 'Himself - Presidential Candidate (archive footage)', 'Jim Czarnecki': 'Himself (as Jim)', 'Brian Danitz': 'Himself (as Brian)', 'Robert Dornan': 'Himself - Congressman (archive footage)', 'Joel Feick': 'Himself - Radio Commentator', 'Steve Forbes': 'Himself - Presidential Candidate (archive footage)', 'Doug France': 'Himself - Random House Representative', 'Mary Gielow': 'Herself - Media Escort in Milwaukee', 'Bev Jacowski': 'Herself, Johnson Controls representative', 'Richard Jewell': 'Himself - Innocent Guy', 'Kevin Keane': ""Himself - Governor Thompson's Press Secretary""}" tt0111280,"{'Patrick Stewart': 'Picard', 'Jonathan Frakes': 'Riker', 'Brent Spiner': 'Data', 'LeVar Burton': 'Geordi', 'Michael Dorn': 'Worf', 'Gates McFadden': 'Beverly', 'Marina Sirtis': 'Troi', 'Malcolm McDowell': 'Soran', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'William Shatner': 'Kirk', 'Alan Ruck': 'Capt. Harriman', 'Jacqueline Kim': 'Demora', 'Jenette Goldstein': 'Science Officer', 'Thomas Kopache': 'Com Officer'}" tt0099703,"{'Anjelica Huston': 'Lilly Dillon', 'John Cusack': 'Roy Dillon', 'Annette Bening': 'Myra Langtry', 'Jan Munroe': 'Guy at Bar', 'Robert Weems': 'Racetrack Announcer', 'Stephen Tobolowsky': 'Jeweler', 'Jimmy Noonan': 'Bartender', 'Richard Holden': 'Cop', 'Henry Jones': 'Simms', 'Michael Laskin': 'Irv', 'Eddie Jones': 'Mintz', 'Sandy Baron': 'Doctor', 'Lou Hancock': 'Nurse', 'Gailard Sartain': 'Joe', 'Noelle Harling': 'Nurse Carol Flynn'}" tt0864761,"{'Keira Knightley': 'Georgiana', 'Ralph Fiennes': 'The Duke', 'Charlotte Rampling': 'Lady Spencer', 'Dominic Cooper': 'Charles Grey', 'Hayley Atwell': 'Bess Foster', 'Simon McBurney': 'Charles Fox', 'Aidan McArdle': 'Richard Sheridan', 'John Shrapnel': 'General Grey', 'Alistair Petrie': 'Heaton', 'Patrick Godfrey': 'Dr. Neville', 'Michael Medwin': 'Speechmaker', 'Justin Edwards': 'Macaroni', 'Richard McCabe': 'Sir James Hare', 'Calvin A. Dean': 'Devonshire House Servant (as Calvin Dean)', 'Hannah Stokely': 'Devonshire House Maid'}" tt0164334,"{'Morgan Freeman': 'Alex Cross', 'Monica Potter': 'Jezzie Flannigan', 'Michael Wincott': 'Gary Soneji', 'Dylan Baker': 'Ollie McArthur', 'Mika Boorem': 'Megan Rose', 'Anton Yelchin': 'Dimitri Starodubov', 'Kim Hawthorne': 'Agent Hickley', 'Jay O. Sanders': 'Kyle Craig', 'Billy Burke': 'Ben Devine', 'Michael Moriarty': 'Senator Hank Rose', 'Penelope Ann Miller': 'Elizabeth Rose', 'Anna Maria Horsford': 'Vickie', 'Scott Heindl': 'Floyd the Fisherman', 'Christopher Shyer': 'Jim Gelway', 'Jill Teed': 'Tracie Fisher'}" tt0829459,"{'Dan Futterman': 'Danny', 'Angelina Jolie': 'Mariane', 'Archie Panjabi': 'Asra', 'Mohammed Afzal': 'Shabbir', 'Mushtaq Khan': ""Danny's Taxi Driver (as Mushtaq Ahmed)"", 'Daud Khan': 'Masud the Fixer', 'Telal Saeed': 'Kaleem Yusuf', 'Arif Khan': ""Mariane's Taxi Driver"", 'Tipu Taheer': 'Human Rights Director', 'Amit Dhawan': 'Technical Supervisor', 'Saira Nasir Khan': 'Nasrin', 'Aliya Khan': 'Kashva', 'Sarah Mone': 'Female Guest', 'Bushra Parwani': 'Female Guest', 'Zafar Karachiwala': 'Male Guest'}" tt0431308,"{'Hilary Swank': 'Holly', 'Gerard Butler': 'Gerry', 'Lisa Kudrow': 'Denise', 'Gina Gershon': 'Sharon', 'James Marsters': 'John', 'Kathy Bates': 'Patricia', 'Harry Connick Jr.': 'Daniel', 'Nellie McKay': 'Ciara', 'Jeffrey Dean Morgan': 'William', 'Dean Winters': 'Tom', 'Anne Kent': 'Rose Kennedy', 'Brian McGrath': 'Martin Kennedy', 'Sherie Rene Scott': 'Barbara', 'Susan Blackwell': 'Vicky', 'Michael Countryman': 'Ted'}" tt0080388,"{'Burt Lancaster': 'Lou Pascal', 'Susan Sarandon': 'Sally Matthews', 'Kate Reid': 'Grace Pinza', 'Michel Piccoli': 'Joseph', 'Hollis McLaren': 'Chrissie', 'Robert Joy': 'Dave Matthews', 'Al Waxman': 'Alfie', 'Robert Goulet': 'Singer', 'Moses Znaimer': 'Felix', 'Angus MacInnes': 'Vinnie', 'Sean Sullivan': 'Buddy', 'Wallace Shawn': 'Waiter (as Wally Shawn)', 'Harvey Atkin': 'Bus Driver', ""Norma Dell'Agnese"": 'Jeanne', 'Louis Del Grande': 'Mr. Shapiro'}" tt0090830,"{'William Hurt': 'James', 'Marlee Matlin': 'Sarah', 'Piper Laurie': 'Mrs. Norman', 'Philip Bosco': 'Dr. Curtis Franklin', 'Allison Gompf': 'Lydia', 'John F. Cleary': 'Johnny', 'Philip Holmes': 'Glen', 'Georgia Ann Cline': 'Cheryl', 'William D. Byrd': 'Danny', 'Frank Carter Jr.': 'Tony', 'John Limnidis': 'William', 'Bob Hiltermann': 'Orin', 'E. Katherine Kerr': 'Mary Lee Ochs', 'John Basinger': 'Alan Jones', 'Barry Magnani': 'Tom Schuyler'}" tt1034303,"{'Daniel Craig': 'Tuvia Bielski', 'Liev Schreiber': 'Zus Bielski', 'Jamie Bell': 'Asael Bielski', 'Alexa Davalos': 'Lilka Ticktin', 'Allan Corduner': 'Shimon Haretz', 'Mark Feuerstein': 'Isaac Malbin', 'Tomas Arana': 'Ben Zion Gulkowitz', 'Jodhi May': 'Tamara Skidelsky', 'Kate Fahy': 'Riva Reich', 'Iddo Goldberg': 'Yitzhak Shulman', 'Iben Hjejle': 'Bella', 'Martin Hancock': 'Peretz Shorshaty', 'Ravil Isyanov': 'Viktor Panchenko', 'Jacek Koman': ""Konstanty 'Koscik' Kozlowski"", 'George MacKay': 'Aron Bielski'}" tt0116126,"{'Shawn Wayans': 'Ashtray', 'Marlon Wayans': 'Loc Dog', 'Tracey Cherelle Jones': 'Dashiki', 'Chris Spencer': 'Preach', 'Suli McCullough': 'Crazy Legs', 'Darrel Heath': 'Toothpick (as Darrell Heath)', 'Helen Martin': ""Loc Dog's Grandma"", 'Isaiah Barnes': 'Doo Rag', 'Lahmard J. Tate': ""Ashtray's Father (as Lahmard Tate)"", 'Keenen Ivory Wayans': 'Mailman', 'Keith Morris': 'Dave the Crackhead', 'Craig Wayans': 'Thug #1', 'Casey Lee': 'Birthday Boy Thug', 'Joe Scott': ""Birthday Cake Boy (as Joe 'Nub' Scott)"", 'Kim Wayans': 'Mrs. Johnson'}" tt0443489,"{'Jamie Foxx': 'Curtis Taylor Jr.', 'Beyoncé': 'Deena Jones (as Beyoncé Knowles)', 'Eddie Murphy': ""James 'Thunder' Early"", 'Danny Glover': 'Marty Madison', 'Jennifer Hudson': 'Effie White', 'Anika Noni Rose': 'Lorrell Robinson', 'Keith Robinson': 'C.C. White', 'Sharon Leal': 'Michelle Morris', 'Hinton Battle': 'Wayne', 'Mariah Iman Wilson': 'Magic (as Mariah Wilson)', 'Yvette Cason': 'May', 'Ken Page': 'Max Washington', 'Ralph Louis Harris': 'M.C. (as Ralph Harris)', 'Michael-Leon Wooley': 'Tiny Joe Dixon', 'Loretta Devine': 'Jazz Singer'}" tt0091188,"{'Meryl Streep': 'Rachel', 'Jack Nicholson': 'Mark', 'Jeff Daniels': 'Richard', 'Maureen Stapleton': 'Vera', 'Stockard Channing': 'Julie', 'Richard Masur': 'Arthur', ""Catherine O'Hara"": 'Betty', 'Steven Hill': ""Rachel's Father"", 'Milos Forman': 'Dmitri', 'Mamie Gummer': 'Annie (as Natalie Stern)', 'Karen Akers': 'Thelma Rice', 'Aida Linares': 'Juanita', 'Anna Maria Horsford': 'Della', 'Ron McLarty': ""Detective O'Brien"", 'Kenneth Welsh': 'Dr. Appel'}" tt0081353,"{'Robin Williams': 'Popeye', 'Shelley Duvall': 'Olive Oyl', 'Ray Walston': 'Poopdeck Pappy', 'Paul Dooley': 'Wimpy', 'Paul L. Smith': 'Bluto', 'Richard Libertini': 'Geezil', 'Donald Moffat': 'The Taxman', 'MacIntyre Dixon': 'Cole Oyl', 'Roberta Maxwell': 'Nana Oyl', 'Donovan Scott': 'Castor Oyl', 'Allan F. Nicholls': 'Rough House (as Allan Nicholls)', 'Wesley Ivan Hurt': ""Swee'pea"", 'Bill Irwin': 'Ham Gravy, the Old Boyfriend', 'Robert Fortier': 'Bill Barnacle, the Town Drunk', 'David McCharen': 'Harry Hotcash, the Gambler'}" tt0070510,"{""Ryan O'Neal"": 'Moses Pray', ""Tatum O'Neal"": 'Addie Loggins', 'Madeline Kahn': 'Trixie Delight', 'John Hillerman': 'Deputy Hardin / Jess Hardin', 'P.J. Johnson': 'Imogene', 'Jessie Lee Fulton': 'Miss Ollie', 'James N. Harrell': 'The Minister (as Jim Harrell)', 'Lila Waters': ""The Minister's Wife"", 'Noble Willingham': 'Mr. Robertson', 'Bob Young': 'Gas Station Attendant', 'Jack Saunders': 'Station Master', 'Jody Wilbur': 'Cafe Waitress', 'Liz Ross': 'The Widow Morgan - Pearl', 'Yvonne Harrison': 'The Widow Bates - Marie', 'Ed Reed': ""The Lawman - Bates' Home""}" tt0416051,"{'David Boreanaz': 'Lance Valenteen', 'Alana De La Garza': 'Sophia', 'Mariam Vardanyan': ""Shiffy's Wife (as Mariam Vardani)"", 'Scoot McNairy': 'Dan', 'Pat Healy': 'Bill Smith', 'Paul Sorvino': 'Wally', 'Terrence Evans': 'Charlie', 'Lee Weaver': 'Ralph', 'Rodney Rowland': 'Tip (as Rod Rowland)', 'Herschel Bleefeld': 'Shiffy', 'Patricia Place': 'Mrs. Cliverhorn', 'Regina McKee Redwing': 'Nurse Savage', 'Gemini Barnett': 'Walter', 'Dallas McKinney': 'Bobby', 'Michael Addison': 'Man #1'}" tt0236640,"{'Christina Ricci': 'Elizabeth', 'Jason Biggs': 'Rafe', 'Anne Heche': 'Dr. Sterling', 'Michelle Williams': 'Ruby', 'Jonathan Rhys Meyers': 'Noah (as Jonathan Rhys-Meyers)', 'Jessica Lange': 'Mrs. Wurtzel', 'Jesse Moss': 'Sam', 'Nicholas Campbell': 'Donald (as Nick Campbell)', 'Zoe Miller': 'Elizabeth at 12', 'Sheila Paterson': 'Grandmother', 'Rob Freeman': 'Mister Cool', 'Nicole Parker': 'Waitress (as Nicole Parker Smith)', 'Frida Betrani': 'Julia', 'Klodyne Rodney': 'Nurse', 'Ian Tracey': 'Rolling Stone Editor'}" tt0822854,"{'Mark Wahlberg': 'Bob Lee Swagger', 'Michael Peña': 'Nick Memphis', 'Danny Glover': 'Colonel Isaac Johnson', 'Kate Mara': 'Sarah Fenn', 'Elias Koteas': 'Jack Payne', 'Rhona Mitra': 'Alourdes Galindo', 'Jonathan Walker': 'Louis Dobbler', 'Louis Ferreira': 'Howard Purnell (as Justin Louis)', 'Tate Donovan': 'Russ Turner', 'Rade Serbedzija': 'Michael Sandor (as Rade Sherbedgia)', 'A.C. Peterson': 'Officer Stanley Timmons (as Alan C. Peterson)', 'Ned Beatty': 'Senator Charles F. Meachum', 'Lane Garrison': 'Donnie Fenn', 'Zak Santiago': 'Senior Agent', 'Michael-Ann Connor': 'Junior Agent'}" tt0054331,"{'Kirk Douglas': 'Spartacus', 'Laurence Olivier': 'Crassus', 'Jean Simmons': 'Varinia', 'Charles Laughton': 'Gracchus', 'Peter Ustinov': 'Batiatus', 'John Gavin': 'Julius Caesar', 'Nina Foch': 'Helena Glabrus', 'John Ireland': 'Crixus', 'Herbert Lom': 'Tigranes Levantus', 'John Dall': 'Marcus Publius Glabrus', 'Charles McGraw': 'Marcellus', 'Joanna Barnes': 'Claudia Marius', 'Harold J. Stone': 'David', 'Woody Strode': 'Draba', 'Peter Brocco': 'Ramon'}" tt0102975,"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'Nichelle Nichols': 'Uhura', 'George Takei': 'Sulu', 'Kim Cattrall': 'Lt. Valeris', 'Mark Lenard': 'Sarek', 'Grace Lee Whitney': 'Excelsior Communications Officer', 'Brock Peters': 'Admiral Cartwright', 'Leon Russom': 'Chief in Command', 'Kurtwood Smith': 'Federation President', 'Christopher Plummer': 'Chang', 'Rosanna DeSoto': 'Azetbur (as Rosana DeSoto)'}" tt0486655,"{'Ian McKellen': 'Narrator (voice)', 'Bimbo Hart': 'Young Scientist', 'Alastair MacIntosh': 'Victorian Academic', 'David Kelly': 'Guard', 'Ben Barnes': 'Young Dunstan Thorn', 'Kate Magowan': 'Slave Girl / Una', 'Melanie Hill': 'Ditchwater Sal', 'Charlie Cox': 'Tristan Thorn', 'Sienna Miller': 'Victoria', 'Henry Cavill': 'Humphrey', 'Nathaniel Parker': 'Dunstan Thorn', 'Darby Hawker': 'Grumpy Customer', 'Frank Ellis': 'Mr. Monday', ""Peter O'Toole"": 'King', 'Mark Strong': 'Septimus'}" tt0402022,"{'Charlize Theron': 'Aeon Flux', 'Marton Csokas': 'Trevor Goodchild', 'Jonny Lee Miller': 'Oren Goodchild', 'Sophie Okonedo': 'Sithandra', 'Frances McDormand': 'Handler', 'Pete Postlethwaite': 'Keeper', 'Amelia Warner': 'Una Flux', 'Caroline Chikezie': 'Freya', 'Nikolai Kinski': 'Claudius', 'Paterson Joseph': 'Giroux', 'Yangzom Brauen': 'Inari', ""Aoibheann O'Hara"": 'Scientist', 'Thomas Huber': 'Scientist', 'Weijian Liu': 'Scientist', 'Maverick Quek': 'Chemist'}" tt0116209,"{'Ralph Fiennes': 'Almásy', 'Juliette Binoche': 'Hana', 'Willem Dafoe': 'Caravaggio', 'Kristin Scott Thomas': 'Katharine Clifton', 'Naveen Andrews': 'Kip', 'Colin Firth': 'Geoffrey Clifton', 'Julian Wadham': 'Madox', 'Jürgen Prochnow': 'Major Muller', 'Kevin Whately': 'Hardy', 'Clive Merrison': 'Fenelon-Barnes', 'Nino Castelnuovo': ""D'Agostino"", 'Hichem Rostom': 'Fouad', 'Peter Rühring': 'Bermann', 'Geordie Johnson': 'Oliver', 'Torri Higginson': 'Mary'}" tt0068646,"{'Marlon Brando': 'Don Vito Corleone', 'Al Pacino': 'Michael Corleone', 'James Caan': 'Sonny Corleone', 'Richard S. Castellano': 'Clemenza (as Richard Castellano)', 'Robert Duvall': 'Tom Hagen', 'Sterling Hayden': 'Capt. McCluskey', 'John Marley': 'Jack Woltz', 'Richard Conte': 'Barzini', 'Al Lettieri': 'Sollozzo', 'Diane Keaton': 'Kay Adams', 'Abe Vigoda': 'Tessio', 'Talia Shire': 'Connie', 'Gianni Russo': 'Carlo', 'John Cazale': 'Fredo', 'Rudy Bond': 'Cuneo'}" tt0071577,"{'Robert Redford': 'Jay Gatsby', 'Mia Farrow': 'Daisy Buchanan', 'Bruce Dern': 'Tom Buchanan', 'Karen Black': 'Myrtle Wilson', 'Scott Wilson': 'George Wilson', 'Sam Waterston': 'Nick Carraway', 'Lois Chiles': 'Jordan Baker', 'Howard Da Silva': 'Meyer Wolfsheim', 'Roberts Blossom': 'Mr. Gatz', 'Edward Herrmann': 'Klipspringer', 'Elliott Sullivan': ""Wilson's Friend"", 'Arthur Hughes': 'Dog Vendor', 'Kathryn Leigh Scott': 'Catherine', 'Beth Porter': 'Mrs. McKee', 'Paul Tamarin': 'Mr. McKee'}" tt0368008,"{'Jeffrey Wright': 'Al Melvin', 'Pablo Schreiber': 'Eddie Ingram', 'Anthony Mackie': 'Robert Baker', 'Dorian Missick': 'Owens', 'Jose Pablo Cantillo': 'Villalobos', 'Teddy Dunn': 'Wilson', 'Joaquin Perez-Campbell': 'Atkins', 'Tim Artz': 'Jameson', 'Denzel Washington': 'Ben Marco', 'Robyn Hitchcock': 'Laurent Tokar', 'Liev Schreiber': 'Raymond Shaw', 'Antoine Taylor': 'Boy Scout #1', 'Joe Alessi': 'Boy Scout #2 (as Joseph Alessi)', 'Raymond Anthony Thomas': 'Scout Dad (as Ray Anthony Thomas)', 'Bill Irwin': 'Scoutmaster'}" tt0469641,"{'Nicolas Cage': 'John McLoughlin', 'Maria Bello': 'Donna McLoughlin', 'Connor Paolo': 'Steven McLoughlin', 'Anthony Piccininni': 'JJ McLoughlin', 'Alexa Gerasimovich': 'Erin McLoughlin', 'Morgan Flynn': 'Caitlin McLoughlin', 'Michael Peña': 'Will Jimeno', 'Armando Riesco': 'Antonio Rodrigues', 'Jay Hernandez': 'Dominick Pezzulo', 'Joe Starr': 'Subway Rider', 'Jon Bernthal': 'Christopher Amoroso', 'William Jimeno': 'Port Authority Officer (as Will Jimeno)', 'Nick Damici': 'Lieutenant Kassimatis', 'Jude Ciccolella': 'Inspector Fields', 'Martin Pfefferkorn': 'Homeless Addict #1'}" tt0116367,"{'George Clooney': 'Seth Gecko', 'Quentin Tarantino': 'Richard Gecko', 'Harvey Keitel': 'Jacob Fuller', 'Juliette Lewis': 'Kate Fuller', 'Ernest Liu': 'Scott Fuller', 'Salma Hayek': 'Santanico Pandemonium', 'Cheech Marin': 'Border Guard / Chet Pussy / Carlos', 'Danny Trejo': 'Razor Charlie', 'Tom Savini': 'Sex Machine', 'Fred Williamson': 'Frost', 'Michael Parks': 'Texas Ranger Earl McGraw', 'Brenda Hillhouse': 'Hostage Gloria Hill', 'John Saxon': 'FBI Agent Stanley Chase', 'Marc Lawrence': 'Old Timer Motel Owner', 'Kelly Preston': 'Newscaster Kelly Houge'}" tt0109445,"{""Brian O'Halloran"": 'Dante Hicks', 'Jeff Anderson': 'Randal Graves', 'Marilyn Ghigliotti': 'Veronica', 'Lisa Spoonauer': 'Caitlin Bree', 'Jason Mewes': 'Jay', 'Kevin Smith': 'Silent Bob', 'Scott Mosier': 'Willam the Idiot Manchild / Angry Hockey-Playing Customer / Angry Mourner', 'Scott Schiaffo': 'Chewlies Rep', 'Al Berkowitz': 'Old Man', 'Walter Flanagan': 'Woolen Cap Smoker / Egg Man / Offended Customer / Cat-Admiring Bitter Customer (as Walt Flanagan)', 'Ed Hapstak': 'Sanford / Angry Mourner', 'Lee Bendick': '#812 Wynarski', 'David Klein': 'Hunting Cap Smoking Boy / Low I.Q. Video Customer / Hubcap Searching Customer / Angry Mourner / Angry Crowd at Door', 'Pattijean Csik': 'Coroner', 'Ken Clark': 'Administer of Fine / Orderly'}" tt0219653,"{'Gerard Butler': 'Dracula', 'Christopher Plummer': 'Abraham Van Helsing', 'Jonny Lee Miller': 'Simon Sheppard', 'Justine Waddell': 'Mary Heller-Van Helsing', 'Vitamin C': 'Lucy Westerman (as Colleen Ann Fitzpatrick)', 'Jennifer Esposito': 'Solina', 'Omar Epps': 'Marcus', 'Sean Patrick Thomas': 'Trick', 'Danny Masterson': 'Nightshade', 'Lochlyn Munro': 'Eddie', 'Tig Fong': 'Dax', 'Tony Munch': 'Charlie', 'Jeri Ryan': 'Valerie Sharpe', 'Shane West': 'JT', 'Nathan Fillion': 'Father David'}" tt0068767,"{'Bruce Lee': 'Chen Zhen', 'Nora Miao': 'Yuan Le-erh (as Miao Ker Hsiu)', 'James Tien': 'Fan Chun-hsia', 'Maria Yi': 'Yen', 'Robert Baker': 'Petrov', 'Fu Ching Chen': 'Chao', 'Shan Chin': 'Tung', 'Ying-Chieh Han': 'Feng Kwai-sher', 'Chikara Hashimoto': 'Hiroshi Suzuki (as Riki Hashimoto)', 'Jun Katsumura': ""Suzuki's bodyguard"", 'Chung-Hsin Huang': 'Tien', 'Kun Li': 'Hsu (as Quin Lee)', 'Feng Tien': 'Fan', 'Ying-Chi Li': 'Li (as Yin Chi Lee)', 'Tony Liu': 'Chin'}" tt0112346,"{'Michael Douglas': 'Andrew Shepherd', 'Annette Bening': 'Sydney Ellen Wade', 'Martin Sheen': 'A.J. MacInerney', 'Michael J. Fox': 'Lewis Rothschild', 'Anna Deavere Smith': 'Robin McCall', 'Samantha Mathis': 'Janie Basdin', 'Shawna Waldron': 'Lucy Shepherd', 'David Paymer': 'Leon Kodak', 'Anne Haney': 'Mrs. Chapil', 'Richard Dreyfuss': 'Senator Rumson', 'Nina Siemaszko': 'Beth Wade', 'Wendie Malick': 'Susan Sloan', 'Beau Billingslea': 'Agent Cooper', 'Gail Strickland': 'Esther MacInerney', 'Joshua Malina': 'David'}" tt0091042,"{'Matthew Broderick': 'Ferris Bueller', 'Alan Ruck': 'Cameron Frye', 'Mia Sara': 'Sloane Peterson', 'Jeffrey Jones': 'Ed Rooney', 'Jennifer Grey': 'Jeanie Bueller', 'Cindy Pickett': 'Katie Bueller', 'Lyman Ward': 'Tom Bueller', 'Edie McClurg': 'Grace', 'Charlie Sheen': 'Boy in Police Station', 'Ben Stein': 'Economics Teacher', 'Del Close': 'English Teacher', 'Virginia Capers': 'Florence Sparrow', 'Richard Edson': 'Garage Attendant', 'Larry Flash Jenkins': ""Attendant's Co-Pilot"", 'Kristy Swanson': 'Simone Adamley'}" tt0266489,"{'Ben Stiller': 'Alex Rose', 'Drew Barrymore': 'Nancy Kendricks', 'Eileen Essell': 'Mrs. Connelly', 'Harvey Fierstein': 'Kenneth', 'Justin Theroux': 'Coop', 'James Remar': 'Chick', 'Robert Wisdom': 'Officer Dan', 'Swoosie Kurtz': 'Jean', 'Wallace Shawn': 'Herman', 'Maya Rudolph': 'Tara', 'Amber Valletta': 'Celine', 'Cheryl Klein': 'Ginger', 'Tim Maculan': 'Terrence', 'Jackie Sandler': 'Bartender (as Jackie Titone)', 'Evgeniy Lazarev': 'Mr. Dzerzhinsky (as Eugene Lazarev)'}" tt0255477,"{'Roberto Benigni': 'Pinocchio', 'Nicoletta Braschi': 'Blue Fairy', 'Mino Bellei': 'Medoro', 'Carlo Giuffrè': 'Geppetto', 'Peppe Barra': 'The Talking Cricket', 'Franco Javarone': 'Mangiafuoco', 'Max Cavallari': 'The Cat', 'Bruno Arena': 'The Fox', 'Corrado Pani': 'Giudice', 'Kim Rossi Stuart': 'Lucignolo', 'Luis Molteni': 'Omino di burro', 'Alessandro Bergonzoni': 'Ringmaster', 'Alfredo Cavazzoni': 'Carabiniere 1', 'Vincenzo Bonanno': 'Carabiniere 2', 'Marco Tullio Cau': 'Carabiniere 3'}" tt0047396,"{'James Stewart': ""L.B. 'Jeff' Jefferies"", 'Grace Kelly': 'Lisa Carol Fremont', 'Wendell Corey': 'Det. Lt. Thomas J. Doyle', 'Thelma Ritter': 'Stella', 'Raymond Burr': 'Lars Thorwald', 'Judith Evelyn': 'Miss Lonelyhearts', 'Ross Bagdasarian': 'Songwriter', 'Georgine Darcy': 'Miss Torso', 'Sara Berner': 'Woman on Fire Escape', 'Frank Cady': 'Man on Fire Escape', 'Jesslyn Fax': 'Miss Hearing Aid', 'Rand Harper': 'Newlywed', 'Irene Winston': 'Mrs. Emma Thorwald', 'Havis Davenport': 'Newlywed'}" tt0110005,"{'Melanie Lynskey': 'Pauline Parker', 'Kate Winslet': 'Juliet Hulme', 'Sarah Peirse': 'Honora Parker Rieper', 'Diana Kent': 'Hilda Hulme', 'Clive Merrison': 'Dr. Henry Hulme', ""Simon O'Connor"": 'Herbert Rieper', 'Jed Brophy': 'John / Nicholas', 'Peter Elliott': 'Bill Perry', 'Gilbert Goldie': 'Dr. Bennett', 'Geoffrey Heath': 'Rev. Norris', 'Kirsti Ferry': 'Wendy', 'Ben Skjellerup': 'Jonathan Hulme', 'Darien Takle': 'Miss Stewart', 'Elizabeth Moody': 'Miss Waller', 'Liz Mullane': 'Mrs. Collins'}" tt1253596,"{'Rick Howland': 'Big Red Bush', 'Mark Hapka': 'Little Richard Bush', 'Akie Kotabe': 'Deng Mann', 'Brittney Powell': 'Bonnie', 'Paul Rae': 'Eddie Slaten', 'Russell': 'Russell', 'Bob Bledsoe': 'Ira Cohen / Spartan Man', 'Kayla Carlyle': 'Sam', 'Joe Onoffo': 'Geoffrey', 'Josh Sussman': 'Bunny', 'Leamone': 'Leamone', 'Richard Trapp': 'Gator', 'P.J. Marino': 'Rod / Taco', 'Terra Jole': 'Leanne', 'Jason Mewes': 'Sheriff (unmasked)'}" tt0088850,"{'Richard Pryor': 'Montgomery Brewster', 'John Candy': 'Spike Nolan', 'Lonette McKee': 'Angela Drake', 'Stephen Collins': 'Warren Cox', 'Jerry Orbach': 'Charley Pegler', 'Pat Hingle': 'Edward Roundfield', 'Tovah Feldshuh': 'Marilyn', 'Hume Cronyn': 'Rupert Horn', 'Joe Grifasi': 'J.B. Donaldo', 'Peter Jason': 'Chuck Fleming', 'David White': 'George Granville', 'Jerome Dempsey': 'Norris Baxter', 'David Wohl': 'Eugene Provost', 'Ji-Tu Cumbuka': 'Melvin', 'Milt Kogan': 'Heller'}" tt0133751,"{'Jordana Brewster': 'Delilah Profitt', 'Clea DuVall': ""Stokely 'Stokes' Mitchell"", 'Laura Harris': 'Marybeth Louise Hutchinson', 'Josh Hartnett': 'Zeke Tyler', 'Shawn Hatosy': 'Stan Rosado', 'Salma Hayek': 'Nurse Rosa Harper', 'Famke Janssen': 'Miss Elizabeth Burke', 'Piper Laurie': 'Mrs. Karen Olson', 'Christopher McDonald': 'Mr. Frank Connor (as Chris McDonald)', 'Bebe Neuwirth': 'Principal Valerie Drake', 'Robert Patrick': 'Coach Joe Willis', 'Usher Raymond': 'Gabe Santora', 'Jon Stewart': 'Prof. Edward Furlong', 'Daniel von Bargen': 'Mr. John Tate', 'Elijah Wood': 'Casey Connor'}" tt0077416,"{'Robert De Niro': 'Michael', 'John Cazale': 'Stan', 'John Savage': 'Steven', 'Christopher Walken': 'Nick', 'Meryl Streep': 'Linda', 'George Dzundza': 'John', 'Chuck Aspegren': 'Axel', 'Shirley Stoler': ""Steven's Mother"", 'Rutanya Alda': 'Angela', 'Pierre Segui': 'Julien', 'Mady Kaplan': ""Axel's Girl"", 'Amy Wright': 'Bridesmaid', 'Mary Ann Haenel': ""Stan's Girl"", 'Richard Kuss': ""Linda's Father"", 'Joe Grifasi': 'Bandleader'}" tt0090305,"{'Anthony Michael Hall': 'Gary Wallace', 'Kelly LeBrock': 'Lisa', 'Ilan Mitchell-Smith': 'Wyatt Donnelly', 'Bill Paxton': 'Chet Donnelly', 'Suzanne Snyder': 'Deb', 'Judie Aronson': 'Hilly', 'Robert Downey Jr.': 'Ian (as Robert Downey)', 'Robert Rusler': 'Max', 'Vernon Wells': 'Lord General', 'Britt Leach': 'Al Wallace', 'Barbara Lang': 'Lucy Wallace', 'Michael Berryman': 'Mutant Biker', 'Ivor Barry': 'Henry Donnelly', 'Ann Coyle': 'Carmen Donnelly (as Anne Bernadette Coyle)', 'Suzy J. Kellems': 'Gymnast'}" tt0384642,"{'Will Ferrell': 'Phil Weston', 'Robert Duvall': 'Buck Weston', 'Mike Ditka': 'Mike Ditka', 'Kate Walsh': 'Barbara Weston', 'Musetta Vander': 'Janice Weston', 'Dylan McLaughlin': 'Sam Weston', 'Josh Hutcherson': 'Bucky Weston', 'Steven Anthony Lawrence': 'Mark Avery', 'Jeremy Bergman': 'Hunter', 'Elliott Cho': 'Byong Sun (as Elliot Cho)', 'Erik Walker': 'Ambrose', 'Dallas McKinney': 'Connor', 'Francesco Liotti': 'Gian Piero', 'Alessandro Ruggiero': 'Massimo', 'Sammy Fine': 'Jack'}" tt0107076,"{'Chuck Pfarrer': 'Douglas Binder', 'Robert Apisa': 'Mr. Lopacki (as Bob Apisa)', 'Arnold Vosloo': 'Pik van Cleef', 'Lance Henriksen': 'Emil Fouchon', 'Douglas Rye': 'Frick (as Douglas Forsythe Rye)', 'Mike Leinert': 'Frack (as Michael D. Leinert)', 'Yancy Butler': ""Natasha 'Nat' Binder"", 'Lenore Banks': 'Marie', 'Willie C. Carpenter': 'Elijah Roper (as Willie Carpenter)', 'Jean-Claude Van Damme': 'Chance Boudreaux', 'Barbara Tasker': 'Waitress', 'Kasi Lemmons': 'Det. Marie Mitchell', 'Randy Cheramie': 'Shop Steward', 'Eliott Keener': 'Randal Poe', 'Robert Pavlovich': 'Detective'}" tt0106332,"{'Leslie Cheung': 'Cheng Dieyi (segment ""Douzi"")', 'Fengyi Zhang': 'Duan Xiaolou (segment ""Shitou"")', 'Li Gong': 'Juxian', 'Qi Lü': 'Master Guan', 'Da Ying': 'Manager', 'You Ge': 'Master Yuan', 'Han Lei': 'Xiao Si (adult)', 'Di Tong': 'Zhang the Eunuch', 'Zhi Yin': 'Douzi as a Teenager', 'Mingwei Ma': 'Douzi as a Child', 'Hailong Zhao': 'Shitou as a Teenager', 'Yang Fei': 'Shitou as a Child', 'Dan Li': 'Laizi / Peking Opera schoolboy', 'Yongchao Yang': 'Laizi as a Child', 'Fei Huang': 'Old Master'}" tt0082198,"{'Arnold Schwarzenegger': 'Conan', 'James Earl Jones': 'Thulsa Doom', 'Max von Sydow': 'King Osric (as Max Von Sydow)', 'Sandahl Bergman': 'Valeria', 'Ben Davidson': 'Rexor', 'Cassandra Gava': 'The Witch (as Cassandra Gaviola)', 'Gerry Lopez': 'Subotai', 'Mako': 'The Wizard / Narrator', 'Valérie Quennessen': 'The Princess (as Valerie Quennessen)', 'William Smith': ""Conan's Father"", 'Luis Barboo': 'Red Hair', 'Franco Columbu': 'Pictish Scout', 'Leslie Foldvary': 'Sacrificial Snake Girl', 'Gary Herman': ""Osric's Guard"", 'Erik Holmey': 'Turanian War Officer (as Erick Holmey)'}" tt0765429,"{'Denzel Washington': 'Frank Lucas', 'Russell Crowe': 'Richie Roberts', 'Chiwetel Ejiofor': 'Huey Lucas', 'Josh Brolin': 'Detective Trupo', 'Lymari Nadal': 'Eva', 'Ted Levine': 'Lou Toback', 'Roger Guenveur Smith': 'Nate', 'John Hawkes': 'Freddie Spearman', 'RZA': 'Moses Jones', 'Yul Vazquez': 'Alfonse Abruzzo', 'Malcolm Goodwin': 'Jimmy Zee', 'Ruby Dee': 'Mama Lucas', 'Ruben Santiago-Hudson': 'Doc', 'Carla Gugino': 'Laurie Roberts', 'Skyler Fortgang': 'Michael Roberts'}" tt0080761,"{'Betsy Palmer': 'Mrs. Voorhees', 'Adrienne King': 'Alice', 'Jeannine Taylor': 'Marcie', 'Robbi Morgan': 'Annie', 'Kevin Bacon': 'Jack', 'Harry Crosby': 'Bill', 'Laurie Bartram': 'Brenda', 'Mark Nelson': 'Ned', 'Peter Brouwer': 'Steve Christy', 'Rex Everhart': 'The Truck Driver', 'Ronn Carroll': 'Sgt. Tierney', 'Ron Millkie': 'Officer Dorf', 'Walt Gorney': 'Crazy Ralph', 'Willie Adams': 'Barry', 'Debra S. Hayes': 'Claudette'}" tt0120694,"{'Jamie Lee Curtis': 'Laurie Strode / Keri Tate', 'Adam Arkin': 'Will Brennan', 'Michelle Williams': 'Molly', 'Adam Hann-Byrd': 'Charlie', ""Jodi Lyn O'Keefe"": 'Sarah', 'Janet Leigh': 'Norma', 'Josh Hartnett': 'John', 'LL Cool J': 'Ronny', 'Joseph Gordon-Levitt': 'Jimmy', 'Branden Williams': 'Tony', 'Nancy Stephens': 'Marion', 'Beau Billingslea': 'Fitz', 'Matt Winston': 'Matt', 'Larisa Miller': 'Claudia', 'Emmalee Thompson': 'Casey'}" tt0216787,"{'Anne Alvaro': 'Clara Devaux', 'Jean-Pierre Bacri': 'Jean-Jacques Castella', 'Alain Chabat': 'Bruno Deschamps', 'Agnès Jaoui': 'Manie', 'Gérard Lanvin': 'Franck Moreno', 'Christiane Millet': 'Angélique', 'Wladimir Yordanoff': 'Antoine', 'Anne Le Ny': ""Valérie, l'habilleuse"", 'Brigitte Catillon': 'Béatrice Castella', 'Raphaël Dufour': 'Benoît', 'Xavier de Guillebon': 'Weber', 'Céline Arnaud': 'Virginie', 'Robert Bacri': 'Le père de Castella', 'Marie Agnès Brigot': 'La secrétaire de Castella (as Marie-Agnès Brigot)'}" tt0238380,"{'Christian Bale': 'John Preston', 'Dominic Purcell': 'Seamus', 'Sean Bean': 'Partridge', 'Christian Kahrmann': 'Officer in Charge', 'John Keogh': 'Chemist', 'Sean Pertwee': 'Father', 'William Fichtner': 'Jurgen', 'Angus Macfadyen': 'Dupont (as Angus MacFadyen)', 'David Barrash': 'Evidentiary Storage Officer', 'Dirk Martens': 'Gate Guard', 'Taye Diggs': 'Brandt', 'Matthew Harbour': 'Robbie Preston', 'Maria Pia Calzone': ""Preston's Wife"", 'Emily Siewert': 'Lisa Preston', 'Emily Watson': ""Mary O'Brien""}" tt0169547,"{'Kevin Spacey': 'Lester Burnham', 'Annette Bening': 'Carolyn Burnham', 'Thora Birch': 'Jane Burnham', 'Wes Bentley': 'Ricky Fitts', 'Mena Suvari': 'Angela Hayes', 'Peter Gallagher': 'Buddy Kane', 'Allison Janney': 'Barbara Fitts', 'Chris Cooper': 'Colonel Fitts', 'Scott Bakula': 'Jim Olmeyer', 'Sam Robards': 'Jim Berkley', 'Barry Del Sherman': 'Brad', 'Ara Celi': 'Sale House Woman #1', 'John Cho': 'Sale House Man #1', 'Fort Atkinson': 'Sale House Man #2', 'Sue Casey': 'Sale House Woman #2'}" tt0230600,"{'Nicole Kidman': 'Grace', 'Fionnula Flanagan': 'Mrs. Mills', 'Christopher Eccleston': 'Charles', 'Alakina Mann': 'Anne', 'James Bentley': 'Nicholas', 'Eric Sykes': 'Mr. Tuttle', 'Elaine Cassidy': 'Lydia', 'Renée Asherson': 'Old Lady', 'Gordon Reid': 'Assistant', 'Keith Allen': 'Mr. Marlish', 'Michelle Fairley': 'Mrs. Marlish', 'Alexander Vince': 'Victor', 'Ricardo López': '2nd Assistant', 'Aldo Grilo': 'Gardener'}" tt0357413,"{'Will Ferrell': 'Ron Burgundy', 'Christina Applegate': 'Veronica Corningstone', 'Paul Rudd': 'Brian Fantana', 'Steve Carell': 'Brick Tamland', 'David Koechner': 'Champ Kind', 'Fred Willard': 'Ed Harken', 'Chris Parnell': 'Garth Holliday', 'Kathryn Hahn': 'Helen', 'Fred Armisen': 'Tino', 'Seth Rogen': 'Eager Cameraman', 'Paul F. Tompkins': 'MC', 'Danny Trejo': 'Bartender', 'Scot Robinson': ""Waiter at Tino's"", 'Ian Roberts': 'Stage Manager', 'Darcy Donavan': 'Hot Blonde'}" tt0079945,"{'William Shatner': 'Capt. James T. Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'Dr. McCoy', 'James Doohan': 'Scotty', 'George Takei': 'Sulu', 'Majel Barrett': 'Dr. Chapel', 'Walter Koenig': 'Chekov', 'Nichelle Nichols': 'Uhura', 'Persis Khambatta': 'Ilia', 'Stephen Collins': 'Decker', 'Grace Lee Whitney': 'Janice Rand', 'Mark Lenard': 'Klingon Captain', 'Billy Van Zandt': 'Alien Boy', 'Roger Aaron Brown': 'Epsilon Technician', 'Gary Faga': 'Airlock Technician'}" tt0106918,"{'Tom Cruise': 'Mitch McDeere', 'Jeanne Tripplehorn': 'Abby McDeere', 'Gene Hackman': 'Avery Tolar', 'Hal Holbrook': 'Oliver Lambert', 'Terry Kinney': 'Lamar Quinn', 'Wilford Brimley': 'William Devasher', 'Ed Harris': 'Wayne Tarrance', 'Holly Hunter': 'Tammy Hemphill', 'David Strathairn': 'Ray McDeere', 'Gary Busey': 'Eddie Lomax', 'Steven Hill': 'F. Denton Voyles', 'Tobin Bell': 'The Nordic Man', 'Barbara Garrick': 'Kay Quinn', 'Jerry Hardin': 'Royce McKnight', 'Paul Calderon': 'Thomas Richie'}" tt0357413,"{'Will Ferrell': 'Ron Burgundy', 'Christina Applegate': 'Veronica Corningstone', 'Paul Rudd': 'Brian Fantana', 'Steve Carell': 'Brick Tamland', 'David Koechner': 'Champ Kind', 'Fred Willard': 'Ed Harken', 'Chris Parnell': 'Garth Holliday', 'Kathryn Hahn': 'Helen', 'Fred Armisen': 'Tino', 'Seth Rogen': 'Eager Cameraman', 'Paul F. Tompkins': 'MC', 'Danny Trejo': 'Bartender', 'Scot Robinson': ""Waiter at Tino's"", 'Ian Roberts': 'Stage Manager', 'Darcy Donavan': 'Hot Blonde'}" tt0099810,"{'Sean Connery': 'Marko Ramius', 'Alec Baldwin': 'Jack Ryan', 'Scott Glenn': 'Bart Mancuso', 'Sam Neill': 'Captain Borodin', 'James Earl Jones': 'Admiral Greer', 'Joss Ackland': 'Andrei Lysenko', 'Richard Jordan': 'Jeffrey Pelt', 'Peter Firth': 'Ivan Putin', 'Tim Curry': 'Dr. Petrov', 'Courtney B. Vance': 'Seaman Jones', 'Stellan Skarsgård': 'Captain Tupolev', 'Jeffrey Jones': 'Skip Tyler', 'Timothy Carhart': 'Bill Steiner', 'Larry Ferguson': 'Chief of the Boat', 'Fred Dalton Thompson': 'Admiral Painter'}" tt0120815,"{'Tom Hanks': 'Captain Miller', 'Tom Sizemore': 'Sergeant Horvath', 'Edward Burns': 'Private Reiben', 'Barry Pepper': 'Private Jackson', 'Adam Goldberg': 'Private Mellish', 'Vin Diesel': 'Private Caparzo', 'Giovanni Ribisi': 'T-4 Medic Wade', 'Jeremy Davies': 'Corporal Upham', 'Matt Damon': 'Private Ryan', 'Ted Danson': 'Captain Hamill', 'Paul Giamatti': 'Sergeant Hill', 'Dennis Farina': 'Lieutenant Colonel Anderson', 'Joerg Stadler': 'Steamboat Willie', 'Max Martini': 'Corporal Henderson (as Maximilian Martini)', 'Dylan Bruno': 'Toynbe'}" tt0119675,"{'Mira Sorvino': 'Dr. Susan Tyler', 'Jeremy Northam': 'Dr. Peter Mann', 'Alexander Goodwin': 'Chuy', 'Giancarlo Giannini': 'Manny', 'Charles S. Dutton': 'Leonard', 'Josh Brolin': 'Josh', 'Alix Koromzay': 'Remy', 'F. Murray Abraham': 'Dr. Gates', 'James Costa': 'Ricky', 'Javon Barnwell': 'Davis', 'Norman Reedus': 'Jeremy', 'Pak-Kwong Ho': 'Preacher', 'Glenn Bang': 'Yang (as Glen Bang)', 'Margaret Ma': 'Chinese Woman', 'Warna Fisher': 'Bag Lady'}" tt0449467,"{'Brad Pitt': 'Richard', 'Cate Blanchett': 'Susan', 'Mohamed Akhzam': 'Anwar', 'Peter Wight': 'Tom', 'Harriet Walter': 'Lilly', 'Trevor Martin': 'Douglas', 'Matyelok Gibbs': 'Elyse', 'Georges Bousquet': 'Robert', 'Claudine Acs': 'Jane', 'André Oumansky': 'Walter', 'Michael Maloney': 'James', 'Dermot Crowley': 'Barth', 'Wendy Nottingham': 'Tourist', 'Henry Maratray': 'Tourist', 'Linda Broughton': 'Tourist'}" tt0084726,"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'George Takei': 'Sulu', 'Nichelle Nichols': 'Uhura', 'Bibi Besch': 'Carol', 'Merritt Butrick': 'David', 'Paul Winfield': 'Terrell', 'Kirstie Alley': 'Saavik', 'Ricardo Montalban': 'Khan', 'Ike Eisenmann': 'Preston', 'John Vargas': 'Jedda', 'John Winston': 'Kyle'}" tt0118607,"{'Morgan Freeman': 'Theodore Joadson', 'Nigel Hawthorne': 'Martin Van Buren', 'Anthony Hopkins': 'John Quincy Adams', 'Djimon Hounsou': 'Cinque', 'Matthew McConaughey': 'Roger Sherman Baldwin', 'David Paymer': 'Secretary John Forsyth', 'Pete Postlethwaite': 'Holabird', 'Stellan Skarsgård': 'Tappan', 'Razaaq Adoti': 'Yamba', 'Abu Bakaar Fofanah': 'Fala', 'Anna Paquin': 'Queen Isabella', 'Tomas Milian': 'Calderon', 'Chiwetel Ejiofor': 'Ensign Covey', 'Derrick N. Ashong': 'Buakei', 'Geno Silva': 'Ruiz'}" tt0172495,"{'Russell Crowe': 'Maximus', 'Joaquin Phoenix': 'Commodus', 'Connie Nielsen': 'Lucilla', 'Oliver Reed': 'Proximo', 'Richard Harris': 'Marcus Aurelius', 'Derek Jacobi': 'Gracchus', 'Djimon Hounsou': 'Juba', 'David Schofield': 'Falco', 'John Shrapnel': 'Gaius', 'Tomas Arana': 'Quintus', 'Ralf Moeller': 'Hagen', 'Spencer Treat Clark': 'Lucius', 'David Hemmings': 'Cassius', 'Tommy Flanagan': 'Cicero', 'Sven-Ole Thorsen': 'Tigris'}" tt0401383,"{'Mathieu Amalric': 'Jean-Do', 'Emmanuelle Seigner': 'Céline', 'Marie-Josée Croze': 'Henriette Roi', 'Anne Consigny': 'Claude', 'Patrick Chesnais': 'Le Docteur Lepage', 'Niels Arestrup': 'Roussin', 'Olatz López Garmendia': 'Marie Lopez', 'Jean-Pierre Cassel': 'Père Lucien et le Vendeur', 'Marina Hands': 'Joséphine', 'Max von Sydow': 'Papinou', 'Gérard Watkins': 'Le Docteur Cocheton', 'Théo Sampaio': 'Théophile', 'Fiorella Campanella': 'Céleste', 'Talina Boyaci': 'Hortense', 'Isaach De Bankolé': 'Laurent'}" tt0327679,"{'Anne Hathaway': 'Ella', 'Hugh Dancy': 'Char', 'Cary Elwes': 'Edgar', 'Aidan McArdle': 'Slannen (as Aidan Mcardle)', 'Joanna Lumley': 'Dame Olga', 'Lucy Punch': 'Hattie', 'Jennifer Higham': 'Olive', 'Minnie Driver': 'Mandy', 'Eric Idle': 'Narrator', 'Steve Coogan': 'Heston (voice)', 'Jimi Mistry': 'Benny', 'Vivica A. Fox': 'Lucinda', 'Parminder Nagra': 'Areida', 'Jim Carter': 'Nish', 'Patrick Bergin': 'Sir Peter'}" tt0095765,"{'Antonella Attili': 'Maria Di Vita - Younger', 'Enzo Cannavale': 'Spaccafico', 'Isa Danieli': 'Anna', 'Leo Gullotta': 'Usher', 'Marco Leonardi': ""Salvatore 'Totò' Di Vita - Teenager"", 'Pupella Maggio': 'Maria Di Vita - Older', 'Agnese Nano': 'Elena Mendola', 'Leopoldo Trieste': 'Father Adelfio', 'Salvatore Cascio': ""Salvatore 'Totò' Di Vita - Child"", 'Tano Cimarosa': 'Blacksmith', 'Nicola Di Pinto': 'Village Idiot', 'Roberta Lena': 'Lia', 'Nino Terzo': ""Peppino's Father"", 'Jacques Perrin': ""Salvatore 'Totò' Di Vita - Adult"", 'Philippe Noiret': 'Alfredo'}" tt0468565,"{'Presley Chweneyagae': 'Tsotsi', 'Terry Pheto': 'Miriam', 'Kenneth Nkosi': 'Aap', 'Mothusi Magano': 'Boston', 'Zenzo Ngqobe': 'Butcher', 'Zola': 'Fela', 'Rapulana Seiphemo': 'John Dube', 'Nambitha Mpumlwana': 'Pumla Dube', 'Nonthuthu Sibisi': 'The Baby', 'Ntuthuko Sibisi': 'The Baby', 'Jerry Mofokeng': 'Morris', 'Ian Roberts': 'Captain Smit', 'Percy Matsemela': 'Sergeant Zuma', 'Thembi Nyandeni': 'Soekie', 'Owen Sejake': 'Gumboot Dlamini'}" tt0181875,"{'Billy Crudup': 'Russell Hammond', 'Frances McDormand': 'Elaine Miller', 'Kate Hudson': 'Penny Lane', 'Jason Lee': 'Jeff Bebe', 'Patrick Fugit': 'William Miller', 'Zooey Deschanel': 'Anita Miller', 'Michael Angarano': 'Young William', 'Anna Paquin': 'Polexia Aphrodisia', 'Fairuza Balk': 'Sapphire', 'Noah Taylor': 'Dick Roswell', 'John Fedevich': 'Ed Vallencourt', 'Mark Kozelek': 'Larry Fellows', 'Philip Seymour Hoffman': 'Lester Bangs', 'Liz Stauber': 'Leslie', 'Jimmy Fallon': 'Dennis Hope'}" tt0257044,"{'Tyler Hoechlin': 'Michael Sullivan Jr.', 'Rob Maxey': 'Drugstore Owner', 'Liam Aiken': 'Peter Sullivan', 'Jennifer Jason Leigh': 'Annie Sullivan', 'Tom Hanks': 'Michael Sullivan', 'Paul Newman': 'John Rooney', 'Daniel Craig': 'Connor Rooney', 'Ciarán Hinds': 'Finn McGovern', 'Craig Spidle': ""Rooney's Henchman"", 'Ian Barford': ""Rooney's Henchman"", 'Stephen P. Dunn': ""Finn McGovern's Henchman (as Stephen Dunn)"", 'Paul Turner': ""Finn McGovern's Henchman"", 'Kathleen Keane': 'Irish Musician', 'Brendan McKinney': 'Irish Musician', 'Jackie Moran': 'Irish Musician'}" tt1182609,"{'Dolph Lundgren': 'Mike Riggins', 'Gina May': 'Ana Gale', 'Michael Paré': 'Clive Connelly', 'Bashar Rahal': 'General Drago', 'James Chalke': 'Trent Robbins', 'Vladimir Vladimirov': 'Vlado Karadjov', 'Raicho Vasilev': 'Boris', 'Nikolay Stanoev': 'Gun Dealer', 'Mike Straub': 'Lead Marine Guard', 'Les Weldon': 'Anchorman', 'Yoan Petrov': ""Vlado's Son"", 'Uti Bachvarov': 'Zoran Posternoff', 'Alexander Kadiev': 'Chopper Pilot', 'Teodor Tsolov': 'Janitor', 'Mariana Stansheva': 'Screaming Woman (as Marianne Stanicheva)'}" tt1179904,"{'Katie Featherston': 'Katie', 'Micah Sloat': 'Micah', 'Mark Fredrichs': 'Psychic', 'Amber Armstrong': 'Amber', 'Ashley Palmer': 'Diane'}" tt0302886,"{'Luke Wilson': 'Mitch', 'Will Ferrell': 'Frank', 'Vince Vaughn': 'Beanie', 'Jeremy Piven': 'Pritchard', 'Ellen Pompeo': 'Nicole', 'Juliette Lewis': 'Heidi', 'Leah Remini': 'Lara', 'Perrey Reeves': 'Marissa', 'Craig Kilborn': 'Mark', 'Elisha Cuthbert': 'Darcie', 'Seann William Scott': 'Peppers', 'Matt Walsh': 'Walsh', 'Artie Lange': 'Booker', 'Patrick Fischler': 'Michael', 'Sara Tanaka': 'Megan'}" tt0418279,"{'Shia LaBeouf': 'Sam Witwicky', 'Megan Fox': 'Mikaela Banes', 'Josh Duhamel': 'Captain Lennox', 'Tyrese Gibson': 'USAF Tech Sergeant Epps', 'Rachael Taylor': 'Maggie Madsen', 'Anthony Anderson': 'Glen Whitmann', 'Jon Voight': 'Defense Secretary John Keller', 'John Turturro': 'Agent Simmons', ""Michael O'Neill"": 'Tom Banacheck', 'Kevin Dunn': 'Ron Witwicky', 'Julie White': 'Judy Witwicky', 'Amaury Nolasco': 'ACWO Jorge ""Fig"" Figueroa', 'Zack Ward': 'First Sergeant Donnelly', 'Luis Echagarruga': 'Ranger Team', 'Patrick Mulderrig': 'Ranger Team'}" tt0377109,"{'Naomi Watts': 'Rachel', 'Simon Baker': 'Max Rourke', 'David Dorfman': 'Aidan', 'Elizabeth Perkins': 'Dr. Emma Temple', 'Gary Cole': 'Martin Savide', 'Sissy Spacek': 'Evelyn', 'Ryan Merriman': 'Jake', 'Emily VanCamp': 'Emily', 'Kelly Overton': 'Betsy', 'James Lesure': 'Doctor', 'Daveigh Chase': 'Samara (archive footage)', 'Kelly Stables': 'Evil Samara', 'Cooper Thornton': 'Father of Emily', 'Marilyn McIntyre': 'Mother of Emily', 'Jesse Burch': 'Male Reporter'}" tt0120737,"{'Alan Howard': 'Voice of the Ring (voice)', 'Noel Appleby': 'Everard Proudfoot', 'Sean Astin': 'Sam', 'Sala Baker': 'Sauron', 'Sean Bean': 'Boromir', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Marton Csokas': 'Celeborn', 'Megan Edwards': 'Mrs. Proudfoot', 'Michael Elsworth': 'Gondorian Archivist', 'Mark Ferguson': 'Gil-galad', 'Ian Holm': 'Bilbo', 'Christopher Lee': 'Saruman', 'Lawrence Makoare': 'Lurtz'}" tt0236493,"{'Brad Pitt': 'Jerry Welbach', 'Julia Roberts': 'Samantha Barzel', 'James Gandolfini': 'Winston Baldry', 'J.K. Simmons': 'Ted Slocum', 'Bob Balaban': 'Bernie Nayman', 'Sherman Augustus': 'Well Dressed Black Man', 'Michael Cerveris': 'Frank', 'Gene Hackman': 'Arnold Margolese', 'Richard Coca': 'Car Thief #1', 'David Krumholtz': 'Beck', 'Castulo Guerra': 'Joe the Pawnshop Owner', 'Mayra Serbulo': 'Emanuelle (as Maira Serbulo)', 'Salvador Sánchez': 'Gunsmith', 'Alan Ciangherotti': ""Gunsmith's Assistant (as Alan Cianguerotti)"", 'Melisa Romero': ""Gunsmith's Daughter""}" tt0161081,"{'Michelle Pfeiffer': 'Claire Spencer', 'Katharine Towne': 'Caitlin Spencer', 'Miranda Otto': 'Mary Feur', 'James Remar': 'Warren Feur', 'Harrison Ford': 'Norman Spencer', 'Victoria Bidewell': 'Beatrice', 'Diana Scarwid': 'Jody', 'Dennison Samaroo': 'PhD Student #1', 'Jennifer Tung': 'PhD Student #2', 'Eliott Goretsky': 'Teddy', 'Rachel Singer': 'PhD Student #3', 'Daniel Zelman': 'PhD Student #4', 'Ray Baker': 'Dr. Stan Powell', 'Wendy Crewson': 'Elena', 'Amber Valletta': 'Madison Elizabeth Frank'}" tt0181689,"{'Tom Cruise': 'Chief John Anderton', 'Max von Sydow': 'Director Lamar Burgess', 'Steve Harris': 'Jad', 'Neal McDonough': 'Fletcher', 'Patrick Kilpatrick': 'Knott', 'Jessica Capshaw': 'Evanna', 'Richard Coca': 'Pre-Crime Cop', 'Keith Campbell': 'Pre-Crime Cop', 'Kirk B.R. Woller': 'Pre-Crime Cop', 'Klea Scott': 'Pre-Crime Cop', 'Frank Grillo': 'Pre-Crime Cop', 'Anna Maria Horsford': 'Casey', 'Sarah Simmons': ""Lamar Burgess' Secretary"", 'Eugene Osment': ""Jad's Technician"", 'James Henderson': 'Office Worker'}" tt0325537,"{'Chris Rock': 'Mays Gilliam', 'Bernie Mac': 'Mitch Gilliam', 'Dylan Baker': 'Martin Geller', 'Nick Searcy': 'Brian Lewis', 'Lynn Whitfield': 'Debra Lassiter', 'Robin Givens': 'Kim', 'Tamala Jones': 'Lisa Clark', 'James Rebhorn': 'Senator Bill Arnot', 'Keith David': 'Bernard Cooper', 'Tracy Morgan': 'Meat Man', 'Stephanie March': 'Nikki', 'Robert Stanton': 'Advisor', 'Jude Ciccolella': 'Mr. Earl', 'Nate Dogg': 'Himself', 'Angie Mattson': ""Nate's Girl""}" tt0264464,"{'Leonardo DiCaprio': 'Frank Abagnale Jr.', 'Tom Hanks': 'Carl Hanratty', 'Christopher Walken': 'Frank Abagnale', 'Martin Sheen': 'Roger Strong', 'Nathalie Baye': 'Paula Abagnale', 'Amy Adams': 'Brenda Strong', 'James Brolin': 'Jack Barnes', 'Brian Howe': 'Earl Amdursky', 'Frank John Hughes': 'Tom Fox', 'Steve Eastin': 'Paul Morgan', 'Chris Ellis': 'Special Agent Witkins', 'John Finn': 'Assistant Director Marsh', 'Jennifer Garner': 'Cheryl Ann', 'Nancy Lenehan': 'Carol Strong', 'Ellen Pompeo': 'Marci'}" tt0369339,"{'Tom Cruise': 'Vincent', 'Jamie Foxx': 'Max', 'Jada Pinkett Smith': 'Annie', 'Mark Ruffalo': 'Fanning', 'Peter Berg': 'Richard Weidner', 'Bruce McGill': 'Pedrosa', 'Irma P. Hall': 'Ida', 'Barry Shabaka Henley': 'Daniel', 'Richard T. Jones': 'Traffic Cop #1', 'Klea Scott': 'Fed #1', 'Bodhi Elfman': 'Young Professional Man', 'Debi Mazar': 'Young Professional Woman', 'Javier Bardem': 'Felix', 'Emilio Rivera': 'Paco', 'Jamie McBride': 'Traffic Cop #2'}" tt0120647,"{'Robert Duvall': 'Spurgeon Tanner', 'Téa Leoni': 'Jenny Lerner', 'Elijah Wood': 'Leo Biederman', 'Vanessa Redgrave': 'Robin Lerner', 'Morgan Freeman': 'President Beck', 'Maximilian Schell': 'Jason Lerner', 'James Cromwell': 'Alan Rittenhouse', 'Ron Eldard': 'Oren Monash', 'Jon Favreau': 'Gus Partenza', 'Laura Innes': 'Beth Stanley', 'Mary McCormack': 'Andrea Baker', 'Richard Schiff': 'Don Biederman', 'Leelee Sobieski': 'Sarah Hotchner', 'Blair Underwood': 'Mark Simon', 'Dougray Scott': 'Eric Vennekor'}" tt0399201,"{'Ewan McGregor': 'Lincoln Six Echo / Tom Lincoln', 'Scarlett Johansson': 'Jordan Two Delta / Sarah Jordan', 'Djimon Hounsou': 'Albert Laurent', 'Sean Bean': 'Dr. Bernard Merrick', 'Steve Buscemi': 'James McCord', 'Michael Clarke Duncan': 'Starkweather Two Delta / Jamal Starkweather', 'Ethan Phillips': 'Jones Three Echo', 'Brian Stepanek': 'Gandu Three Echo', 'Noa Tishby': 'Community Announcer', 'Siobhan Flynn': 'Lima One Alpha', 'Troy Blendell': 'Laurent Team Member', 'Jamie McBride': 'Laurent Team Member', 'Kevin McCorkle': 'Laurent Team Member', 'Gary Nickens': 'Laurent Team Member', 'Kathleen Rose Perkins': 'Laurent Team Member'}" tt0942385,"{'Jeff Kahn': 'Snooty Waiter - Fatties Trailer', 'Robert Downey Jr.': 'Kirk Lazarus - Hot LZ', 'Anthony Ruivivar': 'Platoon Sergeant Shot in Head - Hot LZ', 'Jack Black': 'Jeff Portnoy - Hot LZ', 'Jay Baruchel': 'Kevin Sandusky - Hot LZ', 'Brandon T. Jackson': 'Alpa Chino - Hot LZ', 'Ben Stiller': 'Tugg Speedman - Hot LZ', 'Eric Winzenried': 'Chopper Pilot - Hot LZ', 'Steve Coogan': 'Damien Cockburn - Vietnam Crew', 'Valerie Azlynn': ""Damien's Assistant - Vietnam Crew"", 'Matt Levin': 'Cameraperson - Vietnam Crew', 'David Pressman': 'First Assistant Director - Vietnam Crew', 'Amy Stiller': 'Script Supervisor - Vietnam Crew', 'Danny McBride': 'Cody - Vietnam Crew', 'Dempsey Silva': 'Special Effects Assistant - Vietnam Crew'}" tt0177789,"{'Tim Allen': 'Jason Nesmith', 'Sigourney Weaver': 'Gwen DeMarco', 'Alan Rickman': 'Alexander Dane', 'Tony Shalhoub': 'Fred Kwan', 'Sam Rockwell': 'Guy Fleegman', 'Daryl Mitchell': 'Tommy Webber', 'Enrico Colantoni': 'Mathesar', 'Robin Sachs': 'Sarris', 'Patrick Breen': 'Quellek', 'Missi Pyle': 'Laliari', 'Jed Rees': 'Teb', 'Justin Long': 'Brandon', 'Jeremy Howard': 'Kyle', 'Kaitlin Cullum': 'Katelyn', 'Jonathan Feyer': 'Hollister'}" tt0477051,"{'Eddie Murphy': 'Norbit / Rasputia / Mr. Wong', 'Thandie Newton': 'Kate Thomas', 'Terry Crews': 'Big Jack Latimore', 'Clifton Powell': 'Earl Latimore', 'Lester Speight': ""Blue Latimore (as Lester 'Rasta' Speight)"", 'Cuba Gooding Jr.': 'Deion Hughes', 'Eddie Griffin': 'Pope Sweet Jesus', 'Katt Williams': 'Lord Have Mercy', 'Floyd Levine': 'Abe the Tailor', 'Anthony Russell': 'Giovanni', 'Pat Crawford Brown': 'Mrs. Henderson', 'Jeanette Miller': 'Mrs. Coleman', 'Michael Colyar': 'Morris the Barber', 'Marlon Wayans': 'Buster', 'Alexis Rhee': 'Mrs. Ling Ling Wong'}" tt0043014,"{'William Holden': 'Joe Gillis', 'Gloria Swanson': 'Norma Desmond', 'Erich von Stroheim': 'Max Von Mayerling', 'Nancy Olson': 'Betty Schaefer', 'Fred Clark': 'Sheldrake', 'Lloyd Gough': 'Morino', 'Jack Webb': 'Artie Green', 'Franklyn Farnum': 'Undertaker', 'Larry J. Blake': '1st Finance Man (as Larry Blake)', 'Charles Dayton': '2nd Finance Man', 'Cecil B. DeMille': 'Cecil B. DeMille', 'Hedda Hopper': 'Hedda Hopper', 'Buster Keaton': 'Buster Keaton', 'Anna Q. Nilsson': 'Anna Q. Nilsson', 'H.B. Warner': 'H. B. Warner'}" tt0088286,"{'Val Kilmer': 'Nick Rivers', 'Lucy Gutteridge': 'Hillary Flammond', 'Peter Cushing': 'Bookstore Proprietor', 'Jeremy Kemp': 'General Streck', 'Christopher Villiers': 'Nigel', 'Warren Clarke': 'Colonel von Horst', 'Michael Gough': 'Dr. Paul Flammond', 'Harry Ditson': 'Du Quois', 'Jim Carter': 'Déjà Vu', 'Eddie Tagoe': 'Chocolate Mousse', 'Nancy Abrahams': 'Pregnant Woman', 'Omar Sharif': 'Agent Cedric', 'Tristram Jellinek': 'Major Crumpler', 'Billy J. Mitchell': 'Martin', 'Major Wiley': 'Porter'}" tt0080339,"{'Kareem Abdul-Jabbar': 'Roger Murdock (as Kareem Abdul-Jabaar)', 'Lloyd Bridges': 'Steve McCroskey', 'Peter Graves': 'Captain Clarence Oveur', 'Julie Hagerty': 'Elaine Dickinson', 'Robert Hays': 'Ted Striker', 'Leslie Nielsen': 'Dr. Rumack', 'Lorna Patterson': 'Randy', 'Robert Stack': 'Captain Rex Kramer', 'Stephen Stucker': 'Johnny Henshaw-Jacobs', 'Otto': 'Otto', 'Jim Abrahams': 'Religious Zealot #6', 'Frank Ashmore': 'Victor Basta', 'Jonathan Banks': 'Gunderson', 'Craig Berenson': 'Paul Carey', 'Barbara Billingsley': 'Jive Lady'}" tt0091159,"{'Michael Keaton': 'Hunt Stevenson', 'Gedde Watanabe': 'Oishi Kazihiro', 'George Wendt': 'Buster', 'Mimi Rogers': 'Audrey', 'John Turturro': 'Willie', 'Sô Yamamura': 'Mr. Sakamoto (as Soh Yamamura)', 'Sab Shimono': 'Saito', 'Rick Overton': 'Googie', 'Clint Howard': 'Paul', 'Jihmi Kennedy': 'Junior', 'Michelle Johnson': 'Heather DiStefano', 'Rodney Kageyama': 'Ito', 'Rance Howard': 'Mayor Conrad Zwart', 'Patti Yasutake': 'Umeki Kazihiro (as Patti Yasuiake)', 'Jerry Tondo': 'Kazuo'}" tt0115986,"{'Vincent Perez': 'Ashe Corven / The Crow', 'Mia Kirshner': 'Sarah', 'Richard Brooks': 'Judah Earl', 'Iggy Pop': 'Curve', 'Thomas Jane': 'Nemo', 'Vincent Castellanos': 'Spider Monkey', 'Thuy Trang': 'Kali', 'Eric Acosta': 'Danny', 'Ian Dury': 'Noah', 'Tracey Ellis': 'Sybil', 'Beverley Mitchell': 'Grace', 'Aaron Thell Smith': 'Tattoo Customer', 'Alan Gelfant': 'Bassett', 'Shelly Desai': 'Hindu', 'Holley Chant': 'Holly Daze'}" tt0918927,"{'Meryl Streep': 'Sister Aloysius Beauvier', 'Philip Seymour Hoffman': 'Father Brendan Flynn', 'Amy Adams': 'Sister James', 'Viola Davis': 'Mrs. Miller', 'Alice Drummond': 'Sister Veronica', 'Audrie Neenan': 'Sister Raymond', 'Susan Blommaert': 'Mrs. Carson', 'Carrie Preston': 'Christine Hurley', 'John Costelloe': 'Warren Hurley', 'Lloyd Clay Brown': 'Jimmy Hurley', 'Joseph Foster': 'Donald Miller (as Joseph Foster II)', 'Mike Roukis': 'William London', 'Haklar Dezso': 'Zither Player', 'Frank Shanley': 'Kevin', 'Robert Ridgell': 'Organist'}" tt0086465,"{'Denholm Elliott': 'Coleman', 'Dan Aykroyd': 'Louis Winthorpe III', 'Maurice Woods': 'Duke & Duke Employee', 'Richard D. Fisher Jr.': 'Duke & Duke Employee', 'Jim Gallagher': 'Duke & Duke Employee', 'Anthony DiSabatino': 'Duke & Duke Employee', 'Bonnie Behrend': 'Duke & Duke Employee', 'Sunnie Merrill': 'Duke & Duke Employee', 'James Newell': 'Duke & Duke Employee (as Jim Newell)', 'Mary St. John': 'Duke & Duke Employee', 'Bonnie Tremena': 'Duke & Duke Employee', 'David Schwartz': 'Duke & Duke Employee', 'Ralph Bellamy': 'Randolph Duke', 'Don Ameche': 'Mortimer Duke', 'Tom Degidon': 'Duke Domestic'}" tt0093748,"{'Steve Martin': 'Neal Page', 'John Candy': 'Del Griffith', 'Laila Robins': 'Susan Page', 'Michael McKean': 'State Trooper', 'Kevin Bacon': 'Taxi Racer', 'Dylan Baker': 'Owen', 'Carol Bruce': 'Joy', 'Olivia Burnette': 'Marti', 'Diana Douglas': 'Peg', 'Martin Ferrero': 'Second Motel Clerk', 'Larry Hankin': 'Doobie', 'Richard Herd': 'Walt', 'Susan Kellermann': 'Waitress (as Susan Kellerman)', 'Matthew Lawrence': 'Little Neal', 'Edie McClurg': 'Car Rental Agent'}" tt0101272,"{'Anjelica Huston': 'Morticia Addams', 'Raul Julia': 'Gomez Addams', 'Christopher Lloyd': 'Uncle Fester Addams / Gordon Craven', 'Dan Hedaya': 'Tully Alford', 'Elizabeth Wilson': 'Abigail Craven / Dr. Greta Pinder-Schloss', 'Judith Malina': 'Granny', 'Carel Struycken': 'Lurch', 'Dana Ivey': 'Margaret Alford', 'Paul Benedict': 'Judge Womack', 'Christina Ricci': 'Wednesday Addams', 'Jimmy Workman': 'Pugsley Addams', 'Christopher Hart': 'Thing', 'John Franklin': 'Cousin It', 'Tony Azito': 'Digit Addams', 'Douglas Brian Martin': 'Dexter Addams'}" tt0120082,"{'Jada Pinkett Smith': 'Maureen (as Jada Pinkett)', 'Omar Epps': 'Phil', 'Paulette Patterson': 'Usher Giving Out Costumes', 'Rasila Schroeder': 'Screaming Girl Up Aisle', 'Heather Graham': ""'Stab' Casey"", 'Roger Jackson': 'The Voice (voice) (as Roger L. Jackson)', 'Peter Deming': 'Popcorn Boy', 'Molly Gross': 'Theater Girl #1', 'Rebecca McFarland': 'Theater Girl #2', 'Neve Campbell': 'Sidney Prescott', 'Elise Neal': 'Hallie', 'Liev Schreiber': 'Cotton Weary', 'Kevin Williamson': ""Cotton's Interviewer"", 'Sandy Heddings': 'Girl in Dorm Hallway (as Sandy Heddings-Katulka)', 'Dave Allen Clark': 'Reporter Outside Theater'}" tt0106598,"{'Robert Knott': 'Air Traffic Controller', 'Jonathan Penner': 'Captain Air Traffic', 'Whip Hubley': 'F-16 Pilot', 'Dan Aykroyd': 'Beldar Conehead / Donald R. DeCicco', 'Jane Curtin': 'Prymatt Conehead / Mary Margaret DeCicco', 'Howard Napper': 'Ang Pilot', 'Michael Richards': 'Motel Clerk', 'Eddie Griffin': 'Customer', 'Sinbad': 'Otto', 'Phil Hartman': 'Marlax', 'Adam Sandler': 'Carmine', 'Grant Martell': 'Hispanic Man #1', 'Art Bonilla': 'Hispanic Man #2', 'David Spade': 'Eli Turnbull, INS Agent', 'Rosa Maria Briz': 'Hispanic Woman (as Rosa Briz)'}" tt0095705,"{'Leslie Nielsen': 'Frank Drebin', 'Priscilla Presley': 'Jane Spencer', 'Ricardo Montalban': 'Vincent Ludwig', 'George Kennedy': 'Ed Hocken', 'O.J. Simpson': 'Nordberg', 'Susan Beaubian': 'Mrs. Nordberg', 'Nancy Marchand': 'Mayor', 'Raye Birk': 'Pahpshmir', 'Jeannette Charles': 'Queen Elizabeth II', 'Ed Williams': 'Ted Olsen', 'Tiny Ron': 'Al', ""'Weird Al' Yankovic"": ""'Weird Al'"", 'Leslie Maier': ""'Weird Leslie'"", 'Winifred Freedman': 'Stephie', 'Joe Grifasi': 'Foreman'}" tt0112572,"{'Shelley Long': 'Carol Brady', 'Gary Cole': 'Mike Brady', 'Christine Taylor': 'Marcia Brady', 'Christopher Daniel Barnes': 'Greg Brady', 'Jennifer Elise Cox': 'Jan Brady', 'Paul Sutera': 'Peter Brady', 'Olivia Hack': 'Cindy Brady', 'Jesse Lee Soffer': 'Bobby Brady (as Jesse Lee)', 'Henriette Mantel': 'Alice Nelson', 'David Graf': 'Sam Franklin', 'Florence Henderson': 'Grandma', 'Jack Noseworthy': 'Eric Dittmeyer', 'Megan Ward': 'Donna Leonard', 'Jean Smart': 'Mrs. Dena Dittmeyer', 'Michael McKean': 'Mr. Larry Dittmeyer'}" tt1300851,"{'Sean Patrick Flanery': 'Connor MacManus', 'Norman Reedus': 'Murphy MacManus', 'Billy Connolly': 'Poppa', 'Clifton Collins Jr.': 'Romeo', 'Julie Benz': 'Special Agent Eunice Bloom', 'Bob Marley': 'Greenly', 'Brian Mahoney': 'Duffy', 'David Ferry': 'Dolly', 'David Della Rocco': 'Rocco', 'Peter Fonda': 'The Roman', 'Daniel DeSanto': 'Crew Cut', 'Gerard Parkes': 'Doc', 'Matthew Lemche': 'Noah (as Matt Lemche)', 'Robert Mauriell': 'Louie', 'Judd Nelson': 'Concezio Yakavetta'}" tt0066011,"{'Ali MacGraw': 'Jenny', ""Ryan O'Neal"": 'Oliver', 'John Marley': 'Phil', 'Ray Milland': 'Oliver Barrett III', 'Russell Nype': 'Dean Thompson', 'Katharine Balfour': 'Mrs. Barrett (as Katherine Balfour)', 'Sydney Walker': 'Dr. Shapeley', 'Robert Modica': 'Dr. Addison', 'Walker Daniels': ""Ray - Oliver's Roommate"", 'Tommy Lee Jones': ""Hank - Oliver's Roommate (as Tom Lee Jones)"", 'John Merensky': ""Steve - Oliver's Roommate"", 'Andrew Duncan': 'Rev. Blauvelt', 'Charlotte Ford': 'Clerk', 'Sudie Bond': '(as Sudi Bond)', 'Julie Garfield': 'Bystander at Harpsichord Concerto'}" tt0086425,"{'Shirley MacLaine': 'Aurora Greenway', 'Debra Winger': 'Emma Horton', 'Jack Nicholson': 'Garrett Breedlove', 'Danny DeVito': 'Vernon Dahlart', 'Jeff Daniels': 'Flap Horton', 'John Lithgow': 'Sam Burns', 'Lisa Hart Carroll': 'Patsy Clark', 'Betty King': 'Rosie Dunlop (as Betty R. King)', 'Huckleberry Fox': 'Teddy Horton', 'Troy Bishop': 'Tommy Horton', 'Shane Serwin': 'Younger Tommy Horton', 'Megan Morris': 'Melanie Horton', 'Tara Yeakey': 'Baby Melanie', 'Norman Bennett': 'Edward Johnson', 'Jennifer Josey': 'Young Emma'}" tt0102510,"{'Leslie Nielsen': 'Lt. Frank Drebin', 'Priscilla Presley': 'Jane Spencer', 'George Kennedy': 'Ed Hocken', 'O.J. Simpson': 'Nordberg', 'Robert Goulet': 'Quentin Hapsburg', 'Richard Griffiths': 'Dr. Meinheimer / Earl Hacker', 'Jacqueline Brookes': 'Commissioner Brumford', 'Anthony James': 'Hector Savage', 'Lloyd Bochner': 'Baggett', ""Tim O'Connor"": 'Fenzwick', 'Peter Mark Richman': 'Dunwell', 'Ed Williams': 'Ted Olsen', 'John Roarke': 'George Bush', 'Margery Jane Ross': 'Barbara Bush (as Margery Ross)', 'Peter Van Norden': 'John Sununu'}" tt0273923,"{'Colin Hanks': 'Shaun Brumder', 'Jack Black': 'Lance Brumder', 'Schuyler Fisk': 'Ashley', 'Bret Harrison': 'Lonny (as Brett Harrison)', 'Kyle Howard': 'Arlo', 'R.J. Knoll': 'Chad (as RJ Knoll)', ""Catherine O'Hara"": 'Cindy Beugler', 'Mike White': 'Mr. Burke', 'John Lithgow': 'Bud Brumder', 'Lily Tomlin': 'Charlotte Cobb', 'George Murdock': 'Bob Beugler', 'Lillian Hurst': 'Lupe', 'Chevy Chase': 'Principal Harbert', 'Olivia Rosewood': 'Dana', 'Carly Pope': 'Tanya'}" tt0110622,"{'Leslie Nielsen': 'Lt. Frank Drebin', 'Priscilla Presley': 'Jane Spencer', 'George Kennedy': 'Ed Hocken', 'O.J. Simpson': 'Nordberg', 'Fred Ward': 'Rocco', 'Kathleen Freeman': 'Muriel', 'Anna Nicole Smith': 'Tanya', 'Ellen Greene': 'Louise', 'Ed Williams': 'Ted Olsen', 'Raye Birk': 'Papshmir', 'Matt Roe': 'Clayton', 'Wylie Small': 'Defense Attorney', 'Sharon Cornell': 'Stenographer', 'Earl Boen': 'Dr. Eisendrath', 'Jeff Wright': 'Store Manager'}" tt0325258,"{'David Spade': 'Dickie Roberts', 'Mary McCormack': 'Grace Finney', 'Craig Bierko': 'George Finney', 'Scott Terra': 'Sam Finney', 'Jenna Boyd': 'Sally Finney', 'John Farley': 'Referee', 'Bobby Slayton': 'Commentator', 'Michael Buffer': 'Michael Buffer', 'Fred Wolf': ""Dickie's Corner Man"", 'Alyssa Milano': 'Cyndi', 'Emmanuel Lewis': 'Himself', 'Joey Diaz': ""Emmanuel's Entourage (as Joey 'Coco' Diaz)"", 'Kevin Grevioux': ""Emmanuel's Entourage"", 'Brian Clark': 'Guy in Car', 'Leif Garrett': 'Leif Garrett'}" tt0063522,"{'Mia Farrow': 'Rosemary Woodhouse', 'John Cassavetes': 'Guy Woodhouse', 'Ruth Gordon': 'Minnie Castevet', 'Sidney Blackmer': 'Roman Castevet', 'Maurice Evans': 'Hutch', 'Ralph Bellamy': 'Dr. Sapirstein', 'Victoria Vetri': 'Terry (as Angela Dorian)', 'Patsy Kelly': 'Laura-Louise', 'Elisha Cook Jr.': 'Mr. Nicklas (as Elisha Cook)', 'Emmaline Henry': 'Elise Dunstan', 'Charles Grodin': 'Dr. Hill', 'Hanna Landy': 'Grace Cardiff', 'Phil Leeds': 'Dr. Shand (as Philip Leeds)', ""D'Urville Martin"": 'Diego', 'Hope Summers': 'Mrs. Gilmore'}" tt0077631,"{'John Travolta': 'Danny', 'Olivia Newton-John': 'Sandy', 'Stockard Channing': 'Rizzo', 'Jeff Conaway': 'Kenickie', 'Barry Pearl': 'Doody', 'Michael Tucci': 'Sonny', 'Kelly Ward': 'Putzie', 'Didi Conn': 'Frenchie', 'Jamie Donnelly': 'Jan', 'Dinah Manoff': 'Marty', 'Eve Arden': 'Principal McGee', 'Frankie Avalon': 'Teen Angel', 'Joan Blondell': 'Vi', 'Edd Byrnes': 'Vince Fontaine', 'Sid Caesar': 'Coach Calhoun'}" tt0162650,"{'Samuel L. Jackson': 'John Shaft', 'Vanessa Williams': 'Carmen Vasquez', 'Jeffrey Wright': 'Peoples Hernandez', 'Christian Bale': 'Walter Wade, Jr.', 'Busta Rhymes': 'Rasaan', 'Dan Hedaya': 'Jack Roselli', 'Toni Collette': 'Diane Palmieri', 'Richard Roundtree': 'Uncle John Shaft', 'Ruben Santiago-Hudson': 'Jimmy Groves', 'Josef Sommer': 'Curt Fleming', 'Lynne Thigpen': 'Carla Howard', 'Philip Bosco': 'Walter Wade, Sr.', 'Pat Hingle': 'Hon. Dennis Bradford', 'Lee Tergesen': 'Luger', 'Daniel von Bargen': 'Lt. Kearney (as Daniel Von Bargen)'}" tt0104695,"{'Steve Martin': 'Jonas', 'Debra Winger': 'Jane', 'Lolita Davidovich': 'Marva', 'Liam Neeson': 'Will', 'Lukas Haas': 'Boyd', 'Meat Loaf': 'Hoover', 'Philip Seymour Hoffman': 'Matt', 'M.C. Gainey': 'Tiny', 'LaChanze': 'Georgette', 'Delores Hall': 'Ornella', 'John Toles-Bey': 'Titus', 'Albertina Walker': 'Lucille', 'Ricky Dillard': 'Ricky', 'Vince Davis': 'Roger', 'Troy Evans': 'Dade'}" tt0087277,"{'Kevin Bacon': 'Ren', 'Lori Singer': 'Ariel', 'John Lithgow': 'Rev. Shaw Moore', 'Dianne Wiest': 'Vi Moore', 'Chris Penn': 'Willard (as Christopher Penn)', 'Sarah Jessica Parker': 'Rusty', 'John Laughlin': 'Woody', 'Elizabeth Gorcey': 'Wendy Jo', 'Frances Lee McCain': 'Ethel McCormack', 'Jim Youngs': 'Chuck Cranston', 'Douglas Dirkson': 'Burlington Cranston', 'Lynne Marta': 'Lulu Warnicker', 'Arthur Rosenberg': 'Wes Warnicker', 'Timothy Scott': 'Andy Beamis', 'Alan Haufrect': 'Coach Roger Dunbar'}" tt0082766,"{'Faye Dunaway': 'Joan Crawford', 'Diana Scarwid': 'Christina Crawford (Adult)', 'Steve Forrest': 'Greg Savitt', 'Howard Da Silva': 'L.B. Mayer', 'Mara Hobel': 'Christina Crawford (Child)', 'Rutanya Alda': 'Carol Ann', 'Harry Goz': 'Al Steele', 'Michael Edwards': 'Ted Gelber', 'Jocelyn Brando': 'Barbara Bennett', 'Priscilla Pointer': 'Mrs. Chadwick', 'Joe Abdullah': 'Captain', 'Gary Allen': 'Jimmy (Photographer)', 'Selma Archerd': 'Connie', 'Adrian Aron': 'Wedding Guest', 'Xander Berkeley': 'Christopher Crawford (Adult)'}" tt0063518,"{'Leonard Whiting': 'Romeo', 'Olivia Hussey': 'Juliet', 'John McEnery': 'Mercutio', ""Milo O'Shea"": 'Friar Laurence', 'Pat Heywood': 'The Nurse', 'Robert Stephens': 'The Prince', 'Michael York': 'Tybalt', 'Bruce Robinson': 'Benvolio', 'Paul Hardwick': 'Lord Capulet', 'Natasha Parry': 'Lady Capulet', 'Antonio Pierfederici': 'Lord Montague', 'Esmeralda Ruspoli': 'Lady Montague', 'Roberto Bisacco': 'Lord Paris', 'Roy Holder': 'Peter', 'Keith Skinner': 'Balthazar'}" tt0090555,"{'Paul Hogan': ""Michael J. 'Crocodile' Dundee"", 'Linda Kozlowski': 'Sue Charlton', 'John Meillon': 'Walter Reilly', 'David Gulpilil': 'Neville Bell', 'Ritchie Singer': 'Con', 'Maggie Blinco': 'Ida', 'Steve Rackman': 'Donk', 'Gerry Skilton': 'Nugget', 'Terry Gill': 'Duffy', 'Peter Turnbull': 'Trevor', 'Khristina Totos': 'Rosita (as Christine Totos)', ""Graham 'Grace' Walker"": 'Angelo', 'David Bracks': 'Burt (Roo Shooter)', 'Brett Hogan': 'Peter (Roo Shooter)', 'Mark Blum': 'Richard Mason'}" tt0054698,"{'Audrey Hepburn': 'Holly Golightly', 'George Peppard': 'Paul Varjak', 'Patricia Neal': '2E Failenson', 'Buddy Ebsen': 'Doc Golightly', 'Martin Balsam': 'O.J. Berman', 'José Luis de Vilallonga': 'José da Silva Pereira (as Vilallonga)', 'John McGiver': ""Tiffany's Salesman"", 'Dorothy Whitney': 'Mag Wildwood', 'Stanley Adams': 'Rusty Trawler', 'Elvia Allman': 'Librarian', 'Alan Reed': 'Sally Tomato', 'Beverly Powers': 'Nightclub Stripper (as Miss Beverly Hills)', 'Claude Stroud': 'Sid Arbuck', 'Orangey': 'Cat (as Cat)', 'Mickey Rooney': 'Mr. Yunioshi'}" tt0071315,"{'Jack Nicholson': 'J.J. Gittes', 'Faye Dunaway': 'Evelyn Mulwray', 'John Huston': 'Noah Cross', 'Perry Lopez': 'Escobar', 'John Hillerman': 'Yelburton', 'Darrell Zwerling': 'Hollis Mulwray', 'Diane Ladd': 'Ida Sessions', 'Roy Jenson': 'Mulvihill', 'Roman Polanski': 'Man with Knife', 'Richard Bakalyan': 'Loach (as Dick Bakalyan)', 'Joe Mantell': 'Walsh', 'Bruce Glover': 'Duffy', 'Nandu Hinds': 'Sophie', ""James O'Rear"": ""Lawyer (as James O'Reare)"", 'James Hong': ""Evelyn's Butler""}" tt0077663,"{'Warren Beatty': 'Joe Pendleton', 'Julie Christie': 'Betty Logan', 'James Mason': 'Mr. Jordan', 'Jack Warden': 'Max Corkle', 'Charles Grodin': 'Tony Abbott', 'Dyan Cannon': 'Julia Farnsworth', 'Buck Henry': 'The Escort', 'Vincent Gardenia': 'Krim', 'Joseph Maher': 'Sisk', 'Hamilton Camp': 'Bentley', 'Arthur Malet': 'Everett', 'Stephanie Faracy': 'Corinne', 'Jeannie Linero': 'Lavinia', 'Harry D.K. Wong': 'Gardener', 'George J. Manos': 'Security Guard'}" tt0102517,"{'Scott Bakula': 'Paul Blake', 'Hector Elizondo': 'Coach Ed Gennero', 'Robert Loggia': 'Coach Wally Rig', 'Harley Jane Kozak': 'Dr. Suzanne Carter', 'Larry Miller': 'Dean Phillip Elias', 'Sinbad': 'Andre Krimm', 'Fred Dalton Thompson': 'Carver Purcell', 'Rob Schneider': 'Chuck Neiderman', 'Jason Bateman': 'Jarvis Edison', 'Andrew Bryniarski': 'Wyatt Beaudry', 'Duane Davis': 'Featherstone', 'Michael Dolan': ""Eric 'Samorai' Hansen"", 'Marcus Giamatti': ""Sargie 'Fumblina' Wilkinson"", 'Kathy Ireland': 'Lucy Draper', 'Andrew Lauer': 'Charlie Banks'}" tt0085549,"{'Jennifer Beals': 'Alex Owens', 'Michael Nouri': 'Nick Hurley', 'Lilia Skala': 'Hanna Long', 'Sunny Johnson': 'Jeanie Szabo', 'Kyle T. Heffner': 'Richie', 'Lee Ving': 'Johnny C.', 'Ron Karabatsos': 'Jake Mawby', 'Belinda Bauer': 'Katie Hurley', 'Malcolm Danare': 'Cecil', 'Philip Bruns': 'Frank Szabo (as Phil Bruns)', 'Micole Mercurio': 'Rosemary Szabo', 'Lucy Lee Flippin': 'Secretary', 'Don Brockett': 'Pete', 'Cynthia Rhodes': 'Tina Tech', 'Durga McBroom': 'Heels'}" tt0056217,"{'John Wayne': 'Tom Doniphon', 'James Stewart': 'Ransom Stoddard', 'Vera Miles': 'Hallie Stoddard', 'Lee Marvin': 'Liberty Valance', ""Edmond O'Brien"": 'Dutton Peabody', 'Andy Devine': 'Link Appleyard', 'Ken Murray': 'Doc Willoughby', 'John Carradine': 'Maj. Cassius Starbuckle', 'Jeanette Nolan': 'Nora Ericson', 'John Qualen': 'Peter Ericson', 'Willis Bouchey': 'Jason Tully - Conductor', 'Carleton Young': 'Maxwell Scott', 'Woody Strode': 'Pompey', 'Denver Pyle': 'Amos Carruthers', 'Strother Martin': 'Floyd'}" tt0102768,"{'Harrison Ford': 'Henry Turner', 'Annette Bening': 'Sarah Turner', 'Michael Haley': 'Court Clerk (as R.M. Haley)', 'Stanley Swerdlow': 'Mr. Matthews (as Stanley H. Swerdlow)', 'Julie Follansbee': 'Mrs. Matthews', 'Rebecca Miller': 'Linda', 'Bruce Altman': ""Bruce, Henry's Partner"", 'Elizabeth Wilson': ""Jessica, Henry's Secretary"", 'Donald Moffat': 'Charlie Cameron', 'Kamian Allen': 'Rachel Turner (as Mikki Allen)', 'Aida Linares': 'Rosella', 'John MacKay': 'George', 'Mary Gilbert': 'Julia', 'Peter Appel': 'Eddie the Doorman', 'Harsh Nayyar': 'Liquor Store Owner'}" tt0167427,"{'Molly Shannon': 'Mary Katherine Gallagher', 'Will Ferrell': 'Sky Corrigan / Jesus', 'Elaine Hendrix': 'Evian', 'Harland Williams': 'Slater', 'Mark McKinney': 'Father Ritley', 'Glynis Johns': 'Grandma', 'Jason Blicker': 'Howard', 'Gerry Bamman': 'Father John', 'Emmy Laybourne': 'Helen', 'Jennifer Irwin': 'Maria', 'Rob Stefaniuk': 'Thomas', 'Natalie Radford': 'Autum', 'Karyn Dwyer': 'Summer', 'Tom Green': 'Dylan', 'Chuck Campbell': 'Owen'}" tt0116313,"{'Goldie Hawn': 'Elise Elliot Atchison', 'Bette Midler': 'Brenda Morelli Cushman', 'Diane Keaton': 'Annie MacDuggan Paradis', 'Maggie Smith': 'Gunilla Garson Goldberg', 'Sarah Jessica Parker': 'Shelly Stewart', 'Dan Hedaya': 'Morton Cushman', 'Stockard Channing': 'Cynthia Swann Griffin', 'Victor Garber': 'Bill Atchison', 'Stephen Collins': 'Aaron Paradis', 'Elizabeth Berkley': 'Phoebe LaVelle', 'Marcia Gay Harden': 'Dr. Leslie Rosen', 'Bronson Pinchot': 'Duarto Feliz', 'Jennifer Dundas': 'Chris Paradis', 'Eileen Heckart': 'Catherine MacDuggan', 'Philip Bosco': 'Uncle Carmine'}" tt0368709,"{'Orlando Bloom': 'Drew Baylor', 'Kirsten Dunst': 'Claire Colburn', 'Susan Sarandon': 'Hollie Baylor', 'Alec Baldwin': 'Phil Devoss', 'Bruce McGill': 'Bill Banyon', 'Judy Greer': 'Heather Baylor', 'Jessica Biel': 'Ellen Kishmore', 'Paul Schneider': 'Jessie Baylor', 'Loudon Wainwright III': 'Uncle Dale (as Loudon Wainwright)', 'Gailard Sartain': 'Charles Dean', 'Jed Rees': 'Chuck Hasboro', 'Paula Deen': 'Aunt Dora', 'Dan Biggers': 'Uncle Roy', 'Alice Marie Crowe': 'Aunt Lena', 'Tim Devitt': 'Mitch Baylor'}" tt0112697,"{'Alicia Silverstone': 'Cher', 'Stacey Dash': 'Dionne', 'Brittany Murphy': 'Tai', 'Paul Rudd': 'Josh', 'Donald Faison': 'Murray', 'Elisa Donovan': 'Amber', 'Breckin Meyer': 'Travis', 'Jeremy Sisto': 'Elton', 'Dan Hedaya': 'Mel Horowitz', 'Aida Linares': 'Lucy', 'Wallace Shawn': 'Mr. Wendell Hall', 'Twink Caplan': 'Miss Toby Geist', 'Justin Walker': 'Christian', 'Sabastian Rashidi': 'Paroudasm', 'Herb Hall': 'Principal'}" tt0094006,"{'Eric Stoltz': 'Keith Nelson', 'Mary Stuart Masterson': 'Watts', 'Lea Thompson': 'Amanda Jones', 'Craig Sheffer': 'Hardy Jenns', 'John Ashton': 'Cliff Nelson', 'Elias Koteas': 'Skinhead', 'Molly Hagan': 'Shayne', 'Maddie Corman': 'Laura Nelson', 'Jane Elliot': 'Carol Nelson', 'Candace Cameron Bure': 'Cindy Nelson (as Candace Cameron)', 'Chynna Phillips': 'Mia', 'Scott Coffey': 'Ray', 'Carmine Caridi': 'Museum Guard', 'Lee Garlington': 'Gym Instructor', 'Laura Leigh Hughes': 'Holly'}" tt0067185,"{'Ruth Gordon': 'Maude', 'Bud Cort': 'Harold', 'Vivian Pickles': 'Mrs. Chasen', 'Cyril Cusack': 'Glaucus', 'Charles Tyner': 'Uncle Victor', 'Ellen Geer': 'Sunshine Doré', 'Eric Christmas': 'Priest', 'G. Wood': 'Psychiatrist', 'Judy Engles': 'Candy Gulf', 'Shari Summers': 'Edith Phern', 'Tom Skerritt': 'Motorcycle Officer (as M. Borman)', 'Susan Madigan': 'Girlfriend', 'Ray K. Goman': 'Police Officer (as Ray Goman)', 'Gordon De Vol': 'Police Officer (as Gordon DeVol)', 'Harvey Brumfield': 'Police Officer'}" tt0074860,"{'Dustin Hoffman': 'Thomas Babbington Levy aka Babe', 'Laurence Olivier': 'Christian Szell', 'Roy Scheider': 'Doc Levy', 'William Devane': 'Peter Janeway', 'Marthe Keller': 'Elsa Opel', 'Fritz Weaver': 'Professor Biesenthal', 'Richard Bright': 'Karl', 'Marc Lawrence': 'Erhard', 'Allen Joseph': ""Babe's Father"", 'Tito Goya': 'Melendez', 'Ben Dova': ""Klaus - Szell's Brother"", 'Lou Gilbert': 'Rosenbaum', 'Jacques Marin': 'LeClerc', 'James Wing Woo': 'Chen', 'Nicole Deslauriers': 'Nicole'}" tt0163187,"{'Julia Roberts': 'Maggie Carpenter', 'Richard Gere': 'Ike Graham', 'Joan Cusack': 'Peggy Flemming', 'Hector Elizondo': 'Fisher', 'Rita Wilson': 'Ellie Graham', 'Paul Dooley': 'Walter Carpenter', 'Christopher Meloni': 'Coach Bob Kelly', 'Donal Logue': 'Priest Brian Norris', 'Reg Rogers': ""George 'Bug Guy' Swilling"", 'Yul Vazquez': 'Dead Head Gill Chavez', 'Jane Morris': 'Mrs. Pressman', 'Lisa Roberts Gillan': 'Elaine from Manhattan', 'Kathleen Marshall': 'Cousin Cindy', 'Jean Schertler': 'Grandma', 'Tom Hines': 'Cory Flemming'}" tt0275022,"{'Britney Spears': 'Lucy', 'Anson Mount': 'Ben', 'Zoe Saldana': 'Kit (as Zoë Saldana)', 'Taryn Manning': 'Mimi', 'Dan Aykroyd': 'Pete', 'Kim Cattrall': 'Caroline', 'Justin Long': 'Henry', 'Beverly Johnson': ""Kit's Mom"", 'Bahni Turpin': 'Ms. Jenson', 'Kool Moe Dee': 'Bar Owner (as Kool Mo Dee)', 'Richard Voll': 'Dylan', 'Katherine Boecher': ""Dylan's Other Girl (as Pippi B.)"", 'Dave Allen': ""Bar Patron (as David 'Gruber' Allen)"", 'Kyle Davis': 'High School Burnout', 'Branden Williams': 'Kurt'}" tt0758758,"{'Emile Hirsch': 'Chris McCandless', 'Marcia Gay Harden': 'Billie McCandless', 'William Hurt': 'Walt McCandless', 'Jena Malone': 'Carine McCandless / Additional Narrator', 'Brian H. Dierker': 'Rainey (as Brian Dierker)', 'Catherine Keener': 'Jan Burres', 'Vince Vaughn': 'Wayne Westerberg', 'Kristen Stewart': 'Tracy Tatro', 'Hal Holbrook': 'Ron Franz', 'Jim Gallien': 'Jim Gallien', ""James O'Neill"": ""Graduation Reader (as James J. O'Neill)"", 'Malinda McCollum': 'Waitress', 'Paul Knauls': 'Building Manager', 'Zach Galifianakis': 'Kevin', 'Craig Mutsch': ""Wayne's Crew #1""}" tt0332379,"{'Jack Black': 'Dewey Finn', 'Adam Pascal': 'Theo', 'Lucas Papaelias': 'Neil', 'Chris Stack': 'Doug', 'Sarah Silverman': 'Patty Di Marco', 'Mike White': 'Ned Schneebly', 'Lucas Babin': 'Spider', 'Joan Cusack': 'Rosalie Mullins', 'Jordan-Claire Green': 'Michelle', 'Veronica Afflerbach': 'Eleni', 'Miranda Cosgrove': 'Summer Hathaway', 'Joey Gaydos Jr.': 'Zack', 'Robert Tsai': 'Lawrence', 'Angelo Massagli': 'Frankie', 'Kevin Alexander Clark': 'Freddy Jones (as Kevin Clark)'}" tt0046250,"{'Gregory Peck': 'Joe Bradley', 'Audrey Hepburn': 'Princess Ann', 'Eddie Albert': 'Irving Radovich', 'Hartley Power': 'Mr. Hennessy', 'Harcourt Williams': 'Ambassador', 'Margaret Rawlings': 'Countess Vereberg', 'Tullio Carminati': 'General Provno', 'Paolo Carlini': 'Mario Delani', 'Claudio Ermelli': 'Giovanni', 'Paola Borboni': 'Charwoman', 'Alfredo Rizzo': 'Taxicab Driver', 'Laura Solari': ""Hennessy's Secretary"", 'Gorella Gori': 'Shoe Seller'}" tt0213790,"{'Tim Meadows': 'Leon Phelps', 'Karyn Parsons': 'Julie Simmons', 'Billy Dee Williams': 'Lester', 'John Witherspoon': 'Scrap Iron', 'Jill Talley': 'Candy', 'Lee Evans': 'Barney', 'Will Ferrell': 'Lance DeLune', 'Sofia Milos': 'Cheryl', 'Eugene Levy': 'Bucky Kent', 'David Huband': 'Frank', 'Jammer': 'Wrestler', 'Ken Hudson Campbell': 'Hal (as Ken Campbell)', 'Kevin McDonald': 'Mail Man', 'Tamala Jones': 'Theresa', 'Julianne Moore': 'Audrey'}" tt0398165,"{'Adam Sandler': 'Paul Crewe', 'Chris Rock': 'Caretaker', 'Burt Reynolds': 'Coach Nate Scarborough', 'Nelly': 'Megget', 'Michael Irvin': 'Deacon Moss', 'Walter Williamson': 'Errol Dandridge', 'Bill Goldberg': 'Battle', 'Terry Crews': 'Cheeseburger Eddy', 'Bob Sapp': 'Switowski', 'Nicholas Turturro': 'Brucie', 'Dalip Singh': 'Turley', 'Lobo Sebastian': 'Torres', 'Joey Diaz': ""Big Tony (as Joey 'Coco' Diaz)"", 'Steve Reevis': 'Baby Face Bob', 'David Patrick Kelly': 'Unger'}" tt0081283,"{'Donald Sutherland': 'Calvin', 'Mary Tyler Moore': 'Beth', 'Judd Hirsch': 'Berger', 'Timothy Hutton': 'Conrad', 'M. Emmet Walsh': 'Swim Coach', 'Elizabeth McGovern': 'Jeannine', 'Dinah Manoff': 'Karen', 'Fredric Lehne': 'Joe', 'James Sikking': 'Ray (as James B. Sikking)', 'Basil Hoffman': 'Sloan', 'Quinn K. Redeker': 'Ward (as Quinn Redeker)', 'Mariclare Costello': 'Audrey', 'Meg Mundy': 'Grandmother', 'Elizabeth Hubbard': 'Ruth', 'Adam Baldwin': 'Stillman'}" tt0074174,"{'Walter Matthau': 'Coach Morris Buttermaker', ""Tatum O'Neal"": 'Amanda Whurlitzer', 'Vic Morrow': 'Roy Turner', 'Joyce Van Patten': 'Cleveland', 'Ben Piazza': 'Bob Whitewood', 'Jackie Earle Haley': 'Kelly Leak', 'Alfred Lutter III': 'Ogilvie (as Alfred W. Lutter)', 'Chris Barnes': 'Tanner Boyle', 'Erin Blunt': 'Ahmad Abdul Rahim', 'Gary Lee Cavagnaro': 'Engelberg', 'Jaime Escobedo': 'Jose Agilar', 'Scott Firestone': 'Regi Tower', 'George Gonzales': 'Miguel Agilar', 'Brett Marx': 'Jimmy Feldman', 'David Pollock': 'Rudi Stein'}" tt0081696,"{'John Travolta': 'Bud', 'Debra Winger': 'Sissy', 'Scott Glenn': 'Wes', 'Madolyn Smith Osborne': 'Pam (as Madolyn Smith)', 'Barry Corbin': 'Uncle Bob', 'Brooke Alderson': 'Aunt Corene', 'Cooper Huckabee': 'Marshall', 'James Gammon': 'Steve Strange', 'Mickey Gilley': 'Mickey Gilley', 'Johnny Lee': 'Johnny Lee', 'Bonnie Raitt': 'Bonnie Raitt', 'The Charlie Daniels Band': 'The Charlie Daniels Band', 'Betty Murphy': ""Bud's Mom"", 'Ed Geldart': ""Bud's Dad"", 'Leah Geldart': ""Bud's Sister""}" tt0119978,"{'Matt Damon': 'Rudy Baylor', 'Danny DeVito': 'Deck Shifflet', 'Claire Danes': 'Kelly Riker', 'Jon Voight': 'Leo F. Drummond', 'Mary Kay Place': 'Dot Black', 'Dean Stockwell': 'Judge Harvey Hale', 'Teresa Wright': 'Miss Birdie', 'Virginia Madsen': 'Jackie Lemancyzk', 'Mickey Rourke': 'Bruiser Stone', 'Andrew Shue': 'Cliff Riker', 'Red West': 'Buddy Black', 'Johnny Whitworth': 'Donny Ray Black', 'Wayne Emmons': 'Prince Thomas', 'Adrian Roberts': 'Butch', 'Roy Scheider': 'Wilfred Keeley'}" tt0185014,"{'Michael Douglas': 'Grady Tripp', 'Tobey Maguire': 'James Leer', 'Frances McDormand': 'Sara Gaskell', 'Robert Downey Jr.': 'Terry Crabtree', 'Katie Holmes': 'Hannah Green', 'Rip Torn': 'Q', 'Richard Knox': 'Vernon Hardapple', 'Jane Adams': 'Oola', 'Michael Cavadias': 'Miss Sloviak', 'Richard Thomas': 'Walter Gaskell', 'Alan Tudyk': 'Traxler', 'Philip Bosco': ""Emily's Father"", 'George Grizzard': 'Fred Leer', 'Kelly Bishop': 'Amanda Leer', 'Bill Velin': 'Officer Pupcik'}" tt0090329,"{'Harrison Ford': 'John Book', 'Kelly McGillis': 'Rachel', 'Josef Sommer': 'Schaeffer', 'Lukas Haas': 'Samuel', 'Jan Rubes': 'Eli Lapp', 'Alexander Godunov': 'Daniel Hochleitner', 'Danny Glover': 'McFee', 'Brent Jennings': 'Carter', 'Patti LuPone': 'Elaine', 'Angus MacInnes': 'Fergie', 'Frederick Rolf': 'Stoltzfus', 'Viggo Mortensen': 'Moses Hochleitner', 'John Garson': 'Bishop Tchantz', 'Beverly May': 'Mrs. Yoder', 'Ed Crowley': 'Sheriff'}" tt0108550,"{'Johnny Depp': 'Gilbert Grape', 'Leonardo DiCaprio': 'Arnie Grape', 'Juliette Lewis': 'Becky', 'Mary Steenburgen': 'Betty Carver', 'Darlene Cates': 'Momma', 'Laura Harrington': 'Amy Grape', 'Mary Kate Schellhardt': 'Ellen Grape', 'Kevin Tighe': 'Mr. Carver', 'John C. Reilly': 'Tucker Van Dyke', 'Crispin Glover': 'Bobby McBurney', 'Penelope Branning': ""Becky's Grandma"", 'Tim Green': 'Mr. Lamson', 'Susan Loughran': 'Mrs. Lamson', 'Robert B. Hedges': 'Minister (as Rev. Robert B. Hedges)', 'Mark Jordan': 'Todd Carver'}" tt0259711,"{'Tom Cruise': 'David Aames', 'Penélope Cruz': 'Sofia Serrano', 'Cameron Diaz': 'Julie Gianni', 'Kurt Russell': 'McCabe', 'Jason Lee': 'Brian Shelby', 'Noah Taylor': 'Edmund Ventura', 'Timothy Spall': 'Thomas Tipp', 'Tilda Swinton': 'Rebecca Dearborn', 'Michael Shannon': 'Aaron', 'Delaina Mitchell': ""David's Assistant"", 'Shalom Harlow': 'Colleen', 'Oona Hart': 'Lynette', 'Ivana Milicevic': 'Emma', 'Johnny Galecki': 'Peter Brown', 'Jhaemi Willens': 'Jamie Berliner'}" tt0196229,"{'Ben Stiller': 'Derek Zoolander', 'Owen Wilson': 'Hansel', 'Christine Taylor': 'Matilda Jeffries', 'Will Ferrell': 'Mugatu', 'Milla Jovovich': 'Katinka', 'Jerry Stiller': 'Maury Ballstein', 'David Duchovny': 'J.P. Prewitt', 'Jon Voight': 'Larry Zoolander', 'Judah Friedlander': 'Scrappy Zoolander', 'Nathan Lee Graham': 'Todd', 'Alexandre Manning': 'Brint (as Alexander Manning)', 'Asio Highsmith': 'Rufus', 'Alexander Skarsgård': 'Meekus', 'Donald Trump': 'Donald Trump', 'Christian Slater': 'Christian Slater'}" tt0443706,"{'Jake Gyllenhaal': 'Robert Graysmith', 'Mark Ruffalo': 'Inspector David Toschi', 'Anthony Edwards': 'Inspector William Armstrong', 'Robert Downey Jr.': 'Paul Avery', 'Brian Cox': 'Melvin Belli', 'John Carroll Lynch': 'Arthur Leigh Allen', 'Richmond Arquette': 'Zodiac 1 / Zodiac 2', 'Bob Stephenson': 'Zodiac 3', 'John Lacy': 'Zodiac 4', 'Chloë Sevigny': 'Melanie', 'Ed Setrakian': 'Al Hyman', 'John Getz': 'Templeton Peck', 'John Terry': 'Charles Thieriot', 'Candy Clark': 'Carol Fisher', 'Elias Koteas': 'Sgt. Jack Mulanax'}" tt0096061,"{'Bill Murray': 'Frank Cross', 'Karen Allen': 'Claire Phillips', 'John Forsythe': 'Lew Hayward', 'John Glover': 'Brice Cummings', 'Bobcat Goldthwait': 'Eliot Loudermilk', 'David Johansen': 'Ghost of Christmas Past', 'Carol Kane': 'Ghost of Christmas Present', 'Robert Mitchum': 'Preston Rhinelander', 'Nicholas Phillips': 'Calvin Cooley', 'Michael J. Pollard': 'Herman', 'Alfre Woodard': 'Grace Cooley', 'Mabel King': 'Gramma', 'John Murray': 'James Cross', 'Jamie Farr': 'Jacob Marley', 'Robert Goulet': 'Robert Goulet'}" tt0114694,"{'Chris Farley': 'Tommy', 'David Spade': 'Richard', 'Brian Dennehy': 'Big Tom', 'Bo Derek': 'Beverly', 'Dan Aykroyd': 'Zalinsky', 'Julie Warner': 'Michelle', 'Sean McCann': 'Frank Rittenhauer', 'Zach Grenier': 'Ted Reilly', 'James Blendick': 'Ron Gilmore', 'Clinton Turnbull': 'Young Tommy', 'Ryder Britton': 'Young Richard', 'Paul Greenberg': 'Skittish Student', 'Graeme Millington': 'Frat Boy', 'Michael Cram': 'Frat Boy', 'Dean Marshall': 'Frat Boy'}" tt0099653,"{'Patrick Swayze': 'Sam Wheat', 'Demi Moore': 'Molly Jensen', 'Tony Goldwyn': 'Carl Bruner', 'Stanley Lawrence': 'Elevator Man', 'Christopher J. Keene': 'Elevator Man', 'Susan Breslau': 'Susan', 'Martina Deignan': 'Rose (as Martina Degnan)', 'Rick Kleber': 'Mover (as Richard Kleber)', 'Macka Foley': 'Mover', 'Rick Aviles': 'Willie Lopez', 'Phil Leeds': 'Emergency Room Ghost', 'John Hugh': 'Surgeon', 'Sam Tsoutsouvas': 'Minister', 'Sharon Breslau': 'Cemetery Ghost (as Sharon Breslau Cornell)', 'Vincent Schiavelli': 'Subway Ghost'}" tt0112817,"{'Johnny Depp': 'William Blake', 'Gary Farmer': 'Nobody', 'Crispin Glover': 'Train Fireman', 'Lance Henriksen': 'Cole Wilson', 'Michael Wincott': 'Conway Twill', 'Eugene Byrd': ""Johnny 'The Kid' Pickett"", 'John Hurt': 'John Scholfield', 'Robert Mitchum': 'John Dickinson', 'Iggy Pop': ""Salvatore 'Sally' Jenko"", 'Gabriel Byrne': 'Charlie Dickinson', 'Jared Harris': 'Benmont Tench', 'Mili Avital': 'Thel Russell', 'Jimmie Ray Weeks': 'Marvin, Older Marshal', 'Mark Bringelson': 'Lee, Younger Marshal', 'John North': 'Mr. Olafsen'}" tt1046173,"{'Adewale Akinnuoye-Agbaje': 'Heavy Duty', 'Christopher Eccleston': 'McCullen / Destro', 'Grégory Fitoussi': 'Baron de Cobray', 'Joseph Gordon-Levitt': 'The Doctor / Rex', 'Leo Howard': 'Young Snake Eyes', 'Karolina Kurkova': 'Cover Girl', 'Byung-Hun Lee': 'Storm Shadow', 'Sienna Miller': 'Ana / Baroness', 'David Murray': 'James McCullen - 1641', 'Rachel Nichols': 'Scarlett', ""Kevin J. O'Connor"": 'Dr. Mindbender', 'Gerald Okamura': 'Hard Master', 'Ray Park': 'Snake Eyes', 'Jonathan Pryce': 'U.S. President', 'Dennis Quaid': 'General Hawk'}" tt0158983,"{'Trey Parker': ""Stan Marsh / Eric Cartman / Satan / Mr. Herbert Garrison / Phillip Niles Argyle / Randy Marsh / Christophe ('The Mole') / Tom - News Reporter / Midget In A Bikini / Canadian Ambassador / Bombardiers / Mr. Mackey / Army General / Ned Gerblanski / Additional Voices (voice)"", 'Matt Stone': 'Kyle Broflovski / Kenny McCormick / Saddam Hussein / Terrance Henry Stoot / Ticket Taker / Jimbo Kearn / Gerald Broflovski / Bill Gates / Additional Voices (voice)', 'Mary Kay Bergman': 'Liane Cartman / Sheila Broflovski / Sharon Marsh / Wendy Testaburger / Clitoris / Additional Voices (voice)', 'Isaac Hayes': 'Chef (voice)', 'Jesse Brant Howell': 'Ike Broflovski (voice) (as Jesse Howell)', 'Anthony Cross-Thomas': 'Ike Broflovski (voice)', 'Franchesca Clifford': 'Ike Broflovski (voice) (as Francesca Clifford)', 'Bruce Howell': 'Man In Theatre (voice)', 'Deb Adair': 'Woman In Theatre (voice)', 'Jennifer Howell': 'Bebe Stevens (voice)', 'George Clooney': 'Dr. Gouache (voice)', 'Brent Spiner': ""Conan O'Brien (voice)"", 'Minnie Driver': 'Brooke Shields (voice)', 'Dave Foley': 'The Baldwin Brothers (voice)', 'Eric Idle': 'Dr. Vosknocker (voice)'}" tt1462041,"{'Daniel Craig': 'Will Atenton', 'Naomi Watts': 'Ann Patterson', 'Rachel Weisz': 'Libby', 'Elias Koteas': 'Boyce', 'Marton Csokas': 'Jack Patterson', 'Taylor Geare': 'Trish', 'Claire Geare': 'Dee Dee (as Claire Astin Geare)', 'Rachel G. Fox': 'Chloe Patterson (as Rachel Fox)', 'Jane Alexander': 'Dr. Greeley', 'Brian Murray': 'Dr. Medlin', 'Bernadette Quigley': 'Heather Keeler', 'Sarah Gadon': 'Cindi', 'Gregory Smith': 'Artie', 'Mark Wilson': 'Capt. Conklin', 'David Huband': 'Officer Nelson'}" tt0251127,"{'Kate Hudson': 'Andie', 'Matthew McConaughey': 'Ben', 'Kathryn Hahn': 'Michelle', 'Annie Parisse': 'Jeannie', 'Adam Goldberg': 'Tony', 'Thomas Lennon': 'Thayer', 'Michael Michele': 'Spears', 'Shalom Harlow': 'Green', 'Robert Klein': 'Phillip Warren', 'Bebe Neuwirth': 'Lana Jong', 'Samantha Quan': 'Lori', 'Justin Peroff': 'Mike', 'Celia Weston': 'Glenda', 'James Murtaugh': 'Jack', 'Archie MacGregor': 'Uncle Arnold'}" tt0108525,"{'Mike Myers': 'Wayne Campbell', 'Dana Carvey': 'Garth Algar', 'Christopher Walken': 'Bobby Cahn', 'Tia Carrere': 'Cassandra Wong', 'Chris Farley': 'Milton', 'Ralph Brown': 'Del Preston', 'James Hong': 'Jeff Wong', 'Rip Taylor': 'Rip Taylor', 'Steven Tyler': 'Steven Tyler - Aerosmith Singer', 'Joe Perry': 'Joe Perry - Aerosmith Guitarist (as Joseph Perry)', 'Brad Whitford': 'Brad Whitford- Aerosmith Guitarist', 'Tom Hamilton': 'Tom Hamilton - Aerosmith Bassist (as Thomas Hamilton)', 'Joey Kramer': 'Joey Kramer - Aerosmith Drummer (as Joseph Kramer)', 'Lee Tergesen': 'Terry', 'Dan Bell': 'Neil'}" tt0105793,"{'Mike Myers': 'Wayne Campbell', 'Dana Carvey': 'Garth Algar', 'Rob Lowe': 'Benjamin Oliver', 'Tia Carrere': 'Cassandra', 'Brian Doyle-Murray': 'Noah Vanderhoff', 'Lara Flynn Boyle': 'Stacy', 'Michael DeLuise': 'Alan', 'Dan Bell': 'Neil', 'Lee Tergesen': 'Terry', 'Kurt Fuller': 'Russell', 'Sean Sullivan': 'Phil (as Sean Gregory Sullivan)', 'Colleen Camp': 'Mrs. Vanderhoff', 'Donna Dixon': 'Dreamwoman', 'Frederick Coffin': 'Officer Koharski', 'Mike Hagerty': 'Davy (as Michael G. Hagerty)'}" tt0093010,"{'Michael Douglas': 'Dan Gallagher', 'Glenn Close': 'Alex Forrest', 'Anne Archer': 'Beth Gallagher', 'Ellen Latzen': 'Ellen Gallagher (as Ellen Hamilton Latzen)', 'Stuart Pankin': 'Jimmy', 'Ellen Foley': 'Hildy', 'Fred Gwynne': 'Arthur', 'Meg Mundy': 'Joan Rogerson', 'Tom Brennan': 'Howard Rogerson', 'Lois Smith': 'Martha', 'Mike Nussbaum': 'Bob Drimmer', 'J.J. Johnston': ""O'Rourke"", 'Michael Arkin': 'Lieutenant', 'Sam Coppola': 'Fuselli (as Sam J. Coppola)', 'Eunice Prewitt': 'Receptionist'}" tt0097815,"{'Tom Berenger': 'Jake Taylor', 'Charlie Sheen': 'Ricky Vaughn', 'Corbin Bernsen': 'Roger Dorn', 'Margaret Whitton': 'Rachel Phelps', 'James Gammon': 'Lou Brown', 'Rene Russo': 'Lynn Wells', 'Wesley Snipes': 'Willie Mays Hayes', 'Charles Cyphers': 'Charlie Donovan', 'Chelcie Ross': 'Eddie Harris', 'Dennis Haysbert': 'Pedro Cerrano', 'Andy Romano': 'Pepper Leach', 'Bob Uecker': 'Harry Doyle', 'Steve Yeager': 'Duke Temple', 'Peter Vuckovich': 'Haywood', 'Stacy Carroll': 'Suzanne Dorn'}" tt0322802,"{'Johnny Knoxville': 'Himself', 'Bam Margera': 'Himself', 'Steve-O': 'Himself', 'Chris Pontius': 'Himself', 'Ryan Dunn': 'Himself', ""Jason 'Wee Man' Acuña"": 'Himself', 'Preston Lacy': 'Himself', 'Dave England': 'Himself', 'Ehren McGhehey': 'Himself', 'Brandon DiCamillo': 'Himself', 'April Margera': 'Herself', 'Phil Margera': 'Himself', 'Jess Margera': 'Himself', 'Chris Raab': 'Himself', 'Rakeyohn': 'Himself (as Rake Yohn)'}" tt0146316,"{'Angelina Jolie': 'Lara Croft', 'Jon Voight': 'Lord Richard Croft', 'Iain Glen': 'Manfred Powell', 'Noah Taylor': 'Bryce', 'Daniel Craig': 'Alex West', 'Richard Johnson': 'Distinguished Gentleman', 'Chris Barrie': 'Hillary (as Christopher Barrie)', 'Julian Rhind-Tutt': 'Mr. Pimms', 'Leslie Phillips': 'Wilson', 'Robert Phillips': 'Julius, Assault Team Leader', 'Rachel Appleton': 'Young Lara', 'Henry Wyndham': ""Boothby's Auctioneer"", 'David Cheung': 'Head Laborer (as David Y. Cheung)', 'David Tse': 'Head Laborer (as David K.S. Tse)', 'Ozzie Yue': 'Aged Buddhist Monk'}" tt0080678,"{'Anthony Hopkins': 'Frederick Treves', 'John Hurt': 'John Merrick', 'Anne Bancroft': 'Mrs. Kendal', 'John Gielgud': 'Carr Gomm', 'Wendy Hiller': 'Mothershead', 'Freddie Jones': 'Bytes', 'Michael Elphick': 'Night Porter', 'Hannah Gordon': 'Mrs. Treves', 'Helen Ryan': 'Princess Alex', 'John Standing': 'Fox', 'Dexter Fletcher': ""Bytes' Boy"", 'Lesley Dunlop': 'Nora', 'Phoebe Nicholls': ""Merrick's Mother"", 'Pat Gorman': 'Fairground Bobby', 'Claire Davenport': 'Fat Lady'}" tt0049833,"{'Charlton Heston': 'Moses', 'Yul Brynner': 'Rameses', 'Anne Baxter': 'Nefretiri', 'Edward G. Robinson': 'Dathan', 'Yvonne De Carlo': 'Sephora', 'Debra Paget': 'Lilia', 'John Derek': 'Joshua', 'Cedric Hardwicke': 'Sethi (as Sir Cedric Hardwicke)', 'Nina Foch': 'Bithiah', 'Martha Scott': 'Yochabel', 'Judith Anderson': 'Memnet', 'Vincent Price': 'Baka', 'John Carradine': 'Aaron', 'Olive Deering': 'Miriam', 'Douglass Dumbrille': 'Jannes'}" tt0115641,"{'Mike Judge': 'Beavis / Butt-Head / Tom Anderson / Mr. Van Driessen / Principal McVicker (voice)', 'Bruce Willis': 'Muddy Grimes (voice)', 'Demi Moore': 'Dallas Grimes (voice)', 'Cloris Leachman': 'Old Woman on Plane and Bus (voice)', 'Robert Stack': 'ATF Agent Flemming (voice)', 'Jacqueline Barba': 'FBI Agent Hurly (voice)', 'Pamela Blair': 'Flight Attendant / White House Tour Guide (voice)', 'Eric Bogosian': 'Ranger at Old Faithful / White House Press Secretary / Lieutenant at Strategic Air Command (voice)', 'Kristofor Brown': 'Man on Plane / Man in Confession Booth #2 / Old Guy / Jim (voice)', 'Tony Darling': 'Motley Crue Roadie #2 / Tourist Man (voice)', 'John Doman': 'Airplane Captain / White House Representative (voice)', 'Francis Dumaurier': 'French Dignitary (voice) (as Francis DuMaurier)', 'Jim Flaherty': 'Petrified Forest Recording (voice)', 'Tim Guinee': 'Hoover Dam Guide / ATF Agent (voice)', 'David Letterman': 'Motley Crue Roadie #1 (voice) (as Earl Hofert)'}" tt0497116,"{'Al Gore': 'Himself', 'Billy West': '(voice)'}" tt0116191,"{'Gwyneth Paltrow': 'Emma Woodhouse', 'James Cosmo': 'Mr Weston', 'Greta Scacchi': 'Mrs Weston', 'Alan Cumming': 'Mr Elton', 'Denys Hawthorne': 'Mr Woodhouse', 'Sophie Thompson': 'Miss Bates', 'Jeremy Northam': 'Mr Knightley', 'Toni Collette': 'Harriet Smith', 'Kathleen Byron': 'Mrs Goddard', 'Phyllida Law': 'Mrs Bates', 'Edward Woodall': 'Mr. Martin', 'Brett Miley': 'Little Boy', 'Brian Capron': 'John Knightley', 'Karen Westwood': 'Isabella', 'Paul Williamson': 'Footman'}" tt0457510,"{'Jack Black': 'Nacho', 'Ana de la Reguera': 'Sister Encarnación', 'Héctor Jiménez': 'Esqueleto', 'Darius Rose': 'Chancho (as Darius A. Rose)', 'Moises Arias': 'Juan Pablo', 'Diego Eduardo Gomez': 'Chuy', 'Carlos Maycotte': 'Segundo Nuñez', 'Richard Montoya': 'Guillermo', 'Cesar Gonzalez': ""Ramses (as Cesar Gonzalez 'Silver King')"", 'Rafael Montalvo': 'Elderly Monk', 'Julio Sandoval': 'Snaggle Tooth Monk', ""Ventura 'Tigre Hispano' Lahoz"": 'Arena Referee #1', ""Felipe Jesus 'Terror Chino' Hernandez"": 'Arena Referee #2', 'Enrique Muñoz': 'Señor Ramon', 'Carla Jimenez': 'Candidia'}" tt0118113,"{'Amy Braverman': 'Young Amelia', 'Miranda Rhyne': 'Young Laura', 'Catherine Keener': 'Amelia', 'Anne Heche': 'Laura', 'Randall Batinkoff': 'Peter', 'Brenda Denmark': 'The Vet (as Brenda Thomas Denmark)', 'Vincent Pastore': ""Laura's Devil-Seeing Patient"", 'Liev Schreiber': 'Andrew', 'Todd Field': 'Frank', 'Kevin Corrigan': 'Bill', 'Joseph Siravo': ""Amelia's Therapist"", 'Rafael Alvarez': ""Laura's Sexy Patient"", 'Ritamarie Kelly': 'Ellen', 'Steve Cohen': 'Actor In Play', 'Jordan Levinson': ""Peter's Friend""}" tt0099371,"{'Tom Cruise': 'Cole Trickle', 'Nicole Kidman': 'Dr. Claire Lewicki', 'Robert Duvall': 'Harry Hogge', 'Randy Quaid': 'Tim Daland', 'Cary Elwes': 'Russ Wheeler', 'Michael Rooker': 'Rowdy Burns', 'Fred Dalton Thompson': 'Big John', 'John C. Reilly': 'Buck Bretherton', 'J.C. Quinn': 'Waddell', 'Don Simpson': 'Aldo Bennedetti', 'Caroline Williams': 'Jennie Burns', 'Donna W. Scott': 'Darlene (as Donna Wilson)', 'Chris Ellis': 'Harlem Hoogerhyde', 'Peter Appel': ""Cole's Crew"", 'Stephen Michael Ayers': ""Cole's Crew""}" tt0126886,"{'Matthew Broderick': 'Jim McAllister', 'Reese Witherspoon': 'Tracy Flick', 'Chris Klein': 'Paul Metzler', 'Jessica Campbell': 'Tammy Metzler', 'Mark Harelik': 'Dave Novotny', 'Phil Reeves': 'Walt Hendricks', 'Molly Hagan': 'Diane McAllister', 'Delaney Driscoll': 'Linda Novotny', 'Colleen Camp': 'Judith R. Flick', 'Frankie Ingrassia': 'Lisa Flanagan', 'Matt Malloy': 'Vice-Principal Ron Bell', 'Jeanine Jackson': 'Jo Metzler', 'Holmes Osborne': 'Dick Metzler', 'Loren Nelson': 'Custodian', 'Emily Martin': 'Girl in Crisis'}" tt0086960,"{'Eddie Murphy': 'Axel Foley', 'Judge Reinhold': 'Det. Billy Rosewood', 'John Ashton': 'Sgt. Taggart', 'Lisa Eilbacher': 'Jenny Summers', 'Ronny Cox': 'Lt. Bogomil', 'Steven Berkoff': 'Victor Maitland', 'James Russo': 'Mikey Tandino', 'Jonathan Banks': 'Zack', 'Stephen Elliott': 'Chief Hubbard', 'Gilbert R. Hill': 'Inspector Todd', 'Art Kimbro': 'Det. Foster', 'Joel Bailey': 'Det. McCabe', 'Bronson Pinchot': 'Serge', 'Paul Reiser': 'Jeffrey', 'Michael Champion': 'Casey'}" tt0105112,"{'Harrison Ford': 'Jack Ryan', 'Anne Archer': 'Cathy Ryan', 'Patrick Bergin': ""Kevin O'Donnell"", 'Sean Bean': 'Sean Miller', 'Thora Birch': 'Sally Ryan', 'James Fox': 'Lord Holmes', 'Samuel L. Jackson': 'Robby', 'Polly Walker': 'Annette', 'J.E. Freeman': 'Marty Cantor', 'James Earl Jones': 'Admiral Greer', 'Richard Harris': ""Paddy O'Neil"", 'Alex Norton': 'Dennis Cooley', 'Hugh Fraser': 'Watkins', 'David Threlfall': 'Inspector Highland', 'Alun Armstrong': 'Owens'}" tt0092099,"{'Tom Cruise': 'Maverick', 'Kelly McGillis': 'Charlie', 'Val Kilmer': 'Iceman', 'Anthony Edwards': 'Goose', 'Tom Skerritt': 'Viper', 'Michael Ironside': 'Jester', 'John Stockwell': 'Cougar', 'Barry Tubb': 'Wolfman', 'Rick Rossovich': 'Slider', 'Tim Robbins': 'Merlin', 'Clarence Gilyard Jr.': 'Sundown', 'Whip Hubley': 'Hollywood', 'James Tolkan': 'Stinger', 'Meg Ryan': 'Carole', 'Adrian Pasdar': 'Chipper'}" tt0119081,"{'Laurence Fishburne': 'Captain Miller', 'Sam Neill': 'Dr. William Weir', 'Kathleen Quinlan': 'Peters, Med Tech', 'Joely Richardson': 'Lt. Starck', 'Richard T. Jones': 'Cooper', 'Jack Noseworthy': 'Justin', 'Jason Isaacs': 'D.J.', 'Sean Pertwee': 'Smith', 'Peter Marinker': 'Captain John Kilpack', 'Holley Chant': 'Claire', 'Barclay Wright': 'Denny Peters', 'Noah Huntley': 'Burning Man / Edward Corrick', 'Robert Jezek': 'Rescue 1 Technician'}" tt0094898,"{'Paul Bates': 'Oha', 'Eddie Murphy': 'Prince Akeem / Clarence / Saul / Randy Watson', 'Garcelle Beauvais': 'Rose Bearer', 'Feather': 'Rose Bearer', 'Stephanie Simon': 'Rose Bearer', 'Victoria Dillard': 'Bather / Dancer', 'Felicia Taylor': 'Bather', 'Midori': 'Bather (as Michele Watley)', 'James Earl Jones': 'King Jaffe Joffer', 'Madge Sinclair': 'Queen Aoleon', 'Sheila Johnson': 'Lady-in-Waiting', 'Arsenio Hall': 'Semmi / Morris / Extremely Ugly Girl / Reverend Brown', 'Raymond D. Turner': 'T-Shirt Hawker', 'Calvin Lockhart': 'Colonel Izzi', 'Billi Gordon': 'Large Woman'}" tt0162661,"{'Johnny Depp': 'Ichabod Crane', 'Christina Ricci': 'Katrina Van Tassel', 'Miranda Richardson': 'Lady Van Tassel / Crone', 'Michael Gambon': 'Baltus Van Tassel', 'Casper Van Dien': 'Brom Van Brunt', 'Jeffrey Jones': 'Reverend Steenwyck', 'Richard Griffiths': 'Magistrate Philipse', 'Ian McDiarmid': 'Doctor Lancaster', 'Michael Gough': 'Notary Hardenbrook', 'Christopher Walken': 'Hessian Horseman', 'Marc Pickering': 'Young Masbath', 'Lisa Marie': 'Lady Crane', 'Steven Waddington': 'Killian', 'Claire Skinner': 'Beth Killian', 'Christopher Lee': 'Burgomaster'}" tt0083511,"{'Nick Nolte': 'Jack Cates', 'Eddie Murphy': 'Reggie Hammond', ""Annette O'Toole"": 'Elaine', 'Frank McRae': 'Haden', 'James Remar': 'Ganz', 'David Patrick Kelly': 'Luther', 'Sonny Landham': 'Billy Bear', 'Brion James': 'Kehoe', 'Kerry Sherman': 'Rosalie', 'Jonathan Banks': 'Algren', 'James Keane': 'Vanzant', 'Tara King': 'Frizzy', 'Greta Blackburn': 'Lisa', 'Margot Rose': 'Casey', 'Denise Crosby': 'Sally'}" tt0038650,"{'James Stewart': 'George Bailey', 'Donna Reed': 'Mary Hatch', 'Lionel Barrymore': 'Mr. Potter', 'Thomas Mitchell': 'Uncle Billy', 'Henry Travers': 'Clarence', 'Beulah Bondi': 'Mrs. Bailey', 'Frank Faylen': 'Ernie', 'Ward Bond': 'Bert', 'Gloria Grahame': 'Violet', 'H.B. Warner': 'Mr. Gower', 'Frank Albertson': 'Sam Wainwright', 'Todd Karns': 'Harry Bailey', 'Samuel S. Hinds': 'Pa Bailey', 'Mary Treen': 'Cousin Tilly', 'Virginia Patton': 'Ruth Dakin'}" tt0112573,"{'James Robinson': 'Young William', 'Sean Lawlor': 'Malcolm Wallace', 'Sandy Nelson': 'John Wallace', 'James Cosmo': 'Campbell', 'Sean McGinley': 'MacClannough', 'Alan Tall': 'Elder Stewart', 'Andrew Weir': 'Young Hamish', 'Gerda Stevenson': 'Mother MacClannough', 'Ralph Riach': 'Priest No. 1', 'Mhairi Calvey': 'Young Murron', 'Brian Cox': 'Argyle Wallace', 'Patrick McGoohan': 'Longshanks - King Edward I', 'Peter Hanly': 'Prince Edward', 'Sophie Marceau': 'Princess Isabelle', 'Stephen Billington': 'Phillip'}" tt0107211,"{'Robert Redford': 'John / billionaire', 'Demi Moore': 'Diana Murphy', 'Woody Harrelson': 'David Murphy', 'Seymour Cassel': 'Mr. Shackleford', 'Oliver Platt': 'Jeremy', 'Billy Bob Thornton': 'Day Tripper', 'Rip Taylor': 'Mr. Langford', 'Billy Connolly': 'Auction M.C.', 'Joel Brooks': 'Realtor', 'Pierre Epstein': 'Van Buren', 'Danny Zorn': 'Screenwriter', 'Kevin West': 'Screenwriter', 'Pamela Holt': ""David's Girlfriend"", 'Tommy Bush': ""David's Father"", 'Mariclare Costello': ""David's Mother""}" tt0064116,"{'Claudia Cardinale': 'Jill McBain', 'Henry Fonda': 'Frank', 'Jason Robards': ""Manuel 'Cheyenne' Gutiérrez"", 'Charles Bronson': 'Harmonica', 'Gabriele Ferzetti': 'Morton - Railroad Baron', 'Paolo Stoppa': 'Sam', 'Woody Strode': ""Stony - Member of Frank's Gang"", 'Jack Elam': ""Snaky - Member of Frank's Gang"", 'Keenan Wynn': 'Sheriff - Auctioneer', 'Frank Wolff': 'Brett McBain', 'Lionel Stander': 'Barman'}" tt0073802,"{'Robert Redford': 'Turner', 'Faye Dunaway': 'Kathy', 'Cliff Robertson': 'Higgins', 'Max von Sydow': 'Joubert (as Max Von Sydow)', 'John Houseman': 'Mr. Wabash', 'Addison Powell': 'Atwood', 'Walter McGinn': 'Barber', 'Tina Chen': 'Janice', 'Michael Kane': 'Wicks', 'Don McHenry': 'Dr. Lappe', 'Michael Miller': 'Fowler', 'Jess Osuna': 'The Major', 'Dino Narizzano': 'Harold', 'Helen Stenborg': 'Mrs. Russell (as Helen Stenbure)', 'Patrick Gorman': 'Martin'}" tt0076666,"{'John Travolta': 'Tony Manero', 'Karen Lynn Gorney': 'Stephanie', 'Barry Miller': 'Bobby C.', 'Joseph Cali': 'Joey', 'Paul Pape': 'Double J.', 'Donna Pescow': 'Annette', 'Bruce Ornstein': 'Gus', 'Julie Bovasso': 'Flo', 'Martin Shakar': 'Frank Jr.', 'Sam Coppola': 'Dan Fusco (as Sam J. Coppola)', 'Nina Hansen': 'Grandmother', 'Lisa Peluso': 'Linda', 'Denny Dillon': 'Doreen', 'Bert Michaels': 'Pete', 'Robert Costanzo': 'Paint Store Customer (as Robert Costanza)'}" tt0109444,"{'Harrison Ford': 'Jack Ryan', 'Willem Dafoe': 'Clark', 'Anne Archer': 'Cathy Ryan', 'Joaquim de Almeida': 'Felix Cortez', 'Henry Czerny': 'Robert Ritter', 'Harris Yulin': 'James Cutter', 'Donald Moffat': 'President Bennett', 'Miguel Sandoval': 'Ernesto Escobedo', 'Benjamin Bratt': 'Captain Ramirez', 'Raymond Cruz': 'Chavez', 'Dean Jones': 'Judge Moore', 'Thora Birch': 'Sally Ryan', 'Ann Magnuson': 'Moira Wolfson', 'Hope Lange': 'Senator Mayo', 'Tom Tammi': 'Emile Jacobs'}" tt0120770,"{'Will Ferrell': 'Steve Butabi', 'Chris Kattan': 'Doug Butabi', 'Raquel Gardner': 'Hot Girl', 'Viveca Paulin': 'Porsche Girl', 'Paulette Braxton': 'Porsche Girl', 'Michael M. Horton': 'Security Guard', 'Richard Francese': 'Security Guard', 'Jennifer Coolidge': 'Hottie Cop', 'Michael Clarke Duncan': ""Roxbury Bouncer (as Michael 'Big Mike' Duncan)"", 'Richard Grieco': 'Richard Grieco', 'Trish Ramish': 'Roxbury Club Girl', 'Loni Anderson': 'Barbara Butabi', 'Dan Hedaya': 'Kamehl Butabi', 'Gina Mari': 'Saturday Night Fever Girl', 'Roy Jenkins': 'Flower Customer #1'}" tt0118771,"{'Kurt Russell': 'Jeff Taylor', 'J.T. Walsh': 'Red Barr', 'Kathleen Quinlan': 'Amy Taylor', 'M.C. Gainey': 'Earl', 'Jack Noseworthy': 'Billy', 'Rex Linn': 'Sheriff Boyd', 'Ritch Brinkley': 'Al', 'Moira Sinise': 'Arleen (as Moira Harris)', 'Kim Robillard': 'Deputy Len Carver', 'Thomas Kopache': 'Calhoun', 'Jack McGee': 'Bartender', 'Vincent Berry': 'Deke', 'Helen Duffy': 'Flo', 'Ancel Cook': 'Barfly', 'Gene Hartline': 'Tow Truck Driver'}" tt0084434,"{'Richard Gere': 'Zack Mayo', 'Debra Winger': 'Paula Pokrifki', 'David Keith': 'Sid Worley', 'Robert Loggia': 'Byron Mayo', 'Lisa Blount': 'Lynette Pomeroy', 'Lisa Eilbacher': 'Casey Seeger', 'Louis Gossett Jr.': 'Sgt. Emil Foley', 'Tony Plana': 'Emiliano Della Serra', 'Harold Sylvester': 'Perryman', 'David Caruso': 'Topper Daniels', 'Victor French': 'Joe Pokrifki', 'Grace Zabriskie': 'Esther Pokrifki', 'Tommy Petersen': 'Young Zack', 'Mara Scott-Wood': 'Bunny (as Mara Scott Wood)', 'David Greenfield': 'Schneider'}" tt0094744,"{'Paul Reubens': 'Pee-wee Herman (as Pee-wee Herman)', 'Penelope Ann Miller': 'Winnie', 'Kris Kristofferson': 'Mace Montana', 'Valeria Golino': 'Gina Piccolapupula', 'Wayne White': 'Vance the Pig (voice)', 'Susan Tyrrell': 'Midge Montana', 'Albert Henderson': 'Mr. Ryan', 'Jack Murdock': 'Otis', 'David Byrd': 'Deke', 'Mary Jackson': 'Mrs. Dill', 'Frances Bay': 'Mrs. Haynes', 'Leo Gordon': 'Joe the Blacksmith (as Leo V. Gordon)', 'Anne Seymour': 'Pearl', 'Kenneth Tobey': 'Sheriff', 'Jay Robinson': 'Cook'}" tt0119215,"{'Kel Mitchell': 'Ed', 'Kenan Thompson': 'Dexter Reed', 'Sinbad': 'Mr. Wheat', 'Abe Vigoda': 'Otis', 'Shar Jackson': 'Monique', 'Dan Schneider': 'Mr. Baily', 'Jan Schweiterman': 'Kurt Bozwell (as Jan Schwieterman)', 'Ron Lester': 'Spatch', 'Josh Server': 'Fizz', 'Ginny Schreiber': 'Deedee', 'Linda Cardellini': 'Heather', ""Shaquille O'Neal"": ""Shaquille O'Neal"", 'George Clinton': 'Dancing Crazy', 'Richard Haje': 'Huge Scary Man', 'Robert Wuhl': 'Angry Customer'}" tt0091790,"{'Molly Ringwald': 'Andie', 'Harry Dean Stanton': 'Jack', 'Jon Cryer': 'Duckie', 'Annie Potts': 'Iona', 'James Spader': 'Steff', 'Andrew McCarthy': 'Blane', 'Jim Haynie': 'Donnelly', 'Alexa Kenin': 'Jena Hoeman', 'Kate Vernon': 'Benny Hanson', 'Andrew Dice Clay': ""Bouncer (as Andrew 'Dice' Clay)"", 'Emily Longstreth': 'Kate', 'Margaret Colin': 'English Teacher', 'Jamie Anders': 'Terrence', 'Gina Gershon': 'Girl Friend / Gym Class', 'Bader Howar': 'Sales Girl'}" tt0492619,"{'Danny McBride': 'Fred Simmons', 'Mary Jane Bostic': 'Suzie Simmons', 'Ben Best': ""Chuck 'The Truck' Wallace"", 'Spencer Moreno': 'Julio Chavez', 'Carlos Lopez': 'Henry Harrison (as Carlos Lopez IV)', 'Jody Hill': 'Mike McAlister', 'Ken Aguilar': 'Rick', 'Collette Wolfe': 'Denise', 'Jeff Hoffman': 'Dr. Love', 'Deborah Loates': 'Marge', 'Danielle Jarchow': 'Connie', 'Juan-Carlos Guzman': 'Carlos', 'Nicholas Stanley': ""Lil' Stevie Fisher"", 'Erica Owens': 'Mrs. Fisher', 'Sean Baxter': 'Roy Powers'}" tt0063374,"{'Jack Lemmon': 'Felix Ungar', 'Walter Matthau': 'Oscar Madison', 'John Fiedler': 'Vinnie', 'Herb Edelman': 'Murray (as Herbert Edelman)', 'David Sheiner': 'Roy', 'Larry Haines': 'Speed', 'Monica Evans': 'Cecily', 'Carole Shelley': 'Gwendolyn', 'Iris Adrian': 'Waitress'}" tt0372588,"{'Trey Parker': 'Gary Johnston / Joe / Kim Jong Il / Hans Blix / Carson / Matt Damon / Drunk in Bar / Tim Robbins / Sean Penn / Michael Moore / Helen Hunt / Susan Sarandon / Others (voice)', 'Matt Stone': 'Chris / George Clooney / Danny Glover / Ethan Hawke / Additional Voices (voice)', 'Kristen Miller': 'Lisa (voice)', 'Masasa Moyo': 'Sarah (voice) (as Masasa)', 'Daran Norris': 'Spottswoode (voice)', 'Phil Hendrie': 'I.N.T.E.L.L.I.G.E.N.C.E. / Chechnyan Terrorist (voice)', 'Maurice LaMarche': 'Alec Baldwin (voice)', 'Chelsea Marguerite': 'French Mother (voice)', 'Jeremy Shada': 'Jean Francois (voice)', 'Fred Tatasciore': 'Samuel L. Jackson (voice)'}" tt0297884,"{'Julianne Moore': 'Cathy Whitaker', 'Dennis Quaid': 'Frank Whitaker', 'Dennis Haysbert': 'Raymond Deagan', 'Patricia Clarkson': 'Eleanor Fine', 'Viola Davis': 'Sybil', 'James Rebhorn': 'Dr. Bowman', 'Bette Henritze': 'Mrs. Leacock', 'Michael Gaston': 'Stan Fine', 'Ryan Ward': 'David Whitaker', 'Lindsay Andretta': 'Janice Whitaker', 'Jordan Nia Elizabeth': 'Sarah Deagan (as Jordan Puryear)', 'Kyle Timothy Smith': 'Billy Hutchinson (as Kyle Smyth)', 'Celia Weston': 'Mona Lauder', 'Barbara Garrick': 'Doreen', 'Olivia Birkelund': 'Nancy'}" tt0108065,"{'Max Pomeranc': 'Josh Waitzkin', 'Joe Mantegna': 'Fred Waitzkin', 'Joan Allen': 'Bonnie Waitzkin', 'Ben Kingsley': 'Bruce Pandolfini', 'Laurence Fishburne': 'Vinnie', 'Michael Nirenberg': 'Jonathan Poe', 'Robert Stephens': ""Poe's Teacher"", 'David Paymer': 'Kalev', 'Hal Scardino': 'Morgan', 'Vasek Simek': 'Russian Park Player', 'William H. Macy': 'Tunafish Father', 'Dan Hedaya': 'Tournament Director', 'Laura Linney': 'School Teacher', 'Anthony Heald': 'Fighting Parent', 'Steven Randazzo': 'Man of Many Signals'}" tt0094608,"{'Kelly McGillis': 'Kathryn Murphy', 'Jodie Foster': 'Sarah Tobias', 'Bernie Coulson': 'Ken Joyce', 'Leo Rossi': ""Cliff 'Scorpion' Albrect"", 'Ann Hearn': 'Sally Fraser', 'Carmen Argenziano': 'D.A. Paul Rudolph', 'Steve Antin': 'Bob Joiner', ""Tom O'Brien"": 'Larry', 'Peter Van Norden': 'Attorney Paulsen', 'Terry David Mulligan': 'Lieutenant Duncan', 'Woody Brown': 'Danny', 'Scott Paulin': 'Attorney Wainwright', 'Kim Kondrashoff': 'Kurt', 'Stephen E. Miller': 'Polito', 'Tom Heaton': 'Bartender Jesse'}" tt0080120,"{'Michael Beck': 'Swan', 'James Remar': 'Ajax', 'Dorsey Wright': 'Cleon', 'Brian Tyler': 'Snow', 'David Harris': 'Cochise', 'Tom McKitterick': 'Cowboy', 'Marcelino Sánchez': 'Rembrandt (as Marcelino Sanchez)', 'Terry Michos': 'Vermin', 'Deborah Van Valkenburgh': 'Mercy', 'Roger Hill': 'Cyrus', 'David Patrick Kelly': 'Luther', 'Lynne Thigpen': 'D.J.', 'Ginny Ortiz': 'Candy Store Girl', 'Mercedes Ruehl': 'Policewoman', 'John Snyder': 'Gas Station Man'}" tt0109830,"{'Tom Hanks': 'Forrest Gump', 'Rebecca Williams': 'Nurse at Park Bench', 'Sally Field': 'Mrs. Gump', 'Michael Conner Humphreys': 'Young Forrest', 'Harold G. Herthum': 'Doctor (as Harold Herthum)', 'George Kelly': 'Barber', 'Bob Penny': 'Crony', 'John Randall': 'Crony', 'Sam Anderson': 'Principal', 'Margo Moorer': 'Louise', 'Ione M. Telech': 'Elderly Woman', 'Christine Seabrook': ""Elderly Woman's Daughter"", 'John Worsham': 'Southern Gentleman / Landowner', 'Peter Dobson': 'Young Elvis Presley', 'Siobhan Fallon Hogan': 'School Bus Driver (as Siobhan J. Fallon)'}" tt0377092,"{'Lindsay Lohan': 'Cady Heron', 'Rachel McAdams': 'Regina George (as Rachel Mcadams)', 'Tina Fey': 'Ms. Norbury', 'Tim Meadows': 'Mr. Duvall', 'Amy Poehler': 'Mrs. George', 'Ana Gasteyer': ""Cady's Mom"", 'Lacey Chabert': 'Gretchen Wieners', 'Lizzy Caplan': 'Janis Ian', 'Daniel Franzese': 'Damian', 'Neil Flynn': ""Cady's Dad"", 'Jonathan Bennett': 'Aaron Samuels', 'Amanda Seyfried': 'Karen Smith', 'Rajiv Surendra': 'Kevin Gnapoor', 'Elana Shilling': 'Spelling Girl', 'Graham Kartna': 'Homeschooled Boy'}" tt0117060,"{'Tom Cruise': 'Ethan Hunt', 'Jon Voight': 'Jim Phelps', 'Emmanuelle Béart': 'Claire (as Emmanuelle Beart)', 'Henry Czerny': 'Kittridge', 'Jean Reno': 'Krieger', 'Ving Rhames': 'Luther', 'Kristin Scott Thomas': 'Sarah Davies (as Kristin Scott-Thomas)', 'Vanessa Redgrave': 'Max', 'Ingeborga Dapkunaite': 'Hannah', 'Valentina Yakunina': 'Drunken Female IMF Agent', 'Marek Vasut': 'Drunken Male IMF Agent', 'Nathan Osgood': 'Kittridge Technician', 'John McLaughlin': 'TV Interviewer', 'Rolf Saxon': 'CIA Analyst William Donloe', 'Karel Dobrý': 'Matthias'}" tt0421715,"{'Cate Blanchett': 'Daisy', 'Brad Pitt': 'Benjamin Button', 'Julia Ormond': 'Caroline', 'Faune Chambers Watkins': 'Dorothy Baker (as Faune Chambers)', 'Elias Koteas': 'Monsieur Gateau', 'Donna Duplantier': 'Blanche Devereux', 'Jacob Tolano': 'Martin Gateau (as Jacob Wood)', 'Earl Maddox': 'Man at Train Station', 'Ed Metzger': 'Teddy Roosevelt', 'Jason Flemyng': 'Thomas Button', 'Danny Vinson': 'Priest Giving Last Rites', 'David Jensen': ""Doctor at Benjamin's Birth"", 'Joeanna Sayler': 'Caroline Button', 'Taraji P. Henson': 'Queenie', 'Mahershala Ali': 'Tizzy (as Mahershalalhashbaz Ali)'}" tt0065126,"{'John Wayne': 'Rooster Cogburn', 'Glen Campbell': 'La Boeuf', 'Kim Darby': 'Mattie Ross', 'Jeremy Slate': 'Emmett Quincy', 'Robert Duvall': 'Ned Pepper', 'Dennis Hopper': ""'Moon'"", 'Alfred Ryder': 'Goudy', 'Strother Martin': 'Col. G. Stonehill', 'Jeff Corey': 'Tom Chaney', 'Ron Soble': 'Capt. Boots Finch', 'John Fiedler': 'Lawyer Daggett', 'James Westerfield': 'Judge Parker', 'John Doucette': ""'Sheriff'"", 'Donald Woods': ""'Barlow'"", 'Edith Atwater': 'Mrs. Floyd'}" tt1060277,"{'Lizzy Caplan': 'Marlena Diamond', 'Jessica Lucas': 'Lily Ford', 'T.J. Miller': ""Hudson 'Hud' Platt"", 'Michael Stahl-David': 'Rob Hawkins', 'Mike Vogel': 'Jason Hawkins', 'Odette Annable': 'Beth McIntyre (as Odette Yustman)', 'Anjul Nigam': 'Bodega Cashier', 'Margot Farley': 'Jenn', 'Theo Rossi': 'Antonio', 'Brian Klugman': 'Charlie', 'Kelvin Yu': 'Clark', 'Liza Lapira': 'Heather', 'Lili Mirojnick': 'Lei', 'Ben Feldman': 'Travis', 'Elena Caruso': 'Party Goer'}" tt0317919,"{'Tom Cruise': 'Ethan Hunt', 'Philip Seymour Hoffman': 'Owen Davian', 'Ving Rhames': 'Luther', 'Billy Crudup': 'Musgrave', 'Michelle Monaghan': 'Julia', 'Jonathan Rhys Meyers': 'Declan', 'Keri Russell': 'Lindsey Farris', 'Maggie Q': 'Zhen', 'Simon Pegg': 'Benji', 'Eddie Marsan': 'Brownway', 'Laurence Fishburne': 'Theodore Brassel', 'Bahar Soomekh': ""Davian's Translator"", 'Jeff Chase': ""Davian's Bodyguard"", 'Michael Berry Jr.': ""Julia's Kidnapper"", 'Carla Gallo': 'Beth'}" tt0094226,"{'Kevin Costner': 'Eliot Ness', 'Sean Connery': 'Jim Malone', 'Charles Martin Smith': 'Oscar Wallace', 'Andy Garcia': 'George Stone', 'Robert De Niro': 'Al Capone', 'Richard Bradford': 'Mike', 'Jack Kehoe': 'Payne', 'Brad Sullivan': 'George', 'Billy Drago': 'Nitti', 'Patricia Clarkson': ""Ness' Wife"", ""Vito D'Ambrosio"": 'Bowtie Driver', 'Steven Goldstein': 'Scoop', 'Peter Aylward': 'Lt. Anderson', 'Don Harvey': 'Preseuski', 'Robert Swan': 'Mountie Captain'}" tt0120382,"{'Jim Carrey': 'Truman Burbank', 'Laura Linney': 'Meryl Burbank / Hannah Gill', 'Noah Emmerich': 'Marlon', 'Natascha McElhone': 'Lauren / Sylvia', 'Holland Taylor': ""Truman's Mother"", 'Brian Delate': ""Truman's Father"", 'Blair Slater': 'Young Truman', 'Peter Krause': 'Lawrence', 'Heidi Schanz': 'Vivien', 'Ron Taylor': 'Ron', 'Don Taylor': 'Don', 'Ted Raymond': 'Spencer', 'Judy Clayton': 'Travel Agent', 'Fritz Dominique': ""Truman's Neighbor"", 'Angel Schmiedt': ""Truman's Neighbor""}" tt0317740,"{'Mark Wahlberg': 'Charlie Croker', 'Charlize Theron': 'Stella Bridger', 'Donald Sutherland': 'John Bridger', 'Jason Statham': 'Handsome Rob', 'Seth Green': 'Lyle', 'Yasiin Bey': 'Left Ear (as Mos Def)', 'Edward Norton': 'Steve', 'Fausto Callegarini': 'Italian Guard', 'Stefano Petronelli': 'Garbageman / Thug', 'Fabio Scarpa': 'Garbageman / Thug', 'Cristiano Bonora': 'Garbageman / Thug', 'Tiberio Greco': 'Garbageman / Thug', 'Jimmy Shubert': 'First Detective', 'Tammi Cubilette': 'Second Detective', 'Mary Portser': ""Stella's Receptionist""}" tt0371746,"{'Robert Downey Jr.': 'Tony Stark', 'Terrence Howard': 'Rhodey', 'Jeff Bridges': 'Obadiah Stane', 'Gwyneth Paltrow': 'Pepper Potts', 'Leslie Bibb': 'Christine Everhart', 'Shaun Toub': 'Yinsen', 'Faran Tahir': 'Raza', 'Clark Gregg': 'Agent Coulson', 'Bill Smitrovich': 'General Gabriel', 'Sayed Badreya': 'Abu Bakaar', 'Paul Bettany': 'JARVIS (voice)', 'Jon Favreau': 'Hogan', 'Peter Billingsley': 'William Ginter Riva', 'Tim Guinee': 'Major Allen', 'Will Lyman': 'Award Ceremony Narrator (voice)'}" tt0119094,"{'John Travolta': 'Sean Archer', 'Nicolas Cage': 'Castor Troy', 'Joan Allen': 'Eve Archer', 'Alessandro Nivola': 'Pollux Troy', 'Gina Gershon': 'Sasha Hassler', 'Dominique Swain': 'Jamie Archer', 'Nick Cassavetes': 'Dietrich Hassler', 'Harve Presnell': 'Victor Lazarro', 'Colm Feore': 'Dr. Malcolm Walsh', 'John Carroll Lynch': 'Prison Guard Walton', 'CCH Pounder': 'Hollis Miller', 'Robert Wisdom': 'Tito Biondi', 'Margaret Cho': 'Wanda', 'James Denton': 'Buzz (as Jamie Denton)', 'Matt Ross': 'Loomis'}" tt0104036,"{'Forest Whitaker': 'Jody', 'Miranda Richardson': 'Jude', 'Stephen Rea': 'Fergus', 'Adrian Dunbar': 'Maguire', 'Breffni McKenna': 'Tinker (as Breffini McKenna)', 'Joe Savino': 'Eddie', 'Birdy Sweeney': 'Tommy (as Birdie Sweeney)', 'Jaye Davidson': 'Dil', 'Andrée Bernard': 'Jane (as Andree Bernard)', 'Jim Broadbent': 'Col', 'Ralph Brown': 'Dave', 'Tony Slattery': 'Deveroux', 'Jack Carr': 'Franknum', 'Josephine White': 'Bar Performer 1', 'Shar Campbell': 'Bar Performer 2'}" tt0128442,"{'Matt Damon': 'Mike McDermott', 'Gretchen Mol': 'Jo', 'John Malkovich': 'Teddy KGB', 'Paul Cicero': 'Russian Thug', 'Ray Iannicelli': 'Kenny', 'John Turturro': 'Joey Knish', 'Merwin Goldsmith': 'Sy', 'Sonny Zito': 'Tony', 'Josh Mostel': 'Zagosh', 'Mal Z. Lawrence': 'Irving', 'Lenny Clarke': 'Savino', 'Peter Yoshida': 'Henry Lin', 'Jay Boryea': 'Russian Thug #2', 'Lenny Venito': 'Moogie', 'Martin Landau': 'Abe Petrovsky'}" tt0469494,"{'Daniel Day-Lewis': 'Daniel Plainview', 'Martin Stringer': 'Silver Assay Worker', 'Matthew Braden Stringer': 'Silver Assay Worker', 'Jacob Stringer': 'Silver Assay Worker', 'Joseph Mussey': 'Silver Assay Worker', 'Barry Del Sherman': 'H.B. Ailman', 'Harrison Taylor': 'Baby HW', 'Stockton Taylor': 'Baby HW', 'Paul F. Tompkins': 'Prescott', 'Dillon Freasier': 'HW', 'Kevin Breznahan': 'Signal Hill Man', 'Jim Meskimen': 'Signal Hill Married Man', 'Erica Sullivan': 'Signal Hill Woman', 'Randall Carver': 'Mr. Bankside', 'Coco Leigh': 'Mrs. Bankside'}" tt0409459,"{'Malin Akerman': 'Laurie Jupiter / Silk Spectre II', 'Billy Crudup': 'Dr. Manhattan / Jon Osterman', 'Matthew Goode': 'Adrian Veidt / Ozymandias', 'Jackie Earle Haley': 'Rorschach', 'Jeffrey Dean Morgan': 'Edward Blake / Comedian', 'Patrick Wilson': 'Dan Dreiberg / Nite Owl', 'Carla Gugino': 'Sally Jupiter / Silk Spectre', 'Matt Frewer': 'Moloch', 'Stephen McHattie': 'Hollis Mason', 'Laura Mennell': 'Janey Slater', 'Rob LaBelle': 'Wally Weaver', 'Gary Houston': 'John McLaughlin', 'James M. Connor': 'Pat Buchanan (as James Micheal Connor)', 'Mary Ann Burger': 'Eleanor Clift', 'John Shaw': 'Doug Roth'}" tt0101318,"{'Juliette Binoche': 'Michèle Stalens', 'Denis Lavant': 'Alex', 'Klaus-Michael Grüber': 'Hans', 'Marion Stalens': 'Marion', 'Chrichan Larsson': 'Julien (as Chrichan Larson)', 'Paulette Berthonnier': 'La marinière / Barge operator', 'Roger Berthonnier': 'Le marinier / Barge operator', 'Edith Scob': 'La femme en voiture', 'Georges Aperghis': ""L'homme en voiture"", 'Michel Vandestien': 'Le pompier', 'Georges Castorp': 'Un endormi', 'Marc Desclozeaux': 'Un endormi', 'Alain Dahan': 'Un endormi', 'Pierre Pessemesse': 'Un endormi', 'Maître Bitoun': 'Un endormi'}" tt0115697,"{'Chris Farley': 'Mike Donnelly', 'David Spade': 'Steve Dodds', 'Tim Matheson': 'Al Donnelly', 'Christine Ebersole': 'Governor Tracy', 'Gary Busey': 'Drake Sabitch', 'Grant Heslov': 'Robbie Mieghem', 'Timothy Carhart': 'Roger Kovary', 'Bruce McGill': 'Neuschwander', 'Michael Patrick Carter': 'Scott Colleary', 'Boyd Banks': 'Clyde Spinoza', 'David St. James': 'Motorcycle Cop', ""Skip O'Brien"": 'State Trooper', 'Branden Morgan': 'Fan (as Branden R. Morgan)', ""'Gypsy' Spheeris"": 'Pocket Pool Lady', 'John Ashker': 'Jim Blaine'}" tt0118826,"{'Michael Caton': 'Darryl Kerrigan', 'Anne Tenney': 'Sal Kerrigan', 'Stephen Curry': 'Dale Kerrigan', 'Anthony Simcoe': 'Steve Kerrigan', 'Sophie Lee': 'Tracey Kerrigan', 'Wayne Hope': 'Wayne Kerrigan', 'Tiriel Mora': 'Dennis Denuto', 'Eric Bana': 'Con Petropoulous', ""Charles 'Bud' Tingwell"": 'Lawrence Hammill', 'Robyn Nevin': 'Federal Court Judge', 'Costas Kilias': 'Farouk', 'Bryan Dawe': 'Ron Graham', 'Monty Maizels': 'Jack', 'Lynda Gibson': 'Evonne', 'John Benton': 'Mr. Lyle'}" tt0207201,"{'Mel Gibson': 'Nick Marshall', 'Helen Hunt': 'Darcy Maguire', 'Marisa Tomei': 'Lola', 'Alan Alda': 'Dan Wanamaker', 'Ashley Johnson': 'Alex Marshall', 'Mark Feuerstein': 'Morgan Farwell', 'Lauren Holly': 'Gigi', 'Delta Burke': 'Eve', 'Valerie Perrine': 'Margo', 'Judy Greer': 'Erin the File Girl', 'Sarah Paulson': 'Annie', 'Ana Gasteyer': 'Sue Cranston', 'Lisa Edelstein': 'Dina', 'Loretta Devine': 'Flo the Doorwoman', 'Diana Maria Riva': 'Stella'}" tt0117381,"{'Richard Gere': 'Martin Vail', 'Laura Linney': 'Janet Venable', 'John Mahoney': 'Shaughnessy', 'Alfre Woodard': 'Shoat', 'Frances McDormand': 'Molly', 'Edward Norton': 'Aaron / Roy', ""Terry O'Quinn"": 'Yancy', 'Andre Braugher': 'Goodman', 'Steven Bauer': 'Pinero', 'Joe Spano': 'Stenner', 'Tony Plana': 'Martinez', 'Stanley Anderson': 'Rushman', 'Maura Tierney': 'Naomi', 'Jon Seda': 'Alex', 'Reg Rogers': 'Connerman'}" tt0257106,"{'Antony Acker': 'Exorcist Party Goer', 'Mark Barrett': 'Exorcist Party Goer', 'Richard Bellos': 'Exorcist Party Goer', 'Suzanne Bianqui': 'Exorcist Party Goer', 'Natale Bosco': 'Exorcist Party Goer', 'Joann Connor': 'Exorcist Party Goer', 'Bradley Fisher': 'Exorcist Party Goer (as Brad Fisher)', ""Suzanne O'Donnell"": 'Exorcist Party Goer', 'Kristi Pearce': 'Exorcist Party Goer', 'Donna Silverberg': 'Exorcist Party Goer', 'Helene Strayer': 'Exorcist Party Goer', 'Veronica Cartwright': 'Mother', 'Andy Richter': 'Father Harris', 'Lee R. Mayes': 'Hip Exorcist Party Goer', 'Natasha Lyonne': 'Megan'}" tt0340163,"{'Bruce Willis': 'Jeff Talley', 'Kevin Pollak': 'Walter Smith', 'Jimmy Bennett': 'Tommy Smith', 'Michelle Horn': 'Jennifer Smith', 'Ben Foster': 'Mars Krupcheck', 'Jonathan Tucker': 'Dennis Kelly', 'Marshall Allman': 'Kevin Kelly', 'Serena Scott Thomas': 'Jane Talley', 'Rumer Willis': 'Amanda Talley', 'Kim Coates': 'The Watchman', 'Robert Knepper': 'Wil Bechler', 'Tina Lifford': 'Laura Shoemaker', 'Ransford Doherty': 'Mike Anders', 'Marjean Holden': 'Carol Flores', 'Michael D. Roberts': 'Ridley'}" tt0110889,"{'Linus Roache': 'Father Greg Pilkington', 'Tom Wilkinson': 'Father Matthew Thomas', 'Robert Carlyle': 'Graham', 'Cathy Tyson': 'Maria Kerrigan', 'Lesley Sharp': 'Mrs. Unsworth', 'Robert Pugh': 'Mr. Unsworth', 'James Ellis': 'Father Ellerton', 'Christine Tremarco': 'Lisa Unsworth', 'Paul Barber': 'Charlie', 'Rio Fanning': 'Bishop', 'Jim R. Coleman': 'Funeral director', 'Bill Dean': 'Altar boy', 'Gilly Coman': 'Ellie Molloy', 'Fred Pearson': 'Patrick', 'Jimmy Gallagher': 'Mick Molloy'}" tt0116324,"{'Ben Stiller': 'Mel Coplin', 'Patricia Arquette': 'Nancy Coplin', 'Téa Leoni': 'Tina Kalb', 'Mary Tyler Moore': 'Pearl Coplin', 'George Segal': 'Ed Coplin', 'Alan Alda': 'Richard Schlichting', 'Lily Tomlin': 'Mary Schlichting', 'Richard Jenkins': 'Paul Harmon', 'Josh Brolin': 'Agent Tony Kent', 'Celia Weston': 'Valerie Swaney', 'Glenn Fitzgerald': 'Lonnie Schlichting', 'Beth Stern': 'Jane (as Beth Ostrosky)', 'Cynthia LaMontagne': 'Sandra (as Cynthia Lamontagne)', 'David Patrick Kelly': 'Fritz Boudreau', 'John Ford Noonan': 'Mitch'}" tt0261392,"{'Jason Mewes': 'Jay', 'Kevin Smith': 'Silent Bob', 'Ben Affleck': 'Holden McNeil / Ben Affleck', 'Jeff Anderson': 'Randal Graves', ""Brian O'Halloran"": ""Dante Hicks (as Brian Christopher O'Halloran)"", 'Shannon Elizabeth': 'Justice', 'Eliza Dushku': 'Sissy', 'Ali Larter': 'Chrissy', 'Jennifer Schwalbach Smith': 'Missy (as Jennifer Schwalbach)', 'Will Ferrell': 'Federal Wildlife Marshal Willenholly', 'Jason Lee': 'Brodie Bruce / Banky Edwards', 'Judd Nelson': 'Sheriff', 'George Carlin': 'Hitchhiker', 'Carrie Fisher': 'Nun', 'Seann William Scott': 'Brent'}" tt0416508,"{'Anne Hathaway': 'Jane Austen', 'James McAvoy': 'Tom Lefroy', 'Julie Walters': 'Mrs. Austen', 'James Cromwell': 'Reverend Austen', 'Maggie Smith': 'Lady Gresham', 'Anna Maxwell Martin': 'Cassandra Austen', 'Lucy Cohu': 'Eliza De Feuillide', 'Laurence Fox': 'Mr. Wisley', 'Ian Richardson': 'Judge Langlois', 'Joe Anderson': 'Henry Austen', 'Leo Bill': 'John Warren', 'Jessica Ashworth': 'Lucy Lefroy', 'Eleanor Methven': 'Mrs. Lefroy', 'Michael James Ford': 'Mr. Lefroy', 'Tom Vaughan-Lawlor': 'Robert Fowle'}" tt0113101,"{'Sammi Davis': 'Jezebel (segment ""The Missing Ingredient"")', 'Amanda De Cadenet': 'Diana (segment ""The Missing Ingredient"") (as Amanda deCadenet)', 'Valeria Golino': 'Athena (segment ""The Missing Ingredient"")', 'Madonna': 'Elspeth (segment ""The Missing Ingredient"")', 'Ione Skye': 'Eva (segment ""The Missing Ingredient"")', 'Lili Taylor': 'Raven (segment ""The Missing Ingredient"")', 'Alicia Witt': 'Kiva (segment ""The Missing Ingredient"")', 'Jennifer Beals': 'Angela (segments ""The Wrong Man"", ""The Man from Hollywood"")', 'David Proval': 'Sigfried (segment ""The Wrong Man"")', 'Antonio Banderas': 'Man (segment ""The Misbehavers"")', 'Lana McKissack': 'Sarah (segment ""The Misbehavers"")', 'Patricia Vonne': 'Corpse (segment ""The Misbehavers"") (as Patricia Vonne Rodriguez)', 'Tamlyn Tomita': 'Wife (segment ""The Misbehavers"")', 'Danny Verduzco': 'Juancho (segment ""The Misbehavers"")', 'Salma Hayek': 'TV Dancing Girl (segment ""The Misbehavers"")'}" tt0238924,"{'Emile Hirsch': 'Francis Doyle', 'Kieran Culkin': 'Tim Sullivan', ""Vincent D'Onofrio"": 'Father Casey', 'Jena Malone': 'Margie Flynn', 'Jake Richardson': 'Wade Scalisi', 'Tyler Long': 'Joey Anderson', 'Jodie Foster': 'Sister Assumpta', 'Arthur Bridgers': 'Donny Flynn (as Arthur Bridges)', 'Scott Simpson': 'Newsie', 'Melissa McBride': 'Mrs. Doyle', 'Michael Harding': 'Mr. Doyle (as Mike Harding)', 'Chandler McIntyre': 'Naturalist', 'Jeffrey West': 'Professor Sullivan', 'Yvonne Erickson': 'Mrs. Sullivan', 'Nicky Olson': 'Colin Gibbney'}" tt0120613,"{'Bobby Boriello': 'Daniel Kantrowitz', 'Diane Lane': 'Pearl Kantrowitz', 'Anna Paquin': 'Alison Kantrowitz', 'Tovah Feldshuh': 'Lillian Kantrowitz', 'Liev Schreiber': 'Marty Kantrowitz', 'Julie Kavner': 'P.A. Announcer (voice)', 'Stewart Bick': 'Neil Leiberman', 'Jess Platt': 'Herb Fogler', 'Mahée Paiement': 'Mrs. Dymbort (as Mahee Paiement)', 'Star Jasper': 'Rhoda Leiberman', 'Ellen David': 'Eleanor Gelfand', 'Lisa Bronwyn Moore': 'Norma Fogler', 'Viggo Mortensen': 'Walker Jerome', 'Victoria Barkoff': 'Selma Levitsky (as Vicky Barkoff)', 'Tamar Kozlov': 'Wendy Green'}" tt0271219,"{'Aaron Stanford': 'Oscar Grubman', 'Kate Mara': 'Miranda Spear', 'Robert Iler': 'Charlie', 'Peter Appel': 'Jimmy - Doorman', 'Bebe Neuwirth': 'Diane Lodder', 'Ron Rifkin': 'Professor Tisch', 'Alicia Van Couvering': 'Daphne Tisch', 'John Ritter': 'Stanley Grubman', 'Sigourney Weaver': 'Eve Grubman', 'Paul Butler': 'Professor Sherman', 'Michael Connors': 'Man in Bar (as Michael W. Connors)', 'Theo Kogan': 'Woman in Bar', 'Adam LeFevre': 'Phil', 'Hope Chernov': 'Samantha Steadman', 'Debbon Ayer': 'Jean'}" tt0285823,"{'Antonio Banderas': 'El Mariachi', 'Salma Hayek': 'Carolina', 'Johnny Depp': 'Sands', 'Mickey Rourke': 'Billy', 'Eva Mendes': 'Ajedrez', 'Danny Trejo': 'Cucuy', 'Enrique Iglesias': 'Lorenzo', 'Marco Leonardi': 'Fideo', 'Cheech Marin': 'Belini', 'Rubén Blades': 'Jorge FBI', 'Willem Dafoe': 'Barillo', 'Gerardo Vigil': 'Marquez', 'Pedro Armendáriz Jr.': 'El Presidente (as Pedro Armendariz)', 'Julio Oscar Mechoso': 'Advisor', 'Tito Larriva': 'Cab Driver'}" tt0120879,"{'Ewan McGregor': 'Curt Wild', 'Jonathan Rhys Meyers': 'Brian Slade', 'Christian Bale': 'Arthur Stuart', 'Toni Collette': 'Mandy Slade', 'Eddie Izzard': 'Jerry Devine', 'Emily Woof': 'Shannon', 'Michael Feast': 'Cecil', 'Janet McTeer': 'Female Narrator (voice)', 'Mairead McKinley': 'Wilde Housemaid (as Maraid McKinley)', 'Luke Morgan Oliver': 'Oscar Wilde (8)', 'Osheen Jones': 'Jack Fairy (7)', 'Micko Westmoreland': 'Jack Fairy', 'Damian Suchet': 'BBC Reporter', 'Danny Nutt': 'Kissing Sailor', 'Wash Westmoreland': 'Young Man'}" tt0110907,"{'Marcello Mastroianni': 'Sergei (Sergio)', 'Sophia Loren': 'Isabella de la Fontaine', 'Jean-Pierre Cassel': 'Olivier de la Fontaine', 'Kim Basinger': 'Kitty Potter', 'Chiara Mastroianni': 'Sophie Choiset', 'Stephen Rea': ""Milo O'Brannigan"", 'Anouk Aimée': 'Simone Lowenthal (as Anouk Aimee)', 'Rupert Everett': 'Jack Lowenthal', 'Rossy de Palma': 'Pilar (as Rossy De Palma)', 'Tara Leon': 'Kiki Simpson', 'Georgianna Robertson': 'Dane Simpson', 'Lili Taylor': 'Fiona Ulrich', 'Ute Lemper': 'Albertine', 'Forest Whitaker': 'Cy Bianco', 'Tom Novembre': 'Reggie'}" tt0120907,"{'Jennifer Jason Leigh': 'Allegra Geller', 'Jude Law': 'Ted Pikul', 'Ian Holm': 'Kiri Vinokur', 'Willem Dafoe': 'Gas', 'Don McKellar': 'Yevgeny Nourish', 'Callum Keith Rennie': 'Hugo Carlaw', 'Christopher Eccleston': 'Seminar Leader', 'Sarah Polley': 'Merle', 'Robert A. Silverman': ""D'Arcy Nader"", 'Oscar Hsu': 'Chinese Waiter', 'Kris Lemche': 'Noel Dichter', 'Vik Sahay': 'Male Assistant', 'Kirsten Johnson': 'Female Assistant', 'James Kirchner': 'Landry', 'Balázs Koós': 'Male Volunteer'}" tt0858479,"{'Dennis Quaid': 'Lawrence Wetherhold', 'Sarah Jessica Parker': 'Janet Hartigan', 'Thomas Haden Church': 'Chuck Wetherhold', 'Ellen Page': 'Vanessa Wetherhold', 'Ashton Holmes': 'James Wetherhold', 'Christine Lahti': 'Nancy', 'Camille Mana': 'Missy', 'David Denman': 'William', 'Don Wadsworth': 'Hadley', 'Robert Haley': 'Roth', 'Patrick Sebes': 'Curtis', 'Kevin James Doyle': 'Rodney', 'Paul Huber': 'Ben (as Paul J. Huber)', 'Iva Jean Saraceni': 'Volunteer', 'Richard John Walters': 'Parking Lot Attendant'}" tt0274558,"{'Nicole Kidman': 'Virginia Woolf', 'Julianne Moore': 'Laura Brown', 'Meryl Streep': 'Clarissa Vaughan', 'Stephen Dillane': 'Leonard Woolf', 'Miranda Richardson': 'Vanessa Bell', 'George Loftus': 'Quentin Bell', 'Charley Ramm': 'Julian Bell', 'Sophie Wyburd': 'Angelica Bell', 'Lyndsey Marshal': 'Lottie Hope (as Lyndsay Marshal)', 'Linda Bassett': 'Nelly Boxall', 'Christian Coulson': 'Ralph Partridge', 'Michael Culkin': 'Doctor', 'John C. Reilly': 'Dan Brown', 'Jack Rovello': 'Richie', 'Toni Collette': 'Kitty'}" tt0115632,"{'Jeffrey Wright': 'Jean Michel Basquiat', 'Michael Wincott': 'Rene Ricard', 'Benicio Del Toro': 'Benny Dalmau', 'Claire Forlani': 'Gina Cardinale', 'David Bowie': 'Andy Warhol', 'Dennis Hopper': 'Bruno Bischofberger', 'Gary Oldman': 'Albert Milo', 'Christopher Walken': 'The Interviewer', 'Willem Dafoe': 'The Electrician', 'Jean-Claude La Marre': 'Shenge (as Jean Claude LaMarre)', 'Parker Posey': 'Mary Boone', 'Elina Löwensohn': 'Annina Nosei', 'Paul Bartel': 'Henry Geldzahler', 'Courtney Love': 'Big Pink', ""Tatum O'Neal"": 'Cynthia Kruger'}" tt1045670,"{'Sally Hawkins': 'Poppy', 'Elliot Cowan': 'Bookshop Assistant', 'Alexis Zegerman': 'Zoe', 'Andrea Riseborough': 'Dawn', 'Sinead Matthews': 'Alice (as Sinéad Matthews)', ""Kate O'Flynn"": 'Suzy', 'Sarah Niles': 'Tash', 'Eddie Marsan': 'Scott', 'Joseph Kloska': ""Suzy's Boyfriend"", 'Sylvestra Le Touzel': 'Heather', 'Anna Reynolds': 'Receptionist', 'Nonso Anozie': 'Ezra', 'Trevor Cooper': 'Patient', 'Karina Fernandez': 'Rosita Santos', 'Philip Arditti': 'Flamenco Student'}" tt0105236,"{'Harvey Keitel': 'Mr. White / Larry', 'Tim Roth': 'Mr. Orange / Freddy', 'Michael Madsen': 'Mr. Blonde / Vic Vega', 'Chris Penn': 'Nice Guy Eddie', 'Steve Buscemi': 'Mr. Pink', 'Lawrence Tierney': 'Joe Cabot', 'Randy Brooks': 'Holdaway', 'Kirk Baltz': 'Marvin Nash', 'Edward Bunker': 'Mr. Blue (as Eddie Bunker)', 'Quentin Tarantino': 'Mr. Brown', 'Rich Turner': 'Sheriff #1', 'David Steen': 'Sheriff #2', 'Tony Cosmo': 'Sheriff #3', 'Stevo Polyi': 'Sheriff #4 (as Stevo Poliy)', 'Michael Sottile': 'Teddy'}" tt0175142,"{'Carmen Electra': 'Drew', 'Dave Sheridan': 'The Killer / Doofy', 'Frank B. Moore': ""Not Drew's Boyfriend"", 'Giacomo Baessato': 'Trick or Treater #1', 'Kyle Graham': 'Trick or Treater #2', 'Leanne Santos': 'Trick or Treater #3', 'Mark McConchie': ""Drew's Dad"", 'Karen Kruper': ""Drew's Mom"", 'Anna Faris': 'Cindy', 'Jon Abrahams': 'Bobby', 'Rick Ducommun': ""Cindy's Dad"", 'Regina Hall': 'Brenda', 'Marlon Wayans': 'Shorty', 'Shannon Elizabeth': 'Buffy', 'Lloyd Berry': 'Homeless Man'}" tt0340377,"{'Peter Dinklage': 'Finbar McBride', 'Paul Benjamin': 'Henry Styles', 'Jase Blankfort': 'Store Customer', 'Paula Garcés': 'Cashier (as Paula Garces)', 'Josh Pais': 'Carl', 'Richard Kind': 'Louis Tiboni', 'Bobby Cannavale': 'Joe Oramas', 'Patricia Clarkson': 'Olivia Harris', 'Lynn Cohen': 'Patty at the Good to Go', 'Raven Goodwin': 'Cleo', 'Marla Sucharetza': 'Janice', 'Michelle Williams': 'Emily', 'Jayce Bartok': 'Chris', 'Joe Lo Truglio': 'Danny (as Joe Lotruglio)', 'John Slattery': 'David'}" tt0120577,"{'Ryan Phillippe': ""Shane O'Shea"", 'Salma Hayek': 'Anita', 'Neve Campbell': 'Julie Black', 'Mike Myers': 'Steve Rubell', 'Sela Ward': 'Billie Auster', 'Breckin Meyer': 'Greg Randazzo', 'Sherry Stringfield': 'Viv', 'Ellen Albertini Dow': 'Disco Dottie', 'Cameron Mathison': 'Atlanta', 'Noam Jenkins': 'Romeo', 'Jay Goede': 'Buck', 'Patrick Taylor': 'Tarzan', 'Heather Matarazzo': ""Grace O'Shea"", 'Skipp Sudduth': ""Harlan O'Shea"", 'Aemilia Robinson': ""Kelly O'Shea""}" tt0111512,"{'Jackie Chan': 'Wong Fei-hung', 'Lung Ti': ""Wong Kei-ying, Wong's Father"", 'Anita Mui': ""Ling - Wong's Step-Mother"", 'Felix Wong': 'Tsang', 'Chia-Liang Liu': 'Master Fu Wen-Chi (as Lau Kar-Leung)', 'Ken Lo': 'John (as Low Houi Kang)', 'Kar Lok Chin': 'Fo Sang (as Chin Ka Lok)', 'Ho-Sung Pak': 'Henry', 'Chi-Kwong Cheung': 'Tso (as Tseung Chi Kwong)', 'Yi-Sheng Han': 'Uncle Hing (as Hon Yee Sang)', 'Andy Lau': 'Counter Intelligence Officer', 'Wing-Fong Ho': 'Fun (as Ho Wing Fong)', 'Kar-Yung Lau': 'Marlon (as Kar Yung Lau)', 'Siu-Ming Lau': 'Mr. Chiu', 'Suki Kwan': ""Chiu's Wife""}" tt0113158,"{'Jennifer Jason Leigh': 'Sadie Flood', 'Mare Winningham': 'Georgia Flood', 'Ted Levine': 'Jake', 'Max Perlich': 'Axel Goldman', 'John Doe': 'Bobby', 'John C. Reilly': 'Herman', 'Jimmy Witherspoon': 'Trucker', 'Jason Carter': 'Chasman', 'Tom Bower': 'Erwin Flood', 'Smokey Hormel': 'Leland', 'Jimmy Z.': 'Clay', 'Tony Marsico': 'Paul', 'Jamian Briar': 'Andrew Flood', 'Rachel Rasco': 'Mish Flood', 'Nicole Donahoo': 'Young Sadie Flood'}" tt0306047,"{'Pamela Anderson': 'Becca', 'Jenny McCarthy': 'Kate', 'Marny Eng': 'Tabitha', 'Charlie Sheen': 'Tom', 'Simon Rex': 'George', 'Jianna Ballard': 'Sue', 'Jeremy Piven': 'Ross Giggins', 'Anna Faris': 'Cindy', 'Timothy Stack': 'Carson Ward (as Tim Stack)', 'Elaine Klimaszewski': 'Elaine', 'Diane Klimaszewski': 'Diane', 'Camryn Manheim': 'Trooper Champlin', 'Drew Mikuska': 'Cody', 'Regina Hall': 'Brenda Meeks', 'Darrell Hammond': 'Father Muldoon'}" tt0104567,"{'Brad Pitt': 'Johnny Suede', 'Richard Boes': 'Man in Tuxedo', 'Cheryl Costa': 'Woman in Alley', 'Michael Luciano': 'Mr. Clepp', 'Calvin Levels': 'Deke', 'Nick Cave': 'Freak Storm', 'Ralph Marrero': 'Bartender', 'Wilfredo Giovanni Clark': 'Slick', 'Alison Moir': 'Darlette', 'Peter McRobbie': 'Flip Doubt', 'Ron Vawter': 'Winston', 'Dennis Parlato': 'Dalton', 'Tina Louise': 'Mrs. Fontaine', 'Michael Mulheren': 'Fred Business', 'Wayne Maugans': 'Ned Business'}" tt0307987,"{'Billy Bob Thornton': 'Willie', 'Tony Cox': 'Marcus', 'Brett Kelly': 'The Kid', 'Lauren Graham': 'Sue', 'Lauren Tom': 'Lois', 'Bernie Mac': 'Gin', 'John Ritter': 'Bob Chipeska', 'Ajay Naidu': 'Hindustani Troublemaker', 'Lorna Scott': 'Milwaukee Mother', 'Harrison Bieker': 'Milwaukee Boy', 'Alex Borstein': 'Milwaukee Mom with Photo', 'Alexandra Korhan': ""Girl on Santa's Lap"", 'Dylan Charles': 'Milwaukee Bratty Boy', 'Billy Gardell': 'Milwaukee Security Guard', 'Lisa Ross': 'Milwaukee Bartender'}" tt0240890,"{'John Cusack': 'Jonathan Trager', 'Kate Beckinsale': 'Sara Thomas', 'Jeremy Piven': 'Dean Kansky', 'Bridget Moynahan': 'Halley Buchanan', 'Eugene Levy': ""Bloomingdale's Salesman"", 'Lilli Lavine': ""Bloomingdale's Stock Girl"", 'Michael Guarino Jr.': ""Customer At Bloomingdale's (as Michael Guarino)"", 'Abdul Alshawish': ""Customer At Bloomingdale's"", 'Stephen Bruce': 'Host At Serendipity', 'David Sparrow': ""Josh's Dad"", 'Ann Talman': ""Bloomingdale's Saleswoman #1"", 'Crystal Bock': ""Bloomingdale's Saleswoman #2"", 'Gary Gerbrandt': 'Josh', 'Kate Blumberg': 'Courtney', 'Ron Payne': 'Louis Trager'}" tt0114194,"{'Christopher Walken': 'Gabriel', 'Elias Koteas': 'Thomas Dagget', 'Virginia Madsen': 'Katherine', 'Eric Stoltz': 'Simon', 'Viggo Mortensen': 'Lucifer', 'Amanda Plummer': 'Rachael', ""Moriah 'Shining Dove' Snyder"": 'Mary (as Moriah Shining Dove Snyder)', 'Adam Goldberg': 'Jerry', 'Steve Hytner': 'Joseph', 'J.C. Quinn': 'Burrows', 'Emma Shenah': 'Grandmother', 'Albert Nelson': 'Grey Horse', 'Shawn Nelson': 'Indian Healer', 'Emily Conforto': 'Sandra', 'Sioux-z Jessup': 'Nurse'}" tt0120679,"{'Salma Hayek': 'Frida Kahlo', 'Mía Maestro': 'Cristina Kahlo', 'Amelia Zapata': 'Maid', 'Alejandro Usigli': 'Professor', 'Diego Luna': ""Alejandro 'Alex'"", 'Alfred Molina': 'Diego Rivera', 'Lucia Bravo': 'Auditorium Model', 'Valeria Golino': 'Lupe Marín', 'Patricia Reyes Spíndola': 'Matilde Kahlo (as Patricia Reyes Spindola)', 'Loló Navarro': 'Nanny (as Lolo Navarro)', 'Roger Rees': 'Guillermo Kahlo', 'Fermín Martínez': 'Painter on Bus (as Fermin Martinez)', 'Roberto Medina': 'Dr. Farril', 'Ashley Judd': 'Tina Modotti', 'Antonio Banderas': 'David Alfaro Siqueiros'}" tt0105488,"{'Paul Mercurio': 'Scott Hastings', 'Tara Morice': 'Fran', 'Bill Hunter': 'Barry Fife', 'Pat Thomson': 'Shirley Hastings', 'Gia Carides': 'Liz Holt', 'Peter Whitford': 'Les Kendall', 'Barry Otto': 'Doug Hastings', 'John Hannan': 'Ken Railings', 'Sonia Kruger': 'Tina Sparkle', 'Kris McQuade': 'Charm Leachman', 'Pip Mushin': 'Wayne Burns', 'Leonie Page': 'Vanessa Cronin', 'Antonio Vargas': 'Rico', 'Armonia Benedito': 'Ya Ya', 'Jack Webster': 'Terry'}" tt0308644,"{'Johnny Depp': 'Sir James Matthew Barrie', 'Kate Winslet': 'Sylvia Llewelyn Davies', 'Julie Christie': 'Mrs. Emma du Maurier', 'Radha Mitchell': 'Mary Ansell Barrie', 'Dustin Hoffman': 'Charles Frohman', 'Freddie Highmore': 'Peter Llewelyn Davies', 'Joe Prospero': 'Jack Llewelyn Davies', 'Nick Roud': 'George Llewelyn Davies', 'Luke Spill': 'Michael Llewelyn Davies', 'Ian Hart': 'Sir Arthur Conan Doyle', 'Kelly Macdonald': ""'Peter Pan'"", 'Mackenzie Crook': 'Mr. Jaspers - Usher', 'Eileen Essell': 'Mrs. Snow', 'Jimmy Gardner': 'Mr. Snow', 'Oliver Fox': 'Gilbert Cannan'}" tt0301199,"{'Chiwetel Ejiofor': 'Okwe', 'Audrey Tautou': 'Senay Gelik', 'Sergi López': 'Sneaky / Juan', 'Sophie Okonedo': 'Juliette', 'Benedict Wong': 'Guo Yi', 'Zlatko Buric': 'Ivan', 'Kriss Dosanjh': 'Asian Businessman', 'Israel Oyelumade': 'Mini Cab Driver (as Israel Aduramo)', 'Yemi Goodman Ajibade': 'Mini Cab Driver (as Ade-Yemi Ajibade)', 'Nizwar Karanj': 'Mini Cab Driver', 'Deobia Oparei': 'Mini Cab Driver', 'Jeffery Kissoon': 'Cab Controller', 'Kenan Hudaverdi': 'Cafe Owner', 'Damon Younger': 'Punter', 'Paul Bhattacharjee': 'Mohammed'}" tt0247425,"{'Tom Wilkinson': 'Matt Fowler', 'Sissy Spacek': 'Ruth Fowler', 'Nick Stahl': 'Frank Fowler', 'Marisa Tomei': 'Natalie Strout', 'William Mapother': 'Richard Strout', 'William Wise': 'Willis Grinnel', 'Celia Weston': 'Katie Grinnel', 'Karen Allen': 'Marla Keyes', 'Frank T. Wells': 'Henry', 'W. Clapham Murray': 'Carl', 'Justin Ashforth': 'Tim Bryson', 'Terry A. Burgess': 'District Attorney', 'Jonathan Walsh': 'Father McCasslin', 'Diane E. Hamlin': ""Davis' Assistant"", 'Camden Munson': 'Jason Strout'}" tt0113326,"{'Jackie Chan': 'Keung', 'Anita Mui': 'Elaine', 'Françoise Yip': 'Nancy (as Francois Yip)', 'Bill Tung': 'Uncle Bill', 'Marc Akerstream': 'Tony', 'Garvin Cross': 'Angelo', 'Morgan Lam': 'Danny', 'Ailen Sit': ""Tony's Gang Member"", 'Man-Ching Chan': ""Tony's Gang Member (as Chan Man Ching)"", 'Fred Andrucci': ""Tony's Gang Member"", 'Mark Antoniuk': ""Tony's Gang Member"", 'Lauro David Chartrand-DelValle': ""Tony's Gang Member (as Lauro Chartrand)"", 'Chris Franco': ""Tony's Gang Member"", 'Lance Gibson': ""Tony's Gang Member"", 'David Hooper': ""Tony's Gang Member""}" tt0117283,"{'David Schwimmer': 'Tom Thompson', 'Gwyneth Paltrow': 'Julie DeMarco', 'Michael Rapaport': 'Brad Schorr', 'Toni Collette': 'Cynthia', 'Carol Kane': ""Tom's Mother"", 'Michael Vartan': 'Scott', 'Bitty Schram': 'Lauren', 'Jean De Baer': 'Suzanne DeMarco', 'Elizabeth Franz': 'Aunt Lucille', 'Mark Margolis': 'Philip DeMarco', 'Barbara Hershey': 'Ruth Abernathy', 'Edoardo Ballerini': 'The Job Interviewer', 'Matthew Faber': 'Jared', 'Robin Morse': 'Sylvie', 'Tony Machine': 'The Undertaker'}" tt0077594,"{'Bruce Lee': 'Billy Lo / Hai Tien (original 1972 footage) (archive footage)', 'Gig Young': 'Jim Marshall', 'Dean Jagger': 'Dr. Land', ""Hugh O'Brian"": 'Steiner', 'Colleen Camp': 'Ann Morris', 'Robert Wall': 'Carl Miller', 'Mel Novak': 'Stick', 'Kareem Abdul-Jabbar': 'Hakim / Mantis (original 1972 footage) (archive footage)', 'Chuck Norris': 'Fighter (archive footage)', 'Dan Inosanto': 'Pasqual / Third Floor Guardian (original 1972 footage) (as Danny Inosanto)', 'Billy McGill': 'John', 'Sammo Kam-Bo Hung': 'Lo Chen (as Hung Kim Po)', 'Roy Chiao': 'Henry Lo', 'Tony Chiu-Wai Leung': 'David (as Tony Leung)', 'Jim James': 'Surgeon'}" tt0299977,"{'Jet Li': 'Nameless', 'Tony Chiu-Wai Leung': 'Broken Sword (as Tony Leung Chiu-Wai)', 'Maggie Cheung': 'Flying Snow (as Maggie Cheung Man-Yuk)', 'Ziyi Zhang': 'Moon (as Zhang Ziyi)', 'Daoming Chen': 'King (as Chen Dao Ming)', 'Donnie Yen': 'Sky', 'Zhongyuan Liu': 'Scholar (as Liu Zhong Yuan)', 'Tianyong Zheng': 'Old Servant (as Zheng Tian Yong)', 'Yan Qin': 'Prime Minister', 'Chang Xiao Yang': 'General', 'Yakun Zhang': 'Commander (as Zhang Ya Kun)', 'Ma Wen Hua': 'Head Eunuch', 'Jin Ming': 'Eunuch', 'Xu Kuang Hua': 'Pianist', 'Shou Xin Wang': 'Musician'}" tt0213847,"{'Monica Bellucci': 'Malèna Scordia', 'Giuseppe Sulfaro': 'Renato Amoroso', 'Luciano Federico': ""Renato's Father"", 'Matilde Piana': ""Renato's Mother"", 'Pietro Notarianni': 'Professor Bonsignore', 'Gaetano Aronica': 'Nino Scordia', 'Gilberto Idonea': 'Avvocato Centorbi (as Gilberto Idone)', 'Angelo Pellegrino': 'Segretario politico', 'Gabriella Di Luzio': 'Mantenuta del Barone', 'Pippo Provvidenti': 'Dott. Cusimano', 'Maria Terranova': 'Moglie Dott. Cusimano', 'Marcello Catalano': 'Lieutenant Cadei', 'Elisa Morucci': 'Lupetta', 'Domenico Gennaro': 'Farmacista', 'Vitalba Andrea': 'Moglie farmacista'}" tt0104558,"{'Jackie Chan': 'Insp. Chan Ka Kui', 'Michelle Yeoh': 'Insp. Jessica Yang - Director of INTERPOL (as Michelle Khan)', 'Maggie Cheung': 'May', 'Kenneth Tsang': 'Chaibat (as Ken Tsang)', 'Wah Yuen': 'Panther', 'Bill Tung': ""'Uncle' Bill Wong"", 'Josephine Koo': ""Cheng Wen Shi - Chaibat's Wife"", 'Kelvin Wong': 'Peter (as Wong Siu)', 'Philip Chan': 'Insp. Y.K. Chen', 'Ken Lo': ""Chaibat's Man (as Lowei Kwong)"", 'Lieh Lo': 'The General (as Lit Law)', 'Wai Shum': 'Drug Lord #1 at Meeting', 'Yi-Sheng Han': '(as Yee Sang Hon)'}" tt0355295,"{'Petr Ratimec': 'Young Will', 'Barbora Lukesová': 'Mother Grimm (as Barbara Lukesova)', 'Anna Rust': 'Sister Grimm', 'Jeremy Robson': 'Young Jacob', 'Matt Damon': 'Wilhelm Grimm', 'Heath Ledger': 'Jacob Grimm', 'Radim Kalvoda': 'Gendarme', 'Martin Hofmann': 'Gendarme', 'Josef Pepa Nos': 'German War Veteran', 'Harry Gilliam': 'Stable Boy', 'Miroslav Táborský': 'Old Miller', 'Roger Ashton-Griffiths': 'Mayor', 'Marika Sarah Procházková': ""Miller's Daughter (as Marika Prochazkova)"", 'Mackenzie Crook': 'Hidlick', 'Richard Ridings': 'Bunst'}" tt0117571,"{'Drew Barrymore': 'Casey Becker', 'Roger Jackson': 'Phone Voice (voice)', 'Kevin Patrick Walls': 'Steve Orth', 'David Booth': ""Casey's Father"", 'Carla Hatley': ""Casey's Mother"", 'Neve Campbell': 'Sidney Prescott', 'Skeet Ulrich': 'Billy Loomis', 'Lawrence Hecht': 'Neil Prescott', 'Courteney Cox': 'Gale Weathers', 'W. Earl Brown': 'Kenny Jones', 'Rose McGowan': 'Tatum Riley', 'Lois Saunders': 'Mrs. Tate', 'David Arquette': 'Deputy Dewey', 'Joseph Whipp': 'Sheriff Burke', 'Matthew Lillard': 'Stuart'}" tt0211915,"{'Audrey Tautou': 'Amélie Poulain', 'Mathieu Kassovitz': 'Nino Quincampoix', 'Rufus': 'Raphaël Poulain', 'Lorella Cravotta': 'Amandine Poulain', 'Serge Merlin': 'Raymond Dufayel', 'Jamel Debbouze': 'Lucien', 'Clotilde Mollet': 'Gina', 'Claire Maurier': 'Madame Suzanne - la patronne du café', 'Isabelle Nanty': 'Georgette', 'Dominique Pinon': 'Joseph', 'Artus de Penguern': 'Hipolito', 'Yolande Moreau': 'Madeleine Wallace', 'Urbain Cancelier': 'Collignon', 'Maurice Bénichou': 'Dominique Bretodeau', 'Michel Robin': 'Mr. Collignon'}" tt0118842,"{'Ethan Suplee': 'Fan', 'Ben Affleck': 'Holden McNeil', 'Scott Mosier': 'Collector', 'Jason Lee': 'Banky Edwards', 'Casey Affleck': 'Little Kid', 'Dwight Ewell': 'Hooper X', 'Joey Lauren Adams': 'Alyssa Jones', 'Guinevere Turner': 'Singer', 'Carmen Llywelyn': 'Kim (as Carmen Lee)', ""Brian O'Halloran"": 'Jim Hicks - Executive #1', 'Matt Damon': 'Shawn Oran - Executive #2', 'Alexander Goebbel': 'Train Kid', 'Tony Torn': 'Cashier', 'Rebecca Waxman': 'Dalia', 'Paris Petrick': 'Tory'}" tt0115639,"{'Matt Dillon': ""Tommy 'Birdman' Rowland"", 'Noah Emmerich': ""Michael 'Mo' Morris"", 'Annabeth Gish': 'Tracy Stover', 'Lauren Holly': 'Darian Smalls', 'Timothy Hutton': 'Willie Conway', ""Rosie O'Donnell"": 'Gina Barrisano', 'Max Perlich': 'Kev', 'Martha Plimpton': 'Jan', 'Natalie Portman': 'Marty', 'Michael Rapaport': 'Paul Kirkwood', 'Mira Sorvino': 'Sharon Cassidy', 'Uma Thurman': 'Andera', 'Pruitt Taylor Vince': ""Stanley 'Stinky' Womack"", 'Anne Bobby': 'Sarah Morris', 'Richard Bright': 'Dick Conway'}" tt0436697,"{'Helen Mirren': 'The Queen', 'James Cromwell': 'Prince Philip', 'Alex Jennings': 'Prince Charles', 'Roger Allam': 'Robin Janvrin', 'Sylvia Syms': 'Queen Mother', 'Tim McMullan': 'Stephen Lamport', 'Robin Soans': 'Equerry', 'Lola Peploe': ""Janvrin's Secretary"", 'Douglas Reith': 'Lord Airlie', 'Joyce Henderson': 'Balmoral Maid', 'Pat Laffan': 'Head Ghillie', 'Amanda Hadingue': ""Queen's Dresser"", 'John McGlynn': 'Balmoral Head Ghillie', ""Gray O'Brien"": ""Charles' Valet"", 'Dolina MacLennan': 'Balmoral Switchboard Operator'}" tt0338096,"{'Diego Luna': 'Javier Suarez', 'Romola Garai': 'Katey Miller', 'Sela Ward': 'Jeannie Miller', 'John Slattery': 'Bert Miller', 'Jonathan Jackson': 'James Phelps', 'January Jones': 'Eve', 'Mika Boorem': 'Susie Miller', 'René Lavan': 'Carlos Suarez', 'Mya': 'Lola Martinez (as Mya Harrison)', 'Polly Cole': 'Polly (as Polly Cusumano)', 'Chris Engen': 'Steph', 'Tommy Kavelin': 'Señor Alonso', 'Wilmer Cordero': 'Teacher', 'Charlie Rodriguez': 'Grandpa Suarez', 'Donato Poveda': 'Troubador (as Donato)'}" tt0363226,"{'Takeshi Kitano': 'Zatôichi / Ichi (as Beat Takeshi)', 'Tadanobu Asano': 'Hattori Genosuke', 'Michiyo Yasuda': 'Aunt Oume (as Michiyo Ohkusu)', 'Taka Guadalcanal': 'Shinkichi', 'Daigorô Tachibana': ""Geisha Seitaro 'Osei' Naruto"", 'Yûko Daike': 'Geisha Okinu Naruto', 'Yui Natsukawa': ""O-Shino, Hattori's Wife"", 'Ittoku Kishibe': 'Boss Inosuke Ginzo', 'Saburô Ishikura': 'Boss Tashichi Ogi', 'Akira Emoto': 'Tavern Owner Pops', 'Ben Hiura': 'Tavern Gramps', 'Kohji Miura': 'Lord Sakai', 'Hideboh': 'Dancing Farmer (as The Stripes)', 'Ron II': 'Dancing Farmer (as The Stripes)', 'Suji': 'Dancing Farmer (as The Stripes)'}" tt0108148,"{'Rongguang Yu': 'Dr. Yang / Iron Monkey', 'Donnie Yen': 'Wong Kei-Ying', 'Jean Wang': 'Miss Orchid', 'Sze-Man Tsang': 'Wong Fei-Hong', 'Shun-Yee Yuen': 'General Fox', 'James Wong': 'Governor Cheng Pak-Fong', 'Shi-Kwan Yen': 'Hin Hung (as Yee Kwan Yan)', 'Fai Lee': ""Hin Hung's disciple #1"", 'Hou Hsiao': ""Hin Hung's disciple #2"", 'Brianne Brozey': 'Wong Fei-Hung (voice)', 'Mandy Chan': 'Shaolin Monk #4 (as Man-Dik Ko)', 'Siu Wah Chan': 'Shaolin Monk #2', 'Fung-Lei Cheung': ""Governor Cheng's favorite mistress"", 'Kwai Po Chun': 'Shaolin Monk #1 (as Kwai Po Chin)', 'Peter Doyle': ""Orchid's Boss (Flashback Scene) (voice)""}" tt0270288,"{'Dick Clark': 'Himself', 'Sam Rockwell': 'Chuck Barris', 'Michelle Sweeney': 'J. Sweeney', 'Drew Barrymore': 'Penny', 'Chelsea Ceci': 'Tuvia, Age 8', 'Michael Cera': 'Chuck Age 8 and 11 (as Michael Céra)', 'Aimee Rose Ambroziak': ""Chuck's Date #1"", 'Isabelle Blais': ""Chuck's Date #2"", 'Melissa Carter': ""Chuck's Date #3"", 'Jennifer Hall': 'Georgia', 'Ilona Elkin': ""Georgia's Girlfriend"", 'Sean Tucker': 'Barfly', 'Jaye P. Morgan': 'Herself', 'Maggie Gyllenhaal': 'Debbie', 'David Julian Hirsh': 'Freddie Cannon (as David Hirsh)'}" tt0160862,"{'Freddie Prinze Jr.': 'Zack Siler', 'Rachael Leigh Cook': 'Laney Boggs', 'Matthew Lillard': 'Brock Hudson', 'Paul Walker': 'Dean Sampson', ""Jodi Lyn O'Keefe"": 'Taylor Vaughan', 'Kevin Pollak': 'Wayne Boggs', 'Anna Paquin': 'Mackenzie Siler', 'Kieran Culkin': 'Simon Boggs', 'Elden Henson': 'Jesse Jackson', 'Usher Raymond': 'Campus D.J.', ""Lil' Kim"": ""Alex (as Kimberly 'Lil' Kim' Jones)"", 'Gabrielle Union': 'Katie', 'Dulé Hill': 'Preston', 'Tamara Mello': 'Chandler', 'Clea DuVall': 'Misty'}" tt0134119,"{'Matt Damon': 'Tom Ripley', 'Gwyneth Paltrow': 'Marge Sherwood', 'Jude Law': 'Dickie Greenleaf', 'Cate Blanchett': 'Meredith Logue', 'Philip Seymour Hoffman': 'Freddie Miles', 'Jack Davenport': 'Peter Smith-Kingsley', 'James Rebhorn': 'Herbert Greenleaf', 'Sergio Rubini': 'Inspector Roverini', 'Philip Baker Hall': 'Alvin MacCarron', 'Celia Weston': 'Aunt Joan', 'Fiorello': 'Fausto (as Rosario Fiorello)', 'Stefania Rocca': 'Silvana', 'Ivano Marescotti': 'Colonnello Verrecchia', 'Anna Longhi': 'Signora Buffi', 'Alessandro Fabrizi': 'Sergeant Baggio'}" tt0264150,"{'Gwyneth Paltrow': 'Donna Jensen', 'Christina Applegate': 'Christine Montgomery', 'Mark Ruffalo': 'Ted Stewart', 'Candice Bergen': 'Sally Weston', 'Joshua Malina': 'Randy Jones (as Josh Malina)', 'Kelly Preston': 'Sherry', 'Rob Lowe': 'Co-Pilot Steve Bench', 'Mike Myers': 'John Witney', 'Marc Blucas': 'Tommy Boulay', 'Stacey Dash': 'Angela Samona', 'Jon Polito': 'Roy Roby', 'Concetta Tomei': 'Mrs. Stewart', 'Robyn Peterson': ""Donna's Mom"", 'Nadia Dajani': 'Paige', 'John Francis Daley': 'Rodney'}" tt0384806,"{'Ryan Reynolds': 'George Lutz', 'Melissa George': 'Kathy Lutz', 'Jesse James': 'Billy Lutz', 'Jimmy Bennett': 'Michael Lutz', 'Chloë Grace Moretz': 'Chelsea Lutz', 'Rachel Nichols': 'Lisa', 'Philip Baker Hall': 'Father Callaway', 'Isabel Conner': 'Jodie Defeo', 'Brendan Donaldson': 'Ronald Defeo', 'Annabel Armour': 'Realtor', 'Rich Komenich': 'Chief of Police', 'David Gee': 'ER Doctor', 'Danny McCarthy': 'Officer Greguski', 'Nancy Lollar': 'Librarian', 'José Taitano': 'Stitch'}" tt0286112,"{'Stephen Chow': 'Mighty Steel Leg Sing', 'Man-Tat Ng': 'Golden Leg Fung (as Ng Mang Tat) (as Mang Tat Ng)', 'Wei Zhao': 'Mui (as Vicki Zhao)', 'Yin Tse': 'Team Evil Coach Hung (as Patrick Tse Yin)', 'Hui Li': 'Banana Peel Girl', 'Cecilia Cheung': 'Team Moustache Player 1', 'Karen Mok': 'Team Moustache Player 2', 'Vincent Kok': 'Team Puma Leader', 'Kai-Man Tin': 'Iron Shirt Tin (Third Brother)', 'Yat-Fei Wong': 'Iron Head (First Brother) (as Wong Kai Yue)', 'Tze Chung Lam': 'Light Weight (Small Brother) (as Lam Tze Chung)', 'Danny Chan Kwok-Kwan': 'Lightning Hands (Fourth Brother) (as Chan Kwon Kwan)', 'Meilin Mo': 'Hooking Leg (Second Brother) (as Mei-Lin Mo)', 'Ming Ming Zhang': 'Little Hung', 'Pu Ye Dong': 'Little Fung'}" tt0107822,"{'Holly Hunter': 'Ada McGrath', 'Harvey Keitel': 'George Baines', 'Sam Neill': 'Alisdair Stewart', 'Anna Paquin': 'Flora McGrath', 'Kerry Walker': 'Aunt Morag', 'Geneviève Lemon': 'Nessie (as Genevieve Lemon)', 'Tungia Baker': 'Hira', 'Ian Mune': 'Reverend', 'Peter Dennett': 'Head Seaman', 'Te Whatanui Skipwith': 'Chief Nihe', 'Pete Smith': 'Hone', 'Bruce Allpress': 'Blind Piano Tuner', 'Cliff Curtis': 'Mana', 'Carla Rupuha': 'Heni (Mission Girl)', 'Mahina Tunui': 'Mere (Mission Girl)'}" tt0120321,"{'Adam Beach': 'Victor Joseph', 'Evan Adams': 'Thomas Builds-the-Fire', 'Irene Bedard': 'Suzy Song', 'Gary Farmer': 'Arnold Joseph', 'Tantoo Cardinal': 'Arlene Joseph', 'Cody Lightning': 'Young Victor Joseph', 'Simon Baker': 'Young Thomas Builds-the-Fire', 'Monique Mojica': 'Grandma Builds-the-Fire', 'John Trudell': 'Randy Peone', 'Chief Leonard George': 'Lester Fallsapart (as Leonard George)', 'Michael Greyeyes': 'Junior Polatkin', 'Darwin Haine': 'Boo', 'Michelle St. John': 'Velma', 'Elaine Miles': 'Lucy', 'Cynthia Geary': 'Cathy the Gymnast'}" tt0192071,"{'Kirsten Dunst': 'Kelly Woods', 'Ben Foster': 'Berke Landers', 'Melissa Sagemiller': 'Allison McAllister', 'Sisqó': 'Dennis Wallace', 'Shane West': ""Bentley 'Striker' Scrumfeld"", 'Colin Hanks': 'Felix Woods', 'Zoe Saldana': 'Maggie (as Zoë Saldana)', 'Mila Kunis': 'Basin', 'Swoosie Kurtz': 'Beverly Landers', 'Ed Begley Jr.': 'Frank Landers', 'Martin Short': 'Dr. Desmond Forrest Oates', 'Carmen Electra': 'Mistress Moira', 'Vitamin C': 'Herself', 'Coolio': 'Himself', 'Christopher Jacot': 'Peter Wong'}" tt0302674,"{'Casey Affleck': 'Gerry', 'Matt Damon': 'Gerry'}" tt0250323,"{'Tilda Swinton': 'Margaret Hall', 'Goran Visnjic': 'Alek Spera', 'Jonathan Tucker': 'Beau Hall', 'Peter Donat': 'Jack Hall', 'Josh Lucas': 'Darby Reese', 'Raymond J. Barry': 'Carlie Nagel (as Raymond Barry)', 'Tamara Hope': 'Paige Hall', 'Jordon Dorrance': 'Dylan Hall', 'Heather Mathieson': 'Sue Lloyd', 'Holmes Osborne': 'Loan Officer', 'Richard Gross': 'Deputy Sheriff', 'Kip Martin': 'BVD', 'Frankie Loyal': 'Barrish Brother (as Franco Delgado)', 'Kip Ellwood': 'Male Nurse', 'Margot Krindel': 'Jackie'}" tt0184858,"{'Ben Affleck': 'Rudy Duncan', 'James Frain': 'Nick Cassidy', 'Dana Stubblefield': 'The Alamo', 'Mark Acheson': 'Mean Guard', 'Tom Heaton': 'Ugly Staffer', 'Isaac Hayes': 'Zook', 'Michael Sunczyk': 'Distant Inmate #1', 'Douglas Arthurs': 'Distant Inmate #2 (as Douglas H. Arthurs)', 'Dean Wray': 'Guard #1', 'Ron Sauvé': 'Guard #2 (as Ron Sauve)', 'Ron Jeremy': 'Prisoner #1 (as Ron Hyatt)', 'Hrothgar Mathews': 'Exit Guard', 'Charlize Theron': 'Ashley', 'Clarence Williams III': 'Merlin', 'Donal Logue': 'Pug'}" tt0300051,"{'Betty Aberlin': 'Teacher', 'Matt McFarland': 'Boy #1', 'Sarah Stafford': 'Girl #1', 'Paulie Litt': 'Bryan (as Paulie Litowsky)', 'Christian Fan': 'Boy #3', 'Victor Chavez': 'Boy #4', 'William Mace': 'Boy #5', 'Raquel Castro': 'Gertie Trinke', 'Ben Affleck': 'Ollie Trinke', 'Jennifer Schwalbach Smith': 'Susan (as Jennifer Schwalbach)', 'Jennifer Lopez': 'Gertrude Steiney', 'George Carlin': 'Bart Trinke', 'Stephen Root': 'Greenie', 'Mike Starr': 'Block', 'S. Epatha Merkerson': 'Doctor #1'}" tt0144715,"{'Kate Winslet': 'Ruth', 'Harvey Keitel': 'PJ Waters', 'Julie Hamilton': 'Mum', 'Sophie Lee': 'Yvonne', 'Dan Wyllie': 'Robbie', 'Paul Goddard': 'Tim', 'Tim Robertson': 'Dad', 'George Rafael': 'Yani (as George Mangos)', 'Kerry Walker': 'Puss', 'Les Dayman': 'Bill-Bill (as Leslie Dayman)', 'Samantha Murray': 'Prue', 'Sandy Gutman': 'Stan (as Austen Tayshus)', 'Simon Anderson': 'Fabio', 'Pam Grier': 'Carol', 'Eva Martin': 'Devotee'}" tt0377107,"{'Gwyneth Paltrow': 'Catherine', 'Anthony Hopkins': 'Robert', 'Jake Gyllenhaal': 'Harold Dobbs - Hal', 'Danny McCarthy': 'Cop', 'Hope Davis': 'Claire', 'Tobiasz Daszkiewicz': 'Limo Driver (as Tobiacz Daszkiewicz)', 'Gary Houston': 'Professor Barrow', 'Anne Wittman': 'Friend at Party', 'Leigh Zimmerman': 'Friend at Party', 'Colin Stinton': 'Theoretical Physicist', 'Leland Burnett': 'Band Vocalist', 'John Keefe': 'University Friend', 'Chipo Chung': 'University Friend', 'C. Gerod Harris': 'University Friend (as C Gerod Harris)', 'Roshan Seth': 'Professor Bhandari'}" tt0110588,"{'Jennifer Jason Leigh': 'Dorothy Parker', 'Campbell Scott': 'Robert Benchley', 'Matthew Broderick': 'Charles MacArthur', 'Peter Gallagher': 'Alan Campbell', 'Jennifer Beals': 'Gertrude Benchley', 'Andrew McCarthy': 'Eddie Parker', 'Wallace Shawn': 'Horatio Byrd', 'Martha Plimpton': 'Jane Grant', 'Sam Robards': 'Harold Ross', 'Lili Taylor': 'Edna Ferber', 'James Le Gros': 'Deems Taylor (as James LeGros)', 'Gwyneth Paltrow': 'Paula Hunt', 'Nick Cassavetes': 'Robert Sherwood', 'David Thornton': 'George S. Kaufman', 'Heather Graham': 'Mary Kennedy Taylor'}" tt0119324,"{'Parker Posey': 'Jackie-O', 'Josh Hamilton': 'Marty', 'Tori Spelling': 'Lesly', 'Freddie Prinze Jr.': 'Anthony', 'Geneviève Bujold': 'Mrs. Pascal (as Genevieve Bujold)', 'Rachael Leigh Cook': 'Young Jackie-O', 'David Love': 'Young Marty (voice)'}" tt0186894,"{'Ben Affleck': 'Buddy Amaral', 'Gwyneth Paltrow': 'Abby Janello', 'Natasha Henstridge': 'Mimi Prager', 'Edward Edwards': 'Ron Wachter', 'Jennifer Grey': 'Janice Guerrero', 'Tony Goldwyn': 'Greg Janello', 'Lisa Carpenter-Prewitt': 'Carol Wilson', 'Lisa Joyner': 'T.V. Announcer', 'Richard Saxton': 'CNN Reporter', 'Caroline Aaron': 'Donna', 'David Dorfman': 'Joey Janello', 'Alex D. Linz': 'Scott Janello', 'Juan Garcia': 'Kevin Walters (as Juan García)', 'Mary Ellen Lyon': 'Ellen Seitz', 'Joe Morton': 'Jim Willer'}" tt0110598,"{'Sophie Lee': 'Tania Degano', 'Roz Hammond': 'Cheryl (as Rosalind Hammond)', 'Toni Collette': 'Muriel Heslop', 'Belinda Jarrett': 'Janine', 'Pippa Grandison': 'Nicole', 'Bill Hunter': 'Bill Heslop', 'Jeanie Drynan': 'Betty Heslop', 'Dan Wyllie': 'Perry Heslop (as Daniel Wyllie)', 'Gabby Millgate': 'Joanie Heslop', 'Gennie Nevinson': 'Deidre Chambers', 'Rachel Griffiths': 'Rhonda Epinstalk', 'Matt Day': 'Brice Nobes', 'Chris Haywood': 'Ken Blundell', 'Daniel Lapaine': 'David Van Arkle', 'Susan Prior': 'Girl at Wedding'}" tt0097937,"{'Daniel Day-Lewis': 'Christy Brown', 'Brenda Fricker': 'Mrs. Brown', 'Alison Whelan': 'Sheila', 'Kirsten Sheridan': 'Sharon', 'Declan Croghan': 'Tom', 'Eanna MacLiam': 'Benny', 'Marie Conmee': 'Sadie', 'Cyril Cusack': 'Lord Castlewelland', 'Phelim Drew': 'Brian', 'Ruth McCabe': 'Mary', 'Fiona Shaw': 'Dr. Eileen Cole', 'Ray McAnally': 'Mr. Brown', 'Pat Laffan': 'Barman (as Patrick Laffan)', 'Derry Power': 'Customer in Bar', ""Hugh O'Conor"": 'Young Christy Brown'}" tt0035423,"{'Meg Ryan': 'Kate McKay', 'Hugh Jackman': 'Leopold', 'Liev Schreiber': 'Stuart Besser', 'Breckin Meyer': 'Charlie McKay', 'Natasha Lyonne': 'Darci', 'Bradley Whitford': 'J.J. Camden', 'Paxton Whitehead': 'Uncle Millard', 'Spalding Gray': 'Dr. Geisler', 'Josh Stamberg': 'Colleague Bob', 'Matthew Sussman': 'Ad Executive Phil', 'Charlotte Ayanna': 'Patrice', 'Philip Bosco': 'Otis', 'Andrew Jack': 'Roebling', 'Stan Tracy': 'Photographer', 'Kristen Schaal': 'Miss Tree'}" tt0190590,"{'George Clooney': 'Everett', 'John Turturro': 'Pete Hogwallop', 'Tim Blake Nelson': ""Delmar O'Donnell"", 'John Goodman': 'Big Dan Teague', 'Holly Hunter': 'Penny', 'Chris Thomas King': 'Tommy Johnson', 'Charles Durning': ""Pappy O'Daniel"", 'Del Pentecost': ""Junior O'Daniel"", 'Michael Badalucco': 'George Nelson', 'J.R. Horne': ""Pappy's Staff"", 'Brian Reddy': ""Pappy's Staff"", 'Wayne Duvall': 'Homer Stokes', 'Ed Gale': 'The Little Man', 'Ray McKinnon': 'Vernon T. Waldrip', 'Daniel von Bargen': 'Sheriff Cooley (as Daniel Von Bargen)'}" tt0162360,"{'Jeremy Northam': 'Harry', 'Steve Zahn': 'Wayne', 'William H. Macy': 'Chappy', 'Ally Walker': 'Joe', 'Illeana Douglas': 'Ms. Schaefer', 'M.C. Gainey': 'Bob Maslow', 'Ron Perlman': 'Nalhober', 'Mo Gaffney': 'Mrs. Bromley', 'Paul Dooley': 'The Judge', 'Jillian Berard': 'Madison', 'Scarlett Pomers': 'Jency', 'Melissa Arnold': 'Other Happy Girl', 'Cassie Silva': 'Other Happy Girl', 'Tiffany Takara': 'Other Happy Girl', 'Tim Bagley': 'David'}" tt0120148,"{'Gwyneth Paltrow': 'Helen', 'John Hannah': 'James', 'John Lynch': 'Gerry', 'Jeanne Tripplehorn': 'Lydia', 'Zara Turner': 'Anna', 'Douglas McFerran': 'Russell', 'Paul Brightwell': 'Clive', 'Nina Young': 'Claudia', 'Virginia McKenna': ""James's Mother"", 'Kevin McNally': 'Paul', 'Terry English': 'Kind Cabbie', 'Paul Stacey': 'Man on Tube', 'Peter Howitt': 'Cheeky Bloke', 'Joanna Roth': 'Suspicious Girl', 'Neil Stuke': 'Defensive Bloke'}" tt0117666,"{'Billy Bob Thornton': 'Karl Childers', 'Dwight Yoakam': 'Doyle Hargraves', 'J.T. Walsh': 'Charles Bushman', 'John Ritter': 'Vaughan Cunningham', 'Lucas Black': 'Frank Wheatley', 'Natalie Canerday': 'Linda Wheatley', 'James Hampton': 'Jerry Woolridge', 'Robert Duvall': ""Karl's Father"", 'Rick Dial': 'Bill Cox', 'Brent Briscoe': 'Scooter Hodges', 'Christine Renee Ward': 'Melinda (as Christy Ward)', 'Sarah Boss': 'Marsha Dwiggins', 'Kathy Sue Brown': 'Theresa Evans', 'Wendell Rafferty': 'Melvin', 'Bruce Hampton': 'Morris (as Col. Bruce Hampton Ret.)'}" tt0780511,"{'Robert De Niro': 'Frank Goode', 'Drew Barrymore': 'Rosie', 'Kate Beckinsale': 'Amy', 'Sam Rockwell': 'Robert', 'Lucian Maisel': 'Jack', 'Damian Young': 'Jeff', 'James Frain': 'Tom', 'Melissa Leo': 'Colleen', 'Katherine Moennig': 'Jilly', 'Brendan Sexton III': 'Mugger', 'James Murtaugh': 'Dr. Ed', 'Austin Lysy': 'David', 'Chandler Frantz': 'Young David', 'Lily Mo Sheen': 'Young Amy (as Lily Sheen)', 'Seamus Davey-Fitzpatrick': 'Young Robert'}" tt0114478,"{'Giancarlo Esposito': '1st OTB Man / Tommy', 'José Zúñiga': '2nd OTB Man / Jerry (as Jose Zuniga)', 'Stephen Gevedon': 'OTB Man #3, Dennis (as Steve Gevedon)', 'Harvey Keitel': 'Auggie Wren', 'Jared Harris': 'Jimmy Rose', 'William Hurt': 'Paul Benjamin', 'Daniel Auster': 'Book Thief', 'Harold Perrineau': 'Rashid Cole (as Harold Perrineau Jr.)', ""Deirdre O'Connell"": 'Sue the Waitress', 'Victor Argo': 'Vinnie', 'Michelle Hurst': 'Aunt Em', 'Forest Whitaker': 'Cyrus Cole', 'Stockard Channing': 'Ruby McNutt', 'Vincenzo Amelia': 'Irate Customer', 'Erica Gimpel': 'Doreen Cole'}" tt0115906,"{'Laura Dern': 'Ruth Stoops', 'Swoosie Kurtz': 'Diane Siegler', 'Kurtwood Smith': 'Norm Stoney', 'Mary Kay Place': 'Gail Stoney', 'Kelly Preston': 'Rachel', 'M.C. Gainey': 'Harlan', 'Kenneth Mars': 'Dr. Charlie Rollins', 'David Graf': 'Judge Richter', 'Kathleen Noone': 'Nurse Pat', 'Tippi Hedren': 'Jessica Weiss', 'Burt Reynolds': 'Blaine Gibbons', 'Lance Rome': ""Ricky, Ruth's Lover"", 'Jim Kalal': 'Tony Stoops', 'Shea Degan': 'Arresting Officer', 'Vince Morelli': 'Dr. George'}" tt0494222,"{'Loren Taylor': 'Lily (as Loren Horsley)', 'Jemaine Clement': 'Jarrod', 'Joel Tobeck': 'Damon', 'Brian Sergent': 'Jonah', 'Craig Hall': 'Doug', 'Rachel House': 'Nancy', 'Morag Hills': 'Vinny', 'Bernard Stewart': 'Zane', 'Taika Waititi': 'Gordon', 'David Fane': 'Eric Elisi', 'Cohen Holloway': 'Mason', 'Gentiane Lupi': 'Tracy', 'Chelsie Preston Crayford': 'Jenny', 'Adam Gardiner': 'Tony', 'Jackie van Beek': 'Burger Staff'}" tt0258068,"{'Michael Caine': 'Thomas Fowler', 'Brendan Fraser': 'Alden Pyle', 'Thi Hai Yen Do': 'Phuong', 'Rade Serbedzija': 'Inspector Vigot (as Rade Sherbedgia)', 'Tzi Ma': 'Hinh', 'Robert Stanton': 'Joe Tunney', 'Holmes Osborne': 'Bill Granger', 'Quang Hai': 'General Thé', 'Ferdinand Hoang': 'Mr. Muoi', 'Pham Thi Mai Hoa': ""Phuong's Sister"", 'Mathias Mlekuz': 'French Captain', 'Kevin Tran': 'Watch Tower Soldier', 'Lap Phan': 'Watch Tower Soldier', 'Tim Bennett': 'American Photographer', 'Jeff Truman': 'Dancing American'}" tt0238112,"{'Penélope Cruz': 'Pelagia', 'John Hurt': 'Dr. Iannis', 'Christian Bale': 'Mandras', 'Irene Papas': 'Drosoula', 'Gerasimos Skiadaressis': 'Mr. Stamatis', 'Aspasia Kralli': 'Mrs. Stamatis', 'Mihalis Giannatos': 'Kokolios', 'Dimitris Kaberidis': 'Father Aresenios (as Dimitris Kamperidis)', 'Pietro Sarubbi': 'Velisarios, The Strongman (as Pedro Sarubbi)', 'Viki Maragaki': ""Eleni, Pelagia's Friend"", 'Joanna-Daria Adraktas': 'Young Lemoni', 'Ira Tavlaridis': 'Older Lemoni', 'Katerina Didaskalou': ""Lemoni's Mother"", 'Aimilios Heilakis': 'Dimitris', 'Nikos Karathanos': 'Spiros'}" tt0278500,"{'Rupert Everett': 'Algy', 'Colin Firth': 'Jack', ""Frances O'Connor"": 'Gwendolen', 'Reese Witherspoon': 'Cecily', 'Judi Dench': 'Lady Bracknell', 'Tom Wilkinson': 'Dr. Chasuble', 'Anna Massey': 'Miss Prism', 'Edward Fox': 'Lane', 'Patrick Godfrey': 'Merriman', 'Charles Kay': 'Gribsby', 'Cyril Shaps': 'Pew Opener', 'Marsha Fitzalan': 'Dowager', 'Finty Williams': 'Young Lady Bracknell', 'Guy Bensley': 'Young Lord Bracknell', 'Christina Robert': 'Duchess of Devonshire'}" tt0134084,"{'Liev Schreiber': 'Cotton Weary', 'Beth Toussaint': 'Female Caller (voice)', 'Roger Jackson': 'The Voice (voice) (as Roger L. Jackson)', 'Kelly Rutherford': 'Christine', 'Neve Campbell': 'Sidney Prescott', 'Courteney Cox': 'Gale Weathers (as Courteney Cox Arquette)', 'Julie Janney': 'Moderator', 'Richmond Arquette': 'Student', 'Patrick Dempsey': 'Mark Kincaid', 'Lynn McRee': 'Maureen Prescott', ""Nancy O'Dell"": 'Female Reporter', 'Ken Taylor': 'Male Reporter', 'Scott Foley': 'Roman Bridger', 'Roger Corman': 'Studio Executive', 'Lance Henriksen': 'John Milton'}" tt0116242,"{'Edward Norton': 'Holden', 'Drew Barrymore': 'Skylar', 'Diva Gray': 'Nanny', 'Ami Almendral': 'Nanny', 'Madeline Balmaceda': 'Nanny', 'Vivian Cherry': 'Nurse', 'Tommie Baxter': 'Old Woman', 'Jeff DeRocker': 'Homeless Man (as Jeff Derocker)', 'Cherylyn Jones': 'Mannequin', 'Tina Paul': 'Mannequin / Harry Winston Dancer', 'Vikki Schnurr': 'Mannequin', 'Natasha Lyonne': 'DJ', 'Kevin Hagan': 'Doorman', 'Alan Alda': 'Bob', 'Gaby Hoffmann': 'Lane'}" tt0427969,"{'Adrien Brody': 'Louis Simo', 'Diane Lane': 'Toni Mannix', 'Ben Affleck': 'George Reeves', 'Bob Hoskins': 'Eddie Mannix', 'Robin Tunney': 'Leonore Lemmon', 'Kathleen Robertson': 'Carol Van Ronkel', 'Lois Smith': 'Helen Bessolo', 'Phillip MacKenzie': 'Bill Bliss', 'Larry Cedar': 'Chester Sinclair', 'Eric Kaldor': 'Barbell Man (as Eric Kolder)', 'Caroline Dhavernas': 'Kit Holliday', 'Kevin Hare': 'Robert Condon', 'Molly Parker': 'Laurie Simo', 'Zach Mills': 'Evan Simo', 'Neil Crone': 'Chuck'}" tt0350261,"{'Robert Redford': 'Einar Gilkyson', 'Jennifer Lopez': 'Jean Gilkyson', 'Morgan Freeman': 'Mitch Bradley', 'Josh Lucas': 'Crane Curtis', 'Damian Lewis': 'Gary Winston', 'Camryn Manheim': 'Nina', 'Becca Gardner': 'Griff Gilkyson', 'Lynda Boyd': 'Kitty', 'Rob Hayter': 'Deputy', 'P. Lynn Johnson': 'Shelter Supervisor', 'Byron Lucas': 'Motorcycle Rider', 'Trevor Moss': 'Griffin Gilkyson', 'R. Nelson Brown': 'Kent (as Rnelsonbrown)', 'Dillard Brinson': 'Gnome Owner', 'Jason Diablo': 'Customer #1'}" tt0357470,"{'Shia LaBeouf': 'Kelly Ernswiler (as Shia La Beouf)', 'Elden Henson': 'Bart Bowland', 'Amy Smart': 'Tabby', 'Billy Kay': 'Lance', 'Kathleen Quinlan': 'Eve', 'Shiri Appleby': 'Sarah', 'William Sadler': 'Abe', 'Ray Wise': 'Harrison', 'Philipp Karner': 'Maurice / German Soldier', 'Anson Mount': 'Miner Weber', 'Dale R. Simonton': 'Todd / German Soldier (as Dale Simonton)', 'Michael McShane': 'Mr. Norway', 'Hattie Winston': 'Principal Holmstead', 'Rick Cramer': 'German Officer / Mr. Thomas', 'France Nuyen': 'Xiou-Xiou Ling'}" tt0103994,"{'Marco Leonardi': 'Pedro Muzquiz', 'Lumi Cavazos': 'Tita', 'Regina Torné': 'Mamá Elena', 'Mario Iván Martínez': 'Doctor John Brown', 'Ada Carrasco': 'Nacha', 'Yareli Arizmendi': 'Rosaura', 'Claudette Maillé': 'Gertrudis', 'Pilar Aranda': 'Chencha', 'Farnesio de Bernal': 'Cura', 'Joaquín Garrido': 'Sargento Treviño', 'Rodolfo Arias': 'Juan Alejándrez', 'Margarita Isabel': 'Paquita Lobo', 'Sandra Arau': 'Esperanza Muzquiz', 'Andrés García Jr.': 'Alex Brown', 'Regino Herrera': 'Nicolás'}" tt0489327,"{""Peter O'Toole"": 'Maurice', 'Leslie Phillips': 'Ian', 'Beatrice Savoretti': 'Waitress', 'Philip Fox': 'Doctor', 'Lolita Chakrabarti': 'Health Centre Nurse', 'Carolina Giammetta': 'Health Centre Nurse', 'Jodie Whittaker': 'Jessie', 'Kellie Shirley': 'Royal Court Actress', 'Ashley Madekwe': 'Royal Court Actress', 'Ony Uhiara': 'Royal Court Actress', 'Cathryn Bradshaw': 'Jillian', 'Joanna Croll': 'Hospital Drama Family', 'Liam McKenna': 'Hospital Drama Family', 'Meg Wynn Owen': 'Hospital Drama Family (as Meg Wynn-Owen)', 'Sam Spruell': 'Hospital Director'}" tt0448075,"{'Robin Williams': 'Gabriel Noone', 'Toni Collette': 'Donna D. Logand', 'Joe Morton': 'Ashe', 'Bobby Cannavale': 'Jess', 'Rory Culkin': 'Pete D. Logand', 'Sandra Oh': 'Anna', 'Rodrigo Lopresti': 'Young Man at Party', 'John Cullum': 'Pap Noone', 'Lisa Emery': 'Darlie Noone', 'Guenia Lemos': 'Female Neighbor', 'Marcia Haufrecht': 'Pant Suited Woman (as Marcia Halfrecht)', 'Nick Gregory': 'Flight Attendant', 'Ed Jewett': 'Mail Clerk', 'Becky Ann Baker': 'Waitress', 'Billy Van': 'Taxi Driver'}" tt0118949,"{'Peter Horton': 'Scott Fischer', 'Nathaniel Parker': 'Rob Hall (as Nat Parker)', 'Richard Jenkins': 'Beck Weathers', 'Christopher McDonald': 'Jon Krakauer', 'Tim Dutton': 'Andy Harris', 'Pamela Gien': 'Sandy Hill Pittman', 'Peter J. Lucas': 'Anatoli Boukreev', 'Long Nguyen': 'Ang Dorje', 'Jeff Perry': 'Doug Hansen', 'Ned Vaughn': 'Neal Beidelman', 'Akemi Otani': 'Yasuko Namba', 'Richard Rees': 'Lopsang Sherpa', 'Stuart Milligan': 'Dale Kruse', 'Nicholas Hewetson': 'Tim Madsen', 'Luke Garrett': 'Mike Groom'}" tt0110877,"{'Philippe Noiret': 'Pablo Neruda', 'Massimo Troisi': 'Mario Ruoppolo', 'Maria Grazia Cucinotta': 'Beatrice Russo', 'Renato Scarpa': 'Telegrapher', 'Linda Moretti': 'Donna Rosa', 'Mariano Rigillo': 'Di Cosimo', 'Anna Bonaiuto': 'Matilde'}" tt0114805,"{'Roseanne Barr': 'Herself (uncredited)', 'Sandra Bernhard': 'Herself (uncredited)', 'Robert Best': 'Himself (uncredited)', 'Natane Boudreau': 'Herself (uncredited)', 'Carla Bruni': 'Herself (uncredited)', 'Naomi Campbell': 'Herself (uncredited)', 'Helena Christensen': 'Herself (uncredited)', 'Cindy Crawford': 'Herself (uncredited)', 'Debbie Deitering': 'Herself (uncredited)', 'Meghan Douglas': 'Herself (uncredited)', 'Faye Dunaway': 'Herself (uncredited)', 'Linda Evangelista': 'Herself (uncredited)', 'John Galliano': 'Himself (uncredited)', 'Richard Gere': 'Himself (uncredited)', 'Yasmeen Ghauri': 'Herself (uncredited)'}" tt0242527,"{'Thora Birch': 'Liz', 'Desmond Harrington': 'Mike', 'Daniel Brocklebank': 'Martin', 'Laurence Fox': 'Geoff', 'Keira Knightley': 'Frankie', 'Embeth Davidtz': 'Dr. Philippa Horwood', 'Steven Waddington': 'DCS Tom Howard', 'Emma Griffiths Malin': 'Daisy', 'Jemma Powell': 'Minnie (as Gemma Powell)', 'Gemma Craven': 'Mrs. Dunn', 'Anastasia Hille': 'Gillian', 'Kelly Hunter': 'DI Chapman', 'Maria Pastel': 'Policewoman', 'Celia Montague': 'Solicitor', 'Kevin Trainor': 'Boy in School'}" tt0190138,"{'Bruce Willis': 'Jimmy Tudeski', 'Matthew Perry': 'Oz Oseransky', 'Rosanna Arquette': 'Sophie', 'Michael Clarke Duncan': 'Frankie Figs', 'Natasha Henstridge': 'Cynthia', 'Amanda Peet': 'Jill', 'Kevin Pollak': 'Janni Gogolak', 'Harland Williams': 'Agent Hanson', 'Carmen Ferland': ""Sophie's Mom (as Carmen Ferlan)"", 'Serge Christiaenssens': 'Mr. Boulez (as Serge Christianssens)', 'Renee Madeline Le Guerrier': 'Waitress (as Renée Madelaine Le Guerrier)', 'Jean-Guy Bouchard': 'Mover', 'Howard Bilerman': 'Dave Martin', 'Johnny Goar': 'Hungarian Hood', 'Deano Clavet': 'Polish Pug'}" tt0147004,"{'Brenda Blethyn': 'Mari Hoff', 'Jane Horrocks': 'LV', 'Ewan McGregor': 'Billy', 'Philip Jackson': 'George', 'Annette Badland': 'Sadie', 'Michael Caine': 'Ray Say', 'Jim Broadbent': 'Mr. Boo', 'Adam Fogerty': 'Bouncer', 'James Welsh': 'Bouncer', 'Karen Gregory': 'Stripper', 'Fred Feast': 'Arthur', 'Graham Turner': ""LV's Dad"", 'George Oliver': 'Pawnbroker', 'Virgil Tracy': 'Loan Advisor', 'Dick Van Winkle': 'Money Lender'}" tt0240510,"{'Wes Bentley': 'Jack Durrance', 'Mohamed Bouich': 'Sudanese Storyteller', 'Campbell Brown': 'Dervish Ansar', 'Daniel Caltagirone': 'Gustave', 'James Cosmo': 'Col. Sutch', 'Andy Coumbe': 'Colonel Other Regiment', 'Angela Douglas': 'Aunt Mary', 'Karim Doukkali': 'Egyptian Orderly', 'Lucy Gordon': 'Isabelle', 'Megan Hall': 'Millie', 'James Hillier': 'Drunken Corporal', 'Nick Holder': 'British Lion', 'Djimon Hounsou': 'Abou Fatma', 'Kate Hudson': 'Ethne Eustace', 'Alex Jennings': 'Colonel Hamilton'}" tt0120820,"{'Marlon Wayans': 'Darryl Witherspoon', 'Brad Dourif': 'Dr. Wheedon', 'Esther Scott': 'Denise Witherspoon', 'Debra Jo Rupp': 'Fertility Clinic Attendant', 'Mark Christopher Lawrence': 'Wig Shop Owner', 'Matthew Lillard': 'Tim LaFlour', 'David Spade': 'Scott Thorpe', 'Tamara Taylor': 'Janice', 'John Ingle': 'Economics Professor', 'Rip Torn': 'Randall Tyson', 'Ernie Lively': 'Coach Brandau', 'Jenette Goldstein': 'Nurse Alvarez', 'Kenya Moore': 'Lorraine', 'Constance Zimmer': 'Zestfully Clean Woman', 'Ken Lerner': 'Dean Barlow'}" tt0102749,"{'Forest Whitaker': 'Jackson', 'Gregory Hines': 'Goldy', 'Robin Givens': 'Imabelle', 'Zakes Mokae': 'Big Kathy', 'Danny Glover': 'Easy Money', 'Badja Djola': 'Slim', 'John Toles-Bey': 'Jodie', 'Tyler Collins': 'Teena', 'Ron Taylor': 'Hank', 'Samm-Art Williams': 'Gus Parsons', 'Stack Pierce': 'Coffin Ed', 'Willard E. Pugh': 'Claude X', 'Helen Martin': 'Mrs. Canfield', 'Wendell Pierce': 'Louis', 'T.K. Carter': 'Smitty'}" tt0107426,"{'Keanu Reeves': 'Siddhartha', 'Ruocheng Ying': 'Lama Norbu (as Ying Ruocheng)', 'Chris Isaak': 'Dean Conrad', 'Alex Wiesendanger': 'Jesse Conrad', 'Raju Lal': 'Raju', 'Greishma Makar Singh': 'Gita', 'Sogyal Rinpoche': 'Kenpo Tenzin', 'Ven. Khyongla Rato Rinpoche': 'Abbot', 'Bridget Fonda': 'Lisa Conrad', 'Ven. Geshe Tsultim Gyelsen': 'Lama Dorje', 'Jo Champa': 'Maria', 'Jigme Kunsang': 'Champa', 'Thubtem Jampa': 'Punzo', 'Surekha Sikri': 'Sonali (as Surehka Sikri)', 'T.K. Lama': 'Sangay'}" tt0186975,"{'Freddie Prinze Jr.': 'Al Connelly', 'Julia Stiles': 'Imogen', 'Selma Blair': 'Cyrus', 'Shawn Hatosy': 'Eddie Hicks', 'Zak Orth': 'Monk Jablonski', 'Ashton Kutcher': 'Jim Morrison', 'Rosario Dawson': 'Lana', 'Henry Winkler': 'Chef Ray', 'Lucie Arnaz': 'Judy Connelly', 'Lauren German': 'Lovestruck Woman', 'Zay Harding': 'Lovestruck Man', 'Amanda Barfield': 'Faith Keenan', 'Chloe Hunter': 'Megan Brodski', 'Granger Green': 'Haley Heller', 'Jed Rhein': 'Gabe Stiano'}" tt0338135,"{'Rémy Girard': 'Rémy', 'Stéphane Rousseau': 'Sébastien', 'Marie-Josée Croze': 'Nathalie', 'Marina Hands': 'Gaëlle', 'Dorothée Berryman': 'Louise', 'Johanne-Marie Tremblay': 'Sister Constance Lazure (as Johanne Marie Tremblay)', 'Pierre Curzi': 'Pierre Citrouillard', 'Yves Jacques': 'Claude', 'Louise Portal': 'Diane Leonard', 'Dominique Michel': 'Dominique St. Arnaud', 'Isabelle Blais': 'Sylvaine', 'Toni Cecchinato': 'Alessandro', 'Sophie Lorain': 'First Lover', 'Mitsou': 'Ghislaine (as Mitsou Gélinas)', 'Markita Boies': 'Nurse Suzanne'}" tt0434124,"{'Joel Edgerton': 'Charlie', 'Chiwetel Ejiofor': 'Lola', 'Sarah-Jane Potts': 'Lauren', 'Jemima Rooper': 'Nicola', 'Nick Frost': 'Don', 'Linda Bassett': 'Melanie', 'Robert Pugh': 'Harold Price', 'Ewan Hooper': 'George', 'Stephen Marcus': 'Big Mike', 'Mona Hammond': 'Pat', 'Kellie Bright': 'Jeannie', 'Joanna Scanlan': 'Trish', 'Geoffrey Streatfeild': 'Richard Bailey', 'Leo Bill': 'Harry Sampson', 'Gwenllian Davies': 'Mrs. Cobb'}" tt0372824,"{'Gérard Jugnot': 'Clément Mathieu', 'François Berléand': 'Headmaster Rachin', 'Kad Merad': 'Chabert', 'Jean-Paul Bonnaire': 'La Père Maxence', 'Marie Bunel': 'Violette Morhange', 'Jean-Baptiste Maunier': 'Pierre Morhange', 'Maxence Perrin': 'Pépinot', 'Grégory Gatignol': 'Mondain', 'Thomas Blumenthal': 'Corbin', 'Cyril Bernicot': 'Le Querrec', 'Simon Fargeot': 'Boniface', 'Théodule Carré-Cassaigne': 'Leclerc', 'Philippe du Janerand': 'Monsieur Langlois', 'Carole Weiss': 'La Comtesse', 'Erick Desmarestz': 'Le Docteur Dervaux'}" tt0287717,"{'Antonio Banderas': 'Gregorio Cortez', 'Carla Gugino': 'Ingrid Cortez', 'Alexa PenaVega': 'Carmen Cortez (as Alexa Vega)', 'Daryl Sabara': 'Juni Cortez', 'Steve Buscemi': 'Romero', 'Mike Judge': 'Donnagon', 'Danny Trejo': 'Machete', 'Cheech Marin': 'Felix Gumm', ""Matt O'Leary"": 'Gary Giggles', 'Emily Osment': 'Gerti Giggles', 'Ricardo Montalban': 'Grandfather', 'Holland Taylor': 'Grandmother', 'Alan Cumming': 'Fegan Floop', 'Taylor Momsen': ""President's Daughter"", 'Christopher McDonald': 'President of the USA'}" tt0117951,"{'Ewan McGregor': 'Renton', 'Ewen Bremner': 'Spud', 'Jonny Lee Miller': 'Sick Boy', 'Kevin McKidd': 'Tommy', 'Robert Carlyle': 'Begbie', 'Kelly Macdonald': 'Diane', 'Peter Mullan': 'Swanney', 'James Cosmo': 'Mr. Renton', 'Eileen Nicholas': 'Mrs. Renton', 'Susan Vidler': 'Allison', 'Pauline Lynch': 'Lizzy', 'Shirley Henderson': 'Gail', 'Stuart McQuarrie': 'Gavin / US Tourist', 'Irvine Welsh': 'Mikey Forrester', 'Dale Winton': 'Game Show Host'}" tt0217505,"{'Leonardo DiCaprio': 'Amsterdam Vallon', 'Daniel Day-Lewis': ""Bill 'The Butcher' Cutting"", 'Cameron Diaz': 'Jenny Everdeane', 'Jim Broadbent': 'Boss Tweed', 'John C. Reilly': 'Happy Jack', 'Henry Thomas': 'Johnny Sirocco', 'Liam Neeson': ""'Priest' Vallon"", 'Brendan Gleeson': ""Walter 'Monk' McGinn"", 'Gary Lewis': 'McGloin', 'Stephen Graham': 'Shang', 'Eddie Marsan': 'Killoran', 'Alec McCowen': 'Reverend Raleigh (as Alec Mccowen)', 'David Hemmings': 'Mr. Schermerhorn', 'Lawrence Gilliard Jr.': 'Jimmy Spoils (as Larry Gilliard Jr.)', 'Cara Seymour': 'Hell-Cat Maggie'}" tt1225822,"{'Jason Bateman': 'Joel', 'Mila Kunis': 'Cindy', 'Kristen Wiig': 'Suzie', 'Ben Affleck': 'Dean', 'J.K. Simmons': 'Brian', 'Clifton Collins Jr.': 'Step', 'Dustin Milligan': 'Brad', 'David Koechner': 'Nathan', 'Beth Grant': 'Mary', 'T.J. Miller': 'Rory', 'Javier Gutierrez': 'Hector', 'Lidia Porto': 'Gabriella', 'Gene Simmons': 'Joe Adler', 'Matt Schulze': 'Willie', 'Lamberto Gutierrez': 'Victor'}" tt0889573,"{'Jason Bateman': 'Wally Mars', 'Victor Pagan': 'Knit Hat Guy', 'Jennifer Aniston': 'Kassie Larson', 'Jeff Goldblum': 'Leonard', 'Juliette Lewis': 'Debbie', 'Todd Louiso': 'Artie', 'Scott Elrod': 'Declan', 'Patrick Wilson': 'Roland', 'Rebecca Naomi Jones': 'Party Guest', 'Kelli Barrett': ""Roland's Wife Jessica"", 'Jeremy Mohler': 'Party Guest 2 (as Jeremy J. Mohler)', 'Will Swenson': 'Actor on Stage', 'Edward James Hyland': 'Man in Theater', 'Caroline Dhavernas': 'Pauline', 'Brian Podnos': 'Waiter'}" tt0159365,"{'Jude Law': 'Inman', 'Nicole Kidman': 'Ada Monroe', 'Renée Zellweger': 'Ruby Thewes', 'Eileen Atkins': 'Maddy', 'Brendan Gleeson': 'Stobrod Thewes', 'Philip Seymour Hoffman': 'Reverend Veasey', 'Natalie Portman': 'Sara', 'Giovanni Ribisi': 'Junior', 'Donald Sutherland': 'Reverend Monroe', 'Ray Winstone': 'Teague', 'Kathy Baker': 'Sally Swanger', 'James Gammon': 'Esco Swanger', 'Charlie Hunnam': 'Bosie', 'Jack White': 'Georgia', 'Ethan Suplee': 'Pangle'}" tt0227538,"{'Antonio Banderas': 'Gregorio Cortez', 'Carla Gugino': 'Ingrid Cortez', 'Alexa PenaVega': 'Carmen Cortez (as Alexa Vega)', 'Daryl Sabara': 'Juni Cortez', 'Alan Cumming': 'Fegan Floop', 'Tony Shalhoub': 'Alexander Minion', 'Teri Hatcher': 'Ms. Gradenko', 'Cheech Marin': 'Felix Gumm', 'Robert Patrick': 'Mr. Lisp', 'Danny Trejo': 'Machete', 'Mike Judge': 'Donnagon / Donnamight', 'Richard Linklater': 'Cool Spy', 'Guillermo Navarro': 'Pastor', 'Johnny Reno': 'Agent Johnny', 'Shannon Shea': 'FoOglie #1 / Flower'}" tt0299658,"{'Taye Diggs': 'Bandleader', 'Cliff Saunders': 'Stage Manager', 'Catherine Zeta-Jones': 'Velma Kelly', 'Renée Zellweger': 'Roxie Hart', 'Dominic West': 'Fred Casely', 'Jayne Eastwood': 'Mrs. Borusewicz', 'Bruce Beaton': 'Police Photographer', 'Roman Podhora': 'Sergeant Fogarty', 'John C. Reilly': 'Amos Hart', 'Colm Feore': 'Harrison', 'Rob Smith': 'Newspaper Photographer', 'Sean Wayne Doyle': 'Reporter', 'Steve Behal': 'Prison Clerk', 'Robbie Rox': 'Prison Guard', 'Chita Rivera': 'Nickie'}" tt0117802,"{'Jon Favreau': 'Mike', 'Vince Vaughn': 'Trent', 'Ron Livingston': 'Rob', 'Patrick Van Horn': 'Sue', 'Alex Désert': 'Charles (as Alex Desert)', 'Heather Graham': 'Lorraine', 'Deena Martin': 'Christy', 'Katherine Kendall': 'Lisa', 'Brooke Langton': 'Nikki', 'Blake Lindsley': 'Girl with Cigar', 'Kevin James Kelly': 'Vegas Dealer', 'Stephanie Ittleson': 'Vegas Waitress', 'Vernon Vaughn': '$100 Gambler', 'Joan Favreau': '$5 Winner', 'Rio Hackford': 'Skully'}" tt0119217,"{'Matt Damon': 'Will', 'Ben Affleck': 'Chuckie', 'Stellan Skarsgård': 'Lambeau', 'John Mighton': 'Tom', 'Rachel Majorowski': 'Krystyn', 'Colleen McCauley': 'Cathy', 'Casey Affleck': 'Morgan', 'Cole Hauser': 'Billy', 'Matt Mercier': 'Barbershop Quartet #1', 'Ralph St. George': 'Barbershop Quartet #2', 'Rob Lynds': 'Barbershop Quartet #3', 'Dan Washington': 'Barbershop Quartet #4', 'Alison Folland': 'M.I.T. Student', 'Derrick Bridgeman': 'M.I.T. Student', 'Vik Sahay': 'M.I.T. Student (as Vic Sahay)'}" tt0358135,"{'Richard Gere': 'John Clark', 'Jennifer Lopez': 'Paulina', 'Susan Sarandon': 'Beverly Clark', 'Lisa Ann Walter': 'Bobbie', 'Stanley Tucci': 'Link', 'Anita Gillette': 'Miss Mitzi', 'Bobby Cannavale': 'Chic', 'Omar Benson Miller': 'Vern (as Omar Miller)', 'Tamara Hope': 'Jenna Clark', 'Stark Sands': 'Evan Clark', 'Richard Jenkins': 'Devine', 'Nick Cannon': 'Scott', 'Sarah Lafleur': 'Carolyn', 'Onalee Ames': 'Diane', 'Diana Salvatore': 'Tina'}" tt0110912,"{'Tim Roth': 'Pumpkin', 'Amanda Plummer': 'Honey Bunny', 'Laura Lovelace': 'Waitress', 'John Travolta': 'Vincent Vega', 'Samuel L. Jackson': 'Jules Winnfield', 'Phil LaMarr': 'Marvin', 'Frank Whaley': 'Brett', 'Burr Steers': 'Roger', 'Bruce Willis': 'Butch Coolidge', 'Ving Rhames': 'Marsellus Wallace', 'Paul Calderon': 'Paul', 'Bronagh Gallagher': 'Trudi', 'Rosanna Arquette': 'Jody', 'Eric Stoltz': 'Lance', 'Uma Thurman': 'Mia Wallace'}" tt0401792,"{'Jessica Alba': 'Nancy', 'Devon Aoki': 'Miho', 'Alexis Bledel': 'Becky', 'Powers Boothe': 'Senator Roark', 'Cara D. Briggs': 'Hearing Panel Person (as Cara Briggs)', 'Jude Ciccolella': 'Liebowitz', 'Jeffrey J. Dashnaw': 'Motorcycle Cop (as Jeff Dashnaw)', 'Rosario Dawson': 'Gail', 'Jesse De Luna': 'Corporal Rivera', 'Benicio Del Toro': 'Jackie Boy', 'Jason Douglas': 'Hitman', 'Michael Clarke Duncan': 'Manute', 'Tommy Flanagan': 'Brian', 'Christina Frankenfield': 'Judge', 'Rick Gomez': 'Klump'}" tt0378194,"{'Vivica A. Fox': 'Vernita Green', 'Ambrosia Kelley': 'Nikki (as Ambrosia Kelly)', 'Michael Parks': 'Earl McGraw / Esteban Vihaio', 'James Parks': 'Edgar McGraw', 'Jonathan Loughran': 'Trucker', 'Michael Bowen': 'Buck', 'Kenji Ohba': 'Bald Guy (as Kenji Oba)', 'Yoshiyuki Morishita': 'Tokyo Businessman (as Yoshijuki Morishita)', 'Jun Kunimura': 'Boss Tanaka', 'Goro Daimon': 'Boss Honda', 'Kazuki Kitamura': 'Boss Koji / Crazy 88', 'Akaji Maro': 'Boss Ozawah', 'Shun Sugata': 'Boss Benta', 'Sachiko Fujii': ""The 5, 6, 7, 8's (as The 5 6 7 8's)"", 'Ronnie Yoshiko Fujiyama': ""The 5, 6, 7, 8's (as The 5 6 7 8's)""}" tt0266697,"{'Uma Thurman': 'The Bride', 'Lucy Liu': 'O-Ren Ishii', 'Vivica A. Fox': 'Vernita Green', 'Daryl Hannah': 'Elle Driver', 'David Carradine': 'Bill', 'Michael Madsen': 'Budd', 'Julie Dreyfus': 'Sofie Fatale', 'Chiaki Kuriyama': 'Gogo Yubari', ""Shin'ichi Chiba"": 'Hattori Hanzo (as Sonny Chiba)', 'Chia-Hui Liu': 'Johnny Mo (as Gordon Liu)', 'Michael Parks': 'Earl McGraw', 'Michael Bowen': 'Buck', 'Jun Kunimura': 'Boss Tanaka', 'Kenji Ohba': 'Bald Guy (Sushi Shop) (as Kenji Oba)', 'Yuki Kazamatsuri': 'Proprietor'}" tt1091722,"{'Jesse Eisenberg': 'James Brennan', 'Kelsey Ledgin': 'Arlene (as Kelsey Ford)', 'Michael Zegen': 'Eric', 'Ryan McFarland': 'Brad', 'Jack Gilpin': 'Mr. Brennan', 'Wendie Malick': 'Mrs. Brennan', 'Matt Bush': 'Tommy Frigo', 'Todd Cioppa': 'Velvet Touch Manager', 'Stephen Mast': 'Rich', 'Kristen Wiig': 'Paulette', 'Bill Hader': 'Bobby', 'Martin Starr': 'Joel', 'Adam Kroloff': 'Adult Contestant', 'Kristen Stewart': 'Em Lewin', 'Kevin Breznahan': 'Molly Hatchet T-Shirt Guy'}" tt0452623,"{'Casey Affleck': 'Patrick Kenzie', 'Michelle Monaghan': 'Angie Gennaro', 'Morgan Freeman': 'Jack Doyle', 'Ed Harris': 'Remy Bressant', 'John Ashton': 'Nick Poole', 'Amy Ryan': 'Helene McCready', 'Amy Madigan': 'Bea McCready', 'Titus Welliver': 'Lionel McCready', 'Michael Kenneth Williams': 'Devin', 'Edi Gathegi': 'Cheese', 'Mark Margolis': 'Leon Trett', ""Madeline O'Brien"": 'Amanda McCready', 'Slaine': 'Bubba', 'Trudi Goodman': 'Roberta Trett', 'Matthew Maher': 'Corwin Earle'}" tt0477348,"{'Tommy Lee Jones': 'Ed Tom Bell', 'Javier Bardem': 'Anton Chigurh', 'Josh Brolin': 'Llewelyn Moss', 'Woody Harrelson': 'Carson Wells', 'Kelly Macdonald': 'Carla Jean Moss', 'Garret Dillahunt': 'Wendell', 'Tess Harper': 'Loretta Bell', 'Barry Corbin': 'Ellis', 'Stephen Root': 'Man who hires Wells', 'Rodger Boyce': 'El Paso Sheriff', 'Beth Grant': ""Carla Jean's Mother"", 'Ana Reeder': 'Poolside Woman', 'Kit Gwin': ""Sheriff Bell's Secretary"", 'Zach Hopkins': 'Strangled Deputy', 'Chip Love': 'Man in Ford'}" tt0119396,"{'Pam Grier': 'Jackie Brown', 'Samuel L. Jackson': 'Ordell Robbie', 'Robert Forster': 'Max Cherry', 'Bridget Fonda': 'Melanie Ralston', 'Michael Keaton': 'Ray Nicolette', 'Robert De Niro': 'Louis Gara', 'Michael Bowen': 'Mark Dargus', 'Chris Tucker': 'Beaumont Livingston', 'LisaGay Hamilton': 'Sheronda', ""Tommy 'Tiny' Lister"": ""Winston (as Tommy 'Tiny' Lister Jr.)"", 'Hattie Winston': 'Simone', 'Sid Haig': 'Judge', 'Aimee Graham': 'Amy - Billingsley Sales Girl', 'Ellis Williams': 'Cockatoo Bartender (as Ellis E. Williams)', 'Tangie Ambrose': 'Billingsley Sales Girl #2'}" tt0203536,"{'Michael Rapaport': 'August', 'Gary Stretch': 'Ronnie', 'Seymour Cassel': 'Guy', 'Robin Givens': 'Dana', 'Debbie Harry': 'Madison (as Deborah Harry)', 'Lainie Kazan': 'Diane', 'Ralph Macchio': 'Donnie', 'James Russo': 'Roy', 'Ally Sheedy': 'Marie', 'Frank Whaley': 'Chad', 'Reg E. Cathey': 'Avi', 'Penelope Fortier': 'Paige', 'Joey Dedio': 'Petey', 'Steve Bilich': 'Leo', 'Henry Caplan': ""Maitre' D""}" tt1334536,"{'Charisma Carpenter': 'Heather Burton', 'Marcus Lyle Brown': 'Greg Fisher (as Marcus L. Brown)', 'Ricky Wayne': 'Tom Rule', 'Collin Galyean': 'Simon', 'Kyle Clements': 'Bub', 'Corin Nemec': 'Quentin French', 'Stephanie Honoré': 'Sara Minor (as Stephanie Honore)', 'Gregory Campo': 'Kip', 'Jake Austin Walker': 'J.J.', 'William Adam Scott': 'Ronny (as Adam Scott)', 'Joe Chrest': 'Benjamin', 'Antonino Paone': 'Taxi Driver (as Tony Paone)', ""John 'Jo' Mosley"": 'Mr. Holden', 'Hillary Holland': ""Quentin's Assistant"", 'Edrick Browne': 'Meat Hook'}" tt1570728,"{'Steve Carell': 'Cal', 'Ryan Gosling': 'Jacob', 'Julianne Moore': 'Emily', 'Emma Stone': 'Hannah', 'Analeigh Tipton': 'Jessica', 'Jonah Bobo': 'Robbie', 'Joey King': 'Molly', 'Marisa Tomei': 'Kate', 'Beth Littleford': 'Claire', 'John Carroll Lynch': 'Bernie', 'Kevin Bacon': 'David Lindhagen', 'Liza Lapira': 'Liz', 'Josh Groban': 'Richard', 'Mekia Cox': 'Hip Hairdresser aka Tiffany', 'Julianna Guill': 'Madison'}" tt1226753,"{'Helen Mirren': 'Rachel Singer', 'Tom Wilkinson': 'Stephan Gold', 'Ciarán Hinds': 'David Peretz', 'Romi Aboulafia': 'Sarah Gold', 'Tomer Ben David': ""Sarah's Husband"", 'Ohev Ben David': ""Sarah's Son"", 'Jonathan Uziel': 'Mossad Agent', 'Elana Kivity Davenport': 'Publisher', 'Eli Zohar': ""Stephan's Driver"", 'Irén Bordán': 'Seminar Moderator (Tel Aviv 1997)', 'Jessica Chastain': 'Young Rachel', 'Marton Csokas': 'Young Stephan', 'Sam Worthington': 'Young David', 'Jesper Christensen': 'Doktor Bernhardt / Dieter Vogel', 'Brigitte Kren': 'Frau Bernhardt / Nurse'}" tt0286947,"{'Alicia Silverstone': 'Sheila Rilo', 'Rachael Leigh Cook': 'Shmally', 'Woody Harrelson': ""Jason 'Woods' Valley"", 'John Cleese': 'Charles Merchant', 'Paulo Costanzo': ""Stuart 'Stu' Stein"", 'David Krumholtz': 'Max', 'Joshua Leonard': 'Rick', 'Ivan Sergei': 'Mark', 'Marcus Thomas': 'Carter Doleman', 'Jeffrey Tambor': 'Bank Employer', 'Max Wein': 'Loomis', 'Gavin Grazer': 'Cleatis', 'Steven Shenbaum': 'Winston', 'Wayne Morse': 'Gavin', 'Renee Olstead': 'Girl Scout'}" tt1557769,"{'Anslem Richardson': 'Mike', 'Ana Reeder': 'Margo', 'Stephen Rannazzisi': 'Charles', 'Cesar De León': 'Jimmy', 'Mary Beth Peil': 'Celine', 'Michelle Krusiec': 'Monique', 'Julian Aponte': 'Inmate', 'Stratton Bailey': 'Locked Out Guy', 'Patricia Barnes': 'Bridge Player', 'Shea Berry': 'Bartender', 'Benjamin Brant Bickham': 'Guard', 'Max Brand': 'Waiter', 'Jackie Capobianco': 'Bridge Player', 'Annalisa Chamberlin': 'Locked Out Girl (as Annalisa Chamberlain)', 'David Delgado': 'Inmate'}" tt1265621,"{'Rhett Giles': 'Terry', 'Stephany Jacobsen': 'Lynne (as Stephanie Jacobsen)', 'Stuart Lafferty': 'Leo', 'Gigi Edgley': 'Trish', 'Randy Mulkey': 'Ben', 'Kristen Quintrall': 'Lindsey', 'Jerry Leggio': 'Dr. Zulkowski', 'Jenna Craig': 'Samantha', 'Collin Galyean': 'Tom', 'Amol Shah': 'Dr. Sadoughian', 'Dean N. Arevalo': 'Dr. Rhodes (as Dean Arevalo)', 'Shirly Brener': 'Ms. Taylor', 'Marel Medina': 'Frank Herbert', 'Ron Flagge': 'General Rodgers', 'Kyle Clements': 'Sean'}" tt0377808,"{'Maxwell Caulfield': 'Silas', 'Angel Boris Reed': 'Medina (as Angel Boris)', 'Woon Young Park': 'Ling', 'Richard Wharton': 'Remmegar', 'Tony Amendola': 'Theldag', 'Iskra Angelova': 'Nessa', 'John Rhys-Davies': 'King Fastrad', 'John Hansson': 'King Wednesbury', 'Ivaylo Geraskov': 'Gelmaro', 'Tyrone Pinkham': 'Ulfius', 'Jeff Rank': 'Royal Guard', 'Maxim Genchev': ""Fastrad's Guard (as Maxim Gentchev)"", 'Vlado Nikolov': 'Messanger', 'Peter Verlinden': 'Boy #1', 'Alex Nesterov': 'Boy #2'}" tt1133995,"{'Cuba Gooding Jr.': 'David Wolf', 'Clarence Williams III': 'Mac', 'John Terry': 'Secretary of Defence', 'Jaclyn DeSantis': 'Sophia', 'Lance Reddick': 'The Black Man', 'Bill ""Howl-N-Madd"" Perry': 'Bluesman', 'Jayson Warner Smith': 'Seven', 'Sarah Ann Schultz': 'Eleven', 'J.K. Simmons': 'Sergeant Mitchell', 'J. Omar Castro': 'Sanchez', 'Vernel Bagneris': 'Samir / Ace of Spades', 'Edrick Browne': 'Snow', 'Nick Lopez': 'Lollipop', 'Rob Bartenstein': 'Man on the left', 'Brad C. Carter': 'Man on the right'}" tt0815230,"{'Kenny Young': 'Brian', 'Jill Marie Jones': 'Tonya', 'Reginald Ballard': 'Butch Bailey', 'Jaqueline Fleming': 'Carmen', 'Ruben Garfias': 'Detective', 'Sharyn Grose': 'Woman #1', 'Napiera Groves': 'Michele', 'Michael Hagiwara': 'Salesman', 'Hadrian Hooks': 'Security Guard', 'Reggie James': 'Thug #2', 'Zo Johnson': 'Thug (as Alphonso Johnson)', 'Bishop Don Magic Juan': 'Devil', 'Lance W. Lanfear': 'Truck Driver (as Lance Lanfear)', 'Jenifer Lewis': 'Therapist', 'June Green Matute': 'Woman #2'}" tt1406157,"{'Rina Takeda': 'Kei Tsuchiya', 'Tatsuya Naka': 'Yoshiaki Matsumura', 'Ryûki Takahashi': 'Ryôsuke Nakama', 'Kyôji Amano': 'Kenga', 'Masahiro Sudô': 'Ryûsoku', 'Akihito Yagi': 'Kûken', 'Kazuma Yamane': 'Tentô', 'Shinji Suzuki': 'Tenha', 'Mayu Gamou': 'Hien (as Mayu Gamô)', 'Kazutoshi Yokoyama': 'Kototsu', 'Ichirô Sugisawa': 'Tenshô', 'Hisae Watanabe': 'Shûrei', 'Misako Nagashima': 'Hishô', 'Fuyuhiko Nishi': 'Akagi-ken', 'Aya Sugiyama': 'Chôka'}" tt0118652,"{'Andras Jones': 'Trevor Blackburn', 'Seth Green': 'Douglas', 'Jeffrey Combs': 'Dr. Ek', 'Wendy Robie': 'Dr. Thalama', 'Ted Raimi': 'Dr. Coffee', 'Beth Bates': 'Faith', 'Eddy Kariti': 'Dr. Anderson', 'Shannon Hart Cleary': 'Amy', 'Alice Cooper': 'Samuel Leventhal', 'Jerry Hauck': 'Ronald', 'Brenda James': 'Nurse', 'Nancy Wolfe': 'Liz', 'Stephen Donovan': 'Doctor 1', 'Andrew Ggem': 'Doctor 2', 'Cutter Cutshaw': 'Orderly'}" tt1499658,"{'Jason Bateman': 'Nick Hendricks', 'Steve Wiebe': 'Thomas, Head of Security', 'Kevin Spacey': 'Dave Harken', 'Charlie Day': 'Dale Arbus', 'Lindsay Sloane': 'Stacy', 'Michael Albala': 'Mr. Anderton', 'Jennifer Aniston': 'Dr. Julia Harris, D.D.S.', 'Jason Sudeikis': 'Kurt Buckman', 'Jennifer Hasty': ""Kurt's Co-Worker"", 'Reginald Ballard': ""Kurt's Co-Worker"", 'George Back': ""Kurt's Co-Worker"", 'Barry Livingston': ""Kurt's Co-Worker"", 'Meghan Markle': 'Jamie', 'Donald Sutherland': 'Jack Pellit', 'Celia Finkelstein': 'Margie Emerman'}" tt1622979,"{""Nicholas D'Agosto"": 'Sam', 'Emma Bell': 'Molly', 'Miles Fisher': 'Peter Friedkin', 'Ellen Wroe': 'Candice Hooper', 'Jacqueline MacInnes Wood': 'Olivia Castle', 'P.J. Byrne': 'Isaac', 'Arlen Escarpeta': 'Nathan', 'David Koechner': 'Dennis', 'Courtney B. Vance': 'Agent Block', 'Tony Todd': 'Bludworth', 'Brent Stait': 'Roy', 'Roman Podhora': 'John', 'Jasmin Dring': 'Cho', 'Barclay Hope': 'Dr. Leonetti', 'Chasty Ballesteros': 'Spa Receptionist'}" tt0420740,"{'Kharl Anton Leigh': 'Young Boy Rodriguez', 'Peter Coyote': 'Frank', 'Forest Whitaker': 'Abe Holt', 'Juan Carlos Pardo Pardo': 'Mr. Rodriguez', 'Damon Younger': 'Long Haired Man', 'Jeremy Renner': 'Fred', 'Joanna Scanlan': 'Josie', 'Iddo Goldberg': 'Russle', 'Philip Jackson': 'William', 'Julia Stiles': 'Isold', 'Alfred Harmsworth': 'Thor', 'Vladas Bagdonas': 'Coroner', 'Felix Eyjólfsson': 'Auto Mechanic', 'Margrét Ólafsdóttir': 'Elderly lady in the Park', 'Birgir Sigurðsson': 'Elderly man in a commercial (as Birgir Sigurdsson)'}" tt0445946,"{'Morgan Freeman': 'Carden', 'John Cusack': 'Ray', 'Jamie Anderson': 'Chris', 'Alice Krige': 'Miles', 'Megan Dodds': 'Sandra', 'Corey Johnson': 'Davis', 'Jonathan Hyde': 'Turner', 'Bill Smitrovich': 'Wainwright', 'Anthony Warren': 'Royko', 'Ned Bellamy': 'Evans', 'Thomas Lockyer': 'Johnson', 'Gary Whelan': 'Stanfield', 'Ian Shaw': 'Michaels', 'Atanas Srebrev': 'Rodrigues', 'Maynard Eziashi': 'Robbins'}" tt0808265,"{'John Rhys-Davies': 'The Greek', 'Kerry Fox': 'Suze', 'Tamer Hassan': 'Big Dave', 'Amber Sainsbury': 'Kathy', 'Craig Hall': 'Chris Hamilton', 'Julian Arahanga': 'Zane', 'Sally Stockwell': 'Tate', 'Ben Fransham': 'The Ferryman', 'Imogen Cassin': 'Imogen', 'Lawrence Makoare': 'Snake', 'Robbie Magasiva': 'Craig (Man in Club)', 'Jessica Woods': 'Woman in Club', 'Andi Crown': 'Emergency Crew Member', 'Brandon Cook': 'Little Boy'}" tt0305556,"{'Michael Weston': 'Kenny', 'Diedrich Bader': 'My-ik', 'Chris Parnell': 'Du-ug', 'Tyler Labine': 'Croker', 'Elden Henson': 'Ron', 'Beth Grant': 'Sheila', 'Missy Yager': 'Penny', 'Phil LaMarr': 'Vel-Dan', 'Joel McCrary': 'Mr. Breen', 'Michael McShane': 'Rabirr', 'Martin Spanjers': 'Jimmy', 'Jacob Franchek': 'Steve', 'NiCole Robinson': 'Gail', 'Andrew Bilgore': 'Clerk', 'Peter Sherayko': 'Counselor'}" tt0858411,"{'Bill Moseley': 'Mayor George W. Buckman', 'Lin Shaye': 'Granny Boone', 'Christa Campbell': 'Milk Maiden', ""Kevin 'ohGr' Ogilvie"": 'Harper Alexander (as Nivek Ogre)', 'Andrea Leon': 'Val Turner', 'Ahmed Best': 'Crow', 'Katy Johnson Evans': 'Rome Sheraton (as Katy Marie Johnson)', 'Asa Hope': 'Tina Sheraton', 'Alex Luria': 'Jesus', 'Larayia Gaston': 'Black Cherry', 'Miles Dougal': 'Jerry Schmit', 'Trevor Wright': 'Falcon', 'Jordan Yale Levine': 'K-Jay', 'Alana Curry': 'Bristol Bush', 'Ryan Fleming': 'Hucklebilly'}" tt0309452,"{'Olivier Gruner': 'Dirk Longstreet', 'Simon Kim': 'Kwan Twin #2', 'James Kim': 'Kwan Twin #1', 'Bryan Genesse': 'Vixton Hack', 'Loren Avedon': 'Det. Sykes', 'Gail Thackray': 'Nicole Kent (as Gail Harris)', 'Ilya Melnikoff': 'Jeremy Longstreet (as Ilya Morelle)', 'Michael Blanks': ""Big 'Circuit' Fighter (as Mike Blanks)"", 'Michael Chow': ""Vixton's Communication Thug"", 'Daphne Orrell': 'Denise', 'Billy Drago': 'Lenny', 'Mark Parra': 'Bar #1 Fighter', 'Ace Cruz': ""'Circuit' Bet Taker"", 'Bruce Buffer': ""'Circuit' Announcer"", 'Jacov Bresler': 'Max'}" tt0363095,"{'Lee Evans': 'Sean Veil', 'Sean McGinley': 'Detective Louis Emeric', 'Ian McNeice': 'Forensic Profiler Saul Seger', 'Colin Salmon': 'Detective Mountjoy', 'Rachael Stirling': 'Katie Carter', ""Rachel O'Riordan"": 'Mary Shaw', 'Andrew Wilson': 'Covert Cameraman', 'Andrea Grimason': 'Susan Jasper', 'Martin McSharry': 'Sam Jasper', 'Gabriella Henriette': 'Moira Jasper', 'Emily Anthony': 'Maggie Jasper', 'Ryan McKenna': 'Reporter (credit only)'}" tt0233657,"{'David Keith': 'Mason Rand', 'Stephanie Niznik': 'Dr. KC Czaban', ""Ryan O'Neal"": 'Allen Lysander', 'Brian Thompson': 'Captain Tower', 'Steve Bond': 'Colonel Tell', 'Craig Wasson': 'Hudson', 'Michael Cavanaugh': 'Williams', 'Shannon Lee': 'Pamela', 'James Avery': 'Dr. Solomon Holt', 'James Hong': 'Ambassador Po', 'Joseph Patrick Kelly': 'Control Tech (as Joe Kelly)', 'Donald Li': 'Chinese Scientist', 'William Zabka': 'Rover Driver Joe', 'Marc McClure': 'German Scientist', 'Eloy Casados': 'Mexican Doctor'}" tt0374286,"{'David Keith': 'Mason Rand', 'Angel Boris Reed': 'Sondra (as Angel Boris)', 'Billy Dee Williams': 'Ferguson', 'Brian Thompson': 'Tower', 'Jeffrey Gorman': 'Doyle', 'P.K. Ewing': 'Wilkes', 'Velizar Binev': 'Samuel', 'Biliana Petrinska': 'Gordeova', 'Tyrone Pinkham': 'Gunman', 'Michael Ash': 'Business Man', 'John Barnes': 'Admiral', 'Kate Goggin': 'Spokesperson', 'John Hansson': 'Genesis Speaker', 'Ray Hartbarger': 'General Hines', 'Mark Herndon': 'Reporter #4'}" tt0437072,"{'Ving Rhames': 'Animal', 'Terrence Howard': 'Darius Allen', 'Chazz Palminteri': 'Kassada', 'Jim Brown': 'Berwell', 'Beverly Todd': 'Latreese', 'Faizon Love': 'Double T', 'Wes Studi': 'Creeper', 'Paula Jai Parker': 'Reecy', 'Taraji P. Henson': 'Ramona', 'César Farrait': ""Roach (as Cessar 'TNT' Farrait)"", 'Modesto Lacen': 'Dinky', 'Black Child': 'Spyda', 'Hunter Howard': 'Young Darius', 'Rafael Alvarez': 'Paul Wilson (as Rafa Alvarez)', 'Eugenio Cotto': 'Assassin 1 - Berwell (as Eugene Cotto)'}" tt1633356,"{'Sara Paxton': 'Sara', 'Dustin Milligan': 'Nick', 'Chris Carmack': 'Dennis', 'Katharine McPhee': 'Beth', 'Joel David Moore': 'Gordon', 'Donal Logue': 'Sabin', 'Joshua Leonard': 'Red', 'Sinqua Walls': 'Malik', 'Alyssa Diaz': 'Maya', 'Chris Zylka': 'Blake', 'Jimmy Lee Jr.': 'Carl', 'Damon Lipari': 'Keith', 'Christine Bently': 'Jess (as Christine Quinn)', 'Kelly Sry': 'Wonsuk', 'Tyler Bryan': 'Kyle'}" tt1563738,"{'Anne Hathaway': 'Emma', 'Jim Sturgess': 'Dexter', 'Tom Mison': 'Callum', 'Jodie Whittaker': 'Tilly', 'Tim Key': 'Customer', 'Rafe Spall': 'Ian', 'Joséphine de La Baume': 'Marie (as Josephine De La Baume)', 'Patricia Clarkson': 'Alison', 'Ken Stott': 'Steven', 'Heida Reed': 'Ingrid', 'Amanda Fairbank-Hynes': 'Tara', 'Gil Alma': 'Waiter', 'David Ajala': 'Floor Manager', 'Georgia King': 'Suki', 'Ukweli Roach': 'Rapper'}" tt0493129,"{'Mitchell Bisschop': 'Dude', 'Brandall Cole': 'Derrick (as B. Cole)', 'Deon Cole': 'Jesse', 'Michael Colyar': 'Dad', 'Tiffany J. Curtis': 'Reashaun', 'Kid Capri': 'DJ', 'Eric Lane': 'Leonard', 'Simply Marvalous': 'Mom', 'Gerald McQuirter': 'Money Mel', 'Tony T. Roberts': 'Jay (as Tony Roberts)', 'J. David Shanks': 'Steve', 'Mark Simmons': 'Guest #2'}" tt1630564,"{'Cuba Gooding Jr.': 'John Hebron', 'Christian Slater': 'Father Porter', 'Kim Coates': 'Arment', 'Devon Bostick': 'Mike Lopez', 'Lara Daans': 'Jade', 'Arcadia Kendal': 'Angel', 'Zion Forrest Lee': 'Rook (as Zion Forrest)', 'Jake Simons': 'Tiaz', 'Layton Morrison': 'Gary Diamond', 'Athena Karkanis': 'Rachel', 'Matthew Stefiuk': 'Balt', 'Hannah Chantée': 'Noelle Hebron (as Hannah Van Herten)', 'Adrian Langley': 'Doug', 'Stacey Martin': 'Riki', 'Peter Michael Dillon': 'Lyon (as Peter Dillon)'}" tt1266121,"{'Mark Dacascos': 'Von Griem', 'Yancy Butler': 'Lilith', 'Rhett Giles': 'Jacob Van Helsing', 'Christy Carlson Romano': 'Alex Layton (as Christy Romano)', 'Jeremy London': 'Russell Bayne', 'Stephanie Honoré': 'Zafira (as Stephanie Honore)', 'Sarah Ann Schultz': 'Xandrea', 'Jerry Katz': 'Vlad', 'Taylor Roppolo': 'Sadie', 'Leigh Scott': 'The Old One', 'Marcus Lyle Brown': 'Konstantinos (as Marcus Brown)', 'Derek Osedach': ""Jimmy 'The Kid'"", 'Justin Jones': 'Maximillian', 'Dean N. Arevalo': 'Security Guard #2', 'Edrick Browne': 'Detective Ladd'}" tt0457319,"{'Big Daddy Kane': 'Hunter', 'Brandon Xavier': 'Ski (as Brandon Hardin)', 'D.J. Naylor': 'Ackson', 'Dominic L. Santana': 'Malcolm', 'E-40': 'Hustle', 'Thunderbird Dinwiddie': 'Kate (as T-Love)', 'Michael Braxton': 'Trey', 'Chris Bailey': 'Bone', 'Bone Crusher': 'Himself (as Bonecrusher)', 'Zach Hanner': 'Rich', 'Jon Stafford': 'Sheriff', 'Bill Ladd': 'Deputy Miller', 'Cullen Moss': 'Deputy ...', 'Charlie Lucas': 'Uncle Authur', 'Joi Heggins': ""Bonecrusher's Girl""}" tt0230512,"{'Rodney Bingenheimer': 'Himself', 'Exene Cervenka': 'Herself', 'John Doe': 'Himself', 'X': 'Themselves', 'Chris P. Carter': 'Himself - Dramarama (as Chris Carter)', 'Courtney Love': 'Herself - Hole', 'Gwen Stefani': 'Herself - No Doubt', 'Brooke Shields': 'Herself', 'Kim Fowley': 'Himself - Record Producer', 'Brian Wilson': 'Himself - The Beach Boys', 'Alice Cooper': 'Himself', 'Michael Des Barres': 'Himself - Silverhead', 'Pamela Des Barres': ""Herself - Author, 'I'm With the Band'"", 'Monique Powell': 'Herself', 'Keanu Reeves': 'Himself'}" tt0380201,"{'Joe Morton': 'Reverend Packer', 'Ja Rule': 'Reggie', 'Norman Grant': 'Doctor', 'Ving Rhames': 'J-Bone', 'Tia Carrere': 'Loot', 'Lahmard J. Tate': 'Jamal (as Lahmard Tate)', 'Peter Somech': 'Philip The Vendor', 'Giancarlo Esposito': 'Benson Cooper', 'Badja Djola': 'Grant Brown', 'Pam Grier': 'Mrs. Cooper', 'Davetta Sherwood': 'Tosha Cooper', 'Stephen Kough': 'Vincent Cooper', 'Erika Michels': 'Maria Patillo - Reporter (as Erika Michels Brown)', 'Frank Langella': 'Lieutenant Hudson', 'Jamie Harper': ""Jamal's Girl (as Jamie Harper)""}" tt0492912,"{'Christian Oliver': 'Adam Schmidt', 'Dean Stapleton': 'Dr. Vick', 'Courtney Mace': 'Kate', 'Jürgen Jones': 'The Hunter', 'Thomas Buesch': 'The Professor', 'Philip Chidel': 'Subject One'}" tt1294136,"{'Andie MacDowell': 'Helen Kalahan', 'Cary Elwes': 'Ethan Belfrage', 'Frank Whaley': 'Aaron', 'Matt Dallas': 'Jake', 'Nicole Ansari-Cox': 'Kate Belfrage (as Nicole Ansari)', 'Brian Cox': 'Reverend Kalahan', 'Clark Middleton': 'Seth', 'Emma Kantor': 'Sarah', 'Juliette Bennett': 'Erica', 'Nasry Malak': 'Moe', 'Crispian Belfrage': 'Brian Shepherd', 'Claudine Oriol': 'Marsha', 'J.W. Cortes': 'Cop', 'Laurence Covington': 'Cop #2', ""Mario D'Leon"": 'Titus'}" tt0138097,"{'Geoffrey Rush': 'Philip Henslowe', 'Tom Wilkinson': 'Hugh Fennyman', ""Steven O'Donnell"": 'Lambert', 'Tim McMullan': 'Frees (as Tim McMullen)', 'Joseph Fiennes': 'Will Shakespeare', 'Steven Beard': 'Makepeace - the Preacher', 'Antony Sher': 'Dr. Moth', 'Patrick Barlow': 'Will Kempe', 'Martin Clunes': 'Richard Burbage', 'Sandra Reinton': 'Rosaline', 'Simon Callow': 'Tilney - Master of the Revels', 'Judi Dench': 'Queen Elizabeth', 'Bridget McConnell': 'Lady in Waiting (as Bridget McConnel)', 'Georgie Glen': 'Lady in Waiting', 'Nicholas Boulton': 'Henry Condell'}" tt1270761,"{'Bruce Gleeson': 'Buggy Driver', 'Eddie Ritchard': 'Housekeeper (as Edwina Ritchard)', 'Garry McDonald': 'Blackwood', 'Bailee Madison': 'Sally', 'Carolyn Shakespeare-Allen': 'Airport Cart Driver', 'Katie Holmes': 'Kim', 'Guy Pearce': 'Alex', 'Jack Thompson': 'Harris', 'Julia Blake': 'Mrs. Underhill', 'David Tocci': 'Workman', 'Lance Drisdale': 'Policeman', 'Nicholas Bell': 'Psychiatrist', 'Libby Gott': 'Nurse', 'James Mackay': 'Librarian', 'Emilia Burns': 'Caterer (as Emelia Burns)'}" tt0138524,"{'George Clooney': 'Miles', 'Catherine Zeta-Jones': 'Marylin', 'Geoffrey Rush': 'Donovan Donaly', 'Cedric the Entertainer': 'Gus Petch', 'Edward Herrmann': 'Rex Rexroth', 'Paul Adelstein': 'Wrigley', 'Richard Jenkins': 'Freddy Bender', 'Billy Bob Thornton': 'Howard D. Doyle', 'Julia Duffy': 'Sarah Sorkin', 'Jonathan Hadary': 'Heinz, the Baron Krauss von Espy', 'Tom Aldredge': 'Herb Myerson', 'Stacey Travis': 'Bonnie Donaly', 'Jack Kyle': 'Ollie Olerud', 'Irwin Keyes': 'Wheezy Joe', 'Judith Drake': 'Mrs. Gutman'}" tt0113074,"{'Gary Daniels': 'Kenshirô', 'Malcolm McDowell': 'Ryuken', 'Costas Mandylor': 'Lord Shin', 'Downtown Julie Brown': 'Charlie', 'Dante Basco': 'Bat', 'Nalona Herron': 'Lynn', 'Melvin Van Peebles': 'Asher', 'Clint Howard': 'Stalin', 'Andre Rosey Brown': 'Sandman', 'Paulo Tocha': 'Stone', 'Chris Penn': 'Jackal', 'Tracey Walter': 'Paul McCarthy', 'Rowena Guinness': 'Jill McCarthy', 'Isako Washio': 'Julia', 'Michael Charles Friedman': 'Neuter'}" tt1172060,"{'Bijou Phillips': 'Lenore Harker', 'James Murray': 'Frank Davis', 'Raphaël Coleman': 'Chris Davis', 'Owen Teale': 'Sgt. Perkins', 'Ty Glaser': 'Marnie', 'Oliver Coopersmith': 'Mike', 'Ioan Karamfilov': 'Adam', 'Jack Ellis': 'Prof. Baldwin', 'Skye Bennett': 'Nicole', 'Arkie Reece': 'Perry', 'Todd Jensen': 'Dr. Orbinson', 'Mariana Stansheva': 'Nurse #1 (as Mariana Stanisheva)', 'Alexis Bergemann': 'Nurse #2', 'Michal Yannai': 'Wrinkled Nurse', 'Gergana Bouzukova': 'Thin Nurse (as Gergana Bozukova)'}" tt1161449,"{'Michael B.': 'Krit', 'Russell Wong': 'Patrick', 'Inthira Charoenpura': 'Praifa (as Intira Jaroenpura)', 'Patharawarin Timkul': 'Selina', 'Erik Markus Schuetz': 'Gary', 'Winston Sefu': 'Mafia Wisa', 'Lak-Khet Waslikachart': 'Ram', 'Brahim Chab': 'Mafia wisa henchman (as Brahim Achabbakhe)', 'Kaecha Kampakdee': 'Mafia wisa henchman 2', 'Winston Omega': 'General'}" tt1087524,"{'Brian Presley': 'Chance', 'Taraji P. Henson': 'Pearl', 'Amy Madigan': 'Rose', 'Ed Harris': 'Liam', 'Ash Adams': 'Rath', 'Chad Lindberg': 'Beat', 'Keegan Thomas': 'August (as Keegan M. Thomas)', 'Alison Eastwood': 'Kat', 'Peter Weller': 'Eddie', 'Peter Greene': 'Sonny', 'Rance Howard': 'Harry', 'Sharon Gless': 'Sue', 'Jesse D. Goins': 'Bookman', 'Sam Hargrave': 'Axel', 'Antonio Fargas': 'Jay'}" tt0770778,"{'Simon Rex': 'Taz', 'Ving Rhames': ""Norman De'Sha"", 'Esai Morales': 'Natas', 'Erick Nathan': 'Cal', 'Elizabeth Di Prinzio': 'Amanda', 'Hemky Madera': 'Hector', 'Eddie B. Smith': 'Scooter Pie', 'Leonardo Castro': ""Hector's General (as Leonardo Sitiriche)"", 'Hilda Marie Combs': 'Demon Woman', 'Anthony Dilio': 'Eddie', 'Jason Gillyard': 'Homicide', ""Darrell 'Silver' Hughes"": 'Artist (voice) (credit only)', 'Gillie the Kid': 'Stanley', 'Karen Posada': 'News reporter'}" tt0119208,"{'Rick Rodney': 'Nathan', 'Bobby Field': 'Matthew', 'Christi Allen': 'Dana', 'Stewart Teggart': 'Jason', 'Chad Nell': 'John', 'Sean Atkins': 'Jeff', 'Fletcher Dragge': 'Sid', 'Warren Fitzgerald': ""Jeff's Crew"", 'Marti Noxon': 'Wife', 'Bill J. Stevens': 'Mr. Aquavia'}" tt1290400,"{'Val Kilmer': 'Dr. Nicholas Pinter', 'Izabella Miko': 'Katrine', 'Julian Wadham': 'Sterling', 'Hristo Shopov': 'Serik', 'Michael Cronin': 'Mr. Jacob', 'Valentine Pelka': 'Murdoch', 'Valentin Ganev': 'Ludvik Seifert', 'Ruscen Vidinliev': 'Agent Finney (as Rushen Vidiniev)', 'Zachary Baharov': 'Alexander (as Zahary Baharov)', 'Velislav Pavlov': 'Aslan', 'Emil Zdravkov Markov': 'Detective', 'Stanislav Pishtalov': 'Lebedev', 'Julian Vergov': 'Victor', 'Jeremy Zimmermann': 'Agent Davies (as Jeremy Zimmerman)', 'Javor Baharoff': 'Agent Bouquet'}" tt0476964,"{'Jodie Foster': 'Erica Bain', 'Terrence Howard': 'Detective Mercer', 'Nicky Katt': 'Detective Vitale', 'Naveen Andrews': 'David Kirmani', 'Mary Steenburgen': 'Carol', 'Ene Oloja': 'Josai', 'Luis Da Silva Jr.': 'Lee', 'Blaze Foster': 'Cash', 'Rafael Sardina': 'Reed', 'Jane Adams': 'Nicole', 'Gordon MacDonald': 'Murrow', 'Zoë Kravitz': 'Chloe', 'John Magaro': 'Ethan', 'Victor Colicchio': 'Cutler', 'Jermel Howard': 'Thug on Subway'}" tt0762073,"{'Kang-ho Song': 'Sang-hyun (as Song Kang-ho)', 'Hee-jin Choi': 'Nurse Sa', 'Dong-soo Seo': 'Hyo-sung', 'Hwa-ryong Lee': 'Doctor Ku', 'Mi-ran Ra': 'Nurse Yu', 'In-hwan Park': 'Priest Roh (as Park In-hwan)', 'Eriq Ebouaney': 'Emmanuel Research Director (as Eriq Ebouney)', 'Thati Peele': 'Emmanuel Research Nun (as Onthatile Peele)', 'Jong-ryol Choi': 'Grandfather', 'Yong-wan Goo': 'Devotee', 'Woo-seul-hye Hwang': 'Whistle Girl', 'Hae-sook Kim': 'Mrs. Ra (as Kim Hae-sook)', 'Ha-kyun Shin': 'Kang-woo (as Shin Ha-kyun)', 'Ok-bin Kim': 'Tae-ju (as Kim Ok-vin)', 'Dal-su Oh': 'Young-du (as Oh Dal-su)'}" tt0480271,"{'Kal Penn': 'Taj', 'Lauren Cohan': 'Charlotte', 'Daniel Percival': 'Pip', 'Glen Barry': 'Seamus', 'Anthony Cozens': 'Gethin', 'Steven Rathman': 'Simon', 'Holly Davidson': 'Sadie', 'Tom Davey': 'Percy', 'William de Coverly': 'Roger', 'Beth Steel': 'Penelope', 'Amy Steel': 'Alexandra', 'Jonathan Cecil': 'Provost Cunningham', 'Roger Hammond': 'Camford Dean', 'Kulvinder Ghir': ""Taj's Father"", 'Shobu Kapoor': ""Taj's Mother""}" tt0760188,"{'Ben Cross': 'Josef Breuer', 'Armand Assante': 'Nietzsche', 'Joanna Pacula': 'Mathilda', 'Michal Yannai': 'Bertha (as Michal Yanai)', 'Jamie Elman': 'Sigmund Freud', 'Andreas Beckett': 'Zarathustra', 'Katheryn Winnick': 'Lou Salome', ""Rachel O'Meara"": 'Frau Becker', 'Yzhar Charuzi': 'Hush Man', 'Ilan Charusi': 'Carmen Barman', 'Tal Fructer': 'Girl by Pianist', 'Silvia Terzieva': 'Mrs. Fiefer', 'Ivaylo Brusowski': 'Mendel Fiefer', 'Ventsislav Slavov': 'The Father of Josef'}" tt0386751,"{'Edward Burns': 'Abel Grey', 'Jennifer Ehle': 'Betsy Chase', 'Thomas Gibson': ""August 'Gus' Pierce"", 'John Kapelos': 'Joey Tosh', 'Jamie Thomas King': 'Harry McKenna (as Jamie King)', 'Rachelle Lefevre': 'Carlin Leander', 'Bruce Murphy': ""Joey's Son"", 'David Gibson McLean': 'Young Abel (as David Maclean)', 'Julian Rhind-Tutt': 'Eric Herman', 'Ross Petty': 'The Dean', 'David Christoffel': 'Matt Farris', 'Richard Fitzpatrick': 'Police Chief', 'Karl Pruner': 'Walter Pierce', 'Jonathan Malen': 'Nathaniel Gibb', 'Jeff A. Wright': 'Robbie (as Jeff Wright)'}" tt0455584,"{'Timothy Hutton': 'David Norton', 'Lucía Jiménez': 'Silvia', 'David Kelly': 'Frank Kovak', 'Georgia Mackenzie': 'Jane', 'Gary Piquer': 'Jaume', 'Annette Badland': 'Kathy', 'Iván Morales': 'Charlie', 'Colin Stinton': 'Encargado Consulado', 'Nicholas Boulton': 'Funcionario Consulado', 'Jeff Harding': 'Gerente Sanatorio', 'Jorge Bosch': 'Forense', 'Luis Callejo': 'Encargado Cuevas', 'Daniel Strauss': 'Médico Silvia (as Dan Strauss)', 'Molly Malcolm': 'Psicóloga', 'Keith Bartlett': 'Admirador'}" tt0149171,"{'Vin Diesel': 'Rick', 'Joey Dedio': 'Fred', 'T.K. Kirkland': 'Rodney', 'Mike Epps': 'Mike', 'F. Valentino Morales': 'Tony', 'Suzanne Lanza': 'Heather', 'Darnell Williams': 'Keith', 'Mihaela Kolich': 'Danielle (as Mihaela Tudorof)', 'Eugene Osborne Smith': 'Willie', 'Temple Brooks': 'Amy', 'Loni Sabrina Stuart': 'Nicole', 'DeAngela Parrish': 'Suzanne', 'Marko Kalfa': 'Chris', 'Joey Iovino': 'Kenny', 'Louis Albert Von Steidl': 'Jerry Saperstein'}" tt0425395,"{'Danny DeVito': 'Frank Menure', 'Kathy Bates': 'Agnes Menure', 'Ron Livingston': 'Dr. Richard Clayton', 'Neve Campbell': 'Ellen Minnola', ""Beverly D'Angelo"": 'Angela Minnola', 'Bob Odenkirk': 'Mitch Clayton', 'Edward Herrmann': 'Doug Clayton', 'Christine Baranski': 'Arleen Clayton', 'Martin Mull': 'Jeffry Morton', 'Michael McKean': 'Ken Hyman', 'M.C. Gainey': 'Spicer', 'Star Jones': 'Holly Davis', 'Ed Begley Jr.': 'Mr. Manoire', 'Debbi Morgan': 'Mrs. Manoire', 'Pete Schwaba': 'Meat Delivery Man'}" tt0358569,"{'Noel Gallagher': 'Himself', 'Liam Gallagher': 'Himself', 'Damon Albarn': 'Himself', 'Jarvis Cocker': 'Himself', 'Kevin Cummins': 'Himself', 'Toby Young': 'Himself', 'Ozwald Boateng': 'Himself', 'Damien Hirst': 'Himself', 'Robert Del Naja': 'Himself (as 3D)', 'Jon Savage': 'Himself', 'Louise Wener': 'Herself', 'Peter Mandelson': 'Himself', 'Tony Blair': 'Himself (archive footage)'}" tt0276276,"{'Bill Nighy': 'Dan', 'Tom Hollander': 'Nick', 'Douglas Henshall': 'Tim', 'Clémentine Célarié': 'Corrine', 'Ellie Haddington': 'Judy', 'Sukie Smith': 'Charlie', 'Josephine Butler': 'Leah', 'Stuart Laing': 'David', 'Sally Hurst': 'Michelle', 'Dominic Hall': 'Darren', 'Jim McManus': 'Chef', 'Howard Gossington': 'Waiter', 'Richard Cant': 'Michael', 'Hari Dhillon': 'Will (as Hari Dillon)', 'Peter Symonds': ""Mr. Marsh - Tim's Father""}" tt0454879,"{'Brendan Fraser': 'Paul', 'Yasiin Bey': 'Wemba (as Mos Def)', 'Scott Glenn': 'Sinatra', 'Catalina Sandino Moreno': 'Angie', 'Alice Braga': 'Monique', 'Matheus Nachtergaele': 'Nazda', 'Ruy Polanah': 'The Soothsayer', 'Gilson Adalberto Gomes': 'Samy (as Gilson Gomes)', 'Luke Denis Nolan': 'Lazare', 'Milhem Cortaz': 'Rodrigo', 'Antonio Pinto': 'Detective Moosbruger', 'Ana Paula Demambro': 'Drena (as Ana Paula De Mambro)', 'Marcio Garcia': 'Club Manager', 'Ingrid Costa Silva': 'Club Hostess', 'Cristina Sverzuti': 'Prostitute #2 (as Cristina Sverzuti Fidencio)'}" tt0417751,"{'Estella Warren': 'Jeana', 'Christian Kane': 'Paul', 'Michael Weatherly': 'Tom', 'Rachel Dratch': 'Caroline', 'Flex Alexander': 'Marty', 'Kathy Griffin': 'Maggie', 'Ivana Milicevic': 'Zsa Zsa', 'Victoria Jackson': 'Norma', 'David Fine': 'Cab Driver', 'Larry Milburn': 'Randy', 'Keary Ann Bixby': 'Wendy Sagen', 'Rick Kleber': 'Carl', 'Rachel Songer': 'Alison', 'Elisabeth Nunziato': 'Susan', 'Heather Simpson': 'Monica'}" tt0412798,"{'Demi Moore': 'Rachel Carlson', 'Henry Ian Cusick': 'Brian', 'Beans El-Balawi': 'Thomas Carlson (as Beans Balawi)', 'Kate Isitt': 'Sharon Winton', 'Nicholas Gleaves': 'Dr. Robert Freedman', 'James Cosmo': 'Finlay Murray', 'Joanna Hole': 'Mary Murray', 'Therese Bradley': 'Morag McPherson', 'Hans Matheson': 'Angus McCulloch', 'Mickey Wilson': 'Reverend James McMahon (as Michael Wilson)', 'Polly Frame': 'Librarian', 'Ceit Kearney': 'Gaelic Speaking Woman', 'Nichola Bee': 'Kate McCulloch (as Nichola B)', 'Jamie Edgell': 'Gordon McCloud', 'Anne Smith': 'Bingo Announcer'}" tt0339091,"{'Monica Calhoun': 'Rachel', ""Lil' Kim"": 'Chastity', 'Stacey Dash': 'Kim', 'Marie Matiko': 'Zang Li', 'LisaRaye McCoy': 'Maria (as LisaRaye)', 'Macy Gray': 'Black Haired Woman', 'Louis Mandylor': 'Sheriff Shoeshine Michel', 'Bobby Brown': 'Left Eye Watkins', 'Jacinto Taras Riddick': 'Georgy Simone (as Jacinto Riddick)', 'Charity Hill': 'Little Suzie', 'Jean-Claude La Marre': 'Baby Face Malone', 'Licia L. Shearer': 'Sally (as Licia Shearer)', 'Glenn Plummer': 'Johnny Handsome', 'Peter Sherayko': 'Bartender #1', 'Sal Cardile': 'Jeremiah'}" tt0470761,"{'Elisabeth Shue': 'Laura', 'Steven Mackintosh': 'Steven', 'Kathleen Chalfant': 'Mrs. Kasperian', 'Khandi Alexander': 'Dierdre', 'Anne Wolf': 'Samantha Lee', 'Blair Brown': ""Laura's Mother"", 'Phillip V. Caruso': 'Dr.Caputo, Anesthesiologist', 'Matt Dickinson': 'Party Guest #1', 'Mia Dillon': 'Party Guest #2', 'Julian Gamble': 'Exterminator', 'Carolyn Gilroy': 'Jenny (voice)', 'Jared Grimes': 'Stock Boy', 'Tim Hopper': 'Officer White', 'Lisby Larson': 'Party Guest #4', 'David Little': 'Officer Gray'}" tt0280605,"{'Bryan Brown': 'Barry Ryan', 'Toni Collette': 'Sharon Ryan', 'John Goodman': 'Tony Testano', 'Sam Neill': 'Detective Sergeant Ray Murphy', 'Sam Worthington': 'Darcy', 'Kestie Morassi': 'Margaret', 'William McInnes': 'Hollywood', 'Andrew S. Gilbert': 'Norm', 'Gary Waddell': 'Freddie', 'Felix Williamson': 'Sal Cassela', 'Derek Amer': 'Manager', 'Laeni Baille': 'Coin Lady', 'Rudi Baker': 'Bell Boy', 'Bille Brown': 'Senator', 'Michael Brownjohn': 'Bouncer #1'}" tt0914364,"{'Lance Henriksen': 'Col. John Willets', 'Gary Stretch': 'Colin Willets', 'James Russo': 'Commander Combs', 'Katherine Randolph': 'Traci Leonard', 'D.C. Douglas': 'Larry Grubman', 'Jim Hanks': 'Ensign Buford', 'Matthew Alan': 'Lt. Chris McCloskey', 'Lee Majdoub': 'Fahdawi / Khalil', 'David Hutchison': 'Navy Seal #1', 'Richard Jenik': 'Lt. Ricks', 'John Karyus': 'Present Day Captain', 'Paul Lacovara': 'Navy Seal #2', 'Grant Mathis': 'Gunther Neumann', 'Robert Pike Daniel': 'Slab', 'Tom McCafferty': 'Lt. Jackson'}" tt0285487,"{'Michael Beach': 'Ty Adams', 'Ronny Cox': 'Delazo', 'Sinbad': 'Orderly', 'Jane Carr': 'Nurse Danza', 'Shelley Robertson': 'Veda', 'Khylan Jones': 'Brianna', 'Twink Caplan': 'Suzanne', 'John C. McGinley': 'Parker', 'David Backus': 'Todd', 'Matthew A. Thomas': 'Stretch McGuffin (as Matt Thomas)', 'William Bassett': 'Mr. Brennan', 'Jim Ortlieb': 'Mr. Tobin', 'Roberta Haze': 'Ms. Aslee', 'Tom Everett': 'Mansell', 'Ray Xifo': 'Selden'}" tt0482088,"{'Audrey Tautou': 'Irène', 'Gad Elmaleh': 'Jean', 'Marie-Christine Adam': 'Madeleine', 'Vernon Dobtcheff': 'Jacques', 'Jacques Spiesser': 'Gilles', 'Annelise Hesme': 'Agnès', 'Charlotte Vermeil': 'Dame au chihuahua', 'Claudine Baschet': 'Dame au dogue', 'Laurent Claret': 'Responsable bar Biarritz', 'Jean de Coninck': ""L'homme au cigare"", 'Blandine Pélissier': 'La femme de chambre', 'Philippe Vendan-Borin': 'Serveur restaurant Biarritz', 'Bernard Bourdeau': 'Collègue Jean Biarritz', 'Didier Brice': 'François', 'Laurent Mouton': 'Serveur café François'}" tt0832266,"{'Ryan Reynolds': 'Will Hayes', 'An Nguyen': 'Ad Exec', 'Matthew Mason': 'Headphone Guy', 'Rick Derby': 'Visitor from Planet Ordon (as Ricky Jay Derby)', 'Sakina Jaffrey': 'School Mom', 'Bob Wiltfong': 'School Dad', 'Ryder Chasin': 'Boy with Book', 'Fiona Lane': 'Angry Girl', 'Dana Eskelson': ""Angry Girl's Mom"", 'Blake Benitez': 'School Kid', 'Paulina Gerzon': 'School Kid', 'Victoria Goldsmith': 'School Kid', 'Ashtyn Greenstein': 'School Kid', 'Ashley Grenier': 'School Kid', 'Dylan Hartigan': 'School Kid'}" tt0069704,"{'Richard Dreyfuss': 'Curt', 'Ron Howard': 'Steve (as Ronny Howard)', 'Paul Le Mat': 'John', 'Charles Martin Smith': 'Terry (as Charlie Martin Smith)', 'Cindy Williams': 'Laurie', 'Candy Clark': 'Debbie', 'Mackenzie Phillips': 'Carol', 'Wolfman Jack': 'Disc Jockey', 'Bo Hopkins': 'Joe', 'Manuel Padilla Jr.': 'Carlos', 'Beau Gentry': 'Ants', 'Harrison Ford': 'Bob Falfa', 'Jim Bohan': 'Holstein', 'Jana Bellan': 'Budda', 'Deby Celiz': 'Wendy'}" tt0125664,"{'Jim Carrey': 'Andy Kaufman (as Tony Clifton)', 'Gerry Becker': ""Stanley Kaufman - Andy's Father"", 'Greyson Erik Pendry': 'Little Michael Kaufman (as Greyson Pendry)', 'Brittany Colonna': 'Baby Carol Kaufman', 'Leslie Lyles': ""Janice Kaufman - Andy's Mother"", 'Bobby Boriello': 'Little Andy Kaufman', 'George Shapiro': 'Mr. Besserman', 'Danny DeVito': 'George Shapiro', 'Budd Friedman': 'Budd Friedman', 'Tom Dreesen': 'Wiseass Comic', 'Thomas Armbruster': 'Improv Piano Player', 'Pamela Abdy': 'Diane Barnett', 'Wendy Polland': 'Little Wendy', 'Cash Oshman': 'Yogi', 'Matt Price': 'Meditation Student'}" tt1210801,"{'Dolph Lundgren': 'Joe', 'Melissa Molinaro': 'Venus (as Melissa Smith)', 'Hristo Shopov': 'President Petrov', 'Dave Legeno': 'Oleg Kazov', 'Clement von Franckenstein': 'Ambassador Bradley', 'James Chalke': 'Vladimir', 'Zachary Baharov': 'Mikhail Kapista (as Zahary Baharov)', 'Ivaylo Geraskov': 'Leonid Gordov', 'Shelly Varod': 'Ali Connor', 'Katarzyna Wolejnio': 'Maj. Pavlikova', 'Ida Lundgren': 'Anna Petrov', 'Robin Dobson': 'Yana Petrov', 'Raicho Vasilev': 'Anton', 'Slavi Slavov': 'Capt. Simenov', 'Naum Shopov': 'Peter'}" tt1583420,"{'Tom Hanks': 'Larry Crowne', 'Sarah Mahoney': 'Samantha', 'Roxana Ortega': 'Alvarez', 'Randall Park': 'Trainee Wong', 'Brady Rubin': 'Dorothy Genkos', 'Alex Quijano': 'Team Leader #1', 'Tina Huang': 'Team Leader #2', 'E-Kan Soong': 'Team Leader #3', 'Tarina Pouncy': 'Team Leader #4', 'Sy Richardson': 'Avery', 'Julie Wagner': 'Vacuum Shopper', 'Rob Riggle': 'Jack Strang', 'Erin Underwood': 'Mom with Baby', 'Dale Dye': 'Cox', 'Barry Sobel': 'Cubby'}" tt0955308,"{'Russell Crowe': 'Robin Longstride', 'Cate Blanchett': 'Marion Loxley', 'Max von Sydow': 'Sir Walter Loxley', 'William Hurt': 'William Marshal', 'Mark Strong': 'Godfrey', 'Oscar Isaac': 'Prince John', 'Danny Huston': 'King Richard the Lionheart', 'Eileen Atkins': 'Eleanor of Aquitaine', 'Mark Addy': 'Friar Tuck', 'Matthew Macfadyen': 'Sheriff of Nottingham', 'Kevin Durand': 'Little John', 'Scott Grimes': 'Will Scarlet', 'Alan Doyle': ""Allan A'Dayle"", 'Douglas Hodge': 'Sir Robert Loxley', 'Léa Seydoux': 'Isabella of Angoulême'}" tt0368688,"{'Dolph Lundgren': 'Sgt. Frank Gannon', 'Polly Shannon': 'Billie Ross', 'Donald Burda': 'Bryant', 'Rothaford Gray': 'Sgt. Ed Grimes', 'Conrad Dunn': 'Captain Stone', 'Walter Alza': 'Espinoza', 'Alex Karzis': 'Agent Bill', 'Larry Day': 'Phil, Agent in Charge', 'Natacha La Ferriere': 'Adrianna', 'Daniel Kash': 'LoPresti', 'Stacey Coke': 'Loretta Grimes', 'Joseph Griffin': 'Carter (as Joseph Luna Griffin)', 'Vanessa Thompson': 'Katy', 'Tim Sell': 'Hardcase #1', 'Jim Codrington': 'Hardcase #2'}" tt0318462,"{'Gael García Bernal': 'Ernesto Guevara de la Serna', 'Rodrigo De la Serna': 'Alberto Granado', 'Mía Maestro': 'Chichina Ferreyra', 'Mercedes Morán': 'Celia de la Serna (Argentina)', 'Jean Pierre Noher': 'Ernesto Guevara Lynch (Argentina) (as Jean-Pierre Noher)', 'Lucas Oro': 'Roberto Guevara (Argentina)', 'Marina Glezer': 'Celita Guevara (Argentina)', 'Sofia Bertolotto': 'Ana María Guevara (Argentina) (as Sofía Bertolotto)', 'Franco Solazzi': 'Juan Martín Guevara (Argentina)', 'Ricardo Díaz Mourelle': 'Uncle Jorge (Argentina) (as Ricardo Diaz Mourelle)', 'Sergio Boris': 'Young Traveler (Argentina)', 'Daniel Kargieman': 'Young Traveler (Argentina)', 'Diego Giorzi': 'Rodolfo (Argentina)', 'Facundo Espinosa': 'Tomás Granado (Argentina)', 'Matias Gomez': 'Kid (Argentina) (as Matías Gómez)'}" tt0310924,"{'Gérard Depardieu': 'Daniel Foray', 'Harvey Keitel': 'Frankie Zammeti', 'Johnny Hallyday': 'Marcel Burot', 'Renaud': 'Zero', 'Saïd Taghmaoui': 'Sami', 'Stéphane Freiss': 'Julien Labesse', 'Shawn Lawrence': 'Agent Pogue', 'Albert Dray': 'Raymond Gayet', 'Joanne Kelly': 'Sophie Nicols', 'Richard Bohringer': 'Bastaldi', 'Abe Vigoda': 'Angelo Giancarlo', 'Gino Marrocco': 'Joey Two Tons', 'Sal Figliomeni': 'Nicky The Rake', 'Diego Chambers': 'Raphael', 'Carlos Diaz': 'Hector'}" tt0469062,"{'Marisa Tomei': 'Danika Merrick', 'Hannah Marks': 'Lizzie Geralds', 'Guy Camilleri': 'Man', 'Akuyoe Graham': 'Patricia Guilford', 'Ori Pfeffer': 'Bank Robber #1', 'Jeffrey Nicholas Brown': 'Bank Robber #2 (as Jeffrey Brown)', 'Craig Bierko': 'Randy Merrick', 'Kyle Gallner': 'Kurt Merrick', 'Nicki Prian': 'Lauren Merrick (as Nicky Prian)', 'Ridge Canipe': 'Brian Merrick', 'Regina Hall': 'Dr. Evelyn Harris', 'Jacqueline Pinol': 'Nanny', 'James Avery': 'Teddy Johnson', 'Tanya Linette Smith': 'Sales Lady', 'John Ducey': 'TV Anchorman'}" tt0327643,"{'Jenny McCarthy': 'Rebecca Sommers', 'Eddie Kaye Thomas': 'John', 'Carmen Electra': 'Michelle Lopez', 'Victor Webster': 'Richard', 'Kam Heskin': 'Carrie Carson', 'Guillermo Díaz': 'Tom Houdini', 'Jessica Collins': 'Mandy', 'Renee Albert': 'Sara', 'Noah Harpster': 'Robert Rodale', 'Jay Johnston': 'Waiter', 'Judith Drake': 'Waitress', ""David O'Donnell"": 'Jake', 'Forbes March': 'Mr. Hot Bacon', 'Deryck Whibley': 'Tony', 'Tabitha Taylor': 'Sexy Woman'}" tt0167116,"{'Brent Roam': 'Concierge', 'Shawn Woods': 'Larson', 'Christopher Bersh': 'Thug in Black', 'Kiefer Sutherland': 'Arthur Banks', 'Rachel Ticotin': 'Dora', 'Beth Grant': 'Lou', 'Zach Chapman': 'Officer', 'Jamey Sheridan': 'Agent George Scanlon', 'Leslie Stefanson': 'Agent Donna Marbury', 'Melora Walters': 'Bennie Harper', 'Buddy Quaid': 'Gas Station Attendant', 'Keith Diamond': 'Agent Robinson', 'Bill Sage': 'Agent Davis', 'Aliza Rajan': 'Agent McCoy (as Aliza Waksal)', 'Alan Gelfant': 'Byron Sadowski'}" tt0174856,"{'Denzel Washington': 'Rubin Carter', 'Vicellous Shannon': 'Lesra (as Vicellous Reon Shannon)', 'Deborah Kara Unger': 'Lisa', 'Liev Schreiber': 'Sam', 'John Hannah': 'Terry', 'Dan Hedaya': 'Della Pesca', 'Debbi Morgan': 'Mae Thelma', 'Clancy Brown': 'Lt. Jimmy Williams', 'David Paymer': 'Myron Bedlock', 'Harris Yulin': 'Leon Friedman', 'Rod Steiger': 'Judge Sarokin', 'Badja Djola': 'Mobutu', 'Vincent Pastore': 'Alfred Bello', 'Al Waxman': 'Warden', 'David Lansbury': 'U.S. Court Prosecutor'}" tt0889583,"{'Sacha Baron Cohen': 'Brüno', 'Gustaf Hammarsten': 'Lutz', 'Clifford Bañagale': 'Diesel', 'Chibundu Orukwowu': 'O.J.', 'Chigozie Orukwowu': 'O.J.', 'Josh Meyers': 'Kookus', 'Toby Holguin': 'Mexican Gardener #1 (as Toby Hoguin)', 'Robert Huerta': 'Mexican Gardener #2', 'Gilbert Rosales': 'Mexican Gardener #3', 'Thomas Rosales Jr.': 'Mexican Gardener #4', 'Marco Xavier': 'Mexican Gardener #5', 'Bono': ""Himself - 'Dove of Peace'"", 'Chris Martin': ""Himself - 'Dove of Peace'"", 'Elton John': ""Himself - 'Dove of Peace'"", 'Slash': ""Himself - 'Dove of Peace'""}" tt0101393,"{'Kurt Russell': 'Stephen McCaffrey / Dennis McCaffrey', 'William Baldwin': 'Brian McCaffrey', 'Robert De Niro': 'Donald Rimgale', 'Donald Sutherland': 'Ronald Bartel', 'Jennifer Jason Leigh': 'Jennifer Vaitkus', 'Scott Glenn': 'John Adcox', 'Rebecca De Mornay': 'Helen McCaffrey', 'Jason Gedrick': 'Tim Krizminski', 'J.T. Walsh': 'Marty Swayzak', 'Anthony Mockus Sr.': 'Chief John Fitzgerald (as Tony Mockus Sr.)', 'Cedric Young': 'Grindle', 'Juan Ramírez': 'Ray Santos', 'Kevin Casey': 'Nightingale', 'Jack McGee': 'Schmidt', 'Mark Wheeler': 'Pengelly'}" tt1027747,"{'Stana Katic': 'Raina Mavias', 'Tom Berenger': 'Virgil Vadalos', 'Paul Sloan': 'Beck', 'Michael Biehn': 'Lee', 'William Forsythe': 'Alex', 'Kelly Hu': 'Detective Hanover', 'Amanda Brooks': 'Penny', 'Diane Venora': 'Sylvia Vadalos', 'Tony Lip': 'Gus', 'James Russo': 'Engelhart', 'Tom Sizemore': 'Large Bills', 'Dominique Swain': 'Nancy', 'D.B. Sweeney': 'Danny', 'David Proval': 'Mohammad', 'Efrain Figueroa': 'Ernesto'}" tt0455362,"{'Michelle Rodriguez': 'Nicki', 'Oliver Hudson': 'John', 'Taryn Manning': 'Sara', 'Eric Lively': 'Matt', 'Hill Harper': 'Noah', 'Nick Boraine': 'Luke', 'Lisa-Marie Schneider': 'Jenny'}" tt0317198,"{'Renée Zellweger': 'Bridget Jones', 'Gemma Jones': 'Mum', 'Jim Broadbent': 'Dad', 'James Faulkner': 'Uncle Geoffrey', 'Celia Imrie': 'Una Alconbury', 'Dominic McHale': 'Bernard', 'Colin Firth': 'Mark Darcy', 'Donald Douglas': 'Admiral Darcy', 'Shirley Dixon': 'Mrs. Darcy', 'Neil Pearson': 'Richard Finch', 'Rosalind Halstead': 'Receptionist', 'Luis Soto': 'Mexican Ambassador', 'Tom Brooke': 'Production Assistant', 'Hugh Grant': 'Daniel Cleaver', 'Alba Fleming Furlan': 'Girl in Rome'}" tt1198153,"{'Olga Kurylenko': 'Galia', 'Reymonde Amsallem': 'Bathhouse Attendant #1 (as Reymond Amsalem)', 'Zohar Shtrauss': ""Elinor's Husband"", 'Ninet Tayeb': 'Elinor', 'Liron Levo': 'Roni', 'Henry David': 'Peter', 'Shalom Michaelshwilli': 'Michael', 'Vladimir Friedman': 'Mishka', 'Yana Goor': 'Nina', 'Lior Habra': ""Barbie's Friend"", 'Yuval Saragusi': 'Adar'}" tt1584733,"{'Amina': 'Amina (as Amina Suicide)', 'Bailey Suicide': 'Bailey', 'Bully Suicide': 'Bully', 'Daven Suicide': 'Daven', 'Evan Suicide': 'Evan', 'Fractal': 'Fractal (as Fractal Suicide)', 'Samantha Humphreys': 'James (as James Suicide)', 'Joleigh Suicide': 'Joleigh', 'Mary Suicide': 'Mary', 'Quinne Suicide': 'Quinne', 'Rigel Suicide': 'Rigel', 'Roach Suicide': 'Roach', 'Roza Suicide': 'Roza', 'Soren Suicide': 'Soren', 'Don L. Bagley': 'Caretaker (as Don Bagley)'}" tt0425112,"{'Simon Pegg': 'Nicholas Angel', 'Martin Freeman': 'Met Sergeant', 'Bill Nighy': 'Met Chief Inspector', 'Robert Popper': ""'Not' Janine"", 'Joe Cornish': 'Bob', 'Chris Waitt': 'Dave', 'Eric Mason': 'Bernard Cooper', 'Billie Whitelaw': 'Joyce Cooper', 'Nick Frost': 'PC Danny Butterman', 'Peter Wight': 'Roy Porter', 'Julia Deakin': 'Mary Porter', 'Tom Strode Walton': 'Underage Drinker #1', 'Troy Woollan': 'Underage Drinker #2', 'Rory Lowings': 'Underage Drinker #3', 'Bill Bailey': 'Sergeant Turner'}" tt0116483,"{'Adam Sandler': 'Happy Gilmore', 'Christopher McDonald': 'Shooter McGavin', 'Julie Bowen': 'Virginia Venit', 'Frances Bay': 'Grandma', 'Carl Weathers': 'Chubbs', 'Allen Covert': 'Otto', 'Robert Smigel': 'IRS Agent', 'Bob Barker': 'Bob Barker', 'Richard Kiel': 'Mr. Larson', 'Dennis Dugan': 'Doug Thompson', 'Joe Flaherty': 'Jeering Fan', 'Lee Trevino': 'Himself', 'Kevin Nealon': 'Potter', 'Verne Lundquist': 'Announcer', 'Jared Van Snellenberg': ""Happy's Waterbury Caddy""}" tt0243155,"{'Renée Zellweger': 'Bridget Jones', 'Gemma Jones': ""Bridget's Mum"", 'Celia Imrie': 'Una Alconbury', 'James Faulkner': 'Uncle Geoffrey', 'Jim Broadbent': ""Bridget's Dad"", 'Colin Firth': 'Mark Darcy', 'Charmian May': 'Mrs. Darcy', 'Hugh Grant': 'Daniel Cleaver', 'Paul Brooke': 'Mr. Fitzherbert', 'Felicity Montagu': 'Perpetua', 'Shirley Henderson': 'Jude', 'Sally Phillips': 'Shazza', 'James Callis': 'Tom', 'Charlie Caine': 'Handsome Stranger', 'Gareth Marks': 'Simon in Marketing'}" tt1423593,"{'Élodie Bouchez': 'Asya', 'José María de Tavira': 'Javier', 'Karim Saleh': 'Karim', 'Karolina Muller': 'Tatiana', 'Marianna Kulukundis': 'Athena', 'Rita Ackerman': 'Libby', 'Pierluca Arancio': 'Marco', 'Ahd': 'Iraqi woman (as Ahd Kamel)', 'Sumy Ahn': 'Sun-Tae (as Sumy Ahn Lee)', 'Victoria Aitken': 'Lady in Bathroom', 'Ted Arcidi': 'Don', 'Neville Aurelius': 'Bartender', 'Sophie Auster': 'Savina', 'Sebastian Beacon': 'Eurotrash Boy', 'Judson Blane': ""Maribelle's Boyfriend""}" tt0141926,"{'Matthew McConaughey': 'Lt. Andrew Tyler', 'Bill Paxton': 'Lt. Cmdr. Mike Dahlgren', 'Harvey Keitel': 'CPO Henry Klough', 'Jon Bon Jovi': 'Lt. Pete Emmett', 'David Keith': 'Maj. Matthew Coonan', 'Thomas Kretschmann': 'Capt.-Lt. Gunther Wassner', 'Jake Weber': 'Lt. Hirsch', 'Jack Noseworthy': 'Seaman Bill Wentz', 'Tom Guiry': ""Seaman Ted 'Trigger' Fitzgerald"", 'Will Estes': ""Seaman Ronald 'Rabbit' Parker"", ""Terrence 'T.C.' Carson"": 'Steward Eddie Carson (as T.C. Carson)', 'Erik Palladino': 'Seaman Anthony Mazzola', 'Dave Power': ""Seaman Charles 'Tank' Clemens"", 'Derk Cheetwood': 'Seaman Herb Griggs', 'Matthew Settle': 'Ens. Keith Larson'}" tt0078504,"{'Diana Ross': 'Dorothy', 'Michael Jackson': 'Scarecrow', 'Nipsey Russell': 'Tinman', 'Ted Ross': 'Lion / Fleetwood Coupe de Ville', 'Mabel King': 'Evillene', 'Theresa Merritt': 'Aunt Em', 'Thelma Carpenter': 'Miss One', 'Lena Horne': 'Glinda the Good', 'Richard Pryor': 'The Wiz (Herman Smith)', 'Stanley Greene': 'Uncle Henry', 'Clyde J. Barrett': 'Subway Peddler', 'Derrick Bell': 'The Four Crows', 'Roderick-Spencer Sibert': 'The Four Crows', 'Kashka Banjoko': 'The Four Crows', ""Ronald 'Smokey' Stevens"": 'The Four Crows'}" tt0307507,"{'James Spader': 'John Parker', 'Leslie Stefanson': 'Natalie Wright', 'David Keith': 'Ray DeCarlo', 'John Livingston': 'FBI Agent Rick Kendall', 'Robert Miano': 'Lt. Vincent Marino', 'Alf Humphreys': ""Mike O'Grady (as Alfred E. Humphreys)"", 'Tim Henry': 'Arlen Morris', 'Mark Holden': 'Roy Freeman', 'Scott Heindl': 'Steve Spizak', 'Alex Zahara': 'Tommy Meeker', 'Alvin Sanders': 'Harris', 'Cindy Maines': 'Female Teller', 'Karin Konoval': 'Dr. Alvarez', 'Christina Jastrzembska': 'Farm Woman', 'Chief Leonard George': 'Chief Samson Redcloud (as Leonard George)'}" tt0119395,"{'Bruce Willis': 'The Jackal', 'Richard Gere': 'Declan Mulqueen', 'Sidney Poitier': 'Preston', 'Diane Venora': 'Valentina Koslova', 'Mathilda May': 'Isabella', 'J.K. Simmons': 'Witherspoon', 'Richard Lineback': 'McMurphy', 'John Cunningham': 'Donald Brown', 'Jack Black': 'Lamont', 'Tess Harper': 'The First Lady', 'Leslie Phillips': 'Woolburton', 'Stephen Spinella': 'Douglas', 'Sophie Okonedo': 'Jamaican Girl', 'David Hayman': 'Terek Murad', 'Steve Bassett': 'George Decker'}" tt0089755,"{'Meryl Streep': 'Karen', 'Robert Redford': 'Denys', 'Klaus Maria Brandauer': 'Bror', 'Michael Kitchen': 'Berkeley', 'Malick Bowens': 'Farah', 'Joseph Thiaka': 'Kamante', 'Stephen Kinyanjui': 'Kinanjui', 'Michael Gough': 'Delamere', 'Suzanna Hamilton': 'Felicity', 'Rachel Kempson': 'Lady Belfield', 'Graham Crowden': 'Lord Belfield', 'Leslie Phillips': 'Sir Joseph', 'Shane Rimmer': 'Belknap', 'Mike Bugara': 'Juma', 'Job Seda': 'Kanuthia'}" tt0089469,"{'Tom Cruise': 'Jack', 'Mia Sara': 'Lili', 'Tim Curry': 'Darkness', 'David Bennent': 'Gump', 'Alice Playten': 'Blix', 'Billy Barty': 'Screwball', 'Cork Hubbert': 'Brown Tom', ""Peter O'Farrell"": 'Pox', 'Kiran Shah': 'Blunder', 'Annabelle Lanyon': 'Oona', 'Robert Picardo': 'Meg Mucklebones', 'Tina Martin': 'Nell', 'Ian Longmur': 'Demon Cook (as Ian Longmuir)', 'Michael Crane': 'Demon Cook (as Mike Crane)', 'Liz Gilbert': 'Dancing Black Dress'}" tt0112508,"{'Adam Sandler': 'Billy Madison', 'Darren McGavin': 'Brian Madison', 'Bridgette Wilson-Sampras': 'Veronica Vaughn (as Bridgette Wilson)', 'Bradley Whitford': 'Eric Gordon', 'Josh Mostel': 'Principal Max Anderson', 'Norm MacDonald': 'Frank', 'Mark Beltzman': 'Jack', 'Larry Hankin': 'Carl Alphonse', 'Theresa Merritt': 'Juanita', 'Dina Platias': 'Miss Lippy', 'Hrant Alianak': 'Pete', 'Vincent Marino': 'Cook', 'Jack Mather': ""Ted 'Old Man' Clemens"", 'Christopher Kelk': 'Rollo the Janitor', 'Marc Donato': 'Nodding 1st Grader'}" tt0297884,"{'Julianne Moore': 'Cathy Whitaker', 'Dennis Quaid': 'Frank Whitaker', 'Dennis Haysbert': 'Raymond Deagan', 'Patricia Clarkson': 'Eleanor Fine', 'Viola Davis': 'Sybil', 'James Rebhorn': 'Dr. Bowman', 'Bette Henritze': 'Mrs. Leacock', 'Michael Gaston': 'Stan Fine', 'Ryan Ward': 'David Whitaker', 'Lindsay Andretta': 'Janice Whitaker', 'Jordan Nia Elizabeth': 'Sarah Deagan (as Jordan Puryear)', 'Kyle Timothy Smith': 'Billy Hutchinson (as Kyle Smyth)', 'Celia Weston': 'Mona Lauder', 'Barbara Garrick': 'Doreen', 'Olivia Birkelund': 'Nancy'}" tt0097216,"{'Danny Aiello': 'Sal', 'Ossie Davis': 'Da Mayor', 'Ruby Dee': 'Mother Sister', 'Richard Edson': 'Vito', 'Giancarlo Esposito': 'Buggin Out', 'Spike Lee': 'Mookie', 'Bill Nunn': 'Radio Raheem', 'John Turturro': 'Pino', 'Paul Benjamin': 'ML', 'Frankie Faison': 'Coconut Sid', 'Robin Harris': 'Sweet Dick Willie', 'Joie Lee': 'Jade', 'Miguel Sandoval': 'Officer Ponte', 'Rick Aiello': 'Officer Long', 'John Savage': 'Clifton'}" tt0127536,"{'Liz Giles': 'Female Martyr', 'Rod Culbertson': 'Master Ridley', 'Paul Fox': 'Male Martyr', 'Terence Rigby': 'Bishop Gardiner', 'Christopher Eccleston': 'Duke of Norfolk', 'Peter Stockbridge': 'Palace Chamberlain', 'Amanda Ryan': 'Lettice Howard', 'Kathy Burke': 'Queen Mary Tudor', 'Valerie Gale': ""Mary's Dwarf"", 'George Antoni': 'King Philip II of Spain (as George Yiasoumi)', 'James Frain': 'Alvaro de la Quadra', 'Jamie Foreman': 'Earl of Sussex', 'Edward Hardwicke': 'Earl of Arundel', 'Cate Blanchett': 'Elizabeth I', 'Emily Mortimer': 'Kat Ashley'}" tt1133985,"{'Ryan Reynolds': 'Hal Jordan / Green Lantern', 'Blake Lively': 'Carol Ferris', 'Peter Sarsgaard': 'Hector Hammond', 'Mark Strong': 'Sinestro', 'Tim Robbins': 'Hammond', 'Jay O. Sanders': 'Carl Ferris', 'Taika Waititi': 'Tom Kalmaku', 'Angela Bassett': 'Doctor Waller', 'Mike Doyle': 'Jack Jordan', 'Nick Jandl': 'Jim Jordan', 'Dylan James': 'Jason Jordan', 'Gattlin Griffith': 'Young Hal', 'Jon Tenney': 'Martin Jordan', 'Leanne Cochran': 'Janice Jordan', 'Temuera Morrison': 'Abin Sur'}" tt0160184,"{'Sylvester Stallone': 'Jake Malloy', 'Charles S. Dutton': 'Hendricks', 'Polly Walker': 'Jenny', 'Kris Kristofferson': 'Doc', 'Mif': 'Brandon', 'Christopher Fulford': 'Slater', 'Jeffrey Wright': 'Jaworski', 'Tom Berenger': 'Hank', 'Stephen Lang': 'Jack Bennett', 'A.C. Peterson': 'Gilbert (as Alan C. Peterson)', 'Hrothgar Mathews': 'Manny', 'Angela Alvarado': 'Lopez (as Angela Alvarado Rosa)', 'Robert Prosky': 'McKenzie', 'Robert Patrick': 'Noah', 'Courtney B. Vance': 'Reverend Jones'}" tt0790618,"{'Katrina Begin': 'Sylvia', 'Charles Chen': 'Thomas', 'Melonie Diaz': 'Brianne', 'Sunny Doench': 'Mrs. Turner', 'Caroline Dollar': 'Kiki', 'Shahine Ezell': 'Eddie', 'Lyndsy Fonseca': 'Dawn', 'Alexis Gay': 'Girl at Kegger 1', 'Robert X. Golphin': 'Boy #2 (as Robert Golphin)', 'Amber Heard': 'Julia Ford', 'Aaron Himelstein': 'Riley', 'Max Hoffman': 'Zack', 'Thomas Holmes III': 'Ponte', 'Wesley Jonathan': 'Biz', 'Belinda Keller': 'Mrs. Cherry'}" tt0112431,"{'Christine Cavanaugh': 'Babe (voice)', 'Miriam Margolyes': 'Fly (voice)', 'Danny Mann': 'Ferdinand (voice)', 'Hugo Weaving': 'Rex (voice)', 'Miriam Flynn': 'Maa (voice)', 'Russi Taylor': 'Cat (voice) (as Russie Taylor)', 'Evelyn Krape': 'Old Ewe (voice)', 'Michael Edward-Stevens': 'Horse (voice)', 'Charles Bartlett': 'Cow (voice)', 'Paul Livingston': 'Rooster (voice)', 'Roscoe Lee Browne': 'Narrator (voice)', 'James Cromwell': 'Farmer Hoggett', 'Magda Szubanski': 'Esme Hoggett', 'Zoe Burton': 'Daughter', 'Paul Goddard': 'Son-in-Law'}" tt0343135,"{'Ben Stiller': 'Reuben Feffer', 'Jennifer Aniston': 'Polly Prince', 'Philip Seymour Hoffman': 'Sandy Lyle', 'Debra Messing': 'Lisa Kramer', 'Alec Baldwin': 'Stan Indursky', 'Hank Azaria': 'Claude', 'Bryan Brown': 'Leland Van Lew', 'Jsu Garcia': 'Javier', 'Michele Lee': 'Vivian Feffer', 'Bob Dishy': 'Irving Feffer', 'Missi Pyle': 'Roxanne', 'Judah Friedlander': 'Dustin', 'Kevin Hart': 'Vic', 'Masi Oka': 'Wonsuk', 'Kym Whitley': 'Gladys (as Kym E. Whitley)'}" tt0114898,"{'Kevin Costner': 'Mariner', 'Chaim Jeraffi': 'Drifter', 'Rick Aviles': 'Gatesman', 'R.D. Call': 'Enforcer', 'Zitto Kazann': 'Elder / Survivor', 'Leonardo Cimino': 'Elder', 'Zakes Mokae': 'Priam', ""Luke Ka'ili Jr."": 'Boy', 'Anthony DeMasters': 'Boy', 'Willy Petrovic': 'Boy', 'Jack Kehler': 'Banker', 'Jeanne Tripplehorn': 'Helen', 'Lanny Flaherty': 'Trader', 'Robert A. Silverman': 'Hydroholic', 'Gerard Murphy': 'Nord'}" tt0259567,"{'Martin Henderson': 'Drew Curtis', 'Piper Perabo': 'Julia Bishop', 'Jason Winer': 'Danny', 'Andrew Keegan': 'Trey Reynolds', 'Marisa Theodore': 'Ice Cream Attendant', 'Kathleen Wilhoite': 'Terri Curtis', 'Jennifer Tilly': 'Elyse Steinberg', 'Artie Lange': 'Lenny Steinberg', 'Derek Basco': 'Katute', 'Joe Pantoliano': 'Louis Carbonelli', 'Jennifer Julian': 'Yogurt Attendant', 'Cheryl Reeves': 'Katie', 'Nichole Hiltz': 'Celeste', 'Aaron Paul': 'Monty Brandt', 'Jesse Capelli': 'Aubrey (as Jenny Leone)'}" tt0300532,"{'Kate Bosworth': 'Anne Marie Chadwick', 'Matthew Davis': 'Matt Tollman', 'Michelle Rodriguez': 'Eden', 'Sanoe Lake': 'Lena', 'Mika Boorem': 'Penny Chadwick', 'Chris Taloa': 'Drew', 'Kala Alexander': 'Kala', 'Ruben Tejada': 'JJ', 'Kaupena Miranda': 'Kaupena', 'Asa Aquino': 'Asa', 'Faizon Love': 'Leslie', 'Fiji': 'Fiji (as George Veikoso)', 'Shaun Robinson': 'Omar', 'Paul Hatter': 'Paul', 'Tamayo Perry': 'Tamayo'}" tt0163651,"{'Jason Biggs': 'Jim Levenstein', 'Jennifer Coolidge': ""Stifler's Mom"", 'Shannon Elizabeth': 'Nadia', 'Alyson Hannigan': 'Michelle Flaherty', 'Chris Klein': ""Chris 'Oz' Ostreicher"", 'Clyde Kusatsu': 'English Teacher', 'Eugene Levy': ""Jim's Dad"", 'Natasha Lyonne': 'Jessica', 'Thomas Ian Nicholas': 'Kevin Myers', 'Chris Owen': 'Chuck Sherman', 'Lawrence Pressman': 'Coach Marshall', 'Tara Reid': ""Victoria 'Vicky' Lathum"", 'Seann William Scott': 'Steve Stifler (as Seann W. Scott)', 'Mena Suvari': 'Heather', 'Eddie Kaye Thomas': 'Paul Finch'}" tt0125439,"{'Julia Roberts': 'Anna Scott', 'Hugh Grant': 'William Thacker', 'Richard McCabe': 'Tony', 'Rhys Ifans': 'Spike', 'James Dreyfus': 'Martin', 'Dylan Moran': 'Rufus the Thief', 'Roger Frost': 'Annoying Customer', 'Henry Goodman': 'Ritz Concierge', 'Julian Rhind-Tutt': ""'Time Out' Journalist"", 'Lorelei King': ""Anna's Publicist"", 'John Shrapnel': 'PR Chief', 'Clarke Peters': ""'Helix' Lead Actor"", 'Arturo Venegas': ""'Helix' Foreign Actor"", 'Yolanda Vazquez': ""'Helix' interview Interpreter"", 'Mischa Barton': ""'Helix' 12-year-old Actress""}" tt0391198,"{'Sarah Michelle Gellar': 'Karen', 'Jason Behr': 'Doug', 'William Mapother': 'Matthew', 'Clea DuVall': 'Jennifer', 'KaDee Strickland': 'Susan', 'Grace Zabriskie': 'Emma', 'Bill Pullman': 'Peter', 'Rosa Blasi': 'Maria', 'Ted Raimi': 'Alex', 'Ryo Ishibashi': 'Nakagawa', 'Yôko Maki': 'Yoko', 'Yuya Ozeki': 'Toshio', 'Takako Fuji': 'Kayako', 'Takashi Matsuyama': 'Takeo', 'Hiroshi Matsunaga': 'Igarashi'}" tt1645080,"{'Freddie Highmore': 'George Zinavoy', 'Emma Roberts': 'Sally Howe', 'Sasha Spielberg': 'Zoe Rubenstein', 'Marcus Carl Franklin': 'Will Sharpe', 'Ann Dowd': 'Mrs. Grimes', 'Maya Ri Sanchez': 'Cynthia', 'Blair Underwood': 'Principal Martinson', 'Ann Harada': 'Mrs. Dougherty', 'Rita Wilson': 'Vivian Sargent', 'Jarlath Conroy': 'Harris McElroy', 'Elizabeth Reaser': 'Charlotte Howe', 'Andrew Levitas': 'Javier', 'Sam Robards': 'Jack Sargent', 'Alicia Silverstone': 'Ms. Herman', 'Michael Angarano': 'Dustin'}" tt1645080,"{'Freddie Highmore': 'George Zinavoy', 'Emma Roberts': 'Sally Howe', 'Sasha Spielberg': 'Zoe Rubenstein', 'Marcus Carl Franklin': 'Will Sharpe', 'Ann Dowd': 'Mrs. Grimes', 'Maya Ri Sanchez': 'Cynthia', 'Blair Underwood': 'Principal Martinson', 'Ann Harada': 'Mrs. Dougherty', 'Rita Wilson': 'Vivian Sargent', 'Jarlath Conroy': 'Harris McElroy', 'Elizabeth Reaser': 'Charlotte Howe', 'Andrew Levitas': 'Javier', 'Sam Robards': 'Jack Sargent', 'Alicia Silverstone': 'Ms. Herman', 'Michael Angarano': 'Dustin'}" tt0463985,"{'Lucas Black': 'Sean Boswell', 'Damien Marzette': 'High School Security Guard (as Damien Marzett)', 'Trula M. Marcus': 'American Math Teacher (as Trula Marcus)', 'Zachery Ty Bryan': 'Clay (as Zachery Bryan)', 'Brandon Brendel': ""Clay's Buddy #1"", 'Daniel Booko': ""Clay's Buddy #2"", 'David V. Thomas': ""Clay's Buddy #3"", 'Amber Stevens West': 'Cheerleader #1 (as Amber Stevens)', 'Ashika Gogna': 'Cheerleader #2', 'Christian Salazar': 'Chubby Hispanic Kid', 'Kevin Caira': 'Auto Shop Bully #1', 'Trey Sanford': 'Auto Shop Bully #2 (as Julius Trey Sanford)', 'Danny Ray McDonald II': 'Auto Shop Bully #3', 'Nikki Griffin': ""Cindy - Clay's Girlfriend"", 'Vincent Laresca': 'Case Worker'}" tt0414387,"{'Keira Knightley': 'Elizabeth Bennet', 'Talulah Riley': 'Mary Bennet', 'Rosamund Pike': 'Jane Bennet', 'Jena Malone': 'Lydia Bennet', 'Carey Mulligan': 'Kitty Bennet', 'Donald Sutherland': 'Mr. Bennet', 'Brenda Blethyn': 'Mrs. Bennet', 'Claudie Blakley': 'Charlotte Lucas', 'Sylvester Morand': 'Sir William Lucas', 'Simon Woods': 'Mr. Bingley', 'Kelly Reilly': 'Caroline Bingley', 'Matthew Macfadyen': 'Mr. Darcy', 'Pip Torrens': 'Netherfield Butler', 'Janet Whiteside': 'Mrs. Hill', 'Sinead Matthews': 'Betsy'}" tt0085959,"{'Graham Chapman': 'Chairman / Fish #1 / Doctor / Harry Blackitt / Wymer / Hordern / General / Coles / Narrator #2 / Dr. Livingstone / Transvestite / Eric / Guest #1 / Arthur Jarrett / Geoffrey / Tony Bennett', 'John Cleese': ""Fish #2 / Dr. Spencer / Humphrey Williams / Sturridge / Ainsworth / Waiter / Eric's Assistant / Maître D' / Grim Reaper"", 'Terry Gilliam': ""Window Washer / Fish #4 / Walters / Middle of the Film Announcer / M'Lady Joeline / Mr. Brown / Howard Katzenberg"", 'Eric Idle': ""Gunther / Fish #3 / 'Meaning of Life' Singer / Mr. Moore / Mrs. Blackitt / Watson / Blackitt / Atkinson / Perkins / Victim #3 / Front End / Mrs. Hendy / Man in Pink / Noël Coward / Gaston / Angela"", 'Terry Jones': 'Bert / Fish #6 / Mum / Priest / Biggs / Sergeant / Man with Bendy Arms / Mrs. Brown / Mr. Creosote / Maria / Leaf Father / Fiona Portland-Smythe', 'Michael Palin': 'Window Washer / Harry / Fish #5 / Mr. Pycroft / Dad / Narrator #1 / Chaplain / Carter / Spadger / Regimental Sergeant Major / Pakenham-Walsh / Rear End / Female TV Presenter / Mr. Marvin Hendy / Governor / Leaf Son / Debbie Katzenberg', 'Carol Cleveland': 'Beefeater Waitress / Wife of Guest #1 / Leaf Mother / Leaf Daughter / Heaven Receptionist', 'Simon Jones': 'Chadwick / Jeremy Portland-Smythe', 'Patricia Quinn': 'Mrs. Williams', 'Judy Loe': 'Nurse #1', 'Andrew MacLachlan': 'Groom / Wycliff / Victim #1 / Guest #3', 'Mark Holmes': 'Victim #2 (Cheerful Severed Head) / Troll Waiter / Guest #2', 'Valerie Whittington': 'Mrs. Moore', 'Jennifer Franks': 'Bride', 'Imogen Bickford-Smith': 'Nurse #2 (as Imogen Bickford Smith)'}" tt0132347,"{'Hank Azaria': 'Blue Raja', 'Janeane Garofalo': 'Bowler', 'William H. Macy': 'Shoveler', 'Kel Mitchell': 'Invisible Boy', 'Paul Reubens': 'Spleen', 'Ben Stiller': 'Furious', 'Wes Studi': 'Sphinx', 'Greg Kinnear': 'Captain Amazing / Lance', 'Geoffrey Rush': 'Casanova Frankenstein', 'Lena Olin': 'Dr. Anabel Leek', 'Eddie Izzard': 'Tony P', 'Artie Lange': 'Big Red', 'Pras Michel': 'Tony C (as Prakazrel Michel)', 'Claire Forlani': 'Monica', 'Tom Waits': 'Doc Heller'}" tt1019452,"{'Michael Stuhlbarg': 'Larry Gopnik', 'Richard Kind': 'Uncle Arthur', 'Fred Melamed': 'Sy Ableman', 'Sari Lennick': 'Judith Gopnik', 'Aaron Wolff': 'Danny Gopnik', 'Jessica McManus': 'Sarah Gopnik', 'Peter Breitmayer': 'Mr. Brandt', 'Brent Braunschweig': 'Mitch Brandt', 'David Kang': 'Clive Park', 'Benjamin Portnoe': ""Danny's Reefer Buddy"", 'Jack Swiler': 'Boy on Bus', 'Andrew S. Lentz': 'Cursing Boy on Bus', 'Jon Kaminski Jr.': 'Mike Fagle', 'Ari Hoptman': 'Arlen Finkle', 'Alan Mandell': 'Rabbi Marshak'}" tt0454848,"{'Denzel Washington': 'Detective Keith Frazier', 'Clive Owen': 'Dalton Russell', 'Jodie Foster': 'Madeleine White', 'Christopher Plummer': 'Arthur Case', 'Willem Dafoe': 'Captain John Darius', 'Chiwetel Ejiofor': 'Detective Bill Mitchell', 'Carlos Andrés Gómez': 'Steve', 'Kim Director': 'Stevie', 'James Ransone': 'Steve-O', 'Bernie Rachelle': 'Chaim (as Bernard Rachelle)', 'Peter Gerety': 'Captain Coughlin', 'Victor Colicchio': 'Sergeant Collins', 'Cassandra Freeman': 'Sylvia', 'Peter Frechette': 'Peter Hammond', 'Gerry Vichi': 'Herman Gluck'}" tt0106308,"{'Bruce Campbell': 'Ash', 'Embeth Davidtz': 'Sheila', 'Marcus Gilbert': 'Lord Arthur', 'Ian Abercrombie': 'Wiseman', 'Richard Grove': 'Duke Henry the Red', 'Timothy Patrick Quill': 'Blacksmith', 'Michael Earl Reid': 'Gold Tooth', 'Bridget Fonda': 'Linda', 'Patricia Tallman': 'Possessed Witch', 'Ted Raimi': 'Cowardly Warrior (as Theodore Raimi)', 'Deke Anderson': 'Mini-Ash #1', 'Bruce Thomas': 'Mini-Ash #2', 'Sara Shearer': 'Old Woman', 'Shiva Gordon': 'Pit Deadite #1', 'Billy Bryan': 'Pit Bitch'}" tt1013753,"{'Sean Penn': 'Harvey Milk', 'Emile Hirsch': 'Cleve Jones', 'Josh Brolin': 'Dan White', 'Diego Luna': 'Jack Lira', 'James Franco': 'Scott Smith', 'Alison Pill': 'Anne Kronenberg', 'Victor Garber': 'Mayor Moscone', ""Denis O'Hare"": 'John Briggs', 'Joseph Cross': 'Dick Pabich', 'Stephen Spinella': 'Rick Stokes', 'Lucas Grabeel': 'Danny Nicoletta', 'Brandon Boyce': 'Jim Rivaldo', 'Howard Rosenman': 'David Goodstein (as Zvi Howard Rosenman)', 'Kelvin Yu': 'Michael Wong', 'Jeff Koons': 'Art Agnos'}" tt0120616,"{'Brendan Fraser': ""Rick O'Connell"", 'Rachel Weisz': 'Evelyn Carnahan', 'John Hannah': 'Jonathan Carnahan', 'Arnold Vosloo': 'Imhotep', ""Kevin J. O'Connor"": 'Beni Gabor', 'Jonathan Hyde': 'Dr. Allen Chamberlain', 'Oded Fehr': 'Ardeth Bay', 'Erick Avari': 'Dr. Terrence Bey', 'Stephen Dunham': 'Mr. Henderson', 'Corey Johnson': 'Mr. Daniels', 'Tuc Watkins': 'Mr. Burns', 'Omid Djalili': 'Warden Gad Hassan', 'Aharon Ipalé': 'Pharaoh Seti I', 'Bernard Fox': 'Captain Winston Havelock', 'Patricia Velasquez': 'Anck Su Namun'}" tt0209163,"{'Brendan Fraser': ""Rick O'Connell"", 'Rachel Weisz': 'Evelyn Carnahan / Nefertiri', 'John Hannah': 'Jonathan', 'Arnold Vosloo': 'Imhotep', 'Oded Fehr': 'Ardeth Bay', 'Patricia Velasquez': 'Meela / Anck-Su-Namun', 'Freddie Boath': 'Alex', 'Alun Armstrong': 'Mr. Hafez', 'Dwayne Johnson': 'The Scorpion King (as The Rock)', 'Adewale Akinnuoye-Agbaje': 'Lock-Nah', 'Shaun Parkes': 'Izzy', 'Bruce Byron': 'Red', 'Joe Dixon': 'Jacques', 'Tom Fisher': 'Spivey', 'Aharon Ipalé': 'Pharaoh'}" tt0076723,"{'Paul Newman': 'Reggie', 'Strother Martin': 'McGrath', 'Michael Ontkean': 'Ned Braden', 'Jennifer Warren': 'Francine', 'Lindsay Crouse': 'Lily', 'Jerry Houser': 'Killer Carlson', 'Andrew Duncan': 'Jim Carr', 'Jeff Carlson': 'Jeff Hanson', 'Steve Carlson': 'Steve Hanson', 'David Hanson': 'Jack Hanson', 'Yvon Barrette': 'Denis', 'Allan F. Nicholls': 'Upton (as Allan Nicholls)', 'Brad Sullivan': 'Wanchuk', 'Stephen Mendillo': 'Jim Ahern', 'Yvan Ponton': 'Drouin'}" tt0096320,"{'Arnold Schwarzenegger': 'Julius Benedict', 'Danny DeVito': 'Vincent Benedict', 'Kelly Preston': 'Marnie Mason', 'Chloe Webb': 'Linda Mason', 'Bonnie Bartlett': 'Old Mary Ann Benedict', 'Marshall Bell': 'Webster', 'Trey Wilson': 'Beetroot McKinley', 'David Caruso': 'Al Greco', ""Hugh O'Brian"": 'Granger', 'Tony Jay': 'Werner', 'Nehemiah Persoff': 'Mitchell Traven', 'Maury Chaykin': 'Burt Klane', 'Tom McCleister': 'Bob Klane (as Thom McCleister)', 'David Efron': 'Morris Klane', 'Peter Dvorsky': 'Peter Garfield'}" tt0315733,"{'Sean Penn': 'Paul Rivers', 'Naomi Watts': 'Cristina Peck', 'Danny Huston': 'Michael', 'Carly Nahon': 'Cathy', 'Claire Pakis': 'Laura', 'Benicio Del Toro': 'Jack Jordan', 'Nick Nichols': 'Boy', 'Charlotte Gainsbourg': 'Mary Rivers', 'John Rubinstein': 'Gynecologist', 'Eddie Marsan': 'Reverend John', 'Loyd Keith Salter': 'Fat Man', 'Antef A. Harris': 'Basketball Guy', 'Melissa Leo': 'Marianne Jordan', 'Marc Musso': 'Freddy (as Marc Thomas Musso)', 'Teresa Delgado': 'Gina'}" tt0077975,"{'Tom Hulce': 'Larry Kroger (as Thomas Hulce)', 'Stephen Furst': 'Kent Dorfman', 'Mark Metcalf': 'Doug Neidermeyer', 'Mary Louise Weller': 'Mandy Pepperidge', 'Martha Smith': 'Babs Jansen', 'James Daughton': 'Greg Marmalard', 'Kevin Bacon': 'Chip Diller', 'John Belushi': 'John Blutarsky', 'Douglas Kenney': 'Stork', 'Chris Miller': 'Hardbar (as Christian Miller)', 'Bruce Bonnheim': 'B.B.', 'Karen Allen': 'Katy', 'James Widdoes': 'Robert Hoover', 'Tim Matheson': 'Eric Stratton', 'Peter Riegert': 'Donald Schoenstein'}" tt0120693,"{'Dave Chappelle': 'Thurgood Jenkins / Sir Smoke-a-Lot', 'Guillermo Díaz': 'Scarface', 'Jim Breuer': 'Brian', 'Harland Williams': 'Kenny Davis', 'Rachel True': 'Mary Jane Potman', 'Clarence Williams III': 'Samson Simpson', 'Laura Silverman': 'Jan', 'Tommy Chong': 'Squirrel Master', 'R.D. Reid': 'Scientist', 'Gregg Rogell': 'Pothead', 'Kevin Brennan': 'Pothead', 'Alice Poon': 'Supply Clerk', 'Rick Demas': 'Nasty Nate', 'David Bluestein': 'Jerry Garcia', 'Kevin Duhaney': 'Young Thurgood'}" tt0137363,"{'Jeff Bridges': 'Michael Faraday', 'Tim Robbins': 'Oliver Lang', 'Joan Cusack': 'Cheryl Lang', 'Hope Davis': 'Brooke Wolfe', 'Robert Gossett': 'FBI Agent Whit Carver', 'Mason Gamble': 'Brady Lang', 'Spencer Treat Clark': 'Grant Faraday', 'Stanley Anderson': 'Dr. Archer Scobee', 'Viviane Vives': 'Nurse', 'Lee Stringer': 'Orderly', 'Darryl Cox': 'Troopmaster', 'Loyd Catlett': 'Delivery Man', 'Sid Hillman': 'Phone Technician', 'Auden Thornton': 'Hannah Lang', 'Mary Ashleigh Green': 'Daphne Lang'}" tt0467200,"{'Natalie Portman': 'Anne Boleyn', 'Scarlett Johansson': 'Mary Boleyn', 'Eric Bana': 'Henry Tudor', 'Jim Sturgess': 'George Boleyn', 'Mark Rylance': 'Sir Thomas Boleyn', 'Kristin Scott Thomas': 'Lady Elizabeth Boleyn', 'David Morrissey': 'The Duke of Norfolk', 'Benedict Cumberbatch': 'William Carey', 'Oliver Coleman': 'Henry Percy', 'Ana Torrent': 'Katherine of Aragon', 'Eddie Redmayne': 'William Stafford', 'Tom Cox': 'Rider', 'Michael Smiley': 'Physician', 'Montserrat Roig de Puig': 'Lady in Waiting', 'Juno Temple': 'Jane Parker'}" tt0087182,"{'Francesca Annis': 'Lady Jessica', 'Leonardo Cimino': ""The Baron's Doctor"", 'Brad Dourif': 'Piter De Vries', 'José Ferrer': 'Padishah Emperor Shaddam IV', 'Linda Hunt': 'Shadout Mapes', 'Freddie Jones': 'Thufir Hawat', 'Richard Jordan': 'Duncan Idaho', 'Kyle MacLachlan': 'Paul Atreides', 'Virginia Madsen': 'Princess Irulan', 'Silvana Mangano': 'Reverend Mother Ramallo', 'Everett McGill': 'Stilgar', 'Kenneth McMillan': 'Baron Vladimir Harkonnen', 'Jack Nance': 'Nefud', 'Siân Phillips': 'Reverend Mother Gaius Helen Mohiam (as Sian Phillips)', 'Jürgen Prochnow': 'Duke Leto Atreides'}" tt0100814,"{'Kevin Bacon': 'Valentine McKee', 'Fred Ward': 'Earl Bass', 'Finn Carter': 'Rhonda LeBeck', 'Michael Gross': 'Burt Gummer', 'Reba McEntire': 'Heather Gummer', 'Robert Jayne': 'Melvin Plug (as Bobby Jacoby)', 'Charlotte Stewart': 'Nancy', 'Tony Genaro': 'Miguel', 'Ariana Richards': 'Mindy', 'Richard Marcus': 'Nestor', 'Victor Wong': 'Walter Chang', 'Sunshine Parker': 'Edgar', 'Michael Dan Wagner': 'Old Fred', 'Conrad Bachmann': 'Jim - The Doctor', 'Bibi Besch': ""Megan - The Doctor's Wife""}" tt1452628,"{'Hayden Christensen': 'Luke', 'John Leguizamo': 'Paul', 'Thandie Newton': 'Rosemary', 'Jacob Latimore': 'James', 'Taylor Groothuis': 'Briana', 'Jordan Trovillion': 'Concession Girl (as Jordon Trovillion)', 'Arthur Cartwright': 'Security Guard', 'Neal Huff': 'Chicago Reporter', 'Hugh Maguire': 'Patient', 'Erin Nicole': 'Paige (as Erin Nicole Brolley)', 'Stephen Clark': 'Male TV Anchor', 'Carolyn Clifford-Taylor': 'Female TV Anchor (as Carolyn Clifford-Taylor)', 'Larry Fessenden': 'Bike Messenger', 'Nicholas Yu': 'Chinese Reporter (as Nick Yu)'}" tt1421051,"{'Stephen Dorff': 'Johnny Marco', 'Chris Pontius': 'Sammy', 'Erin Wasson': 'Party Girl #1', 'Alexandra Williams': 'Party Girl #2', 'Nathalie Fay': 'Party Girl #3', 'Kristina Shannon': 'Bambi', 'Karissa Shannon': 'Cindy', 'John Prudhont': 'Chateau Patio Waiter', 'Ruby Corley': 'Patio Girl', 'Angela Lindvall': 'Blonde in Mercedes', 'Maryna Linchuk': 'Vampire Model', 'Meghan Collison': 'Vampire Model', 'Jessica Miller': 'Vampire Model', 'Elle Fanning': 'Cleo', 'Lala Sloatman': 'Layla'}" tt0021814,"{'Bela Lugosi': 'Count Dracula', 'Helen Chandler': 'Mina', 'David Manners': 'John Harker', 'Dwight Frye': 'Renfield', 'Edward Van Sloan': 'Van Helsing', 'Herbert Bunston': 'Doctor Seward', 'Frances Dade': 'Lucy', 'Joan Standing': 'Maid', 'Charles K. Gerrard': 'Martin (as Charles Gerrard)'}" tt0762107,"{'Adam Sandler': 'Chuck Levine', 'Kevin James': 'Larry Valentine', 'Jessica Biel': 'Alex McDonough', 'Dan Aykroyd': 'Captain Tucker', 'Ving Rhames': 'Fred G. Duncan', 'Steve Buscemi': 'Clint Fitzer', 'Nicholas Turturro': 'Renaldo Pinera', 'Allen Covert': 'Steve', 'Rachel Dratch': 'Benefits Supervisor Sara Powers', 'Richard Chamberlain': 'Councilman Banks', 'Nick Swardson': 'Kevin McDonough', 'Blake Clark': 'Crazy Homeless Man', 'Mary Pat Gleason': 'Teresa', 'Matt Winston': 'Glen Aldrich', 'Lance Bass': 'Band Leader'}" tt0414055,"{'Jordi Mollà': 'King Philip ll of Spain (as Jordi Molla)', 'Aimee King': 'Infanta', 'Cate Blanchett': 'Queen Elizabeth I', 'Laurence Fox': 'Sir Christopher Hatton', 'John Shrapnel': 'Lord Howard', 'Geoffrey Rush': 'Sir Francis Walsingham', 'Susan Lynch': 'Annette', 'Elise McCave': 'Laundry Woman', 'Samantha Morton': 'Mary Stuart', 'Abbie Cornish': 'Bess Throckmorton', 'Penelope McGhie': 'Margaret', 'Rhys Ifans': 'Robert Reston', 'Eddie Redmayne': 'Thomas Babington', 'Stuart McLoughlin': 'Savage', 'Clive Owen': 'Sir Walter Raleigh'}" tt0232500,"{'Paul Walker': ""Brian O'Conner"", 'Vin Diesel': 'Dominic Toretto', 'Michelle Rodriguez': 'Letty', 'Jordana Brewster': 'Mia Toretto', 'Rick Yune': 'Johnny Tran', 'Chad Lindberg': 'Jesse', 'Johnny Strong': 'Leon', 'Matt Schulze': 'Vince', 'Ted Levine': 'Sgt. Tanner', 'Ja Rule': 'Edwin', 'Vyto Ruginis': 'Harry', 'Thom Barry': 'Agent Bilkins', 'Stanton Rutledge': 'Muse', 'Noel Gugliemi': 'Hector (as Noel Guglielmi)', 'R.J. de Vera': 'Danny Yamato (as R.J. De Vera)'}" tt0170016,"{'Jim Carrey': 'Grinch', 'Taylor Momsen': 'Cindy Lou Who', 'Kelley': 'Max', 'Jeffrey Tambor': 'Mayor Augustus Maywho', 'Christine Baranski': 'Martha May Whovier', 'Bill Irwin': 'Lou Lou Who', 'Molly Shannon': 'Betty Lou Who', 'Clint Howard': 'Whobris', 'Josh Ryan Evans': '8-Year-Old Grinch', 'Mindy Sterling': 'Clarnella', 'Rachel Winfree': 'Rose', 'Rance Howard': 'Elderly Timekeeper', 'Jeremy Howard': 'Drew Lou Who', 'T.J. Thyne': 'Stu Lou Who', 'Lacey Kohl': 'Christina Whoterberry'}" tt0115624,"{'Amir AboulEla': 'Patron (as Amir Aboulela)', 'Adriana Alexander': 'Redhead', 'David Andriole': 'Goon #2', 'Vanessa Lee Asher': 'Emily', 'Ron Balicki': 'Customs Agent #1', 'Jennifer Banko': 'Spike', 'Candace Kita': 'Dancer (as Candace Camille Bender)', 'Xander Berkeley': 'Alexander Willis', 'Tony Bill': 'Foster', 'Alex Bookston': 'Man in White Suit', 'Gil Borgos': 'Old Man', 'Andre Rosey Brown': 'Big Fatso', 'Mark Collver': 'Manny (as Marc Collver)', 'Tina Cote': 'Woman in Bar #1 (as Tina Coté)', 'Vinnie Curto': 'Aide to Pryzer'}" tt0314331,"{'Bill Nighy': 'Billy Mack', 'Gregor Fisher': 'Joe', 'Rory MacGregor': 'Engineer', 'Colin Firth': 'Jamie', 'Sienna Guillory': ""Jamie's Girlfriend"", 'Liam Neeson': 'Daniel', 'Emma Thompson': 'Karen', 'Lulu Popplewell': 'Daisy - Her Daughter', 'Kris Marshall': 'Colin Frissell', 'Heike Makatsch': 'Mia', 'Martin Freeman': 'John', 'Joanna Page': 'Just Judy', 'Chiwetel Ejiofor': 'Peter', 'Andrew Lincoln': 'Mark', 'Keira Knightley': 'Juliet'}" tt0859163,"{'Brendan Fraser': ""Rick O'Connell"", 'Jet Li': 'Emperor', 'Maria Bello': ""Evelyn O'Connell"", 'John Hannah': 'Jonathan Carnahan', 'Michelle Yeoh': 'Zi Yuan', 'Luke Ford': ""Alex O'Connell"", 'Isabella Leong': 'Lin', 'Anthony Chau-Sang Wong': 'General Yang (as Chau Sang Anthony Wong)', 'Russell Wong': 'Ming Guo', 'Liam Cunningham': 'Maguire', 'David Calder': 'Roger Wilson', 'Jessey Meng': 'Choi', 'Tian Liang': 'Li Zhou', 'Albert Kwan': 'Chu Wah', 'Jing Wu': 'Assassin'}" tt0181865,"{'Benicio Del Toro': 'Javier Rodriguez', 'Jacob Vargas': 'Manolo Sanchez', 'Andrew Chavez': 'Desert Truck Driver', 'Michael Saucedo': 'Desert Truck Driver', 'Tomas Milian': 'General Arturo Salazar', 'Jose Yenque': 'Salazar Soldier / The Torturer', 'Emilio Rivera': 'Salazar Soldier #2', ""Michael O'Neill"": 'Lawyer Rodman', 'Michael Douglas': 'Robert Wakefield', 'Russell G. Jones': 'Clerk', 'Lorene Hetherington': 'State Capitol Reporter #1', 'Eric Collins': 'State Capitol Reporter #2', 'Beau Holden': 'DEA Agent - CalTrans', 'Peter Stader': 'DEA Agent - CalTrans', 'James Lew': 'DEA Agent - CalTrans'}" tt1357005,"{'Tyler Porter': 'Doug', 'Michael Floodstrand': 'Luke', 'Catherine Glynn': 'Karen', 'Blythe Gilio': 'Megan', 'Julie DiJohn': 'Lamaze Partner', 'Hope Triplett': 'Lamaze partner extra'}" tt0098554,"{'John Candy': 'Buck Russell', 'Jean Louisa Kelly': 'Tia Russell', 'Gaby Hoffmann': 'Maizy Russell (as Gaby Hoffman)', 'Macaulay Culkin': 'Miles Russell', 'Amy Madigan': 'Chanice Kobolowski', 'Elaine Bromka': 'Cindy Russell', 'Garrett M. Brown': 'Bob Russell', 'Laurie Metcalf': 'Marcie Dahlgren-Frost', 'Jay Underwood': 'Bug', 'Brian Tarantina': 'E. Roger Coswell', 'Mike Starr': 'Pooter-the-Clown', 'Suzanne Shepherd': 'Mrs. Hogarth', 'William Windom': 'Mr. Hatfield (voice)', 'Dennis Cockrum': 'Pal', 'Joel Robinson': ""Miles' Friend #1""}" tt0477080,"{'Denzel Washington': 'Frank', 'Chris Pine': 'Will', 'Rosario Dawson': 'Connie', 'Ethan Suplee': 'Dewey', 'Kevin Dunn': 'Galvin', 'Kevin Corrigan': 'Inspector Werner', 'Kevin Chapman': 'Bunny', 'Lew Temple': 'Ned', 'T.J. Miller': 'Gilleece', 'Jessy Schram': 'Darcy', 'David Warshofsky': 'Judd Stewart', 'Andy Umberger': 'Janeway', 'Elizabeth Mathis': 'Nicole', 'Meagan Tandy': 'Maya', 'Dylan Bruce': 'Michael Colson (as Dylan L. Bruce)'}" tt0388795,"{'Heath Ledger': 'Ennis Del Mar', 'Jake Gyllenhaal': 'Jack Twist', 'Randy Quaid': 'Joe Aguirre', 'Valerie Planche': 'Waitress', 'Dave Trimble': 'Basque (as David Trimble)', 'Victor Reyes': 'Chilean Sheepherder #1', 'Lachlan Mackintosh': 'Chilean Sheepherder #2', 'Michelle Williams': 'Alma', 'Larry Reese': 'Jolly Minister', 'Marty Antonini': 'Timmy', 'Tom Carey': 'Rodeo Clown', 'Dan McDougall': 'Bartender #1', 'Don Bland': 'Biker #1', 'Steven Cree Molison': 'Biker #2', 'Anne Hathaway': 'Lureen Newsome'}" tt0268978,"{'Russell Crowe': 'John Nash', 'Ed Harris': 'Parcher', 'Jennifer Connelly': 'Alicia Nash', 'Christopher Plummer': 'Dr. Rosen', 'Paul Bettany': 'Charles', 'Adam Goldberg': 'Sol', 'Josh Lucas': 'Hansen', 'Anthony Rapp': 'Bender', 'Jason Gray-Stanford': 'Ainsley', 'Judd Hirsch': 'Helinger', 'Austin Pendleton': 'Thomas King', 'Vivien Cardone': 'Marcee', 'Jillie Simon': 'Bar Co-Ed (as Jill M. Simon)', 'Victor Steinbach': 'Professor Horner', 'Tanya Clarke': 'Becky'}" tt0089155,"{'Chevy Chase': ""Irwin 'Fletch' Fletcher"", 'Joe Don Baker': 'Chief Jerry Karlin', 'Dana Wheeler-Nicholson': 'Gail Stanwyk', 'Richard Libertini': 'Frank Walker', 'Tim Matheson': 'Alan Stanwyk', 'M. Emmet Walsh': 'Dr. Joseph Dolan', 'George Wendt': 'Fat Sam', 'Kenneth Mars': 'Stanton Boyd', 'Geena Davis': 'Larry', 'Bill Henderson': 'Speaker', 'William Traylor': 'Ted Underhill', 'George Wyner': 'Marvin Gillet', 'Tony Longo': 'Detective #1', 'Larry Flash Jenkins': 'Gummy', 'Ralph Seymour': 'Creasy'}" tt0070735,"{'Paul Newman': 'Henry Gondorff', 'Robert Redford': 'Johnny Hooker', 'Robert Shaw': 'Doyle Lonnegan', 'Charles Durning': 'Lt. Wm. Snyder', 'Ray Walston': 'J.J. Singleton', 'Eileen Brennan': 'Billie', 'Harold Gould': 'Kid Twist', 'John Heffernan': 'Eddie Niles', 'Dana Elcar': 'F.B.I. Agent Polk', 'Jack Kehoe': 'Erie Kid', 'Dimitra Arliss': 'Loretta', 'Robert Earl Jones': 'Luther Coleman (as Robertearl Jones)', 'James Sloyan': 'Mottola (as James J. Sloyan)', 'Charles Dierkop': 'Floyd (Bodyguard)', 'Lee Paul': 'Bodyguard'}" tt1232824,"{'Jeremy Sisto': 'Father John Buerlein', 'Kristin Chenoweth': 'Linda Salerno', 'Brian Baumgartner': ""Fr. Ralph O'Brien"", 'Bruce A. Young': 'Lloyd Montag', 'Amy Matthews': 'Nadine Brennan', 'Tony Papenfuss': 'Zeke', 'Greta Oglesby': 'Miriam', 'Ansa Akyea': 'James St. Clair', ""Isabell O'Connor"": ""Tessie Thomas (as Isabell Monk O'Connor)"", 'Patrick Coyle': 'Steven Miller', 'Linda Kelsey': 'Corrine Buerlein', 'Lolita Lesheim': 'Della (as Lola Lesheim)', 'Gene Larche': 'Gus', 'Marion Markham': 'Diane', 'Ann Milligan': 'Judy'}" tt0099365,"{'Liam Neeson': 'Peyton Westlake / Darkman', 'Frances McDormand': 'Julie Hastings', 'Colin Friels': 'Louis Strack Jr.', 'Larry Drake': 'Robert G. Durant', 'Nelson Mashita': 'Yakitito', 'Jessie Lawrence Ferguson': 'Eddie Black', 'Rafael H. Robledo': 'Rudy Guzman', 'Dan Hicks': 'Skip (as Danny Hicks)', 'Ted Raimi': 'Rick (as Theodore Raimi)', 'Dan Bell': 'Smiley', 'Nicholas Worth': 'Pauly', 'Aaron Lustig': 'Martin Katz', ""Arsenio 'Sonny' Trinidad"": 'Hung Fat', 'Said Faraj': 'Convenience Store Clerk', 'Nathan Jung': 'Chinese Warrior'}" tt0277296,"{'Dwayne Johnson': 'Mathayus (as The Rock)', 'Steven Brand': 'Memnon', 'Michael Clarke Duncan': 'Balthazar', 'Kelly Hu': 'The Sorceress', 'Bernard Hill': 'Philos', 'Grant Heslov': 'Arpid', 'Peter Facinelli': 'Takmet', 'Ralf Moeller': 'Thorak', 'Branscombe Richmond': 'Jesup', 'Roger Rees': 'King Pheron', 'Sherri Howard': 'Queen Isis', 'Conrad Roberts': 'Chieftain', 'Joseph Ruskin': 'Tribal Leader', 'Esteban Cueto': 'Third Akkadian', 'Nils Allen Stewart': 'Torturer'}" tt0120780,"{'George Clooney': 'Jack Foley', 'Jennifer Lopez': 'Karen Sisco', 'Jim Robinson': 'Bank Employee', 'Mike Malone': 'Bank Customer (as Elgin Marlowe)', 'Ving Rhames': 'Buddy Bragg', 'Don Cheadle': 'Maurice Miller', 'Donna Frenzel': 'Bank Teller', 'Catherine Keener': 'Adele', 'Manny Suárez': 'Bank Cop (as Manny Suarez)', 'Dennis Farina': 'Marshall Sisco', 'Keith Hudson': 'Bank Cop', 'Steve Zahn': 'Glenn Michaels', 'Albert Brooks': 'Richard Ripley', 'Luis Guzmán': 'Chino (as Luis Guzman)', 'Paul Soileau': 'Lulu'}" tt0088847,"{'Emilio Estevez': 'Andrew Clark', 'Paul Gleason': 'Richard Vernon', 'Anthony Michael Hall': 'Brian Johnson', 'John Kapelos': 'Carl', 'Judd Nelson': 'John Bender', 'Molly Ringwald': 'Claire Standish', 'Ally Sheedy': 'Allison Reynolds', 'Perry Crawford': ""Allison's Father"", 'Mary Christian': ""Brian's Sister"", 'Ron Dean': ""Andy's Father"", 'Tim Gamble': ""Claire's Father"", 'Fran Gargano': ""Allison's Mom"", 'Mercedes Hall': ""Brian's Mom""}" tt0338526,"{'Hugh Jackman': 'Van Helsing', 'Kate Beckinsale': 'Anna Valerious', 'Richard Roxburgh': 'Count Vladislaus Dracula', 'David Wenham': 'Carl', 'Shuler Hensley': ""Frankenstein's Monster"", 'Elena Anaya': 'Aleera', 'Will Kemp': 'Velkan', ""Kevin J. O'Connor"": 'Igor', 'Alun Armstrong': 'Cardinal Jinette', 'Silvia Colloca': 'Verona', 'Josie Maran': 'Marishka', 'Tom Fisher': 'Top Hat', 'Samuel West': 'Dr. Victor Frankenstein', 'Robbie Coltrane': 'Mr. Hyde', 'Stephen Fisher': 'Dr. Jekyll (as Stephen H. Fisher)'}" tt0083929,"{'Sean Penn': 'Jeff Spicoli', 'Jennifer Jason Leigh': 'Stacy Hamilton', 'Judge Reinhold': 'Brad Hamilton', 'Robert Romanus': 'Mike Damone', 'Brian Backer': ""Mark 'Rat' Ratner"", 'Phoebe Cates': 'Linda Barrett', 'Ray Walston': 'Mr. Hand', 'Scott Thomson': 'Arnold', 'Vincent Schiavelli': 'Mr. Vargas', 'Amanda Wyss': 'Lisa', 'D.W. Brown': 'Ron Johnson', 'Forest Whitaker': 'Charles Jefferson', 'Kelli Maroney': 'Cindy', 'Tom Nolan': 'Dennis Taylor', 'Blair Tefkin': 'Pat Bernardo (as Blair Ashleigh)'}" tt0452594,"{'Vince Vaughn': 'Gary Grobowski', 'Jennifer Aniston': 'Brooke Meyers', 'Joey Lauren Adams': 'Addie', 'Cole Hauser': 'Lupus Grobowski', 'Jon Favreau': 'Johnny O', 'Jason Bateman': 'Riggleman', 'Judy Davis': 'Marilyn Dean', 'Justin Long': 'Christopher', 'Ivan Sergei': 'Carson Wigham', 'John Michael Higgins': 'Richard Meyers', 'Ann-Margret': 'Wendy Meyers', 'Vernon Vaughn': 'Howard Meyers', ""Vincent D'Onofrio"": 'Dennis Grobowski', 'Elaine Robinson': 'Carol Grobowski', 'Jane Alderman': 'Mrs. Grobowski'}" tt0106677,"{'Jason London': 'Pink', 'Joey Lauren Adams': 'Simone', 'Milla Jovovich': 'Michelle', 'Shawn Andrews': 'Pickford', 'Rory Cochrane': 'Slater', 'Adam Goldberg': 'Mike', 'Anthony Rapp': 'Tony', 'Sasha Jenson': 'Don', 'Marissa Ribisi': 'Cynthia', 'Deena Martin': 'Shavonne', 'Michelle Burke': 'Jodi', 'Cole Hauser': 'Benny', 'Christine Harnos': 'Kaye', 'Wiley Wiggins': 'Mitch', 'Mark Vandermeulen': 'Tommy'}" tt1201167,"{'Adam Sandler': 'George Simmons', 'Seth Rogen': 'Ira Wright', 'Leslie Mann': 'Laura', 'Eric Bana': 'Clarke', 'Jonah Hill': 'Leo Koenig', 'Jason Schwartzman': 'Mark Taylor Jackson', 'Aubrey Plaza': 'Daisy Danby', 'Maude Apatow': 'Mable', 'Iris Apatow': 'Ingrid', 'RZA': 'Chuck', 'Aziz Ansari': 'Randy', 'Torsten Voges': 'Dr. Lars', 'Allan Wasserman': 'Dr. Stevens', 'Rod Man': 'Rod Man', 'Wayne Federman': 'Comedy & Magic Manager'}" tt1152836,"{'Christian Bale': 'Melvin Purvis', 'Christian Stolte': 'Charles Makley', 'Jason Clarke': ""'Red' Hamilton"", 'Johnny Depp': 'John Dillinger', 'Stephen Graham': 'Baby Face Nelson', 'David Wenham': ""Harry 'Pete' Pierpont"", 'John Judd': 'Turnkey', 'Stephen Dorff': 'Homer Van Meter', 'Michael Vieau': 'Ed Shouse', 'John Kishline': 'Guard Dainard', 'Carey Mulligan': 'Carol Slayman', 'James Russo': 'Walter Dietrich', 'Giovanni Ribisi': 'Alvin Karpis', 'Wesley Walker': 'Jim Leslie', 'John Scherp': 'Earl Adams'}" tt0463034,"{'Owen Wilson': 'Dupree', 'Kate Hudson': 'Molly', 'Matt Dillon': 'Carl', 'Michael Douglas': 'Mr. Thompson', 'Seth Rogen': 'Neil', 'Amanda Detmer': 'Annie', 'Ralph Ting': 'Toshi', 'Todd Stashwick': 'Tony', 'Bill Hader': 'Mark', 'Lance Armstrong': 'Himself', 'Jason Winer': 'Eddie', 'Sidney S. Liufau': 'Paco (as Sidney Liufau)', 'Billy Gardell': 'Bartender Dave', 'Eli Vargas': 'Aaron', 'Houston Mack': 'Dougie (as Houston McCrillis)'}" tt0087597,"{'Kay E. Kuter': 'Enduran', 'Dan Mason': 'Lord Kril', 'Lance Guest': 'Alex Rogan / Beta Alex', ""Dan O'Herlihy"": 'Grig', 'Catherine Mary Stewart': 'Maggie Gordon', 'Barbara Bosson': 'Jane Rogan', 'Norman Snow': 'Xur', 'Robert Preston': 'Centauri', 'Chris Hebert': 'Louis Rogan', ""John O'Leary"": 'Rylan Bursar', 'George McDaniel': 'Kodan Officer', 'Charlene Nelson': 'Rylan Technician', 'John Maio': 'Friendly Alien', 'Robert Starr': 'Underling', 'Al Berry': 'Rylan Spy'}" tt0475394,"{'Ryan Reynolds': 'Richard Messner', 'Ray Liotta': 'Donald Carruthers', 'Joseph Ruskin': 'Primo Sparazza', 'Alex Rocco': 'Serna', 'Wayne Newton': 'Wayne Newton', 'Jeremy Piven': 'Buddy Israel', 'Ben Affleck': 'Jack Dupree', 'Peter Berg': '""Pistol"" Pete Deeks', 'Martin Henderson': 'Hollis Elmore', 'Common': 'Sir Ivy', 'Christopher Michael Holley': 'Beanie (as Christopher Holley)', 'Andy Garcia': 'Stanley Locke', 'Mike Falkow': 'Freeman Heller', 'Joe Drago': 'FBI Aid', 'Jeff Habberstad': 'Top Coated Gunman'}" tt1082601,"{'Channing Tatum': 'Shawn MacArthur', 'Terrence Howard': 'Harvey Boarden', 'Zulay Henao': 'Zulay Velez', 'Michael Rivera': 'Ajax', 'Flaco Navaja': 'Ray Ray', 'Peter Anthony Tambakis': 'Z (as Peter Tambakis)', 'Luis Guzmán': 'Martinez', 'Anthony DeSando': 'Christopher Anthony', 'Roger Guenveur Smith': 'Jack Dancing', 'Brian White': 'Evan Hailey', 'Ivan Martin': 'Stockbroker Jerry', 'Danny Mastrogiorgio': 'Trader Jim', 'Altagracia Guzman': 'Alba Guzmán', 'Gabrielle Pelucco': 'Lila', 'Angelic Zambrana': ""Kimo's Girl""}" tt0384793,"{'Justin Long': 'Bartleby Gaines', 'Jonah Hill': 'Sherman Schrader', 'Adam Herschman': 'Glen', 'Columbus Short': ""Daryl 'Hands' Holloway"", 'Maria Thayer': 'Rory Thayer', 'Lewis Black': 'Ben Lewis', 'Blake Lively': 'Monica Moreland', 'Mark Derwin': 'Jack Gaines', 'Ann Cusack': 'Diane Gaines', 'Hannah Marks': 'Lizzie Gaines', 'Robin Lord Taylor': 'Abernathy Darwin Dunlap', 'Sam Horrigan': 'Mike Welsh', 'Joe Hursley': 'Maurice / The Ringers', 'Jeremy Howard': 'Freaky Student', 'Anthony Heald': 'Dean Richard Van Horne'}" tt0290002,"{'Robert De Niro': 'Jack Byrnes', 'Ben Stiller': 'Greg Focker', 'Dustin Hoffman': 'Bernie Focker', 'Barbra Streisand': 'Rozalin Focker', 'Blythe Danner': 'Dina Byrnes', 'Teri Polo': 'Pam Byrnes', 'Owen Wilson': 'Kevin Rawley', 'Spencer Pickren': 'Little Jack', 'Bradley Pickren': 'Little Jack', 'Alanna Ubach': 'Isabel Villalobos', 'Ray Santiago': 'Jorge Villalobos', 'Tim Blake Nelson': 'Officer LeFlore', 'Shelley Berman': 'Judge Ira', 'Kali Rocha': 'Flight Attendant', 'Dorie Barton': 'Airline Clerk'}" tt0056923,"{'Cary Grant': 'Peter Joshua', 'Audrey Hepburn': 'Regina Lampert', 'Walter Matthau': 'Hamilton Bartholomew', 'James Coburn': 'Tex Panthollow', 'George Kennedy': 'Herman Scobie', 'Dominique Minot': 'Sylvie Gaudet', 'Ned Glass': 'Leopold W. Gideon', 'Jacques Marin': 'Insp. Edouard Grandpierre', 'Paul Bonifas': 'Mr. Felix', 'Thomas Chelimsky': 'Jean-Louis Gaudet'}" tt0405422,"{'Steve Carell': 'Andy', 'Catherine Keener': 'Trish', 'Paul Rudd': 'David', 'Romany Malco': 'Jay', 'Seth Rogen': 'Cal', 'Elizabeth Banks': 'Beth', 'Leslie Mann': 'Nicky', 'Jane Lynch': 'Paula', 'Gerry Bednob': 'Mooj', 'Shelley Malil': 'Haziz', 'Kat Dennings': 'Marla', 'Jordan Masterson': 'Mark', 'Chelsea Smith': 'Julia', 'Jonah Hill': 'E-Bay Customer', 'Erica Vittina Phillips': 'Jill'}" tt0118715,"{'Jeff Bridges': 'The Dude', 'John Goodman': 'Walter Sobchak', 'Julianne Moore': 'Maude Lebowski', 'Steve Buscemi': ""Theodore Donald 'Donny' Kerabatsos"", 'David Huddleston': 'The Big Lebowski', 'Philip Seymour Hoffman': 'Brandt', 'Tara Reid': 'Bunny Lebowski', 'Philip Moon': 'Woo, Treehorn Thug', 'Mark Pellegrino': 'Blond Treehorn Thug', 'Peter Stormare': ""Nihilist #1, Uli Kunkel / 'Karl Hungus'"", 'Flea': 'Nihilist #2, Kieffer', 'Torsten Voges': 'Nihilist #3, Franz', 'Jimmie Dale Gilmore': 'Smokey', 'Jack Kehler': 'Marty', 'John Turturro': 'Jesus Quintana'}" tt0082010,"{'Joe Belcher': 'Truck Driver', 'David Naughton': 'David Kessler', 'Griffin Dunne': 'Jack Goodman', 'David Schofield': 'Dart Player', 'Brian Glover': 'Chess Player', 'Lila Kaye': 'Barmaid', 'Rik Mayall': '2nd Chess Player', 'Sean Baker': '2nd Dart Player', 'Paddy Ryan': 'First Werewolf', 'Jenny Agutter': 'Nurse Alex Price', 'Anne-Marie Davies': 'Nurse Susan Gallagher', 'John Woodvine': 'Dr. J. S. Hirsch', 'Frank Oz': 'Mr. Collins / Miss Piggy', 'Don McKillop': 'Inspector Villiers', 'Paul Kember': 'Sergeant McManus'}" tt1127896,"{'Henry Goodman': 'Jake Teichberg', 'Edward Hibbert': 'British Gentleman', 'Imelda Staunton': 'Sonia Teichberg', 'Demetri Martin': 'Elliot Teichberg', 'Kevin Chamberlin': 'Jackson Spiers', 'Lee Wong': 'George the Doorman (as Takeo Lee Wong)', 'Anthoula Katsimatides': 'Esther', 'Clark Middleton': 'Frank', 'Bette Henritze': 'Annie', 'Sondra James': 'Margaret', 'Jeffrey Dean Morgan': 'Dan', 'Christina Kirk': 'Carol', 'Gail Martino': 'Town Clerk', 'Emile Hirsch': 'Billy', 'Adam LeFevre': 'Dave'}" tt0871426,"{'Amy Poehler': 'Angie', 'Tina Fey': 'Kate', 'Greg Kinnear': 'Rob', 'Dax Shepard': 'Carl', 'Romany Malco': 'Oscar', 'Sigourney Weaver': 'Chaffee Bicknell', 'Steve Martin': 'Barry', 'Maura Tierney': 'Caroline', 'Stephen Mailer': 'Dan', 'Holland Taylor': 'Rose', 'James Rebhorn': 'Judge', ""Denis O'Hare"": 'Dr. Manheim', 'Kevin Collins': 'Architect / Rick', 'Will Forte': 'Scott', 'Fred Armisen': 'Stroller Salesman'}" tt0105323,"{'Al Pacino': 'Lt. Col. Frank Slade', ""Chris O'Donnell"": 'Charlie Simms', 'James Rebhorn': 'Mr. Trask', 'Gabrielle Anwar': 'Donna', 'Philip Seymour Hoffman': 'George Willis, Jr. (as Philip S. Hoffman)', 'Richard Venture': 'W.R. Slade', 'Bradley Whitford': 'Randy', 'Rochelle Oliver': 'Gretchen', 'Margaret Eginton': 'Gail', 'Tom Riis Farrell': 'Garry', 'Nicholas Sadler': 'Harry Havemeyer', 'Todd Louiso': 'Trent Potter', 'Matt Smith': 'Jimmy Jameson', 'Gene Canfield': 'Manny', 'Frances Conroy': 'Christine Downes'}" tt0086250,"{'Al Pacino': 'Tony Montana', 'Steven Bauer': 'Manny Ribera', 'Michelle Pfeiffer': 'Elvira', 'Mary Elizabeth Mastrantonio': 'Gina', 'Robert Loggia': 'Frank Lopez', 'Miriam Colon': 'Mama Montana', 'F. Murray Abraham': 'Omar', 'Paul Shenar': 'Alejandro Sosa', 'Harris Yulin': 'Bernstein', 'Ángel Salazar': 'Chi Chi', 'Arnaldo Santana': 'Ernie', 'Pepe Serna': 'Angel', 'Michael P. Moran': 'Nick The Pig', 'Al Israel': 'Hector The Toad', 'Dennis Holahan': 'Banker'}" tt0091225,"{'Lea Thompson': 'Beverly Switzler', 'Jeffrey Jones': 'Dr. Walter Jenning', 'Tim Robbins': 'Phil Blumburtt', 'Ed Gale': 'Howard T. Duck', 'Chip Zien': 'Howard T. Duck (voice)', 'Tim Rose': 'Howard T. Duck', 'Steve Sleap': 'Howard T. Duck', 'Peter Baird': 'Howard T. Duck', 'Mary Wells': 'Howard T. Duck', 'Lisa Sturz': 'Howard T. Duck', 'Jordan Prentice': 'Howard T. Duck', 'Paul Guilfoyle': 'Lieutenant Welker', 'Liz Sagal': 'Ronette, Cherry Bomb', 'Dominique Davalos': 'Cal, Cherry Bomb', 'Holly Robinson Peete': 'K.C., Cherry Bomb (as Holly Robinson)'}" tt0095489,"{'Judith Barsi': 'Ducky (voice)', 'Pat Hingle': 'Narrator / Rooter (voice)', 'Gabriel Damon': 'Littlefoot (voice)', 'Helen Shaver': ""Littlefoot's Mother (voice)"", 'Bill Erwin': 'Grandfather (voice)', 'Burke Byrnes': 'Daddy Topps (voice)', 'Candace Hutson': 'Cera (voice) (as Candy Hutson)', 'Will Ryan': 'Petrie (voice)'}" tt0046876,"{'Richard Carlson': 'David Reed', 'Julie Adams': 'Kay Lawrence (as Julia Adams)', 'Richard Denning': 'Mark Williams', 'Antonio Moreno': 'Carl Maia', 'Nestor Paiva': 'Lucas', 'Whit Bissell': 'Dr. Thompson', 'Bernie Gozier': 'Zee', 'Henry A. Escalante': 'Chico (as Henry Escalante)'}" tt0076729,"{'Burt Reynolds': 'Bandit', 'Sally Field': 'Carrie', 'Jerry Reed': 'Cledus', 'Mike Henry': 'Junior', 'Paul Williams': 'Little Enos', 'Pat McCormick': 'Big Enos', 'Alfie Wise': 'Patrolman at Traffic Jam', 'George Reynolds': 'Branford', 'Macon McCalman': 'Mr. B', 'Linda McClure': 'Waynette', 'Susie Ewing': 'Hot Pants (as Susan McIver)', 'Laura Lizer Sommers': 'Little Beaver (as Laura Lizer)', 'Michael Mann': ""Branford's Deputy"", 'Lamar Jackson': 'Sugar Bear', 'Ronnie Gay': 'Georgia Trooper'}" tt0870111,"{'Frank Langella': 'Richard Nixon', 'Michael Sheen': 'David Frost', 'Sam Rockwell': 'James Reston, Jr.', 'Kevin Bacon': 'Jack Brennan', 'Matthew Macfadyen': 'John Birt', 'Oliver Platt': 'Bob Zelnick', 'Rebecca Hall': 'Caroline Cushing', 'Toby Jones': 'Swifty Lazar', 'Andy Milder': 'Frank Gannon', 'Kate Jennings Grant': 'Diane Sawyer', 'Gabriel Jarret': 'Ken Khachigian', 'Jim Meskimen': 'Ray Price', 'Patty McCormack': 'Pat Nixon', 'Geoffrey Blake': 'Interview Director', 'Clint Howard': 'Lloyd Davis'}" tt0478311,"{'Seth Rogen': 'Ben Stone', 'Katherine Heigl': 'Alison Scott', 'Paul Rudd': 'Pete', 'Leslie Mann': 'Debbie', 'Jason Segel': 'Jason', 'Jay Baruchel': 'Jay', 'Jonah Hill': 'Jonah', 'Martin Starr': 'Martin', 'Charlyne Yi': 'Jodi', 'Iris Apatow': 'Charlotte', 'Maude Apatow': 'Sadie', 'Joanna Kerns': ""Alison's Mom"", 'Harold Ramis': ""Ben's Dad"", 'Alan Tudyk': 'Jack', 'Kristen Wiig': 'Jill'}" tt1532503,"{'Ewan McGregor': 'Oliver', 'Christopher Plummer': 'Hal', 'Mélanie Laurent': 'Anna', 'Goran Visnjic': 'Andy', 'Kai Lennox': 'Elliot', 'Mary Page Keller': 'Georgia', 'Keegan Boos': 'Young Oliver', 'China Shavers': 'Shauna', 'Melissa Tang': 'Liz', 'Amanda Payton': 'Party Person', 'Luke Diliberto': 'Green Witch', 'Lou Taylor Pucci': 'Magician', 'Bambadjan Bamba': 'The Sads', 'Hana Jane': 'The Sads (as Hana Hwang)', 'Samuel T. Ritter': 'The Sads'}" tt0412019,"{'Bill Murray': 'Don Johnston', 'Julie Delpy': 'Sherry', 'Heather Simms': 'Mona (as Heather Alicia Simms)', 'Brea Frazier': 'Rita', 'Jarry Fall': ""Winston and Mona's Kid (as Jarry)"", 'Korka Fall': ""Winston and Mona's Kid"", 'Saul Holland': ""Winston and Mona's Kid (as Saul)"", 'Zakira Holland': ""Winston and Mona's Kid"", 'Niles Lee Wilson': ""Winston and Mona's Kid"", 'Jeffrey Wright': 'Winston', 'Meredith Patterson': 'Flight Attendant', 'Jennifer Rapp': 'Girl on Bus', 'Nicole Abisinio': 'Girl on Bus', 'Ryan Donowho': 'Young Man on Bus', 'Alexis Dziena': 'Lolita'}" tt0253474,"{'Adrien Brody': 'Wladyslaw Szpilman', 'Emilia Fox': 'Dorota', 'Michal Zebrowski': 'Jurek', 'Ed Stoppard': 'Henryk', 'Maureen Lipman': 'Mother', 'Frank Finlay': 'Father', 'Jessica Kate Meyer': 'Halina', 'Julia Rayner': 'Regina', 'Wanja Mues': 'SS Slapping Father', 'Richard Ridings': 'Mr. Lipa', 'Nomi Sharron': 'Feather Woman', 'Anthony Milner': 'Man Waiting to Cross', 'Lucy Skeaping': 'Street Musician (as Lucie Skeaping)', 'Roddy Skeaping': 'Street Musician', 'Ben Harlan': 'Street Musician'}" tt0340855,"{'Charlize Theron': 'Aileen', 'Christina Ricci': 'Selby', 'Bruce Dern': 'Thomas', 'Lee Tergesen': 'Vincent Corey', 'Annie Corley': 'Donna', 'Pruitt Taylor Vince': 'Gene / Stuttering ""John""', 'Marco St. John': 'Evan / Undercover ""John""', 'Marc Macaulay': 'Will / Daddy ""John""', 'Scott Wilson': 'Horton / Last ""John""', 'Rus Blackwell': 'Cop', 'Tim Ware': 'Chuck', 'Stephan Jones': 'Lawyer', 'Brett Rice': 'Charles', 'Kaitlin Riley': 'Teenage Aileen', 'Cree Ivey': '7-Year-Old Aileen'}" tt1226229,"{'Russell Brand': 'Aldous Snow', 'Rose Byrne': 'Jackie Q', 'Tyler McKinney': 'African Child in Video', 'Zoe Salmon': 'Zoe Salmon', 'Lino Facioli': 'Naples', 'Lars Ulrich': 'Lars Ulrich', 'Mario Lopez': 'Mario Lopez (as Mario López)', 'Pink': 'Pink', 'Billy Bush': 'Billy Bush', 'Kurt Loder': 'Kurt Loder (as Kurt F. Loder)', 'Christina Aguilera': 'Christina Aguilera', 'Colm Meaney': 'Jonathan Snow', 'Ray Siegle': 'Paparazzo in LA', 'Chad Cleven': 'Paparazzo in LA', 'Jonathan Chris Lopez': 'Paparazzo in LA'}" tt0097351,"{'Kevin Costner': 'Ray Kinsella', 'Amy Madigan': 'Annie Kinsella', 'Gaby Hoffmann': 'Karin Kinsella', 'Ray Liotta': 'Shoeless Joe Jackson', 'Timothy Busfield': 'Mark', 'James Earl Jones': 'Terence Mann', 'Burt Lancaster': ""Dr. Archibald 'Moonlight' Graham"", 'Frank Whaley': 'Archie Graham', 'Dwier Brown': 'John Kinsella', 'James Andelin': 'Feed Store Farmer', 'Mary Anne Kean': 'Feed Store Lady', 'Fern Persons': ""Annie's Mother"", 'Kelly Coffield Park': ""Dee, Mark's Wife (as Kelly Coffield)"", 'Michael Milhoan': 'Buck Weaver - 3B', 'Steve Eastin': 'Eddie Cicotte - P'}" tt0100301,"{'Dana Carvey': 'Eddie', 'Robert Loggia': 'Milt', 'Todd Graff': 'Lou', 'Julia Campbell': 'Annie', ""Milo O'Shea"": 'Max', 'James Tolkan': 'Sal', 'Doris Belack': 'Mona', 'Sally Gracie': 'Connie', 'Mike Bacarella': 'Pinkie', 'John M. Watson Sr.': 'Harold Monroe', 'Beatrice Fredman': 'Bubbie', 'Thomas McElroy': ""Men's Room Attendant"", 'Jack McLaughlin-Gray': 'Wine Steward', 'Gene Honda': 'Japanese Businessman', 'Del Close': 'Williamson'}" tt0800039,"{'Jason Segel': 'Peter Bretter', 'Kristen Bell': 'Sarah Marshall', 'Mila Kunis': 'Rachel Jansen', 'Russell Brand': 'Aldous Snow', 'Bill Hader': 'Brian Bretter', 'Liz Cackowski': 'Liz Bretter', 'Maria Thayer': 'Wyoma', 'Jack McBrayer': 'Darald', 'Taylor Wily': 'Kemo', ""Da'Vone McDonald"": 'Dwayne the Bartender', 'Steve Landesberg': 'Dr. Rosenbaum', 'Jonah Hill': 'Matthew the Waiter', 'Paul Rudd': 'Chuck', 'Kala Alexander': 'Greg', 'Kalani Robb': 'Helpful Hawaiian Waiter'}" tt0195685,"{'Julia Roberts': 'Erin Brockovich', 'David Brisbin': 'Dr. Jaffe', 'Dawn Didawick': 'Rosalind', 'Albert Finney': 'Ed Masry', 'Valente Rodriguez': 'Donald', 'Conchata Ferrell': 'Brenda', 'George Rocky Sullivan': 'Los Angeles Judge', 'Pat Skipper': 'Defending Lawyer', 'Jack Gill': 'Defendant', 'Irene Olga López': 'Mrs. Morales', 'Emily Marks': 'Beth (8 months)', 'Julie Marks': 'Beth (8 months)', 'Scotty Leavenworth': 'Matthew', 'Gemmenne de la Peña': 'Katie (as Gemmenne De la Peña)', 'Erin Brockovich-Ellis': 'Waitress'}" tt0113749,"{'Shannen Doherty': 'Rene', 'Jeremy London': 'TS Quint', 'Jason Lee': 'Brodie', 'Claire Forlani': 'Brandi', 'Ben Affleck': 'Shannon', 'Joey Lauren Adams': 'Gwen', 'Renée Humphrey': 'Tricia (as Renee Humphrey)', 'Jason Mewes': 'Jay', 'Ethan Suplee': 'Willam', 'Stan Lee': 'Stan Lee', 'Priscilla Barnes': 'Ivannah', 'Michael Rooker': 'Svenning', 'Carol Banker': 'Security Guard', 'Steven Blackwell': 'Arresting Cop #2', 'Kyle Boe': 'Pull Toy Kid'}" tt0338013,"{'Jim Carrey': 'Joel Barish', 'Kate Winslet': 'Clementine Kruczynski', 'Gerry Robert Byrne': 'Train Conductor', 'Elijah Wood': 'Patrick', 'Thomas Jay Ryan': 'Frank', 'Mark Ruffalo': 'Stan', 'Jane Adams': 'Carrie', 'David Cross': 'Rob', 'Kirsten Dunst': 'Mary', 'Tom Wilkinson': 'Dr. Mierzwiak', 'Ryan Whitney': 'Young Joel', 'Debbon Ayer': ""Joel's Mother"", 'Amir Ali Said': 'Young Bully', 'Brian Price': 'Young Bully', 'Paulie Litt': 'Young Bully (as Paul Litowski)'}" tt0360717,"{'Naomi Watts': 'Ann Darrow', 'Jack Black': 'Carl Denham', 'Adrien Brody': 'Jack Driscoll', 'Thomas Kretschmann': 'Captain Englehorn', 'Colin Hanks': 'Preston', 'Andy Serkis': 'Kong / Lumpy', 'Evan Parke': 'Hayes', 'Jamie Bell': 'Jimmy', 'Lobo Chan': 'Choy', 'John Sumner': 'Herb', 'Craig Hall': 'Mike', 'Kyle Chandler': 'Bruce Baxter', 'William Johnson': 'Manny', 'Mark Hadlow': 'Harry', 'Geraldine Brophy': 'Maude'}" tt0365748,"{'Simon Pegg': 'Shaun', 'Kate Ashfield': 'Liz', 'Nick Frost': 'Ed', 'Lucy Davis': 'Dianne', 'Dylan Moran': 'David', 'Nicola Cunningham': 'Mary', 'Keir Mills': 'Clubber 1 (as Kier Mills)', 'Matt Jaynes': 'Clubber 2', 'Gavin Ferguson': 'Football Kid', 'Peter Serafinowicz': 'Pete', 'Horton Jupiter': 'Homeless Man', 'Tim Baggaley': 'The Usher', 'Arvind Doshi': 'Nelson', 'Rafe Spall': 'Noel', 'Sonnell Dadral': 'Danny (as Sonell Dadral)'}" tt0096969,"{'Tom Cruise': 'Ron Kovic', 'Bryan Larkin': 'Young Ron', 'Raymond J. Barry': 'Mr. Kovic', 'Caroline Kava': 'Mrs. Kovic', 'Josh Evans': 'Tommy Kovic', 'Seth Allen': 'Young Tommy', 'Jamie Talisman': 'Jimmy Kovic', 'Sean Stone': 'Young Jimmy', 'Anne Bobby': 'Susanne Kovic', 'Jenna von Oÿ': 'Young Susanne', 'Samantha Larkin': 'Patty Kovic', 'Erika Geminder': 'Young Patty', 'Amanda Davis': 'Baby Patty', 'Kevin Harvey Morse': 'Jackie Kovic', 'John Getz': 'Marine Major'}" tt0212338,"{'Robert De Niro': 'Jack Byrnes', 'Ben Stiller': 'Greg Focker', 'Teri Polo': 'Pam Byrnes', 'Blythe Danner': 'Dina Byrnes', 'Nicole DeHuff': 'Deborah Byrnes', 'Jon Abrahams': 'Denny Byrnes', 'Owen Wilson': 'Kevin Rawley', 'James Rebhorn': 'Dr. Larry Banks', 'Tom McCarthy': 'Dr. Bob Banks (as Thomas McCarthy)', 'Phyllis George': 'Linda Banks', 'Kali Rocha': 'Atlantic American Flight Attendant', 'Bernie Sheredy': 'Norm the Interrogator', 'Judah Friedlander': 'Pharmacy Clerk', 'Peter Bartlett': 'Animal Shelter Worker', 'John Elsen': 'Chicago Airport Security'}" tt0457400,"{'Will Ferrell': 'Dr. Rick Marshall', 'Anna Friel': 'Holly Cantrell', 'Danny McBride': 'Will Stanton', 'Jorma Taccone': 'Chaka', 'John Boylan': 'Enik', 'Matt Lauer': 'Matt Lauer', ""Bobb'e J. Thompson"": 'Tar Pits Kid', 'Sierra McCormick': 'Tar Pits Kid', 'Shannon Lemke': 'Tar Pits Kid', 'Steven Wash Jr.': 'Tar Pits Kid', 'Brian Huskey': 'Teacher', 'Kevin Buitrago': 'Teenager', 'Noah Crawford': 'Teenager', 'Jon Kent Ethridge': 'Teenager (as Jon Kent Ethridge II)', 'Logan Manus': 'Teenager'}" tt1078940,"{'Vince Vaughn': 'Dave', 'Jason Bateman': 'Jason Smith', 'Faizon Love': 'Shane', 'Jon Favreau': 'Joey', 'Malin Akerman': 'Ronnie', 'Kristen Bell': 'Cynthia', 'Kristin Davis': 'Lucy', 'Kali Hawk': 'Trudy', 'Tasha Smith': 'Jennifer', 'Carlos Ponce': 'Salvadore', 'Peter Serafinowicz': 'Sctanley', 'Jean Reno': 'Marcel', 'Temuera Morrison': 'Briggs', 'Jonna Walsh': 'Lacey', 'Gattlin Griffith': 'Robert'}" tt1135487,"{'Clive Owen': 'Ray Koval', 'Julia Roberts': 'Claire Stenwick', 'Tom Wilkinson': 'Howard Tully', 'Paul Giamatti': 'Richard Garsik', 'Dan Daily': ""Garsik's Aide"", 'Lisa Roberts Gillan': ""Tully's Assistant"", 'David Shumbris': 'Turtleneck', 'Rick Worthy': 'Dale Raimes', 'Oleg Stefan': 'Boris Fetyov', ""Denis O'Hare"": 'Duke Monahan', 'Kathleen Chalfant': 'Pam Frailes', 'Khan Baykal': 'Dinesh Patel', 'Tom McCarthy': 'Jeff Bauer', 'Wayne Duvall': 'Ned Guston', 'Fabrizio Brienza': 'Hotel Manager'}" tt0372183,"{'Matt Damon': 'Jason Bourne', 'Franka Potente': 'Marie', 'Brian Cox': 'Ward Abbott', 'Julia Stiles': 'Nicky', 'Karl Urban': 'Kirill', 'Gabriel Mann': 'Danny Zorn', 'Joan Allen': 'Pamela Landy', 'Marton Csokas': 'Jarda', 'Tom Gallop': 'Tom Cronin', 'John Bedford Lloyd': 'Teddy', 'Ethan Sandler': 'Kurt', 'Michelle Monaghan': 'Kim', 'Karel Roden': 'Gretkov', 'Tomas Arana': 'Martin Marshall', 'Oksana Akinshina': 'Irena Neski'}" tt0385267,"{'Dennis Quaid': 'Dan', 'Topher Grace': 'Carter', 'Scarlett Johansson': 'Alex', 'Marg Helgenberger': 'Ann', 'David Paymer': 'Morty', 'Clark Gregg': 'Steckle', 'Philip Baker Hall': 'Eugene Kalb', 'Selma Blair': 'Kimberly', 'Frankie Faison': 'Corwin', 'Ty Burrell': 'Enrique Colon', 'Kevin Chapman': 'Lou', 'Amy Aquino': 'Alicia', 'Zena Grey': 'Jana', 'Colleen Camp': 'Receptionist', 'Lauren Tom': 'Obstetrician'}" tt0119528,"{'Jim Carrey': 'Fletcher Reede', 'Maura Tierney': 'Audrey Reede', 'Justin Cooper': 'Max Reede', 'Cary Elwes': 'Jerry', 'Anne Haney': 'Greta', 'Jennifer Tilly': 'Samantha Cole', 'Amanda Donohoe': 'Miranda', 'Jason Bernard': 'Judge Marshall Stevens', 'Swoosie Kurtz': 'Dana Appleton', 'Mitchell Ryan': 'Mr. Allan', 'Christopher Mayer': 'Kenneth Falk (as Chip Mayer)', 'Eric Pierpoint': 'Richard Cole', ""Randall 'Tex' Cobb"": 'Skull', 'Cheri Oteri': 'Jane', 'SW Fisher': 'Pete'}" tt0440963,"{'Matt Damon': 'Jason Bourne', 'Julia Stiles': 'Nicky Parsons', 'David Strathairn': 'Noah Vosen', 'Scott Glenn': 'Ezra Kramer', 'Paddy Considine': 'Simon Ross', 'Edgar Ramírez': 'Paz (as Edgar Ramirez)', 'Albert Finney': 'Dr. Albert Hirsch', 'Joan Allen': 'Pam Landy', 'Tom Gallop': 'Tom Cronin', 'Corey Johnson': 'Wills', 'Daniel Brühl': 'Martin Kreutz', 'Joey Ansah': 'Desh', 'Colin Stinton': 'Neal Daniels', 'Dan Fredenburgh': 'Jimmy', 'Lucy Liemann': 'Lucy'}" tt0258463,"{'Matt Damon': 'Bourne', 'Franka Potente': 'Marie', 'Chris Cooper': 'Conklin', 'Clive Owen': 'The Professor', 'Brian Cox': 'Ward Abbott', 'Adewale Akinnuoye-Agbaje': 'Wombosi', 'Gabriel Mann': 'Zorn', 'Walton Goggins': 'Research Tech', 'Josh Hamilton': 'Research Tech', 'Julia Stiles': 'Nicolette', 'Orso Maria Guerrini': 'Giancarlo (as Orso Maria-Guerrini)', 'Tim Dutton': 'Eamon', 'Denis Braccini': 'Picot', 'Nicky Naudé': 'Castel (as Nicky Naude)', 'David Selburg': 'Marshall'}" tt0119174,"{'Michael Douglas': 'Nicholas Van Orton', 'Sean Penn': 'Conrad', 'Deborah Kara Unger': 'Christine', 'James Rebhorn': 'Jim Feingold', 'Peter Donat': 'Samuel Sutherland', 'Carroll Baker': 'Ilsa', 'Anna Katarina': 'Elizabeth', 'Armin Mueller-Stahl': 'Anson Baer', 'Charles Martinet': ""Nicholas' Father"", 'Scott Hunter McGuire': 'Young Nicholas', 'Florentine Mocanu': ""Nicholas' Mother"", 'Elizabeth Dennehy': 'Maria', 'Caroline Barclay': 'Maggie', 'Daniel Schorr': 'Daniel Schorr', 'John Aprea': 'Power Executive'}" tt0112641,"{'Robert De Niro': ""Sam 'Ace' Rothstein"", 'Sharon Stone': 'Ginger McKenna', 'Joe Pesci': 'Nicky Santoro', 'James Woods': 'Lester Diamond', 'Don Rickles': 'Billy Sherbert', 'Alan King': 'Andy Stone', 'Kevin Pollak': 'Phillip Green', 'L.Q. Jones': 'Pat Webb', 'Dick Smothers': 'Senator', 'Frank Vincent': 'Frank Marino', 'John Bloom': 'Don Ward', 'Pasquale Cajano': 'Remo Gaggi', 'Melissa Prophet': 'Jennifer Santoro', 'Bill Allison': 'John Nance', 'Vinny Vella': 'Artie Piscano'}" tt0329575,"{'David McCullough': 'Narrator', 'Jeff Bridges': 'Charles Howard', ""Paul Vincent O'Connor"": 'Bicycle Supervisor', 'Chris Cooper': 'Tom Smith', 'Michael Ensign': 'Steamer Owner', 'James Keane': 'Car Customer', 'Valerie Mahaffey': 'Annie Howard', 'David Doty': 'Land Broker', 'Carl M. Craig': 'Sam (as Kingston DuCoeur)', ""Michael O'Neill"": 'Mr. Pollard', 'Annie Corley': 'Mrs. Pollard', 'Michael Angarano': 'Young Red Pollard', 'Cameron Bowen': 'Pollard Child', 'Noah Luke': 'Pollard Child', 'Mariah Bess': 'Pollard Child'}" tt0315327,"{'Jim Carrey': 'Bruce Nolan', 'Morgan Freeman': 'God', 'Jennifer Aniston': 'Grace Connelly', 'Philip Baker Hall': 'Jack Baylor', 'Catherine Bell': 'Susan Ortega', 'Lisa Ann Walter': 'Debbie', 'Steve Carell': 'Evan Baxter (as Steven Carell)', 'Nora Dunn': 'Ally Loman', 'Eddie Jemison': 'Bobby', 'Paul Satterfield': 'Dallas Coleman', 'Mark Kiely': 'Fred Donohue', 'Sally Kirkland': 'Anita', 'Tony Bennett': 'Himself', 'Timothy Di Pri': ""Bruce's Cameraman (as Timothy DiPri)"", 'Brian Tahash': ""Bruce's Soundman""}" tt0096734,"{'Tom Hanks': 'Ray Peterson', 'Bruce Dern': 'Mark Rumsfield', 'Carrie Fisher': 'Carol Peterson', 'Rick Ducommun': 'Art Weingartner', 'Corey Feldman': 'Ricky Butler', 'Wendy Schaal': 'Bonnie Rumsfield', 'Henry Gibson': 'Dr. Werner Klopek', 'Theodore Gottlieb': 'Reuben Klopek', 'Courtney Gains': 'Hans Klopek', 'Gale Gordon': 'Walter Seznick', 'Dick Miller': 'Garbageman', 'Robert Picardo': 'Garbageman', 'Cory Danziger': 'Dave Peterson', 'Franklyn Ajaye': 'Detective', 'Rance Howard': 'Detective'}" tt0087065,"{'Henry Thomas': 'Davey Osborne', 'Dabney Coleman': 'Jack Flack / Hal Osborne', 'Michael Murphy': 'Rice', 'Christina Nigra': 'Kim Gardener', 'John McIntire': 'George MacCready', 'Jeanette Nolan': 'Eunice MacCready', 'Eloy Casados': 'Alvarez', 'Tim Rossovich': 'Haverman', 'William Forsythe': 'Morris (as Bill Forsythe)', 'Robert DoQui': 'Lt. Fleming', 'Shelby Leverington': 'Marilyn Gardener', 'Linden Chiles': 'Airport Security Chief', 'Robert Curtin': 'Murdoch', 'William Marquez': 'Airport Security Guard #1', 'Wendell Wright': 'Airport Security Guard #2'}" tt0192614,"{'Joshua Jackson': 'Luke McNamara', 'Paul Walker': 'Caleb Mandrake', 'Hill Harper': 'Will Beckford', 'Leslie Bibb': 'Chloe', 'Christopher McDonald': 'Martin Lombard', 'Steve Harris': 'Detective Sparrow', 'William Petersen': 'Ames Levritt', 'Craig T. Nelson': 'Litten Mandrake', 'David Asman': 'Jason Pitcairn', 'Scott Gibson': 'Travis Wheeler', 'Nigel Bennett': 'Dr. Whitney', 'Andrew Kraulis': 'McBride', 'Derek Aasland': 'Sullivan', 'Jennifer Melino': 'J.J.', 'Noah Dalton Danby': 'Hugh Mauberson (as Noah Danby)'}" tt0087995,"{'Harry Dean Stanton': 'Bud', 'Emilio Estevez': 'Otto', 'Tracey Walter': 'Miller', 'Olivia Barash': 'Leila', 'Sy Richardson': 'Lite', 'Susan Barnes': 'Agent Rogersz', 'Fox Harris': 'J. Frank Parnell', 'Tom Finnegan': 'Oly', 'Del Zamora': 'Lagarto', 'Eddie Velez': 'Napo', 'Zander Schloss': 'Kevin', 'Jennifer Balgobin': 'Debbi', 'Dick Rude': 'Duke', 'Miguel Sandoval': 'Archie (as Michael Sandoval)', 'Vonetta McGee': 'Marlene'}" tt0098067,"{'Steve Martin': 'Gil', 'Mary Steenburgen': 'Karen', 'Dianne Wiest': 'Helen', 'Jason Robards': 'Frank', 'Rick Moranis': 'Nathan', 'Tom Hulce': 'Larry', 'Martha Plimpton': 'Julie', 'Keanu Reeves': 'Tod', 'Harley Jane Kozak': 'Susan (as Harley Kozak)', 'Dennis Dugan': 'David Brodsky', 'Joaquin Phoenix': 'Garry (as Leaf Phoenix)', 'Eileen Ryan': 'Marilyn', 'Helen Shaw': 'Grandma', 'Jasen Fisher': 'Kevin', 'Paul Linke': 'George Bowman'}" tt0493464,"{'James McAvoy': 'Wesley', 'Morgan Freeman': 'Sloan', 'Angelina Jolie': 'Fox', 'Terence Stamp': 'Pekwarsky', 'Thomas Kretschmann': 'Cross', 'Common': 'The Gunsmith', 'Kristen Hager': 'Cathy', 'Marc Warren': 'The Repairman', ""David O'Hara"": ""Mr. X (as David Patrick O'Hara)"", 'Konstantin Khabenskiy': 'The Exterminator (as Konstantin Khabensky)', 'Dato Bakhtadze': 'The Butcher', 'Chris Pratt': 'Barry', 'Lorna Scott': 'Janice', 'Sophiya Haque': 'Puja', 'Brian Caspe': 'The Pharmacist'}" tt0350258,"{'Jamie Foxx': 'Ray Charles', 'Kerry Washington': 'Della Bea Robinson', 'Regina King': 'Margie Hendricks', 'Clifton Powell': 'Jeff Brown', 'Harry Lennix': 'Joe Adams', 'Bokeem Woodbine': 'Fathead Newman', 'Aunjanue Ellis': 'Mary Ann Fisher', 'Sharon Warren': 'Aretha Robinson', 'C.J. Sanders': 'Young Ray Robinson', 'Curtis Armstrong': 'Ahmet Ertegun', 'Richard Schiff': 'Jerry Wexler', 'Larenz Tate': 'Quincy Jones', 'Terrence Howard': 'Gossie McGee (as Terrence Dashon Howard)', 'David Krumholtz': 'Milt Shaw', 'Wendell Pierce': 'Wilbur Brassfield'}" tt0097366,"{'Chevy Chase': ""Irwin 'Fletch' Fletcher"", 'Hal Holbrook': 'Hamilton ""Ham"" Johnson', 'Julianne Phillips': 'Becky Culpepper', 'R. Lee Ermey': 'Jimmy Lee Farnsworth', 'Richard Libertini': 'Frank Walker', ""Randall 'Tex' Cobb"": 'Ben Dover', 'Cleavon Little': 'Calculus Entropy', 'George Wyner': 'Marvin Gillet', 'Patricia Kalember': 'Amanda Ray Ross', 'Geoffrey Lewis': 'KKK Leader', 'Richard Belzer': 'Phil', 'Phil Hartman': 'Bly Manager', 'Titos Vandis': 'Uncle Kakakis', 'Don Hood': 'Tom Barbour', 'Dennis Burkley': 'Joe Jack'}" tt0120735,"{'Jason Flemyng': 'Tom', 'Dexter Fletcher': 'Soap', 'Nick Moran': 'Eddy', 'Jason Statham': 'Bacon', 'Steven Mackintosh': 'Winston', 'Nicholas Rowe': 'J', 'Nick Marcq': 'Charles', 'Charles Forbes': 'Willie (as Charlie Forbes)', 'Vinnie Jones': 'Big Chris', 'Lenny McLean': 'Barry The Baptist', 'Peter McNicholl': 'Little Chris', 'P.H. Moriarty': 'Hatchet Harry', 'Frank Harper': 'Dog', 'Steve Sweeney': 'Plank', 'Huggy Leaver': 'Paul'}" tt0430922,"{'Seann William Scott': 'Wheeler', 'Paul Rudd': 'Danny', 'Christopher Mintz-Plasse': 'Augie', ""Bobb'e J. Thompson"": 'Ronnie', 'Elizabeth Banks': 'Beth', 'Jane Lynch': 'Sweeny', 'Ken Jeong': 'King Argotron', 'Ken Marino': 'Jim Stansel', 'Kerri Kenney': 'Lynette (as Kerri Kenney-Silver)', 'A.D. Miles': 'Martin', 'Joe Lo Truglio': 'Kuzzik', 'Matt Walsh': 'Davith of Glencracken', 'Nicole Randall Johnson': 'Karen', 'Alexandra Stamler': 'Esplen (as Allie Stamler)', 'Carly Craig': 'Connie'}" tt0118689,"{'Rowan Atkinson': 'Mr. Bean', 'Peter MacNicol': 'David Langley', 'John Mills': 'Chairman (as Sir John Mills)', 'Pamela Reed': 'Alison Langley', 'Harris Yulin': 'George Grierson', 'Burt Reynolds': 'General Newton', 'Larry Drake': 'Elmer', 'Danny Goldring': 'Security Buck', 'Johnny Galecki': 'Stingo Wheelie', 'Chris Ellis': 'Det. Butler', 'Andrew Lawrence': 'Kevin Langley', 'Peter Egan': 'Lord Walton', 'Peter Capaldi': 'Gareth', 'June Brown': 'Delilah', 'Peter James': 'Dr. Rosenblum'}" tt0117381,"{'Richard Gere': 'Martin Vail', 'Laura Linney': 'Janet Venable', 'John Mahoney': 'Shaughnessy', 'Alfre Woodard': 'Shoat', 'Frances McDormand': 'Molly', 'Edward Norton': 'Aaron / Roy', ""Terry O'Quinn"": 'Yancy', 'Andre Braugher': 'Goodman', 'Steven Bauer': 'Pinero', 'Joe Spano': 'Stenner', 'Tony Plana': 'Martinez', 'Stanley Anderson': 'Rushman', 'Maura Tierney': 'Naomi', 'Jon Seda': 'Alex', 'Reg Rogers': 'Connerman'}" tt1486190,"{'Gemma Arterton': 'Tamara Drewe', 'Roger Allam': 'Nicholas Hardiment', 'Bill Camp': 'Glen McCreavy', 'Dominic Cooper': 'Ben Sergeant', 'Luke Evans': 'Andy Cobb', 'Tamsin Greig': 'Beth Hardiment', 'Jessica Barden': 'Jody Long', 'Charlotte Christie': 'Casey Shaw', 'James Naughtie': 'Interviewer', 'John Bett': 'Diggory', 'Josie Taylor': 'Zoe', 'Bronagh Gallagher': 'Eustacia', 'Pippa Haywood': 'Tess', 'Susan Wooldridge': 'Penny Upminster', 'Amanda Lawrence': 'Mary'}" tt0132477,"{'Jake Gyllenhaal': 'Homer Hickam', 'Chris Cooper': 'John Hickam', 'Laura Dern': 'Miss Riley', 'Chris Owen': 'Quentin', 'William Lee Scott': 'Roy Lee', 'Chad Lindberg': ""O'Dell"", 'Natalie Canerday': 'Elsie Hickam', 'Scott Thomas': 'Jim Hickam (as Scott Miles)', 'Randy Stripling': 'Leon Bolden', 'Chris Ellis': 'Principal Turner', 'Elya Baskin': 'Ike Bykovsky', 'Courtney Cole-Fendley': 'Dorothy Platt (as Courtney Fendley)', 'David Dwyer': 'Jake Mosby', 'Terry Loughlin': 'Mr. Dantzler', 'Kaili Hollister': 'Valentine Carmina'}" tt0284837,"{'Sacha Baron Cohen': 'Ali G / Borat', 'Emilio Rivera': 'Rico', 'Gina La Piana': 'Hoochie 1 (as Gina Lapiana)', 'Dana de Celis': 'Hoochie 2 (as Dana Pauley)', 'Dominic Delesilva': 'Young Boy', 'Jacqueline Castro': 'Mum (as Jackeline Castro)', 'Jesse Acosta': 'Gangster', 'Mário Aguilar': 'Gangster (as Mario Aguilar)', 'Gary Baxley': 'Gangster', 'Carlos Ayala': 'Gangster', 'John Estrada': 'Gangster', 'David Follosco': 'Gangster', 'Gerald Gonzales': 'Gangster', 'Manny Jimenez Sr.': 'Gangster (as Manuel Jimenez)', 'Robert Jimenez': 'Gangster'}" tt0103850,"{'Tim Robbins': 'Bob Roberts', 'Giancarlo Esposito': 'Bugs Raplin', 'Alan Rickman': 'Lukas Hart III', 'Ray Wise': 'Chet MacGregor', 'Brian Murray': 'Terry Manchester', 'Gore Vidal': 'Senator Brickley Paiste', 'Rebecca Jenkins': 'Delores Perrigrew', 'Harry Lennix': 'Franklin Dockett', 'John Ottavino': 'Clark Anderson', 'Robert Stanton': 'Bart Macklerooney', 'Kelly Willis': 'Clarissa Flan', 'Merrilee Dale': 'Polly Roberts', 'Tom Atkins': 'Dr. Caleb Menck', 'David Strathairn': 'Mack Laflin', 'James Spader': 'Chuck Marlin'}" tt0252866,"{'Jason Biggs': 'Jim Levenstein', 'Shannon Elizabeth': 'Nadia', 'Alyson Hannigan': 'Michelle Flaherty', 'Chris Klein': 'Oz', 'Thomas Ian Nicholas': 'Kevin Myers', 'Natasha Lyonne': 'Jessica', 'Tara Reid': 'Vicky', 'Seann William Scott': 'Stifler', 'Mena Suvari': 'Heather', 'Eddie Kaye Thomas': 'Finch', 'Chris Owen': 'Chuck Sherman', 'Eugene Levy': ""Jim's Dad"", 'Molly Cheek': ""Jim's Mom"", 'Denise Faye': 'Danielle', 'Lisa Arturo': 'Amber'}" tt0993842,"{'Saoirse Ronan': 'Hanna', 'Eric Bana': 'Erik Heller', 'Vicky Krieps': 'Johanna Zadek (as Vicky Kreips)', 'Cate Blanchett': 'Marissa Wiegler', 'Paris Arrowsmith': 'CIA Tech #1', 'John Macmillan': 'Lewis', 'Tim Beckmann': 'Walt', 'Paul Birchard': 'Bob', 'Christian Malcolm': 'Head of Ops', 'Jamie Beamish': 'Burton', 'Tom Hodgkins': 'Monitor', 'Vincent Montuel': 'Camp G Doctor #1', 'Nathan Nolan': 'Camp G Doctor #2', 'Michelle Dockery': 'False Marissa', 'Jessica Barden': 'Sophie'}" tt1034389,"{'Channing Tatum': 'Marcus', 'István Göz': 'Cohort Centurion', 'Bence Gerö': 'Celt Boy / Young Marcus', ""Denis O'Hare"": 'Lutorius', 'Paul Ritter': 'Galba', 'Zsolt László': 'Paulus', 'Julian Lewis Jones': 'Cassius', 'Aladár Laklóth': 'Flavius Aquila', 'Marcell Miklós': 'Fort Legionary 1', 'Bálint Magyar': 'Fort Legionary 2', 'Ferenc Pataki': 'Fort Legionary 3', 'Bálint Antal': 'Young Legionary', 'Lukács Bicskey': 'Druid', 'Douglas Henshall': 'Cradoc', 'James Hayes': 'Stephanos'}" tt0947810,"{'Igal Naor': 'Al Rawi', 'Said Faraj': 'Seyyed Hamza', 'Faycal Attougui': 'Al Rawi Bodyguard (as Faical Attougui)', 'Aymen Hamdouchi': 'Ayad Hamza', 'Matt Damon': 'Miller', 'Nicoye Banks': 'Perry', 'Jerry Della Salla': 'Wilkins', 'Sean Huze': 'Conway', 'Michael J. Dwyer': 'Met-D (as Michael Dwyer)', 'Edouard H.R. Gluck': 'Met-D', 'Brian Siefkes': 'Met-D', 'Adam Wendling': 'Met-D', 'Abdul Henderson': 'Met-D', 'Paul Karsko': 'Met-D', 'Robert Miller': 'Met-D'}" tt1234654,"{'Greta Gerwig': 'Florence Marr', 'Koby Rouviere': 'Greenberg Boy', 'Sydney Rouviere': 'Greenberg Girl', 'Chris Messina': 'Phillip Greenberg', 'Susan Traylor': 'Carol Greenberg', 'Merritt Wever': 'Gina', 'Emily Lacy': 'Gallery Band Member', 'Aaron Wrinkle': 'Gallery Band Member', 'Heather Lockie': 'Gallery Band Member', 'Chris Coy': 'Guy at Gallery', 'Ben Stiller': 'Roger Greenberg', 'Zach Chassler': 'Marlon', 'Mina Badie': 'Peggy', 'Rhys Ifans': 'Ivan Schrank', 'Blair Tefkin': ""Megan - Beller's Party""}" tt1216492,"{'Amy Adams': 'Anna', 'Matthew Goode': 'Declan', 'Adam Scott': 'Jeremy', 'John Lithgow': 'Jack', ""Noel O'Donovan"": 'Seamus', 'Tony Rohr': 'Frank', 'Pat Laffan': 'Donal', 'Alan Devlin': 'Joe', 'Ian McElhinney': 'Priest', 'Dominique McElligott': 'Bride', ""Mark O'Regan"": 'Captain', 'Maggie McCarthy': 'Eileen', ""Peter O'Meara"": 'Ron', 'Macdara Ó Fátharta': ""Father Malone (as Macdara O'Fatharta)"", 'Kaitlin Olson': 'Libby'}" tt0899106,"{'Aaron Eckhart': 'Burke', 'Jennifer Aniston': 'Eloise', 'Dan Fogler': 'Lane', 'John Carroll Lynch': 'Walter', 'Martin Sheen': ""Burke's Father-in-Law"", 'Judy Greer': 'Marty', 'Frances Conroy': ""Eloise's Mom"", 'Joe Anderson': 'Tyler', 'Sasha Alexander': 'Photographer', 'Clyde Kusatsu': 'Cab Driver', 'Anne Marie DeLuise': 'Unicom Executive', 'Tyler McClendon': 'Unicom Executive', 'Panou': 'Unicom Executive', 'Michael Kopsa': 'Unicom CEO', 'Michelle Harrison': 'Cynthia'}" tt0054215,"{'Anthony Perkins': 'Norman Bates', 'Vera Miles': 'Lila Crane', 'John Gavin': 'Sam Loomis', 'Janet Leigh': 'Marion Crane', 'Martin Balsam': 'Det. Milton Arbogast', 'John McIntire': 'Sheriff Al Chambers', 'Simon Oakland': 'Dr. Fred Richman', 'Frank Albertson': 'Tom Cassidy', 'Patricia Hitchcock': 'Caroline (as Pat Hitchcock)', 'Vaughn Taylor': 'George Lowery', 'Lurene Tuttle': 'Mrs. Chambers', 'John Anderson': 'California Charlie', 'Mort Mills': 'Highway Patrol Officer'}" tt0107290,"{'Sam Neill': 'Grant', 'Laura Dern': 'Ellie', 'Jeff Goldblum': 'Malcolm', 'Richard Attenborough': 'Hammond', 'Bob Peck': 'Muldoon', 'Martin Ferrero': 'Gennaro', 'BD Wong': 'Wu (as B. D. Wong)', 'Joseph Mazzello': 'Tim', 'Ariana Richards': 'Lex', 'Samuel L. Jackson': 'Arnold', 'Wayne Knight': 'Nedry', 'Gerald R. Molen': 'Harding (as Jerry Molen)', 'Miguel Sandoval': 'Rostagno', 'Cameron Thor': 'Dodgson', 'Christopher John Fields': 'Volunteer #1'}" tt0083866,"{'Dee Wallace': 'Mary', 'Henry Thomas': 'Elliott', 'Peter Coyote': 'Keys', 'Robert MacNaughton': 'Michael (as Robert Macnaughton)', 'Drew Barrymore': 'Gertie', 'K.C. Martel': 'Greg', 'Sean Frye': 'Steve', 'C. Thomas Howell': 'Tyler (as Tom Howell)', 'Erika Eleniak': 'Pretty Girl', ""David M. O'Dell"": ""Schoolboy (as David O'Dell)"", 'Richard Swingler': 'Science Teacher', 'Frank Toth': 'Policeman', 'Robert Barton': 'Ultra Sound Man', 'Michael Darrell': 'Van Man', 'David Berkson': 'Medical Unit (as David Berkson M.D.)'}" tt0073195,"{'Roy Scheider': 'Brody', 'Robert Shaw': 'Quint', 'Richard Dreyfuss': 'Hooper', 'Lorraine Gary': 'Ellen Brody', 'Murray Hamilton': 'Vaughn', 'Carl Gottlieb': 'Meadows', 'Jeffrey Kramer': 'Hendricks (as Jeffrey C. Kramer)', 'Susan Backlinie': 'Chrissie', 'Jonathan Filley': 'Cassidy', 'Ted Grossman': 'Estuary Victim', 'Chris Rebello': 'Michael Brody', 'Jay Mello': 'Sean Brody', 'Lee Fierro': 'Mrs. Kintner', 'Jeffrey Voorhees': 'Alex Kintner', 'Craig Kingsbury': 'Ben Gardner'}" tt0052357,"{'James Stewart': ""John 'Scottie' Ferguson"", 'Kim Novak': 'Madeleine Elster / Judy Barton', 'Barbara Bel Geddes': 'Midge Wood', 'Tom Helmore': 'Gavin Elster', 'Henry Jones': 'Coroner', 'Raymond Bailey': ""Scottie's Doctor"", 'Ellen Corby': 'Manager of McKittrick Hotel', 'Konstantin Shayne': 'Pop Leibel', 'Lee Patrick': 'Car Owner Mistaken for Madeleine'}" tt0131857,"{'Trey Parker': 'Joe Cooper', 'Matt Stone': 'Doug Remer', 'Dian Bachar': 'Squeak Scolari', 'Yasmine Bleeth': 'Jenna Reed', 'Jenny McCarthy': 'Yvette Denslow', 'Ernest Borgnine': 'Ted Denslow', 'Robert Vaughn': 'Baxter Cain', 'Trevor Einhorn': 'Joey Thomas', 'Bob Costas': 'Bob Costas', 'Al Michaels': 'Al Michaels', 'Robert Stack': 'Robert Stack - Unsolved Mysteries Host', 'Reggie Jackson': 'Reggie Jackson', 'Dan Patrick': 'Dan Patrick', 'Kenny Mayne': 'Kenny Mayne', 'Tim McCarver': 'Tim McCarver'}" tt0131325,"{'Steve Martin': 'Bowfinger', 'Eddie Murphy': 'Kit Ramsey / Jiff Ramsey', 'Heather Graham': 'Daisy', 'Christine Baranski': 'Carol', 'Jamie Kennedy': 'Dave', 'Barry Newman': ""Kit's Agent"", 'Adam Alexi-Malle': 'Afrim', 'Kohl Sudduth': 'Slater', 'Terence Stamp': 'Terry Stricter', 'Robert Downey Jr.': 'Jerry Renfro', 'Alejandro Patiño': 'Sanchez (as Alejandro Patino)', 'Alfred De Contreras': 'Martinez', 'Ramiro Fabian': 'Hector', 'Johnny Sanchez': 'Luis', 'Claude Brooks': 'Freddy'}" tt0078723,"{'Dan Aykroyd': 'Sgt. Frank Tree', 'Ned Beatty': 'Ward Douglas', 'John Belushi': 'Capt. Wild Bill Kelso', 'Lorraine Gary': 'Joan Douglas', 'Murray Hamilton': 'Claude Crumn', 'Christopher Lee': 'Capt. Wolfgang von Kleinschmidt', 'Tim Matheson': 'Capt. Loomis Birkhead', 'Toshirô Mifune': 'Cmdr. Akiro Mitamura (as Toshiro Mifune)', 'Warren Oates': ""Col. 'Madman' Maddox"", 'Robert Stack': 'Maj. Gen. Joseph W. Stilwell', 'Treat Williams': ""Cpl. Chuck 'Stretch' Sitarski"", 'Nancy Allen': 'Donna Stratton', 'Lucille Benson': 'Gas Mama (Eloise) (as Lucille Bensen)', 'Jordan Cohen': 'Macey Douglas (as Jordan Brian)', 'John Candy': 'Pvt. Foley'}" tt0091541,"{'Tom Hanks': 'Walter Fielding', 'Shelley Long': 'Anna Crowley', 'Alexander Godunov': 'Max Beissart', 'Maureen Stapleton': 'Estelle', 'Joe Mantegna': 'Art Shirk', 'Philip Bosco': 'Curly', 'Josh Mostel': 'Jack Schnittman', 'Yakov Smirnoff': 'Shatov', 'Carmine Caridi': 'Brad Shirk', 'Brian Backer': 'Ethan', 'Billy Lombardo': 'Benny', 'Mia Dillon': 'Marika', 'John Van Dreelen': 'Carlos (as John van Dreelen)', 'Douglass Watson': 'Walter Fielding, Sr.', 'Lucille Dobrin': 'Macumba Lady'}" tt0113360,"{'Christopher Lambert': 'Paul Racine', 'John Lone': 'Kinjo', 'Joan Chen': 'Kirina', 'Yoshio Harada': 'Takeda Sensei', 'Yôko Shimada': 'Mieko Takeda', 'Mari Natsuki': 'Junko', 'Tak Kubota': 'Oshima', 'Masumi Okada': 'Lt. Wadakura', 'Tatsuya Irie': 'Hiryu', 'Michael Warren': 'Chase', 'Bart Anderson': 'John', 'James Saito': 'Nemura', 'Seth Sakai': 'Dr. Otozo Yamura', 'Toshishiro Obata': 'Ryuma', 'Ken Kensei': 'Sujin'}" tt0099141,"{'Mel Gibson': 'Rick Jarmin', 'Goldie Hawn': 'Marianne Graves', 'David Carradine': 'Eugene Sorenson', 'Bill Duke': 'Albert Diggs', 'Stephen Tobolowsky': 'Joe Weyburn', 'Joan Severance': 'Rachel Varney', 'Harry Caesar': 'Marvin', 'Jeff Corey': 'Lou Baird', 'Alex Bruhanski': 'Raun', 'John Pyper-Ferguson': 'Jamie', 'Clyde Kusatsu': 'Mr. Takawaki', 'Jackson Davies': 'Paul Bernard', 'Florence Paterson': 'Molly Baird', 'Tim Healy': 'Paul', 'Wes Tritter': 'Scottie'}" tt0056592,"{'Gregory Peck': 'Atticus Finch', 'John Megna': 'Dill Harris', 'Frank Overton': 'Sheriff Heck Tate', 'Rosemary Murphy': 'Maudie Atkinson', 'Ruth White': 'Mrs. Dubose', 'Brock Peters': 'Tom Robinson', 'Estelle Evans': 'Calpurnia', 'Paul Fix': 'Judge Taylor', 'Collin Wilcox Paxton': 'Mayella Violet Ewell (as Collin Wilcox)', 'James Anderson': 'Bob Ewell', 'Alice Ghostley': 'Aunt Stephanie Crawford', 'Robert Duvall': 'Boo Radley', 'William Windom': 'Mr. Gilmer', 'Crahan Denton': 'Walter Cunningham Sr.', 'Richard Hale': 'Nathan Radley'}" tt0104231,"{'Tom Cruise': 'Joseph Donnelly', 'Nicole Kidman': 'Shannon Christie', 'Thomas Gibson': 'Stephen Chase', 'Robert Prosky': 'Daniel Christie', 'Barbara Babcock': 'Nora Christie', 'Cyril Cusack': 'Danty Duff', 'Eileen Pollock': 'Molly Kay', 'Colm Meaney': 'Kelly', 'Douglas Gillison': 'Dermody', 'Michelle Johnson': 'Grace', 'Wayne Grace': 'Bourke', 'Niall Toibin': 'Joe', 'Barry McGovern': 'McGuire', 'Gary Lee Davis': 'Gordon', 'Jared Harris': 'Paddy'}" tt0099329,"{'Johnny Depp': 'Cry-Baby', 'Amy Locane': 'Allison Vernon-Williams', 'Susan Tyrrell': 'Ramona Rickettes', 'Polly Bergen': 'Mrs. Vernon-Williams', 'Iggy Pop': 'Belvedere Rickettes', 'Ricki Lake': 'Pepper Walker', 'Traci Lords': 'Wanda Woodward', 'Kim McGuire': ""Mona 'Hatchet-Face' Malnorowski"", 'Darren E. Burrows': 'Milton Hackett', 'Stephen Mailer': 'Baldwin', 'Kim Webb': 'Lenora Frigid', 'Alan J. Wendl': 'Toe-Joe', 'Troy Donahue': ""Hatchet's Father"", 'Mink Stole': ""Hatchet's Mother"", 'Joe Dallesandro': ""Milton's Father""}" tt0327597,"{'Dakota Fanning': 'Coraline Jones (voice)', 'Teri Hatcher': 'Mel Jones / Other Mother / Beldam (voice)', 'Jennifer Saunders': 'Miss April Spink / Other Spink (voice)', 'Dawn French': 'Miss Miriam Forcible / Other Forcible (voice)', 'Keith David': 'The Cat (voice)', 'John Hodgman': 'Charlie Jones / Other Father (voice)', 'Robert Bailey Jr.': ""Wyborne 'Wybie' Lovat (voice)"", 'Ian McShane': 'Mr. Sergei Alexander Bobinsky / Other Bobinsky (voice)', 'Aankha Neal': 'Sweet Ghost Girl (voice)', 'George Selick': 'Ghost Boy (voice)', 'Hannah Kaiser': 'Tall Ghost Girl (voice)', 'Harry Selick': 'Photo Friend (voice)', 'Marina Budovsky': 'Photo Friend (voice)', 'Emerson Tenney': 'Magic Dragonfly (voice) (as Emerson Hatcher)', 'Jerome Ranft': 'Mover (voice)'}" tt0023969,"{'The Marx Brothers': '(as The Four Marx Brothers)', 'Groucho Marx': 'Rufus T. Firefly', 'Harpo Marx': 'Pinky', 'Chico Marx': 'Chicolini', 'Zeppo Marx': 'Bob Roland', 'Margaret Dumont': 'Mrs. Gloria Teasdale', 'Raquel Torres': 'Vera Marcal', 'Louis Calhern': 'Ambassador Trentino', 'Edmund Breese': 'Zander', 'Leonid Kinskey': 'Sylvanian Agitator (as Leonid Kinsky)', 'Charles Middleton': 'Prosecutor (as Charles B. Middleton)', 'Edgar Kennedy': 'Lemonade Vendor'}" tt0322589,"{'Jessica Alba': 'Honey Daniels', 'Mekhi Phifer': 'Chaz', 'Romeo Miller': ""Benny (as Lil' Romeo)"", 'Joy Bryant': 'Gina', 'David Moscow': 'Michael Ellis', 'Lonette McKee': 'Mrs. Daniels', 'Zachary Isaiah Williams': 'Raymond', 'Christian Monzon': 'Bar Customer', 'Al Shearer': 'Bar Customer', 'Jull Weber': 'Joey', 'Laurieann Gibson': 'Katrina (as Laurie Ann Gibson)', ""O'Neal McKnight"": ""Katrina's Friend (as O'Neal McNight)"", 'Kevin Duhaney': 'Otis', 'William Omar Tobar': 'Beat Boxer', ""Ivan 'Flipz' Velez"": 'Street Dancer'}" tt0088763,"{'Michael J. Fox': 'Marty McFly', 'Christopher Lloyd': 'Dr. Emmett Brown', 'Lea Thompson': 'Lorraine Baines', 'Crispin Glover': 'George McFly', 'Thomas F. Wilson': 'Biff Tannen', 'Claudia Wells': 'Jennifer Parker', 'Marc McClure': 'Dave McFly', 'Wendie Jo Sperber': 'Linda McFly', 'George DiCenzo': 'Sam Baines', 'Frances Lee McCain': 'Stella Baines', 'James Tolkan': 'Mr. Strickland', 'J.J. Cohen': 'Skinhead (as Jeffrey Jay Cohen)', 'Casey Siemaszko': '3-D', 'Billy Zane': 'Match', 'Harry Waters Jr.': 'Marvin Berry'}" tt0218967,"{'Nicolas Cage': 'Jack Campbell', 'Téa Leoni': 'Kate Reynolds', 'Don Cheadle': 'Cash', 'Jeremy Piven': 'Arnie', 'Saul Rubinek': 'Alan Mintz', 'Josef Sommer': 'Peter Lassiter', 'Makenzie Vega': 'Annie Campbell', 'Jake Milkovich': 'Josh Campbell', 'Ryan Milkovich': 'Josh Campbell', 'Lisa Thornhill': 'Evelyn Thompson', 'Harve Presnell': 'Big Ed', 'Mary Beth Hurt': 'Adelle', 'Amber Valletta': 'Paula', 'Francine York': 'Lorraine', 'Ruth Williamson': 'Betty Peterson'}" tt0101921,"{'Kathy Bates': 'Evelyn Couch', 'Mary Stuart Masterson': 'Idgie Threadgoode', 'Mary-Louise Parker': 'Ruth Jamison', 'Jessica Tandy': 'Ninny Threadgoode', 'Cicely Tyson': 'Sipsey', ""Chris O'Donnell"": 'Buddy Threadgoode', 'Stan Shaw': 'Big George', 'Gailard Sartain': 'Ed Couch', 'Timothy Scott': 'Smokey Lonesome (as Tim Scott)', 'Gary Basaraba': 'Grady Kilgore', 'Lois Smith': 'Mama Threadgoode', 'Jo Harvey Allen': ""Women's Awareness Teacher"", 'Macon McCalman': 'Prosecutor Percy', 'Richard Riehle': 'Reverend Scroggins', 'Raynor Scheine': 'Sheriff Curtis Smoote'}" tt0166924,"{'Naomi Watts': 'Betty / Diane Selwyn', 'Jeanne Bates': 'Irene', 'Dan Birnbaum': ""Irene's Companion"", 'Laura Harring': 'Rita / Camilla Rhodes (as Laura Elena Harring)', 'Randall Wulff': 'Limo Driver (as Scott Wulff)', 'Robert Forster': 'Detective McKnight', 'Brent Briscoe': 'Detective Domgaard', 'Maya Bond': 'Aunt Ruth', 'Patrick Fischler': 'Dan', 'Michael Cooke': 'Herb', 'Bonnie Aarons': 'Bum', 'Michael J. Anderson': 'Mr. Roque', 'Joseph Kearney': ""Roque's Manservant"", 'Enrique Buelna': 'Back of Head Man', 'Richard Mead': 'Hairy-Armed Man'}" tt1596346,"{'AnnaSophia Robb': 'Bethany Hamilton', 'Helen Hunt': 'Cheri Hamilton', 'Dennis Quaid': 'Tom Hamilton', 'Carrie Underwood': 'Sarah Hill', 'Kevin Sorbo': 'Holt Blanchard', 'Ross Thomas': 'Noah Hamilton', 'Chris Brochu': 'Timmy Hamilton', 'Lorraine Nicholson': 'Alana Blanchard', 'Jeremy Sumpter': 'Byron Blanchard', 'Sonya Balmores': 'Malina Birch (as Sonya Balmores Chung)', 'Craig T. Nelson': 'Dr. Rovinsky', 'Cody Gomes': 'Keoki', 'Branscombe Richmond': 'Ben Aipa', 'Titus Kinimaka': 'Titus', 'John Philbin': 'Fuel TV Reporter #2'}" tt0382856,"{'Carmen Electra': 'Herself', 'Daniel Letterle': 'Josh', 'Mary Elizabeth Winstead': 'Maddy', 'La La Anthony': ""Herself (as Alani 'La La' Vazquez)"", 'Nick Carter': 'Himself', 'Adam West': 'Dr. Harryhausen', 'C. Ernst Harth': 'Eightball', 'Cascy Beddow': 'Andy', 'Joe MacLeod': 'Stack', 'Chelan Simmons': 'Jen', 'Chris Harrison': 'Chase', 'Alana Husband': 'Lil Mindi', 'Jeff Geddis': 'G.T.', 'Bruce James': 'Bob Staton', 'Phillip Mitchell': 'Mombata Leader (as Phil Mitchell)'}" tt0382810,"{'Cate Blanchett': 'Tracy', 'Sam Neill': 'The Jockey', 'Hugo Weaving': 'Lionel', 'Martin Henderson': 'Ray', 'Noni Hazlehurst': 'Janelle', 'Dustin Nguyen': 'Jonny', 'Joel Tobeck': 'Moss', 'Lisa McCune': 'Laura', 'Susie Porter': 'Jenny', 'Nina Liu': 'Mai', 'Linda Cropper': 'Denise', 'Daniela Farinacci': 'Donna', 'Ferdinand Hoang': 'Khiem', 'Anh Do': 'Tran', 'Jason Chong': 'Mingh'}" tt1650062,"{'Joel Courtney': 'Joe Lamb', 'Jessica Tuck': 'Mrs. Kaznyk', 'Joel McKinnon Miller': 'Mr. Kaznyk', 'Ryan Lee': 'Cary', 'Zach Mills': 'Preston', 'Riley Griffiths': 'Charles Kaznyk', 'Gabriel Basso': 'Martin', 'Kyle Chandler': 'Deputy Jackson Lamb', 'Ron Eldard': 'Louis Dainard', 'AJ Michalka': 'Jen Kaznyk', 'Andrew Miller': 'Kaznyk Twin', 'Jakob Miller': 'Kaznyk Twin', 'Jade Griffiths': 'Benji Kaznyk', 'Britt Flatmo': 'Peg Kaznyk', 'Elle Fanning': 'Alice Dainard'}" tt1020773,"{'Juliette Binoche': 'Elle', 'William Shimell': 'James Miller', 'Jean-Claude Carrière': ""L'homme de la place"", 'Agathe Natanson': 'La femme de la place', 'Gianna Giachetti': 'La patronne du café', 'Adrian Moore': 'Le fils', 'Angelo Barbagallo': 'Le traducteur', 'Andrea Laurenzi': 'Le guide', 'Filippo Trojano': 'Le marié (as Filippo Troiano)', 'Manuela Balsimelli': 'La mariée (as Manuela Balsinelli)'}" tt0273453,"{'Lee Tergesen': 'Peter', 'Heather Morgan': 'Lucy', 'Lisa Kudrow': 'Darla', ""Vincent D'Onofrio"": 'Malcolm', 'Hank Azaria': 'Sam', 'Mary Jo Deschanel': 'Betty', 'Scott Wilson': 'Harold', 'Aimee Graham': 'Rebecca', 'Wade Williams': 'Tom (as Wade Andrews Williams)', 'Jane Chung': 'Elderly Woman', 'Lydia Look': 'Receptionist', 'Toshi Toda': 'Customer', 'Kim Robillard': 'Car Parking Man', 'Mary Jo Smith': 'Waitress', 'Kim Staunton': 'Dr. Felcrest'}" tt1486185,"{'Amanda Seyfried': 'Valerie', 'Gary Oldman': 'Solomon', 'Billy Burke': 'Cesaire', 'Shiloh Fernandez': 'Peter', 'Max Irons': 'Henry', 'Virginia Madsen': 'Suzette', 'Lukas Haas': 'Father Auguste', 'Julie Christie': 'Grandmother', 'Shauna Kain': 'Roxanne', 'Michael Hogan': 'The Reeve', 'Adrian Holmes': 'Captain', 'Cole Heppell': 'Claude', 'Christine Willes': 'Madame Lazar', 'Michael Shanks': 'Adrien Lazar', 'Kacey Rohl': 'Prudence'}" tt1194263,"{'Robert Duvall': 'Felix Bush', 'Sissy Spacek': 'Mattie Darrow', 'Bill Murray': 'Frank Quinn', 'Lucas Black': 'Buddy', 'Gerald McRaney': 'Rev. Gus Horton', 'Bill Cobbs': 'Rev. Charlie Jackson', 'Scott Cooper': 'Carl', 'Lori Beth Sikes': 'Kathryn (as Lori Beth Edgeman)', 'Linds Edwards': 'WKNG Announcer', 'Andrea Powell': 'Bonnie', 'Chandler Riggs': 'Tom', 'Danny Vinson': 'Grier', 'Blerim Destani': 'Gary', 'Tomasz Karolak': 'Orville', 'Andy Stahl': 'Photographer (as Andrew Stahl)'}" tt0119738,"{'Julia Roberts': 'Julianne Potter', 'Dermot Mulroney': ""Michael O'Neal"", 'Cameron Diaz': 'Kimberly Wallace', 'Rupert Everett': 'George Downes', 'Philip Bosco': 'Walter Wallace', 'M. Emmet Walsh': ""Joe O'Neal"", 'Rachel Griffiths': 'Samantha Newhouse', 'Carrie Preston': 'Amanda Newhouse', 'Susan Sullivan': 'Isabelle Wallace', 'Christopher Masterson': ""Scotty O'Neal (as Chris Masterson)"", 'Raci Alexander': 'Title Sequence Performer', 'Jennifer Garrett': 'Title Sequence Performer', 'Kelleia Sheerin': 'Title Sequence Performer (as Kelly Sheerin)', 'Bree Turner': 'Title Sequence Performer', 'Cassie Creasy': 'Flower Girl'}" tt1255953,"{'Mustafa Kamel': 'Barbier de la Milice / Officer Milice Chrétienne', 'Hussein Sami': 'Nihad (5ans)', 'Rémy Girard': 'Notaire Jean Lebel', 'Mélissa Désormeaux-Poulin': 'Jeanne Marwan', 'Maxim Gaudette': 'Simon Marwan', 'Dominique Briand': 'Professor Niv Cohen', 'Lubna Azabal': 'Nawal Marwan', 'Frédéric Paquet': ""Médecin a l'urgence"", 'Hamed Najem': 'Wahab', 'Ahmad Massad': 'Bassem Marwan', 'Bader Alami': 'Nicolas Marwan', 'Majida Hussein': 'Grand-mére de Nawal', 'Asriah Nijres': 'Sage-Femme', 'John Dunn-Hill': 'Professeur Saïd Haidar', 'Nadia Essadiqi': 'Secrétaire Université'}" tt1423894,"{'Paul Giamatti': 'Barney Panofsky', 'Macha Grenon': 'Solange', 'Paul Gross': ""Constable O'Malley of the North"", 'Atom Egoyan': ""O'Malley Director #1"", 'Mark Camacho': 'T / U Productions Executive #1', 'David Pryde': 'T / U Productions Executive #2', 'Paula Jean Hixson': ""Bartender at Grumpy's"", 'Mark Addy': ""Detective O'Hearne"", 'Scott Speedman': 'Boogie', 'Marica Pellegrinelli': ""'The Countess'"", 'Thomas Trabacchi': 'Leo', 'Clé Bennett': 'Cedric', 'Rachelle Lefevre': ""Clara 'Chambers' Charnofsky"", 'Domenico Minutoli': 'Judge at Rome Wedding', 'Massimo Wertmüller': 'Rome Doctor (as Massimo Wertmuller)'}" tt1149361,"{'Dany Boon': 'Bazil', 'André Dussollier': 'Nicolas Thibault de Fenouillet', 'Yolande Moreau': 'Tambouille', 'Dominique Pinon': 'Fracasse', 'Marie-Julie Baup': 'Calculette', 'Michel Crémadès': 'Petit Pierre', 'Nicolas Marié': 'François Marconi', 'Julie Ferrier': 'La Môme Caoutchouc', 'Omar Sy': 'Remington', 'Jean-Pierre Marielle': 'Placard', 'Urbain Cancelier': 'Le gardien de nuit de Marconi', 'Patrick Paroux': 'Gerbaud', 'Jean-Pierre Becker': 'Libarski', 'Stéphane Butet': 'Matéo', 'Philippe Girard': 'Gravier'}" tt1038919,"{'Gerard Butler': 'Milo Boyd', 'Jennifer Aniston': 'Nicole Hurley', 'Gio Perez': 'Uncle Sam', 'Joel Marsh Garland': 'Dwight', 'Jason Kolotouros': 'Gelman', 'Matt Malloy': 'Gary', 'Jason Sudeikis': 'Stewart', 'Adam Rose': 'Jimmy', 'Christine Baranski': 'Kitty Hurley', 'Dorian Missick': 'Bobby', 'David Costabile': 'Arthur', 'Lynda Gravatt': 'Judge', 'Peter Greene': 'Earl Mahler', 'Jeff Garlin': 'Sid', 'Siobhan Fallon Hogan': 'Teresa'}" tt0762125,"{'Dwayne Johnson': 'Captain Charles T. Baker (voice)', 'Jessica Biel': 'Neera (voice)', 'Justin Long': 'Lem (voice)', 'Gary Oldman': 'General Grawl (voice)', 'Seann William Scott': 'Skiff (voice)', 'John Cleese': 'Professor Kipple (voice)', 'Freddie Benedict': 'Eckle (voice)', 'Alan Marriott': 'Glar (voice)', 'Mathew Horne': 'Soldier Vesklin (voice)', 'James Corden': 'Soldier Vernkot (voice)', 'Lewis Macleod': 'Additional Voices (voice)', 'Emma Tate': 'Additional Voices (voice)', 'Rupert Degas': 'Additional Voices (voice)', 'Pete Atkin': 'Additional Voices (voice)', 'Rebecca Front': 'Additional Voices (voice)'}" tt0388182,"{'Michael Douglas': 'Charlie', 'Evan Rachel Wood': 'Miranda', 'Willis Burks II': 'Pepper', 'Laura Kachergus': 'Rita', 'Paul Lieber': 'Doug', 'Kathleen Wilhoite': 'Kelly', 'Anne L. Nathan': ""Applebee's Manager (as Anne Nathan)"", 'Arthur Santiago': ""McDonald's Manager"", 'Ashley Greene': ""McDonald's Customer"", 'Ian Hopps': 'Boy', 'Anna Khaja': 'Officer Contreras', 'Will Rothhaar': 'Security Guard', ""Annie O'Donnell"": 'Greeter', 'Greg Davis Jr.': 'Joseph', 'Jeanie Hackett': 'Teacher'}" tt0323939,"{'Joe Nicolo': 'Ritchie', 'Carl Mazzocone Sr.': 'Older Wiseguy (as Carl M. Mazzocone Sr.)', 'George Tovar': 'Paulie', 'Frank Medrano': 'Sal', 'Jason Cerbone': 'Young Stevens', 'Mark De Alessandro': 'Hitman #1', 'Doc Duhame': 'Hitman #2', 'Shane T. Anderson': 'Hitman #3', 'Thandie Newton': 'Tiffany', 'Glenn Plummer': 'Attendant', 'Gabriel Byrne': 'Miller', 'Mick Rossi': 'Club Patron #1', 'Sean Stanek': 'Club Patron #2', 'Holly Cat': 'Girl in Hallway (as Holly Catarancuic)', 'Carl Mazzocone': 'Doorman'}" tt1020543,"{'Chris Marquette': 'Cooper (as Christopher Marquette)', 'Brooke Nevin': 'Sara', 'Kinsey Packard': 'Cindy', 'E. Quincy Sloan': 'Hugo', 'Wesley Thompson': 'Albert', 'Linda Park': 'Leechee', 'Deborah Geffner': 'Maureen', 'Jim Cody Williams': 'Jed', 'Bru Muller': 'Roger', ""Ismael 'East' Carlo"": 'Puerto Rican Man (as Ismael Carlo)', 'Diane Gaeta': 'White Trash Girl', 'Ray Wise': 'Ethan', 'Atanas Srebrev': 'Wildeyes', 'Vlado Mihailov': 'PJ', 'Mike Straub': 'Chad'}" tt1501652,"{'Nick Stahl': 'Dylan', 'Rose McGowan': 'Charlie', 'Amy Smart': 'Natalie', 'Ben Marten': 'Steve', 'Brian Lynner': 'Decko', 'Kim Grimaldi': 'Liz', 'James Serpento': 'Detective Milano', 'Jack Mishler': 'Mr. Brennan', 'Justin Marxen': 'Jack', 'Shane Simmons': 'David', 'Rachel Storey': 'Tracy', 'Britt Slater': 'Megan (as Brittany Slater)', 'Paul Nycz': 'The Tattooed Man', 'Justin Urich': 'Mad Terrence', 'Andrea Leon': 'Camilla'}" tt0284929,"{'Michael Reilly Burke': 'Ted Bundy', 'Boti Bliss': 'Lee (as Boti Ann Bliss)', 'Julianna McCarthy': 'Professor', 'Jennifer Tisdale': 'Pretty Girl', 'Michael Santos': 'Man at the Window', 'Annalee Autumn': 'Girl Attacked on Street (as Anna Lee Wooster)', 'Steffani Brass': 'Julie', 'Samantha Tabak': 'Vincennes (as Tricia Dickson)', 'Meadow Sisto': 'Welch', 'Eric DaRe': 'Male Partygoer (as Eric Dare)', 'Melissa Schmidt': 'Female Partygoer', 'Deborah Offner': 'Beverly', 'Zarah Little': 'Garber', 'Alison West': 'Randall', 'Matt Hoffman': 'Arnie'}" tt0242508,"{'Adrian Grenier': 'Alan Jensen', 'Sarah Michelle Gellar': 'Cindy Bandolini', 'Joey Lauren Adams': 'Chesney Cort', 'Eric Stoltz': 'Teddy Carter', 'Rebecca Gayheart': 'Kelly Morgan', 'Gianni Russo': 'Andrew Bandolini', 'Ray Allen': 'Marcus Blake', 'Mike Vetere': 'Russell (as Michael Aparo)', 'Scottie Epstein': 'Mario', 'John Neville': 'Dr. Reese', 'Polly Shannon': 'Juliet', 'Phillip Jarrett': 'Coach Preston', 'Adam Bloch': 'Kenner', 'Lauren Collis': 'Connie', 'Landy Cannon': 'Butch'}" tt0413466,"{'Jonathan Velasquez': 'Jonathan', 'Francisco Pedrasa': 'Kico', 'Milton Velasquez': 'Milton / Spermball', 'Usvaldo Panameno': 'Porky', 'Eddie Velasquez': 'Eddie', 'Luis Rojas-Salgado': 'Louie (as Luis Rojas Salgado)', 'Carlos Ramirez': 'Carlos', 'Iris Zelaya': 'Iris', 'Ashley Maldonado': 'Rosalia', 'Laura Cellner': 'Jade', 'Jessica Steinbaum': 'Nikki', 'Chris Neville': 'Beverly Hills Cop', 'Jeremy Scott': 'Andre', 'David Livingston': 'Beverly Hills Actor', 'Joe Myles': 'Beverly Hills Detective'}" tt0070047,"{'Ellen Burstyn': 'Chris MacNeil', 'Max von Sydow': 'Father Merrin', 'Lee J. Cobb': 'Lt. William Kinderman', 'Kitty Winn': 'Sharon', 'Jack MacGowran': 'Burke Dennings', 'Jason Miller': 'Father Karras', 'Linda Blair': 'Regan', ""William O'Malley"": ""Father Dyer (as Reverend William O'Malley S.J.)"", 'Barton Heyman': 'Dr. Klein', 'Peter Masterson': 'Dr. Barringer - Clinic Director (as Pete Masterson)', 'Rudolf Schündler': 'Karl', 'Gina Petrushka': 'Willi', 'Robert Symonds': 'Dr. Taney', 'Arthur Storch': 'Psychiatrist', 'Thomas Bermingham': 'Tom - President of University (as Reverend Thomas Bermingham S.J.)'}" tt1242618,"{'Brittany Murphy': 'Alice', 'Thora Birch': 'Lucy', 'Tammy Blanchard': 'Rebecca', 'Marc Blucas': 'David', 'Claudia Troll': ""David's Mother"", 'Michael Piscitelli': ""Ben's Voice (voice)""}" tt0405163,"{'Jeff Bridges': 'Andy Sargentee', 'Tim Blake Nelson': 'Barney Macklehatton', 'Joe Pantoliano': 'Some Idiot', 'Ted Danson': 'Moose', 'William Fichtner': 'Otis', 'Patrick Fugit': 'Emmett', 'John Hawkes': 'Moe', 'Brad William Henke': 'Ron (as Brad Henke)', 'Dawn Didawick': 'Clara', 'Glenne Headly': 'Helen Tatelbaum', 'Tom Bower': 'Floyd', 'Jayne Taini': 'Mrs. Morrelli', 'Lauren Graham': 'Peggy', 'Jeanne Tripplehorn': 'Thelma', 'Alex D. Linz': 'Billy'}" tt0338075,"{'Jamie McShane': 'Radio Announcer', 'Johnny Knoxville': 'Phil Kaufman', 'Danielle Sapia': 'Girl at Joshua Tree Inn', 'Gabriel Macht': 'Gram Parsons', 'Robert Alan Beuth': 'Reporter', 'Sara Arrington': 'Crying Girl', 'Scott Adsit': 'Music Expert', 'Mary Pat Gleason': 'Nurse', 'David Caffrey': 'TV Interviewer', 'Alexa Sheehan': 'Nurse 2 (as Alexa Motley)', 'Wesley Mann': 'Doctor', 'Marley Shelton': 'Susie', 'Christina Applegate': 'Barbara', 'Jim Cody Williams': 'Truck Driver', 'Kay E. Kuter': 'Undertaker'}" tt0446029,"{'Michael Cera': 'Scott Pilgrim', 'Kieran Culkin': 'Wallace Wells', 'Anna Kendrick': 'Stacey Pilgrim', 'Alison Pill': 'Kim Pine', 'Aubrey Plaza': 'Julie Powers', 'Mary Elizabeth Winstead': 'Ramona Flowers', 'Jason Schwartzman': 'Gideon Graves', 'Johnny Simmons': 'Young Neil', 'Mark Webber': 'Stephen Stills', 'Ellen Wong': 'Knives Chau', 'Satya Bhabha': 'Matthew Patel', 'Will Bowes': 'Party Goer (as Will Seatle Bowes)', 'Celine Lepage': 'Party Goer', 'Keita Saitou': 'Kyle Katayanagi (as Keita Saito)', 'Mark Leroy': 'Party Goer (as Mark LeRoy)'}" tt0102175,"{'Wesley Snipes': 'Flipper Purify', 'Annabella Sciorra': 'Angie Tucci', 'Spike Lee': 'Cyrus', 'Ossie Davis': 'The Good Reverend Doctor Purify', 'Ruby Dee': 'Lucinda Purify', 'Samuel L. Jackson': 'Gator Purify', 'Lonette McKee': 'Drew', 'John Turturro': 'Paulie Carbone', 'Frank Vincent': 'Mike Tucci', 'Anthony Quinn': 'Lou Carbone', 'Halle Berry': 'Vivian', 'Tyra Ferrell': 'Orin Goode', 'Veronica Webb': 'Vera', 'Veronica Timbers': 'Ming', 'David Dundara': 'Charlie Tucci'}" tt1013752,"{'Vin Diesel': 'Dominic Toretto', 'Paul Walker': ""Brian O'Conner"", 'Jordana Brewster': 'Mia', 'Michelle Rodriguez': 'Letty', 'John Ortiz': 'Campos', 'Laz Alonso': 'Fenix', 'Gal Gadot': 'Gisele', 'Jack Conley': 'Penning', 'Shea Whigham': 'Stasiak', 'Liza Lapira': 'Trinh', 'Sung Kang': 'Han', 'Tego Calderon': 'Tego', 'Don Omar': 'Don Omar', 'Mirtha Michelle': 'Cara', 'Greg Cipes': 'Dwight'}" tt0337721,"{'Barry Pepper': 'Charlie Halliday', 'Annabella Piugattuk': 'Kanaalaq', 'James Cromwell': 'Walter Shepherd', 'Kiersten Warren': 'Estelle', 'Jon Gries': 'Pierce', 'Robin Dunne': 'Carl', 'Malcolm Scott': 'Warren', 'Michael Bublé': 'Hap', 'Brad Sihvon': 'Mr. Izzard', 'Greg Spottiswood': 'Mr. Moss', 'Samson Jorah': 'Sammy', 'William MacDonald': 'Miner in Bar', 'Mariano Aupilardjuk': 'Elder Inuk', 'Peter Henry Arnatsiaq': 'Young Inuk', 'Peter Ipkornerk': 'Inuit Snow Camp'}" tt0100107,"{'Robert Davi': 'Det. Sean McKinney', 'Claudia Christian': 'Susan Riley', 'Michael Lerner': 'Edward Doyle', 'Bruce Campbell': 'Jack Forrest', 'Laurene Landon': 'Teresa Mallory', ""Robert Z'Dar"": 'Matt Cordell', 'Clarence Williams III': 'Blum', 'Leo Rossi': 'Turkell', 'Lou Bonacki': 'Detective Lovejoy', 'Paula Trickey': 'Cheryl', 'Charles Napier': 'Lew Brady', 'Santos Morales': 'Store Clerk', 'Robert Earl Jones': 'Harry', 'Andrew Hill Newman': 'Citizen', 'Ángel Salazar': 'Traffic Officer'}" tt0104808,"{'Robert Davi': 'Det. Sean McKinney', ""Robert Z'Dar"": 'Matt Cordell', 'Caitlin Dulany': 'Dr. Susan Fowler', 'Gretchen Becker': 'Katie Sullivan', 'Paul Gleason': 'Hank Cooney', 'Jackie Earle Haley': 'Frank Jessup', 'Julius Harris': 'Houngan', 'Grand L. Bush': 'Willie (as Grand Bush)', 'Doug Savant': 'Dr. Peter Myerson', 'Robert Forster': 'Dr. Powell', 'Bobby Di Cicco': 'Bishop', 'Frank Pesce': 'Tribble', 'Lou Diaz': 'Leon', 'Brenda Varda': 'Lindsey', 'Vanessa Marquez': 'Terry'}" tt0378407,"{'Drew Barrymore': 'Herself', 'John August': 'Himself', 'Stephanie Bedell Quartararo': 'Herself (as Stephanie Bedell)', 'Allison Burnett': 'Himself', ""Bill D'Elia"": 'Himself', 'Kerry David': 'Herself', 'Sonya Dakar': 'Herself', 'George DelHoyo': 'Himself - Voice Trailer Guy', 'Dylan': 'Himself - Limo Driver', 'Corey Feldman': 'Himself', 'Ross Forooghi': 'Himself', 'Jon Gunn': 'Himself', 'Lisa Furst': 'Herself (as Lisa Gunn)', 'Lauren Hays': 'Herself', 'Brian Herzlinger': 'Himself'}" tt0906665,"{'Hideaki Itô': 'Gunman', 'Masanobu Andô': 'Yoichi', 'Kôichi Satô': 'Taira no Kiyomori', 'Kaori Momoi': 'Ruriko', 'Yûsuke Iseya': 'Minamoto no Yoshitsune', 'Renji Ishibashi': 'Village Mayor', 'Yoshino Kimura': 'Shizuka', 'Quentin Tarantino': 'Piringo', 'Takaaki Ishibashi': 'Benkei', 'Teruyuki Kagawa': 'Sheriff', 'Shun Oguri': 'Akira', 'Masato Sakai': 'Taira no Shigemori'}" tt0210070,"{'Emily Perkins': 'Brigitte', 'Katharine Isabelle': 'Ginger', 'Kris Lemche': 'Sam', 'Mimi Rogers': 'Pamela', 'Jesse Moss': 'Jason', 'Danielle Hampton': 'Trina', 'John Bourgeois': 'Henry', 'Peter Keleghan': 'Mr. Wayne', 'Christopher Redman': 'Ben', 'Jimmy MacInnis': 'Tim', 'Lindsay Leese': 'Nurse Ferry', 'Wendii Fulford': 'Ms. Sykes', 'Ann Baggley': 'Mother', 'Graeme Robertson': 'Toddler', 'Maxwell Robertson': 'Toddler'}" tt1095217,"{'Nicolas Cage': 'Terence McDonagh', 'Eva Mendes': 'Frankie Donnenfield', 'Val Kilmer': 'Stevie Pruit', 'Xzibit': ""Big Fate (as Alvin 'Xzibit' Joiner)"", 'Fairuza Balk': 'Heidi', 'Shawn Hatosy': 'Armand Benoit', 'Jennifer Coolidge': 'Genevieve', 'Tom Bower': 'Pat McDonagh', 'Vondie Curtis-Hall': 'Captain James Brasser (as Vondie Curtis Hall)', 'Brad Dourif': 'Ned Schoenholtz', 'Denzel Whitaker': 'Daryl', 'Irma P. Hall': 'Binnie Rogers', 'Shea Whigham': 'Justin', 'Michael Shannon': 'Mundt', 'Joe Nemmers': 'Larry Moy'}" tt0118632,"{'Todd Allen': 'Horace', 'Paul Bagget': 'Tag Team Preacher #3 (as Brother Paul Bagget)', 'Lenore Banks': 'Female Sonny Supporter', 'John Beasley': 'Brother Blackwell', 'Mary Lynette Braxton': 'Mother Blackwell', 'Brett Brock': 'Helper', 'Christopher Canady': ""Sister Johnson's Twin"", 'Christian Canady': ""Sister Johnson's Twin"", 'June Carter Cash': 'Mrs. Dewey Sr.', 'Elizabeth Chisolm': 'Singer', 'William Atlas Cole': 'Bayou Man (as Brother William Atlas Cole)', 'Frank Collins Jr.': 'Soloist #4 (as Reverend Frank Collins Jr.)', 'Carl D. Cook': 'Civic Auditorium Preacher (as Prophet Carl D. Cook)', 'Naomi Craig': 'Scripture Reader', 'Wayne Dehart': 'Liquor Store Preacher'}" tt1294688,"{'Keira Knightley': 'Joanna', 'Sam Worthington': 'Michael', 'Guillaume Canet': 'Alex', 'Eva Mendes': 'Laura', 'Daniel Eric Gold': 'Andy', 'Scott Adsit': 'Stuart', 'Griffin Dunne': 'Truman', 'Stephanie Romanov': 'Sandra', 'Anson Mount': 'Neal', 'Stephen Mailer': 'Client #1', 'John Treacy Egan': 'Client #2', 'Justine Cotsonas': 'Maggie', 'Karen Pittman': 'Caroline', 'Jon Norman Schneider': 'Server', 'Chriselle Almeida': 'Hostess'}" tt1664894,"{'Werner Herzog': 'Himself / Narrator', 'Jean Clottes': 'Himself', 'Julien Monney': 'Himself', 'Jean-Michel Geneste': 'Himself', 'Michel Philippe': 'Himself', 'Gilles Tosello': 'Himself', 'Carole Fritz': 'Herself', 'Dominique Baffier': 'Herself', 'Valerie Feruglio': 'Herself', 'Nicholas Conard': 'Himself', 'Maria Malina': 'Herself', 'Wulf Hein': 'Himself', 'Maurice Maurin': 'Himself', 'Valerie Milenka Repnau': '(voice)'}" tt1564367,"{'Adam Sandler': 'Danny', 'Jennifer Aniston': 'Katherine', 'Nicole Kidman': 'Devlin Adams', 'Nick Swardson': 'Eddie', 'Brooklyn Decker': 'Palmer', 'Bailee Madison': 'Maggie', 'Griffin Gluck': 'Michael', 'Dave Matthews': 'Ian Maxtone Jones', 'Kevin Nealon': 'Adon', 'Rachel Dratch': 'Kirsten Brant', 'Allen Covert': 'Soul Patch', 'Dan Patrick': 'Tanner Patrick', 'Minka Kelly': 'Joanna Damon', 'Jackie Sandler': 'Veruca', 'Rakefet Abergel': 'Patricia'}" tt1341188,"{'Reese Witherspoon': 'Lisa', 'Paul Rudd': 'George', 'Owen Wilson': 'Matty', 'Jack Nicholson': 'Charles', 'Kathryn Hahn': 'Annie', 'Mark Linn-Baker': 'Ron', 'Lenny Venito': 'Al', 'Molly Price': 'Coach Sally', 'Ron McLarty': ""George's Lawyer"", 'Shelley Conn': 'Terry', 'Domenick Lombardozzi': 'Bullpen Pitcher', 'John Tormey': 'Doorman', 'Teyonah Parris': 'Riva', 'Tony Shalhoub': 'Psychiatrist', 'Dean Norris': 'Softball Coach'}" tt1126591,"{'Cher': 'Tess', 'Christina Aguilera': 'Ali', 'Eric Dane': 'Marcus', 'Cam Gigandet': 'Jack', 'Julianne Hough': 'Georgia', 'Alan Cumming': 'Alexis', 'Peter Gallagher': 'Vince', 'Kristen Bell': 'Nikki', 'Stanley Tucci': 'Sean', 'Dianna Agron': 'Natalie', 'Glynn Turman': 'Harold Saint', 'David Walton': 'Mark the DJ', 'Terrence Jenkins': 'Dave', 'Chelsea Traille': 'Coco', 'Tanee McCall': 'Scarlett'}" tt0913354,"{'Matt Dillon': 'Mike Cochrane', 'Jean Reno': 'Quinn', 'Laurence Fishburne': 'Baines', 'Amaury Nolasco': 'Palmer', 'Fred Ward': 'Duncan Ashcroft', 'Milo Ventimiglia': 'Eckehart', 'Skeet Ulrich': 'Dobbs', 'Columbus Short': 'Ty Hackett', 'Andre Jamal Kinney': 'Jimmy Hackett', 'Andrew Fiscella': 'Dispatcher #1', 'Nick Jameson': 'Homeless Man', 'Glenn Taranto': 'Joe the Cook', 'Lorna Raver': 'Child Welfare Agent', 'Garry Guerrier': 'Federal Guard', 'Robert Harvey': 'Bank Guard'}" tt0844471,"{'Bill Hader': 'Flint Lockwood (voice)', 'Anna Faris': 'Sam Sparks (voice)', 'James Caan': 'Tim Lockwood (voice)', 'Andy Samberg': ""'Baby' Brent (voice)"", 'Bruce Campbell': 'Mayor Shelbourne (voice)', 'Mr. T': 'Earl Devereaux (voice)', ""Bobb'e J. Thompson"": 'Cal Devereaux (voice)', 'Benjamin Bratt': 'Manny (voice)', 'Neil Patrick Harris': 'Steve (voice)', 'Al Roker': 'Patrick Patrickson (voice)', 'Lauren Graham': 'Fran Lockwood (voice)', 'Will Forte': 'Joe Towne (voice)', 'Max Neuwirth': 'Young Flint (voice)', 'Peter Siragusa': 'Rufus (voice)', 'Angela Shelton': 'Regina Devereaux (voice)'}" tt1136608,"{'Sharlto Copley': 'Wikus Van De Merwe', 'Jason Cope': 'Grey Bradnam - UKNR Chief Correspondent / Christopher Johnson', 'Nathalie Boltt': 'Sarah Livingstone - Sociologist', 'Sylvaine Strike': 'Dr Katrina McKenzie', 'Elizabeth Mkandawie': 'Interviewee', 'John Sumner': 'Les Feldman - MIL Engineer', 'William Allen Young': 'Dirk Michaels', 'Greg Melvill-Smith': 'Interviewer', 'Nick Blake': 'Francois Moraneu - CIV Engineer Team', 'Morena Busa Sesatsa': 'Interviewee', 'Themba Nkosi': 'Interviewee', 'Mzwandile Nqoba': 'Interviewee', 'Barry Strydom': 'Interviewee', 'Jed Brophy': 'James Hope - Police Officer', 'Louis Minnaar': 'Piet Smit'}" tt0324133,"{'Charlotte Rampling': 'Sarah Morton', 'Ludivine Sagnier': 'Julie', 'Charles Dance': 'John Bosload', 'Jean-Marie Lamour': 'Franck', 'Marc Fayolle': 'Marcel', 'Mireille Mossé': ""Marcel's Daughter"", 'Michel Fau': 'First Man', 'Jean-Claude Lecas': 'Second Man', 'Emilie Gavois-Kahn': 'Waitress at Cafe (as Emilie Gavois Kahn)', 'Erarde Forestali': 'Old Man', 'Lauren Farrow': 'Julia', 'Sebastian Harcombe': 'Terry Long', 'Frances Cuka': 'Lady on the Underground', 'Keith Yeates': ""Sarah's Father"", 'Tricia Aileen': ""John Bosload's Secretary""}" tt1229822,"{'Mia Wasikowska': 'Jane Eyre', 'Jamie Bell': 'St John Rivers', 'Su Elliot': 'Hannah (as Su Elliott)', 'Holliday Grainger': 'Diana Rivers', 'Tamzin Merchant': 'Mary Rivers', 'Amelia Clarkson': 'Young Jane', 'Craig Roberts': 'John Reed', 'Sally Hawkins': 'Mrs. Reed', 'Lizzie Hopley': 'Miss Abbot', 'Jayne Wisener': 'Bessie', 'Freya Wilson': 'Eliza Reed', 'Emily Haigh': 'Georgiana Reed', 'Simon McBurney': 'Mr. Brocklehurst', 'Sandy McDade': 'Miss Scatcherd', 'Freya Parks': 'Helen Burns'}" tt0881320,"{'Richard Roxburgh': 'Frank', 'Ioan Gruffudd': 'Carl', 'Rhys Wakefield': 'Josh', 'Alice Parkinson': 'Victoria', 'Dan Wyllie': 'Crazy George (as Daniel Wyllie)', 'Christopher James Baker': 'J.D. (as Christopher Baker)', 'Nicole Downs': 'Liz', 'Allison Cratchley': 'Judes', 'Cramer Cain': 'Luko', 'Andrew Hansen': 'Dex', 'John Garvin': 'Jim Sergeant', 'Sean Dennehy': 'Chopper Pilot', 'Nea Diap': 'Kastom Shaman'}" tt1385826,"{'Matt Damon': 'David Norris', 'Emily Blunt': 'Elise Sellas', 'Lisa Thoreson': 'Suburban Mom', 'Florence Kastriner': 'Suburban Mom', 'Michael Kelly': 'Charlie Traynor', 'Phyllis MacBryde': 'Suburban Neighbor', 'Natalie Carter': 'Suburban Neighbor (as Natalie E. Carter)', 'Chuck Scarborough': 'Chuck Scarborough', 'Jon Stewart': 'Jon Stewart', 'Gregory P. Hitchen': 'U.S. Coast Guard Officer (as Capt. Gregory P. Hitchen)', 'Darrell Lenormand': 'Upstate Farmer (as Darrell James LeNormand)', 'Michael Bloomberg': 'Mayor Michael R. Bloomberg (as Mayor Michael R. Bloomberg)', 'Kar': 'Political Consultant', 'RJ Konner': 'Political Consultant', 'Susan D. Michaels': 'Reporter'}" tt0328828,"{'Jason Biggs': 'Jim Levenstein', 'Seann William Scott': 'Steve Stifler', 'Alyson Hannigan': 'Michelle Flaherty', 'Eddie Kaye Thomas': 'Paul Finch', 'Thomas Ian Nicholas': 'Kevin Myers', 'January Jones': 'Cadence Flaherty', 'Eugene Levy': ""Jim's Dad"", 'Molly Cheek': ""Jim's Mom"", 'Deborah Rush': 'Mary Flaherty', 'Fred Willard': 'Harold Flaherty', 'Angela Paton': 'Grandma', 'Eric Allan Kramer': 'Bear (as Eric Allen Kramer)', 'Amanda Swisten': 'Fraulein Brandi', 'Nikki Ziering': 'Officer Krystal (as Nikki Schieler Ziering)', 'Lawrence Pressman': 'Head Coach'}" tt0872230,"{'Max Thieriot': 'Bug', 'John Magaro': 'Alex', 'Denzel Whitaker': 'Jerome', 'Zena Grey': 'Penelope', 'Nick Lashaway': 'Brandon', 'Paulina Olszynski': 'Brittany', 'Jeremy Chu': 'Jay', 'Emily Meade': 'Fang', 'Raúl Esparza': 'Abel', 'Jessica Hecht': 'May', 'Frank Grillo': 'Paterson', 'Danai Gurira': 'Jeanne-Baptiste', 'Harris Yulin': 'Dr. Blake', 'Shareeka Epps': 'Chandele', 'Elena Hurst': 'Maria'}" tt0887883,"{'George Clooney': 'Harry Pfarrer', 'Frances McDormand': 'Linda Litzke', 'Brad Pitt': 'Chad Feldheimer', 'John Malkovich': 'Osborne Cox', 'Tilda Swinton': 'Katie Cox', 'Richard Jenkins': 'Ted', 'Elizabeth Marvel': 'Sandy Pfarrer', 'David Rasche': 'CIA Officer Palmer DeBakey Smith', 'J.K. Simmons': 'CIA Superior (as JK Simmons)', 'Olek Krupa': 'Krapotkin', 'Michael Countryman': 'Alan', 'Kevin Sussman': 'Tuchman Marsh Man', 'J.R. Horne': 'Divorce Lawyer (as JR Horne)', 'Hamilton Clancy': 'Peck', 'Armand Schultz': 'Olson'}" tt0114746,"{'Joseph Melito': 'Young Cole', 'Bruce Willis': 'James Cole', 'Jon Seda': 'Jose', 'Michael Chance': 'Scarface', 'Vernon Campbell': 'Tiny', 'H. Michael Walls': 'Botanist', 'Bob Adrian': 'Geologist', 'Simon Jones': 'Zoologist', 'Carol Florence': 'Astrophysicist / Jones', 'Bill Raymond': 'Microbiologist', 'Ernest Abuba': 'Engineer', 'Irma St. Paule': 'Poet', 'Madeleine Stowe': 'Kathryn Railly', 'Joey Perillo': 'Detective Franki', 'Bruce Kirkpatrick': 'Policeman No. 1'}" tt0095253,"{'Dan Aykroyd': 'Roman Craig', 'John Candy': 'Chet Ripley', 'Stephanie Faracy': 'Connie Ripley', 'Annette Bening': 'Kate Craig', 'Chris Young': 'Buck Ripley', 'Ian Michael Giatti': 'Ben Ripley (as Ian Giatti)', 'Hilary Gordon': 'Cara Craig', 'Rebecca Gordon': 'Mara Craig', 'Robert Prosky': 'Wally', 'Zoaunne LeRoy': 'Juanita', 'Lucy Deakins': 'Cammie', 'Nancy Lenehan': 'Waitress', 'John Bloom': 'Jimbo', 'Lewis Arquette': 'Herm', 'Britt Leach': 'Reg'}" tt0842926,"{'Julianne Moore': 'Jules', 'Annette Bening': 'Nic', 'Mark Ruffalo': 'Paul', 'Mia Wasikowska': 'Joni', 'Josh Hutcherson': 'Laser', 'Yaya DaCosta': 'Tanya (as Yaya Dacosta)', 'Kunal Sharma': 'Jai', 'Eddie Hassell': 'Clay', 'Zosia Mamet': 'Sasha', 'Joaquín Garrido': 'Luis', 'Rebecca Lawrence Levy': 'Brooke (as Rebecca Lawrence)', 'Lisa Eisner': 'Stella', 'Eric Eisner': 'Joel', 'Sasha Spielberg': 'Waify Girl', 'James MacDonald': ""Clay's Dad (as James Macdonald)""}" tt0108052,"{'Liam Neeson': 'Oskar Schindler', 'Ben Kingsley': 'Itzhak Stern', 'Ralph Fiennes': 'Amon Goeth', 'Caroline Goodall': 'Emilie Schindler', 'Jonathan Sagall': 'Poldek Pfefferberg (as Jonathan Sagalle)', 'Embeth Davidtz': 'Helen Hirsch', 'Malgorzata Gebel': 'Wiktoria Klonowska (as Malgoscha Gebel)', 'Shmuel Levy': 'Wilek Chilowicz (as Shmulik Levy)', 'Mark Ivanir': 'Marcel Goldberg', 'Béatrice Macola': 'Ingrid (as Beatrice Macola)', 'Andrzej Seweryn': 'Julian Scherner', 'Friedrich von Thun': 'Rolf Czurda (as Friedrich Von Thun)', 'Krzysztof Luft': 'Herman Toffel', 'Harry Nehring': 'Leo John', 'Norbert Weisser': 'Albert Hujar'}" tt0106770,"{'Jason Scott Lee': 'Bruce Lee', 'Lauren Holly': 'Linda Lee', 'Robert Wagner': 'Bill Krieger', 'Michael Learned': 'Vivian Emery', 'Nancy Kwan': 'Gussie Yang', 'Kay Tong Lim': 'Philip Tan', 'Ric Young': ""Bruce's Father"", 'Luoyong Wang': 'Yip Man', 'Sterling Macer Jr.': 'Jerome Sprout (as Sterling Macer)', 'Sven-Ole Thorsen': 'The Demon', 'Ong Soo Han': 'Luke Sun', 'Eric Bruskotter': 'Joe Henderson', 'Aki Aleong': 'Principal Elder', 'Chao Li Chi': 'Elder (as Chao-Li Chi)', 'Iain M. Parker': 'Brandon Lee'}" tt0413099,"{'Steve Carell': 'Evan Baxter', 'Morgan Freeman': 'God', 'Lauren Graham': 'Joan Baxter', 'Johnny Simmons': 'Dylan Baxter', 'Graham Phillips': 'Jordan Baxter', 'Jimmy Bennett': 'Ryan Baxter', 'John Goodman': 'Congressman Long', 'Wanda Sykes': 'Rita', 'John Michael Higgins': 'Marty', 'Jonah Hill': 'Eugene', 'Molly Shannon': 'Eve Adams', 'Harve Presnell': 'Congressman Burrows', 'P.J. Byrne': ""Evan's Staffer"", 'Ralph Louis Harris': ""Evan's Staffer (as Ralph Harris)"", 'Arden Myrin': ""Evan's Staffer""}" tt0101540,"{'Robert De Niro': 'Max Cady', 'Nick Nolte': 'Sam Bowden', 'Jessica Lange': 'Leigh Bowden', 'Juliette Lewis': 'Danielle Bowden', 'Joe Don Baker': 'Claude Kersek', 'Robert Mitchum': 'Lieutenant Elgart', 'Gregory Peck': 'Lee Heller', 'Martin Balsam': 'Judge', 'Illeana Douglas': 'Lori Davis', 'Fred Dalton Thompson': 'Tom Broadbent', 'Zully Montero': 'Graciella', 'Craig Henne': 'Prisoner', 'Forest Burton': 'Prisoner', 'Edgar Allan Poe IV': 'Prisoner', 'Rod Ball': 'Prisoner'}" tt0026138,"{'Boris Karloff': 'The Monster (as Karloff)', 'Colin Clive': 'Henry Frankenstein', 'Valerie Hobson': 'Elizabeth', 'Ernest Thesiger': 'Doctor Pretorius', 'Elsa Lanchester': ""Mary Wollstonecraft Shelley / The Monster's Mate"", 'Gavin Gordon': 'Lord Byron', 'Douglas Walton': 'Percy Bysshe Shelley', ""Una O'Connor"": 'Minnie', 'E.E. Clive': 'Burgomaster', 'Lucien Prival': 'Butler - Albert', 'O.P. Heggie': 'Hermit', 'Dwight Frye': 'Karl Glutz', 'Reginald Barlow': 'Hans', 'Mary Gordon': ""Hans' Wife"", 'Anne Darling': 'Shepherdess (as Ann Darling)'}" tt0074281,"{'Darrow Igus': 'Floyd', 'Otis Day': 'Lloyd (as De Wayne Jessie)', 'James Spinks': 'Hippo', 'Antonio Fargas': 'Lindy', 'The Pointer Sisters': 'The Wilson Sisters', 'Richard Pryor': 'Daddy Rich', 'George Carlin': 'The Taxi Driver', 'Clarence Muse': 'Snapper', 'Franklyn Ajaye': 'T.C.', 'Tracy Reed': 'Mona', 'Bill Duke': 'Duane - Abdullah', 'Ivan Dixon': 'Lonnie', 'Henry Kingi': 'Goody', 'Pepe Serna': 'Chuco', 'Ray Vitte': 'Geronimo'}" tt0115783,"{'Damon Wayans': 'Keats', 'Adam Sandler': 'Moses', 'James Caan': 'Colton', 'Jeep Swenson': 'Bledsoe', 'James Farentino': 'Capt. Jensen', 'Kristen Wilson': 'Traci', 'Larry McCoy': 'Detective Sulliman', 'Allen Covert': 'Detective Jones', 'Bill Nunn': 'Finch', 'Mark Roberts': 'Charles', 'Mark Casella': 'Disneyland Cop', 'Andrew Shaifer': 'Cop at Airport', 'Monica Potter': ""Biker's Woman"", 'Jonathan Loughran': 'Rookie Cop', 'Steve White': 'Veteran Cop'}" tt0129290,"{'Robin Williams': 'Patch Adams', 'Daniel London': 'Truman', 'Monica Potter': 'Carin', 'Philip Seymour Hoffman': 'Mitch', 'Bob Gunton': 'Dean Walcott', 'Josef Sommer': 'Dr. Eaton', 'Irma P. Hall': 'Joletta', 'Frances Lee McCain': 'Judy', 'Harve Presnell': 'Dean Anderson', 'Daniella Kuhn': 'Adelane', 'Peter Coyote': 'Bill Davis', 'James Greene': 'Bile', 'Michael Jeter': 'Rudy', 'Harold Gould': 'Arthur Mendelson', 'Bruce Bohne': 'Trevor Beene'}" tt0117218,"{'Eddie Murphy': 'Sherman Klump / Buddy Love / Lance Perkins / Papa Klump / Mama Klump / Grandma Klump / Ernie Klump', 'Jada Pinkett Smith': 'Carla Purty (as Jada Pinkett)', 'James Coburn': 'Harlan Hartley', 'Larry Miller': 'Dean Richmond', 'Dave Chappelle': 'Reggie Warrington', 'John Ales': 'Jason', 'Patricia Wilson': ""Dean's Secretary"", 'Jamal Mixon': 'Ernie Klump Jr.', 'Nichole McAuley': 'Fit Woman', 'Hamilton von Watts': 'Health Instructor (as Hamilton Von Watts)', 'Chao Li Chi': 'Asian Man (as Chao-Li Chi)', 'Tony Carlin': 'Host', 'Quinn Duffy': 'Bartender', 'Montell Jordan': 'Himself', 'Doug Williams': 'Band Leader'}" tt0824747,"{'Angelina Jolie': 'Christine Collins', 'Gattlin Griffith': 'Walter Collins', 'Michelle Gunn': 'Sandy', 'Jan Devereaux': 'Operator', 'Erica Grant': 'Operator', 'Antonia Bennett': 'Operator', 'Kerri Randles': 'Operator', 'Frank Wood': 'Ben Harris', 'Morgan Eastwood': 'Girl on Tricycle', 'Madison Hodges': 'Neighborhood Girl', 'John Malkovich': 'Rev. Gustav Briegleb', 'Colm Feore': 'Chief James E. Davis', 'Devon Conti': 'Arthur Hutchins', 'Ric Sarabia': 'Man at Diner', 'J.P. Bumstead': 'Cook'}" tt0119643,"{'Brad Pitt': 'Joe Black / Young Man in Coffee Shop', 'Anthony Hopkins': 'William Parrish', 'Claire Forlani': 'Susan Parrish', 'Jake Weber': 'Drew', 'Marcia Gay Harden': 'Allison', 'Jeffrey Tambor': 'Quince', 'David S. Howard': 'Eddie Sloane', 'Lois Kelly-Miller': 'Jamaican Woman', 'Jahnni St. John': ""Jamaican Woman's Daughter"", 'Richard Clarke': 'Butler', 'Marylouise Burke': 'Lillian', 'Diane Kagan': 'Jennifer', 'June Squibb': 'Helen', 'Gene Canfield': 'Construction Foreman', 'Suzanne Hevner': 'Florist'}" tt0120669,"{'Johnny Depp': 'Raoul Duke', 'Benicio Del Toro': 'Dr. Gonzo', 'Tobey Maguire': 'Hitchhiker', 'Michael Lee Gogin': 'Uniformed Dwarf', 'Larry Cedar': 'Car Rental Agent - Los Angeles', 'Brian Le Baron': 'Parking Attendant (as Brian LeBaron)', 'Katherine Helmond': 'Desk Clerk at Mint Hotel', 'Michael Warwick': 'Bell Boy', 'Craig Bierko': 'Lacerda', 'Tyde Kierney': 'Reporter', 'Mark Harmon': 'Magazine Reporter', 'Tim Thomerson': 'Hoodlum', 'Richard Riehle': 'Dune Buggy Driver', 'Ransom Gates': 'Dune Buggy Passenger', 'Laraine Newman': 'Frog-Eyed Woman'}" tt0110950,"{'Winona Ryder': 'Lelaina Pierce', 'Ethan Hawke': 'Troy Dyer', 'Janeane Garofalo': 'Vickie Miner', 'Steve Zahn': 'Sammy Gray', 'Ben Stiller': 'Michael Grates', 'Swoosie Kurtz': 'Charlane McGregor', ""Harry O'Reilly"": 'Wes McGregor', 'Susan Norfleet': 'Helen Anne Pierce', 'Joe Don Baker': 'Tom Pierce', 'Renée Zellweger': 'Tami (as Renee Zellweger)', 'James Rothenberg': 'Rick', 'John Mahoney': 'Grant Gubler', 'Eric Morgan Stuart': 'Damien (as Eric Stuart)', 'Barry Del Sherman': ""Grant's Producer (as Barry Sherman)"", 'Chelsea Lagos': 'Troy Groupie'}" tt0021884,"{'Colin Clive': 'Henry Frankenstein', 'Mae Clarke': 'Elizabeth', 'John Boles': 'Victor Moritz', 'Boris Karloff': 'The Monster (as Boris Karloff)', 'Edward Van Sloan': 'Doctor Waldman', 'Frederick Kerr': 'Baron Frankenstein', 'Dwight Frye': 'Fritz', 'Lionel Belmore': 'The Burgomaster', 'Marilyn Harris': 'Little Maria'}" tt0095631,"{'Robert De Niro': 'Jack Walsh', 'Charles Grodin': 'Jonathan Mardukas', 'Yaphet Kotto': 'Alonzo Mosely', 'John Ashton': 'Marvin Dorfler', 'Dennis Farina': 'Jimmy Serrano', 'Joe Pantoliano': 'Eddie Moscone', 'Richard Foronjy': 'Tony Darvo', 'Robert Miranda': 'Joey', 'Jack Kehoe': 'Jerry Geisler', 'Wendy Phillips': 'Gail', 'Danielle DuClos': 'Denise', 'Philip Baker Hall': 'Sidney', 'Tom McCleister': 'Red Wood (as Thom McCleister)', 'Mary Gillis': 'Bus Ticket Clerk', 'John Toles-Bey': 'Monroe Bouchet'}" tt0120601,"{'John Cusack': 'Craig Schwartz', 'Cameron Diaz': 'Lotte Schwartz', 'Ned Bellamy': 'Derek Mantini', 'Eric Weinstein': 'Father at Puppet Show', 'Madison Lanc': 'Daughter at Puppet Show', 'Octavia Spencer': 'Woman in Elevator (as Octavia L. Spencer)', 'Mary Kay Place': 'Floris', 'Orson Bean': 'Dr. Lester', 'Catherine Keener': 'Maxine Lund', 'K.K. Dodds': 'Wendy', 'Byrne Piven': 'Captain Mertin', 'Judith Wetzell': 'Tiny Woman', 'John Malkovich': 'John Horatio Malkovich', 'Kevin Carroll': 'Cab Driver', 'Willie Garson': 'Guy in Restaurant'}" tt0034240,"{'Joel McCrea': 'John L. Sullivan', 'Veronica Lake': 'The Girl', 'Robert Warwick': 'Mr. LeBrand', 'William Demarest': 'Mr. Jones', 'Franklin Pangborn': 'Mr. Casalsis', 'Porter Hall': 'Mr. Hadrian', 'Byron Foulger': 'Mr. Valdelle', 'Margaret Hayes': 'Secretary', 'Robert Greig': ""Sullivan's Butler"", 'Eric Blore': ""Sullivan's Valet"", 'Torben Meyer': 'The Doctor', 'Victor Potel': 'Cameraman', 'Richard Webb': 'Radio Man', 'Charles R. Moore': 'Colored Chef (as Charles Moore)', 'Almira Sessions': 'Ursula'}" tt0118928,"{'Pierce Brosnan': 'Harry Dalton', 'Linda Hamilton': 'Rachel Wando', 'Jamie Renée Smith': 'Lauren Wando', 'Jeremy Foley': 'Graham Wando', 'Elizabeth Hoffman': 'Ruth', 'Charles Hallahan': 'Paul Dreyfus', 'Grant Heslov': 'Greg', 'Kirk Trutner': 'Terry Furlong', 'Arabella Field': 'Nancy', 'Tzi Ma': 'Stan', 'Brian Reddy': 'Les Worrell', 'Lee Garlington': 'Dr. Jane Fox', 'Bill Bolender': 'Sheriff Turner', 'Carole Androsky': 'Mary Kelly (as Carol Androsky)', 'Peter Jason': 'Norman Gates'}" tt0082200,"{'John Belushi': 'Ernie Souchak', 'Blair Brown': 'Nell Porter', 'Allen Garfield': 'Howard McDermott (as Allen Goorwitz)', 'Carlin Glynn': 'Sylvia', 'Tony Ganios': 'Max Bernbaum', 'Val Avery': 'Yablonowitz', 'Liam Russell': 'Deke Lewis', 'Everett Smith': 'Fiddle', 'Bill Henderson': 'Train Conductor', 'Bruce Jarchow': 'Hellinger', 'Eddie Schwartz': 'Jimmy', 'Harold Holmes': 'Mr. Feeney', 'Elizabeth Young': 'Mrs. Feeney', 'Ron Dean': 'Plesko', 'Frankie Hill': 'Agatha'}" tt0094138,"{'Casey Siemaszko': 'Jerry Mitchell', 'Annie Ryan': 'Franny Perrins (as Anne Ryan)', 'Richard Tyson': 'Buddy Revell', 'Stacey Glick': 'Brei Mitchell', 'Jonathan Wise': 'Vincent Costello', 'Jeffrey Tambor': 'Mr. Rice', 'Philip Baker Hall': 'Detective Mulvahill', 'John P. Ryan': ""Mr. O'Rourke"", 'Liza Morrow': 'Karen Clarke', 'Scott Tiler': 'Bruce Chalmer', 'Guy Massey': 'Scott Cranston', 'Theron Read': 'Mark Bojeekus', 'Mike Jolly': 'Craig Mattey', 'Charles Macaulay': 'Voytek Dolinski', 'Mitch Pileggi': 'Duke Herman'}" tt0473464,"{'Nikki Reed': 'Shay Bettencourt', 'Jonathan Tucker': 'Jordan Wells', 'Julie Gonzalo': 'Desiree Thomas', ""Michael O'Keefe"": 'Detective Griffin', 'Haviland Morris': 'Julia Wells', 'Dennis Boutsikaris': 'Ben Wells', 'Frank Whaley': 'Wade Chandling', 'Brooke Mayer': 'Trish', 'Alessa Neeck': 'Abbey', 'Christopher Jon Martin': 'Jake Miles (as Christopher Martin)', 'Patricia Lewis Browne': 'Older Woman', 'Billy Powell': 'Chemistry Teacher', 'Thomas Tripiciano': 'Dean Robert Mullen', 'Nick Lang': 'Wide Receiver', 'Ferdinand Jay Smith': 'DA Thomas (as Ferdinand J. Smith)'}" tt0036775,"{'Fred MacMurray': 'Walter Neff', 'Barbara Stanwyck': 'Phyllis Dietrichson', 'Edward G. Robinson': 'Barton Keyes', 'Porter Hall': 'Mr. Jackson', 'Jean Heather': 'Lola Dietrichson', 'Tom Powers': 'Mr. Dietrichson', 'Byron Barr': 'Nino Zachetti', 'Richard Gaines': 'Mr. Norton', 'Fortunio Bonanova': 'Sam Gorlopis', 'John Philliber': 'Joe Pete'}" tt0276751,"{'Hugh Grant': 'Will Freeman', 'Nicholas Hoult': 'Marcus Brewer', 'Sharon Small': 'Christine', 'Madison Cook': 'Imogen', 'Jordan Cook': 'Imogen', 'Nicholas Hutchison': 'John', 'Ryan Speechley': 'Barney', 'Joseph Speechley': 'Barney', 'Toni Collette': 'Fiona Brewer', 'Natalia Tena': 'Ellie (as Nat Gastiain Tena)', 'Laura Kennington': ""Ellie's Friend"", 'Tanika Swaby': ""Ellie's Friend"", 'Peter McNicholl': ""Ellie's Friend"", 'Chris Webster': ""Ellie's Friend (as Christopher Webster)"", 'Ben Ridgeway': 'Lee'}" tt0363547,"{'Sarah Polley': 'Ana', 'Ving Rhames': 'Kenneth', 'Jake Weber': 'Michael', 'Mekhi Phifer': 'Andre', 'Ty Burrell': 'Steve', 'Michael Kelly': 'CJ', 'Kevin Zegers': 'Terry', 'Michael Barry': 'Bart', 'Lindy Booth': 'Nicole', 'Jayne Eastwood': 'Norma', 'Boyd Banks': 'Tucker', 'Inna Korobkina': 'Luda', 'R.D. Reid': 'Glen', 'Kim Poirier': 'Monica', 'Matt Frewer': 'Frank'}" tt0322259,"{'Paul Walker': ""Brian O'Conner"", 'Tyrese Gibson': 'Roman Pearce (as Tyrese)', 'Eva Mendes': 'Monica Fuentes', 'Cole Hauser': 'Carter Verone', 'Ludacris': ""Tej (as Chris 'Ludacris' Bridges)"", 'Thom Barry': 'Agent Bilkins', 'James Remar': 'Agent Markham', 'Devon Aoki': 'Suki', 'Amaury Nolasco': 'Orange Julius', 'Michael Ealy': 'Slap Jack', 'Jin Au-Yeung': 'Jimmy (as Jin Auyeung)', 'Edward Finlay': 'Agent Dunn', 'Mark Boone Junior': 'Detective Whitworth', 'Mo Gallini': 'Enrique (as Matt Gallini)', ""Roberto 'Sanz' Sanchez"": 'Roberto'}" tt0230169,"{'Steve Railsback': 'Ed Gein', 'Carrie Snodgress': 'Augusta W. Gein', 'Carol Mansell': 'Collette Marshall', 'Sally Champlin': 'Mary Hogan', 'Steve Blackwood': 'Brian', 'Nancy Linehan Charles': 'Eleanor', 'Bill Cross': 'George Gein', 'Travis McKenna': 'Ronnie', 'Jan Hoag': 'Irene Hill', 'Brian Evers': 'Henry Gein', 'Pat Skipper': 'Sheriff Jim Stillwell', 'Craig Zimmerman': 'Pete Anderson', 'Nicholas Stojanovich': 'Dale', 'Dylan Kasch': 'Melvin', 'Tish Hicks': 'Leigh Cross'}" tt0081505,"{'Jack Nicholson': 'Jack Torrance', 'Shelley Duvall': 'Wendy Torrance', 'Danny Lloyd': 'Danny', 'Scatman Crothers': 'Hallorann', 'Barry Nelson': 'Ullman', 'Philip Stone': 'Grady', 'Joe Turkel': 'Lloyd', 'Anne Jackson': 'Doctor', 'Tony Burton': 'Durkin', 'Lia Beldam': 'Young Woman in Bath', 'Billie Gibson': 'Old Woman in Bath', 'Barry Dennen': 'Watson', 'David Baxt': 'Forest Ranger 1', 'Manning Redwood': 'Forest Ranger 2', 'Lisa Burns': 'Grady Daughter'}" tt0978764,"{'Emily Browning': 'Babydoll', 'Abbie Cornish': 'Sweet Pea', 'Jena Malone': 'Rocket', 'Vanessa Hudgens': 'Blondie', 'Jamie Chung': 'Amber', 'Carla Gugino': 'Dr. Vera Gorski', 'Oscar Isaac': 'Blue Jones', 'Jon Hamm': 'High Roller / Doctor', 'Scott Glenn': 'Wise Man', 'Richard Cetrone': 'CJ', 'Gerard Plunkett': 'Stepfather', 'Malcolm Scott': 'The Cook', 'Ron Selmour': 'Danforth', 'A.C. Peterson': 'Mayor / Lighter Orderly (as AC Peterson)', 'Revard Dufresne': 'Big Boss Thug / Orderly #3'}" tt1182350,"{'Gemma Jones': 'Helena', 'Pauline Collins': 'Cristal', 'Anthony Hopkins': 'Alfie', 'Rupert Frazer': 'Jogging Partner', 'Kelly Harrison': 'Personal Trainer', 'Naomi Watts': 'Sally', 'Josh Brolin': 'Roy', 'Freida Pinto': 'Dia', 'Eleanor Gecks': 'Rollerblading Friend', 'Antonio Banderas': 'Greg', 'Fenella Woolgar': 'Jane', 'Ewen Bremner': 'Henry Strangler', 'Christian McKay': 'Poker Friend', 'Philip Glenister': 'Poker Friend', 'Jonathan Ryland': 'Poker Friend'}" tt1265990,"{'Leighton Meester': 'Rebecca', 'Minka Kelly': 'Sara Matthews', 'Cam Gigandet': 'Stephen', 'Aly Michalka': 'Tracy', 'Danneel Ackles': 'Irene (as Danneel Harris)', 'Frances Fisher': ""Rebecca's Mom"", 'Tomas Arana': ""Rebecca's Dad"", 'Billy Zane': 'Professor Roberts', 'Nina Dobrev': 'Maria', 'Matt Lanter': 'Jason', 'Kat Graham': 'Kim (as Katerina Graham)', 'Johannes Raassina': 'Band Member', 'Cameron Fisher Brousseau': 'Band Member', 'Evan Michael Brown': 'Band Member', 'Alex Meraz': 'Frat Boy'}" tt1646111,"{'Khomotso Manyaka': 'Chanda', 'Keaobaka Makanyane': 'Esther', 'Harriet Lenabe': 'Mrs. Tafa (as Harriet Manamela)', 'Lerato Mvelase': 'Lillian', 'Tinah Mnumzana': 'Aunt Lizbet', 'Aubrey Poolo': 'Jonah', 'Mapaseka Mathebe': 'Iris', 'Thato Kgaladi': 'Soly', 'Kgomotso Ditshweni': 'Dudu', 'Rami Chuene': 'Aunty Ruth', 'Jerry Marobyane': 'Mr. Pheto', 'Tshepo Emmanuel Nonyane': 'Mr. Lesole', 'Johanna Refilwe Sihlangu': 'Mrs. Lesole', 'Vusi Muzi Given Nyathi': 'Mr. Nylo', 'Patrick Shai': 'Dr. Charles Chilume'}" tt1588337,"{'Lambert Wilson': 'Christian', 'Michael Lonsdale': 'Luc', 'Olivier Rabourdin': 'Christophe', 'Philippe Laudenbach': 'Célestin', 'Jacques Herlin': 'Amédée', 'Loïc Pichon': 'Jean-Pierre', 'Xavier Maly': 'Michel', 'Jean-Marie Frin': 'Paul', 'Abdelhafid Metalsi': 'Nouredine', 'Sabrina Ouazani': 'Rabbia', 'Abdellah Moundy': 'Omar (as Abdallah Moundy)', 'Olivier Perrier': 'Bruno', 'Farid Larbi': 'Ali Fayattia', 'Adel Bencherif': 'Le terroriste', 'Benaïssa Ahaouari': 'Sidi Larbi'}" tt1243957,"{'Johnny Depp': 'Frank Tupelo', 'Angelina Jolie': 'Elise Clifton-Ward', 'Paul Bettany': 'Inspector John Acheson', 'Timothy Dalton': 'Chief Inspector Jones', 'Steven Berkoff': 'Reginald Shaw', 'Rufus Sewell': 'The Englishman', 'Christian De Sica': 'Colonnello Lombardi', 'Alessio Boni': 'Sergente Cerato', 'Daniele Pecci': 'Tenente Narduzzi', 'Giovanni Guidelli': 'Tenente Tommassini', 'Raoul Bova': 'Conte Filippo Gaggia', 'Bruno Wolkowitch': 'Capitaine Courson', 'Marc Ruchmann': 'Brigadier Kaiser', 'Julien Baumgartner': 'Brigadier Ricuort', 'François Vincentelli': 'Brigadier Marion'}" tt0298203,"{'Eminem': ""Jimmy 'B-Rabbit' Smith"", 'Kim Basinger': 'Stephanie Smith', 'Mekhi Phifer': ""David 'Future' Porter"", 'Brittany Murphy': 'Alex', 'Evan Jones': 'Cheddar Bob', 'Omar Benson Miller': 'Sol George', ""De'Angelo Wilson"": 'DJ Iz', 'Eugene Byrd': 'Wink', 'Taryn Manning': 'Janeane', 'Larry Hudson': 'Bouncer', 'Proof': ""Lil' Tic"", 'Mike Bell': 'Shorty Mike', 'DJ Head': 'Battle DJ', 'Michael Shannon': 'Greg Buehl', 'Chloe Greenfield': 'Lily Smith'}" tt1220634,"{'Milla Jovovich': 'Alice', 'Ali Larter': 'Claire Redfield', 'Kim Coates': 'Bennett', 'Shawn Roberts': 'Albert Wesker', 'Sergio Peris-Mencheta': 'Angel', 'Spencer Locke': 'K-Mart', 'Boris Kodjoe': 'Luther', 'Wentworth Miller': 'Chris Redfield', 'Sienna Guillory': 'Jill Valentine', 'Kacey Clarke': 'Crystal Waters (as Kacey Barnfield)', 'Norman Yeung': 'Kim Yong', 'Fulvio Cecere': 'Wendell', 'Raymond Olubawale': 'Axeman (as Ray Olubowale)', 'Christopher Kano': 'Sniper #1', 'Tatsuya Goke': 'Sniper #2'}" tt0249462,"{'Jamie Bell': 'Billy', 'Jean Heywood': 'Grandma', 'Jamie Draven': 'Tony', 'Gary Lewis': 'Dad', 'Stuart Wells': 'Michael', 'Mike Elliot': 'George Watson', 'Billy Fane': 'Mr Braithwaite', 'Nicola Blackwell': 'Debbie', 'Julie Walters': 'Mrs. Wilkinson', 'Carol McGuigan': 'Librarian', 'Joe Renton': 'Gary Poulson', 'Colin MacLachlan': 'Mr. Wilkinson (as Colin Maclachlan)', 'Janine Birkett': ""Billy's Mum"", 'Trevor Fox': 'PC Jeff Peverly', 'Charlie Hardwick': 'Sheila Briggs'}" tt0971209,"{'Steve Zahn': 'Cliff', 'Timothy Olyphant': 'Nick', 'Milla Jovovich': 'Cydney', 'Kiele Sanchez': 'Gina', 'Marley Shelton': 'Cleo', 'Chris Hemsworth': 'Kale', 'Anthony Ruivivar': 'Chronic', 'Dale Dickey': 'Earth Momma', 'Peter Navy Tuiasosopo': 'Supply Guy', 'Wendy Braun': 'Debbie Mason / Clerk', 'Jim Cruz': 'Helicopter Pilot', 'Angela Sun': 'Counter Girl', 'Leandra Gillis': 'TV Anchor', 'Amit Yogev': 'Waiter', 'Carlos Alberto Lopez': 'Camera Samaritan (as Carlos Alberto López)'}" tt0491152,"{'Ginnifer Goodwin': 'Rachel', 'Kate Hudson': 'Darcy', 'Colin Egglesfield': 'Dex', 'John Krasinski': 'Ethan', 'Steve Howey': 'Marcus', 'Ashley Williams': 'Claire', 'Geoff Pierson': 'Dexter Thaler Sr.', 'Jill Eikenberry': 'Bridget Thaler', 'Jonathan Epstein': 'Professor Zigman', 'Leia Thompson': 'Bridal Consultant', 'Sarah Baldwin': 'June', 'Mark La Mura': ""Marcus's Dad"", 'Lindsay Ryan': 'Salesgirl', 'Kirsten Day': 'Pretty Brunette', 'Christopher Peuler': 'Husband'}" tt0421238,"{'Richard Wilson': 'Mike Burns', 'Noah Taylor': ""Brian O'Leary"", 'Jeremy Madrona': 'Asian Prostitute', 'Jae Mamuyac': 'Asian Prostitute', 'Guy Pearce': 'Charlie Burns', 'Mick Roughan': 'Mad Jack Bradshaw', 'Shane Watt': 'John Gordon', 'Ray Winstone': 'Captain Stanley', 'Robert Morgan': 'Sergeant Lawrence', 'David Gulpilil': 'Jacko', 'Bryan Probets': 'Officer Dunn', 'Oliver Ackland': 'Patrick Hopkins', 'Danny Huston': 'Arthur Burns', 'David Vallon': 'Tom Cox', 'Daniel Parker': 'Henry Clark'}" tt1219289,"{'Bradley Cooper': 'Eddie Morra', 'Robert De Niro': 'Carl Van Loon', 'Abbie Cornish': 'Lindy', 'Andrew Howard': 'Gennady', 'Anna Friel': 'Melissa', 'Johnny Whitworth': 'Vernon', 'Tomas Arana': 'Man in Tan Coat', 'Robert John Burke': 'Pierce', 'Darren Goldstein': 'Kevin Doyle', 'Ned Eisenberg': 'Morris Brandt', 'T.V. Carpio': 'Valerie', 'Richard Bekins': 'Hank Atwood', 'Patricia Kalember': 'Mrs. Atwood', 'Cindy Katz': 'Marla Sutton', 'Brian Anthony Wilson': 'Detective (as Brian A. Wilson)'}" tt1217613,"{'Aaron Eckhart': 'Ssgt. Michael Nantz', 'Ramon Rodriguez': '2nd Lt. William Martinez', 'Will Rothhaar': 'Cpl. Lee Imlay', 'Cory Hardrict': 'Cpl. Jason Lockett', 'Jim Parrack': 'LCpl. Peter Kerns', 'Gino Anthony Pesi': 'Cpl. Nick Stavrou', 'Ne-Yo': 'Cpl. Kevin Harris', 'James Hiroyuki Liao': 'LCpl. Steven Mottola', 'Bridget Moynahan': 'Michele', 'Noel Fisher': 'Pfc. Shaun Lenihan', ""Adetokumboh M'Cormack"": 'Corpsman Jibril Adukwu', 'Bryce Cass': 'Hector Rincon', 'Michael Peña': 'Joe Rincon', 'Michelle Rodriguez': 'TSgt. Elena Santos', 'Neil Brown Jr.': 'LCpl. Richard Guerrero'}" tt1174732,"{'Carey Mulligan': 'Jenny Mellor', 'Olivia Williams': 'Miss Stubbs', 'Alfred Molina': 'Jack Mellor', 'Cara Seymour': 'Marjorie', 'William Melling': 'Small Boy', 'Connor Catchpole': 'Small Boy', 'Matthew Beard': 'Graham', 'Peter Sarsgaard': 'David Goldman', 'Amanda Fairbank-Hynes': 'Hattie', 'Ellie Kendrick': 'Tina', 'Dominic Cooper': 'Danny', 'Rosamund Pike': 'Helen', 'Nick Sampson': 'Auctioneer', 'Kate Duchêne': 'Latin Teacher (as Kate Duchene)', 'Bel Parker': 'Small Girl'}" tt0989757,"{'Channing Tatum': 'John Tyree', 'Amanda Seyfried': 'Savannah Curtis', 'Richard Jenkins': 'Mr. Tyree', 'Henry Thomas': 'Tim', 'D.J. Cotrona': 'Noodles', 'Cullen Moss': 'Rooster (Dan Rooney)', 'Gavin McCulley': 'Starks', 'Jose Lucena Jr.': 'Berry (as Jose Lucena)', 'Keith Robinson': 'Captain Stone', 'Scott Porter': 'Randy', 'Leslea Fisher': 'Susan', 'William Howard': 'Daniels', 'David Andrews': 'Mr. Curtis', 'Mary Rachel Quinn': 'Mrs. Curtis (as Mary Rachel Dudley)', 'Bryce Hayes': 'Yellow Shirt'}" tt0450405,"{'John C. Reilly': 'Crepsley', 'Josh Hutcherson': 'Steve', 'Chris Massoglia': 'Darren', 'Jessica Carlson': 'Rebecca', 'Michael Cerveris': 'Mr. Tiny', 'Ray Stevenson': 'Murlaugh', 'Patrick Fugit': 'Evra the Snake Boy', 'Morgan Saylor': 'Annie', 'Don McManus': 'Mr. Shan', 'Colleen Camp': 'Mrs. Shan', 'Ken Watanabe': 'Mr. Tall', 'Salma Hayek': 'Madame Truska', 'Orlando Jones': 'Alexander Ribs', 'Frankie Faison': 'Rhamus Twobellies', 'Willem Dafoe': 'Gavner Purl'}" tt0089560,"{'Cher': 'Rusty Dennis', 'Sam Elliott': 'Gar', 'Eric Stoltz': 'Rocky Dennis', 'Estelle Getty': 'Evelyn', 'Richard Dysart': 'Abe', 'Laura Dern': 'Diana', 'Micole Mercurio': 'Babe', 'Harry Carey Jr.': 'Red', 'Dennis Burkley': 'Dozer', 'Lawrence Monoson': 'Ben', 'Ben Piazza': 'Mr. Simms', 'L. Craig King': 'Eric', 'Alexandra Powers': 'Lisa', 'Kelly Jo Minter': 'Lorrie (as Kelly Minter)', 'Joe Unger': '1st Boyfriend'}" tt0079367,"{'Steve Martin': 'Navin / Cat Juggler (as Pig Eye Jackson also)', 'Bernadette Peters': 'Marie', 'Catlin Adams': 'Patty Bernstein', 'Mabel King': 'Mother', 'Richard Ward': 'Father', 'Dick Anthony Williams': 'Taj', 'Bill Macy': 'Stan Fox', 'M. Emmet Walsh': 'Madman', ""Dick O'Neill"": 'Frosty', 'Maurice Evans': 'Hobart', 'Helena Carroll': 'Hester', 'Renn Woods': 'Elvira (as Ren Wood)', 'Pepe Serna': 'Punk #1', 'Sonny Terry': 'Blues Singer', 'Brownie McGhee': 'Blues Singer (as Brownie McGee)'}" tt0204946,"{'Kirsten Dunst': 'Torrance Shipman', 'Eliza Dushku': 'Missy Pantone', 'Jesse Bradford': 'Cliff Pantone', 'Gabrielle Union': 'Isis', 'Clare Kramer': 'Courtney', 'Nicole Bilderback': 'Whitney', 'Tsianina Joelson': 'Darcy', 'Rini Bell': 'Kasey', 'Nathan West': 'Jan', 'Huntley Ritter': 'Les', 'Shamari Fears': 'Lava', 'Natina Reed': 'Jenelope', 'Brandi Williams': 'Lafred', 'Richard Hillman': 'Aaron', 'Lindsay Sloane': 'Big Red'}" tt1545098,"{'Ryan Brown': 'Superfan with puka shell necklace', 'Michael Chabes': 'Fan', 'Kenny Chesney': 'Himself'}" tt1313092,"{'James Frecheville': ""Joshua 'J' Cody"", 'Bryce Lindemann': 'Paramedic #1', 'Paul Smits': 'Paramedic #2', 'Jacki Weaver': ""Janine 'Smurf' Cody"", 'Joel Edgerton': ""Barry 'Baz' Brown"", 'Luke Ford': 'Darren Cody', 'Sullivan Stapleton': 'Craig Cody', 'Mirrah Foulkes': 'Catherine Brown', 'Anthony Ahern': 'Armed Robbery Detective', 'Justin Rosniak': 'Detective Randall Roache', 'Michael Vice': 'Hood #1', 'Chris Weir': 'Hood #2', 'Laura Wheelwright': 'Nicky Henry', 'Sarah Nguyen': 'Waitress', 'Lucia Cai': 'Cashier'}" tt1431181,"{'Jim Broadbent': 'Tom', 'Ruth Sheen': 'Gerri', 'Lesley Manville': 'Mary', 'Oliver Maltman': 'Joe', 'Peter Wight': 'Ken', 'David Bradley': 'Ronnie', 'Martin Savage': 'Carl', 'Karina Fernandez': 'Katie', 'Michele Austin': 'Tanya', 'Phil Davis': 'Jack', 'Imelda Staunton': 'Janet', 'Stuart McQuarrie': ""Tom's Colleague"", 'Eileen Davies': 'Mourner', 'Mary Jo Randle': 'Mourner', 'Ben Roberts': 'Mourner'}" tt0775489,"{'Jean-Claude Donda': 'The Illusionist / French Cinema Manager (voice)', 'Eilidh Rankin': 'Alice (voice)', 'Duncan MacNeil': 'Additional Voices (voice)', 'Raymond Mearns': 'Additional Voices (voice)', 'James T. Muir': 'Additional Voices (voice)', 'Tom Urie': 'Additional Voices (voice)', 'Paul Bandey': 'Additional Voices (voice)'}" tt1371155,"{'Sally Hawkins': ""Rita O'Grady"", 'Andrea Riseborough': 'Brenda', 'Jaime Winstone': 'Sandra', 'Lorraine Stanley': 'Monica', 'Nicola Duffett': 'Eileen', 'Geraldine James': 'Connie', 'Bob Hoskins': 'Albert Passingham', 'Matthew Aubrey': 'Brian (as Matt Aubrey)', 'Daniel Mays': ""Eddie O'Grady"", 'Roger Lloyd Pack': 'George (as Roger Lloyd-Pack)', 'Phil Cornwell': 'Dave', 'Karen Seacombe': 'Marge', 'Thomas Arnold': 'Martin', 'Sian Scott': ""Sharon O'Grady"", 'Robbie Kay': ""Graham O'Grady""}" tt0804497,"{'Keir Gilchrist': 'Craig', 'Dana DeVestern': 'Alyssa (as Dana De Vestern)', 'Lauren Graham': 'Lynn', 'Jim Gaffigan': 'George', 'Karen Chilton': 'Nurse Harper', 'Zach Galifianakis': 'Bobby', 'Aasif Mandvi': 'Dr. Mahmoud', 'Jared Goldstein': 'Ronny', 'Alan Aisenberg': 'Scuggs', 'Zoë Kravitz': 'Nia', 'Thomas Mann': 'Aaron', 'Jeremy Davies': 'Smitty', 'Rosalyn Coleman': ""Monica / 'Under Pressure' Nurse #1"", 'Viola Davis': 'Dr. Eden Minerva', 'Lou Myers': 'Jimmy'}" tt1645089,"{'Matt Damon': 'Himself - Narrator (voice)', 'Gylfi Zoega': 'Himself - Professor of Economics, University of Iceland', 'Andri Snær Magnason': 'Himself - Writer & Filmmaker', 'Sigridur Benediktsdottir': 'Herself - Special Investigative Committee, Icelandic Parliament', 'Paul Volcker': 'Himself - Former Federal Reserve Chairman', 'Dominique Strauss-Kahn': 'Himself - Managing Director, International Monetary Fund', 'George Soros': 'Himself - Chairman, Soros Fund Management', 'Barney Frank': 'Himself - Chairman, Financial Services Committee', 'David McCormick': 'Himself - Under Secretary of the Treasury, Bush Administration', 'Scott Talbott': 'Himself - Chief Lobbyist, Financial Services Roundtable', 'Andrew Sheng': 'Himself - Chief Adviser, China Banking Regulatory Commission', 'Hsien Loong Lee': 'Himself - Prime Minister, Singapore', 'Christine Lagarde': 'Herself - Finance Minister, France', 'Gillian Tett': 'Herself - U.S. Managing Editor, The Financial Times', 'Nouriel Roubini': 'Himself - Professor, NYU Business School'}" tt0110074,"{'Tim Robbins': 'Norville Barnes', 'Jennifer Jason Leigh': 'Amy Archer', 'Paul Newman': 'Sidney J. Mussburger', 'Charles Durning': 'Waring Hudsucker', 'John Mahoney': 'Chief', 'Jim True-Frost': 'Buzz (as Jim True)', 'Bill Cobbs': 'Moses', 'Bruce Campbell': 'Smitty', 'Harry Bugin': 'Aloysius', 'John Seitz': 'Benny', 'Joe Grifasi': 'Lou', 'Roy Brocksmith': 'Board Member', 'John Wylie': 'Board Member', 'I.M. Hobson': 'Board Member', 'Gary Allen': 'Board Member'}" tt0117128,"{'Trace Beaulieu': 'Dr. Clayton Forrester / Crow T. Robot', 'Michael J. Nelson': 'Mike Nelson', 'Jim Mallon': 'Gypsy', 'Kevin Murphy': 'Tom Servo', 'John Brady': 'Benkitnorf'}" tt1584016,"{'Nev Schulman': ""Himself (as Yaniv 'Nev' Schulman)"", 'Ariel Schulman': ""Himself (as Ariel 'Rel' Schulman)"", 'Henry Joost': 'Himself', 'Angela Wesselman-Pierce': 'Herself (as Angela Wesselman)', 'Melody C. Roscher': 'Herself', 'Wendy Whelan': 'Dancer: Morphoses', 'Craig Hall': 'Dancer: Morphoses', 'Tiler Peck': 'Dancer: Morphoses', 'Drew Jacoby': 'Dancer: Morphoses', 'Rubi Pronk': 'Dancer: Morphoses', 'Adrian Danchig-Waring': 'Dancer: Morphoses', 'Blake Alexandros': 'Nando'}" tt1588170,"{'Byung-Hun Lee': 'Kim Soo-hyeon', 'Min-sik Choi': 'Jang Kyung-chul', 'In-seo Kim': 'Se-jung', 'Joon-Hyuk Lee': 'Agent (as Lee Joon-Hyeok)', 'Bo-ra Nam': ""Section chief's daughter"", 'Gook-hwan Jeon': 'Squad Chief Jang', 'Ho-jin Chun': 'Section Chief Oh', 'Moo-Seong Choi': 'Tae-joo', 'Kap-su Kim': 'Planning team deputy head', 'Tae-goo Eom': 'Detective 4', 'San-ha Oh': 'Joo-yeon', 'Seung-ah Yoon': ""The Cannibal's Girlfriend"", 'Seung-Ri Ha': 'Female high school student at harbor', 'Chae-young Yoon': 'Nurse Han Song-i', 'Seo-yeon Park': 'Woman at pension (as Park Seo-Yeon)'}" tt1440728,"{'George Clooney': 'Jack / Edward', 'Irina Björklund': 'Ingrid (as Irina Bjorklund)', 'Lars Hjelm': 'Hunter #1', 'Björn Granath': 'Hunter #2', 'Johan Leysen': 'Pavel', 'Paolo Bonacelli': 'Father Benedetto', 'Giorgio Gobbi': 'Man on Vespa', 'Silvana Bosi': 'Old Cheese Vendor', 'Thekla Reuten': 'Mathilde', 'Guido Palliggiano': 'Waiter (Market)', 'Samuel Vauramo': 'Young Swedish Man (as Samuli Vauramo)', 'Antonio Rampino': 'Postmaster', 'Violante Placido': 'Clara', 'Filippo Timi': 'Fabio', 'Ilaria Cramerotti': 'Hooker #2'}" tt1135084,"{'Chris Brown': 'Jesse Attica', 'Hayden Christensen': 'A.J.', 'Matt Dillon': 'Jack Welles', 'Michael Ealy': 'Jake Attica', 'Idris Elba': 'Gordon Jennings', 'Steve Harris': 'Lt. Carver', 'T.I.': ""Ghost (as Tip 'T.I.' Harris)"", 'Jay Hernandez': 'Eddie Hatcher', 'Johnathon Schaech': 'Scott', 'Paul Walker': 'John Rahway', 'Marianne Jean-Baptiste': 'Naomi', 'Gaius Charles': 'Max', 'Gideon Emery': 'Sergei', 'Zulay Henao': 'Monica', 'Glynn Turman': 'Chief Detective Duncan'}" tt1415283,"{'Maggie Gyllenhaal': 'Isabel Green', 'Oscar Steer': 'Vincent Green', 'Asa Butterfield': 'Norman Green', 'Lil Woods': 'Megsie Green', 'Eros Vlahos': 'Cyril Gray', 'Rosie Taylor-Ritson': 'Celia Gray', 'Daniel Mays': 'Blenkinsop', 'Rhys Ifans': 'Phil Green', 'Maggie Smith': 'Mrs Docherty', 'Sinead Matthews': 'Miss Topsey', 'Katy Brand': 'Miss Turvey', 'Emma Thompson': 'Nanny McPhee', 'Bill Bailey': 'Farmer Macreadie', 'Ewan McGregor': 'Mr. Green', 'Sam Kelly': 'Mr. Docherty'}" tt1438254,"{'Zac Efron': 'Charlie St. Cloud', 'Charlie Tahan': 'Sam St. Cloud', 'Amanda Crew': 'Tess Carroll', 'Augustus Prew': 'Alistair Woolley', 'Donal Logue': 'Tink Weatherbee', 'Kim Basinger': 'Claire St. Cloud', 'Ray Liotta': 'Florio Ferrente', 'Dave Franco': 'Sully', 'Matt Ward': 'Connors', 'Miles Chalmers': 'Latham', 'Jesse Wheeler': 'Greene Student', 'Desiree Zurowski': 'Carla Ferrente', 'Adrian Hough': 'Ben Carroll', 'Jill Teed': 'Grace Carroll', 'Valerie Tian': 'Girl in Toy Store'}" tt1375670,"{'Adam Sandler': 'Lenny Feder', 'Kevin James': 'Eric Lamonsoff', 'Chris Rock': 'Kurt McKenzie', 'David Spade': 'Marcus Higgins', 'Rob Schneider': 'Rob Hilliard', 'Salma Hayek': 'Roxanne Chase-Feder (as Salma Hayek Pinault)', 'Maria Bello': 'Sally Lamonsoff', 'Maya Rudolph': 'Deanne McKenzie', 'Joyce Van Patten': 'Gloria', 'Ebony Jo-Ann': 'Mama Ronzoni', 'Di Quon': 'Rita', 'Steve Buscemi': 'Wiley', 'Colin Quinn': 'Dickie Bailey', 'Tim Meadows': 'Malcolm', 'Madison Riley': 'Jasmine Hilliard'}" tt0020629,"{'Louis Wolheim': 'Kat', 'Lew Ayres': 'Paul (as Lewis Ayres)', 'John Wray': 'Himmelstoss', 'Arnold Lucy': 'Kantorek', 'Ben Alexander': 'Kemmerich (as Kemmerick)', 'Scott Kolk': 'Leer', 'Owen Davis Jr.': 'Peter', 'Walter Rogers': 'Behn (as Walter Browne Rogers)', 'William Bakewell': 'Albert', 'Russell Gleason': 'Mueller', 'Richard Alexander': 'Westhus', 'Harold Goodwin': 'Detering', 'Slim Summerville': ""Tjaden (as 'Slim' Summerville)"", 'G. Pat Collins': 'Bertinck (as Pat Collins)', 'Beryl Mercer': ""Paul's Mother""}" tt0265298,"{'Frankie Muniz': 'Jason Shepherd', 'Paul Giamatti': 'Marty Wolf', 'Amanda Bynes': 'Kaylee', 'Amanda Detmer': 'Monty Kirkham', 'Donald Faison': 'Frank Jackson', 'Sandra Oh': 'Mrs. Phyllis Caldwell', 'Russell Hornsby': 'Marcus Duncan', 'Michael Bryan French': 'Harry Shepherd', 'Christine Tucci': 'Carol Shepherd', 'Lee Majors': 'Vince', ""Sean O'Bryan"": 'Leo', 'Amy Hill': 'Joscelyn Davis', 'John Cho': ""Dustin 'Dusty' Wong"", 'Matthew Frauman': 'Lester Golub', 'Don Yesso': 'Rocco Malone'}" tt1121977,"{'Alexandria M. Salling': 'Karen (age 14) (as Alexandria Salling)', 'Connor Kramme': 'Tom (age 14)', 'Annette Bening': 'Karen', 'Eileen Ryan': 'Nora', 'Samuel L. Jackson': 'Paul', 'Naomi Watts': 'Elizabeth', 'Cherry Jones': 'Sister Joanne', 'Kerry Washington': 'Lucy', 'David Ramsey': 'Joseph', ""Kay D'Arcy"": ""Karen's Hydrotherapy Patient"", 'Bradford Alex': 'Physical Therapist', 'Jimmy Smits': 'Paco', 'Elpidia Carrillo': 'Sofia', 'Simone Lopez': 'Cristi', 'Carla Gallo': 'Tracy'}" tt1053424,"{'Jude Law': 'Remy', 'Forest Whitaker': 'Jake', 'Alice Braga': 'Beth', 'Liev Schreiber': 'Frank', 'Carice van Houten': 'Carol', 'Chandler Canterbury': 'Peter', 'Joe Pingue': 'Ray', 'Liza Lapira': 'Alva', 'Tiffany Espensen': 'Little Alva', 'Yvette Nicole Brown': 'Rhodesia', 'RZA': 'T-Bone', 'Wayne Ward': 'John', 'Tanya Clarke': 'Hooker', 'Max Turnbull': 'Larry the Lung', 'Howard Hoover': 'Salesman'}" tt1226273,"{'Mel Gibson': 'Craven', 'Ray Winstone': 'Jedburgh', 'Danny Huston': 'Jack Bennett', 'Bojana Novakovic': 'Emma Craven', 'Shawn Roberts': 'Burnham', 'David Aaron Baker': 'Millroy', 'Jay O. Sanders': 'Whitehouse', ""Denis O'Hare"": 'Moore', 'Damian Young': 'Senator Jim Pine', 'Caterina Scorsone': 'Melissa', 'Frank Grillo': 'Agent One', 'Wayne Duvall': 'Chief of Police', 'Gbenga Akinnagbe': 'Detective Darcy Jones', 'Gabrielle Popa': 'Young Emma (as Maria Gabrielle Popa)', 'Paul Sparks': 'Northampton Police Detective'}" tt0369735,"{'Jennifer Lopez': 'Charlie', 'Jane Fonda': 'Viola Fields', 'Michael Vartan': 'Dr. Kevin Fields', 'Wanda Sykes': 'Ruby', 'Adam Scott': 'Remy', 'Monet Mazur': 'Fiona', 'Annie Parisse': 'Morgan', 'Will Arnett': 'Kit', 'Elaine Stritch': 'Gertrude', 'Stephen Dunham': 'Dr. Paul Chamberlain', 'Randee Heller': 'Beverly Hills Dog Owner', 'Mark Moses': 'Coffee Shop Customer', 'Tomiko Fraser': 'Coffee Shop Clerk', 'Rochelle Flexer': ""Dr. Patel's Nurse"", 'Wayne Nickel': 'George'}" tt0103919,"{'Virginia Madsen': 'Helen Lyle', 'Tony Todd': 'The Candyman / Daniel Robitaille', 'Xander Berkeley': 'Trevor Lyle', 'Kasi Lemmons': ""Bernadette 'Bernie' Walsh"", 'Vanessa Williams': 'Anne-Marie McCoy', 'DeJuan Guy': 'Jake', 'Marianna Elliott': 'Clara (as Marianna Eliott)', 'Ted Raimi': 'Billy', 'Ria Pavia': 'Monica', 'Mark Daniels': 'Student', 'Lisa Ann Poggi': 'Diane', 'Adam Philipson': 'Danny', 'Eric Edwards': 'Harold', 'Carolyn Lowery': 'Stacey', 'Barbara Alston': 'Henrietta Mosely'}" tt0335266,"{'Scarlett Johansson': 'Charlotte', 'Bill Murray': 'Bob Harris', 'Akiko Takeshita': 'Ms. Kawasaki', 'Kazuyoshi Minamimagoe': 'Press Agent', 'Kazuko Shibata': 'Press Agent', 'Take': 'Press Agent', 'Ryuichiro Baba': 'Concierge', 'Akira Yamaguchi': 'Bellboy', 'Catherine Lambert': 'Jazz Singer', 'François du Bois': 'Sausalito Piano (as Francois du Bois)', 'Tim Leffman': 'Sausalito Guitar', 'Gregory Pekar': 'American Businessman #1', 'Richard Allen': 'American Businessman #2', 'Giovanni Ribisi': 'John', 'Diamond Yukai': 'Commercial Director (as Yutaka Tadokoro)'}" tt0068699,"{'Clint Eastwood': 'The Stranger', 'Verna Bloom': 'Sarah Belding', 'Marianna Hill': 'Callie Travers (as Mariana Hill)', 'Mitchell Ryan': 'Dave Drake', 'Jack Ging': 'Morgan Allen', 'Stefan Gierasch': 'Mayor Jason Hobart', 'Ted Hartley': 'Lewis Belding', 'Billy Curtis': 'Mordecai', 'Geoffrey Lewis': 'Stacey Bridges', 'Scott Walker': 'Bill Borders', 'Walter Barnes': 'Sheriff Sam Shaw', 'Paul Brinegar': 'Lutie Naylor', 'Richard Bull': 'Asa Goodwin', 'Robert Donner': 'Preacher', 'John Hillerman': 'Bootmaker'}" tt0492492,"{'Melinda Page Hamilton': 'Amy', 'Bryce Johnson': 'John', 'Geoff Pierson': 'Dad', 'Colby French': 'Ed', 'Jack Plotnick': 'Dougie', 'Bonita Friedericy': 'Mom / Wrestling Girl', 'Brian Posehn': 'Randy', 'Morgan Murphy': 'Linda', 'Steve Agee': 'Carl', 'Lisa Salzano': 'Wrestling Girl', 'Candiss Cogdill': 'Wrestling Girl', 'Harvey J. Alperin': 'Principal', 'Ernest Misko': 'Priest (as Ernie Misko)', 'Rebecca Avery': 'Rest Area Mom', 'Kira Burri': 'Rest Area Girl'}" tt1112782,"{'Rade Serbedzija': 'Nicky / Victor (as Rade Sherbedgia)', 'Morgan Freeman': 'Ripley', 'Robert Forster': 'Lt. Weber', 'Corey Johnson': 'Voutiritsas', 'Antonio Banderas': 'Gabriel', 'Gerrit Vooren': 'Bakker', 'Charles Venn': 'Transit Cop #1 (as Chucky Venn)', 'Atanas Srebrev': 'Transit Cop #2', 'Darrell Las Quevas': 'Transit Cop #3', 'Tom Hardy': 'Michaels', 'Ivan Petrushinov': 'Émigré #1', 'Victor Boichev': 'Émigré #2 (as Victor Boytchev)', 'Nickolay Hadjiminev': 'Émigré #3', 'Mariana Stansheva': 'Madame Irina (as Mariana Stanisheva)', 'Stefan Shterev': 'Giorgi'}" tt1151359,"{'Edward Norton': 'Bill Kincaid / Brady Kincaid', 'Lucy DeVito': 'Anne Greenstein', 'Kent Jude Bernard': 'Philosophy Student', 'Amelia Campbell': 'Maggie Harmon', 'Tim Blake Nelson': 'Bolger', 'Randal Reeder': 'Shaver', 'Leo Fabian': 'Waddell', 'Pruitt Taylor Vince': 'Big Joe Sharpe', 'Tina Parker': 'Sharon', 'Susan Sarandon': 'Daisy', 'Ty Burrell': 'Professor Sorenson', 'Lee Wilkof': 'Professor Levy', 'Melanie Lynskey': 'Colleen', 'Josh Pais': 'Ken Feinman', 'Lisa Benavides-Nelson': 'Suzie Feinman'}" tt0884224,"{'John Cusack': 'Hauser', 'Hilary Duff': 'Yonica Babyyeah', 'Marisa Tomei': 'Natalie Hegalhuzen', 'Joan Cusack': 'Marsha Dillon', 'Dan Aykroyd': 'Mr. Vice President', 'Sergej Trifunovic': 'Ooq-Mi-Fay Taqnufmini', 'Ned Bellamy': 'Ooq-Yu-Fay Taqnufmini / Zubleh', 'John McLaughlin': 'Himself', 'Montel Williams': 'GuideStar Voice (voice)', 'Ben Kingsley': 'Walken / The Viceroy', 'Lyubomir Neikov': 'Omar Sharif (as Lubomir Neikov)', 'Nikolay Stanoev': 'Bhodi Bhundhang (as Nikolai Stanoev)', 'George Zlatarev': 'Director (as Georgi Zlatarev)', 'Bashar Rahal': 'Video Guy #1', 'Velislav Pavlov': 'Video Guy #2 (as Vesilav Pavlov)'}" tt0104377,"{'Drew Barrymore': 'Anita Minteer', 'Robert Greenberg': 'Mr. Sheets', 'Rodney Harvey': 'Tom', 'Jeremy Davies': 'Bill', 'Dan Eisenstein': 'Chuck', 'Joe Dallesandro': 'Rooney', 'Willow Tipton': 'School Girl', 'James Le Gros': 'Howard (as James LeGros)', 'Ione Skye': 'Joy', 'James Oseland': 'Sally', 'Thomas E. Weyer': 'Guard', 'Billy Drago': 'Hank Fulton', 'Tom Smith-Alden': 'Parole Officer #1', 'James Wheaton': 'Parole Officer #2', 'Gerald Lynn Walker': 'Parole Officer #3'}" tt0362590,"{'Matt Dillon': 'David Walsh', 'Steve Zahn': 'Jack', 'Christina Applegate': 'Sara Goodwin', 'Andrea Bendewald': 'Wendy', 'Jay Leggett': 'Dorff', 'David Pasquesi': 'Kyle Lacopa', 'Peter Jason': 'Bill Gartin', 'Paul Dooley': 'Reverend Ben Goodwin', 'Noel Gugliemi': 'Chicken (as Noel Guglielmi)', 'Dave Foley': 'Eric', 'Renee Albert': 'Martha', 'Enrique Almeida': 'Ruben', 'Mark Beltzman': 'Hank', 'Brian Blondell': 'Paulo, the Waiter', 'John Timothy Botka': 'Yuppie'}" tt1186367,"{'Rain': 'Raizo', 'Joon Lee': 'Teenage Raizo', 'Jonathan Chan-Pensley': 'Yakuza Henchman', 'Ill-Young Kim': 'Yakuza Mohawk', 'Yuki Iwamoto': 'Yakuza Couch', 'Ben Miles': 'Maslow', 'Naomie Harris': 'Mika', 'Sung Kang': 'Hollywood', 'Linh Dan Pham': 'Pretty Ninja (as Linh-Dan Pham)', 'Fang Yu': 'Laundromat Manager (as Yu Fang)', 'Adriana Altaras': 'Landlady', 'Shô Kosugi': 'Ozunu (as Sho Kosugi)', 'Kylie Goldstein': 'Young Kiriko (as Kylie Liya Goldstein)', 'Sungwoong Yoon': 'Young Raizo', 'Eleonore Weisgerber': 'Mrs. Sabatin'}" tt0339727,"{'Rachael Leigh Cook': 'Dori Lawrence', 'Jonathan Tucker': 'Mark Deloach', 'Agnes Bruckner': ""Sue 'of the Dubervilles' Dubois"", 'Val Kilmer': 'Staff Sergeant Skeer', 'Joe Mantegna': 'Gil Deloach', 'Carrie Fisher': 'Mrs. Dubois', 'Diane Venora': 'Mrs. Hengen', 'Ed Begley Jr.': 'Father Concoff', 'Michael Godere': 'Gregory Tripodi (as Michael Goduti)', 'Daniel Franzese': 'Danny Tripodi', 'Zena Grey': 'Gina Deloach', 'André Vippolis': ""Dori's Agent, Ricky (as Andre Vippolis)"", 'Paul Le Mat': ""Dori's Internist"", 'Bridget Barkan': 'Francine', 'Billy Lush': 'Nando'}" tt0460732,"{'Marsha Thomason': 'Rachel', 'Mena Suvari': 'Vanessa', 'Callum Blue': 'Charlie', 'Mark Pellegrino': 'Tom', 'Roz Witt': 'Lucy', 'Andrew Lee Potts': 'Mike', 'Mike Vogel': 'Danny', 'Breckin Meyer': 'Dylan', 'Sonya Walger': 'Gloria', 'Orlando Seale': 'Mark', 'Brian J. Watson': 'Porn Star', 'Katherine Heigl': 'Laura', 'Daz Crawford': 'Steve', 'Andrew Ableson': 'John', 'Mark Dymond': 'David'}" tt0448564,"{'Susan Sarandon': 'Sophie', 'Sam Neill': 'Craig', 'Emily Blunt': 'Mara', ""Charles 'Bud' Tingwell"": 'Sam (as Bud Tingwell)', 'William McInnes': 'Jimmy', 'Georgie Parker': 'Jen', 'Terry Norris': 'Magistrate', 'Joanna Hunt-Prokhovnik': 'Elly', 'Lauren Mikkor': 'Ruby', 'Heather Mitchell': 'Rina', 'Jill Forster': 'Helen', 'Joelene Crnogorac': 'Anastasia', 'Geneviève Picot': ""Mara's Nurse"", 'Carolyn Bock': ""Sophie's Nurse"", 'Alethea McGrath': 'Maggie'}" tt0800241,"{'Woody Harrelson': 'Roy', 'Emily Mortimer': 'Jessie', 'Ben Kingsley': 'Grinko', 'Kate Mara': 'Abby', 'Eduardo Noriega': 'Carlos Ximénez', 'Thomas Kretschmann': 'Kolzak', 'Etienne Chicot': 'Frenchman', 'Mac McDonald': 'Minister', 'Colin Stinton': 'Embassy Official', 'Perlis Vaisieta': 'Manager Hotel Pushkin', 'Mindaugas Papinigis': 'Young Detective', 'Mindaugas Capas': 'Military Officer', 'Sonata Visockaite': 'Female Train Attendant #1', 'Larisa Kalpokaite': 'Female Train Attendant #2', 'Valentinas Krulikovskis': 'Young Waiter'}" tt0362506,"{'Lisa Blount': 'Chrystal', 'Billy Bob Thornton': 'Joe', 'Kamron Ross Stacey': 'Toddler', 'David Rhodes': 'Young Man', 'Christopher Davidson': 'Football Player', 'Max Kasch': 'Shorty', 'Grace Zabriskie': 'Gladys', 'Richard J. Mooney': 'Grandaddy', 'Harry Lennix': 'Kalid', 'Johnny Galecki': 'Barry', 'Kathryn Howell': 'Miss Mabel', 'Walton Goggins': 'Larry', 'Colin Fickes': 'Hog', 'Harry Dean Stanton': 'Pa Da', 'Jamie James': 'Guitar Player'}" tt0105435,"{'Jo Marr': 'College-Aged Cosmo (as Jojo Marr)', 'Gary Hershberger': 'College-Aged Bishop', 'Robert Redford': 'Bishop', 'Sidney Poitier': 'Crease', 'David Strathairn': 'Whistler', 'Dan Aykroyd': 'Mother', 'River Phoenix': 'Carl', 'Bodhi Elfman': 'Centurion S&L Night Guard', 'Denise Dowse': 'Bank Teller', 'Hanyee': 'Bank Secretary', 'Timothy Busfield': 'Dick Gordon', 'Eddie Jones': 'Buddy Wallace', 'Time Winters': 'Homeless Man', 'Mary McDonnell': 'Liz', 'Jun Asai': 'Piano Prodigy'}" tt0087262,"{'David Keith': ""Andrew 'Andy' McGee"", 'Drew Barrymore': ""Charlene 'Charlie' McGee"", 'Freddie Jones': 'Doctor Joseph Wanless', 'Heather Locklear': ""Victoria 'Vicky' Tomlinson McGee"", 'Martin Sheen': 'Captain Hollister', 'George C. Scott': 'John Rainbird', 'Art Carney': 'Irv Manders', 'Louise Fletcher': 'Norma Manders', 'Moses Gunn': 'Doctor Pynchot', 'Antonio Fargas': 'Taxi Driver', 'Drew Snyder': 'Orville Jamieson', 'Curtis Credel': 'Bates', 'Keith Colbert': 'Mayo', 'Dick Warlock': 'Knowles (as Richard Warlock)', 'Jeff Ramsey': 'Steinowitz'}" tt0088128,"{'Molly Ringwald': 'Samantha', 'Justin Henry': 'Mike Baker', 'Michael Schoeffling': 'Jake', 'Haviland Morris': 'Caroline', 'Gedde Watanabe': 'Long Duk Dong', 'Anthony Michael Hall': 'Geek', 'Paul Dooley': 'Jim Baker', 'Carlin Glynn': 'Brenda Baker', 'Blanche Baker': 'Ginny', 'Edward Andrews': 'Howard', 'Billie Bird': 'Dorothy', 'Carole Cook': 'Helen', 'Max Showalter': 'Fred', 'Liane Curtis': 'Randy', 'John Cusack': 'Bryce'}" tt0104070,"{'Meryl Streep': 'Madeline Ashton Menville', 'Bruce Willis': 'Dr. Ernest Menville', 'Goldie Hawn': 'Helen Sharp', 'Isabella Rossellini': 'Lisle Von Rhuman', 'Ian Ogilvy': 'Chagall', 'Adam Storke': 'Dakota', 'Nancy Fish': 'Rose', 'Alaina Reed-Hall': 'Psychologist (as Alaina Reed Hall)', 'Michelle Johnson': 'Anna', 'Mary Ellen Trainor': 'Vivian Adams', 'William Frankfather': 'Mr. Franklin', 'John Ingle': 'Eulogist', 'Clement von Franckenstein': 'Opening Man', 'Petrea Burchard': 'Opening Woman', 'Jim Jansen': 'Second Man'}" tt0088846,"{'Jonathan Pryce': 'Sam Lowry', 'Robert De Niro': 'Harry Tuttle', 'Katherine Helmond': 'Mrs. Ida Lowry', 'Ian Holm': 'Mr. Kurtzmann', 'Bob Hoskins': 'Spoor', 'Michael Palin': 'Jack Lint', 'Ian Richardson': 'Mr. Warrenn', 'Peter Vaughan': 'Mr. Helpmann', 'Kim Greist': 'Jill Layton', 'Jim Broadbent': 'Dr. Jaffe', 'Barbara Hicks': 'Mrs. Terrain', 'Charles McKeown': 'Lime', ""Derrick O'Connor"": 'Dowser', 'Kathryn Pogson': 'Shirley', 'Bryan Pringle': 'Spiro'}" tt0084707,"{'Meryl Streep': 'Sophie', 'Kevin Kline': 'Nathan', 'Peter MacNicol': 'Stingo', 'Rita Karin': 'Yetta', 'Stephen D. Newman': 'Larry', 'Greta Turken': 'Leslie Lapidus', 'Josh Mostel': 'Morris Fink', 'Marcell Rosenblatt': 'Astrid Weinstein', 'Moishe Rosenfeld': 'Moishe Rosenblum', 'Robin Bartlett': 'Lillian Grossman', 'Eugene Lipinski': 'Polish Professor', 'John Rothman': 'Librarian', 'Joseph Leon': 'Dr. Blackstock', 'David Wohl': 'English Teacher', 'Nina Polan': 'Woman in English Class'}" tt0128853,"{'Tom Hanks': 'Joe Fox', 'Meg Ryan': 'Kathleen Kelly', 'Greg Kinnear': 'Frank Navasky', 'Parker Posey': 'Patricia Eden', 'Jean Stapleton': 'Birdie Conrad', 'Steve Zahn': 'George Pappas', 'Heather Burns': 'Christina Plutzker', 'Dave Chappelle': 'Kevin Jackson', 'Dabney Coleman': 'Nelson Fox', 'John Randolph': 'Schuyler Fox', 'Hallee Hirsh': 'Annabelle Fox', 'Jeffrey Scaperrotta': 'Matt Fox', 'Cara Seymour': 'Gillian Quinn', 'Katie Finneran': 'Maureen, the Nanny', 'Michael Badalucco': 'Charlie'}" tt0396269,"{'Owen Wilson': 'John Beckwith', 'Vince Vaughn': 'Jeremy Grey', 'Christopher Walken': 'Secretary Cleary', 'Rachel McAdams': 'Claire Cleary', 'Isla Fisher': 'Gloria Cleary', 'Jane Seymour': 'Kathleen Cleary', 'Ellen Albertini Dow': 'Grandma Mary Cleary', ""Keir O'Donnell"": 'Todd Cleary', 'Bradley Cooper': 'Sack Lodge', 'Ron Canada': 'Randolph', 'Henry Gibson': ""Father O'Neil"", 'Dwight Yoakam': 'Mr. Kroeger', 'Rebecca De Mornay': 'Mrs. Kroeger', 'David Conrad': 'Trap', 'Jennifer Alden': 'Christina Cleary (as Jenny Alden)'}" tt1130080,"{'Matt Damon': 'Mark Whitacre', 'Lucas McHugh Carroll': 'Alexander Whitacre (as Lucas Carroll)', 'Eddie Jemison': 'Kirk Schmidt', 'Rusty Schwimmer': 'Liz Taylor', 'Craig Ricci Shaynak': 'Discouraged Foreman', 'Tom Papa': 'Mick Andreas', 'Rick Overton': 'Terry Wilson', 'Melanie Lynskey': 'Ginger Whitacre', 'Thomas F. Wilson': 'Mark Cheviron (as Tom Wilson)', 'Scott Bakula': 'FBI Special Agent Brian Shepard', 'Scott Adsit': 'Sid Hulse', 'Ann Dowd': 'FBI Special Agent Kate Medford', 'Allan Havey': 'FBI Special Agent Dean Paisley', 'Howie Johnson': 'Rusty Williams', 'Joel McHale': 'FBI Special Agent Bob Herndon'}" tt0167260,"{'Noel Appleby': 'Everard Proudfoot', 'Ali Astin': 'Elanor Gamgee (as Alexandra Astin)', 'Sean Astin': 'Sam', 'David Aston': 'Gondorian Soldier 3', 'John Bach': 'Madril', 'Sean Bean': 'Boromir', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Sadwyn Brophy': 'Eldarion', 'Alistair Browning': 'Damrod', 'Marton Csokas': 'Celeborn', 'Richard Edge': 'Gondorian Soldier 1', 'Jason Fitch': 'Uruk 2', 'Bernard Hill': 'Theoden'}" tt0923671,"{'Lily Alejandra': 'Temp Agency Manager', 'Salomón Carmona': 'Jesús Hernández', ""Max Da'Silva"": 'Wally', 'Christina De Leon': 'Carla Moreno', 'Kris Desautels': 'Garret', 'Ben Dubash': 'Johnny', 'Cyn Dulay': 'Samantha', 'Rosa Isela Frausto': 'Ana Lucia', 'Ruby Gonzalez': 'Community Center Woman', 'Ligaya Keeley': 'Trick-a-treater', 'Jim Kirwan': 'Sheriff Ruffin', 'Michelle Oquendo': 'Bell', 'Mark Peplow': 'Andy Ruffin (as Mark Edwards)', 'Arthur Wood': 'Homeland Security Agent'}" tt0280609,"{'Sean Pertwee': 'Sgt. Harry G. Wells', 'Kevin McKidd': 'Pvt. Cooper', 'Emma Cleasby': 'Megan', 'Liam Cunningham': 'Capt. Ryan', 'Thomas Lockyer': 'Cpl. Bruce Campbell', 'Darren Morfitt': ""'Spoon' Witherspoon"", 'Chris Robson': 'Pvt. Joe Kirkley', 'Leslie Simpson': 'Pvt. Terry Milburn', 'Tina Landini': 'Camper', 'Craig Conway': 'Camper', ""Villrikke's Acer"": 'Sam the Dog', 'Bryn Walters': 'Werewolf', 'Ben Wright': 'Werewolf', 'Brian Claxton Payne': 'Werewolf'}" tt0280438,"{'Brian Burns': 'Cousin Mike Moran', 'Vincent Rubino': 'Vinny Boombata', 'James Michael Cummings': 'J.C. (as James Cummings)', 'Elijah Wood': 'Sean Sullivan', 'Pat McNamara': 'Murph', 'John DiResta': 'Pete at the Bar', 'Edward Burns': 'Francis Sullivan', 'Malachy McCourt': 'Whitey', 'Chris McGovern': ""Whitey's Driver (as Christopher McGovern)"", 'Peter Gerety': 'Uncle Handy', 'Jimmy Burke': 'Red Kelly (as James Burke)', 'Stephen Murphy': ""Whitey's Man"", 'Brian Delate': 'Crazy George Cullen', 'Teresa Yenque': 'Mrs. Diaz', 'Julie Hale': 'Maggie Shea'}" tt0802948,"{'Ellen Page': 'Sylvia Likens', 'Hayley McFarland': 'Jennie Likens', 'Nick Searcy': 'Lester Likens', 'Romy Rosemont': 'Betty Likens', 'Catherine Keener': 'Gertrude Baniszewski', 'Ari Graynor': 'Paula Baniszewski', 'Scout Taylor-Compton': 'Stephanie Baniszewski', 'Tristan Jarred': 'Johnny Baniszewski', 'Hannah Leigh': 'Shirley Baniszewski (as Hannah Leigh Dworkin)', 'Bradley Whitford': 'Prosecutor', ""Michael O'Keefe"": 'Reverend Bill Collier', 'Carlie Westerman': 'Marie Baniszewski', 'Michelle Benes': 'Hope Orbach', 'Patricia Place': 'Mrs. Doyle', 'Calvin Keet': 'Mr. Doyle'}" tt0488085,"{'David Schwimmer': 'Charlie', 'Simon Pegg': 'Gus', 'Alice Eve': 'Josie', 'Natascha McElhone': 'Penelope Wood', 'Jon Polito': 'Agent Hymes', 'Mimi Rogers': 'Mrs. Smalls', 'William Rosenfeld': 'Deputy Garman (as Billy Asher)', 'Julian Glover': '80 Year Old Blind Man', 'Olivia Peterson': 'Emily', 'Sarah Edmondson': 'Isabella', 'Amber Sealey': 'Call Center Supervisor', 'Shauna Shim': 'Melanie #1', 'Laurence Bouvard': 'Melanie #2', 'Mindy Lee Raskin': 'Melanie #3', 'Kenneth Jay': 'Barman'}" tt0349889,"{'Wesley Snipes': 'Dean Cage', 'Jacqueline Obradors': 'Det. Amy Knight', 'Stuart Wilson': 'Sullivan', 'Kim Coates': 'Peterson', 'Mark Sheppard': 'Leitch', 'Adewale Akinnuoye-Agbaje': 'Agent Junod', 'Vincent Riotta': 'Det. Jay Miller', 'David Schofield': 'Dr. Collins', 'Nicholas Aaron': 'McNab', 'Kim Thomson': 'Agent Kennedy', 'Jo Stone-Fewings': 'Agent Gabriel', 'Cristian Solimeno': 'Scott Knight', 'Gary Oliver': ""Sullivan's Driver"", 'Raicho Vasilev': 'St. Nevis Guard 1', 'David Fleeshman': 'St. Nevis Guard 2'}" tt1187064,"{'Melissa George': 'Jess', 'Joshua McIvor': 'Tommy', 'Jack Taylor': 'Jack', 'Michael Dorman': 'Greg', 'Henry Nixon': 'Downey', 'Rachael Carpani': 'Sally', 'Emma Lung': 'Heather', 'Liam Hemsworth': 'Victor', 'Bryan Probets': 'Driver'}" tt0071230,"{'Cleavon Little': 'Bart', 'Gene Wilder': 'Jim', 'Slim Pickens': 'Taggart', 'Harvey Korman': 'Hedley Lamarr', 'Madeline Kahn': 'Lili Von Shtupp', 'Mel Brooks': 'Governor Lepetomane / Indian Chief', 'Burton Gilliam': 'Lyle', 'Alex Karras': 'Mongo', 'David Huddleston': 'Olson Johnson', 'Liam Dunn': 'Rev. Johnson', 'John Hillerman': 'Howard Johnson', 'George Furth': 'Van Johnson', 'Jack Starrett': 'Gabby Johnson (as Claude Ennis Starrett Jr.)', 'Carol Arthur': 'Harriett Johnson', 'Richard Collier': 'Dr. Sam Johnson'}" tt0263101,"{'Pawarith Monkolpisit': 'Kong (as Pawalit Mongkolpisit)', 'Premsinee Ratanasopha': 'Fon', 'Patharawarin Timkul': 'Aom', 'Pisek Intrakanchit': 'Jo'}" tt0473488,"{'Dianne Wiest': 'Flori', 'Robert Downey Jr.': 'Dito', 'Shia LaBeouf': 'Young Dito', 'Melonie Diaz': 'Young Laurie', 'Laila Liliana Garro': 'Diane (as Julia Garro)', 'Eleonore Hendricks': 'Jenny', 'Adam Scarimbolo': 'Guiseppe', 'Peter Anthony Tambakis': 'Young Nerf (as Peter Tambakis)', 'Channing Tatum': 'Young Antonio', 'Anthony Tirado': 'Street Corner Puerto Rican (credit only)', 'Erick Rosado': 'Puerto Rican Van Driver', 'Steve Payne': 'Beach Chair Guy (as Steven Payne)', 'Chazz Palminteri': 'Monty', 'Tibor Feldman': 'Teacher', 'Martin Compston': ""Mike O'Shea""}" tt0084787,"{'Kurt Russell': 'MacReady', 'Wilford Brimley': 'Dr. Blair (as A. Wilford Brimley)', 'T.K. Carter': 'Nauls', 'David Clennon': 'Palmer', 'Keith David': 'Childs', 'Richard Dysart': 'Dr. Copper', 'Charles Hallahan': 'Vance Norris', 'Peter Maloney': 'George Bennings', 'Richard Masur': 'Clark', 'Donald Moffat': 'Garry', 'Joel Polis': 'Fuchs', 'Thomas G. Waites': 'Windows (as Thomas Waites)', 'Norbert Weisser': 'Norwegian', 'Larry Franco': 'Norwegian Passenger with Rifle', 'Nate Irwin': 'Helicopter Pilot'}" tt1212419,"{'Cécile de France': 'Marie Lelay', 'Thierry Neuvic': 'Didier', 'Cyndi Mayo': 'Island Hotel Clerk (as Cyndi Mayo Davis)', 'Lisa Griffiths': 'Stall Owner', 'Jessica Griffiths': 'Island Girl', 'Ferguson Reid': 'Rescuer', 'Derek Sakakura': 'Rescuer', 'Jay Mohr': 'Billy', 'Richard Kind': 'Christos', 'Matt Damon': 'George Lonegan', 'Charlie Creed-Miles': 'Photographer', 'Frankie McLaren': 'Marcus / Jason', 'George McLaren': 'Marcus / Jason', 'Lyndsey Marshal': 'Jackie', 'Rebekah Staton': 'Social Worker'}" tt0285728,"{'Jeremy Renner': 'Jeffrey Dahmer', 'Bruce Davison': 'Lionel Dahmer', 'Artel Great': 'Rodney (as Artel Kayaru)', 'Matt Newton': 'Lance Bell', 'Dionysio Basco': 'Khamtay (as Dion Basco)', 'Kate Williamson': 'Grandma', 'Christina Payano': 'Letitia', ""Tom'ya Bowden"": 'Shawna', 'Sean Blakemore': 'Corliss', 'Mickey Swenson': 'Officer Phillips', 'Julius Branca': 'Officer Powell', 'Pierson Blaetz': 'Officer Martin', 'Vincent Zangari': 'Ohio Officer', 'Xavier Lawrence': 'Young Man in Bar', 'David Manis': 'Shop Steward'}" tt0320244,"{'Seth Green': 'James', 'Macaulay Culkin': 'Michael', 'Diana Scarwid': 'Elke', 'Dillon Woolley': 'Young James', 'Marilyn Manson': 'Christina', 'Dylan McDermott': 'Peter Gatien', 'Mia Kirshner': 'Natasha', 'Wilmer Valderrama': 'Keoki', 'Elliot Kriss': 'Cabbie', 'Janis Dardaris': 'TV Reporter', 'Wilson Cruz': 'Angel', 'Manny Perez': 'Johnny', 'Justin Hagan': 'Freez', ""Brendan O'Malley"": 'Young Michael', 'Phillip Knasiak': 'Young Wrestler'}" tt0780608,"{'Anna Faris': 'Jane F.', 'Roscoe Lee Browne': 'Himself (voice)', 'Danny Masterson': 'Steve the Roomate', 'Ben Falcone': 'Agent', 'Adam Brody': 'Steve the Dealer', 'Brian Posehn': 'Bus Driver', 'Rick Hoffman': 'Angry Face', 'Matthew J. Evans': 'Bobby (as Matthew Evans)', 'Davenia McFadden': 'Bus Passenger', 'Joey Diaz': 'Security Guard (as Joey Coco Diaz)', 'Jim Rash': 'Casting Assistant', 'Jayma Mays': 'Actress in Waiting Room', 'Jane Lynch': 'Casting Director', 'John Krasinski': 'Brevin', 'Kai Cofer': 'Man with Weird Beard'}" tt1680059,"{'Morgan Freeman': 'Narrator (voice)', 'Birute Galdikas': 'Herself (as Dr. Birute Mary Galdikas)', 'Daphne Sheldrick': 'Herself (as Dr. Dame Daphne M. Sheldrick)'}" tt0929618,"{'Rider Strong': 'Kieran', 'Corey Large': 'Tyler', 'April Scott': 'Trista', 'James DeBello': 'Heath', 'Kaley Cuoco': 'Erica', 'Mya': 'Mitra', 'Nikki Griffin': 'Lexi', 'Lochlyn Munro': 'Barry', 'Jimmy Jean-Louis': 'Buzz McManus', 'Jon Abrahams': ""Tyler's Agent"", 'Jo De La Rosa': 'Realator', 'Brett Novek': 'Joey', 'Ed Begley Jr.': 'Nicholas', 'Kurupt': ""'Strangers' Host"", 'Lin Shaye': 'Frances'}" tt1231287,"{'Lindsay Lohan': 'Thea Clayhill', 'Luke Kirby': 'Nick Steinwald', 'Chris Parnell': 'Jerry Steinwald', 'Aaron Yoo': 'Miles', 'Bridgit Mendler': 'Emma Clayhill', 'Tracee Ellis Ross': 'Kristin', 'Kevin Covais': 'Greg', 'Bonnie Somerville': 'Suzi Cavandish', 'Cheryl Hines': 'Lisa DePardo', 'Creed Bratton': 'John Abbotts', 'Janeane Garofalo': 'Claire the Vista Host', 'Keiko Agena': 'Pregnant Bookstore Woman', 'Donald V. Allen': 'Umpire', 'Jack Axelrod': ""O'Keefe"", 'Alexandra Barreto': 'Pretty Woman'}" tt0363143,"{'Colin Firth': 'Ben', 'Naomie Harris': 'Elisa', 'Dorothy Duffy': 'Nurse', 'Cornelius Booth': 'Orderly', 'Dermot Murnaghan': 'Newscaster 1', 'Jamie Owen': 'Newscaster 2', 'Kirsty Young': 'Newscaster 3', 'Jamie Cameron': 'Reporter', 'Justin Edwards': 'Doctor', 'Nicola Cunningham': 'Reception Nurse', 'Paul Rattigan': ""Manor's Voice"", 'Sean Harris': 'Roland', 'Kenneth Cranham': 'Detective Constable Jackson (as Ken Cranham)', 'Nina Hossain': 'Reporter', 'Alison David': 'Lauren Parris'}" tt1334512,"{'Russell Brand': 'Arthur', 'Helen Mirren': 'Hobson', 'Greta Gerwig': 'Naomi', 'Jennifer Garner': 'Susan', 'Geraldine James': 'Vivienne', 'Luis Guzmán': 'Bitterman', 'Nick Nolte': 'Burt Johnson', 'Christina Jacquelyn Calph': 'Tiffany (as Christina Calph)', 'Murphy Guyer': 'Officer Kaplan', 'José Ramón Rosario': 'Employment Clerk', 'John Hodgman': 'Candy Store Manager', 'Scott Adsit': 'Gummy Bear Man', 'Evander Holyfield': 'Boxing Trainer', 'Peter Van Wagner': ""Naomi's Dad"", 'Robert Clohessy': 'Veteran Cop'}" tt0083658,"{'Harrison Ford': 'Rick Deckard', 'Rutger Hauer': 'Roy Batty', 'Sean Young': 'Rachael', 'Edward James Olmos': 'Gaff', 'M. Emmet Walsh': 'Bryant', 'Daryl Hannah': 'Pris', 'William Sanderson': 'J.F. Sebastian', 'Brion James': 'Leon Kowalski', 'Joe Turkel': 'Dr. Eldon Tyrell', 'Joanna Cassidy': 'Zhora', 'James Hong': 'Hannibal Chew', 'Morgan Paull': 'Holden', 'Kevin Thompson': 'Bear', 'John Edward Allen': 'Kaiser', 'Hy Pyke': 'Taffey Lewis'}" tt0328031,"{'Chris McKenna': 'Sean Crawley (as Chris L. McKenna)', 'Kari Wuhrer': 'Susan Gatley', 'George Wendt': 'Duke Wayne', 'Vernon Wells': 'Beckett', 'Lionel Mark Smith': 'Carl', 'Timm Sharp': 'George', 'Daniel Baldwin': 'Ray Mathews', 'Carissa Kosta': 'Maureen (as Carissa Koutantzis)', 'Briana Beghi': ""Maureen's Daughter"", 'Carlie Westerman': 'Catlin Gatley', 'Ian Patrick Williams': 'Tony', 'Antoine Joseph': 'Drooling Idiot', 'Shuko Akune': 'Meade Park', 'Steve Heller': 'Gary (as Steven Heller)', ""Ken 'Bam Bam' Johnson Jr."": 'Apartment Kid'}" tt1233219,"{'Michael Shannon': 'Brad Macallam', 'Willem Dafoe': 'Detective Havenhurst', 'Chloë Sevigny': 'Ingrid Gudmundson', 'Udo Kier': 'Lee Meyers', 'Michael Peña': 'Detective Vargas', 'Grace Zabriskie': 'Mrs Macallam', 'Brad Dourif': 'Uncle Ted', 'Irma P. Hall': 'Mrs Roberts (as Irma Hall)', 'Loretta Devine': 'Ms Roberts', 'Candice Coke': 'Officer Slocum', 'Gabriel Pimentel': 'Little Man', 'Braden Lynch': 'Gary', 'James C. Burns': 'Brown', 'Noel Arthur': 'Naval Guard', 'Julius Morck': 'Phil (as Julius Mørck)'}" tt0480687,"{'Owen Wilson': 'Rick', 'Jason Sudeikis': 'Fred', 'Jenna Fischer': 'Maggie', 'Christina Applegate': 'Grace', 'Nicky Whelan': 'Leigh', 'Richard Jenkins': 'Coakley', 'Stephen Merchant': 'Gary', 'Larry Joe Campbell': 'Hog-Head', 'Bruce Thomas': 'Rick Coleman', 'Tyler Hoechlin': 'Gerry', 'Derek Waters': 'Brent', 'Alexandra Daddario': 'Paige', 'Rob Moran': 'Ed Long', 'Lauren Bowles': 'Britney', 'Christa Beth Campbell': 'Emma (as Christa Campbell)'}" tt1401152,"{'Liam Neeson': 'Dr. Martin Harris', 'Diane Kruger': 'Gina', 'January Jones': 'Elizabeth Harris', 'Aidan Quinn': 'Martin B', 'Bruno Ganz': 'Ernst Jürgen', 'Frank Langella': 'Rodney Cole', 'Sebastian Koch': 'Professor Bressler', 'Olivier Schneider': 'Smith', 'Stipe Erceg': 'Jones', 'Rainer Bock': 'Herr Strauss', 'Mido Hamada': 'Prince Shada', 'Clint Dyer': 'Biko', 'Karl Markovics': 'Dr. Farge', 'Eva Löbau': 'Nurse Gretchen', 'Helen Wiebensohn': 'Laurel Bressler'}" tt1127180,"{'Alison Lohman': 'Christine Brown', 'Justin Long': 'Clay Dalton', 'Lorna Raver': 'Mrs. Ganush', 'Dileep Rao': 'Rham Jas', 'David Paymer': 'Mr. Jacks', 'Adriana Barraza': 'Shaun San Dena', 'Chelcie Ross': 'Leonard Dalton', 'Reggie Lee': 'Stu Rubin', 'Molly Cheek': 'Trudy Dalton', 'Bojana Novakovic': 'Ilenka Ganush', 'Kevin Foster': 'Milos', 'Alexis Cruz': 'Farm Worker', 'Ruth Livier': ""Farm Worker's Wife"", 'Shiloh Selassie': ""Farm Worker's Son"", 'Flor de Maria Chahua': 'Young Shaun San Dena'}" tt0056869,"{'Rod Taylor': 'Mitch Brenner', 'Jessica Tandy': 'Lydia Brenner', 'Suzanne Pleshette': 'Annie Hayworth', 'Tippi Hedren': ""Melanie Daniels (as 'Tippi' Hedren)"", 'Veronica Cartwright': 'Cathy Brenner', 'Ethel Griffies': 'Mrs. Bundy', 'Charles McGraw': 'Sebastian Sholes', 'Ruth McDevitt': 'Mrs. MacGruder', 'Lonny Chapman': 'Deke Carter', 'Joe Mantell': ""Traveling Salesman at Diner's Bar"", 'Doodles Weaver': 'Fisherman Helping with Rental Boat', 'Malcolm Atterbury': 'Deputy Al Malone', 'John McGovern': 'Postal Clerk', 'Karl Swenson': 'Drunken Doomsayer in Diner', 'Richard Deacon': ""Mitch's City Neighbor""}" tt0765443,"{'Josef Altin': 'Ekrem', 'Mina E. Mina': 'Azim', 'Aleksandar Mikic': 'Soyka (as Aleksander Mikic)', 'Sarah-Jeanne Labrosse': 'Tatiana (as Sarah Jeanne Labrosse)', 'Lalita Ahmed': 'Customer', 'Badi Uzzaman': 'Chemist', 'Naomi Watts': 'Anna', 'Doña Croll': 'Nurse (as Dona Croll)', 'Raza Jaffrey': 'Doctor Aziz', 'Sinéad Cusack': 'Helen (as Sinead Cusack)', 'Jerzy Skolimowski': 'Stepan', 'Tatiana Maslany': 'Tatiana (voice)', 'Viggo Mortensen': 'Nikolai', 'Vincent Cassel': 'Kirill', 'Armin Mueller-Stahl': 'Semyon'}" tt0206634,"{'Clive Owen': 'Theo Faron', 'Juan Gabriel Yacuzzi': 'Baby Diego (as Juan Yacuzzi)', 'Michael Caine': 'Jasper', 'Mishal Husain': 'Newsreader', 'Rob Curling': 'Newsreader', 'Chiwetel Ejiofor': 'Luke', 'Jon Chevalier': 'Café Customer', 'Julianne Moore': 'Julian', 'Rita Davies': 'Café Customer', 'Charlie Hunnam': 'Patric', 'Kim Fenton': 'Café Customer', 'Chris Gilbert': 'Café Customer', 'Phoebe Hawthorne': 'Café Customer', 'Rebecca Howard': 'Café Customer', 'Atalanta White': 'Café Customer (as Atlanta White)'}" tt1161864,"{'Anthony Hopkins': 'Father Lucas Trevant', ""Colin O'Donoghue"": 'Michael Kovak', 'Alice Braga': 'Angeline', 'Ciarán Hinds': 'Father Xavier', 'Toby Jones': 'Father Matthew', 'Rutger Hauer': 'Istvan Kovak', 'Marta Gastini': 'Rosaria', 'Maria Grazia Cucinotta': 'Aunt Andria', 'Arianna Veronesi': 'Francesca', 'Andrea Calligari': 'Vincenzo', 'Chris Marquette': 'Eddie', 'Torrey DeVitto': 'Nina', 'Ben Cheetham': 'Young Michael', 'Marija Karan': 'Sandra', 'Rosa Pianeta': 'Woman in Exorcism Video'}" tt0472062,"{'Tom Hanks': 'Charlie Wilson', 'Amy Adams': 'Bonnie Bach', 'Julia Roberts': 'Joanne Herring', 'Philip Seymour Hoffman': 'Gust Avrakotos', 'Terry Bozeman': 'CIA Award Presenter', 'Brian Markinson': 'Paul Brown', 'Jud Tylor': 'Crystal Lee', 'Hilary Angelo': 'Kelly', 'Cyia Batten': 'Stacey', 'Kirby Mitchell': 'Stoned Guy', 'Ed Regine': 'Limo Driver', 'Daniel Eric Gold': 'Donnelly', 'Emily Blunt': 'Jane Liddle', 'Peter Gerety': 'Larry Liddle', 'Wynn Everett': ""Receptionist - Charlie's Angels""}" tt0190590,"{'George Clooney': 'Everett', 'John Turturro': 'Pete Hogwallop', 'Tim Blake Nelson': ""Delmar O'Donnell"", 'John Goodman': 'Big Dan Teague', 'Holly Hunter': 'Penny', 'Chris Thomas King': 'Tommy Johnson', 'Charles Durning': ""Pappy O'Daniel"", 'Del Pentecost': ""Junior O'Daniel"", 'Michael Badalucco': 'George Nelson', 'J.R. Horne': ""Pappy's Staff"", 'Brian Reddy': ""Pappy's Staff"", 'Wayne Duvall': 'Homer Stokes', 'Ed Gale': 'The Little Man', 'Ray McKinnon': 'Vernon T. Waldrip', 'Daniel von Bargen': 'Sheriff Cooley (as Daniel Von Bargen)'}" tt0023027,"{'The Marx Brothers': '(as The Four Marx Brothers)', 'Groucho Marx': 'Professor Quincy Adams Wagstaff', 'Harpo Marx': 'Pinky', 'Chico Marx': 'Baravelli', 'Zeppo Marx': 'Frank Wagstaff', 'Thelma Todd': 'Connie Bailey', 'David Landau': 'Jennings'}" tt0040068,"{'Bud Abbott': 'Chick', 'Lou Costello': 'Wilbur', 'Lon Chaney Jr.': 'Lawrence Talbot (as Lon Chaney)', 'Bela Lugosi': 'Dracula', 'Glenn Strange': 'Monster', 'Lenore Aubert': 'Sandra Mornay', 'Jane Randolph': 'Joan Raymond', 'Frank Ferguson': 'Mr. McDougal', 'Charles Bradstreet': 'Dr. Stevens'}" tt0101615,"{'Naomi Campbell': 'Singer at First Club', 'Vanilla Ice': 'Johnny', 'Deezer D': 'Jazz (as Deezer D.)', 'Kevin Hicks': 'Sir D.', 'Allison Dean': 'Princess', 'Bobbie Brown': 'Monique (as Bobby Brown)', 'Kristin Minter': 'Kathy', 'Sydney Lassick': 'Roscoe', 'Dody Goodman': 'Mae', 'John Newton': 'Nick (as John Haymes Newton)', 'Candy Clark': 'Grace', 'Michael Gross': 'Gordon', 'Victor DiMattia': 'Tommy', 'Brooke Alexander': 'Reporter', 'Jack McGee': 'Clarke'}" tt0020640,"{'Groucho Marx': 'Captain Jeffrey Spaulding', 'Harpo Marx': 'The Professor', 'Chico Marx': 'Signor Emanuel Ravelli', 'Zeppo Marx': 'Horatio Jamison', 'Lillian Roth': 'Arabella Rittenhouse', 'Margaret Dumont': 'Mrs. Rittenhouse', 'Louis Sorin': 'Roscoe Chandler', 'Hal Thompson': 'John Parker', 'Margaret Irving': 'Mrs. Whitehead', 'Kathryn Reece': 'Grace Carpenter', 'Robert Greig': 'Hives', 'Edward Metcalfe': 'Hennessey', 'The Music Masters': 'Six Footmen'}" tt0119567,"{'Jeff Goldblum': 'Ian Malcolm', 'Julianne Moore': 'Sarah Harding', 'Pete Postlethwaite': 'Roland Tembo', 'Arliss Howard': 'Peter Ludlow', 'Richard Attenborough': 'John Hammond', 'Vince Vaughn': 'Nick Van Owen', 'Vanessa Chester': 'Kelly Curtis (as Vanessa Lee Chester)', 'Peter Stormare': 'Dieter Stark', 'Harvey Jason': 'Ajay Sidhu', 'Richard Schiff': 'Eddie Carr', 'Thomas F. Duffy': 'Dr. Robert Burke', 'Joseph Mazzello': 'Tim', 'Ariana Richards': 'Lex', 'Thomas Rosales Jr.': 'Carter (as Thomas Rosales)', 'Camilla Belle': 'Cathy Bowman'}" tt1231583,"{'Robert Downey Jr.': 'Peter Highman', 'Zach Galifianakis': 'Ethan Tremblay', 'Michelle Monaghan': 'Sarah Highman', 'Jamie Foxx': 'Darryl', 'Juliette Lewis': 'Heidi', 'Danny McBride': 'Lonnie', 'RZA': 'Airport Screener', 'Matt Walsh': 'TSA Agent', 'Brody Stevens': 'Limo Driver', 'Jakob Ulrich': 'Patrick', 'Naiia Ulrich': 'Alex', 'Todd Phillips': 'Barry', 'Bobby Tisdale': 'Carl', 'Sharon Conley': 'Airport X-Ray (as Sharon Morris)', 'Nathalie Fay': 'Flight Attendant'}" tt0386117,"{'Max Records': 'Max', 'Pepita Emmerichs': 'Claire', 'Max Pfeifer': ""Claire's Friend"", 'Madeleine Greaves': ""Claire's Friend"", 'Joshua Jay': ""Claire's Friend"", 'Ryan Corr': ""Claire's Friend"", 'Catherine Keener': 'Mom', 'Steve Mouzakis': 'Teacher', 'Mark Ruffalo': 'The Boyfriend', 'James Gandolfini': 'Carol (voice)', 'Vincent Crowley': 'Carol Suit Performer', 'Paul Dano': 'Alexander (voice)', 'Sonny Gerasimowicz': 'Alexander Suit Performer', ""Catherine O'Hara"": 'Judith (voice)', 'Nick Farnell': 'Judith Suit Performer'}" tt1058017,"{'Ricky Gervais': 'Mark Bellison', 'Jennifer Garner': 'Anna McDoogles', 'Jonah Hill': 'Frank', 'Louis C.K.': 'Greg', 'Jeffrey Tambor': 'Anthony', 'Fionnula Flanagan': 'Martha Bellison', 'Rob Lowe': 'Brad Kessler', 'Tina Fey': 'Shelley', 'Donna Sorbello': ""Anna's Mother"", 'Stephanie March': 'Blonde', 'Ruben Santiago-Hudson': 'Landlord', 'John Hodgman': 'Wedding Overseer', 'Nate Corddry': 'News Reporter', 'Jimmi Simpson': 'Bob', 'Martin Starr': 'Waiter #1'}" tt0033804,"{'Barbara Stanwyck': 'Jean', 'Henry Fonda': 'Charles', 'Charles Coburn': ""'Colonel' Harrington"", 'Eugene Pallette': 'Mr. Pike', 'William Demarest': 'Muggsy', 'Eric Blore': 'Sir Alfred McGlennan Keith', 'Melville Cooper': 'Gerald', ""Martha O'Driscoll"": 'Martha', 'Janet Beecher': 'Mrs. Pike', 'Robert Greig': 'Burrows', 'Dora Clement': 'Gertrude', 'Luis Alberni': ""Pike's Chef""}" tt0120188,"{'George Clooney': 'Archie Gates', 'Mark Wahlberg': 'Troy Barlow', 'Ice Cube': 'Chief Elgin', 'Spike Jonze': 'Conrad Vig', 'Cliff Curtis': 'Amir Abdulah', 'Nora Dunn': 'Adriana Cruz', 'Jamie Kennedy': 'Walter Wogaman', 'Saïd Taghmaoui': 'Captain Said (as Said Taghmaoui)', 'Mykelti Williamson': 'Colonel Horn', 'Holt McCallany': 'Captain Van Meter', 'Judy Greer': 'Cathy Daitch', 'Christopher Lohr': 'Teebaux', 'Jon Sklaroff': 'Paco', 'Liz Stauber': ""Debbie Barlow, Troy's Wife"", 'Marsha Horan': ""Amir's Wife""}" tt1219342,"{'Emily Barclay': 'Gylfie (voice)', 'Abbie Cornish': 'Otulissa (voice)', 'Essie Davis': 'Marella (voice)', 'Adrienne DeFaria': 'Eglantine (voice)', 'Joel Edgerton': 'Metal Beak (voice)', 'Deborra-Lee Furness': 'Barran (voice)', 'Sacha Horler': 'Strix Struma (voice)', 'Bill Hunter': 'Bubo (voice)', 'Ryan Kwanten': 'Kludd (voice)', 'Anthony LaPaglia': 'Twilight (voice)', 'Miriam Margolyes': 'Mrs. Plithiver (voice)', 'Helen Mirren': 'Nyra (voice)', 'Sam Neill': 'Allomere (voice)', 'Barry Otto': 'Echidna (voice)', 'Richard Roxburgh': 'Boron (voice)'}" tt0840361,"{'Ben Affleck': 'Doug MacRay', 'Rebecca Hall': 'Claire Keesey', 'Jon Hamm': 'FBI S.A. Adam Frawley', 'Jeremy Renner': 'James Coughlin', 'Blake Lively': 'Krista Coughlin', 'Slaine': ""Albert 'Gloansy' Magloan"", 'Owen Burke': 'Desmond Elden', 'Titus Welliver': 'Dino Ciampa', 'Pete Postlethwaite': ""Fergus 'Fergie' Colm"", 'Chris Cooper': 'Stephen MacRay', 'Dennis McLaughlin': 'Rusty', 'Corena Chase': 'Agent Quinlan', 'Brian Scannell': 'Henry', 'Kerri Dunbar': ""Henry's Girl"", 'Tony V.': 'Vericom Crew Chief (as Tony V)'}" tt0979434,"{'Shad Moss': 'Kevin Carson (as Bow Wow)', 'Brandon T. Jackson': 'Benny', 'Naturi Naughton': 'Stacie', 'Loretta Devine': 'Grandma', 'Ice Cube': 'Mr. Washington', 'Keith David': 'Sweet Tee', 'Terry Crews': 'Jimmy the Driver', 'Mike Epps': 'Reverend Taylor', 'Charlie Murphy': 'Semaj', 'Bill Bellamy': 'Giovanni', 'Gbenga Akinnagbe': 'Lorenzo', 'Chris Williams': 'Doug', 'Vince Green': 'Malik', 'Leslie Jones': 'Tasha', 'Malieek Straughter': 'Deangelo (as Malieek W. Straughter)'}" tt0817177,"{'Madeline Carroll': 'Juli Baker', 'Callan McAuliffe': 'Bryce Loski', 'Rebecca De Mornay': 'Patsy Loski', 'Anthony Edwards': 'Steven Loski', 'John Mahoney': 'Chet Duncan', 'Penelope Ann Miller': 'Trina Baker', 'Aidan Quinn': 'Richard Baker', 'Kevin Weisman': 'Daniel Baker', 'Morgan Lily': 'Young Juli', 'Ryan Ketzner': 'Young Bryce', 'Gillian Pfaff': 'Young Lynetta', 'Michael Boza': 'Teasing Boy', 'Beau Lerner': 'Teasing Boy', 'Jacquelyn Evola': 'Playground Girl', 'Taylor Groothuis': 'Playground Girl'}" tt1287468,"{'James Marsden': 'Diggs (voice)', 'Nick Nolte': 'Butch (voice)', 'Christina Applegate': 'Catherine (voice)', 'Katt Williams': 'Seamus (voice)', 'Bette Midler': 'Kitty Galore (voice)', 'Neil Patrick Harris': 'Lou (voice)', 'Sean Hayes': 'Mr. Tinkles (voice)', 'Wallace Shawn': 'Calico (voice)', 'Roger Moore': 'Tab Lazenby (voice)', 'Joe Pantoliano': 'Peek (voice)', 'Michael Clarke Duncan': 'Sam (voice)', ""Chris O'Donnell"": 'Shane', 'Jack McBrayer': 'Chuck', 'Fred Armisen': 'Freidrich', 'Kiernan Shipka': 'Little Girl'}" tt1375666,"{'Leonardo DiCaprio': 'Cobb', 'Joseph Gordon-Levitt': 'Arthur', 'Ellen Page': 'Ariadne', 'Tom Hardy': 'Eames', 'Ken Watanabe': 'Saito', 'Dileep Rao': 'Yusuf', 'Cillian Murphy': 'Robert Fischer', 'Tom Berenger': 'Browning', 'Marion Cotillard': 'Mal', 'Pete Postlethwaite': 'Maurice Fischer', 'Michael Caine': 'Miles', 'Lukas Haas': 'Nash', 'Tai-Li Lee': 'Tadashi', 'Claire Geare': 'Phillipa (3 Years Old)', 'Magnus Nolan': 'James (20 Months Old)'}" tt1075747,"{'Josh Brolin': 'Jonah Hex', 'John Malkovich': 'Quentin Turnbull', 'Megan Fox': 'Lilah', 'Michael Fassbender': 'Burke', 'Will Arnett': 'Lieutenant Grass', 'John Gallagher Jr.': 'Lieutenant Evan', 'Tom Wopat': 'Colonel Slocum', 'Michael Shannon': 'Doc Cross Williams', 'Wes Bentley': 'Adleman Lusk', 'Julia Jones': 'Cassie', 'Luke James Fleischmann': 'Travis', 'Rio Hackford': 'Grayden Nash', 'David Jensen': ""Turnbull's Henchman"", 'Billy Blair': ""Turnbull's Gang - Billy"", 'Sean Boyd': ""Turnbull's Gang - Preacher""}" tt1017460,"{'Adrien Brody': 'Clive Nicoli', 'Sarah Polley': 'Elsa Kast', 'Delphine Chanéac': 'Dren (as Delphine Chaneac)', 'Brandon McGibbon': 'Gavin Nicoli', 'Simona Maicanescu': 'Joan Chorot', 'David Hewlett': 'William Barlow', 'Abigail Chu': 'Child Dren'}" tt1261945,"{'Sarah Jessica Parker': 'Carrie Bradshaw', 'Kristin Davis': 'Charlotte York', 'Cynthia Nixon': 'Miranda Hobbes', 'Kim Cattrall': 'Samantha Jones', 'Minglie Chen': 'Bergdorf Salesgirl', 'Chris Noth': 'Mr. Big', 'David Eigenberg': 'Steve', 'Evan Handler': 'Harry', 'Alexandra Fong': 'Lily', 'Parker Fong': 'Lily', 'Mario Cantone': 'Anthony', 'Willie Garson': 'Stanford', 'Noah Mills': 'Nicky', 'Liza Minnelli': 'Liza Minnelli', 'Billy Stritch': 'Band Leader'}" tt0480255,"{'Jeffrey Dean Morgan': 'Clay', 'Zoe Saldana': 'Aisha (as Zoë Saldana)', 'Chris Evans': 'Jensen', 'Idris Elba': 'Roque', 'Columbus Short': 'Pooch', 'Óscar Jaenada': 'Cougar (as Oscar Jaenada)', 'Jason Patric': 'Max', 'Holt McCallany': 'Wade', 'Peter Macdissi': 'Vikram', 'Peter Francis James': 'Fadhil', 'Tanee McCall': 'Jolene', 'Mark Ginther': 'Goliath Guard', 'Daniel Kalal': 'Goliath Guard', 'Colin Follenweider': 'Goliath Guard', 'Garrett Warren': 'Goliath Guard'}" tt1385867,"{'Bruce Willis': 'Jimmy', 'Tracy Morgan': 'Paul', 'Juan Carlos Hernández': 'Raul (as Juan Carlos Hernandez)', 'Cory Fernandez': 'Juan', 'Jason Hurt': 'Youth #1', 'Jeff Lima': 'Youth #2', 'Sean Cullen': 'Captain Romans', 'Kevin Pollak': 'Hunsaker', 'Adam Brody': 'Barry Mangold', 'Guillermo Díaz': 'Poh Boy', 'Alberto Bonilla': 'Julio', 'Robinson Aponte': 'Banger #1', 'Jeremy Dash': 'Banger #2', 'Mando Alvarado': 'Mexican Man #1', 'Michelle Trachtenberg': 'Ava'}" tt1057500,"{'Morgan Freeman': 'Nelson Mandela', 'Matt Damon': 'Francois Pienaar', 'Tony Kgoroge': 'Jason Tshabalala', 'Patrick Mofokeng': 'Linga Moonsamy', 'Matt Stern': 'Hendrick Booyens', 'Julian Lewis Jones': 'Etienne Feyder', 'Adjoa Andoh': 'Brenda Mazibuko', 'Marguerite Wheatley': 'Nerine', 'Leleti Khumalo': 'Mary', 'Patrick Lyster': 'Mr. Pienaar', 'Penny Downie': 'Mrs. Pienaar', 'Sibongile Nojila': 'Eunice', 'Bonnie Henna': 'Zindzi', 'Shakes Myeko': 'Minister of Sport', 'Louis Minnaar': 'Springbok Coach (as Louis Minaar)'}" tt0878804,"{'Sandra Bullock': 'Leigh Anne Tuohy', 'Tim McGraw': 'Sean Tuohy', 'Quinton Aaron': 'Michael Oher', 'Jae Head': 'S.J. Tuohy', 'Lily Collins': 'Collins Tuohy', 'Ray McKinnon': 'Coach Cotton', 'Kim Dickens': 'Mrs. Boswell', 'Adriane Lenox': 'Denise Oher', 'Kathy Bates': 'Miss Sue', 'Catherine Dyer': 'Mrs. Smith', 'Andy Stahl': 'Principal Sandstrom', 'Tom Nowicki': 'Literature Teacher', 'Libby Whittemore': 'Sarcastic Teacher', 'Brian Hollan': 'Jay Collis', 'Melody Weintraub': 'History Teacher'}" tt1186367,"{'Rain': 'Raizo', 'Joon Lee': 'Teenage Raizo', 'Jonathan Chan-Pensley': 'Yakuza Henchman', 'Ill-Young Kim': 'Yakuza Mohawk', 'Yuki Iwamoto': 'Yakuza Couch', 'Ben Miles': 'Maslow', 'Naomie Harris': 'Mika', 'Sung Kang': 'Hollywood', 'Linh Dan Pham': 'Pretty Ninja (as Linh-Dan Pham)', 'Fang Yu': 'Laundromat Manager (as Yu Fang)', 'Adriana Altaras': 'Landlady', 'Shô Kosugi': 'Ozunu (as Sho Kosugi)', 'Kylie Goldstein': 'Young Kiriko (as Kylie Liya Goldstein)', 'Sungwoong Yoon': 'Young Raizo', 'Eleonore Weisgerber': 'Mrs. Sabatin'}" tt0362478,"{'Cameron Diaz': 'Norma Lewis', 'James Marsden': 'Arthur Lewis', 'Frank Langella': 'Arlington Steward', 'James Rebhorn': 'Norm Cahill', 'Holmes Osborne': 'Dick Burns', 'Sam Oz Stone': 'Walter Lewis', 'Gillian Jacobs': 'Dana', 'Celia Weston': 'Lana Burns', 'Deborah Rush': 'Clymene Steward', 'Lisa K. Wyatt': 'Rhonda Martin', 'Mark S. Cartier': 'Martin Teague (as Mark Cartier)', 'Kevin Robertson': 'Wendell Matheson', 'Michele Durrett': 'Rebecca Matheson', 'Ian Kahn': 'Vick Brenner', 'John Magaro': 'Charles'}" tt0093148,"{'John Lithgow': 'George Henderson', 'Melinda Dillon': 'Nancy Henderson', 'Margaret Langrick': 'Sarah Henderson', 'Joshua Rudoy': 'Ernie Henderson', 'Kevin Peter Hall': 'Harry', 'David Suchet': 'Jacques Lafleur', 'Lainie Kazan': 'Irene Moffitt', 'Don Ameche': 'Dr. Wallace Wrightwood', 'M. Emmet Walsh': 'George Henderson Sr.', 'William Ontiveros': 'Sgt. Mancini (as Bill Ontiverous)', 'David Richardt': 'Dirty Harry Officer', 'Jacqueline Moscou': 'DMV Clerk', 'Laura Kenny': ""'Mouse' Woman"", 'Richard Arnold': ""'Mouse' Spouse (as Richard E. Arnold)"", 'Sean Morgan': 'Jerry Seville'}" tt0390022,"{'Billy Bob Thornton': 'Coach Gary Gaines', 'Lucas Black': 'Mike Winchell', 'Garrett Hedlund': 'Don Billingsley', 'Derek Luke': 'Boobie Miles', 'Jay Hernandez': 'Brian Chavez', 'Lee Jackson': 'Ivory Christian', 'Lee Thompson Young': 'Chris Comer', 'Tim McGraw': 'Charles Billingsley', 'Grover Coulson': 'L.V. Miles', 'Connie Britton': 'Sharon Gaines', 'Connie Cooper': 'Mrs. Winchell', 'Kasey Stevens': 'Flippy', 'Ryanne Duzich': 'Melissa', 'Amber Heard': 'Maria', 'Morgan Farris': 'Jennifer Gaines'}" tt0080455,"{'Tom Erhart': 'Prison Guard', 'Gerald Walling': 'Prison Guard (as Gerald Walling S.J.)', 'John Belushi': 'Joliet Jake', 'Walter Levine': 'Prison Guard', 'Frank Oz': 'Corrections Officer', 'Dan Aykroyd': 'Elwood', 'Kathleen Freeman': 'Sister Mary Stigmata', 'Cab Calloway': 'Curtis', 'Donald Dunn': ""Donald 'Duck' Dunn (as Donald 'Duck' Dunn)"", 'Alonzo Atkins': 'Choirmaster', 'James Brown': 'Reverend Cleophus James', 'Chaka Khan': 'Choir Soloist', 'Southern California Community Choir': ""Choir (as James Cleveland's Southern California Community Choir)"", 'Armand Cerami': 'Trooper Daniel', 'Steven Williams': 'Trooper Mount (as Steve Williams)'}" tt0091244,"{'Christopher Lambert': 'Michel (as Christophe Lambert)', 'Eddy Mitchell': 'Yves', 'Flora Barillaro': 'Maria', 'Agnès Soral': 'Hélène (as Agnes Soral)', 'Anémone': 'Barbara (as Anemone)', 'Marc Berman': 'Pierre', 'Patrice Bertrand': 'Le client grincheux', 'Paula Dehelly': 'La mère de Pierre', 'Maurizio Donadoni': 'Georges', 'Fabrice Dumeur': 'Marcel', 'Carole Fredericks': 'Angèle', 'Laurence Le Guellan': 'Nicole (as Laurence Leguellan)', 'Olinka Hardiman': 'La maîtresse (as Olivia Link)', 'Laura Manszky': 'Camelia / Isabelle', 'Jeanne Marine': 'La prostituée'}" tt0352248,"{'Russell Crowe': 'Jim Braddock', 'Renée Zellweger': 'Mae Braddock', 'Paul Giamatti': 'Joe Gould', 'Craig Bierko': 'Max Baer', 'Paddy Considine': 'Mike Wilson', 'Bruce McGill': 'Jimmy Johnston', 'David Huband': 'Ford Bond', 'Connor Price': 'Jay Braddock', 'Ariel Waller': 'Rosemarie Braddock', 'Patrick Louis': 'Howard Braddock', 'Rosemarie DeWitt': 'Sara', 'Linda Kash': 'Lucille Gould', 'Nicholas Campbell': 'Sporty Lewis', 'Gene Pyrz': 'Jake', 'Chuck Shamata': 'Father Rorick'}" tt0372784,"{'Christian Bale': 'Bruce Wayne / Batman', 'Michael Caine': 'Alfred', 'Liam Neeson': 'Ducard', 'Katie Holmes': 'Rachel Dawes', 'Gary Oldman': 'Jim Gordon', 'Cillian Murphy': 'Dr. Jonathan Crane / The Scarecrow', 'Tom Wilkinson': 'Carmine Falcone', 'Rutger Hauer': 'Earle', 'Ken Watanabe': ""Ra's Al Ghul"", 'Mark Boone Junior': 'Flass', 'Linus Roache': 'Thomas Wayne', 'Morgan Freeman': 'Lucius Fox', 'Larry Holden': 'Finch', 'Gerard Murphy': 'Judge Faden', 'Colin McFarlane': 'Loeb'}" tt0045152,"{'Gene Kelly': 'Don Lockwood', ""Donald O'Connor"": 'Cosmo Brown', 'Debbie Reynolds': 'Kathy Selden', 'Jean Hagen': 'Lina Lamont', 'Millard Mitchell': 'R.F. Simpson', 'Cyd Charisse': 'Dancer', 'Douglas Fowley': 'Roscoe Dexter', 'Rita Moreno': 'Zelda Zanders'}" tt0324216,"{'Jessica Biel': 'Erin', 'Jonathan Tucker': 'Morgan', 'Erica Leerhsen': 'Pepper', 'Mike Vogel': 'Andy', 'Eric Balfour': 'Kemper', 'Andrew Bryniarski': 'Thomas Hewitt (Leatherface)', 'R. Lee Ermey': 'Sheriff Hoyt', 'David Dorfman': 'Jedidiah', 'Lauren German': 'Teenage Girl', 'Terrence Evans': 'Old Monty', 'Marietta Marich': 'Luda May', 'Heather Kafka': 'Henrietta', 'Kathy Lamkin': 'Tea Lady in Trailer', 'Brad Leland': 'Big Rig Bob', 'Mamie Meek': 'Clerk'}" tt0266915,"{'Jackie Chan': 'Lee', 'Chris Tucker': 'Carter', 'John Lone': 'Ricky Tan', 'Ziyi Zhang': 'Hu Li (as Zhang Ziyi)', 'Roselyn Sanchez': 'Isabella Molina', 'Alan King': 'Steven Reign', 'Harris Yulin': 'Agent Sterling', 'Kenneth Tsang': 'Captain Chin', 'Lisa LoCicero': 'Receptionist', 'Mei Melançon': 'Girl in Car (as Meiling Melancon)', 'Maggie Q': 'Girl in Car', 'Patricia Chan': 'Club Hostess', 'Gelbert Coloma': 'Karaoke Singer', 'Lucy Lin': 'Heaven on Earth Hostess', 'Cindy Lu': 'Heaven on Earth Hostess #2'}" tt0425061,"{'Steve Carell': 'Maxwell Smart', 'Anne Hathaway': 'Agent 99', 'Dwayne Johnson': 'Agent 23', 'Alan Arkin': 'The Chief', 'Terence Stamp': 'Siegfried', 'Terry Crews': 'Agent 91', 'David Koechner': 'Larabee', 'James Caan': 'The President', 'Bill Murray': 'Agent 13', 'Patrick Warburton': 'Hymie', 'Masi Oka': 'Bruce', 'Nate Torrence': 'Lloyd', 'Ken Davitian': 'Shtarker', 'David S. Lee': 'Krstic', 'Dalip Singh': 'Dalip'}" tt0332452,"{'Julian Glover': 'Triopas', 'Brian Cox': 'Agamemnon', 'Nathan Jones': 'Boagrius', 'Adoni Maropis': ""Agamemnon's Officer"", 'Jacob Smith': 'Messenger Boy', 'Brad Pitt': 'Achilles', 'John Shrapnel': 'Nestor', 'Brendan Gleeson': 'Menelaus', 'Diane Kruger': 'Helen', 'Eric Bana': 'Hector', 'Orlando Bloom': 'Paris', 'Siri Svegler': 'Polydora', 'Lucie Barat': ""Helen's Handmaiden"", 'Ken Bones': 'Hippasus', 'Manuel Cauchi': 'Old Spartan Fisherman'}" tt0431308,"{'Hilary Swank': 'Holly', 'Gerard Butler': 'Gerry', 'Lisa Kudrow': 'Denise', 'Gina Gershon': 'Sharon', 'James Marsters': 'John', 'Kathy Bates': 'Patricia', 'Harry Connick Jr.': 'Daniel', 'Nellie McKay': 'Ciara', 'Jeffrey Dean Morgan': 'William', 'Dean Winters': 'Tom', 'Anne Kent': 'Rose Kennedy', 'Brian McGrath': 'Martin Kennedy', 'Sherie Rene Scott': 'Barbara', 'Susan Blackwell': 'Vicky', 'Michael Countryman': 'Ted'}" tt0758794,"{'Matthew McConaughey': 'Jack Lengyel', 'Matthew Fox': 'Red Dawson', 'Anthony Mackie': 'Nate Ruffin', 'David Strathairn': 'President Dedmon', 'Ian McShane': 'Paul Griffen', 'Kate Mara': 'Annie Cantrell', 'January Jones': 'Carole Dawson', 'Kimberly Williams-Paisley': 'Sandy Lengyel', 'Arlen Escarpeta': 'Reggie Oliver', 'Brian Geraghty': 'Tom Bogdan', 'Tommy Cresswell': 'Gene Morehouse', 'Christian Kanupke': 'Young Keith Morehouse', 'Nina Jones': 'Mrs. Morehouse', 'Kevin Atkins': 'George Olson', 'Mark Patton': 'Bill James'}" tt0427327,"{'John Travolta': 'Edna Turnblad', 'Michelle Pfeiffer': 'Velma Von Tussle', 'Christopher Walken': 'Wilbur Turnblad', 'Amanda Bynes': 'Penny Pingleton', 'James Marsden': 'Corny Collins', 'Queen Latifah': 'Motormouth Maybelle', 'Brittany Snow': 'Amber Von Tussle', 'Zac Efron': 'Link Larkin', 'Elijah Kelley': 'Seaweed', 'Allison Janney': 'Prudy Pingleton', 'Nikki Blonsky': 'Tracy Turnblad', 'Taylor Parks': 'Little Inez', 'Jayne Eastwood': 'Miss Wimsey', 'Paul Dooley': 'Mr. Spritzer', 'Jerry Stiller': 'Mr. Pinky'}" tt0086200,"{'Tom Cruise': 'Joel', 'Rebecca De Mornay': 'Lana', 'Joe Pantoliano': 'Guido', 'Richard Masur': 'Rutherford', 'Bronson Pinchot': 'Barry', 'Curtis Armstrong': 'Miles Dalby', 'Nicholas Pryor': ""Joel's Father"", 'Janet Carroll': ""Joel's Mother"", 'Shera Danese': 'Vicki', 'Raphael Sbarge': 'Glenn', 'Bruce A. Young': 'Jackie', 'Kevin Anderson': 'Chuck (as Kevin C. Anderson)', 'Sarah Partridge': 'Kessler', 'Nathan Davis': 'Business Teacher', 'Scott Harlan': 'Stan Licata'}" tt0070034,"{'Bruce Lee': 'Lee', 'John Saxon': 'Roper', 'Jim Kelly': 'Williams', 'Ahna Capri': 'Tania', 'Kien Shih': 'Han (as Shih Kien)', 'Robert Wall': 'Oharra (as Bob Wall)', 'Angela Mao': 'Su Lin (Guest star) (as Angela Mao Ying)', 'Betty Chung': 'Mei Ling', 'Geoffrey Weeks': 'Braithwaite', 'Bolo Yeung': 'Bolo (as Yang Sze)', 'Peter Archer': 'Parsons', 'Li Jen Ho': 'Old Man (as Ho Lee Yan)', 'Marlene Clark': 'Secretary', 'Allan Kent': 'Golfer', 'Bill Keller': 'L.A. Cop'}" tt0335438,"{'Ben Stiller': 'David Starsky', 'Owen Wilson': 'Ken Hutchinson', 'Snoop Dogg': 'Huggy Bear', 'Fred Williamson': 'Captain Doby', 'Vince Vaughn': 'Reese Feldman', 'Juliette Lewis': 'Kitty', 'Jason Bateman': 'Kevin', 'Amy Smart': 'Holly', 'Carmen Electra': 'Staci', 'George Cheung': 'Chau (as George Kee Cheung)', 'Chris Penn': 'Manetti', 'Brande Roderick': 'Heather', 'Molly Sims': 'Mrs. Feldman', 'Matt Walsh': 'Eddie', 'G.T. Holme': 'Bartender'}" tt0468569,"{'Christian Bale': 'Bruce Wayne', 'Heath Ledger': 'Joker', 'Aaron Eckhart': 'Harvey Dent', 'Michael Caine': 'Alfred', 'Maggie Gyllenhaal': 'Rachel', 'Gary Oldman': 'Gordon', 'Morgan Freeman': 'Lucius Fox', 'Monique Gabriela Curnen': 'Ramirez', 'Ron Dean': 'Wuertz', 'Cillian Murphy': 'Scarecrow', 'Chin Han': 'Lau', 'Nestor Carbonell': 'Mayor', 'Eric Roberts': 'Maroni', 'Ritchie Coster': 'Chechen', 'Anthony Michael Hall': 'Mike Engel'}" tt0209958,"{'Jennifer Lopez': 'Catherine Deane', 'Colton James': 'Edward Baines', 'Dylan Baker': 'Henry West', 'Marianne Jean-Baptiste': 'Dr. Miriam Kent', 'Gerry Becker': 'Dr. Barry Cooperman', 'Musetta Vander': 'Ella Baines', 'Patrick Bauchau': 'Lucien Baines', ""Vincent D'Onofrio"": 'Carl Stargher', 'Catherine Sutherland': 'Anne Marie Vicksey', 'Vince Vaughn': 'Peter Novak', 'James Gammon': 'Teddy Lee', 'Jake Weber': 'Gordon Ramsey', 'Dean Norris': 'Cole', 'Tara Subkoff': 'Julia Hickson', 'Lauri Johnson': 'Mrs. Hickson'}" tt0428803,"{'Charles Berling': 'Le père (voice)', 'Romane Bohringer': 'La mère (voice)', 'Jules Sitruk': 'Le bébé (voice)', 'Morgan Freeman': 'Narrator (voice)', 'Amitabh Bachchan': 'Narrator (voice)', 'Jose Coronado': 'Emperor Father (voice)', 'Sky du Mont': 'Narrator (voice)', 'Gösta Ekman': 'Narrator (voice)', 'Fiorello': 'Narrator (voice)', 'Sofie Gråbøl': 'Narrator (voice)', 'Hikari Ishida': 'Haha-Penguin (voice)', 'Ryûnosuke Kamiki': 'Ko-Penguin (voice)', 'Adrian Killian': 'Penguin Baby (voice)', 'Marek Kondrat': 'Narrator (voice)', 'Andrea Kathrin Loewig': 'Penguin Mother (voice)'}" tt0455612,"{'Tyler Perry': 'Madea / Brian / Joe', 'Blair Underwood': 'Carlos Armstrong', 'Lynn Whitfield': 'Victoria', 'Boris Kodjoe': 'Frankie Henderson', 'Lisa Arrindell': 'Vanessa (as Lisa Arrindell Anderson)', 'Maya Angelou': 'May', 'Rochelle Aytes': 'Lisa', 'Jenifer Lewis': 'Milay Jenay Lori', 'Tangi Miller': 'Donna', 'Keke Palmer': 'Nikki', 'Henry Simmons': 'Issac', 'Cicely Tyson': 'Aunt Myrtle', 'China Anderson': 'Nima', 'Akhil Jackson': 'Jonathan', 'Alonzo Millsap': 'Tre'}" tt0825232,"{'Jack Nicholson': 'Edward', 'Morgan Freeman': 'Carter', 'Sean Hayes': 'Thomas', 'Beverly Todd': 'Virginia', 'Rob Morrow': 'Dr. Hollins', 'Alfonso Freeman': 'Roger', 'Rowena King': 'Angelica', 'Annton Berry Jr.': 'Kai', 'Verda Bridges': 'Chandra', 'Destiny Brownridge': 'Maya', 'Brian Copeland': 'Lee', 'Ian Anthony Dale': 'Instructor', 'Jennifer Defrancisco': 'Emily (as Jennifer DeFrancisco)', 'Angela Gardner': 'Female Administrator', 'Noel Gugliemi': 'Mechanic (as Noel Guglielmi)'}" tt0496806,"{'George Clooney': 'Danny Ocean', 'Brad Pitt': 'Rusty Ryan', 'Matt Damon': ""Linus Caldwell / 'Lenny Pepperidge'"", 'Michael Mantell': 'Dr. Stan', 'Elliott Gould': 'Reuben Tishkoff', 'Ray Xifo': ""Reuben's Butler"", 'Al Pacino': 'Willy Bank', 'Adam Lazarre-White': ""Bank's Junior Executive"", 'Eddie Jemison': 'Livingston Dell', 'Don Cheadle': 'Basher Tarr', 'Shaobo Qin': 'Yen', 'Casey Affleck': 'Virgil Malloy', 'Scott Caan': 'Turk Malloy', 'Bernie Mac': 'Frank Catton', 'Carl Reiner': 'Saul Bloom'}" tt0120611,"{'Wesley Snipes': 'Blade', 'Stephen Dorff': 'Deacon Frost', 'Kris Kristofferson': 'Whistler', ""N'Bushe Wright"": 'Karen', 'Donal Logue': 'Quinn', 'Udo Kier': 'Dragonetti', 'Arly Jover': 'Mercury', 'Traci Lords': 'Racquel', 'Kevin Patrick Walls': 'Krieger', 'Tim Guinee': 'Curtis Webb', 'Sanaa Lathan': 'Vanessa', 'Eric Edwards': 'Pearl', 'Donna Wong': 'Nurse', 'Carmen Thomas': 'Senior Resident', 'Shannon Lee': 'Resident'}" tt0338751,"{'Leonardo DiCaprio': 'Howard Hughes', 'Cate Blanchett': 'Katharine Hepburn', 'Kate Beckinsale': 'Ava Gardner', 'John C. Reilly': 'Noah Dietrich', 'Alec Baldwin': 'Juan Trippe', 'Alan Alda': 'Senator Ralph Owen Brewster', 'Ian Holm': 'Professor Fitz', 'Danny Huston': 'Jack Frye', 'Gwen Stefani': 'Jean Harlow', 'Jude Law': 'Errol Flynn', 'Adam Scott': 'Johnny Meyer', 'Matt Ross': 'Glenn Odekirk', 'Kelli Garner': 'Faith Domergue', 'Frances Conroy': 'Mrs. Hepburn', 'Brent Spiner': 'Robert Gross'}" tt1000774,"{'Sarah Jessica Parker': 'Carrie Bradshaw', 'Kim Cattrall': 'Samantha Jones', 'Kristin Davis': 'Charlotte York', 'Cynthia Nixon': 'Miranda Hobbes', 'Chris Noth': 'Mr. Big', 'Candice Bergen': 'Enid Frick', 'Jennifer Hudson': 'Louise', 'David Eigenberg': 'Steve Brady', 'Evan Handler': 'Harry Goldenblatt', 'Jason Lewis': 'Smith Jerrod', 'Mario Cantone': 'Anthony Marentino', 'Lynn Cohen': 'Magda', 'Willie Garson': 'Stanford Blatch', 'Joanna Gleason': 'Therapist', 'Joseph Pupo': 'Brady Hobbes'}" tt0450259,"{'Leonardo DiCaprio': 'Danny Archer', 'Djimon Hounsou': 'Solomon Vandy', 'Jennifer Connelly': 'Maddy Bowen', 'Kagiso Kuypers': 'Dia Vandy', 'Arnold Vosloo': 'Colonel Coetzee', 'Antony Coleman': 'Cordell Brown', 'Benu Mabhena': 'Jassie Vandy', 'Anointing Lukola': ""N'Yanda Vandy"", 'David Harewood': 'Captain Poison', 'Basil Wallace': 'Benjamin Kapanay', 'Jimi Mistry': 'Nabil', 'Michael Sheen': 'Rupert Simmons', 'Marius Weyers': 'Rudolf Van De Kaap', 'Stephen Collins': 'Ambassador Walker', 'Ntare Guma Mbaho Mwine': ""M'Ed (as Ntare Mwine)""}" tt0332280,"{'Tim Ivey': 'Rower', 'Gena Rowlands': 'Allie Calhoun', 'Starletta DuPois': 'Nurse Esther', 'James Garner': 'Duke', 'Anthony-Michael Q. Thomas': 'Nurse Keith', 'Ed Grady': 'Harry', 'Renée Amber': 'Nurse at Counter', 'Jennifer Echols': 'Nurse Selma', 'Geoffrey Knight': 'Barker', 'Kevin Connolly': 'Fin', 'Ryan Gosling': 'Noah', 'Heather Wahlquist': 'Sara Tuffington', 'Rachel McAdams': 'Allie', 'Andrew Schaff': 'Matthew Jamison III', 'Matt Shelly': 'Seabrook Boy'}" tt0097958,"{'Chevy Chase': 'Clark', ""Beverly D'Angelo"": 'Ellen', 'Juliette Lewis': 'Audrey', 'Johnny Galecki': 'Rusty', 'John Randolph': 'Clark, Sr.', 'Diane Ladd': 'Nora', 'E.G. Marshall': 'Art', 'Doris Roberts': 'Francis', 'Randy Quaid': 'Cousin Eddie Johnson', 'Miriam Flynn': 'Cousin Catherine Johnson', 'Cody Burger': 'Rocky', 'Ellen Latzen': 'Ruby Sue (as Ellen Hamilton Latzen)', 'William Hickey': 'Lewis', 'Mae Questel': 'Bethany', 'Sam McMurray': 'Bill'}" tt0032138,"{'Judy Garland': 'Dorothy', 'Frank Morgan': 'Professor Marvel / The Wizard of Oz / The Gatekeeper / The Carriage Driver / The Guard', 'Ray Bolger': ""'Hunk' / The Scarecrow"", 'Bert Lahr': ""'Zeke' / The Cowardly Lion"", 'Jack Haley': ""'Hickory' / The Tin Man"", 'Billie Burke': 'Glinda', 'Margaret Hamilton': 'Miss Gulch / The Wicked Witch of the West', 'Charley Grapewin': 'Uncle Henry', 'Pat Walshe': 'Nikko', 'Clara Blandick': 'Auntie Em', 'Terry': 'Toto (as Toto)', 'The Singer Midgets': 'The Munchkins (as The Munchkins)'}" tt0116529,"{'Chelsea Holland': 'Lou (as Chels Holland)', 'Ariel Mara': 'Betsy', 'Linzy Taylor': 'Lizzie (as Linzy Kelley)', 'Sarah Jane Smith': 'Miss Callahan', 'Alicia Manta': 'Maureen', 'Hunter Johnson': 'School Principal', 'Frank Rosner': 'Mr. Hennessy', 'Matthew Pavlov': 'Mark Musinski', 'Apryl Wynter': 'Denise', 'Noah Wilson': 'Boy at the River', 'Brandon Winston': 'Boy at the River', 'Ashley Carlisle': 'Anabelle', 'Su Friedrich': 'Sex Ed Teacher', 'Maleena Waddy': 'Lead Singer', 'Kirsten Oriol': 'Backup Singer'}" tt0117998,"{'Helen Hunt': 'Dr. Jo Harding', 'Bill Paxton': 'Bill Harding', 'Cary Elwes': 'Dr. Jonas Miller', 'Jami Gertz': 'Dr. Melissa Reeves', 'Philip Seymour Hoffman': 'Dustin Davis', 'Lois Smith': 'Meg Greene', 'Alan Ruck': ""Robert 'Rabbit' Nurick"", 'Sean Whalen': 'Allan Sanders', 'Scott Thomson': ""Jason 'Preacher' Rowe"", 'Todd Field': ""Tim 'Beltzer' Lewis"", 'Joey Slotnick': 'Joey', 'Wendle Josepher': 'Haynes', 'Jeremy Davies': 'Laurence', 'Zach Grenier': 'Eddie', 'Gregory Sporleder': 'Willie'}" tt0313737,"{'Sandra Bullock': 'Lucy Kelson', 'Hugh Grant': 'George Wade', 'Alicia Witt': 'June Carver', 'Dana Ivey': 'Ruth Kelson', 'Robert Klein': 'Larry Kelson', 'Heather Burns': 'Meryl Brooks', 'David Haig': 'Howard Wade', 'Dorian Missick': 'Tony', 'Joseph Badalucco Jr.': 'Construction Foreman (as Joseph Badalucco)', 'Jonathan Dokuchitz': 'Tom', 'Veanne Cox': 'Melanie Corman', 'Janine LaManna': 'Elaine Cominsky', 'Iraida Polanco': 'Rosario', 'Charlotte Maier': 'Helen Wade', 'Katheryn Winnick': 'Tiffany'}" tt0139654,"{'Denzel Washington': 'Alonzo', 'Ethan Hawke': 'Jake', 'Scott Glenn': 'Roger', 'Tom Berenger': 'Stan Gursky', 'Harris Yulin': 'Doug Rosselli', 'Raymond J. Barry': 'Lou Jacobs', 'Cliff Curtis': 'Smiley', 'Dr. Dre': 'Paul', 'Snoop Dogg': 'Blue', 'Macy Gray': ""Sandman's Wife"", 'Charlotte Ayanna': 'Lisa', 'Eva Mendes': 'Sara (as Eva Mendez)', 'Nick Chinlund': 'Tim', 'Jaime Gomez': 'Mark (as Jaime P. Gomez)', 'Raymond Cruz': 'Sniper'}" tt0338348,"{'Tom Hanks': 'Hero Boy / Father / Conductor / Hobo / Scrooge / Santa Claus', 'Leslie Zemeckis': 'Sister Sarah / Mother', 'Eddie Deezen': 'Know-It-All', 'Nona Gaye': 'Hero Girl (voice)', 'Peter Scolari': 'Billy - Lonely Boy', 'Brendan King': 'Pastry Chef', 'Andy Pellick': 'Pastry Chef', 'Josh Eli': 'Waiter', 'Mark Mendonca': 'Waiter', 'Rolondas Hendricks': 'Waiter (as Rolandas Hendricks)', 'Mark Goodman': 'Waiter', 'Jon Scott': 'Waiter', 'Gregory Gast': 'Waiter', 'Sean Scott': 'Waiter', 'Gordon Hart': 'Waiter'}" tt0240772,"{'George Clooney': 'Danny Ocean', 'Cecelia Ann Birt': 'Board Member #1 (voice) (as CeCeLia Birt)', 'Paul L. Nolan': 'Board Member #2 (voice)', 'Carol Florence': 'Board Member #3 (voice)', 'Lori Galinski': 'Blackjack Dealer', 'Bernie Mac': 'Frank Catton', 'Brad Pitt': 'Rusty Ryan', 'Mark Gantt': 'Bartender', 'Tim Perez': 'Security Guard (as Timothy Paul Perez)', 'Elliott Gould': 'Reuben Tishkoff', 'Frank Patton III': 'Lockbox Carrier (as Frank Patton)', 'Casey Affleck': 'Virgil Malloy', 'Scott Caan': 'Turk Malloy', 'Eddie Jemison': 'Livingston Dell', 'Jorge R. Hernandez': 'FBI Man #1'}" tt0212346,"{'Sandra Bullock': 'Gracie Hart', 'Michael Caine': 'Victor Melling', 'Benjamin Bratt': 'Eric Matthews', 'Candice Bergen': 'Kathy Morningside', 'William Shatner': 'Stan Fields', 'Ernie Hudson': 'Harry McDonald', 'John DiResta': 'Agent Clonsky', 'Heather Burns': 'Cheryl Frasier - Miss Rhode Island', 'Melissa De Sousa': 'Karen Krantz - Miss New York', 'Steve Monroe': 'Frank Tobin', 'Deirdre Quinn': 'Mary Jo Wright - Miss Texas', 'Wendy Raquel Robinson': 'Leslie Davis - Miss California', 'Asia De Marcos': 'Alana Krewson - Miss Hawaii', 'Ken Thomas': 'Agent Harris', 'Gabriel Folse': 'Agent Jerry Grant'}" tt0373889,"{'Daniel Radcliffe': 'Harry Potter', 'Harry Melling': 'Dudley Dursley', 'Jason Boyd': 'Piers', 'Richard Macklin': 'Malcolm', 'Kathryn Hunter': 'Mrs. Arabella Figg', 'Miles Jupp': 'TV Weatherman', 'Fiona Shaw': 'Petunia Dursley', 'Richard Griffiths': 'Vernon Dursley', 'Jessica Hynes': 'Mafalda Hopkirk (voice) (as Jessica Stevenson)', 'Adrian Rawlins': 'James Potter', 'Geraldine Somerville': 'Lily Potter', 'Robert Pattinson': 'Cedric Diggory (archive footage)', 'Ralph Fiennes': 'Lord Voldemort', 'Natalia Tena': 'Nymphadora Tonks', 'Brendan Gleeson': ""Alastor 'Mad-Eye' Moody""}" tt0110148,"{'Brad Pitt': 'Louis', 'Christian Slater': 'Malloy', 'Virginia McCollam': 'Whore on Waterfront', 'John McConnell': 'Gambler', 'Tom Cruise': 'Lestat', 'Mike Seelig': 'Pimp', 'Bellina Logan': 'Tavern Girl', 'Thandie Newton': 'Yvette', 'Lyla Hay Owen': 'Widow St Clair', 'Lee E. Scharfstein': ""Widow's Lover (as Lee Emery)"", 'Indra Ové': 'New Orleans Whore (as Indra Ove)', 'Helen McCrory': '2nd Whore', 'Monte Montague': 'Plague Victim Bearer', 'Kirsten Dunst': 'Claudia', 'Nathalie Bloch-Lainé': 'Maid (as Nathalie Bloch)'}" tt0349903,"{'Brad Pitt': 'Rusty Ryan', 'Catherine Zeta-Jones': 'Isabel Lahiri', 'George Clooney': 'Danny Ocean', 'Ed Kross': 'Bank Officer', 'Julia Roberts': 'Tess Ocean', 'Don Tiffany': 'House Painter', 'Anne Jacques': 'Shop Owner', 'David Sontag': 'Plainclothes Goon #1', 'Larry Sontag': 'Plainclothes Goon #2', 'Andy Garcia': 'Terry Benedict', 'Casey Affleck': 'Virgil Malloy', 'Dina Connolly': ""Virgil's Fiancée"", 'Scott Caan': 'Turk Malloy', 'Nelson Peltz': 'Partygoer', 'Mini Anden': 'Supermodel'}" tt0120888,"{'Adam Sandler': 'Robbie Hart', 'Drew Barrymore': 'Julia Sullivan', 'Christine Taylor': 'Holly Sullivan', 'Allen Covert': 'Sammy', 'Matthew Glave': 'Glenn Guglia', 'Ellen Albertini Dow': 'Rosie', 'Angela Featherstone': 'Linda', 'Alexis Arquette': 'George', 'Christina Pickles': 'Angie Sullivan', 'Jodi Thelen': 'Kate', 'Frank Sivero': 'Andy', 'Patrick McTavish': 'Tyler', 'Gemini Barnett': 'Petey', 'Teddy Castellucci': 'Robbie Hart Band Member', 'Randy Razz': 'Robbie Hart Band Member'}" tt0110475,"{'Jim Carrey': 'Stanley Ipkiss', 'Peter Riegert': 'Lt. Mitch Kellaway', 'Peter Greene': 'Dorian', 'Amy Yasbeck': 'Peggy Brandt', 'Richard Jeni': 'Charlie Schumaker', 'Orestes Matacena': 'Niko', 'Tim Bagley': 'Irv (as Timothy Bagley)', 'Nancy Fish': 'Mrs. Peenman', 'Johnny Williams': 'Burt', 'Reg E. Cathey': 'Freeze (as Reginald E. Cathey)', 'Jim Doughan': 'Doyle', 'Denis Forest': 'Sweet Eddy', 'Cameron Diaz': 'Tina Carlyle', 'Joseph Alfieri': 'Police Officer', 'B.J. Barie': 'Alley Punk #1'}" tt0120812,"{'Ken Leung': 'Sang', 'Jackie Chan': 'Lee', 'Tom Wilkinson': 'Griffin / Juntao', 'Tzi Ma': 'Consul Han', 'Robert Littman': 'First Caucasian', 'Michael Chow': 'Dinner Guest', 'Julia Hsu': 'Soo Yung', 'Chris Tucker': 'Carter', 'Chris Penn': 'Clive', 'Kai Lennox': 'Cop at Diner', 'Larry Sullivan': 'Cop at Diner (as Larry Sullivan Jr.)', 'Yang Lin': 'Consul Secretary (as Yan Lin)', 'Roger Fan': ""Soo Yung's Bodyguard"", 'George Cheung': ""Soo Yung's Driver"", 'Lucy Lin': 'Exposition Official'}" tt0330373,"{'Eric Sykes': 'Frank Bryce', 'Timothy Spall': 'Wormtail', 'David Tennant': 'Barty Crouch Junior', 'Daniel Radcliffe': 'Harry Potter', 'Emma Watson': 'Hermione Granger', 'Rupert Grint': 'Ron Weasley', 'Mark Williams': 'Arthur Weasley', 'James Phelps': 'Fred Weasley', 'Oliver Phelps': 'George Weasley', 'Bonnie Wright': 'Ginny Weasley', 'Jeff Rawle': 'Amos Diggory', 'Robert Pattinson': 'Cedric Diggory', 'Jason Isaacs': 'Lucius Malfoy', 'Tom Felton': 'Draco Malfoy', 'Stanislav Yanevski': 'Viktor Krum (as Stanislav Ianevski)'}" tt0087363,"{'Hoyt Axton': 'Randall Peltzer', 'John Louie': 'Chinese Boy', 'Keye Luke': 'Grandfather (Mr. Wing)', 'Don Steele': ""Rockin' Ricky Rialto (voice)"", 'Susan Burgess': 'Little Girl', 'Scott Brady': 'Sheriff Frank', 'Arnie Moore': 'Alex', 'Corey Feldman': 'Pete Fountaine', 'Harry Carey Jr.': 'Mr. Anderson', 'Zach Galligan': 'Billy Peltzer', 'Dick Miller': 'Murray Futterman', 'Phoebe Cates': 'Kate Beringer', 'Polly Holliday': 'Ruby Deagle', 'Donald Elson': 'Man on Street (as Don Elson)', 'Belinda Balaski': 'Mrs. Joe Harris'}" tt0407887,"{'Leonardo DiCaprio': 'Billy', 'Matt Damon': 'Colin Sullivan', 'Jack Nicholson': 'Frank Costello', 'Mark Wahlberg': 'Dignam', 'Martin Sheen': 'Queenan', 'Ray Winstone': 'Mr. French', 'Vera Farmiga': 'Madolyn', 'Anthony Anderson': 'Trooper Brown', 'Alec Baldwin': 'Ellerby', 'Kevin Corrigan': 'Cousin Sean', 'James Badge Dale': 'Trooper Barrigan', ""David O'Hara"": ""Fitzy (as David Patrick O'Hara)"", 'Mark Rolston': 'Delahunt', 'Robert Wahlberg': 'Lazio - FBI', 'Kristen Dalton': 'Gwen'}" tt0145660,"{'Mike Myers': 'Austin Powers / Dr. Evil / Fat Bastard', 'Heather Graham': 'Felicity Shagwell', 'Michael York': 'Basil Exposition', 'Robert Wagner': 'Number Two', 'Rob Lowe': 'Young Number Two', 'Seth Green': 'Scott Evil', 'Mindy Sterling': 'Frau Farbissina', 'Verne Troyer': 'Mini-Me (as Verne J. Troyer)', 'Elizabeth Hurley': 'Vanessa Kensington', 'Gia Carides': 'Robin Swallows', 'Oliver Muirhead': 'British Colonel', 'George Cheung': 'Chinese Teacher (as George Kee Cheung)', 'Jeffrey Meng': 'Chinese Student', 'Muse Watson': 'Klansman', 'Scott Cooper': ""Klansman's Son - Bobby""}" tt0118655,"{'Mike Myers': 'Austin Powers / Dr. Evil', 'Elizabeth Hurley': 'Vanessa Kensington', 'Michael York': 'Basil Exposition', 'Mimi Rogers': 'Mrs. Kensington', 'Robert Wagner': 'Number Two', 'Seth Green': 'Scott Evil', 'Fabiana Udenio': 'Alotta Fagina', 'Mindy Sterling': 'Frau Farbissina', 'Paul Dillon': ""Patty O'Brien"", 'Charles Napier': 'Commander Gilmour', 'Will Ferrell': 'Mustafa', 'Joann Richter': '60s Model', 'Anastasia Sakelaris': '60s Model (as Anastasia Nicole Sakelaris)', 'Afifi Alaouie': '60s Model', 'Monet Mazur': 'Mod Girl'}" tt0486583,"{'Vince Vaughn': 'Fred Claus', 'Paul Giamatti': ""Nick 'Santa' Claus"", 'John Michael Higgins': 'Willie', 'Miranda Richardson': 'Annette Claus', 'Rachel Weisz': 'Wanda', 'Kathy Bates': 'Mother Claus', 'Trevor Peacock': 'Papa Claus', 'Ludacris': ""DJ Donnie (as Chris 'Ludacris' Bridges)"", 'Elizabeth Banks': 'Charlene', 'Jeremy Swift': 'Bob Elf', 'Elizabeth Berrington': 'Linda Elf', 'Kevin Spacey': 'Clyde', 'Rio Hackford': 'Leon', ""Bobb'e J. Thompson"": ""Samuel 'Slam' Gibbons"", 'Allan Corduner': 'Dr. Goldfarb'}" tt0122933,"{'Robert De Niro': 'Paul Vitti', 'Billy Crystal': 'Dr. Ben Sobel', 'Lisa Kudrow': 'Laura MacNamara Sobel', 'Chazz Palminteri': 'Primo Sidone', 'Kresh Novakovic': ""'50s Gangster (as Kresimir Novakovic)"", 'Bart Tangredi': 'Young Vitti Sr.', 'Michael Straka': 'Young Dominic Manetta', 'Joseph Rigano': 'Dominic Manetta (as Joe Rigano)', 'Joe Viterelli': 'Jelly', 'Richard C. Castellano': 'Jimmy Boots (as Richard Castellano)', 'Molly Shannon': 'Caroline', 'Max Casella': 'Nicky Shivers', 'Frank Pietrangolare': 'Tuna', 'Kyle Sabihy': 'Michael Sobel', 'Bill Macy': 'Dr. Isaac Sobel'}" tt0416449,"{'Gerard Butler': 'King Leonidas', 'Lena Headey': 'Queen Gorgo', 'Dominic West': 'Theron', 'David Wenham': 'Dilios', 'Vincent Regan': 'Captain', 'Michael Fassbender': 'Stelios', 'Tom Wisdom': 'Astinos', 'Andrew Pleavin': 'Daxos', 'Andrew Tiernan': 'Ephialtes', 'Rodrigo Santoro': 'Xerxes', 'Giovani Cimmino': 'Pleistarchos (as Giovani Antonio Cimmino)', 'Stephen McHattie': 'Loyalist', 'Greg Kramer': 'Ephor #1', 'Alex Ivanovici': 'Ephor #2', 'Kelly Craig': 'Oracle Girl'}" tt0088939,"{'Danny Glover': 'Albert', 'Whoopi Goldberg': 'Celie Johnson', 'Margaret Avery': 'Shug Avery', 'Oprah Winfrey': 'Sofia', 'Willard E. Pugh': 'Harpo Johnson (as Willard Pugh)', 'Akosua Busia': 'Nettie Harris', 'Desreta Jackson': 'Young Celie Harris', 'Adolph Caesar': 'Old Mister Johnson', 'Rae Dawn Chong': 'Squeak', 'Dana Ivey': 'Miss Millie', 'Leonard Jackson': 'Pa Harris', 'Bennet Guillory': 'Grady', 'John Patton Jr.': 'Preacher', 'Carl Anderson': 'Reverend Samuel', 'Susan Beaubian': 'Corrine'}" tt0367594,"{'Johnny Depp': 'Willy Wonka', 'Freddie Highmore': 'Charlie Bucket', 'David Kelly': 'Grandpa Joe', 'Helena Bonham Carter': 'Mrs. Bucket', 'Noah Taylor': 'Mr. Bucket', 'Missi Pyle': 'Mrs. Beauregarde', 'James Fox': 'Mr. Salt', 'Deep Roy': 'Oompa Loompa', 'Christopher Lee': 'Dr. Wonka', 'Adam Godley': 'Mr. Teavee', 'Franziska Troegner': 'Mrs. Gloop', 'AnnaSophia Robb': 'Violet Beauregarde (as Annasophia Robb)', 'Julia Winter': 'Veruca Salt', 'Jordan Fry': 'Mike Teavee', 'Philip Wiegratz': 'Augustus Gloop'}" tt0295178,"{'Mike Myers': 'Austin Powers / Dr. Evil / Goldmember / Fat Bastard', 'Beyoncé': 'Foxxy Cleopatra (as Beyoncé Knowles)', 'Seth Green': 'Scott Evil', 'Michael York': 'Basil Exposition', 'Robert Wagner': 'Number Two', 'Mindy Sterling': 'Frau Farbissina', 'Verne Troyer': 'Mini Me', 'Michael Caine': 'Nigel Powers', 'Fred Savage': 'Number Three', 'Diane Mizota': 'Fook Mi', 'Carrie Ann Inaba': 'Fook Yu', 'Nobu Matsuhisa': 'Mr. Roboto', 'Aaron Himelstein': 'Young Austin', 'Josh Zuckerman': 'Young Evil', 'Eddie Adams': 'Young Basil'}" tt0096895,"{'Michael Keaton': 'Batman / Bruce Wayne', 'Jack Nicholson': 'Joker / Jack Napier', 'Kim Basinger': 'Vicki Vale', 'Robert Wuhl': 'Alexander Knox', 'Pat Hingle': 'Commissioner Gordon', 'Billy Dee Williams': 'Harvey Dent', 'Michael Gough': 'Alfred', 'Jack Palance': 'Grissom', 'Jerry Hall': 'Alicia', 'Tracey Walter': 'Bob the Goon', 'Lee Wallace': 'Mayor', 'William Hootkins': 'Eckhardt', 'Richard Strange': 'Goon', 'Carl Chase': 'Goon', 'Mac McDonald': 'Goon (as Mac Macdonald)'}" tt0319343,"{'Will Ferrell': 'Buddy', 'James Caan': 'Walter', 'Bob Newhart': 'Papa Elf', 'Edward Asner': 'Santa', 'Mary Steenburgen': 'Emily', 'Zooey Deschanel': 'Jovie', 'Daniel Tay': 'Michael', 'Faizon Love': ""Gimbel's Manager"", 'Peter Dinklage': 'Miles Finch', 'Amy Sedaris': 'Deb', 'Michael Lerner': 'Fulton', 'Andy Richter': 'Morris', 'Kyle Gass': 'Eugene', 'Artie Lange': ""Gimbel's Santa"", 'Leon Redbone': 'Leon the Snowman (voice)'}" tt0089218,"{'Sean Astin': 'Mikey', 'Josh Brolin': 'Brand', 'Jeff Cohen': 'Chunk', 'Corey Feldman': 'Mouth', 'Kerri Green': 'Andy', 'Martha Plimpton': 'Stef', 'Ke Huy Quan': 'Data', 'John Matuszak': 'Sloth', 'Robert Davi': 'Jake', 'Joe Pantoliano': 'Francis', 'Anne Ramsey': 'Mama Fratelli', 'Lupe Ontiveros': 'Rosalita', 'Mary Ellen Trainor': 'Mrs. Walsh', 'Keith Walker': 'Mr. Walsh', 'Curt Hanson': 'Mr. Perkins (as Curtis Hanson)'}" tt0109686,"{'Jim Carrey': 'Lloyd', 'Jeff Daniels': 'Harry', 'Lauren Holly': 'Mary', 'Mike Starr': 'Joe Mentalino', 'Karen Duffy': 'J.P. Shay', 'Charles Rocket': 'Nicholas Andre', 'Victoria Rowell': 'Athletic Beauty', 'Joe Baker': 'Barnard', 'Hank Brandt': 'Karl Swanson', 'Teri Garr': 'Helen Swanson', 'Brady Bluhm': 'Billy', 'Cam Neely': 'Sea Bass', 'Felton Perry': 'Detective Dale', 'Brad Lockerman': 'Bobby', 'Rob Moran': 'Bartender'}" tt0034583,"{'Humphrey Bogart': 'Rick Blaine', 'Ingrid Bergman': 'Ilsa Lund', 'Paul Henreid': 'Victor Laszlo', 'Claude Rains': 'Captain Louis Renault', 'Conrad Veidt': 'Major Heinrich Strasser', 'Sydney Greenstreet': 'Signor Ferrari', 'Peter Lorre': 'Ugarte', 'S.Z. Sakall': 'Carl (as S.K. Sakall)', 'Madeleine Lebeau': 'Yvonne (as Madeleine LeBeau)', 'Dooley Wilson': 'Sam', 'Joy Page': 'Annina Brandel', 'John Qualen': 'Berger', 'Leonid Kinskey': 'Sascha', 'Curt Bois': 'Pickpocket'}" tt0133093,"{'Keanu Reeves': 'Neo', 'Laurence Fishburne': 'Morpheus', 'Carrie-Anne Moss': 'Trinity', 'Hugo Weaving': 'Agent Smith', 'Gloria Foster': 'Oracle', 'Joe Pantoliano': 'Cypher', 'Marcus Chong': 'Tank', 'Julian Arahanga': 'Apoc', 'Matt Doran': 'Mouse', 'Belinda McClory': 'Switch', 'Anthony Ray Parker': 'Dozer', 'Paul Goddard': 'Agent Brown', 'Robert Taylor': 'Agent Jones', 'David Aston': 'Rhineheart', 'Marc Aden Gray': 'Choi (as Marc Gray)'}" tt0304141,"{'Daniel Radcliffe': 'Harry Potter', 'Richard Griffiths': 'Uncle Vernon', 'Pam Ferris': 'Aunt Marge', 'Fiona Shaw': 'Aunt Petunia', 'Harry Melling': 'Dudley Dursley', 'Adrian Rawlins': 'James Potter', 'Geraldine Somerville': 'Lily Potter', 'Lee Ingleby': 'Stan Shunpike', 'Lenny Henry': 'Shrunken Head', 'Jimmy Gardner': 'Ernie the Bus Driver', 'Gary Oldman': 'Sirius Black', 'Jim Tavaré': 'Tom the Innkeeper', 'Robert Hardy': 'Cornelius Fudge', 'Abby Ford': 'Young Witch Maid', 'Rupert Grint': 'Ron Weasley'}" tt0348150,"{'Brandon Routh': 'Clark Kent / Superman', 'Kate Bosworth': 'Lois Lane', 'Kevin Spacey': 'Lex Luthor', 'James Marsden': 'Richard White', 'Parker Posey': 'Kitty Kowalski', 'Frank Langella': 'Perry White', 'Sam Huntington': 'Jimmy Olsen', 'Eva Marie Saint': 'Martha Kent', 'Marlon Brando': 'Jor-El (archive footage)', 'Kal Penn': 'Stanford', 'Tristan Lake Leabu': 'Jason White', 'David Fabrizio': 'Brutus', 'Ian Roberts': 'Riley', 'Vincent Stone': 'Grant', 'Jack Larson': 'Bo the Bartender'}" tt0107050,"{'Jack Lemmon': 'John Gustafson', 'Walter Matthau': 'Max Goldman', 'Ann-Margret': 'Ariel Truax', 'Burgess Meredith': 'Grandpa Gustafson', 'Daryl Hannah': 'Melanie', 'Kevin Pollak': 'Jacob Goldman', 'Ossie Davis': 'Chuck', 'Buck Henry': 'Snyder', 'Christopher McDonald': 'Mike', 'Steve Cochran': 'Weatherman', 'Joe Howard': 'Pharmacist', ""Isabell O'Connor"": 'Nurse (as Isabell Monk)', 'Buffy Sedlachek': 'Punky (as Buffy Sedlacheck)', 'John Carroll Lynch': 'Moving Man', 'Charles Brin': 'Fisherman'}" tt0335266,"{'Scarlett Johansson': 'Charlotte', 'Bill Murray': 'Bob Harris', 'Akiko Takeshita': 'Ms. Kawasaki', 'Kazuyoshi Minamimagoe': 'Press Agent', 'Kazuko Shibata': 'Press Agent', 'Take': 'Press Agent', 'Ryuichiro Baba': 'Concierge', 'Akira Yamaguchi': 'Bellboy', 'Catherine Lambert': 'Jazz Singer', 'François du Bois': 'Sausalito Piano (as Francois du Bois)', 'Tim Leffman': 'Sausalito Guitar', 'Gregory Pekar': 'American Businessman #1', 'Richard Allen': 'American Businessman #2', 'Giovanni Ribisi': 'John', 'Diamond Yukai': 'Commercial Director (as Yutaka Tadokoro)'}" tt0031381,"{'Thomas Mitchell': ""Gerald O'Hara"", ""Barbara O'Neil"": ""Ellen - His Wife (as Barbara O'Neill)"", 'Vivien Leigh': 'Scarlett - Their Daughter', 'Evelyn Keyes': 'Suellen - Their Daughter', 'Ann Rutherford': 'Carreen - Their Daughter', 'George Reeves': ""Stuart Tarleton - Scarlett's Beau"", 'Fred Crane': ""Brent Tarleton - Scarlett's Beau"", 'Hattie McDaniel': 'Mammy - House Servant', 'Oscar Polk': 'Pork - House Servant', 'Butterfly McQueen': 'Prissy - House Servant', 'Victor Jory': 'Jonas Wilkerson - Field Overseer', 'Everett Brown': 'Big Sam - Field Foreman', 'Howard Hickman': 'John Wilkes', 'Alicia Rhett': 'India - His Daughter', 'Leslie Howard': 'Ashley - His Son'}" tt0102798,"{'Kevin Costner': 'Robin of Locksley', 'Morgan Freeman': 'Azeem', 'Mary Elizabeth Mastrantonio': 'Marian', 'Christian Slater': 'Will Scarlett', 'Alan Rickman': 'Sheriff of Nottingham', 'Geraldine McEwan': 'Mortianna', 'Michael McShane': 'Friar Tuck (as Micheal McShane)', 'Brian Blessed': 'Lord Locksley', 'Michael Wincott': 'Guy of Gisborne', 'Nick Brimble': 'Little John', 'Soo Drouet': 'Fanny', 'Daniel Newman': 'Wulf', 'Daniel Peacock': 'Bull', 'Walter Sparrow': 'Duncan', 'Harold Innocent': 'Bishop'}" tt0120689,"{'Tom Hanks': 'Paul Edgecomb', 'David Morse': ""Brutus 'Brutal' Howell"", 'Bonnie Hunt': 'Jan Edgecomb', 'Michael Clarke Duncan': 'John Coffey', 'James Cromwell': 'Warden Hal Moores', 'Michael Jeter': 'Eduard Delacroix', 'Graham Greene': 'Arlen Bitterbuck', 'Doug Hutchison': 'Percy Wetmore', 'Sam Rockwell': ""'Wild Bill' Wharton"", 'Barry Pepper': 'Dean Stanton', 'Jeffrey DeMunn': 'Harry Terwilliger', 'Patricia Clarkson': 'Melinda Moores', 'Harry Dean Stanton': 'Toot-Toot', 'Dabbs Greer': 'Old Paul Edgecomb', 'Eve Brent': 'Elaine Connelly'}" tt0325710,"{'Ken Watanabe': 'Katsumoto', 'Tom Cruise': 'Nathan Algren', 'William Atherton': 'Winchester Rep', 'Chad Lindberg': 'Winchester Rep Assistant', 'Ray Godshall Sr.': 'Convention Hall Attendee', 'Billy Connolly': 'Zebulon Gant', 'Tony Goldwyn': 'Colonel Bagley', 'Masato Harada': 'Omura', 'Masashi Odate': ""Omura's Companion"", 'John Koyama': ""Omura's Bodyguard"", 'Timothy Spall': 'Simon Graham', 'Shichinosuke Nakamura': 'Emperor Meiji', 'Togo Igawa': 'General Hasegawa', 'Satoshi Nikaido': 'N.C.O.', 'Shintaro Wada': 'Young Recruit'}" tt0234215,"{'Ray Anthony': 'Power Station Guard', 'Christine Anu': 'Kali', 'Andy Arness': 'Police #2', 'Alima Ashton-Sheibu': ""Link's Niece"", 'Helmut Bakaitis': 'The Architect', 'Steve Bastoni': 'Soren', 'Don Battee': 'Vector (as Don Batte)', 'Monica Bellucci': 'Persephone', 'Daniel Bernhardt': 'Agent Johnson', 'Valerie Berry': 'Priestess', 'Ian Bliss': 'Bane', 'Liliana Bogatko': 'Old Woman at Zion', 'Michael Budd': 'Zion Controller', 'Stoney Burke': 'Bike Carrier Driver', 'Kelly Butler': 'Ice'}" tt0167261,"{'Bruce Allpress': 'Aldor', 'Sean Astin': 'Sam', 'John Bach': 'Madril', 'Sala Baker': 'Man Flesh Uruk', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Jed Brophy': 'Sharku / Snaga', 'Sam Comery': 'Eothain', 'Brad Dourif': 'Wormtongue', 'Calum Gittins': 'Haleth', 'Bernard Hill': 'Theoden', 'Bruce Hopkins': 'Gamling', 'Paris Howe Strewe': 'Theodred', 'Christopher Lee': 'Saruman'}" tt0120737,"{'Alan Howard': 'Voice of the Ring (voice)', 'Noel Appleby': 'Everard Proudfoot', 'Sean Astin': 'Sam', 'Sala Baker': 'Sauron', 'Sean Bean': 'Boromir', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Marton Csokas': 'Celeborn', 'Megan Edwards': 'Mrs. Proudfoot', 'Michael Elsworth': 'Gondorian Archivist', 'Mark Ferguson': 'Gil-galad', 'Ian Holm': 'Bilbo', 'Christopher Lee': 'Saruman', 'Lawrence Makoare': 'Lurtz'}" tt0120737,"{'Alan Howard': 'Voice of the Ring (voice)', 'Noel Appleby': 'Everard Proudfoot', 'Sean Astin': 'Sam', 'Sala Baker': 'Sauron', 'Sean Bean': 'Boromir', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Marton Csokas': 'Celeborn', 'Megan Edwards': 'Mrs. Proudfoot', 'Michael Elsworth': 'Gondorian Archivist', 'Mark Ferguson': 'Gil-galad', 'Ian Holm': 'Bilbo', 'Christopher Lee': 'Saruman', 'Lawrence Makoare': 'Lurtz'}" tt0295297,"{'Daniel Radcliffe': 'Harry Potter', 'Rupert Grint': 'Ron Weasley', 'Emma Watson': 'Hermione Granger', 'Richard Griffiths': 'Uncle Vernon', 'Fiona Shaw': 'Aunt Petunia', 'Harry Melling': 'Dudley Dursley', 'Toby Jones': 'Dobby (voice)', 'Jim Norton': 'Mr Mason', 'Veronica Clifford': 'Mrs Mason', 'James Phelps': 'Fred Weasley', 'Oliver Phelps': 'George Weasley', 'Julie Walters': 'Mrs. Weasley', 'Bonnie Wright': 'Ginny Weasley', 'Mark Williams': 'Mr. Weasley', 'Chris Rankin': 'Percy Weasley'}" tt0241527,"{'Richard Harris': 'Albus Dumbledore', 'Maggie Smith': 'Professor McGonagall', 'Robbie Coltrane': 'Hagrid', 'Saunders Triplets': 'Baby Harry Potter', 'Daniel Radcliffe': 'Harry Potter', 'Fiona Shaw': 'Aunt Petunia Dursley', 'Harry Melling': 'Dudley Dursley', 'Richard Griffiths': 'Uncle Vernon Dursley', 'Derek Deadman': 'Bartender in Leaky Cauldron', 'Ian Hart': 'Professor Quirrell', 'Ben Borowiecki': 'Diagon Alley Boy', 'Warwick Davis': 'Goblin Bank Teller / Professor Flitwick / Voice of Griphook', 'Verne Troyer': 'Griphook (as Vern Troyer)', 'John Hurt': 'Mr. Ollivander', 'Richard Bremmer': 'He Who Must Not Be Named'}" tt0122151,"{'Mel Gibson': 'Martin Riggs', 'Danny Glover': 'Roger Murtaugh', 'Joe Pesci': 'Leo Getz', 'Rene Russo': 'Lorna Cole', 'Chris Rock': 'Detective Lee Butters', 'Jet Li': 'Wah Sing Ku', 'Steve Kahan': 'Captain Ed Murphy', 'Kim Chan': ""Benny 'Uncle Benny' Chan"", 'Darlene Love': 'Trish Murtaugh', 'Traci Wolfe': 'Rianne Murtaugh Butters', 'Eddy Ko': 'Hong, Chinese Refugee', 'Jack Kehler': 'State Department Man', 'Calvin Jung': 'Detective Ng', 'Damon Hines': 'Nick Murtaugh', 'Ebonie Smith': 'Carrie Murtaugh'}" tt0405159,"{'Clint Eastwood': 'Frankie Dunn', 'Hilary Swank': 'Maggie Fitzgerald', 'Morgan Freeman': 'Eddie Scrap-Iron Dupris', 'Jay Baruchel': 'Danger Barch', 'Mike Colter': 'Big Willie Little', 'Lucia Rijker': ""Billie 'The Blue Bear'"", ""Brían F. O'Byrne"": ""Father Horvak (as Brían O'Byrne)"", 'Anthony Mackie': 'Shawrelle Berry', 'Margo Martindale': 'Earline Fitzgerald', 'Riki Lindhome': 'Mardell Fitzgerald', 'Michael Peña': 'Omar', 'Benito Martinez': ""Billie's Manager"", 'Bruce MacVittie': 'Mickey Mack', 'David Powledge': 'Counterman at Diner', ""Joe D'Angerio"": ""Cut Man (as Joe d'Angerio)""}" tt0104714,"{'Mel Gibson': 'Martin Riggs', 'Danny Glover': 'Roger Murtaugh', 'Joe Pesci': 'Leo Getz', 'Rene Russo': 'Lorna Cole', 'Stuart Wilson': 'Jack Travis', 'Steve Kahan': 'Captain Murphy', 'Darlene Love': 'Trish Murtaugh', 'Traci Wolfe': 'Rianne Murtaugh', 'Damon Hines': 'Nick Murtaugh', 'Ebonie Smith': 'Carrie Murtaugh', 'Gregory Millar': 'Tyrone', 'Nick Chinlund': 'Hatchett', 'Jason Rainwater': 'Young Cop (as Jason Meshover-Iorg)', 'Alan Scarfe': 'Herman Walters', 'Delores Hall': 'Delores'}" tt0177971,"{'George Clooney': 'Billy Tyne', 'Mark Wahlberg': 'Bobby Shatford', 'John C. Reilly': ""Dale 'Murph' Murphy"", 'Diane Lane': 'Christina Cotter', 'William Fichtner': ""David 'Sully' Sullivan"", 'John Hawkes': ""Mike 'Bugsy' Moran"", 'Allen Payne': 'Alfred Pierre', 'Mary Elizabeth Mastrantonio': 'Linda Greenlaw', 'Karen Allen': 'Melissa Brown', 'Cherry Jones': 'Edie Bailey', 'Bob Gunton': 'Alexander McAnally III', 'Christopher McDonald': 'Todd Gross', 'Michael Ironside': 'Bob Brown', 'Rusty Schwimmer': ""Irene 'Big Red' Johnson"", 'Janet Wright': 'Ethel Shatford'}" tt0114369,"{'Morgan Freeman': 'Somerset', 'Andrew Kevin Walker': 'Dead Man at 1st Crime Scene (as Andy Walker)', 'Daniel Zacapa': 'Detective Taylor at First Murder', 'Brad Pitt': 'Mills', 'Gwyneth Paltrow': 'Tracy', 'John Cassini': 'Officer Davis', 'Bob Mack': 'Gluttony Victim', 'Peter Crombie': ""Dr. O'Neill"", 'Reg E. Cathey': 'Dr. Santiago', 'R. Lee Ermey': 'Police Captain', 'George Christy': ""Workman at Door of Somerset's Office"", 'Endre Hules': 'Cab Driver', 'Hawthorne James': 'George the Night Guard at the Library', 'William Davidson': 'First Guard at the Library (as Roscoe Davidson)', 'Bob Collins': 'Second Guard at the Library'}" tt0293564,"{'Chris Tucker': 'Carter', 'Jackie Chan': 'Lee', 'Max von Sydow': 'Reynard', 'Hiroyuki Sanada': 'Kenji', 'Yvan Attal': 'George', 'Yûki Kudô': 'Dragon Lady', 'Noémie Lenoir': 'Genevieve (as Noemie Lenoir)', 'Jingchu Zhang': 'Soo Yung (as Zhang Jingchu)', 'Tzi Ma': 'Ambassador Han', 'Dana Ivey': 'Sister Agnes', 'Henry O': 'Master Yu (as Henry O.)', 'Mia Tyler': 'Marsha', 'Michael Chow': 'Chinese Foreign Minister', 'David Niven Jr.': 'British Foreign Minister', 'Oanh Nguyen': 'Mi'}" tt0242653,"{'Mary Alice': 'The Oracle', 'Tanveer K. Atwal': 'Sati', 'Helmut Bakaitis': 'The Architect', 'Kate Beahan': 'Coat Check Girl', 'Francine Bell': 'Councillor Grace', 'Monica Bellucci': 'Persephone', 'Rachel Blackman': 'Charra', 'Henry Blasingame': 'Deus Ex Machina', 'Ian Bliss': 'Bane', 'David Bowers': 'Q-Ball Gang Member #1', 'Zeke Castelli': 'Operations Officer Mattis', 'Collin Chou': 'Seraph', 'Essie Davis': 'Maggie', 'Laurence Fishburne': 'Morpheus', 'Nona Gaye': 'Zee'}" tt6836772,"{'Ifan Meredith': 'Lt. Calloway', 'Kimberley Hews': 'Angelique', 'Darren Hill': 'Vincent Harris', 'Kyle Hotz': 'Sgt. Walker', 'Conner P. Kelley': 'Thomas (as Connor Kelley)', 'Tyler Cole': 'Roger King', 'Michael Wouters': 'Strasser', 'Brent Roske': 'Pierre', 'Gerard Pauwels': 'Colonel Plummer', 'Jerry L. Beasley': 'Harmon', 'Eddie Curry': 'German Scientist', 'Paul Nicely': 'Luc', 'Christopher W.D. Howe': 'Radio Operator', 'Charles J. Adams': 'Radio Operator', 'Alex Willey': 'German Soldier'}" tt1521787,"{'Lira Kellerman': 'Susan', 'Michael Holmes': 'Drake', 'Tomas Boykin': 'Harrison Dent', 'Kimberly Ables Jindra': 'Sarah Winchester', 'Patty Roberts': 'Haley (as Barry Womack)', 'Jennifer Smart': 'Annie', 'Rob Ullett': 'James Clayhill', 'David McIntyre': 'Officer Cooper', 'Savannah Schoenecker': 'Margo Hunter', 'Sari Sheehan': 'Jessica Lloyd', 'Rya Meyers': 'Marlene', 'Mitch Toles': 'Blind Ghost (as Mitcheal Toles)', 'Jefferson Wilmore': 'Civil War Ghost', 'Frank Weitzel': 'Gunshot Ghost', 'George Michael Lampe': 'Nasty Ghost'}" tt1876517,"{'Jon Heder': 'Fu (voice)', 'Tom Arnold': 'Shifu (voice)', 'Rebecca Black': 'Penny (voice)', 'Claire Geare': 'Biggie (voice)', 'Michael Clarke Duncan': 'Slash (voice)'}" tt2386490,"{'Jay Baruchel': 'Hiccup (voice)', 'America Ferrera': 'Astrid (voice)', 'F. Murray Abraham': 'Grimmel (voice)', 'Cate Blanchett': 'Valka (voice)', 'Gerard Butler': 'Stoick (voice)', 'Craig Ferguson': 'Gobber (voice)', 'Jonah Hill': 'Snotlout (voice)', 'Christopher Mintz-Plasse': 'Fishlegs (voice)', 'Kristen Wiig': 'Ruffnut (voice)', 'Kit Harington': 'Eret (voice)', 'Justin Rupple': 'Tuffnut (voice)', 'Robin Atkin Downes': 'Ack (voice)', 'Kieron Elliott': 'Hoark (voice)', 'Julia Emelin': 'Griselda the Grevious (voice)', 'Gideon Emery': 'Trapper (voice)'}" tt2381317,"{'Ming-Na Wen': 'Dr. Jenna Sparks (as Ming-Na)', 'Nicholas Turturro': 'Travis Verdon', 'Andy Clemence': 'Dr. Percy Cavanaugh', 'Darin Cooper': 'Colonel Lee Chadwick', 'Jonathan Le Billon': 'Engineer Alex Rowell', 'Dylan Vox': 'Gary Winters', 'AnnaMaria Demara': 'Sgt. Maj. Ramona Peters', 'Steve Hanks': 'Captain Worley', 'Wayne Lopez': 'Uncle Clegg', 'Mitch Lerner': 'Dr. Flynn', 'Jamie Burton-Oare': 'Secretary West', 'Todd James Jackson': 'Lt. Davy Connelly', 'Gospel Jackson': 'Captain Williams', 'Mat Lageman': 'Pvt. Kramer', 'Tracy Winters': 'Mrs. Annabelle Moore'}" tt7131870,"{'Jing Wu': 'Leng Feng', 'Frank Grillo': 'Big Daddy', 'Celina Jade': 'Rachel Prescott Smith', 'Gang Wu': 'He Jianguo', 'Hans Zhang': 'Zhuo Yifan', 'Qian Yu': 'Bida Qian', 'Nan Yu': 'Long Xiaoyun', 'Shanshan Chunyu': 'Lin Zhixiong', 'Haifeng Ding': 'Captain Zhang', 'Oleg Prudius': 'Bear', 'Heidi Moneymaker': 'Athena', 'Aaron Ly': 'Ghost', 'Scott Adkins': 'Tomcat (archive footage)', 'Paul Allica': 'Mercenary', 'Pierre Bourdaud': 'Jack'}" tt2611408,"{'The Evil Hate Monkey': 'The Evil Hate Monkey', 'Trixie Little': 'Trixie Little'}" tt1610528,"{'Meredith Baxter': 'President Harriet Franklin', 'Lindsey McKeon': 'Special Agent Gina Vitale', 'Scott Valentine': 'Joseph Franklin', 'Geoff Meed': 'Robert Stevens', 'Jude Gerard Prest': 'First Officer Bill Alexander', 'Matt Lagan': 'National Security Advisor Cason', 'Bart Baggett': 'Harry', 'Londale Theus': 'Agent Melville', 'Chip Bent': 'Fred', 'Nicholas J. Leinbach': 'DJ Rocker', 'Ed Callison': 'General Dillard', 'Jim Boeven': 'Snake', 'Carl Watts': 'Digrazzi', 'Peter Smith': 'Sky Marshall', 'Riley Polanski': 'Michael Franklin'}" tt1757944,"{'Fiona Perry': 'Princess Evelyn Cottington', 'Bill Oberst Jr.': 'Theodore Snyder', 'Bobbi Jo Lathan': 'Aunt Fay', 'Ron Hajak': 'Lawrence', 'Aubrey Wakeling': 'Fernando', 'Alison Lees-Taylor': 'Velora', 'Jonathan Nation': 'Sheriff Bartelbum', 'Olivia Stuck': 'Becky', 'Kim Little': 'Queen Matilda', 'Brian Ibsen': 'Roberts', 'Bennett Gillespie': 'Mr. Blair', 'Zachary Mitchell': 'Liam', 'Amber Lea Voiles': 'Lunacian News Reporter (as Amber Wiles)', 'Debra Harrison-Lowe': 'British News Reporter', 'Lilan Bowden': 'Chinese News Reporter'}" tt1107365,"{'Joel McHale': 'Elliot (voice)', 'Mike Epps': 'Boog (voice)', 'Jane Krakowski': 'Giselle (voice)', 'Billy Connolly': 'McSquizzy (voice)', 'Crispin Glover': 'Fifi (voice)', 'Steve Schirripa': 'Roberto (voice)', 'Georgia Engel': 'Bobbie (voice)', 'Diedrich Bader': 'Rufus (voice)', 'Cody Cameron': 'Mr. Weenie (voice)', 'Fred Stoller': 'Stanley (voice)', 'Olivia Hack': 'Charlene (voice)', 'Danny Mann': 'Serge (voice)', 'Maddie Taylor': 'Deni / Buddy / Ian (voice) (as Matt Taylor)', 'Nika Futterman': 'Rosie (voice)', 'Sean Mullen': 'Roger (voice) (as Sean P. Mullen)'}" tt1636629,"{'Patrick Muldoon': 'Adrian Sinbad', 'Sarah Desage': 'Loa', 'Bo Svenson': 'Simon Magnusson', ""Kelly O'Leary"": 'Gemma Hargrove', 'Dylan Jones': 'Joseph Atash', 'Berne Velasquez': 'Mehrak', 'Peter Greathouse': 'Whittaker', 'Clifford Garbutt': 'Abdi the Consul', 'Dax': 'Maxamillion', 'Gautam Sabnani': 'Lincoln', 'Horacio Louis Guerrero': 'Andrews', 'Rhondeen Pitts': 'Mei', 'Oliver Mason': 'Alex Degraves', 'Victoria Jeffries': 'Queen Siren', 'Maria Jeffery': 'Siren'}" tt7204400,"{'Matthew Pohlkamp': 'Matt Mason', 'Natalie Pelletier': 'Johanna Mason', 'Erich Riegelmann': 'Rick Mason', 'Maggie Rose Hudson': 'Kaley Mason', 'Isabella Bazler': 'Cassie Mason', 'M. Steven Felty': 'Roberto Gianelli', 'Deyo Forteza': 'Rajesh Vasquez', 'Nathan Leung': 'Noah Smith', 'Tammy Klein': 'Dr. M. Picciotto', 'Jay Cardell': 'Rodney Jackson', 'Annie Quigley': 'Aurora', 'Channing McKindra': 'May', 'Phong Tran': 'Motorcycle Guy', 'Eric Paul Erickson': 'Prepper Leader (as Eric Erickson)', 'Ryan Patrick Shanahan': 'Oliver'}" tt3417334,"{'Dean Cain': 'Rick Pierce', 'Robin Givens': 'Lisa Whitmore', 'Tamara Goodwin': 'Rita Loss', 'Matt Mercer': 'Landon Todd', 'Morgan West': 'Specialist Neil Tully', 'Lawrence Hilton-Jacobs': 'Jim Kirkland', 'Graham Denman': 'Private Vaughn', 'Mike Jerome Putnam': 'Colonel Ryker', 'Anthony Marks': 'Frank Matthews', 'David Vega': 'Carlos Crieger', 'Ryan Budds': 'Private Thatch', 'Jonathan Nation': 'Captain Minor', 'Jeff Groff': 'Jeff Spair', 'Natalie Burtney': 'Jennifer', 'Zachary Haven': 'Tony'}" tt7475886,{} tt0264734,"{'Ben Affleck': 'Joseph (voice)', 'Mark Hamill': 'Judah (voice)', 'Richard Herd': 'Jacob (voice)', 'Maureen McGovern': 'Rachel (voice)', 'Jodi Benson': 'Asenath (voice)', 'Judith Light': 'Zuleika (voice)', 'James Eckhouse': 'Potiphar (voice)', 'Richard McGonagle': 'Pharaoh (voice)', 'David Campbell': 'Joseph (singing voice)', 'Steven Weber': 'Simeon / Slave Trader (voice)', 'Dan Castellaneta': 'Auctioneer / Horse Trader (voice)', 'Rene Auberjonois': 'Butler (voice)', 'Ken Hudson Campbell': 'Baker (voice) (as Ken Campbell)', 'Tom Virtue': 'Reuben (voice)', 'Jeff Bennett': 'Levi (voice)'}" tt1912996,"{'Jeneta St. Clair': 'Cheryl', 'Lisa Younger': 'Lexi', 'Melissa Johnston': 'Sue', 'Morgan Benoit': 'Jake', 'Myko Olivier': 'Eric', 'Matthew Keoki Miller': 'Frank (as Matt Miller)', 'Joy Amber Stephens': 'Johanna / J.J.', 'Irec Hargrove': 'Rod', 'Wolfie Trausch': 'Chris', 'Andre Meadows': 'Tom', 'Lee Doud': 'Troy', 'Alex Arleo': 'Jeremy', 'Alex Zanger': 'Jesus (as Alec Zanger)', 'Joseph O. Gara': 'Jo', 'Kevin Yarbrough': 'The Priest'}" tt1911533,"{'Yaz Canli': 'Sandy (uncredited)', 'Kai Cofer': 'Dr. Frederick Gruber (uncredited)', 'Christopher Karl Johnson': 'Father Renz (uncredited)', 'Nikki Muller': 'Anneliese Michel (uncredited)', 'Annette Remter': 'Anna Michel (uncredited)', 'David Reynolds': 'Josef Michel (uncredited)', 'Robert Shampain': 'Dr. Kenneth Landers (uncredited)', 'Korey Simeone': 'Steve Parker (uncredited)', 'Gerold Wunstel': 'Pastor Ernest Alt (uncredited)'}" tt1473801,"{'Rollin Perry': ""Josh 'Spanky' Green"", 'Seth Cassell': 'Mert (as Seth Adam Cassell)', 'Michelle Penick': 'Princess', 'Rana Davis': 'Strawberry', 'Maurice Constable': 'Mr. Clink', 'Lindsey Ahern': 'Pinky', 'Brent Anthony': 'Little Joe Joe', 'Teryl Brouillette': 'Ellen Green (as Terry Brouillette)', 'Theresa Deveaux': 'Mama Love', 'Lola Forsberg': 'Leah', 'Elina Madison': 'Nancy', 'Jack Ross': 'Max (as Matthew Ross)', 'T.J. Zale': 'Darlington', 'Giusy Castiglione': 'Dream Woman', 'Becky T. Bordo': 'Bikini Jane (as Tahel Becky Bordo)'}" tt1615480,"{'Tom Sizemore': 'Leroy Lowe', 'Stacy Keach': 'Warden Merville', 'Kevin P. Farley': 'Bubba', 'Héctor Jiménez': 'Emilio', 'Olga Segura': 'Madalena', 'Bob Rickard': 'Judge', 'Rock Williams': 'Prison Guard', 'Tom Gulager': 'Prison Guard', 'Kaj Sturdivant': 'Prison Guard', 'Leighton R. Shields': 'Minister', 'Orock Orock': 'Prisoner', 'Scott Forrester': 'Prisoner', 'Pedro Alvarado': 'Prisoner', 'Darrell Britt': 'Prisoner / KKK Member', 'Carlos Soto-Montes': 'Prisoner'}" tt1912981,"{'Bill Oberst Jr.': 'Wayne Downs', 'Courtney Abbiati': 'Carrie Downs', 'Jenna Stone': 'Alli Downs', 'Nicholas Harsin': 'Kyle Downs', 'Carey Van Dyke': 'Mike Goodwin', 'Gerald Webb': 'Mayor Avery Colllins', 'Jason Paul Field': 'Sheriff Underhill', 'Courtney DeCosky': 'Mrs. Underhill', 'Sam Kinsey': ""Underhill's Son"", 'Sonny King': 'McSwain (as Alfred H. Sonny King)', 'Shaula Chambliss': 'Ms. Winston', 'Josh Roman': 'Kevin', 'Catherine Lidstone': 'Sara Good', 'Lauren Kelley': 'Rebecca Nurse', 'Shoshana Chagall': 'Witch #2 (as Shoshanna Chagall)'}" tt0096118,"{'Pamela Springsteen': 'Angela', 'Renée Estevez': 'Molly', 'Tony Higgins': 'Sean', 'Valerie Hartman': 'Ally', 'Brian Patrick Clarke': 'T.C.', 'Walter Gotell': 'Uncle John', 'Susan Marie Snyder': 'Mare', 'Terry Hobbs': 'Rob', 'Kendall Bean': 'Demi', 'Julie Murphy': 'Lea', 'Carol Chambers': 'Brooke', 'Amy Fields': 'Jodi', 'Benji Wilhoite': 'Anthony', 'Walter Franks III': 'Judd', 'Justin Nowell': 'Charlie'}" tt1823051,"{'Jaz Martin': 'Rick Merchant', 'Hennely Jimenez': 'Kelly Garcia', 'AnnaMaria Demara': 'Claudia', 'Darren Anthony Thomas': 'Kayce (as Darren Thomas)', 'Zedrick Restauro': 'Phong', 'Jared Kahn': 'Albert (as Jared M. Kahn)', 'Paul Logan': 'Officer Flynn', 'Janet Tracy Keijser': 'Debbie Merchant (as Janet T. Keijser)', 'Tommy Nash': 'Tom Merchant', 'Sam Aaron': 'Lou', 'Cleo Berry': 'Jake', 'Mack-b': 'Domingo Juarez (as Makelaie Brown)', 'Pason': 'Amber', 'Sean Cory': 'Attendant (as Sean Cory Cooper)', 'Meredith Thomas': 'Cherrie the Manager'}" tt1876517,"{'Jon Heder': 'Fu (voice)', 'Tom Arnold': 'Shifu (voice)', 'Rebecca Black': 'Penny (voice)', 'Claire Geare': 'Biggie (voice)', 'Michael Clarke Duncan': 'Slash (voice)'}" tt2062996,"{'Bun B': 'Himself', 'B-Real': 'Himself', 'Afrika Bambaataa': 'Himself', 'Derek Barbosa': 'Himself (as Chino XL)', 'Yasiin Bey': 'Himself (as Mos Def)', 'Big Daddy Kane': 'Himself', 'Kool Boy': 'Himself', 'Joe Budden': 'Himself', 'Busy Bee': 'Himself', 'Cashout Chris': 'Himself', 'Chuck D': 'Himself', 'Common': 'Himself', ""Anthony 'Treach' Criss"": 'Himself', 'Dana Dane': 'Himself', 'Feddie Demarco': 'Himself'}" tt0264734,"{'Ben Affleck': 'Joseph (voice)', 'Mark Hamill': 'Judah (voice)', 'Richard Herd': 'Jacob (voice)', 'Maureen McGovern': 'Rachel (voice)', 'Jodi Benson': 'Asenath (voice)', 'Judith Light': 'Zuleika (voice)', 'James Eckhouse': 'Potiphar (voice)', 'Richard McGonagle': 'Pharaoh (voice)', 'David Campbell': 'Joseph (singing voice)', 'Steven Weber': 'Simeon / Slave Trader (voice)', 'Dan Castellaneta': 'Auctioneer / Horse Trader (voice)', 'Rene Auberjonois': 'Butler (voice)', 'Ken Hudson Campbell': 'Baker (voice) (as Ken Campbell)', 'Tom Virtue': 'Reuben (voice)', 'Jeff Bennett': 'Levi (voice)'}" tt1473801,"{'Rollin Perry': ""Josh 'Spanky' Green"", 'Seth Cassell': 'Mert (as Seth Adam Cassell)', 'Michelle Penick': 'Princess', 'Rana Davis': 'Strawberry', 'Maurice Constable': 'Mr. Clink', 'Lindsey Ahern': 'Pinky', 'Brent Anthony': 'Little Joe Joe', 'Teryl Brouillette': 'Ellen Green (as Terry Brouillette)', 'Theresa Deveaux': 'Mama Love', 'Lola Forsberg': 'Leah', 'Elina Madison': 'Nancy', 'Jack Ross': 'Max (as Matthew Ross)', 'T.J. Zale': 'Darlington', 'Giusy Castiglione': 'Dream Woman', 'Becky T. Bordo': 'Bikini Jane (as Tahel Becky Bordo)'}" tt5218234,{} tt1576379,"{'Cristina Murta': 'Lechuza', 'Alejandra Rubio': 'Gama Ciega'}" tt6874406,"{'Caroline Ivari': 'Emma Harper', 'Stephen Brown': 'Benjamin Robbins (as Steve Brown)', 'Cedric Jonathan': 'Ishiro Tsubaraya', 'Michael Marcel': 'Freddie', 'Mishone Feigin': 'Bruce', 'Ana Zimhart': 'Sandrine', 'Britt George': 'General Wesley Augursin', 'Dennis Renard': 'Doran', 'Brandon George': 'Gas Station Attendant', 'Mike Duff': 'Security Guard', 'Kevin Duffin': 'Guard', 'Natalia Herrera': 'NASA Astrophycist', 'Sarah J. Bartholomew': 'Airman 1 (as Sarah Bartholomew)', 'Jude Williams': 'Child', 'Sari Sabella': 'Background person'}" tt6874406,"{'Caroline Ivari': 'Emma Harper', 'Stephen Brown': 'Benjamin Robbins (as Steve Brown)', 'Cedric Jonathan': 'Ishiro Tsubaraya', 'Michael Marcel': 'Freddie', 'Mishone Feigin': 'Bruce', 'Ana Zimhart': 'Sandrine', 'Britt George': 'General Wesley Augursin', 'Dennis Renard': 'Doran', 'Brandon George': 'Gas Station Attendant', 'Mike Duff': 'Security Guard', 'Kevin Duffin': 'Guard', 'Natalia Herrera': 'NASA Astrophycist', 'Sarah J. Bartholomew': 'Airman 1 (as Sarah Bartholomew)', 'Jude Williams': 'Child', 'Sari Sabella': 'Background person'}" tt6231792,"{'Haiden Deegan': 'Himself', 'Josh Hill': 'Himself', 'Dean Wilson': 'Himself'}" tt0842000,"{'Troy Garity': 'Marchello (voice)', 'Mara Lane': 'Hummingbird (voice)', 'Michelle Rodriguez': 'Jujube (voice)', 'Dominique Swain': 'Mom (voice)', 'Troy Hall': 'Bunji / Larry Black Shoes / Side-Kick Crow / Black Lab / Black & White Dog / High Wire Squirrel (voice)', 'I.M. Pei': 'TV Personality', 'Jeremy Sisto': 'Jiminy Squirrel (voice)', 'Mark Sussman': ""Jujube's Dog / Black Lab's Master / Blackie's 2 Dogs / Rabbit / Tortoise (voice)"", 'Greg Lindsay': 'TV Personality / Red Dog / Rex (voice)', 'Amy Jo Steele': 'Catnapper / Sparrow / Rosie the Terrier (voice)', 'Shannon Conlon': 'Pinky (voice)', 'Jeremy Piven': 'Blackie (voice)', 'Richard Velazquez': 'Stinky / Frog 4 (voice) (as Richie Velazquez)'}" tt3410834,"{'Shailene Woodley': 'Tris', 'Theo James': 'Four', 'Naomi Watts': 'Evelyn', 'Octavia Spencer': 'Johanna', 'Jeff Daniels': 'David', 'Zoë Kravitz': 'Christina', 'Ansel Elgort': 'Caleb', 'Miles Teller': 'Peter', 'Keiynan Lonsdale': 'Uriah', 'Daniel Dae Kim': 'Jack Kang', 'Maggie Q': 'Tori', 'Bill Skarsgård': 'Matthew', 'Jonny Weston': 'Edgar', 'Nadia Hilker': 'Nita', 'Andy Bean': 'Romit'}" tt0385307,"{'Sandra Bullock': 'Gracie Hart', 'Regina King': 'Sam Fuller', 'Enrique Murciano': 'Jeff Foreman', 'William Shatner': 'Stan Fields', 'Ernie Hudson': 'FBI Asst. Director Harry McDonald', 'Heather Burns': 'Cheryl Frasier', 'Diedrich Bader': 'Joel Meyers', 'Treat Williams': 'FBI Asst. Director Walter Collins', 'Abraham Benrubi': 'Lou Steele', 'Nick Offerman': 'Karl Steele', 'Eileen Brennan': 'Carol Fields', 'Elisabeth Röhm': 'Agent Janet McKaren', 'Leslie Grossman': 'Pam', 'Lusia Strus': 'Janine', 'Molly Gottlieb': 'Priscilla'}" tt4172430,"{'John Krasinski': 'Jack Silva', 'James Badge Dale': ""Tyrone 'Rone' Woods"", 'Pablo Schreiber': ""Kris 'Tanto' Paronto"", 'David Denman': ""Dave 'Boon' Benton"", 'Dominic Fumusa': ""John 'Tig' Tiegen"", 'Max Martini': ""Mark 'Oz' Geist"", 'Alexia Barlier': 'Sona Jillani', 'David Costabile': 'Bob', 'Payman Maadi': 'Amahl (as Peyman Moaadi)', 'Matt Letscher': 'Ambassador Chris Stevens', 'Toby Stephens': ""Glen 'Bub' Doherty"", 'Demetrius Grosse': 'DS Dave Ubben', 'David Giuntoli': 'DS Scott Wickland', 'Kevin Kent': 'DS Vincent', 'David Furr': 'DS Alec'}" tt1482459,"{'Danny DeVito': 'The Lorax (voice)', 'Ed Helms': 'The Once-ler (voice)', 'Zac Efron': 'Ted (voice)', 'Taylor Swift': 'Audrey (voice)', 'Betty White': 'Grammy Norma (voice)', 'Rob Riggle': ""Mr. O'Hare (voice)"", 'Jenny Slate': ""Ted's Mom (voice)"", 'Nasim Pedrad': ""Once-ler's Mom (voice)"", 'Joel Swetow': '1st Marketing Guy (voice)', 'Michael Beattie': '2nd Marketing Guy (voice)', 'Dave B. Mitchell': '1st Commercial Guy (voice) (as Dave Mitchell)', 'Dempsey Pappion': '2nd Commercial Guy (voice)', 'Elmarie Wendel': 'Aunt Grizelda (voice)', 'Danny Cooksey': 'Brett / Chet (voice)', 'Stephen Tobolowsky': 'Uncle Ubb (voice)'}" tt3250590,"{'Leslie Acoca': 'Herself - Founder, National Girls Health and Justice Institute', 'Beth Adubato': 'Herself - Professor of Criminal Justice - New York Institute of Technology', 'Brigitte Alexander': 'Herself - Director, Sexual Assault Response Team, North Central Bronx Hospital', 'Patricia Arquette': 'Herself - Actress, Activist, Executive Producer', 'Naheed Bahram': 'Herself - Program Director - Women for Afghan Women', 'Dina Bakst': 'Herself - Co-Founder and Co-President - A Better Balance, The Work and Family Legal Center', 'Lucienne Beard': 'Herself', 'Helen Benedict': ""Herself - Columbia University's Graduate School of Journalism, Author (as Professor Helen Benedict)"", 'Kim Biddle': 'Herself - Founder, Executive Director, Saving Innocence', 'Kathryn Brown': 'Herself', 'Olivia Brown': 'Herself', 'Martha Burke': 'Herself - Founder, The Center for Advancement of Public Policy (as Dr. Martha Burke)', 'Paula Caplan': ""Herself - Psychologist, Associate, Harvard University's Dubois Institute"", 'Karen Carroll': 'Herself - Forensic Nurse, Sexual Assault Response Team', 'Cayenne': 'Himself'}" tt2923316,"{'Hayden Christensen': 'James Kelly', 'Adrien Brody': 'Frankie Kelly', 'Jordana Brewster': 'Emily', 'Akon': 'Sugar', 'Tory Kittles': 'Ray', 'Luis Da Silva Jr.': 'Spoonie', 'Lance E. Nichols': 'Auto Shop Boss', 'John McConnell': 'Bank Manager', 'Joe Chrest': '(Police) Captain Sullivan', 'Aaron V. Williamson': 'House', 'Rachel Bilson': 'Eyewitness', 'Laura Cayouette': 'Loan Officer', 'Carol Sutton': 'Hostage Woman', 'Elena Sanchez': 'Katie', 'Belinda Delgado': 'Stripper'}" tt0228333,"{'Natasha Henstridge': 'Lieutenant Melanie Ballard', 'Ice Cube': 'Desolation Williams', 'Jason Statham': 'Sgt Jericho Butler', 'Clea DuVall': 'Bashira Kincaid', 'Pam Grier': 'Commander Helena Braddock', 'Joanna Cassidy': 'Whitlock', 'Richard Cetrone': 'Big Daddy Mars', 'Rosemary Forsyth': 'Inquisitor', 'Liam Waite': 'Michael Descanso', 'Duane Davis': 'Uno', 'Lobo Sebastian': 'Dos', 'Rodney A. Grant': 'Tres', 'Peter Jason': 'McSimms', 'Wanda De Jesus': 'Akooshay', 'Doug McGrath': 'Benchley'}" tt0071675,"{'John P. Ryan': 'Frank Davies (as John Ryan)', 'Sharon Farrell': 'Lenore Davies', 'Andrew Duggan': 'The Professor', 'Guy Stockwell': 'Bob Clayton', 'James Dixon': 'Lt. Perkins', 'Michael Ansara': 'The Captain', 'Robert Emhardt': 'The Executive', 'William Wellman Jr.': 'Charley', 'Shamus Locke': 'The Doctor', 'Nancy Burnett': 'Nurse (as Mary Nancy Burnett)', 'Patrick McAllister': 'Expectant Father (as Patrick Macallister)', 'Daniel Holzman': 'Chris', 'Diana Hale': 'Secretary', 'Gerald York': 'Expectant Father', 'Jerry Taft': 'Expectant Father'}" tt3949660,"{'Megan Fox': ""April O'Neil"", 'Will Arnett': 'Vernon Fenwick', 'Laura Linney': 'Chief Vincent', 'Stephen Amell': 'Casey Jones', 'Noel Fisher': 'Michelangelo', 'Jeremy Howard': 'Donatello', 'Pete Ploszek': 'Leonardo', 'Alan Ritchson': 'Raphael', 'Tyler Perry': 'Baxter Stockman', 'Brian Tee': 'Shredder', 'Stephen Farrelly': 'Rocksteady (as Sheamus)', 'Gary Anthony Williams': 'Bebop', 'Peter Donald Badalamenti II': 'Splinter (as Peter D. Badalementi)', 'Tony Shalhoub': 'Splinter (voice)', 'Brad Garrett': 'Krang (voice)'}" tt2538778,"{'Armand Assante': 'Mussa', 'Karlygash Mukhamedzhanova': 'Aliya', 'Cary-Hiroyuki Tagawa': 'Khazar', ""Peter O'Toole"": 'Tugboat', 'Michael Madsen': 'Mike', ""Tommy 'Tiny' Lister"": 'Louie (as Tommy Lister)', 'Don Wilson': ""Mister Lo (as Don 'The Dragon' Wilson)"", 'Olivier Gruner': 'Tony', 'Assan Mazhit': 'Sorrel (as Asan Mazhit)', 'Bolo Yeung': 'Bulo', 'Kanat Abishev': 'Mr. Wong', 'Zhanelya Alikova': 'Little Aliya', 'Nurlan Altaev': 'Arman (as Nurlan Altayev)', 'Aleksandr An': 'Swift', 'Dzhangir Arifov': 'Boris'}" tt3911554,"{'Kengo Hioki': 'Himself', 'Kotaro Tsukada': 'Himself', 'Yumiko Hioki': 'Herself', 'Akiteru Ito': 'Himself', 'Akihiko Naruse': 'Herself'}" tt0106452,"{'Terry Kinney': 'Steve Malone', 'Meg Tilly': 'Carol Malone', 'Gabrielle Anwar': 'Marti Malone', 'Reilly Murphy': 'Andy Malone', 'Billy Wirth': 'Tim Young', 'Christine Elise': 'Jenn Platt', 'R. Lee Ermey': 'General Platt', 'Kathleen Doyle': 'Mrs. Platt', 'Forest Whitaker': 'Major Collins', 'G. Elvis Phillips': 'Pete', 'Stanley Small': ""Platt's Aide"", 'Tonea Stewart': 'Teacher', 'Keith Smith': 'Soldier Gas Station', 'Winston E. Grant': 'Gas Attendant', 'Phil Neilson': 'MP Gate Captain'}" tt3700392,"{'Anuk Steffen': 'Heidi', 'Anna Schinz': 'Dete', 'Lilian Naef': 'Barbel', 'Bruno Ganz': 'Alpöhi', 'Peter Jecklin': 'Pfarrer', 'Christoph Gaugler': 'Senner', 'Quirin Agrippi': 'Geissenpeter', 'Rebecca Indermaur': 'Geissenpeterin', 'Monica Gubser': 'Grossmutter', 'Arthur Bühler': 'Dörfler', 'Marietta Jemmi': 'Frau im Dorf', 'Peter Lohmeyer': 'Sebastian', 'Katharina Schüttler': 'Fräulein Rottenmeier', 'Isabelle Ottmann': 'Klara', 'Jella Haase': 'Tinette'}" tt0096486,"{'Yahoo Serious': 'Albert Einstein', 'Odile Le Clezio': 'Marie Curie', 'John Howard': 'Preston Preston', 'Peewee Wilson': 'Mr. Einstein', 'Su Cruickshank': 'Mrs. Einstein', 'Lulu Pinkus': 'The Blonde', 'Kaarin Fairfax': 'The Brunette', 'Michael Lake': 'Manager', 'Jonathan Coleman': 'Wolfgang Bavarian', 'Johnny McCall': 'Rudy Bavarian / Tasmanian Devil', 'Michael Blaxland': 'Desk Clerk', 'Ray Fogo': 'Bright Clerk', 'Terry Pead': 'Inventor Couple', 'Alice Pead': 'Inventor Couple', 'Frank McDonald': 'Nihilist'}" tt2403021,"{'Lorenza Izzo': 'Justine', 'Ariel Levy': 'Alejandro', 'Daryl Sabara': 'Lars', 'Kirby Bliss Blanton': 'Amy', 'Magda Apanowicz': 'Samantha', 'Sky Ferreira': 'Kaycee', 'Nicolás Martínez': 'Daniel', 'Aaron Burns': 'Jonah', 'Ignacia Allamand': 'Kara', 'Ramón Llao': 'The Bald Headhunter', 'Richard Burgi': 'Charles', 'Matías López': 'Carlos', 'Antonieta Pari': 'The Village Elder', 'Tatiana Panaifo': 'Village Girl', 'Percy Chumbe': 'Guard Leader'}" tt0191636,"{'Juliette Binoche': 'Pauline (Madame La)', 'Daniel Auteuil': 'Jean (The Captain)', 'Emir Kusturica': 'Ariel Neel Auguste', 'Michel Duchaussoy': 'The Governor', 'Philippe Magnan': 'President Venot', 'Christian Charmetant': 'Supply and Secretariat Officer', 'Philippe du Janerand': 'Customs Officer', 'Maurice Chevit': ""The Governor's Father"", 'Catherine Lascault': 'La Malvilain', 'Ghyslain Tremblay': 'Monsieur Chevassus', 'Reynald Bouchard': 'Louis Ollivier', 'Marc Béland': 'Soldier Loïc', 'Yves Jacques': 'The Rear Admiral', 'Dominique Quesnel': 'The Proprietor', 'Anne-Marie Philipe': ""The Governor's Wife""}" tt3503840,"{'Steven Seagal': 'John Alexander', 'Byron Mann': 'Chi', 'Howard Dell': 'Van Horn', 'Adina Stetcu': 'Nadia', 'Vinnie Jones': 'The Boss', 'Josh Barnett': 'Colt', 'Maria Bata': 'Diana', 'Cosmin Dominte': 'Sergei', 'Sergiu Costache': 'The Afghani', 'George Remes': 'Victor', 'Sabina Branduse': ""John's Wife"", 'Lavinia Geambasu': 'Working Girl', 'Massimo Dobrovic': 'Handler', 'Claudiu Bleont': ""Working Girl's John"", 'Andreea Afloarei': 'Receptionist'}" tt2113075,"{'Skylan Brooks': 'Mister', 'Ethan Dizon': 'Pete', 'Jennifer Hudson': 'Mom Gloria', 'Adewale Akinnuoye-Agbaje': 'Sergeant Pike', 'Jordin Sparks Thomas': 'Alice (as Jordin Sparks)', 'Julito McCullum': 'Dip Stick', 'Anthony Mackie': 'Kris', 'Jeffrey Wright': 'Henry', 'Kenneth Maharaj': 'Store Owner (as Ken Maharaj)', 'Nikkieli DeMone': 'Officer Redd', 'Joseph Adams': 'Mr. Carey', 'Kate Buddeke': 'Neighbor Lady', 'Joey Auzenne': 'Officer Duckworth', 'Adriane Lenox': 'Group Home Lady', 'Kate Geller': 'Assistant'}" tt1353997,"{'Marc Singer': 'Maxim', 'Brian Thompson': 'Kirill', 'Jason Connery': 'Gurion', 'Daniel Bonjour': 'Arkadi', 'Jennifer Dorogi': 'Katya', 'Russell Reynolds': 'Anson (as G. Rusell Reynolds)', 'Jack Goldenberg': 'Frank', 'Richard Lund': 'King Agmar', 'Jonathan Nation': 'Rachek', 'Nihilist Gelo': 'Svetka (as J. Scott)', 'Mona Lee Goss': ""Maxim's Mother"", 'Elvis Naumovski': 'General Tolfar', 'Jay Beyers': 'Tolfar Thug', 'Aleta Mackey': 'Tolfar Thug', 'Aoni Jackson': 'Tolfar Thug'}" tt1999141,"{'Dylan Jones': 'John the Brave', 'Cecily Fay': 'Aerona', 'Feth Greenwood': 'Eldred the Strong', 'Shinead Byrne': 'Neem', 'Tony Sams': 'Sigmund', 'Simon Lloyd-Roberts': 'Maldwyn', 'Charles Barrett': 'Harad', 'Christian Howard': 'Calvain', 'Gary Crosbie': 'Gerald', 'Ambrose Flemming': 'Anthony', 'Mark Richard Hayes': 'Janzoon (as Mark Hayes)', 'Mike Lockley': 'Gruffud', 'William Huw': 'Gronwy', 'Kathy Francis': ""The Witch of Caer'lo"", 'Iona Thonger': 'Forest Queen'}" tt3677466,"{'Kelly Hu': 'Dr. Gordon', 'Anthony Marks': 'Captain James Wheeler', 'Robert Picardo': 'General Magowan', 'Lane Townsend': 'Chris Meher', 'Morgan West': 'Rick Sullivan', 'Mitchell Shawn': 'Colonel Mac (as Mitchell Carpenter)', 'Nick Stellate': 'Major Blake', 'Nicholas Alexander': 'Sgt. Clayton', 'Sarah Karijan': 'Control', 'Joseph Price': 'Casey', 'Matt Mercer': 'Johnny Hansen', 'Laura Alexandra Ramos': 'Cabrera', 'Jennifer Marshall': 'Lieutenant Southard', 'Taylor Coliee': 'Lindsay', 'Patrick Lazzara': 'Fitzpatrick'}" tt0073260,"{'Doug McClure': 'Bowen Tyler', 'John McEnery': 'Captain Von Schoenvorts', 'Susan Penhaligon': 'Lisa Clayton', 'Keith Barron': 'Bradley', 'Anthony Ainley': 'Dietz', 'Godfrey James': 'Borg', 'Bobby Parr': 'Ahm', 'Declan Mulholland': 'Olson', 'Colin Farrell': 'Whiteley', 'Ben Howard': 'Benson', 'Roy Holder': 'Plesser', 'Andrew McCulloch': 'Sinclair', 'Ron Pember': 'Jones', 'Grahame Mallard': 'Deusett', 'Andrew Lodge': 'Reuther'}" tt2175927,"{'Mario Van Peebles': 'Captain James Winston', 'Carl Weathers': 'General Hugh McKraken', 'Johanna Watts': 'Lt. Caroline Bradley', 'Nikki McCauley': 'Dr. Julia Flynn', 'Elijah Chester': 'Secretary Of Defense Alter', 'Sean Patrick Smith': '1st Officer Bryant', 'Devin McGee': 'Lt. Cmdr. Juarez', 'Chris Hayes': 'Lt. Anders', 'April Ezell Wilson': 'Dr. Erica Billman', 'David Polinsky': 'Admiral Hollis', 'Gray Hawks': 'Communications Officer Wexler', 'Robin Robertson': 'Major (as Robin Dale Robertson)', 'Josh Cohen': 'Weapons Officer Clancy', 'Aaron Griswold': 'Munitions Team Leader', 'Mandela Van Peebles': 'Lookout Dunbar'}" tt1219671,"{'Sean Cameron Michael': 'Allan Quatermain', 'Christopher Adamson': 'Anisley Hartford', 'Natalie Stone': 'Lady Anna Heresford', 'Daniel Bonjour': 'Sir Henry Curtis', 'Wittly Jourdan': 'Umbopa', 'Nick Everhart': 'Neville Heresford', 'Thomas Fakude': 'King Twala', 'Mzuza': 'Gagool', 'Phiwayinkosi Gumede': 'General Infadoos', 'Mduduz Nxumalo': 'Scragga', 'Mfafa Msimango': 'Bhekizizwe', 'Xolisile Khanyile': 'Nonkululeko', 'Nomkhosi Mthiyane': 'Nkosazana', 'Mpume Mthiyane': 'Sizwe', 'Kende Gamede': 'Mhambi'}" tt1056026,"{'Lorenzo Lamas': 'Lieutenant Michael Arronax', 'Sean Lawlor': 'Captain Nemo', 'Natalie Stone': 'Lieutenant Commander Lucille Conciel', 'Kim Little': 'Specialist Donna Sustin', 'Victor J. Springer': 'Captain Farragut', 'Emilio Roso': 'Ramirez (as Emilio Rosso)', 'Michael Tower': 'Captain Anderson', 'Damien Puckler': 'Blackwell', 'Declan Joyce': 'Cooper', 'Rob Filson': 'Gunner', 'John Tessier': 'Canner', 'Kenn Jenkins': 'First Officer to Nemo', 'Spencer Jones': 'Navigator Ruskin', 'Dorothy Drury': 'First Officer Clarke', 'Dan Halladay': 'First Officer Means'}" tt1136683,"{'Michael Gross': 'Dr. Frank Reno', 'Christopher Atkins': 'Erik Reno', 'Greg Evigan': 'LCDR Ellis Dorn', 'Marie Westbrook': 'Ruth', 'Phil Burke': 'Stubbs', 'Wendy Carter': 'Betty', 'Geoff Meed': 'CPO Lopes', 'Stephen Blackehart': 'Lt. Robert Peet', 'Dean Kreyling': ""Chief 'Bud' Stark"", 'Daniel Ponsky': 'Billy Jones', 'Nick McCallum': 'Burke', 'Dustin Harnish': 'Young Frank Reno', 'Jeff Bornstein': 'LAPD Pilot', 'Eric Spudic': 'Police Co-Pilot', 'Aaron Stigger': 'Manriquez'}" tt1075746,"{'Mark Dacascos': 'Renchard', 'Geoff Meed': 'Vincent', 'Jennifer Lee Wiggins': 'Brianna', 'Ryan Lloyd': 'Mike', 'Joshua Schlegel': ""Renchard's Son (as Joshua William Schlegel)"", 'Gregory Paul Smith': 'Various Zombies', 'Matthew Bolton': 'Tunnel Zombie', 'Myles McLane': 'Mutant Zombie', 'Frank Forbes': 'Cop Zombie', 'Afton Forbes': 'Girl Zombie', 'Hayden Forbes': 'Little Boy Zombie', 'Charles Peeke Jr.': 'Big Zombie', 'Wil Braithwaite': 'Various Zombies', 'Marlon Nash': 'Various Zombies', 'Bob Landau': 'Various Zombies'}" tt1531911,"{'Antonio Sabato Jr.': 'John Carter', 'Traci Lords': 'Dejah Thoris', 'Matt Lasky': 'Tars Tarkas', 'Chacko Vadaketh': 'Sarka / Sab Than', 'Mitchell Gordon': 'Tal Hajus', 'Noelle Perris': 'Sola', 'Matt Lagan': 'Kantos Kan', 'Kimberly Ables Jindra': 'Saroh Kan', 'Tomas Boykin': 'Cornwell Sams', 'Rob Ullett': 'Hudson', 'Dean Kreyling': 'Atol Nard', 'Mohammad Kavianpour': 'Hosan', 'Jay Beyers': 'Thark Gordack', 'Ali Tagi Alexander': 'Jamal', 'Jonathan Footman': 'Thark'}" tt2756412,"{'Adrian Paul': 'Lt. Frank Baum', 'Richard Grieco': 'Capt. Sam Crowe', 'Bali Rodriguez': 'Lea', 'Gray Hawks': 'TIM', 'Jay Cardell': 'Sgt. Peebles', 'Daniel Ross Mix': 'Colin', 'Michelle Jones': 'Hannah', 'Erika Hidalgo': 'Victoria', 'Jessica Russo': 'Cassie', 'Martin Adebisi': 'Young Buck (as Marin Esq.)', 'Winston Washington': 'Honda', 'Steve Bencich': 'Jason', 'Erik Werther': 'Arlo', 'Luna Lunerisima': 'Humanoid Queen', 'Cesar Alvarado': 'Humanoid Advisor'}" tt2081255,"{'Eliza Bennett': 'Snow White', 'Jane March': 'Queen Gwendolyn', 'Jamie Thomas King': 'Prince Alexander', 'Otto Jankovich': 'Hugh the Advisor', 'Ben Maddox': 'Huntsman Beasley', 'Sebastian Wimmer': 'Runt', 'Alan Burgon': 'Orlando', 'Frauke Steiner': 'Mara', 'Sabine Kranzelbinder': 'Isabella', 'Eric Lomas': 'Cyrus', 'Klara Steinhauser': 'Allura', 'Eberhard Wagner': 'The King', 'Bernhard Rusch': 'Wally the Stable Boy (as Bernhard Georg Rusch)', 'Lukas Johne': 'Dungeon Master', 'Maciej Salamon': 'Captain (as Mac Salamon)'}" tt1183733,"{'C. Thomas Howell': 'George Herbert', 'Christopher Reid': 'Pete', 'Kim Little': 'Victoria Reed', 'Jonathan Levit': 'Gorman', 'Danna Brady': 'Sissy', 'Fred Griffith': 'Major Kramer', 'Darren Dalton': 'Shackleford', 'David Regal': 'Finius', 'Leslie Gomez': 'Charleze', 'Zack Beseda': 'Squid killer', 'Jason S. Gray': 'Stingray', 'Jonathan Nation': 'Stram', 'Murray SawChuck': 'Tobias', 'Rebecca Baril': 'Selma', 'Liam Howell': 'Liam'}" tt1846444,"{'Patrick Labyorteaux': 'Bill Hart', 'Julie McCullough': 'Teri Hart', 'Katie Wilson': 'Julia Hart', 'Nick Afanasiev': 'Nelson Hart', 'Kyle Morris': 'Logan', 'Cedric Scott': 'Senator Hopper', 'Chacko Vadaketh': 'Divya', 'Ted Monte': 'Gary', 'David Light': 'Roy Larkings', 'Gerald Webb': 'Gerald', 'Sean Cory': 'Lt. Col. Sinor', 'Rae Latt': 'Airport Security Officer', 'Bryan Hanna': 'AWACS Pilot', 'Wesley Waite': 'Wesley', 'Darren Anthony Thomas': 'Cop (as Darren Thomas)'}" tt1325753,"{'Fred Tatasciore': 'Hulk (voice)', 'Matthew Wolf': 'Thor (voice) (as Matt Wolf)', 'Graham McTavish': 'Loki (voice)', 'Grey Griffin': 'Sif (voice) (as Grey DeLisle)', 'Kari Wahlgren': 'Amora (voice)', 'Bryce Johnson': 'Bruce Banner (voice)', 'Janyse Jaud': 'Hela / Lady Deathstrike (voice)', 'Jay Brazeau': 'Volstagg (voice)', 'Jonathan Holmes': 'Fandral (voice)', 'Paul Dobson': 'Hogun (voice)', 'Michael Adamthwaite': 'Balder (voice)', 'French Tickner': 'Odin (voice)', 'Nicole Oliver': 'Betty Ross / Valkyrie (voice)', 'Qayam Devji': 'Bruce Junior (voice)', 'Scott McNeil': 'Additional Voices (voice)'}" tt1694508,"{'Barry Bostwick': 'Captain Ahab', ""Renée O'Connor"": 'Dr. Michelle Herman', 'Matt Lagan': ""Capt. John 'Boomer' Enderby"", 'Adam Grimes': 'Lt. Commander Starbuck', 'Dean Kreyling': 'Admiral De Deers', 'Jay Gillespie': 'Young Ahab', 'Jay Beyers': 'Young Boomer', 'Carl Watts': 'Captain Pollard', 'Thom Rachford': 'Captan Chase', 'Carlos Antonio': 'Captain Macey', 'Brian Hall': 'Stubb', 'Bart Baggett': 'Lt. Flask', 'Michael Teh': 'Queequeg', 'Derrick Scott': 'Pip (as Derrick A. Scott)', 'Durant': 'Doughby (as Durant Fowler)'}" tt0942903,"{'Ben Browder': 'Lt. Col. Cameron Mitchell', 'Amanda Tapping': 'Lt. Col. Samantha Carter', 'Christopher Judge': ""Teal'c"", 'Michael Shanks': 'Dr. Daniel Jackson', 'Beau Bridges': 'Maj. Gen. Henry Landry', 'Claudia Black': 'Vala Mal Doran', 'Currie Graham': 'James Marrick', 'Morena Baccarin': 'Adria', 'Tim Guinee': 'Tomin', 'Julian Sands': 'Doci', 'Sarah Strange': 'Morgan Le Fay / Ganos Lal', 'Michael Beach': 'Col. Abe Ellis', 'Gary Jones': 'Chief Master Sgt. Walter Harriman', 'Martin Christopher': 'Maj. Kevin Marks', 'Chris Gauthier': 'Hertis (as Christopher Gauthier)'}" tt0929629,"{'Ben Browder': 'Lt. Col. Cameron Mitchell / Captain of the Achilles', 'Amanda Tapping': 'Lt. Col. Samantha Carter', 'Christopher Judge': ""Teal'c"", 'Michael Shanks': 'Daniel Jackson', 'Beau Bridges': ""Maj. Gen. Henry 'Hank' Landry"", 'Claudia Black': 'Vala Mal Doran / Qetesh', 'Richard Dean Anderson': ""General Jonathan 'Jack' O'Neill"", 'William Devane': 'President Hayes', 'Cliff Simon': ""Ba'al"", 'Don S. Davis': 'Maj. Gen. George Hammond', 'Steve Bacic': 'Camulus', 'Gary Jones': 'Chief Master Sgt. Walter Harriman', 'Jacqueline Samuda': 'Nirrti', 'Peter Williams': 'Apophis', 'Darcy Cadman': 'Russian Officer'}" tt0115985,"{'Rutger Hauer': 'A.T.', 'Josh Charles': 'Joe Talbot', 'Stuart Wilson': 'Ferris', 'Andrea Roth': 'Laura', 'Perry Anzilotti': 'Rebo', 'Jack Black': 'Steve', 'Richard McGregor': 'Stu', 'Ellen Geer': ""Joe's Mom"", 'Beverly Johnson': 'The Queen', 'Michael Stadvec': 'Cop #1', 'Michael Wiseman': 'Cop #2', 'Shani Rigsbee': 'The Dancer', 'Norita Golanos': 'Receptionist (as Norita Galanos)', 'Tony Ervolina': ""Joe's Father""}" tt1479847,"{'Brian Krause': 'Kelvin', 'Heather McComb': 'Laura', 'Najarra Townsend': 'Tina', 'Allura Lee': 'Dr. Kwang Ye', 'Alan Poe': 'Dzerzhinsky', 'Londale Theus': 'Captain Henreaux', 'Stephen Schneider': 'Captain James Moto', 'Rob Ullett': 'NASA Official', 'Dana Tomasko': 'NASA Technician', 'Rick L. Dean': 'NASA Technician (as Rick Dean)', 'Pete Angelikus': 'NASA Technician', 'William Joseph Hutchins': 'NASA Technician', 'Doug Newman': 'NASA Technician', 'Jeff Crabtree': 'NASA Technician', 'Mays Jackson': 'NASA Technician'}" tt1294699,"{'Simon Lloyd-Roberts': 'Merlin', 'Joseph Stacey': 'Vendiger', 'Dylan Jones': 'Uther', 'Hefin Wyn': 'King Vortigen', 'Jürgen Prochnow': 'The Mage', 'William Huw': 'Torm', 'Gary Twomey': 'King Eringar', 'Carys Eleri': 'Lady Viviane', 'Nia Ann': 'Lady Nimue', 'Iona Thonger': 'Ingraine', 'Dylan Thomas': 'Ambrosis', 'Iago Patrick McGuire': 'Hengest', 'Dennis Carr': 'Kelvern', 'Peter Hind': 'Arvel', 'Iwan Benneyworth': 'Beneforth (as Iwan James Benneyworth)'}" tt2456594,"{'Bai Ling': 'Laylan', 'Sun Korng': 'Goben', 'Srogn': 'Tak Tek', 'Khom Lyly': 'Omi', 'Christopher Judge': 'Amthar', 'Jerry Earr': 'Varm', 'Armani Nguon': 'Pesh', 'Antonis Greco': 'King Korm', 'Tom Eurt': 'Suta', 'Kreb': 'Koto', 'Savorne Horm': 'Chi-Cha', 'Neng Houy': 'Saytay', 'Hak Hoy': 'Java Picker', 'Hun Sophy': 'Gahargath', 'Ka': 'Balgog'}" tt1758570,"{'Nia Peeples': 'Capt. Karla Smaith', 'Kel Mitchell': 'Lt. Tyler Laughlin', 'Dylan Vox': 'Capt. Pete Rodgers', 'Theresa June-Tao': 'Lt. Solano', 'Gerald Webb': 'Lt. Jeffery Newman', 'Edward DeRuiter': 'Capt. Arnstead', 'Darin Cooper': 'Capt. Hadron', 'Robert Pike Daniel': 'Cmdr. Wakes', 'Tim Abell': 'Col. Macon', 'Michele Boyd': 'Pilot #1 - Lt. Jean Hendricks', 'Stephen Blackehart': 'Pilot #2 - Lt. Kirkman', ""Lorry O'Toole"": 'Pilot #3', 'Scot Nery': 'Kaor', 'Wayne Santoni': 'MJ12 Sentry #1', 'Natalia Fedner': 'MJ12 Sentry #2'}" tt1261046,"{'Violent J': 'Violent J', 'Shaggy 2 Dope': 'Shaggy 2 Dope', 'Scott Levy': 'Reaper (as Raven)', 'Jason Ellefson': 'Fred the Hammer', 'Robert Pike Daniel': 'Governor Black', 'Stephen Blackehart': 'Harvey Winkler', 'Dean Kreyling': 'Dr. Shank', 'Anya Benton': 'Whore of Babylon', 'Caroline Attwood': 'Jennifer Ramirez', 'Jennifer Keith': 'Double Dee Destruction (as Jennifer Elizabeth Keith)', 'Teri Corcoran': 'Queen B (as Therese)', 'Krystle Connor': 'Candy Moore', 'Mark Hengst': 'Warden Junior', 'Dustin Fitzsimons': 'FX', 'Damien Puckler': 'Metal Machine Man'}" tt2130142,"{'Dominique Swain': 'Dr. Paige Morgan', 'Jake Busey': 'Dr. Adrian Riestad', 'Joshua Michael Allen': 'Dr. Lucas Moss (as Josh Allen)', 'Christopher Karl Johnson': 'Dr. Josef Mengele (as Christopher K. Johnson)', 'James Maxwell Young': 'Adolf Hitler (as James Maxwell)', 'Lilan Bowden': 'May Yun', 'Marlene Okner': 'Silje Lagesen', 'Adam Burch': 'Dr. Mark Maynard', 'Maria Pallas': 'Angela Magliarossa', 'Abderrahim Halaimia': 'Rahul Jumani', 'Trevor Kuhn': 'Brian Moak', 'Andre Tenerelli': 'Aaron Blechman', 'Chris Sanders': 'Lieutenant (as Cristofer Sanders)', 'Keith Allan Wilber': 'Sergeant', 'Kevin Allen': 'Soldier'}" tt2740710,"{'Graham Greene': 'General Hadley', ""Anthony 'Treach' Criss"": 'Lieutenant Jim Rushing (as Treach)', 'David Chokachi': 'Red', 'Jackie Moore': 'Tracey', 'Nicole Alexandra Shipley': 'Stone', 'Larry Gamell Jr.': 'Smith (as Lawrence Gamell Jr.)', 'Steven Marlow': 'Sheldon', 'Jinhi Evans': 'Quinn', 'Sara Bond': 'Jennifer', 'Melissa Foster': 'Ensign', 'William Shannon Williams': 'Dagger (as Shannon Williams)', 'Marquez Linder': 'MP (as Marquez Kinder)', 'Conner Bryan': 'Joey', 'Nicole Dickson': 'Margaret', 'Demetrius Stear': 'Lieutenant Wexler'}" tt4296026,"{'Casper Van Dien': 'Rumpelstiltskin', 'Lauren Parkinson': 'Snow White', 'Lou Ferrigno': 'Iron John', 'Milynn Sarley': 'Cinderella', 'Marah Fairclough': 'Sleeping Beauty', 'Rileah Vanderbilt': 'Rapunzel', 'Elizabeth Peterson': 'Red', 'Kimo Leopoldo': 'The Wolf', 'Andrew E. Tilles': 'Tucker', 'Justine Herron': 'Jessica', 'Henry Foster Brown': 'Officer LaGuardia (as Henry Brown)', 'Jonathan Medina': 'Jack', 'Jonathan Nation': 'Officer Biggs', 'Daniel Nemes': 'Officer Ernst', 'Andrew Pinon': 'Officer Lyau'}" tt4685096,"{'Karrueche Tran': 'Maggie', 'Jason Simmons': 'Dr. Nelson (as Jaason Simmons)', 'Rob Van Dam': 'Stanley', 'Danny Trejo': 'Max Burns', 'Jena Sims': 'Dr. Laura Thomas', 'Brad Mills': 'Greg', 'Scott Thomas Reynolds': 'Ryan (as Scott Reynolds)', 'Rico Ball': 'Omar', 'Dawn Hamil': 'Alison', 'Bob Constance': 'Brad', 'James Poule': 'Brian', 'Steve Norris': 'Steve (as Stephen Norris)', 'Larry Gamell Jr.': 'Dr. Leonard', 'Mark Nager': 'Seth', 'Preston Simmons': 'Zach'}" tt2043757,"{'Carmen Electra': 'Anne Babish', ""Charlie O'Connell"": 'Prof. Babish', 'Brooke Hogan': 'Kate', 'Christina Bach': 'Dana (as Christina Bach Norman)', 'Gerald Webb': 'Han', 'David Gallegos': 'Paul', 'Geoff Ward': 'Cole', 'Mercedes Young': 'Liza (as Mercedes C. Young)', 'Shannan Stewart': 'Lyndsey', 'Tihirah Taliaferro': 'Michelle', 'Michael Dicarluccio': 'Ethan', 'Lauren Vera': 'Jamie', 'Marckenson Charles': 'Ryan', 'Ashley Bissing': 'Kristen', 'Corinne Nobili': 'Kirsten'}" tt0085750,"{'Dennis Quaid': 'Mike Brody', 'Bess Armstrong': 'Kathryn Morgan', 'Simon MacCorkindale': 'Philip FitzRoyce', 'Louis Gossett Jr.': 'Calvin Bouchard', 'John Putch': 'Sean Brody', 'Lea Thompson': 'Kelly Ann Bukowski', 'P.H. Moriarty': 'Jack Tate', 'Dan Blasko': 'Dan', 'Liz Morris': 'Liz', 'Lisa Maurer': 'Ethel', 'Harry Grant': 'Shelby Overman', 'Andy Hansen': 'Silver Bullet', 'P.T. Horn': 'Tunnel Guide', 'John Edson': 'Bob Woodbury (as John Edson Jr.)', 'Kaye Stevens': 'Mrs. Kallender'}" tt1094162,"{'William Katt': 'Lee Cussler', 'Dedee Pfeiffer': 'Hilary', 'Wittly Jourdan': 'Tammy', 'Randy Mulkey': 'Valentine', 'Jennifer Couch': 'Freckles', 'Jason S. Gray': 'Garrison', 'John Murphy Jr.': 'Figgus', 'Kevin Kazakoff': 'Two Fingers', 'Philip Bak': 'Javier', 'Josh Tessier': 'Styles', 'Matthew Bolton': 'Marty', 'Collin Brock': 'Sheriff Joel Armstrong', 'Darbi Gwynn': 'Marcy', 'Aaron Council': 'The Alien', 'Rob Filson': 'The Hunter'}" tt1586261,"{'Erin Marie Hogan': 'Samantha Finley (uncredited)', 'Fia Perera': 'Ellen Finley (uncredited)', 'Norman Saleet': 'Edgar Lauren (uncredited)', 'Shane Van Dyke': 'Thomas Finley (uncredited)'}" tt1640571,"{'Shane Van Dyke': 'Hayden Walsh', 'Marie Westbrook': 'Amy Maine', 'Bruce Davison': 'James Maine', 'Brooke Burns': 'Kim Patterson', 'Michelle Glavan': 'Kelly Wade', 'Carey Van Dyke': 'Elmer Coolidge', 'D.C. Douglas': 'Captain Howard', 'Dylan Vox': 'Dwayne Stevens', 'Wittly Jourdan': 'Elijia Stacks', 'Myles Cranford': 'Admiral Hadley', 'Josh Roman': 'Elliot Snipes', 'Cameron Gordon': 'Eric', 'Michael Gaglio': 'Daniels', 'Kendra Waldman': 'Madeline Kay (as Kendra Sue Waldman)', 'Matt Lagan': 'Commander Grey'}" tt0974959,"{'John White': 'Erik Stifler', 'Christopher McDonald': 'Mr. Stifler', 'Jake Siegel': ""Mike 'Cooze' Coozeman"", 'Lexie Galante': 'Hot Girl #1 (as Alexandria Galante)', 'Meghan Heffern': 'Ashley', 'Nick Nicotera': 'Bobby (as Nic Nac)', 'Christine Barger': 'Margie', 'Steve Talley': 'Dwight Stifler', 'Italia Ricci': 'Laura Johnson', 'Moshana Halbert': 'Sara Coleman', 'Sarah Power': 'Denise', 'Dan Petronijevic': 'Bull (as Daniel Petronijevic)', 'Vas Saranga': 'Bandhu (as Vasanth Saranga)', 'Joe Eigo': 'Dexter', 'Tyrone Savage': 'Edgar'}" tt1653690,"{'Tony Jaa': 'Tien', 'Primorata Dejudom': 'Pim (as Primrata Det-Udom)', 'Dan Chupong': 'Bhuti Sangkha (as Chupong Chungpruk)', 'Nirut Sirichanya': 'Master Bua', 'Petchtai Wongkamlao': 'Mhen (as Phetthai Wongkhamlao)', 'Sarunyu Wongkrachang': 'Rat-Cha-Sei-Na (as Sarunyoo Wongkrachang)', 'Sorapong Chatree': 'Chernung', 'Chumphorn Thepphithak': 'Uncle Mao (as Chumporn Theppituk)', 'Philip Hersh': 'Additional Voices (voice)'}" tt0843873,"{'A.J. Castro': 'Brujo (as Alby Castro)', 'Julia Ruiz': 'Alma', 'Giovanni Bejarano': 'Miguel', 'Al Galvez': 'Julio', 'Amelia Jackson-Gray': 'Crystal', 'Shannon Gayle Hurd': 'Summer (as Shannon Gayle)', 'Stephen A.F. Day': 'Conductor', 'Isaac Wade': 'Martin', 'Carolyn Meyer': 'Klara', 'Lola Forsberg': 'Lani', 'Madeleine Falk': 'Nancy', 'Derek Osedach': 'Mitch', 'Jay Costelo': 'Juan', 'Jason S. Gray': 'Chico', 'Sean Durrie': 'Dickie'}" tt0072067,"{'Jo Ann Harris': 'Linda', 'Peter Brown': 'Jack', 'Jennifer Lee Pryor': 'Nancy (as Jennifer Lee)', 'Lisa Moore': 'Karen', 'Connie Strickland': 'Teresa', 'Patricia Estrin': 'Angie', 'Lada Edmund Jr.': 'Tiny', 'Tony Young': 'Bud', 'Steve Kanaly': 'Tom', 'Ross Elliott': 'Sgt. Long (as Ross Elliot)', 'John Pickard': 'Dr. Schetman', 'Ninette Bravo': 'Joyce', 'Stanley Adams': 'Bernie / Foul Mouth', 'Joan McCall': 'Gloria', 'Anneka Di Lorenzo': 'Chris (as Anneka DeLorrenzo)'}" tt1376460,"{'Bruce Boxleitner': 'Officer Hadley Ryan', 'Jennifer Rubin': 'Dr. Jo Summers', 'Shane Van Dyke': 'Jake Van Ryberg', 'Alana DiMaria': 'Madison Ryan', 'Russ Kingston': 'Stan Weston', 'Silvy Kas': 'Officer Stevens', 'Jack Goldenberg': 'Sergeant Monroe', 'Debra Harrison-Lowe': 'Mary Jo', 'Amy Van Horne': 'Liz', 'Benjamin W. Smith': 'Guard', ""Vana O'Brien"": 'Grandma', 'Jay Beyers': 'Rocker Dude', 'Jason Yorrick': 'Drake', 'Londale Theus': 'Mayor Ethan Holt', 'Iona Thonger': 'Dr. Collins'}" tt0960835,"{'Matthew Wolf': 'Warren Mitchell', 'Amy Weber': 'Karina Nadir', 'Shaley Scott': 'Xandria Lux', 'Eliza Swenson': 'General Van Ryberg', 'Griff Furst': 'Itchy', 'Michael Tower': 'Dr. Voloslov Alextzavich', 'Sarah Hall': 'Blair', 'Erin Evans': 'Suzy (as Erin Sullivan)', 'Noel Thurman': 'The Chairman', 'Troy Thomas': 'Clinton', 'Dennis Kinard': 'Jackson', 'Jason S. Gray': 'Otto', 'Elissa Dowling': 'Dr. Taddish', 'Jessica Bork': 'Bowers', 'Thomas Downey': 'Blackthorn'}" tt1270792,"{'Chris Chatman': 'Zachary', 'Candise Lakota': 'Savannah', 'Krystle Connor': 'Aundrea', 'Robert Acinapura': 'Miles', 'Amy Ganser': 'Margaret', 'Millena Gay': 'Anita', 'Dustin Fitzsimons': 'Charlie', 'Cliff Tan': 'Trevor (as Hitcliff Leigh Tan)', 'Mark Hengst': 'Pastor Joe', 'Rae Silva': 'Aunt Janet', 'Kesha Ealy': 'Mrs. Howell', 'Shane Carther Thomas': 'Jake', 'Debra Lynn Hull': 'Mrs. Stewart', 'Justin Spanko': 'Dad - Robert Ryan', 'Daniel J. Roberts': 'Mr. Crane'}" tt1705773,"{'Gary Stretch': 'Nigel Putnam', 'Jaleel White': 'Dr. Terry McCormick', 'Sarah Lieving': 'Agent Hutchinson', 'Robert Picardo': 'Admiral Calvin', 'Gerald Webb': 'Jean', 'Dylan Vox': 'CWO Butowski', 'Hannah Cowley': 'Legatt', 'Steve Mason': 'Investigator', 'Robert R. Shafer': 'Charlie Ross (as Bobby Ray Shafer)', 'Nicola Lambo': 'Corrine', 'Michael Gaglio': 'Captain Smalls (as Mike Gaglio)', 'Sean Cory': 'Moise', 'Tarnue Massaquoi': 'Claude', 'Bechir Sylvain': 'Badawi', 'Anica Barbosa': 'Bartender'}" tt3063516,"{'Johnny Knoxville': 'Irving Zisman', 'Jackson Nicoll': 'Billy', 'Gregorio': 'Chuck (as Greg Harris)', 'Georgina Cates': 'Kimmie', 'Kamber Hejlik': 'Doctor', 'Jill Killington': 'Pageant Reporter (as Jill Kill)', 'Madison Davis': 'Juggalo Girl', 'George Faughnan': 'Juggalo Guy', 'Grasie Mercedes': 'Hostess', 'Marilynn Allain': 'Receptionist', 'Jack Polick': 'Funeral Worker', 'Spike Jonze': 'Gloria', 'Catherine Keener': 'Ellie', 'Marlon Davis': 'Himself', 'Quintin Duncan': 'Himself'}" tt0110989,"{'Macaulay Culkin': 'Richie Rich', 'John Larroquette': 'Lawrence Van Dough', 'Edward Herrmann': 'Richard Rich', 'Christine Ebersole': 'Regina Rich', 'Jonathan Hyde': 'Herbert Arthur Runcible Cadbury', 'Michael McShane': 'Professor Keenbean', 'Chelcie Ross': 'Ferguson', 'Mariangela Pino': 'Diane Pazinski', 'Stephi Lineburg': 'Gloria Pazinski', 'Michael Maccarone': 'Tony', 'Joel Robinson': 'Omar', 'Jonathan Hilario': 'Pee Wee', 'Reggie Jackson': 'Baseball Coach', 'Claudia Schiffer': 'Aerobics Instructor', 'Wanda Christine': 'Newswoman at Factory (as Wandachristine)'}" tt0758752,"{'Jake Gyllenhaal': 'Jamie Randall', 'Anne Hathaway': 'Maggie Murdock', 'Oliver Platt': 'Bruce Winston', 'Hank Azaria': 'Dr. Stan Knight', 'Josh Gad': 'Josh Randall', 'Gabriel Macht': 'Trey Hannigan', 'Judy Greer': 'Cindy', 'George Segal': 'Dr. James Randall', 'Jill Clayburgh': 'Nancy Randall', 'Kate Jennings Grant': 'Gina', 'Katheryn Winnick': ""'Lisa'"", 'Kimberly Scott': 'Gail', 'Peter Friedman': 'California Man', 'Nikki Deloach': 'Christy', 'Natalie Gold': 'Dr. Helen Randall'}" tt1879032,"{'Craig Robinson': 'The Beast', 'Anna Kendrick': 'Lindsey Lewis', 'John Francis Daley': 'Ben House', 'Rob Corddry': 'Mr. House', 'Ana Gasteyer': 'Mrs. Lewis', 'John Michael Higgins': 'Mr. Lewis', 'Calum Worthy': 'Clark Lewis', 'Jesse Camacho': 'Fry', 'Thomas Lennon': 'Mr. Murphy (as Tom Lennon)', 'Ken Jeong': 'God', 'Bjorn Yearwood': 'Little Beast', 'Adrianna Costa': 'Liz - Interviewer', ""Mike O'Connell"": 'First Wraith', 'Darcy Michael': 'Second Wraith', 'Paul Scheer': 'Security Wraith'}" tt0995740,"{'John Abraham': 'K', 'Ayesha Takia': 'Anjali / Annie', 'Paresh Rawal': 'Shri Shri Prakash Guru Ghantal Baba Bangali Sealdah Wale', 'Ranvir Shorey': 'Abbas Tyrewala', 'Kiku Sharda': ""Doctor in charge of K's brother J"", 'Akhauri P. Sinha': 'ACP', 'Joy Fernandes': ""J's friend Alex"", 'Karan Makhija': ""J's friend, at the starting."", 'Megh Pant': 'ACP Assistant', 'Vasan Bala': ""The man at the launch party of Alex's cigars"", 'Pravishi Das': 'Woman in Burkha (as Pravishee)', 'Sanjay Gandhi': 'Chacha', 'Jesse Randhawa': 'Dancer / Singer', 'Gajraj Rao': 'Rajendra Kishan Dhingra'}" tt0081609,"{'Natalya Belokhvostikova': 'Marie Louni / Nathalie (as Natacha Belokhvostikova)', 'Curd Jürgens': 'Maître Legraine', 'Igor Kostolevskiy': 'Andre Ilytch', 'Claude Jade': 'Françoise', 'Armen Dzhigarkhanyan': 'Max Richard (as Armen Djigarkhanian)', 'Georges Géret': 'Dennis Pew', 'Albert Filozov': 'Scherner', 'Alain Delon': 'Inspector Georges Foche', 'Nikolay Grinko': 'Hermolin (as Nicolas Grinko)', 'Mike Marshall': 'First Terrorist', 'Gleb Strizhenov': 'Simon (as Glebe Strijenov)', 'Jess Hahn': 'Second Terrorist', 'Jacques Roux': 'Mr.Johnson', 'Evelyne Kraft': 'False Secretary', 'Natalya Naumova': 'Françoise as Child (as Natasha Naumov)'}" tt5093452,"{'Sanaa Lathan': 'Ashe Akino10 episodes, 2017', 'Stephan James': 'Preston Terry10 episodes, 2017', 'Stephen Moyer': 'Lieutenant Breeland10 episodes, 2017', 'Will Patton': 'Sheriff Daniel Platt10 episodes, 2017', 'Tristan Mack Wilds': 'Deputy Joshua Beck10 episodes, 2017', 'Aisha Hinds': 'Pastor Janae James10 episodes, 2017', 'DeWanda Wise': 'Shameeka Campbell10 episodes, 2017', 'Clare-Hope Ashitey': 'Kerry Beck 10 episodes, 2017', 'Conor Leslie': 'Sarah Ellis10 episodes, 2017', 'Helen Hunt': 'Governor Patricia Eamons10 episodes, 2017', 'Richard Dreyfuss': 'Arlen Cox9 episodes, 2017', 'Beau Knapp': 'Deputy Caleb Brooks 9 episodes, 2017', 'Kylen Davis': 'Shawn Campbell 9 episodes, 2017', 'Jill Hennessy': 'Alicia Carr8 episodes, 2017', 'Liam Ethan Dance': 'Christian Beck 7 episodes, 2017', 'Jahlil Muhammad': 'Jeremiah Beck 7 episodes, 2017', 'Anthony Dalton': 'Anthony 7 episodes, 2017', 'Edwina Findley Dickerson': 'Shirlane 6 episodes, 2017', 'Marqus Clae': 'Cory6 episodes, 2017', 'John Beasley': 'Mr. Dabney 6 episodes, 2017', 'Mike Pniewski': 'Julian Carroll 5 episodes, 2017', 'Jacob Leinbach': 'Jesse Carr 5 episodes, 2017', 'Laila Lockhart Kraner': 'Kai 5 episodes, 2017', 'Yohance Myles': 'Leon Grant 5 episodes, 2017'}" tt0055706,"{'Groucho Marx': 'Himself - Host 6 episodes, 1961-1962', 'Joy Harmon': 'Herself - Assistant 4 episodes, 1962'}" tt3305316,"{'Nikolaj Coster-Waldau': 'Andreas', 'Roland Møller': 'Mand på klub', 'Nikolaj Lie Kaas': 'Tristan', 'Ulrich Thomsen': 'Simon', 'Maria Bonnevie': 'Anna Thomsen', 'Thomas Bo Larsen': 'Klaus', 'Ewa Fröling': 'Ingrid', 'Peter Haber': 'Gustav', 'Sarah Juel Werner': 'Pige på legeplads', 'Molly Blixt Egelind': 'Pige på klub', 'Bodil Jørgensen': 'Retsmediciner', 'Claus Riis Østergaard': 'Betjent på parkeringsplads', 'Mille Lehfeldt': 'Østeuropæisk danser', 'Frederik Meldal Nørgaard': 'Betjent på legeplads', 'May Andersen': 'Sanne (as Lykke May Andersen)'}" tt0498353,"{'Lauren German': 'Beth', 'Roger Bart': 'Stuart', 'Heather Matarazzo': 'Lorna', 'Bijou Phillips': 'Whitney', 'Richard Burgi': 'Todd', 'Vera Jordanova': 'Axelle', 'Jay Hernandez': 'Paxton', 'Jordan Ladd': 'Stephanie', 'Milan Knazko': 'Sasha', 'Edwige Fenech': 'Art Class Professor', 'Stanislav Yanevski': 'Miroslav (as Stanislav Ianevski)', 'Patrik Zigo': 'Bubblegum Gang Leader', 'Zuzana Geislerová': 'Inya', 'Ivan Furak': 'Big Guard', 'Monika Malácová': 'Mrs. Bathory'}" tt3602442,"{'Jay Bond': 'Himself', 'John Lyle': 'Himself', 'Collin Price': 'Himself'}" tt0116861,"{'Warwick Davis': 'Leprechaun', 'Brent Jasmer': 'Books', 'Jessica Collins': 'Tina', 'Guy Siner': 'Dr. Mittenhand', 'Gary Grossman': 'Harold', 'Rebecca Carlton': 'Princess Zarina (as Rebekah Carlton)', 'Tim Colceri': 'Metal Head', 'Miguel A. Núñez Jr.': 'Sticks (as Miguel A. Nunez Jr.)', 'Debbe Dunning': 'Delores', 'Mike Cannizzo': 'Danny (as Michael Cannizzo)', 'Rick Peters': 'Mooch', 'Geoff Meed': 'Kowalski', 'Ladd York': 'Lucky', 'James Quinn': 'Computer Voice (voice) (as James W. Quinn)'}" tt0113636,"{'Warwick Davis': 'Leprechaun', 'John Gatins': 'Scott McCoy', 'Lee Armstrong': 'Tammy Larsen', 'John DeMita': 'Fazio', 'Michael Callan': 'Mitch', 'Caroline Williams': 'Loretta', 'Marcelo Tubert': 'Gupta', 'Tom Dugan': 'Art', 'Leigh-Allyn Baker': 'Waitress', 'Richard Reicheg': 'Lucky', 'Linda Shayne': 'Nurse', 'Ian Gregory': 'Doctor', 'Roger Hewlett': 'Tony', 'Terry Lee Crisp': 'Elvis', 'Jennifer Stein': 'High Roller'}" tt0118643,"{'Christopher Walken': 'Gabriel', 'Russell Wong': 'Danyael', 'Jennifer Beals': 'Valerie Rosales', 'Brittany Murphy': 'Izzy', 'Eric Roberts': 'Michael', 'Glenn Danzig': 'Samayel', 'Steve Hytner': 'Joseph', 'Bruce Abbott': 'Thomas Daggett', 'William Prael': 'Rafayel', 'Renee Victor': 'Nana', 'Elizabeth Dennehy': 'Kathy Kimball', 'J.G. Hertzler': 'Father William', 'Nicki Micheaux': 'Detective Kreibel', 'Tom Towles': 'Detective Waltrip', 'Danny Strong': 'Julian'}" tt0183678,"{'Christopher Walken': 'Gabriel', 'Vincent Spano': 'Zophael', 'Dave Buzzotta': 'Danyael', 'Kayren Butler': 'Maggie (as Kayren Ann Butler)', 'Steve Hytner': 'Joseph', 'Brad Dourif': 'Zealot', 'Scott Cleverdon': 'Pyriel', 'Jack McGee': 'Detective', 'Sandra Ellis Lafferty': 'Madge (as Sandra Lafferty)', 'Mark Prince Edwards': 'Donut Guy', 'Tyrone Tann': 'Kyle', ""Moriah 'Shining Dove' Snyder"": 'Mary (as Moriah Shining Dove Snyder)', 'J.D. Rosen': 'Tail Man', 'William Stanford Davis': 'Portly Coroner (as Stan Davis)', 'Drew Swaine': 'Young Danyael'}" tt5711820,"{'Doug Walker': 'Nostalgia Critic', 'Malcolm Ray': 'The 3D Brothers'}" tt0229440,"{'Craig Sheffer': 'Det. Joseph Thorne', 'Nicholas Turturro': 'Det. Tony Nenonen', 'James Remar': 'Dr. Paul Gregory', 'Doug Bradley': 'Pinhead', 'Nicholas Sadler': 'Bernie', 'Noelle Evans': 'Melanie Thorne', 'Lindsay Taylor': 'Chloe', 'Matt George': 'Leon Gaultier', 'Michael Shamus Wiles': 'Mr. Parmagi', 'Sasha Barrese': 'Daphne Sharp', 'Kathryn Joosten': 'Mother', 'Jessica Elliot': ""Young Joseph's Mother"", 'Carmen Argenziano': 'Captain', 'Christopher Neiman': 'Pathologist', 'Christopher Kriesa': 'Older Detective'}" tt0116514,"{'Bruce Ramsay': ""Phillip L'Merchant / John Merchant / Dr. Paul Merchant"", 'Valentina Vargas': 'Angelique / Peasant Girl', 'Doug Bradley': 'Pinhead', 'Charlotte Chatton': ""Genevieve L'Merchant"", 'Adam Scott': 'Jacques', 'Kim Myers': 'Bobbi Merchant', 'Mickey Cottrell': ""Duc de L'Isle"", 'Louis Turenne': 'Auguste', 'Courtland Mead': 'Jack Merchant', 'Louis Mustillo': 'Sharpe', 'Jody St. Michael': 'The Beast', 'Paul Perri': 'Edwards / Skinless Parker', 'Pat Skipper': 'Carducci', 'Christine Harnos': 'Rimmer', 'Wren T. Brown': 'Parker (as Wren Brown)'}" tt0091431,"{'Jackie Chan': 'Asian Hawk', 'Alan Tam': 'Alan', 'Rosamund Kwan': 'Lorelei', 'Lola Forner': 'May', 'Bozidar Smiljanic': 'Bannon', 'Ken Boyle': 'Grand Wizard', 'John Ladalski': 'Chief Lama', ""Robert O'Brien"": ""Witch Doctor (as Robert O' Brien)"", 'Boris Gregoric': 'Man at Auction', 'Marcia Chisholm': 'Fighter', 'Alicia Shonte': 'Fighter', 'Vivian Wickliffe': 'Fighter', 'Stephanie Evans': 'Fighter', 'William Williams': 'Fighter', 'Linda Denley': 'Fighter'}" tt0396184,"{'Mads Mikkelsen': 'Tonny', 'Leif Sylvester': 'Smeden (as Leif Sylvester Petersen)', 'Anne Sørensen': 'Charlotte', 'Øyvind Hagen-Traberg': 'Ø', 'Kurt Nielsen': 'Kusse-Kurt', 'Karsten Schrøder': 'Røde', 'Maria Erwolter': 'Gry', 'Dan Dommer': 'Den gamle', 'Sven Erik Eskeland Larsen': 'Svend', 'Jean Pierre Peuleve': 'Chief', 'Zlatko Buric': 'Milo', 'Maya Ababadjani': 'Prostituerende (as Maya Sørensen)', 'Maria Mendoza': 'Prostituerende', 'Luis Werner Grau': 'Valdemar', 'Lasse Wenkers': 'Baby'}" tt0489270,"{'Tobin Bell': 'Jigsaw / John Kramer', 'Shawnee Smith': 'Amanda Young', 'Angus Macfadyen': 'Jeff', 'Bahar Soomekh': 'Lynn Denlon', 'Donnie Wahlberg': 'Eric Matthews', 'Dina Meyer': 'Kerry', 'Leigh Whannell': 'Adam', 'Mpho Koaho': 'Tim', 'Barry Flatman': 'Judge Halden', 'Lyriq Bent': 'Rigg', 'J. LaRose': 'Troy (as J Larose)', 'Debra McCabe': 'Danica (as Debra Lynne McCabe)', 'Costas Mandylor': 'Forensic Hoffman', 'Betsy Russell': 'Jill', 'Jane Luk': 'Nurse - Emergency Room'}" tt0112722,"{'Sigourney Weaver': 'Helen Hudson', 'Holly Hunter': 'MJ Monahan', 'Dermot Mulroney': 'Ruben Goetz', 'William McNamara': 'Peter Foley', 'Harry Connick Jr.': 'Daryll Lee Cullum', 'J.E. Freeman': 'Lt. Quinn', 'Will Patton': 'Nicoletti', 'John Rothman': 'Andy', ""Shannon O'Hurley"": 'Susan Schiffer', 'Bob Greene': 'Pachulski', 'Tony Haney': 'Kerby', 'Danny Kovacs': 'Kostas', 'Tahmus Rounds': 'Landis', 'Scott DeVenney': 'Cop #1 (as Scott De Venney)', 'David Michael Silverman': 'Mike'}" tt0082694,"{'Mel Gibson': 'Max', 'Bruce Spence': 'The Gyro Captain', 'Michael Preston': 'Pappagallo (as Mike Preston)', 'Max Phipps': 'The Toadie', 'Vernon Wells': 'Wez', 'Kjell Nilsson': 'The Humungus', 'Emil Minty': 'The Feral Kid', 'Virginia Hey': 'Warrior Woman', 'William Zappa': 'Zetta', 'Arkie Whiteley': ""The Captain's Girl"", 'Steve J. Spears': 'Mechanic', 'Syd Heylen': 'Curmudgeon', 'Moira Claux': 'Big Rebecca', 'David Downer': 'Nathan', 'David Slingsby': 'Quiet Man'}" tt0082694,"{'Mel Gibson': 'Max', 'Bruce Spence': 'The Gyro Captain', 'Michael Preston': 'Pappagallo (as Mike Preston)', 'Max Phipps': 'The Toadie', 'Vernon Wells': 'Wez', 'Kjell Nilsson': 'The Humungus', 'Emil Minty': 'The Feral Kid', 'Virginia Hey': 'Warrior Woman', 'William Zappa': 'Zetta', 'Arkie Whiteley': ""The Captain's Girl"", 'Steve J. Spears': 'Mechanic', 'Syd Heylen': 'Curmudgeon', 'Moira Claux': 'Big Rebecca', 'David Downer': 'Nathan', 'David Slingsby': 'Quiet Man'}" tt0385988,"{'Lainie Kazan': 'Grandma', 'Henry Cavill': 'The Hunter', 'Morgan Thompson': 'Claire / Red', 'Sam Oz Stone': 'Matt / Rusty (as Sam Stone)', 'Daniel Roebuck': ""Red's Dad"", 'Debi Mazar': ""Red's Mom"", 'Joey Fatone': 'Jack De Wolf / Big Bad Wolf', 'Donzaleigh Abernathy': 'Newscaster', 'Andrea Bowen': 'Ashley #2', 'Mary Jo Catlett': 'Shopkeeper Woman', 'Jackson Englund': 'Village Boy #2', 'David Kaufman': ""Hunter's Dad"", 'Suzanne Kent': 'Gypsy Fortune Teller', 'Sung Hi Lee': 'TV Reporter', 'Bret Loehr': 'Boy Scout #2 (as Brett Loehr)'}" tt0113026,"{'Joel Grey': 'Bellomy', 'Barnard Hughes': 'Henry', 'Jean Louisa Kelly': 'Luisa', 'Joey McIntyre': 'Matt (as Joe McIntyre)', 'Jonathon Morris': 'El Gallo', 'Brad Sullivan': 'Hucklebee', 'Teller': 'Mortimer', 'Arturo Gil': 'The Bavarian Baby', 'Tony Cox': 'His Assistant (as Joe Anthony Cox)', 'Victoria Stevens': 'Jo Jo, The Chicken Lady', 'Trayne Thomas': 'Tattooed Man', 'Shaunery Stevens': 'Roustabout', 'Dyrk Ashton': 'Roustabout', 'Gregory Amato': 'Smuin Ballet / SF Dancer', 'Lee Bell': 'Smuin Ballet / SF Dancer'}" tt1326972,"{'Tony Chiu-Wai Leung': 'Zhou Yu (as Tony Chiu Wai Leung)', 'Takeshi Kaneshiro': 'Zhuge Liang', 'Fengyi Zhang': 'Cao Cao', 'Chen Chang': 'Sun Quan', 'Wei Zhao': 'Sun Shangxiang', 'Jun Hu': 'Zhao Yun', 'Chiling Lin': 'Xiao Qiao', 'Shidô Nakamura': 'Gan Xing', 'Yong You': 'Liu Bei', 'Baasanjav Mijid': 'Guan Yu', 'Yong Hou': 'Lu Su', 'Chang Hai Chen': 'Qin Seng', 'Yu Gui Cui': 'Xu Chu', 'Nicole Dionne': 'Xiao Qiao (voice)', 'Xiang Rui Fu': 'Baby Dou'}" tt0097428,"{'Bill Murray': 'Dr. Peter Venkman', 'Dan Aykroyd': 'Dr. Raymond Stantz', 'Sigourney Weaver': 'Dana Barrett', 'Harold Ramis': 'Dr. Egon Spengler', 'Rick Moranis': 'Louis Tully', 'Ernie Hudson': 'Winston Zeddemore', 'Annie Potts': 'Janine Melnitz', 'Peter MacNicol': 'Dr. Janosz Poha', 'Harris Yulin': 'The Judge', 'David Margulies': 'The Mayor of NY', 'Kurt Fuller': 'Hardemeyer', 'Janet Margolin': 'The Prosecutor', 'Wilhelm von Homburg': 'Vigo', 'William T. Deutschendorf': 'Baby Oscar (as Will Deutschendorf)', 'Henry J. Deutschendorf II': 'Baby Oscar (as Hank Deutschendorf)'}" tt0120787,"{'Michael Douglas': 'Steven Taylor', 'Gwyneth Paltrow': 'Emily Bradford Taylor', 'Viggo Mortensen': 'David Shaw', 'David Suchet': 'Mohamed Karaman', 'Sarita Choudhury': 'Raquel Martinez', 'Michael P. Moran': 'Bobby Fain', 'Novella Nelson': 'Ambassador Alice Wills', 'Constance Towers': 'Sandra Bradford', 'Will Lyman': 'Jason Gates', 'Maeve McGuire': 'Ann Gates', 'Stephen Singer': 'Effete Man at Met', 'Laurinda Barrett': 'Met Woman #1', ""Aideen O'Kelly"": 'Met Woman #2', 'Reed Birney': 'Merchant Prince #1', 'Robert Vincent Smith': 'Merchant Prince #2'}" tt0425379,"{'Zlatko Buric': 'Milo', 'Marinela Dekic': 'Milena', 'Slavko Labovic': 'Radovan', 'Ramadan Huseini': 'Rexho', 'Ilyas Agac': 'Lille Muhammed', 'Kujtim Loki': 'Luan', 'Vasilije Bojicic': 'Branco (as Vanja Bajicic)', 'Levino Jensen': 'Mike', 'Marek Magierecki': 'Mitja', 'Sven Erik Eskeland Larsen': 'Svend', 'Karsten Schrøder': 'Røde', 'Hakan Turan': 'Ali', 'Susan Petersen': 'Marie', 'Gitte Dan': 'Lis', 'Tommy Christensen': 'KA Mand 1'}" tt0110516,"{'Melanie Griffith': 'V', 'Ed Harris': 'Tom', 'Michael Patrick Carter': 'Frank', 'Malcolm McDowell': 'Waltzer', 'Anne Heche': 'Betty', 'Casey Siemaszko': 'Cash', 'Philip Bosco': 'Jerry the Pope', 'Brian Christopher': 'Kevin', 'Adam LaVorgna': 'Brad', 'Kevin Scannell': 'Mr. Clean', 'Jessica Wesson': 'Stacey', 'Amanda Sharkey': 'Holly', 'Margaret Nagle': 'Mrs. Fetch', 'Katie Powell': 'Mrs. Clean (as Kati Powell)', 'Tom Coop': ""Holly's Brother""}" tt1155056,"{'Paul Rudd': 'Peter Klaven', 'Rashida Jones': 'Zooey Rice', 'Sarah Burns': 'Hailey', 'Greg Levine': ""Hailey's Date"", 'Jaime Pressly': 'Denise', 'Jon Favreau': 'Barry', 'Jane Curtin': 'Joyce Klaven', 'J.K. Simmons': 'Oswald Klaven', 'Andy Samberg': 'Robbie Klaven', 'Jean Villepique': 'Leanne (Davis Dunn Receptionist)', 'Rob Huebel': 'Tevin Downey', 'Kym Whitley': 'Female Co-Worker', 'Colleen Crabtree': 'Female Co-Worker', 'Caroline Farah': 'Female Co-Worker', 'Mather Zickel': 'Gil'}" tt0212235,"{'Aimee Graham': 'Screw', 'Chris Palermo': 'The Killer', 'Kim Greist': 'Mrs. Peacock', 'Harley Cross': 'Dawson', 'Simon Rex': 'Slab', 'Coolio': 'Principal (AFKAP)', 'Danny Strong': 'Boner', 'Julie Benz': 'Barbara', 'Majandra Delfino': 'Martina', 'Steven Anthony Lawrence': 'Chuckie', 'Tiffani Thiessen': 'Hagitha Utslay (as Tiffani-Amber Thiessen)', 'Martin Diggs': 'Camerman', 'Tom Arnold': 'Doughy', 'Mink Stole': 'Madame La Tourneau', 'Rose Marie': 'Mrs. Tingle'}" tt1132626,"{'Tobin Bell': 'Jigsaw / John', 'Costas Mandylor': 'Mark Hoffman', 'Scott Patterson': 'Agent Strahm', 'Betsy Russell': 'Jill', 'Julie Benz': 'Brit', 'Meagan Good': 'Luba', 'Mark Rolston': 'Dan Erickson', 'Carlo Rota': 'Charles', 'Greg Bryk': 'Mallick', 'Laura Gordon': 'Ashley', 'Joris Jarsky': 'Seth', 'Mike Butters': 'Paul', 'Al Sapienza': 'Chief of Police', 'Mike Realba': 'Detective Fisk', 'Jeff Pustil': 'Bernie'}" tt1212023,"{'David Carradine': 'Clive Jonis', 'Richard Lynch': 'Karl Lumis', 'Dee Wallace': 'Jean Applebe', 'Jeff Beorger': 'The Reverend - 1950', 'Christopher Bondy': 'The Reverend', 'Derek Brandon': 'Daniel Jonis', 'David G.B. Brown': 'Boyfriend', 'James Howard Carr': 'Ben Wheeler', 'J.J. Chidiac': 'Simon Wheeler', 'Paula Ciccone': 'Eleanor Lumis', 'Peter Coady': 'Sheriff', 'Adam Cooper': ""Dell's Boy"", 'Daniel Cooper': ""Dell's Boy"", 'Guy Copland': 'Dell / Motel Manager', 'Colin Crenshaw': 'Jack Lumis'}" tt0432348,"{'Tobin Bell': 'Jigsaw / John', 'Shawnee Smith': 'Amanda', 'Donnie Wahlberg': 'Eric Matthews', 'Erik Knudsen': 'Daniel Matthews', 'Franky G': 'Xavier', 'Glenn Plummer': 'Jonas', 'Emmanuelle Vaugier': 'Addison', 'Beverley Mitchell': 'Laura', 'Timothy Burd': 'Obi', 'Dina Meyer': 'Kerry', 'Lyriq Bent': 'Rigg', 'Noam Jenkins': 'Michael', 'Tony Nappo': 'Gus', 'Kelly Jones': 'SWAT Member Pete', 'Vincent Rother': 'SWAT Member Joe'}" tt0109254,"{'Eddie Murphy': 'Det. Axel Foley', 'Jon Tenney': 'Levine', 'Joey Travolta': 'Giolito', 'Eugene Collier': 'Leppert', 'Jimmy Ortega': 'Rondell', 'Ousaun Elam': 'Pederson', 'Ray Lykins': 'Nixon', 'Tim Gilbert': 'McKee', 'Rick Avery': 'Cline', 'Gilbert R. Hill': 'Insp. Douglas Todd (as Gil Hill)', 'Dick Purtan': 'Detroit Disc Jockey', 'Fred Asparagus': 'Bobby', 'Louis Lombardi': 'Snake', 'Lindsey Ginter': 'Holloway', 'Timothy Carhart': 'Ellis De Wald'}" tt1121931,"{'Jason Statham': 'Chev Chelios', 'Amy Smart': 'Eve', 'Dwight Yoakam': 'Doc Miles', 'Efren Ramirez': 'Venus', 'Julanne Chidi Hill': 'Dark Chocolate', 'Jose Pablo Cantillo': 'Ricky Verona', 'Reno Wilson': 'Orlando', 'Keone Young': 'Don Kim', 'Art Hsu': 'Johnny Vang', 'Joseph Julian Soria': 'Chico', 'Bai Ling': 'Ria', 'Clifton Collins Jr.': 'El Huron', 'David Carradine': 'Poon Dong', 'Corey Haim': 'Randy', 'Geri Horner': 'Karen Chelios (as Geri Halliwell)'}" tt0325703,"{'Angelina Jolie': 'Lara Croft', 'Gerard Butler': 'Terry Sheridan', 'Ciarán Hinds': 'Jonathan Reiss', 'Chris Barrie': 'Hillary (as Christopher Barrie)', 'Noah Taylor': 'Bryce', 'Djimon Hounsou': 'Kosa', 'Til Schweiger': 'Sean', 'Simon Yam': 'Chen Lo', 'Terence Yin': 'Xien', 'Daniel Caltagirone': 'Nicholas Petraki', 'Fabiano Martell': 'Jimmy Petraki', 'Jonny Coyne': 'Gus Petraki (as Jonathan Coyne)', 'Robert Cavanah': 'MI6 Agent Stevens', 'Ronan Vibert': 'MI6 Agent Calloway', 'Lenny Juma': 'Village Leader'}" tt0105128,"{'Edward Furlong': 'Jeff Matthews', 'Anthony Edwards': 'Chase Matthews', 'Clancy Brown': 'Gus Gilbert', 'Jared Rushton': 'Clyde Parker', 'Darlanne Fluegel': 'Renee Hallow', 'Jason McGuire': 'Drew Gilbert', 'Sarah Trigger': 'Marjorie Hargrove', 'Lisa Waltz': 'Amanda Gilbert', 'Jim Peck': 'Quentin Yolander', 'Len Hunt': 'Director', 'Reid Binion': 'Brad', 'David Ratajczak': 'Stevie', 'Lucius Houghton': 'Puppeteer', 'Wilbur Fitzgerald': 'First Assistant Director', 'Elizabeth Ziegler': 'Steadicam Operator'}" tt0890870,"{'Tobin Bell': 'Jigsaw / John Kramer', 'Costas Mandylor': 'Lt. Mark Hoffman', 'Scott Patterson': 'Agent Peter Strahm', 'Betsy Russell': 'Jill Tuck', 'Lyriq Bent': 'Lt. Daniel Rigg', 'Athena Karkanis': 'Agent Lindsey Perez', 'Louis Ferreira': 'Art Blank (as Justin Louis)', 'Simon Reynolds': 'Lamanna', 'Donnie Wahlberg': 'Eric Matthews', 'Angus Macfadyen': 'Jeff Denlon', 'Shawnee Smith': 'Amanda Young (archive footage)', 'Bahar Soomekh': 'Lynn Denlon', 'Dina Meyer': 'Detective Allison Kerry', 'Mike Realba': 'Detective Fisk', 'Marty Adams': 'Ivan Landsness'}" tt3595776,"{'Matthew Perry': 'Oscar Madison38 episodes, 2015-2017', 'Thomas Lennon': 'Felix Unger38 episodes, 2015-2017', 'Lindsay Sloane': 'Emily38 episodes, 2015-2017', 'Yvette Nicole Brown': 'Dani38 episodes, 2015-2017', 'Wendell Pierce': 'Teddy38 episodes, 2015-2017'}" tt0443295,"{'Dennis Quaid': 'Frank Beardsley', 'Rene Russo': 'Helen North', 'Sean Faris': 'William Beardsley', 'Katija Pevec': 'Christina Beardsley', 'Dean Collins': 'Harry Beardsley', 'Tyler Patrick Jones': 'Michael Beardsley', 'Haley Ramm': 'Kelly Beardsley', 'Brecken Palmer': 'Ely Beardsley', 'Bridger Palmer': 'Otter Beardsley', 'Ty Panitz': 'Ethan Beardsley', 'Danielle Panabaker': 'Phoebe North', 'Drake Bell': 'Dylan North', 'Miki Ishikawa': 'Naoko North', 'Slade Pearce': 'Mick North', 'Lil J.J.': ""Jimi North (as Lil' JJ)""}" tt0469999,"{'Rudolf Waldemar Brem': '(archive footage)', 'Joyce Grinuk': 'Special Guest Star', 'Dina Cassiano': 'Special Guest Star', 'Vladimir Maksic': 'Michael Cosnick', 'Ulli Lommel': 'Simon Vale', 'Peter Beckman': 'J. Donald Fisk', 'Todd Jensen': 'Harry Prince', 'JayTon Tucker': 'Detective Rochelle', 'Gunter Ziegler': 'Willie Harman'}" tt0339294,"{'Warwick Davis': 'Leprechaun', 'Tangi Miller': 'Emily Woodrow', 'Laz Alonso': 'Rory', 'Page Kennedy': 'Jamie Davis', 'Sherrie Jackson': 'Lisa Duncan', 'Donzaleigh Abernathy': 'Esmeralda', 'Shiek Mahmud-Bey': 'Watson', 'Sticky Fingaz': 'Cedric', 'Keesha Sharp': 'Chanel', 'Sonya Eddy': 'Yolanda', 'Beau Billingslea': 'Thompson', 'Christopher Murray': 'Whitaker (as Chris Murray)', 'Vickilyn Reynolds': 'Doria', 'Willie C. Carpenter': 'Father Jacob', 'Varee': 'Countergirl'}" tt0088170,"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Capt. Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'George Takei': 'Sulu', 'Nichelle Nichols': 'Uhura', 'Robin Curtis': 'Saavik', 'Merritt Butrick': 'David', 'Phil Morris': 'Trainee Foster', 'Scott McGinnis': 'Mr. Adventure', 'Robert Hooks': 'Admiral Morrow', 'Carl Steven': 'Spock - age 9', 'Vadia Potenza': 'Spock - age 13', 'Stephen Manley': 'Spock - age 17'}" tt0408524,"{'Billy Bob Thornton': 'Morris Buttermaker', 'Greg Kinnear': 'Roy Bullock', 'Marcia Gay Harden': 'Liz Whitewood', 'Sammi Kane Kraft': 'Amanda Whurlitzer', 'Ridge Canipe': 'Toby Whitewood', 'Brandon Craggs': 'Mike Engelberg', 'Jeffrey Davies': 'Kelly Leak', 'Timmy Deters': 'Tanner Boyle', 'Carlos Estrada': 'Miguel Agilar', 'Emmanuel Estrada': 'Jose Agilar', 'Troy Gentile': 'Matthew Hooper', ""Kenneth 'K.C.' Harris"": 'Ahmad Abdul Rahim', 'Aman Johal': 'Prem Lahiri', 'Tyler Patrick Jones': 'Timmy Lupus', 'Jeffrey Tedmori': 'Garo Daragabrigadien'}" tt6560426,"{'Jessica Griffin': 'Herself - Host (as Dr. Jessica Griffin)', 'Charles J. Orlando': 'Himself - Host'}" tt0758746,"{'Jared Padalecki': 'Clay Miller', 'Danielle Panabaker': 'Jenna', 'Amanda Righetti': 'Whitney Miller', 'Travis Van Winkle': 'Trent', 'Aaron Yoo': 'Chewie', 'Derek Mears': 'Jason Voorhees', 'Jonathan Sadowski': 'Wade', 'Julianna Guill': 'Bree', 'Ben Feldman': 'Richie', 'Arlen Escarpeta': 'Lawrence', 'Ryan Hansen': 'Nolan', 'Willa Ford': 'Chelsea', 'Nick Mennell': 'Mike', 'America Olivo': 'Amanda', 'Kyle Davis': 'Donnie'}" tt0098382,"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'Nichelle Nichols': 'Uhura', 'George Takei': 'Sulu', 'David Warner': 'St. John Talbot', 'Laurence Luckinbill': 'Sybok', 'Charles Cooper': 'Korrd', 'Cynthia Gouw': 'Caithlin Dar', 'Todd Bryant': 'Captain Klaa', 'Spice Williams-Crosby': 'Vixis (as Spice Williams)', 'Rex Holman': ""J'onn"", 'George Murdock': 'God'}" tt0083530,"{'Lloyd Bridges': 'Steve McCroskey', 'Raymond Burr': 'The Judge', 'Chuck Connors': 'The Sarge', 'Rip Torn': 'Bud Kruger', 'John Dehner': 'The Commissioner', 'Chad Everett': 'Simon Kurtz', 'Peter Graves': 'Captain Clarence Oveur', 'Julie Hagerty': 'Elaine Dickinson', 'Robert Hays': 'Ted Striker', 'Kent McCord': 'Unger', 'James A. Watson Jr.': 'Dunn', 'William Shatner': 'Commander Buck Murdock', 'Stephen Stucker': 'Jacobs / Courtroom Clerk', 'John Vernon': 'Dr. Stone', 'Al White': 'Witness'}" tt0424774,"{'Taylor Lautner': 'Sharkboy', 'Taylor Dooley': 'Lavagirl', 'Cayden Boyd': 'Max', 'George Lopez': 'Mr. Electric / Tobor / Ice Guardian / Mr. Electricidad', 'David Arquette': ""Max's Dad"", 'Kristin Davis': ""Max's Mom"", 'Jacob Davich': 'Linus / Minus', 'Sasha Pieterse': 'Marissa / Ice Princess', 'Rico Torres': ""Sharkboy's Dad"", 'Marc Musso': 'Classroom Kid #1', 'Shane Graham': 'Classroom Kid #2', 'Tiger Darrow': 'Classroom Kid #3', 'Rocket Rodriguez': 'Lug', 'Racer Rodriguez': 'Sharkboy, Age 7', 'Rebel Rodriguez': 'Sharkboy, Age 5'}" tt0071562,"{'Al Pacino': 'Michael', 'Robert Duvall': 'Tom Hagen', 'Diane Keaton': 'Kay', 'Robert De Niro': 'Vito Corleone (as Robert DeNiro)', 'John Cazale': 'Fredo Corleone', 'Talia Shire': 'Connie Corleone', 'Lee Strasberg': 'Hyman Roth', 'Michael V. Gazzo': 'Frankie Pentangeli', 'G.D. Spradlin': 'Sen. Pat Geary', 'Richard Bright': 'Al Neri', 'Gastone Moschin': 'Fanucci (as Gaston Moschin)', 'Tom Rosqui': 'Rocco Lampone', 'Bruno Kirby': 'Young Clemenza (as B. Kirby Jr.)', 'Frank Sivero': 'Genco', 'Francesca De Sapio': 'Young Mama Corleone (as Francesca de Sapio)'}" tt0092007,"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'George Takei': 'Sulu', 'Walter Koenig': 'Chekov', 'Nichelle Nichols': 'Uhura', 'Jane Wyatt': 'Amanda', 'Catherine Hicks': 'Gillian', 'Mark Lenard': 'Sarek', 'Robin Curtis': 'Lt. Saavik', 'Robert Ellenstein': 'Federation Council President', 'John Schuck': 'Klingon Ambassador', 'Brock Peters': 'Admiral Cartwright', 'Michael Snyder': 'Starfleet Communications Officer'}" tt0099674,"{'Al Pacino': 'Don Michael Corleone', 'Diane Keaton': 'Kay Adams Michelson', 'Talia Shire': 'Connie Corleone Rizzi', 'Andy Garcia': 'Vincent Mancini', 'Eli Wallach': 'Don Altobello', 'Joe Mantegna': 'Joey Zasa', 'George Hamilton': 'B.J. Harrison', 'Bridget Fonda': 'Grace Hamilton', 'Sofia Coppola': 'Mary Corleone', 'Raf Vallone': 'Cardinal Lamberto', ""Franc D'Ambrosio"": 'Anthony Vito Corleone', 'Donal Donnelly': 'Archbishop Gilday', 'Richard Bright': 'Al Neri', 'Helmut Berger': 'Frederick Keinszig', 'Don Novello': 'Dominic Abbandando'}" tt1912398,"{'Joel Murray': 'Frank', 'Tara Lynne Barr': 'Roxy', 'Melinda Page Hamilton': 'Alison', 'Mackenzie Brooke Smith': 'Ava', 'Rich McDonald': 'Brad', 'Maddie Hasson': 'Chloe', 'Larry Miller': ""Chloe's Dad"", 'Dorie Barton': ""Chloe's Mom"", 'Travis Wester': 'Ed', 'Lauren Benz Phillips': 'Donna (as Lauren Phillips)', 'Guerrin Gardner': 'Tampon-Throwing Tuff Gurl', 'Kellie Ramdhanie': 'Melissa Tuff Gurl (as Kellie Marie Ramdhanie)', 'Aris Alvarado': 'Steven Clark', 'Romeo Brown': 'John Tyler', 'Sandra Vergara': 'American Superstarz Judge'}" tt9573086,"{'Edwin Brienen': 'Heino', 'Ilse Schrier': 'Meesteres Petra', 'Gunnar Smitt': 'Norma Dazzling'}" tt0361411,"{'Aishwarya Rai Bachchan': 'Lalita Bakshi (as Aishwarya Rai)', 'Martin Henderson': 'William Darcy', 'Nadira Babbar': 'Manorama Bakshi', 'Anupam Kher': 'Chaman Bakshi', 'Naveen Andrews': 'Balraj', 'Namrata Shirodkar': 'Jaya Bakshi', 'Daniel Gillies': 'Johnny Wickham', 'Indira Varma': 'Kiran', 'Sonali Kulkarni': 'Chandra Lamba', 'Nitin Ganatra': 'Mr. Kohli', 'Meghna Kothari': 'Maya Bakshi (as Meghnaa)', 'Peeya Rai Chowdhary': 'Lakhi Bakshi (as Peeya Rai Choudhuri)', 'Alexis Bledel': ""Georgina 'Georgie' Darcy"", 'Marsha Mason': 'Catherine Darcy', 'Ashanti': 'Ashanti'}" tt0092644,"{'Eddie Murphy': 'Axel Foley', 'Judge Reinhold': 'Billy Rosewood', 'Jürgen Prochnow': 'Maxwell Dent', 'Ronny Cox': 'Andrew Bogomil', 'John Ashton': 'John Taggart', 'Brigitte Nielsen': 'Karla Fry', 'Allen Garfield': 'Harold Lutz', 'Dean Stockwell': 'Chip Cain', 'Paul Reiser': 'Jeffrey Friedman', 'Gilbert R. Hill': 'Inspector Todd (as Gil Hill)', 'Paul Guilfoyle': 'Nikos Thomopolis', 'Robert Ridgely': 'Mayor Egan (as Robert Ridgley)', ""Brian Edward O'Connor"": ""Biddle (as Brian O'Connor)"", 'Alice Adair': 'Jan Bogomil', 'Eugene Butler': 'May'}" tt0120755,"{'Tom Cruise': 'Ethan Hunt', 'Dougray Scott': 'Sean Ambrose', 'Thandie Newton': 'Nyah Hall', 'Ving Rhames': 'Luther Strickell', 'Richard Roxburgh': 'Hugh Stamp', 'John Polson': 'Billy Baird', 'Brendan Gleeson': 'McCloy', 'Rade Serbedzija': 'Dr. Nekhorvich (as Radé Sherbedgia)', 'William Mapother': 'Wallis', 'Dominic Purcell': 'Ulrich', 'Mathew Wilkinson': 'Michael (as Matthew Wilkinson)', 'Nicholas Bell': ""McCloy's Accountant"", 'Cristina Brogeras': 'Flamenco Dancer #4', 'Kee Chan': ""McCloy's Chemist"", 'Kim Fleming': 'Larrabee'}" tt0085127,"{'Jackie Chan': 'Sergeant Dragon Ma Yue Lung', 'Sammo Kam-Bo Hung': 'Fei', 'Biao Yuen': 'Captain Tzu', 'Dick Wei': 'Lor Sam Pau', 'Mars': 'Jaws', 'Isabella Wong': 'Winnie (as Winnie Wong)', 'Tai-Bo': 'Tai (as Pa Tai)', 'Ng-Long Cheung': 'VIP Club Bouncer (as Wu Long Cheung)', 'Hoi Sang Lee': 'Li Chou Kou (as Hai-Shung Lee)', 'Hoi-San Kwan': 'Captain Chi', 'Wai Wong': 'Chow Wing Ling', 'Fat Wan': 'Thug (as Wan Tat)', 'Yeong-Mun Kwon': '(as Wing-Man Kwan)', 'Hark-Sun Lau': 'Admiral (as Hak Suen Lau)'}" tt0119396,"{'Pam Grier': 'Jackie Brown', 'Samuel L. Jackson': 'Ordell Robbie', 'Robert Forster': 'Max Cherry', 'Bridget Fonda': 'Melanie Ralston', 'Michael Keaton': 'Ray Nicolette', 'Robert De Niro': 'Louis Gara', 'Michael Bowen': 'Mark Dargus', 'Chris Tucker': 'Beaumont Livingston', 'LisaGay Hamilton': 'Sheronda', ""Tommy 'Tiny' Lister"": ""Winston (as Tommy 'Tiny' Lister Jr.)"", 'Hattie Winston': 'Simone', 'Sid Haig': 'Judge', 'Aimee Graham': 'Amy - Billingsley Sales Girl', 'Ellis Williams': 'Cockatoo Bartender (as Ellis E. Williams)', 'Tangie Ambrose': 'Billingsley Sales Girl #2'}" tt0321704,"{'Olivier Gruner': 'Dirk', 'Jalal Merhi': 'Bill', 'Lorenzo Lamas': 'Max', 'Michael Blanks': 'Black Jack', 'Gail Thackray': 'Nicole (as Gail Harris)', 'Shaun T. Benjamin': 'Warden Biggs (as Shant Bejanian)', 'Gary Hudson': 'Baxter', 'Jim Shagen': 'Pike (as Jim Schagen)', 'Lucas Bablin': 'Slash', 'Lovake Heyer': 'Dermot', 'Gerald Okamura': 'Ming Li', 'Elise Moller': 'Betsy', 'Mark Parra': 'Twist', 'Derek Barbosa': 'Parking Lot Thug (as Chino XL - Haugen)', 'Nino Cappuccino': 'Parking Lot Thug'}" tt1328910,"{'Stacey Dash': 'Lady', 'Frida Farrell': 'Gretchen', 'Monti Domingue': 'Dusty', 'Jessika Brodosi': 'Molly', 'Eliza Swenson': 'Layla', 'Kristen Quintrall': 'K.J.', 'Jackey Hall': 'Tinkerbell', 'Laura Futch': 'Milwaukee', 'Brent Lydic': 'Blaine McCormick', 'Paul Le Mat': 'Elliot Davros', 'Collin Galyean': 'Bobby Dupree', 'Dean N. Arevalo': 'Gator', 'Marcus L. Brown': 'Jackie', 'Sofia Karstens': 'Suzy', 'Andre Le': 'Nomack'}" tt0312640,"{'Dean Cain': 'Capt. David Carver', 'Kristine Byers': 'Dr. Meredith Winter', 'Robert Zachar': 'Dr. Ian Drackovitch', 'Marcus Aurelius': 'Dr. Greg Travis', 'Robert DiTillio': 'Kevin Korisch', 'Vesela Dimitrova': 'Bailey Kent (as Vassela Dimitrova)', 'Hristo Shopov': 'Capt. Sergei Petrov', 'Chuck Eckert': 'Cookie', 'Kelly Wilborn': 'Dying Mother', 'Hector Kleist': 'Knight #1', 'John Barnsall': 'Knight #2', 'Chad Boyer': 'Knight #3', 'Matthew Coe': 'Knight #4', 'Matt Harris': 'Knight #5', 'Darius Kerns': 'Knight #6'}" tt0339526,"{'Ving Rhames': 'Cue Ball Carl Bridgers', 'Roselyn Sanchez': 'Jezebel Black', 'Daniel Newman': 'Easy', 'Freddie Prinze Jr.': 'Jericho Hudson', 'Callum Keith Rennie': 'Michael Mortensen', 'Angus Macfadyen': 'Tenderloin Tony', 'Devon Sawa': 'Paul The Pawn', 'Dan Bell': 'Nickles', 'Jon Eyez': 'Mad Boy', 'Mark Krasnoff': 'Larry', 'Robert Pralgo': 'Robert Hudson (as Rob Pralgo)', 'Leicester Landon': 'Janna', 'Jeffrey Huth': 'Tonight Show Ted', 'Bill Romanowski': 'Case', 'Phi-Long Nguyen': 'Jaime'}" tt0489318,"{'Wes Bentley': 'Mickey Gravatski', 'Mark Borkowski': 'James Lemac', 'Joanne Baron': 'Megan', 'Beth Grant': 'Emma Lemac', 'Albert López-Murtra': 'Gino', 'Marina Gatell': 'Jennifer', 'Kenny Johnson': 'Officer Murphy', 'Randy Cherkas': 'Detective', 'Sarah Crocker': 'Violinist', 'Sal Darigo': 'Desk Officer', 'Jenna DeYoung': 'Screaming Nurse', 'Brian Distance': 'Fisherman', 'Thomas Dunn': 'Bobby', 'Carol Florence': 'Social Worker', 'Margaret H. Flynn': 'Old Lady'}" tt1151928,"{'Bruce Greenwood': 'Simon Hart', 'Tiffani Thiessen': 'Lindsey Reardon', 'Rich Franklin': 'Isaac', 'Wendy Anderson': 'Janice Fraser', 'Aaron Abrams': 'Tyler Voller', 'Kevin Rushton': 'Beck', 'Jim Annan': 'Matt Larkin', 'Stephen Jackson': 'Sheriff Ottaway', 'Brian Frank': 'Taggart', 'Patrick Chilvers': 'Dunn', 'Vickie Papavs': 'Mother', 'Addison Holley': 'Young girl (Katie)', 'Kyra Harper': 'Delores', 'Fraser Young': 'Darryl', 'Matt Smith': 'JD'}" tt0284491,"{'Penélope Cruz': 'Carmen Ramos (as Penelope Cruz)', 'Victoria Abril': 'Lola Nevado', 'Jero García': '(as Jeronimo Garcia)', 'Montse G. Romeu': 'Cajera Embarazada (as Montse Garcia Romeu)', 'Paz Gómez': 'Cajera Joven (as Paz Gomez)', 'Mercedes Arbizu': 'Cajera 1', ""Vicenta N'Dongo"": 'Cajera 2 (as Vicenta NDongo)', 'José Manuel Lorenzo': '(as Jose Manuel Lorenzo)', 'Joserra Cadiñanos': '(as Jose Ramon Cadiñanos)', 'Teresa Arbolí': '(as Teresa Arboli)', 'Yohana Cobo': '(as Yohanna Cobo)', 'Fernando Millán': '(as Fernando Millan)'}" tt0337879,"{'Paul Kaye': 'Cliff', 'James Cromwell': 'Ray', 'Alice Evans': 'Kerry', 'Bernard Cribbins': 'Mutley', 'Johnny Vegas': 'Trevor', 'Vince Vaughn': 'Rick', 'Imelda Staunton': 'Bridget', 'James Fleet': 'Alan the Pipe', 'David Ryall': 'Giles Wilton', 'Ian McNeice': 'Hugh The Sideburns', 'Kenneth Cranham': 'Chairman Collins', 'Terry Alderton': 'Bouncer Jonno', 'Emma Amos': 'Local News Reporter', 'Paul Bentall': 'Gate Guard (as Paul Bental)', 'Neil Conrich': 'Reporter Dave'}" tt5464234,"{'Dan Stevens': 'Will Porter', 'Bérénice Marlohe': 'Abigail Vos (as Berenice Marlohe)', 'Mike Reus': 'Dr. Klintsen', 'Bas Keijzer': 'Bektman', 'Tygo Gernandt': 'Michael', 'Gijs Scholten van Aschat': 'Reynard', 'Charity Wakefield': 'Mia', 'Kasper van Groesen': 'Donny', 'Mike Libanon': 'Hugo'}" tt0367232,"{'Dan Aykroyd': 'Dr. Cyril Kipp', 'Lynda Boyd': 'Cynthia Skyes', 'Christine Chatelain': 'Mitzi Cole', 'Maury Chaykin': ""Dr. Roger 'Tony' Toussant"", 'Dave Foley': 'Dr. Denton Whiteside', 'Matt Frewer': 'Dr. Anton Keller', 'Ingrid Kavelaars': 'Mira Towers', 'Pat Kelly': 'Dale Dodd', 'Viv Leacock': 'Marlon Thomas', 'Jane McLean': 'Christine Lee', 'Peter Oldring': 'Mike Bonnert', 'Carly Pope': 'Sarah Calder', 'Saul Rubinek': 'Dr. Sam Bonnert', 'Dave Thomas': 'Dr. Omar Olson', 'Sue Huff': 'Dr. Susan Bonnert'}" tt1411697,"{'Bradley Cooper': 'Phil', 'Ed Helms': 'Stu', 'Zach Galifianakis': 'Alan', 'Justin Bartha': 'Doug', 'Ken Jeong': 'Mr. Chow', 'Paul Giamatti': 'Kingsley', 'Mike Tyson': 'Mike Tyson', 'Jeffrey Tambor': 'Sid Garner', 'Mason Lee': 'Teddy', 'Jamie Chung': 'Lauren', 'Sasha Barrese': 'Tracy', 'Gillian Vigman': 'Stephanie', 'Aroon Seeboonruang': 'Monk', 'Nirut Sirichanya': 'Fohn', 'Yasmin Lee': 'Kimmy'}" tt0411477,"{'Ron Perlman': 'Hellboy', 'Selma Blair': 'Liz Sherman', 'Doug Jones': 'Abe Sapien / Chamberlain / Angel of Death', 'John Alexander': 'Johann Krauss / Bethmoora Goblin', 'James Dodd': 'Johann Krauss', 'Seth MacFarlane': 'Johann (voice)', 'Luke Goss': 'Prince Nuada', 'Anna Walton': 'Princess Nuala', 'Jeffrey Tambor': 'Tom Manning', 'John Hurt': 'Professor Broom', 'Brian Steele': 'Wink / Cronie / Spice Shop Troll / Cathedral Head / Fragglewump', 'Andrew Hefler': 'Agent Flint', 'Iván Kamarás': 'Agent Steel', 'Mike Kelly': 'Agent Marble', 'Jeremy Zimmermann': 'Auctioneer'}" tt0144528,"{'Eddie Murphy': 'Sherman Klump / Buddy Love / Granny Klump / Mama Klump / Papa Klump / Young Papa Klump / Ernie Klump / Lance Perkins', 'Janet Jackson': 'Denise', 'Larry Miller': 'Dean Richmond', 'John Ales': 'Jason', 'Richard Gant': ""Denise's Father"", 'Anna Maria Horsford': ""Denise's Mother"", 'Melinda McGraw': 'Leanne Guilford', 'Jamal Mixon': 'Ernie Klump, Jr.', 'Gabriel Williams': 'Isaac', 'Chris Elliott': 'Restaurant Manager', 'Duffy Taylor': 'Restaurant Trainee', 'Earl Boen': 'Dr. Knoll', 'Nikki Cox': 'Bright Student', 'Freda Payne': 'Claudine', 'Sylvester Jenkins': 'Old Willie'}" tt0096874,"{'Michael J. Fox': 'Marty McFly / Marty McFly Jr. / Marlene McFly', 'Christopher Lloyd': 'Dr. Emmett Brown', 'Lea Thompson': 'Lorraine', 'Thomas F. Wilson': 'Biff Tannen / Griff', 'Elisabeth Shue': 'Jennifer', 'James Tolkan': 'Strickland', 'Jeffrey Weissman': 'George McFly', 'Casey Siemaszko': '3-D', 'Billy Zane': 'Match', 'J.J. Cohen': 'Skinhead', 'Charles Fleischer': 'Terry', ""E'Casanova"": ""'Michael Jackson' Video Waiter (as E. Casanova Evans)"", 'Jay Koch': ""'Ronald Reagan' Video Waiter"", 'Charles Gherardi': ""'Ayatollah Khomeini' Video Waiter"", 'Ricky Dean Logan': 'Data'}" tt1743720,"{'J.J. Abrams': 'Himself', 'Peter Berg': 'Himself', 'Paul Brennan': 'Himself', 'Noam Chomsky': 'Himself', 'Jimmy Kimmel': 'Himself', 'Rick Kurnit': 'Himself', 'Mark Crispin Miller': 'Himself', 'Ralph Nader': 'Himself', 'Brett Ratner': 'Himself', 'L.A. Reid': 'Himself (as Antonio Reid)', 'Morgan Spurlock': 'Himself', 'Quentin Tarantino': 'Himself', 'Donald Trump': 'Himself', 'John Wells': 'Himself'}" tt0849470,"{'Gary Lundy': 'Adam Harris', 'Larry Miller': 'Mr. Frankfurt Dickwalder', 'Lea Thompson': 'Cathleen Harris', 'Tara Reid': 'Ellen Harris', 'Kayla Ewell': 'Cara', 'Talan Torriero': 'Scott', 'Chuck Carter': 'Tate', 'Taryn Southern': 'Isha', 'Lindsey Axelsson': 'Laura', 'Jessica Morris': 'Denise', 'Jackson Rathbone': 'Snippy', 'Clint Howard': 'Lionel Huffer', 'Russell Howard': 'Mark Sicki', 'Brett Claywell': 'Carl Smith', 'Derek Mio': 'Ralph Lee Cheng'}" tt5801296, tt0099088,"{'Michael J. Fox': 'Marty McFly / Seamus McFly', 'Christopher Lloyd': 'Dr. Emmett Brown', 'Mary Steenburgen': 'Clara Clayton', 'Thomas F. Wilson': ""Buford 'Mad Dog' Tannen / Biff Tannen"", 'Lea Thompson': 'Maggie McFly / Lorraine McFly', 'Elisabeth Shue': 'Jennifer Parker', 'Matt Clark': 'Chester the Bartender', 'Richard Dysart': 'Barbwire Salesman', 'Pat Buttram': 'Jeb, Saloon Old-Timer #3', 'Harry Carey Jr.': 'Zeke, Saloon Old-Timer #2', 'Dub Taylor': 'Levi, Saloon Old-Timer #1', 'James Tolkan': 'Marshal James Strickland', 'Marc McClure': 'Dave McFly', 'Wendie Jo Sperber': 'Linda McFly', 'Jeffrey Weissman': 'George McFly'}" tt0081505,"{'Jack Nicholson': 'Jack Torrance', 'Shelley Duvall': 'Wendy Torrance', 'Danny Lloyd': 'Danny', 'Scatman Crothers': 'Hallorann', 'Barry Nelson': 'Ullman', 'Philip Stone': 'Grady', 'Joe Turkel': 'Lloyd', 'Anne Jackson': 'Doctor', 'Tony Burton': 'Durkin', 'Lia Beldam': 'Young Woman in Bath', 'Billie Gibson': 'Old Woman in Bath', 'Barry Dennen': 'Watson', 'David Baxt': 'Forest Ranger 1', 'Manning Redwood': 'Forest Ranger 2', 'Lisa Burns': 'Grady Daughter'}" tt0330181,"{'Mark Holton': 'John Wayne Gacy', 'Adam Baldwin': 'John Gacy, Sr.', 'Tom Waldman': 'Hal', 'Charlie Weber': 'Tom', 'Allison Lange': 'Gretchen', 'Edith Jefferson': 'Mother Gacy', 'Joleen Lutz': 'Kara Gacy', 'Scott Alan Henry': 'Young Gacy', 'Kenneth Swartz': 'Dave', 'Matt Farnsworth': 'Stu', 'Jer Adrianne Lelliott': 'Little Stevie (as Jeremy Lelliot)', 'Joseph Sikora': 'Roger (as Joe Sikora)', 'Oren Skoog': 'Jimmy', 'Joe Roncetti': 'Peter', 'Eddie Adams': 'Duane'}" tt0390468,"{'George Calil': ""Don 'Lars' Larson"", 'Wali Razaqi': 'Wali Zarif', 'Sunil Sadarangani': ""Sunil 'Sonny'"", 'Baba Jon': 'Rahman', 'General Dil Agha': 'Northern Alliance Commander', 'Dawood Zarif': 'Guard / Gun Dealer 1', 'Zahir Zarif': 'Gun Dealer 2', 'Haroon Hadir': 'First Interview', 'Sher Alai': 'Second Interview', 'Sher Agah': 'Chief of Police', 'Shaw Mahmood': 'Guide at Airport', 'Nangilai': 'Man at Soccer Game', 'Ajmal Nasir': 'Hotel Manager', 'Zia Khadiri': 'Money-Store Owner', 'Sharif Omar': 'Man at Card Game'}" tt0163025,"{'Sam Neill': 'Dr. Alan Grant', 'William H. Macy': 'Paul Kirby', 'Téa Leoni': 'Amanda Kirby', 'Alessandro Nivola': 'Billy Brennan', 'Trevor Morgan': 'Eric Kirby', 'Michael Jeter': 'Udesky', 'John Diehl': 'Cooper', 'Bruce A. Young': 'Nash', 'Laura Dern': 'Ellie', 'Taylor Nichols': 'Mark', 'Mark Harelik': 'Ben Hildebrand', 'Julio Oscar Mechoso': 'Enrique Cardoso', 'Blake Michael Bryan': 'Charlie (as Blake Bryan)', 'Sarah Danielle Madison': 'Cheryl', 'Linda Park': 'Hannah'}" tt1627497,"{'Fernanda Urrejola': 'Magdalena Reyes / Esmeralda Martí', 'Álvaro Morales': 'Clemente Figueroa', 'Ignacia Allamand': 'Lietta Meyer', 'Héctor Noguera': 'Ronny Palma', 'Pablo Macaya': ""Lázaro 'Chaka' Moyano"", 'Catalina Guerra': ""Angélica 'Perla' Vargas"", 'Bárbara Ruiz-Tagle': ""Virginia 'Turquesa' Letelier"", 'Javiera Díaz de Valdés': ""Isidora 'Rubí' Baeza"", 'Marcela Del Valle': ""Blanca 'Amatista' Meyer"", 'Catalina Olcay': ""Liliana 'Zafiro' Escalante"", 'Paulo Brunetti': 'Valentino Ricci', 'Eduardo Paxeco': ""Sergio 'Tommy' Piña"", 'César Sepúlveda': 'Emmanuel Letelier', 'Nicolás Vigneaux': 'Moisés Moyano', 'Andrés Velasco': 'Aníbal Barahona'}" tt0187738,"{'Wesley Snipes': 'Blade', 'Kris Kristofferson': 'Whistler', 'Ron Perlman': 'Reinhardt', 'Leonor Varela': 'Nyssa', 'Norman Reedus': 'Scud', 'Thomas Kretschmann': 'Damaskinos', 'Luke Goss': 'Nomak', 'Matt Schulze': 'Chupa (as Matthew Schulze)', 'Danny John-Jules': 'Asad (as Danny John Jules)', 'Donnie Yen': 'Snowman', 'Karel Roden': 'Kounen', 'Marit Velle Kile': 'Verlaine', 'Tony Curran': 'Priest', 'Daz Crawford': 'Lighthammer', 'Santiago Segura': 'Rush'}" tt0360717,"{'Naomi Watts': 'Ann Darrow', 'Jack Black': 'Carl Denham', 'Adrien Brody': 'Jack Driscoll', 'Thomas Kretschmann': 'Captain Englehorn', 'Colin Hanks': 'Preston', 'Andy Serkis': 'Kong / Lumpy', 'Evan Parke': 'Hayes', 'Jamie Bell': 'Jimmy', 'Lobo Chan': 'Choy', 'John Sumner': 'Herb', 'Craig Hall': 'Mike', 'Kyle Chandler': 'Bruce Baxter', 'William Johnson': 'Manny', 'Mark Hadlow': 'Harry', 'Geraldine Brophy': 'Maude'}" tt3700392,"{'Anuk Steffen': 'Heidi', 'Anna Schinz': 'Dete', 'Lilian Naef': 'Barbel', 'Bruno Ganz': 'Alpöhi', 'Peter Jecklin': 'Pfarrer', 'Christoph Gaugler': 'Senner', 'Quirin Agrippi': 'Geissenpeter', 'Rebecca Indermaur': 'Geissenpeterin', 'Monica Gubser': 'Grossmutter', 'Arthur Bühler': 'Dörfler', 'Marietta Jemmi': 'Frau im Dorf', 'Peter Lohmeyer': 'Sebastian', 'Katharina Schüttler': 'Fräulein Rottenmeier', 'Isabelle Ottmann': 'Klara', 'Jella Haase': 'Tinette'}" tt1876517,"{'Jon Heder': 'Fu (voice)', 'Tom Arnold': 'Shifu (voice)', 'Rebecca Black': 'Penny (voice)', 'Claire Geare': 'Biggie (voice)', 'Michael Clarke Duncan': 'Slash (voice)'}" tt0264734,"{'Ben Affleck': 'Joseph (voice)', 'Mark Hamill': 'Judah (voice)', 'Richard Herd': 'Jacob (voice)', 'Maureen McGovern': 'Rachel (voice)', 'Jodi Benson': 'Asenath (voice)', 'Judith Light': 'Zuleika (voice)', 'James Eckhouse': 'Potiphar (voice)', 'Richard McGonagle': 'Pharaoh (voice)', 'David Campbell': 'Joseph (singing voice)', 'Steven Weber': 'Simeon / Slave Trader (voice)', 'Dan Castellaneta': 'Auctioneer / Horse Trader (voice)', 'Rene Auberjonois': 'Butler (voice)', 'Ken Hudson Campbell': 'Baker (voice) (as Ken Campbell)', 'Tom Virtue': 'Reuben (voice)', 'Jeff Bennett': 'Levi (voice)'}" tt1473801,"{'Rollin Perry': ""Josh 'Spanky' Green"", 'Seth Cassell': 'Mert (as Seth Adam Cassell)', 'Michelle Penick': 'Princess', 'Rana Davis': 'Strawberry', 'Maurice Constable': 'Mr. Clink', 'Lindsey Ahern': 'Pinky', 'Brent Anthony': 'Little Joe Joe', 'Teryl Brouillette': 'Ellen Green (as Terry Brouillette)', 'Theresa Deveaux': 'Mama Love', 'Lola Forsberg': 'Leah', 'Elina Madison': 'Nancy', 'Jack Ross': 'Max (as Matthew Ross)', 'T.J. Zale': 'Darlington', 'Giusy Castiglione': 'Dream Woman', 'Becky T. Bordo': 'Bikini Jane (as Tahel Becky Bordo)'}" tt2274064,"{'Delay de la Beckwith': 'Himself', 'Jim Ingram': 'Himself', 'Donna Ladd': 'Herself', 'Jimmie Travis': 'Himself', 'Joe Harris': 'Himself', 'Harry Belafonte': 'Himself', 'Charles Evers': 'Himself', 'Myrlie Evers': 'Herself', 'Morgan Freeman': 'Himself', 'Joecephus Martin': 'Himself', 'John Lewis': 'Himself', 'Tbone Pruitt': 'Himself', 'Richard Barrett': 'Himself'}" ================================================ FILE: data/metadata/clips.csv ================================================ videoid,year,clip_idx,clip_tot,upload_year,title,clip_name,imdbid Sv-BxH3SVS8,2012.0,6,10,2019,Les Misérables,One Day More Scene,tt1707386 IsZdfna1LKA,2012.0,8,10,2019,Les Misérables,Javert's Suicide Scene,tt1707386 tdzX5AKWiDw,2019.0,9,10,2019,Downton Abbey,You Are the Future of Downton Scene,tt6398184 mycAsRhAr_M,2019.0,8,10,2019,Downton Abbey,Til We Meet Again Scene,tt6398184 WgXQnXPb-TA,2019.0,3,10,2019,Downton Abbey,Serving Staff Showdown Scene,tt6398184 WgMhaDEPGXo,2019.0,5,10,2019,Downton Abbey,"Goodnight, Mr. Branson Scene",tt6398184 HummNgSGn8k,2019.0,2,10,2019,Downton Abbey,Welcome to Scene,tt6398184 33uE1YctOf4,2019.0,10,10,2019,Downton Abbey,The Final Dance Scene,tt6398184 bvl-DxX9N8g,2019.0,4,10,2019,Downton Abbey,The Royal Dinner Scene,tt6398184 E0BY209ZNEY,2019.0,1,10,2019,Downton Abbey,The Royal Staff Takeover Scene,tt6398184 q7S2ckr4IkM,2019.0,6,10,2019,Downton Abbey,For the Love of Me Scene,tt6398184 frZrAIZrOI8,2019.0,7,10,2019,Downton Abbey,Farewell to the Royal Staff Scene,tt6398184 A-Ckh0slywY,2019.0,1,10,2019,Abominable,Meeting Everest Scene,tt6324278 GU1zIn2BRN0,2019.0,9,10,2019,Abominable,Bridge Battle Scene,tt6324278 0XLEGFSKVhs,2019.0,5,10,2019,Abominable,Jin's Sprint Scene,tt6324278 eNCK08cInIE,2019.0,6,10,2019,Abominable,Yak Attack! Scene,tt6324278 LCj92toBBBE,2019.0,7,10,2019,Abominable,Magic Boat Chase Scene,tt6324278 ViQZwRewYl8,2019.0,2,10,2019,Abominable,Rooftop Escape Scene,tt6324278 Btywn5TiBNQ,2019.0,10,10,2019,Abominable,Saving Everest Scene,tt6324278 chvjkV0jRh8,2019.0,8,10,2019,Abominable,The Magic Violin Scene,tt6324278 rRUVmTXpPyg,2019.0,4,10,2019,Abominable,Drone Attack Scene,tt6324278 GZiLvbk8fL8,2019.0,3,10,2019,Abominable,Blueberry Bombs Scene,tt6324278 88T3elu2wfE,2012.0,10,10,2019,Les Misérables,Epilogue Scene,tt1707386 ojoC-Kbzpo8,2012.0,7,10,2019,Les Misérables,Do You Hear The People Sing? Scene,tt1707386 deUgUoJ4z5I,2012.0,5,10,2019,Les Misérables,On My Own Scene,tt1707386 ocDL_b6BRE4,2012.0,4,10,2019,Les Misérables,In My Life/A Heart Full of Love Scene,tt1707386 0BM-Q3BDrkw,2012.0,9,10,2019,Les Misérables,Empty Chairs at Empty Tables Scene,tt1707386 9jfRE_FljrE,2012.0,2,10,2019,Les Misérables,The Confrontation Scene,tt1707386 iLN9GLRC5is,2012.0,3,10,2019,Les Misérables,Master of the House Scene,tt1707386 ulJXiB5i_q0,2012.0,1,10,2019,Les Misérables,I Dreamed A Dream Scene,tt1707386 Ok63vpXNhNc,2019.0,1,9,2020,Shazam!,New Superpowers Scene,tt0448115 OfLhd_wJux8,2018.0,9,9,2020,Creed II,Drago Goes Down Scene,tt6343314 TGghm3K1NXQ,2018.0,6,9,2020,Creed II,Broken Ribs Scene,tt6343314 u0RqfETo2ok,2018.0,2,9,2020,Creed II,Heavyweight Championship Scene,tt6343314 oaKjYmfK_Pw,2018.0,5,9,2020,Creed II,Gotta Take the Fight Scene,tt6343314 oqGij9ylbAk,2018.0,1,9,2020,Creed II,Drago's Son Scene,tt6343314 QT2Anb4MY38,2017.0,5,10,2020,Dunkirk,Fighting for the Wheel Scene,tt5013056 jbvQvJV_97M,2019.0,8,9,2020,Shazam!,Shazam vs. Dr. Sivana Scene,tt0448115 UAYL8R2ZPuI,2019.0,2,9,2020,Shazam!,Convenience Store Robbery Scene,tt0448115 g8pt9OoaPlY,2019.0,3,9,2020,Shazam!,Dr. Sivana Attacks Scene,tt0448115 AONuDilRd5k,2019.0,6,9,2020,Shazam!,The Shazam Fam Scene,tt0448115 _nSQhWq7etg,2019.0,7,9,2020,Shazam!,Fighting The Seven Deadly Sins Scene,tt0448115 -W8pOz1fsD0,2019.0,5,9,2020,Shazam!,Playtime's Over Scene,tt0448115 ChIQpmBLPAo,2019.0,4,9,2020,Shazam!,Carnival of Sins Scene,tt0448115 GC6ksHacdXI,2019.0,9,9,2020,Shazam!,Mister Mind Scene,tt0448115 lsa5PDPgJmI,1994.0,7,10,2020,Blankman,Welcome to McDonald's Scene,tt0109288 MGBHNeYbsbg,1994.0,2,10,2020,Blankman,The Pregnant Lady Scene,tt0109288 -mXoZz1dqMQ,1994.0,10,10,2020,Blankman,The City's New Heroes Scene,tt0109288 Jgye_cEhfGQ,1994.0,3,10,2020,Blankman,Protecting the Neighborhood Scene,tt0109288 -jpEsYBH3g4,1994.0,6,10,2020,Blankman,Blowing It Scene,tt0109288 ljAdSzBv0ug,1994.0,5,10,2020,Blankman,The Bank Heist Scene,tt0109288 RFR3AJ-jE88,1994.0,1,10,2020,Blankman,Let the Lady Go Scene,tt0109288 RLbry-3z8yQ,1994.0,8,10,2020,Blankman,Is This the End? Scene,tt0109288 sM1I11qUM44,1994.0,9,10,2020,Blankman,The Jig is Up Scene,tt0109288 RxwUv1BcPwg,1994.0,4,10,2020,Blankman,The Blank Wheel Scene,tt0109288 sSc4Y4Z9lsk,2018.0,4,9,2020,Creed II,Drago's Challenge Scene,tt6343314 9wCiCJ7KDs8,2018.0,7,9,2020,Creed II,The Rematch Begins Scene,tt6343314 ttiEgVcV-Xo,2018.0,3,9,2020,Creed II,Marry Me Scene,tt6343314 b2MEP246DxY,2018.0,8,9,2020,Creed II,What's Your Name? Scene,tt6343314 S3moqQqx3Nk,2017.0,9,10,2020,Dunkirk,Oil Blast Scene,tt5013056 bgS0GPQhzHg,2017.0,8,10,2020,Dunkirk,Home Comes to Them Scene,tt5013056 TIEtN-jVDbg,2017.0,7,10,2020,Dunkirk,The Bodies Come Back Scene,tt5013056 2W3KDB0yHYM,2017.0,2,10,2020,Dunkirk,The First Bombing Scene,tt5013056 K9j6xEBFek4,2017.0,4,10,2020,Dunkirk,The Night Bombing Scene,tt5013056 c5mAaBl_qqk,2017.0,10,10,2020,Dunkirk,All We Did Is Survive Scene,tt5013056 WygmbuU_78c,2017.0,3,10,2020,Dunkirk,Sinking the Medical Ship Scene,tt5013056 X5_GpmLuea4,2017.0,1,10,2020,Dunkirk,Running to the Beach Scene,tt5013056 7ycVIGqnLO8,2017.0,6,10,2020,Dunkirk,Dogfight over the English Channel Scene,tt5013056 cg49Y3jpZsQ,2019.0,9,10,2019,Good Boys,Flying the Drone Home Scene,tt7343762 NYRHTYWWiGU,2019.0,7,10,2019,Good Boys,Running Through Traffic Scene,tt7343762 mlc2UyZdalQ,2019.0,1,10,2019,Good Boys,Kissing Practice Scene,tt7343762 4-BWFsE_TQE,2019.0,8,10,2019,Good Boys,Frat House Fight Scene,tt7343762 i_Rupd9NU4E,2019.0,3,10,2019,Good Boys,Citizen's Arrest! Scene,tt7343762 _0gn0zQx4_s,2019.0,5,10,2019,Good Boys,Dislocated Arm Scene,tt7343762 cV9dlsOzyVc,2019.0,6,10,2019,Good Boys,Stealing Beer Scene,tt7343762 mcerWHb94yo,2019.0,10,10,2019,Good Boys,Thor's Song Scene,tt7343762 uQ_nGVp6x6U,2019.0,2,10,2019,Good Boys,That's a Tampon Scene,tt7343762 UECge-Vi8VA,2019.0,4,10,2019,Good Boys,My Parents' Weapons Scene,tt7343762 j71oHN1i2pU,2019.0,9,10,2019,The Angry Birds Movie 2,Lava Ball Eruption Scene,tt6095472 DXFN60x3vP4,2019.0,8,10,2019,The Angry Birds Movie 2,Great Balls of Ice Scene,tt6095472 YvL_-Awg2gg,2019.0,10,10,2019,The Angry Birds Movie 2,Wittle Sisters Scene,tt6095472 WzAHXnFWd5U,2019.0,7,10,2019,The Angry Birds Movie 2,Dance Off! Scene,tt6095472 e198XToyAkk,2019.0,4,10,2019,The Angry Birds Movie 2,Piggy Gadgetland Scene,tt6095472 A6d0qIZY3Hg,2019.0,2,10,2019,The Angry Birds Movie 2,Getting the Team Together Scene,tt6095472 _bJYiiCvPW4,2019.0,3,10,2019,The Angry Birds Movie 2,Ice Ball Attack Scene,tt6095472 WavZVQM3U00,2019.0,6,10,2019,The Angry Birds Movie 2,Bathroom Heist Scene,tt6095472 480Hw45m9v8,2019.0,5,10,2019,The Angry Birds Movie 2,Eagle's Love Story Scene,tt6095472 WncnbHD-JXI,2019.0,1,10,2019,The Angry Birds Movie 2,Frozen Paradise Scene,tt6095472 MmKlIGkxGyM,2018.0,10,10,2019,The Grinch,I Stole Your Christmas Scene,tt2709692 eVmYZJQxawo,2018.0,8,10,2019,The Grinch,The Christmas Thief Scene,tt2709692 HGZotWs54rU,2018.0,4,10,2019,The Grinch,The Quest for Reindeer Scene,tt2709692 NjUtH1NBFyY,2018.0,3,10,2019,The Grinch,Lighting Whoville's Tree Scene,tt2709692 DmXp6Pm-uLI,2018.0,9,10,2019,The Grinch,A Change of Heart Scene,tt2709692 8coCtKWysGk,2018.0,5,10,2019,The Grinch,Grinch and the Guard Dog Scene,tt2709692 BiPY5_H9EIw,2018.0,2,10,2019,The Grinch,Can't Escape Christmas Scene,tt2709692 ZhqHIrO4ePo,2018.0,6,10,2019,The Grinch,Whipped Cream & Sausages Scene,tt2709692 XMGoOSCbul0,2018.0,1,10,2019,The Grinch,"You're a Mean One, Mr. Grinch Scene",tt2709692 96pSGRvBg3I,2018.0,7,10,2019,The Grinch,Riding in Style Scene,tt2709692 -r_-EnupRXo,2017.0,10,10,2019,mother!,Take My Heart Scene,tt5109784 TcBlM3VLePM,2017.0,2,10,2019,mother!,Horrible Guests Scene,tt5109784 nxc6kwBYFSM,2017.0,7,10,2019,mother!,Where's My Baby? Scene,tt5109784 nXSfDMvXAxw,2017.0,8,10,2019,mother!,We Must Forgive Them Scene,tt5109784 eGXnEeW_KdA,2017.0,4,10,2019,mother!,The Police Raid Scene,tt5109784 rQ3Qokn9t_w,2017.0,3,10,2019,mother!,Radicalized Fans Scene,tt5109784 iJDnG2RAlzk,2017.0,9,10,2019,mother!,Purged in Flame Scene,tt5109784 iPcAns5pKVw,2017.0,6,10,2019,mother!,The Agony of Birth Scene,tt5109784 iGsce-w4TtY,2017.0,5,10,2019,mother!,War Is Hell Scene,tt5109784 lyd4tC8LH1s,2017.0,1,10,2019,mother!,Sibling Brutality Scene,tt5109784 2LwWmJojqvM,1979.0,2,10,2019,La Cage aux Folles,The Parents' Reaction Scene,tt0077288 tXhTaL04ByA,1979.0,5,10,2019,La Cage aux Folles,Just Like John Wayne Scene,tt0077288 mBiT0g4TIYc,1979.0,10,10,2019,La Cage aux Folles,Escaping in Drag Scene,tt0077288 cW7AkQihsa8,1979.0,4,10,2019,La Cage aux Folles,Buttering Toast Like a Man Scene,tt0077288 db1o8mTCBXU,1979.0,6,10,2019,La Cage aux Folles,Albin's Leaving Scene,tt0077288 JYwvFPjJ7dM,1979.0,7,10,2019,La Cage aux Folles,A Real Butler Scene,tt0077288 6RbMqRpNqmY,1979.0,1,10,2019,La Cage aux Folles,You Don't Love Me Anymore Scene,tt0077288 RdpvBc4bahI,1979.0,9,10,2019,La Cage aux Folles,The Ruse is Ruined Scene,tt0077288 9lqv-q15y1c,1979.0,8,10,2019,La Cage aux Folles,"Laurent's ""Mother"" Scene",tt0077288 ATNjQgr7LXc,1979.0,3,10,2019,La Cage aux Folles,He's Getting Married Scene,tt0077288 TfKw3gvxff0,1973.0,9,10,2019,Don't Look Now,The Red Ghost in Fog Scene,tt0069995 ySINkZRkHi0,1973.0,3,10,2019,Don't Look Now,The Spectre of Venice Scene,tt0069995 LWz_6w0paEg,1973.0,4,10,2019,Don't Look Now,Seance of Death Scene,tt0069995 n-2Lxsj7sf4,1973.0,5,10,2019,Don't Look Now,The Church of Doom Scene,tt0069995 JL_tj5M1o-c,1973.0,1,10,2019,Don't Look Now,Drowned in the Pond Scene,tt0069995 r0iSxOsPGl8,1973.0,8,10,2019,Don't Look Now,Fetch Him! Scene,tt0069995 HFTqyXV9Vio,1973.0,2,10,2019,Don't Look Now,The Blind Psychic Scene,tt0069995 CMMzjgpnLGc,1973.0,6,10,2019,Don't Look Now,Fishing a Body Scene,tt0069995 D2JzjzTWMxw,1973.0,7,10,2019,Don't Look Now,Murder Suspect Scene,tt0069995 9zcAqShAXPo,1973.0,10,10,2019,Don't Look Now,Killer in Red Scene,tt0069995 htWhh0DIFgk,1973.0,2,10,2019,Serpico,Police Brutality Scene,tt0070666 9_n15K7rv1Y,1973.0,1,10,2019,Serpico,Bleeding to Death Scene,tt0070666 POLkdKBw3LM,1973.0,5,10,2019,Serpico,"I Love You, Paco! Scene",tt0070666 _1tCmEtAbnw,1973.0,9,10,2019,Serpico,Get Dead Cards Scene,tt0070666 4WXN2HQ7PQ0,1973.0,10,10,2019,Serpico,The Knapp Commission Scene,tt0070666 n0PS-QVcoJo,1973.0,7,10,2019,Serpico,What Kind of Shakedown Is This? Scene,tt0070666 lYu_8OE3sCE,1973.0,8,10,2019,Serpico,The Last Drug Raid Scene,tt0070666 0frXMGxB0Ko,1973.0,4,10,2019,Serpico,Where's the Money?! Scene,tt0070666 fluKR9XbEjQ,1973.0,6,10,2019,Serpico,A Marked Man Scene,tt0070666 mPDFATjS8l0,1973.0,3,10,2019,Serpico,You're Firing Without Looking? Scene,tt0070666 -1W4xHNKvAk,2015.0,3,7,2019,Get Hard,"Carlos, Leroy, and Dante Scene",tt2561572 x4IKGG_2L6I,2015.0,6,7,2019,Get Hard,First Time Holding a Gun Scene,tt2561572 PvMk6sjZlTU,2015.0,7,7,2019,Get Hard,Mayo and Chocolate Scene,tt2561572 RaicjdiN8ag,2015.0,1,7,2019,Get Hard,I Need Your Help Scene,tt2561572 M7CL4l-bu68,2015.0,4,7,2019,Get Hard,Boyz N the Hood Scene,tt2561572 ThIBEo7fsSQ,2015.0,5,7,2019,Get Hard,Gangbanger Accountant Scene,tt2561572 dhJPm7NolLc,2015.0,2,7,2019,Get Hard,Mad Dog Face Scene,tt2561572 MgL18hwJZ0A,2005.0,7,10,2019,Munich,Grenade Assassination Scene,tt0408306 ZvvQ3CLveAA,2005.0,2,10,2019,Munich,Are You Wael Zwaiter? Scene,tt0408306 PMdokZIn2_s,2005.0,3,10,2019,Munich,Calling in the Kill Scene,tt0408306 zuFtCz663GQ,2005.0,9,10,2019,Munich,Love and Terror Scene,tt0408306 CToeYdx6SsU,2005.0,4,10,2019,Munich,The Cross-Dressing Raid Scene,tt0408306 0bR6pUOhZo4,2005.0,10,10,2019,Munich,Did I Commit Murder? Scene,tt0408306 WzmAy1QyIH8,2005.0,1,10,2019,Munich,Black September Scene,tt0408306 w3trh6DMpHI,2005.0,8,10,2019,Munich,Sniper Misfire Scene,tt0408306 YoAV0xF7A2U,2005.0,6,10,2019,Munich,Israel vs. Palestine Scene,tt0408306 azRJpVsJ7AM,2005.0,5,10,2019,Munich,Put the Gun Down! Scene,tt0408306 hck3C2VMRzk,2019.0,2,10,2019,Dora and the Lost City of Gold,"Swiper, No Swiping! Scene",tt7547410 YI8DWdXhg5Q,2019.0,3,10,2019,Dora and the Lost City of Gold,The Poo Hole Song Scene,tt7547410 Ajh84X59SH4,2019.0,5,10,2019,Dora and the Lost City of Gold,Sluice Gate Slide Scene,tt7547410 Nhj2rSOUjwU,2019.0,10,10,2019,Dora and the Lost City of Gold,Ending Dance Scene,tt7547410 rQABiLDqdVc,2019.0,9,10,2019,Dora and the Lost City of Gold,Angering the Gods Scene,tt7547410 vXQlXYcAksI,2019.0,8,10,2019,Dora and the Lost City of Gold,The Final Test Scene,tt7547410 4IbNz68R49c,2019.0,6,10,2019,Dora and the Lost City of Gold,Boots to the Rescue Scene,tt7547410 mPWo1Dsti3c,2019.0,7,10,2019,Dora and the Lost City of Gold,Spike Trap Scene,tt7547410 8mDtsn0yrsA,2019.0,4,10,2019,Dora and the Lost City of Gold,Spore Field Scene,tt7547410 F9vKkW_NNjE,2019.0,1,10,2019,Dora and the Lost City of Gold,Today's Adventure Scene,tt7547410 36FYEbRBy48,1974.0,6,10,2019,Death Wish,What Else You Got? Scene,tt0071402 cj5Mp68u2tY,1996.0,5,10,2019,Escape From L.A.,Shot and Sheared Scene,tt0116225 a3HOCIXroqQ,1996.0,7,10,2019,Escape From L.A.,Surfboard Car Chase Scene,tt0116225 BMlHiDzHkSk,1996.0,6,10,2019,Escape From L.A.,Basketball to the Death Scene,tt0116225 8OilisaAv0I,1996.0,3,10,2019,Escape From L.A.,The Surgeon General Scene,tt0116225 0tro-o0fOk4,1996.0,10,10,2019,Escape From L.A.,Shutting Down the Earth Scene,tt0116225 _X8bBE1M994,1996.0,8,10,2019,Escape From L.A.,Hang Glider Assault Scene,tt0116225 4N_0iP8TSRo,1996.0,2,10,2019,Escape From L.A.,Bangkok Rules Scene,tt0116225 40p6dkKil_8,1996.0,9,10,2019,Escape From L.A.,Helicopter Explosion Scene,tt0116225 WCf36CQxBfY,1996.0,1,10,2019,Escape From L.A.,Torpedo Sub to L.A. Scene,tt0116225 aEIaR1nlEoo,1996.0,4,10,2019,Escape From L.A.,Fun Gun Injection Scene,tt0116225 DWFZ7v72HjA,1974.0,8,10,2019,Death Wish,Draw! Scene,tt0071402 syjdYGc2A20,1974.0,1,10,2019,Death Wish,Followed Home Scene,tt0071402 S8avj5d8G6s,1974.0,10,10,2019,Death Wish,The Vigilante's Still Out There Scene,tt0071402 Kbb4g4m68sc,1974.0,9,10,2019,Death Wish,Get a Transfer Scene,tt0071402 MfV5DOQ9zac,1974.0,4,10,2019,Death Wish,"Wrong Alley, Right Time Scene",tt0071402 b_Wpqni4yMQ,1974.0,3,10,2019,Death Wish,Stalked in the Park Scene,tt0071402 L8JRx-zXz7w,1974.0,7,10,2019,Death Wish,Shot and Bleeding Scene,tt0071402 BYN41wGmP8U,1974.0,5,10,2019,Death Wish,Subway Shooting Scene,tt0071402 RkaM5GL1LTc,1974.0,2,10,2019,Death Wish,Cowboy Stunt Show Scene,tt0071402 qDBjp7fdIVw,1988.0,10,10,2019,Crocodile Dundee II,Dundee Gets Shot Scene,tt0092493 pikL2Z9sykc,1988.0,5,10,2019,Crocodile Dundee II,Outback Shootout Scene,tt0092493 2m2vmTtcCM8,1988.0,4,10,2019,Crocodile Dundee II,Better Than Average Scene,tt0092493 QCkiT56VSR4,1988.0,2,10,2019,Crocodile Dundee II,Clint Eastwood Scene,tt0092493 crbN4daV5IU,1988.0,6,10,2019,Crocodile Dundee II,Booby Trap Scene,tt0092493 J7kO-7jEveA,1988.0,9,10,2019,Crocodile Dundee II,Bushfire Showdown Scene,tt0092493 qFKVhx9wBZ4,1988.0,8,10,2019,Crocodile Dundee II,Crocodile Attack Scene,tt0092493 FX1FiZxQo7k,1988.0,1,10,2019,Crocodile Dundee II,The Jumper Scene,tt0092493 g05nAeO-uKY,1988.0,7,10,2019,Crocodile Dundee II,Animal Attack Scene,tt0092493 VmCRT88HTWE,1988.0,3,10,2019,Crocodile Dundee II,Hung from a Rooftop Scene,tt0092493 6JfQ82WowC8,1981.0,5,10,2019,My Bloody Valentine,Shower of Death Scene,tt0082782 f06qimixOOI,1981.0,6,10,2019,My Bloody Valentine,Nail Gun Kill Scene,tt0082782 rS_HIFTV7wM,1981.0,9,10,2019,My Bloody Valentine,Minecart Murder Scene,tt0082782 EodzQpkDFYo,1981.0,4,10,2019,My Bloody Valentine,Peak-a-Boo Killing Scene,tt0082782 uifDWAJ6rBY,1981.0,1,10,2019,My Bloody Valentine,Tunnel of Love Scene,tt0082782 QfSL-PSHTkQ,1981.0,2,10,2019,My Bloody Valentine,This Town is Cursed Scene,tt0082782 21Vg94SOqk0,1981.0,7,10,2019,My Bloody Valentine,Messy Hanging Scene,tt0082782 acZDS8WDtHs,1981.0,3,10,2019,My Bloody Valentine,Laundromat Lashing Scene,tt0082782 Pku1UxtmkLM,1981.0,8,10,2019,My Bloody Valentine,Pickaxe to the Gut Scene,tt0082782 7H3XPETdtmc,1981.0,10,10,2019,My Bloody Valentine,The Killer Revealed Scene,tt0082782 3kvqIswrPhg,1973.0,1,10,2019,Charlotte's Web,There Must Be Something More Scene,tt0070016 xE4RRKaCifU,1973.0,6,10,2019,Charlotte's Web,A Rat's Paradise Scene,tt0070016 6HboqAtIPA0,1973.0,10,10,2019,Charlotte's Web,Charlotte's Daughters Scene,tt0070016 kf1bu5sUXaU,1973.0,5,10,2019,Charlotte's Web,A Veritable Smorgasbord Scene,tt0070016 nCm4_MJstGQ,1973.0,8,10,2019,Charlotte's Web,A Spider's Life Scene,tt0070016 SaRtVS1Fx1Q,1973.0,7,10,2019,Charlotte's Web,Zuckerman's Famous Pig Scene,tt0070016 rPh94cOW-MI,1973.0,9,10,2019,Charlotte's Web,Charlotte's Last Song Scene,tt0070016 YHvTfLaOREg,1973.0,2,10,2019,Charlotte's Web,I Can Talk! Scene,tt0070016 __7NUrkFirA,1973.0,4,10,2019,Charlotte's Web,Some Pig Scene,tt0070016 qQjdOtebYns,1973.0,3,10,2019,Charlotte's Web,Chin Up! Scene,tt0070016 OqyvMY1fcr4,1975.0,10,10,2019,Nashville,It Don't Worry Me Scene,tt0073440 dbX-ekoWGWE,1975.0,7,10,2019,Nashville,I'm Easy Scene,tt0073440 UVOJk8TFwpQ,1975.0,1,10,2019,Nashville,Highway Pileup Scene,tt0073440 ktCIr_DMGOI,1975.0,9,10,2019,Nashville,Barbara Jean's Last Song Scene,tt0073440 Jrn-OprEMLI,1975.0,5,10,2019,Nashville,An American Junkyard Scene,tt0073440 hT_G4j4nI-8,1975.0,8,10,2019,Nashville,Go Finish the Show Scene,tt0073440 oNpeuCWJgCc,1975.0,4,10,2019,Nashville,Keep A-Goin' Scene,tt0073440 eclUi6kVFcM,1975.0,3,10,2019,Nashville,"Who Was That, Babe? Scene",tt0073440 fO8fKHbg4kw,1975.0,2,10,2019,Nashville,"Where You Goin', Tommy Brown? Scene",tt0073440 mr1bVID2qao,1975.0,6,10,2019,Nashville,On-Stage Breakdown Scene,tt0073440 clDZPzwANeE,2018.0,9,10,2019,The Mustang,They're Ending the Program Scene,tt5952594 hOH-oOCfsX4,2018.0,8,10,2019,The Mustang,Bucking Bronco Scene,tt5952594 2qyJ5r7Wink,2018.0,10,10,2019,The Mustang,Set Free Scene,tt5952594 _wkTjOjTafw,2018.0,3,10,2019,The Mustang,Finally Friends Scene,tt5952594 4ZiwLxnl_9k,2018.0,1,10,2019,The Mustang,Punching a Mustang Scene,tt5952594 lGAADj8laqo,2018.0,6,10,2019,The Mustang,Someday I'll Make It up to You Scene,tt5952594 cpZIiyp8juU,2018.0,2,10,2019,The Mustang,Thunderstorm Scene,tt5952594 23uAYGDpS_I,2018.0,4,10,2019,The Mustang,Anger Management Scene,tt5952594 xSJaxpJHf-s,1997.0,2,10,2019,Batman & Robin,"Stay Cool, Bird Boy Scene",tt0118688 erE6UlOi3E0,1997.0,5,10,2019,Batman & Robin,Catching Cold Scene,tt0118688 UIxwyNULzdk,1997.0,8,10,2019,Batman & Robin,Tell Me and I'll Kiss You Scene,tt0118688 MGJlq-gjQj8,1997.0,7,10,2019,Batman & Robin,vs. Bane & Poison Ivy Scene,tt0118688 OE7aSKZDjTo,1997.0,10,10,2019,Batman & Robin,Take Two and Call Me in the Morning Scene,tt0118688 Zbmc8C3GaC8,2018.0,5,10,2019,The Mustang,My Baby Girl Scene,tt5952594 L6w-80CFfAs,1997.0,1,10,2019,Batman & Robin,The Iceman Cometh Scene,tt0118688 gSG9bZu1NtM,1997.0,6,10,2019,Batman & Robin,Arkham Asylum Break Out Scene,tt0118688 ZPDbP3gms30,2018.0,7,10,2019,The Mustang,Prison Shanking Scene,tt5952594 gnallHWgupY,1997.0,4,10,2019,Batman & Robin,Bat Credit Card Scene,tt0118688 k6dRH6fO3Xw,1997.0,9,10,2019,Batman & Robin,Let's Kick Some Ice Scene,tt0118688 73Pm3rkTzb0,1997.0,3,10,2019,Batman & Robin,I'm Poison Scene,tt0118688 es2xkV9Be20,2013.0,6,10,2019,Police Story: Lockdown,Wei's Story Scene,tt2599716 BrGfzBJW-Do,2013.0,9,10,2019,Police Story: Lockdown,Your Life Or Your Daughter's Scene,tt2599716 IMlPpjJlzFA,2013.0,10,10,2019,Police Story: Lockdown,Light At the End of the Tunnel Scene,tt2599716 ZyXHxrg-zTA,2013.0,5,10,2019,Police Story: Lockdown,Cage Match to Freedom Scene,tt2599716 YbM3eHylkqY,2013.0,1,10,2019,Police Story: Lockdown,Hostage Scene,tt2599716 o-HlGWzIqec,2013.0,3,10,2019,Police Story: Lockdown,Fight or Die Scene,tt2599716 yUVhyWMVx-A,2013.0,4,10,2019,Police Story: Lockdown,Down The Barrel Scene,tt2599716 VP8hyYS5WjU,2013.0,2,10,2019,Police Story: Lockdown,Breaking Free Scene,tt2599716 2xbv4AnWS3Q,2013.0,8,10,2019,Police Story: Lockdown,Storming The Fortress Scene,tt2599716 oMH9kIyIl1I,2019.0,8,10,2019,Yesterday,Help! Scene,tt8079248 5EN4MulDX_A,2019.0,3,10,2019,Yesterday,Beatles Medley Scene,tt8079248 5VgRuLQgeSE,2019.0,1,10,2019,Yesterday,Playing Scene,tt8079248 T16_n7praO4,2013.0,7,10,2019,Police Story: Lockdown,Kill Me Scene,tt2599716 Q_UdYBBk9XI,2019.0,4,10,2019,Yesterday,Back in the USSR Scene,tt8079248 XDlC8NyBBro,2019.0,2,10,2019,Yesterday,Let It Be Scene,tt8079248 56v74zFOV58,2019.0,10,10,2019,Yesterday,Giving The Beatles to the World Scene,tt8079248 yyPkV_leKEY,2019.0,7,10,2019,Yesterday,Wake Up and Love Me Scene,tt8079248 PIHPbvviS2w,2019.0,5,10,2019,Yesterday,Ed Sheeran vs. The Beatles Scene,tt8079248 0ONU_H0EjIg,2019.0,9,10,2019,Yesterday,John Lennon Scene,tt8079248 SrvRkUwIFfk,2019.0,6,10,2019,Yesterday,Not a One-Night Stand Scene,tt8079248 5Svd15hqUfs,2018.0,8,10,2019,Robin Hood,Medieval Riots Scene,tt4532826 FGWPKiI0YJQ,2018.0,2,10,2019,Ocean's 8,The Plan Scene,tt5164214 1VEMit7JERo,2018.0,8,10,2019,Ocean's 8,Welcome to the Team Scene,tt5164214 _AElcgYtxpA,2018.0,5,10,2019,Robin Hood,Horse-Carriage Death Race Scene,tt4532826 0tnKF_qcXTo,2018.0,4,10,2019,Robin Hood,Treasure Heist Scene,tt4532826 V9GnOAfI4w4,2018.0,2,10,2019,Robin Hood,He's My Son! Scene,tt4532826 tMcUZSJ3xDY,2018.0,1,10,2019,Robin Hood,Robin vs. Little John Scene,tt4532826 O9Q_5-rAw_k,2018.0,3,10,2019,Robin Hood,Training a Legend Scene,tt4532826 6hUiaXXj_Hg,2018.0,6,10,2019,Robin Hood,Rooftop Horse Chase Scene,tt4532826 6LyYxpkxILE,2018.0,10,10,2019,Robin Hood,Two-Faced Sheriff of Nottingham Scene,tt4532826 Oe_cBDzqBUI,2018.0,9,10,2019,Robin Hood,Killing the Sheriff Scene,tt4532826 wTf4njh9TnE,2018.0,7,10,2019,Robin Hood,This Is Our Crusade Scene,tt4532826 QsP5Y1-eUIM,2018.0,10,10,2019,Ocean's 8,All the Necklaces Scene,tt5164214 HiPRBsFF-zU,2018.0,7,10,2019,Ocean's 8,Insurance Fraud Investigator Scene,tt5164214 vBtG9eqgf2Q,2018.0,3,10,2019,Ocean's 8,Copying the Necklace Scene,tt5164214 CgwNoOUtr7s,2018.0,4,10,2019,Ocean's 8,Dirty Rotten Scoundrel Scene,tt5164214 7Wyjo_hrIbM,2018.0,5,10,2019,Ocean's 8,Stealing the Necklace Scene,tt5164214 iaTG4JflfqM,2018.0,9,10,2019,Ocean's 8,Framing the Ex Scene,tt5164214 1CTjGKT-hDY,2018.0,6,10,2019,Ocean's 8,Stripping the Diamonds Scene,tt5164214 OkBaZLq7gnU,2018.0,1,10,2019,Ocean's 8,Con Artistry Scene,tt5164214 ZhGme4W06Kk,1964.0,7,11,2019,Topkapi,Wrestling Match Scene,tt0058672 Ua4pj7Sxy-8,1964.0,5,11,2019,Topkapi,A Clever Deduction Scene,tt0058672 5LvcBgWzjwc,1964.0,10,11,2019,Topkapi,Stealing the Dagger Scene,tt0058672 WbFri7eX_YA,1964.0,4,11,2019,Topkapi,A Nymphomaniac Scene,tt0058672 Izp0m24gYRU,1964.0,11,11,2019,Topkapi,A Little Bird Told Me Scene,tt0058672 5hriUO428pw,1964.0,9,11,2019,Topkapi,The Heist Begins Scene,tt0058672 vITX2N0hpYE,1964.0,6,11,2019,Topkapi,Sofa Bet Scene,tt0058672 JfsgeCwAYEM,1964.0,1,11,2019,Topkapi,It Can Be Done! Scene,tt0058672 9ZBPZ4b5LRw,1964.0,8,11,2019,Topkapi,Crossing the Roof Scene,tt0058672 55uK9Lg3TaY,1964.0,2,11,2019,Topkapi,The Floor-Mounted Alarm Scene,tt0058672 hIokX-nhQd8,1964.0,3,11,2019,Topkapi,Interrogation Scene,tt0058672 6nmLldKD8fw,2013.0,4,10,2019,Ip Man: The Final Fight,Fighting Master Ng Scene,tt2495118 nEAgLZRGV98,2013.0,5,10,2019,Ip Man: The Final Fight,The Lion Dance Scene,tt2495118 JKPRgXq8K1E,2013.0,7,10,2019,Ip Man: The Final Fight,High on Kung Fu Scene,tt2495118 AvNNkDEqjdQ,2013.0,1,10,2019,Ip Man: The Final Fight,Unassailable Master Scene,tt2495118 Fo16J2G4bvU,2013.0,9,10,2019,Ip Man: The Final Fight,Rumble in the Rain Scene,tt2495118 eUGtEOY5ZLE,2013.0,10,10,2019,Ip Man: The Final Fight,Bruce Lee & the Future of Wing Chun Scene,tt2495118 Y7DGxkezqSc,2013.0,8,10,2019,Ip Man: The Final Fight,Meat Hooks vs. Martial Arts Scene,tt2495118 xjYdRu4FiyA,2013.0,6,10,2019,Ip Man: The Final Fight,Unhappy New Year Scene,tt2495118 vcURIKX8710,2013.0,3,10,2019,Ip Man: The Final Fight,Gang Fight Scene,tt2495118 kurx75GAz74,2013.0,2,10,2019,Ip Man: The Final Fight,Shimmering Singer Scene,tt2495118 eLKbRagkB7M,2018.0,7,10,2019,What Men Want,How Was That? Scene,tt7634968 hF_9GQFISow,2019.0,3,10,2019,What Men Want,How Men Think Scene,tt7634968 taOda6ZwWyw,2018.0,9,10,2019,What Men Want,Cheating Husbands Scene,tt7634968 fhK8qpO-iD4,2018.0,10,10,2019,What Men Want,Kiss My Black Ass! Scene,tt7634968 08cPFt1GzBs,2018.0,4,10,2019,What Men Want,The Sexy Neighbor Scene,tt7634968 Dys_AAhlGqU,2018.0,5,10,2019,What Men Want,Jamal's Balls Scene,tt7634968 pWfB7jrCgxk,2018.0,8,10,2019,What Men Want,Sexist & Racist Boss Scene,tt7634968 aNbtnYXp9-k,2019.0,1,10,2019,What Men Want,You Have a Condom on Your Back Scene,tt7634968 KDXK5R3f01I,2019.0,2,10,2019,What Men Want,Men's Thoughts Scene,tt7634968 75k4CoAyT4I,2018.0,6,10,2019,What Men Want,Shooting for Love Scene,tt7634968 R76ux4iCRzI,2018.0,10,10,2019,Kin,Gateway to Another World Scene,tt6017942 QKbA0PxeoaM,2018.0,5,10,2019,Kin,Slippery When Wet Scene,tt6017942 zwLOflhZOBg,2018.0,7,10,2019,Kin,Holographic Crime Scene,tt6017942 4xtCQLbXDqY,2018.0,8,10,2019,Kin,Get Away From My Brother! Scene,tt6017942 zjXn9UGZt4o,2018.0,3,10,2019,Kin,Strip Club Fight Scene,tt6017942 cXlRo6pJ9ig,2018.0,2,10,2019,Kin,Gangland Shooting Scene,tt6017942 7rYqBdJdnqo,2018.0,6,10,2019,Kin,Robbing Gangsters Scene,tt6017942 KTIw9F3TY88,2018.0,9,10,2019,Kin,You're One of Us Scene,tt6017942 gp6FX1H99NA,2018.0,1,10,2019,Kin,The Laser Gun Scene,tt6017942 A5CndWt2xrY,2018.0,4,10,2019,Kin,Field Testing Scene,tt6017942 _YMLnL33X78,1954.0,5,12,2019,The Barefoot Contessa,Maria Had It Scene,tt0046754 PrBVgtAeNhE,1954.0,8,12,2019,The Barefoot Contessa,You're a Liar Scene,tt0046754 6oxCZ2CyGII,1954.0,10,12,2019,The Barefoot Contessa,You Are Not a Woman Scene,tt0046754 x_6ZpxB4xIc,1954.0,2,12,2019,The Barefoot Contessa,When Harry Met Maria Scene,tt0046754 8Q2WgdOSfms,1954.0,12,12,2019,The Barefoot Contessa,Posing for a Statue Scene,tt0046754 i07yEczcujQ,1954.0,9,12,2019,The Barefoot Contessa,Maria On Display Scene,tt0046754 q9sjo2J6hIk,1954.0,11,12,2019,The Barefoot Contessa,Maria Dances Scene,tt0046754 d35M7d-E_PY,1954.0,3,12,2019,The Barefoot Contessa,A Lot of Talent Scene,tt0046754 EoikWLSsmRk,1954.0,7,12,2019,The Barefoot Contessa,I'm Drunk Scene,tt0046754 zUCWPJk-XHk,1954.0,6,12,2019,The Barefoot Contessa,What a Business Scene,tt0046754 cJyhEAxnQ-U,1954.0,4,12,2019,The Barefoot Contessa,I Hate Shoes Scene,tt0046754 -VnQ_KpOBm4,1954.0,1,12,2019,The Barefoot Contessa,Funeral for an Actress Scene,tt0046754 b2P-oU216V4,2010.0,6,10,2019,Megamind,Titan's Rage Scene,tt1001526 MuG157PWMWI,2010.0,5,10,2019,Megamind,Stalker Superhero Scene,tt1001526 UayJYYeMANA,2010.0,9,10,2019,Megamind,Metro Man Returns Scene,tt1001526 svwcgrDZVPw,2010.0,3,10,2019,Megamind,Copper Drains My Powers! Scene,tt1001526 -wwDqsmUkxQ,2016.0,9,10,2019,Ip Man 3,Fight For Wing Chun Scene,tt2888046 nl5l8Vn3Syc,2016.0,3,10,2019,Ip Man 3,Two Against Many Scene,tt2888046 a_hsjTExzbw,2010.0,8,10,2019,Megamind,Making An Entrance Scene,tt1001526 Q7r3HIkBJcg,2010.0,2,10,2019,Megamind,Dastardly Death Devices Scene,tt1001526 GNAJWwqr8cM,2010.0,7,10,2019,Megamind,Metro Man Lives! Scene,tt1001526 dwufX9GKI_4,2010.0,4,10,2019,Megamind,Training Titan Scene,tt1001526 zeGRvFbWbz8,2010.0,1,10,2019,Megamind,Baby Scene,tt1001526 FIGj7z-7olo,2016.0,5,10,2019,Ip Man 3,Saving His Son Scene,tt2888046 Abb6BQgz0N4,2016.0,10,10,2019,Ip Man 3,One Inch Punch Scene,tt2888046 2Q7wnttjQgw,2010.0,10,10,2019,Megamind,Megamind vs. Titan Scene,tt1001526 VMGKsJi34Ac,2016.0,4,10,2019,Ip Man 3,Shipyard Scuffle Scene,tt2888046 O6Ap5AtXFbg,2016.0,8,10,2019,Ip Man 3,Fight For Fame Scene,tt2888046 PhQsxcbo6gk,2016.0,7,10,2019,Ip Man 3,Three Minute Fight Scene,tt2888046 W-KxBQyVfc0,2016.0,1,10,2019,Ip Man 3,Meeting Bruce Lee Scene,tt2888046 b_fKzher8QQ,2016.0,6,10,2019,Ip Man 3,Elevator Fight Scene,tt2888046 3WksbH_r10U,2016.0,2,10,2019,Ip Man 3,Saving the Principal Scene,tt2888046 1SPMnqTUu1A,2013.0,10,10,2019,Turbo,Race to the Finish Scene,tt1860353 VuUzda9kvJA,2013.0,3,10,2019,Turbo,The Shell Crusher Scene,tt1860353 spy6L78o3-A,2013.0,8,10,2019,Turbo,Pit Stop Pep Talk Scene,tt1860353 _Hxk9-WNdGQ,2013.0,2,10,2019,Turbo,Fast & Furious Race Scene,tt1860353 gH1kstAfb5g,2013.0,7,10,2019,Turbo,Your Driver Is A Snail? Scene,tt1860353 XUcN9bf_jP0,2013.0,5,10,2019,Turbo,The Great Snail Race Scene,tt1860353 pvACjy-tYFE,2013.0,1,10,2019,Turbo,vs. Evil Mower Scene,tt1860353 JkrovwTh2rw,2013.0,4,10,2019,Turbo,Snail vs. Crows Scene,tt1860353 lJf8EW9800o,2013.0,9,10,2019,Turbo,Broken Shell Scene,tt1860353 j0c_RQDfjSM,2013.0,6,10,2019,Turbo,High Wire Race Scene,tt1860353 MTSpAVqgSso,2011.0,9,10,2019,Ip Man 2,Boxer vs. Martial Artist Scene,tt1386932 rTy_mgJIIrk,2011.0,10,10,2019,Ip Man 2,Wing Chun Wins Scene,tt1386932 -ZJZF6PuwxE,2011.0,1,10,2019,Ip Man 2,Ip Man's First Student Scene,tt1386932 8TTWKlJdWVE,2011.0,6,10,2019,Ip Man 2,Let's Give Them Something to Scream About Scene,tt1386932 CyGOqLQTww0,2011.0,3,10,2019,Ip Man 2,Fighting Ten Men At Once Scene,tt1386932 9aR0JkmZLk0,2011.0,8,10,2019,Ip Man 2,Hung Over Scene,tt1386932 XkvSrgngUrw,2011.0,5,10,2019,Ip Man 2,Tabletop Duel Scene,tt1386932 8kcd603M8vA,2011.0,2,10,2019,Ip Man 2,Meat Cleaver Fight Scene,tt1386932 SajgVNIRdn8,2011.0,4,10,2019,Ip Man 2,Thank You for Letting Me Win Scene,tt1386932 rA8NAlaMgPo,2011.0,7,10,2019,Ip Man 2,Hung vs. Twister Scene,tt1386932 TXlioVAN41o,1989.0,2,10,2019,Friday the 13th: Jason Takes Manhattan,Seductive Anatomy Lesson Scene,tt0097388 hktlkG0QuKY,1989.0,9,10,2019,Friday the 13th: Jason Takes Manhattan,Jason vs. New York Scene,tt0097388 b8t5kX7k0vQ,1989.0,3,10,2019,Friday the 13th: Jason Takes Manhattan,Killer Dance Moves Scene,tt0097388 CflcJ-HSA_Y,1989.0,8,10,2019,Friday the 13th: Jason Takes Manhattan,Subway Chase Scene,tt0097388 VhYxVXimdIw,1989.0,5,10,2019,Friday the 13th: Jason Takes Manhattan,Jason Says No to Drugs Scene,tt0097388 U74NUVSKuP0,1989.0,4,10,2019,Friday the 13th: Jason Takes Manhattan,Murder Caught on Tape Scene,tt0097388 -vT2ztIXioo,1989.0,1,10,2019,Friday the 13th: Jason Takes Manhattan,Two for One Slaying Scene,tt0097388 o6tz9pga4H4,1989.0,6,10,2019,Friday the 13th: Jason Takes Manhattan,Knockout! Scene,tt0097388 jtSnHOkSJxM,1989.0,10,10,2019,Friday the 13th: Jason Takes Manhattan,Jason vs. Toxic Waste Scene,tt0097388 Gdp4SEfQzy8,1989.0,7,10,2019,Friday the 13th: Jason Takes Manhattan,Drowned in Toxic Waste Scene,tt0097388 AVxDyv1h9Pw,2010.0,9,10,2019,Ip Man,Cotton Factory Brawl Scene,tt1220719 z1hLLDMkdlM,2010.0,3,10,2019,Ip Man,vs. Master Shin Scene,tt1220719 Kv9ygN2B8WU,2010.0,6,10,2019,Ip Man,vs. 10 Black Belts Scene,tt1220719 aXYTDZr_rmU,2010.0,1,10,2019,Ip Man,vs. Master Lin Scene,tt1220719 Z2SdWJJWe4I,2010.0,2,10,2019,Ip Man,Challenging the Masters Scene,tt1220719 ciue6Puy53s,2010.0,4,10,2019,Ip Man,Dojo Massacre Scene,tt1220719 CqsCkhbCUr4,2010.0,10,10,2019,Ip Man,vs. General Miura Scene,tt1220719 gCRokIMgn1A,2010.0,7,10,2019,Ip Man,Training with Scene,tt1220719 wBHZhBnXRew,2010.0,5,10,2019,Ip Man,Master Lin is Defeated Scene,tt1220719 kQosO29X9Bo,2010.0,8,10,2019,Ip Man,The Japanese Invade Scene,tt1220719 zfyDw7VR3Hg,2019.0,5,10,2019,The Dead Don't Die,Dead Hipsters from Cleveland Scene,tt8695030 PSW5cd8WVwM,2019.0,4,10,2019,The Dead Don't Die,Kill the Head Scene,tt8695030 khX9fjqlf40,2019.0,7,10,2019,The Dead Don't Die,I've Read the Script Scene,tt8695030 IuiKCwrTYO0,2019.0,6,10,2019,The Dead Don't Die,Fashion Zombie Scene,tt8695030 4_SBdgdCwDA,2019.0,2,10,2019,The Dead Don't Die,Chardonnay Zombie Scene,tt8695030 bICHpdNbsmU,2019.0,3,10,2019,The Dead Don't Die,Samurai Mortician Scene,tt8695030 AX-qpuOuDVg,2019.0,8,10,2019,The Dead Don't Die,Was That in the Script? Scene,tt8695030 btVoaFC1Aqk,2019.0,9,10,2019,The Dead Don't Die,Warriors Among the Dead Scene,tt8695030 PNwyZMNu1gA,2019.0,1,10,2019,The Dead Don't Die,Coffee Zombies Scene,tt8695030 iK03b228mmo,2019.0,10,10,2019,The Dead Don't Die,The End of the World Scene,tt8695030 sw1tJoYrs7M,1953.0,9,10,2019,It Came From Outer Space,All We Needed Was Time Scene,tt0045920 sAvGdule3fA,1953.0,4,10,2019,It Came From Outer Space,Don't Be Afraid Scene,tt0045920 i4NRgUeziqA,1953.0,2,10,2019,It Came From Outer Space,Alien Avalanche Scene,tt0045920 8fHMMPXUE5I,1953.0,1,10,2019,It Came From Outer Space,Crash Landing Scene,tt0045920 aGMiaQISzq0,1953.0,10,10,2019,It Came From Outer Space,They'll Be Back Scene,tt0045920 5ZCaXimXaxo,1953.0,8,10,2019,It Came From Outer Space,Resorting to Violence Scene,tt0045920 eeWPnGsY-Xc,1953.0,6,10,2019,It Came From Outer Space,First Contact Scene,tt0045920 ge9ahoqNSLE,1953.0,7,10,2019,It Came From Outer Space,Anti-Alien Posse Scene,tt0045920 VohdBtnMchg,1953.0,5,10,2019,It Came From Outer Space,Incognito Abduction Scene,tt0045920 5lekLtatLl0,1953.0,3,10,2019,It Came From Outer Space,Stalked by Cosmic Evil Scene,tt0045920 Xq5eXYCKUF8,2019.0,9,10,2019,Ma,Just Like Your Daddy Scene,tt7958736 X36kqKTClAg,2019.0,4,10,2019,Ma,Is Your Mom? Scene,tt7958736 4F5AGPMRwgw,2019.0,1,10,2019,Ma,nipulative Scene,tt7958736 8a2aEHT7v54,2019.0,7,10,2019,Ma,Dog Blood Transfusion Scene,tt7958736 aL4dQo8iBLo,2019.0,10,10,2019,Ma,Burning the House Down Scene,tt7958736 tBOZNOYMHEg,2019.0,6,10,2019,Ma,Running Over the Past Scene,tt7958736 O0PDEEFMUB4,2019.0,2,10,2019,Ma,You Wanna See Something Cool? Scene,tt7958736 sMLop6XZBEw,2019.0,3,10,2019,Ma,Drugged Drinks Scene,tt7958736 nqzkyfeS2Oo,2019.0,8,10,2019,Ma,'s Vengeance Scene,tt7958736 Rf02bF9xoaY,2019.0,5,10,2019,Greta,Kidnapping Nightmare Scene,tt2639336 wTfbHs4HlPo,2019.0,5,10,2019,Ma,This Is Your One Warning Scene,tt7958736 2s7POrgTTzg,2019.0,4,10,2019,Greta,She Had to Die! Scene,tt2639336 0DPfRUFGaLE,2019.0,7,10,2019,Greta,Bloody Lessons Scene,tt2639336 DawumJOyTOU,2019.0,2,10,2019,Greta,Stalking and Spitting Scene,tt2639336 Nohgrc3m3z4,2019.0,8,10,2019,Greta,Classic Murder Scene,tt2639336 fV4ApYBVa3w,2019.0,6,10,2019,Greta,Bed of Lies Scene,tt2639336 c5IXZhctoV0,2019.0,9,10,2019,Greta,The Next Victim Scene,tt2639336 pwidWMvvsVc,2019.0,10,10,2019,Greta,In the Killer's Clutches Scene,tt2639336 qI14dmYhHGE,2019.0,1,10,2019,Greta,Bait Purses Scene,tt2639336 INGcULi_c2U,2019.0,3,10,2019,Greta,The Texting Stalker Scene,tt2639336 2WDIu8XbVD8,1972.0,1,9,2019,Man of La Mancha,Cervantes Transforms Scene,tt0068909 ALWV_EA6x8I,1972.0,2,9,2019,Man of La Mancha,Scene,tt0068909 v4U2mAwO6-4,1972.0,8,9,2019,Man of La Mancha,Follow the Quest Scene,tt0068909 bD8bl3omDIU,1972.0,9,9,2019,Man of La Mancha,To Dream the Impossible Dream Scene,tt0068909 14t7g8Yq8vE,1972.0,5,9,2019,Man of La Mancha,Little Bird Scene,tt0068909 oo7VlD66ISM,1972.0,6,9,2019,Man of La Mancha,The Impossible Dream Scene,tt0068909 QPDuZ_Wq7ZA,1972.0,4,9,2019,Man of La Mancha,Vision of Dulcinea Scene,tt0068909 Pl8E_9CTS1Y,1972.0,7,9,2019,Man of La Mancha,The Knight of the Mirrors Scene,tt0068909 0iUKZskQEso,1972.0,3,9,2019,Man of La Mancha,It's All the Same Scene,tt0068909 d0ZOz1i5-PE,2019.0,4,8,2019,Buzzed,Mr. Mushroom Scene,tt10720210 g3kYdbqIwBE,2019.0,2,8,2019,Buzzed,Flying Frog Scene,tt10720210 MVo83HAnysQ,2019.0,5,8,2019,Buzzed,Ninja Bee Scene,tt10720210 LZ7Thv4ztjg,2019.0,7,8,2019,Buzzed,Fun and Games ...and Punishment Scene,tt10720210 UhL24j9G3tc,2019.0,8,8,2019,Buzzed,Hide-'n-Cheat Scene,tt10720210 AxGMySJ6ySc,2019.0,3,8,2019,Buzzed,Dance Off Scene,tt10720210 BCSe_CsI75w,2019.0,1,8,2019,Buzzed,Leap Frog Scene,tt10720210 msWWI02CG-o,2019.0,6,8,2019,Buzzed,Master of the Nunchucks Scene,tt10720210 h7iSkEafJ0o,2017.0,7,10,2019,Paper Year,Drunken Dinner Meltdown Scene,tt6212136 rIGsI26-Bg4,2017.0,5,10,2019,Paper Year,Christmas Dance Scene,tt6212136 fnV93ymcOME,2017.0,1,10,2019,Paper Year,Newlyweds Scene,tt6212136 dUMW1YRsWcY,2017.0,10,10,2019,Paper Year,The Divorce Party Scene,tt6212136 l3H-hjiT6wg,2017.0,6,10,2019,Paper Year,I Don't Want a Baby Scene,tt6212136 DqOU6NcRVe4,2017.0,8,10,2019,Paper Year,Roadside Cheating Scene,tt6212136 oRX8ramIWwI,2017.0,3,10,2019,Paper Year,You're Adorable Scene,tt6212136 JcF3Ay4sjss,2017.0,4,10,2019,Paper Year,Stalker Fantasy Scene,tt6212136 L38j8UMd4oM,2017.0,9,10,2019,Paper Year,It Only Gets Harder Scene,tt6212136 IXyMkCDTmfA,2017.0,2,10,2019,Paper Year,What a Pack of Dicks Scene,tt6212136 YPXkzktz5oA,2018.0,1,10,2019,Uncle Drew,Shot-Blocked Scene,tt7334528 06qgu4XoNL4,2018.0,7,10,2019,Uncle Drew,Shaq Fu Scene,tt7334528 TvFCzrDQrD8,2018.0,9,10,2019,Uncle Drew,The Game Never Loved Me Scene,tt7334528 etixMqUt8Ak,2018.0,2,10,2019,Uncle Drew,Mookie Steals the Team Scene,tt7334528 FC9AZFwoLVg,2018.0,6,10,2019,Uncle Drew,"Heads up, My Man Scene",tt7334528 K_NTydd3MqM,2018.0,5,10,2019,Uncle Drew,Tough Betty Lou Scene,tt7334528 H4hjg6jAhOY,2018.0,5,10,2019,Pondemonium 3,Monster Egg Scene,tt8426112 M5DZzTtbV1g,2018.0,4,10,2019,Pondemonium 3,Hot Air Balloon Fight Scene,tt8426112 7ML-9r4M_qk,2018.0,10,10,2019,Uncle Drew,Dance-Off! Scene,tt7334528 jXReN1Nzlws,2018.0,7,10,2019,Pondemonium 3,Not So Sweet Bouncy Ball Scene,tt8426112 0zHERbRFxTU,2018.0,1,10,2019,Pondemonium 3,Boat Envy Scene,tt8426112 aRav_8OWESA,2018.0,9,10,2019,Pondemonium 3,Slingshot Hijinks Scene,tt8426112 kg3erAXOz34,2018.0,2,10,2019,Pondemonium 3,Duck-Slapping Scene,tt8426112 6q2aPotJP7w,2018.0,8,10,2019,Uncle Drew,Teen Girls Game Scene,tt7334528 bIpQoVucszI,2018.0,3,10,2019,Uncle Drew,Hold My Nuts Scene,tt7334528 93qTzU2bNh8,2018.0,4,10,2019,Uncle Drew,"Dunk Him, Preacher! Scene",tt7334528 MlUEy_9s0D0,2018.0,8,10,2019,Pondemonium 3,Manic Frog With a Slingshot Scene,tt8426112 Jye1gDePzgY,2018.0,10,10,2019,Pondemonium 3,Sticky Frog Scene,tt8426112 I7pEk2hB5OQ,2018.0,6,10,2019,Pondemonium 3,Dung Ball Competition Scene,tt8426112 wNRvgeiaVXA,2018.0,3,10,2019,Pondemonium 3,Balloon Blunder Scene,tt8426112 uTOoWlYv95w,2019.0,1,10,2019,Hobbs & Shaw,Skyscraper Freefall Scene,tt6806448 CFqO1y01qjs,2019.0,7,10,2019,Hobbs & Shaw,Samoan Warriors Scene,tt6806448 xcTK6uPPiAo,2019.0,3,10,2019,Hobbs & Shaw,Hallway Beatdown Scene,tt6806448 sfgNK5f04iY,2019.0,9,10,2019,Hobbs & Shaw,Bringing Down the Chopper Scene,tt6806448 1afS6fOeldc,2019.0,5,10,2019,Hobbs & Shaw,Demolition Drone Derby Scene,tt6806448 W9Rb6wHuQXU,2019.0,4,10,2019,Hobbs & Shaw,Badass Escape Scene,tt6806448 R8JjTOsPHo4,2019.0,10,10,2019,Hobbs & Shaw,Hobbs and Shaw vs. Brixton Scene,tt6806448 dapP5W153YE,2019.0,8,10,2019,Hobbs & Shaw,Helicopter vs. Trucks Scene,tt6806448 v8CflcvxDJo,2019.0,2,10,2019,Hobbs & Shaw,Cyborg Motorcycle Chase Scene,tt6806448 qabChviGItk,2019.0,6,10,2019,Hobbs & Shaw,Truck Bed Smackdown Scene,tt6806448 I7-GvXsr40k,2018.0,1,10,2019,Pondemonium 2,Pond Monster Scene,tt8426846 40NyqKryTUU,2018.0,8,10,2019,Pondemonium 2,Joe the Gardener Scene,tt8426846 _myZeGUaveU,2018.0,7,10,2019,Pondemonium 2,On a Roll Scene,tt8426846 hv_mYkUEGko,2018.0,5,10,2019,Pondemonium 2,Flying Frog Scene,tt8426846 S0pCBDjC9Wk,2018.0,3,10,2019,Pondemonium 2,A Bone to Pick Scene,tt8426846 J9Sz39odDjw,2018.0,9,10,2019,Pondemonium 2,Cosmo Goes Crazy Scene,tt8426846 7ygAdJYS9m0,2018.0,10,10,2019,Pondemonium 2,Grand Theft Froggo Scene,tt8426846 jUkqho3OUos,1987.0,8,12,2019,Baby Boom,J.C.'s Breakdown Scene,tt0092605 4YPxIpLpLRM,1987.0,7,12,2019,Baby Boom,"Firing Eve, Hiring Helga Scene",tt0092605 rwr1IzFzjqA,1987.0,6,12,2019,Baby Boom,The Nanny Interviews Scene,tt0092605 GEB8rnOevpY,1987.0,11,12,2019,Baby Boom,A Kiss from Dr. Charm Scene,tt0092605 hgLkypdC6wo,1987.0,4,12,2019,Baby Boom,Changing a Diaper Scene,tt0092605 yjrvJkWU_5k,2018.0,2,10,2019,Pondemonium 2,Bungee Jumping Scene,tt8426846 UGfYt2Ufipw,2018.0,4,10,2019,Pondemonium 2,Fart-Powered Victory Scene,tt8426846 Mm9Y9JEmekY,1987.0,1,12,2019,Baby Boom,Inheriting a Baby Scene,tt0092605 _OaOalM_tcY,1987.0,10,12,2019,Baby Boom,Country Baby Scene,tt0092605 tSpOMNC3WtQ,1987.0,5,12,2019,Baby Boom,Rectal Thermometer Scene,tt0092605 nAqJV2olXN0,1987.0,12,12,2019,Baby Boom,Kitchen Kiss Scene,tt0092605 AryZBe8C69U,2018.0,6,10,2019,Pondemonium 2,Stuck in a Can Scene,tt8426846 AAByjopE2GE,1987.0,3,12,2019,Baby Boom,Baby Food Scene,tt0092605 adxwpSdHj90,1987.0,9,12,2019,Baby Boom,You're a What? Scene,tt0092605 rlMANFZdCkk,1987.0,2,12,2019,Baby Boom,Coat Checking the Kid Scene,tt0092605 fyOv0TB4lXU,2017.0,8,9,2019,Pondemonium,Feather Fail Scene,tt7207158 QtVEk0oKtkM,2017.0,7,10,2019,The Shack,Send Your Kids to Hell Scene,tt2872518 J90JKBCDzSs,2017.0,3,10,2019,The Shack,Revisiting the Shack Scene,tt2872518 gHJwn_JEazA,2017.0,4,10,2019,The Shack,Meeting the Trinity Scene,tt2872518 536GqWYOHdI,2017.0,10,10,2019,The Shack,Laying Her to Rest Scene,tt2872518 t_9GTwEOdkY,2017.0,8,10,2019,The Shack,Reconciling With My Father Scene,tt2872518 6Mr9bQJEuN0,2017.0,5,10,2019,The Shack,A Garden of You Scene,tt2872518 ns7B5fzH11c,2017.0,2,10,2019,The Shack,The Murderer's Shack Scene,tt2872518 gjuizikJ2bk,2017.0,9,10,2019,The Shack,Understanding Forgiveness Scene,tt2872518 K2NNznJJadY,2017.0,1,10,2019,The Shack,Boat Flip Scene,tt2872518 VRuV5oMqkDg,2017.0,6,10,2019,The Shack,Drowning in Fear Scene,tt2872518 3cBAmkzKEBU,2017.0,2,9,2019,Pondemonium,Bust a Nut Scene,tt7207158 gJDpyQ1Efto,2017.0,1,9,2019,Pondemonium,Dancing Disaster Scene,tt7207158 NKewr9uDDck,2017.0,5,9,2019,Pondemonium,The Whistling Frog Scene,tt7207158 StUN1G5filU,2017.0,9,9,2019,Pondemonium,The Poop Pill Scene,tt7207158 iKi2wYZNAnE,2017.0,3,9,2019,Pondemonium,This Bites Scene,tt7207158 kFuzbEylajA,2017.0,6,9,2019,Pondemonium,Stiff Neck Scene,tt7207158 tHHqfGeeXps,2017.0,7,9,2019,Pondemonium,Do You Even Lift? Scene,tt7207158 1JJjo2GcRrg,2017.0,4,9,2019,Pondemonium,Whistle Prank Scene,tt7207158 TRCSLhYz9CA,1988.0,8,10,2019,Friday the 13th VII: The New Blood,The Face of Jason Voorhees Scene,tt0095179 1rKzD4yNMoc,1988.0,7,10,2019,Friday the 13th VII: The New Blood,Jason vs. Psychic Scene,tt0095179 D4sj2Yq5bnU,1988.0,3,10,2019,Friday the 13th VII: The New Blood,Nowhere to Hide Scene,tt0095179 Ed8T-GzBcIY,1988.0,2,10,2019,Friday the 13th VII: The New Blood,Sleeping Bag Kill Scene,tt0095179 f0ui8NJnqN8,1988.0,4,10,2019,Friday the 13th VII: The New Blood,Party Horn Kill Scene,tt0095179 oY31D4QSB-Y,1988.0,1,10,2019,Friday the 13th VII: The New Blood,Resurrecting Jason Scene,tt0095179 Irq818Ek0Ro,1988.0,10,10,2019,Friday the 13th VII: The New Blood,Undead Dad's Revenge Scene,tt0095179 JivWELi2rFw,1988.0,5,10,2019,Friday the 13th VII: The New Blood,A Heady Surprise Scene,tt0095179 YIhMJMRdGGY,1988.0,6,10,2019,Friday the 13th VII: The New Blood,Buzzsaw Bloodshed Scene,tt0095179 VhzodI8yBUE,1988.0,9,10,2019,Friday the 13th VII: The New Blood,Psychic Showdown Scene,tt0095179 S71iST-01VM,2013.0,7,10,2019,Young Detective Dee,The Wolf Flower Warriors Scene,tt2992146 aQ2aje8PZz0,2013.0,1,10,2019,Young Detective Dee,Sea Monster Attack Scene,tt2992146 wBq7RLGDqKE,2013.0,2,10,2019,Young Detective Dee,Martial Arts & Monsters Scene,tt2992146 1TY9TWCU1z8,2013.0,10,10,2019,Young Detective Dee,The Sea God Scene,tt2992146 u4NTe-ZIrGs,2013.0,4,10,2019,Young Detective Dee,Zhenjin vs. Wang Pu Scene,tt2992146 skrnn_M3e9A,2013.0,5,10,2019,Young Detective Dee,Drinking Pee Soup Scene,tt2992146 OVSaW3-ehsQ,2013.0,6,10,2019,Young Detective Dee,A Monstrous Traitor Scene,tt2992146 VK2Bz9yq2As,2013.0,9,10,2019,Young Detective Dee,Man-Eating Manta Ray Scene,tt2992146 pQwl5G0ZHdY,2013.0,3,10,2019,Young Detective Dee,Water Demon Ninjas Scene,tt2992146 IagCGWtNyTQ,2013.0,8,10,2019,Young Detective Dee,Cliffside Killers Scene,tt2992146 eFF1grhBvsE,2018.0,3,10,2019,Overboard,I'm Married?! Scene,tt1563742 JqYtHZw-M8c,2018.0,10,10,2019,Overboard,Married for Real Scene,tt1563742 K3OlytfxzHU,2017.0,1,10,2019,How to Be a Latin Lover,Am I Making You Wet? Scene,tt4795124 zvn05TBxdUo,2018.0,5,10,2019,Overboard,It's Our Anniversary! (Kinda) Scene,tt1563742 GpLeHrROqRE,2018.0,4,10,2019,Overboard,Hard Labor Scene,tt1563742 t45uy-QuRDU,2018.0,9,10,2019,Overboard,Reunited at Sea Scene,tt1563742 AD26OcrFQOY,2018.0,8,10,2019,Overboard,I Don't Belong With You Scene,tt1563742 vyb2Imfghkg,2017.0,10,10,2019,How to Be a Latin Lover,A Lover and a Pilot Scene,tt4795124 MHPp7bN1kXI,2017.0,2,10,2019,How to Be a Latin Lover,How to Sexy Walk Scene,tt4795124 QbJIRG4T680,2018.0,6,10,2019,Overboard,Every Time Is Like the First Time Scene,tt1563742 p5BfdwK92UI,2017.0,8,10,2019,How to Be a Latin Lover,Disarmed by Love Scene,tt4795124 QqFuGUbvgnQ,2018.0,2,10,2019,Overboard,The Amnesiac Castaway Scene,tt1563742 GNSkaIuTNao,2017.0,7,10,2019,How to Be a Latin Lover,Flirting with Disaster Scene,tt4795124 aD4ZPXHAVCA,2017.0,5,10,2019,How to Be a Latin Lover,The Sad One Salsa Scene,tt4795124 XkNQZg7yTvw,2018.0,1,10,2019,Overboard,Meet-Hate Scene,tt1563742 fRF7InV7TfI,2018.0,7,10,2019,Overboard,Will You Marry Me Again? Scene,tt1563742 aX9m-xzauMw,2017.0,4,10,2019,How to Be a Latin Lover,All Four Hands Scene,tt4795124 I9NGZteE31I,2017.0,9,10,2019,How to Be a Latin Lover,You're Under Arrest Scene,tt4795124 67dyb52zKRs,2017.0,3,10,2019,How to Be a Latin Lover,Sign-Flipping Fail Scene,tt4795124 32pZcw3acD0,2017.0,6,10,2019,How to Be a Latin Lover,The Spa Treatment Scene,tt4795124 hw3lBV-89M0,2018.0,10,10,2019,The Spy Who Dumped Me,Glam Spies Scene,tt6663582 wB2w4t9dr0Y,2018.0,1,10,2019,The Spy Who Dumped Me,The Confused Assassin Scene,tt6663582 FeLR7tVzVeA,2018.0,1,10,2019,I Can I Will I Did,Bullied and Hospitalized Scene,tt5186608 kAKY4ZkKIPs,2018.0,6,10,2019,I Can I Will I Did,What Are You Saying? Scene,tt5186608 yqlAjK0PVsU,2018.0,9,10,2019,The Spy Who Dumped Me,Death by Trapeze Scene,tt6663582 gap2gWQy77A,2018.0,8,10,2019,The Spy Who Dumped Me,Circus Brawl Scene,tt6663582 CtcQNdbPsSQ,2018.0,6,10,2019,The Spy Who Dumped Me,"Edward Snowden, My Ex Scene",tt6663582 XC0h9nx3Pw4,2018.0,2,10,2019,The Spy Who Dumped Me,Swallow This! Scene,tt6663582 AHLo7Vs6drM,2018.0,5,10,2019,The Spy Who Dumped Me,I Shoved It up There Scene,tt6663582 nqEL7fP4Rvs,2018.0,4,10,2019,The Spy Who Dumped Me,The Gymnast Assassin Scene,tt6663582 r2fHzai5ih4,2018.0,3,10,2019,The Spy Who Dumped Me,TMI Scene,tt6663582 vo0cUbT4Lh4,2018.0,7,10,2019,The Spy Who Dumped Me,Thumbs Up Scene,tt6663582 fR16yYVpcPw,2018.0,10,10,2019,I Can I Will I Did,Mastering Taekwondo Scene,tt5186608 pRwRO-DTniM,2018.0,3,10,2019,I Can I Will I Did,Ordered to Walk Scene,tt5186608 AXZhl8klPfM,2018.0,7,10,2019,I Can I Will I Did,Beating the Bully Scene,tt5186608 kQnmD2gLRVw,2018.0,4,10,2019,I Can I Will I Did,You're Leaving Me Behind! Scene,tt5186608 6A7uz7Orp_c,2018.0,9,10,2019,I Can I Will I Did,It's Ok to Not Be Ok Scene,tt5186608 M2UIT2nHDaU,2018.0,5,10,2019,I Can I Will I Did,PTSD Breakdown Scene,tt5186608 NQbCRZG4-jo,2018.0,8,10,2019,I Can I Will I Did,Breaking and Entering Scene,tt5186608 4EEMDr8l_gY,2018.0,2,10,2019,I Can I Will I Did,You Want a Sob Story? Scene,tt5186608 V0sQmOr826A,1986.0,1,10,2019,Friday the 13th VI: Jason Lives,Jason Reborn Scene,tt0091080 kT_dXxp7eAo,1986.0,5,10,2019,Friday the 13th VI: Jason Lives,RV Double-Kill Scene,tt0091080 lFyh5QCd6kw,1986.0,7,10,2019,Friday the 13th VI: Jason Lives,Bulletproof Badass Scene,tt0091080 R-wQWw1geBM,1986.0,8,10,2019,Friday the 13th VI: Jason Lives,Bent Backwards Scene,tt0091080 r1N-Xby5AnA,1986.0,3,10,2019,Friday the 13th VI: Jason Lives,Paintball Massacre Scene,tt0091080 S1NFRvZE3FA,1986.0,6,10,2019,Friday the 13th VI: Jason Lives,"There's a Problem, Officer Scene",tt0091080 L91dx9ovcz8,1986.0,2,10,2019,Friday the 13th VI: Jason Lives,Road Rage Scene,tt0091080 crKAy2dGX_8,1986.0,10,10,2019,Friday the 13th VI: Jason Lives,Death by Boat Motor Scene,tt0091080 5QMsr3UxzPk,1986.0,9,10,2019,Friday the 13th VI: Jason Lives,Burning Boat Battle Scene,tt0091080 zbAsqngq2qY,1986.0,4,10,2019,Friday the 13th VI: Jason Lives,You'll Be the Death of Me Scene,tt0091080 I-6xj25pOP4,2019.0,5,5,2019,Penguin League,Space Penguins Save the Day Scene,tt9251598 NdaWQm_UAF0,2019.0,3,5,2019,Penguin League,Space Guardians Scene,tt9251598 -G7OPYUlnT0,2019.0,2,5,2019,Penguin League,Anti-Cheese Mission Scene,tt9251598 geGO_emEsqs,2019.0,1,5,2019,Penguin League,Cheese! Scene,tt9251598 YqNktpnzIf8,2019.0,4,5,2019,Penguin League,The Cheese Culprit Scene,tt9251598 Z_WhAyucr_E,2004.0,11,12,2019,Saved!,The Fall of Hilary Faye Scene,tt0332375 VlMy5-BAjzo,2004.0,9,12,2019,Saved!,Framed Scene,tt0332375 1UbxL1MVZ7o,2004.0,7,12,2019,Saved!,Ladies' Room Heart-to-Heart Scene,tt0332375 o6MDdOWCCT8,2004.0,2,12,2019,Saved!,Drunk in the Cafeteria Scene,tt0332375 ij0JLKDJOrc,2004.0,6,12,2019,Saved!,Exorcism By Posse Scene,tt0332375 bYt5SAF0M3I,2004.0,4,12,2019,Saved!,I'm Gonna Beat This Scene,tt0332375 SaUYfjxV8Ic,2004.0,10,12,2019,Saved!,Prom Surprise Scene,tt0332375 cvPIBkkwvD4,2004.0,1,12,2019,Saved!,I Think I'm Gay Scene,tt0332375 Ded2FG1gA0c,2004.0,12,12,2019,Saved!,Toppling Jesus Scene,tt0332375 q2YwvMc96VY,2004.0,8,12,2019,Saved!,I Like You Scene,tt0332375 DznDZ_VH_2c,2018.0,2,10,2019,The Legend of King Solomon,Demon of Hatred Scene,tt3887158 EpCp0rAGDNo,2004.0,5,12,2019,Saved!,Telling off Hilary Faye Scene,tt0332375 SeiUW113A_c,2018.0,6,10,2019,The Legend of King Solomon,Wedding at Swordpoint Scene,tt3887158 Ent1UQJ4mdU,2004.0,3,12,2019,Saved!,Mary Crashes the Prayer Circle Scene,tt0332375 1Quc4FFOwBM,2018.0,4,10,2019,The Legend of King Solomon,Freeing the Demon Scene,tt3887158 8zqwJl6lq-4,2018.0,10,10,2019,The Legend of King Solomon,Defeating Asmodeus Scene,tt3887158 hwQWBQjvbgM,2018.0,8,10,2019,The Legend of King Solomon,The Stone Worm Scene,tt3887158 SemxtZJHxEQ,2018.0,5,10,2019,The Legend of King Solomon,On Eagle's Wings Scene,tt3887158 uYV3p1yRHyg,2018.0,1,10,2019,The Legend of King Solomon,Riddles & Revenge Scene,tt3887158 HpJfIRs8rfc,2018.0,9,10,2019,The Legend of King Solomon,The Animal War Scene,tt3887158 ZEXNPj-4clI,2018.0,3,10,2019,The Legend of King Solomon,Trapping the Demon Scene,tt3887158 MDv-LBBUkVA,2018.0,7,10,2019,The Legend of King Solomon,The Devil's Army Scene,tt3887158 ESEKkJNt1P8,2018.0,1,10,2019,Hunter Killer,Hunting the Hunter Scene,tt1846589 6ikH1EFDm6A,2018.0,7,10,2019,Instant Family,Naked Selfies Scene,tt7401588 Q-ABzsALkYs,2018.0,3,10,2019,Instant Family,Cool Grandma Scene,tt7401588 _i97zAZclkI,2018.0,5,10,2019,Instant Family,Daddy for the First Time Scene,tt7401588 AAN85u-udis,2018.0,8,10,2019,Instant Family,Pervert Punishment Scene,tt7401588 7-5kYQLJnFw,2018.0,9,10,2019,Instant Family,She's Not Coming Scene,tt7401588 NCjjqtamXzU,2018.0,4,10,2019,Instant Family,Nail Gun Emergency Scene,tt7401588 HceqAAw60vQ,2018.0,10,10,2019,Instant Family,You Were What Was Missing Scene,tt7401588 Jy8mz4gu2oQ,2018.0,2,10,2019,Instant Family,Christmas Dinner Hell Scene,tt7401588 ay1hpFWZQnI,2018.0,1,10,2019,Instant Family,Drug-Using Teenagers Scene,tt7401588 Qc9eycqDJKk,2018.0,6,10,2019,Instant Family,Smashing Therapy Scene,tt7401588 IKo0Eu-Xk_0,2018.0,7,10,2019,Hunter Killer,Escaping Russia Scene,tt1846589 CvnpRyO6pH0,2018.0,8,10,2019,Hunter Killer,The Destroyer Attacks Scene,tt1846589 KGwANfqAjNY,2018.0,2,10,2019,Hunter Killer,Death in the Ice Scene,tt1846589 w_XUAmQdKJI,2018.0,3,10,2019,Hunter Killer,Brace for Impact Scene,tt1846589 DfKYwoHHceM,2018.0,6,10,2019,Hunter Killer,Sniper Support Scene,tt1846589 1eg0tbBF6eo,2018.0,9,10,2019,Hunter Killer,Outsmarting the Unkillable Scene,tt1846589 4XSuEmqtnRw,2018.0,5,10,2019,Hunter Killer,Rescue Ops Scene,tt1846589 RcccijujIjE,2018.0,4,10,2019,Hunter Killer,Russian Minefield Scene,tt1846589 7UQAjKVyjIs,2018.0,10,10,2019,Hunter Killer,Impact! Scene,tt1846589 Txy4-5uYN0M,2017.0,8,10,2019,Operation Dunkirk,Explosive Confrontation Scene,tt6836772 TrWMrEKpT7M,2017.0,4,10,2019,Operation Dunkirk,A Blaze of Glory Scene,tt6836772 pOlGqiWm9yY,2017.0,6,10,2019,Operation Dunkirk,Roasted Schwein Scene,tt6836772 IBsHlPPeaY0,2017.0,1,10,2019,Operation Dunkirk,You Will Tell Me Everything Scene,tt6836772 4mfQVFVg16s,2017.0,7,10,2019,Operation Dunkirk,Big Bald Bastard Scene,tt6836772 rC3OdZQgztY,2017.0,10,10,2019,Operation Dunkirk,Our Boys to the Rescue Scene,tt6836772 4JjOrujlaLg,2017.0,2,10,2019,Operation Dunkirk,A Bullet for Your Troubles Scene,tt6836772 vL21VCK_zLk,2017.0,5,10,2019,Operation Dunkirk,Man vs. Tripwire Scene,tt6836772 14drcivv0CE,2017.0,9,10,2019,Operation Dunkirk,The Bridge is Over Scene,tt6836772 tyXI3CQSQJE,2017.0,3,10,2019,Operation Dunkirk,Bring Me the Bazooka Scene,tt6836772 ibcYEwzgai8,2018.0,2,10,2019,Overlord,Parachuting into Hell Scene,tt4530422 mS4njwcS4dw,2018.0,8,10,2019,Overlord,Flamethrower vs. Zombie Scene,tt4530422 jUYCTHwAQvw,2018.0,7,10,2019,Overlord,Grenade Surprise Scene,tt4530422 0yDzNGZc9DI,2018.0,9,10,2019,Overlord,Nazi Zombie Fight Scene,tt4530422 lFGfoPuKx9o,2018.0,10,10,2019,Overlord,Escaping the Nazi Base Scene,tt4530422 NYBMaVtMaEM,2018.0,1,10,2019,Overlord,D-Day Flight Scene,tt4530422 ngdsRt31sIc,2018.0,5,10,2019,Overlord,Zombie Transformation Scene,tt4530422 IZxYRZdq2P0,2018.0,6,10,2019,Overlord,Wafner Escapes Scene,tt4530422 3i-ooDJMOzo,2018.0,3,10,2019,Overlord,Nazi Zombie Experiments Scene,tt4530422 ZKgJtlJDPcc,2018.0,4,10,2019,Overlord,Resurrecting Private Chase Scene,tt4530422 EZaYMKD6Iqs,1992.0,1,10,2019,Juice,Picking up Vinyl Scene,tt0104573 CoXniP8kldY,1992.0,6,10,2019,Juice,I Don't Give a F***! Scene,tt0104573 8b1jfsKFu2w,1992.0,2,10,2019,Juice,DJ Battle Scene,tt0104573 q51BSsTrN_I,1992.0,9,10,2019,Juice,You Ready to Die? Scene,tt0104573 P3imZIQJez8,1992.0,4,10,2019,Juice,Wrestling for the Gun Scene,tt0104573 PldJ3snU1C0,1992.0,5,10,2019,Juice,Mourning Murderer Scene,tt0104573 lv0CgSfmWxc,1992.0,10,10,2019,Juice,You Got the Now Scene,tt0104573 wuM_9dYtRwo,1992.0,3,10,2019,Juice,Robbery Gone Wrong Scene,tt0104573 s7kCd2kuoME,1992.0,7,10,2019,Juice,Ever See Chinatown? Scene,tt0104573 f8Jf9xoJQwI,1992.0,8,10,2019,Juice,You Ain't Crew No More Scene,tt0104573 _vwllSx_Ew8,1984.0,8,10,2019,Friday the 13th: The Final Chapter,Out the Window Scene,tt0087298 WZ6JK1mPT-A,1984.0,9,10,2019,Friday the 13th: The Final Chapter,Tricking Jason Scene,tt0087298 YTdTD0TbEp4,1984.0,6,10,2019,Friday the 13th: The Final Chapter,Trapped in the Basement Scene,tt0087298 qaQQ3LLyKvo,1984.0,5,10,2019,Friday the 13th: The Final Chapter,Slaying in the Shower Scene,tt0087298 ukNsgDQKqfY,1984.0,7,10,2019,Friday the 13th: The Final Chapter,Fresh Kills Scene,tt0087298 XHuewsIKvP0,1984.0,10,10,2019,Friday the 13th: The Final Chapter,The New Jason Scene,tt0087298 w80bZTK88mc,1984.0,2,10,2019,Friday the 13th: The Final Chapter,Skinny Dippers Die Scene,tt0087298 EelncXXu150,1984.0,4,10,2019,Friday the 13th: The Final Chapter,Where's the Corkscrew? Scene,tt0087298 _0vYFxJJcB4,1984.0,3,10,2019,Friday the 13th: The Final Chapter,Harpooned in the Groin Scene,tt0087298 Ej1lqvtmcMg,1984.0,1,10,2019,Friday the 13th: The Final Chapter,Murder in the Morgue Scene,tt0087298 HbWD-eclNf4,1994.0,5,12,2019,Clifford,I Need Chocolate! Scene,tt0109447 P3Mo5t61kO4,1980.0,3,9,2019,Caddyshack,"How About a Nice, Cool Drink? Scene",tt0080487 I3akC_INsFc,1980.0,1,9,2019,Caddyshack,Be the Ball Scene,tt0080487 S-pmcO6U8eg,1980.0,9,9,2019,Caddyshack,Mind If I Play Through? Scene,tt0080487 Pe5eL8LQdY0,1980.0,7,9,2019,Caddyshack,The Bishop's Final Round Scene,tt0080487 bCYs8v0Xji4,1980.0,6,9,2019,Caddyshack,A Cinderella Story Scene,tt0080487 GFpm2LR0sGQ,1980.0,2,9,2019,Caddyshack,Kill Every Gopher Scene,tt0080487 40CAAtSZsbw,1980.0,5,9,2019,Caddyshack,Skinny-Dipping Seduction Scene,tt0080487 QpmECKEHSQs,1980.0,4,9,2019,Caddyshack,Doodie! Scene,tt0080487 5NlQiQfC4zQ,1980.0,8,9,2019,Caddyshack,Think Like a Gopher Scene,tt0080487 k9utcDoerr0,1994.0,7,12,2019,Clifford,Obsessed with Dinosaur World Scene,tt0109447 bbnkw5RyiCI,1994.0,6,12,2019,Clifford,Tabasco Toast Scene,tt0109447 _HgOQNBkVvY,1994.0,3,12,2019,Clifford,Meets Sarah Scene,tt0109447 _UvKhc0wVU8,1994.0,11,12,2019,Clifford,Larry the Scary Rex Scene,tt0109447 i_9mM4F_JVI,1994.0,10,12,2019,Clifford,Martin's Model Goes Kaboom Scene,tt0109447 Pui9t9vPUTc,1994.0,12,12,2019,Clifford,Hyperdrive Scene,tt0109447 y_LVaQiyLrM,1994.0,2,12,2019,Clifford,Loves Uncle Martin Scene,tt0109447 Rq3xZDyJtMk,1994.0,1,12,2019,Clifford,Dad is Furious Scene,tt0109447 EGt-Nk6a1UQ,1994.0,9,12,2019,Clifford,Going Nutty Nuts Scene,tt0109447 AszdXufdl3E,1994.0,4,12,2019,Clifford,The Bestest Looking Wig Scene,tt0109447 S_lcxLCaxAw,1994.0,8,12,2019,Clifford,The Truth About Mr. Ellis Scene,tt0109447 NZuXsiyF5Bk,2018.0,7,10,2019,Burning,I Burn Things Down Scene,tt7282468 57X3MgtTMfM,2018.0,6,10,2019,Burning,Dancing at Dusk Scene,tt7282468 gAI36zhS84Y,2018.0,10,10,2019,Burning,Vengeance Scene,tt7282468 2NNOFLGL_VE,2018.0,8,10,2019,Burning,You Can't See Things Close To You Scene,tt7282468 hegwdxt_FjA,2018.0,1,10,2019,Burning,Don't You Remember Me? Scene,tt7282468 byUbi9hlirE,2018.0,5,10,2019,Burning,The Dance of Great Hunger Scene,tt7282468 jJeed7K-6fQ,2018.0,4,10,2019,Burning,Fascinating Tears Scene,tt7282468 CA66So14ydI,2018.0,9,10,2019,Burning,Well of Lies Scene,tt7282468 456ZpoRaRWI,2018.0,2,10,2019,Burning,The Big Hunger Scene,tt7282468 d47y-Jm4m_o,2018.0,3,10,2019,Burning,You're Really Ugly Scene,tt7282468 v6nkTlU_iT8,2017.0,1,10,2019,The Villainess,First Person Killing Scene,tt6777338 AJhPYwtbCo0,2017.0,6,10,2019,The Villainess,Killer Bride Scene,tt6777338 s8gCo-QjtGk,2017.0,5,10,2019,The Villainess,Escort Assassination Scene,tt6777338 r8SqKn2AmKc,2017.0,3,10,2019,The Villainess,From Victim to Killer Scene,tt6777338 83BVVnFnQkA,2017.0,8,10,2019,The Villainess,I Killed Your Father Scene,tt6777338 3yqsR2cziD0,2017.0,2,10,2019,The Villainess,Dojo of Death Scene,tt6777338 cRj9pF0YGT8,2017.0,9,10,2019,The Villainess,Bus Brawl Scene,tt6777338 -ecKc5pOEWk,2017.0,4,10,2019,The Villainess,Motorcycle Sword Fight Scene,tt6777338 M_TCpfWTFjo,2017.0,10,10,2019,The Villainess,Revenge Killing Scene,tt6777338 Zxw1Z6pzKvA,2017.0,7,10,2019,The Villainess,Losing Everything Scene,tt6777338 pppK-fl9a2E,2018.0,9,10,2019,A Simple Favor,Violent Confessions Scene,tt7040874 7uSfWo-jr8o,2018.0,2,10,2019,A Simple Favor,Sleeping With My Brother Scene,tt7040874 -ZxtmDbqDRc,2018.0,10,10,2019,A Simple Favor,I Shot My Ex-Husband Scene,tt7040874 xDZfwTsiLrk,2018.0,1,10,2019,A Simple Favor,Emily Is Dead Scene,tt7040874 u6IAct0ow4c,2018.0,6,10,2019,A Simple Favor,Drinks and Death Scene,tt7040874 vxFr0xNspFU,2018.0,7,10,2019,A Simple Favor,Skinny Dipping Slaughter Scene,tt7040874 hZvud4MnaQ0,2018.0,5,10,2019,A Simple Favor,"It's All Good, Baby Scene",tt7040874 frV4tvni8H0,2018.0,8,10,2019,A Simple Favor,Murder and Manipulation Scene,tt7040874 jwjCPSUGPXU,2018.0,4,10,2019,A Simple Favor,Mile High Club Scene,tt7040874 NEDEjJ5FyS4,2018.0,3,10,2019,A Simple Favor,Seducing a Widower Scene,tt7040874 q-kSu3KWfEI,2018.0,10,10,2019,The Song of Sway Lake,You Saved Me Scene,tt6371588 sWgPWKj2G7I,2018.0,5,10,2019,The Song of Sway Lake,Cabin Party Scene,tt6371588 FFU7WJWXrvk,2018.0,7,10,2019,The Song of Sway Lake,Tantric Breathing Scene,tt6371588 Q-D1e1u4ufk,2018.0,1,10,2019,The Song of Sway Lake,Drunken Fools Scene,tt6371588 CKtUpbJ30Dg,2018.0,6,10,2019,The Song of Sway Lake,Love on the Lake Scene,tt6371588 sQV6nuap8WA,2018.0,8,10,2019,The Song of Sway Lake,You Stole From Us! Scene,tt6371588 tbty8Ao7_IE,2018.0,2,10,2019,The Song of Sway Lake,Cleaning Up the Grounds Scene,tt6371588 o2YKoT7jL4M,2018.0,4,10,2019,The Song of Sway Lake,I'm Really Into Creeps Scene,tt6371588 ML4CcaTFsZE,2018.0,9,10,2019,The Song of Sway Lake,Widow's Kiss Scene,tt6371588 Q2GegbPq3Lg,2018.0,3,10,2019,The Song of Sway Lake,Ranking Records Scene,tt6371588 vcdDRblTOmM,2019.0,7,10,2019,Brightburn,Heat Vision Kill Scene,tt7752126 t6UyEPrqaQI,2019.0,10,10,2019,Brightburn,My Baby Boy Scene,tt7752126 Gdpx9aiEtmg,2019.0,8,10,2019,Brightburn,Cops vs. Supervillain Scene,tt7752126 0h0FeEzxCaM,2019.0,3,10,2019,Brightburn,Diner Slaughter Scene,tt7752126 3ge07nbMna0,2019.0,9,10,2019,Brightburn,Nowhere to Hide Scene,tt7752126 CYO8cs7VRMc,2019.0,4,10,2019,Brightburn,Jaw-Dropping Death Scene,tt7752126 vJhO79OGi20,2019.0,2,10,2019,Brightburn,Take the World Scene,tt7752126 6mooNp4aWBo,2019.0,6,10,2019,Brightburn,He's Lying Scene,tt7752126 McmlPCS1kHc,2019.0,5,10,2019,Brightburn,Alien Baby Scene,tt7752126 757qJxO5D6Y,2019.0,1,10,2019,Brightburn,Lawnmower Blade Scene,tt7752126 BgxPmLpvxzc,2006.0,8,10,2019,When a Stranger Calls,Trapped in the Greenhouse Scene,tt0455857 -pKrpqoPu1o,2006.0,6,10,2019,When a Stranger Calls,Death in the Shadows Scene,tt0455857 4EWgdeVQzEk,2006.0,3,10,2019,When a Stranger Calls,Have You Checked the Children? Scene,tt0455857 enG1CfTbT08,2006.0,4,10,2019,When a Stranger Calls,The Guest House Scene,tt0455857 gnlvKhPzx5A,2006.0,10,10,2019,When a Stranger Calls,Driven to Madness Scene,tt0455857 ZXkKHnmKWoI,2006.0,5,10,2019,When a Stranger Calls,What Do You Want? Scene,tt0455857 6w4Chzgna0c,2006.0,2,10,2019,When a Stranger Calls,Missing Maid Scene,tt0455857 4gftIIxf7B4,2006.0,1,10,2019,When a Stranger Calls,Car Won't Start Scene,tt0455857 kokQDLJ1104,2006.0,7,10,2019,When a Stranger Calls,Nowhere to Run Scene,tt0455857 QR6Ds-Tvd1g,2006.0,9,10,2019,When a Stranger Calls,Fighting the Stranger Scene,tt0455857 NxCa0cVaxQo,1994.0,2,10,2019,Little Women,A New Player Scene,tt0110367 fWYs-bFK9_s,1954.0,6,9,2019,The Caine Mutiny,The Mutiny Scene,tt0046816 A3Vm7zSOm7M,1994.0,4,10,2019,Little Women,Beth's Christmas Scene,tt0110367 erX0T5r5xbE,1994.0,1,10,2019,Little Women,Jo & Laurie Scene,tt0110367 Xvyf7ml1ndo,1994.0,9,10,2019,Little Women,Introducing Mrs. Laurence Scene,tt0110367 n_z0TcZkPzg,1994.0,3,10,2019,Little Women,Sally's Coming Out Scene,tt0110367 nLDgcHxJ4Sc,1994.0,5,10,2019,Little Women,Unrequited Love Scene,tt0110367 j_sD0t5L8kE,1994.0,7,10,2019,Little Women,Laurie & Amy Scene,tt0110367 ESUdqZoRu3A,1994.0,6,10,2019,Little Women,Meeting Mr. Bhaer Scene,tt0110367 1Ylk2e-x--8,1994.0,10,10,2019,Little Women,My Hands Are Empty Scene,tt0110367 LJye4-HVyCU,1994.0,8,10,2019,Little Women,I Shall Be Homesick for You Scene,tt0110367 wzZ3S0ZC1Is,1954.0,1,9,2019,The Caine Mutiny,Sweep Drill Scene,tt0046816 5SRxYONb12I,1954.0,9,9,2019,The Caine Mutiny,The Good Fight Scene,tt0046816 KekChFdIe00,1954.0,8,9,2019,The Caine Mutiny,Paranoid Breakdown Scene,tt0046816 R0CN7Enq4Rg,1954.0,3,9,2019,The Caine Mutiny,Cease Fire Scene,tt0046816 mNd16XocjBg,1954.0,7,9,2019,The Caine Mutiny,Mutineer or Fool Scene,tt0046816 UPIr8vb7OeI,1954.0,2,9,2019,The Caine Mutiny,Cutting Across the Towline Scene,tt0046816 edQy5jBxhV8,1954.0,4,9,2019,The Caine Mutiny,Frozen Strawberries Scene,tt0046816 oDjuY9KCsI8,1954.0,5,9,2019,The Caine Mutiny,The Freezer Key Scene,tt0046816 fAaVf_wel0c,1966.0,4,12,2019,Frankie and Johnny,Look Out Broadway Scene,tt0060429 JAd3SSNqZlI,1966.0,10,12,2019,Frankie and Johnny,Hard Luck Scene,tt0060429 Xstux7DlrgU,1966.0,2,12,2019,Frankie and Johnny,Chesay Scene,tt0060429 aoc1wqaK8cc,1966.0,7,12,2019,Frankie and Johnny,Shout it Out Scene,tt0060429 vm-rgqRKqz8,1966.0,5,12,2019,Frankie and Johnny,Let it Ride Scene,tt0060429 wuzbUsy6snc,1966.0,1,12,2019,Frankie and Johnny,"Petunia, the Gardener's Daughter Scene",tt0060429 8ISsNLwwmXg,1966.0,8,12,2019,Frankie and Johnny,Masquerade Scene,tt0060429 SqFAf6aGTtw,1966.0,9,12,2019,Frankie and Johnny,Johnny Fights Braden Scene,tt0060429 SmrdaRhZJt4,1966.0,6,12,2019,Frankie and Johnny,Beginner's Luck Scene,tt0060429 8p1gevM0y-I,1966.0,3,12,2019,Frankie and Johnny,Lucky Redhead Scene,tt0060429 4kIbIjoVakQ,1966.0,11,12,2019,Frankie and Johnny,Please Don't Stop Loving Me Scene,tt0060429 sMrjeejmCpI,1966.0,1,10,2019,A Funny Thing Happened on the Way to the Forum,Comedy Tonight Scene,tt0060438 r_tl6PA-Rd4,1966.0,12,12,2019,Frankie and Johnny,Scene,tt0060429 lLgOrvsA9tw,1966.0,3,10,2019,A Funny Thing Happened on the Way to the Forum,Bring Me My Bride Scene,tt0060438 NzCTDwlquaQ,1966.0,10,10,2019,A Funny Thing Happened on the Way to the Forum,Chariots of Fire Scene,tt0060438 doKP3Il9R1k,1966.0,7,10,2019,A Funny Thing Happened on the Way to the Forum,The Bride Is Dead Scene,tt0060438 WAX89Cuk-Yc,1966.0,6,10,2019,A Funny Thing Happened on the Way to the Forum,Lovely Scene,tt0060438 1EtA0HrUrYM,1966.0,8,10,2019,A Funny Thing Happened on the Way to the Forum,Smoked Virgin Scene,tt0060438 W_fixpI0BL8,1966.0,9,10,2019,A Funny Thing Happened on the Way to the Forum,Gladiator Training Scene,tt0060438 ghfqnmL0d_A,1966.0,5,10,2019,A Funny Thing Happened on the Way to the Forum,Stalling Gloriosus Scene,tt0060438 dvIzAdqrb4U,1966.0,4,10,2019,A Funny Thing Happened on the Way to the Forum,Captain Gloriosus Scene,tt0060438 BCC8LOkisAI,1966.0,2,10,2019,A Funny Thing Happened on the Way to the Forum,The Soothsayer Scene,tt0060438 2vIINq7m10Q,1992.0,9,10,2019,Cool World,Cartoon Apocalypse Scene,tt0104009 FlCzygStNzM,1992.0,8,10,2019,Cool World,Falling for Holli Scene,tt0104009 urk-FzNJvzE,2018.0,3,10,2019,Susanne Bartsch: On Top,Playing Susanne Scene,tt5537600 u-PbWxhmJto,2018.0,7,10,2019,Susanne Bartsch: On Top,The AIDS Crisis Scene,tt5537600 s9_C0lmrp1M,2018.0,1,10,2019,Susanne Bartsch: On Top,Queen of the Night Scene,tt5537600 _PXmVLPkYVo,1091.0,10,10,2019,Susanne Bartsch: On Top,Challenging the Norm Scene,tt5537600 Q4B11j9T3hE,2018.0,4,10,2019,Susanne Bartsch: On Top,Explosive Creativity Scene,tt5537600 h846tnckLFE,2018.0,5,10,2019,Susanne Bartsch: On Top,Living a Double Life Scene,tt5537600 HZbYIyL-tUQ,2018.0,2,10,2019,Susanne Bartsch: On Top,Giving People a Platform Scene,tt5537600 vdZ7vQG2hzI,2018.0,6,10,2019,Susanne Bartsch: On Top,A Safe Place Scene,tt5537600 KtumRXjIzQY,2018.0,8,10,2019,Susanne Bartsch: On Top,The Love Ball Scene,tt5537600 Y5B6H8G2WcE,2018.0,9,10,2019,Susanne Bartsch: On Top,Dragshow Wedding Scene,tt5537600 Cm6FChNhtSc,1992.0,4,10,2019,Cool World,Keep Your Pencil in Your Pocket Scene,tt0104009 wM5rRXQZvjU,1992.0,10,10,2019,Cool World,Superman Jack Scene,tt0104009 rhFw9HYTReY,1992.0,7,10,2019,Cool World,Crazy Doodle Scene,tt0104009 -wci2oycOQA,1992.0,3,10,2019,Cool World,Poppers Car Chase Scene,tt0104009 9zbF578--dE,1992.0,2,10,2019,Cool World,Keep Your Legs Crossed Scene,tt0104009 fBpNFLngzT4,1992.0,6,10,2019,Cool World,Let's Make Love Scene,tt0104009 3hOO0D1rH-w,1992.0,5,10,2019,Cool World,The Art of Seduction Scene,tt0104009 DSyCwx2AlQc,1992.0,1,10,2019,Cool World,Holli Would Scene,tt0104009 S1Xm1jBc84U,2019.0,6,10,2019,Rocketman,For My Next Trick Scene,tt2066051 BGGyUpO3W-A,2019.0,2,10,2019,Rocketman,Crocodile Rock Scene,tt2066051 Cp2KrXtWwAA,2019.0,8,10,2019,Rocketman,Bennie and the Jets Scene,tt2066051 M5ny5tMsxrs,2019.0,10,10,2019,Rocketman,I’m Still Standing Scene,tt2066051 1kuNl2T_mjQ,2019.0,5,10,2019,Rocketman,Pinball Wizard Scene,tt2066051 30IrWTTMWos,2019.0,3,10,2019,Rocketman,Take Me to the Pilot Scene,tt2066051 yPJlBsQE96o,2019.0,1,10,2019,Rocketman,Your Song Scene,tt2066051 oPPxArk70IY,2016.0,8,10,2019,Goldstone,Sniper Shootout Scene,tt4911996 M16l8dqWTuI,2019.0,4,10,2019,Rocketman,You'll Never Be Loved Scene,tt2066051 kyfMjDlcisQ,2019.0,7,10,2019,Rocketman,Rocket Man Scene,tt2066051 ef7rQniaz5c,2019.0,9,10,2019,Rocketman,When Are You Going to Hug Me? Scene,tt2066051 MnTKULzMhMs,2016.0,5,10,2019,Goldstone,Where the Bodies Are Scene,tt4911996 Pibr2kMG1HA,2016.0,10,10,2019,Goldstone,Race Against Time Scene,tt4911996 InHZNhmQyd4,2016.0,3,10,2019,Goldstone,What Will You Do About It? Scene,tt4911996 EYvn7xDKKtA,2016.0,7,10,2019,Goldstone,What's Your Life Worth? Scene,tt4911996 aNv_E1Gh-1k,2016.0,4,10,2019,Goldstone,This Is Your Destiny Scene,tt4911996 MLv1hfiUaNk,2016.0,2,10,2019,Goldstone,The Girls Arrive Scene,tt4911996 Iyv1Br-dG8Q,2016.0,1,10,2019,Goldstone,Pinky's Love Bus Scene,tt4911996 4fgrzQIolcc,2016.0,9,10,2019,Goldstone,Police Raid Scene,tt4911996 dlzBcCsKQXY,2016.0,6,10,2019,Goldstone,Desert Death Race Scene,tt4911996 5CxYctMSiw0,2019.0,2,10,2019,Men in Black: International,Alien Nightclub Scene,tt2283336 BYrS2k5nPbw,2019.0,3,10,2019,Men in Black: International,Alien Shootout Scene,tt2283336 DZlM8Wm7OKY,2005.0,4,10,2019,Fun With Dick and Jane,Anything for a Buck Scene,tt0369441 vjDxkz5LO7A,2019.0,7,10,2019,Men in Black: International,Alien Beatdown Scene,tt2283336 ruwbVFvdfco,2019.0,9,10,2019,Men in Black: International,Nothing is Unkillable Scene,tt2283336 obn9BZj6V-M,2019.0,10,10,2019,Men in Black: International,Destroying the Hive Scene,tt2283336 jgBGoS4a5rc,2019.0,1,10,2019,Men in Black: International,Becoming an Agent Scene,tt2283336 c3vmsUcknhY,2019.0,5,10,2019,Men in Black: International,Hover Bike Chase Scene,tt2283336 dXNu5a3KmMg,2019.0,4,10,2019,Men in Black: International,Meeting Pawny Scene,tt2283336 uciRaLsFmfM,2019.0,6,10,2019,Men in Black: International,Star Gun Scene,tt2283336 Xr9GABUefT8,2019.0,8,10,2019,Men in Black: International,Molly? Scene,tt2283336 r-IE6wNNbAI,2005.0,7,10,2019,Fun With Dick and Jane,The Muffin Heist Scene,tt0369441 yQXi94aNwBU,2005.0,9,10,2019,Fun With Dick and Jane,Hardened Criminal Scene,tt0369441 8bJzLt9AYqc,2005.0,10,10,2019,Fun With Dick and Jane,Jack's Got Your Back Scene,tt0369441 mFA9-zsFtt8,2005.0,3,10,2019,Fun With Dick and Jane,Minimum Wage Hell Scene,tt0369441 xBI5Rk9qYjU,2005.0,6,10,2019,Fun With Dick and Jane,Robbery Fail Scene,tt0369441 oflnRQP6Woo,2005.0,5,10,2019,Fun With Dick and Jane,Brain Freeze! Scene,tt0369441 reyTknNqDjA,2005.0,2,10,2019,Fun With Dick and Jane,Interview Death Race Scene,tt0369441 hA063IaOHyQ,2005.0,1,10,2019,Fun With Dick and Jane,Spinning Fraud Scene,tt0369441 I8yvHZ7de2k,2005.0,8,10,2019,Fun With Dick and Jane,The Bank Job Scene,tt0369441 Zsf-encTJXk,2018.0,6,10,2019,The Monkey King 3,No Room for Babies Scene,tt6466464 JPbZNEly1N0,2018.0,5,10,2019,The Monkey King 3,Pregnant Men Scene,tt6466464 L46gYnVmYY8,2018.0,1,10,2019,The Monkey King 3,Giant Fish Attack Scene,tt6466464 948o2mF4QAs,2018.0,9,10,2019,The Monkey King 3,The River Goddess Scene,tt6466464 Djlih7ELcTA,2018.0,2,10,2019,The Monkey King 3,Psychos in Love Scene,tt6466464 40vMiKmqaCk,2018.0,10,10,2019,The Monkey King 3,Hand of Fate Scene,tt6466464 1HBiMXpncto,2018.0,3,10,2019,The Monkey King 3,All Men Must Die Scene,tt6466464 i44zbRoYBtw,2018.0,4,10,2019,The Monkey King 3,Giant Scorpion Attack Scene,tt6466464 sRGrUQRVPoI,2018.0,8,10,2019,The Monkey King 3,Turned to Stone Scene,tt6466464 KiwEFBgGh-o,2018.0,7,10,2019,The Monkey King 3,Taking The Leap Scene,tt6466464 Y69UrBaCUAs,2019.0,9,10,2019,Kung Fu Bunny,Bamboo Forest Battle Scene,tt1876517 0qzRQ3qxv5Y,2019.0,6,10,2019,Kung Fu Bunny,Standing on Eggs Scene,tt1876517 R9l_adCi74g,2019.0,2,10,2019,Kung Fu Bunny,Polaris Fights Bunny Scene,tt1876517 L6f07_-wG9o,2019.0,1,10,2019,Kung Fu Bunny,Snowboarding Scene,tt1876517 0WKopiIhAdI,2019.0,10,10,2019,Kung Fu Bunny,Candy Fruit Prison Break Scene,tt1876517 gnfp7yyQgH8,2019.0,5,10,2019,Kung Fu Bunny,Blowing Up the Bridge Scene,tt1876517 WkEK2NyGq10,2019.0,4,10,2019,Kung Fu Bunny,Bad Memories Scene,tt1876517 RHlGpxG_-wM,2019.0,8,10,2019,Kung Fu Bunny,Lawless Scoundrel Scene,tt1876517 1jjQuF3a-7U,2019.0,7,10,2019,Kung Fu Bunny,Mastering Speed Scene,tt1876517 otOIqHsnQZY,2019.0,3,10,2019,Kung Fu Bunny,Acupuncture Scene,tt1876517 eS-f-9meg9E,2016.0,9,10,2019,The Monkey King 2,Colossal Skeleton Queen Scene,tt4591310 _qw-Blkf5zU,2016.0,7,10,2019,The Monkey King 2,Skeleton Army Scene,tt4591310 9FcSX6y6OCA,2016.0,10,10,2019,The Monkey King 2,The Ultimate Sacrifice Scene,tt4591310 qIhQJubhA_Q,2016.0,4,10,2019,The Monkey King 2,Pig Demon Slapdown Scene,tt4591310 _klWa7UqpwQ,2016.0,5,10,2019,The Monkey King 2,Creeping Death Scene,tt4591310 Pc4vZPJ4AVs,2016.0,3,10,2019,The Monkey King 2,The White Bone Spirit Attacks Scene,tt4591310 EIHtZl__2tw,2016.0,2,10,2019,The Monkey King 2,Dragon from The Deep Scene,tt4591310 crSg7r225Hw,2016.0,1,10,2019,The Monkey King 2,Monkey King vs. Tiger Scene,tt4591310 hCCpL0zgYoc,2016.0,6,10,2019,The Monkey King 2,Demon Women Scene,tt4591310 WQth5UmIAbI,2016.0,8,10,2019,The Monkey King 2,The Monkey King Returns Scene,tt4591310 MuYLaaVqJf0,2017.0,4,6,2019,Fishtales 2,Big Ball of Sardines Scene,tt7275200 YIg4Pcmy8ww,2017.0,1,6,2019,Fishtales 2,Sea Monster Chase Scene,tt7275200 6tVC53rH37g,2017.0,5,6,2019,Fishtales 2,Evil Skeleton Fish Scene,tt7275200 YlbjPR7t1IU,2017.0,2,6,2019,Fishtales 2,Craziest Shark in the Sea Scene,tt7275200 3GrjR4Fib1M,2017.0,3,6,2019,Fishtales 2,Best Friends Forever! Scene,tt7275200 vpqzFo0aD0c,2017.0,6,6,2019,Fishtales 2,An Underwater Reunion Scene,tt7275200 08rJmhhQHtY,1987.0,1,10,2019,Eddie Murphy Raw,Young Eddie's Poop Joke Scene,tt0092948 gq1gSTF2oyA,1987.0,8,10,2019,Eddie Murphy Raw,Dexter St. Jacques Scene,tt0092948 yr5x9xFoI04,1987.0,2,10,2019,Eddie Murphy Raw,Mr. T Scene,tt0092948 qLFrdv2R8ng,1987.0,7,10,2019,Eddie Murphy Raw,I Make Love to You Scene,tt0092948 91Z-_ujQGik,1987.0,3,10,2019,Eddie Murphy Raw,Michael Jackson Scene,tt0092948 WOnHL_mSXRY,1987.0,6,10,2019,Eddie Murphy Raw,African Wife Scene,tt0092948 zvGA7DNmxmw,1987.0,5,10,2019,Eddie Murphy Raw,Richard Pryor Scene,tt0092948 r12JlwSBvVQ,1987.0,4,10,2019,Eddie Murphy Raw,Bill Cosby Scene,tt0092948 L6HWF_-Vmbw,1987.0,9,10,2019,Eddie Murphy Raw,White People Can't Dance Scene,tt0092948 Omewqh9iivg,1987.0,10,10,2019,Eddie Murphy Raw,Italians and Rocky Scene,tt0092948 XF7nz6p4H9U,2018.0,3,6,2019,American Animals,Mr. Pink Scene,tt6212478 E5M67kHOzyw,2018.0,1,6,2019,American Animals,Black Market Buyers Scene,tt6212478 2aFfcz677qk,2018.0,5,6,2019,American Animals,One Day You'll Be Dead! Scene,tt6212478 KH9yFcfLfOY,2018.0,4,6,2019,American Animals,Old Crooks Scene,tt6212478 glDG7hJd9Hk,2018.0,6,6,2019,American Animals,You've Killed Us Scene,tt6212478 a6QMSQ9NtGM,2018.0,2,6,2019,American Animals,The Plan Doesn't Work Scene,tt6212478 v0AyEpFDi48,2019.0,1,10,2019,Spider Man: Far From Home,Mysterio vs. Hydro-Man Scene,tt6320628 q9X6tpvxZyE,2019.0,4,10,2019,Spider Man: Far From Home,Handing Over the Glasses Scene,tt6320628 is4ZtB0U7Vo,2019.0,3,10,2019,Spider Man: Far From Home,Spider Man & Mysterio vs. Molten Man Scene,tt6320628 j4onAJ-3FAM,2019.0,8,10,2019,Spider Man: Far From Home,Inside Mysterio's Illusion Scene,tt6320628 qRQu4tZF1GA,2019.0,2,10,2019,Spider Man: Far From Home,Peter's Drone Strike Scene,tt6320628 7R9gbSQenqg,2019.0,7,10,2019,Spider Man: Far From Home,Hit by a Train Scene,tt6320628 HfEjIU7Qbj8,2019.0,5,10,2019,Spider Man: Far From Home,Peter + MJ Scene,tt6320628 zErzJxN84iw,2019.0,10,10,2019,Spider Man: Far From Home,Don't Text and Swing! Scene,tt6320628 P-mT2D6iM5k,2019.0,6,10,2019,Spider Man: Far From Home,Zombie Iron Man Scene,tt6320628 NPY5Iq-tCvk,2019.0,9,10,2019,Spider Man: Far From Home,Spider Man vs. Mysterio Scene,tt6320628 vh7_WKODlE8,2019.0,3,10,2019,Us,Meet the Tethered Scene,tt6857112 29YDqiuyaOU,2019.0,10,10,2019,Us,Burning the Tethered Scene,tt6857112 RbdGl6wRKDc,2019.0,9,10,2019,Us,Van Attack Scene,tt6857112 3s2XMsUdd1k,2019.0,2,10,2019,Us,The Tethered Break in Scene,tt6857112 hYvxbtiGvrk,2019.0,1,10,2019,Us,Hall of Mirrors Scene,tt6857112 -uAEWFPmAwU,2019.0,7,10,2019,Us,"Ophelia, Call the Police Scene",tt6857112 lVSMG8FTnpw,2019.0,8,10,2019,Us,Fighting the Tylers Scene,tt6857112 fuCe9uaRx_0,2019.0,5,10,2019,Us,Get off My Car! Scene,tt6857112 Bc3PB049HQc,2019.0,4,10,2019,Us,Playing in the Closet Scene,tt6857112 1ZJEtM585x0,2019.0,6,10,2019,Us,Motorboat Kill Scene,tt6857112 xBr1UV3kWqA,1999.0,1,12,2019,Flawless,Rusty and Amazing Grace Scene,tt0155711 8myhALdcfvI,1999.0,8,12,2019,Flawless,Rusty's Mother Scene,tt0155711 CpcopOQAWWA,1999.0,4,12,2019,Flawless,Walt Tries to Sing Scene,tt0155711 CEwyZcmwNiQ,1999.0,2,12,2019,Flawless,Drag Queen Fight Scene,tt0155711 p2CR0S7DHyQ,1999.0,11,12,2019,Flawless,Dancing With Tia Scene,tt0155711 FbY1BfonRu4,1999.0,12,12,2019,Flawless,He's My Sister Scene,tt0155711 FTO-jtC7Hf4,1999.0,9,12,2019,Flawless,The Gay Republicans Scene,tt0155711 DCF_BXNE3oM,1999.0,5,12,2019,Flawless,Getting to Know Rusty Scene,tt0155711 qrONj6Srq7M,1999.0,6,12,2019,Flawless,Paying For Love Scene,tt0155711 dJBnRYy3mFI,1999.0,10,12,2019,Flawless,Cha-Cha Likes Walt Scene,tt0155711 x1YvX61qS0Q,1999.0,7,12,2019,Flawless,Cha-Cha Embarrasses Walt Scene,tt0155711 g6DnsZvudTI,1999.0,3,12,2019,Flawless,Singing Lessons Scene,tt0155711 wWHOsR_cHt0,2011.0,7,10,2019,War of the Arrows,Royal Hostage Scene,tt2025526 RJePUClQaCA,2011.0,4,10,2019,War of the Arrows,Freedom Fighters Scene,tt2025526 6efkIA6C2h4,2011.0,3,10,2019,War of the Arrows,Run For Your Life Scene,tt2025526 2oFTDbVMd18,2011.0,6,10,2019,War of the Arrows,Prince of Peril Scene,tt2025526 kvEgzOjGpoA,2011.0,9,10,2019,War of the Arrows,The Tiger Trap Scene,tt2025526 ZR9qd2jynNA,2011.0,2,10,2019,War of the Arrows,Manchurian Massacre Scene,tt2025526 qO6AV-o8fuw,2011.0,10,10,2019,War of the Arrows,Manchurian Standoff Scene,tt2025526 WgCQS7EllP8,2011.0,8,10,2019,War of the Arrows,Across the Great Divide Scene,tt2025526 abyQFrI-BTE,2011.0,1,10,2019,War of the Arrows,Attacking the Village Scene,tt2025526 ex2RuacnG5M,2011.0,5,10,2019,War of the Arrows,My Arrow Will Pierce Your Heart Scene,tt2025526 zUtw46VWtVM,2010.0,10,10,2019,Legend of the Fist,"Bloodied, but Never Beaten Scene",tt1456661 JgAmbGwTMbI,2010.0,6,10,2019,Legend of the Fist,Publisher's Killing House Scene,tt1456661 dSSXODCgJOA,2010.0,9,10,2019,Legend of the Fist,One Man Army Scene,tt1456661 LrDnPOOQ7mg,2010.0,5,10,2019,Legend of the Fist,The Death List Scene,tt1456661 S_7ZwIV43zQ,2010.0,8,10,2019,Legend of the Fist,Bombing the Japanese Scene,tt1456661 S5Y83cDu8II,2010.0,1,10,2019,Legend of the Fist,Knife vs. Machine Gun Scene,tt1456661 srpM16MbHAE,2010.0,7,10,2019,Legend of the Fist,Stabbed in the Gut Scene,tt1456661 aoe4V2f2AHg,2010.0,2,10,2019,Legend of the Fist,The Masked Warrior Rises Scene,tt1456661 Wf-GYKvvI58,2010.0,4,10,2019,Legend of the Fist,Staring Down Death Scene,tt1456661 CtBWf0Oq0bQ,2010.0,3,10,2019,Legend of the Fist,Who Are You? Scene,tt1456661 BHJTeH6TLx4,2018.0,3,10,2019,Hell Fest,Getting Hammered Scene,tt1999890 x7TNrjPLDBs,2018.0,7,10,2019,Hell Fest,Off With Her Head! Scene,tt1999890 164eTBYcySQ,2018.0,4,10,2019,Hell Fest,Technical Difficulties Scene,tt1999890 xnv86GOjJz4,2018.0,8,10,2019,Hell Fest,Get Ready to Die Scene,tt1999890 Z37CyC5UB5Q,2018.0,6,10,2019,Hell Fest,Maniac's in Love With You Scene,tt1999890 HDOGthpW1Hs,2018.0,2,10,2019,Hell Fest,Photobooth Makeout Scene,tt1999890 szVtrq1Wt8I,2018.0,10,10,2019,Hell Fest,The End... Until Next Year Scene,tt1999890 aR4h3HHzqlE,2018.0,9,10,2019,Hell Fest,Faces of Death Scene,tt1999890 -_2TyCKWCcc,2018.0,1,10,2019,Hell Fest,Just Do It Scene,tt1999890 2MyJctzA-4s,2018.0,5,10,2019,Hell Fest,Zombie Murder Maze Scene,tt1999890 05s6W7dLEbY,1995.0,12,12,2019,Jeffrey,I Dare You Scene,tt0113464 lunmhq3ZejE,1995.0,2,12,2019,Jeffrey,A Gay Superhero Scene,tt0113464 O4PP1tdCHJA,1995.0,7,12,2019,Jeffrey,Phone Sex with Mom and Dad Scene,tt0113464 wzlxR3dKjrg,1995.0,11,12,2019,Jeffrey,It's Still Our Party Scene,tt0113464 hb4N2SJjXRM,1995.0,8,12,2019,Jeffrey,The True Face of God Scene,tt0113464 goRmKynyjqU,1995.0,6,12,2019,Jeffrey,The Pink Panthers Scene,tt0113464 fPQJBHWr8zI,1995.0,3,12,2019,Jeffrey,It's Just Sex Scene,tt0113464 PjYVxXOmsrc,1995.0,4,12,2019,Jeffrey,A Wholesome Gay Couple Scene,tt0113464 A4g68fTngpA,1995.0,5,12,2019,Jeffrey,Self-Help Guru Scene,tt0113464 Vz1MWTi13qA,1995.0,9,12,2019,Jeffrey,Gay Pride Parade Scene,tt0113464 liRaKtnWUAE,1995.0,10,12,2019,Jeffrey,"Here, Queer and on TV Scene",tt0113464 Pe3mEnRE-EI,1995.0,1,12,2019,Jeffrey,Makes a Decision Scene,tt0113464 MczK8n5msJM,2016.0,4,10,2019,Nerve,Blindfolded Motorcycle Ride Scene,tt3531824 yKw8Cw13NmY,2016.0,8,10,2019,Nerve,Crane Hang Dare Scene,tt3531824 q8Wj4buHUtE,2016.0,2,10,2019,Nerve,I Was Hoping You'd Come Scene,tt3531824 nQ2Y1gm0fRU,2016.0,6,10,2019,Nerve,Finishing Sydney's Dare Scene,tt3531824 W4vPyEk5UK8,2016.0,10,10,2019,Nerve,Sign Out Scene,tt3531824 ce5cnb_5dVk,2016.0,1,10,2019,Nerve,Kiss a Stranger Scene,tt3531824 G4ENL-T7Dyk,2016.0,5,10,2019,Nerve,Ladder Dare Scene,tt3531824 IiQlYWhL_UI,2016.0,7,10,2019,Nerve,You Can't Go to the Police Scene,tt3531824 -jg0_iXfTE4,2016.0,9,10,2019,Nerve,You Think That Takes ? Scene,tt3531824 PYkBs86HnUc,2016.0,3,10,2019,Nerve,Underwear Escape Scene,tt3531824 485KJTKt6RE,2018.0,3,5,2019,Bigfoot,The Power of Nice Scene,tt7042862 2DpotjffI6U,2018.0,1,5,2019,Bigfoot,Death to Christmas Scene,tt7042862 SjF_DpHczjE,2018.0,5,5,2019,Bigfoot,Wasting Your Time Scene,tt7042862 u6W5OFK9jpU,2018.0,4,5,2019,Bigfoot,A Question With No Answer Scene,tt7042862 cSO2u-StPbY,2018.0,2,5,2019,Bigfoot,Santa's in Trouble Scene,tt7042862 CzbL7AJIhJI,-1.0,8,10,2019,Friday the 13th Part 3,Hanging Jason Scene,tt0083972 -a1FAp677Vo,-1.0,4,10,2019,Friday the 13th Part 3,Hammock Kill Scene,tt0083972 6zx4HGKU2E4,-1.0,2,10,2019,Friday the 13th Part 3,Slaughtering the Bike Gang Scene,tt0083972 NxnafGrvcqU,-1.0,6,10,2019,Friday the 13th Part 3,Crushed Head Scene,tt0083972 nfQr0dDL8jg,-1.0,10,10,2019,Friday the 13th Part 3,Undead Nightmare Scene,tt0083972 8d3LDYM0GF4,-1.0,1,10,2019,Friday the 13th Part 3,Jason Returns Scene,tt0083972 FVRaOepQ02I,-1.0,5,10,2019,Friday the 13th Part 3,Power Outage Killing Spree Scene,tt0083972 hcb0vROvmWk,-1.0,7,10,2019,Friday the 13th Part 3,Surviving Jason Scene,tt0083972 AQfWibFXtO4,-1.0,3,10,2019,Friday the 13th Part 3,Speargun Kill Scene,tt0083972 TzAEE887L_g,-1.0,9,10,2019,Friday the 13th Part 3,Axing Jason Scene,tt0083972 3lxLsyE0CRo,-1.0,6,10,2019,Unfriended: Dark Web,Dropped from a Ledge Scene,tt4761916 FJWgF5XnVLY,-1.0,1,10,2019,Unfriended: Dark Web,Hidden Folder Scene,tt4761916 0k_yjEiPLoc,-1.0,4,10,2019,Unfriended: Dark Web,Strangled to Death Scene,tt4761916 D4gPEFccxPk,-1.0,5,10,2019,Unfriended: Dark Web,Bitcoin Blackmail Scene,tt4761916 aJgS31WWIG8,-1.0,10,10,2019,Unfriended: Dark Web,Should Matias Live? Scene,tt4761916 szIOuIIbVfQ,-1.0,9,10,2019,Unfriended: Dark Web,Staged Suicide Scene,tt4761916 wIloYFMzS6M,-1.0,3,10,2019,Unfriended: Dark Web,Kidnapped Women Scene,tt4761916 5QJGkxbb0wE,-1.0,2,10,2019,Unfriended: Dark Web,Skull Drilling Scene,tt4761916 11-AlLawdeg,-1.0,8,10,2019,Unfriended: Dark Web,Pushed into a Subway Train Scene,tt4761916 rbhNKSWKWwU,-1.0,7,10,2019,Unfriended: Dark Web,AJ Gets Swatted Scene,tt4761916 ooS5gVdYgRQ,2018.0,3,3,2019,Imagination Land,Blue the Dragon Scene,tt8726116 Dh3WAI9JeJw,2018.0,2,3,2019,Imagination Land,Sounder Rabbit Scene,tt8726116 Qwr539L6kCI,2018.0,1,3,2019,Imagination Land,Victor the Vulture Scene,tt8726116 kdrPUm5zBqA,2018.0,3,3,2019,Pixy Dragons,War of the Scene,tt9251718 xxGmwvrt4ZA,2018.0,2,3,2019,Pixy Dragons,Lacerta's Scary Visit Scene,tt9251718 4hY7f4nOQtU,2018.0,1,3,2019,Pixy Dragons,The Big Bad Lacerta Scene,tt9251718 Z0AxmKelYrE,-1.0,1,10,2019,The Secret Life of Pets 2,At the Vet Scene,tt5113040 MrrYu07MIbk,-1.0,9,10,2019,The Secret Life of Pets 2,Fighting Sergei Scene,tt5113040 UBWIoJF2X4A,-1.0,7,10,2019,The Secret Life of Pets 2,Cat Lady Backup Scene,tt5113040 5Io8n3JYNUY,-1.0,6,10,2019,The Secret Life of Pets 2,Go Fetch the Sheep! Scene,tt5113040 kMcvRpOOIwY,-1.0,8,10,2019,The Secret Life of Pets 2,Evil Circus Monkey Scene,tt5113040 br2rj_3KW1A,-1.0,2,10,2019,The Secret Life of Pets 2,"It's Snowtime, Baby! Scene",tt5113040 u6HHla9ApmI,-1.0,4,10,2019,The Secret Life of Pets 2,Cat Lessons Scene,tt5113040 JnuYlFhXWsU,-1.0,5,10,2019,The Secret Life of Pets 2,Dog vs. Cats Scene,tt5113040 exu61pb5X68,-1.0,3,10,2019,The Secret Life of Pets 2,Chloe on Catnip Scene,tt5113040 0C-qxjiDP1o,-1.0,10,10,2019,The Secret Life of Pets 2,Snowball's Rap Scene,tt5113040 HbgLp9_yU_c,2017.0,2,7,2019,7 From Etheria,Gelatin Wrestling Scene,tt7073518 aa0NlkF7Rug,2017.0,6,7,2019,7 From Etheria,A Slave's Revenge Scene,tt7073518 vT3QXNKoZKw,2017.0,5,7,2019,7 From Etheria,How Do We Stay in a Moment? Scene,tt7073518 DX1p8C_FuxU,2017.0,4,7,2019,7 From Etheria,Surviving a Survivalist Scene,tt7073518 N2s_Iij3Xfk,2017.0,3,7,2019,7 From Etheria,Queen of the Gelatin Scene,tt7073518 3gD5egw3-Lg,2017.0,1,7,2019,7 From Etheria,I'm Really Hungry! Scene,tt7073518 zhhLFNr_Jio,2017.0,7,7,2019,7 From Etheria,A Brutal Car Thief Scene,tt7073518 2SJ3eoUGXy0,2005.0,5,10,2019,Land of the Dead,Zombie With a Machine Gun Scene,tt0418819 6-s02HyO3XA,2005.0,1,10,2019,Land of the Dead,Anti-Zombie Fireworks Scene,tt0418819 1s-qZUCH3xY,2005.0,6,10,2019,Land of the Dead,The Zombie War Begins Scene,tt0418819 KJ_8vD4Rv9Y,2005.0,2,10,2019,Land of the Dead,Dead Reckoning Scene,tt0418819 2w8LYlDlls4,2005.0,4,10,2019,Land of the Dead,Zombie Arena Scene,tt0418819 7KByxGMoiO4,2005.0,7,10,2019,Land of the Dead,Zombie Uprising Scene,tt0418819 NpjcjrKoeBs,2005.0,3,10,2019,Land of the Dead,Liquor Store Slaying Scene,tt0418819 aNA-hjvEyUY,2005.0,10,10,2019,Land of the Dead,Undead Vengeance Scene,tt0418819 ukWCpVUXs_E,2005.0,9,10,2019,Land of the Dead,Death on the Bridge Scene,tt0418819 _3bYh7CffIQ,2005.0,8,10,2019,Land of the Dead,Mall Massacre Scene,tt0418819 Y--v_LdWlQA,1983.0,2,12,2019,Mr. Mom,Shopping with the Kids Scene,tt0085970 NkzG9RZBERE,1983.0,8,12,2019,Mr. Mom,Daytime TV Scene,tt0085970 Kcmz-QxexRo,1983.0,10,12,2019,Mr. Mom,My Brain Is Like Oatmeal Scene,tt0085970 fHerVxCsbyc,1983.0,1,12,2019,Mr. Mom,Canned Scene,tt0085970 7RBqyBb-MlU,1983.0,9,12,2019,Mr. Mom,Coupon Poker Scene,tt0085970 WBY5O2nTvSU,1983.0,7,12,2019,Mr. Mom,Jack Throws the Race Scene,tt0085970 zBLsO7BKVHw,1983.0,4,12,2019,Mr. Mom,Jack Versus the Appliances Scene,tt0085970 OvQctA3xsoE,1983.0,6,12,2019,Mr. Mom,The Company Party Scene,tt0085970 1D8CfzvSy7g,1983.0,3,12,2019,Mr. Mom,Chainsaw Jack Scene,tt0085970 BSWKnZ4-2eE,1983.0,11,12,2019,Mr. Mom,Rocky Montage Scene,tt0085970 crI67brUX84,1983.0,12,12,2019,Mr. Mom,A Stand-Up Guy Scene,tt0085970 t794eVHOIvo,1983.0,5,12,2019,Mr. Mom,Diaper Change Scene,tt0085970 BUqJMPAtmdY,2019.0,9,12,2019,John Wick: Chapter 3 Parabellum,Shinobi Assassin Fight Scene,tt6146586 YduLKKYfgSk,2019.0,4,12,2019,John Wick: Chapter 3 Parabellum,Escaping Casablanca Scene,tt6146586 iw-0Y6HWb9Q,2019.0,3,12,2019,John Wick: Chapter 3 Parabellum,He Shot My Dog Scene,tt6146586 -1zLU5N6uBU,2019.0,8,12,2019,John Wick: Chapter 3 Parabellum,Glass Room Fight Scene,tt6146586 6eW1ht2HbtQ,2019.0,6,12,2019,John Wick: Chapter 3 Parabellum,Reaffirm Your Fealty Scene,tt6146586 Sw4pvbkQ-jk,2019.0,2,12,2019,John Wick: Chapter 3 Parabellum,Horse Stable Fight Scene,tt6146586 U5EKQ63wREM,2019.0,7,12,2019,John Wick: Chapter 3 Parabellum,Motorcycle Fight Scene,tt6146586 L-zzxADqlu8,2019.0,5,12,2019,John Wick: Chapter 3 Parabellum,Long Live the King Scene,tt6146586 E9B65UGKQ5o,2019.0,12,12,2019,John Wick: Chapter 3 Parabellum,Never Cut a King Scene,tt6146586 2i8C-GOsHo0,2019.0,11,12,2019,John Wick: Chapter 3 Parabellum,John Wick Has to Die Scene,tt6146586 6CmxSs6Mmx4,2019.0,10,12,2019,John Wick: Chapter 3 Parabellum,Wick vs. Zero Scene,tt6146586 v00zKyXbfD4,2019.0,1,12,2019,John Wick: Chapter 3 Parabellum,Throwing Knives Scene,tt6146586 Du5YK5FnyF4,1988.0,4,10,2019,They Live,Here to Chew Bubble Gum and Kick Ass Scene,tt0096256 iVXVD0KxSug,1988.0,1,10,2019,They Live,The Church Raid Scene,tt0096256 yjw_DuNkOUw,1988.0,2,10,2019,They Live,Seeing the Truth Scene,tt0096256 vlTPIYTd32Q,1988.0,6,10,2019,They Live,The Fight Continues Scene,tt0096256 GeAcikP5N7M,1988.0,8,10,2019,They Live,The Power Elite Scene,tt0096256 qQgyoHsknIk,1988.0,3,10,2019,They Live,Aliens in the Grocery Store Scene,tt0096256 vPpNgsJp4DA,1988.0,10,10,2019,They Live,Exposing the Aliens Scene,tt0096256 dgyue1tT-uE,1988.0,5,10,2019,They Live,Fight in the Alley Scene,tt0096256 QB8ken8pZ_s,1988.0,7,10,2019,They Live,Assault on the Hideout Scene,tt0096256 aFz1y45KaHA,1988.0,9,10,2019,They Live,TV Studio Attack Scene,tt0096256 G7gklW3Xbn8,2019.0,4,10,2019,Happy Death Day 2U,Back in the Loop Scene,tt8155288 xRShAxpUZ6Y,2019.0,8,10,2019,Happy Death Day 2U,"The ""Blind"" French Girl Scene",tt8155288 QMBLWE0pu8U,2019.0,6,10,2019,Happy Death Day 2U,I Am So Done With This Scene,tt8155288 hT_CiaTcnN8,2019.0,7,10,2019,Happy Death Day 2U,Power Plant Explosion Scene,tt8155288 1jEe_vPgNJE,2019.0,3,10,2019,Happy Death Day 2U,Time Explosion Scene,tt8155288 qUammhHxd1k,2019.0,5,10,2019,Happy Death Day 2U,Hard Times Scene,tt8155288 x4L81QLGYuM,2019.0,9,10,2019,Happy Death Day 2U,Electromagnetic Death Scene,tt8155288 SmMmQHR_F4Y,2019.0,2,10,2019,Happy Death Day 2U,Locker Room Attack Scene,tt8155288 I8-3VpZrBww,2019.0,10,10,2019,Happy Death Day 2U,Post-Credits Scene,tt8155288 2dn_r_sgBEE,2019.0,1,10,2019,Happy Death Day 2U,The Loop Begins Scene,tt8155288 QAO6uTkGpjM,2002.0,10,10,2019,Red Dragon,A Visit From the Dragon Scene,tt0289765 Kq3TiuRC-VQ,2002.0,5,10,2019,Red Dragon,Do You See? Scene,tt0289765 4WNq9Yy9m_g,2002.0,9,10,2019,Red Dragon,"Don't Hurt Me, D Scene",tt0289765 6nSu2qhTmNU,2002.0,7,10,2019,Red Dragon,I Won't Give Her to You Scene,tt0289765 HVgu-41adSY,2002.0,6,10,2019,Red Dragon,The Date With Reba Scene,tt0289765 Kb2WClrbrAc,2002.0,1,10,2019,Red Dragon,I Think I'll Eat Your Heart Scene,tt0289765 4fwQKF64AWY,2002.0,2,10,2019,Red Dragon,Hannibal Lecter Meeting Scene,tt0289765 UWlxRKXD6sY,2002.0,4,10,2019,Red Dragon,Toilet Paper Letter Scene,tt0289765 l4S4IBACQCM,2002.0,3,10,2019,Red Dragon,Dolarhyde's Attic Scene,tt0289765 G8_ch6wsWjs,2002.0,8,10,2019,Red Dragon,Eating the Painting Scene,tt0289765 Ap8p92HCAbg,2019.0,5,10,2019,Little,The Friend Zone Scene,tt3281548 0IuOpt3p3WE,2019.0,8,10,2019,Little,Middle School Makeover Scene,tt3281548 Z0sFhnkRCsQ,2019.0,4,10,2019,Little,Teacher's Pet Scene,tt3281548 V6SMgd9L6Z0,2019.0,7,10,2019,Little,"Kid, Stop Lookin'! Scene",tt3281548 goEiURelfsM,2019.0,6,10,2019,Little,Breadstick Karaoke Scene,tt3281548 oNuGwa5Kd8E,2019.0,1,10,2019,Little,I Wish You Were ! Scene,tt3281548 V-vgoh3ukPc,2019.0,2,10,2019,Little,Unusual Morning Scene,tt3281548 HTFjrXA8bFI,2019.0,10,10,2019,Little,Talent Show Victory Scene,tt3281548 a_VIjZa76jI,2019.0,9,10,2019,Little,Epic Dance Scene,tt3281548 z82GwvEQ3Vc,2019.0,3,10,2019,Little,Black Mama Whoopin' Scene,tt3281548 uIsdG0ydS5o,2019.0,1,10,2019,How to Train Your Dragon 3,Fighting the Trappers Scene,tt2386490 dHXVvD4FFas,2019.0,10,10,2019,How to Train Your Dragon 3,Toothless Returns Scene,tt2386490 X4lUmgN_ByQ,2019.0,6,10,2019,How to Train Your Dragon 3,Glider Rescue Scene,tt2386490 tJ1uXsPXyao,2019.0,7,10,2019,How to Train Your Dragon 3,Battle on Grimmel's Boat Scene,tt2386490 _0FLP8sxv2E,2019.0,8,10,2019,How to Train Your Dragon 3,Hiccup Saves Toothless Scene,tt2386490 yCHoWsMt0LY,2019.0,3,10,2019,How to Train Your Dragon 3,Flirting Fail Scene,tt2386490 9JQEbj0uh0k,2019.0,9,10,2019,How to Train Your Dragon 3,"Goodbye, Toothless Scene",tt2386490 w6YTq-3hmnA,2019.0,4,10,2019,How to Train Your Dragon 3,Ruffnut Is Annoying Scene,tt2386490 -AZg55qXj7U,2019.0,5,10,2019,How to Train Your Dragon 3,The Hidden World Scene,tt2386490 O-W3C2RQduY,2019.0,2,10,2019,How to Train Your Dragon 3,Grimmel's Warning Scene,tt2386490 r5ilcq9hUZI,2018.0,5,10,2019,Thoroughbreds,Putting the Horse Down Scene,tt5649108 PzTICfN0A-4,2018.0,8,10,2019,Thoroughbreds,Drugging Herself Scene,tt5649108 C4DPvNXtOzA,2018.0,2,10,2019,Thoroughbreds,Being Honest Scene,tt5649108 S1UpuPvAUss,2018.0,6,10,2019,Thoroughbreds,Do You Have A Gun? Scene,tt5649108 o5NPINxrB7g,2017.0,6,10,2019,Blueprint,Caught Cheating Scene,tt7287136 F5NFCYDB5hI,2018.0,9,10,2019,Thoroughbreds,Framed for Murder Scene,tt5649108 rsi2WcPIcQ0,2018.0,7,10,2019,Thoroughbreds,You Cannot Hesitate Scene,tt5649108 IfZmBGcWkLI,2018.0,3,10,2019,Thoroughbreds,The Technique Scene,tt5649108 DYPR82c0v00,2018.0,4,10,2019,Thoroughbreds,Contemplating Murder Scene,tt5649108 j91qPMHaqbg,2018.0,1,10,2019,Thoroughbreds,I Don't Feel Anything Scene,tt5649108 1bBOUr7rAHw,2018.0,10,10,2019,Thoroughbreds,Amanda's Letter Scene,tt5649108 CwgIvhYyeTc,2017.0,3,10,2019,Blueprint,Mourning on the Court Scene,tt7287136 kJVKPHBFNF8,2017.0,7,10,2019,Blueprint,Get Off My Floor Scene,tt7287136 9Wy-6pabUwU,2017.0,10,10,2019,Blueprint,We Can't Give Up Scene,tt7287136 3jEDXJvOCs8,2017.0,8,10,2019,Blueprint,Protection Against the Protectors Scene,tt7287136 SZnZMhfusbA,2017.0,4,10,2019,Blueprint,Love On and Off the Court Scene,tt7287136 _BK3aiBX43Q,2017.0,2,10,2019,Blueprint,They Didn't See Him as Human Scene,tt7287136 B3bUD6nAKvU,2017.0,1,10,2019,Blueprint,"I Am Beautiful, I Am Smart Scene",tt7287136 GM59PdNB7FI,2017.0,5,10,2019,Blueprint,Drunken Love Scene,tt7287136 Gcs2QIB_X5k,2017.0,9,10,2019,Blueprint,This All You Got? Scene,tt7287136 E7XIYOvcjuE,2015.0,4,10,2019,Propeller,Elijah Berle's Epic Grinds Scene,tt4666228 _iinqPkm6m4,2019.0,8,10,2019,Captive State,You Work for Me Now Scene,tt5968394 MybqJCvM1z0,2019.0,10,10,2019,Captive State,Striking the First Blow Scene,tt5968394 zZg6j228i3A,2019.0,7,10,2019,Captive State,Alien Hunters Scene,tt5968394 vi8Kaoib33Y,2019.0,3,10,2019,Captive State,Bug Removal Scene,tt5968394 A3yrtArn5zA,2019.0,1,10,2019,Captive State,Aliens in the Tunnel Scene,tt5968394 V4hv2OSD3s4,2019.0,4,10,2019,Captive State,Unity Rally Bombing Scene,tt5968394 c6EhzIb5NKo,2019.0,2,10,2019,Captive State,Roach Attack Scene,tt5968394 Dka4AUVm_j4,2019.0,6,10,2019,Captive State,Police Raids Scene,tt5968394 4hA7ILi4l68,2019.0,9,10,2019,Captive State,The Plan Was to Fail Scene,tt5968394 q0k-b9FeGFU,2019.0,5,10,2019,Captive State,Alien Face Off Scene,tt5968394 M_h6qdnNiNw,2015.0,5,10,2019,Propeller,Dynamite Chris Pfanner Scene,tt4666228 o_rv7bmEDm0,2015.0,2,10,2019,Propeller,The Legend of Rowan Zorilla Scene,tt4666228 22LBB9jJG60,2015.0,9,10,2019,Propeller,Pedro Barros Rides Like the Wind Scene,tt4666228 rdc5PXKBFdE,2015.0,6,10,2019,Propeller,Gilbert Crockett Evades the Hammer Scene,tt4666228 S_rNBw8E98s,2015.0,10,10,2019,Propeller,Kyle Walker Grinds and Ollies Scene,tt4666228 N1UxH6P-Fgc,2015.0,1,10,2019,Propeller,Chima Ferguson vs. the World Scene,tt4666228 ss7eqc_SHsg,2015.0,7,10,2019,Propeller,Dustin Dollin: Skater Scene,tt4666228 FqbR0-PbFOo,2015.0,8,10,2019,Propeller,The Outlaw Geoff Rowley Scene,tt4666228 LjSeILLCe2M,2015.0,3,10,2019,Propeller,Tony Trujillo's Urban Domination Scene,tt4666228 IKa2Mr-yHnE,2019.0,3,10,2019,Pet Sematary,Hit by a Truck Scene,tt0837563 70eKt79PSQw,2019.0,7,10,2019,Pet Sematary,Living Dead Girl Scene,tt0837563 Y5Y0SYRZRtM,2019.0,6,10,2019,Pet Sematary,Jud's Death Scene,tt0837563 xHtAfA2ctBs,2019.0,4,10,2019,Pet Sematary,Buried in the Sematary Scene,tt0837563 H5LLqPyF11w,2019.0,1,10,2019,Pet Sematary,The Barrier Scene,tt0837563 tMB7LgnO2Wo,2019.0,2,10,2019,Pet Sematary,Dead is Better Scene,tt0837563 HUPoWdZ1ZdQ,2019.0,9,10,2019,Pet Sematary,Stabbed in the Gut Scene,tt0837563 6_Ed23ettio,2019.0,8,10,2019,Pet Sematary,"Evil Sister, Evil Daughter Scene",tt0837563 FMbSH8g9vsU,2019.0,5,10,2019,Pet Sematary,Back From the Dead Scene,tt0837563 ewbUaMvCaYg,2019.0,10,10,2019,Pet Sematary,Undead Family Scene,tt0837563 vizu1RigaBI,2016.0,2,10,2019,Embers,Maybe We're Married Scene,tt5599818 ewANNniIEhc,2016.0,7,10,2019,Embers,"Forgotten Pain, Forgotten Love Scene",tt5599818 4fKRyf8BI-Q,2016.0,9,10,2019,Embers,The Last Cello Performance Scene,tt5599818 rKQEYi53rvQ,2016.0,4,10,2019,Embers,I Was a Queen Scene,tt5599818 gbIKuFaDbV8,2016.0,3,10,2019,Embers,Working for Nothing Scene,tt5599818 YoI_YkIGXXs,2016.0,5,10,2019,Embers,A Pale Horse Scene,tt5599818 x7TPeGns0N8,2016.0,10,10,2019,Embers,Escape Into Oblivion Scene,tt5599818 -krDTO77jrY,2016.0,1,10,2019,Embers,All Dressed up and Nowhere to Go Scene,tt5599818 an5-b_99zH0,2016.0,8,10,2019,Embers,Raider Troubles Scene,tt5599818 uD-VMe03AdY,2016.0,6,10,2019,Embers,Making Love Like the First Time Scene,tt5599818 GOYpqqTsO-k,2014.0,5,10,2019,Everyday Rebellion,Power And Corruption Scene,tt3391782 fgbjvvCPa88,1989.0,4,10,2019,Pet Sematary,Gage's Death Scene,tt0098084 A_bC8fF6WZE,1989.0,5,10,2019,Pet Sematary,Dead is Better Scene,tt0098084 J-D8n4_fd6Q,1989.0,1,10,2019,Pet Sematary,Deadly Warning Scene,tt0098084 OBXQr25dHQE,1989.0,6,10,2019,Pet Sematary,Killing Jud Scene,tt0098084 gA-VU0mczSI,1989.0,7,10,2019,Pet Sematary,I Brought You Something Mommy Scene,tt0098084 v3E4s7VN4xE,1989.0,3,10,2019,Pet Sematary,The Dying Sister Scene,tt0098084 A949a8j5Boo,1989.0,8,10,2019,Pet Sematary,Killing Church Scene,tt0098084 ZbL_db16k0w,1989.0,2,10,2019,Pet Sematary,The Cat Comes Back Scene,tt0098084 g0nhEzoCkJo,1989.0,9,10,2019,Pet Sematary,Killing Gage Scene,tt0098084 egC6XhnfuZk,1989.0,10,10,2019,Pet Sematary,Rachel Comes Home Scene,tt0098084 MY-ZusWqyqs,2014.0,6,10,2019,Everyday Rebellion,Destroying Debt Scene,tt3391782 gaz2wRxRZ7s,2014.0,2,10,2019,Everyday Rebellion,Evicting The Evictors Scene,tt3391782 pgkcX22u0SI,2014.0,1,10,2019,Everyday Rebellion,I Don't Want to Be on the Street Again Scene,tt3391782 QmSSFYFSA00,2014.0,3,10,2019,Everyday Rebellion,Graffiti's Role In The Revolution Scene,tt3391782 Bf0HvoLXWdU,2014.0,9,10,2019,Everyday Rebellion,The Iran Tribunal Scene,tt3391782 9aIOR7dl2CY,2014.0,4,10,2019,Everyday Rebellion,The Arab Spring Scene,tt3391782 AajX1xvWnk0,2014.0,8,10,2019,Everyday Rebellion,Activism Takes Flight Scene,tt3391782 S1C8tqyy3oc,2014.0,10,10,2019,Everyday Rebellion,Occupy Wall Street Scene,tt3391782 aYbKjHmTdMw,2014.0,7,10,2019,Everyday Rebellion,FEMEN Training Scene,tt3391782 oexJPg9rZqo,2019.0,5,10,2019,Wonder Park,Chimpanzombies Invasions Scene,tt6428676 u_jemmhoj0Q,2019.0,1,10,2019,Wonder Park,Flying Fish Carousel Scene,tt6428676 NCi4QNKpVB8,2019.0,7,10,2019,Wonder Park,Rebuilding the Park Scene,tt6428676 3wLF8oDA3ZM,2019.0,9,10,2019,Wonder Park,A Splendiferous Idea Scene,tt6428676 _t38ENQ9jlY,2019.0,8,10,2019,Wonder Park,Wild Ride Scene,tt6428676 b5Q6A_1YyHg,2019.0,2,10,2019,Wonder Park,Homemade Roller Coaster Scene,tt6428676 -sD2jY0KMA8,2019.0,3,10,2019,Wonder Park,Rocket Monkeys Scene,tt6428676 PlJ-x-JNEj8,2019.0,4,10,2019,Wonder Park,Robot Spider Attack Scene,tt6428676 ANTOMowTXZU,2019.0,10,10,2019,Wonder Park,Saving Wonderland Scene,tt6428676 -kKqgjrbb6I,2019.0,6,10,2019,Wonder Park,Balloon Chase Scene,tt6428676 vKuvku8JEq0,2012.0,8,10,2019,You Drive Me Crazy,Getting Behind the Wheel Scene,tt2267858 U5nphwXr8VY,2012.0,6,10,2019,You Drive Me Crazy,Non-Stop Failure Scene,tt2267858 dP5e3MxjRiw,2012.0,3,10,2019,You Drive Me Crazy,Backseat Front Seat Driving Scene,tt2267858 LN8iHxuFSts,2012.0,2,10,2019,You Drive Me Crazy,Learning to Drive in Japan Scene,tt2267858 RsGRrlK84zM,2012.0,1,10,2019,You Drive Me Crazy,A Korean in Germany Scene,tt2267858 Vb9wR2ibCRw,2012.0,5,10,2019,You Drive Me Crazy,The Puja Ritual Scene,tt2267858 F3yawE_0QaE,2012.0,9,10,2019,You Drive Me Crazy,Japan is About Patience and Frustration Scene,tt2267858 YtceTJF_VhM,2012.0,7,10,2019,You Drive Me Crazy,Driving Into Eternity Scene,tt2267858 z6JcuVWaVfQ,2012.0,4,10,2019,You Drive Me Crazy,An Army Wife Scene,tt2267858 X3WA8eZ4Q_0,2012.0,10,10,2019,You Drive Me Crazy,Fighting Back Scene,tt2267858 0Dp--gKKMJ8,2018.0,5,10,2019,Action Point,Catching Animals Scene,tt6495770 yWSRVYU_JMo,1993.0,7,10,2019,Addams Family Values,Eat Me! Scene,tt0106220 v9UIDDlnSgA,1993.0,8,10,2019,Addams Family Values,Thanksgiving Play Scene,tt0106220 Ke-MYW3XORg,1993.0,2,10,2019,Addams Family Values,Which One Will Bounce? Scene,tt0106220 NIDabDkcS8o,1993.0,3,10,2019,Addams Family Values,Morticia and Gomez Dance Scene,tt0106220 yprYw3FQUpQ,1993.0,9,10,2019,Addams Family Values,Bombing Fester Scene,tt0106220 w80ZSg7kNbE,1993.0,6,10,2019,Addams Family Values,The Happy Hut Scene,tt0106220 D1IshjFWDJk,1993.0,4,10,2019,Addams Family Values,Bachelor Party Scene,tt0106220 7p0J9wVGwZ0,1993.0,1,10,2019,Addams Family Values,It's an Addams! Scene,tt0106220 PmYdvwAqwDg,1993.0,10,10,2019,Addams Family Values,Shock Value Scene,tt0106220 oK1zfJausVM,1993.0,5,10,2019,Addams Family Values,Would You Die for Me? Scene,tt0106220 ZKxqB5gCX6E,2018.0,7,10,2019,Action Point,A Sticky Situation Scene,tt6495770 1N81Dwye3VM,2018.0,3,10,2019,Action Point,No Speed Limits Scene,tt6495770 3Cf6HfBCcso,2018.0,2,10,2019,Action Point,Stealing Wood Scene,tt6495770 E4rFRdmeWqU,2018.0,9,10,2019,Action Point,Bus Jump Scene,tt6495770 STfoetR9Su8,2018.0,10,10,2019,Action Point,Rager Riot Scene,tt6495770 Vchw3dbVeUo,2018.0,1,10,2019,Action Point,The Sh**birds Scene,tt6495770 9EFxRx8EbDk,2018.0,4,10,2019,Action Point,Bad Publicity is Good Publicity Scene,tt6495770 UUAQ3T09_os,2018.0,8,10,2019,Action Point,Trebuchet Mishap Scene,tt6495770 PyUqYOB4ey8,2018.0,6,10,2019,Action Point,Shooting the Commercial Scene,tt6495770 ALO5aag-ZIo,1996.0,6,10,2019,Thinner,The White Man from Town Scene,tt0117894 9fFbDzUOD5o,1996.0,5,10,2019,Thinner,You Lose! Scene,tt0117894 HiavOVW1Iv8,1996.0,9,10,2019,Thinner,Did You Try It? Scene,tt0117894 6BBGO5M_2A0,1996.0,7,10,2019,Thinner,The Attack Scene,tt0117894 uCG1EiqEAEg,1996.0,8,10,2019,Thinner,Die Clean Scene,tt0117894 Ky6GupHDuOw,1996.0,2,10,2019,Thinner,The Curse Scene,tt0117894 -7cV5cWQmxg,1996.0,1,10,2019,Thinner,Still Thinking About Food? Scene,tt0117894 OFJKL2POF5I,1996.0,3,10,2019,Thinner,Take the Gun! Scene,tt0117894 gp7K6ZwuDow,1996.0,4,10,2019,Thinner,I'm Being Erased! Scene,tt0117894 81oozSLS2CM,1996.0,10,10,2019,Thinner,What Have I Done? Scene,tt0117894 PWihKQVb_aY,2012.0,2,10,2019,"From Nothing, Something",Top Female Chefs Scene,tt2062996 ZMIGwSNQA4Y,2012.0,7,10,2019,"From Nothing, Something",Deadline Hell Scene,tt2062996 zdF8hHVUzM8,2012.0,10,10,2019,"From Nothing, Something",Achieving Success Scene,tt2062996 Qxzrv4GCwo0,2012.0,6,10,2019,"From Nothing, Something",The Creative Process Scene,tt2062996 Z_5l0p0gmvA,2012.0,9,10,2019,"From Nothing, Something",The Mind Of A Creator Scene,tt2062996 eqarJw8A2YY,2012.0,4,10,2019,"From Nothing, Something",Fashion & Music Scene,tt2062996 fp8Ob7kBqJc,2012.0,8,10,2019,"From Nothing, Something",Cancer Fighting Invention Scene,tt2062996 koahs44agqU,2012.0,1,10,2019,"From Nothing, Something",Young Creatives Scene,tt2062996 EE2FUs9iI0A,2012.0,3,10,2019,"From Nothing, Something",Surprise Filmmakers Scene,tt2062996 miE1oJ9ysUs,2012.0,5,10,2019,"From Nothing, Something",Star Trek Alien Inspiration Scene,tt2062996 sFRjPMAxn1k,2018.0,3,8,2019,The Ashram,Something Hard to Believe Scene,tt5596104 MGuKcmxMPQk,2018.0,2,8,2019,The Ashram,Miracle Cure Scene,tt5596104 ZzkELXr8siQ,2018.0,1,8,2019,The Ashram,Belief Is All We Have Scene,tt5596104 F2UxQiUoCD8,2018.0,4,8,2019,The Ashram,You Will See the Light Scene,tt5596104 QymZP9taonU,2018.0,8,8,2019,The Ashram,A Spiritual Coma Scene,tt5596104 _pZJUgFokcw,2018.0,5,8,2019,The Ashram,The Universal Consciousness Scene,tt5596104 Z8lnce2Ij-4,2018.0,6,8,2019,The Ashram,Powers Awakened Scene,tt5596104 7_ClXAzhDQ4,2018.0,7,8,2019,The Ashram,A Shallow Grave Scene,tt5596104 6pUt6xlMorQ,2018.0,2,10,2019,Eighth Grade,Pool Party Scene,tt7014006 RA0xUXiz_dc,2014.0,7,10,2019,Point and Shoot,The Freedom Fighter Scene,tt3576060 oSEQnREqfF4,2015.0,1,10,2019,Lola's Last Letter,You Have Really Good French Fries Scene,tt3206798 MpPwsiwPhF4,2015.0,3,10,2019,Lola's Last Letter,What Do You Want From Me? Scene,tt3206798 ofrL7_UA04k,2015.0,9,10,2019,Lola's Last Letter,It Was My Fault Scene,tt3206798 bocu5uL8siM,2015.0,5,10,2019,Lola's Last Letter,How Could I Ever Trust You Again? Scene,tt3206798 W4zjAZcHUaE,2015.0,6,10,2019,Lola's Last Letter,Want to Come Inside? Scene,tt3206798 yHo2Yx50F8c,2015.0,2,10,2019,Lola's Last Letter,Let's Do It on Camera Scene,tt3206798 PeliEV1oD2A,2015.0,10,10,2019,Lola's Last Letter,Own Your Mistakes Scene,tt3206798 ZRdnTHyJQQM,2015.0,7,10,2019,Lola's Last Letter,A Drunk Driver Hit My Son Scene,tt3206798 2c3-0yhNlfI,2015.0,4,10,2019,Lola's Last Letter,"No Work, All Play Scene",tt3206798 R5h3Pynz-ts,2015.0,8,10,2019,Lola's Last Letter,I Love You The Way You Are Scene,tt3206798 SdSQJTSYXJY,2014.0,4,10,2019,Point and Shoot,Was It Worth It? Scene,tt3576060 OAqqb5FC_a0,2014.0,5,10,2019,Point and Shoot,The Madness of Solitary Confinement Scene,tt3576060 yU6yKmqhhp8,2014.0,8,10,2019,Point and Shoot,Share on Facebook Scene,tt3576060 yebKBYB7rEs,2014.0,6,10,2019,Point and Shoot,Libyan Prison Break Scene,tt3576060 8nSGhJRDjX4,2014.0,1,10,2019,Point and Shoot,A Soldier's Life Scene,tt3576060 pf4EjhjgisM,2014.0,10,10,2019,Point and Shoot,Liberty for Libya Scene,tt3576060 4MWlfC7QTDs,2014.0,2,10,2019,Point and Shoot,A Call to Arms Scene,tt3576060 sa2LecdGh5Q,2014.0,9,10,2019,Point and Shoot,Did You Ever Kill Anyone? Scene,tt3576060 HNPPD_4oD9M,2014.0,3,10,2019,Point and Shoot,You Will Never See America Again Scene,tt3576060 kNtopT3-5t0,2018.0,4,10,2019,Eighth Grade,Can't Wait To Grow Up Scene,tt7014006 Yq9fKm8q0iY,2018.0,7,10,2019,Eighth Grade,I Get Nervous Scene,tt7014006 sxY6Jc1MZSE,2018.0,2,10,2019,Duck Butter,Getting Intimate Scene,tt6958014 6R2Uu5x6Imo,2018.0,4,10,2019,Duck Butter,Making Beautiful Music Together Scene,tt6958014 VwkGKFFk-F4,2018.0,8,10,2019,Eighth Grade,Do I Make You Sad? Scene,tt7014006 AcSDeQhGGFM,2018.0,6,10,2019,Eighth Grade,Truth or Dare Hell Scene,tt7014006 LK-4Dmq6Hs0,2018.0,9,10,2019,Eighth Grade,Telling off the Bullies Scene,tt7014006 NX12Wu1uqbI,2018.0,5,10,2019,Eighth Grade,Spying Dad Scene,tt7014006 hH3peh07eq4,2018.0,1,10,2019,Eighth Grade,Being Yourself Scene,tt7014006 6Ua_T32yaic,2018.0,10,10,2019,Eighth Grade,Szechuan Sauce Scene,tt7014006 V9E9Nce1dC0,2018.0,3,10,2019,Eighth Grade,Thought You Hated Bananas Scene,tt7014006 qiRW4OvzELU,2018.0,1,10,2019,Duck Butter,Sergio Sings Scene,tt6958014 lUPTOiM_7CM,2018.0,8,10,2019,Duck Butter,Want to Try an Orgy? Scene,tt6958014 2jqk0yyPkrY,2018.0,6,10,2019,Duck Butter,Manteca de Pato Scene,tt6958014 iwryTZf6bA0,2018.0,5,10,2019,Duck Butter,Do Stuff You Want to Do Scene,tt6958014 GM1x6UcMp0Y,2018.0,9,10,2019,Duck Butter,This Has Been A Lot Scene,tt6958014 IznFYCiGAPA,2018.0,3,10,2019,Duck Butter,I Want You Every Hour Scene,tt6958014 uh4bsAP7K4k,2018.0,10,10,2019,Duck Butter,Say Hi To My S*** Scene,tt6958014 qy58BaeEMyw,2018.0,7,10,2019,Duck Butter,Meeting Her Mom Scene,tt6958014 5W19mLb-9JM,2018.0,10,10,2019,Johnny English Strikes Again,Virtual Reality Scene,tt6921996 suYDvQwikn4,2018.0,3,10,2019,Johnny English Strikes Again,Infiltrating the Ship Scene,tt6921996 rpqgDDBcmcI,2018.0,4,10,2019,Johnny English Strikes Again,Running on Empty Scene,tt6921996 Jhzm2AvUGHA,2018.0,5,10,2019,Johnny English Strikes Again,A Hot Date Scene,tt6921996 31fx9aF04ww,2018.0,6,10,2019,Johnny English Strikes Again,Dance Dance Assassination Scene,tt6921996 s6moLb_ieqA,2018.0,1,10,2019,Johnny English Strikes Again,Pen Grenade Scene,tt6921996 gFJT9ziRAUI,2018.0,9,10,2019,Johnny English Strikes Again,Knight in Shining Armor Scene,tt6921996 wmu9xg12xuc,2018.0,7,10,2019,Johnny English Strikes Again,Driver's Ed Escape Scene,tt6921996 lISiW7wcIVc,2018.0,2,10,2019,Johnny English Strikes Again,Fransh Waiters Scene,tt6921996 lJ7F2kWLGuE,2018.0,8,10,2019,Johnny English Strikes Again,Mission Accomplished Scene,tt6921996 9_SMqU969fw,2018.0,1,10,2019,Tully,A Special Baby Gift Scene,tt5610554 NxrAVHpoBs4,2018.0,2,10,2019,Tully,Jonah's Dismissal Scene,tt5610554 CmUXU3VLgGI,2018.0,4,10,2019,Tully,Being Trees Scene,tt5610554 2W7WM3CuXPU,2018.0,6,10,2019,Tully,The Seductive Nanny Scene,tt5610554 OCYRGGLywdQ,2018.0,9,10,2019,Tully,The Real Scene,tt5610554 EBu9PvRBPos,2018.0,10,10,2019,Tully,Saying Goodbye To Scene,tt5610554 qW7LtKsIfHM,2018.0,7,10,2019,Tully,Time To Move On Scene,tt5610554 O3TmokjuQR0,2018.0,5,10,2019,Tully,Daddy's Darkest Desire Scene,tt5610554 -Ian949JzDw,2018.0,3,10,2019,Tully,Meeting Scene,tt5610554 qDQo4nvQ2yw,2018.0,8,10,2019,Tully,Off The Deep End Scene,tt5610554 3rb5s-BoCFM,2005.0,3,10,2019,Memoirs of a Geisha,"Sweet, Shaved Ice Scene",tt0397535 KVnOa_HhgX4,2005.0,9,10,2019,Memoirs of a Geisha,The Heart Dies a Slow Death Scene,tt0397535 HliXkWOMgaE,2005.0,6,10,2019,Memoirs of a Geisha,Snow Dance Scene,tt0397535 dPaM45IreF4,2005.0,2,10,2019,Memoirs of a Geisha,Forbidden Love Scene,tt0397535 HV6s5JiA82g,2005.0,5,10,2019,Memoirs of a Geisha,Sumo Match Scene,tt0397535 HUZ-rA7L0uk,2005.0,1,10,2019,Memoirs of a Geisha,Sold to Geishas Scene,tt0397535 0NAWQvMZpO8,2005.0,8,10,2019,Memoirs of a Geisha,You Have Ruined Me Scene,tt0397535 lG40tBFlGMQ,2005.0,7,10,2019,Memoirs of a Geisha,Burning Vengeance Scene,tt0397535 MyzSuy1v6DM,2005.0,10,10,2019,Memoirs of a Geisha,Closer to You Scene,tt0397535 hhjLmbn5YoM,2016.0,5,10,2019,Love Is Thicker Than Water,We Wrote Our Own Vows Scene,tt4092422 LeGBkG_sRNc,2005.0,4,10,2019,Memoirs of a Geisha,Becoming a Geisha Scene,tt0397535 9qNFpkUBSro,2016.0,6,10,2019,Love Is Thicker Than Water,A Stiff Challenge Scene,tt4092422 tQ_Ry1KTluA,2016.0,4,10,2019,Love Is Thicker Than Water,Living Together vs. Loving Together Scene,tt4092422 tgBurIq9lGE,2016.0,10,10,2019,Love Is Thicker Than Water,Happy Beginnings Scene,tt4092422 vAO2D0riCDg,2016.0,3,10,2019,Love Is Thicker Than Water,From Wank to Wedding Scene,tt4092422 owUlPwoEfaM,2016.0,8,10,2019,Love Is Thicker Than Water,Bigotry in the Bathroom Scene,tt4092422 3w6Z_-R4Kk8,2016.0,2,10,2019,Love Is Thicker Than Water,Staying the Night Scene,tt4092422 r5ia1XDzIAU,2016.0,7,10,2019,Love Is Thicker Than Water,A Better Life Scene,tt4092422 rc5v5EODszE,2016.0,9,10,2019,Love Is Thicker Than Water,I Love You Scene,tt4092422 bqy-R0SemoM,2016.0,1,10,2019,Love Is Thicker Than Water,Come Like a Tornado Scene,tt4092422 YOCEHKSgwlQ,2018.0,1,10,2019,Annihilation,Albino Alligator Attack Scene,tt2798920 ZrDL3HQCwE8,2018.0,4,10,2019,Annihilation,A Bear in the Cabin Scene,tt2798920 xC3PGTTjX7E,2018.0,2,10,2019,Annihilation,Found Footage Scene,tt2798920 mAB-hSPmzjk,2018.0,8,10,2019,Annihilation,Cosmic Birth Scene,tt2798920 Mg0bvyIEHcs,2018.0,5,10,2019,Annihilation,The Mutant Bear Scene,tt2798920 Gi3K-CApAS4,2018.0,9,10,2019,Annihilation,The Humanoid Scene,tt2798920 RSl6bwZabjA,2018.0,6,10,2019,Annihilation,Josie's Refraction Scene,tt2798920 282_VCffiTo,2018.0,10,10,2019,Annihilation,The End of Us Scene,tt2798920 VHj96nAjRn0,2018.0,3,10,2019,Annihilation,The Fungal Horror Scene,tt2798920 kVbmTKqZ31M,2018.0,7,10,2019,Annihilation,The Shimmer Speaks Scene,tt2798920 aPdxMGV1Y28,2018.0,1,6,2019,Monsterland 2,Brace Face Scene,tt7575702 2kdSBZ2QieY,2018.0,4,6,2019,Monsterland 2,Alien Abortion Scene,tt7575702 jcmTZfv5z-k,2018.0,2,6,2019,Monsterland 2,The Beast Attacks Scene,tt7575702 hq4lKhTXzXQ,2018.0,3,6,2019,Monsterland 2,Let's Feast Scene,tt7575702 rdWIo5R10CM,2018.0,5,6,2019,Monsterland 2,Killing The Killer Scene,tt7575702 ZyMP_jN2Veg,2018.0,6,6,2019,Monsterland 2,A Simple Procedure Scene,tt7575702 MFN2fMP05CI,2017.0,3,8,2019,The Purging Hour,Bump In The Night Scene,tt4953610 S3MGT2fahAY,1995.0,10,10,2019,Tales From the Crypt: Demon Knight,I'm Gonna Take Your Heart Scene,tt0114608 5zileWIEgoQ,1995.0,1,10,2019,Tales From the Crypt: Demon Knight,Hot and Squishy Scene,tt0114608 Kuy5Qgp5pvg,1995.0,4,10,2019,Tales From the Crypt: Demon Knight,I Can Give You Love Scene,tt0114608 2sX5DMSCipI,1995.0,7,10,2019,Tales From the Crypt: Demon Knight,Possessed Uncle Willy Scene,tt0114608 ewiNzru8Kek,1995.0,6,10,2019,Tales From the Crypt: Demon Knight,Monsters in the Mines Scene,tt0114608 7sXlyaQ_ZHs,1995.0,2,10,2019,Tales From the Crypt: Demon Knight,Condemned to Hell Scene,tt0114608 urbo6F_qD5k,1995.0,9,10,2019,Tales From the Crypt: Demon Knight,Blood-Covered Badass Scene,tt0114608 fbDgv4huUp4,1995.0,3,10,2019,Tales From the Crypt: Demon Knight,Demons At The Door Scene,tt0114608 MWc0I1-Sfj4,1995.0,8,10,2019,Tales From the Crypt: Demon Knight,You Ain't Such a Bad Fella Scene,tt0114608 D7gk8nagjHU,1995.0,5,10,2019,Tales From the Crypt: Demon Knight,Demonic Hooker Scene,tt0114608 H6jj52hYXeQ,2017.0,5,8,2019,The Purging Hour,Car Trouble Scene,tt4953610 FFnlaQlI1So,2015.0,1,8,2019,The Purging Hour,Following the Blood Scene,tt4953610 ogUC0Fcvh7g,2015.0,2,8,2019,The Purging Hour,Stranger In The Woods Scene,tt4953610 UkPkaNawTUw,2017.0,4,8,2019,The Purging Hour,Coming Unhinged Scene,tt4953610 c_SJMeRltkA,2017.0,7,8,2019,The Purging Hour,Gory Garage Scene,tt4953610 0yAYgv2YQ5k,2017.0,8,8,2019,The Purging Hour,Death at the Door Scene,tt4953610 NirTc-GvKLk,2017.0,6,8,2019,The Purging Hour,A Father's Worst Nightmare Scene,tt4953610 PkUS3Y9bR9s,2017.0,6,8,2019,Strange Events,Elevator Stabbing Scene,tt7043070 5k-dlqqHE2M,2007.0,1,10,2019,Dead Silence,White As A Sheet Scene,tt0455760 qTey0qxMboA,2007.0,2,10,2019,Dead Silence,Sleeping with the Enemy Scene,tt0455760 n1VEmXiaFY4,2007.0,3,10,2019,Dead Silence,The Story of Mary Shaw Scene,tt0455760 p0cf4-1zuOk,2007.0,10,10,2019,Dead Silence,Now Who's The Dummy? Scene,tt0455760 rOzJnj3UmNE,2007.0,4,10,2019,Dead Silence,Mortuary Massacre Scene,tt0455760 X2X3DxFAFlQ,2007.0,5,10,2019,Dead Silence,Our Family's Curse Scene,tt0455760 Y9Nt3hlMUUI,2007.0,7,10,2019,Dead Silence,The Perfect Doll Scene,tt0455760 oEHayxH_YT8,2007.0,6,10,2019,Dead Silence,It's a Boy Scene,tt0455760 -t06SZje8O0,2007.0,8,10,2019,Dead Silence,Attack of the Killer Dolls Scene,tt0455760 z7J95xF4vW8,2007.0,9,10,2019,Dead Silence,Kill Billy Scene,tt0455760 DyUus5cUe08,2017.0,2,8,2019,Strange Events,Scary Sister Scene,tt7043070 aHI-JX6Q3Xk,2017.0,3,8,2019,Strange Events,Hallway Of Horror Scene,tt7043070 rHIIMIBMvng,2017.0,1,8,2019,Strange Events,Playback Scene,tt7043070 py7xqlpvCIk,2017.0,7,8,2019,Strange Events,Death by Toothbrush Scene,tt7043070 6puVCaR2E7M,2017.0,4,8,2019,Strange Events,Did You Miss Us? Scene,tt7043070 dXk2wGeBUHE,2017.0,8,8,2019,Strange Events,Sexorcism Scene,tt7043070 eQSqgubHzn0,2017.0,5,8,2019,Strange Events,A Relaxing Bubble Death Scene,tt7043070 eB-ldQkL--0,2019.0,2,10,2019,Escape Room,The Oven Room Scene,tt5886046 Kiw89e1mHpM,2019.0,8,10,2019,Escape Room,You Can't Leave Scene,tt5886046 jjwg2PeDUxM,2019.0,6,10,2019,Escape Room,Hallucination Room Scene,tt5886046 aW3-E3My-kc,2019.0,1,10,2019,Escape Room,Walls Closing in Scene,tt5886046 7mm8aQCp_oc,2019.0,5,10,2019,Escape Room,Test Your Limits Scene,tt5886046 X8w0J4y5X4g,2019.0,10,10,2019,Escape Room,Let's Play Again Scene,tt5886046 S6yZ-K4SHJU,2019.0,4,10,2019,Escape Room,Hold the Phone Scene,tt5886046 z7siqPhc1qc,2019.0,3,10,2019,Escape Room,Trapped Under Ice Scene,tt5886046 StoThowf7Y4,2019.0,9,10,2019,Escape Room,No Way Out Scene,tt5886046 E-EDJ6Z8mS8,2019.0,7,10,2019,Escape Room,"Breathe, Bitch! Scene",tt5886046 8uLL9nYu9YA,2009.0,1,10,2019,Haunting of Winchester House,Paranormal Investigator Scene,tt1521787 6qXs7Yp75M8,2009.0,9,10,2019,Haunting of Winchester House,Exorcising the Ghosts Scene,tt1521787 UU_Ly8gXV6M,2009.0,10,10,2019,Haunting of Winchester House,Stage Two Ghost Scene,tt1521787 REkL4uLFnPs,2009.0,7,10,2019,Haunting of Winchester House,Stage One Ghost Scene,tt1521787 ST9ouIvHftA,2009.0,6,10,2019,Haunting of Winchester House,What Do You Want Scene,tt1521787 ntqVq02V2v0,2009.0,2,10,2019,Haunting of Winchester House,Demon Baby Scene,tt1521787 LMcBi9a8_RQ,2009.0,5,10,2019,Haunting of Winchester House,Where It All Started Scene,tt1521787 b31BhA8om1E,2009.0,8,10,2019,Haunting of Winchester House,Breaking the Circle Scene,tt1521787 I3G-1_l97K4,2009.0,4,10,2019,Haunting of Winchester House,Chasing in the Dark Scene,tt1521787 WjWpGhzYS6o,2009.0,3,10,2019,Haunting of Winchester House,Out of the Closet Scene,tt1521787 G5aoRyZ-QtM,2019.0,2,10,2019,Miss Bala,Turning Informant Scene,tt5941692 tEyY-ijoyaQ,2019.0,7,10,2019,Miss Bala,Trafficking Victims Scene,tt5941692 HhmpYA22oio,2019.0,8,10,2019,Miss Bala,Just Smile and Accept Scene,tt5941692 VLm7BuSsFK8,2019.0,9,10,2019,Miss Bala,The Seductive Assassin Scene,tt5941692 PdmlJSk6QAk,2019.0,10,10,2019,Miss Bala,Deadly Miss Baja Scene,tt5941692 d0c6KWKMAF8,2019.0,6,10,2019,Miss Bala,The Wrong Snitch Scene,tt5941692 FbDFmWdG3NU,2019.0,4,10,2019,Miss Bala,Crossing the Border Scene,tt5941692 qoXJJin1e7g,2019.0,1,10,2019,Miss Bala,Kidnapper Cop Scene,tt5941692 891-YR-fgsk,2019.0,3,10,2019,Miss Bala,Take Your Clothes Off Scene,tt5941692 fwITaMQj7S8,2019.0,5,10,2019,Miss Bala,Parking Lot Shootout Scene,tt5941692 3TF7zAiuX1k,2016.0,1,10,2019,Almost Holy,The Ukrainian Punisher Scene,tt3080844 qHizQ-En6Tk,2016.0,2,10,2019,Almost Holy,Restoring Childhoods Scene,tt3080844 N7wkGjBcjp0,2016.0,4,10,2019,Almost Holy,Don't Force Me to Sin Scene,tt3080844 NWNMrmwD7Xo,2016.0,10,10,2019,Almost Holy,All the Tears in the World Scene,tt3080844 QteR6PIwTNk,2016.0,8,10,2019,Almost Holy,The President of Street Kids Scene,tt3080844 fXn18S0O52A,2016.0,7,10,2019,Almost Holy,Lenin's Legacy Scene,tt3080844 wS93oTI5JY8,2016.0,9,10,2019,Almost Holy,This Is the Real Ukraine Scene,tt3080844 9J_YOz9jvG4,2016.0,6,10,2019,Almost Holy,You're Home Now Scene,tt3080844 XP2jPEAalOw,2016.0,3,10,2019,Almost Holy,Becoming a Good Person Scene,tt3080844 ljzeZK56UeY,2016.0,5,10,2019,Almost Holy,The Soviet Superman Scene,tt3080844 sxGRFqybDw8,2016.0,1,9,2019,The Pass,Erotic Tension Scene,tt5160154 WUgVUfYuEiQ,2016.0,5,9,2019,The Pass,Trapped in the Closet Scene,tt5160154 JXRw_5ug68w,2016.0,2,9,2019,The Pass,Blackface & Whiteface Scene,tt5160154 VJECUbUadpg,2018.0,5,10,2019,Assassination Nation,Home Invasion Scene,tt6205872 Qh5tZM4ybhI,2016.0,7,9,2019,The Pass,Three's a Crowd Scene,tt5160154 y-qCvfXMTlg,2018.0,4,10,2019,Assassination Nation,Shame and a Shovel Scene,tt6205872 jyDUZd-Orlc,2018.0,7,10,2019,Assassination Nation,Trapped in the Bathroom Scene,tt6205872 944BOVL_y_U,2018.0,10,10,2019,Assassination Nation,Trigger Warning Scene,tt6205872 Q1khILbP8yU,2018.0,9,10,2019,Assassination Nation,Saving Bex Scene,tt6205872 5oHNA8muC4I,2018.0,2,10,2019,Assassination Nation,The Secret's Out Scene,tt6205872 2k0S-F8VIhI,2018.0,3,10,2019,Assassination Nation,Cheerleader Knockout Scene,tt6205872 NadEkwOLA7k,2018.0,6,10,2019,Assassination Nation,Taking Back the Night Scene,tt6205872 S0X0KScmHvo,2018.0,8,10,2019,Assassination Nation,Calling Shotgun Scene,tt6205872 tfUt-J2GCmA,2018.0,1,10,2019,Assassination Nation,Peeping Tom Scene,tt6205872 lQm7hpsJsPA,2016.0,4,9,2019,The Pass,Do What You Agreed to Do Scene,tt5160154 CVjRQMnURtM,2016.0,6,9,2019,The Pass,I Wanted You to Come Back Scene,tt5160154 luE7cUCzQK4,2016.0,3,9,2019,The Pass,Their First Kiss Scene,tt5160154 oJT7pQyq63M,2016.0,8,9,2019,The Pass,I Dare You to Kiss Him Scene,tt5160154 8510wKZLa6g,2016.0,9,9,2019,The Pass,Toying With Boys Scene,tt5160154 _nnGxztgrQk,2014.0,7,10,2019,Mr. Peabody & Sherman,You Used the Wayback! Scene,tt0864835 jfhEIIK-jB8,2014.0,10,10,2019,Mr. Peabody & Sherman,Punching the Future in the Face Scene,tt0864835 AhcxeUrWTRc,2014.0,5,10,2019,Mr. Peabody & Sherman,The Flying Machine Scene,tt0864835 rWlFWMR9MfY,2014.0,6,10,2019,Mr. Peabody & Sherman,Going Greek Scene,tt0864835 PiL1okP-jbc,2014.0,8,10,2019,Mr. Peabody & Sherman,Time Crash Scene,tt0864835 9L-HJ7BVR6A,2014.0,2,10,2019,Mr. Peabody & Sherman,The French Revolution Scene,tt0864835 jjPq-r91oB4,2014.0,9,10,2019,Mr. Peabody & Sherman,I'm a Dog Too! Scene,tt0864835 T1IyMJOC0JM,2014.0,4,10,2019,Mr. Peabody & Sherman,Egyptian Wedding Escape Scene,tt0864835 Ru_KziPyopw,2014.0,3,10,2019,Mr. Peabody & Sherman,My Beautiful Boy Scene,tt0864835 ZgeAaV-OFvs,2014.0,1,10,2019,Mr. Peabody & Sherman,The Story of Mr. Peabody Scene,tt0864835 G-I4i0ClrmQ,2018.0,7,8,2019,Flower,Teen Killers on the Run Scene,tt2582784 Pf9UUPDJl9k,2018.0,6,8,2019,Flower,"Good Cop, Bad Mom Scene",tt2582784 iM0XndiNfd8,2018.0,4,8,2019,Flower,Parking Lot Makeout Scene,tt2582784 _v0aLo9ualA,2018.0,3,8,2019,Flower,Market Meet Cute Scene,tt2582784 ZNQVHnzKvjg,2018.0,8,8,2019,Flower,Runaway Romance Scene,tt2582784 jWtYVevvApk,2018.0,1,8,2019,Flower,Blackmailing a Cop Scene,tt2582784 0kM0c3Q-hHQ,2018.0,5,8,2019,Flower,What Did You Do?! Scene,tt2582784 UpsprkCDFOs,2018.0,2,8,2019,Flower,Abuse Claim Scene,tt2582784 KhS2-vKr1JY,2002.0,10,10,2019,Spirit,Finally Home Scene,tt0245429 JrjycvHR0iI,2016.0,3,10,2019,Blue Jay,Here's to Eighty More Scene,tt5912454 qlUJueukntw,2016.0,6,10,2019,Blue Jay,Dibs Scene,tt5912454 futultLrWms,2002.0,7,10,2019,Spirit,Sound the Bugle Scene,tt0245429 BfF5J0uSC3E,2002.0,1,10,2019,Spirit,Grows Up Scene,tt0245429 Ca273QV9ik8,2002.0,6,10,2019,Spirit,Attack on the Lakota Scene,tt0245429 -Kztqrjp2yw,2002.0,3,10,2019,Spirit,Breaking Scene,tt0245429 0J4K03Owgwc,2002.0,9,10,2019,Spirit,Canyon Chase Scene,tt0245429 dRVq4Um7E5Q,2002.0,4,10,2019,Spirit,Training Scene,tt0245429 Z9h-ht1mVkw,2002.0,8,10,2019,Spirit,Engine of Destruction Scene,tt0245429 QSqUVzkUvj8,2002.0,5,10,2019,Spirit,Horses in Love Scene,tt0245429 weEay_Y4EeE,2002.0,2,10,2019,Spirit,Captured by Cowboys Scene,tt0245429 WgRUpptAcAA,2016.0,10,10,2019,Blue Jay,You Are My World Scene,tt5912454 a88UYg3uwZw,2016.0,4,10,2019,Blue Jay,"Happy Anniversary, Mr. Henderson Scene",tt5912454 VbQOa65nKqU,2016.0,2,10,2019,Blue Jay,Trashy Romance Novels Scene,tt5912454 AL5i8ko_Blg,2016.0,5,10,2019,Blue Jay,Our Prom Song Scene,tt5912454 vGqM44xx4zI,2016.0,7,10,2019,Blue Jay,Will You Kiss Me? Scene,tt5912454 4x8o78xHel8,2016.0,9,10,2019,Blue Jay,We Would've Been So Happy Scene,tt5912454 vEaLVMOwHn4,2016.0,8,10,2019,Blue Jay,High School Lovers Scene,tt5912454 oyXKvCRzYz8,2016.0,1,10,2019,Blue Jay,My Face Leaks Scene,tt5912454 yEqjnlWEIcg,2006.0,3,10,2019,Flushed Away,Shrine To Beauty Scene,tt0424095 OypxsTReBOM,2012.0,5,8,2019,500 MPH Storm,Acid Burn Scene,tt2518848 mI6O2d4Ieok,2006.0,7,10,2019,Flushed Away,Rat-Mobile Chase Scene,tt0424095 cbN7TQSGYlI,2006.0,2,10,2019,Flushed Away,Down The Toilet Scene,tt0424095 r67faKKQyO4,2006.0,10,10,2019,Flushed Away,Saving The Sewer Scene,tt0424095 eOYwXi0B6KQ,2006.0,5,10,2019,Flushed Away,Painful Escape Scene,tt0424095 2cxG6iiqEdk,2006.0,8,10,2019,Flushed Away,Le Frog and The Toad's Story Scene,tt0424095 m3XsVwEuULw,2006.0,1,10,2019,Flushed Away,Dancing with Myself Scene,tt0424095 uI7ijvSCHcI,2006.0,9,10,2019,Flushed Away,Le Frog Fight Scene,tt0424095 ePgiRqRIdwg,2006.0,6,10,2019,Flushed Away,Ice Cold Rita Scene,tt0424095 VGcOGt-OV7s,2006.0,4,10,2019,Flushed Away,Getting Fridged Scene,tt0424095 ABLVvVkVtHo,2012.0,3,8,2019,500 MPH Storm,The Hypercane Scene,tt2518848 DotrfvKEyiI,2012.0,6,8,2019,500 MPH Storm,Helicopter Crash Scene,tt2518848 lXKwuj1pqrM,2012.0,2,8,2019,500 MPH Storm,The Mysterious Stranger Scene,tt2518848 bMblXxTNWQg,2012.0,8,8,2019,500 MPH Storm,Blowing Up The Station Scene,tt2518848 p7h8oBhP_lE,2012.0,7,8,2019,500 MPH Storm,In The Eye Of The Storm Scene,tt2518848 WtVDF5bNkqM,2012.0,1,8,2019,500 MPH Storm,Outrunning A Tornado Scene,tt2518848 PFjN94zKbc4,2012.0,4,8,2019,500 MPH Storm,Escaping The Flood Scene,tt2518848 KfxQi9_BfHI,1998.0,8,10,2019,Antz,Flooding The Colony Scene,tt0120587 jEeRRb8wnqQ,2012.0,6,10,2019,Super Cyclone,Swallowing Him Whole Scene,tt2381317 3RWHkM-krJA,2012.0,4,10,2019,Super Cyclone,Everything's On Fire! Scene,tt2381317 wZWNmL5VsIs,1998.0,2,10,2019,Antz,The Yowch Dance Scene,tt0120587 6PrFocPT-Rs,1998.0,10,10,2019,Antz,The Mad General Mandible Scene,tt0120587 -rsImQShehk,1998.0,3,10,2019,Antz,The Termite War Scene,tt0120587 Sbtm5uE3cCQ,1998.0,6,10,2019,Antz,Chip and Miffy Scene,tt0120587 gFX14TEiBOw,1998.0,1,10,2019,Antz,You Are Insignificant Scene,tt0120587 0h0S6EmQWrI,1998.0,7,10,2019,Antz,Stomped Flat Scene,tt0120587 XrujkDtd0iY,1998.0,9,10,2019,Antz,A Ladder Of Ants Scene,tt0120587 eK20uOpc_AM,1998.0,4,10,2019,Antz,Weaver Fills in for Z Scene,tt0120587 M9CgWWkwvdw,1998.0,5,10,2019,Antz,Kidnapping The Princess Scene,tt0120587 T0gaeDWYHr4,2012.0,9,10,2019,Super Cyclone,Breaking Up Is Hard To Do Scene,tt2381317 P430SxnueE4,2012.0,3,10,2019,Super Cyclone,Oil Tornado Scene,tt2381317 qURMZDMKpxY,2012.0,2,10,2019,Super Cyclone,Men Overboard! Scene,tt2381317 F0xKJcGIQZM,2012.0,5,10,2019,Super Cyclone,When The Dam Burst Scene,tt2381317 1DNNWWORGo0,2012.0,1,10,2019,Super Cyclone,Exploding Volcano Scene,tt2381317 2k-G7TPLUfk,2012.0,10,10,2019,Super Cyclone,A Brighter Future Scene,tt2381317 86mBBMobUdY,2012.0,7,10,2019,Super Cyclone,Everybody Drowns Scene,tt2381317 Kq3ZaI7ccrM,2012.0,8,10,2019,Super Cyclone,Flying Into The Firestorm Scene,tt2381317 BFWChdiNlEg,2013.0,3,10,2019,Alone for Christmas,Chandelier Shenanigans Scene,tt3120508 Spg3JX8dRos,2013.0,2,10,2019,Alone for Christmas,Getting Decked By A Dog Scene,tt3120508 MZG1HbQ3KCE,1994.0,10,10,2019,The Little Rascals,Winner By A Hair Scene,tt0110366 E-F92GOLVcU,1994.0,9,10,2019,The Little Rascals,Bubble Trouble Scene,tt0110366 7S2ffMUk7iI,1994.0,6,10,2019,The Little Rascals,Letter to Darla Scene,tt0110366 ufllQr0ClXg,1994.0,2,10,2019,The Little Rascals,Date With Destruction Scene,tt0110366 VC0PPBrYBco,1994.0,1,10,2019,The Little Rascals,You Are So Beautiful To Me Scene,tt0110366 mHGHJwXWh1k,1994.0,3,10,2019,The Little Rascals,Clubhouse Fire Scene,tt0110366 F8UwjJzF4LY,1994.0,7,10,2019,The Little Rascals,Alfalfa Runs from the Bullies Scene,tt0110366 DVA8vzEbm9Y,1994.0,5,10,2019,The Little Rascals,Taking Out a Loan Scene,tt0110366 aZJG26fSy94,1994.0,4,10,2019,The Little Rascals,Girls vs. Boys Scene,tt0110366 tNvDa9kTDUw,1994.0,8,10,2019,The Little Rascals,L.O.V.E. Scene,tt0110366 VO_llDPp0kY,2013.0,4,10,2019,Alone for Christmas,Gone Fishin' Scene,tt3120508 zanh_ElKfdI,2013.0,6,10,2019,Alone for Christmas,Stupid Pet Tricks Scene,tt3120508 W_aGbCWYX2Q,2013.0,5,10,2019,Alone for Christmas,Shock & Ow! Scene,tt3120508 62Zbtotq0B8,2013.0,10,10,2019,Alone for Christmas,Wrapping It Up Scene,tt3120508 5MpwO0oMUBY,2013.0,1,10,2019,Alone for Christmas,Breaking Out Of The Kennel Scene,tt3120508 far9-9beq-M,2013.0,8,10,2019,Alone for Christmas,Double Trouble Scene,tt3120508 frwyMLRko_8,2013.0,9,10,2019,Alone for Christmas,Treadmill Terror Scene,tt3120508 3mhdNBdzHO8,2013.0,7,10,2019,Alone for Christmas,Bone Alone Scene,tt3120508 KD6FsEaD-3U,2018.0,2,10,2019,A Quiet Place,Old Man's Death Scene,tt6644200 4CmmKmlXD9I,2018.0,1,10,2019,A Quiet Place,Beau's Death Scene,tt6644200 CeJQF4L0hx8,2018.0,4,10,2019,A Quiet Place,The Bathtub Scene,tt6644200 Zufljc_8uLk,2018.0,7,10,2019,A Quiet Place,Hunted in the Field Scene,tt6644200 2F4ExP0q6RU,2018.0,5,10,2019,A Quiet Place,The Flooded Basement Scene,tt6644200 1eoKvx5X9JQ,2018.0,9,10,2019,A Quiet Place,Finding the Weakness Scene,tt6644200 rwDDgGuCVS0,2018.0,6,10,2019,A Quiet Place,Trapped in the Silo Scene,tt6644200 ThWvubM3qSs,2018.0,3,10,2019,A Quiet Place,They Hunt by Sound Scene,tt6644200 kTtxe4pWpfQ,2018.0,10,10,2019,A Quiet Place,Killing the Alien Scene,tt6644200 5WvXdaXIbYw,2018.0,8,10,2019,A Quiet Place,I Have Always Loved You Scene,tt6644200 RKlctKGIpsA,2016.0,5,9,2019,Independents' Day,Anti-Alien Militiamen Scene,tt1628841 a1dqJn-r0-k,2016.0,1,9,2019,Independents' Day,Alien Dogfight Scene,tt1628841 5tZeutuxfJw,2016.0,4,9,2019,Independents' Day,Poison Gas Attack Scene,tt1628841 AySMP0SgVFY,2016.0,8,9,2019,Independents' Day,Shaking Hands with an Alien Scene,tt1628841 DPU8L2vJvsc,2016.0,2,9,2019,Independents' Day,Aliens Over DC Scene,tt1628841 yriA_JXQ8dw,2016.0,9,9,2019,Independents' Day,Taking Back the Planet Scene,tt1628841 9TwfC7_M2b4,2016.0,3,9,2019,Independents' Day,The Healing Chamber Scene,tt1628841 KdBP8sYgMT0,2016.0,7,9,2019,Independents' Day,Sabotaging the Spaceship Scene,tt1628841 5nWugkh7A5U,2016.0,6,9,2019,Independents' Day,Uncovering the Alien Plans Scene,tt1628841 Kqdi0X9vJ0Q,2017.0,1,10,2019,Beauty Mark,Rental Negotiation Scene,tt4520924 9EF7lRxLbtg,2017.0,2,10,2019,Beauty Mark,Legal Limits Scene,tt4520924 FbI1dmDdLg8,2017.0,4,10,2019,Beauty Mark,Abuse Stories Scene,tt4520924 z1PcJZEi_js,2017.0,3,10,2019,Beauty Mark,Religious Indifference Scene,tt4520924 ZgAf9AuNc6Q,2013.0,3,10,2019,The Great Gatsby,Gatsby's Wild Ride Scene,tt1343092 A1-XFXX8rU4,2013.0,10,10,2019,The Great Gatsby,The Green Light Scene,tt1343092 6rVFFaIyfH0,2013.0,6,10,2019,The Great Gatsby,Loving Daisy Scene,tt1343092 2FlG1Z6jY-0,2013.0,8,10,2019,The Great Gatsby,It Was Daisy Scene,tt1343092 jL6rrLaw6rc,2013.0,5,10,2019,The Great Gatsby,Invitation to Tea Scene,tt1343092 VKl41s51JvE,2013.0,7,10,2019,The Great Gatsby,A Fit of Rage Scene,tt1343092 2zHHkSu1br4,2013.0,2,10,2019,The Great Gatsby,The Mysterious Mr. Gatsby Scene,tt1343092 2Qz0AREgsdQ,2013.0,4,10,2019,The Great Gatsby,Kinda Takes Your Breath Away Scene,tt1343092 tFkpixS3QZQ,2013.0,9,10,2019,The Great Gatsby,Poolside Murder Scene,tt1343092 ZQHhiZUNM3Q,2013.0,1,10,2019,The Great Gatsby,Beautiful Little Fool Scene,tt1343092 RVVBffj2v8o,2017.0,5,10,2019,Beauty Mark,I Did Something With My Life Scene,tt4520924 8cjxrd4MMMU,2017.0,10,10,2019,Beauty Mark,A Deal With The Devil Scene,tt4520924 XgZDk5PcLYg,2017.0,8,10,2019,Beauty Mark,Strip Club Auditions Scene,tt4520924 cUFdtdKFaOo,2017.0,9,10,2019,Beauty Mark,Going Down Scene,tt4520924 CMMXbRt2zLQ,2017.0,7,10,2019,Beauty Mark,Nowhere Else To Go Scene,tt4520924 qIsyU3MH-Zw,2017.0,6,10,2019,Beauty Mark,I Needed You To Be There! Scene,tt4520924 UwN27CAbgFQ,2014.0,1,10,2019,Björk: Biophilia Live,Thunderbolt Scene,tt3626442 OSEHYgl2-_M,2014.0,10,10,2019,Björk: Biophilia Live,Nattura Scene,tt3626442 xY6bhYtH8Pw,2014.0,3,10,2019,Björk: Biophilia Live,Crystalline Scene,tt3626442 iNiZJmh1ALI,2014.0,5,10,2019,Björk: Biophilia Live,Hidden Place Scene,tt3626442 nf_4vFdS80M,2014.0,8,10,2019,Björk: Biophilia Live,Mutual Core Scene,tt3626442 Dp8y3CiQDgw,2014.0,7,10,2019,Björk: Biophilia Live,Isobel Scene,tt3626442 g_HrR50Z5LM,2014.0,6,10,2019,Björk: Biophilia Live,Possibly Maybe Scene,tt3626442 Od3sXn4mOF0,2014.0,4,10,2019,Björk: Biophilia Live,Hollow Scene,tt3626442 3hPy770hf_s,2014.0,9,10,2019,Björk: Biophilia Live,Cosmogony Scene,tt3626442 bOge5t77CLw,2014.0,2,10,2019,Björk: Biophilia Live,Moon Scene,tt3626442 Y8AM8s9zoKY,2017.0,4,10,2019,Along for the Ride,The Disease Of Self-Destruction Scene,tt3986978 dKX4NN38vpc,2017.0,8,10,2019,Along for the Ride,Out of the Blue Scene,tt3986978 RcjY_I91okg,2017.0,10,10,2019,Along for the Ride,Blue Velvet Scene,tt3986978 FzemDO1TITY,2017.0,9,10,2019,Along for the Ride,Plastered Into the Wall Scene,tt3986978 WNU59WxKw-g,2017.0,1,10,2019,Along for the Ride,The Last Movie Behind the Scenes Scene,tt3986978 iFzuPtVopnE,2017.0,2,10,2019,Along for the Ride,Making The Last Movie Scene,tt3986978 ARQrc5qPDPE,2017.0,7,10,2019,Along for the Ride,Apocalypse Now Scene,tt3986978 pWREOi5GPZ4,2017.0,5,10,2019,Along for the Ride,Showdown At Los Compadres Scene,tt3986978 TAN8GthZg7s,2017.0,3,10,2019,Along for the Ride,Dennis Hopper's Final Cut Scene,tt3986978 Cw7Ed1B3g18,2017.0,6,10,2019,Along for the Ride,A True Method Actor Scene,tt3986978 PlKDQqKh03Y,2011.0,3,10,2019,Moneyball,He Gets On Base Scene,tt1210166 aNDj-H1jxV0,2011.0,2,10,2019,Moneyball,It's An Unfair Game Scene,tt1210166 fkiY6TBT4mo,2011.0,6,10,2019,Moneyball,Not Worried Scene,tt1210166 JXyisZLObHc,2011.0,1,10,2019,Moneyball,We Need Money Scene,tt1210166 Ofkb_7EnunM,2011.0,10,10,2019,Moneyball,That's My Offer Scene,tt1210166 AKXKkeLQWac,2011.0,4,10,2019,Moneyball,The New Direction Scene,tt1210166 IpoReT0HjsQ,2011.0,7,10,2019,Moneyball,Theoretically a Win Scene,tt1210166 IgKQ8z_xNhk,2011.0,9,10,2019,Moneyball,Change the Game Scene,tt1210166 1pzV9GoSuys,2011.0,5,10,2019,Moneyball,Soda Money Scene,tt1210166 ySC245RIiD8,2011.0,8,10,2019,Moneyball,Turn Around Scene,tt1210166 HCGVmIe_V1c,2015.0,2,10,2019,Anomalisa,Come to My Room? Scene,tt2401878 YJV5WB1wxdk,2015.0,6,10,2019,Anomalisa,The Only Other Person Scene,tt2401878 6F_Wp3IlryI,2015.0,8,10,2019,Anomalisa,Did I Do Something Wrong? Scene,tt2401878 mXvst0jlR9Q,2015.0,3,10,2019,Anomalisa,Kiss Me Again Scene,tt2401878 NmSNUylSNvo,2015.0,10,10,2019,Anomalisa,Who Are You? Scene,tt2401878 wTqLwoaEUmU,2015.0,1,10,2019,Anomalisa,I Might Have Psychological Problems Scene,tt2401878 zSh-Wy2vvHY,2015.0,9,10,2019,Anomalisa,There's Something Wrong With Me Scene,tt2401878 xPk6RGGwQC8,2015.0,4,10,2019,Anomalisa,An Anomaly Scene,tt2401878 XAVgIM5X42w,2015.0,5,10,2019,Anomalisa,I Love You Scene,tt2401878 G1uBkHVIGfc,2015.0,7,10,2019,Anomalisa,An Anomaly No More Scene,tt2401878 Aq4LMaeZAns,2018.0,2,10,2019,Modern Life Is Rubbish,All You Need Is Love Scene,tt2385752 oTd-6xia-xY,2018.0,9,10,2019,Modern Life Is Rubbish,Backstage Advice Scene,tt2385752 UIpSn7Kma80,2018.0,3,10,2019,Modern Life Is Rubbish,Awkward First Sex Scene,tt2385752 Oj8S0fNum9g,2017.0,8,10,2019,Same Kind of Different as Me,Christmas Dinner Scene,tt1230168 d7WraA-roN8,2017.0,3,10,2019,Same Kind of Different as Me,The Man From My Dream Scene,tt1230168 WO0KS0mbu80,2017.0,6,10,2019,Same Kind of Different as Me,A History of Oppression Scene,tt1230168 paPWv3HjXAI,2017.0,1,10,2019,Same Kind of Different as Me,Prophetic Dreams Scene,tt1230168 s8tXE43jYho,2017.0,5,10,2019,Same Kind of Different as Me,Black Klansman Scene,tt1230168 I-Iankzmv3I,2017.0,9,10,2019,Same Kind of Different as Me,Deborah's Last Dance Scene,tt1230168 L4MyGhbXKZU,2017.0,7,10,2019,Same Kind of Different as Me,Denver Confesses Scene,tt1230168 Q4r4jGPegHs,2017.0,4,10,2019,Same Kind of Different as Me,Compassion for the Homeless Scene,tt1230168 sjEDF282UvY,2017.0,2,10,2019,Same Kind of Different as Me,Calling His Mistress Scene,tt1230168 -pXlicO85dk,2017.0,10,10,2019,Same Kind of Different as Me,Welcome Home Scene,tt1230168 TYJXBdLgPks,2018.0,4,10,2019,Modern Life Is Rubbish,First Gig Scene,tt2385752 tbWLF2J10xY,2018.0,10,10,2019,Modern Life Is Rubbish,Natalie's Change of Heart Scene,tt2385752 4a_1wkseCkQ,2018.0,6,10,2019,Modern Life Is Rubbish,The Shoplifter of the Soul Scene,tt2385752 2Pl7zNuA-vY,2018.0,5,10,2019,Modern Life Is Rubbish,Weathering The Storm Scene,tt2385752 sJALMf17QBg,2018.0,1,10,2019,Modern Life Is Rubbish,Romantic Record Rendezvous Scene,tt2385752 TOzf01qWO-Y,2018.0,8,10,2019,Modern Life Is Rubbish,My Liquorice Allsort Girl Scene,tt2385752 iIPeQxzLVlY,2018.0,7,10,2019,Modern Life Is Rubbish,The Ex Meets the Next Scene,tt2385752 9H8h3YZTsmg,2016.0,2,10,2019,The Take,Rooftop Chase Scene,tt2368619 AqV77k80Iw0,2016.0,1,10,2019,The Take,Teddy Bear Bomb Scene,tt2368619 7yg4b79rNQY,2016.0,8,10,2019,The Take,Storming the Bank of France Scene,tt2368619 5BL8zybMd-M,2016.0,10,10,2019,The Take,Thief vs. Terrorist Scene,tt2368619 Q7r5VtqG7cE,2016.0,9,10,2019,The Take,Bank Vault Explosion Scene,tt2368619 7UANVfaybow,2016.0,5,10,2019,The Take,Aggressive Diplomacy Scene,tt2368619 usoH9GnfJrA,2016.0,4,10,2019,The Take,You Have the Wrong Address Scene,tt2368619 Vq2YQ_fXZoA,2016.0,3,10,2019,The Take,Steal My Wallet Scene,tt2368619 Wn02SYyYhRA,2016.0,6,10,2019,The Take,Bar Fight Scene,tt2368619 Gr9p1MnLMj8,2016.0,7,10,2019,The Take,Van Smackdown Scene,tt2368619 x6PMTIOZY4A,2015.0,1,8,2019,Sacred Blood,A Tall Drink of Blood Scene,tt5081618 9JVQzj-iWI0,2015.0,3,8,2019,Sacred Blood,Vampire Shakedown Scene,tt5081618 j1DtkoNFVHY,2015.0,7,8,2019,Sacred Blood,"Wash Me, My Lover Scene",tt5081618 WgeM95snEhU,2015.0,5,8,2019,Sacred Blood,Fat Chance Scene,tt5081618 3aBcNzAFnxY,2015.0,8,8,2019,Sacred Blood,Our Love Will Be Eternal Scene,tt5081618 aQ8UQmMypws,2015.0,4,8,2019,Sacred Blood,Strip Club Fight Scene,tt5081618 gcoKGdZcf7A,2015.0,2,8,2019,Sacred Blood,The Circus of Death Scene,tt5081618 N5oKlOWxzio,2015.0,6,8,2019,Sacred Blood,Girl on Vampire Girl Scene,tt5081618 q3deD1S7v5I,2018.0,7,10,2019,Book Club,Love in the Air Scene,tt6857166 DRTuzzBTrGs,2018.0,10,10,2019,Book Club,I Would Do Anything for Love Scene,tt6857166 qVhR3cLu_zY,2018.0,4,10,2019,Book Club,He's Got a Cute Tush! Scene,tt6857166 D_D9eQtLpCI,2018.0,1,10,2019,Book Club,Romance on the Runway Scene,tt6857166 a2RgwHcY9ZM,2018.0,2,10,2019,Book Club,Making a Splash Scene,tt6857166 IrBymbqWH54,2018.0,6,10,2019,Book Club,Shut Up and Kiss Me Scene,tt6857166 8c-NNYNy5Bk,2018.0,3,10,2019,Book Club,Mile High Flirting Scene,tt6857166 3UBXU1m7rkk,2018.0,5,10,2019,Book Club,Get Your Motor Running Scene,tt6857166 AvIUAlTg5J8,2018.0,9,10,2019,Book Club,You're My Person Scene,tt6857166 imITvYE-QBo,2018.0,8,10,2019,Book Club,Driving Hard Scene,tt6857166 788ZdV-LT0U,2017.0,7,9,2019,Mrs. Hyde,"100,000 Volts Scene",tt5338644 hMYdeT6aOnE,2017.0,1,9,2019,Mrs. Hyde,School Bullies Scene,tt5338644 gkeddnrEeV8,2017.0,2,9,2019,Mrs. Hyde,A Shock To Her System Scene,tt5338644 iVzz5FIaCkA,2017.0,4,9,2019,Mrs. Hyde,Extra Tutoring Scene,tt5338644 NL_vaHjmqC0,2017.0,3,9,2019,Mrs. Hyde,Hustle & Glow Scene,tt5338644 ArOB5wVIf-Y,2017.0,5,9,2019,Mrs. Hyde,Roasted Alive Scene,tt5338644 YYZSg-BBAmw,2017.0,6,9,2019,Mrs. Hyde,Dog Gone Scene,tt5338644 EG9eUCA_MxE,2017.0,9,9,2019,Mrs. Hyde,Burning Rage Scene,tt5338644 rLj7k4gxnRg,2017.0,8,9,2019,Mrs. Hyde,You Mustn't Come Here Scene,tt5338644 vBAK4o8zHF4,2003.0,2,9,2019,Looney Tunes: Back in Action,Trouble on Set Scene,tt0318155 waeNIUB5wz4,2003.0,5,9,2019,Looney Tunes: Back in Action,Illegal Aliens,tt0318155 c6pX60F0bsI,2013.0,3,10,2019,The Bell Witch Haunting,Blood In The Pipes Scene,tt2991532 Dk2BtXCzdzc,2003.0,4,9,2019,Looney Tunes: Back in Action,"Wile E. Coyote, the Fixer Scene",tt0318155 0IWmniYe7aI,2003.0,7,9,2019,Looney Tunes: Back in Action,Martian Road Rage Scene,tt0318155 D56dpMQVGTo,2003.0,6,9,2019,Looney Tunes: Back in Action,Taz's Bride Scene,tt0318155 xfF-ZL3xvxw,2003.0,1,9,2019,Looney Tunes: Back in Action,Bugs Bunny vs. Daffy Duck Scene,tt0318155 bYO_AhZaG24,2003.0,8,9,2019,Looney Tunes: Back in Action,Duck Dodgers in the 24 1/2th Century! Scene,tt0318155 6Dg0qouE5Zo,2003.0,9,9,2019,Looney Tunes: Back in Action,"Go Home, Folks Scene",tt0318155 Wc_pikEIkcQ,2003.0,3,9,2019,Looney Tunes: Back in Action,Psycho Bugs Scene,tt0318155 gQ8uzN8MSfM,2013.0,8,10,2019,The Bell Witch Haunting,The Exorcism Scene,tt2991532 d4QJy7RMxok,2013.0,5,10,2019,The Bell Witch Haunting,Terror In The Trees Scene,tt2991532 eng2A_NwG04,2013.0,7,10,2019,The Bell Witch Haunting,Dad's Possessed Scene,tt2991532 UHwiWw0vfps,2013.0,10,10,2019,The Bell Witch Haunting,Demon In The Cave Scene,tt2991532 EqYD_u86J8E,2013.0,6,10,2019,The Bell Witch Haunting,Woodland Witch Scene,tt2991532 NIZSw5HFr60,2013.0,1,10,2019,The Bell Witch Haunting,Bloody Crime Scene,tt2991532 WhsSP-hValQ,2013.0,4,10,2019,The Bell Witch Haunting,Getting Electric With Denny Scene,tt2991532 3U7pCM576i4,2013.0,2,10,2019,The Bell Witch Haunting,Haunted iPod Scene,tt2991532 r28aUcqqgbA,2013.0,9,10,2019,The Bell Witch Haunting,Demonic Dana Scene,tt2991532 tJ4H77qrLjI,1987.0,8,9,2019,Police Academy 4,Commandeering a Hot Air Balloon Scene,tt0093756 RRDzDy5wLh4,1987.0,9,9,2019,Police Academy 4,Mid-Air Arrest Scene,tt0093756 qTjz5LJwnOw,1987.0,1,9,2019,Police Academy 4,Skateboarding Punks Scene,tt0093756 2UuM47BOqNA,1987.0,6,9,2019,Police Academy 4,Yama Yama Scene,tt0093756 shal5AF2Gxc,1987.0,4,9,2019,Police Academy 4,Let's Get Physical Scene,tt0093756 Eq4GnUgNeMg,1987.0,7,9,2019,Police Academy 4,Cops vs. Ninjas Scene,tt0093756 upPFFVaVSY4,1987.0,5,9,2019,Police Academy 4,Little Munchkin Voice Scene,tt0093756 ZrPvUd7E9HU,1987.0,2,9,2019,Police Academy 4,The .44 Magnum Scene,tt0093756 hxi06yeErvk,1987.0,3,9,2019,Police Academy 4,"Burn, Rinse, Repeat Scene",tt0093756 50CeayOz-rs,2017.0,5,10,2019,Wanderland,"Danny, the Ice Cream Guy Scene",tt6981634 wkqss9zZOhc,2017.0,1,10,2019,Wanderland,Swim With Me Scene,tt6981634 ieXrbTpZsvM,2017.0,10,10,2019,Wanderland,The Nastiest Gnome Scene,tt6981634 dfK91HGGVL8,2017.0,9,10,2019,Wanderland,The Music of the World Scene,tt6981634 1bpUlGBdKyE,2017.0,3,10,2019,Wanderland,Sweet Singing Seduction Scene,tt6981634 1wWk7qN62dI,2017.0,6,10,2019,Wanderland,Chased by the Ferryman Scene,tt6981634 aRJXM-rYZQM,2015.0,2,10,2019,Wanderland,Cougar on the Prowl Scene,tt6981634 fvXLs4FFSJc,2017.0,8,10,2019,Wanderland,The Doctor's Swing Number Scene,tt6981634 wLhu6Zy6ixo,2017.0,4,10,2019,Wanderland,Trains at the Station Scene,tt6981634 nxDhsiiBH7Q,2017.0,7,10,2019,Wanderland,Naked and Blind Scene,tt6981634 -zOoQRf6DNw,2015.0,2,10,2019,Just Eat It,Ugly Produce Scene,tt3597400 PWebnyN1kSU,2015.0,10,10,2019,Just Eat It,The Cycle of Waste Scene,tt3597400 6ZUg51T5ly8,2015.0,5,10,2019,Just Eat It,The Motherload Scene,tt3597400 aFIOmbHlYo4,2015.0,6,10,2019,Just Eat It,The Dangers of Scavenging Scene,tt3597400 H_hW3ML6Ips,2017.0,9,10,2019,The Relationtrip,Couple's Therapy Scene,tt6149802 DbJ1V4yEZP0,2016.0,7,10,2019,Rainbow Time,You're Kinda Ugly Scene,tt5167174 PniQ5j9ZqQk,1984.0,9,9,2019,Police Academy,Beatbox Riot Scene,tt0087928 J3Dc6UV1ML4,1984.0,7,9,2019,Police Academy,Good Speech Scene,tt0087928 p7zS671gCo4,1984.0,3,9,2019,Police Academy,Shoe Polish Scene,tt0087928 GIASYqV_Xds,1984.0,8,9,2019,Police Academy,Someone Call A Veterinarian! Scene,tt0087928 6sfgXGPtVQk,1984.0,4,9,2019,Police Academy,Who's Next? Scene,tt0087928 KBLBKR6bQCI,1984.0,2,9,2019,Police Academy,Let's See The Thighs Scene,tt0087928 I4tqrGqT_b0,1984.0,6,9,2019,Police Academy,"Yes, Ma'am! Scene",tt0087928 7a3vbSR4qWU,1984.0,5,9,2019,Police Academy,Come With Me! Scene,tt0087928 6OKt2CZ4ULE,1984.0,1,9,2019,Police Academy,"Larvell Jones, M.D. Scene",tt0087928 1JLugcZa7kw,2016.0,2,10,2019,Rainbow Time,Caught on Tape Scene,tt5167174 MuLtmNixbdw,2016.0,5,10,2019,Rainbow Time,Self-Pleasure Nightmare Scene,tt5167174 wQ0QXBmaY58,2016.0,4,10,2019,Rainbow Time,Do You Want to Take a Photo of Me? Scene,tt5167174 vqGsQEGHl0w,2016.0,8,10,2019,Rainbow Time,You Let Him See Me Naked? Scene,tt5167174 U9qK-5bDP4A,2016.0,6,10,2019,Rainbow Time,You Can't Grope People Scene,tt5167174 7hDIu_ZNkbk,2016.0,10,10,2019,Rainbow Time,Shonzi to the Rescue Scene,tt5167174 o561o4AQdXQ,2016.0,3,10,2019,Rainbow Time,Do You Want Me to Flip Over? Scene,tt5167174 XHEs28Z99so,2016.0,9,10,2019,Rainbow Time,Things Get Hot Scene,tt5167174 TUmckZQBzvk,2016.0,1,10,2019,Rainbow Time,Let Me Make It Up to You Scene,tt5167174 _-6IvJMziRc,2017.0,10,10,2019,The Relationtrip,Fight Your Demons Scene,tt6149802 ckSC7ZLyGG8,2017.0,7,10,2019,The Relationtrip,Strippers and Sandwiches Scene,tt6149802 zZoxnqqZpDQ,2017.0,3,10,2019,The Relationtrip,Learning How To French Kiss Scene,tt6149802 ipt7yPT4Lkw,2017.0,4,10,2019,The Relationtrip,Ripping Your Face Off Scene,tt6149802 JHvgBh9ZC3I,2017.0,2,10,2019,The Relationtrip,Dinner Delusions Scene,tt6149802 m07ShpSpKJw,2015.0,5,10,2019,The Relationtrip,Shotgun Wedding Night Scene,tt6149802 ZoWhq3dNFn0,2015.0,6,10,2019,The Relationtrip,Dead Angel Stripper Scene,tt6149802 psA_jrGe1PY,2017.0,8,10,2019,The Relationtrip,Giant Mommy Issues Scene,tt6149802 PkO3bgn-Qgs,2017.0,1,10,2019,The Relationtrip,One Man Rap Battle Scene,tt6149802 FYeKDtzDy60,2015.0,7,10,2019,Just Eat It,The Fat of the Land Scene,tt3597400 6q5DmJCpaC0,2015.0,4,10,2019,Just Eat It,Dumpster Diving Scene,tt3597400 WItFgdMdxDk,2015.0,1,10,2019,Just Eat It,Living Off Scraps Scene,tt3597400 LUjMzKQtq8U,2015.0,9,10,2019,Just Eat It,The Truth About Expired Food Scene,tt3597400 fpJjOz1Yy8c,2015.0,8,10,2019,Just Eat It,One Man's Garbage Scene,tt3597400 z_98hXRRn2A,2015.0,3,10,2019,Just Eat It,Consumer Mindset Scene,tt3597400 xq5lZuN6geo,2014.0,3,8,2019,Inherent Vice,Do You Like the Lighting? Scene,tt1791528 tr8peYDm1fE,2014.0,2,8,2019,Inherent Vice,Heroin Milk Scene,tt1791528 F9M5eGoCnO0,2014.0,1,8,2019,Inherent Vice,Frozen Banana Scene,tt1791528 4RPigjaVctQ,2014.0,5,8,2019,Inherent Vice,It's Groovy to Be Insane Scene,tt1791528 4lWui2b5GBI,2014.0,6,8,2019,Inherent Vice,Drug-Fueled Cult Scene,tt1791528 nuhGjqaBzes,2014.0,8,8,2019,Inherent Vice,Did I Hit You? Scene,tt1791528 k6pHxD7qB7k,2014.0,7,8,2019,Inherent Vice,Back Together Scene,tt1791528 eO-4vwbIJR8,2014.0,4,8,2019,Inherent Vice,Ouija Scene,tt1791528 PJze0WsDW8o,2015.0,7,10,2019,Ovum,Positive Womb Energy Scene,tt3084904 q9jTg_91KxU,2015.0,10,10,2019,Ovum,Harvesting the Eggs Scene,tt3084904 zgEsN9EckAI,2015.0,8,10,2019,Ovum,A Little Bi-Curious Scene,tt3084904 McQ2XFcPCys,2015.0,5,10,2019,Ovum,A Thorough Examination,tt3084904 vEOtK-qX4kE,2015.0,3,10,2019,Ovum,Nude Sketches Sceme,tt3084904 bTpRY4tkyio,2015.0,1,10,2019,Ovum,"No Nudity, No Distribution Scene",tt3084904 yPD2Vq50JlQ,2015.0,2,10,2019,Ovum,Rekindle Your Fire Scene,tt3084904 8zomTUuLank,2015.0,4,10,2019,Ovum,Flirting Actresses Scene,tt3084904 IoeYkolhKYM,2015.0,6,10,2019,Ovum,How to Use Needles Scene,tt3084904 NVSG5djzkdo,2015.0,9,10,2019,Ovum,We're Going to Remove Your Womb Scene,tt3084904 C_Emdu3KwHg,2012.0,4,6,2019,40 Days and Nights,"Wrong Move, Sweetie Scene",tt2439946 48DTcfNRIoM,2012.0,2,6,2019,40 Days and Nights,Sinkhole! Scene,tt2439946 jFjy1RkmXUg,2017.0,10,10,2019,Daddy's Home 2,Do We Know It's Christmas? Scene,tt5657846 JPjeOAVkSe4,2017.0,8,10,2019,Daddy's Home 2,Four Dads-a-Fighting Scene,tt5657846 h7ZUKB_zYQ0,2017.0,9,10,2019,Daddy's Home 2,I Love You Scene,tt5657846 7I6z51iYFg8,2017.0,6,10,2019,Daddy's Home 2,I Shot a Turkey and a Man Scene,tt5657846 3D0gGgMTylk,2017.0,7,10,2019,Daddy's Home 2,Improv Nightmare Scene,tt5657846 LF0dTioXk3A,2017.0,5,10,2019,Daddy's Home 2,Father-Son Bowling Scene,tt5657846 EzjFE2CnTBQ,2017.0,1,10,2019,Daddy's Home 2,The Dads Arrive Scene,tt5657846 C05qUz1ukWo,2017.0,3,10,2019,Daddy's Home 2,The Thermostat Scene,tt5657846 vnh7gxa0z4Q,2017.0,4,10,2019,Daddy's Home 2,Chopping Down the Tree Scene,tt5657846 eVzxDwu506A,2017.0,2,10,2019,Daddy's Home 2,Lights Out Scene,tt5657846 rd1w9BCiy1M,2017.0,3,10,2019,Wolf Warrior II,African Massacre Scene,tt7131870 PBeP9JUk5cM,2017.0,10,10,2019,Wolf Warrior II,Blood For Blood Scene,tt7131870 Mvrl3jeiJlg,2017.0,2,10,2019,Wolf Warrior II,Inconvenience Store Scene,tt7131870 N25MiYpmMVw,2017.0,9,10,2019,Wolf Warrior II,"Flip the Bird, Flip a Tank Scene",tt7131870 y41KY83U1VQ,2016.0,9,9,2019,Train to Busan,Fight to the Undeath Scene,tt5700672 0t7ZsuI05Uw,2012.0,6,6,2019,40 Days and Nights,Light The Line Scene,tt2439946 w_iXru-XxwU,2012.0,5,6,2019,40 Days and Nights,Flooding In The Military Base Scene,tt2439946 P_zAPM1cQdM,2012.0,1,6,2019,40 Days and Nights,Flash Flood In The Sahara Scene,tt2439946 49BRJlMRZ18,2012.0,3,6,2019,40 Days and Nights,Denver Underwater Scene,tt2439946 hwI9jLgUnbI,2017.0,6,10,2019,Wolf Warrior II,Drone Destruction,tt7131870 j76FbuAQUsc,2017.0,8,10,2019,Wolf Warrior II,World of Tanks Scene,tt7131870 5AMX5PaikhU,2017.0,5,10,2019,Wolf Warrior II,Shantytown Chase Scene,tt7131870 GlrYbmdZk24,2017.0,1,10,2019,Wolf Warrior II,Underwater Sword Fight Scene,tt7131870 56_IiZ3k0OY,2017.0,7,10,2019,Wolf Warrior II,Crossbow Carnage Scene,tt7131870 0OmDcj8U3Xs,2017.0,4,10,2019,Wolf Warrior II,Hospital Hostages Scene,tt7131870 15lEWX16LV0,2015.0,10,10,2019,Wolf Warrior,Ready to Die for Your Country? Scene,tt3540136 K2bk8aUwIis,2015.0,1,10,2019,Wolf Warrior,Killing Enemies Is My Duty Scene,tt3540136 C5o1JYo-4pU,2015.0,4,10,2019,Wolf Warrior,Wolf vs. Wolf Scene,tt3540136 9AEbJDyNTSo,2014.0,10,10,2019,Ardennes Fury,Rescued Behind Enemy Lines Scene,tt3922754 PY8WEjeHGTE,2014.0,1,10,2019,Ardennes Fury,Firefight In A French Village Scene,tt3922754 XnvMGSn4KHQ,2014.0,2,10,2019,Ardennes Fury,Nazi Torture Scene,tt3922754 79PCtxPbMlc,2014.0,8,10,2019,Ardennes Fury,Running Away From The Nazis Scene,tt3922754 lGQFgsEBe4M,2014.0,9,10,2019,Ardennes Fury,The Grand Finale Scene,tt3922754 l8L0q_dnoKA,2014.0,4,10,2019,Ardennes Fury,Griffin Sacrifices His Life Scene,tt3922754 jM2drh7uhsw,2014.0,5,10,2019,Ardennes Fury,Stepping On A Land Mine Scene,tt3922754 uyMQqUwKVBY,2014.0,7,10,2019,Ardennes Fury,Rescuing Sgt. Lance Dawson Scene,tt3922754 mos7tNLWRz0,2014.0,3,10,2019,Ardennes Fury,Killing A Child Scene,tt3922754 7YpyRO7N1YI,2014.0,6,10,2019,Ardennes Fury,Torturing Sgt. Dawson Scene,tt3922754 ep-ggf8CcX8,2015.0,7,10,2019,Wolf Warrior,Under Enemy Fire Scene,tt3540136 4YW2E3yaMjc,2015.0,8,10,2019,Wolf Warrior,Going On The Offensive Scene,tt3540136 gcqk1NcWIGQ,2015.0,6,10,2019,Wolf Warrior,Dodging The Sniper Scene,tt3540136 xzPgefI2u9k,2015.0,9,10,2019,Wolf Warrior,Do You Have a Boyfriend? Scene,tt3540136 b8Dp_WyoPSU,2015.0,2,10,2019,Wolf Warrior,Police Massacre Scene,tt3540136 v9VqcsF7s5E,2015.0,5,10,2019,Wolf Warrior,Assassin Ambush Scene,tt3540136 ddhfpfnwgRI,2015.0,3,10,2019,Wolf Warrior,Taking out the Enemy Commander Scene,tt3540136 3S35Cy1GMMU,2018.0,1,9,2019,China Salesman,Boxing Brawl Scene,tt6015706 SkefiJco10U,2018.0,2,9,2019,China Salesman,Punch-Out King Scene,tt6015706 9qtw3cXqWfw,2018.0,8,9,2019,China Salesman,The Masked Rider Scene,tt6015706 cOy7yCnHMAE,2018.0,7,9,2019,China Salesman,Shot by a Tank Scene,tt6015706 PP4-LYtVpRg,2018.0,3,9,2019,China Salesman,An Unholy Ritual Scene,tt6015706 EfX6L0wDT4Y,2018.0,5,9,2019,China Salesman,Desert War Scene,tt6015706 Al7y7aRrASE,2018.0,6,9,2019,China Salesman,China's Ceasefire Scene,tt6015706 ruaqMoxwvjg,2018.0,4,9,2019,China Salesman,Bidding War Scene,tt6015706 B4D0g5tfp7A,2018.0,9,9,2019,China Salesman,Ninja vs. Sheikh Scene,tt6015706 85cnCW_4LIc,2011.0,8,10,2019,Footloose,Not Even a Virgin Scene,tt1068242 MGIjofJUXyo,2011.0,3,10,2019,Footloose,Dance the Night Away Scene,tt1068242 8Lv0BuXTgoY,2011.0,4,10,2019,Footloose,Demolition Deathmatch Scene,tt1068242 -Nzbwerwks8,2011.0,9,10,2019,Footloose,Prom Night Brawl Scene,tt1068242 5lgCxWubUnU,2011.0,6,10,2019,Footloose,Line Dancing Scene,tt1068242 p70o9g5gcdY,2011.0,7,10,2019,Footloose,Let's Hear It for the Boy Scene,tt1068242 jlCEAJXSwJc,2011.0,5,10,2019,Footloose,Never Dance Again Scene,tt1068242 ElidXD2F2eo,2011.0,10,10,2019,Footloose,Let's Dance! Scene,tt1068242 1sz2oWajICY,2011.0,2,10,2019,Footloose,I'm Not a Child Scene,tt1068242 QH2Z3rBA9C4,2011.0,1,10,2019,Footloose,Barn Dance Scene,tt1068242 L9wacy030Kw,2017.0,10,10,2019,"Us, Naked: Trixie & Monkey",A Special Couple Scene,tt2611408 wYumvThtFrc,2016.0,4,10,2019,Long Nights Short Mornings,Psycho Lovers Scene,tt2186712 tdDDMrzq9lE,2016.0,5,10,2019,Long Nights Short Mornings,Mind Games Scene,tt2186712 MASZNTnZals,2016.0,1,10,2019,Long Nights Short Mornings,Fingerbang Bus Ride Scene,tt2186712 14I9e5jH9bw,2016.0,2,10,2019,Long Nights Short Mornings,I Don't Want to Do It in the Street,tt2186712 0tg_TU8EfCs,2016.0,7,10,2019,Long Nights Short Mornings,Stairwell Seduction Scene,tt2186712 yZgf5wSULog,2016.0,10,10,2019,Long Nights Short Mornings,Do It on My Face Scene,tt2186712 fzG_88hJcqM,2016.0,8,10,2019,Long Nights Short Mornings,Barely Legal Scene,tt2186712 PlPRa95iR3k,2016.0,6,10,2019,Long Nights Short Mornings,Love Is a Bad High Scene,tt2186712 lTm0Gql9HME,2016.0,3,10,2019,Long Nights Short Mornings,Get Over Here Already Scene,tt2186712 nRkXwphpaQ0,2016.0,9,10,2019,Long Nights Short Mornings,She's a Tease Scene,tt2186712 v5YaaXLJw2A,2017.0,7,10,2019,"Us, Naked: Trixie & Monkey",The Evil Hate Monkey Scene,tt2611408 oMpbWgx0Cdk,2017.0,1,10,2019,"Us, Naked: Trixie & Monkey",Circus School Scene,tt2611408 iWHYx50w6ts,2017.0,3,10,2019,"Us, Naked: Trixie & Monkey",Glitter Baptism Scene,tt2611408 VuGGlc9x5PE,2017.0,9,10,2019,"Us, Naked: Trixie & Monkey",A Burlesque Wedding Scene,tt2611408 ZhbolQxBK2s,2017.0,2,10,2019,"Us, Naked: Trixie & Monkey",The Burlesque Hall Of Fame Scene,tt2611408 wX06J0jh7BU,2017.0,4,10,2019,"Us, Naked: Trixie & Monkey",Mumbo Scene,tt2611408 MfM4qCHUPH8,2017.0,5,10,2019,"Us, Naked: Trixie & Monkey","The Hard, Hard Road of Burlesque Scene",tt2611408 yOrYFxd4En4,2017.0,8,10,2019,"Us, Naked: Trixie & Monkey",Going off Broadway! Scene,tt2611408 lJmafWivAtQ,2017.0,6,10,2019,"Us, Naked: Trixie & Monkey",Viking Striptease Scene,tt2611408 0gKYY9NCTvY,2016.0,5,10,2019,The Lonely Italian,Giving a Vegan Meat Scene,tt3261182 LJK2Ox4UlM0,2016.0,8,10,2019,The Lonely Italian,Bad Dates Scene,tt3261182 wQS5Cu_bGs0,2016.0,3,10,2019,The Lonely Italian,Two Deplorable Men Scene,tt3261182 w0dNGg0OiAc,2016.0,9,10,2019,The Lonely Italian,Strong Woman Scene,tt3261182 LGL0Gz_QgDk,2016.0,6,10,2019,The Lonely Italian,Tantric Stuff Scene,tt3261182 xg5ZJAo_1v8,2016.0,1,10,2019,The Lonely Italian,Why Does No One Want to Love Me? Scene,tt3261182 GDpzofT_Pdk,2016.0,10,10,2019,The Lonely Italian,Be a Man and Grow Up Scene,tt3261182 ekbIXnK0_ek,2016.0,7,10,2019,The Lonely Italian,A Cruel Mistress Scene,tt3261182 3EdXrMS1gJc,2016.0,2,10,2019,The Lonely Italian,Crappy Photos Scene,tt3261182 I51Z3trNfZo,2016.0,4,10,2019,The Lonely Italian,Swiping Right Scene,tt3261182 Gqa-biM6qKM,2016.0,8,8,2019,Conspiracy Theory,Alien Aftermath Scene,tt5354458 kARcfM_M6VE,2016.0,1,8,2019,Conspiracy Theory,Dam Aliens Scene,tt5354458 7szH-UZx2JU,2018.0,3,8,2019,Conspiracy Theory,Blackout Menace Scene,tt5354458 uxj3cKArYDI,2016.0,2,8,2019,Conspiracy Theory,Fist up Your Butt Scene,tt5354458 wLGpzRMJsVE,2016.0,6,8,2019,Conspiracy Theory,A Flash & A Rash Scene,tt5354458 HeRIwSpHZCk,2018.0,4,8,2019,Conspiracy Theory,Interview With A Crackpot Scene,tt5354458 ADqmUtPjP0Q,2016.0,5,8,2019,Conspiracy Theory,Very Phallic Scene,tt5354458 z8XPccwMkKE,2016.0,7,8,2019,Conspiracy Theory,An Alien Attacks Scene,tt5354458 Ng06lmNU4K8,2018.0,10,10,2019,Sherlock Gnomes,Moriarty Falls Scene,tt2296777 7fOizvx1cUM,2018.0,5,10,2019,Sherlock Gnomes,"I'm a Gargoyle, Mate! Scene",tt2296777 6fs-P3Vq9BI,2018.0,1,10,2019,Sherlock Gnomes,Moriarty's Madness Scene,tt2296777 zpvTZ0G0UiM,2018.0,7,10,2019,Sherlock Gnomes,Stronger Than I Ever Was Scene,tt2296777 HIOSYqainIs,2018.0,9,10,2019,Sherlock Gnomes,Watson Saves the Day Scene,tt2296777 1xccuQBsJfU,2018.0,3,10,2019,Sherlock Gnomes,Soda Boat Chase Scene,tt2296777 vuvmITfWFuo,2018.0,4,10,2019,Sherlock Gnomes,Unlucky Cats Scene,tt2296777 tNYSeyXRkiE,2018.0,2,10,2019,Sherlock Gnomes,Flower Shop Fail Scene,tt2296777 1aZDrjQGvIU,2018.0,6,10,2019,Sherlock Gnomes,The Pug of the Baskervilles Scene,tt2296777 9cNdat9JJuE,2018.0,8,10,2019,Sherlock Gnomes,The Love Machine Scene,tt2296777 8TcZDzWEVDM,2018.0,8,10,2019,Bumblebee,The Baddest Bee Scene,tt4701182 nTAYbwY6oeU,2018.0,2,10,2019,Bumblebee,vs. Blitzwing Scene,tt4701182 RuFd7DELPYc,2018.0,5,10,2019,Bumblebee,High-Speed Police Chase Scene,tt4701182 ZKuscOD0LOM,2018.0,4,10,2019,Bumblebee,The Egg Prank Scene,tt4701182 Xv9ME0TfQjk,2018.0,10,10,2019,Bumblebee,vs. Shatter Scene,tt4701182 jsbjmWo3c38,2018.0,7,10,2019,Bumblebee,Escaping the Decepticons Scene,tt4701182 bu5m4sr6e6I,2018.0,1,10,2019,Bumblebee,The Cybertronian War Scene,tt4701182 hD7KaqFoSq0,2018.0,9,10,2019,Bumblebee,vs. Dropkick Scene,tt4701182 AVzJme0mGY8,2018.0,6,10,2019,Bumblebee,Wrecking the House Scene,tt4701182 Ok3_qMNWAo0,2018.0,3,10,2019,Bumblebee,Meeting Scene,tt4701182 yGrvM8gN0w0,2017.0,6,8,2019,Oceans Rising,A Singular Achievement Scene,tt6215044 9tDGIpP7Kfc,2017.0,1,8,2019,Oceans Rising,Presidential Challenge Scene,tt6215044 KBmsdzLFpvc,2017.0,4,8,2019,Oceans Rising,A Shocking Turn of Events Scene,tt6215044 gTkzaR0pGgE,2017.0,8,8,2019,Oceans Rising,A Miraculous Call Scene,tt6215044 _mnvg-i4Qks,2017.0,5,8,2019,Oceans Rising,Finding CERN Scene,tt6215044 CpA9NJEL2EM,2017.0,3,8,2019,Oceans Rising,Open Water Rescue Scene,tt6215044 t1V-lbe6gII,2017.0,2,8,2019,Oceans Rising,In Over Their Heads Scene,tt6215044 w01pKxgINao,2017.0,7,8,2019,Oceans Rising,Suicide Mission Scene,tt6215044 QABInjYQVes,2010.0,7,10,2019,Airline Disaster,Boss Fight Scene,tt1610528 OBQcsOUZ2u0,2010.0,3,10,2019,Airline Disaster,Free Fallin' Scene,tt1610528 Dkd1ak3tQ5s,2010.0,6,10,2019,Airline Disaster,Killing A Kidnapper Scene,tt1610528 UIkY2KKWmdk,2010.0,4,10,2019,Airline Disaster,Losing Control Scene,tt1610528 GALfESO3afQ,2010.0,1,10,2019,Airline Disaster,Smash & Grab Scene,tt1610528 ljOOPtZAk2c,2010.0,5,10,2019,Airline Disaster,Storming The Hideout Scene,tt1610528 UwhUd2cPOYE,2010.0,8,10,2019,Airline Disaster,Engine Explosion Scene,tt1610528 p74VOGdtMTw,2010.0,2,10,2019,Airline Disaster,Brutal Skyjacking Scene,tt1610528 7_UHtWGKsuc,2010.0,10,10,2019,Airline Disaster,Crash Landing Scene,tt1610528 lLScgb8ZP_8,2010.0,9,10,2019,Airline Disaster,Space Laser Scene,tt1610528 DTWggpNq1a0,2017.0,2,10,2019,Active Adults,I Ate Your Grapefruit Scene,tt5460416 pJFZLCoqB9w,2011.0,4,10,2019,No Strings Attached,The Period Playlist Scene,tt1411238 4ak8huhsVKc,2011.0,1,10,2019,No Strings Attached,Did I Have Sex? Scene,tt1411238 qhGsK4yvxmg,2011.0,2,10,2019,No Strings Attached,Making It Happen Scene,tt1411238 G3qOB7PGBXE,2011.0,5,10,2019,No Strings Attached,She's Quick Like a Puma Scene,tt1411238 EBLS3sCB4rk,2011.0,7,10,2019,No Strings Attached,The First Date Scene,tt1411238 RuOjVbqLiZU,2011.0,6,10,2019,No Strings Attached,My Dad is Screwing My Ex Scene,tt1411238 Q3JqdmUTsLI,2011.0,8,10,2019,No Strings Attached,I Completely Love You Scene,tt1411238 i4NIiCSEiTg,2011.0,10,10,2019,No Strings Attached,If You Come Any Closer Scene,tt1411238 uL1Q5YZ0Ejc,2011.0,3,10,2019,No Strings Attached,Sex Friends Scene,tt1411238 DIlHR2SWW9E,2011.0,9,10,2019,No Strings Attached,Awkward Romance Scene,tt1411238 k67i1cISzsI,2017.0,9,10,2019,Active Adults,Do You Like to Watch? Scene,tt5460416 HzvL4MonF-I,2017.0,8,10,2019,Active Adults,Two Rocks Broken Apart Scene,tt5460416 AcvWJ8bgA8w,2017.0,5,10,2019,Active Adults,All My Friends Are Dead Scene,tt5460416 foQnR1eZO-Y,2017.0,3,10,2019,Active Adults,Expert Cunnilingus Scene,tt5460416 3tuV7dBxBPU,2017.0,1,10,2019,Active Adults,A Sliver of Heaven Scene,tt5460416 GXZSat3AqwE,2017.0,4,10,2019,Active Adults,Not Enough Experience Scene,tt5460416 hDA_Bn7UhlA,2017.0,6,10,2019,Active Adults,Romance Is Dead Scene,tt5460416 UPAs32xduAM,2017.0,7,10,2019,Active Adults,You Were Her Rock Scene,tt5460416 rhfBzC5A79o,2017.0,10,10,2019,Active Adults,Positivity Juice Scene,tt5460416 GsP6mQAcxj8,2017.0,2,9,2019,"Sex, Guaranteed",You Wanna Get Weird? Scene,tt3715296 g2cIMCa6N64,2017.0,3,9,2019,"Sex, Guaranteed",It's Going to Explode! Scene,tt3715296 _ZjTuvkIbcg,2017.0,8,9,2019,"Sex, Guaranteed",You're Sleeping With Her? Scene,tt3715296 WcPbZiPqUlE,2017.0,4,9,2019,"Sex, Guaranteed",Vaggy Vag Scene,tt3715296 SLC6o6KPuro,2017.0,5,9,2019,"Sex, Guaranteed",Now That's Unfortunate Scene,tt3715296 wQR6vm3kDSI,2017.0,6,9,2019,"Sex, Guaranteed",She Has a Great Pair Scene,tt3715296 yJ0RpuixpT4,2017.0,7,9,2019,"Sex, Guaranteed",I Got the Sauce Scene,tt3715296 qkHBpSypnHI,2017.0,1,9,2019,"Sex, Guaranteed",You Don't Like the Chair? Scene,tt3715296 urr-Zn5nq2w,2017.0,9,9,2019,"Sex, Guaranteed",Sex Stops Suicide Scene,tt3715296 _GjXqTtZjDg,2017.0,4,9,2019,Dismissed,The Kid's a Psychopath Scene,tt5039994 qNXYR0fe1Lk,2017.0,1,9,2019,Dismissed,I'll Staple Your Tongue Scene,tt5039994 2eltEasOEig,2017.0,2,9,2019,Dismissed,Explosive Reaction Scene,tt5039994 41v_zrra00A,2017.0,6,9,2019,Dismissed,Jailbait Scene,tt5039994 nloEs-bbjXM,2017.0,3,9,2019,Dismissed,Sexual Education Scene,tt5039994 PdYD2Sdt8s4,2017.0,8,9,2019,Dismissed,I Will Kill You Scene,tt5039994 CYs5HBcQBNc,2017.0,7,9,2019,Dismissed,Psycho Killer Scene,tt5039994 w_ZDbyiJlF8,2017.0,9,9,2019,Dismissed,Deadly Pop Quiz Scene,tt5039994 4bT5OwL1UnY,2017.0,5,9,2019,Dismissed,The Report Card of Doom Scene,tt5039994 gvTCSxLPy0Q,1995.0,4,10,2019,The Net,Captain America Scene,tt0113957 BiVnGF_72u8,2016.0,7,9,2019,Miss Stevens,Billy's Monologue Scene,tt2693580 cNjcecvssqE,2016.0,4,9,2019,Miss Stevens,Crying in the Bathroom Scene,tt2693580 aFQabbA_FMs,2016.0,6,9,2019,Miss Stevens,Like Losing Them Again Scene,tt2693580 FpFqjfqGyRE,2016.0,2,9,2019,Miss Stevens,The Wife Bomb Scene,tt2693580 a7t6tQVX7T8,2016.0,8,9,2019,Miss Stevens,You Should Get Help Scene,tt2693580 pxQ07GfWFjs,2016.0,9,9,2019,Miss Stevens,Add Me Scene,tt2693580 lKXUBB09y4k,2016.0,3,9,2019,Miss Stevens,Student-Teacher Bonding Scene,tt2693580 Jftv5w9B3So,2016.0,5,9,2019,Miss Stevens,I Can Make You Happy Scene,tt2693580 AoHVBb8Bc_4,2016.0,1,9,2019,Miss Stevens,I Kissed a Girl Scene,tt2693580 6IXjYpPtjWk,1995.0,6,10,2019,The Net,Bob Couldn't Make It Scene,tt0113957 6ya9GVSPiXs,1995.0,9,10,2019,The Net,Virus Scene,tt0113957 FETaRGJH_JE,1995.0,10,10,2019,The Net,It's Finally Over Scene,tt0113957 6PEQcK6G_4M,1995.0,5,10,2019,The Net,I Am Angela Bennett Scene,tt0113957 Oo67jMp9UbI,1995.0,8,10,2019,The Net,From One Nightmare to the Next Scene,tt0113957 hoWEYBSlctc,1995.0,2,10,2019,The Net,Mozart's Ghost Scene,tt0113957 HZQlFhnFVjg,1995.0,7,10,2019,The Net,An Unsuccessful Getaway Scene,tt0113957 yLm_tJ-ZrNc,1995.0,3,10,2019,The Net,Staged Robbery Scene,tt0113957 D01cKQMu5Ew,1995.0,1,10,2019,The Net,One Of Us Scene,tt0113957 T15XvRqmhqU,2011.0,2,10,2019,Born Bad,Call Me Tomorrow Scene,tt1869315 8gUP_uUpmSw,2011.0,6,10,2019,Born Bad,Hitting on Her Ex Scene,tt1869315 RKCrqtbqvio,2011.0,8,10,2019,Born Bad,Crooks Are Tools Scene,tt1869315 4XHwJQfIyTo,2011.0,9,10,2019,Born Bad,"I Love You, Baby Scene",tt1869315 AdmsyTzM7YY,2011.0,1,10,2019,Born Bad,"Was It Good for You, Baby? Scene",tt1869315 DU8nLYGOMIc,2011.0,3,10,2019,Born Bad,Passion and Fury Scene,tt1869315 b8bioz2Eb84,2011.0,5,10,2019,Born Bad,I Will Crucify You Scene,tt1869315 -c5QAS76N_A,2011.0,4,10,2019,Born Bad,Intoxicating Love Scene,tt1869315 Om-y-goxpYc,2011.0,10,10,2019,Born Bad,Between a Car and a Hard Place Scene,tt1869315 Y1RH4S7GPLA,2011.0,7,10,2019,Born Bad,What's the Combination? Scene,tt1869315 RyQUewFDEx4,2017.0,1,10,2019,Kings,The Death of Latasha Harlins Scene,tt1972591 _w2nm32Dbg4,2017.0,2,10,2019,Kings,Liquor Store Lothario Scene,tt1972591 haSWFp-ToRM,2017.0,8,10,2019,Kings,Surviving the Riots Scene,tt1972591 gwdClG0txYM,2017.0,10,10,2019,Kings,Pole Position Scene,tt1972591 NpQNeUSJLjI,2017.0,6,10,2019,Kings,Walking While Black Scene,tt1972591 7mO_TD_Co1U,2017.0,4,10,2019,Kings,I'm Black & I'm Proud Scene,tt1972591 042B8vTl0ig,2017.0,7,10,2019,Kings,Stabbing William Scene,tt1972591 IGDViR244hs,2017.0,9,10,2019,Kings,Parking Lot Peril Scene,tt1972591 _LNnkttaKXo,2017.0,3,10,2019,Kings,The Back of a Cop Car Scene,tt1972591 YQxXtdN7j4U,2017.0,5,10,2019,Kings,Erotic Dreams Scene,tt1972591 UoDOFJsC608,2017.0,3,9,2019,Thumper,Bust the Dealers Scene,tt5716380 _i6Du5s9Il0,2017.0,5,9,2019,Thumper,Sex and Other Drugs Scene,tt5716380 2uVdxC_gCro,2017.0,4,9,2019,Thumper,I Sacrificed for You People Scene,tt5716380 wCFnoBDeauY,2017.0,1,9,2019,Thumper,A Picky Girl Scene,tt5716380 92eioWPPuOI,2017.0,7,9,2019,Thumper,I'm a Businessman Scene,tt5716380 HcjPZqjGuFA,2017.0,9,9,2019,Thumper,Tie Her Up! Scene,tt5716380 RXkLf3ucqIY,2017.0,2,9,2019,Thumper,I Haven't F***ed Him Yet Scene,tt5716380 3WIjC39hJF8,2017.0,6,9,2019,Thumper,I Waited for You Scene,tt5716380 5jsb1xN8byg,2017.0,8,9,2019,Thumper,First Time Junkie Scene,tt5716380 G4DcKX_XRA8,1980.0,6,10,2019,Superman II,Superman vs. Zod Scene,tt0081573 9ccE4YIG76Y,2012.0,1,10,2019,Flight,The Freefall Scene,tt1907668 hJ9hMyqKcg8,1980.0,2,10,2019,Superman II,Kryptonians On The Moon Scene,tt0081573 _xUiCNlDeJk,1980.0,5,10,2019,Superman II,Kneel Before Zod Scene,tt0081573 UZ7PTLCQZwU,1980.0,7,10,2019,Superman II,Blown Away Scene,tt0081573 _rCRxCR06UY,1980.0,8,10,2019,Superman II,Fortress of Solitude Fight Scene,tt0081573 4xLa-Rn-gdo,1980.0,3,10,2019,Superman II,Niagara Falls Hero Scene,tt0081573 NRYvrDdntjA,1980.0,10,10,2019,Superman II,Diner Revenge Scene,tt0081573 vAfD-vF8yss,1980.0,1,10,2019,Superman II,Eiffel Tower Rescue Scene,tt0081573 rMH3omIA15k,1980.0,4,10,2019,Superman II,Clark Kent Is Superman Scene,tt0081573 Y3gJGuQQPnw,1980.0,9,10,2019,Superman II,Defeating Zod Scene,tt0081573 edaHyeIxzcI,2012.0,2,10,2019,Flight,Inverting the Plane Scene,tt1907668 D0bIbyAa_XE,2012.0,3,10,2019,Flight,Brace for Impact Scene,tt1907668 u_G4el-62Ik,2012.0,8,10,2019,Flight,A Little Pick Me Up Scene,tt1907668 Jv7PzcVfULc,2012.0,4,10,2019,Flight,Chemo Brain Scene,tt1907668 uzhsjyHUBt8,2012.0,5,10,2019,Flight,We're Talking Jail Time Scene,tt1907668 bEpL6Mt_jrk,2012.0,9,10,2019,Flight,I'm Drunk Right Now Scene,tt1907668 WHcarLLrz9Y,2012.0,7,10,2019,Flight,I Drank Three Bottles Scene,tt1907668 vpEAO0gIAxE,2012.0,10,10,2019,Flight,At Least I'm Sober Scene,tt1907668 fIfQbocblZc,2012.0,6,10,2019,Flight,Love Is Taking Off Scene,tt1907668 rOu9FD63Z68,2000.0,4,10,2019,Little Nicky,The Devil is Here Scene,tt0185431 0QLGAhQDgsE,2000.0,7,10,2019,Little Nicky,One on One Basketball Scene,tt0185431 IQVt4ZtUzgc,2000.0,10,10,2019,Little Nicky,Ozzy Saves the Day Scene,tt0185431 Uovtut2ckMg,2000.0,8,10,2019,Little Nicky,You're All Going to Hell Scene,tt0185431 9eI4mt_lKTw,2000.0,3,10,2019,Little Nicky,Nicky and the Train Scene,tt0185431 arzwnRoAQP0,2000.0,6,10,2019,Little Nicky,Demon Brother Scene,tt0185431 ZwQuo7dY_Dw,2000.0,5,10,2019,Little Nicky,Snoring Scene,tt0185431 Q2x3eUH0ytI,2000.0,9,10,2019,Little Nicky,You Can Do It! Scene,tt0185431 N7itFdNE2Qw,2000.0,2,10,2019,Little Nicky,Pineapple Punishment Scene,tt0185431 W8fjSVywGGk,2000.0,1,10,2019,Little Nicky,Big Bird Scene,tt0185431 U8fgto8IZLM,1988.0,4,10,2019,Short Circuit 2,One Pissed-Off Robot Scene,tt0096101 Z6cDbMLcxQI,1988.0,7,10,2019,Short Circuit 2,I'm Alive Scene,tt0096101 NTdHPAY7rOE,1988.0,9,10,2019,Short Circuit 2,Recycle This Scene,tt0096101 2ADaXnuG-YM,1988.0,3,10,2019,Short Circuit 2,Gang Initiation Scene,tt0096101 gWGhsJWFOrU,2012.0,8,10,2019,The Man With the Iron Fists,Blossom vs. Lion Scene,tt1258972 h5f5GgqVWes,2012.0,1,10,2019,The Man With the Iron Fists,My Name is Mr. Knife! Scene,tt1258972 a8mImo0aNDo,2012.0,5,10,2019,The Man With the Iron Fists,Forging the Iron Fists,tt1258972 zOvMmwnFVa0,2012.0,9,10,2019,The Man With the Iron Fists,Gears of Hell Scene,tt1258972 _4oM1Sa1Pb8,2012.0,2,10,2019,The Man With the Iron Fists,The X-Blade Scene,tt1258972 za8FVqsMmZ0,2012.0,4,10,2019,The Man With the Iron Fists,Gemini Fight Scene,tt1258972 UWS3FOpdFMU,2012.0,10,10,2019,The Man With the Iron Fists,Fists of Vengeance Scene,tt1258972 bfgJbZHRes8,2012.0,6,10,2019,The Man With the Iron Fists,The Prostitutes' Revenge Scene,tt1258972 Ko8vqBmZRfE,2012.0,7,10,2019,The Man With the Iron Fists,Brothel Battle Scene,tt1258972 lS9V0oDrPfs,2012.0,3,10,2019,The Man With the Iron Fists,Brass Body vs. X-Blade Scene,tt1258972 UVDRpF027l0,2010.0,9,10,2019,Shrek Forever After,Shrek Rides Again Scene,tt0892791 qSd4Q3GY7dc,1988.0,5,10,2019,Short Circuit 2,Robot Rights Scene,tt0096101 LABMISLl7Y8,1988.0,8,10,2019,Short Circuit 2,Bad Robot Scene,tt0096101 Jf7jVM7NoVE,1988.0,6,10,2019,Short Circuit 2,Prompting Love Scene,tt0096101 pR8Lt5DyU88,1988.0,10,10,2019,Short Circuit 2,Golden Johnny Five Scene,tt0096101 R1zRKVLsmrM,1988.0,2,10,2019,Short Circuit 2,Manic Robot Scene,tt0096101 l0zmCUVB0Yw,1988.0,1,10,2019,Short Circuit 2,Johnny Five Arrives,tt0096101 XTjTXskLQO0,2010.0,7,10,2019,Shrek Forever After,Love Is a Battlefield Scene,tt0892791 6I5B0jyLBUg,2010.0,3,10,2019,Shrek Forever After,Do the Roar Scene,tt0892791 KJtfL83FLj8,2014.0,6,10,2019,The Sheik,Loses His Daughter,tt3607812 NRuVbAAb_FU,2014.0,2,10,2019,The Sheik,Brings the Heat Scene,tt3607812 aOCAfIWw2H0,2014.0,10,10,2019,The Sheik,Don't Be a Jabroni Scene,tt3607812 Bc_4HO3jI1g,2014.0,3,10,2019,The Sheik,Hulkamania Scene,tt3607812 25UN_cgKaxc,2014.0,9,10,2019,The Sheik,Real or Jabroni Scene,tt3607812 vtdnjV0Q2fE,2014.0,5,10,2019,The Sheik,The Independent Circuit Scene,tt3607812 5RFz0uu2ZuA,2014.0,4,10,2019,The Sheik,vs. Hacksaw Jim Duggan Scene,tt3607812 3ZL5il1o-AQ,2014.0,7,10,2019,The Sheik,The Drugs Don't Work Scene,tt3607812 Yo8mYWU0oTk,2014.0,1,10,2019,The Sheik,Ignites Scene,tt3607812 C1MsPeGKyMs,2014.0,8,10,2019,The Sheik,Iron Sheik's Comeback Scene,tt3607812 Pvva0sdUEkc,2011.0,5,10,2019,Puss in Boots,Stealing the Golden Goose Scene,tt0448694 TJa_A5cVd-w,2010.0,6,10,2019,Shrek Forever After,Puss Let Himself Go Scene,tt0892791 zkRkL94VQxY,2010.0,5,10,2019,Shrek Forever After,"Fiona, Warrior Princess Scene",tt0892791 YNZmZ4ARr38,2010.0,2,10,2019,Shrek Forever After,Daddy Ever After Scene,tt0892791 1IaDQdo8x1I,2010.0,1,10,2019,Shrek Forever After,A Deal with Rumpelstiltskin Scene,tt0892791 hIJ0gMDZT_4,2010.0,8,10,2019,Shrek Forever After,Musical Ambush Scene,tt0892791 0osA8jKKotc,2010.0,10,10,2019,Shrek Forever After,Happily Ever After... Again,tt0892791 uuNy1Ibdk_Y,2010.0,4,10,2019,Shrek Forever After,The Old Shrek Scene,tt0892791 MaqzxDPwOB4,2011.0,7,10,2019,Puss in Boots,Puss Meets Jack Beanstalk Scene,tt0448694 FcSSNKWcReg,2011.0,8,10,2019,Puss in Boots,The Whole Time Scene,tt0448694 u4gz2yNW_Go,2011.0,9,10,2019,Puss in Boots,Wild Goose Rampage Scene,tt0448694 UpgP8aA8ABE,2011.0,6,10,2019,Puss in Boots,Victory Dance Scene,tt0448694 gxuEGIzZrGc,2011.0,1,10,2019,Puss in Boots,Rooftop Chase Scene,tt0448694 -19d_T472co,2011.0,2,10,2019,Puss in Boots,Cat Dance Fight Scene,tt0448694 zHwUR2EqUO0,2011.0,3,10,2019,Puss in Boots,Magic Beans Heist Scene,tt0448694 x2S78gnCkRg,2011.0,10,10,2019,Puss in Boots,Save the Last Dance Scene,tt0448694 g1r-B5ZGZWY,2011.0,4,10,2019,Puss in Boots,The Magic Beanstalk Scene,tt0448694 avdSnNmqs7c,2018.0,7,10,2019,Connect,God's Truth Scene,tt8804688 uw7rRlJvEl4,2011.0,4,10,2019,Rango,Showdown With the Hawk Scene,tt1192628 BIg5_09Tcf8,2011.0,8,10,2019,Rango,Jake the Rattlesnake Scene,tt1192628 7cZ3I9Bn9Rg,2011.0,9,10,2019,Rango,It Only Takes One Bullet Scene,tt1192628 SW5_v_8r9VA,2011.0,2,10,2019,Rango,Between a Hawk and a Glass Place Scene,tt1192628 de_Dik7HT6E,2011.0,7,10,2019,Rango,The Spirit of the West Scene,tt1192628 qN_sGdVG0Yw,2011.0,10,10,2019,Rango,In Deep Water Scene,tt1192628 nS4Zfx9BSX0,2011.0,5,10,2019,Rango,The Water Dance,tt1192628 uAroGB_YCmw,2011.0,6,10,2019,Rango,Flight of the Mole People Scene,tt1192628 XgGyrrzTBz4,2011.0,3,10,2019,Rango,Trouble at the Saloon,tt1192628 TuBXSOUS-U4,2011.0,1,10,2019,Rango,The Car Crash Scene,tt1192628 VkD1dhWMYts,2000.0,7,10,2019,Chicken Run,Building Suspense Scene,tt0120630 8xgUm0plA8w,2000.0,8,10,2019,Chicken Run,Chickens Attack! Scene,tt0120630 wQj8uFwQP2A,2000.0,5,10,2019,Chicken Run,Shake Your Tail Feathers Scene,tt0120630 mlHF0Vv7yEc,2000.0,10,10,2019,Chicken Run,Fight Or Flight Scene,tt0120630 qTj4aSPwTBk,2000.0,1,10,2019,Chicken Run,The (Not So) Great Escape Scene,tt0120630 mjuNE5wyMzY,2000.0,9,10,2019,Chicken Run,Freedom Flyers Scene,tt0120630 zQf0jUhqJYw,2000.0,6,10,2019,Chicken Run,The Pie Machine Scene,tt0120630 ZVlfttyv5js,2000.0,2,10,2019,Chicken Run,Roll Call Scene,tt0120630 i_zdyGw0tEo,2000.0,4,10,2019,Chicken Run,Flight School Scene,tt0120630 0hNbRd78jOE,2000.0,3,10,2019,Chicken Run,Rocky's Revival Scene,tt0120630 j9FpQjinKMY,2018.0,9,10,2019,Connect,Fighting the Devil Scene,tt8804688 mfgrntgrWTw,2018.0,2,10,2019,Connect,The Center of My Own Universe Scene,tt8804688 3Bz0cqx4ZyI,2018.0,3,10,2019,Connect,Cultural Lies Scene,tt8804688 e70y31Gbhpg,2018.0,6,10,2019,Connect,One Image Scene,tt8804688 1rd6owpXoC4,2018.0,1,10,2019,Connect,Predatory Messaging Scene,tt8804688 S5CmrYAWxh4,2018.0,4,10,2019,Connect,Social Stimulation Scene,tt8804688 ROf2H0OX39s,2018.0,5,10,2019,Connect,Rulers of the Dark Scene,tt8804688 c_5924m1jNM,2018.0,8,10,2019,Connect,To Catch a Predator Scene,tt8804688 I8qfzVFTQuo,2018.0,10,10,2019,Connect,The Transition Period Scene,tt8804688 ghUFMbHmw8s,2012.0,1,10,2019,Madagascar 3,Breaking into the Casino Scene,tt1277953 OuQTes47k14,2012.0,5,10,2019,Madagascar 3,When in Rome Scene,tt1277953 UZ2IjJCsxxo,2012.0,6,10,2019,Madagascar 3,Circus Fail Scene,tt1277953 22xJjwTRC10,2012.0,3,10,2019,Madagascar 3,The Animal Control Terminator Scene,tt1277953 Gq43zgK0T94,2012.0,7,10,2019,Madagascar 3,Dubois Sings Scene,tt1277953 A7mWnsrRu6w,2012.0,10,10,2019,Madagascar 3,Afro Circus Rescue Scene,tt1277953 PXSMKQqZjaE,2012.0,8,10,2019,Madagascar 3,Zebras Can Fly Scene,tt1277953 jFWnVdsSgxs,2012.0,9,10,2019,Madagascar 3,Circus Fireworks Scene,tt1277953 JFAAK6FfOSA,2012.0,4,10,2019,Madagascar 3,King Julien Falls in Love Scene,tt1277953 wEvSZB_Dhqc,2012.0,2,10,2019,Madagascar 3,"Is There a Problem, Officer? Scene",tt1277953 mZHlantNtwg,2007.0,5,10,2019,Shrek the Third,Three Little Squealers Scene,tt0413267 sWjVe9dMRHU,2007.0,1,10,2019,Shrek the Third,Royal Pain Scene,tt0413267 MriW09XMJeo,2007.0,9,10,2019,Shrek the Third,Stealing The Show Scene,tt0413267 6TOx7qsyaxU,2007.0,10,10,2019,Shrek the Third,Surrounded by Villains Scene,tt0413267 0L1sL54G45Q,2007.0,8,10,2019,Shrek the Third,Damsels of Destruction Scene,tt0413267 O12Ve5AFu7o,2007.0,6,10,2019,Shrek the Third,Kill Them All! Scene,tt0413267 0igqAlu8Oqc,2007.0,7,10,2019,Shrek the Third,Princess Prisoners Scene,tt0413267 IEaqLI9HAmA,2007.0,4,10,2019,Shrek the Third,Revenge Of The Nerd Scene,tt0413267 Vs0CShp6HFA,2007.0,3,10,2019,Shrek the Third,Medieval High School Scene,tt0413267 SVTxvLaac6A,2007.0,2,10,2019,Shrek the Third,Baby Nightmare Scene,tt0413267 GaUGoueAS4Y,2013.0,1,10,2019,The Croods,Hunting For Breakfast Scene,tt0481499 hlWL5Az4pow,2000.0,3,10,2019,The Road to El Dorado,The Trail We Blaze,tt0138749 Y0IXtktHTgk,2000.0,10,10,2019,The Road to El Dorado,You're Not a God? Scene,tt0138749 FSXijk37oNs,2000.0,5,10,2019,The Road to El Dorado,It's Tough to Be A God Scene,tt0138749 e-NMI6o5ynk,2000.0,1,10,2019,The Road to El Dorado,El Dorado Theme Scene,tt0138749 jG7W6jwCSd0,2000.0,6,10,2019,The Road to El Dorado,Without Question Scene,tt0138749 h3AqOR2Ru1s,2000.0,2,10,2019,The Road to El Dorado,Gambling with Loaded Dice Scene,tt0138749 bRehxlYZ_CE,2000.0,9,10,2019,The Road to El Dorado,The Stone Jaguar Attack Scene,tt0138749 Hm8hcRPGyME,2000.0,8,10,2019,The Road to El Dorado,Play Ball! Scene,tt0138749 xaIlgOMjspo,2000.0,7,10,2019,The Road to El Dorado,Finally We're Connecting,tt0138749 NipqouLNqAY,2000.0,4,10,2019,The Road to El Dorado,Entering El Dorado Scene,tt0138749 z7tcVyV7wjw,2013.0,2,10,2019,The Croods,Friends With Fire Scene,tt0481499 irnju0G-lBg,2013.0,10,10,2019,The Croods,Grug's Big Idea Scene,tt0481499 xxl1Hrw2eQM,2013.0,8,10,2019,The Croods,Stuck In Tar Scene,tt0481499 hR4oc1us1aU,2013.0,7,10,2019,The Croods,Grug's Inventions Scene,tt0481499 BM29Ze3d_cs,2013.0,6,10,2019,The Croods,Try This On For Size Scene,tt0481499 KToHdILd_p0,2013.0,5,10,2019,The Croods,Setting The Trap Scene,tt0481499 29Pg9Oo6P2w,2013.0,9,10,2019,The Croods,A Tearful Goodbye,tt0481499 yISManYcWqU,2013.0,3,10,2019,The Croods,Fighting Flyers With Fire Scene,tt0481499 w6ivjvOqBy0,2013.0,4,10,2019,The Croods,Family Finds Fire Scene,tt0481499 _QKwR14HKf8,2017.0,6,8,2019,Baby Fever,Dead Sexy Scene,tt7399158 WdS4ZMa6tXM,2017.0,7,8,2019,Baby Fever,The Sperm Thieves,tt7399158 YpFmmzisOy0,2017.0,5,8,2019,Baby Fever,Is There a Mood? Scene,tt7399158 h41ylpWhV1I,2017.0,2,8,2019,Baby Fever,Accidental Homewrecker Scene,tt7399158 wxhUTK7xbz8,2017.0,1,8,2019,Baby Fever,No Room for Love Scene,tt7399158 -fRY1b6WAx4,2017.0,3,8,2019,Baby Fever,I Like My Women Mature Scene,tt7399158 IT4vcwIvSCI,2017.0,8,8,2019,Baby Fever,Punctured Condoms Scene,tt7399158 zyaOnPSzcPE,2017.0,4,8,2019,Baby Fever,Dating Service Hell Scene,tt7399158 gjmt7I1OJfw,2012.0,4,10,2019,The Guilt Trip,I'm Not Changing the Label! Scene,tt1694020 jMxYv05A7B0,2012.0,1,10,2019,The Guilt Trip,I Named You After Him Scene,tt1694020 DLzp0YkZnRc,2012.0,5,10,2019,The Guilt Trip,Drink Your Water Scene,tt1694020 8v7xHt-CJZg,2012.0,2,10,2019,The Guilt Trip,I'm Not Sleeping With My Mom Scene,tt1694020 P4aGofKtJsA,2012.0,3,10,2019,The Guilt Trip,Strip Club With Mom Scene,tt1694020 39471A71y3w,2012.0,10,10,2019,The Guilt Trip,It Was Always You Scene,tt1694020 6dA4C1NKChE,2012.0,9,10,2019,The Guilt Trip,Andy & Joyce Scene,tt1694020 TgujxmrRUlw,2012.0,7,10,2019,The Guilt Trip,The Steak-Eating Contest Scene,tt1694020 wR_e9lxh7Ds,2012.0,8,10,2019,The Guilt Trip,No One Wants That on TV Scene,tt1694020 fZB65wj9nz8,2012.0,6,10,2019,The Guilt Trip,You're Not Giving My Mom a Drink Scene,tt1694020 FHiB0ZTO8fU,1989.0,8,10,2019,Look Who's Talking,What's Right for Mikey Scene,tt0097778 2NA_wZ2MWBc,1989.0,10,10,2019,Look Who's Talking,Mikey Stop! Scene,tt0097778 vId4AoKDg2s,1989.0,7,10,2019,Look Who's Talking,Dancing With Mommy Scene,tt0097778 BPuGsFSTy0Y,1989.0,2,10,2019,Look Who's Talking,Going Into Labor Scene,tt0097778 QDARBy0jCgs,1989.0,9,10,2019,Look Who's Talking,Who's Albert? Scene,tt0097778 vozjOGBUz2I,1989.0,4,10,2019,Look Who's Talking,That's Breast Milk Scene,tt0097778 CeX8drgioLs,1989.0,1,10,2019,Look Who's Talking,Going Through a Selfish Phase Scene,tt0097778 03uEq5dKcFs,1989.0,5,10,2019,Look Who's Talking,I'll Babysit Scene,tt0097778 eUogxXRPC7E,1989.0,6,10,2019,Look Who's Talking,James Babysits Scene,tt0097778 gQgdweybPwk,1989.0,3,10,2019,Look Who's Talking,Get Me Some Drugs Scene,tt0097778 cPVM14Bnf5I,2008.0,9,10,2019,Madagascar: Escape 2 Africa,The Lion Dance Scene,tt0479952 iNg7uRYtqLA,2008.0,1,10,2019,Madagascar: Escape 2 Africa,Baby Alex Goes to New York Scene,tt0479952 5aY5jTL60pA,2014.0,6,10,2019,Penguins of Madagascar,Penguin Pilots Scene,tt1911658 DpA2bMJlDpI,2008.0,4,10,2019,Madagascar: Escape 2 Africa,Moto Moto Likes You Scene,tt0479952 9F3iBMYvQOs,2008.0,2,10,2019,Madagascar: Escape 2 Africa,Penguin Plane Crash Scene,tt0479952 j2JFTz9KQhk,2008.0,5,10,2019,Madagascar: Escape 2 Africa,Grand Theft Penguin Scene,tt0479952 jQp4IlURoNg,2008.0,8,10,2019,Madagascar: Escape 2 Africa,Animal Sacrifice Scene,tt0479952 p2zDdb_MqmI,2008.0,10,10,2019,Madagascar: Escape 2 Africa,Monkey-Powered Airplane Scene,tt0479952 Omdvu0f-Wuw,2008.0,6,10,2019,Madagascar: Escape 2 Africa,King Julian's the Match Maker Scene,tt0479952 ouQG7Pcq1S8,2008.0,3,10,2019,Madagascar: Escape 2 Africa,The Nana Cometh Scene,tt0479952 UvRaab90nQ0,2008.0,7,10,2019,Madagascar: Escape 2 Africa,Before We Come to Our Senses Scene,tt0479952 9mwgsjG2Vtw,2018.0,3,8,2019,Anchors Up,The Boat Rap Scene,tt7454138 rmpFmJfEZXs,2004.0,2,10,2019,Shrek 2,An Awkward Dinner Scene,tt0298148 _t4L-ZdoEr8,2004.0,6,10,2019,Shrek 2,I'm Wearing Ladies' Underwear Scene,tt0298148 sOBIrjgDZr4,2004.0,9,10,2019,Shrek 2,Happy Endings Scene,tt0298148 C9PYzGyIfF8,2004.0,10,10,2019,Shrek 2,Livin' La Vida Loca Scene,tt0298148 ZOfisAF09AA,2004.0,1,10,2019,Shrek 2,Accidentally in Love Scene,tt0298148 vaJ2yQC_ktY,2004.0,3,10,2019,Shrek 2,Puss in Boots Scene,tt0298148 A_HjMIjzyMU,2004.0,7,10,2019,Shrek 2,I Need a Hero Scene,tt0298148 LzJ1fo-oUpk,2004.0,5,10,2019,Shrek 2,Human Shrek Scene,tt0298148 UgiK8333Np0,2004.0,8,10,2019,Shrek 2,Fighting the Fairy Godmother Scene,tt0298148 FFnyDGETjzA,2004.0,4,10,2019,Shrek 2,The Potions Factory Scene,tt0298148 ES20xt2nU10,2018.0,1,8,2019,Anchors Up,Rescue at Sea Scene,tt7454138 UFFaqQYlg0E,2018.0,5,8,2019,Anchors Up,Cave of Crime Scene,tt7454138 Tm1fX-cqfxk,2018.0,2,8,2019,Anchors Up,A Hero's Welcome Scene,tt7454138 L1AHpY6Gcbs,2018.0,4,8,2019,Anchors Up,The Love Boats Scene,tt7454138 eAx_rXKiO48,2018.0,6,8,2019,Anchors Up,Seagulls Attack Scene,tt7454138 cIesHaxakmU,2018.0,8,8,2019,Anchors Up,Upside Down Boat Jump Scene,tt7454138 157mo2VaYqc,2018.0,7,8,2019,Anchors Up,Sea Cove Cave-In Scene,tt7454138 nHcRQhadzhY,2014.0,1,10,2019,Penguins of Madagascar,Canal Caper Scene,tt1911658 5VmWe3LyUDM,2014.0,4,10,2019,Penguins of Madagascar,The Penguins Take Flight Scene,tt1911658 81MNbVi5a64,2014.0,9,10,2019,Penguins of Madagascar,Saving The Penguins Scene,tt1911658 pAwdeWy9yYM,2014.0,7,10,2019,Penguins of Madagascar,Mutant Penguins Scene,tt1911658 gIZ64_sZbCY,2014.0,10,10,2019,Penguins of Madagascar,Looks Don't Matter Scene,tt1911658 zXR_4li9ZnA,2014.0,8,10,2019,Penguins of Madagascar,The Boys Are Back,tt1911658 fqKdFZ1jKMY,2014.0,5,10,2019,Penguins of Madagascar,"Operation Flash, Splash & Crash Scene",tt1911658 A1GJyyJzpCo,2014.0,2,10,2019,Penguins of Madagascar,Cute and Cuddly Secret Agents Scene,tt1911658 sF-j-GhV6xw,2014.0,3,10,2019,Penguins of Madagascar,North Wind Headquarters Scene,tt1911658 g2ElfIY2zfQ,2003.0,8,10,2019,The Cat in the Hat,Riding Mrs. Kwan,tt0312528 Pu8AnCsWdiM,2018.0,2,6,2019,Penguin Rescue,Penguin & Whale Facts Scene,tt7575480 LAajBhbC5Y8,2018.0,3,6,2019,Penguin Rescue,Climate Change Scene,tt7575480 iGawlpfe6a0,2018.0,1,6,2019,Penguin Rescue,Unearthing Earth Scene,tt7575480 EDywdraYOBA,2018.0,6,6,2019,Penguin Rescue,Penguin Trivia Scene,tt7575480 d0hM2Ekkk-8,2018.0,4,6,2019,Penguin Rescue,Commander Cup-K Scene,tt7575480 2iF-cU-qnbc,2018.0,5,6,2019,Penguin Rescue,Orca Knowledge Scene,tt7575480 ph7amveyJHY,2003.0,5,10,2019,The Cat in the Hat,Piñata In The Hat Scene,tt0312528 3iJ8esboOjA,2003.0,7,10,2019,The Cat in the Hat,Cathouse Club Scene,tt0312528 0gouIFYgm2k,2003.0,10,10,2019,The Cat in the Hat,Cleaning up the House Scene,tt0312528 LOIF-564wKc,2003.0,4,10,2019,The Cat in the Hat,Thing 1 and Thing 2 Scene,tt0312528 1SEsxhvzzT0,2003.0,6,10,2019,The Cat in the Hat,Three-Wheel Drive Scene,tt0312528 57VO_eSiDG4,2003.0,3,10,2019,The Cat in the Hat,The Kupkake-inator! Scene,tt0312528 8QbFslYlKIk,2003.0,9,10,2019,The Cat in the Hat,Kicking Out The Cat Scene,tt0312528 yId_D0rOn8Y,2003.0,1,10,2019,The Cat in the Hat,The Cat Arrives Scene,tt0312528 Pq2Z7Qf45gM,2003.0,2,10,2019,The Cat in the Hat,"Fun, Fun, Fun! Scene",tt0312528 G77jx5jd2-c,2011.0,7,9,2019,1st Furry Valentine,The (Not So) Fun House Scene,tt1757944 ItkWLEWFjVI,2011.0,1,9,2019,1st Furry Valentine,Skateboard Fail Scene,tt1757944 0ov8ekqSAOU,2011.0,9,9,2019,1st Furry Valentine,The First Jubilee Scene,tt1757944 wJROB9vIUFk,2011.0,4,9,2019,1st Furry Valentine,Putting The Pony Out To Pasture Scene,tt1757944 IFETv7hMlqc,2011.0,2,9,2019,1st Furry Valentine,Dream Job Scene,tt1757944 wnmtGj0vBo0,2011.0,3,9,2019,1st Furry Valentine,Training A Pony Scene,tt1757944 iH-ioakPz6s,2011.0,5,9,2019,1st Furry Valentine,The Princess Problem Scene,tt1757944 pPnfIsbcwfw,2011.0,6,9,2019,1st Furry Valentine,Beating The Bad Guys Scene,tt1757944 jxEVFU6EN_k,2011.0,8,9,2019,1st Furry Valentine,Running Down A Jerk Scene,tt1757944 sRR3ukzqiGs,2008.0,6,10,2019,Open Season 2,I Can Sell This Scene,tt1107365 QQaLVYSCwrc,2008.0,4,10,2019,Open Season 2,Fetch Weenie Fetch Scene,tt1107365 qULlmr4lxb0,2008.0,8,10,2019,Open Season 2,A Plus Sized Grizzly Scene,tt1107365 CBUtXwZNA8Y,2008.0,3,10,2019,Open Season 2,Freeing Mr. Weenie Scene,tt1107365 Xa0JBPt2cGU,2008.0,7,10,2019,Open Season 2,Trust The Plan Scene,tt1107365 rjnLGy6uWKc,2008.0,5,10,2019,Open Season 2,S'mores Scene,tt1107365 Yn8Or4O6_9U,2008.0,2,10,2019,Open Season 2,Vicious Wild Animals Scene,tt1107365 E-mnMI7Klyw,2008.0,1,10,2019,Open Season 2,My Large Rack Scene,tt1107365 P7-rs7H1CAE,2008.0,9,10,2019,Open Season 2,Get The Remote! Scene,tt1107365 H4YWQ0uEY2U,2008.0,10,10,2019,Open Season 2,Close to You Scene,tt1107365 gSepgtf10wk,2016.0,8,10,2019,Izzie's Way Home,Volcano Surfing Scene,tt5667482 v0xXbyXI6YI,2016.0,9,10,2019,Izzie's Way Home,The Great Coral Reef Scene,tt5667482 5MINtb6BV6Q,2016.0,10,10,2019,Izzie's Way Home,In the Tentacles of Doom Scene,tt5667482 9lOj8ThRAWI,2016.0,5,10,2019,Izzie's Way Home,Show Your Teeth Scene,tt5667482 y10ao1Tib8A,2016.0,3,10,2019,Izzie's Way Home,Discovering the Ocean Scene,tt5667482 GxDvAEsMvoc,2016.0,6,10,2019,Izzie's Way Home,On the Hook Scene,tt5667482 LWtB2BdJ3kk,2016.0,7,10,2019,Izzie's Way Home,Killer Dolphin Scene,tt5667482 sVc3ln7vaig,2016.0,2,10,2019,Izzie's Way Home,Ferocious Lionfish Scene,tt5667482 h6klN0zNh64,2016.0,4,10,2019,Izzie's Way Home,Fart Escape Scene,tt5667482 W112SAzt_FI,2016.0,1,10,2019,Izzie's Way Home,Fish Overboard Scene,tt5667482 n3L8UVTe6Ak,2018.0,7,10,2019,Upgrade,Cyborg vs. Cyborg Scene,tt6499752 wsooQlbj934,2018.0,1,10,2019,Upgrade,The Car Crash Scene,tt6499752 o_3BdeGhzrs,2018.0,6,10,2019,Upgrade,Chased by the Police Scene,tt6499752 gi9EwdK-6L4,2018.0,9,10,2019,Upgrade,Fighting for Control Scene,tt6499752 yn2p3AV23-Q,2018.0,5,10,2019,Upgrade,The Warehouse Fight Scene,tt6499752 AZxn9md_aZI,2018.0,2,10,2019,Upgrade,The Kitchen Fight Scene,tt6499752 -DqmTaUK-Ow,2018.0,10,10,2019,Upgrade,STEM Takes Over Scene,tt6499752 xDkXQ7uBr5M,2018.0,8,10,2019,Upgrade,"Don't Fight Me, Grey Scene",tt6499752 1GYZPg_aQdw,2018.0,3,10,2019,Upgrade,Bathroom Beatdown Scene,tt6499752 4A-hmyHNaxM,2018.0,4,10,2019,Upgrade,Use the Knife Scene,tt6499752 Mcv-560wn_s,2015.0,1,9,2019,Martian Land,The Dust Storm Scene,tt4943934 ZVLaVxPjPcQ,2015.0,6,9,2019,Martian Land,Gasping for Air Scene,tt4943934 clN9kykVhOs,2015.0,2,9,2019,Martian Land,The Wind Tunnels Scene,tt4943934 N3_pKdxk5OM,2015.0,5,9,2019,Martian Land,Escape Through the Tunnels Scene,tt4943934 TWUQypjv2Gw,2015.0,7,9,2019,Martian Land,Save My Family Scene,tt4943934 11MponTu30M,2015.0,4,9,2019,Martian Land,Stick the Landing Scene,tt4943934 QQsg9djZsRE,2015.0,3,9,2019,Martian Land,Enter the Storm Scene,tt4943934 1UN6pgpke7o,2015.0,8,9,2019,Martian Land,Saving the Planet Scene,tt4943934 RZM3dVWNLG0,2015.0,9,9,2019,Martian Land,Mars's Last Stand Scene,tt4943934 C7vyta1sCfU,2012.0,8,8,2019,Alien Origin,The Alien Attacks Scene,tt2196430 Td1oEs-H3QA,2012.0,7,8,2019,Alien Origin,Fighting The Alien Invasion Scene,tt2196430 R0fmtWlMpHc,2012.0,3,8,2019,Alien Origin,The Mothership Lands! Scene,tt2196430 W2sUalav-ak,2012.0,2,8,2019,Alien Origin,Ancient Alien Cave Scene,tt2196430 0cQThjQfEEc,2012.0,5,8,2019,Alien Origin,Alien Firefight Scene,tt2196430 SHwGQTJ73Mg,2012.0,4,8,2019,Alien Origin,Inside the Mothership Scene,tt2196430 XGsmIO5GUZI,2012.0,6,8,2019,Alien Origin,First Contact Scene,tt2196430 0dmwDGkQJR8,2012.0,1,8,2019,Alien Origin,Candid Camera Kill Scene,tt2196430 wq-H7qGfF68,2015.0,6,10,2019,The Wedding Ringer,Grooms Gone Wild Scene,tt0884732 Ep30EE2v0mU,2015.0,1,10,2019,The Wedding Ringer,I'm Bic Mitchum Scene,tt0884732 fvHgXzOY12Y,2015.0,5,10,2019,The Wedding Ringer,Let's Dance Scene,tt0884732 k2s7U_7gHtE,2015.0,9,10,2019,The Wedding Ringer,Best Man Speech Scene,tt0884732 ClOGZ8IiO90,2015.0,7,10,2019,The Wedding Ringer,Bachelor Party Bust Scene,tt0884732 OjkIBSE3yfY,2015.0,2,10,2019,The Wedding Ringer,Groomsmen Auditions Scene,tt0884732 Na9qhz28ZWQ,2015.0,4,10,2019,The Wedding Ringer,Meet Your Groomsmen Scene,tt0884732 RWfQwm_BgZY,2015.0,3,10,2019,The Wedding Ringer,Brunch With the Family Scene,tt0884732 WhUvsKY-l28,2015.0,10,10,2019,The Wedding Ringer,The Best Honeymoon Ever Scene,tt0884732 Se2zCvUqqWw,2015.0,8,10,2019,The Wedding Ringer,Family Football Scene,tt0884732 K93YrK48ZG0,2002.0,10,10,2019,Undercover Brother,"Mess With The 'Fro, You Got To Go Scene",tt0279493 IspZWYlmYZY,2002.0,6,10,2019,Undercover Brother,Selling Out Scene,tt0279493 ngLX1uDh-eg,2002.0,4,10,2019,Undercover Brother,Black Man's Kryptonite Scene,tt0279493 FloKMOp4wN8,2002.0,7,10,2019,Undercover Brother,Fighting Dirty Scene,tt0279493 l38Qliee6VE,2002.0,3,10,2019,Undercover Brother,Caucasian Overload! Scene,tt0279493 DQjDI3NorAY,2002.0,2,10,2019,Undercover Brother,Brotherhood Headquarters Scene,tt0279493 H1IhRMtTUno,2002.0,9,10,2019,Undercover Brother,New Recruits Scene,tt0279493 lfUlATBIer8,2002.0,1,10,2019,Undercover Brother,Blackness Confirmed Scene,tt0279493 H_pmwvIvi9Q,2002.0,5,10,2019,Undercover Brother,Mayonnaise Sandwich Scene,tt0279493 RMWfAkUhGCM,2002.0,8,10,2019,Undercover Brother,Race Chase Scene,tt0279493 Nuwu9VTP3Ak,2012.0,9,10,2019,A Thousand Words,Show Her That You Love Her Scene,tt0763831 f8dkNziRlHg,2012.0,10,10,2019,A Thousand Words,Making Peace Scene,tt0763831 XPsddyf2EcY,2012.0,6,10,2019,A Thousand Words,Nailed It Scene,tt0763831 B_cE7WEW5gM,2012.0,7,10,2019,A Thousand Words,Talk Dirty to Me Scene,tt0763831 6AJH6b91rF8,2012.0,4,10,2019,A Thousand Words,You Found My Furry Tapes Scene,tt0763831 PurV6BzV3fI,2012.0,1,10,2019,A Thousand Words,Freestyle Chanting Scene,tt0763831 qvvcVzNqXVg,2012.0,8,10,2019,A Thousand Words,Because I Got High Scene,tt0763831 8rX7fkDLEx0,2012.0,3,10,2019,A Thousand Words,"Triple Shot, No Assassinations Scene",tt0763831 B2KSjVAskxM,2012.0,5,10,2019,A Thousand Words,Squirrels in My Pants Scene,tt0763831 4vJ6xB6ctaA,2012.0,2,10,2019,A Thousand Words,Baby Back Ribs Scene,tt0763831 9dqOdoFtNcM,2010.0,5,10,2019,Death at a Funeral,Secret Lovers Scene,tt1321509 OxEcQFG6U4g,2010.0,4,10,2019,Death at a Funeral,The Little Lover Scene,tt1321509 ByRUwa_QiaE,2010.0,9,10,2019,Death at a Funeral,Moving the Body Scene,tt1321509 aEG9dwOsAAg,2010.0,2,10,2019,Death at a Funeral,The Coffin's Moving! Scene,tt1321509 yXDgPREBssw,2010.0,10,10,2019,Death at a Funeral,Aaron's Eulogy Scene,tt1321509 B-S7jkgEC8Y,2010.0,7,10,2019,Death at a Funeral,Death and Defecation Scene,tt1321509 CnrR2upI8Jo,2010.0,1,10,2019,Death at a Funeral,Not My Father Scene,tt1321509 6PAMZYS1Fqk,2010.0,6,10,2019,Death at a Funeral,Sibling Rivalry Scene,tt1321509 DHzeRLN8UVc,2010.0,3,10,2019,Death at a Funeral,I've Been Drugged! Scene,tt1321509 rgmKJYrtmkw,2010.0,8,10,2019,Death at a Funeral,Naked on the Roof Scene,tt1321509 aOX72bZr_LA,1999.0,2,10,2019,The Best Man,"It's Karma, Baby Scene",tt0168501 auNkHDpPil4,1999.0,9,10,2019,The Best Man,She's The One Scene,tt0168501 llTSaDl6Pcg,1999.0,7,10,2019,The Best Man,Love Never Fails Scene,tt0168501 CTRZgOL-vA0,1999.0,10,10,2019,The Best Man,Best Man Proposal Scene,tt0168501 js11RqXLkZg,1999.0,8,10,2019,The Best Man,Best Man's Speech Scene,tt0168501 F0VmzZy-AF4,1999.0,1,10,2019,The Best Man,Lose Control & Get Freaky Scene,tt0168501 txybV-1ao_Y,1999.0,4,10,2019,The Best Man,A Kiss To Her Frontal Lobe Scene,tt0168501 cm1NBLlRxy0,1999.0,3,10,2019,The Best Man,Merry Murch Scene,tt0168501 xjAHbBY-UUM,1999.0,5,10,2019,The Best Man,Don't Blame Me Scene,tt0168501 VCJrgPb3y80,1999.0,6,10,2019,The Best Man,She's My Queen Scene,tt0168501 NQBMjZqgGEI,2011.0,2,10,2019,Jumping the Broom,Strike One Scene,tt1640484 geiub8WP_XE,2011.0,1,10,2019,Jumping the Broom,Surprise Proposal Scene,tt1640484 xhj4CAFsPt0,2011.0,4,10,2019,Jumping the Broom,Strike Two Scene,tt1640484 24adocMDT_U,2011.0,7,10,2019,Jumping the Broom,Sexual Healing Scene,tt1640484 KVvqRC018VA,2011.0,9,10,2019,Jumping the Broom,A Family Tradition Scene,tt1640484 Ypa0nma0aSs,2011.0,3,10,2019,Jumping the Broom,Vow of Chastity Scene,tt1640484 s7ougTo-pGg,2011.0,10,10,2019,Jumping the Broom,The Cupid Shuffle Scene,tt1640484 fBXXvn4s-74,2011.0,6,10,2019,Jumping the Broom,Prayers & Traditions Scene,tt1640484 wgkxKdTVrHo,2011.0,8,10,2019,Jumping the Broom,So Tasty Scene,tt1640484 qnFWCagTOtw,2011.0,5,10,2019,Jumping the Broom,Strike Three Scene,tt1640484 oyU6En9HN8E,1980.0,3,10,2019,Stir Crazy,We're in Prison Scene,tt0081562 ar_o_qS68oA,1980.0,4,10,2019,Stir Crazy,Getting Chow Scene,tt0081562 -H6l6-_elF0,1980.0,9,10,2019,Stir Crazy,Down in the Valley Scene,tt0081562 Jd3GwwxFDPY,1980.0,6,10,2019,Stir Crazy,New Cellmate Scene,tt0081562 -FU65KX7aJs,1980.0,2,10,2019,Stir Crazy,Kiss the Baby Scene,tt0081562 XvnWjkHgWEw,1980.0,7,10,2019,Stir Crazy,Cover Your Jewels Scene,tt0081562 2vi_VeRSHbM,1980.0,10,10,2019,Stir Crazy,Get the Hell Out of This State Scene,tt0081562 gDtB0Sr8sbY,1980.0,5,10,2019,Stir Crazy,Your Debt to Society Scene,tt0081562 hM3nn30NxCE,1980.0,8,10,2019,Stir Crazy,The Secret Word Scene,tt0081562 V6xx32EGypQ,1980.0,1,10,2019,Stir Crazy,Do You Get Much? Scene,tt0081562 jW2zOdceqr8,1995.0,8,10,2019,Money Train,Blowing Through the Barricade Scene,tt0113845 V3aM1IFedho,1995.0,3,10,2019,Money Train,Sibling Rivalry Scene,tt0113845 wTzfJT3zGz0,1995.0,10,10,2019,Money Train,Forty Ton Somersault Scene,tt0113845 JzmD5wQpm5c,1995.0,4,10,2019,Money Train,Roasted Alive Scene,tt0113845 o6Jkz5TQv84,1995.0,7,10,2019,Money Train,Bleed the Brakes Scene,tt0113845 r86n2JRUyRc,1995.0,1,10,2019,Money Train,Failed Heist Scene,tt0113845 l94geYuwNJg,1995.0,6,10,2019,Money Train,Motorcycle vs. Subway Train Scene,tt0113845 kLjET9nE2dQ,1995.0,5,10,2019,Money Train,Strip Club Beatdown Scene,tt0113845 CaQWWTLOzhY,1995.0,9,10,2019,Money Train,Brotherly Love Scene,tt0113845 4GRGY20zWkU,1995.0,2,10,2019,Money Train,Drop Him Scene,tt0113845 p4ylvDhfiQw,2002.0,6,10,2019,I Spy,Car Hopping Scene,tt0297181 HNPRZ2M3h-M,2002.0,3,10,2019,I Spy,Man of Action Scene,tt0297181 sJsHcwZsNnI,2002.0,1,10,2019,I Spy,Accidental Avalanche Scene,tt0297181 EL-Zzx9ZrOw,2002.0,10,10,2019,I Spy,Pseudo-Double Agent Scene,tt0297181 70tY44WxygM,2002.0,8,10,2019,I Spy,Sexual Healing Scene,tt0297181 fM3FUot8TCY,2002.0,2,10,2019,I Spy,Let's Go To My Room Scene,tt0297181 OeknFyEHaMw,2002.0,9,10,2019,I Spy,Double Vision Scene,tt0297181 574oBJ7SR_8,2002.0,7,10,2019,I Spy,We're Twins Scene,tt0297181 n0QO2xOuqp0,2002.0,5,10,2019,I Spy,Trolley Chase Scene,tt0297181 fpwM2-jDwQU,2002.0,4,10,2019,I Spy,This is a Sock Scene,tt0297181 oJITCthevTE,2010.0,7,9,2019,The 7 Adventures of Sinbad,Escaping The Island Scene,tt1636629 6DxeFNOzuWo,2010.0,2,9,2019,The 7 Adventures of Sinbad,Meeting The Natives Scene,tt1636629 0PPstocAAAo,2010.0,5,9,2019,The 7 Adventures of Sinbad,Fight Or Die Scene,tt1636629 Dhn_1iKEsQE,2010.0,9,9,2019,The 7 Adventures of Sinbad,Changing The Tide Scene,tt1636629 i23d4uqAG80,2018.0,8,10,2019,Detective K: Secret of the Living Dead,Carriage Chase Scene,tt7108976 sbM9An15WNQ,2018.0,3,10,2019,Detective K: Secret of the Living Dead,A Deadly Surprise Scene,tt7108976 O7s-DtIX_8g,2018.0,5,10,2019,Detective K: Secret of the Living Dead,"Oldboy, the Vampire Slayer Scene",tt7108976 3dJLDhRGBpE,2018.0,9,10,2019,Detective K: Secret of the Living Dead,Vampire Ambush Scene,tt7108976 BmuWHveTicc,2018.0,4,10,2019,Detective K: Secret of the Living Dead,Daywalker Attack Scene,tt7108976 te4DfoUHm1s,2018.0,1,10,2019,Detective K: Secret of the Living Dead,Bloody Resurrection Scene,tt7108976 pDzvia9Yuk0,2018.0,7,10,2019,Detective K: Secret of the Living Dead,Regicidal Conspiracy Scene,tt7108976 ANEr1fSCLFw,2018.0,10,10,2019,Detective K: Secret of the Living Dead,Korean Zombies Scene,tt7108976 L9reo1mJVMg,2018.0,2,10,2019,Detective K: Secret of the Living Dead,The Sword Box Scene,tt7108976 nogLQrWY-bM,2018.0,6,10,2019,Detective K: Secret of the Living Dead,Vampire Ninja Attack Scene,tt7108976 SyKWZOEqhzw,2010.0,1,9,2019,The 7 Adventures of Sinbad,A Bad Case Of Crabs Scene,tt1636629 bPZwO18R-1Q,2010.0,3,9,2019,The 7 Adventures of Sinbad,Dragons Attack! Scene,tt1636629 IQa9PQO3jhE,2010.0,4,9,2019,The 7 Adventures of Sinbad,Slaying The Cyclops Scene,tt1636629 9jfaSZXLxGQ,2010.0,6,9,2019,The 7 Adventures of Sinbad,The Devil's Depths Scene,tt1636629 Cl5eAgx8K8Y,2010.0,8,9,2019,The 7 Adventures of Sinbad,Attack Of The Giant Squid Scene,tt1636629 GJE9jRmD3RE,2016.0,2,8,2019,Sinbad and the War of the Furies,Holy Smackdown Scene,tt6231588 l753e8ClbPI,2016.0,5,8,2019,Sinbad and the War of the Furies,Magic Carpet Escape Scene,tt6231588 BL-fRfeQTNc,2016.0,6,8,2019,Sinbad and the War of the Furies,The Gor-Gun Scene,tt6231588 MXa-QNQ1zfE,2016.0,3,8,2019,Sinbad and the War of the Furies,Sirens' Song Scene,tt6231588 Re6AZiB6JQM,2016.0,1,8,2019,Sinbad and the War of the Furies,Steal Your Heart Scene,tt6231588 fKTTAEY4cuo,2016.0,4,8,2019,Sinbad and the War of the Furies,The Legend of Sinbad Scene,tt6231588 gBRwHB9FSas,2016.0,7,8,2019,Sinbad and the War of the Furies,Ticket to Slamtown Scene,tt6231588 dYNP7UULtwM,2016.0,8,8,2019,Sinbad and the War of the Furies,The Fate of the Furies Scene,tt6231588 gTKqZp_fABE,2019.0,10,10,2019,Glass,Mr. Breaks Scene,tt6823368 mNCLMfXv7ek,2019.0,7,10,2019,Glass,Water Tank Fight Scene,tt6823368 c5JH3hyjFcY,2019.0,1,10,2019,Glass,Overseer vs. The Beast Scene,tt6823368 noakeL8pCX8,2019.0,3,10,2019,Glass,"First Name Mister, Last Name Scene",tt6823368 vU1mJ4LF3u0,2019.0,9,10,2019,Glass,The Horde Finds Peace Scene,tt6823368 i71zp2X4XDw,2019.0,2,10,2019,Glass,We're Not Crazy! Scene,tt6823368 E9uah5ldjvo,2019.0,8,10,2019,Glass,The Overseer's End Scene,tt6823368 sw52VLDCFhk,2019.0,5,10,2019,Glass,The Vengeance of Mr. Scene,tt6823368 aKFriCo_HWE,2019.0,4,10,2019,Glass,'s Escape Scene,tt6823368 XLi1XYfldbg,2019.0,6,10,2019,Glass,Parking Lot Fight Scene,tt6823368 R4JJihSXMRU,2010.0,1,10,2019,With Great Power: The Stan Lee Story,The Origin of Stan Lee Scene,tt1091863 wwHjdOzIloc,2010.0,10,10,2019,With Great Power: The Stan Lee Story,Stan Lee Cameo Scene,tt1091863 YIfrX-BJbgA,2010.0,6,10,2019,With Great Power: The Stan Lee Story,Steve Ditko & Stan Lee Scene,tt1091863 TNPMRbIE9k8,2010.0,2,10,2019,With Great Power: The Stan Lee Story,Jack Kirby & Stan Lee Scene,tt1091863 1zl35F7uPoo,2010.0,4,10,2019,With Great Power: The Stan Lee Story,The Hulk & Spider Man Scene,tt1091863 QvMf6_foftw,2010.0,3,10,2019,With Great Power: The Stan Lee Story,The Fantastic Four Scene,tt1091863 4mYsa1t21Mg,2010.0,5,10,2019,With Great Power: The Stan Lee Story,Creating Spider Man Scene,tt1091863 dbGs2OWRYqM,2010.0,9,10,2019,With Great Power: The Stan Lee Story,Marvel Makes Movies Scene,tt1091863 faUJYzpcDec,2010.0,7,10,2019,With Great Power: The Stan Lee Story,Stan the Revolutionary Scene,tt1091863 ovmEekx3IcA,2010.0,8,10,2019,With Great Power: The Stan Lee Story,Marvel Productions Scene,tt1091863 plkfDAtzmjE,2017.0,1,10,2019,The Hero,The Cop Knock Scene,tt7745068 ENEIHMJjims,2017.0,8,10,2019,The Hero,Breaking Down Scene,tt7745068 o2gmatNTH1Y,2017.0,3,10,2019,The Hero,A Thing for Old Guys Scene,tt7745068 1Igt8Zl7xwM,2017.0,10,10,2019,The Hero,Gently They Go Scene,tt7745068 ThBbbiT_cCU,2017.0,7,10,2019,The Hero,Comedy Routine Scene,tt7745068 viJsUgnT_HY,2017.0,2,10,2019,The Hero,"Looking At You, Looking at Me Scene",tt7745068 iQxa0TuKY-c,2017.0,5,10,2019,The Hero,Grains of Sand Scene,tt7745068 GwLec89XpYs,2017.0,4,10,2019,The Hero,Fairy Dust Scene,tt7745068 RF_7uvTh-dI,2017.0,9,10,2019,The Hero,Fix Things Scene,tt7745068 BN-FwrjSrFA,2017.0,6,10,2019,The Hero,I Don't Want You to Go Scene,tt7745068 6AE1I5edCfQ,2015.0,8,10,2019,Project Almanac,Timequake Scene,tt2436386 gK6JyAanVNE,2015.0,6,10,2019,Project Almanac,Backstage at Lollapallooza Scene,tt2436386 n3tXVrGw3kY,2015.0,2,10,2019,Project Almanac,Groundhog Day This Scene,tt2436386 0aX79Yt3Bno,2015.0,1,10,2019,Project Almanac,It's Yesterday! Scene,tt2436386 mS1u_E53e10,2015.0,3,10,2019,Project Almanac,I'm Everywhere B*tch Scene,tt2436386 p4Pq9aZVV9Y,2015.0,4,10,2019,Project Almanac,Winning the Lottery Scene,tt2436386 4RrAmzAYCQY,2015.0,5,10,2019,Project Almanac,Imagine Dragons Scene,tt2436386 os1x0te4Waw,2015.0,9,10,2019,Project Almanac,What Did You Change? Scene,tt2436386 x5Gwzy2FY10,2015.0,7,10,2019,Project Almanac,Did We Have Sex? Scene,tt2436386 1ZVcZnWu57k,2015.0,10,10,2019,Project Almanac,Say Goodbye to Your Son Scene,tt2436386 iG5M3WSF1DY,1990.0,7,10,2019,Flatliners,Salvation Just Ahead Scene,tt0099582 kPiMgLB7S7c,1990.0,5,10,2019,Flatliners,Bring Her Back Scene,tt0099582 yi2YuSALRzs,1990.0,2,10,2019,Flatliners,Clear! Scene,tt0099582 yMyXgCLhAXk,1990.0,4,10,2019,Flatliners,See You Soon Scene,tt0099582 iXo8qxLvcSs,1990.0,6,10,2019,Flatliners,Let It Go Scene,tt0099582 R_4_btP862g,1990.0,9,10,2019,Flatliners,We Are All Responsible For This Scene,tt0099582 lyM65FpQLlM,1990.0,10,10,2019,Flatliners,Nelson Lives Scene,tt0099582 r76peMNNiyw,1990.0,3,10,2019,Flatliners,The Bully Train Scene,tt0099582 9uXRIrNj_z4,1990.0,8,10,2019,Flatliners,Flatlining Alone Scene,tt0099582 wpci2WuWy4E,1990.0,1,10,2019,Flatliners,Flatline Scene,tt0099582 ujFOaYo5QME,1941.0,1,10,2019,Dr. Jekyll and Mr. Hyde,Call It the Soul! Scene,tt0033553 WGRVxwlEoio,1941.0,10,10,2019,Dr. Jekyll and Mr. Hyde,I've Done Nothing! Scene,tt0033553 4kmeixKc9yk,1941.0,3,10,2019,Dr. Jekyll and Mr. Hyde,Dr. Jekyll's Transformation Scene,tt0033553 WmzictYYVj4,1941.0,6,10,2019,Dr. Jekyll and Mr. Hyde,Champagne For Mr. Hyde Scene,tt0033553 QS3UyqLs5KY,1941.0,9,10,2019,Dr. Jekyll and Mr. Hyde,Are You Ill? Scene,tt0033553 uabEMv5Sr68,1941.0,2,10,2019,Dr. Jekyll and Mr. Hyde,Oh Doctor! Scene,tt0033553 bxEqg39v9Ec,1941.0,5,10,2019,Dr. Jekyll and Mr. Hyde,"Try, Try Anyway Scene",tt0033553 t5vDcrQIig0,1941.0,7,10,2019,Dr. Jekyll and Mr. Hyde,The Moment Is Mine! Scene,tt0033553 YqkDor9GqqE,1941.0,8,10,2019,Dr. Jekyll and Mr. Hyde,Cheap Little Dreams Scene,tt0033553 3K0KQCvu2Xo,1941.0,4,10,2019,Dr. Jekyll and Mr. Hyde,Can This Be Evil? Scene,tt0033553 BDvjjQvM498,2000.0,7,10,2019,Vertical Limit,Wick's Revenge Scene,tt0190865 3IZVz7ukKyU,2000.0,3,10,2019,Vertical Limit,Turbulence & Terror Scene,tt0190865 D1YHdHw-doQ,2000.0,4,10,2019,Vertical Limit,He's Going to Die Scene,tt0190865 Q0gx_D--iDw,2000.0,1,10,2019,Vertical Limit,Cut the Rope Scene,tt0190865 UepHO767tO8,2000.0,5,10,2019,Vertical Limit,Collapsing Ledge Scene,tt0190865 gH4dw-S1esk,2000.0,2,10,2019,Vertical Limit,Avalanche! Scene,tt0190865 TMe71Lvy1lA,2000.0,10,10,2019,Vertical Limit,Involuntary Sacrifice Scene,tt0190865 oH-kAHKtbTE,2000.0,8,10,2019,Vertical Limit,Are You Going to Kill Me? Scene,tt0190865 Kfzxu_SIzGo,2000.0,6,10,2019,Vertical Limit,Explosive Avalanche Scene,tt0190865 UvDzmAFiUj8,2000.0,9,10,2019,Vertical Limit,The Blood Bag Scene,tt0190865 W7_EwytEz4w,2017.0,2,9,2019,Geo-Disaster,Wake of the Quake Scene,tt7204400 nLlnq5zJKvo,2017.0,1,9,2019,Geo-Disaster,Hollywood Destroyed Scene,tt7204400 P0yhCqbwnsU,2017.0,5,9,2019,Geo-Disaster,Minority Report Scene,tt7204400 1Oxtu2-DlI4,2017.0,4,9,2019,Geo-Disaster,Carjacking in the Canyon Scene,tt7204400 M8K1rD4PGkI,2017.0,7,9,2019,Geo-Disaster,A Good Time Scene,tt7204400 EHOt9vYunt8,2017.0,9,9,2019,Geo-Disaster,Escaping Disaster Scene,tt7204400 UadRg4D-PNI,2017.0,3,9,2019,Geo-Disaster,Aftershock Scene,tt7204400 qOeIJ8YVJeg,2017.0,6,9,2019,Geo-Disaster,Lightning Storm Scene,tt7204400 qybKU4uNtV0,2017.0,8,9,2019,Geo-Disaster,Tsunami Chase Scene,tt7204400 HnhM0M5UzX0,1965.0,1,11,2019,The Greatest Story Ever Told,The Birth of Jesus Christ Scene,tt0059245 l18i2Kxo8o4,2014.0,5,10,2019,Airplane vs Volcano,In Hot Water Scene,tt3417334 AupnEJf5ZNw,2014.0,6,10,2019,Airplane vs Volcano,Saying Goodbye Scene,tt3417334 GRpcj2aG6MI,2014.0,7,10,2019,Airplane vs Volcano,Crieger's Revenge Scene,tt3417334 FVgkuDNTOa0,2014.0,1,10,2019,Airplane vs Volcano,Into A Burning Ring Of Fire Scene,tt3417334 dzGkUGKULRI,2014.0,4,10,2019,Airplane vs Volcano,Extreme Weight Loss Scene,tt3417334 wmm6PIPCg9c,2014.0,2,10,2019,Airplane vs Volcano,Adding Fuel To The Fire Scene,tt3417334 jpeq9SWXrQo,2014.0,3,10,2019,Airplane vs Volcano,Suicide Mission Scene,tt3417334 p1k68Ri9DKg,2014.0,9,10,2019,Airplane vs Volcano,Zipline Rescue Scene,tt3417334 i7zzhK5XoAI,2014.0,10,10,2019,Airplane vs Volcano,The Ultimate Sacrifice Scene,tt3417334 igmlE2TDEyw,2014.0,8,10,2019,Airplane vs Volcano,Shooting At The Volcano Scene,tt3417334 3lQ1fd0hBe0,1965.0,10,11,2019,The Greatest Story Ever Told,Jesus Dies On The Cross Scene,tt0059245 wyQmO-LFF4M,1965.0,2,11,2019,The Greatest Story Ever Told,John Baptizes Jesus Scene,tt0059245 MaSm7idHMtI,1965.0,8,11,2019,The Greatest Story Ever Told,The Last Supper Scene,tt0059245 DIkKczv9Eo4,1965.0,7,11,2019,The Greatest Story Ever Told,Lazarus Rises From the Dead Scene,tt0059245 1LoGtPIr2-k,1965.0,6,11,2019,The Greatest Story Ever Told,You Are The Messiah Scene,tt0059245 UWtFueVeqHc,1965.0,3,11,2019,The Greatest Story Ever Told,Jesus Heals Uriah Scene,tt0059245 W-rC7PEsItw,1965.0,9,11,2019,The Greatest Story Ever Told,Your Will Be Done Scene,tt0059245 Da02cZG3NDI,1965.0,5,11,2019,The Greatest Story Ever Told,Sermon on the Mount Scene,tt0059245 4Tb7SrDUXWo,1965.0,11,11,2019,The Greatest Story Ever Told,Jesus Is Resurrected Scene,tt0059245 epupZLvDDts,1965.0,4,11,2019,The Greatest Story Ever Told,Jesus Defends Mary Magdalene Scene,tt0059245 sgs4FFD0oH4,2017.0,4,10,2019,It Came From the Desert,Swimsuit Striptease & Drunk Giant Ants Scene,tt4288674 R8r9iHY2pCw,2017.0,2,10,2019,It Came From the Desert,Ants in the Kitchen Scene,tt4288674 ZCrTaNYTk_M,2017.0,6,10,2019,It Came From the Desert,Alien Ant Farm Scene,tt4288674 X55PmVk-KvM,2017.0,1,10,2019,It Came From the Desert,The Eradicator Scene,tt4288674 95jCkyuV0VQ,2017.0,5,10,2019,It Came From the Desert,I Like You! Scene,tt4288674 FG31-KlqhCI,2017.0,7,10,2019,It Came From the Desert,Say Hello to My Little Friend! Scene,tt4288674 OunFjTXpbMY,2017.0,10,10,2019,It Came From the Desert,Always Protect Your Beer Scene,tt4288674 VBpCoOfLlgU,2017.0,3,10,2019,It Came From the Desert,Run and Evade Scene,tt4288674 kxGdpZ6GCcs,2017.0,8,10,2019,It Came From the Desert,Ants vs. Heavy Artillery Scene,tt4288674 BL_RaZ6VCgo,2017.0,9,10,2019,It Came From the Desert,Fighting the Alien Queen Ant Scene,tt4288674 B_JVGEptSOw,2018.0,5,6,2019,Invoking 5,Missed Connection Scene,tt8671462 -cdk5mhKuWc,2018.0,1,6,2019,Invoking 5,Witness to My Own Murder Scene,tt8671462 KjbNSIIOEo4,2018.0,6,6,2019,Invoking 5,Dancing Dork Scene,tt8671462 5CO6DsmrIDw,2018.0,2,6,2019,Invoking 5,Demonic Premonition Scene,tt8671462 ywlNZzvlaKE,2018.0,4,6,2019,Invoking 5,Psychedelic Death Scene,tt8671462 plu5YA3t2l8,2018.0,3,6,2019,Invoking 5,Cthulhu Is Watching You Scene,tt8671462 Ec2ek8MmHRA,2017.0,5,10,2019,Invoking 4: Halloween Nights,The Captives Revolt Scene,tt7475886 qv_DJYvELTQ,2017.0,3,10,2019,Invoking 4: Halloween Nights,I Am the Devil Scene,tt7475886 GP8HnRCjLGg,2017.0,9,10,2019,Invoking 4: Halloween Nights,Mind Blown Scene,tt7475886 6V22uyjiMpw,2017.0,8,10,2019,Invoking 4: Halloween Nights,Murderous Mime Scene,tt7475886 tEs0OuspG4w,2017.0,6,10,2019,Invoking 4: Halloween Nights,Hold Your Tongue Scene,tt7475886 NMbSKSzRvF8,2017.0,7,10,2019,Invoking 4: Halloween Nights,The Silent Killer Scene,tt7475886 4XK1zU7zhkI,2017.0,10,10,2019,Invoking 4: Halloween Nights,Pantomime Payback Scene,tt7475886 t09QqjBkg0c,2017.0,4,10,2019,Invoking 4: Halloween Nights,Demon Womb Scene,tt7475886 sjmh7BViBtg,2017.0,1,10,2019,Invoking 4: Halloween Nights,Bump in the Night Scene,tt7475886 2-1_64NeG_E,2017.0,2,10,2019,Invoking 4: Halloween Nights,What's in the Closet Scene,tt7475886 HXmru6NrSAY,1998.0,7,10,2019,The Prince of Egypt,Smiting of the First Born Scene,tt0120794 Zw7lsVV14Yo,1998.0,10,10,2019,The Prince of Egypt,Swept Away Scene,tt0120794 GJleW4TCQM0,1998.0,6,10,2019,The Prince of Egypt,The 10 Plagues Scene,tt0120794 TzRrEgkfhG8,1998.0,9,10,2019,The Prince of Egypt,Parting the Red Sea Scene,tt0120794 NieC8KA0EvI,1998.0,8,10,2019,The Prince of Egypt,When You Believe Scene,tt0120794 psDtqypK3hI,1998.0,2,10,2019,The Prince of Egypt,All I Ever Wanted Scene,tt0120794 1-WimijgGEU,1998.0,1,10,2019,The Prince of Egypt,Deliver Us Scene,tt0120794 sDEWZnPJGRU,1998.0,3,10,2019,The Prince of Egypt,Through Heaven's Eyes Scene,tt0120794 cLomnZIvoFs,1998.0,4,10,2019,The Prince of Egypt,Playing with the Big Boys Scene,tt0120794 r5zhPLNGAOE,1998.0,5,10,2019,The Prince of Egypt,The River of Blood Scene,tt0120794 aG8bSNpEGoE,2000.0,8,10,2019,Joseph: King of Dreams,Seven Years of Harvest Scene,tt0264734 SRy397r355A,2000.0,5,10,2019,Joseph: King of Dreams,Potiphar's Wife Scene,tt0264734 QWiJ8VQXJzY,2000.0,7,10,2019,Joseph: King of Dreams,Pharaoh's Dreams Scene,tt0264734 -pq4FpNnvcg,2000.0,10,10,2019,Joseph: King of Dreams,I Am Your Brother Scene,tt0264734 7wgLb8Ykb24,2000.0,9,10,2019,Joseph: King of Dreams,Joseph's Brothers Return Scene,tt0264734 VIA2wUCj36Q,2000.0,1,10,2019,Joseph: King of Dreams,The Miracle Child Scene,tt0264734 7tXcQ8BBqXs,2000.0,3,10,2019,Joseph: King of Dreams,Sold Into Slavery Scene,tt0264734 vI_kMlvUWDw,2000.0,2,10,2019,Joseph: King of Dreams,Betrayed by His Brothers Scene,tt0264734 GuAHdW8FdLs,2000.0,6,10,2019,Joseph: King of Dreams,The Dreamseer Scene,tt0264734 E-Ts3DuFLDg,2000.0,4,10,2019,Joseph: King of Dreams,Enslaved in Egypt Scene,tt0264734 unWr90pLIvc,1988.0,4,10,2019,The Last Temptation of Christ,The Last Supper Scene,tt0095497 JyTf7wR8vWI,1988.0,8,10,2019,The Last Temptation of Christ,Guardian Angel at Golgotha Scene,tt0095497 iGRj7rfPdQc,1988.0,10,10,2019,The Last Temptation of Christ,I Want To Be The Messiah! Scene,tt0095497 pXGsio9H1xs,1988.0,5,10,2019,The Last Temptation of Christ,Pontius Pilate Scene,tt0095497 lZ_r2Q0FQ1A,1988.0,6,10,2019,The Last Temptation of Christ,Crown of Thorns Scene,tt0095497 poTqVcSgFRE,1988.0,9,10,2019,The Last Temptation of Christ,Paul's False Testimony Scene,tt0095497 PW20LbwAmng,1988.0,1,10,2019,The Last Temptation of Christ,Tempted by Satan Scene,tt0095497 LJvCFAHRAFI,1988.0,7,10,2019,The Last Temptation of Christ,The Crucifixion Scene,tt0095497 CB5qzQrDnZE,1988.0,3,10,2019,The Last Temptation of Christ,The Cleansing of the Temple Scene,tt0095497 TpNPIxWdZgY,1988.0,2,10,2019,The Last Temptation of Christ,Jesus' Heart Scene,tt0095497 DTqY1j7wgD4,2016.0,7,10,2019,Silence,The Only Given Sun Scene,tt0490215 c_ByO08UsWg,2016.0,10,10,2019,Silence,A Buddhist Funeral Scene,tt0490215 VNI6movTCuQ,2016.0,1,10,2019,Silence,Ferreira's Torture Scene,tt0490215 EOX8-c-_uVY,2016.0,8,10,2019,Silence,Rodrigues's Step Scene,tt0490215 ukXfvR7wi0U,2016.0,4,10,2019,Silence,Faith Test Scene,tt0490215 GyM8LvY5RW8,2016.0,3,10,2019,Silence,Crucifixion by the Sea Scene,tt0490215 t6plGJhbkgM,2016.0,6,10,2019,Silence,Apostatize or Die Scene,tt0490215 ks7pfp1_V-o,2016.0,9,10,2019,Silence,The Apostate Priests Scene,tt0490215 gDVYKkvkguQ,2016.0,5,10,2019,Silence,Garupe's Death Scene,tt0490215 SEzrTYKabwI,2016.0,2,10,2019,Silence,Kichijiro's Confession Scene,tt0490215 QUgviX8jMaY,2016.0,5,7,2019,In the Name of Ben Hur,Adrian's Revenge Scene,tt5582876 PEg46xyJNPw,2016.0,2,7,2019,In the Name of Ben Hur,Trial By Sword Scene,tt5582876 MDxkA-Msgdk,2016.0,3,7,2019,In the Name of Ben Hur,My Name Is Judah Ben Hur Scene,tt5582876 zquC4ky_d6M,2016.0,4,7,2019,In the Name of Ben Hur,Chariots Of Ire Scene,tt5582876 b4TJqx34ynE,2016.0,6,7,2019,In the Name of Ben Hur,Fighting For His Life Scene,tt5582876 Dq7TcTBsAJI,2016.0,1,7,2019,In the Name of Ben Hur,Don't Start A Fight You Can't Win Scene,tt5582876 vY9yCPmqbc8,2016.0,7,7,2019,In the Name of Ben Hur,Freeing Ben Hur Scene,tt5582876 oWjtcWh-gyI,2011.0,8,10,2019,Hop,The Easter Chicken Scene,tt1411704 X0uMMVqQgeY,2011.0,9,10,2019,Hop,Carlos Scene,tt1411704 WK0fQueuPoI,2011.0,10,10,2019,Hop,Co-Easter Bunnies Scene,tt1411704 XUyFzVAKCm4,2011.0,5,10,2019,Hop,I Want Candy! Scene,tt1411704 GSkbcI9F5ec,2011.0,1,10,2019,Hop,Hollywood Hare Scene,tt1411704 uy4F1IeShVA,2011.0,7,10,2019,Hop,The Pink Berets Scene,tt1411704 qYZw_tL0j9U,2011.0,6,10,2019,Hop,Easter Bunny Training Scene,tt1411704 sneQ02FCals,2011.0,4,10,2019,Hop,Playing the Drums Scene,tt1411704 cbEbCrrgWiA,2011.0,3,10,2019,Hop,Wind-Up Bunny Scene,tt1411704 XnfiKz-Zk7Y,2011.0,2,10,2019,Hop,Jellybean Poop Scene,tt1411704 CvLrYbRzjAE,1991.0,10,10,2019,An American Tail: Fievel Goes West,Fighting Like Cats & Dogs Scene,tt0101329 cglsMVVevx8,1991.0,9,10,2019,An American Tail: Fievel Goes West,Dog Training Scene,tt0101329 TC41JxKq_xQ,1991.0,3,10,2019,An American Tail: Fievel Goes West,The Dog Chase Scene,tt0101329 q5eGg_CgBPk,1991.0,8,10,2019,An American Tail: Fievel Goes West,Tanya Performs Scene,tt0101329 S76Oq-NDyvw,1991.0,4,10,2019,An American Tail: Fievel Goes West,Way Out West Scene,tt0101329 JWrDT-JGDug,1991.0,1,10,2019,An American Tail: Fievel Goes West,Alley Cat-astrophe Scene,tt0101329 FLPGiFhKS28,1991.0,2,10,2019,An American Tail: Fievel Goes West,Marionette Mouse Scene,tt0101329 DRtbf7iG8Nw,1991.0,7,10,2019,An American Tail: Fievel Goes West,Dreams To Dream Scene,tt0101329 Wq8gxNsz9ZQ,1991.0,6,10,2019,An American Tail: Fievel Goes West,In Tiger's Mouth Scene,tt0101329 c9YJ-KJZKyY,1991.0,5,10,2019,An American Tail: Fievel Goes West,The Flying Aaah! Scene,tt0101329 F7FEV8M0ZZQ,2017.0,8,9,2019,Super Dark Times,Josh is a Psychopath Scene,tt5112578 zsiYUAF5Xtc,2017.0,4,9,2019,Super Dark Times,Killer's Kiss Scene,tt5112578 Tuceg816_j4,2017.0,3,9,2019,Super Dark Times,Burying the Body Scene,tt5112578 TBLYqmHXPk8,2017.0,5,9,2019,Super Dark Times,He Survived Scene,tt5112578 xlTl5F96ZVo,2017.0,7,9,2019,Super Dark Times,But I Like You Scene,tt5112578 fxff52VbAa4,2017.0,2,9,2019,Super Dark Times,He Fell On My Sword Scene,tt5112578 aSQrrou9CbU,2017.0,9,9,2019,Super Dark Times,Please Be Alive Scene,tt5112578 WeMJebErzLY,2017.0,6,9,2019,Super Dark Times,Memories of Murder Scene,tt5112578 gs6FcpgTCqE,2017.0,1,9,2019,Super Dark Times,Boots on the Ground Scene,tt5112578 X6zbmAt0YwI,2011.0,10,10,2019,Hugo,Endings and Beginnings Scene,tt0970179 FuYjhxmpoOQ,2011.0,4,10,2019,Hugo,Where Dreams Are Made Scene,tt0970179 E-fSwxZNG-0,2011.0,2,10,2019,Hugo,Méliès's Chest Scene,tt0970179 IqsvjhHv5wo,2011.0,5,10,2019,Hugo,Stuck on the Tracks Scene,tt0970179 UHaEsAcQQ6k,2011.0,7,10,2019,Hugo,Director of Dreams Scene,tt0970179 puyN3edOOUY,2011.0,8,10,2019,Hugo,Clocktower Chase Scene,tt0970179 c-ej3IOxBno,2011.0,9,10,2019,Hugo,A Tribute to Méliès Scene,tt0970179 XqqckmSFUwo,2011.0,6,10,2019,Hugo,The Last Méliès Film Scene,tt0970179 vn-PJRh_nFQ,2011.0,3,10,2019,Hugo,The Story of the First Movies Scene,tt0970179 TSnlLU5k9lU,2011.0,1,10,2019,Hugo,The Metal Marvel Scene,tt0970179 WCB6zM_9DQU,1983.0,5,12,2019,The Black Stallion Returns,The Black's New Rider Scene,tt0085248 XlOaSZy_S50,1983.0,8,12,2019,The Black Stallion Returns,You Are The One Rider Scene,tt0085248 X2YJECANG6A,1983.0,9,12,2019,The Black Stallion Returns,The Race Begins Scene,tt0085248 rcIfzdLjjxU,1983.0,4,12,2019,The Black Stallion Returns,I Want To Be Your Guest Scene,tt0085248 NBxg8a4TAng,1983.0,12,12,2019,The Black Stallion Returns,He Belongs Here Scene,tt0085248 IXl4S2_5sX4,1983.0,10,12,2019,The Black Stallion Returns,Chased Down Scene,tt0085248 1eP7huR6T3U,1983.0,6,12,2019,The Black Stallion Returns,Helping Tabari Scene,tt0085248 qDjmN1TyJAU,1983.0,3,12,2019,The Black Stallion Returns,Return To Your People Scene,tt0085248 hSBoEivF-hk,1983.0,7,12,2019,The Black Stallion Returns,The Black To The Rescue Scene,tt0085248 qrIt5BPvCv8,1983.0,2,12,2019,The Black Stallion Returns,Alec Meets Raj Scene,tt0085248 dJsuwhIpSDQ,1983.0,11,12,2019,The Black Stallion Returns,Winning The Race Scene,tt0085248 1gj7X8C31Tg,1983.0,1,12,2019,The Black Stallion Returns,Taking The Black Scene,tt0085248 6JIY7mRvsRE,1987.0,12,12,2019,Snow White,Wakes Up Scene,tt0093999 Sf47YRUStx8,1987.0,10,12,2019,Snow White,Evil Geisha Scene,tt0093999 CRu7V9v8Nnk,1987.0,2,12,2019,Snow White,Let It Snow Scene,tt0093999 b0p7_jQ8HiE,1987.0,7,12,2019,Snow White,The Bed Song Scene,tt0093999 -mexzYsMSro,1987.0,3,12,2019,Snow White,The Good Queen Dies Scene,tt0093999 t9XjAhGr8us,1987.0,9,12,2019,Snow White,Every Day Scene,tt0093999 riSEerXD6nE,1987.0,11,12,2019,Snow White,Poison Apple Scene,tt0093999 2-L4tBlUJos,1987.0,1,12,2019,Snow White,A True Princess Scene,tt0093999 Zauzaj2bpvM,1987.0,4,12,2019,Snow White,Daddy's Knee Scene,tt0093999 JJwp_lEoOuI,1987.0,6,12,2019,Snow White,More Beautiful Than Me Scene,tt0093999 gnbjy2tWfd4,1987.0,8,12,2019,Snow White,The Seven Dwarfs' Song Scene,tt0093999 8xorDb45ajE,1987.0,5,12,2019,Snow White,Mirror Mirror Scene,tt0093999 2T51K4xsBjg,2018.0,10,10,2019,A Dog's Way Home,Standing Up to the Dogcatcher Scene,tt7616798 hcWY1CYRCsw,2018.0,8,10,2019,A Dog's Way Home,Hit by a Car Scene,tt7616798 r3_IvtMPIi4,2018.0,1,10,2019,A Dog's Way Home,"Goodbye, Bella Scene",tt7616798 mZYTLYXT-CQ,2018.0,6,10,2019,A Dog's Way Home,A Homeless Dog Scene,tt7616798 87IqS4kQqgE,2018.0,2,10,2019,A Dog's Way Home,Big Kitten Scene,tt7616798 YfKjUgN_RcY,2018.0,5,10,2019,A Dog's Way Home,The Avalanche Scene,tt7616798 VqZAfqVCEnk,2018.0,4,10,2019,A Dog's Way Home,Fun in the Snow Scene,tt7616798 M47Aq3yj_NQ,2018.0,9,10,2019,A Dog's Way Home,Finding Her Human Scene,tt7616798 5XQqslDEoeI,2018.0,7,10,2019,A Dog's Way Home,Big Kitten Returns Scene,tt7616798 Te32eYR3jo4,2018.0,3,10,2019,A Dog's Way Home,Hunted by Coyotes Scene,tt7616798 dfoGRpHc4qA,2016.0,5,10,2019,A Street Cat Named Bob,Bob's First Day Scene,tt3606888 Q1CJv_8XbmU,2016.0,6,10,2019,A Street Cat Named Bob,New Year's with Bob Scene,tt3606888 PBMH9WdsHDc,2016.0,3,10,2019,A Street Cat Named Bob,Giving a Cat Medicine Scene,tt3606888 GpMfzrGJvZY,2016.0,8,10,2019,A Street Cat Named Bob,Back on the Streets Scene,tt3606888 N0V-2VgCwxk,2016.0,10,10,2019,A Street Cat Named Bob,I Never Gave Up On You Scene,tt3606888 Ln55e0EyX6E,2016.0,7,10,2019,A Street Cat Named Bob,You're an Addict Scene,tt3606888 GfpVMjrhYQg,2016.0,4,10,2019,A Street Cat Named Bob,He Loves You Scene,tt3606888 ZCTCHQWhYCA,2016.0,2,10,2019,A Street Cat Named Bob,His Name Is Bob Scene,tt3606888 GHKfMt_4V7U,2016.0,9,10,2019,A Street Cat Named Bob,Fighting Through Withdrawal Scene,tt3606888 Dyo5g-ozH2c,2016.0,1,10,2019,A Street Cat Named Bob,Home Intruder Scene,tt3606888 ES496lmmGcM,1992.0,8,10,2019,Beethoven,Where's My Dog? Scene,tt0103786 AyYlJ6YQp3I,1992.0,2,10,2019,Beethoven,Naming Scene,tt0103786 7bFIUJ_voCs,1992.0,10,10,2019,Beethoven,Puppy Payback Scene,tt0103786 RWYM4Npp9rI,1992.0,9,10,2019,Beethoven,Saves the Day Scene,tt0103786 YG-plVmM7O4,1992.0,7,10,2019,Beethoven,Framing Scene,tt0103786 zDQHwzF1n4U,1992.0,3,10,2019,Beethoven,"Big Puppy, Big Dog Scene",tt0103786 JcAdeY9KlpE,1992.0,6,10,2019,Beethoven,Leash Training Scene,tt0103786 85A2rWA5O3o,1992.0,1,10,2019,Beethoven,The New Puppy Scene,tt0103786 gCE5175IkoY,1992.0,5,10,2019,Beethoven,Drowning Rescue Scene,tt0103786 WsgkiKu7AO8,1992.0,4,10,2019,Beethoven,In Bed Scene,tt0103786 PWz21cujw28,2018.0,2,10,2019,Boy Erased,A Fateful Phone Call Scene,tt7008872 vlK8CMKzWUY,2018.0,1,10,2019,Boy Erased,A Manly Shape Scene,tt7008872 Y2ZU8ZjyzoA,2018.0,6,10,2019,Boy Erased,Play The Part Scene,tt7008872 _X6dHrTceEE,2018.0,7,10,2019,Boy Erased,Mental Torture Scene,tt7008872 8VZctic_uTI,2018.0,10,10,2019,Boy Erased,I'm Not Going to Change Scene,tt7008872 PLOSA5L0dxE,2018.0,5,10,2019,Boy Erased,There's More To The Story Scene,tt7008872 Mkkd7taPqEY,2018.0,4,10,2019,Boy Erased,Gay Blood Test Scene,tt7008872 MOLAFbjjOl0,2018.0,9,10,2019,Boy Erased,Trapped In The Camp Scene,tt7008872 SbP_EGRp9Kw,2018.0,3,10,2019,Boy Erased,Jared Comes Out Scene,tt7008872 g511NYTRiOE,2018.0,8,10,2019,Boy Erased,I'm Not Angry! Scene,tt7008872 OVCIGGHelu0,2017.0,9,9,2019,And Then I Go,Saying Goodbye To Gus Scene,tt2018111 aUSko3Om3sI,2017.0,6,9,2019,And Then I Go,Bully Begets Bully Scene,tt2018111 Q7qNk9dKVpE,2017.0,4,9,2019,And Then I Go,Meeting With Principal Scene,tt2018111 fr_ciJPUO1k,2017.0,8,9,2019,And Then I Go,Crying Under the Bed Scene,tt2018111 neH8cVDLuac,2017.0,1,9,2019,And Then I Go,Soccer Field Bully Scene,tt2018111 ymoeXOQLtGY,2017.0,5,9,2019,And Then I Go,A Hard Time Scene,tt2018111 vppCnOOwS_4,2017.0,2,9,2019,And Then I Go,I'm Not Playing Scene,tt2018111 szqlpf28SRM,2017.0,7,9,2019,And Then I Go,Pick On Someone Your Own Size Scene,tt2018111 2WF0XgWQles,2017.0,3,9,2019,And Then I Go,Planning The Act Scene,tt2018111 cnM9pdjp5o4,2012.0,6,10,2019,The Dictator,The Vegan Jihad Scene,tt1645170 7C-aB09i30E,2012.0,1,10,2019,The Dictator,The Aladeen Law Scene,tt1645170 vV30irsal-w,2012.0,3,10,2019,The Dictator,Nuclear Nadal Scene,tt1645170 BT_QpciXdcI,2012.0,5,10,2019,The Dictator,Death to Aladeen Scene,tt1645170 GC8KstVPxPM,2012.0,9,10,2019,The Dictator,Delivering Love Scene,tt1645170 sWqTiz8caoM,2012.0,2,10,2019,The Dictator,Seducing Megan Fox Scene,tt1645170 0GEynXlmNYA,2012.0,4,10,2019,The Dictator,You're Making a Fool Out of Me! Scene,tt1645170 iN0ZnG7yo6o,2012.0,8,10,2019,The Dictator,You Need to Touch Yourself Scene,tt1645170 hqslb1FVoQQ,2012.0,10,10,2019,The Dictator,A Snag on the Zipline Scene,tt1645170 yWeMWD-Yagg,2012.0,7,10,2019,The Dictator,The Helicopter Scene,tt1645170 RYP_NSi9g3Y,2016.0,9,10,2019,Whiskey Tango Foxtrot,The Rescue Mission Scene,tt3553442 -dWENMR2aag,2016.0,4,10,2019,Whiskey Tango Foxtrot,Chinese Brothel and Karaoke Scene,tt3553442 WPggG_9I20E,2016.0,3,10,2019,Whiskey Tango Foxtrot,I Bet You're Wet Scene,tt3553442 M4fuweiQQCA,2016.0,7,10,2019,Whiskey Tango Foxtrot,"Right Place, Wrong Strike Scene",tt3553442 801rBxBY-5w,2016.0,2,10,2019,Whiskey Tango Foxtrot,Javelin Scene,tt3553442 8kzZwPsHkfo,2016.0,1,10,2019,Whiskey Tango Foxtrot,Kabul Cute Scene,tt3553442 rFbe4I4SXGg,2016.0,6,10,2019,Whiskey Tango Foxtrot,A Kabubble Thing Scene,tt3553442 y6uK9wxhl_w,2016.0,10,10,2019,Whiskey Tango Foxtrot,Journalistic Fault Scene,tt3553442 sT7Xef0oYLU,2016.0,8,10,2019,Whiskey Tango Foxtrot,We Have to Make Good Calls Scene,tt3553442 SiY9kPYOZuM,2016.0,5,10,2019,Whiskey Tango Foxtrot,Desert Heat Scene,tt3553442 IXep9SfBhrg,2016.0,10,10,2019,I Was a Teenage Wereskunk,Skunks in Heat Scene,tt4225696 cslI2draO_E,2016.0,1,10,2019,I Was a Teenage Wereskunk,Make Out Point Scene,tt4225696 -ZRSgs6PHaY,2016.0,8,10,2019,I Was a Teenage Wereskunk,"Clowns, Robots and Wereskunks Scene",tt4225696 HNV5ksTBzLk,2016.0,3,10,2019,I Was a Teenage Wereskunk,The Heartthrob Doctor Scene,tt4225696 gWHvF157sFI,2016.0,5,10,2019,I Was a Teenage Wereskunk,Undressed in a Public Place Scene,tt4225696 rglfoXHFty8,2016.0,9,10,2019,I Was a Teenage Wereskunk,Clown vs. Wereskunk Scene,tt4225696 ULu38sbUDdA,2016.0,4,10,2019,I Was a Teenage Wereskunk,Swimsuit Massacre Scene,tt4225696 qwblOHgiG5E,2016.0,7,10,2019,I Was a Teenage Wereskunk,Don't Think Sexy Thoughts! Scene,tt4225696 _-9wCERdcog,2016.0,6,10,2019,I Was a Teenage Wereskunk,I Could Show You! Scene,tt4225696 JIMykDzqRbY,2016.0,2,10,2019,I Was a Teenage Wereskunk,The Smell of Love Scene,tt4225696 7F1OGZeeva4,2017.0,6,10,2019,Kung Fu Yoga,Bazaar Brawl Scene,tt4217392 NiQGOyewakw,2017.0,5,10,2019,Kung Fu Yoga,Lion Car Chase Scene,tt4217392 Hh823sEeCL8,2017.0,1,10,2019,Kung Fu Yoga,India vs. China Scene,tt4217392 T6GiDpoGg0k,2017.0,4,10,2019,Kung Fu Yoga,Diamond Dogs Scene,tt4217392 M1J7yqXNItw,2017.0,8,10,2019,Kung Fu Yoga,Deadly Cobras Scene,tt4217392 V-uaIme1eqw,2017.0,2,10,2019,Kung Fu Yoga,Yoga and Brunch Scene,tt4217392 W2UAnJuDL0A,2017.0,7,10,2019,Kung Fu Yoga,The Hyena Pit Scene,tt4217392 Vk2MgC2loOo,2017.0,9,10,2019,Kung Fu Yoga,The Fight for Shiva Scene,tt4217392 TF2BDWsAg2U,2017.0,3,10,2019,Kung Fu Yoga,Fighting for the Treasure Scene,tt4217392 9xp2WW4VPnI,2017.0,10,10,2019,Kung Fu Yoga,Bollywood Meets China Scene,tt4217392 jL_AtO4yMio,2014.0,10,10,2019,Kung Fu Elliot,Caught Cheating Scene,tt3228302 Co6hnyHm9FU,2014.0,6,10,2019,Kung Fu Elliot,Fighting Shaolin Monks Scene,tt3228302 jatrkHMHR5s,2014.0,7,10,2019,Kung Fu Elliot,Kung Fu Boob Grip Scene,tt3228302 zg0bUxwdano,2014.0,2,10,2019,Kung Fu Elliot,Small Time Actor Scene,tt3228302 VBOg6u6zNUI,2014.0,4,10,2019,Kung Fu Elliot,A Big Actor from Canada Scene,tt3228302 tCDK-8hzqYI,2014.0,8,10,2019,Kung Fu Elliot,He Lied About Everything Scene,tt3228302 mxIe3BjQYq4,2014.0,3,10,2019,Kung Fu Elliot,Grandpa Metal Scene,tt3228302 ByIEbq6tv6g,2014.0,5,10,2019,Kung Fu Elliot,After Hours Massage Scene,tt3228302 Nggy-DIaf-0,2014.0,9,10,2019,Kung Fu Elliot,XXX Action Star Scene,tt3228302 YLhHH7GXdkw,2014.0,1,10,2019,Kung Fu Elliot,You Killed My Cat Scene,tt3228302 YRDc9SZWuE4,2013.0,1,7,2019,Barrio Brawler,There Are No Rules! Scene,tt2839312 rCRl3aaJEdI,2013.0,7,7,2019,Barrio Brawler,Gunning Down A Gangster Scene,tt2839312 Zc61Xb1A3R8,2013.0,6,7,2019,Barrio Brawler,Grappling With A Gang Scene,tt2839312 cqJitdI6d24,2013.0,3,7,2019,Barrio Brawler,Is That Guy Dead? Scene,tt2839312 cH8ebYzr5f4,2013.0,2,7,2019,Barrio Brawler,First Round Knockout Scene,tt2839312 6_BnBOUwAPo,2013.0,4,7,2019,Barrio Brawler,Finish Him! Scene,tt2839312 x_3EEWK-YQc,2013.0,5,7,2019,Barrio Brawler,Bad Break Scene,tt2839312 bDW3OVitFE8,2018.0,2,10,2019,White Boy Rick,Not Saying Nothing Scene,tt4537896 5gOfKFlEJvo,2018.0,5,10,2019,White Boy Rick,Rick Gets Shot Scene,tt4537896 -JhNO_E3aEE,2018.0,6,10,2019,White Boy Rick,You A Granddaddy Scene,tt4537896 -FQOaUEE69I,2018.0,3,10,2019,White Boy Rick,Turning Snitch Scene,tt4537896 xqeAW5qAHNQ,2018.0,9,10,2019,White Boy Rick,You Took A Life! Scene,tt4537896 ZD9DyYVR3BI,2018.0,4,10,2019,White Boy Rick,The Diner Scene,tt4537896 Q9Vl1VGj0LE,2018.0,7,10,2019,White Boy Rick,Personality Crash Scene,tt4537896 L3gtPb6y2xg,2018.0,8,10,2019,White Boy Rick,Rick Gets Arrested Scene,tt4537896 a-CS6CjnEw8,2018.0,10,10,2019,White Boy Rick,We Are Lions! Scene,tt4537896 kgwjR-pQ29o,2018.0,1,10,2019,White Boy Rick,We're Going for Custard Scene,tt4537896 xc_90HgCenY,2012.0,9,10,2019,Drug War,The Last Stand Scene,tt2165735 RS01myY24NA,2012.0,1,10,2019,Drug War,Something's Wrong Scene,tt2165735 YUF1PIe1RVY,2012.0,5,10,2019,Drug War,Who's Laughing Now? Scene,tt2165735 nsDjpgWu8F0,2012.0,10,10,2019,Drug War,Death Sentence Scene,tt2165735 s37owQJdelU,2012.0,7,10,2019,Drug War,They're All Cops Scene,tt2165735 wuRzu_xHPa4,2012.0,8,10,2019,Drug War,Shots Across The Bow Scene,tt2165735 F2GgBAXj69U,2012.0,4,10,2019,Drug War,Zhang Overdoses Scene,tt2165735 PFG8nJ4gwvo,2012.0,3,10,2019,Drug War,It's Bad For Your Brain Scene,tt2165735 GdMQOwEnATM,2012.0,6,10,2019,Drug War,Mute Bros. Melee Scene,tt2165735 GgASWe5c8kE,2012.0,2,10,2019,Drug War,Fake Uncle Scene,tt2165735 QB9AY9Em4To,2018.0,9,10,2019,The Girl in the Spider's Web,X-Ray Sniper Scene,tt5177088 1J3WNRR4O60,2018.0,1,10,2019,Holmes & Watson,Kissing Ass Scene,tt1255919 a_DkEkfAO4s,2018.0,3,10,2019,Holmes & Watson,The Defendant Is a Wanker Scene,tt1255919 0WRtWiz_Xvg,2018.0,5,10,2019,Holmes & Watson,Morgue Love Scene,tt1255919 Ihkrc6Srv0Y,2018.0,9,10,2019,Holmes & Watson,Selfie With the Queen Scene,tt1255919 ze8D_5hdmTE,2018.0,10,10,2019,Holmes & Watson,Watson Saves the Day Scene,tt1255919 q928Wa_h_gg,2018.0,2,10,2019,Holmes & Watson,Not The Bees! Scene,tt1255919 iv_Q51lofKM,2018.0,6,10,2019,Holmes & Watson,I Poisoned You Scene,tt1255919 8D7EY0zKevM,2018.0,7,10,2019,Holmes & Watson,Drunken Hijinks Scene,tt1255919 wVFNjHAnpcI,2018.0,8,10,2019,Holmes & Watson,The First Drunk Text Scene,tt1255919 QjZUS2455z8,2018.0,4,10,2019,Holmes & Watson,Sick Bucket Scene,tt1255919 ow3Pf0LSXwc,2018.0,6,10,2019,The Girl in the Spider's Web,Toying with Security Scene,tt5177088 uckdiNJ10LE,2018.0,4,10,2019,The Girl in the Spider's Web,Forced to Kill Scene,tt5177088 ATid397QdsY,2018.0,5,10,2019,The Girl in the Spider's Web,Car vs. Hacker Scene,tt5177088 g_fIDwoORl4,2018.0,10,10,2019,The Girl in the Spider's Web,Why Did You Help Everyone But Me? Scene,tt5177088 sOHoeZYeAeM,2018.0,1,10,2019,The Girl in the Spider's Web,Abuse Avenger Scene,tt5177088 Yr1quUpD0Y0,2018.0,7,10,2019,The Girl in the Spider's Web,Gassed and Thrashed Scene,tt5177088 k8Vn9zLollY,2018.0,2,10,2019,The Girl in the Spider's Web,Water for Fire Scene,tt5177088 6QfunXjWCpc,2018.0,3,10,2019,The Girl in the Spider's Web,On Thin Ice Scene,tt5177088 CMfYaFpa3nY,2018.0,8,10,2019,The Girl in the Spider's Web,Black Latex Torture Scene,tt5177088 MBgPSe_p1fk,2017.0,8,10,2019,The Snowman,Seduction Gone Wrong Scene,tt1758810 C_fhEQGp9Hw,2017.0,5,10,2019,The Snowman,A Staged Suicide Scene,tt1758810 1TX6svl0Qjc,2017.0,6,10,2019,The Snowman,A Familiar Murder Scene Scene,tt1758810 cGDwEP-RWHo,2017.0,9,10,2019,The Snowman,A Killer Question Scene,tt1758810 QxrBZStJOGk,2017.0,4,10,2019,The Snowman,A Visit to the Doctor Scene,tt1758810 K6Kkwi0nfHg,2017.0,3,10,2019,The Snowman,The Snow Woman Scene,tt1758810 OiJ8mt6Nn5s,2017.0,10,10,2019,The Snowman,Falls Scene,tt1758810 LJgqSSZpdns,2017.0,1,10,2019,The Snowman,The Birth of a Killer Scene,tt1758810 yV5w71aImSo,2017.0,7,10,2019,The Snowman,Sleeping with the Ex Scene,tt1758810 4ZCtygwf67Y,2017.0,2,10,2019,The Snowman,A Missing Person Scene,tt1758810 Sj3sHAe1bAY,2011.0,5,9,2019,Barely Legal,Pushing Her Buttons Scene,tt1912996 iTH2RpdXTBA,2011.0,2,9,2019,Barely Legal,Their Steamiest Fantasies Scene,tt1912996 1a3iljVEif4,2011.0,7,9,2019,Barely Legal,Getting Hot in the Weight Room Scene,tt1912996 b_kHujzG_w0,2011.0,9,9,2019,Barely Legal,Getting On and Getting Off Scene,tt1912996 KMcBrs0aWbo,2011.0,6,9,2019,Barely Legal,Powerful Pleasure Scene,tt1912996 MEYupVDPDRE,2011.0,8,9,2019,Barely Legal,Revenge Hookup Scene,tt1912996 qrd5QtOa6O4,2011.0,1,9,2019,Barely Legal,"A Dirty, Dirty Priest Scene",tt1912996 8zdNf9EtW-A,2011.0,3,9,2019,Barely Legal,All Wrapped Up with Nowhere to Go Scene,tt1912996 JYymQ87_t8o,2011.0,4,9,2019,Barely Legal,Deep Searching in the Closet Scene,tt1912996 5LdmmsMZU-I,2014.0,8,10,2019,Killers,The Killer of My Family Scene,tt4504438 g1bhGNv0Ei4,2014.0,4,10,2019,Killers,Bloody Revenge Scene,tt4504438 4OyCzhF1A8s,2014.0,6,10,2019,Killers,I Thought You Understood Me Scene,tt4504438 7d4Sd1W25xs,2014.0,1,10,2019,Killers,Let's Finish This Scene,tt4504438 -jYZCqfUfVU,2014.0,3,10,2019,Killers,Vigilante Rising Scene,tt4504438 MVxXoBHtBfs,2014.0,9,10,2019,Killers,It's Just Us Now Scene,tt4504438 yRpnEq9A3vo,2014.0,5,10,2019,Killers,Trapped in the Hotel Scene,tt4504438 cSjzA3Wl6hY,2014.0,2,10,2019,Killers,This is Jakarta Scene,tt4504438 TllGibabkYg,2014.0,10,10,2019,Killers,Now You See Scene,tt4504438 NTne-1oUAZU,2014.0,7,10,2019,Killers,She Didn't Make It Scene,tt4504438 Lv41GcKWfJg,2018.0,1,10,2019,The Front Runner,This is Beneath You Scene,tt7074886 bTJAIONGv0Y,2018.0,8,10,2019,The Front Runner,Have You Ever Committed Adultery? Scene,tt7074886 sdkgpg4Plxo,2018.0,3,10,2019,The Front Runner,Feel Stupid for a While Scene,tt7074886 h5OjSHDUn8c,2018.0,6,10,2019,The Front Runner,Too Much Time With an Unmarried Woman Scene,tt7074886 r3BS4jKjRkc,2018.0,7,10,2019,The Front Runner,Can You Ever Forgive Me? Scene,tt7074886 cE2bc0vU9pg,2018.0,10,10,2019,The Front Runner,Hunters and the Hunted Scene,tt7074886 ZCdhsYpdRck,2018.0,4,10,2019,The Front Runner,The Other Woman Scene,tt7074886 E1u3lo2EsMg,2018.0,2,10,2019,The Front Runner,Ambushed in the Alley Scene,tt7074886 7AnDGdVit4w,2018.0,9,10,2019,The Front Runner,It's Time to Go Home Scene,tt7074886 0qkVyahL10U,2018.0,5,10,2019,The Front Runner,It's Not Going to Blow Over Scene,tt7074886 x24Olya2NLk,2018.0,3,10,2019,Aquaman,The Ring of Fire Scene,tt1477834 5Fa3enGmEfA,2018.0,2,10,2019,Aquaman,Sunken Ship Battle Scene,tt1477834 44MohOiWwnA,2018.0,5,10,2019,Aquaman,Black Manta's Revenge Scene,tt1477834 0y5KiKKCD7A,2018.0,8,10,2019,Aquaman,The One True King Scene,tt1477834 nF74obZFKp8,2018.0,4,10,2019,Aquaman,Escape from Atlantis Scene,tt1477834 00QMS3Ldb20,2018.0,10,10,2019,Aquaman,vs. King Orm Scene,tt1477834 8Q0KYSXhKMU,2018.0,7,10,2019,Aquaman,The Trench Attacks Scene,tt1477834 ob2QomOgStQ,2018.0,6,10,2019,Aquaman,Mera's Rooftop Chase Scene,tt1477834 Zeg6dl4L60M,2018.0,1,10,2019,Aquaman,Black Manta Submarine Fight Scene,tt1477834 vEWPq-4sa3w,2018.0,9,10,2019,Aquaman,War for the Seas Scene,tt1477834 xAlCbE-yCTw,2015.0,4,10,2019,The Big Short,I Want My Money Back Scene,tt1596363 1RwwTgTVnJs,2015.0,6,10,2019,The Big Short,Risky Assessors Scene,tt1596363 1Rhs3PVAP4o,2015.0,1,10,2019,The Big Short,Margot Robbie in a Bubble Bath Scene,tt1596363 Mfu_iFS-UY8,2015.0,5,10,2019,The Big Short,The Firm Investigates Florida Scene,tt1596363 OpCXQJyiXQ8,2015.0,2,10,2019,The Big Short,Betting Against the Housing Market Scene,tt1596363 tjRgzcM2HoU,2015.0,3,10,2019,The Big Short,The Jenga Pitch Scene,tt1596363 WgxNguNEMpE,2015.0,10,10,2019,The Big Short,Fraud Never Works Scene,tt1596363 0X0-NpZpx6U,2015.0,7,10,2019,The Big Short,The CDO Manager & Mark Baum Scene,tt1596363 Pxr_FzpPM2Q,2015.0,8,10,2019,The Big Short,Selena Gomez Teaches CDOs Scene,tt1596363 HudtZNmmVwo,2015.0,9,10,2019,The Big Short,Cashing Out Scene,tt1596363 0quxzV2i_gQ,2017.0,4,10,2019,Lady Bird,Teens in Love Scene,tt4925292 aG3Oc5TNd-Y,2017.0,2,10,2019,Lady Bird,First Heartbreak Scene,tt4925292 KtwPWWCJHAE,2017.0,8,10,2019,Lady Bird,Crash Into Prom Scene,tt4925292 836TMubeCfo,2017.0,9,10,2019,Lady Bird,Leaving It All Behind Scene,tt4925292 DL-fT3OymQI,2017.0,10,10,2019,Lady Bird,College Kinda Sucks Scene,tt4925292 4HgHU5fVqbI,2017.0,7,10,2019,Lady Bird,I'm Ready Scene,tt4925292 3Avu3KdHGdo,2017.0,5,10,2019,Lady Bird,Friends Turn Enemies Scene,tt4925292 tF3eceBqcik,2017.0,3,10,2019,Lady Bird,Plays for a Play Scene,tt4925292 mpDGnFwbw0U,2017.0,1,10,2019,Lady Bird,Call Me Scene,tt4925292 koZie6TLz3s,2017.0,6,10,2019,Lady Bird,The Abortion Seminar Scene,tt4925292 R_moIp38Fk8,2012.0,8,10,2019,Fun Size,Trick or Treat Scene,tt1663143 pVB70-zPv5E,2012.0,5,10,2019,Fun Size,Halloween Rave Scene,tt1663143 -ON8ZTCiuYo,2012.0,7,10,2019,Fun Size,She's a Handful Scene,tt1663143 GOwehDo9xYQ,2012.0,4,10,2019,Fun Size,Chicken Mishap Scene,tt1663143 jo-aQkgNMKQ,2012.0,2,10,2019,Fun Size,A Sensitive Kitty Scene,tt1663143 myZDn8fFRLY,2012.0,10,10,2019,Fun Size,The Mixtape of Doom Scene,tt1663143 qLCy66eZrQs,2012.0,1,10,2019,Fun Size,Your Malicious Neighborhood Spider Man Scene,tt1663143 -1eKufUP5XQ,2012.0,9,10,2019,Fun Size,Now I Can Do This Scene,tt1663143 FPYjy-ZWB-c,2012.0,6,10,2019,Fun Size,Poop Goes Boom Scene,tt1663143 C5lMZZxrewE,2012.0,3,10,2019,Fun Size,Toilet Paper Disaster Scene,tt1663143 rNxqb6KMtkg,2015.0,2,8,2019,Freaks of Nature,Breakups Suck Scene,tt1817771 KLDQLqzbrPE,2015.0,3,8,2019,Freaks of Nature,Are We Going to Do This or What? Scene,tt1817771 GlP6emuR3z8,2015.0,8,8,2019,Freaks of Nature,Werewolf vs. Vampire Scene,tt1817771 NgAjrtEmWxI,2015.0,7,8,2019,Freaks of Nature,They're Twice the Size Now Scene,tt1817771 de1vEYiEMro,2015.0,4,8,2019,Freaks of Nature,Vampire Fight Scene,tt1817771 7AajEaNH7g4,2015.0,1,8,2019,Freaks of Nature,"If It Doesn't Get Better, Kill Yourself Scene",tt1817771 MUeKujlb6gc,2015.0,6,8,2019,Freaks of Nature,The Virgin and the Vampire Scene,tt1817771 PI8G4wCa8m4,2015.0,5,8,2019,Freaks of Nature,It's Not Hard to Be a Zombie Scene,tt1817771 gs0WQmW1icQ,2018.0,5,8,2019,The Possession of Hannah Grace,Invasion of the Body Snatcher Scene,tt5734576 __bdFiweOJY,2018.0,1,8,2019,The Possession of Hannah Grace,Your Whore Daughter Is Mine! Scene,tt5734576 C3TAMx8Gqro,2018.0,6,8,2019,The Possession of Hannah Grace,Fatal Flashback Scene,tt5734576 zGXxYW_Zisk,2018.0,7,8,2019,The Possession of Hannah Grace,Demon Caught on Camera Scene,tt5734576 B5uw3qZ04NY,2018.0,3,8,2019,The Possession of Hannah Grace,My Daughter Is the Devil Scene,tt5734576 VDCoR_PxceY,2018.0,8,8,2019,The Possession of Hannah Grace,Trapped in the Morgue Scene,tt5734576 NInjsGq2yCA,2018.0,2,8,2019,The Possession of Hannah Grace,The Exorcism Scene,tt5734576 f6Dan7z0p4c,2018.0,4,8,2019,The Possession of Hannah Grace,Morgue of Murder Scene,tt5734576 Yvoy77W0Ofg,2016.0,8,10,2019,Buster's Mal Heart,Kidnapped Christmas Dinner Scene,tt5173032 PyK__VjhdEE,2016.0,9,10,2019,Buster's Mal Heart,That Was Buster Scene,tt5173032 0g32SegeaTw,2016.0,4,10,2019,Buster's Mal Heart,The End is Coming Scene,tt5173032 6WKFs4PhRkA,2016.0,7,10,2019,Buster's Mal Heart,Hotel Horror Scene,tt5173032 oH5Dww7Umog,2016.0,6,10,2019,Buster's Mal Heart,The Last Free Man Returns Scene,tt5173032 ysRnmU7UZLA,2016.0,1,10,2019,Buster's Mal Heart,The Last Free Man Scene,tt5173032 ki5XFDm1ufM,2016.0,3,10,2019,Buster's Mal Heart,Robbing Season Scene,tt5173032 cvaUo282fEg,2016.0,2,10,2019,Buster's Mal Heart,Slaves To The System Scene,tt5173032 2qqJr7uFeTA,2016.0,5,10,2019,Buster's Mal Heart,You're a Lunatic! Scene,tt5173032 eXHKngWBha0,2016.0,10,10,2019,Buster's Mal Heart,Buster's Last Stand Scene,tt5173032 da1prguylik,2011.0,4,8,2019,Anneliese: The Exorcist Tapes,Killing The Doctor Scene,tt1911533 eAVgMr_VCH4,2011.0,8,8,2019,Anneliese: The Exorcist Tapes,Last Rites Scene,tt1911533 oSIR6UvH1G8,2011.0,2,8,2019,Anneliese: The Exorcist Tapes,The First Exorcism Scene,tt1911533 xcYhjlyrjfc,2011.0,1,8,2019,Anneliese: The Exorcist Tapes,I'll Rip Out Your Eyes Scene,tt1911533 FtoH7NJV5Go,2011.0,5,8,2019,Anneliese: The Exorcist Tapes,An Evil Tongue Scene,tt1911533 vwrqj6aqJAw,2011.0,7,8,2019,Anneliese: The Exorcist Tapes,Putting An End To It Scene,tt1911533 QbthrROkWXM,2011.0,3,8,2019,Anneliese: The Exorcist Tapes,Demonic Manic Scene,tt1911533 9FA_bAXW-Y8,2011.0,6,8,2019,Anneliese: The Exorcist Tapes,Stairway To Hell Scene,tt1911533 kSQaXjYkZpc,2018.0,8,10,2019,Goosebumps 2: Haunted Halloween,Army of Monsters Scene,tt5664636 9We9JImjg-c,2018.0,2,10,2019,Goosebumps 2: Haunted Halloween,Slappy on the Stage Scene,tt5664636 SKTvxXjJ_MU,2018.0,9,10,2019,Goosebumps 2: Haunted Halloween,Ventriloquist Mommy Scene,tt5664636 mpG7K909Gi4,2018.0,10,10,2019,Goosebumps 2: Haunted Halloween,Never Judge a Book by Its Cover Scene,tt5664636 MzzWzX-HGbA,2018.0,5,10,2019,Goosebumps 2: Haunted Halloween,Crash Test Dummy Scene,tt5664636 R7P5OWV436c,2018.0,3,10,2019,Goosebumps 2: Haunted Halloween,The Power of Tesla Scene,tt5664636 AhZw2QXKT1A,2018.0,6,10,2019,Goosebumps 2: Haunted Halloween,The Monsters Come Alive Scene,tt5664636 UgSVWM44JBE,2018.0,4,10,2019,Goosebumps 2: Haunted Halloween,Mommy's Dummy Scene,tt5664636 Gr-s1mxnwM0,2018.0,1,10,2019,Goosebumps 2: Haunted Halloween,R.L. Stine's House of Horrors Scene,tt5664636 lnPDc4XE77w,2018.0,7,10,2019,Goosebumps 2: Haunted Halloween,Evil Gummi Bears Scene,tt5664636 rhnCmErsnYA,2016.0,7,10,2019,Kung Fu Panda 3,Double Dad Defense Scene,tt2267968 tekVuL2mT7A,2016.0,4,10,2019,Kung Fu Panda 3,Secret Panda Village Scene,tt2267968 30VlDItRAVk,2016.0,10,10,2019,Kung Fu Panda 3,I Am the Dragon Warrior Scene,tt2267968 m7HLqZP-l7E,2016.0,6,10,2019,Kung Fu Panda 3,Destroying The Jade Palace Scene,tt2267968 w86nTX6Iixo,2016.0,2,10,2019,Kung Fu Panda 3,Po's Real Dad Scene,tt2267968 DVQQY4-us8k,2016.0,1,10,2019,Kung Fu Panda 3,The New Master Scene,tt2267968 gRP3sdjszlQ,2016.0,5,10,2019,Kung Fu Panda 3,Panda Training Scene,tt2267968 YeDjVvr-6Zc,2016.0,8,10,2019,Kung Fu Panda 3,Skadooshing the Spirit Warrior Scene,tt2267968 sCsMjWjftZs,2016.0,9,10,2019,Kung Fu Panda 3,Saved by Family Scene,tt2267968 FGwgHAqBLDY,2016.0,3,10,2019,Kung Fu Panda 3,Jombies! Scene,tt2267968 M93XQJPV51c,1986.0,7,10,2019,An American Tail,A Duo Scene,tt0090633 gQMtp2WxEA4,1986.0,2,10,2019,An American Tail,There Are No Cats In America Scene,tt0090633 Mi6CrAUhnzE,1986.0,9,10,2019,An American Tail,Fievel On Fire Scene,tt0090633 XWgSKXw8ZwI,1986.0,3,10,2019,An American Tail,Mouse Overboard! Scene,tt0090633 2jzlSeFLr7A,1986.0,5,10,2019,An American Tail,Somewhere Out There Scene,tt0090633 sJsCKwZLztk,1986.0,10,10,2019,An American Tail,Finding Fievel Scene,tt0090633 65pGOp7qa_s,1986.0,8,10,2019,An American Tail,The Secret Weapon Scene,tt0090633 Vro5qtVA4PE,1986.0,1,10,2019,An American Tail,Cossack Cats Scene,tt0090633 HFAGAjkDaOU,1986.0,6,10,2019,An American Tail,The Cat's Out of The Bag Scene,tt0090633 kXvNxXDDHSY,1986.0,4,10,2019,An American Tail,Never Say Never Scene,tt0090633 yqVb0Ten3G4,2014.0,6,10,2019,Dead Snow: Red vs. Dead,Zombies vs. Goth vs. Tank Scene,tt2832470 tsCGLuufHvk,2014.0,4,10,2019,Dead Snow: Red vs. Dead,Satan's Arm Scene,tt2832470 e2FPI_ylwJg,2014.0,10,10,2019,Dead Snow: Red vs. Dead,Zombies in Love Scene,tt2832470 71ZR5BcX-Pc,2014.0,7,10,2019,Dead Snow: Red vs. Dead,Fight to the Undeath Scene,tt2832470 e5gfRaN5gaE,2014.0,8,10,2019,Dead Snow: Red vs. Dead,Zombie War Scene,tt2832470 T5k1Olhmz_E,2014.0,2,10,2019,Dead Snow: Red vs. Dead,In the Mood for Head Scene,tt2832470 __zoXOgNRvk,2014.0,9,10,2019,Dead Snow: Red vs. Dead,You'll Always Lose Scene,tt2832470 e80EOZnHpLQ,2014.0,5,10,2019,Dead Snow: Red vs. Dead,The Nazis Are Coming! Scene,tt2832470 qwgO1dNfBl0,2014.0,3,10,2019,Dead Snow: Red vs. Dead,Nazi Zombie Massacre Scene,tt2832470 dvlZ2PtH_zc,2014.0,1,10,2019,Dead Snow: Red vs. Dead,Zombie Roadkill Scene,tt2832470 wMclAYZ_6kU,2018.0,7,10,2019,BuyBust,Crushed by a Motorcycle Scene,tt5938084 sG8uXeC_jNg,2018.0,10,10,2019,BuyBust,You With Us? Scene,tt5938084 i3ywt-oTQv4,2018.0,5,10,2019,BuyBust,Electrocution Massacre Scene,tt5938084 _65de63xao0,2018.0,2,10,2019,BuyBust,Stabbed to Death Scene,tt5938084 bCtvFlr2hHI,2018.0,9,10,2019,BuyBust,Manigan vs. Biggie Scene,tt5938084 LB08HHk7Ssk,2018.0,6,10,2019,BuyBust,Flaming Death Scene,tt5938084 VLx6HcJ7sas,2018.0,8,10,2019,BuyBust,Unstoppable Warrior Scene,tt5938084 gOeKwFPUA50,2018.0,4,10,2019,BuyBust,Molotov Cocktail Rain Storm Scene,tt5938084 3_SZ0F3VTVU,2018.0,1,10,2019,BuyBust,Ambush in Manila Scene,tt5938084 8C3n6k49Dmg,2018.0,3,10,2019,BuyBust,They're Inside! Scene,tt5938084 9zZLmOA4OsA,2007.0,9,10,2019,Walk Hard: The Dewey Cox Story,Rehab Scene,tt0841046 xVANxG9gI6g,2007.0,2,10,2019,Walk Hard: The Dewey Cox Story,The Devil's Music Scene,tt0841046 PoAxZJMYRWE,2007.0,10,10,2019,Walk Hard: The Dewey Cox Story,The Right Kid Lived Scene,tt0841046 R2lhQCxKx_Y,2007.0,4,10,2019,Walk Hard: The Dewey Cox Story,That's Amore & Walk Hard Scene,tt0841046 8tLhtdDVqzg,2007.0,5,10,2019,Walk Hard: The Dewey Cox Story,Don't Want None of This Scene,tt0841046 c7cm-r7oJ2E,2007.0,8,10,2019,Walk Hard: The Dewey Cox Story,Double Married Scene,tt0841046 oflbCHWZCBU,2007.0,7,10,2019,Walk Hard: The Dewey Cox Story,Duet Song Scene,tt0841046 a_iEYXLXbjY,2007.0,6,10,2019,Walk Hard: The Dewey Cox Story,Dewey on Drugs Scene,tt0841046 SDIk9DOro4A,2007.0,1,10,2019,Walk Hard: The Dewey Cox Story,Half Brother Scene,tt0841046 ikcKKvKkf4Y,2007.0,3,10,2019,Walk Hard: The Dewey Cox Story,"White Singer, Black Club Scene",tt0841046 jY4nU1rwWv8,2011.0,3,10,2019,Kung Fu Panda 2,Dragon Costume Fight Scene,tt1302011 hTpVCu5DzpA,2011.0,1,10,2019,Kung Fu Panda 2,Opening Battle Scene,tt1302011 WsHqQAfZvc4,2011.0,4,10,2019,Kung Fu Panda 2,Rickshaw Chase Scene,tt1302011 h5UGcMYOaaU,2011.0,5,10,2019,Kung Fu Panda 2,Shen's Weapon Scene,tt1302011 22Xiae6LXdU,2011.0,7,10,2019,Kung Fu Panda 2,Cannonball Factory Scene,tt1302011 4SDOcUPE1GI,2011.0,6,10,2019,Kung Fu Panda 2,Furious Five Faces Furious Fire Scene,tt1302011 ePtwxRF1WZA,2011.0,8,10,2019,Kung Fu Panda 2,The Boat Fight Scene,tt1302011 QXeYlaZJ64k,2011.0,9,10,2019,Kung Fu Panda 2,Skadoosh Scene,tt1302011 Ln91UqmKxwI,2011.0,10,10,2019,Kung Fu Panda 2,Final Fight With Shen Scene,tt1302011 nXait2wHOQc,2011.0,2,10,2019,Kung Fu Panda 2,Baby Po Scene,tt1302011 8tFrGaU6p5U,2018.0,2,10,2019,BlacKkKlansman,Crank Calling the Klan Scene,tt7349662 AxxKJ2QgPtY,2018.0,6,10,2019,BlacKkKlansman,The Birth of Two Nations Scene,tt7349662 dmy8Lcf_TiE,2018.0,4,10,2019,BlacKkKlansman,Lie Detector Test Scene,tt7349662 X3XwuyPljm4,2018.0,7,10,2019,BlacKkKlansman,Pictures with the Klan Scene,tt7349662 ruCFlIoCpJ8,2018.0,9,10,2019,BlacKkKlansman,The Real Ron Stallworth Scene,tt7349662 o6synmrDXqU,2018.0,1,10,2019,BlacKkKlansman,Too Late to Turn Back Now Scene,tt7349662 yV5UTHVjMME,2018.0,3,10,2019,BlacKkKlansman,I'm Black and I'm Proud! Scene,tt7349662 HQrM6Rk7WWE,2018.0,10,10,2019,BlacKkKlansman,The Ongoing Fight for Equality Scene,tt7349662 1Aoukxd0GvI,2018.0,5,10,2019,BlacKkKlansman,The Tragedy of Jesse Washington Scene,tt7349662 lIbBAWzE6H8,2018.0,8,10,2019,BlacKkKlansman,The Bomb Scene,tt7349662 aB6Tdk6f2Lw,2018.0,7,10,2019,Green Book,I'm Way Blacker Than You Scene,tt6966692 nsp9ex69rQQ,2018.0,1,10,2019,Green Book,Tony's Job Interview Scene,tt6966692 4RBnTZELQX8,2018.0,6,10,2019,Green Book,Dignity Always Prevails Scene,tt6966692 e_fI5no9SKk,2018.0,5,10,2019,Green Book,After Midnight Scene,tt6966692 KXoFUS5Dzto,2018.0,4,10,2019,Green Book,Caught In The Act Scene,tt6966692 tnZ55SLhan4,2018.0,10,10,2019,Green Book,Christmas Dinner Scene,tt6966692 89HcLOHubgo,2018.0,3,10,2019,Green Book,Barroom Brawl Scene,tt6966692 eiqBbLVXbQg,2018.0,9,10,2019,Green Book,At The Orange Bird Jukejoint Scene,tt6966692 ymmlNaUhZE8,2018.0,8,10,2019,Green Book,Dining Room Indignity Scene,tt6966692 JCT1VtaBpqg,2018.0,2,10,2019,Green Book,Fried Chicken Etiquette Scene,tt6966692 2HuQzKat6hU,2018.0,2,10,2019,The House With a Clock in Its Walls,I'm A Warlock Scene,tt2119543 XA0J-wn1Esg,2018.0,4,10,2019,The House With a Clock in Its Walls,Raising The Dead Scene,tt2119543 mpgaMjGOeJg,2018.0,3,10,2019,The House With a Clock in Its Walls,What A Little Weird Can Do Scene Movie,tt2119543 bwKwR3hV0zA,2018.0,6,10,2019,The House With a Clock in Its Walls,Betrayal of the Living Dead Scene,tt2119543 aWjBDI02kSE,2018.0,1,10,2019,The House With a Clock in Its Walls,The House Likes You Scene,tt2119543 n8yUoQP6Rwo,2018.0,8,10,2019,The House With a Clock in Its Walls,Smashing Pumpkins Scene,tt2119543 npaLKZ0Egus,2018.0,10,10,2019,The House With a Clock in Its Walls,Stopping The Clock Scene,tt2119543 qp-uFNB9jYo,2018.0,5,10,2019,The House With a Clock in Its Walls,Broken Magic Scene,tt2119543 5noS6qGxcbM,2018.0,7,10,2019,The House With a Clock in Its Walls,Now I'm Indomitable Scene,tt2119543 ANigqhwwafs,2018.0,9,10,2019,The House With a Clock in Its Walls,Baby Jonathan Scene,tt2119543 13h4zTXEjvw,2018.0,2,10,2019,Alpha,Feast for the Vultures Scene,tt4244998 8wduU3eU6XQ,2018.0,4,10,2019,Alpha,A Peace Offering Scene,tt4244998 4IHDSpacpbc,2018.0,3,10,2019,Alpha,Bonding with a Predator Scene,tt4244998 LahMUQTEbcY,2018.0,9,10,2019,Alpha,Man's Best Friend Scene,tt4244998 MDG6JsXqaRA,2018.0,1,10,2019,Alpha,Bison Hunting Scene,tt4244998 cfnBcA2ckeQ,2018.0,7,10,2019,Alpha,Trapped Under Ice Scene,tt4244998 0uyVs4iKp_E,2018.0,5,10,2019,Alpha,First Game of Fetch Scene,tt4244998 f96ppJ3DSGE,2018.0,8,10,2019,Alpha,Sabretooth Attack Scene,tt4244998 QFDZTfWnWGg,2018.0,6,10,2019,Alpha,Back to the Pack Scene,tt4244998 U7jlC1QNaUM,2018.0,10,10,2019,Alpha,Wolf Puppies Scene,tt4244998 vNk30YAdCEo,2016.0,8,9,2019,Train to Busan,Undead Cargo Scene,tt5700672 POpYt4cHlFs,2016.0,3,9,2019,Train to Busan,Train Station Hell Scene,tt5700672 zpmd0YiERdQ,2016.0,2,9,2019,Train to Busan,Train of the Living Dead Scene,tt5700672 Er_oU3Sl1GI,2016.0,1,9,2019,Train to Busan,The First Zombie Scene,tt5700672 tKeJ34qjORQ,2016.0,6,9,2019,Train to Busan,Instant Karma Scene,tt5700672 zhaVycw4FXI,2016.0,4,9,2019,Train to Busan,Zombie Melee Scene,tt5700672 nKkgc9WTY38,2016.0,7,9,2019,Train to Busan,Trapped Scene,tt5700672 dcR7fdkLhJ4,2016.0,5,9,2019,Train to Busan,Left to Die Scene,tt5700672 zuSBq10_5go,2018.0,8,10,2019,Venom,vs. Riot Scene,tt1270797 UCGdsPwcKKg,2018.0,5,10,2019,Venom,Getting Swatted Scene,tt1270797 Wl6COOA3V6Y,2018.0,9,10,2019,Venom,A Turd in the Wind Scene,tt1270797 3kEL1doAC4M,2018.0,1,10,2019,Venom,Meeting Scene,tt1270797 xL3ZOCRgJZM,2018.0,2,10,2019,Venom,Eating Lobsters Scene,tt1270797 dOZndhz24OA,2018.0,6,10,2019,Venom,I Am Kind of a Loser Scene,tt1270797 09zP4iK6QuI,2018.0,10,10,2019,Venom,Carnage Scene,tt1270797 vi9m0JRo71I,2018.0,4,10,2019,Venom,We Are Scene,tt1270797 rsnLwzzkF_Q,2018.0,7,10,2019,Venom,Riot Attacks Scene,tt1270797 8zYGzyIpue8,2018.0,3,10,2019,Venom,Takes Control Scene,tt1270797 -BgZFaMJRxM,2018.0,7,10,2019,The Equalizer 2,I Only Get to Kill You Once Scene,tt3766354 rmE6nTzmDqI,2018.0,6,10,2019,The Equalizer 2,"No Enemies, Just Unfortunates Scene",tt3766354 hN5We42pLhs,2018.0,3,10,2019,The Equalizer 2,Crackhouse Crackdown Scene,tt3766354 bxs77K1DkD0,2018.0,2,10,2019,The Equalizer 2,Five-Star Rating Scene,tt3766354 5D20G8qe4Qc,2018.0,1,10,2019,The Equalizer 2,Two Kinds of Pain Scene,tt3766354 7HEi1kmCzEY,2018.0,4,10,2019,The Equalizer 2,You Don't Know Death Scene,tt3766354 m43-bLl6ZwI,2018.0,8,10,2019,The Equalizer 2,This Ain't Home Alone Scene,tt3766354 nNGz1GspkbM,2018.0,9,10,2019,The Equalizer 2,Cooking Explosives Scene,tt3766354 GuqaloLJNJk,2018.0,10,10,2019,The Equalizer 2,Watchtower Showdown Scene,tt3766354 1M00J5Q1Vv8,2018.0,5,10,2019,The Equalizer 2,A Rough Fare Scene,tt3766354 XMKKYshEbzM,2018.0,8,10,2019,Spider Man: Into the Spider-Verse,Miles vs. Kingpin Scene,tt4633694 5h2uLkqpVV8,2018.0,2,10,2019,Spider Man: Into the Spider-Verse,Meeting Gwen Scene,tt4633694 5XnGKA75dtI,2018.0,5,10,2019,Spider Man: Into the Spider-Verse,Killing Spider Man Scene,tt4633694 qCjSApp2o1E,2018.0,6,10,2019,Spider Man: Into the Spider-Verse,Doc Ock Scene,tt4633694 zWW_SH8IFnI,2018.0,9,10,2019,Spider Man: Into the Spider-Verse,"Get Up, Spider Man! Scene",tt4633694 3v9Pfg4Ocbg,2018.0,3,10,2019,Spider Man: Into the Spider-Verse,Miles Gets Bit Scene,tt4633694 kDTjN5dVCzg,2018.0,1,10,2019,Spider Man: Into the Spider-Verse,I Love You Scene,tt4633694 qcaVM8TcZbA,2018.0,10,10,2019,Spider Man: Into the Spider-Verse,The One and Only Spider Man Scene,tt4633694 6bO4ZsAMowI,2018.0,4,10,2019,Spider Man: Into the Spider-Verse,Two Spider-Men? Scene,tt4633694 GuqCibVW5wo,2018.0,7,10,2019,Spider Man: Into the Spider-Verse,Saying Goodbye Scene,tt4633694 gC6gD7Qzry8,2018.0,6,10,2019,Searching,Crazy Dad Theater Attack Scene,tt7668870 jGXpyMDIZ_U,2018.0,7,10,2019,Searching,What Did You Do to My Daughter? Scene,tt7668870 m-3Ohq-bVFA,2018.0,10,10,2019,Searching,Mommy's Gonna Make It Better Scene,tt7668870 qjJnk3MgNgc,2018.0,2,10,2019,Searching,Detective Rosemary Vick Scene,tt7668870 jkmyjHYMH0Q,2018.0,8,10,2019,Searching,Stock Photo Killer Scene,tt7668870 po0Gj897Tmk,2018.0,9,10,2019,Searching,Finding the Killer Scene,tt7668870 SN8buDY-7LM,2018.0,3,10,2019,Searching,fish_n_chips Scene,tt7668870 c2ecZiVEs70,2018.0,5,10,2019,Searching,Told Me She Ran Away Scene,tt7668870 YeqQ-Iae_VI,2018.0,4,10,2019,Searching,You Don't Always Know Your Kid Scene,tt7668870 IKnygn5ysHU,2018.0,1,10,2019,Searching,When We Were a Family Scene,tt7668870 1iEOBKuW9TQ,1999.0,5,10,2019,Blue Streak,Dayum Scene,tt0181316 ysudBGghmnA,1999.0,9,10,2019,Blue Streak,No Jurisdiction Scene,tt0181316 IfO6AIsvlKw,1999.0,1,10,2019,Blue Streak,Hot Pizza Scene,tt0181316 iswgTDjihrU,1999.0,8,10,2019,Blue Streak,Police Chase to Mexico Scene,tt0181316 q7V1sM0VNaw,1999.0,3,10,2019,Blue Streak,Shaking Things Up Scene,tt0181316 KNQpMgWWB5Y,1999.0,10,10,2019,Blue Streak,Tengo El Gato Los Pantalones Scene,tt0181316 IoQ4G5p-Z-g,1999.0,4,10,2019,Blue Streak,Interrogating Tulley Scene,tt0181316 W18J6bcq9YI,1999.0,6,10,2019,Blue Streak,Going Undercover Scene,tt0181316 t3gqjXINvac,1999.0,7,10,2019,Blue Streak,Stone Cold Killer Scene,tt0181316 5UjmbtIRvLY,1999.0,2,10,2019,Blue Streak,This is Gonna Hurt Scene,tt0181316 R1eDE5bXCds,2015.0,3,10,2019,Paul Blart: Mall Cop 2,Your Lip is Sweating Scene,tt3450650 m7xTE3rvkDk,2015.0,10,10,2019,Paul Blart: Mall Cop 2,Always Bet on Blart Scene,tt3450650 cMwOJoesx8M,2015.0,1,10,2019,Paul Blart: Mall Cop 2,Being a Bit Transparent Scene,tt3450650 Xq4HZGi38qo,2015.0,5,10,2019,Paul Blart: Mall Cop 2,"Big, Black Banana Scene",tt3450650 fo0KBFhChFU,2015.0,9,10,2019,Paul Blart: Mall Cop 2,We Are That Man Scene,tt3450650 ob_6XAhj_1U,2015.0,2,10,2019,Paul Blart: Mall Cop 2,Segway Stuntman Scene,tt3450650 0zuW4KMG7XQ,2015.0,8,10,2019,Paul Blart: Mall Cop 2,I'm So Crazy! Scene,tt3450650 N7vSJzq1zAY,2015.0,7,10,2019,Paul Blart: Mall Cop 2,The Bat-Segway Scene,tt3450650 Q37sWrXU39s,2015.0,6,10,2019,Paul Blart: Mall Cop 2,La Reve Chase Scene,tt3450650 vbJsLuL2YzQ,2015.0,4,10,2019,Paul Blart: Mall Cop 2,Man vs. Bird Scene,tt3450650 t5nBikdQ1kE,1988.0,2,10,2019,Mississippi Burning,Welcome to Mississippi Scene,tt0095647 iJrgXYnUVe8,1988.0,1,10,2019,Mississippi Burning,"We Into It Now, Boys Scene",tt0095647 pHBKmT6eNGw,1988.0,3,10,2019,Mississippi Burning,Federal Bureau of Integration Scene,tt0095647 qOeZ9TL0wHs,1988.0,9,10,2019,Mississippi Burning,Eulogy Scene,tt0095647 1ovQhqQy7bE,1988.0,8,10,2019,Mississippi Burning,Anderson's Way Scene,tt0095647 y8i5Nwg_TqU,1988.0,4,10,2019,Mississippi Burning,The Burning Cross Scene,tt0095647 ZCZyxZYgKIg,1988.0,10,10,2019,Mississippi Burning,A Razor-Sharp Interrogation Scene,tt0095647 ccr0gfJ5q0I,1988.0,5,10,2019,Mississippi Burning,Searching the Swamp Scene,tt0095647 vWkJPL2Dt9A,1988.0,7,10,2019,Mississippi Burning,Hatred Is Taught Scene,tt0095647 zvy5tDkETfQ,1988.0,6,10,2019,Mississippi Burning,Wringing Necks Scene,tt0095647 2Ht6646WCMU,1987.0,9,10,2019,Angel Heart,Boiling Pot of Murder Scene,tt0092563 isQIyXfV6Cw,1987.0,6,10,2019,Angel Heart,Anything Can Happen Day Scene,tt0092563 KUdG72N_mek,1987.0,5,10,2019,Angel Heart,Epiphany Proudfoot Scene,tt0092563 yGWUHeP16Zk,1987.0,3,10,2019,Angel Heart,Know What They Say About Slugs? Scene,tt0092563 eb1AjU67W2s,1987.0,10,10,2019,Angel Heart,I Know Who I Am! Scene,tt0092563 ij-qB9jrMnY,1987.0,2,10,2019,Angel Heart,Eye For An Eye Scene,tt0092563 6SLhTIdGfhU,1987.0,7,10,2019,Angel Heart,Missing Pieces Scene,tt0092563 TVSr02WLC4o,1987.0,8,10,2019,Angel Heart,Churches Give Me the Creeps Scene,tt0092563 oGFkOiYpEeE,1987.0,1,10,2019,Angel Heart,Deal With The Devil Scene,tt0092563 USjNhsetZWc,1987.0,4,10,2019,Angel Heart,Voodoo Snooping Scene,tt0092563 TrvXqosqkls,2018.0,8,10,2019,First Man,The Eagle Has Landed Scene,tt1213641 -2QFIXEHnOY,2018.0,4,10,2019,First Man,Test Flight Crash Scene,tt1213641 2Y_CzHI89mQ,2018.0,6,10,2019,First Man,Telling The Kids Scene,tt1213641 JgTgQvvqRqE,2018.0,1,10,2019,First Man,Landing the Test Plane Scene,tt1213641 atBUgwJAD0U,2018.0,2,10,2019,First Man,Astronaut Training Scene,tt1213641 oUKw4qcGHZs,2018.0,10,10,2019,First Man,The Bracelet Scene,tt1213641 MevYeKlyQM8,2018.0,5,10,2019,First Man,What Are Your Chances? Scene,tt1213641 FubpK1Tho6M,2018.0,7,10,2019,First Man,We Have Liftoff Scene,tt1213641 rzuN9uvnsZI,2018.0,3,10,2019,First Man,Out of Control Scene,tt1213641 r3L0e0izKG4,2018.0,9,10,2019,First Man,One Small Step For Man Scene,tt1213641 d7-pWfZgFKU,2016.0,6,10,2019,Fences,Alberta Had the Baby Scene,tt2671706 q_tMagfE-nM,2016.0,10,10,2019,Fences,The Best of What's In Me Scene,tt2671706 2lh1uIhuujc,2016.0,3,10,2019,Fences,Becoming a Man Scene,tt2671706 wAJQ-yWgSJs,2016.0,4,10,2019,Fences,Somebody's Daddy Scene,tt2671706 xI9CLKI1h-g,2016.0,7,10,2019,Fences,Death Knocks Again Scene,tt2671706 ytEsz9ZEh_g,2016.0,8,10,2019,Fences,Sins of the Father Scene,tt2671706 PomVYrPHoAg,2016.0,1,10,2019,Fences,Wrestling Death Scene,tt2671706 tVxYCeRXzGo,2016.0,2,10,2019,Fences,I Ain't Got to Like You Scene,tt2671706 Vh7XH68xWKw,2016.0,9,10,2019,Fences,Troy's Victory Scene,tt2671706 2hs-yt-Pmk0,2016.0,5,10,2019,Fences,The Same Spot As You Scene,tt2671706 aoBeDwBxv04,1963.0,9,12,2019,Lilies of the Field,Giving Thanks Scene,tt0057251 KU5yx6v_Jr8,1963.0,5,12,2019,Lilies of the Field,We Build A Shapel Scene,tt0057251 qgm_ou3TsIs,1963.0,1,12,2019,Lilies of the Field,"A Big, Strong Man Scene",tt0057251 ljMuEDlInLo,1963.0,8,12,2019,Lilies of the Field,The Sisters' Past Scene,tt0057251 3hUkHF18IrI,1963.0,4,12,2019,Lilies of the Field,Catholic Breakfast Scene,tt0057251 12iewuXNhbE,1963.0,7,12,2019,Lilies of the Field,A Real Breakfast Scene,tt0057251 S0LBIxKRCHw,1963.0,10,12,2019,Lilies of the Field,Homer Quits Scene,tt0057251 h5dCFGJp__0,1963.0,12,12,2019,Lilies of the Field,Amen! Scene,tt0057251 RwMgEM9FNhE,1963.0,3,12,2019,Lilies of the Field,English Lesson Scene,tt0057251 Bfj5GHwgXno,1963.0,6,12,2019,Lilies of the Field,Consider The Lilies Scene,tt0057251 s6JmX_n5oeo,1963.0,11,12,2019,Lilies of the Field,I Wanted To Build It Myself Scene,tt0057251 ScJijQn6RyI,1963.0,2,12,2019,Lilies of the Field,Language Record Scene,tt0057251 gwGqg69sqi0,2018.0,9,10,2019,The Strangers: Prey at Night,A Bridge Too Far Scene,tt1285009 uwta-bET3aQ,2018.0,6,10,2019,The Strangers: Prey at Night,Pool Of Blood Scene,tt1285009 Av0pWtQ36tU,2018.0,1,10,2019,The Strangers: Prey at Night,Trailer Terror Scene,tt1285009 SMd0299YDac,2018.0,4,10,2019,The Strangers: Prey at Night,Car Seat Dead Rests Scene,tt1285009 4kaYp9uUNgw,2018.0,3,10,2019,The Strangers: Prey at Night,We've Just Started Scene,tt1285009 LTESHXdMyQg,2018.0,7,10,2019,The Strangers: Prey at Night,Cop Killer Scene,tt1285009 T_Kn_D-zfeg,2018.0,2,10,2019,The Strangers: Prey at Night,Bathroom Backstabbing Scene,tt1285009 fKyoILW1Npw,2018.0,8,10,2019,The Strangers: Prey at Night,Road Rampage Scene,tt1285009 ElkY5U7WSiA,2018.0,10,10,2019,The Strangers: Prey at Night,Pickup Peril Scene,tt1285009 9uGuf4e252w,2018.0,5,10,2019,The Strangers: Prey at Night,Crash Test Killers Scene,tt1285009 pmAZlEkONa0,1991.0,10,10,2019,Sometimes They Come Back,Back to the Tunnel Scene,tt0102960 -dlOM4ocKUM,1991.0,2,10,2019,Sometimes They Come Back,The Incident Scene,tt0102960 Fz43jl18aiY,1991.0,7,10,2019,Sometimes They Come Back,Chip Gets Killed Scene,tt0102960 2UOL-ZHUOC4,1991.0,4,10,2019,Sometimes They Come Back,A Familiar Face Scene,tt0102960 _ZA8FE-nu3E,1991.0,6,10,2019,Sometimes They Come Back,Recurring Demons Scene,tt0102960 p9W9PhaNGOY,1991.0,3,10,2019,Sometimes They Come Back,Greaser Ghouls Chase Billy Scene,tt0102960 buIXWAgTUIU,1991.0,9,10,2019,Sometimes They Come Back,Unfinished Business Scene,tt0102960 w4TCxFKaqIw,1991.0,8,10,2019,Sometimes They Come Back,Reliving the Past Scene,tt0102960 OlLMqN-vjKk,1991.0,5,10,2019,Sometimes They Come Back,Finding Kate in the Barn Scene,tt0102960 K3jk2RjLJ3c,1991.0,1,10,2019,Sometimes They Come Back,The New Teacher Scene,tt0102960 GczlfeOFPDE,2006.0,7,12,2019,Crazy Eights,We're Not Orphans Scene,tt0470993 PbCNDD4y-Zs,2006.0,4,12,2019,Crazy Eights,Window Pain Scene,tt0470993 2nCjaCV1v0U,2006.0,11,12,2019,Crazy Eights,Blind Death Scene,tt0470993 w_ZzqN2TWTI,2006.0,1,12,2019,Crazy Eights,What's In The Box? Scene,tt0470993 dSOFfyFdHXA,2006.0,2,12,2019,Crazy Eights,That's A Dead Body! Scene,tt0470993 xoTuKbJE9aw,2006.0,8,12,2019,Crazy Eights,They Were Experimenting on Us Scene,tt0470993 KxOI0mEOHsY,2006.0,12,12,2019,Crazy Eights,Together Forever Scene,tt0470993 des_yFi9fiM,2006.0,9,12,2019,Crazy Eights,Blinded By The Fright Scene,tt0470993 BiXpNk-huqQ,2006.0,10,12,2019,Crazy Eights,Holy Slit Scene,tt0470993 9sVpipEqpD8,2006.0,6,12,2019,Crazy Eights,Remember Me? Scene,tt0470993 4psRZr3sxHs,2006.0,5,12,2019,Crazy Eights,You've Been Here Before Scene,tt0470993 MjrbUV78y5A,2006.0,3,12,2019,Crazy Eights,Praying For A Way Out Scene,tt0470993 L9EPJ7ZYjHk,2013.0,6,10,2019,Hansel & Gretel: Witch Hunters,Troll Rampage Scene,tt1428538 PDWuHeevSAk,2013.0,8,10,2019,Hansel & Gretel: Witch Hunters,War of the Witches Scene,tt1428538 sxKLANwXzzg,2013.0,7,10,2019,Hansel & Gretel: Witch Hunters,Epic Magic Battle Scene,tt1428538 HMyfwfUs64I,2013.0,9,10,2019,Hansel & Gretel: Witch Hunters,The End is Near Scene,tt1428538 DbcOnkSMGK0,2013.0,1,10,2019,Hansel & Gretel: Witch Hunters,The Candy House Scene,tt1428538 dTIoEMxqckg,2013.0,2,10,2019,Hansel & Gretel: Witch Hunters,Hag Hunting Scene,tt1428538 PKKSqcq9iGU,2013.0,10,10,2019,Hansel & Gretel: Witch Hunters,Fairytale Beatdown Scene,tt1428538 tc7rC53gLUU,2013.0,5,10,2019,Hansel & Gretel: Witch Hunters,A Splash of Color Scene,tt1428538 uZ_X4w_9lgk,2013.0,3,10,2019,Hansel & Gretel: Witch Hunters,A Bloody Message Scene,tt1428538 irxaBbMXsUk,2013.0,4,10,2019,Hansel & Gretel: Witch Hunters,"You Move, You Die Scene",tt1428538 SDNStLatNk8,2016.0,6,9,2019,Sinister Squad,The Rumpy Noodle Scene,tt5481984 VUljC2ih5YY,2016.0,2,9,2019,Sinister Squad,Rogue's Gallery Scene,tt5481984 XFu7Fz4g1VM,2016.0,5,9,2019,Sinister Squad,DJ Mad Hatter Scene,tt5481984 M32XWG0NQPQ,2016.0,8,9,2019,Sinister Squad,Bluebeard's Deception Scene,tt5481984 SUruJPHdHUQ,2016.0,1,9,2019,Sinister Squad,Bluebeard's Blade Scene,tt5481984 31G0GtKW8iM,2016.0,3,9,2019,Sinister Squad,Base Invasion Scene,tt5481984 nxKAr1Gebjk,2016.0,4,9,2019,Sinister Squad,Villains Against Villains Scene,tt5481984 pt94aydCMXg,2016.0,7,9,2019,Sinister Squad,Make It Look Real Scene,tt5481984 LaajQCWsyzE,2016.0,9,9,2019,Sinister Squad,Goldilocks to the Rescue Scene,tt5481984 Ooiw8ZYnzdU,2004.0,7,7,2019,You Got Served,Dancing for Lil' Kim Scene,tt0365957 _ZzKJflnVHU,2004.0,4,7,2019,You Got Served,Defending the Title Scene,tt0365957 cIEPiYHzTto,2004.0,5,7,2019,You Got Served,Training in the Rain Scene,tt0365957 BpAvVBwO8J0,2004.0,2,7,2019,You Got Served,We Don't Practice Scene,tt0365957 HJKL8Ta-kt8,2004.0,3,7,2019,You Got Served,Danceoff Betrayal Scene,tt0365957 15MbDpZad74,2004.0,6,7,2019,You Got Served,Dance Trials Scene,tt0365957 _oOULG_nhEc,2004.0,1,7,2019,You Got Served,Opening Dance Battle Scene,tt0365957 Tirgk-Is0QY,2015.0,1,10,2019,Bound,Just Suck and Blow Scene,tt4145324 bHnpX4LBdGw,2015.0,4,10,2019,Bound,Ryan's Chamber Scene,tt4145324 5rQD746bDOc,2015.0,6,10,2019,Bound,Improvised Foreplay Scene,tt4145324 VlqxnvmTcAk,2015.0,10,10,2019,Bound,Business & Pleasure Scene,tt4145324 H6pjCQosMxk,2015.0,2,10,2019,Bound,MILF Whisperer Scene,tt4145324 Cwqmd8pSkEo,2015.0,5,10,2019,Bound,Toying Around Scene,tt4145324 qFnqH95k_rU,2015.0,3,10,2019,Bound,Little Daddy's Girl Scene,tt4145324 Yk2ZbS2FKe4,2015.0,9,10,2019,Bound,I Can Still Taste Your Daughter Scene,tt4145324 4LCN8__54AQ,2015.0,7,10,2019,Bound,Becoming Submissive Scene,tt4145324 7Ev8Q9RDC8k,2015.0,8,10,2019,Bound,I Am Your Master! Scene,tt4145324 LiogBSpbSE8,2008.0,5,6,2019,Sex Pot,Cougar Attack! Scene,tt1473801 WDAIccQnnV8,2008.0,6,6,2019,Sex Pot,The Craziest Ex-Girlfriend Scene,tt1473801 BzKbRv8tcBc,2008.0,1,6,2019,Sex Pot,Pooping Tom Scene,tt1473801 dtIqkgW18-0,2008.0,4,6,2019,Sex Pot,Insulting a Cop Scene,tt1473801 1EkjxpUe5TY,2008.0,2,6,2019,Sex Pot,Bikini Car Wash Scene,tt1473801 y5ysUSgyVqs,2008.0,3,6,2019,Sex Pot,Looking For Liquor Scene,tt1473801 7PI0v2ZWDl0,2018.0,7,10,2019,Night School,Learning Herpes Scene,tt6781982 sqLiTaVHPdo,2018.0,4,10,2019,Night School,Not Lying Scene,tt6781982 OwG27DvQf68,2018.0,8,10,2019,Night School,In The Ring Scene,tt6781982 npSYPN8LXas,2018.0,10,10,2019,Night School,Spanking The Chicken Scene,tt6781982 2UBYT9teTIs,2018.0,3,10,2019,Night School,This Is My House Scene,tt6781982 honAzu3xOP0,2018.0,1,10,2019,Night School,Hairy Dinner Scene,tt6781982 8Ds9R9puftI,2018.0,2,10,2019,Night School,Fiery Proposal Scene,tt6781982 6rHHZ3hiwcQ,2018.0,9,10,2019,Night School,Prom Problems Scene,tt6781982 bgZWbi1o8bY,2018.0,6,10,2019,Night School,Rooftop Fail Scene,tt6781982 4c_4MGTCgHY,2018.0,5,10,2019,Night School,Prison Rules Scene,tt6781982 KoY720x5fuw,2016.0,9,10,2019,Everybody Wants Some!!,Freshman Hazing Scene,tt2937696 nvAZrrDwecI,2016.0,5,10,2019,Everybody Wants Some!!,Pink Floyd vs. Van Halen Scene,tt2937696 PTOkGaI3ZAE,2016.0,3,10,2019,Everybody Wants Some!!,Sock on the Door Scene,tt2937696 H6XWqMB-Ow8,2016.0,1,10,2019,Everybody Wants Some!!,Baller's Delight Scene,tt2937696 jME-000LFNY,2016.0,2,10,2019,Everybody Wants Some!!,The Average Dick Theory Scene,tt2937696 XIJ-TpmNlI0,2016.0,6,10,2019,Everybody Wants Some!!,Mud Wrestling Party Scene,tt2937696 qpxUYzNSGn0,2016.0,10,10,2019,Everybody Wants Some!!,Astrology Blocking Scene,tt2937696 5IzNXdsZUHk,2016.0,8,10,2019,Everybody Wants Some!!,Psycho Pitcher Scene,tt2937696 7iajsLA5MKM,2016.0,4,10,2019,Everybody Wants Some!!,Screwdriver Brawl Scene,tt2937696 cZy7qSG8RHQ,2016.0,7,10,2019,Everybody Wants Some!!,Jock Strap Prank Scene,tt2937696 CXdc2L3QH9U,1986.0,2,12,2019,Back to School,Thornton Donates A Building Scene,tt0090685 QXruKKf3my4,1986.0,3,12,2019,Back to School,Springsteen in the Parking Lot Scene,tt0090685 4VDry9fy8UE,1986.0,12,12,2019,Back to School,The Triple Lindy Scene,tt0090685 CHOpoOnkRJE,1986.0,1,12,2019,Back to School,Are You Fat? Scene,tt0090685 lKBbFHMEvDc,1986.0,11,12,2019,Back to School,I Don't Take S*** From No One Scene,tt0090685 aP7GTu8tbvQ,1986.0,10,12,2019,Back to School,Academic Fraud Scene,tt0090685 uSLscJ2cY04,1986.0,4,12,2019,Back to School,Thornton Talks Business Scene,tt0090685 k9DO26O6dIg,1986.0,5,12,2019,Back to School,Professor Terguson Loses It Scene,tt0090685 -8ajIeIeJpY,1986.0,7,12,2019,Back to School,I'm Kurt Vonnegut Scene,tt0090685 umKFAbLoUxQ,1986.0,9,12,2019,Back to School,Marge Takes Notes Scene,tt0090685 4kAViGVuLmM,1986.0,8,12,2019,Back to School,Lab Monkeys Scene,tt0090685 0T3hXtyuX0g,1986.0,6,12,2019,Back to School,Hot For Teacher Scene,tt0090685 zqv3YesdtRU,2018.0,10,10,2019,Mamma Mia! Here We Go Again,Super Trouper Scene,tt6911608 nB9rg6sxHhU,2018.0,8,10,2019,Mamma Mia! Here We Go Again,Fernando Scene,tt6911608 bCZRAcsuRgY,2018.0,2,10,2019,Mamma Mia! Here We Go Again,One of Us Scene,tt6911608 KOuClUYl0_U,2018.0,9,10,2019,Mamma Mia! Here We Go Again,"My Love, My Life Scene",tt6911608 LrQqG7HxUao,2018.0,7,10,2019,Mamma Mia! Here We Go Again,I've Been Waiting For You Scene,tt6911608 Zo0d4xk3BXw,2018.0,4,10,2019,Mamma Mia! Here We Go Again,Why Did It Have to Be Me? Scene,tt6911608 3lR-s-Q5XsQ,2018.0,6,10,2019,Mamma Mia! Here We Go Again,Dancing Queen Scene,tt6911608 YSN08rz66zE,2018.0,1,10,2019,Mamma Mia! Here We Go Again,When I Kissed The Teacher Scene,tt6911608 jq_tO6NAlPI,2018.0,5,10,2019,Mamma Mia! Here We Go Again,Mamma Mia Scene,tt6911608 pHXL7yantDY,2018.0,3,10,2019,Mamma Mia! Here We Go Again,Waterloo Scene,tt6911608 ISKL5Sy_Mt8,2016.0,3,10,2019,Allied,Cut For Your Freedom Scene,tt3640424 Mkn0Iji6g9w,2016.0,1,10,2019,Allied,Difficult to Swallow Scene,tt3640424 HpGmAvMtScw,2016.0,4,10,2019,Allied,Love in a Sandstorm Scene,tt3640424 w5oWgKtku3Q,2016.0,9,10,2019,Allied,Is This Real? Scene,tt3640424 s43ARFFNrz0,2016.0,10,10,2019,Allied,Take Care of Her Scene,tt3640424 Y6CLpg06kFE,2016.0,8,10,2019,Allied,Lucky Strike Scene,tt3640424 ntKYG1LdbV8,2016.0,5,10,2019,Allied,A Beautiful Diversion Scene,tt3640424 QaUjGv3GLeg,2016.0,2,10,2019,Allied,Testing Your Resolve Scene,tt3640424 E0og5D_sPpM,2016.0,6,10,2019,Allied,Put the Phone Down Scene,tt3640424 Pl1dl--4OBE,2016.0,7,10,2019,Allied,Bomber Crash Scene,tt3640424 71pIZ76YvR4,2010.0,1,10,2019,Dinner for Schmucks,Meeting Barry Scene,tt0427152 A_R76lKU0DI,2010.0,3,10,2019,Dinner for Schmucks,I Need to Be Spanked Scene,tt0427152 HHRCWQEM7UQ,2010.0,6,10,2019,Dinner for Schmucks,An Awkward Proposal Scene,tt0427152 C2KN6BHuPWA,2010.0,2,10,2019,Dinner for Schmucks,The Lion and the Penguin Scene,tt0427152 -7-2-088LnM,2010.0,7,10,2019,Dinner for Schmucks,From Beyond the Plate Scene,tt0427152 KaVglFjQynk,2010.0,9,10,2019,Dinner for Schmucks,Mind Control vs. Brain Control Scene,tt0427152 MVRR0XlqA4g,2010.0,5,10,2019,Dinner for Schmucks,Therman's Laugh Scene,tt0427152 9BdW5LHQvjM,2010.0,4,10,2019,Dinner for Schmucks,A Naughty Little Penguin Scene,tt0427152 E_TbL7vdWGo,2010.0,10,10,2019,Dinner for Schmucks,Idiots Attack Scene,tt0427152 zbHFgQ419Qs,2010.0,8,10,2019,Dinner for Schmucks,In Her Naughty Purse Scene,tt0427152 deUroRuOCwM,1978.0,9,11,2019,The End,A Date With A .38 Scene,tt0077504 JuxyMqr7FNA,1978.0,3,11,2019,The End,The Coward's Way Out Scene,tt0077504 0aKB_Qm-z6g,1978.0,6,11,2019,The End,Death Therapy Scene,tt0077504 tDD6wnNN-IQ,1978.0,5,11,2019,The End,Straitjacket Surprise Scene,tt0077504 lb6nAmbkk9Y,1978.0,2,11,2019,The End,Meeting Marlon Scene,tt0077504 CjXwJJQ-8XM,1978.0,1,11,2019,The End,Elevator Tears Scene,tt0077504 kZRq9scxIWM,1978.0,7,11,2019,The End,It Ain't High Enough! Scene,tt0077504 7ZzaLI6n1pU,1978.0,11,11,2019,The End,Shooting Sonny Scene,tt0077504 PUFwiKDWxUo,1978.0,8,11,2019,The End,A Game of Chicken Scene,tt0077504 kCrtP_gPMwk,1978.0,4,11,2019,The End,Marlon's Last Straw Scene,tt0077504 9qdMVMCGr48,1978.0,10,11,2019,The End,I Want To Live! Scene,tt0077504 UsNnkax2wNA,1994.0,2,10,2019,The Shadow,The Living Shadow Scene,tt0111143 RFBlDixa33k,1994.0,1,10,2019,The Shadow,The Evil in the Hearts of Men Scene,tt0111143 6DlOr1PP0Fc,1994.0,4,10,2019,The Shadow,To Fight A Shadow Scene,tt0111143 YKvG96jMVWE,1994.0,3,10,2019,The Shadow,Join Me or Die Scene,tt0111143 ybF7eOf_n4s,1994.0,10,10,2019,The Shadow,You Can't Run From Scene,tt0111143 ROqfvY68ijM,1994.0,6,10,2019,The Shadow,The Nightmares of Heroes Scene,tt0111143 fEsN1FMfBvI,1994.0,7,10,2019,The Shadow,A Water Filled Hell Scene,tt0111143 oZ1Mz78d3wI,1994.0,9,10,2019,The Shadow,"You're Finished, Khan Scene",tt0111143 U7HxeKhKgwM,1994.0,8,10,2019,The Shadow,Showing Claymore the Exit Scene,tt0111143 Ueq8bUwdm80,1994.0,5,10,2019,The Shadow,You Know I'm Gonna Stop You Scene,tt0111143 bHW5h5O-e5I,1996.0,7,11,2019,Mulholland Falls,General Timms Scene,tt0117107 sGPeVmnAFAI,1996.0,8,11,2019,Mulholland Falls,The Burden of Leadership Scene,tt0117107 31LlQhZmSYs,1996.0,1,11,2019,Mulholland Falls,The L.A. Way Scene,tt0117107 TcJjhnPrM9o,1996.0,4,11,2019,Mulholland Falls,Max Meets Allison Scene,tt0117107 MM1no56lIjw,1996.0,9,11,2019,Mulholland Falls,FBI Threats Scene,tt0117107 uydWF18xoCQ,1996.0,5,11,2019,Mulholland Falls,The Bomb Site Scene,tt0117107 MtyfXKbZUus,1996.0,11,11,2019,Mulholland Falls,I Never Wanted It Both Ways Scene,tt0117107 O2yNsybczj4,1996.0,6,11,2019,Mulholland Falls,Military Law Scene,tt0117107 Vln90evTYog,1996.0,10,11,2019,Mulholland Falls,This Is My Town Scene,tt0117107 NfQcD7ZLWL0,1996.0,2,11,2019,Mulholland Falls,Over Scene,tt0117107 p9Bo67_slJY,1996.0,3,11,2019,Mulholland Falls,Trading Places Scene,tt0117107 g2tNQ_6-kpg,2002.0,6,8,2019,Bubba Ho-Tep,Classified Sexual Information Scene,tt0281686 s039YJGaP-Y,2002.0,4,8,2019,Bubba Ho-Tep,Soul Robbin' Scene,tt0281686 Fz7dtq-saJo,2002.0,5,8,2019,Bubba Ho-Tep,Time To Be A Hero Scene,tt0281686 IRycPfFjVBI,2002.0,8,8,2019,Bubba Ho-Tep,"TCB, Baby! Scene",tt0281686 kVujmsfAIUk,2002.0,3,8,2019,Bubba Ho-Tep,The Writing On The Wall Scene,tt0281686 1R4FATHHlTU,2002.0,1,8,2019,Bubba Ho-Tep,Playing Elvis Scene,tt0281686 iGk7QYThMTk,2002.0,2,8,2019,Bubba Ho-Tep,Never F*** With The King Scene,tt0281686 t_JOKNfSn1w,2002.0,7,8,2019,Bubba Ho-Tep,You Undead Sack of S*** Scene,tt0281686 5H_MyLSpRSs,1985.0,3,10,2019,Lifeforce,Back From The Dead Scene,tt0089489 _iUWKODwAN8,1985.0,1,10,2019,Lifeforce,Totally Dangerous Scene,tt0089489 AsfxK5fWMu8,1985.0,4,10,2019,Lifeforce,Explosive Zombies Scene,tt0089489 _5IVdeFrhv4,1985.0,8,10,2019,Lifeforce,The Fall of Fallada Scene,tt0089489 zzabhummvzk,1985.0,9,10,2019,Lifeforce,Vanquishing An Alien Vampire Scene,tt0089489 bQObeZ5R0mc,1985.0,5,10,2019,Lifeforce,She Wants Me To Hurt Her Scene,tt0089489 e9_4oS3hTPk,1985.0,7,10,2019,Lifeforce,Space Girl Escapes Scene,tt0089489 Hsh6n5RfCoc,1985.0,10,10,2019,Lifeforce,Space Vampire Sacrifice Scene,tt0089489 7uOhTRONUbY,1985.0,6,10,2019,Lifeforce,Her True Form Scene,tt0089489 1d-Q6pT4pxo,1985.0,2,10,2019,Lifeforce,They Look Bloody Dead To Me Scene,tt0089489 a2xcMwtUQFY,2011.0,1,7,2019,The Amityville Haunting,Boo-tiful Woman Scene,tt2042447 Wafr97M23uU,2011.0,7,7,2019,The Amityville Haunting,Daddy's Gone Scene,tt2042447 oQnm8w8f-lM,2011.0,3,7,2019,The Amityville Haunting,Execution By Electrocution Scene,tt2042447 bH3ulIPKNrc,2011.0,6,7,2019,The Amityville Haunting,The Kitchen Of Death Scene,tt2042447 VbAh3UbaGHQ,2011.0,4,7,2019,The Amityville Haunting,Dad Loses It Scene,tt2042447 lryUDOG6bS4,2011.0,2,7,2019,The Amityville Haunting,All's Fair in Love & Gore Scene,tt2042447 VHkoII8ewWk,2011.0,5,7,2019,The Amityville Haunting,Lori's Waking Nightmare Scene,tt2042447 6SDs2BTqYpw,2011.0,2,6,2019,A Haunting in Salem,A Freak in the Bedroom Scene,tt1912981 ISXVGrqvV1A,2011.0,5,6,2019,A Haunting in Salem,Remnants of a Family Scene,tt1912981 G1Q68kAK4qc,2011.0,3,6,2019,A Haunting in Salem,A Face Full of Boiling Water Scene,tt1912981 FJnJJOAN_PU,2011.0,1,6,2019,A Haunting in Salem,Massacre at the Sheriff's House Scene,tt1912981 YU_Sm_2vH5w,2011.0,4,6,2019,A Haunting in Salem,The Second Massacre Scene,tt1912981 LiA9AsjqVWU,2011.0,6,6,2019,A Haunting in Salem,The Death of the Downs Family Scene,tt1912981 MuW72eVCQno,2018.0,6,10,2019,Halloween,Hit & Run Scene,tt1502407 KuStVllxFuI,2018.0,7,10,2019,Halloween,Say Something Scene,tt1502407 bEBQWhgGM1g,2018.0,2,10,2019,Halloween,Bathroom Bloodshed Scene,tt1502407 4-3B-Y9bM0M,2018.0,8,10,2019,Halloween,Laurie's Fortress Scene,tt1502407 0p2Oyd040pg,2018.0,4,10,2019,Halloween,Killing The Babysitter Scene,tt1502407 Je3Vjos0TlQ,2018.0,10,10,2019,Halloween,Burned Alive Scene,tt1502407 7qhNVDPZ-0I,2018.0,1,10,2019,Halloween,The Mask of Michael Myers Scene,tt1502407 Iy2kMtJa2q8,2018.0,3,10,2019,Halloween,Homicides Scene,tt1502407 k0LLcRLSSlE,2018.0,5,10,2019,Halloween,"Drunk, Horny, and Impaled Scene",tt1502407 j7m47I9BuuY,2018.0,9,10,2019,Halloween,Where's the Body? Scene,tt1502407 JV05-E5FF2g,2018.0,10,10,2019,The First Purge,The Last Stand Scene,tt6133466 NdbZtOpgsUY,2018.0,3,10,2019,The First Purge,I Got Your Sister Scene,tt6133466 kEL5reRoNk8,2018.0,1,10,2019,The First Purge,Viral Violence Scene,tt6133466 WQP_cY7FAyQ,2018.0,2,10,2019,The First Purge,A Dance With Death Scene,tt6133466 P9jJ6Bejayg,2018.0,9,10,2019,The First Purge,The Devil at the Door Scene,tt6133466 AVHPmsWZnb4,2018.0,8,10,2019,The First Purge,Stairway To Hell Scene,tt6133466 7oDSPSwMw5k,2018.0,5,10,2019,The First Purge,Star Spangled Murder Scene,tt6133466 _qxAcodjpCo,2018.0,4,10,2019,The First Purge,Fire Fight Scene,tt6133466 lCL7DI3ah40,2018.0,7,10,2019,The First Purge,Drone Strike Scene,tt6133466 UX1-VvE01iw,2018.0,6,10,2019,The First Purge,Taking Back The Streets Scene,tt6133466 evM3k7ep4wo,2016.0,7,9,2019,Lights Out,Diana's Lair Scene,tt4786282 mpfBH5WLlOA,2016.0,8,9,2019,Lights Out,Trapped in the Basement Scene,tt4786282 zn9D_4bE0hM,2016.0,5,9,2019,Lights Out,Power Outage Scene,tt4786282 jYbI8iVYCpc,2016.0,2,9,2019,Lights Out,Bump in the Night Scene,tt4786282 tw84SFLxC_o,2016.0,3,9,2019,Lights Out,"Red Light, No Light Scene",tt4786282 M-HysTegELs,2016.0,9,9,2019,Lights Out,The Final Battle Scene,tt4786282 MZaX-RbQ7ic,2016.0,6,9,2019,Lights Out,Stay in the Light Scene,tt4786282 nD8KtgWozeM,2016.0,1,9,2019,Lights Out,Horrifying Opening Scene,tt4786282 NqJ6llRZg-M,2016.0,4,9,2019,Lights Out,Wrong Delivery Scene,tt4786282 LWoKa0wYTJk,1988.0,10,10,2019,Sleepaway Camp 2: Unhappy Campers,Cabin of Corpses Scene,tt0096118 NPmAEqlzKqE,1988.0,2,10,2019,Sleepaway Camp 2: Unhappy Campers,Say No To Drugs Scene,tt0096118 kzxz5xezOAI,1988.0,4,10,2019,Sleepaway Camp 2: Unhappy Campers,Mare Gets Drilled Scene,tt0096118 U_MNiopwFxs,2013.0,2,10,2019,Pain & Gain,Saving All God's Creatures Scene,tt1980209 j0z0V2JJ5II,1988.0,5,10,2019,Sleepaway Camp 2: Unhappy Campers,Freddy & Jason vs. Leatherface Scene,tt0096118 AxrQtWFF91k,1988.0,7,10,2019,Sleepaway Camp 2: Unhappy Campers,You Talk Too Much Scene,tt0096118 kSaOMRXiLVA,1988.0,3,10,2019,Sleepaway Camp 2: Unhappy Campers,Panty Raid! Scene,tt0096118 vmWm02fUJ-o,1988.0,9,10,2019,Sleepaway Camp 2: Unhappy Campers,Angel of Death Scene,tt0096118 IqJWWBRnrH4,1988.0,1,10,2019,Sleepaway Camp 2: Unhappy Campers,The Happy Camper Song Scene,tt0096118 njz1p35e_EU,1988.0,8,10,2019,Sleepaway Camp 2: Unhappy Campers,Angela's Nightmare Scene,tt0096118 AaMkmiZ9bMM,1988.0,6,10,2019,Sleepaway Camp 2: Unhappy Campers,Ally Gets Flushed Scene,tt0096118 aZbGlkGWiZc,2013.0,6,10,2019,Pain & Gain,We Made It Scene,tt1980209 5K6sh7HZri4,2013.0,3,10,2019,Pain & Gain,The Magic Touch Scene,tt1980209 iKp5ARBBpyc,2013.0,7,10,2019,Pain & Gain,The Neighborhood Watch Scene,tt1980209 XOfjQQT9O08,2013.0,9,10,2019,Pain & Gain,No One Calls Me an Amateur Scene,tt1980209 Z9vRmexWHUo,2013.0,1,10,2019,Pain & Gain,The American Dream Scene,tt1980209 hIUrt0AsTjw,2013.0,8,10,2019,Pain & Gain,Easy as Robbing a Bank Scene,tt1980209 JnjO0v-AYFo,2013.0,5,10,2019,Pain & Gain,Killing Kershaw Scene,tt1980209 O0fQ_rrQedE,2013.0,4,10,2019,Pain & Gain,Gangster's Paradise Scene,tt1980209 esg4w4b2xvc,2013.0,10,10,2019,Pain & Gain,Grilling Hands Scene,tt1980209 0OppC7vTtY0,2006.0,9,12,2019,Crank,We All Gotta Die Sometime Scene,tt0479884 swn9_FjwmJo,2006.0,2,12,2019,Crank,You Stop You Die Scene,tt0479884 YNBtb-8zpko,2006.0,11,12,2019,Crank,Some Pills Scene,tt0479884 UBNLrL7RvJM,2006.0,7,12,2019,Crank,Adrenaline Pumping Scene,tt0479884 IHDzQ29EgsY,2006.0,3,12,2019,Crank,Want To Hold Hands? Scene,tt0479884 aH6N58NST30,2006.0,6,12,2019,Crank,Oblivious Eve Scene,tt0479884 G_ee7q8w-PU,2006.0,8,12,2019,Crank,"Ding, Time's Up Scene",tt0479884 nNtl5Hv0bv0,2006.0,12,12,2019,Crank,"Goodbye, Baby Scene",tt0479884 IBwJ7rFHpE8,2006.0,10,12,2019,Crank,Welcome To My Life Scene,tt0479884 U59aJCoJLRU,2006.0,1,12,2019,Crank,Have a Nice Death Scene,tt0479884 Y6hHVWwwfPA,2006.0,4,12,2019,Crank,Juice Me Scene,tt0479884 KVV02IJlGCQ,2006.0,5,12,2019,Crank,"Get Back, Pig Scene",tt0479884 2GvyC7s3RpU,2017.0,7,10,2019,Troy: The Odyssey,Fighting The Cyclops Scene,tt5734548 d6263F3UkWo,2017.0,9,10,2019,Troy: The Odyssey,The Slaying Of The Suitors Scene,tt5734548 V-hOCaVISok,2017.0,10,10,2019,Troy: The Odyssey,Release the Kraken Scene,tt5734548 y_Zo1Wg4RAM,2017.0,8,10,2019,Troy: The Odyssey,I Am The King Of Ithaca Scene,tt5734548 FXeNdV-FTjI,2017.0,5,10,2019,Troy: The Odyssey,Breaking The Sirens' Spell Scene,tt5734548 s_SM1Hly-uw,2017.0,4,10,2019,Troy: The Odyssey,Begging For Death Scene,tt5734548 Z1DO7_hHqbw,2017.0,3,10,2019,Troy: The Odyssey,The Island Of Sirens Scene,tt5734548 kcrHhDoUS1k,2017.0,1,10,2019,Troy: The Odyssey,The Sacking Of Troy Scene,tt5734548 wnvRIdndQdk,2017.0,6,10,2019,Troy: The Odyssey,The Paths Of The Dead Scene,tt5734548 LVbkD8ZogwA,2017.0,2,10,2019,Troy: The Odyssey,The Death Of Achilles Scene,tt5734548 l1X4RDCFmsE,2011.0,3,10,2019,Cowboys & Aliens,UFO Attack Scene,tt0409847 4d9fx7umXgg,2013.0,6,10,2019,47 Ronin,The Swords of the Tengu Scene,tt1335975 qC_pkxnYQfk,2013.0,7,10,2019,47 Ronin,Fiery Ambush Scene,tt1335975 SroZoan9faw,2013.0,8,10,2019,47 Ronin,Storming The Castle Scene,tt1335975 FZOF6ePjVcM,2013.0,3,10,2019,47 Ronin,Under The Witch's Spell Scene,tt1335975 ffmSFNEG6pM,2013.0,2,10,2019,47 Ronin,Duel To The Death Scene,tt1335975 LoBAmFanDhY,2013.0,5,10,2019,47 Ronin,Rescuing The Ronin Scene,tt1335975 T4WNCHc_MmQ,2013.0,1,10,2019,47 Ronin,Killing The Kirin Scene,tt1335975 EEaUjfxQQFI,2013.0,10,10,2019,47 Ronin,The Seppuku Ceremony Scene,tt1335975 VmT0mZH5ivo,2013.0,4,10,2019,47 Ronin,Escaping the Slave Pits Scene,tt1335975 74DUcGnFH8g,2013.0,9,10,2019,47 Ronin,Samurai vs. Dragon Scene,tt1335975 S6rgOlhmAHo,2011.0,1,10,2019,Cowboys & Aliens,Not Your Lucky Day Scene,tt0409847 r1md9sIev2M,2011.0,7,10,2019,Cowboys & Aliens,Blowing Up The Mothership Scene,tt0409847 I21bX4cEhRM,2011.0,8,10,2019,Cowboys & Aliens,We Got One Scene,tt0409847 GfLc8Z4_lFw,2011.0,6,10,2019,Cowboys & Aliens,Alien Resurrection Scene,tt0409847 1zQvfrTK6Y8,2011.0,5,10,2019,Cowboys & Aliens,Ella's Abduction Scene,tt0409847 5dCI82ffuIc,2011.0,2,10,2019,Cowboys & Aliens,Arresting the Stranger Scene,tt0409847 xW4xczuVMq4,2011.0,9,10,2019,Cowboys & Aliens,Freeing The Prisoners Scene,tt0409847 AbV04B_yV34,2011.0,10,10,2019,Cowboys & Aliens,Explosive Encounter Scene,tt0409847 xsM9jr1e4F4,2011.0,4,10,2019,Cowboys & Aliens,Night Terror Scene,tt0409847 BkNCfTfR6fQ,1977.0,3,11,2019,Joyride,Paying for It Scene,tt0076239 pM87ObBNOk4,1977.0,11,11,2019,Joyride,False Alarm Scene,tt0076239 emW6qKMxIUU,1977.0,8,11,2019,Joyride,The Getaway Scene,tt0076239 xsK7WF3jWI4,1977.0,1,11,2019,Joyride,Dancing with Another Man Scene,tt0076239 N26K5UeOTPE,1977.0,6,11,2019,Joyride,The Pissing Contest Scene,tt0076239 FaX0hq8BZc8,1977.0,10,11,2019,Joyride,Run for the Border Scene,tt0076239 Jj6H6tJvRjU,1977.0,7,11,2019,Joyride,The Bank Job Scene,tt0076239 jlcZPO2FhGE,1977.0,2,11,2019,Joyride,I Don't Pay for It Scene,tt0076239 RM0NW8MF9wY,1977.0,5,11,2019,Joyride,Wrecking the Car Scene,tt0076239 f-DiniX_1mI,1977.0,4,11,2019,Joyride,Target Practice Scene,tt0076239 96dlvQbYEds,1977.0,9,11,2019,Joyride,Stealing a Camera Scene,tt0076239 BshBOgRLN28,2011.0,2,6,2019,200 mph,The Big Crash Scene,tt1823051 9tx1z5_iVeo,2011.0,3,6,2019,200 mph,Fight At The Funeral Scene,tt1823051 27ARVhE-a58,2011.0,1,6,2019,200 mph,Sepulveda Death Race Scene,tt1823051 G6PcFmNCQpA,2011.0,5,6,2019,200 mph,Forced Into Stripping Scene,tt1823051 HxfzrUYFsLk,2011.0,4,6,2019,200 mph,Rush Hour Horror Scene,tt1823051 opXI29YEI5s,2011.0,6,6,2019,200 mph,The Final Race Scene,tt1823051 9YJRtvamIjU,2016.0,3,10,2019,Arrival,The Nature of a Question Scene,tt2543164 C2IvmQI_efs,2016.0,7,10,2019,Arrival,Death Process Scene,tt2543164 2kt3CmzYGu4,2016.0,9,10,2019,Arrival,You Changed My Mind Scene,tt2543164 sg39yDRzklg,2016.0,8,10,2019,Arrival,Past and Present in the Future Scene,tt2543164 G6uZp-33qcY,2016.0,2,10,2019,Arrival,The Heptapods Speak Scene,tt2543164 fOFGL7-qmqs,2016.0,10,10,2019,Arrival,You Have the Weapon Scene,tt2543164 Rd_gE_G9R1k,2016.0,6,10,2019,Arrival,Sabotaged Diplomacy Scene,tt2543164 i6AtG8BdONE,2016.0,5,10,2019,Arrival,The Many Things We Don't Know Scene,tt2543164 dQlExOgF5eU,2016.0,1,10,2019,Arrival,First Contact Scene,tt2543164 mBdWBpsA5eQ,2016.0,4,10,2019,Arrival,A Proper Introduction Scene,tt2543164 _EjWpjky5lU,2000.0,3,12,2019,Supernova,Space Survival Scene,tt0134983 vrEjev5DoXc,2000.0,7,12,2019,Supernova,Left Behind Scene,tt0134983 fgDgZGePcwk,2000.0,2,12,2019,Supernova,Dimension Jump Scene,tt0134983 VILmrL5jP7s,2000.0,8,12,2019,Supernova,Infinite Loop Scene,tt0134983 W-7hoLpXFXE,2000.0,5,12,2019,Supernova,This Is Your Worst Nightmare Scene,tt0134983 iSio5xjSYqs,2000.0,10,12,2019,Supernova,Nick's Revenge Scene,tt0134983 p-tvo3Hz3nw,2000.0,11,12,2019,Supernova,"Say Goodbye, Karl Scene",tt0134983 rUbY9uikvWc,2000.0,6,12,2019,Supernova,The Opportunity of a Lifetime Scene,tt0134983 edhJGqAjG7s,2000.0,12,12,2019,Supernova,Welcome Home Scene,tt0134983 DC_6r5VR5_U,2000.0,4,12,2019,Supernova,A Pear of Lovers Scene,tt0134983 S_QFbRtEF7I,2000.0,9,12,2019,Supernova,Shoot For The Stars Scene,tt0134983 86xtQC4rp98,2000.0,1,12,2019,Supernova,Deep Space Doctor Scene,tt0134983 Gfje9_QRQbk,1968.0,5,6,2019,2001: A Space Odyssey,Beyond the Infinite Scene,tt0062622 XDO8OYnmkNY,1968.0,2,6,2019,2001: A Space Odyssey,Hal Reads Lips Scene,tt0062622 Wy4EfdnMZ5g,1968.0,3,6,2019,2001: A Space Odyssey,"I'm Sorry, Dave Scene",tt0062622 _XuDmoP5scY,1968.0,6,6,2019,2001: A Space Odyssey,Star Child Scene,tt0062622 avjdKTqiVvQ,1968.0,1,6,2019,2001: A Space Odyssey,From Bone to Satellite Scene,tt0062622 HH37JTBpi2A,1968.0,4,6,2019,2001: A Space Odyssey,I'm Afraid Scene,tt0062622 96IU0EisCes,1976.0,9,12,2019,Futureworld,The Master Plan Revealed Scene,tt0074559 BkZ6lFCzAwM,1976.0,8,12,2019,Futureworld,They've All Been Replaced! Scene,tt0074559 M4LidfkbW68,1976.0,7,12,2019,Futureworld,The Gunslinger Returns Scene,tt0074559 NBfCeTdLDbQ,1976.0,1,12,2019,Futureworld,Discussing the Malfunctions Scene,tt0074559 yR3zsO8pCMw,1976.0,10,12,2019,Futureworld,Chuck Kills Harry Scene,tt0074559 QC5re6k5nLk,1976.0,3,12,2019,Futureworld,Gonna Have Sex With a Robot? Scene,tt0074559 Cq2Wzdd_PYs,1976.0,6,12,2019,Futureworld,Tracy's Brain Images Scene,tt0074559 WhT70B0c7TE,1976.0,12,12,2019,Futureworld,Escaping Delos Scene,tt0074559 uDAIoSeEoZA,1976.0,2,12,2019,Futureworld,Calling a Truce Scene,tt0074559 BuPdA_CDITw,1976.0,5,12,2019,Futureworld,Seducing A Robot Scene,tt0074559 hfzsR-3PLcg,1976.0,4,12,2019,Futureworld,Rock 'Em Sock 'Em Robots Scene,tt0074559 S4WqfcnVT2g,1976.0,11,12,2019,Futureworld,Fighting Himself Scene,tt0074559 R3KOKpvoLIo,2011.0,5,10,2019,The Adventures of Tintin,Duel to the Depths Scene,tt0983193 93U_80mhzVk,2011.0,4,10,2019,The Adventures of Tintin,Crashing in the Desert Scene,tt0983193 UsM7OBEMqnk,2011.0,10,10,2019,The Adventures of Tintin,Sword Fight on the Docks Scene,tt0983193 kXXnZuu72DA,2011.0,1,10,2019,The Adventures of Tintin,Snowy to the Rescue Scene,tt0983193 oAjKMLcDlfc,2011.0,8,10,2019,The Adventures of Tintin,The Motorcycle Chase Scene,tt0983193 SHaByZZvfFE,2011.0,3,10,2019,The Adventures of Tintin,Burp-Powered Plane Scene,tt0983193 gQ48-nl8wwc,2011.0,9,10,2019,The Adventures of Tintin,After That Bird! Scene,tt0983193 xUHjhz5U1bA,2011.0,7,10,2019,The Adventures of Tintin,An Explosive Duel Scene,tt0983193 O7S9X8e2uhA,2011.0,6,10,2019,The Adventures of Tintin,Drunken Pirate Hallucination Scene,tt0983193 02AyhONR_DQ,2011.0,2,10,2019,The Adventures of Tintin,Get the Key! Scene,tt0983193 RRDbQPvtAxY,2015.0,3,10,2019,The SpongeBob Movie: Sponge Out of Water,Inside Spongebob's Mind Scene,tt2279373 H92n6qsNHbY,2015.0,9,10,2019,The SpongeBob Movie: Sponge Out of Water,PlankTON Vs. BurgerBeard Scene,tt2279373 RxyMbaDX22g,2015.0,7,10,2019,The SpongeBob Movie: Sponge Out of Water,Butt Kicking Scene,tt2279373 gs3GHB24IaM,2015.0,4,10,2019,The SpongeBob Movie: Sponge Out of Water,A Sponge in Time Scene,tt2279373 32OSGQmjP1Y,2015.0,1,10,2019,The SpongeBob Movie: Sponge Out of Water,Food Fight Scene,tt2279373 ctjucF9fiFw,2015.0,5,10,2019,The SpongeBob Movie: Sponge Out of Water,Bubbles the Dolphin Scene,tt2279373 5TG1Wh04D1g,2015.0,10,10,2019,The SpongeBob Movie: Sponge Out of Water,Dolphin Rap Battle Scene,tt2279373 W3x0ZxDSF38,2015.0,6,10,2019,The SpongeBob Movie: Sponge Out of Water,The Real World Scene,tt2279373 3FKMUa7vCZU,2015.0,2,10,2019,The SpongeBob Movie: Sponge Out of Water,Spongebob Laughs Scene,tt2279373 tPJJlCdrJ0M,2015.0,8,10,2019,The SpongeBob Movie: Sponge Out of Water,Justice Is Soft Served Scene,tt2279373 woSj0M9Decw,2017.0,6,10,2019,Monster Trucks,Train Hopping Scene,tt3095734 YmC-BayMaDg,2017.0,2,10,2019,Monster Trucks,Creech's First Ride Scene,tt3095734 iNQYIdE6DOg,2017.0,9,10,2019,Monster Trucks,Giant Truck Jump Scene,tt3095734 4QR_9BehbWc,2017.0,7,10,2019,Monster Trucks,Creech's Family Scene,tt3095734 W1w1qcvdTi8,2017.0,1,10,2019,Monster Trucks,Meeting Creech Scene,tt3095734 xNNd9Uc9J_8,2017.0,5,10,2019,Monster Trucks,Oil Town Chase Scene,tt3095734 D_N9S0bAiWI,2017.0,10,10,2019,Monster Trucks,Monster Jam! Scene,tt3095734 uioT_3dqzXc,2017.0,8,10,2019,Monster Trucks,Quarry Chase Scene,tt3095734 N27ZYQKRYnQ,2017.0,3,10,2019,Monster Trucks,Monster Bros! Scene,tt3095734 Ig6hIs0jsjg,2017.0,4,10,2019,Monster Trucks,Hyperactive Truck Scene,tt3095734 jBMb3PU-2-w,2012.0,2,10,2019,Golden Winter,Puppy Escape! Scene,tt2202750 R07vQvbALWk,2012.0,4,10,2019,Golden Winter,The Wrong Side of the Snacks Scene,tt2202750 FJ_NU1sSk5A,2012.0,3,10,2019,Golden Winter,Break-In While Breaking Out Scene,tt2202750 3XX9d9BO5qs,2012.0,6,10,2019,Golden Winter,Puppies to the Rescue! Scene,tt2202750 FqtEB6j5jEQ,2012.0,5,10,2019,Golden Winter,A Wagonful Of Puppies Scene,tt2202750 jhMCxDi0Xs4,2012.0,9,10,2019,Golden Winter,The Puppies Save Christmas! Scene,tt2202750 1rVMJNSZHZg,2012.0,7,10,2019,Golden Winter,Meet Uncle Frankie Scene,tt2202750 RruqW_fwhEg,2012.0,1,10,2019,Golden Winter,Puppies Playing Tag Scene,tt2202750 oKdCaLj8b5o,2012.0,10,10,2019,Golden Winter,A Puppy Christmas Scene,tt2202750 IRdxr5ilGfw,2012.0,8,10,2019,Golden Winter,Frankie Steals Christmas Scene,tt2202750 fn9gU50qXvU,2017.0,4,10,2019,CarGo,Destruction Derby Scene,tt3860916 cqUpOLpJ1iU,2017.0,6,10,2019,CarGo,Carshank Redemption Scene,tt3860916 q_Gp2jL-V6I,2017.0,5,10,2019,CarGo,I Wanna Go Where Cars Go Scene,tt3860916 o2GcoDvPVuA,2017.0,7,10,2019,CarGo,The Spirit of the Forest Scene,tt3860916 y8cL18qVz6E,2017.0,9,10,2019,CarGo,Where Cars Go Scene,tt3860916 qTwgG6t94Ko,2017.0,2,10,2019,CarGo,I'm Just a Teenage Car Scene,tt3860916 ITaBaJEJLaA,2017.0,10,10,2019,CarGo,Revenge of the Monster Truck Scene,tt3860916 UpYME9Wz8Xc,2017.0,8,10,2019,CarGo,We Are the Clunkers Scene,tt3860916 l12dwyHThc8,2017.0,1,10,2019,CarGo,Break Some Rules Scene,tt3860916 E9smjLi8m28,2017.0,3,10,2019,CarGo,Father/Son Car-versation Scene,tt3860916 Cm5NLiqmVtk,2010.0,5,10,2019,The Last Airbender,Zuko vs. Katara Scene,tt0938283 KMOr9s3kfM0,2010.0,10,10,2019,The Last Airbender,The Avatar State Scene,tt0938283 CYGCwkmaa1s,2010.0,4,10,2019,The Last Airbender,Aang vs. Master Pakku Scene,tt0938283 Nqt6-rPGGEo,2010.0,1,10,2019,The Last Airbender,The Avatar Escapes Scene,tt0938283 Px2L96GVrKs,2010.0,9,10,2019,The Last Airbender,Uncle Iroh vs. Commander Zhao Scene,tt0938283 kU74wgKk8lo,2010.0,7,10,2019,The Last Airbender,The Koi Spirits Scene,tt0938283 bvnOqxRHjuc,2010.0,6,10,2019,The Last Airbender,Aang vs. Zuko Scene,tt0938283 vejLIHky2HE,2010.0,8,10,2019,The Last Airbender,Princess Yue's Sacrifice Scene,tt0938283 Gif5ZnaOOQ8,2010.0,3,10,2019,The Last Airbender,The Blue Spirit Fight Scene,tt0938283 HR2kbOK8i6I,2010.0,2,10,2019,The Last Airbender,Earthbenders Revolt! Scene,tt0938283 J-fa9awvFBY,1981.0,6,10,2019,Excalibur,Where Hides Evil? Scene,tt0082348 3mNDakZu1JA,1981.0,7,10,2019,Excalibur,Merlin and Morgana Scene,tt0082348 2C8fB8p6crY,1981.0,3,10,2019,Excalibur,The Lady of the Lake Scene,tt0082348 bKbZTFrWing,1981.0,9,10,2019,Excalibur,Murdering Morgana Scene,tt0082348 61nCIyBCmjg,1981.0,8,10,2019,Excalibur,The Holy Grail Scene,tt0082348 Af-N8CLLoqU,1981.0,2,10,2019,Excalibur,King Arthur vs. Lancelot Scene,tt0082348 7ZEqMqBLOOI,1981.0,10,10,2019,Excalibur,The Final Battle Scene,tt0082348 H2hbov4Rb6g,1981.0,4,10,2019,Excalibur,The Knights of the Round Table Scene,tt0082348 XAIeh0YarFs,1981.0,1,10,2019,Excalibur,Arthur's Knighthood Scene,tt0082348 4gO9OFumO8U,1981.0,5,10,2019,Excalibur,Wedding Knight Scene,tt0082348 7dgOcvrxxac,1935.0,12,12,2019,A Midsummer Night's Dream,Puck's Epilogue Scene,tt0026714 cv8yjJQg4Nc,1935.0,9,12,2019,A Midsummer Night's Dream,Hermia Is Shunned by All Scene,tt0026714 31vkz05skoc,1935.0,5,12,2019,A Midsummer Night's Dream,What Fools These Mortals Be Scene,tt0026714 p6IvB-2jYtY,1935.0,7,12,2019,A Midsummer Night's Dream,Titania Falls In Love Scene,tt0026714 Xurw2Ar9NNk,1935.0,2,12,2019,A Midsummer Night's Dream,Oberon Listens In Scene,tt0026714 9dN7jGSbsVE,1935.0,3,12,2019,A Midsummer Night's Dream,The Love-In-Idleness Flower Scene,tt0026714 2GFzqqC8iUg,1935.0,8,12,2019,A Midsummer Night's Dream,Two at Once Woo One Scene,tt0026714 U0HHhK_MrWg,1935.0,1,12,2019,A Midsummer Night's Dream,Lysander Plans to Elope Scene,tt0026714 wsFQrTAEs7A,1935.0,11,12,2019,A Midsummer Night's Dream,The Lovers Wake Scene,tt0026714 yJ_3DswWIeI,1935.0,10,12,2019,A Midsummer Night's Dream,Oberon Lifts Titania's Spell Scene,tt0026714 sZ6t_-wKImw,1935.0,6,12,2019,A Midsummer Night's Dream,Transformed into an Ass Scene,tt0026714 9nwSOUvKyys,1935.0,4,12,2019,A Midsummer Night's Dream,Puck Makes a Mistake Scene,tt0026714 585p7sJhiFk,2018.0,6,10,2019,Mission: Impossible Fallout,Hunley's Death Scene,tt4912910 mqkYeGeQ1f4,2018.0,3,10,2019,Mission: Impossible Fallout,Prison Breakout Scene,tt4912910 0pUMzDEV-DE,2018.0,1,10,2019,Mission: Impossible Fallout,The Halo Jump Scene,tt4912910 egwR6gS9UMM,2018.0,2,10,2019,Mission: Impossible Fallout,Bathroom Brawl Scene,tt4912910 HsMVFxZ43iU,2018.0,7,10,2019,Mission: Impossible Fallout,I'm Jumping Out A Window! Scene,tt4912910 WLKpgzXHKLA,2018.0,9,10,2019,Mission: Impossible Fallout,Helicopter Collision Scene,tt4912910 Veh9KV9fm6s,2018.0,5,10,2019,Mission: Impossible Fallout,Hot Pursuit Scene,tt4912910 14zxmnIDoLs,2018.0,8,10,2019,Mission: Impossible Fallout,Helicopter Hijacking Scene,tt4912910 kvzzBebEAHQ,2018.0,10,10,2019,Mission: Impossible Fallout,Cliffside Showdown Scene,tt4912910 Qwx9wZgxUoQ,2018.0,4,10,2019,Mission: Impossible Fallout,Motorcycle Chase Scene,tt4912910 wn_8YBvVugo,2014.0,6,10,2019,Jack Ryan: Shadow Recruit,Captured by Cossacks Scene,tt1205537 WC7TpzxGktk,2014.0,3,10,2019,Jack Ryan: Shadow Recruit,Awaking the Sleeper Agents Scene,tt1205537 8n6mcd5Odj8,2014.0,5,10,2019,Jack Ryan: Shadow Recruit,Shot in the Face Scene,tt1205537 GQYCNF_zoDM,2014.0,7,10,2019,Jack Ryan: Shadow Recruit,Lightbulb Torture Scene,tt1205537 8NZ9CLszc_g,2014.0,2,10,2019,Jack Ryan: Shadow Recruit,Hotel Assassin Scene,tt1205537 tuusFUTcCO8,2014.0,1,10,2019,Jack Ryan: Shadow Recruit,Helicopter Crash Scene,tt1205537 relfjwjhscE,2014.0,10,10,2019,Jack Ryan: Shadow Recruit,"Fake Cops, Real Terrorists Scene",tt1205537 nEGbOGGiENU,2014.0,8,10,2019,Jack Ryan: Shadow Recruit,Follow That Police Van Scene,tt1205537 fKaiHVTL5nQ,2014.0,9,10,2019,Jack Ryan: Shadow Recruit,Sewer Fight Scene,tt1205537 0zsUFpPjt8g,2014.0,4,10,2019,Jack Ryan: Shadow Recruit,Inebriated Infiltration Scene,tt1205537 uqfD6UPvkR8,2013.0,3,10,2019,100 Degrees Below Zero,No Other Way Out Scene,tt2538128 9cw9NI4BKnQ,2013.0,9,10,2019,100 Degrees Below Zero,Paris is Freezing Scene,tt2538128 fD3pjFbgcyc,2013.0,7,10,2019,100 Degrees Below Zero,The English Channel Escape Scene,tt2538128 bK_2x293Urw,2013.0,6,10,2019,100 Degrees Below Zero,Duck and Cover Scene,tt2538128 tRuqSw7mX5A,2013.0,1,10,2019,100 Degrees Below Zero,A Change of Plans Scene,tt2538128 pHH7NwBwxM0,2013.0,5,10,2019,100 Degrees Below Zero,You Can't Leave Me Here Scene,tt2538128 _NEfPBtUqS4,2013.0,10,10,2019,100 Degrees Below Zero,The Final Rescue Scene,tt2538128 0ZkuRt2ZKRE,2013.0,8,10,2019,100 Degrees Below Zero,Crash Collision Scene,tt2538128 h08whCp_tL4,2013.0,4,10,2019,100 Degrees Below Zero,All or Nothing Scene,tt2538128 5zzYjkS_iMA,2013.0,2,10,2019,100 Degrees Below Zero,Earthquake In Paris Scene,tt2538128 y64QBxHJiqI,1991.0,10,10,2019,Bill & Ted's Bogus Journey,Let's Rock! Scene,tt0101452 R81ZAKQzJ5Q,1991.0,1,10,2019,Bill & Ted's Bogus Journey,Evil Bill and Ted Scene,tt0101452 pLqoZtmyxxk,1991.0,8,10,2019,Bill & Ted's Bogus Journey,Two Stations Merge Scene,tt0101452 _ZwkQIBp4TA,1991.0,4,10,2019,Bill & Ted's Bogus Journey,The Seance Scene,tt0101452 EGbVLHy9Lvw,1991.0,7,10,2019,Bill & Ted's Bogus Journey,Bill and Ted Talk to God Scene,tt0101452 06L5y4Z9KcE,1991.0,3,10,2019,Bill & Ted's Bogus Journey,I Totally Possessed My Dad Scene,tt0101452 S-WVZ-d28yg,1991.0,9,10,2019,Bill & Ted's Bogus Journey,Good Versus Evil Scene,tt0101452 vLt5ei598CY,1991.0,5,10,2019,Bill & Ted's Bogus Journey,The Long Fall to Hell Scene,tt0101452 tktoOXBmflI,1991.0,6,10,2019,Bill & Ted's Bogus Journey,You Have Sunk My Battleship! Scene,tt0101452 OAtwRoFSlOE,1991.0,2,10,2019,Bill & Ted's Bogus Journey,We're Dead Dude Scene,tt0101452 OroiRWIR2gQ,1994.0,2,8,2019,"The Adventures of Priscilla, Queen of the Desert",People Like You Scene,tt0109045 ZreZzV7y18Y,1994.0,3,8,2019,"The Adventures of Priscilla, Queen of the Desert",Opera Atop a Bus Scene,tt0109045 p2QiCFAQ-qQ,1994.0,1,8,2019,"The Adventures of Priscilla, Queen of the Desert",Christening Priscilla,tt0109045 X5dtBoyZ33o,1994.0,5,8,2019,"The Adventures of Priscilla, Queen of the Desert",Ping-Pong Scene,tt0109045 kevJJDQloNE,1994.0,7,8,2019,"The Adventures of Priscilla, Queen of the Desert",Finally Scene,tt0109045 v0gGWiRkjYM,1994.0,4,8,2019,"The Adventures of Priscilla, Queen of the Desert",I Will Survive Scene,tt0109045 ec9h1IjltJg,1994.0,8,8,2019,"The Adventures of Priscilla, Queen of the Desert",The Mountain Top Scene,tt0109045 9nc12yOA4jM,1994.0,6,8,2019,"The Adventures of Priscilla, Queen of the Desert",Now You're F***ed Scene,tt0109045 IOV2-bbOHts,2012.0,8,10,2019,Celebrity Sex Tape,Meeting Mellony Scene,tt2136808 Gpc4_pqXMVo,2012.0,7,10,2019,Celebrity Sex Tape,Slap Fight Scene,tt2136808 fin0EY5-n_s,2012.0,2,10,2019,Celebrity Sex Tape,The Morning After Scene,tt2136808 wCmL4G9TYMk,2012.0,3,10,2019,Celebrity Sex Tape,Caught Wet Handed Scene,tt2136808 59-Yznur6tg,2012.0,5,10,2019,Celebrity Sex Tape,Comic-Con Concubine Scene,tt2136808 mr0RZ7hUrpU,2012.0,6,10,2019,Celebrity Sex Tape,An Indecent Proposal Scene,tt2136808 Zb10goz7guA,2012.0,1,10,2019,Celebrity Sex Tape,Caught White Handed Scene,tt2136808 nX4t6GMjNqg,2012.0,9,10,2019,Celebrity Sex Tape,Dominating Her Agent Scene,tt2136808 BSmKQGvL9ho,2012.0,4,10,2019,Celebrity Sex Tape,Agent Of Death Scene,tt2136808 2JweD72Ains,2012.0,10,10,2019,Celebrity Sex Tape,A Happy Ending Scene,tt2136808 TmALN8vdU0s,1964.0,2,11,2019,A Shot in the Dark,Sneak Attack Scene,tt0058586 QsSD6_V2IYk,1964.0,4,11,2019,A Shot in the Dark,Billiards Buffoonery Scene,tt0058586 E3yX8lT2UAI,1964.0,8,11,2019,A Shot in the Dark,Naked Traffic Jam Scene,tt0058586 ZjPPfwVPTDE,1964.0,6,11,2019,A Shot in the Dark,Naked Right Down To Your Mustache Scene,tt0058586 eRNCIg86DKs,1964.0,11,11,2019,A Shot in the Dark,Everything I Do Is Carefully Planned Scene,tt0058586 xYfxboRtKJE,1964.0,7,11,2019,A Shot in the Dark,Dead Dudu Scene,tt0058586 0oFdsgLP8n8,1964.0,3,11,2019,A Shot in the Dark,Nothing Matters But The Facts Scene,tt0058586 TIu_CYwemFo,1964.0,9,11,2019,A Shot in the Dark,Dreyfus Cracks Scene,tt0058586 sSRmhI94MUs,1964.0,5,11,2019,A Shot in the Dark,Right Off Cue Scene,tt0058586 N9d-c9ooO7s,1964.0,1,11,2019,A Shot in the Dark,Clouseau Catches Fire Scene,tt0058586 ebkY0u1-NKk,1964.0,10,11,2019,A Shot in the Dark,A Bump Upon The Head Scene,tt0058586 DdpMl3_vPmQ,1978.0,12,12,2019,Revenge of the Pink Panther,Clouseau Gets Rewarded Scene,tt0078163 dX0dcSJE7ek,1978.0,9,12,2019,Revenge of the Pink Panther,The Great Balls Scene,tt0078163 WT6DQ_NO5zw,1978.0,10,12,2019,Revenge of the Pink Panther,Shipyard Chase Scene,tt0078163 CARc1uUq1lA,1978.0,8,12,2019,Revenge of the Pink Panther,Salty Swedish Sea Dog Scene,tt0078163 nAuz36A1zG0,1978.0,4,12,2019,Revenge of the Pink Panther,Taking Out Chong Scene,tt0078163 0z-FtAMg6Vw,1978.0,6,12,2019,Revenge of the Pink Panther,The Silver Hornet Scene,tt0078163 shE7b_6NNpU,1978.0,3,12,2019,Revenge of the Pink Panther,Meeting Mr. Chong Scene,tt0078163 BEKzJzaZ0Fk,1978.0,2,12,2019,Revenge of the Pink Panther,Office On Fire Scene,tt0078163 q8HcMk_IimM,1978.0,11,12,2019,Revenge of the Pink Panther,Fireworks Factory Fire Fight Scene,tt0078163 haX0ACElUQc,1978.0,1,12,2019,Revenge of the Pink Panther,A Bomb! Scene,tt0078163 XRtuUFYTctA,1978.0,5,12,2019,Revenge of the Pink Panther,Dropped Call Scene,tt0078163 oc8bWybEFFI,1978.0,7,12,2019,Revenge of the Pink Panther,Chinese Nookie Factory Scene,tt0078163 UmynxNlSRaE,1958.0,4,12,2019,It! The Terror From Beyond Space,Strange Noises Scene,tt0051786 Im39PGAb82I,1958.0,11,12,2019,It! The Terror From Beyond Space,Popping the Airlock Scene,tt0051786 QbOo_FctFu4,1958.0,10,12,2019,It! The Terror From Beyond Space,What About Bob? Scene,tt0051786 18ARBQLResg,1958.0,5,12,2019,It! The Terror From Beyond Space,Into the Air Duct Scene,tt0051786 YPIfHEdHjHI,1958.0,3,12,2019,It! The Terror From Beyond Space,That Kind of Monster Scene,tt0051786 7vWLiI04VCw,1958.0,7,12,2019,It! The Terror From Beyond Space,Nothing Stops Him Scene,tt0051786 gPJFxEvmHpQ,1958.0,8,12,2019,It! The Terror From Beyond Space,Venturing Outside Scene,tt0051786 T69FlogsAGI,1958.0,2,12,2019,It! The Terror From Beyond Space,It Creeps In Before Blast Off Scene,tt0051786 3reg2k9xS9k,1958.0,1,12,2019,It! The Terror From Beyond Space,The Sole Survivor Scene,tt0051786 2gzVWIUhUOg,1958.0,9,12,2019,It! The Terror From Beyond Space,Playing with Fire Scene,tt0051786 CsOM7mptOLM,1958.0,6,12,2019,It! The Terror From Beyond Space,The Crew Fights Back Scene,tt0051786 5W_sktmZuzI,1958.0,12,12,2019,It! The Terror From Beyond Space,Another Name for Mars Is Death Scene,tt0051786 yNmBX5mZvRw,2017.0,5,10,2019,The 5th Kind,Knife Attack Scene,tt5160954 h36wtoBcAS8,2017.0,1,10,2019,The 5th Kind,How to Use Rope Scene,tt5160954 nPJFSx8RTzo,2017.0,2,10,2019,The 5th Kind,Natural Bottle Opener Scene,tt5160954 j_txRPwTvpk,2017.0,6,10,2019,The 5th Kind,Alien Mind Warp Scene,tt5160954 0z9b9_n8-Ek,2017.0,8,10,2019,The 5th Kind,Possessed by an Alien Scene,tt5160954 6KYxDFGC2hE,2017.0,4,10,2019,The 5th Kind,Late Night Camera Confessions Scene,tt5160954 1lxY4Sc9eNg,2017.0,7,10,2019,The 5th Kind,Forest of Fear Scene,tt5160954 QBUTO2RVjXU,2017.0,10,10,2019,The 5th Kind,Aliens Attack Los Vegas Scene,tt5160954 WcmMx1_lQmA,2017.0,3,10,2019,The 5th Kind,Wanna See How to Kill Something? Scene,tt5160954 7RSJehegfZw,2017.0,9,10,2019,The 5th Kind,Abducted by Aliens Scene,tt5160954 5RKld6BGJA4,2016.0,7,10,2019,Trolls,I'm Coming Out! Scene,tt1679335 En7TapBA84M,2016.0,6,10,2019,Trolls,Cloud Guy Scene,tt1679335 wwnqJH8OF-I,2016.0,3,10,2019,Trolls,Party Pooper Scene,tt1679335 9hPgjW2ou9E,2016.0,10,10,2019,Trolls,Can't Stop the Feeling! Scene,tt1679335 wWRnv1V8iUY,2016.0,1,10,2019,Trolls,The Last tice Scene,tt1679335 3Y-pMJ4IcTY,2016.0,9,10,2019,Trolls,True Colors Scene,tt1679335 DNHmujbuC74,2016.0,8,10,2019,Trolls,Love on Rollerskates Scene,tt1679335 9nOc2GqCQ2Y,2016.0,2,10,2019,Trolls,Move Your Feet / D.A.N.C.E. Scene,tt1679335 gtHhlD6p8BY,2016.0,4,10,2019,Trolls,The Light Festival Scene,tt1679335 7aYOGUPabd8,2016.0,5,10,2019,Trolls,Get Back Up Again Scene,tt1679335 4UC_5gXVXUk,2017.0,10,10,2019,Space Guardians,Empty Your Mind Scene,tt8560130 _f7p28YFgvc,2017.0,1,10,2019,Space Guardians,You've Failed Every Test Scene,tt8560130 rpPm4pAJQbc,2017.0,7,10,2019,Space Guardians,Blast Off! Scene,tt8560130 0N7ilB9wX3o,2017.0,5,10,2019,Space Guardians,Tacos Are Everywhere Scene,tt8560130 nc0LwkqYGpM,2017.0,3,10,2019,Space Guardians,Crazy Robo Cat Scene,tt8560130 gq6JKq3Q_uw,2017.0,9,10,2019,Space Guardians,A Galaxy of Tacos Scene,tt8560130 xYHBAXUJ-Zs,2017.0,2,10,2019,Space Guardians,Galactic Samurai Training Scene,tt8560130 DKtupzAQYv4,2017.0,6,10,2019,Space Guardians,Getting Vaporized Scene,tt8560130 G8FhdcsVB_o,2017.0,4,10,2019,Space Guardians,The Space-Time Machine Scene,tt8560130 kdbRwpxZHJY,2017.0,8,10,2019,Space Guardians,I'm Not Really Even Here Scene,tt8560130 0yngsYrBCLg,2017.0,7,10,2019,Easter Bunny Adventure,The Goose With The Golden Eggs Scene,tt6408946 WcsyV7eMrGI,2017.0,9,10,2019,Easter Bunny Adventure,The Tortoise & The Hare Scene,tt6408946 SuSUwDgtq1g,2017.0,8,10,2019,Easter Bunny Adventure,Hogging Stories Scene,tt6408946 xsHxWhCydMI,2017.0,2,10,2019,Easter Bunny Adventure,The Wolf & The Kid Scene,tt6408946 xwfJyzB6dow,2017.0,4,10,2019,Easter Bunny Adventure,A Kindness Is Never Wasted Scene,tt6408946 rS-P78D5US4,2017.0,6,10,2019,Easter Bunny Adventure,Frida the Frog Scene,tt6408946 1maNhuFVhmk,2017.0,3,10,2019,Easter Bunny Adventure,Stories from the Bull Scene,tt6408946 msSsPzKVzW0,2017.0,5,10,2019,Easter Bunny Adventure,The Boy Who Cried Wolf Scene,tt6408946 rYS9mUCFOAk,2017.0,10,10,2019,Easter Bunny Adventure,Evil Needs No Excuse Scene,tt6408946 Afwy5S9__0E,2017.0,1,10,2019,Easter Bunny Adventure,The Rat & The Elephant Scene,tt6408946 8fizKw4z9fI,2018.0,3,7,2019,Zoo Wars,Boo Boo Uses The Sauce Scene,tt9004516 J03m0CzUvJU,2016.0,10,10,2019,Star Paws,Time Paradox Scene,tt5936438 xI-ehlRwN8o,2005.0,10,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Rabbit Rescue Scene,tt0312004 aTxu-zthTgs,2005.0,9,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Dogfight Scene,tt0312004 5Tqsh3b_lb4,2005.0,3,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Bunny Brainwashing Scene,tt0312004 BgCgiRitEmM,2005.0,4,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Hot On Its Tail Scene,tt0312004 -nk6Gs6Z_Bo,2005.0,5,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Wallace Transforms Scene,tt0312004 f9wFKCfic8Q,2005.0,8,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Rabbit Bait Scene,tt0312004 Jmf4o8UalVM,2005.0,6,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Brain Swap Scene,tt0312004 zZLAinjBShg,2005.0,1,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Bunny Breakfast Scene,tt0312004 E7fMOxGw-dw,2005.0,7,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Beauty & The Beast Scene,tt0312004 egTtyS-PlRM,2005.0,2,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,The Bunny Vacuum Scene,tt0312004 DECG3af2qh8,2018.0,4,7,2019,Zoo Wars,Moose Warrior Scene,tt9004516 YsCeolAfbLw,2018.0,5,7,2019,Zoo Wars,Putting The Sauce On Tar Tar Scene,tt9004516 LJym4mTtLRY,2018.0,6,7,2019,Zoo Wars,Meeting Bongo Bananas Scene,tt9004516 HOjApJYsWC0,2018.0,1,7,2019,Zoo Wars,Hit Enter for the Ultimate Truth Scene,tt9004516 4vekUOykIvw,2018.0,7,7,2019,Zoo Wars,Defeating Boo Boo Scene,tt9004516 qMaZAi73HDo,2018.0,2,7,2019,Zoo Wars,The Sauce Dimension Scene,tt9004516 b_aJy2SE60E,2016.0,8,10,2019,Star Paws,Stupid Stegosaurus Scene,tt5936438 YprQvoOj6wM,2016.0,5,10,2019,Star Paws,One Smart Clucker Scene,tt5936438 JHAtw0HRhho,2016.0,1,10,2019,Star Paws,Legend of the Bone Scene,tt5936438 6kN5IkXFwcQ,2016.0,2,10,2019,Star Paws,I'm the Boss! Scene,tt5936438 GqGPu-X3cv8,2016.0,9,10,2019,Star Paws,Deadly Dinosaur Danger Scene,tt5936438 ag2wbvh5VDs,2016.0,7,10,2019,Star Paws,In the Time of Dinosaurs Scene,tt5936438 IgeW0MPX60Q,2016.0,6,10,2019,Star Paws,The Civil War Canine Scene,tt5936438 --hendERqm0,2016.0,4,10,2019,Star Paws,Doggie Photoshoot Scene,tt5936438 pkogDQ3CK9E,2016.0,3,10,2019,Star Paws,Cat & Dog Fight Scene,tt5936438 0D35LZ4UBX8,2014.0,7,8,2019,East Jerusalem / West Jerusalem,The Sound of Progress Scene,tt3604958 BUB6TUH7N0A,2014.0,8,8,2019,East Jerusalem / West Jerusalem,"Peace, Love, and Understanding Scene",tt3604958 5uEViMQGON4,2014.0,2,8,2019,East Jerusalem / West Jerusalem,No Such Thing as a Lost Cause Scene,tt3604958 N6SPrarFcBA,2014.0,4,8,2019,East Jerusalem / West Jerusalem,Each Language Likes Different Things,tt3604958 hYIWCm-Lpj0,2014.0,1,8,2019,East Jerusalem / West Jerusalem,Our Jerusalem Scene,tt3604958 kvtsZ1Edkk4,2014.0,3,8,2019,East Jerusalem / West Jerusalem,Politics vs. War Scene,tt3604958 HrFlTjySp8E,2014.0,5,8,2019,East Jerusalem / West Jerusalem,Refugee Jam Session Scene,tt3604958 HC1LN5AgjRU,2014.0,6,8,2019,East Jerusalem / West Jerusalem,Midnight in Tel Aviv Scene,tt3604958 n6zlrCAvNRg,2016.0,5,5,2019,In Between,Confronting the Abuser Scene,tt5974388 7sQRpVCnRto,2016.0,2,5,2019,In Between,Feel Your Heart Scene,tt5974388 Vez07Q0O7c0,2016.0,1,5,2019,In Between,Danger! Electrifying! Scene,tt5974388 v5oVPhcW9nk,2016.0,3,5,2019,In Between,Dinner & A Show Scene,tt5974388 ClUoUHjr-zE,2016.0,4,5,2019,In Between,Accept Me Or It's Over Scene,tt5974388 ZCU-wmL_XNw,2012.0,4,8,2019,Lines of Wellington,Do What You Want to Me Scene,tt1928329 up86hjG02yU,2012.0,7,8,2019,Lines of Wellington,The Bastard French Scene,tt1928329 pDdLHI3b7lI,2012.0,2,8,2019,Lines of Wellington,Memories on the Run Scene,tt1928329 oUrT0qTcHBE,2012.0,3,8,2019,Lines of Wellington,I've Done It With My Brother Scene,tt1928329 R-ciRNPLhWE,2012.0,1,8,2019,Lines of Wellington,Love and War Scene,tt1928329 YJjM9EMhQ1E,2012.0,5,8,2019,Lines of Wellington,Beef Wellington Scene,tt1928329 lMZzHaUh_Bc,2012.0,8,8,2019,Lines of Wellington,Another Man's Wife Scene,tt1928329 Nc6K_D4rtGU,2012.0,6,8,2019,Lines of Wellington,Putting a Horse Down Scene,tt1928329 XNwDyM81lSE,1969.0,2,9,2019,Guns of the Magnificent Seven,That's My Horse! Scene,tt0064395 tY5el7dZ9H0,1969.0,8,9,2019,Guns of the Magnificent Seven,You Have No Big Dreams Scene,tt0064395 -5twCD8tAMc,1969.0,1,9,2019,Guns of the Magnificent Seven,Let Them Go Scene,tt0064395 LVvJj9sDilQ,1969.0,5,9,2019,Guns of the Magnificent Seven,A Friendly Game of Cards Scene,tt0064395 WLE2QEOBde4,1969.0,4,9,2019,Guns of the Magnificent Seven,The Buffalo Bill Show Scene,tt0064395 yQ62WM_w2iM,1969.0,7,9,2019,Guns of the Magnificent Seven,Stick 'Em Up! Scene,tt0064395 q3Vvto0REuc,1969.0,3,9,2019,Guns of the Magnificent Seven,I Need Your Help Scene,tt0064395 yWP5eC822Ac,1969.0,6,9,2019,Guns of the Magnificent Seven,Talk Now or Never Talk Again Scene,tt0064395 i3yO0OagpNY,1969.0,9,9,2019,Guns of the Magnificent Seven,Surprise Attack Scene,tt0064395 M669rZIUGIs,2017.0,2,7,2019,Jasper Jones,Jasper's Story Scene,tt5091014 7DnCFrbE88A,2017.0,5,7,2019,Jasper Jones,Just Digging Deeper Scene,tt5091014 MO7Sa_dI0SM,2017.0,7,7,2019,Jasper Jones,Mom's New Lover Scene,tt5091014 VD704T-c64c,2017.0,1,7,2019,Jasper Jones,The Body Scene,tt5091014 UpWvuwMabSA,2017.0,4,7,2019,Jasper Jones,On the Run Scene,tt5091014 UxVY9CTaNNQ,2017.0,3,7,2019,Jasper Jones,A Murderer's Farm Scene,tt5091014 oX3yOgEmFOI,2017.0,6,7,2019,Jasper Jones,Cricket Superstar Scene,tt5091014 UNLFpS_xEZI,2012.0,4,4,2019,Forgetting the Girl,Hot Goth Bowling Scene,tt1492842 W7BLikBY5Ak,2012.0,1,4,2019,Forgetting the Girl,I Just Want a Girl Scene,tt1492842 dwK_rODYMrY,2012.0,3,4,2019,Forgetting the Girl,You Can Kiss Me Now Scene,tt1492842 rXxBQRh89AA,2012.0,2,4,2019,Forgetting the Girl,You Are Beautiful Scene,tt1492842 VAmXYYSt6TM,2018.0,4,10,2019,The Meg,Man vs. Shark Scene,tt4779682 xYIhxXt58uE,2018.0,10,10,2019,The Meg,I'm Going to Make It Bleed Scene,tt4779682 FovnKIV3VD0,2018.0,5,10,2019,The Meg,Shark Cage vs. Megalodon Scene,tt4779682 oiQPOmrEAxo,2018.0,9,10,2019,The Meg,Shark on My Tail Scene,tt4779682 p3zb4fwFd3E,2018.0,3,10,2019,The Meg,Shark Food Scene,tt4779682 IxRCDx-YV4I,2018.0,1,10,2019,The Meg,Giant Squid Attack Scene,tt4779682 LZ6HA66dXVw,2018.0,7,10,2019,The Meg,Killing the Meg Scene,tt4779682 ujA70PK6E7U,2018.0,8,10,2019,The Meg,The Beach Attack Scene,tt4779682 sVfmACBWnIY,2018.0,6,10,2019,The Meg,We Killed the Meg! Scene,tt4779682 QxReNyiIprw,2018.0,2,10,2019,The Meg,Submarine Rescue Scene,tt4779682 SWlYiOtP5mI,2018.0,3,10,2019,Won't You Be My Neighbor?,Daniel Striped Tiger Is The Real Fred Scene,tt7681902 USWXF1XW2zo,2018.0,8,10,2019,Won't You Be My Neighbor?,Mister Rogers & Jeff Erlanger Scene,tt7681902 uEW0FlmiNec,2018.0,9,10,2019,Won't You Be My Neighbor?,Fred Rogers' Death Scene,tt7681902 4cl5cWYmvgc,2018.0,6,10,2019,Won't You Be My Neighbor?,Mister Rogers & Theme Weeks Scene,tt7681902 wLuRwDl3MrE,2018.0,1,10,2019,Won't You Be My Neighbor?,Tackling Issues Scene,tt7681902 pQv0ZtpRdNk,2018.0,4,10,2019,Won't You Be My Neighbor?,What Does Assassination Mean? Scene,tt7681902 gMdTl2R354A,2018.0,2,10,2019,Won't You Be My Neighbor?,Mister Rogers Saves PBS Scene,tt7681902 HPcr2gT_cnA,2018.0,10,10,2019,Won't You Be My Neighbor?,What Would Fred Rogers Do? Scene,tt7681902 K6O_Ep9bY0U,2018.0,5,10,2019,Won't You Be My Neighbor?,Officer Clemmons Scene,tt7681902 DqSBqfDgOsQ,2018.0,7,10,2019,Won't You Be My Neighbor?,I Love You Just The Way You Are Scene,tt7681902 14pZQ6VASRI,2016.0,2,8,2019,Line 41,"""Highly Decent"" Killers Scene",tt5218234 PmxzK5IzcaM,2016.0,8,8,2019,Line 41,The Death Of A Family Scene,tt5218234 BSXK08_Ivac,2016.0,7,8,2019,Line 41,Your Brother Was A Hero Scene,tt5218234 3ReLHqluiXY,2016.0,6,8,2019,Line 41,The Duality Of Dad Scene,tt5218234 V9LA86HF3i8,2016.0,3,8,2019,Line 41,You Don't Have A Father Anymore Scene,tt5218234 Ud8doeLuJWk,2016.0,4,8,2019,Line 41,The Trains Scene,tt5218234 vxEvNuW12dk,2016.0,1,8,2019,Line 41,Creating The Ghetto Scene,tt5218234 FvN03fXmnQU,2016.0,5,8,2019,Line 41,Ghetto Within A Ghetto Scene,tt5218234 bqUmYcmLCMI,2016.0,2,8,2019,The Paris Opera,"Easy Rider, the Opera Cow Scene",tt6599064 jP6-fvz9W04,2016.0,4,8,2019,The Paris Opera,Snow Ballerinas Scene,tt6599064 MsIWigAwas8,2016.0,6,8,2019,The Paris Opera,Ballerina Practice Scene,tt6599064 HCNwZZ3Baus,2016.0,8,8,2019,The Paris Opera,The Final Performance Scene,tt6599064 3zgwoTgXXuc,2016.0,7,8,2019,The Paris Opera,The Performance of the Season Scene,tt6599064 daJzFEzxXos,2016.0,5,8,2019,The Paris Opera,Singer and Admirer Scene,tt6599064 pTxj-Dks1Mg,2016.0,1,8,2019,The Paris Opera,Opera Tryouts Scene,tt6599064 O75p8X8YBtw,2016.0,3,8,2019,The Paris Opera,Moses and Aaron Scene,tt6599064 sUQ9cisQpaY,2016.0,7,8,2019,Theory of Obscurity: A Film About The Residents,Cultural Observers Scene,tt2833768 fRNR8-FqzM4,2016.0,2,8,2019,Theory of Obscurity: A Film About The Residents,Rusty Coathangers Scene,tt2833768 5RUWalajNYE,2016.0,3,8,2019,Theory of Obscurity: A Film About The Residents,Give It to Someone Else,tt2833768 t-B2zR5O5Ys,2016.0,6,8,2019,Theory of Obscurity: A Film About The Residents,Faster Than Culture Scene,tt2833768 BCcw2q6KbbI,2016.0,4,8,2019,Theory of Obscurity: A Film About The Residents,Vileness Fats Scene,tt2833768 9FAeJgWLKRo,2016.0,8,8,2019,Theory of Obscurity: A Film About The Residents,"Help Us, Please! Scene",tt2833768 cnwddNSgakk,2016.0,5,8,2019,Theory of Obscurity: A Film About The Residents,Hello Skinny Scene,tt2833768 Nwru3-Uif_Q,2016.0,1,8,2019,Theory of Obscurity: A Film About The Residents,"Oh Lordy, It's Madness",tt2833768 jpEfgrff8z0,2007.0,6,10,2019,Bee Movie,The Trial Beegins Scene,tt0389790 7h-q7bXYD1c,2007.0,4,10,2019,Bee Movie,Hitchhiking Honey Bee Scene,tt0389790 O4brzUAaTS0,2007.0,10,10,2019,Bee Movie,Thinking Bee Scene,tt0389790 -nswXtzrfQU,2007.0,8,10,2019,Bee Movie,I Speak For The Bees! Scene,tt0389790 3WmyeqVxCV0,2007.0,9,10,2019,Bee Movie,Unacceptable Beehavior Scene,tt0389790 74ZjOVz3gs4,2007.0,5,10,2019,Bee Movie,Bathroom Bee Brawl Scene,tt0389790 oNWAiWBup2Q,2007.0,1,10,2019,Bee Movie,Pollen Power Scene,tt0389790 vubylfvbMhk,2007.0,7,10,2019,Bee Movie,A Stinging Testimony Scene,tt0389790 IFBAXbrw31g,2007.0,2,10,2019,Bee Movie,Anyone For Tennis? Scene,tt0389790 L46syxgju18,2007.0,3,10,2019,Bee Movie,Ya Like Jazz? Scene,tt0389790 BGOL5YmTrAY,2017.0,10,10,2019,Jungle Tales,River Boat Attack Scene,tt1576379 -Qq6ZZy0yGg,2017.0,8,10,2019,Jungle Tales,Training Song Scene,tt1576379 phGwatUEyzc,2017.0,5,10,2019,Jungle Tales,The Extinction Song Scene,tt1576379 6VvluTE_w14,2017.0,3,10,2019,Jungle Tales,The Monster Attacks Scene,tt1576379 ueMuCbXkDhw,2017.0,6,10,2019,Jungle Tales,Chased by Dogs Scene,tt1576379 Td3qZIf5Swg,2017.0,9,10,2019,Jungle Tales,My Jungle Friends Scene,tt1576379 4Fa5YPKxwRU,2017.0,7,10,2019,Jungle Tales,Fighting the Monster Scene,tt1576379 eG2Yo0l78tM,2017.0,2,10,2019,Jungle Tales,Surprise Party Scene,tt1576379 p0CQcDumPh8,2017.0,1,10,2019,Jungle Tales,Flamingo Stockings Scene,tt1576379 hudgzkYfSvU,2017.0,4,10,2019,Jungle Tales,A Traitorous Bird Scene,tt1576379 GZauEya_plU,2016.0,3,8,2019,Fishtales,Seahorse Stable Scene,tt5363648 aPFbf954LJ0,2016.0,2,8,2019,Fishtales,Jellyfish Bloom Scene,tt5363648 qL5_xmtFVDo,2016.0,4,8,2019,Fishtales,Amazing and Terrifying Eels Scene,tt5363648 mT3_2sDEBJQ,2016.0,8,8,2019,Fishtales,Seal Of Approval Scene,tt5363648 VTTj-7UumYk,2016.0,7,8,2019,Fishtales,Frog Facts Scene,tt5363648 jH07BdMRP0g,2016.0,1,8,2019,Fishtales,Learning About Sea Turtles Scene,tt5363648 NQcQ3bA_NXw,2016.0,6,8,2019,Fishtales,Crustacean Invasion Scene,tt5363648 Uvm8N3wQDTo,2016.0,5,8,2019,Fishtales,Swarm Of Sharks Scene,tt5363648 _5kQ0ekY5l8,2012.0,7,8,2019,Broken,It's Not Your Fault Scene,tt1235522 Lbxeyn5IS8Q,2012.0,3,8,2019,Broken,Stand Accused Scene,tt1235522 3Sot46WTjcY,2012.0,5,8,2019,Broken,Juvenile Delinquents Scene,tt1235522 wVCf-70SKKg,2012.0,2,8,2019,Broken,Picking a Fight Scene,tt1235522 WuvoHScKCR0,2012.0,4,8,2019,Broken,Daddy's Gotta Go Now Scene,tt1235522 sZdVc2KAfWQ,2012.0,1,8,2019,Broken,A Random Act of Violence Scene,tt1235522 9sSxcSntcyE,2012.0,8,8,2019,Broken,I Just Want Your Goodness Scene,tt1235522 IIJZj1M4tN8,2012.0,6,8,2019,Broken,You Pervert! Scene,tt1235522 Gklme1-eQGE,1991.0,9,12,2019,The Man in the Moon,Court's Accident Scene,tt0102388 sCSTQpBwqqs,1991.0,8,12,2019,The Man in the Moon,Love at First Sight Scene,tt0102388 miJ26dYcbBw,1991.0,10,12,2019,The Man in the Moon,Bad News Scene,tt0102388 oT_RsXOPjTs,1991.0,2,12,2019,The Man in the Moon,Dani Goes Skinny Dipping Scene,tt0102388 YzIWoPLLktE,1991.0,6,12,2019,The Man in the Moon,I'm Not a Little Girl Scene,tt0102388 HYWSAtLFgXg,1991.0,3,12,2019,The Man in the Moon,Wild Ride Scene,tt0102388 TiQaVmutQwg,1991.0,4,12,2019,The Man in the Moon,Jump with Me Scene,tt0102388 daVOnsL2wkU,1991.0,7,12,2019,The Man in the Moon,First Kiss Scene,tt0102388 N7i4yZhm6V0,1991.0,5,12,2019,The Man in the Moon,Love Sick Scene,tt0102388 R5wXxo6yIU4,1991.0,1,12,2019,The Man in the Moon,Scene,tt0102388 oefn8TJ3_H8,1991.0,11,12,2019,The Man in the Moon,Fatherly Advice Scene,tt0102388 pUPliO3qy04,1991.0,12,12,2019,The Man in the Moon,Is It Always Going to Hurt This Bad? Scene,tt0102388 UAoJ_mv0Pqo,2018.0,4,10,2019,Skyscraper,Bridge Of Fire Scene,tt5758778 ioUedV29CQE,2018.0,2,10,2019,Skyscraper,They're Going To Kill You Scene,tt5758778 Uo1FfULMJ5E,2018.0,8,10,2019,Skyscraper,Backseat Cat Fight Scene,tt5758778 M06KzvYxlsc,2018.0,10,10,2019,Skyscraper,Reboot The Building Scene,tt5758778 3PoW8y_3rzU,2018.0,7,10,2019,Skyscraper,Rooftop Mirror Showdown Scene,tt5758778 KMkdp0Uy8t0,2018.0,3,10,2019,Skyscraper,Crane Jump Scene,tt5758778 aKE0S2gCOfc,2018.0,6,10,2019,Skyscraper,Life & Limb Scene,tt5758778 RtRffVRFz6M,2018.0,1,10,2019,Skyscraper,Brothers In Arms Scene,tt5758778 e_S58iPZYu8,2018.0,5,10,2019,Skyscraper,Elevator Escape Scene,tt5758778 S7A0JYPGklw,2018.0,9,10,2019,Skyscraper,Grenade Standoff Scene,tt5758778 VFWn3fpVdEk,2011.0,4,4,2019,A Very Harold & Kumar Christmas,Saving Santa Scene,tt1268799 6nrumyJrmZ8,2011.0,3,4,2019,A Very Harold & Kumar Christmas,They Serve Pancakes in Hell Scene,tt1268799 75EThT2il7k,2011.0,1,4,2019,A Very Harold & Kumar Christmas,Egg Attack Scene,tt1268799 JzJ0EVqZAzU,2011.0,2,4,2019,A Very Harold & Kumar Christmas,The Roldy Roll Scene,tt1268799 9YyC1Uq84v8,2013.0,1,9,2018,The Hangover Part III,Daddy's Funeral Scene,tt1951261 elmk8Hsbw_0,2013.0,5,9,2018,The Hangover Part III,We Love You Chow Scene,tt1951261 mkbZvLfg2Yg,2013.0,8,9,2018,The Hangover Part III,Somebody's Gotta Pay Scene,tt1951261 efkuXTpfxhc,2013.0,9,9,2018,The Hangover Part III,A Nice Gesture Scene,tt1951261 XsHBLhORcls,2013.0,6,9,2018,The Hangover Part III,Chow's Chickens Scene,tt1951261 lSmcbUFG-W4,2013.0,7,9,2018,The Hangover Part III,Colorblind Chow Scene,tt1951261 v4np7L0aJd0,2013.0,2,9,2018,The Hangover Part III,Alan's Intervention Scene,tt1951261 Bo8mRH33NCw,2013.0,4,9,2018,The Hangover Part III,Looking for Chow Scene,tt1951261 xPI7JdEPCP8,2013.0,3,9,2018,The Hangover Part III,Black Doug Scene,tt1951261 s55ay3OA1vE,2017.0,8,10,2018,That's Not Me,Cheating as My Sister Scene,tt4738802 QsY1JHFo9c0,2017.0,2,10,2018,That's Not Me,We're Only Interested In Your Sister Scene,tt4738802 EaizaMokSqI,2017.0,10,10,2018,That's Not Me,Tricked by My Sister Scene,tt4738802 urNeTIDRg6A,2017.0,6,10,2018,That's Not Me,Something Fishy Scene,tt4738802 KhOfO0lI9-E,2017.0,3,10,2018,That's Not Me,I Have to Let You Go Scene,tt4738802 EHqhCxcRkwc,2017.0,9,10,2018,That's Not Me,The Love Rhombus Scene,tt4738802 eEt5ebZFVWE,2017.0,7,10,2018,That's Not Me,Why Do You Do It? Scene,tt4738802 Wka1m7CSEro,2017.0,5,10,2018,That's Not Me,You're Not an Actor Scene,tt4738802 nFpK9Si2uUc,2017.0,1,10,2018,That's Not Me,Albino Love Scene,tt4738802 L5Ub_8HT6HE,2017.0,4,10,2018,That's Not Me,Never Use the C-Word Scene,tt4738802 tiu9_CUkGn0,2013.0,7,10,2018,The Director,The Women of Gucci Scene,tt2767266 pFmo1haIgtA,2013.0,1,10,2018,The Director,The Archives of Gucci Scene,tt2767266 PwBs-mLkZyo,2013.0,5,10,2018,The Director,China Represents the Future Scene,tt2767266 8bZMd3JUu0c,2013.0,6,10,2018,The Director,"Peace, Love, Gucci Scene",tt2767266 2WZkIK0cbLc,2013.0,2,10,2018,The Director,The Ultimate Souvenir Scene,tt2767266 rJ6wWIo3hFA,2013.0,8,10,2018,The Director,Gucci Seasonal Transition Scene,tt2767266 ubwNf0oYYZI,2013.0,10,10,2018,The Director,A Gucci Woman is Always an Evolution Scene,tt2767266 YlHQAbd3Pvc,2013.0,4,10,2018,The Director,Walking Like a Gucci Boy Scene,tt2767266 EqiDQxAatPQ,2013.0,3,10,2018,The Director,Famous Faces of Gucci Scene,tt2767266 0QNpXi4k5eU,2013.0,9,10,2018,The Director,This is a Family and a Job Scene,tt2767266 vJi3kGaAQfo,2018.0,10,10,2018,Breaking In,You Broke Into the Wrong House Scene,tt7137846 cycPu9OddzU,2018.0,2,10,2018,Breaking In,Hostile Negotiations Scene,tt7137846 F2V5i3EyRd4,2018.0,7,10,2018,Breaking In,Vengeful Hit and Run Scene,tt7137846 z5NuK6qTdBc,2018.0,8,10,2018,Breaking In,I Will Kill Your Husband Scene,tt7137846 e7qjmOp9G34,2018.0,6,10,2018,Breaking In,First Kill is the Hardest Scene,tt7137846 xUNy6fZy4WE,2018.0,5,10,2018,Breaking In,Capable of Killing a Man Scene,tt7137846 GbZZ2TDY5dA,2018.0,3,10,2018,Breaking In,Is This a Bad Time? Scene,tt7137846 yWGLNaCYevk,2018.0,4,10,2018,Breaking In,Hiding from Danger Scene,tt7137846 SpOd7BwzlMU,2018.0,1,10,2018,Breaking In,Strangled in the Dark Scene,tt7137846 -agdK2N5wX4,2018.0,9,10,2018,Breaking In,He Had It Coming Scene,tt7137846 oZ-BCSM4O8g,2017.0,6,8,2018,Outside In,Ted Apologizes Scene,tt7260048 Kc2Hv1tPMig,2017.0,5,8,2018,Outside In,I Have An Idea Scene,tt7260048 dye8cQvz0Kc,2017.0,3,8,2018,Outside In,Premature Evacuation Scene,tt7260048 zllKdwaYi50,2017.0,2,8,2018,Outside In,I Know You Love Me Scene,tt7260048 xWYBaNVEpVY,2017.0,8,8,2018,Outside In,I'm Free Now Scene,tt7260048 ZcO9A2DK_8o,2017.0,7,8,2018,Outside In,Mother & Daughter Reunion Scene,tt7260048 QId6ztQeHCI,2017.0,1,8,2018,Outside In,Together At Last Scene,tt7260048 TFfe7ZgIVUc,2017.0,4,8,2018,Outside In,A Very Unhappy Birthday Scene,tt7260048 jT09lgUTdFg,2015.0,6,10,2018,The Gallows,The Hallway Scene,tt2309260 kKH0IEVUhNw,2015.0,7,10,2018,The Gallows,Right Behind You Scene,tt2309260 sIGoScxocUY,2015.0,9,10,2018,The Gallows,The Hangman's Revenge Scene,tt2309260 D7LCHE4pTe0,2015.0,8,10,2018,The Gallows,Don't Look Scene,tt2309260 nBRbD7RKrK0,2015.0,1,10,2018,The Gallows,Freak Accident Scene,tt2309260 ACvjoLAtwnU,2015.0,4,10,2018,The Gallows,Show Me Something Scene,tt2309260 iwZzRrzGLfE,2015.0,2,10,2018,The Gallows,The Hangman's Target Scene,tt2309260 t6w2XWv2A7M,2015.0,3,10,2018,The Gallows,The Noose Scene,tt2309260 bCBpo6H97oY,2015.0,5,10,2018,The Gallows,There's Someone In Here Scene,tt2309260 WyqeTjEcUTk,2015.0,10,10,2018,The Gallows,Family Videos Scene,tt2309260 B41g0ZjS8M8,2017.0,6,9,2018,The Devil and Father Amorth,Exorcism Caught on Film Scene,tt6883152 1CjLSig2Hv0,2017.0,9,9,2018,The Devil and Father Amorth,Trapped With the Devil Scene,tt6883152 y-1iNc7NzNM,2017.0,4,9,2018,The Devil and Father Amorth,Thumbing His Nose at the Devil Scene,tt6883152 VKonjShA8Rg,2017.0,1,9,2018,The Devil and Father Amorth,The Inspiration for The Exorcist Scene,tt6883152 R5BlH8IPv9Y,2017.0,2,9,2018,The Devil and Father Amorth,She Crawled Like an Animal Scene,tt6883152 k6VGwPFIctQ,2017.0,5,9,2018,The Devil and Father Amorth,She Belongs to Us! Scene,tt6883152 yMo3ISSjYn4,2017.0,8,9,2018,The Devil and Father Amorth,The Power of Christ Scene,tt6883152 haeQVOcIyKY,2017.0,7,9,2018,The Devil and Father Amorth,This Is Your Brain on Satan Scene,tt6883152 DstF9Ge_6wI,2017.0,3,9,2018,The Devil and Father Amorth,Possessed by Satan Scene,tt6883152 sSu-nM25zqw,2016.0,9,10,2018,Ghosthunters,Henry's Deadly Plan Scene,tt5725894 8X5miLF1n5M,2016.0,3,10,2018,Ghosthunters,Poltergeist Kitchen Scene,tt5725894 ljifYuVnH1Y,-1.0,4,10,2018,Ghosthunters,The Killer's Office Scene,tt5725894 jz7WEh-DK0w,2017.0,5,10,2018,Ghosthunters,Ritual Killing Scene,tt5725894 Fdy2A4nbNik,2016.0,2,10,2018,Ghosthunters,Seeing a Ghost Scene,tt5725894 SCRZD2_Tkeo,2016.0,10,10,2018,Ghosthunters,Predator Becomes the Prey Scene,tt5725894 Ye3l05tkIcQ,2016.0,8,10,2018,Ghosthunters,The Killer Revealed Scene,tt5725894 zA1afZS6G_c,2016.0,6,10,2018,Ghosthunters,Human Meat Market Scene,tt5725894 gIig_bRnDz0,2016.0,1,10,2018,Ghosthunters,The Night Stalker Scene,tt5725894 MXcA1Ow7Lzw,2016.0,7,10,2018,Ghosthunters,What Are You Doing Here? Scene,tt5725894 lpBYHa7VDRk,1988.0,1,10,2018,Return of the Living Dead Part II,I Want Your Brains! Scene,tt0095990 XAa7RcPdE2U,1988.0,4,10,2018,Return of the Living Dead Part II,Zombie Head Scene,tt0095990 NqXxeZTvuYQ,1988.0,3,10,2018,Return of the Living Dead Part II,Worm Food Scene,tt0095990 dq_RCN3esGk,1988.0,6,10,2018,Return of the Living Dead Part II,Undead Road Rage Scene,tt0095990 SSQJIBb_9gw,1988.0,8,10,2018,Return of the Living Dead Part II,I'm Not Into Dead Guys Scene,tt0095990 7mPDafCQ5iQ,1988.0,7,10,2018,Return of the Living Dead Part II,Torso of the Damned Scene,tt0095990 eYCV5Zm4Ov0,1988.0,2,10,2018,Return of the Living Dead Part II,A Lively Graveyard Scene,tt0095990 xIsVK254RXU,1988.0,9,10,2018,Return of the Living Dead Part II,The Enemy's Already Dead Scene,tt0095990 zHqM-oKCPBY,1988.0,10,10,2018,Return of the Living Dead Part II,Electric Zombies Scene,tt0095990 4ozs0VI04xI,1988.0,5,10,2018,Return of the Living Dead Part II,My Son Isn't Feeling Well Scene,tt0095990 iMlCK0hr8Is,2017.0,4,9,2018,Tilt,Foul Play Suspected Scene,tt5435476 IW3rXhNFyVw,2017.0,8,9,2018,Tilt,Homeless Homicide Scene,tt5435476 oB1yULtM2Mw,2017.0,5,9,2018,Tilt,You Have To Step Up Scene,tt5435476 NGmtKz6HMkI,2017.0,3,9,2018,Tilt,Stray Slaying Scene,tt5435476 CB73lI-OjOE,2017.0,7,9,2018,Tilt,Something's Wrong With Me Scene,tt5435476 AZlZO5TT0wo,2017.0,6,9,2018,Tilt,Uncomfortable Interview Scene,tt5435476 xxoeXvIeZXQ,2017.0,2,9,2018,Tilt,Over The Cliff Scene,tt5435476 JXiJ7GS-9aA,2017.0,9,9,2018,Tilt,Bloodthirsty Babysitter Scene,tt5435476 -XnDw75Lp1Y,2017.0,1,9,2018,Tilt,Parenthood Nightmares Scene,tt5435476 H6ZNmRApuGw,2017.0,1,9,2018,Alien Convergence,Paraplegic Pilots Scene,tt6874406 PuUMs6fNGo0,2017.0,4,9,2018,Alien Convergence,The Monster Approaches Scene,tt6874406 DrOLHuvOMi0,2017.0,8,9,2018,Alien Convergence,Alien Retaliation Scene,tt6874406 JKJsu3JatYk,2017.0,5,9,2018,Alien Convergence,Precision Exercises Scene,tt6874406 YIqAz8SfE2M,2017.0,3,9,2018,Alien Convergence,The Alien's Lair Scene,tt6874406 HV_SMZR6gjg,2017.0,2,9,2018,Alien Convergence,Mysterious Flying Monster Scene,tt6874406 vaWlmr2BwuE,2017.0,7,9,2018,Alien Convergence,It's Not Dead Scene,tt6874406 uun8fsWOaeE,2017.0,6,9,2018,Alien Convergence,Alien Dogfight Scene,tt6874406 KZJetTa4DjQ,2016.0,9,9,2018,Alien Convergence,Taking Down the Alien Scene,tt6874406 80fHUAW_up0,1983.0,12,12,2018,Easy Money,Regular Guy Fashion Show Scene,tt0085470 L90uDzDbdV0,1983.0,3,12,2018,Easy Money,Jumping the Jockey Scene,tt0085470 jJ8rgMkWFWA,1983.0,2,12,2018,Easy Money,The Wedding Dress Scene,tt0085470 H1_mdoiwhBY,1983.0,1,12,2018,Easy Money,Who's the Big Birthday Girl? Scene,tt0085470 T7kklmGWLDk,1983.0,11,12,2018,Easy Money,Just Browsing Scene,tt0085470 V99QCtwXKsI,1983.0,7,12,2018,Easy Money,Julio and the Hedge Scene,tt0085470 DC3rYQXOTjA,1983.0,9,12,2018,Easy Money,Not So Stationary Bike Scene,tt0085470 vcw4b2U_0nU,1983.0,6,12,2018,Easy Money,Wedding Night-Mare Scene,tt0085470 nUpmxMzBCjk,1983.0,4,12,2018,Easy Money,The Wedding Cake Scene,tt0085470 TcaAWs46kog,1983.0,5,12,2018,Easy Money,I Always Cry at Weddings Scene,tt0085470 whFoAKQ10gY,1983.0,8,12,2018,Easy Money,That's Love! Scene,tt0085470 btMisVovQKk,1983.0,10,12,2018,Easy Money,Fat Little Bastard Scene,tt0085470 ULElX0fO5JE,2017.0,4,10,2018,The Fast and the Fierce,Paranoid Passengers Scene,tt6580394 2T01Xm19LJM,2017.0,3,10,2018,The Fast and the Fierce,Air Traffic Out of Control Scene,tt6580394 WcmGju9lzAY,2017.0,2,10,2018,The Fast and the Fierce,Flying Too Low Scene,tt6580394 1bKCN4B2g-g,2017.0,10,10,2018,The Fast and the Fierce,Welcome Home Scene,tt6580394 v2iOrjYQOHQ,2017.0,8,10,2018,The Fast and the Fierce,Thumb Drive to the Eye,tt6580394 9C5A-YyMLnY,2017.0,1,10,2018,The Fast and the Fierce,Prepare for Collision Scene Scene,tt6580394 V3JGZdiYwIg,2017.0,7,10,2018,The Fast and the Fierce,In-Flight Terror Scene,tt6580394 dHxPxFeI6GQ,2017.0,6,10,2018,The Fast and the Fierce,Mid-Air Rescue Scene,tt6580394 deth7hZBzxs,2017.0,9,10,2018,The Fast and the Fierce,In-Flight Fist Fight Scene,tt6580394 AUppZZuFnJI,2017.0,5,10,2018,The Fast and the Fierce,Extreme Turbulence Scene,tt6580394 mXgY4vnucPc,2014.0,3,10,2018,No No: A Dockumentary,Greenies Scene,tt3399112 yqvlrJQVAP4,2014.0,1,10,2018,No No: A Dockumentary,I Had the Acid in Me Scene,tt3399112 SndhPCSVtuc,2014.0,4,10,2018,No No: A Dockumentary,Two Brothers Against Each Other Scene,tt3399112 THmBqW0zLuY,2014.0,7,10,2018,No No: A Dockumentary,It Was a No-No Scene,tt3399112 s5F51a7xkiA,2014.0,5,10,2018,No No: A Dockumentary,Dock Ellis' Activism Scene,tt3399112 wIw19V0b390,2014.0,2,10,2018,No No: A Dockumentary,Hair Curlers Scene,tt3399112 E-OEyIQ12Mw,2014.0,6,10,2018,No No: A Dockumentary,The Pirates' All-Minority Lineup Scene,tt3399112 --UgPWRVt8A,2014.0,10,10,2018,No No: A Dockumentary,Remembering Dock Scene,tt3399112 rJv6bP5Lvao,2014.0,9,10,2018,No No: A Dockumentary,Passing On His Wisdom Scene,tt3399112 Jn23_pn6aAE,2014.0,8,10,2018,No No: A Dockumentary,Rehab and a Changed Man Scene,tt3399112 JkQzE831VM8,1967.0,8,8,2018,Cool Hand Luke,That Ol' Luke Smile Scene,tt0061512 Bzk_5Jzvxdk,1967.0,3,8,2018,Cool Hand Luke,Stay Down Scene,tt0061512 9T4kKk7zH34,1967.0,4,8,2018,Cool Hand Luke,Arletta Scene,tt0061512 SMaYCguBHAA,1967.0,5,8,2018,Cool Hand Luke,I Can Eat 50 Eggs Scene,tt0061512 cINFeXqwbDo,1967.0,2,8,2018,Cool Hand Luke,Car Wash Scene,tt0061512 _WUyZXhLHMk,1967.0,7,8,2018,Cool Hand Luke,Failure To Communicate Scene,tt0061512 k3oMPqUTxCE,1967.0,6,8,2018,Cool Hand Luke,Eating the Eggs Scene,tt0061512 qqhyIIZt87A,1967.0,1,8,2018,Cool Hand Luke,A Night in the Box Scene,tt0061512 PaqNqocHJ-o,2000.0,8,9,2018,Final Destination,Cheating Death Again Scene,tt0195714 klg2YuapPFY,2000.0,5,9,2018,Final Destination,Train Death Scene,tt0195714 weDQxJm9K-Y,2000.0,2,9,2018,Final Destination,Defying Death Scene,tt0195714 iU908ncV2q0,2000.0,9,9,2018,Final Destination,You're Still Next Scene,tt0195714 0p9Q6tDJJ1w,2000.0,4,9,2018,Final Destination,I'll See You Soon Scene,tt0195714 Uc0Cd3LErFs,2000.0,7,9,2018,Final Destination,Death in the Woods Scene,tt0195714 6HrTgWedKG0,2000.0,6,9,2018,Final Destination,100% Death Proof Scene,tt0195714 2ReEFgaq_9g,2000.0,1,9,2018,Final Destination,The Premonition Scene,tt0195714 8R0wW6GTMk4,2000.0,3,9,2018,Final Destination,Slippery When Wet Scene,tt0195714 Y5EkcuhBwiU,1982.0,4,10,2018,The Best Little Whorehouse in Texas,Watchdog Report Scene,tt0083642 gcPY3RIvtCw,1982.0,9,10,2018,The Best Little Whorehouse in Texas,Hard Candy Christmas Scene,tt0083642 Ad2-FiCzJxc,1982.0,2,10,2018,The Best Little Whorehouse in Texas,A Lil' Ole Bitty Pissant Country Place Scene,tt0083642 CkKUHwyFqJw,1982.0,1,10,2018,The Best Little Whorehouse in Texas,20 Fans Scene,tt0083642 MuIkmspTRo0,1982.0,6,10,2018,The Best Little Whorehouse in Texas,Courtyard Shag Scene,tt0083642 8O9FIRPJRXc,1982.0,5,10,2018,The Best Little Whorehouse in Texas,The Aggie Song Scene,tt0083642 iy-SmSGYYBM,1982.0,7,10,2018,The Best Little Whorehouse in Texas,Chicken Ranch Raid Scene,tt0083642 AALREbJZEZk,1982.0,8,10,2018,The Best Little Whorehouse in Texas,Sidestep Scene,tt0083642 0KjO3YwlhEE,1982.0,10,10,2018,The Best Little Whorehouse in Texas,I Will Always Love You Scene,tt0083642 wr5-v7rYg70,1982.0,3,10,2018,The Best Little Whorehouse in Texas,Sneakin' Around With You Scene,tt0083642 FgG9LDxHHv0,2017.0,1,8,2018,Us and Them,It's Called Class War Scene,tt8033592 Uu2u8T7tS9o,2017.0,2,8,2018,Us and Them,Confidence Man Scene,tt8033592 KD5-tY6m9Cw,2017.0,7,8,2018,Us and Them,Playing With Fire Scene,tt8033592 tt5BJlT7f6I,2017.0,3,8,2018,Us and Them,Let's a Play a Game Scene,tt8033592 6EAVY3gCWpY,2017.0,5,8,2018,Us and Them,Danny's Plan Scene,tt8033592 AURxtujY4MM,2017.0,4,8,2018,Us and Them,Downfall Of My Generation Scene,tt8033592 fJDl0RSPWBg,2017.0,8,8,2018,Us and Them,What Glen's Been Up To Scene,tt8033592 _H0EYJHeddU,2017.0,6,8,2018,Us and Them,It's A Fake Scene,tt8033592 IOUbfaHj2HU,1994.0,7,10,2018,Wes Craven's New Nightmare,A Familiar Slaughter Scene,tt0111686 V4SyBSgOIgM,1994.0,8,10,2018,Wes Craven's New Nightmare,Sleepwalking Nightmare Scene,tt0111686 JlvCQXYfOAI,1994.0,9,10,2018,Wes Craven's New Nightmare,The Demon's Lair Scene,tt0111686 dJltbkhK6-s,1994.0,3,10,2018,Wes Craven's New Nightmare,Funeral Nightmare Scene,tt0111686 _HcDe70cSRU,1994.0,1,10,2018,Wes Craven's New Nightmare,Animatronic Bloodbath Scene,tt0111686 ZOhpE4LjR5E,1994.0,2,10,2018,Wes Craven's New Nightmare,Giving the Driver a Hand Scene,tt0111686 TqRBV9xkrAU,1994.0,4,10,2018,Wes Craven's New Nightmare,Getting a Hand in Bed Scene,tt0111686 XTtjLtf_Tw8,1994.0,10,10,2018,Wes Craven's New Nightmare,"Die, Freddy, Die Scene",tt0111686 dShLedyR4eg,1994.0,5,10,2018,Wes Craven's New Nightmare,Miss Me? Scene,tt0111686 ZObhl67NCzQ,1995.0,6,10,2018,Wes Craven's New Nightmare,Dr. Freddy Scene,tt0111686 49rUb1-JaIM,1991.0,7,9,2018,Freddy's Dead: The Final Nightmare,I Am Forever Scene,tt0101917 S0_bjXPRlio,1991.0,5,9,2018,Freddy's Dead: The Final Nightmare,Grounded Scene,tt0101917 jorhoh0NNQI,1991.0,3,9,2018,Freddy's Dead: The Final Nightmare,Nice Hearing From You Scene,tt0101917 DgpMTfkui0w,1991.0,2,9,2018,Freddy's Dead: The Final Nightmare,Lend Me Your Ear Scene,tt0101917 1U146AYx6-M,1991.0,8,9,2018,Freddy's Dead: The Final Nightmare,Inside Freddy's Brain Scene,tt0101917 G7RTm-c2aXc,1991.0,6,9,2018,Freddy's Dead: The Final Nightmare,No Honey for Daddy? Scene,tt0101917 _RG4iCmljGE,1991.0,4,9,2018,Freddy's Dead: The Final Nightmare,Your Brain on Drugs Scene,tt0101917 gGz0wTHCHK4,1991.0,9,9,2018,Freddy's Dead: The Final Nightmare,"Happy Father's Day, Freddy Scene",tt0101917 sg-d9ZBsiWo,1991.0,1,9,2018,Freddy's Dead: The Final Nightmare,Bus to Hell Scene,tt0101917 Z0k-0HG4fR0,2006.0,4,10,2018,Snakes on a Plane,Sucking the Venom Scene,tt0417148 y7-LHFxFS8o,2006.0,2,10,2018,Snakes on a Plane,Snakes Attack! Scene,tt0417148 3U0EdULZGes,2006.0,1,10,2018,Snakes on a Plane,Snake in the Restroom Scene,tt0417148 h3-FAzeYut4,2006.0,7,10,2018,Snakes on a Plane,Python Attack Scene,tt0417148 UqXJc-VxorY,2006.0,8,10,2018,Snakes on a Plane,Power Up Scene,tt0417148 7pzz0eGQdyQ,2006.0,9,10,2018,Snakes on a Plane,I Have Had It! Scene,tt0417148 ws7Ve4mehqs,2006.0,10,10,2018,Snakes on a Plane,Rough Landing Scene,tt0417148 ov5KEgF0hgo,2006.0,6,10,2018,Snakes on a Plane,"No Pilot, Big Problem Scene",tt0417148 sbb9Re-KYlE,2006.0,5,10,2018,Snakes on a Plane,Snakes on Crack Scene,tt0417148 5nDwwq0ANPE,2006.0,3,10,2018,Snakes on a Plane,Who's Your Daddy Now? Scene,tt0417148 Ggnrvt77YOM,1991.0,7,10,2018,The Last Boy Scout,Can You Make Him Talk? Scene,tt0102266 QeTaNmnwFHo,1991.0,1,10,2018,The Last Boy Scout,How Was My Wife? Scene,tt0102266 2Zi7Y1-rgts,1991.0,6,10,2018,The Last Boy Scout,"Touch Me Again, I'll Kill Ya Scene",tt0102266 06MiYpKxjCY,1991.0,2,10,2018,The Last Boy Scout,Fifth Street Shootout Scene,tt0102266 wmBGdpkagEc,1991.0,9,10,2018,The Last Boy Scout,The Kind That Shred Scene,tt0102266 fdw_aFH3To4,1991.0,8,10,2018,The Last Boy Scout,Point and Shoot,tt0102266 N2Yk8EvrrBU,-1.0,10,10,2018,The Last Boy Scout,Joe Dances a Jig Scene,tt0102266 x91Nyuo55_c,1991.0,3,10,2018,The Last Boy Scout,Open the Trunk Scene,tt0102266 aWNJKbGrETo,1991.0,5,10,2018,The Last Boy Scout,Joe's Biggest Hero Scene,tt0102266 uKlIPUovwIc,1991.0,4,10,2018,The Last Boy Scout,Life Sucks Scene,tt0102266 w-nqMWvpzY8,2010.0,8,10,2018,The Book of Eli,Solara Makes a Stand Scene,tt1037705 eHj2IgKYofo,2010.0,6,10,2018,The Book of Eli,Saving Solara Scene,tt1037705 -6IX1nWqW3o,2010.0,5,10,2018,The Book of Eli,Street Shootout Scene,tt1037705 5qE52hylNT0,2010.0,3,10,2018,The Book of Eli,Bar Fight Sermon Scene,tt1037705 R_rN21oKxSE,2010.0,10,10,2018,The Book of Eli,Eli's Final Prayer Scene,tt1037705 Q-_wlz6jYSw,2010.0,1,10,2018,The Book of Eli,Getting Cat Food Scene,tt1037705 2bvUOFDgo_c,2010.0,2,10,2018,The Book of Eli,Silhouette Slaughter Scene,tt1037705 -7uYlaqkkzw,2010.0,4,10,2018,The Book of Eli,Hurting Mother Scene Scene,tt1037705 aRK4YcnTtIk,2010.0,7,10,2018,The Book of Eli,Pray for Me Scene Scene,tt1037705 Pv2MlxSgwv4,2010.0,9,10,2018,The Book of Eli,The Braille Bible Scene,tt1037705 q8NwQoVkAr0,2017.0,4,10,2018,Moto 9: The Movie,Wild Wally Palmer Scene,tt6231792 M1dWcUcCAgk,2017.0,9,10,2018,Moto 9: The Movie,The Amateur Motocross Championship Scene,tt6231792 dEAaneP7a3g,2017.0,6,10,2018,Moto 9: The Movie,Motocross In The Country Scene,tt6231792 gZE1B2zL1fg,2017.0,5,10,2018,Moto 9: The Movie,Christian Craig Scene,tt6231792 F0YzQbNdlpI,2017.0,2,10,2018,Moto 9: The Movie,Harry Bink's Motorcycle Tricks Scene,tt6231792 dWdQG4BEX3s,2017.0,1,10,2018,Moto 9: The Movie,Free Ride Scene,tt6231792 z4216EVIfdE,2017.0,10,10,2018,Moto 9: The Movie,AMA Pro Motocross Championship Scene,tt6231792 dwULCnXeEOA,2017.0,8,10,2018,Moto 9: The Movie,Carson Mumford Scene,tt6231792 RfGOwHvIyK8,2017.0,7,10,2018,Moto 9: The Movie,Ben Townley In New Zealand Scene,tt6231792 vtEw8hLJKzo,2017.0,3,10,2018,Moto 9: The Movie,First Ever Rock Solid Frontflip Scene,tt6231792 94pYLwdWTW0,2014.0,6,10,2018,Miffy the Movie,I Can Go Slow Too Scene,tt1690991 wgb4Fz7D7wI,2014.0,5,10,2018,Miffy the Movie,The Animal With Stripes Scene,tt1690991 PMFU8b_2cC0,2014.0,8,10,2018,Miffy the Movie,Camel Rides Scene,tt1690991 2dOsofLx6jc,2014.0,4,10,2018,Miffy the Movie,Grunty Saves the Day Scene,tt1690991 Ev2Z-YUO2f4,2014.0,7,10,2018,Miffy the Movie,The Monkey Dance Scene,tt1690991 bbtIanfT4oo,2014.0,10,10,2018,Miffy the Movie,I'm Happy to Say We Are Friends Scene,tt1690991 Ywn0PmxYgGo,2014.0,1,10,2018,Miffy the Movie,We're Going on a Treasure Hunt Scene,tt1690991 s_8zJYpN2mc,2014.0,3,10,2018,Miffy the Movie,When I Get Big Scene,tt1690991 8jfrU0a-Ayk,2014.0,9,10,2018,Miffy the Movie,Sing Hoo Hoo! Scene,tt1690991 aB6SfK9qD5Y,2014.0,2,10,2018,Miffy the Movie,Which Way? Scene,tt1690991 104odr4s7Yc,2008.0,6,10,2018,A Cat's Tale,Crazy Squirrels Scene,tt0842000 QrXSZJ3am_s,2008.0,8,10,2018,A Cat's Tale,Tag or Hide and Seek? Scene,tt0842000 71_zrDEkRc0,2008.0,10,10,2018,A Cat's Tale,Cats in Love Scene,tt0842000 szDAoChHbrQ,2008.0,9,10,2018,A Cat's Tale,Home is Where the Heart Is Scene,tt0842000 4Tu7_tAe2tk,2008.0,3,10,2018,A Cat's Tale,Kitty Hide and Seek Scene,tt0842000 SVtUDd2sBwE,2008.0,5,10,2018,A Cat's Tale,A Privileged Kitty Scene,tt0842000 2pOMv-jM5lU,2008.0,2,10,2018,A Cat's Tale,Beware the Cat-Napper Scene,tt0842000 H1sEkNAlW9w,2008.0,4,10,2018,A Cat's Tale,Cat vs. Dog Scene,tt0842000 u3E23a-SpF0,2008.0,1,10,2018,A Cat's Tale,Marchello Escapes Scene,tt0842000 gNdQdrKADh0,2008.0,7,10,2018,A Cat's Tale,Cat Fight! Scene,tt0842000 qYEOmZzqX28,2018.0,8,10,2018,Teen Titans GO! to the Movies,The End of Robin Scene,tt7424200 PitkS4aYur8,2018.0,3,10,2018,Teen Titans GO! to the Movies,"Deathstroke, NOT Deadpool Scene",tt7424200 GgBt0TlbwUY,2018.0,1,10,2018,Teen Titans GO! to the Movies,The Teen Titans Rap Scene,tt7424200 y4fdm5gdvnE,2018.0,4,10,2018,Teen Titans GO! to the Movies,This is an Inspirational Song Scene,tt7424200 NKhTArRP31Q,2018.0,6,10,2018,Teen Titans GO! to the Movies,Time Cycle Trouble Scene,tt7424200 7XBizI9jArU,2018.0,10,10,2018,Teen Titans GO! to the Movies,Fighting A Giant Robot Scene,tt7424200 qB93c2JU4uQ,2018.0,9,10,2018,Teen Titans GO! to the Movies,Justice League vs Teen Titans Scene,tt7424200 dnrJELv76n4,2018.0,2,10,2018,Teen Titans GO! to the Movies,Everybody Gets A Movie! Scene,tt7424200 VqAqUVcgQdE,2018.0,7,10,2018,Teen Titans GO! to the Movies,Slaying Slade Scene,tt7424200 hFfQhVgQU44,2018.0,5,10,2018,Teen Titans GO! to the Movies,My Super Hero Movie Scene,tt7424200 OYSVICsTq78,2018.0,4,8,2018,Jonathan,His First Time Scene,tt5639446 SEmSJCzcxyc,2018.0,6,8,2018,Jonathan,There Used to Be Three of Us Scene,tt5639446 O0PAT4-kuY4,2018.0,1,8,2018,Jonathan,You Have a Girlfriend Scene,tt5639446 Qulj96h_-W0,2018.0,3,8,2018,Jonathan,Single Body Multi-Consciousness Scene,tt5639446 cEyfq9j80Do,2018.0,2,8,2018,Jonathan,My Split Personality's Ex Scene,tt5639446 5-kt5Av0s2M,2018.0,7,8,2018,Jonathan,Cheating on Myself Scene,tt5639446 7Z3ccysbMwE,2018.0,5,8,2018,Jonathan,Waking up With Another Woman Scene,tt5639446 t3nm6EPiuyw,2018.0,8,8,2018,Jonathan,Have Me Removed Scene,tt5639446 IJnig4nc0xg,2017.0,3,10,2018,The Boss Baby,Tim vs. Baby Gang Scene,tt3874544 9WpO5zPo8Dg,2017.0,2,10,2018,The Boss Baby,New Baby Brother Scene,tt3874544 A_CGtuDwl-A,2017.0,8,10,2018,The Boss Baby,Catch that Baby! Scene,tt3874544 rxkB20Tpvx0,2017.0,1,10,2018,The Boss Baby,Where Babies Come From Scene,tt3874544 mIGCgzqFR0s,2017.0,4,10,2018,The Boss Baby,BabyCo Headquarters Scene,tt3874544 VbP7jMN_v-w,2017.0,7,10,2018,The Boss Baby,Baby Vomit Fountain Scene,tt3874544 UXldWskFeFY,2017.0,10,10,2018,The Boss Baby,A Family of My Own Scene,tt3874544 uNjrnjiEEY8,2017.0,5,10,2018,The Boss Baby,Brotherly Love Scene,tt3874544 prTlJO34AHE,2017.0,6,10,2018,The Boss Baby,Puppy Pants Scene,tt3874544 KjWPSq6-Ets,2017.0,9,10,2018,The Boss Baby,Saving Puppies and Parents Scene,tt3874544 dVLMfoIop9M,1967.0,6,10,2018,How to Succeed in Business Without Really Trying,Been a Long Day Scene,tt0061791 luF2eyiYlyE,1967.0,3,10,2018,How to Succeed in Business Without Really Trying,Mrs. Jones & Me Scene,tt0061791 LKJOXcFUSzc,1967.0,8,10,2018,How to Succeed in Business Without Really Trying,Rosemary Scene,tt0061791 1GbNS7IcCj0,1967.0,9,10,2018,How to Succeed in Business Without Really Trying,Big Presentation Scene,tt0061791 8FHO7Ry4_Jc,1967.0,4,10,2018,How to Succeed in Business Without Really Trying,The Boss's Wife Scene,tt0061791 SKC8iPeIvEA,1967.0,2,10,2018,How to Succeed in Business Without Really Trying,The Company Way Scene,tt0061791 uETwKF_fgKw,1967.0,5,10,2018,How to Succeed in Business Without Really Trying,A Secretary Is Not a Toy Scene,tt0061791 DhUcvFP_Tas,1967.0,10,10,2018,How to Succeed in Business Without Really Trying,Brotherhood of Man Scene,tt0061791 GwvrEz7vTZY,1967.0,7,10,2018,How to Succeed in Business Without Really Trying,I Believe In You Scene,tt0061791 NV9oKGj_CcU,1967.0,1,10,2018,How to Succeed in Business Without Really Trying,Working Girls Scene,tt0061791 UvSGGd3ewFI,2001.0,5,10,2018,Shrek,Rescuing Princess Fiona Scene,tt0126029 AxGXZOLn-U0,2001.0,6,10,2018,Shrek,Princess vs Merry Men Scene,tt0126029 iropsnsCEjA,2001.0,4,10,2018,Shrek,The Highest Room in the Tallest Tower Scene,tt0126029 em9lziI07M4,2001.0,1,10,2018,Shrek,An All-Star Ogre Opening Scene,tt0126029 mFl8nzZuExE,2001.0,2,10,2018,Shrek,Do You Know the Muffin Man? Scene,tt0126029 LSD1fq3xDA8,2001.0,9,10,2018,Shrek,True Love's True Kiss Scene,tt0126029 xvZRXcg4iS8,2001.0,7,10,2018,Shrek,Love in the Air Scene,tt0126029 aQqAUXKn7t4,2001.0,3,10,2018,Shrek,Kill the Ogre Scene,tt0126029 xURDJ-IW5YM,2001.0,8,10,2018,Shrek,Hallelujah Scene,tt0126029 a3bI7kbVBwM,2001.0,10,10,2018,Shrek,Now I'm a Believer Scene,tt0126029 f2FzrfnfQPY,2017.0,3,10,2018,Justice League,The Story of Steppenwolf Scene,tt0974015 9QJ2mqXdr5I,2017.0,1,10,2018,Justice League,Wonder Woman Saves London Scene,tt0974015 NC34ce5BkWQ,2017.0,10,10,2018,Justice League,The Fastest Man Alive Scene,tt0974015 CKc8xHhxP0Q,2017.0,8,10,2018,Justice League,Superman Returns Scene,tt0974015 JQOay4rjHas,2017.0,9,10,2018,Justice League,Final Crisis Scene,tt0974015 3sP7UMxhGYw,2017.0,5,10,2018,Justice League,Superman vs. the Scene,tt0974015 z79ikmr3JY8,2017.0,7,10,2018,Justice League,Superhero Team Up Scene,tt0974015 b3OlGLDk4pY,2017.0,4,10,2018,Justice League,Escaping the Tunnels Scene,tt0974015 f9Od8yx9gmg,2017.0,2,10,2018,Justice League,Amazons vs. Steppenwolf Scene,tt0974015 WXne2B_inx8,2017.0,6,10,2018,Justice League,Lasso of Truth Scene,tt0974015 CLxHRE-Knmc,2015.0,6,10,2018,San Andreas,San Francisco Skydive Scene,tt2126355 n4bsNkDyF2s,2015.0,7,10,2018,San Andreas,San Francisco Gets Destroyed Scene,tt2126355 2UPj8FTPaXg,2015.0,3,10,2018,San Andreas,Parking Garage Quake Scene,tt2126355 OfXLQt6B8v4,2015.0,9,10,2018,San Andreas,Not High Enough Scene,tt2126355 OqGw-1_vIWk,2015.0,1,10,2018,San Andreas,Helicopter Rescue Scene,tt2126355 Z-WSedqa5zA,2015.0,8,10,2018,San Andreas,Tsunami Hits the Bay Scene,tt2126355 fYbbxzLGpbI,2015.0,2,10,2018,San Andreas,Hoover Dam Destruction Scene,tt2126355 0ERIepJUdPc,2015.0,10,10,2018,San Andreas,Don't You Quit on Me Scene,tt2126355 xGon_kZAVtU,2015.0,4,10,2018,San Andreas,The Big One,tt2126355 NE6nLFq0eqc,2015.0,5,10,2018,San Andreas,Rooftop Rescue Scene,tt2126355 kPE7ZCGjw4o,2005.0,1,10,2018,Madagascar,Caught in Grand Central Station Scene,tt0351283 JaTAjmSppvA,2005.0,3,10,2018,Madagascar,Penguin Boat Takeover Scene,tt0351283 U1_VGnnMle8,2005.0,10,10,2018,Madagascar,A Spitting Toast to Alex Scene,tt0351283 FpekkNyDPcc,2005.0,7,10,2018,Madagascar,Alex Goes Crazy Scene,tt0351283 8ty1025m6XQ,2005.0,6,10,2018,Madagascar,Crying Mort Scene,tt0351283 rPuW7T25Yuw,2005.0,8,10,2018,Madagascar,What a Wonderful World Scene,tt0351283 CyJglP6k8lE,2005.0,9,10,2018,Madagascar,Penguins to the Rescue Scene,tt0351283 YoIcmX40-_s,2005.0,4,10,2018,Madagascar,On the Beach Scene,tt0351283 ApuFuuCJc3s,2005.0,5,10,2018,Madagascar,I Like to Move It Move It Scene,tt0351283 wV7vM4-FzJM,2005.0,2,10,2018,Madagascar,Shipped to Africa Scene,tt0351283 rHvCQEr_ETk,2008.0,10,10,2018,Kung Fu Panda,The True Secret Ingredient Scene,tt0441773 _7DVsN761n0,2008.0,4,10,2018,Kung Fu Panda,The Origin of Tai Lung Scene,tt0441773 AhbCYVILusc,2008.0,9,10,2018,Kung Fu Panda,Fight for the Dragon Scroll Scene,tt0441773 GQM4dSjjQuE,2008.0,8,10,2018,Kung Fu Panda,Tai Lung's Revenge Scene,tt0441773 Jy2_J5WCzDY,2008.0,7,10,2018,Kung Fu Panda,Our Battle Will Be Legendary! Scene,tt0441773 UsZNj9srzR8,2008.0,3,10,2018,Kung Fu Panda,Tai Lung's Escape Scene,tt0441773 zvY-EPgYB4Y,2008.0,6,10,2018,Kung Fu Panda,Kung Fu Training Scene,tt0441773 ihKHvNOTcwk,2008.0,2,10,2018,Kung Fu Panda,The Dragon Warrior Trials Scene,tt0441773 STqJ_Up4iFg,2008.0,1,10,2018,Kung Fu Panda,The Legendary Warrior Scene,tt0441773 0_1NU60qHWs,2008.0,5,10,2018,Kung Fu Panda,Impersonations at Dinner Scene,tt0441773 wMr2d10-xf0,2016.0,7,10,2018,Storks,Birds Can't See Glass Scene,tt4624424 kzZQYnvw-6E,2016.0,3,10,2018,Storks,Wolves Love Babies! Scene,tt4624424 ZPCSC8NM87k,2016.0,9,10,2018,Storks,One Million Babies Scene,tt4624424 9NTvToplMlw,2016.0,6,10,2018,Storks,Putting The Baby To Sleep Scene,tt4624424 bx_rua3EXFc,2016.0,10,10,2018,Storks,Boss Fight Scene,tt4624424 U6GY91u1I_c,2016.0,4,10,2018,Storks,Running From Wolves Scene,tt4624424 sCr9YZRDsJA,2016.0,1,10,2018,Storks,The Orphan Tulip Scene,tt4624424 uTUupV0ZfBk,2016.0,8,10,2018,Storks,Quiet Riot Penguins Scene,tt4624424 SQH8if7dbqw,2016.0,2,10,2018,Storks,The Baby Factory Scene,tt4624424 -pix6UL8ONk,2016.0,5,10,2018,Storks,Sing to Her Scene,tt4624424 LiODoFVKD40,2015.0,3,10,2018,Home,Bathroom Break Scene,tt1935859 Y-rxY2LxPI8,2015.0,10,10,2018,Home,The Lonely Gorg Scene,tt1935859 AD3baa_nijI,2015.0,5,10,2018,Home,Eiffel Tower Chase Scene,tt1935859 hMGHJFVuqpg,2015.0,9,10,2018,Home,Fixing My Mistakes Scene,tt1935859 rLVwKpyUwWI,2015.0,4,10,2018,Home,Boov Do Not Dancing Scene,tt1935859 kWHOafRR0Sk,2015.0,2,10,2018,Home,The Interrupting Cow Scene,tt1935859 Hiwu7Hu2hAs,2015.0,7,10,2018,Home,You Lied to Me! Scene,tt1935859 K8yA801TQVQ,2015.0,8,10,2018,Home,Tip Finds 'My Mom' Scene,tt1935859 fwZw8vujVMU,2015.0,6,10,2018,Home,The Gorg Attacks Scene,tt1935859 ykQ9g2HT2sU,2015.0,1,10,2018,Home,The Slushious Scene,tt1935859 8H_aePfIMzQ,1968.0,4,12,2018,"Yours, Mine and Ours",I Have Eight Children Scene,tt0063829 Uiqk92r4luQ,1968.0,5,12,2018,"Yours, Mine and Ours",Helen Loses Her Eyelash Scene,tt0063829 WbcZ3k4Mr6Q,1968.0,10,12,2018,"Yours, Mine and Ours",The Doctor Makes a House Call Scene,tt0063829 OGEfW_fV9ZI,1968.0,2,12,2018,"Yours, Mine and Ours",He Doesn't Know About Us? Scene,tt0063829 D93GR0PGUD0,1968.0,9,12,2018,"Yours, Mine and Ours",Firing Squad Marriage Scene,tt0063829 LiioO2L5ZA4,1968.0,3,12,2018,"Yours, Mine and Ours",A Teenybopper Dress Scene,tt0063829 mvH6IhKpehk,1968.0,7,12,2018,"Yours, Mine and Ours",Monkey in the Middle Scene,tt0063829 G5_nIhUCuhk,1968.0,8,12,2018,"Yours, Mine and Ours",Drunk Dinner Scene,tt0063829 x7S89GM5N7w,1968.0,12,12,2018,"Yours, Mine and Ours",What Love Really Is Scene,tt0063829 mkG2YdCogPY,1968.0,1,12,2018,"Yours, Mine and Ours",Widow and Widower Scene,tt0063829 ExsSDD8Lpsc,1968.0,11,12,2018,"Yours, Mine and Ours",Beardsley! Scene,tt0063829 cyUf4tLI53o,1968.0,6,12,2018,"Yours, Mine and Ours",I Have Ten Children Scene,tt0063829 gzbYTUXZkSI,2012.0,4,10,2018,Rise of the Guardians,The Sandman vs. Pitch Scene,tt1446192 BpnlB0ILpWw,2012.0,6,10,2018,Rise of the Guardians,Sentenced to Solitude Scene,tt1446192 lNVb-ZNIO-A,2012.0,10,10,2018,Rise of the Guardians,Dreams Come True Scene,tt1446192 Lgpg6frCrvw,2012.0,9,10,2018,Rise of the Guardians,Battling the Boogeyman Scene,tt1446192 vqPT1IbJrX8,2012.0,8,10,2018,Rise of the Guardians,Guardians Reassemble Scene,tt1446192 1OxDZKordaM,2012.0,1,10,2018,Rise of the Guardians,A New Guardian Scene,tt1446192 mpBQ883QIUs,2012.0,5,10,2018,Rise of the Guardians,Easter Egg Land Scene,tt1446192 z9uP9znP-mA,2012.0,2,10,2018,Rise of the Guardians,Everyone Loves the Sleigh Scene,tt1446192 fYVAGoTb8w4,2012.0,7,10,2018,Rise of the Guardians,The Origin of Jack Frost Scene,tt1446192 89RJwGDFpC4,2012.0,3,10,2018,Rise of the Guardians,Honorary Tooth Fairies Scene,tt1446192 _-9Pewr-JgY,1982.0,9,10,2018,Creepshow,Devouring Divorce Scene,tt0083767 jkZtAzrw3Q8,1982.0,6,10,2018,Creepshow,We're Already Dead Scene,tt0083767 L_nh3Rtyj-Y,1982.0,5,10,2018,Creepshow,The Lonesome Death of Jordy Verrill Scene,tt0083767 WMFxWlrpnLM,1982.0,2,10,2018,Creepshow,Joining the Family Cemetery Scene,tt0083767 intjK7aTbjs,1982.0,8,10,2018,Creepshow,The Beast Under the Stairs Scene,tt0083767 bJ09DFHWeXk,1982.0,3,10,2018,Creepshow,Grandpa is Back Scene,tt0083767 GOpFSBhGjuU,1982.0,4,10,2018,Creepshow,Happy Father's Day Scene,tt0083767 9E1ulvRRYFM,1982.0,1,10,2018,Creepshow,Where's My Cake? Scene,tt0083767 2LsMNs4hW1s,1982.0,10,10,2018,Creepshow,Death By Roaches Scene,tt0083767 WXeW1HiwAtE,1982.0,7,10,2018,Creepshow,The Crate Monster Scene,tt0083767 7nWfsF7ThLw,1982.0,6,12,2018,Death Wish II,Goodbye Scene,tt0082250 IGaJfcOD6gs,1982.0,10,12,2018,Death Wish II,Wrestling With the Police Scene,tt0082250 zH80pWTYSLg,1982.0,4,12,2018,Death Wish II,Fence Impalement Scene,tt0082250 A8xy9h5olhQ,1982.0,8,12,2018,Death Wish II,Tracking the Thugs Scene,tt0082250 duZLaW_6qLc,1982.0,7,12,2018,Death Wish II,A Very Good Citizen Scene,tt0082250 Yh03Vnp8pCk,1982.0,5,12,2018,Death Wish II,You Believe in Jesus? Scene,tt0082250 sbZB1drlKWI,1982.0,1,12,2018,Death Wish II,Where's My Wallet? Scene,tt0082250 vh-mdPoc92Y,1982.0,12,12,2018,Death Wish II,A Hair-Raising Conclusion Scene,tt0082250 Lw5Ss6z8IoM,1982.0,11,12,2018,Death Wish II,Will Ya Marry Me? Scene,tt0082250 L7FVtB7mKEU,1982.0,9,12,2018,Death Wish II,Showdown in the Park Scene,tt0082250 aDcfm_9GTyU,1982.0,3,12,2018,Death Wish II,Home Invasion Scene,tt0082250 RNPPrvhTKuc,1982.0,2,12,2018,Death Wish II,Break In Scene,tt0082250 LT9qOeKcL-o,2015.0,4,10,2018,No Control,The Reach Of Gun Violence Scene,tt3230934 _RsxXzFxqdg,2015.0,5,10,2018,No Control,Intro to Handguns Scene,tt3230934 ENmpNBFdwFQ,2015.0,1,10,2018,No Control,AR-15 Art Installation Scene,tt3230934 IGCJTr90IZk,2015.0,10,10,2018,No Control,Erasing Gun Violence Scene,tt3230934 ln_5-pRR-HQ,2015.0,7,10,2018,No Control,Colorado Gun Law Debate Scene,tt3230934 HexOzLEvLGA,2015.0,6,10,2018,No Control,The Erasers Scene,tt3230934 B1bYkou_mnY,2015.0,8,10,2018,No Control,What You Need To Feel Safe Scene,tt3230934 lsES3-QXzZQ,2015.0,3,10,2018,No Control,Gun Laws Pushback Scene,tt3230934 4o1x3FxQLf8,2015.0,2,10,2018,No Control,The Liberator Scene,tt3230934 L5jFIw9yBbA,2015.0,9,10,2018,No Control,The Grand Compromise Scene,tt3230934 wO4P6Yz_LZg,2003.0,2,11,2018,Bulletproof Monk,The Monk with No Name Disappears Scene,tt0245803 qqAzmt1d8kU,2003.0,9,11,2018,Bulletproof Monk,Sewer Fight Scene,tt0245803 VwlkxIN9tfQ,2003.0,11,11,2018,Bulletproof Monk,Bulletproof Too Scene,tt0245803 sVfuigRSl8g,2003.0,8,11,2018,Bulletproof Monk,Fighting and Flirting Scene,tt0245803 XT2IS2dn8gM,2003.0,6,11,2018,Bulletproof Monk,Mind Over Matter Scene,tt0245803 leSpIIaEblk,2003.0,5,11,2018,Bulletproof Monk,Chased in Chinatown Scene,tt0245803 ioE_djgs810,2003.0,7,11,2018,Bulletproof Monk,Attacked by Mercenaries Scene,tt0245803 LBm4aJ0ZcqY,2003.0,10,11,2018,Bulletproof Monk,Rooftop Rumble Scene,tt0245803 GW475l4IoyU,2003.0,4,11,2018,Bulletproof Monk,Kar Meets the Monk with No Name Scene,tt0245803 DHXHxop1gPw,2003.0,3,11,2018,Bulletproof Monk,Pipe Fight Scene,tt0245803 DtH30Cz2Zec,2003.0,1,11,2018,Bulletproof Monk,Rope Bridge Fight Scene,tt0245803 JNcNy7bJxDg,1966.0,3,10,2018,The Russians Are Coming! The Russians Are Coming!,Arnold Benedict Scene,tt0060921 MYErK-XLJv0,1966.0,9,10,2018,The Russians Are Coming! The Russians Are Coming!,Not Personal Scene,tt0060921 YmRuVv2V5Go,1966.0,4,10,2018,The Russians Are Coming! The Russians Are Coming!,Hanging Around Scene,tt0060921 1PRZi8t38OQ,1966.0,7,10,2018,The Russians Are Coming! The Russians Are Coming!,Trust the Enemy Scene,tt0060921 ILkyIHOOoq4,1966.0,2,10,2018,The Russians Are Coming! The Russians Are Coming!,Finding the Key Scene,tt0060921 VzXMcMcBwA8,1966.0,8,10,2018,The Russians Are Coming! The Russians Are Coming!,Down the Stairs Scene,tt0060921 ijBU9q7fb3U,1966.0,5,10,2018,The Russians Are Coming! The Russians Are Coming!,The Militia Scene,tt0060921 k3TpBfnaEmI,1966.0,10,10,2018,The Russians Are Coming! The Russians Are Coming!,Under Arrest Scene,tt0060921 PBHYbeg2nao,1966.0,1,10,2018,The Russians Are Coming! The Russians Are Coming!,The Norwegians Scene,tt0060921 jMqI9UV3ob4,1966.0,6,10,2018,The Russians Are Coming! The Russians Are Coming!,Got to Organize Scene,tt0060921 BrLcbi68R_A,1985.0,8,8,2018,A Chorus Line,One Scene,tt0088915 PahRJMVNho0,1985.0,5,8,2018,A Chorus Line,Let Me Dance for You Scene,tt0088915 4t7oXxFAlHM,1985.0,1,8,2018,A Chorus Line,I Hope I Get It Scene,tt0088915 FhsFZDrRvoM,1985.0,4,8,2018,A Chorus Line,"Dance: Ten, Looks: Three Scene",tt0088915 t1RkYJaG9bo,1985.0,3,8,2018,A Chorus Line,Nothing Scene,tt0088915 8TbUl9dhTRg,1985.0,7,8,2018,A Chorus Line,What I Did for Love Scene,tt0088915 7bCqTdKJPFo,1985.0,6,8,2018,A Chorus Line,Paul's First Job Scene,tt0088915 5Ehdu6XTlBc,1985.0,2,8,2018,A Chorus Line,I Can Do That Scene,tt0088915 ozkF8KRjeO8,1987.0,5,12,2018,Teen Wolf Too,The Wolf Comes Out Scene,tt0094118 ndpVsMLr424,1987.0,12,12,2018,Teen Wolf Too,Winning as a Man Scene,tt0094118 kFeduM49hBY,1987.0,11,12,2018,Teen Wolf Too,Todd Fights On Scene,tt0094118 xKYgXZQuqm8,1987.0,6,12,2018,Teen Wolf Too,The Werewolf Wins Scene,tt0094118 OflOQW_pkvc,1987.0,8,12,2018,Teen Wolf Too,Frog Fight! Scene,tt0094118 HavLrFJcqMs,1987.0,10,12,2018,Teen Wolf Too,You Don't Know Who You're Dealing With Scene,tt0094118 KgnrxjgHngA,1987.0,3,12,2018,Teen Wolf Too,Dancing With a Dog Scene,tt0094118 DYAdSce8Rd0,1987.0,4,12,2018,Teen Wolf Too,Ants in His Pants Scene,tt0094118 jTkt23CfSp4,1987.0,1,12,2018,Teen Wolf Too,Stiles's Plan Scene,tt0094118 ffknf2fIpiY,1987.0,9,12,2018,Teen Wolf Too,You've Become a Jerk Scene,tt0094118 95FV_p0Rivo,1987.0,2,12,2018,Teen Wolf Too,I'd Like to Change Classes Scene,tt0094118 fb-9_MV15I4,1987.0,7,12,2018,Teen Wolf Too,Todd Fetches a Frisbee Scene,tt0094118 eGtDmvtBZQY,2009.0,2,10,2018,Monsters vs. Aliens,Meet the Monsters Scene,tt0892782 eoREjwjeH30,2009.0,6,10,2018,Monsters vs. Aliens,Captured by Aliens Scene,tt0892782 tLXNDzc-2fA,2009.0,3,10,2018,Monsters vs. Aliens,First Contact Scene,tt0892782 nmaCobIvt2w,2009.0,9,10,2018,Monsters vs. Aliens,Doctor Of Dance Scene,tt0892782 JcC5XdvOWWM,2009.0,8,10,2018,Monsters vs. Aliens,Destroy All Monsters! Scene,tt0892782 BTJ-smMan7Y,2009.0,5,10,2018,Monsters vs. Aliens,Golden Gate Grapple Scene,tt0892782 XF5omSq8eRQ,2009.0,10,10,2018,Monsters vs. Aliens,Go Big Or Go Home Scene,tt0892782 XcgNkFuPBV8,2009.0,1,10,2018,Monsters vs. Aliens,The Bride's Big Day Scene,tt0892782 ETu553EnTJM,2009.0,7,10,2018,Monsters vs. Aliens,Alien Clones Scene,tt0892782 pjF6bofXAvQ,2009.0,4,10,2018,Monsters vs. Aliens,The Monster Files Scene,tt0892782 UciEIYZ-Eos,2017.0,3,10,2018,Captain Underpants: The First Epic Movie,The Saturday Song Scene,tt2091256 evQcKvkQCl0,2017.0,7,10,2018,Captain Underpants: The First Epic Movie,The Fart Symphony Scene,tt2091256 lGuivq-6xrw,2017.0,9,10,2018,Captain Underpants: The First Epic Movie,End of Laughter Scene,tt2091256 uzTuGHYRJ9w,2017.0,2,10,2018,Captain Underpants: The First Epic Movie,School Pranks Scene,tt2091256 kv-hhf-kPkw,2017.0,8,10,2018,Captain Underpants: The First Epic Movie,The School Fair Scene,tt2091256 rilZTyv9RLo,2017.0,1,10,2018,Captain Underpants: The First Epic Movie,The Origin Story Scene,tt2091256 grwlYBNyMk4,2017.0,10,10,2018,Captain Underpants: The First Epic Movie,Saving the Day Scene,tt2091256 dSdY41CWixQ,2017.0,5,10,2018,Captain Underpants: The First Epic Movie,The Real-Life Hero Scene,tt2091256 u-eTCyG0jpA,2017.0,6,10,2018,Captain Underpants: The First Epic Movie,Stop That Gorilla! Scene,tt2091256 7wZdMPB-O6Y,2017.0,4,10,2018,Captain Underpants: The First Epic Movie,Our World is Destroyed Scene,tt2091256 L_l2ii_25tc,1968.0,10,12,2018,Chitty Chitty Bang Bang,Music Box Dance Scene,tt0062803 kBErrmmqnkI,1968.0,11,12,2018,Chitty Chitty Bang Bang,Freeing the Children Scene,tt0062803 yuU4pFcEgWo,1968.0,12,12,2018,Chitty Chitty Bang Bang,Capturing the Baron and Baroness Scene,tt0062803 oY0spjrKFdM,1968.0,1,12,2018,Chitty Chitty Bang Bang,You Two Scene,tt0062803 LehcJeNbFBw,1968.0,8,12,2018,Chitty Chitty Bang Bang,The Child Catcher Scene,tt0062803 SUr7fu-LXj4,1968.0,4,12,2018,Chitty Chitty Bang Bang,Me Ol' Bam-Boo Scene,tt0062803 go4K4rCFjMQ,1968.0,6,12,2018,Chitty Chitty Bang Bang,Truly Scrumptious Scene,tt0062803 aak6BqNR150,1968.0,9,12,2018,Chitty Chitty Bang Bang,Chu-Chi Face Scene,tt0062803 f1bk5a_jaEA,1968.0,2,12,2018,Chitty Chitty Bang Bang,Toot Sweets Scene,tt0062803 Wuer3mLqIxc,1968.0,7,12,2018,Chitty Chitty Bang Bang,Chitty Gets Airborne Scene,tt0062803 YfdRr7MWax4,1968.0,3,12,2018,Chitty Chitty Bang Bang,Hushabye Mountain Scene,tt0062803 1lt4euqZLsY,1968.0,5,12,2018,Chitty Chitty Bang Bang,Scene,tt0062803 YSfBTZfswSg,2014.0,6,10,2018,How to Train Your Dragon 2,Alpha Battle Scene,tt1646971 6_eBGV71X0w,2014.0,4,10,2018,How to Train Your Dragon 2,The Land Of Dragons Scene,tt1646971 IvFBobchMoc,2014.0,10,10,2018,How to Train Your Dragon 2,Toothless vs. The Bewilderbeast Scene,tt1646971 TiJBxtM5iKw,2014.0,1,10,2018,How to Train Your Dragon 2,The Wingsuit Scene,tt1646971 awuqJuO5WOc,2014.0,3,10,2018,How to Train Your Dragon 2,A Mother Never Forgets Scene,tt1646971 DBUXGB_L5q8,2014.0,5,10,2018,How to Train Your Dragon 2,Drago Attacks! Scene,tt1646971 pDjY4qorZrg,2014.0,2,10,2018,How to Train Your Dragon 2,Dragon Trappers Scene,tt1646971 PMjbPEGDJ7w,2014.0,7,10,2018,How to Train Your Dragon 2,Evil Toothless Scene,tt1646971 S-EfnfP_cGY,2014.0,8,10,2018,How to Train Your Dragon 2,"Goodbye, Father Scene",tt1646971 07kluxoO8j8,2014.0,9,10,2018,How to Train Your Dragon 2,Rescuing Toothless Scene,tt1646971 jFQUE_6Zhn0,2010.0,3,10,2018,How to Train Your Dragon,A New Tail Scene,tt0892769 Up7TU2t7_8g,2010.0,9,10,2018,How to Train Your Dragon,Dragon vs. Dragon Scene,tt0892769 VvNX7pOAK58,2010.0,8,10,2018,How to Train Your Dragon,The Red Death Dragon Scene,tt0892769 2iD5pPwbDJ8,2010.0,6,10,2018,How to Train Your Dragon,Going For A Ride Scene,tt0892769 aFnS18LM8Ws,2010.0,7,10,2018,How to Train Your Dragon,Hiccup's Final Test Scene,tt0892769 ZDyEERuK31Y,2010.0,5,10,2018,How to Train Your Dragon,Learning To Fly Scene,tt0892769 Vv9KJYUnVvA,2010.0,2,10,2018,How to Train Your Dragon,Dinner With A Dragon Scene,tt0892769 T5KjTcbQVMs,2010.0,10,10,2018,How to Train Your Dragon,We Have Dragons Scene,tt0892769 c95YKkIbTGg,2010.0,1,10,2018,How to Train Your Dragon,Freeing The Night Fury Scene,tt0892769 yHjejU3HvRE,2010.0,4,10,2018,How to Train Your Dragon,Training Tips Scene,tt0892769 8m3HqHIpcWU,2018.0,8,10,2018,Superfly,Necessary Violence Scene,tt7690670 CUnezbuG4fo,2018.0,5,10,2018,Superfly,You Started a War Scene,tt7690670 Kekb8jHfDxI,2018.0,9,10,2018,Superfly,Fighting Fire With Fire Scene,tt7690670 ysLBlalu91s,2018.0,6,10,2018,Superfly,Crooked Cops Scene,tt7690670 GaIcAaHFc0U,2018.0,1,10,2018,Superfly,Where's My Money? Scene,tt7690670 nIW73heJdg4,2018.0,7,10,2018,Superfly,Don't Touch Me Again Scene,tt7690670 KBCL6GBurNw,2018.0,2,10,2018,Superfly,Drugs and Jiu-Jitsu Scene,tt7690670 9svQ60inP0g,2018.0,10,10,2018,Superfly,No Honor Among Drug Dealers Scene,tt7690670 EOavA469Z24,2018.0,4,10,2018,Superfly,Sky High Scene,tt7690670 -npMZStX7dU,2018.0,3,10,2018,Superfly,Barbershop Hit Scene,tt7690670 F70EkgLs4DM,1971.0,9,9,2018,Shaft,to the Rescue Scene,tt0067741 dxzktMx1jbY,1971.0,4,9,2018,Shaft,Don't Jive Me Scene,tt0067741 hfNlv4HLZ5k,1971.0,8,9,2018,Shaft,She's Our Ace Scene,tt0067741 up1wTd5shfc,1971.0,6,9,2018,Shaft,My Name is John Scene,tt0067741 IBRkROD4KAU,1971.0,5,9,2018,Shaft,"You Got Problems, Baby? Scene",tt0067741 dzabuGq1wIE,1971.0,3,9,2018,Shaft,You Ain't So Black Scene,tt0067741 94k4a1GI9rY,1971.0,1,9,2018,Shaft,Where You Going? Scene,tt0067741 uo6yyV0N7y4,1971.0,2,9,2018,Shaft,Bumpy Sent Us Scene,tt0067741 UaCGeQifvdo,1971.0,7,9,2018,Shaft,Close It Yourself Scene,tt0067741 ikqLKMZ86d8,1988.0,7,12,2018,I'm Gonna Git You Sucka,Cherry Surprise Scene,tt0095348 EzRtOVxgKCI,1988.0,12,12,2018,I'm Gonna Git You Sucka,Jack's Booboo Scene,tt0095348 uhDhzHrffBQ,1988.0,6,12,2018,I'm Gonna Git You Sucka,Trained for Combat Scene,tt0095348 fJlJX4Rj_WU,1988.0,11,12,2018,I'm Gonna Git You Sucka,Kung Fu Joe Gets Pulled Over Scene,tt0095348 38jXOaoZQZI,1988.0,2,12,2018,I'm Gonna Git You Sucka,Ma Protects the Homefront Scene,tt0095348 TjvHy-IYET8,1988.0,1,12,2018,I'm Gonna Git You Sucka,OG: Over Gold Scene,tt0095348 Hb8I1My6zOM,1988.0,10,12,2018,I'm Gonna Git You Sucka,Cramps! Scene,tt0095348 LJl8SSI8MHA,1988.0,5,12,2018,I'm Gonna Git You Sucka,Ma Brings It Scene,tt0095348 NJNAE_e-gM0,1988.0,4,12,2018,I'm Gonna Git You Sucka,Youth Gang Competition Scene,tt0095348 4MbRVVP6rPg,1988.0,3,12,2018,I'm Gonna Git You Sucka,Mr. Big Scene,tt0095348 tgHcYxKjwVE,1988.0,8,12,2018,I'm Gonna Git You Sucka,One Rib! Scene,tt0095348 4CVFOnmW6v8,1988.0,9,12,2018,I'm Gonna Git You Sucka,Pimp of the Year Scene,tt0095348 SiwL_3yOWRM,1994.0,1,10,2018,The Shawshank Redemption,Andy Meets Red Scene,tt0111161 U_74PjS1Epk,1994.0,5,10,2018,The Shawshank Redemption,Brooks Was Here Scene,tt0111161 HT4kxxCpWYM,1994.0,8,10,2018,The Shawshank Redemption,I Just Miss My Friend Scene,tt0111161 9UE8ospTDgA,1994.0,4,10,2018,The Shawshank Redemption,Institutionalized Scene,tt0111161 s0ADj-PzbF0,1994.0,9,10,2018,The Shawshank Redemption,Red's Parole Hearing Scene,tt0111161 -nCYpOC-Gtk,1994.0,3,10,2018,The Shawshank Redemption,The Sisters Scene,tt0111161 aP22KbKvaMg,1994.0,2,10,2018,The Shawshank Redemption,Tax Advice Scene,tt0111161 wMu4IBsX--I,1994.0,6,10,2018,The Shawshank Redemption,Get Busy Living or Get Busy Dying Scene,tt0111161 k1jq4jHNYpg,1994.0,10,10,2018,The Shawshank Redemption,Hope is a Good Thing Scene,tt0111161 fR-2fk_qusE,1994.0,7,10,2018,The Shawshank Redemption,Andy Escapes Scene,tt0111161 AWi8x9ctlps,1958.0,7,9,2018,The Defiant Ones,Afraid of Catching My Color? Scene,tt0051525 MFmLZibi7DE,1958.0,9,9,2018,The Defiant Ones,Chasing the Train Scene,tt0051525 BN77UGYk5tg,1958.0,5,9,2018,The Defiant Ones,"You Can't Go Lynching Me, I'm a White Man Scene",tt0051525 wpQ4R1jlFHs,1958.0,8,9,2018,The Defiant Ones,You Don't Even Know My Name Scene,tt0051525 sgB8cpEi_zU,1958.0,3,9,2018,The Defiant Ones,Trapped in the Quarry Scene,tt0051525 XPKzmSSQ2xk,1958.0,4,9,2018,The Defiant Ones,I Been Mad All My Natural Life Scene,tt0051525 KGV-R-dVuGA,1958.0,1,9,2018,The Defiant Ones,North vs. South Scene,tt0051525 e8EAVtsvfxc,1958.0,6,9,2018,The Defiant Ones,I'm Lettin' Ya Loose Scene,tt0051525 uqVEYJGg3J0,1958.0,2,9,2018,The Defiant Ones,Words That Stick Like Needles Scene,tt0051525 X0vQQA32UAs,2003.0,7,11,2018,Out of Time,Battle on the Balcony Scene,tt0313443 XNZRK35VNrk,2003.0,10,11,2018,Out of Time,At the Old Boat Scene,tt0313443 S99xKAAo43k,2003.0,2,11,2018,Out of Time,Prowler in the Neighborhood Scene,tt0313443 yiPqxnLMKbs,2003.0,4,11,2018,Out of Time,Ann's Flowers Scene,tt0313443 Lh3y_KLTwWc,2003.0,6,11,2018,Out of Time,Fax Tampering Scene,tt0313443 INrZ0l5JbrA,2003.0,8,11,2018,Out of Time,Double Identity Scene,tt0313443 zpsNG-exYxE,2003.0,5,11,2018,Out of Time,The Usual Suspect Scene,tt0313443 WNAjVd38Q1E,2003.0,3,11,2018,Out of Time,I'm Banging Your Wife Scene,tt0313443 H-Mr-QmgheY,2003.0,11,11,2018,Out of Time,Don't Shoot Me Scene,tt0313443 0g2o-CfakW0,2003.0,1,11,2018,Out of Time,Scene of the Crime Scene,tt0313443 m3qnMx_kA2A,2003.0,9,11,2018,Out of Time,Ann's Lie Scene,tt0313443 P3WCkLjKW-k,1984.0,9,10,2018,A Nightmare on Elm Street,Don't Fear Freddy Scene,tt0087800 cl3sud_uDhc,1984.0,4,10,2018,A Nightmare on Elm Street,Not Just a Dream Scene,tt0087800 rSAWPBO-ewA,1984.0,2,10,2018,A Nightmare on Elm Street,Boiler Room Terror Scene,tt0087800 0OqXqd_s0ho,1984.0,6,10,2018,A Nightmare on Elm Street,Glen's Bloody Death Scene,tt0087800 Tf9j5763-Gc,1984.0,3,10,2018,A Nightmare on Elm Street,Bathtime with Freddy Scene,tt0087800 aaGgRabJ0NI,1984.0,5,10,2018,A Nightmare on Elm Street,Suicidal Sleep Scene,tt0087800 HcrTqof683A,1984.0,1,10,2018,A Nightmare on Elm Street,Tina's Nightmare Scene,tt0087800 mD5CrAC4LPI,1984.0,10,10,2018,A Nightmare on Elm Street,Nightmare Never Ends Scene,tt0087800 5aegHe2iS8w,1984.0,7,10,2018,A Nightmare on Elm Street,Back to Fight Freddy Scene,tt0087800 S0hTkEECANg,1984.0,8,10,2018,A Nightmare on Elm Street,Trapping Freddy Scene,tt0087800 vq0OqfmArnY,1985.0,5,12,2018,Remo Williams: The Adventure Begins,You Rely on What You Know Scene,tt0089901 1V4SU2_-Ppg,1985.0,2,12,2018,Remo Williams: The Adventure Begins,Fighting Chiun Scene,tt0089901 upoh7LbKZR0,1985.0,3,12,2018,Remo Williams: The Adventure Begins,Breathe Scene,tt0089901 HcGpEScyT5o,1985.0,6,12,2018,Remo Williams: The Adventure Begins,Ferris Wheel Training Scene,tt0089901 2Q0IkYxSo3w,1985.0,4,12,2018,Remo Williams: The Adventure Begins,Korean Fingerboard Scene,tt0089901 JmSmZRCl6A4,1985.0,12,12,2018,Remo Williams: The Adventure Begins,Walking on Water Scene,tt0089901 ROXLPqlbJck,1985.0,1,12,2018,Remo Williams: The Adventure Begins,Pushed Into the River Scene,tt0089901 kbpdM9ORaI8,1985.0,7,12,2018,Remo Williams: The Adventure Begins,Elevator Attack! Scene,tt0089901 3NRVJdoihjY,1985.0,11,12,2018,Remo Williams: The Adventure Begins,Explode and Walk Away Scene,tt0089901 qwwLKFCR4K0,1985.0,8,12,2018,Remo Williams: The Adventure Begins,Wet Cement Scene,tt0089901 ZTsUO_9AT20,1985.0,9,12,2018,Remo Williams: The Adventure Begins,Glasshole Scene,tt0089901 5OkvZ-y_dgI,1985.0,10,12,2018,Remo Williams: The Adventure Begins,Log Attack Scene,tt0089901 43OVm86-4rU,2018.0,10,10,2018,Hotel Transylvania 3,DJ Battle Scene,tt5220122 U9WHLcpvVz0,2018.0,7,10,2018,Hotel Transylvania 3,Welcome To Atlantis Scene,tt5220122 L2inhzv1Rs8,2018.0,6,10,2018,Hotel Transylvania 3,Dracula's Date Scene,tt5220122 Z4kBo6FO8bc,2018.0,2,10,2018,Hotel Transylvania 3,Care to Dance? Scene,tt5220122 IAaXyDc1gjk,2018.0,3,10,2018,Hotel Transylvania 3,Dracula Zings Scene,tt5220122 9oS260wm-UM,2018.0,4,10,2018,Hotel Transylvania 3,Everybody in the Pool Scene,tt5220122 OjDuQ7O9XUo,2018.0,9,10,2018,Hotel Transylvania 3,Dracula vs. the Kraken Scene,tt5220122 NM0WEaC8LcQ,2018.0,5,10,2018,Hotel Transylvania 3,Monsters Under the Sea Scene,tt5220122 bC0vGFJbMjo,2018.0,8,10,2018,Hotel Transylvania 3,A Dangerous Dance Scene,tt5220122 vM7QMLTm1so,2018.0,1,10,2018,Hotel Transylvania 3,Vanquishing Van Helsing Scene,tt5220122 a8cviBPaWJ0,2010.0,2,9,2018,A Nightmare on Elm Street,Sleeping in Class Scene,tt1179056 rvpFERo3ZnA,2010.0,4,9,2018,A Nightmare on Elm Street,Jesse's Prison Nightmare Scene,tt1179056 Q2-Jg_2l1FA,2010.0,6,9,2018,A Nightmare on Elm Street,The Death of Fred Krueger Scene,tt1179056 PQ3Qc8bOqlY,2010.0,5,9,2018,A Nightmare on Elm Street,Bathtime Terror Scene,tt1179056 uycL6ws3vMc,2010.0,1,9,2018,A Nightmare on Elm Street,They're Just Dreams Scene,tt1179056 e2Cuc3oHb4U,2010.0,8,9,2018,A Nightmare on Elm Street,Wet Dream Scene,tt1179056 q4feCJ__GwI,2010.0,9,9,2018,A Nightmare on Elm Street,You're in My World Now Scene,tt1179056 vMzDPwqnJfw,2010.0,7,9,2018,A Nightmare on Elm Street,I'm Real Scene,tt1179056 Tp5Q4AyqFOM,2010.0,3,9,2018,A Nightmare on Elm Street,Kris's Dream Scene,tt1179056 qlfI_AppyIk,2018.0,1,10,2018,Truth or Dare,The Truth of The Game Scene,tt6772950 2dvchK48Z-o,2018.0,8,10,2018,Truth or Dare,Olivia's Darkest Secret Scene,tt6772950 ftDkeswkEYU,2018.0,4,10,2018,Truth or Dare,Living Life On The Edge Scene,tt6772950 P6c_kQL3ZdU,2018.0,5,10,2018,Truth or Dare,Dare You to Kill Scene,tt6772950 EAd7cMSm4Ng,2018.0,10,10,2018,Truth or Dare,The Game Goes Viral Scene,tt6772950 DGW436DH8Yw,2018.0,3,10,2018,Truth or Dare,The Pen is Mightier Scene,tt6772950 p07sXB8H3zQ,2018.0,2,10,2018,Truth or Dare,A Real Bad Break Scene,tt6772950 eMHv9pPuDiI,2018.0,9,10,2018,Truth or Dare,Cut Out Your Tongue! Scene,tt6772950 FgUKDQA1qFg,2018.0,7,10,2018,Truth or Dare,Taking a Cop's Gun Scene,tt6772950 9WQJxS6-2iI,2018.0,6,10,2018,Truth or Dare,Dirty Decision Scene,tt6772950 Tazw08OZpwU,2016.0,2,10,2018,Blair Witch,A Bit Irritated Scene,tt1540011 37O1H9YiBJo,2016.0,3,10,2018,Blair Witch,The Sun Isn't Coming Up Scene,tt1540011 5XZcn9qR5SE,2016.0,7,10,2018,Blair Witch,Have to Do What She Tells You Scene,tt1540011 UP6UWl1Y1-Q,2016.0,1,10,2018,Blair Witch,Lore Scene,tt1540011 pVqOcGEbZvo,2016.0,9,10,2018,Blair Witch,Chased by the Witch Scene,tt1540011 LJ8UoUA2_uE,2016.0,10,10,2018,Blair Witch,Don't Look At It Scene,tt1540011 wyHOKleZzFM,2016.0,4,10,2018,Blair Witch,The Group Finally Snaps Scene,tt1540011 sf2RRCNlz38,2016.0,8,10,2018,Blair Witch,The Tunnel Scene,tt1540011 bmBh8DSdcnU,2016.0,6,10,2018,Blair Witch,"Looking for Heather, Finding Hell Scene",tt1540011 e80zdJ6pWlI,2016.0,5,10,2018,Blair Witch,Caught in a Tree Scene,tt1540011 HYctFVhe2Rc,2016.0,9,10,2018,Star Trek Beyond,Yorktown Chase Scene,tt2660888 5PaUTnk9k9Y,2016.0,8,10,2018,Star Trek Beyond,Sabotage Scene,tt2660888 qu68Gym5PvE,2016.0,7,10,2018,Star Trek Beyond,Jump Beacon Scene,tt2660888 e5LZR3vCkzo,2016.0,6,10,2018,Star Trek Beyond,Prisoner Rescue Scene,tt2660888 Q4KRYWe3ngs,2016.0,4,10,2018,Star Trek Beyond,The Deadly Jaylah Scene,tt2660888 mtsQ0CR4Z28,2016.0,2,10,2018,Star Trek Beyond,Destruction of the Enterprise Scene,tt2660888 ssgm3-sCY-Y,2016.0,3,10,2018,Star Trek Beyond,Abandon Ship Scene,tt2660888 Ff20ZDSj7d8,-1.0,10,10,2018,Star Trek Beyond,Kirk Against Krall Scene,tt2660888 YRpgfi7L9Rs,2016.0,1,10,2018,Star Trek Beyond,The Peace Offering Scene,tt2660888 nvldRH4OC_k,2016.0,5,10,2018,Star Trek Beyond,Thruster Run Scene,tt2660888 2AmY_TaUh8M,1978.0,2,10,2018,Superman,Outrunning a Train Scene,tt0078346 bfKu5Jc8TjA,1978.0,4,10,2018,Superman,Super Rescue Scene,tt0078346 YwnX8My7428,1978.0,1,10,2018,Superman,Escape From Krypton Scene,tt0078346 ju9K6nk07iE,1978.0,5,10,2018,Superman,Flying with Lois Scene,tt0078346 Ov6nBKuu6pI,1978.0,7,10,2018,Superman,Saving Scene,tt0078346 TZyl-21DgPo,1978.0,6,10,2018,Superman,Kryptonite Necklace Scene,tt0078346 LoCaeI5RffI,1978.0,10,10,2018,Superman,Turning Back Time Scene,tt0078346 nprJvYKz3QQ,1978.0,3,10,2018,Superman,Faster Than a Speeding Bullet Scene,tt0078346 3gSOZW-vNFk,1978.0,9,10,2018,Superman,The Death of Lois Lane Scene,tt0078346 3oIQCt6GVcY,1978.0,8,10,2018,Superman,West Coast Chaos Scene,tt0078346 CRjB5ImoHXk,1995.0,6,6,2018,Outbreak,You'll Have to Take Us Out Scene,tt0114069 HaK75RHhEEw,1995.0,2,6,2018,Outbreak,People Are Dying Scene,tt0114069 Z6cRw6CU7l0,1995.0,4,6,2018,Outbreak,The Carrier of Death Scene,tt0114069 MZq_z08pLqI,1995.0,5,6,2018,Outbreak,Helicopter Chase Scene,tt0114069 pW-ZHlM3RxI,1995.0,1,6,2018,Outbreak,Your Morbid Desire Scene,tt0114069 HRkSVkOdXcU,1995.0,3,6,2018,Outbreak,The Virus is Airborne Scene,tt0114069 a2H-pXAgx6s,1987.0,9,9,2018,Burglar,I'm Pissed at You Scene,tt0092710 ZUmTlIUmbmE,1987.0,4,9,2018,Burglar,Cops at the Door Scene,tt0092710 76dXe1ePSrQ,1987.0,5,9,2018,Burglar,Interrogating the Insane Scene,tt0092710 MnosttqGIfw,1987.0,8,9,2018,Burglar,I Know You Killed Him Scene,tt0092710 PjPEnXNEX_E,1987.0,3,9,2018,Burglar,Trapped in the Closet Scene,tt0092710 a3GgzkKvBVY,1987.0,1,9,2018,Burglar,Never Steal From Me Scene,tt0092710 SBIpGdJA_5Q,1987.0,7,9,2018,Burglar,An Aggressive Delivery Man Scene,tt0092710 _bUaFRyP80A,1987.0,6,9,2018,Burglar,Don't Want to Upset You Scene,tt0092710 -DXQJLwDAwg,1987.0,2,9,2018,Burglar,A Dentist With an Offer Scene,tt0092710 T4wxOGDv980,1991.0,10,10,2018,New Jack City,I'm Not Guilty Scene,tt0102526 RQUwqHaBuOk,1991.0,4,10,2018,New Jack City,Nino Makes Change Scene,tt0102526 3jYu-qta0mU,1991.0,6,10,2018,New Jack City,Wedding Shootout Scene,tt0102526 b6WK3MwYFSk,1991.0,3,10,2018,New Jack City,This Crack's Got Me Scene,tt0102526 D6OAWdqi-s0,1991.0,2,10,2018,New Jack City,Finding Pookie Scene,tt0102526 4dNwoRFjOkQ,1991.0,5,10,2018,New Jack City,Killing Your Own People Scene,tt0102526 7SybWD4iYMA,1991.0,7,10,2018,New Jack City,Cops vs. CMB Scene,tt0102526 wstckFfu1z4,1991.0,9,10,2018,New Jack City,I Wanna Shoot You So Bad Scene,tt0102526 taGt2UqFdm0,1991.0,1,10,2018,New Jack City,The Carter Scene,tt0102526 K4lTsRzlorA,1991.0,8,10,2018,New Jack City,My Brother's Keeper Scene,tt0102526 _3v30bJGaCg,1993.0,1,8,2018,Boiling Point,He Never Had a Chance Scene,tt0106455 ExvYKH9z-9A,1993.0,6,8,2018,Boiling Point,Tell Us What You Know Scene,tt0106455 ku4GcEUQ0TA,1993.0,8,8,2018,Boiling Point,He's Got a Gun Scene,tt0106455 b4kRHpvisxE,1993.0,4,8,2018,Boiling Point,So Do We Talk or What? Scene,tt0106455 OTp5qNMBuRY,1993.0,5,8,2018,Boiling Point,Sounds Fair Enough Scene,tt0106455 K0QjNiVA6NU,1993.0,2,8,2018,Boiling Point,Seven Days Scene,tt0106455 LunIbcmUQtE,1993.0,7,8,2018,Boiling Point,One Last Job Scene,tt0106455 lx420G7IDnE,1993.0,3,8,2018,Boiling Point,I Ain't Saying a Thing Scene,tt0106455 fZrN9LabLQQ,2016.0,10,11,2018,Gods of Egypt,To Protect My People Scene,tt2404233 X_4WgfjyOyg,2016.0,3,11,2018,Gods of Egypt,Stealing Horus's Eye Scene,tt2404233 VJW2e8_cIfw,2016.0,2,11,2018,Gods of Egypt,You're Not Fit to Be King Scene,tt2404233 dp2MR9fswWk,2016.0,6,11,2018,Gods of Egypt,The God of Wisdom Scene,tt2404233 r9ae_frgcpU,2016.0,1,11,2018,Gods of Egypt,Bow Before Me or Die Scene,tt2404233 uOHMPcGgInI,2016.0,5,11,2018,Gods of Egypt,The Goddess & The Giant Snakes Scene,tt2404233 TfbuiIc3pME,2016.0,11,11,2018,Gods of Egypt,Horus vs. Set Scene,tt2404233 fKpKz3dysY0,2016.0,8,11,2018,Gods of Egypt,I'm Not Just One God Scene,tt2404233 kDDU-k-5v6s,2016.0,4,11,2018,Gods of Egypt,Minotaur Attack Scene,tt2404233 CUYNZo-8cDM,2016.0,7,11,2018,Gods of Egypt,The Riddle of the Sphinx Scene,tt2404233 89OqkIyNnfQ,2016.0,9,11,2018,Gods of Egypt,The Battle for Mankind Begins Scene,tt2404233 GewQTlvA_3Y,1992.0,2,6,2018,Final Analysis,A Loaded Gun Scene,tt0104265 tVubEM2oUj4,1992.0,3,6,2018,Final Analysis,A Reason Scene,tt0104265 tr2hYRUEkHk,1992.0,1,6,2018,Final Analysis,Meeting Heather Scene,tt0104265 SriHCm7dhyw,1992.0,5,6,2018,Final Analysis,Why'd You Do It? Scene,tt0104265 RxLb-Iqyqps,1992.0,6,6,2018,Final Analysis,The Butterfly Scene,tt0104265 Tvmzk3Ce8-s,1992.0,4,6,2018,Final Analysis,Was That a Look? Scene,tt0104265 OxLmmTv6CTs,2016.0,11,11,2018,Now You See Me 2,An Eye For An Eye Scene,tt3110958 DQU7X4QDX80,2016.0,9,11,2018,Now You See Me 2,Controlling the Rain Scene,tt3110958 LoG_2u-0rWo,2016.0,8,11,2018,Now You See Me 2,Magic Combat Scene,tt3110958 Dr6eV4y0atg,2016.0,5,11,2018,Now You See Me 2,Sibling Rivalry Scene,tt3110958 CWS1CWSAmjs,2016.0,3,11,2018,Now You See Me 2,The Big Reveal Scene,tt3110958 vRUQ_q5mivc,2016.0,10,11,2018,Now You See Me 2,Happy New Year! Scene,tt3110958 3IVugy6dK3E,2016.0,7,11,2018,Now You See Me 2,Hidden Card Heist Scene,tt3110958 KEc0SGkBDJ4,2016.0,1,11,2018,Now You See Me 2,Introducing Lula Scene,tt3110958 _uwVIMdk7hc,2016.0,4,11,2018,Now You See Me 2,So Happy to Be Working With You Scene,tt3110958 5ve2E8iEbSQ,2016.0,2,11,2018,Now You See Me 2,Listen to Your Own Voice Scene,tt3110958 YmGBAiHnK0U,2016.0,6,11,2018,Now You See Me 2,Disappearing Card Trick Scene,tt3110958 4N-rVUkv-lw,1991.0,5,9,2018,Guilty by Suspicion,Are You Alright? Scene,tt0101984 nA3-p6SeWtc,1991.0,7,9,2018,Guilty by Suspicion,Fired on Set Scene,tt0101984 XlS3PKbK2Wc,1991.0,8,9,2018,Guilty by Suspicion,Un-American Activities Committee Scene,tt0101984 Qdgk7Q1dn34,1991.0,6,9,2018,Guilty by Suspicion,It's Not in the Script Scene,tt0101984 oNySP0X32eI,1991.0,9,9,2018,Guilty by Suspicion,Is Your Wife a Communist? Scene,tt0101984 AeM2PgL5hm0,1991.0,2,9,2018,Guilty by Suspicion,A Scared Loyal American Scene,tt0101984 F67qzjMABFQ,1991.0,3,9,2018,Guilty by Suspicion,A Communist Sympathizer Scene,tt0101984 Wn73_KG11Wo,1991.0,1,9,2018,Guilty by Suspicion,Don't Make Me Do This Scene,tt0101984 3ND0jZIthFo,1991.0,4,9,2018,Guilty by Suspicion,You Think I'd Name You? Scene,tt0101984 xe6kO-SJYCk,2011.0,1,6,2018,The Hangover Part II,Alan's Toast Scene,tt1411697 Fb1v9LGaZ1w,2011.0,3,6,2018,The Hangover Part II,Monk Beatdown Scene,tt1411697 yxOMkjGIZYI,2011.0,2,6,2018,The Hangover Part II,He's Dead! Scene,tt1411697 kgd0wuSVHXo,2011.0,4,6,2018,The Hangover Part II,Phil Gets Shot Scene,tt1411697 b_SJOg2q3PM,2011.0,5,6,2018,The Hangover Part II,They Shot the Monkey! Scene,tt1411697 D0yfau4bAXM,2011.0,6,6,2018,The Hangover Part II,"Gotcha, Leslie Scene",tt1411697 XMt98-MEWmw,2009.0,2,10,2018,The Hangover,"Checking In, Wimping Out Scene",tt1119646 daULewxdD8w,2009.0,1,10,2018,The Hangover,Immature Friends Scene,tt1119646 JZCM0ZW-GMw,2009.0,6,10,2018,The Hangover,Stun Gun Demonstration Scene,tt1119646 Hl1mw0-APy8,2009.0,3,10,2018,The Hangover,The Wolf Pack Scene,tt1119646 G-lDaFtb7eE,2009.0,7,10,2018,The Hangover,Tyson's Still Got It Scene,tt1119646 h4Zho4DUcXw,2009.0,4,10,2018,The Hangover,The Morning After Scene,tt1119646 znjpkKX6bek,2009.0,5,10,2018,The Hangover,You Got Married! Scene,tt1119646 DdNfSuTpDbA,2009.0,8,10,2018,The Hangover,What Do Tigers Dream Of? Scene,tt1119646 sIbYUg1FKK4,2009.0,10,10,2018,The Hangover,The Wedding Reception Scene,tt1119646 u_6tnXDfxBo,2009.0,9,10,2018,The Hangover,The Wrong Doug Scene,tt1119646 AUbfGwY4Fco,2018.0,3,10,2018,Sicario: Day of the Soldado,No Rules Today Scene,tt5052474 ch_JeDyNaFM,2018.0,6,10,2018,Sicario: Day of the Soldado,Police Escort Shootout Scene,tt5052474 HXubLg3o3qY,2018.0,4,10,2018,Sicario: Day of the Soldado,War on Everyone Scene,tt5052474 eMyuRmZNaTk,2018.0,10,10,2018,Sicario: Day of the Soldado,A Single Grenade Scene,tt5052474 YOUt-qq-snc,2018.0,2,10,2018,Sicario: Day of the Soldado,Night Raid Scene,tt5052474 gA0u3Iir0CU,2018.0,7,10,2018,Sicario: Day of the Soldado,Racing to the Border Scene,tt5052474 xVWAp3OLYTM,2018.0,8,10,2018,Sicario: Day of the Soldado,The End of Alejandro Scene,tt5052474 99wezqewopU,2018.0,1,10,2018,Sicario: Day of the Soldado,Border Bombing Scene,tt5052474 uvZImlL51Io,2018.0,9,10,2018,Sicario: Day of the Soldado,Kill 'Em All Scene,tt5052474 6hT5xOszncI,2018.0,5,10,2018,Sicario: Day of the Soldado,Cartel Kidnapping Scene,tt5052474 otlsrvaxpdE,1995.0,3,10,2018,Assassins,Taxi Ride Scene,tt0112401 Tpz4Dl8focY,1995.0,9,10,2018,Assassins,No Way to Talk to a Lady Scene,tt0112401 infMR62l_dc,1995.0,2,10,2018,Assassins,Officers Down Scene,tt0112401 D0p6abBHjZU,1995.0,6,10,2018,Assassins,Waiting in the Balcony Scene,tt0112401 6MaOE8YiJy8,1995.0,5,10,2018,Assassins,Happy Birthday Shootout Scene,tt0112401 pK35em6gl0Q,1995.0,7,10,2018,Assassins,Who Can You Trust? Scene,tt0112401 wbROoMNi8Ho,1995.0,4,10,2018,Assassins,Kill Her Scene,tt0112401 FOXEyMTnekU,1995.0,1,10,2018,Assassins,Cemetery Shootout Scene,tt0112401 howhfMAoEt0,1995.0,10,10,2018,Assassins,Number One Scene,tt0112401 TZXt5K8U_HM,1995.0,8,10,2018,Assassins,Step Outside Scene,tt0112401 elR_OgHND1c,1994.0,2,10,2018,The Specialist,The First Bomb Scene,tt0111255 RGaBXM3EHUo,1994.0,7,10,2018,The Specialist,How Did I Look? Scene,tt0111255 B9SkWFyq-EQ,1994.0,1,10,2018,The Specialist,That Seat's Taken Scene,tt0111255 g4BV-MbeTjM,1994.0,9,10,2018,The Specialist,Crabs Scene,tt0111255 uraQr7J0Tlw,1994.0,3,10,2018,The Specialist,Craziest Person You'll Ever Meet Scene,tt0111255 NqWsINBcm2o,1994.0,6,10,2018,The Specialist,"No Mercy, No Loyalty, No Code Scene",tt0111255 D6XNq3CrDBU,1994.0,4,10,2018,The Specialist,Car Bomb Scene,tt0111255 PJ0NkZgbrUw,1994.0,10,10,2018,The Specialist,Total Destruction Scene,tt0111255 HOePjj-M63Y,1994.0,8,10,2018,The Specialist,You Set Me Up Scene,tt0111255 c82FD6lh2LQ,1994.0,5,10,2018,The Specialist,Poolside Explosion Scene,tt0111255 lp1s4-tc2U0,2018.0,2,10,2018,Pacific Rim Uprising,The Rogue Jaeger Scene,tt2557478 1qYVJgixc3U,2018.0,7,10,2018,Pacific Rim Uprising,Giant Monsters Attack Japan Scene,tt2557478 E9pB6_WUR-U,2018.0,3,10,2018,Pacific Rim Uprising,Jaeger vs. Jaeger Scene,tt2557478 O7jHiw8IyxQ,2018.0,5,10,2018,Pacific Rim Uprising,Kaiju Killswitch Scene,tt2557478 j66Fsl_q5Ig,2018.0,1,10,2018,Pacific Rim Uprising,Scrapper's Wild Ride Scene,tt2557478 4KkCEjawUHM,2018.0,8,10,2018,Pacific Rim Uprising,King Kaiju Scene,tt2557478 DtV4RnADOeA,2018.0,9,10,2018,Pacific Rim Uprising,Mega-Kaiju Violence Scene,tt2557478 U22aGOTlIy8,2018.0,10,10,2018,Pacific Rim Uprising,Operation Jaeger Drop Scene,tt2557478 836dGO4v65I,2018.0,4,10,2018,Pacific Rim Uprising,Mutant Mech Massacre Scene,tt2557478 4sNyWmYN-rM,2018.0,6,10,2018,Pacific Rim Uprising,The Inspirational Speech Scene,tt2557478 t5GdZx7AS-E,2016.0,8,10,2018,The Divergent Series: Allegiant,Peter's Mistake Scene,tt3410834 6O_dprt5rts,2016.0,7,10,2018,The Divergent Series: Allegiant,Drone Fight Scene,tt3410834 pwSkfvXD_ug,2016.0,3,10,2018,The Divergent Series: Allegiant,Into the Fringe Scene,tt3410834 mmH76155CuU,2016.0,4,10,2018,The Divergent Series: Allegiant,Four Fights Back Scene,tt3410834 I9r1j1ZKBYk,2016.0,10,10,2018,The Divergent Series: Allegiant,A Message from Tris Scene,tt3410834 FlQd5p9_XvY,2016.0,1,10,2018,The Divergent Series: Allegiant,Over the Wall Scene,tt3410834 tlSscKeO9Cc,2016.0,6,10,2018,The Divergent Series: Allegiant,Stealing the Hovercraft Scene,tt3410834 Q7--4JW6y6E,2016.0,2,10,2018,The Divergent Series: Allegiant,Welcome to the Future Scene,tt3410834 Drt2w_iit1M,2016.0,5,10,2018,The Divergent Series: Allegiant,The Memory Serum Scene,tt3410834 Vn5WazNB5sU,2016.0,9,10,2018,The Divergent Series: Allegiant,It's Over Scene,tt3410834 oXGJeQDRuxE,2002.0,6,6,2018,Friday After Next,Money Mike Loses His Grip Scene,tt0293815 REWaiDiKDIE,2018.0,7,10,2018,Blockers,The Best Coach Ever Scene,tt2531344 Qc-E0u_1Ei4,2018.0,5,10,2018,Blockers,The Fast & The Vomitous Scene,tt2531344 QzcXi2irovs,2018.0,2,10,2018,Blockers,Prom Parents Scene,tt2531344 V9RhgEHIxkI,2018.0,3,10,2018,Blockers,Peeping Parents Scene,tt2531344 RgPuswoKZtw,2018.0,10,10,2018,Blockers,Women Amongst Girls Scene,tt2531344 NizLAsFlvww,2018.0,6,10,2018,Blockers,Breaking & Fondling Scene,tt2531344 x3OTeacsT84,2018.0,9,10,2018,Blockers,"Dad, I'm a Lesbian Scene",tt2531344 ZvGaiZMBOOI,2018.0,8,10,2018,Blockers,Daughter's First Time Scene,tt2531344 Eu1EfSDUKFg,2018.0,1,10,2018,Blockers,Explaining Sex Emojis Scene,tt2531344 TfsGgp4go6k,2018.0,4,10,2018,Blockers,Butt Chug Scene,tt2531344 A7a7RtpKzYY,2002.0,3,6,2018,Friday After Next,Craig Meets Donna Scene,tt0293815 XUnfvueexSk,2002.0,2,6,2018,Friday After Next,Top Flight Security Scene,tt0293815 TRgkvisG4yg,2002.0,5,6,2018,Friday After Next,We Are Not In Prison Scene,tt0293815 D4E8UpMb8SI,2002.0,1,6,2018,Friday After Next,OG Triple OG Scene,tt0293815 xNSWp7Hb5tU,2002.0,4,6,2018,Friday After Next,Money Mike Got Robbed Scene,tt0293815 nma6daFY6b0,2016.0,6,10,2018,Jack Reacher: Never Go Back,Warehouse Fight Scene,tt3393786 3Blk7Vo0abY,2016.0,1,10,2018,Jack Reacher: Never Go Back,I'd Just Kill You Scene,tt3393786 mfCwgYR1yS8,2016.0,10,10,2018,Jack Reacher: Never Go Back,Reacher's Revenge Scene,tt3393786 kjLqB63ihJE,2016.0,3,10,2018,Jack Reacher: Never Go Back,Prison Break Scene,tt3393786 6R3tTi_m8VQ,2016.0,9,10,2018,Jack Reacher: Never Go Back,My Life for Hers Scene,tt3393786 jk2mjuWhQ_0,2016.0,8,10,2018,Jack Reacher: Never Go Back,Arrest Him Scene,tt3393786 KkBUMdYMw-8,2016.0,7,10,2018,Jack Reacher: Never Go Back,Heavily Armed Rescue Scene,tt3393786 rrWLFKZafAc,2016.0,4,10,2018,Jack Reacher: Never Go Back,Kitchen Combat Scene,tt3393786 vYm_2A_cg0Y,2016.0,5,10,2018,Jack Reacher: Never Go Back,Flight Fight Scene,tt3393786 jF6JN1VSpmY,2016.0,2,10,2018,Jack Reacher: Never Go Back,Don't Like to Be Followed Scene,tt3393786 YkfEc-PYJ8A,2012.0,4,10,2018,Jack Reacher,The Zec Scene,tt0790724 9g5pe-B6uL8,2012.0,1,10,2018,Jack Reacher,Sniper Shooting Scene,tt0790724 PxuQ1n3xaRQ,2012.0,10,10,2018,Jack Reacher,Reacher vs. Charlie Scene,tt0790724 nXrsB2RMo2w,2012.0,8,10,2018,Jack Reacher,The Shooting Range Scene,tt0790724 mySMw3VkEBE,2012.0,9,10,2018,Jack Reacher,I Am Not a Hero Scene,tt0790724 cgLMSMIU124,2012.0,5,10,2018,Jack Reacher,Bathroom Brawl Scene,tt0790724 lfeYgfKa2cY,2012.0,6,10,2018,Jack Reacher,1970 Chevelle Chase Scene,tt0790724 ILbn3iOiOiU,2012.0,7,10,2018,Jack Reacher,Lost in the Crowd Scene,tt0790724 5U8scp5J9Is,2012.0,3,10,2018,Jack Reacher,5 Against 1 Scene,tt0790724 h8Rxb-9snJQ,2012.0,2,10,2018,Jack Reacher,He Called Me a Hooker Scene,tt0790724 hhmPqQpJWks,2005.0,3,6,2018,Miss Congeniality 2: Armed and Fabulous,Positive Role Model Scene,tt0385307 FQH9s2dJe50,2005.0,4,6,2018,Miss Congeniality 2: Armed and Fabulous,World Peace Scene,tt0385307 1etjTR5wYhU,2005.0,6,6,2018,Miss Congeniality 2: Armed and Fabulous,You're Gracie Hart! Scene,tt0385307 Hi93mYJyO8I,2005.0,1,6,2018,Miss Congeniality 2: Armed and Fabulous,Live with Regis Scene,tt0385307 c0N60xOU9yk,2005.0,2,6,2018,Miss Congeniality 2: Armed and Fabulous,Loving the Sluts Scene,tt0385307 H6Y2GNQfNo4,2005.0,5,6,2018,Miss Congeniality 2: Armed and Fabulous,You Work for Me Scene,tt0385307 CaG_6UWfyLE,2010.0,2,6,2018,Life as We Know It,Surprise Visit Scene,tt1055292 0SNckpLgK_Q,2010.0,6,6,2018,Life as We Know It,I Was Scared Scene,tt1055292 gvANfpQnohw,2010.0,5,6,2018,Life as We Know It,Worst Timing Scene,tt1055292 _ICXfAWaISQ,2010.0,1,6,2018,Life as We Know It,Poopfaced Scene,tt1055292 2DCjXk4qpLo,2010.0,3,6,2018,Life as We Know It,The Messer Magic Scene,tt1055292 _O8yGbcFmc4,2010.0,4,6,2018,Life as We Know It,Motorcycle Crash Scene,tt1055292 9QwQbE5Eu-I,2010.0,6,7,2018,Going the Distance,Long Distance Love Scene,tt1322312 FYZrWswLpu0,2010.0,7,7,2018,Going the Distance,I'll Cut Your Balls Off Scene,tt1322312 yceziOf95-0,2010.0,1,7,2018,Going the Distance,Can I Get Your Drink Order? Scene,tt1322312 3QoYCS0iOq4,2010.0,2,7,2018,Going the Distance,I'm Crazy About You Scene,tt1322312 WEvTEdLLa2s,2010.0,5,7,2018,Going the Distance,In the Marriage Trenches Scene,tt1322312 9Ro2O9YAkAo,2010.0,4,7,2018,Going the Distance,The Mustache Time Machine Scene,tt1322312 dJhNjpuc9eo,2010.0,3,7,2018,Going the Distance,Dry Humping Scene,tt1322312 Hj7OFElSIlM,2007.0,4,9,2018,In the Land of Women,Awake to Life Scene,tt0419843 XSX3JKL0DpU,2007.0,5,9,2018,In the Land of Women,Awkward Encounter Scene,tt0419843 Rf161T4RyxA,2007.0,7,9,2018,In the Land of Women,Kiss in the Rain Scene,tt0419843 GwtcfnmV68I,2007.0,1,9,2018,In the Land of Women,Hi Grandma Scene,tt0419843 l17e0M4TTBA,2007.0,3,9,2018,In the Land of Women,Real Love Scene,tt0419843 8ZSuFOPBDmI,2007.0,8,9,2018,In the Land of Women,"A Big, Messy World Scene",tt0419843 JhMO7RA7-VI,2007.0,9,9,2018,In the Land of Women,Keep Loving You Scene,tt0419843 WCM5kknf5nI,2007.0,2,9,2018,In the Land of Women,A Great Listener Scene,tt0419843 F8q-K4BTbEk,2007.0,6,9,2018,In the Land of Women,John Hughes Stuff Scene,tt0419843 AEBd24_Uxfk,2015.0,2,10,2018,Terminator Genisys,Come With Me Scene,tt1340138 wXLFg03in2U,2015.0,9,10,2018,Terminator Genisys,John Connor vs. The Terminator Scene,tt1340138 5Le4OlAvuME,2015.0,5,10,2018,Terminator Genisys,John Connor 2.0 Scene,tt1340138 XGoagkYcJ38,2015.0,10,10,2018,Terminator Genisys,Pop's Sacrifice Scene,tt1340138 LTfMvliqiGk,2015.0,4,10,2018,Terminator Genisys,Killing the T-1000 Scene,tt1340138 y5vxDOma1Ok,2015.0,6,10,2018,Terminator Genisys,Taking Down the T-3000 Scene,tt1340138 NBYfDP0IO18,2015.0,7,10,2018,Terminator Genisys,Golden Gate Chase Scene,tt1340138 RtxMw4sua3Q,2015.0,8,10,2018,Terminator Genisys,I'll Be Back Scene,tt1340138 C9rUREflwDI,2015.0,3,10,2018,Terminator Genisys,T-800 is Back Scene,tt1340138 UZnkAElIe_c,2015.0,1,10,2018,Terminator Genisys,Pops vs. the T-800 Scene,tt1340138 EdiZzm9bA2I,1986.0,10,10,2018,Cobra,No Hard Feelings Scene,tt0090859 pdwGNiv2q4U,1986.0,2,10,2018,Cobra,You're Too Violent Scene,tt0090859 Ycv2RoyxW1w,1986.0,3,10,2018,Cobra,Kill Her Scene,tt0090859 o6sD0PvhkWc,1986.0,7,10,2018,Cobra,An Army of Killers Scene,tt0090859 99ziSsaLUpU,1986.0,6,10,2018,Cobra,The Chase Scene,tt0090859 Vbj9JcYGo_w,1986.0,9,10,2018,Cobra,Where the Law Stops Scene,tt0090859 F_cS_kmSiRY,1986.0,1,10,2018,Cobra,You're a Disease and I'm the Cure Scene,tt0090859 UqPsrqpwLmU,1986.0,8,10,2018,Cobra,Motorcycle Maniacs Scene,tt0090859 q1bV-D8cSz8,1986.0,4,10,2018,Cobra,Kills Scene,tt0090859 VqL0Mr9uNL8,1986.0,5,10,2018,Cobra,The Night Slasher Scene,tt0090859 dZjgSYTxWsY,2017.0,6,10,2018,Baywatch,YOU People Scene,tt1469304 x35VnGsGrFc,2017.0,5,10,2018,Baywatch,Little Girl's Bedroom Fight Scene,tt1469304 Wd5RTjtSSxk,2017.0,7,10,2018,Baywatch,A Feminine Disguise Scene,tt1469304 axhUtepWokA,2017.0,3,10,2018,Baywatch,Dance Distraction Scene,tt1469304 WDuIl_uPY_s,2017.0,2,10,2018,Baywatch,The Big Boy Competition Scene,tt1469304 CDTnjLPgMKM,2017.0,1,10,2018,Baywatch,Let Me Help You Scene,tt1469304 FFvaLp9s1p0,2017.0,4,10,2018,Baywatch,Someone's Coming Scene,tt1469304 QlDqtuo10fA,2017.0,9,10,2018,Baywatch,I'm Oceanic Scene,tt1469304 HfgFZz6gCOM,2017.0,10,10,2018,Baywatch,Happy Endings For Everyone Scene,tt1469304 N_qIfvDbZjc,2017.0,8,10,2018,Baywatch,The Original Mitch Scene,tt1469304 wka4snE-AmU,1988.0,6,7,2018,Funny Farm,Stopping the Mailman Scene,tt0095188 dqfoyAnszH0,1988.0,2,7,2018,Funny Farm,Fishing Fiasco Scene,tt0095188 oo5SkNM3c1Y,1988.0,5,7,2018,Funny Farm,Andy the Squirrel Scene,tt0095188 vIgFGJRGlkk,1988.0,1,7,2018,Funny Farm,Phone Trouble Scene,tt0095188 mxnq8jkwttE,1988.0,4,7,2018,Funny Farm,What'd You Think? Scene,tt0095188 QNUbwijCKfw,1988.0,3,7,2018,Funny Farm,Sheep Balls Scene,tt0095188 gMCgkXpEOIY,1988.0,7,7,2018,Funny Farm,Selling the Farm Scene,tt0095188 s-vP7WgMkpA,2018.0,4,10,2018,Jurassic World: Fallen Kingdom,Saved by Rexy Scene,tt4881806 hAf3IBKWubo,2018.0,1,10,2018,Jurassic World: Fallen Kingdom,Mosasaurus Attack Scene,tt4881806 an9Zfn3IZCY,2018.0,9,10,2018,Jurassic World: Fallen Kingdom,"Goodbye, Blue Scene",tt4881806 CkAf_qzHNwo,2018.0,7,10,2018,Jurassic World: Fallen Kingdom,The Jaws of the Indoraptor Scene,tt4881806 NFj82X1Fdh4,2018.0,10,10,2018,Jurassic World: Fallen Kingdom,Welcome to Jurassic World Scene,tt4881806 xgX9WrVFO0Q,2018.0,5,10,2018,Jurassic World: Fallen Kingdom,The Death of Jurassic Park Scene,tt4881806 EQWtaLTOwCw,2018.0,8,10,2018,Jurassic World: Fallen Kingdom,Indoraptor vs. Blue Scene,tt4881806 jwnPI-d36vU,2018.0,2,10,2018,Jurassic World: Fallen Kingdom,Reunited with Blue Scene,tt4881806 XUSzvNtSsFE,2018.0,6,10,2018,Jurassic World: Fallen Kingdom,T-Rex Blood Transfusion Scene,tt4881806 BfRUV4g8sYw,2018.0,3,10,2018,Jurassic World: Fallen Kingdom,Baryonyx Attack Scene,tt4881806 4UzVKW_Iqi0,2016.0,4,10,2018,10 Cloverfield Lane,Let Me In! Scene,tt1179933 DJTF3NmqF7U,2016.0,5,10,2018,10 Cloverfield Lane,I Accept Your Apology Scene,tt1179933 Mc_zp1s60NY,2016.0,3,10,2018,10 Cloverfield Lane,Frank & Mildred Scene,tt1179933 bMjYOV8VnYk,2016.0,7,10,2018,10 Cloverfield Lane,A Narrow Escape Scene,tt1179933 lLeY8-bhEuQ,2016.0,10,10,2018,10 Cloverfield Lane,The Hungry Space Ship Scene,tt1179933 jypAc6XYFfA,2016.0,2,10,2018,10 Cloverfield Lane,Everyone Outside Is Dead Scene,tt1179933 UglfLjHUNbU,2016.0,6,10,2018,10 Cloverfield Lane,This Is How You Repay Me? Scene,tt1179933 iQJh6I8kH_E,2016.0,1,10,2018,10 Cloverfield Lane,A Stab at Freedom Scene,tt1179933 pl7JzW6eGZg,2016.0,8,10,2018,10 Cloverfield Lane,Cornered by an Alien Scene,tt1179933 InkyowbQcIs,2016.0,9,10,2018,10 Cloverfield Lane,Alien Crop Duster Scene,tt1179933 Vh-olAK5vrs,2016.0,8,10,2018,13 Hours: The Secret Soldiers of Benghazi,Mortar Storm Scene,tt4172430 _IwNoboTiHU,2016.0,2,10,2018,13 Hours: The Secret Soldiers of Benghazi,Attack on the Consulate Scene,tt4172430 0K6bVf4ra1w,2016.0,7,10,2018,13 Hours: The Secret Soldiers of Benghazi,Holding Off Hostiles Scene,tt4172430 pAwoA-XPzsQ,2016.0,6,10,2018,13 Hours: The Secret Soldiers of Benghazi,The First Wave Scene,tt4172430 2pCUsMk0Zs0,2016.0,9,10,2018,13 Hours: The Secret Soldiers of Benghazi,Fallen Soldiers Scene,tt4172430 OxBd2RQI4eQ,2016.0,10,10,2018,13 Hours: The Secret Soldiers of Benghazi,They're With Us Scene,tt4172430 hgqJjr7pBa0,2016.0,1,10,2018,13 Hours: The Secret Soldiers of Benghazi,Welcome to Benghazi Scene,tt4172430 88dS92rgWhA,2016.0,4,10,2018,13 Hours: The Secret Soldiers of Benghazi,Escaping the Compound Scene,tt4172430 cWj-sdxFiY4,2016.0,5,10,2018,13 Hours: The Secret Soldiers of Benghazi,Wrong Turn Scene,tt4172430 EL3Ma917bug,2016.0,3,10,2018,13 Hours: The Secret Soldiers of Benghazi,Take Out the Technical Scene,tt4172430 UDINZf4W4mw,2015.0,1,10,2018,The Final Girls,Casually Watching a Murder Scene,tt2118624 LQFc7IKhUuE,2015.0,6,10,2018,The Final Girls,Slow Motion Horror Scene,tt2118624 YNAv6w5RDIs,2015.0,9,10,2018,The Final Girls,The Final Victim Scene,tt2118624 FTzUto6toxY,2015.0,3,10,2018,The Final Girls,The Bloody Legend of Billy Scene,tt2118624 BGZN_6xPw64,2015.0,4,10,2018,The Final Girls,You Literally Can't Leave the Movie Scene,tt2118624 gpjYU0C2yrY,2015.0,10,10,2018,The Final Girls,Slasher vs. Virgin Scene,tt2118624 QgqXAXhRvYU,2015.0,2,10,2018,The Final Girls,Stuck in a Horror Movie Scene,tt2118624 ywRWNlbXD8s,2015.0,7,10,2018,The Final Girls,Saved By a Flashback Scene,tt2118624 kfdeG-hRX7A,2015.0,5,10,2018,The Final Girls,Seducing the Slasher Scene,tt2118624 HfFM7RZ5GxI,2015.0,8,10,2018,The Final Girls,No More Killing Scene,tt2118624 PBaQezez_UU,2011.0,2,10,2018,Priest,Get Her Down Below Scene,tt0822847 2nclzm_QlLw,2011.0,5,10,2018,Priest,No More Masters Scene,tt0822847 SJSDO3IHsrs,2011.0,1,10,2018,Priest,The Vampire War Scene,tt0822847 sdwghUH-K14,2011.0,3,10,2018,Priest,Ex-Communicated Scene,tt0822847 BN8VnFVqRRI,2011.0,7,10,2018,Priest,Terror Symphony Scene,tt0822847 5uvhg1AtZlQ,2011.0,9,10,2018,Priest,A Holy Light Scene,tt0822847 iktC8imMBnw,2011.0,4,10,2018,Priest,Fear No Evil Scene,tt0822847 kCxqmweKXZ0,2011.0,8,10,2018,Priest,Human & Vampire Scene,tt0822847 usmBCn2WxYU,2011.0,10,10,2018,Priest,Taking Down Black Hat Scene,tt0822847 nixHRzTvCUE,2011.0,6,10,2018,Priest,The Hive Guardian Scene,tt0822847 rt3FEbzjM3o,2016.0,3,10,2018,The 5th Wave,The Parasites True Form Scene,tt2304933 9UrJ60MVNao,2016.0,6,10,2018,The 5th Wave,Afraid You'd Shoot Me Scene,tt2304933 xLdIkC6qcow,2016.0,7,10,2018,The 5th Wave,We Are the 5th Wave Scene,tt2304933 tmUleIek9Fc,2016.0,4,10,2018,The 5th Wave,Shot in the Leg Scene,tt2304933 2oLqQw8jHts,2016.0,5,10,2018,The 5th Wave,The New Guy Scene,tt2304933 QNlazlRan6A,2016.0,9,10,2018,The 5th Wave,I Choose You Scene,tt2304933 HGgfJkZAx8Y,2016.0,2,10,2018,The 5th Wave,Losing Family Scene,tt2304933 3IUoqFHJ6wk,2016.0,10,10,2018,The 5th Wave,Hope Makes Us Human Scene,tt2304933 r2GpJzIdoYQ,2016.0,8,10,2018,The 5th Wave,Did You Shoot Me? Scene,tt2304933 LTyelOWIGh0,2016.0,1,10,2018,The 5th Wave,The End of the World Scene,tt2304933 gxqt6x5ThcU,2015.0,4,10,2018,The Perfect Guy,A Stalker in the House Scene,tt3862750 6QB5kS_JcuU,2015.0,7,10,2018,The Perfect Guy,Fatal Car Trouble Scene,tt3862750 AvPVexWamGg,2015.0,2,10,2018,The Perfect Guy,A Jealous Attack Scene,tt3862750 OByY45anMr4,2015.0,1,10,2018,The Perfect Guy,Right Guy at the Right Time Scene,tt3862750 oNiW2ftWINg,2015.0,5,10,2018,The Perfect Guy,Take the Hint Scene,tt3862750 QP_o0yWJYKM,2015.0,8,10,2018,The Perfect Guy,Lesson in Self Defense Scene,tt3862750 eJ93IIgvVyI,2015.0,3,10,2018,The Perfect Guy,We Need to Move On Scene,tt3862750 _JoP_xhSETM,2015.0,10,10,2018,The Perfect Guy,A Permanent Break-Up Scene,tt3862750 rey_J7jIvno,2015.0,9,10,2018,The Perfect Guy,Stalking Him Back Scene,tt3862750 -Xb-ryuTDlE,2015.0,6,10,2018,The Perfect Guy,Keepin' An Eye Out Scene,tt3862750 LFO-xqbWYpw,2009.0,5,9,2018,Obsessed,Overdose Scene,tt1198138 Rp8A7gf0dZ8,2009.0,1,9,2018,Obsessed,Christmas Party Seduction Scene,tt1198138 y2wupV34DRk,2009.0,7,9,2018,Obsessed,She Took My Baby Scene,tt1198138 ROeFmcvZRf8,2009.0,8,9,2018,Obsessed,Battle to be Queen Bee Scene,tt1198138 DbORPqtzyx4,2009.0,9,9,2018,Obsessed,Flawless Victory Scene,tt1198138 -YaPh7shnWQ,2009.0,6,9,2018,Obsessed,Get Out of My House Scene,tt1198138 HRmLJScvW8M,2009.0,2,9,2018,Obsessed,Passion in the Parking Lot Scene,tt1198138 O6Stx_mwAVY,2009.0,4,9,2018,Obsessed,Crazy in Love Scene,tt1198138 g425SDBoDBI,2009.0,3,9,2018,Obsessed,Happy to See You Scene,tt1198138 b60DLSEemEY,2014.0,2,10,2018,No Good Deed,Visiting the Ex Scene,tt2011159 9Wfswn2lkAo,2014.0,7,10,2018,No Good Deed,Getting Pulled Over Scene,tt2011159 njfu6wuNC_w,2014.0,4,10,2018,No Good Deed,Are You Having an Affair? Scene,tt2011159 NcMHcR5IzEY,2014.0,9,10,2018,No Good Deed,Fighting Back Scene,tt2011159 Wrb8nkLKkxU,2014.0,10,10,2018,No Good Deed,It Didn't Mean Anything Scene,tt2011159 PECLt8uCcRk,2014.0,5,10,2018,No Good Deed,Put Her Down Scene,tt2011159 xCvyw2bipUM,2017.0,6,10,2018,No Good Deed,Undress Scene,tt2011159 dfLN2aPZ5sM,2014.0,8,10,2018,No Good Deed,Your Girlfriend is Dead Scene,tt2011159 KXTBm9eUiko,2014.0,3,10,2018,No Good Deed,Man at the Door Scene,tt2011159 bhtJNsUfHIM,2014.0,1,10,2018,No Good Deed,Malignant Narcissist Scene,tt2011159 fegOYb4_PSk,2015.0,8,10,2018,Mission: Impossible Rogue Nation,The Bomb Around Benji Scene,tt2381249 u4T7slD8Mq4,2015.0,2,10,2018,Mission: Impossible Rogue Nation,Torture Tag Team Scene,tt2381249 jBMZnAIY_Ng,2015.0,10,10,2018,Mission: Impossible Rogue Nation,Ilsa's Knife Fight Scene,tt2381249 Oy9R8mpKSmM,2015.0,7,10,2018,Mission: Impossible Rogue Nation,Mountain Motorcycle Chase Scene,tt2381249 Jf8Sheh4MD4,2015.0,5,10,2018,Mission: Impossible Rogue Nation,Underwater Rescue Scene,tt2381249 880-MqUhhEk,2015.0,4,10,2018,Mission: Impossible Rogue Nation,Sniper vs. Sniper vs. Sniper Scene,tt2381249 e56FOw5rIhw,2015.0,9,10,2018,Mission: Impossible Rogue Nation,Keep Hunt Alive Scene,tt2381249 OArHd5pe8Ls,2015.0,3,10,2018,Mission: Impossible Rogue Nation,Stage Fight Scene,tt2381249 elpUGB9Ap1Y,2015.0,1,10,2018,Mission: Impossible Rogue Nation,Ethan Catches a Plane Scene,tt2381249 GSrtUVzdt6M,2015.0,6,10,2018,Mission: Impossible Rogue Nation,Marrakech Car Chase Scene,tt2381249 ThCnJ2m0exo,2005.0,5,10,2018,Doom,The BFG Scene,tt0419706 D1Iu4JKRGIM,2005.0,1,10,2018,Doom,Mutant Zombie Outbreak Scene,tt0419706 FBpdDE96XhE,2005.0,6,10,2018,Doom,Space Zombies! Scene,tt0419706 nUxHF4O3GYU,2005.0,7,10,2018,Doom,Punishable by Death Scene,tt0419706 -Jf-E7oEguU,2005.0,9,10,2018,Doom,First Person Shooting Scene,tt0419706 nr1sLngjJXQ,2005.0,10,10,2018,Doom,Sarge vs. Reaper Scene,tt0419706 JyEvCZ8kwW4,2005.0,4,10,2018,Doom,Hostile Activity Scene,tt0419706 y0DYykDLU0Y,2005.0,8,10,2018,Doom,I'm Not Supposed to Die! Scene,tt0419706 lPOo7SzR7Sc,2005.0,2,10,2018,Doom,Mutants and Monkeys Scene,tt0419706 MPQojemDuDo,2005.0,3,10,2018,Doom,The Sewer Imp Scene,tt0419706 SEn179T1Apk,2008.0,7,10,2018,Doomsday,Gladiatorial Combat Scene,tt0483607 eWuiIzqZryQ,2008.0,10,10,2018,Doomsday,An Explosive Getaway Scene,tt0483607 UYzF0CAcN3I,2008.0,9,10,2018,Doomsday,Carmageddon Scene,tt0483607 4T8OrSXKqVo,2008.0,1,10,2018,Doomsday,Terrorist Boat Raid Scene,tt0483607 jf_-d13-UNw,2008.0,6,10,2018,Doomsday,Murdercycles and a Murder Bus Scene,tt0483607 -yzEjTjo2IA,2008.0,5,10,2018,Doomsday,Eden vs Viper Scene,tt0483607 XN7uqQnAxIc,2008.0,4,10,2018,Doomsday,Cannibal Strippers Scene,tt0483607 9IVd9X91fiI,2008.0,8,10,2018,Doomsday,Road Rage Scene,tt0483607 b0kunBGZmK4,2008.0,3,10,2018,Doomsday,Raider Onslaught Scene,tt0483607 TL91ZYSxoag,2008.0,2,10,2018,Doomsday,Mohawks and Molotov Cocktails Scene,tt0483607 BXlYuaycRbU,2012.0,7,10,2018,Dr. Seuss' the Lorax,How Bad Can I Be Scene,tt1482459 OqvD4NC-s9E,2012.0,10,10,2018,Dr. Seuss' the Lorax,Let It Grow Scene,tt1482459 r0eg-ieT77g,2012.0,9,10,2018,Dr. Seuss' the Lorax,Need for Seed Scene,tt1482459 9KYrqmQdvsI,2012.0,6,10,2018,Dr. Seuss' the Lorax,Stop That Bed! Scene,tt1482459 StvrI9z9kLY,2012.0,2,10,2018,Dr. Seuss' the Lorax,The Girl Next Door Scene,tt1482459 aecYY1vUiDU,2012.0,3,10,2018,Dr. Seuss' the Lorax,Grammy's Tale of the Once-ler Scene,tt1482459 gV6Y3OwR2n0,2012.0,8,10,2018,Dr. Seuss' the Lorax,Unless Scene,tt1482459 92lO2Bum7v4,2012.0,1,10,2018,Dr. Seuss' the Lorax,Thneedville Scene,tt1482459 GZ3fgYIUrJU,2012.0,5,10,2018,Dr. Seuss' the Lorax,The Guardian of the Forest Scene,tt1482459 tp1eVLXEXm8,2012.0,4,10,2018,Dr. Seuss' the Lorax,This Is the Place Scene,tt1482459 KEfLE_bvsSo,2008.0,2,10,2018,The Strangers,A Face at the Window Scene,tt0482606 PmNdhL9_nPM,2008.0,1,10,2018,The Strangers,Someone's In the House Scene,tt0482606 ZpwDcgHhFDQ,2008.0,6,10,2018,The Strangers,A Fatal Mistake Scene,tt0482606 018kRNbZj0I,2008.0,8,10,2018,The Strangers,Captured by Killers Scene,tt0482606 VjRhsK7p8gY,2008.0,10,10,2018,The Strangers,Are You a Sinner? Scene,tt0482606 hFNZy6iBNVs,2008.0,9,10,2018,The Strangers,Masked Murderers Scene,tt0482606 hyopxkr7RuY,2008.0,3,10,2018,The Strangers,You Can't Go Out There Scene,tt0482606 06qgPR9Eqww,2008.0,7,10,2018,The Strangers,Making a Run For It Scene,tt0482606 8pbM30ZMO84,2008.0,5,10,2018,The Strangers,Axe at the Door Scene,tt0482606 GLQiaEzx03A,2008.0,4,10,2018,The Strangers,We Need a Gun Scene,tt0482606 6qZZWAScCn8,2017.0,10,10,2018,Conor McGregor: Notorious,Conor McGregor vs. Nate Diaz Rematch Scene,tt7518466 XdtbL0dP0X0,2017.0,3,10,2018,Conor McGregor: Notorious,Aldo's Broken Rib Scene,tt7518466 MLCZ_B7FKc8,2017.0,7,10,2018,Conor McGregor: Notorious,Conor McGregor vs. Jose Aldo Scene,tt7518466 4C7VpH9VvC0,2017.0,6,10,2018,Conor McGregor: Notorious,Jose Aldo Press Conference Scene,tt7518466 djPS3AC9DKk,2017.0,2,10,2018,Conor McGregor: Notorious,Meeting Arnold Schwarzenegger Scene,tt7518466 UB1xsj0ZiKA,2017.0,5,10,2018,Conor McGregor: Notorious,Conor McGregor vs. Chad Mendes Scene,tt7518466 NQw5e3HJgfk,2017.0,9,10,2018,Conor McGregor: Notorious,Violent Press Conference Scene,tt7518466 a7vAR-7YBWE,2017.0,4,10,2018,Conor McGregor: Notorious,A Crack in the Knee Scene,tt7518466 j1tXIl0snEk,2017.0,8,10,2018,Conor McGregor: Notorious,Conor McGregor vs. Nate Diaz Scene,tt7518466 JvTQZxz-KBk,2017.0,1,10,2018,Conor McGregor: Notorious,Winning Streak Scene,tt7518466 alhVUKh36_Q,2008.0,6,10,2018,Mamma Mia!,Voulez-Vous Scene,tt0795421 2GvL0jFY7u8,2008.0,10,10,2018,Mamma Mia!,Waterloo Scene,tt0795421 bu9YxTb6gf8,2008.0,7,10,2018,Mamma Mia!,SOS Scene,tt0795421 nLkmfL6IVQs,2008.0,9,10,2018,Mamma Mia!,Take a Chance on Me Scene,tt0795421 CyUZe8xRNnQ,2008.0,4,10,2018,Mamma Mia!,Our Last Summer Scene,tt0795421 QRoWiTcO7dk,2008.0,3,10,2018,Mamma Mia!,Dancing Queen Scene,tt0795421 05qid4p_cfw,2008.0,1,10,2018,Mamma Mia!,Honey Honey Scene,tt0795421 Qe2m1wxb5_w,2008.0,8,10,2018,Mamma Mia!,Slipping Through My Fingers Scene,tt0795421 mIeU7y3CGKQ,2008.0,5,10,2018,Mamma Mia!,Lay All Your Love on Me Scene,tt0795421 DUjB9LTtzGg,2008.0,2,10,2018,Mamma Mia!,Mamma Mia (Here I Go Again) Scene,tt0795421 1dwtsZ4IJQE,2017.0,10,10,2018,Happy Death Day,Killing Me Over Some Stupid Guy? Scene,tt5308322 NnDKut3pxoU,2017.0,4,10,2018,Happy Death Day,Paging Doctor Death Scene,tt5308322 rtn4-lDSB80,2017.0,5,10,2018,Happy Death Day,Driven to Murder Scene,tt5308322 IlH-egwG2pQ,2017.0,7,10,2018,Happy Death Day,"See You Soon, A-hole Scene",tt5308322 idvqLiOeLgc,2017.0,3,10,2018,Happy Death Day,What's Wrong With Being Confident? Scene,tt5308322 YAmnMBHMPso,2017.0,8,10,2018,Happy Death Day,Just Say Yes Scene,tt5308322 yQpFQFL-YLI,2017.0,6,10,2018,Happy Death Day,Flaming Death! Scene,tt5308322 uAjGtAOqMQw,2017.0,9,10,2018,Happy Death Day,Safety's Off Scene,tt5308322 86Vd7XFiYZA,2017.0,1,10,2018,Happy Death Day,A Deathday Present Scene,tt5308322 _y_We1FV_RQ,2017.0,2,10,2018,Happy Death Day,Welcome to the Pleasure Dome Scene,tt5308322 MNmdm8voYFE,2017.0,4,10,2018,Phantom Thread,Take the Dress Off! Scene,tt5776858 fn5dXUu_qxM,2017.0,5,10,2018,Phantom Thread,Back to Where You Came From Scene,tt5776858 KfAm5nyHM3U,2017.0,6,10,2018,Phantom Thread,"It's Not Very Good, Is It? Scene",tt5776858 a87b-bsz1Mg,2017.0,8,10,2018,Phantom Thread,An Air of Quiet Death in This House Scene,tt5776858 URDzGjLruJU,2017.0,3,10,2018,Phantom Thread,The Fashion Show Scene,tt5776858 iHQZhYadNwQ,2017.0,9,10,2018,Phantom Thread,I Want You Flat on Your Back Scene,tt5776858 WQLTwtwUnEI,2017.0,2,10,2018,Phantom Thread,You Have the Ideal Shape Scene,tt5776858 w424xCe0eGQ,2017.0,10,10,2018,Phantom Thread,Life Is No Great Mystery Scene,tt5776858 UQes95Ouciw,2017.0,7,10,2018,Phantom Thread,Will You Marry Me? Scene,tt5776858 vvBW4Szes1U,2017.0,1,10,2018,Phantom Thread,For the Hungry Boy Scene,tt5776858 3PhcsTMfqIs,2017.0,3,10,2018,Neat: The Story of Bourbon,The Bottled-In-Bond Act Scene,tt7109844 K3Po5dqfTgc,2017.0,5,10,2018,Neat: The Story of Bourbon,The Right Way To Drink Bourbon Scene,tt7109844 xpQ1_5xZuKY,2017.0,10,10,2018,Neat: The Story of Bourbon,Meant To Be Enjoyed Scene,tt7109844 -HwJeE-iuIY,2017.0,9,10,2018,Neat: The Story of Bourbon,Bourbon is Eternal Scene,tt7109844 MqiNJmj_ODg,2017.0,2,10,2018,Neat: The Story of Bourbon,The Importance Of Corn Scene,tt7109844 ldzjtk016bY,2017.0,7,10,2018,Neat: The Story of Bourbon,The Beauty Of The Barrel Scene,tt7109844 EIrEOL6S6sk,2017.0,8,10,2018,Neat: The Story of Bourbon,The Rise Of Small Batch Bourbon Scene,tt7109844 DZuHwW24HUY,2017.0,4,10,2018,Neat: The Story of Bourbon,How Grain Turns To Bourbon Scene,tt7109844 9tqaHOTOasE,2017.0,6,10,2018,Neat: The Story of Bourbon,Bourbon Falling Out Of Favor Scene,tt7109844 SBSzom7RbCs,2017.0,1,10,2018,Neat: The Story of Bourbon,What Is Bourbon? Scene,tt7109844 RG4exoyldqw,2015.0,10,10,2018,We Are Blood,Skating in Paradise Scene,tt4542660 L0-Ye--I0Uo,2015.0,5,10,2018,We Are Blood,Skateboarding in China Scene,tt4542660 wXc9z1SmLJM,2015.0,1,10,2018,We Are Blood,Skating in Spain Scene,tt4542660 wcYfLYh8ixg,2015.0,8,10,2018,We Are Blood,How to Deal With Pain Scene,tt4542660 Tcnr8WoHAOI,2015.0,9,10,2018,We Are Blood,Burning Boards Scene,tt4542660 HMQpYC2SMX8,2015.0,7,10,2018,We Are Blood,Skatopia Scene,tt4542660 UIRhpmPhehk,2015.0,4,10,2018,We Are Blood,The Deaf Skater Scene,tt4542660 qiAPls8Te0k,2015.0,3,10,2018,We Are Blood,Skateboarding is Everywhere Scene,tt4542660 fLRlh8AHh8k,2015.0,2,10,2018,We Are Blood,The Excavated Skate Park Scene,tt4542660 lMYtQlLlu3c,2015.0,6,10,2018,We Are Blood,Security Hates Skaters Scene,tt4542660 poswRRB_2i0,2017.0,10,10,2018,The Star,The Nativity Scene,tt2527336 n5tMCxz-9uY,2018.0,2,10,2018,Peter Rabbit,House Party Scene,tt5117670 4FppyDurg7c,2018.0,4,10,2018,Peter Rabbit,Wet Willy Rescue,tt5117670 A9QknjLLso4,2018.0,1,10,2018,Peter Rabbit,Losing Peter's Father Scene,tt5117670 51IaQuowCcA,2018.0,6,10,2018,Peter Rabbit,Electric Fence Scene,tt5117670 9VwWPnHZMrs,2018.0,7,10,2018,Peter Rabbit,Allergy Attack! Scene,tt5117670 YSOUTJUdTgs,2018.0,8,10,2018,Peter Rabbit,Playing With Fire Scene,tt5117670 QkrYlP8-Cmo,2018.0,3,10,2018,Peter Rabbit,"No Guts, No Glory Scene",tt5117670 roST4TM0ccM,2018.0,5,10,2018,Peter Rabbit,Skirmish In The Studio Scene,tt5117670 9fEMKGFr-Sk,2018.0,10,10,2018,Peter Rabbit,Forgiveness Scene,tt5117670 izWrKfUUP9o,2018.0,9,10,2018,Peter Rabbit,Rabbits in a Toy Store Scene,tt5117670 c6mLa5_GvCQ,2017.0,4,10,2018,The Star,This Bird Can Dance! Scene,tt2527336 VgO0K_0mi1U,2017.0,6,10,2018,The Star,Marketplace Disaster Scene,tt2527336 sYdqpWTQyaI,2017.0,9,10,2018,The Star,When Animals Attack Scene,tt2527336 fDeQjTPTlDE,2017.0,3,10,2018,The Star,The King of the Shoes Scene,tt2527336 -qGU1hiiJfU,2017.0,5,10,2018,The Star,Animal Impersonations Scene,tt2527336 r2x4QueC2As,2017.0,7,10,2018,The Star,Prayers from Donkeys Scene,tt2527336 e48T01eVXtU,2017.0,2,10,2018,The Star,Bo's Big Escape Scene,tt2527336 Cp3FHbNWi64,2017.0,8,10,2018,The Star,Good Tidings of Great Joy Scene,tt2527336 dj0MEV7d1NE,2017.0,1,10,2018,The Star,The Angel Appears Before Mary Scene,tt2527336 m-L3k3ElIQE,2017.0,8,10,2018,"Roman J. Israel, Esq.",Live in What You Did Wrong Scene,tt6000478 sYWS5RSmJ-s,2017.0,5,10,2018,"Roman J. Israel, Esq.",A Really Bad Day at the Office Scene,tt6000478 c9oE47YW6YM,2017.0,4,10,2018,"Roman J. Israel, Esq.",Standing Up For Who Can't Scene,tt6000478 i_SnR25Zoho,2017.0,3,10,2018,"Roman J. Israel, Esq.",Sistahs Stand Up Scene,tt6000478 hp3HX9PAkcA,2017.0,6,10,2018,"Roman J. Israel, Esq.",Lack of Success is Self-Imposed Scene,tt6000478 rCEbhr55ISU,2017.0,10,10,2018,"Roman J. Israel, Esq.",I'm Going Away Scene,tt6000478 ZFrDw6oQai4,2017.0,9,10,2018,"Roman J. Israel, Esq.",The Time Has Come Scene,tt6000478 9V_GlFhNX2g,2017.0,7,10,2018,"Roman J. Israel, Esq.",Hanging By a Thread Scene Moiveclips,tt6000478 Hs8mVGI7uVc,2017.0,2,10,2018,"Roman J. Israel, Esq.","Underwear Model, Esq. Scene",tt6000478 oR3h33DSGPM,2017.0,1,10,2018,"Roman J. Israel, Esq.",White People's Court Scene,tt6000478 JpQqyJbdb44,2017.0,5,10,2018,The Rape of Recy Taylor,A Letter From Rosa Parks Scene,tt6116682 G90tPiniLd8,2017.0,3,10,2018,The Rape of Recy Taylor,Black Woman in Jim Crow South Scene,tt6116682 8O8gYNK3ULc,2017.0,1,10,2018,The Rape of Recy Taylor,The Night It Happened Scene,tt6116682 43mOz_bosUY,2017.0,9,10,2018,The Rape of Recy Taylor,Injustice Survives Scene,tt6116682 0nEWiH0pYR8,2017.0,6,10,2018,The Rape of Recy Taylor,The Infrastructure of Injustice Scene,tt6116682 zzkjLhitH7c,2017.0,10,10,2018,The Rape of Recy Taylor,Recy Speaks Scene,tt6116682 ZNzEreKcfUU,2017.0,8,10,2018,The Rape of Recy Taylor,The Confession Scene,tt6116682 sr7zvUpRxIU,2017.0,7,10,2018,The Rape of Recy Taylor,Testimony From the Rapists Scene,tt6116682 STcAVDuOkv8,2017.0,4,10,2018,The Rape of Recy Taylor,Rosa Parks Comes to Town Scene,tt6116682 LjKWOmIeSQs,2017.0,2,10,2018,The Rape of Recy Taylor,The Night Recy Came Home Scene,tt6116682 l46yjkR0SqU,2017.0,10,10,2018,The Book of Henry,Believe in Magic Scene,tt4572792 JJrTnnaEZ_w,2017.0,3,10,2018,The Book of Henry,Henry Has a Tumor Scene,tt4572792 gVdIiTE1ykg,2017.0,6,10,2018,The Book of Henry,Henry's Big Plan Scene,tt4572792 fTIIhYZ_CzA,2017.0,9,10,2018,The Book of Henry,Know Who You're Up Against Scene,tt4572792 AX4i2YZqE14,2017.0,7,10,2018,The Book of Henry,The Talent Show Scene,tt4572792 34FTDewDftA,2017.0,1,10,2018,The Book of Henry,The Genius and the Nobody Scene,tt4572792 9C6DANHgdrE,2017.0,4,10,2018,The Book of Henry,Peter's Special Mission Scene,tt4572792 sIwsArbH5ck,2017.0,2,10,2018,The Book of Henry,Something's Wrong with Henry Scene,tt4572792 dg6PaO0e6wA,2017.0,8,10,2018,The Book of Henry,Christina's Dance Scene,tt4572792 MYkSUEjYLc0,2017.0,5,10,2018,The Book of Henry,The Best Part of Me Scene,tt4572792 AvPljYL3Sq4,2014.0,10,10,2018,Equal Means Equal,Ending Gender And Sexual Discrimination Scene,tt3250590 e0oLpONe5O0,2014.0,8,10,2018,Equal Means Equal,Foster Care & Child Sex Trafficking Scene,tt3250590 2h6NGVrMQ20,2014.0,9,10,2018,Equal Means Equal,The Abusive World of Pimps Scene,tt3250590 Iqkw8K2hT74,2014.0,1,10,2018,Equal Means Equal,Wal-Mart's Gender Discrimination Scene,tt3250590 06456EaXTVM,2014.0,7,10,2018,Equal Means Equal,Pregnancy Discrimination Scene,tt3250590 5JjVwGi4aHU,2014.0,2,10,2018,Equal Means Equal,The Equal Rights Amendment Scene,tt3250590 D2l0Qk_lxo0,2014.0,5,10,2018,Equal Means Equal,Rape Culture in Schools Scene,tt3250590 m_Wx68QkJSU,2014.0,6,10,2018,Equal Means Equal,Sexual Assault In The U.S. Military Scene,tt3250590 v8L3Lyit8Ro,2014.0,4,10,2018,Equal Means Equal,Failing Domestic Violence Victims Scene,tt3250590 awhN-boYW_I,2014.0,3,10,2018,Equal Means Equal,The International Women's Bill Of Rights Scene,tt3250590 Og88KQM5nVk,2015.0,8,8,2018,Atheist America,Atheist vs Christian Scene,tt2923316 z8NcTAIV0Wc,2015.0,4,8,2018,Atheist America,Guns in Church Scene,tt2923316 SZCtfLaCWO0,2015.0,3,8,2018,Atheist America,Situational Ethics Scene,tt2923316 zdOov2A4-os,2015.0,7,8,2018,Atheist America,Easter Egg Drop Scene,tt2923316 QcFKRqQENrI,2015.0,1,8,2018,Atheist America,Prayer Circle Scene,tt2923316 W4jxHLn-00g,2015.0,5,8,2018,Atheist America,Joel Osteen's Megachurch Scene,tt2923316 8TwlBdCGS24,2015.0,2,8,2018,Atheist America,Dominion Over Animals Scene,tt2923316 EchEZ7BmRos,2015.0,6,8,2018,Atheist America,Faster Than the Speed of Christ Scene,tt2923316 dmASD5tRwV4,2001.0,6,10,2018,John Carpenter's Ghosts of Mars,Drugs vs Ghosts Scene,tt0228333 m-2WmcLl_PQ,2001.0,5,10,2018,John Carpenter's Ghosts of Mars,Battling the Possessed Scene,tt0228333 KwpO_4Rq13o,2001.0,9,10,2018,John Carpenter's Ghosts of Mars,Desolation Takes On Big Daddy Scene,tt0228333 CG2YRWPhfiA,2001.0,2,10,2018,John Carpenter's Ghosts of Mars,I Saved Your Life Scene,tt0228333 GvHBefStM7o,2001.0,4,10,2018,John Carpenter's Ghosts of Mars,War Ready Scene,tt0228333 ZUchY9Hw48A,2001.0,8,10,2018,John Carpenter's Ghosts of Mars,Catching the Train Outta Hell Scene,tt0228333 X1SJgm2hIAY,2001.0,7,10,2018,John Carpenter's Ghosts of Mars,Party Time Scene,tt0228333 6TVik8mYxrY,2001.0,3,10,2018,John Carpenter's Ghosts of Mars,The Horrors Behind the Hill Scene Moviecl,tt0228333 F0ga5pmQjnc,2001.0,10,10,2018,John Carpenter's Ghosts of Mars,Let's Kick Some Ass Scene,tt0228333 QEfuINMgcnI,2001.0,1,10,2018,John Carpenter's Ghosts of Mars,I Like You Already Scene,tt0228333 ZrW_1_rFaw0,2016.0,5,8,2018,My Art,Cougar Hunting Scene,tt5325030 Qm-fzB7OmEU,2016.0,3,8,2018,My Art,The Misfits Scene,tt5325030 bq5vS1a-smo,2016.0,7,8,2018,My Art,Bell Book and Candle Scene,tt5325030 6P5yW3rYuMs,2016.0,8,8,2018,My Art,Some Like It Hot Scene,tt5325030 XHCai_8cuiU,2016.0,2,8,2018,My Art,Shake That Butt Scene,tt5325030 W-phG8nc1Xc,2016.0,1,8,2018,My Art,A Pot Dinner Scene,tt5325030 Oro8uCubA84,2016.0,4,8,2018,My Art,Dinner and Dancing Scene,tt5325030 HpeiPgkqEro,2016.0,6,8,2018,My Art,A Clockwork Orange Scene,tt5325030 kIIY1-f_rBg,2011.0,10,10,2018,The Dilemma,One Shot Scene,tt1578275 aSsFjcw8R3Y,2011.0,3,10,2018,The Dilemma,Peeping Tom Scene,tt1578275 uR7yS87K1tA,2011.0,7,10,2018,The Dilemma,Honesty Scene,tt1578275 LHcbbXpKIrc,2011.0,2,10,2018,The Dilemma,Helping the Little Porkers Scene,tt1578275 vDzbcWty6m0,2011.0,6,10,2018,The Dilemma,Are You Crying? Scene,tt1578275 UFiKhV_Ay70,2011.0,9,10,2018,The Dilemma,Kill Your Bookie Scene,tt1578275 TChg5dQ36WM,2011.0,8,10,2018,The Dilemma,Come Inside Scene,tt1578275 BLElh2JGufs,2011.0,4,10,2018,The Dilemma,Stay Out of My Marriage Scene,tt1578275 8aK7LsC0G-4,2011.0,1,10,2018,The Dilemma,Serious Lady Wood Scene,tt1578275 8sURhgulh7E,2011.0,5,10,2018,The Dilemma,I Know Where You Live Scene,tt1578275 1DDHNN3oums,2015.0,5,6,2018,Gun Runners,Your Running Brings Us Nothing Scene,tt3957170 nQuKmZkCDZ8,2015.0,1,6,2018,Gun Runners,How Many People Have You Killed? Scene,tt3957170 01rrDGEzBc4,2015.0,6,6,2018,Gun Runners,Financial Disaster Scene,tt3957170 a-qtnTRl6HA,2015.0,3,6,2018,Gun Runners,The Prague Marathon Scene,tt3957170 UX8ua4_z-kg,2015.0,4,6,2018,Gun Runners,Running for Office Scene,tt3957170 DTZylvspsps,2015.0,2,6,2018,Gun Runners,"Kenya, the Home of Champions Scene",tt3957170 TunbuB_bBb8,2014.0,7,10,2018,The Equalizer,Disrespect the Badge Scene,tt0455944 DyxkjYmlzhg,2014.0,8,10,2018,The Equalizer,Brick by Brick Scene,tt0455944 4zBMw2XqgWY,2014.0,9,10,2018,The Equalizer,Head of the Snake Scene,tt0455944 Z-l7wGkNyko,2014.0,10,10,2018,The Equalizer,A New Start Scene,tt0455944 BdZgC84uYUo,2014.0,6,10,2018,The Equalizer,Deadly Diner Patron Scene,tt0455944 EWSHsRBP88Y,2014.0,5,10,2018,The Equalizer,Evening Tea Scene,tt0455944 1DvFzLRPc_w,2014.0,3,10,2018,The Equalizer,Her Life Will Go On Scene,tt0455944 GtqIqWKdlD4,2014.0,4,10,2018,The Equalizer,Pay It Back Scene Movielcips,tt0455944 QLkt-SfsCsQ,2014.0,1,10,2018,The Equalizer,Just Kinda Lost Scene,tt0455944 40ryheWGyZY,2014.0,2,10,2018,The Equalizer,Walking Terri Home Scene,tt0455944 wDFOO-dC-Nw,2017.0,10,10,2018,American Made,Pablo's Revenge Scene,tt3532216 zDEPob22tHs,2017.0,8,10,2018,American Made,A Cadillac for Your Troubles Scene,tt3532216 SxJcAxTBKOk,2017.0,7,10,2018,American Made,Barry Gets Burned Scene,tt3532216 2XmLLBZnvDg,2017.0,1,10,2018,American Made,Becoming a Drug Plane Scene,tt3532216 ODIZKyevVxQ,2018.0,4,10,2018,American Made,Outflying the DEA Scene,tt3532216 Wi4OhwrVwP8,2017.0,5,10,2018,American Made,Bringing Snow to the Suburbs Scene,tt3532216 4gSkh86zcaU,2017.0,2,10,2018,American Made,The Gringo Who Delivers Scene,tt3532216 HBj5pxrFyE4,2017.0,9,10,2018,American Made,Setting Up Escobar Scene,tt3532216 CHBydX2-I50,2017.0,6,10,2018,American Made,"Goodbye, JB Scene",tt3532216 WBreuW9LLSw,2017.0,3,10,2018,American Made,Summer '82 Scene,tt3532216 KMHmLy9C2hU,2006.0,9,12,2018,Rescue Dawn,The Escape Scene,tt0462504 sxo7GjhsghQ,2006.0,8,12,2018,Rescue Dawn,I Can't Take It Anymore Scene,tt0462504 BFAfiz1daR4,2006.0,5,12,2018,Rescue Dawn,Unfriendly Fire Scene,tt0462504 6kktAYxwo7M,2006.0,7,12,2018,Rescue Dawn,Eating Worms Scene,tt0462504 UN5YOny_U8g,2006.0,1,12,2018,Rescue Dawn,G.I. Training Scene,tt0462504 xmihht20Z0E,2006.0,11,12,2018,Rescue Dawn,Scene,tt0462504 6i7cWj1WqDU,2006.0,3,12,2018,Rescue Dawn,Tortured Scene,tt0462504 ZekXmBuhS5c,2006.0,12,12,2018,Rescue Dawn,"Welcome Back, Dieter Scene",tt0462504 W_qA7Xt_UPw,2006.0,10,12,2018,Rescue Dawn,Duane's Death Scene,tt0462504 XUdBdsMc5EQ,2006.0,4,12,2018,Rescue Dawn,"Eugene from Eugene, Oregon Scene",tt0462504 99qifKCGPfA,2006.0,6,12,2018,Rescue Dawn,Daydreaming About Food Scene,tt0462504 -OMiOIbouaA,2006.0,2,12,2018,Rescue Dawn,I Cannot Sign This Scene,tt0462504 _0X1jPgLo-A,1991.0,4,11,2018,Little Man Tate,Horseback Ride Scene,tt0102316 -oL4NpO7eAw,1991.0,11,11,2018,Little Man Tate,"Happy Birthday, Fred Scene",tt0102316 RjDv_swo0rY,1991.0,2,11,2018,Little Man Tate,The Math Magician Scene,tt0102316 SCn7SurOKdw,1991.0,3,11,2018,Little Man Tate,A Mathematics Challenge Scene,tt0102316 GBu5QE-EsSg,1991.0,10,11,2018,Little Man Tate,"I Love You, Mom Scene",tt0102316 Us1MxXdSHw8,1991.0,8,11,2018,Little Man Tate,My Name's Eddie Scene,tt0102316 qjUsrdzDbuY,1991.0,9,11,2018,Little Man Tate,A Kid & A Grown-Up Scene,tt0102316 _Du0A1y4Wh4,1991.0,5,11,2018,Little Man Tate,If Anything Happens to Him... Scene,tt0102316 0m5VGBc8VrQ,1991.0,1,11,2018,Little Man Tate,He's Smarter Than All Those Other Plateheads Scene,tt0102316 UrCi_k2TXOA,1991.0,6,11,2018,Little Man Tate,Now Can I Have a Coke? Scene,tt0102316 FVGKgrxQP9M,1991.0,7,11,2018,Little Man Tate,A Flying Globe Scene,tt0102316 CN6dU8mcuMY,1962.0,8,9,2018,Mutiny on the Bounty,Just Another Way of Dying Scene,tt0056264 jpoR10Zh0ig,1962.0,1,9,2018,Mutiny on the Bounty,Cruelty with Purpose Scene,tt0056264 XyEHIOZf5yE,1962.0,6,9,2018,Mutiny on the Bounty,A Big Price to Pay Scene,tt0056264 6IJ8LfJnJvQ,1962.0,3,9,2018,Mutiny on the Bounty,Kissing the Princess Scene,tt0056264 t0oqEjxOUww,1962.0,5,9,2018,Mutiny on the Bounty,The Mutiny Scene,tt0056264 BznPcrTUYvg,1962.0,9,9,2018,Mutiny on the Bounty,A Useless Way to Die Scene,tt0056264 uNcKTuAqLag,1962.0,4,9,2018,Mutiny on the Bounty,Punishment With Relish Scene,tt0056264 EPa8iQyK5mQ,1962.0,2,9,2018,Mutiny on the Bounty,Poisoned With Contempt Scene,tt0056264 oNoOFf527GU,1962.0,7,9,2018,Mutiny on the Bounty,Mutineers Must Hang Scene,tt0056264 pBd7XYjjvRw,2017.0,2,10,2018,Darkest Hour,"Conquer We Must, Conquer We Shall Scene",tt4555426 htHKbsUKDDw,2017.0,1,10,2018,Darkest Hour,"Blood, Toil, Tears and Sweat Scene",tt4555426 skrdyoabmgA,2017.0,10,10,2018,Darkest Hour,We Shall Fight on the Beaches Scene,tt4555426 Wo4U1SqnRpA,2017.0,5,10,2018,Darkest Hour,Churchill & Roosevelt Scene,tt4555426 7SZcDW_1o8g,2017.0,7,10,2018,Darkest Hour,The Campaign of Resistance Scene,tt4555426 gCHCR0wZclg,2017.0,9,10,2018,Darkest Hour,Death Before Disarmament Scene,tt4555426 Ts8WRHAQvk4,2017.0,8,10,2018,Darkest Hour,The People of England Scene,tt4555426 1YpDd1nVthI,2017.0,4,10,2018,Darkest Hour,Saving Dunkirk Scene,tt4555426 JwlhFfOC5Zo,2017.0,3,10,2018,Darkest Hour,Up Your Bum Scene,tt4555426 xA1Uz_TMzhs,2017.0,6,10,2018,Darkest Hour,Subterfuge in the Bunker Scene,tt4555426 _PSZEvsYD6o,1978.0,11,11,2018,Force 10 From Navarone,The Dam Bursts Scene,tt0077572 TEZq-_XkcRA,1978.0,9,11,2018,Force 10 From Navarone,Eliminating the Traitor Scene,tt0077572 jgosH8zc83Q,1978.0,5,11,2018,Force 10 From Navarone,An Awkward Position Scene,tt0077572 MwjIdhPU43A,1978.0,7,11,2018,Force 10 From Navarone,The Wrong Target Scene,tt0077572 JJyK0EX6s_Q,1978.0,4,11,2018,Force 10 From Navarone,Playing Dead Scene,tt0077572 69v1tcsG6nc,1978.0,2,11,2018,Force 10 From Navarone,We're Deserters Scene,tt0077572 g3D2eGiLoeI,1978.0,3,11,2018,Force 10 From Navarone,You Can Get up Now Scene,tt0077572 xFoBu7P_Kwc,1978.0,10,11,2018,Force 10 From Navarone,It Didn't Work! Scene,tt0077572 tMYOmMWbUME,1978.0,1,11,2018,Force 10 From Navarone,Meet the Partisans Scene,tt0077572 kDSiyU72RpA,1978.0,6,11,2018,Force 10 From Navarone,Equal Consideration Scene,tt0077572 DEKdqE9W_i8,1978.0,8,11,2018,Force 10 From Navarone,Betrayed by Their Own Scene,tt0077572 XxWjAkr7ujk,2016.0,4,7,2018,The War Show,Money Buys Freedom Scene,tt5719108 ZtgEJOBzX6A,2016.0,3,7,2018,The War Show,Lies Fuel Revolution Scene,tt5719108 LbPm19yBPis,2016.0,5,7,2018,The War Show,Faces of Rebellion Scene,tt5719108 RxPJd3_j5O0,2016.0,1,7,2018,The War Show,Child of the Revolution Scene,tt5719108 yzSjRcABUBY,2016.0,6,7,2018,The War Show,The Fundamentalists Rise Scene,tt5719108 ZbtcQZ1yDjc,2016.0,7,7,2018,The War Show,The Resistance Falls Apart Scene,tt5719108 GP9FOGsbYsw,2016.0,2,7,2018,The War Show,Suppressing the Revolution Scene,tt5719108 mbzNdI-1iUc,1992.0,4,10,2018,El Mariachi,Mistaken Identity Scene,tt0104815 7yBBNmR1CLg,1992.0,6,10,2018,El Mariachi,Sing or Die Scene,tt0104815 PGbBz0m0pTc,1992.0,2,10,2018,El Mariachi,Looking for Work Scene,tt0104815 Snbbz0C_ZiA,1992.0,5,10,2018,El Mariachi,They Were Thieves Scene,tt0104815 2kK1wyTEMUQ,1992.0,9,10,2018,El Mariachi,Calling Your Bluff Scene,tt0104815 k7ej9E5b8js,1992.0,8,10,2018,El Mariachi,The Wrong Case Scene,tt0104815 lqnKLTA2GVE,1992.0,10,10,2018,El Mariachi,No More Moco Scene,tt0104815 xNc951Hq2WA,1992.0,3,10,2018,El Mariachi,Mariachi Day Scene,tt0104815 KQzNG70KguM,1992.0,7,10,2018,El Mariachi,Sings Scene,tt0104815 LVGZy2YKAh8,1992.0,1,10,2018,El Mariachi,"Pronto, Azul Scene",tt0104815 5ckqhebte9o,1970.0,7,7,2018,There Was a Crooked Man,The Worst Luck Scene,tt0066448 _uXfbxevYyg,1970.0,1,7,2018,There Was a Crooked Man,Bonding Over a Prison Fight Scene,tt0066448 1GiYwJRA2NA,1970.0,3,7,2018,There Was a Crooked Man,You Must Be the New Warden Scene,tt0066448 IgTIy5MUBxM,1970.0,6,7,2018,There Was a Crooked Man,This Is as Far as You Go Scene,tt0066448 J9qv_a_s7Gs,1970.0,2,7,2018,There Was a Crooked Man,Prison Riot Scene,tt0066448 IaeWrM5PlmU,1970.0,5,7,2018,There Was a Crooked Man,Prison Break Scene,tt0066448 jZXuLQdIrEg,1970.0,4,7,2018,There Was a Crooked Man,Being a Leader of Men Scene,tt0066448 uXUPYAomwDU,1965.0,2,6,2018,Tiempo de Morir,The Lame Gunman Scene,tt0059803 CMPJ23f8BeM,1965.0,3,6,2018,Tiempo de Morir,Your Father Was Crazy Scene,tt0059803 OhM4B8B6B28,1965.0,6,6,2018,Tiempo de Morir,Beaten With a Belt Scene,tt0059803 uhOCeh9oGK4,1965.0,5,6,2018,Tiempo de Morir,I'll Settle This Scene,tt0059803 n0MX1a8uh3w,1965.0,4,6,2018,Tiempo de Morir,I Don't Want to Die Scene,tt0059803 RRfoHyYJnAc,1965.0,1,6,2018,Tiempo de Morir,Jail or the Cemetery Scene,tt0059803 64tSUb_LTdI,2018.0,10,10,2018,Fifty Shades Freed,I Await Your Pleasure Scene,tt4477536 rvQZ6MdHSEk,2018.0,5,10,2018,Fifty Shades Freed,A Knife to My Neck Scene,tt4477536 5BLZxhN2lDE,2018.0,8,10,2018,Fifty Shades Freed,I'm Pregnant Scene,tt4477536 X7Jay8hlfHY,2018.0,6,10,2018,Fifty Shades Freed,I Want to Drive You Wild Scene,tt4477536 _OZS09-GVTg,2018.0,9,10,2018,Fifty Shades Freed,Mrs. Grey's Revenge Scene,tt4477536 OFDJnI4RczY,-1.0,2,10,2018,Fifty Shades Freed,Call Me Mrs. Grey Scene,tt4477536 vmpSyqa5kXQ,2018.0,7,10,2018,Fifty Shades Freed,Tasting Her Ice Cream Scene,tt4477536 AdKWXA8npgE,2018.0,4,10,2018,Fifty Shades Freed,Sexy Stylist Scene,tt4477536 LmsnknGIx74,2018.0,3,10,2018,Fifty Shades Freed,She Drives Stick Scene,tt4477536 sC78ImgOLQI,2018.0,1,10,2018,Fifty Shades Freed,Do You Remember Your Safety Word? Scene,tt4477536 z08tZYDrY_8,2005.0,1,10,2018,Stealth,Test Run Scene,tt0382992 diNo0cO2Je0,2005.0,10,10,2018,Stealth,North Korean Rescue Scene,tt0382992 fBTODK66ymw,2005.0,2,10,2018,Stealth,High Dive Missile Attack Scene,tt0382992 sa9AzlyS9h0,2005.0,7,10,2018,Stealth,Clipped Wing Scene,tt0382992 4InwO1SSp5o,2005.0,4,10,2018,Stealth,Love in Thailand Scene,tt0382992 notFMAwEQeM,2005.0,5,10,2018,Stealth,Collateral Damage Scene,tt0382992 Y_U49qqwDGI,2005.0,6,10,2018,Stealth,"Goodbye, Henry Scene",tt0382992 mpr3XG5Tzmk,2005.0,8,10,2018,Stealth,The Ring of Fire Scene,tt0382992 JIsrqAWzVoA,2005.0,3,10,2018,Stealth,Private Waterfalls Scene,tt0382992 nP-P4IYLJWY,2005.0,9,10,2018,Stealth,EDI Dogfight Scene,tt0382992 qVDMu-erGtc,2003.0,9,10,2018,S.W.A.T.,Bridge Shootout Scene,tt0257076 aDU5CcINqyI,2003.0,1,10,2018,S.W.A.T.,Bank Robbery Assault Scene,tt0257076 rhkkbjKcaJ0,2003.0,10,10,2018,S.W.A.T.,The End of Line Scene,tt0257076 8N9oQUJJstQ,2003.0,6,10,2018,S.W.A.T.,Violent Ambush Scene,tt0257076 t0tIXAlLX8s,2003.0,2,10,2018,S.W.A.T.,Suspect on Foot Scene,tt0257076 hV55sjy1QFI,2003.0,7,10,2018,S.W.A.T.,Between Old Partners Scene,tt0257076 Dc-fBk3yoqs,2003.0,3,10,2018,S.W.A.T.,Training Day Scene,tt0257076 MBeBFVoomg8,2003.0,4,10,2018,S.W.A.T.,Answering the Call Scene,tt0257076 raSWINBYtuc,2003.0,8,10,2018,S.W.A.T.,Sixth Street Landing Scene,tt0257076 G61d-lcbLT4,2003.0,5,10,2018,S.W.A.T.,Sniping the Transport Scene,tt0257076 9ykMeXdU_Ng,1955.0,3,10,2018,Mister Roberts,What Do You Really Think of Me? Scene,tt0048380 4DKTOdul0_I,1955.0,4,10,2018,Mister Roberts,What's Your Name Again? Scene,tt0048380 GHpQUOP8vcE,1955.0,1,10,2018,Mister Roberts,Nurse Watching Scene,tt0048380 PTQLBv8sgDI,1955.0,2,10,2018,Mister Roberts,Making Scotch Scene,tt0048380 lCF6_l8gtdA,1955.0,8,10,2018,Mister Roberts,You Stabbed Me in the Back Scene,tt0048380 NZzeLRspnMg,1955.0,9,10,2018,Mister Roberts,A Letter From Roberts Scene,tt0048380 ALSUu2CSBOg,1955.0,7,10,2018,Mister Roberts,A Soapy Explosion Scene,tt0048380 PPhxsJho48c,1955.0,5,10,2018,Mister Roberts,Beautiful Visitors Scene,tt0048380 qFH0mR6eVLg,1955.0,10,10,2018,Mister Roberts,Pulver Takes a Stand Scene,tt0048380 -rkhqMzCUnA,1955.0,6,10,2018,Mister Roberts,A Firecracker Scene,tt0048380 OHCVQcnqGcY,2001.0,6,8,2018,See Spot Run,This Is Satan's Dog Scene,tt0250720 ivG26TnBWGI,2001.0,7,8,2018,See Spot Run,The Mailman Fights Back Scene,tt0250720 Z0Fm3Ym-aJM,2001.0,4,8,2018,See Spot Run,We're a Team Scene,tt0250720 z2NhPvlzjcg,2001.0,1,8,2018,See Spot Run,Dog Town Scene,tt0250720 E6AYVGKx6Es,2001.0,5,8,2018,See Spot Run,Whose Dog Is That? Scene,tt0250720 Kpxk3UkX5s4,2001.0,2,8,2018,See Spot Run,Giving Sugar to a Child Scene,tt0250720 tD8f4Xk30bg,2001.0,3,8,2018,See Spot Run,The FBI's Top Dog Scene,tt0250720 g8hPeRFRiHY,2001.0,8,8,2018,See Spot Run,He Needs a Family Scene,tt0250720 e0UZ0rc0KH4,1978.0,6,10,2018,Big Wednesday,"Goodbye, Jack Scene",tt0077235 FAK7ssvx3oE,1978.0,2,10,2018,Big Wednesday,Summer Surfing Scene,tt0077235 iaCvBhskyk0,1978.0,3,10,2018,Big Wednesday,Get off the Beach Scene,tt0077235 5T17qRlPIiA,1978.0,9,10,2018,Big Wednesday,Matt's Big Wave Scene,tt0077235 2WJjBuXiXK0,1978.0,7,10,2018,Big Wednesday,Remembering Waxer Scene,tt0077235 gUeHamRZkSY,1978.0,5,10,2018,Big Wednesday,Avoiding the Draft Scene,tt0077235 6moZJqA4iuc,1978.0,10,10,2018,Big Wednesday,The Hottest Ride Ever Scene,tt0077235 mfkzA9zjRdM,1978.0,8,10,2018,Big Wednesday,Reunited Scene,tt0077235 0B3lnfdJ_iE,1978.0,1,10,2018,Big Wednesday,This Is Matt Johnson Scene,tt0077235 AN21TljYB8E,1978.0,4,10,2018,Big Wednesday,I'm a Screw Up Scene,tt0077235 pE0vTejjWuk,1942.0,3,8,2018,Cat People,Instrument of Death Scene,tt0034587 cRpMdH1D55o,1942.0,7,8,2018,Cat People,A Deadly Kiss Scene,tt0034587 16xSXPPqBfM,1942.0,2,8,2018,Cat People,Frightened to Death Scene,tt0034587 lz98akbX_NE,1942.0,5,8,2018,Cat People,Pool of Terror,tt0034587 Wf6feYvdHs4,1942.0,1,8,2018,Cat People,Cats Know Who's Not Right Scene,tt0034587 yiOUEU4KG6s,1942.0,6,8,2018,Cat People,Leave Us in Peace Scene,tt0034587 DrrwX4AnbMk,1942.0,8,8,2018,Cat People,Killed by Her Own Kind Scene,tt0034587 RFtZAVgf1Yg,1942.0,4,8,2018,Cat People,Stalked Scene,tt0034587 ctd3NPx1pdM,1944.0,8,8,2018,Gaslight,A Wife's Revenge Scene,tt0036855 BICqcEvzhVw,1944.0,5,8,2018,Gaslight,You Think I'm Insane Scene,tt0036855 Fp5iPmpZiNE,1944.0,6,8,2018,Gaslight,You're Being Driven Insane Scene,tt0036855 6o8Eq0LEpf0,1944.0,3,8,2018,Gaslight,The Missing Painting Scene,tt0036855 ty68MEZQPS0,1944.0,1,8,2018,Gaslight,Bloodthirsty Bessie Scene,tt0036855 eIlzY-UcYZU,1944.0,2,8,2018,Gaslight,Flirting with the Maid Scene,tt0036855 kFhDGoJh4O4,1944.0,7,8,2018,Gaslight,Did I Dream? Scene,tt0036855 _HoKFu0orAs,1944.0,4,8,2018,Gaslight,I'm Frightened of Myself Scene,tt0036855 zNT4XSI1doU,1974.0,2,7,2018,It's Alive,Monster in the Milk Truck Scene,tt0071675 PvEongWRs5Q,1974.0,1,7,2018,It's Alive,The Birth from Hell Scene,tt0071675 jaSSXV5AFHk,1979.0,4,7,2018,It's Alive,No Relation to Me Scene,tt0071675 ilRq_PR6oi4,1979.0,5,7,2018,It's Alive,Bloody Playtime Scene,tt0071675 aTSa6E4_Zgs,1979.0,7,7,2018,It's Alive,A Father's Love Scene,tt0071675 _gVrJIUmCqU,1974.0,3,7,2018,It's Alive,The Davis Monster Scene,tt0071675 wxlD2wwIgVk,1979.0,6,7,2018,It's Alive,Something's in the Cradle Scene,tt0071675 t3mwyiOBDrk,1979.0,7,9,2018,The Great Santini,Put Him on the Deck Scene,tt0079239 MxDtKTClKGI,1979.0,5,9,2018,The Great Santini,Mama's Boy Scene,tt0079239 WnrOQRdqiQ4,1979.0,1,9,2018,The Great Santini,Bull Meechum Don't Try Scene,tt0079239 JJ0IOFvfu3Q,1979.0,3,9,2018,The Great Santini,Surprise Bathroom Attack Scene,tt0079239 w294_yaM85M,1979.0,6,9,2018,The Great Santini,To My Son Scene,tt0079239 droww43JVyA,1979.0,4,9,2018,The Great Santini,Hack It or Pack It Scene,tt0079239 fz_9uPJnGEQ,1979.0,9,9,2018,The Great Santini,Comforting Ben Scene,tt0079239 LgNSetWhfhw,1979.0,8,9,2018,The Great Santini,You Disobeyed a Direct Order Scene,tt0079239 Pj2K4FrqTmw,1979.0,2,9,2018,The Great Santini,Marine Kids Scene,tt0079239 5Zpj9911g6I,2017.0,1,10,2018,Trophy,Rhino Horn Cutting Scene,tt6333066 EVy-c7ZaMvI,2017.0,9,10,2018,Trophy,Cecil the Lion Scene,tt6333066 _jl40Gzivhs,2017.0,10,10,2018,Trophy,This Is My Scene,tt6333066 dtQLSM8VvfU,2017.0,3,10,2018,Trophy,Millions of Dollars in Rhino Horns Scene,tt6333066 6IdswAQLBKk,2017.0,7,10,2018,Trophy,It Doesn't Have the Quality Scene,tt6333066 5bTmqPTQPOg,2017.0,2,10,2018,Trophy,Hunting Convention Scene,tt6333066 oBeMUEkfDtk,2017.0,4,10,2018,Trophy,"It's Not Sport, It's Just Killing Scene",tt6333066 HgqmQ4RN9vo,2017.0,5,10,2018,Trophy,Killing a Croc Scene,tt6333066 VcH7mgvr2jY,2017.0,8,10,2018,Trophy,Anti-Poaching Raid Scene,tt6333066 TV1QrgMYa3M,2017.0,6,10,2018,Trophy,They Become Like a Friend Scene,tt6333066 wmEQUpu_zeA,2015.0,4,10,2018,Motivation 2: The Chris Cole Story,Skating Love Park Scene,tt4397414 io8KUjovuYo,2015.0,10,10,2018,Motivation 2: The Chris Cole Story,Chris's Legacy Scene,tt4397414 lZrD7xTi8Ss,2015.0,5,10,2018,Motivation 2: The Chris Cole Story,Chris Enters the Philly Scene,tt4397414 5CrXuWBxVVk,2015.0,1,10,2018,Motivation 2: The Chris Cole Story,The Legend of Rodney Mullen Scene,tt4397414 PnNS71ethmI,2015.0,8,10,2018,Motivation 2: The Chris Cole Story,The Most Brutal Grilling Scene,tt4397414 ddGbf6I8UH4,2015.0,2,10,2018,Motivation 2: The Chris Cole Story,The Demo Tapes Scene,tt4397414 wUkrRABqkzg,2015.0,6,10,2018,Motivation 2: The Chris Cole Story,Jumping the Gap Scene,tt4397414 OC6SxQVSMHo,2015.0,3,10,2018,Motivation 2: The Chris Cole Story,Meeting Your Heroes Scene,tt4397414 lK8cWFLr5qE,2015.0,9,10,2018,Motivation 2: The Chris Cole Story,Shut Up and Skate Scene,tt4397414 UW80kY7-HkY,2015.0,7,10,2018,Motivation 2: The Chris Cole Story,Meeting Bam Margera Scene,tt4397414 KnI9MBbPCT8,2017.0,2,10,2018,Wonder Woman,War Comes to Themyscira Scene,tt0451279 c2k_kuU84ro,2017.0,7,10,2018,Wonder Woman,Saving Veld Scene,tt0451279 QnDgw7XXaOU,2017.0,3,10,2018,Wonder Woman,Typical Example of Your Sex Scene,tt0451279 pJCgeOAKXyg,2017.0,6,10,2018,Wonder Woman,No Man's Land Scene,tt0451279 1-9573qxk5g,2017.0,5,10,2018,Wonder Woman,Alleyway Fight Scene,tt0451279 jEav9DdL4iI,2017.0,4,10,2018,Wonder Woman,Dress Shopping Scene,tt0451279 _CuE3lto5XA,2017.0,9,10,2018,Wonder Woman,Steve Trevor's Sacrifice Scene,tt0451279 CNuEnlaPuls,2017.0,1,10,2018,Wonder Woman,Diana's Training Scene,tt0451279 0v74ANWBqv0,2017.0,10,10,2018,Wonder Woman,I Believe in Love Scene,tt0451279 FNA0Ejpu22Y,2017.0,8,10,2018,Wonder Woman,How to Dance Scene,tt0451279 TKpYtp4Io9U,2016.0,7,9,2018,The Legend of Tarzan,Tarzan vs. Mbonga Scene,tt0918940 hwe32v3I7R0,2016.0,2,9,2018,The Legend of Tarzan,Capturing Tarzan Scene,tt0918940 QYUhwlQe0IU,2016.0,9,9,2018,The Legend of Tarzan,The Future Belongs to Me Scene,tt0918940 9ecrIMjE4GQ,2016.0,5,9,2018,The Legend of Tarzan,Hippo River Escape Scene,tt0918940 E7mB8U4nCCU,2016.0,3,9,2018,The Legend of Tarzan,Train Fight Scene,tt0918940 Yz7PedIGC6A,2016.0,4,9,2018,The Legend of Tarzan,Battle with Akut Scene,tt0918940 rTvJrOUuOTM,2016.0,8,9,2018,The Legend of Tarzan,Wildebeest Stampede Scene,tt0918940 hIMv_pWXqFY,2016.0,1,9,2018,The Legend of Tarzan,Jane Meets Tarzan Scene,tt0918940 pXQjNz6Pyzo,2016.0,6,9,2018,The Legend of Tarzan,Rescuing Akut Scene,tt0918940 ueeK1V8j-WQ,2001.0,1,10,2018,Jason X,A Prisoner Named Jason Scene,tt0211443 iog7zMkTVmQ,2001.0,9,10,2018,Jason X,Uber Jason Scene,tt0211443 4f7U_YO0fVc,2001.0,10,10,2018,Jason X,Jason's College Girl Weakness Scene,tt0211443 K2zen737biU,2001.0,2,10,2018,Jason X,A Frozen Friday Scene,tt0211443 285uHkPZOkE,2001.0,4,10,2018,Jason X,Jason Plays Deathmatch Scene,tt0211443 m-5pPy7zuyc,2001.0,3,10,2018,Jason X,Face Freeze Death Scene,tt0211443 SP8YbyZwVeQ,2001.0,8,10,2018,Jason X,Jason vs. Warrior Woman Android Scene,tt0211443 gdkJ2WwMhAg,2001.0,5,10,2018,Jason X,Space Marines vs. Jason Scene,tt0211443 jBxvOT0p-1k,2001.0,6,10,2018,Jason X,He Just Wants His Machete Scene,tt0211443 P9_EB2_tUGA,2001.0,7,10,2018,Jason X,A Bad Time to Lose it Scene,tt0211443 srpCm9gPmZI,2016.0,5,5,2018,Killing Hasselhoff,Crushing It (Dance Hoff) Scene,tt2967226 Uz8w8WHmWMI,2016.0,1,5,2018,Killing Hasselhoff,Child Actor in the VIP Scene,tt2967226 lHxzWs9NcS0,2016.0,3,5,2018,Killing Hasselhoff,I'll Shoot the First White Dude Scene,tt2967226 1didVrNjTpQ,2016.0,2,5,2018,Killing Hasselhoff,Homosexual Hitman Scene,tt2967226 JSqbIAemGcs,2016.0,4,5,2018,Killing Hasselhoff,Killing Me Hoffly Scene,tt2967226 4HOgujwklBY,2016.0,3,5,2018,Countdown,Punching Out of the Precinct Scene,tt4872162 MVY7ci-BTI4,2016.0,1,5,2018,Countdown,Terrorist at WWE Match Scene,tt4872162 tAHCa87P8YI,2016.0,2,5,2018,Countdown,Bikinis and Bullets Scene,tt4872162 dcSalZZ5YjM,2016.0,5,5,2018,Countdown,Child Bomb Scene,tt4872162 jCSsP6ooQf8,2016.0,4,5,2018,Countdown,Perfect Timing Scene,tt4872162 zoo3aMvQdMw,2016.0,3,5,2018,Interrogation,White Supremacist Bar Scene,tt4497338 klpN-W3Z8Cw,2016.0,1,5,2018,Interrogation,5 Seconds to Reload Scene,tt4497338 1cHRBd6l2UM,2016.0,5,5,2018,Interrogation,If These Walls Could Explode Scene,tt4497338 QkKXJ82vfJU,2016.0,4,5,2018,Interrogation,Coked Up Nazi Knife Fight Scene,tt4497338 6H6RGCBUcf4,2016.0,2,5,2018,Interrogation,Server Room Fight Scene,tt4497338 sPlsA3_6hB8,2015.0,3,5,2018,12 Rounds 3: Lockdown,Hard Wired Scene,tt3957956 euCWQcrBwPY,2015.0,1,5,2018,12 Rounds 3: Lockdown,Bullet Soaked Sedan Scene,tt3957956 8PALGqaFoFI,2015.0,2,5,2018,12 Rounds 3: Lockdown,Firing Policy Scene,tt3957956 AQpPxTYahZo,2015.0,4,5,2018,12 Rounds 3: Lockdown,Rookie Mistake Scene,tt3957956 ZdhLQ1toP9s,2015.0,5,5,2018,12 Rounds 3: Lockdown,I Don't Play Nice Scene,tt3957956 C_06Kac9rpg,2017.0,8,10,2018,Pitch Perfect 3,Toxic Fight Scene,tt4765284 2aKkSYvLvXk,2017.0,2,10,2018,Pitch Perfect 3,Riff-Off Scene,tt4765284 3MhzaQnLhRY,2017.0,7,10,2018,Pitch Perfect 3,Meeting DJ Khaled Scene,tt4765284 VPaFRrTJZ4U,2017.0,6,10,2018,Pitch Perfect 3,"I Don't Like It, I Love It Scene",tt4765284 41BnkhKxWHA,2017.0,5,10,2018,Pitch Perfect 3,Destroying Khaled's Suite Scene,tt4765284 foV6LGohzBI,2017.0,10,10,2018,Pitch Perfect 3,Freedom! 90 Scene,tt4765284 5x1FeyWYp9s,2017.0,4,10,2018,Pitch Perfect 3,Cheap Thrills Scene,tt4765284 rxWQfQcLAUA,2017.0,3,10,2018,Pitch Perfect 3,Zombie Apocalypse Scene,tt4765284 gDVyEzQNvhU,2017.0,9,10,2018,Pitch Perfect 3,Fat Amy Saves the Day Scene,tt4765284 DyCfCl46JSE,2017.0,1,10,2018,Pitch Perfect 3,"Sit Still, Look Pretty Scene",tt4765284 qsyYw2x1-js,2018.0,7,9,2018,Insidious: The Last Key,Hands Off My Little Girl Scene,tt5726086 fKGjSXtCou4,2018.0,6,9,2018,Insidious: The Last Key,The Key Demon Scene,tt5726086 XHuo5etrwvY,2018.0,4,9,2018,Insidious: The Last Key,Silent Scream Scene,tt5726086 STh780YGgIo,2018.0,9,9,2018,Insidious: The Last Key,The Red Faced Demon Scene,tt5726086 ddQe0gG79zk,2018.0,1,9,2018,Insidious: The Last Key,It's Right in Front of You Scene,tt5726086 8pDCGWKvBlk,2018.0,2,9,2018,Insidious: The Last Key,The Chained Girl Scene,tt5726086 QS8fJMeJqsQ,2018.0,8,9,2018,Insidious: The Last Key,Through the Red Door Scene,tt5726086 5mcjt53aqlE,2018.0,3,9,2018,Insidious: The Last Key,Specs Runs For His Life Scene,tt5726086 bp5HRI2hEW0,2018.0,5,9,2018,Insidious: The Last Key,The Suitcase Horror Scene,tt5726086 gKJerAxfSzw,2018.0,10,10,2018,Proud Mary,The Mothering Type Scene,tt6421110 vdMEu03CjTk,2018.0,4,10,2018,Proud Mary,Nail Gun Torture Scene,tt6421110 IGFdF06VVF8,2018.0,8,10,2018,Proud Mary,Let Us Go Scene,tt6421110 2k6F2WITgac,2018.0,6,10,2018,Proud Mary,I Just Wanted Us Back Scene,tt6421110 oyuHdD6ORAg,2018.0,9,10,2018,Proud Mary,Rollin' and Reloadin' on the River Scene,tt6421110 DsMU1n2HUDo,2018.0,7,10,2018,Proud Mary,The Russian Mansion Raid Scene,tt6421110 hwevrtap9AY,2018.0,3,10,2018,Proud Mary,"Getting Fit, Getting Even Scene",tt6421110 _pH9HcBNO2I,2018.0,1,10,2018,Proud Mary,Danny's Hustle Scene,tt6421110 fAiJAcgjWeQ,2018.0,5,10,2018,Proud Mary,A Nice Fit Scene,tt6421110 C41s4A5Wq1Y,2018.0,2,10,2018,Proud Mary,A Visit From Mary Scene,tt6421110 s2TbUio6uF0,2017.0,9,10,2018,Only the Brave,It Should've Been Me Scene,tt3829920 nAbqTdINpOk,2017.0,3,10,2018,Only the Brave,The Water Drop Scene,tt3829920 vAaBuA-ZeuI,2017.0,10,10,2018,Only the Brave,In Memorial Scene,tt3829920 7p9YNPcOJ-4,2017.0,7,10,2018,Only the Brave,The Yarnell Hill Fire Scene,tt3829920 OkZ0AKNb82c,2017.0,4,10,2018,Only the Brave,The Dragon Fire Scene,tt3829920 BVAo7tAxtVw,2017.0,1,10,2018,Only the Brave,Trail of Hard Knocks Scene,tt3829920 aHoNp7pBeCA,2017.0,5,10,2018,Only the Brave,Saving the Heritage Tree Scene,tt3829920 Cre1DOpQFx8,2017.0,8,10,2018,Only the Brave,The Sacrifice of American Heroes Scene,tt3829920 XG3hNDnidfk,2017.0,2,10,2018,Only the Brave,The Granite Mountain Hotshots Scene,tt3829920 PIAvGkpGZXw,2017.0,6,10,2018,Only the Brave,Rattlesnake Bite Scene,tt3829920 vVqCU0iWlFM,2016.0,3,11,2018,La La Land,You're Fired Scene,tt3783958 DOmIpiTMs2w,2016.0,4,11,2018,La La Land,I Ran Scene,tt3783958 SY40M1lhknY,2016.0,11,11,2018,La La Land,A Different Ending Scene,tt3783958 7CVfTd-_qbc,2016.0,1,11,2018,La La Land,Another Day of Sun Scene,tt3783958 lNFbbWOM5FU,2016.0,6,11,2018,La La Land,Dancing in the Stars Scene,tt3783958 b65C_muXajk,2016.0,9,11,2018,La La Land,I'm Not Good Enough Scene,tt3783958 RHz9rXVt3cQ,2016.0,8,11,2018,La La Land,This is Not Your Dream Scene,tt3783958 FAmaskY8eXE,2016.0,10,11,2018,La La Land,Audition (The Fools Who Dream) Scene,tt3783958 wSOMPH85zvQ,2016.0,7,11,2018,La La Land,City of Stars Scene,tt3783958 cmkZeTX5fq0,2016.0,2,11,2018,La La Land,Someone in the Crowd Scene,tt3783958 _8w9rOpV3gc,2016.0,5,11,2018,La La Land,A Lovely Night Scene,tt3783958 M_7k0PCONF0,2017.0,5,9,2018,Wonder,The Not So Only Child Scene,tt0451279 zJMCctR8ivc,2017.0,2,9,2018,Wonder,Two Things About Yourself Scene,tt0451279 ZoL1epfoq-g,2017.0,3,9,2018,Wonder,My First Friend Scene,tt0451279 29VjYkPPY2s,2017.0,7,9,2018,Wonder,Jack Will's Redemption Scene,tt0451279 ceWNY5eNSWY,2017.0,1,9,2018,Wonder,School Tour Scene,tt0451279 l2zrJ_LZrhg,2017.0,9,9,2018,Wonder,Seventh Graders Attack Scene,tt0451279 vYH5urNq1Ao,2017.0,8,9,2018,Wonder,No Tolerance for Bullying Scene,tt0451279 C0KLb_v50-k,2017.0,4,9,2018,Wonder,There Are No Nice People Scene,tt0451279 AmCR7Owu6R8,2017.0,6,9,2018,Wonder,Miranda's Story Scene,tt0451279 nbssDN3Y75Q,2017.0,6,10,2018,Ghost in the Shell,The Ghost is Yours Scene,tt1219827 vOQ211AFtLU,2017.0,10,10,2018,Ghost in the Shell,Consent to Kill Scene,tt1219827 bNFWITNVAKU,2017.0,3,10,2018,Ghost in the Shell,Data Jump Scene,tt1219827 uPQcsSuWlB4,2017.0,4,10,2018,Ghost in the Shell,Strip Club Shootout Scene,tt1219827 Ct21N7taYlc,2017.0,5,10,2018,Ghost in the Shell,Invisible Chase Scene,tt1219827 sB1jRg2iQsg,2017.0,9,10,2018,Ghost in the Shell,The Spider-Tank Scene,tt1219827 fDcZoI_wy_w,2017.0,2,10,2018,Ghost in the Shell,The Jump Scene,tt1219827 V9mx4UV8DNc,2017.0,7,10,2018,Ghost in the Shell,To Kill a Fox Scene,tt1219827 OtjQUwKlR0U,2017.0,8,10,2018,Ghost in the Shell,The Truth About Us Scene,tt1219827 Cw9FQ_X-gP0,2017.0,1,10,2018,Ghost in the Shell,The Opening Scene,tt1219827 HjQPsZjrgkY,2017.0,6,8,2018,Shadowman,No Market for Landscapes Scene,tt4966046 mji8ZFst3ws,2017.0,7,8,2018,Shadowman,The Armani Show Scene,tt4966046 tB7Ml4tO7d4,2017.0,5,8,2018,Shadowman,Warhol & Basquiat Scene,tt4966046 UoNbV-qxEJE,2017.0,1,8,2018,Shadowman,Murder Paintings Scene,tt4966046 AmYSeovvscE,2017.0,8,8,2018,Shadowman,I Was Alive When I Died Scene,tt4966046 g0PEGEYvZd8,2017.0,2,8,2018,Shadowman,I Only Have Eyes for You Scene,tt4966046 mce5xJi8uH8,2017.0,4,8,2018,Shadowman,Is That What's in My Lungs? Scene,tt4966046 EaCGKhxR0P0,2017.0,3,8,2018,Shadowman,The Shadow People Scene,tt4966046 MtRlOvoq9Ls,2017.0,8,10,2018,Transformers: The Last Knight,The Judgement is Death Scene,tt3371366 MdoBOoR576Y,2017.0,3,10,2018,Transformers: The Last Knight,What's in That Pipe? Scene,tt3371366 M2E0xzfvDMw,2017.0,2,10,2018,Transformers: The Last Knight,The Town Battle Scene,tt3371366 KJtmyW2urUk,2017.0,1,10,2018,Transformers: The Last Knight,A One Robot Army Scene,tt3371366 rbrIQjVNl0E,2017.0,7,10,2018,Transformers: The Last Knight,Bumblebee vs Nemesis Prime Scene,tt3371366 OfnIw7Y8IUY,2017.0,5,10,2018,Transformers: The Last Knight,Undead Transformers Scene,tt3371366 4g_oMoSgIas,2017.0,9,10,2018,Transformers: The Last Knight,Optimus Arrives Scene,tt3371366 WS8Sc1nCi8U,2017.0,10,10,2018,Transformers: The Last Knight,Meet Your Maker Scene,tt3371366 DGOews8SVLw,2017.0,6,10,2018,Transformers: The Last Knight,Robot Road Rage Scene,tt3371366 2rSSxAdDhuU,2017.0,4,10,2018,Transformers: The Last Knight,Bumblebee Hates Nazis Scene,tt3371366 X3nIJPj_7J0,2017.0,5,6,2018,Bad Lucky Goat,The Police Are Stupid Scene,tt6094944 3s--5gsc4bs,2017.0,1,6,2018,Bad Lucky Goat,Speed Trap Scam Scene,tt6094944 Yn8ZE58MFEc,2017.0,2,6,2018,Bad Lucky Goat,Watch Out for the Goat! Scene,tt6094944 5eNVHUxlR1Y,2017.0,3,6,2018,Bad Lucky Goat,The Butcher Scene,tt6094944 -XuS9JQgu4M,2017.0,6,6,2018,Bad Lucky Goat,Collection Plate Heist Scene,tt6094944 BuQKVYgI8S0,2017.0,4,6,2018,Bad Lucky Goat,"Bottles, Shells and Goat Heads Scene",tt6094944 kvBiMHIuFbw,2017.0,3,8,2018,The White King,The Frunza Twins Scene,tt4211312 6SAzrCAaFG8,2017.0,6,8,2018,The White King,Treasure or Tomb? Scene,tt4211312 oZVMUM4k29o,2017.0,7,8,2018,The White King,A Forgotten Dream Scene,tt4211312 oJAYU5a8zTs,2017.0,8,8,2018,The White King,A State Funeral Scene,tt4211312 7Ecvvu9ovIU,2017.0,2,8,2018,The White King,Pull the Trigger Scene,tt4211312 g50ARHr0mkA,2017.0,5,8,2018,The White King,The General's Mansion Scene,tt4211312 acBlGJZCIiQ,2017.0,1,8,2018,The White King,Lowest Form of Scum Scene,tt4211312 KM6fEMvPvqc,2017.0,4,8,2018,The White King,Battle Royale Scene,tt4211312 9v-2_YOVxGw,2014.0,8,10,2018,Teenage Mutant Ninja Turtles,Elevator Freestyle Scene,tt1291150 bY6jLt3owBQ,2016.0,1,10,2018,Teenage Mutant Ninja Turtles 2,Schoolgirl Spy Scene,tt3949660 lh5IiK9eQhA,2016.0,2,10,2018,Teenage Mutant Ninja Turtles 2,Turtle Tactical Truck Scene Movie,tt3949660 _OrEOa0TYTY,2016.0,5,10,2018,Teenage Mutant Ninja Turtles 2,Casey Meets the Turtles Scene,tt3949660 hITWJ6vE1os,2016.0,4,10,2018,Teenage Mutant Ninja Turtles 2,Saved by Casey Jones Scene,tt3949660 CdVuOYKr2cQ,2016.0,6,10,2018,Teenage Mutant Ninja Turtles 2,NYPD Escape Scene,tt3949660 npkzgnKAgXU,2016.0,10,10,2018,Teenage Mutant Ninja Turtles 2,Fighting Krang Scene,tt3949660 HkXGq2kJAlM,2016.0,9,10,2018,Teenage Mutant Ninja Turtles 2,Krang & The Technodrome Scene,tt3949660 lKStI-3GHDc,2016.0,8,10,2018,Teenage Mutant Ninja Turtles 2,Mutant vs Mutant Scene,tt3949660 4xg-5TeGvQY,2016.0,7,10,2018,Teenage Mutant Ninja Turtles 2,Turtles Can Fly Scene,tt3949660 6MJJXdBz1q0,2016.0,3,10,2018,Teenage Mutant Ninja Turtles 2,Bebop & Rocksteady Scene,tt3949660 -W_4EZvbrEI,2014.0,6,10,2018,Teenage Mutant Ninja Turtles,Snow Mountain Chase Scene,tt1291150 OLZhL2R4cfg,2014.0,2,10,2018,Teenage Mutant Ninja Turtles,April Meets the Turtles Scene,tt1291150 TKszvumsyFY,2014.0,9,10,2018,Teenage Mutant Ninja Turtles,Turtles Against Shredder Scene,tt1291150 SWgcv5EwMgI,2014.0,1,10,2018,Teenage Mutant Ninja Turtles,Subway Ninja Attack Scene,tt1291150 wKIL7__ybL0,2014.0,5,10,2018,Teenage Mutant Ninja Turtles,Raphael vs. Shredder Scene,tt1291150 3gLxv0qizPY,2014.0,7,10,2018,Teenage Mutant Ninja Turtles,Give 'Em Shell Scene,tt1291150 J3Sl8B7RzUg,2014.0,10,10,2018,Teenage Mutant Ninja Turtles,Shredder's Downfall Scene,tt1291150 ZyirxKE2aFs,2014.0,4,10,2018,Teenage Mutant Ninja Turtles,Splinter vs. Shredder Scene,tt1291150 1JHqVsXnQxQ,2014.0,3,10,2018,Teenage Mutant Ninja Turtles,Turtle Origin Story Scene,tt1291150 KKsaYBeEr1w,2016.0,6,6,2018,The Teacher,Seducing a Single Parent Scene,tt5061162 yadi1fTl4p0,2016.0,2,6,2018,The Teacher,Danke Schon Scene,tt5061162 wcN3fX7oiSQ,2016.0,3,6,2018,The Teacher,Are You Threatening Me? Scene,tt5061162 3K3KlDWq-qo,2016.0,1,6,2018,The Teacher,Know Your Limits Scene,tt5061162 9KTEYDd0F7g,2016.0,4,6,2018,The Teacher,Suicide and Brutality Scene,tt5061162 OEvu7pkH8o4,2016.0,5,6,2018,The Teacher,His Mother Betrayed Him Scene,tt5061162 xmcpR-iaa7o,2016.0,7,8,2018,Apprentice,A Life of Mistakes Scene,tt5529680 ctB6OIa3Pz0,2016.0,2,8,2018,Apprentice,Learning the Ropes Scene,tt5529680 j6kHHLVRPak,2016.0,1,8,2018,Apprentice,The Hangman Scene,tt5529680 ZiNx61K8QT8,2016.0,6,8,2018,Apprentice,Sins of the Father Scene,tt5529680 2aTxwlSE2mw,2016.0,3,8,2018,Apprentice,Deadman's Family Scene,tt5529680 8wMS2SCtVM4,2016.0,4,8,2018,Apprentice,Hanging Innocent Men Scene,tt5529680 AfNCKS2a3nU,2016.0,5,8,2018,Apprentice,The First Hanging Scene,tt5529680 2-qyN66Kr24,2016.0,8,8,2018,Apprentice,The First of Many Scene,tt5529680 -0SHIbuEO3w,2017.0,3,10,2018,xXx: Return of Xander Cage,Jungle Skiing Scene,tt1293847 dMri-2QuZtI,2016.0,4,5,2018,Conduct! Every Move Counts,Prophets of Composition Scene,tt3773378 ESgYnVVq9AY,2016.0,5,5,2018,Conduct! Every Move Counts,The Final Rehearsal Scene,tt3773378 VDwI61e2_6I,2015.0,2,10,2018,Area 51,Breaking and Entering Scene,tt1519461 jh_EME9M-mg,2015.0,8,10,2018,Area 51,Alien Playroom Scene,tt1519461 Sy_thm1fviY,2015.0,5,10,2018,Area 51,Hidden in the Showers Scene,tt1519461 duU5cdQtpSE,2015.0,4,10,2018,Area 51,Sneaking Onto the Base Scene,tt1519461 GVqoyzJUzJk,2015.0,9,10,2018,Area 51,Hunted By Aliens Scene,tt1519461 qj3TqaXp2Mg,2015.0,7,10,2018,Area 51,A Real UFO Scene,tt1519461 QvVUxPcMZQE,2015.0,6,10,2018,Area 51,The Horrors in the Lab Scene,tt1519461 yAo3144gBw4,2015.0,3,10,2018,Area 51,The Family Comes Home Scene,tt1519461 KwfnVFtdn_E,2015.0,1,10,2018,Area 51,Disappearing Friend Scene,tt1519461 ICJi_nMcUQc,2015.0,10,10,2018,Area 51,Abducted Scene,tt1519461 nXV8YHeJfOs,2017.0,9,10,2018,xXx: Return of Xander Cage,The Return of Darius Stone Scene,tt1293847 eAp8Vm19uQU,2017.0,2,10,2018,xXx: Return of Xander Cage,Board Meeting Bloodbath Scene,tt1293847 9T7zP4Ui9VE,2017.0,1,10,2018,xXx: Return of Xander Cage,Soccer Soldier Scene,tt1293847 PRk69Z74hPs,2017.0,6,10,2018,xXx: Return of Xander Cage,Ski-Bike Chase Scene,tt1293847 r29P93wUiMg,2017.0,8,10,2018,xXx: Return of Xander Cage,Deadly Girls With Guns Scene,tt1293847 eg8WzaSrZpg,2017.0,7,10,2018,xXx: Return of Xander Cage,Cars vs. Fists Scene,tt1293847 VdAC6kNpXeM,2017.0,10,10,2018,xXx: Return of Xander Cage,I Live for This Scene,tt1293847 vq6ofw0hqkU,2017.0,4,10,2018,xXx: Return of Xander Cage,Grenade Roulette Scene,tt1293847 oS6AtbHHjSo,2017.0,5,10,2018,xXx: Return of Xander Cage,Motorbike Bar Fight,tt1293847 M9C1xAQdSKk,2016.0,2,5,2018,Conduct! Every Move Counts,The Shape of Music Scene,tt3773378 chCsCDHJZtY,2016.0,1,5,2018,Conduct! Every Move Counts,The Competition Roster Scene,tt3773378 pLXw-1RPsJs,2016.0,3,5,2018,Conduct! Every Move Counts,The Young Conductor Scene,tt3773378 2pw_36yxgXI,2017.0,3,10,2018,Jumanji: Welcome to the Jungle,Learning to Pee Scene,tt2283362 C0NVo07t9UI,2017.0,1,10,2018,Jumanji: Welcome to the Jungle,Choose Your Character Scene,tt2283362 iKduvC0uNs8,2017.0,10,10,2018,Jumanji: Welcome to the Jungle,Saving Jumanji Scene,tt2283362 vhEOInyNr54,2017.0,9,10,2018,Jumanji: Welcome to the Jungle,I'm Into You Scene,tt2283362 w5yJV_TKOWg,2017.0,7,10,2018,Jumanji: Welcome to the Jungle,"Run, Fridge, Run Scene",tt2283362 V3Gnq8VFai4,2017.0,2,10,2018,Jumanji: Welcome to the Jungle,Motorcycle Assault Scene,tt2283362 Vx0MQxIFBW8,2017.0,5,10,2018,Jumanji: Welcome to the Jungle,Dance Fighting Scene,tt2283362 IB7BvgXIKOs,2017.0,4,10,2018,Jumanji: Welcome to the Jungle,How to Be Sexy Scene,tt2283362 rKh4muRk_s0,2017.0,6,10,2018,Jumanji: Welcome to the Jungle,Helicopter Rhino Chase Scene,tt2283362 5YgMl4JQxKw,2017.0,8,10,2018,Jumanji: Welcome to the Jungle,CPR Excitement Scene,tt2283362 bN7jTZKITG8,2016.0,3,10,2018,Swing State,Lobster & Flirtation Scene,tt5301544 IXOq5goG2G0,2016.0,1,10,2018,Swing State,The Conservative Liberal Scene,tt5301544 vTUM5grJwTE,2016.0,5,10,2018,Swing State,Interview with Dick Scene,tt5301544 0w8oeXvLXOw,2016.0,7,8,2018,Suicide Squad,Diablo vs. Incubus Scene,tt1386697 nCw-UbptqD4,2017.0,10,10,2018,F... the Prom,More Than Friends Scene,tt5612742 S-2cloMm4Lk,2016.0,3,8,2018,Suicide Squad,Deadshot Frenzy Scene,tt1386697 _bS2cHSqgnE,2016.0,1,8,2018,Suicide Squad,King and Queen of Crime Scene,tt1386697 T2IZiCyLFmI,2016.0,4,8,2018,Suicide Squad,Office Building Battle Scene,tt1386697 g5-KsABvVzU,2016.0,6,8,2018,Suicide Squad,The Villain Bar Scene,tt1386697 wdcRrpMHIGM,2016.0,8,8,2018,Suicide Squad,Ending the Enchantress Scene,tt1386697 gQATrdAXELg,2016.0,5,8,2018,Suicide Squad,Kill Harley Quinn Scene,tt1386697 Q0IHL6WGFY0,2016.0,2,8,2018,Suicide Squad,A Visit From The Joker Scene,tt1386697 BK9Rn_s8idI,2017.0,4,10,2018,F... the Prom,The Outcasts Scene,tt5612742 PR1WWVvDs3s,2017.0,5,10,2018,F... the Prom,Guaranteed to Get Laid Scene,tt5612742 -yMT2S8fJ9g,2017.0,3,10,2018,F... the Prom,Losers and Victims Scene,tt5612742 MPY58gIH65M,2017.0,6,10,2018,F... the Prom,The Legend of Stuffs Scene,tt5612742 M-LhdLDYOps,2017.0,9,10,2018,F... the Prom,Tighty Lives! Scene,tt5612742 JfJSwQkRgbk,2017.0,7,10,2018,F... the Prom,Prom Sabotage Sabotaged Scene,tt5612742 w0A-YZ0Yd2Q,2017.0,8,10,2018,F... the Prom,Prom Gets Carrie'd Away Scene,tt5612742 aF4SahLqcxw,2017.0,2,10,2018,F... the Prom,Bad Besties Scene,tt5612742 cvuTnguNL8g,2017.0,1,10,2018,F... the Prom,The Beginning of the End Scene,tt5612742 UTGEXJSxPvY,2016.0,8,10,2018,Swing State,Swing That Way Scene,tt5301544 aqTS6jAqmUA,2016.0,4,10,2018,Swing State,The Show Must Go On Scene,tt5301544 EhyXopafOeA,2016.0,2,10,2018,Swing State,Liberal Crybabies Scene,tt5301544 wyRpsUOH4f0,2016.0,9,10,2018,Swing State,Charles Must Die Scene,tt5301544 BYQ0Q0oqYOA,2016.0,10,10,2018,Swing State,Right Wing Martyr Scene,tt5301544 KtEzZuRX23M,2016.0,7,10,2018,Swing State,I'm Charles Fern Scene,tt5301544 y3E0ot-4Egw,2016.0,6,10,2018,Swing State,Right-Wing Seduction Scene,tt5301544 3wjBPKUDk_Y,2017.0,10,10,2018,Fits and Starts,I Don't Write For You Scene,tt4848010 1spvdwcb7jg,2017.0,7,10,2018,Fits and Starts,Challenging Literature Scene,tt4848010 UYhBmdQ0VWc,2017.0,3,10,2018,Fits and Starts,I Lost My Wife Scene,tt4848010 -QGGk3M5S3c,2017.0,5,10,2018,Fits and Starts,Do You Like It? Scene,tt4848010 tJwt-LcbRIw,2017.0,9,10,2018,Fits and Starts,"Shave The Beard, Sell The Book Scene",tt4848010 xmbmcfVs1u4,2017.0,2,10,2018,Fits and Starts,Roadside Romance Scene,tt4848010 AaF3SiD4IYM,2017.0,1,10,2018,Fits and Starts,The Wheelshare Incident Scene,tt4848010 BpP_rFPFUPM,2017.0,4,10,2018,Fits and Starts,Bruce Wayne the Dentist Scene,tt4848010 PSWftrnsEcU,2017.0,6,10,2018,Fits and Starts,A Real Firecracker Scene,tt4848010 4l4OmZk59Gc,2017.0,8,10,2018,Fits and Starts,What's the Kinkiest Thing You've Done? Scene,tt4848010 bPL9A5VyKrY,2014.0,2,10,2018,Harmontown,Spencer the Dungeon Master Scene,tt3518988 oP_Y5LgieXA,2014.0,8,10,2018,Harmontown,The Nerd King Scene,tt3518988 mWB4xc6-Pdk,2014.0,6,10,2018,Harmontown,Moonshine Dan Scene,tt3518988 X_7TJFVH3R4,2014.0,3,10,2018,Harmontown,Heat Vision and Jack Scene,tt3518988 7X59lLfqm3c,2014.0,9,10,2018,Harmontown,The Creation of Community Scene,tt3518988 wZ6Dlo8z04I,2014.0,1,10,2018,Harmontown,Who's Dan Harmon? Scene,tt3518988 Ku3KKPEi-Ag,2014.0,4,10,2018,Harmontown,A High Dungeon Master Scene,tt3518988 wHgeI9HnroU,2014.0,5,10,2018,Harmontown,The Sarah Silverman Show Scene,tt3518988 iQPvgoJ5l2s,2014.0,10,10,2018,Harmontown,The Big Fight Scene,tt3518988 cgGOnelqMi8,2014.0,7,10,2018,Harmontown,Pranking Chevy Chase Scene,tt3518988 AUCbYHVFnf0,2015.0,1,10,2018,Toonstone,Matthew McCoughna-Horse Scene,tt1754767 23zu-1Nsqg4,2013.0,8,9,2018,Coal Rush,Coal Killed Our Daughter Scene,tt1540115 Uz6jhOP_nm8,2013.0,2,9,2018,Coal Rush,Don't Apologize for Them Scene,tt1540115 W08YzBOfqV8,2013.0,5,9,2018,Coal Rush,It's Starting to Burn Scene,tt1540115 P-SVl6Ql7xU,2013.0,7,9,2018,Coal Rush,Blankenship's Deposition Scene,tt1540115 CsfBuhXV2lA,2013.0,9,9,2018,Coal Rush,Massey Settles Scene,tt1540115 KC2YLhHiXv4,2015.0,4,10,2018,Toonstone,Attempted Jailbreak Scene,tt1754767 nyJ00UjcA0c,2015.0,6,10,2018,Toonstone,She Wants to Make Love To Ya Scene,tt1754767 aB5g_U4qo_Q,2015.0,3,10,2018,Toonstone,Gunslinging Practice Scene,tt1754767 Uxo5LmSDK34,2015.0,7,10,2018,Toonstone,Jawless & Lawless Scene,tt1754767 7Mz5jmOePsk,2015.0,10,10,2018,Toonstone,Alien Attack Scene,tt1754767 NO9Qt8NB7JQ,2015.0,2,10,2018,Toonstone,Deputy Horse Scene,tt1754767 A9MNy__qBaQ,2015.0,8,10,2018,Toonstone,Horse Interruption Scene,tt1754767 rBy7ZDob8a8,2015.0,9,10,2018,Toonstone,Gun vs. Apple Scene,tt1754767 D4x3BaaJ2gY,2015.0,5,10,2018,Toonstone,Do Something Cool Scene,tt1754767 91GNWPp-a38,2017.0,9,9,2018,Everything Beautiful Is Far Away,I Want a Body Scene,tt3605266 T8qZ73IazvY,2017.0,4,9,2018,Everything Beautiful Is Far Away,Three's a Crowd Scene,tt3605266 Ri408Ie3zQs,2017.0,3,9,2018,Everything Beautiful Is Far Away,Someone New Scene,tt3605266 vKT_HKcwxFY,2017.0,7,9,2018,Everything Beautiful Is Far Away,You'll Be Dead in 30 Seconds Scene,tt3605266 HBYW2199vpo,2017.0,6,9,2018,Everything Beautiful Is Far Away,I Like You Scene,tt3605266 wNuVF4lnszE,2017.0,5,9,2018,Everything Beautiful Is Far Away,Desert Fun Scene,tt3605266 AGi49DPszHg,2017.0,8,9,2018,Everything Beautiful Is Far Away,The Crystal Lake Scene,tt3605266 snkc0SvbR4M,2017.0,1,9,2018,Everything Beautiful Is Far Away,Forbidden Fruit Scene,tt3605266 sxyaSXAF5kI,2017.0,2,9,2018,Everything Beautiful Is Far Away,Susan the Robot Scene,tt3605266 nL3o4MGY9NQ,2017.0,2,10,2018,Blade Runner 2049,Real Joi Scene,tt1856101 jUgr32wtqiM,2013.0,3,9,2018,Coal Rush,Perpetual Victims Scene,tt1540115 cj8XKnVdCDs,2013.0,1,9,2018,Coal Rush,Bad Water Scene,tt1540115 YZN59OZIz30,2013.0,4,9,2018,Coal Rush,Massey Energy v. the People Scene,tt1540115 LSUPf57En54,2013.0,6,9,2018,Coal Rush,Slurry in the Stream Scene,tt1540115 ZjEnS3hA1B4,2017.0,3,10,2018,Blade Runner 2049,The Scrapyard Ambush Scene,tt1856101 eCvY-ualWwY,2017.0,9,10,2018,Blade Runner 2049,Luv's Goodbye Scene,tt1856101 E_PIi8tRcCo,2017.0,4,10,2018,Blade Runner 2049,The Memory Maker Scene,tt1856101 I4_AaEazcbk,2017.0,7,10,2018,Blade Runner 2049,They Found Us Scene,tt1856101 lIbKD5ovjok,2017.0,5,10,2018,Blade Runner 2049,I Had to Kill You Scene,tt1856101 PLgNzEctkO4,2017.0,10,10,2018,Blade Runner 2049,The Best Memories Are Hers Scene,tt1856101 bbX5KM0tFVk,2017.0,1,10,2018,Blade Runner 2049,Sapper's Last Stand Scene,tt1856101 tJya-fbl4R8,2017.0,6,10,2018,Blade Runner 2049,Finding Rick Deckard Scene,tt1856101 BLSFQUjyBQo,2017.0,8,10,2018,Blade Runner 2049,K vs. Luv Scene,tt1856101 YFIIcUg_C4I,2017.0,3,10,2018,The Emoji Movie,A Helping Hand Scene,tt4877122 OIf1BFh8UwA,2017.0,4,10,2018,The Emoji Movie,Cheese & Hackers Scene,tt4877122 cbH10o2VTXI,2017.0,1,10,2018,The Emoji Movie,Intro to Textopolis Scene,tt4877122 nWwlcubR7s0,2017.0,7,10,2018,The Emoji Movie,Fireball and the Firewall Scene,tt4877122 jXIFh5Gwqno,2017.0,5,10,2018,The Emoji Movie,Candy Crush Scene,tt4877122 -vvxRiJkXAs,2017.0,9,10,2018,The Emoji Movie,Smiler's Revenge Scene,tt4877122 1Pk2FQUbnm0,2017.0,10,10,2018,The Emoji Movie,A New Face Scene,tt4877122 xzBC35K-vug,2017.0,6,10,2018,The Emoji Movie,Just Dance Scene,tt4877122 WEwS34zf8mk,2017.0,2,10,2018,The Emoji Movie,Making the Wrong Face Scene,tt4877122 nYvvM0FXKWQ,2017.0,8,10,2018,The Emoji Movie,Birds Love Princesses Scene,tt4877122 JVRdRQaccL0,2011.0,3,8,2018,Super 8,Gas Station Terror Scene,tt1650062 DtuXEqWdWCI,2011.0,6,8,2018,Super 8,Tanks Invade the Neighborhood Scene,tt1650062 u1MRGbWEI9M,2011.0,5,8,2018,Super 8,Allie is Abducted Scene,tt1650062 fWgpZ_2oYfE,2011.0,1,8,2018,Super 8,Train Crash Scene,tt1650062 KFzIZnYLKSo,2011.0,8,8,2018,Super 8,Final Goodbye Scene,tt1650062 ekSSp-zvdgk,2011.0,7,8,2018,Super 8,The Creature's Lair Scene,tt1650062 n_3Fsg5qGfk,2011.0,2,8,2018,Super 8,He's Alive Scene,tt1650062 DRGjkQ_iBL8,2011.0,4,8,2018,Super 8,My Father's Fault Scene,tt1650062 ulFxMs35-P0,2017.0,9,10,2018,The Dark Tower,The Dixie Pig Shootout Scene,tt1648190 CtYTXG1RFQ0,2017.0,6,10,2018,The Dark Tower,Shoot With My Mind Scene,tt1648190 oIlpo2mj_qk,2017.0,7,10,2018,The Dark Tower,The Gunslinger's Creed Scene,tt1648190 Cn_70ds_Slw,2017.0,2,10,2018,The Dark Tower,Dutch Hill Mansion Demon Scene,tt1648190 w0qfQaJtF2E,2017.0,10,10,2018,The Dark Tower,Roland vs. The Man in Black Scene,tt1648190 vVmZO3W0I1A,2017.0,8,10,2018,The Dark Tower,Gunslinger in a Gun Store Scene,tt1648190 R7vFG7jQZGY,2017.0,1,10,2018,The Dark Tower,The Face of My Father Scene,tt1648190 5Cv1ENey4yU,2017.0,5,10,2018,The Dark Tower,The Taheen Attack Scene,tt1648190 y1-gPBJ-C_U,2017.0,3,10,2018,The Dark Tower,Fire & Darkness Scene,tt1648190 wWKQ2aOTfN0,2017.0,4,10,2018,The Dark Tower,Something Got Out Scene,tt1648190 mQTPziHf9Qc,2017.0,5,12,2018,The Hitman's Bodyguard,Beauty & Violence Scene,tt1959563 1mVk7wal9bk,2017.0,7,12,2018,The Hitman's Bodyguard,I Was Up Here Scene,tt1959563 Gh9kc9DiDnE,2017.0,12,12,2018,The Hitman's Bodyguard,You Shot My Bodyguard Scene,tt1959563 ISQMNhOd96w,2017.0,6,12,2018,The Hitman's Bodyguard,A Personal Touch Scene,tt1959563 q7tLJC4pC14,2017.0,9,12,2018,The Hitman's Bodyguard,The Key to Torture Scene,tt1959563 kTNDYiONld8,2017.0,8,12,2018,The Hitman's Bodyguard,Amsterdam Canal Chase Scene,tt1959563 sohDA6TQuiE,2017.0,10,12,2018,The Hitman's Bodyguard,Construction Site Chase Scene,tt1959563 9pF_vfzjbpY,2017.0,1,12,2018,The Hitman's Bodyguard,Convoy Hijacking Scene,tt1959563 hX-ezXejcU0,2017.0,11,12,2018,The Hitman's Bodyguard,Unkillable Scene,tt1959563 BCyz82L_61E,2017.0,2,12,2018,The Hitman's Bodyguard,Bodyguard vs. Hitman Fight Scene,tt1959563 UlxZ06150xI,2017.0,4,12,2018,The Hitman's Bodyguard,A Perfectly Laid Plan Scene,tt1959563 iLJtz-2nkGk,2017.0,3,12,2018,The Hitman's Bodyguard,Subtle Violence Scene,tt1959563 nbxAMHD0_dc,2015.0,2,10,2018,Alleluia! The Devil's Carnival,All Aboard Scene,tt3892618 21rlL3oxEIY,2015.0,5,10,2018,Alleluia! The Devil's Carnival,Forbidden Fruit Scene,tt3892618 6MIGRX1AVKo,2015.0,6,10,2018,Alleluia! The Devil's Carnival,Hitting on All Sevens Scene,tt3892618 U5XIY-s43aQ,2015.0,7,10,2018,Alleluia! The Devil's Carnival,Fair Game Scene,tt3892618 iLH6Fzd2V94,2015.0,4,10,2018,CODE: Debugging the Gender Gap,Coding for Children Scene,tt4335520 9lnovJPbLTc,2015.0,10,10,2018,CODE: Debugging the Gender Gap,Legacy & the Future Scene,tt4335520 gqe-oAUoEto,2017.0,2,10,2018,The Glass Castle,Sink or Swim Scene,tt2378507 zm9XOZXVyyU,2017.0,5,10,2018,The Glass Castle,Arm Wrestle for Your Honor Scene,tt2378507 wcjCEUeC8nk,2017.0,1,10,2018,The Glass Castle,Hospital Breakout Scene,tt2378507 H7tyPUAH1lo,2017.0,4,10,2018,The Glass Castle,You Can't Take Care of Us Scene,tt2378507 7l79p5apaqQ,2017.0,8,10,2018,The Glass Castle,She's a Big Girl Scene,tt2378507 B9r99FImuSc,2017.0,3,10,2018,The Glass Castle,The Nicest House in the County Scene,tt2378507 j_3wS3OIgc8,2017.0,7,10,2018,The Glass Castle,Throw Mama Out the Window Scene,tt2378507 qp-Jr4oEFWo,2017.0,9,10,2018,The Glass Castle,Never Want to See You Again Scene,tt2378507 Ed__PtLnaeo,2017.0,6,10,2018,The Glass Castle,Grandma's Rules Scene,tt2378507 F70k-PX3p0o,2017.0,10,10,2018,The Glass Castle,A Lot to Regret in My Life Scene,tt2378507 bTPrlCglvFo,2017.0,3,10,2018,My Little Pony: The Movie,I'm the Friend You Need Scene,tt4131800 KxoJQx_MgAc,2017.0,9,10,2018,My Little Pony: The Movie,Friendship is Sacrifice Scene,tt4131800 sH8nzHarprc,2017.0,2,10,2018,My Little Pony: The Movie,The Terror of Tempest Shadow Scene,tt4131800 yaWmlDjvMs8,2017.0,8,10,2018,My Little Pony: The Movie,Battle Ponies Scene,tt4131800 nSH_S3LDUYI,2017.0,10,10,2018,My Little Pony: The Movie,Rainbow Scene,tt4131800 XEF8mU3Vanc,2017.0,5,10,2018,My Little Pony: The Movie,Seaponies Scene,tt4131800 vhmFJKHhdw4,2017.0,7,10,2018,My Little Pony: The Movie,Open Up Your Eyes Scene,tt4131800 7VOpGn2RTP4,2017.0,1,10,2018,My Little Pony: The Movie,We Got This Together Scene,tt4131800 rsktGDtzKhg,2017.0,6,10,2018,My Little Pony: The Movie,One Small Thing Scene,tt4131800 2gUFZCRHHvE,2017.0,4,10,2018,My Little Pony: The Movie,Time to Be Awesome Scene,tt4131800 ccgVkEP4hLs,2015.0,9,10,2018,Alleluia! The Devil's Carnival,Bells of the Black Sunday Scene,tt3892618 1lVlP8o6t94,2015.0,10,10,2018,Alleluia! The Devil's Carnival,Hoof and Lap (Devil's Carnival) Scene,tt3892618 ql8RBlb-IJQ,2015.0,1,10,2018,Alleluia! The Devil's Carnival,Shovel & Bone Scene,tt3892618 rvYoAzmAcAI,2015.0,4,10,2018,Alleluia! The Devil's Carnival,The Midnight Rectory Scene,tt3892618 eesYEZ3pp5Q,2015.0,3,10,2018,Alleluia! The Devil's Carnival,Good Little Dictation Machines Scene,tt3892618 Ozg8nU5yyWc,2015.0,8,10,2018,Alleluia! The Devil's Carnival,After the Fall Scene,tt3892618 zDGDWdvLCrM,2015.0,5,10,2018,CODE: Debugging the Gender Gap,Black Girls Code Scene,tt4335520 kE8qSUcrrmk,2015.0,2,10,2018,CODE: Debugging the Gender Gap,Female Pioneers in Programming Scene,tt4335520 -c6nNzrAqs0,2015.0,3,10,2018,CODE: Debugging the Gender Gap,Code for Progress Scene,tt4335520 -EZS68nXwHo,2015.0,7,10,2018,CODE: Debugging the Gender Gap,Origin of Computer Bug Scene,tt4335520 YtprbvdApU4,2015.0,6,10,2018,CODE: Debugging the Gender Gap,You Are Not Your User Scene,tt4335520 U4fHvCvrTjQ,2015.0,8,10,2018,CODE: Debugging the Gender Gap,Stereotype Threat Scene,tt4335520 9w3jysNGqeA,2015.0,9,10,2018,CODE: Debugging the Gender Gap,Bullying in the Industry Scene,tt4335520 qULQCbfqJm8,2015.0,1,10,2018,CODE: Debugging the Gender Gap,What is Coding? Scene,tt4335520 9riBff-h-hM,2017.0,9,10,2017,Despicable Me 3,Bubblegum Rescue Scene,tt3469046 P94mqkWtfxU,2017.0,8,10,2017,Despicable Me 3,The Brothers' Heist Scene,tt3469046 _RG8hoGMxKw,2017.0,5,10,2017,Despicable Me 3,Minion Idol Scene,tt3469046 m9Gg_VQP2zw,2017.0,10,10,2017,Despicable Me 3,Dance Fight Scene,tt3469046 Ps3MsEdfpAw,2017.0,1,10,2017,Despicable Me 3,Balthazar vs. Gru Scene,tt3469046 yijQXDtxgic,2017.0,4,10,2017,Despicable Me 3,Was It Fluffy? Scene,tt3469046 C0H2SnzitoM,2017.0,6,10,2017,Despicable Me 3,Minions in Jail Scene,tt3469046 2tqG6KMgyv8,2017.0,7,10,2017,Despicable Me 3,Margo's Engagement Scene,tt3469046 B5goHV7tFnE,2017.0,3,10,2017,Despicable Me 3,Gru and Dru Scene,tt3469046 H9PmpwhBg8w,2017.0,2,10,2017,Despicable Me 3,A Minion Luau Scene,tt3469046 J4ZnYc3tNyw,2017.0,5,10,2017,Girls Trip,Swing Over Bourbon Street Scene,tt3564472 wXDgyuxBuBU,2017.0,1,10,2017,Girls Trip,Inappropriate White Friend Scene,tt3564472 193KvPnLO4I,2017.0,3,10,2017,Girls Trip,Lady Mouth Scene,tt3564472 kxvkI8K7fTo,2017.0,2,10,2017,Girls Trip,Where The Sun Don't Shine Scene,tt3564472 G8r48HzrYHE,2017.0,6,10,2017,Girls Trip,Grapefruiting Scene,tt3564472 FbV4VCCk3Sc,2017.0,9,10,2017,Girls Trip,Dance Battle to Bar Fight Scene,tt3564472 m0etOugqkPU,2017.0,8,10,2017,Girls Trip,Trippin in the Club Scene,tt3564472 N_aPyfiVWEE,2017.0,7,10,2017,Girls Trip,How to Treat a Sausage Scene,tt3564472 CYQXYJIN3Jw,2017.0,10,10,2017,Girls Trip,The Flossy Posse Breaks Up Scene,tt3564472 h4lbn5nDXwY,2017.0,4,10,2017,Girls Trip,I Will End You Scene,tt3564472 LQVzgO14oIU,2016.0,10,10,2017,Office Christmas Party,Too Fast and Furious Scene,tt1711525 I3XgtCzF5UY,2016.0,6,10,2017,Office Christmas Party,Dating Troubles Scene,tt1711525 y5_Q3HufngU,2016.0,7,10,2017,Office Christmas Party,Uber Mad Scene,tt1711525 UUDv-oUehMU,2016.0,3,10,2017,Office Christmas Party,DJ vs. HR Scene,tt1711525 sf1LMw0a95g,2016.0,2,10,2017,Office Christmas Party,Sibling Rivalry Scene,tt1711525 CJGeUFtiJP0,2016.0,4,10,2017,Office Christmas Party,Crazy Pimp Scene,tt1711525 j4OMpEp-bFk,2016.0,1,10,2017,Office Christmas Party,Christmas is Canceled Scene,tt1711525 tgpGrfh6gM8,2016.0,5,10,2017,Office Christmas Party,Egg Nog Luge Scene,tt1711525 OgqkqYeNbOM,2016.0,8,10,2017,Office Christmas Party,Shut Down Scene,tt1711525 km_nixuzb1A,2016.0,9,10,2017,Office Christmas Party,Members Only Scene,tt1711525 w3hwZ-7CWeg,2017.0,4,10,2017,Rings,Samara's Grave Scene,tt0498381 o9-cFlOdXn8,2017.0,5,10,2017,Rings,Death of Professor Gabriel Scene,tt0498381 YptUTTJjUVs,2017.0,3,10,2017,Rings,A New Tape Scene,tt0498381 _qbp2nGRp1Q,2017.0,9,10,2017,Rings,May The Lord Save You Scene,tt0498381 cwgaR1xDiyE,2017.0,8,10,2017,Rings,She Can't Hurt Me Scene,tt0498381 pN5RlyFWJBA,2017.0,10,10,2017,Rings,It's Never Over Scene,tt0498381 QiT-jk74QMw,2017.0,7,10,2017,Rings,Samara's Father Scene,tt0498381 _GJG2JDvCes,2017.0,2,10,2017,Rings,Fear the Flatscreen Scene,tt0498381 Pm_7ga5bxeI,2017.0,6,10,2017,Rings,Mother of a Ghost Scene,tt0498381 -p4TkuB20bs,2017.0,1,10,2017,Rings,In-Flight Movie Scene,tt0498381 vsU27J8K3Tw,2015.0,2,10,2017,Paranormal Activity: The Ghost Dimension,The Darkness Scene,tt2473510 iErVeElswus,2015.0,5,10,2017,Paranormal Activity: The Ghost Dimension,He's Gonna Take Me Away Scene,tt2473510 4F_jLtYFT6Y,2015.0,9,10,2017,Paranormal Activity: The Ghost Dimension,Exorcism Gone Wrong Scene,tt2473510 gBdbUMTXKIA,2015.0,7,10,2017,Paranormal Activity: The Ghost Dimension,The Portal Scene,tt2473510 UgtSRZHvyWY,2015.0,1,10,2017,Paranormal Activity: The Ghost Dimension,Backyard Ghost Scene,tt2473510 FPpYxPOjtsw,2015.0,10,10,2017,Paranormal Activity: The Ghost Dimension,Hi Toby Scene,tt2473510 mAD2gJTRSbI,2015.0,3,10,2017,Paranormal Activity: The Ghost Dimension,The Demon Appears Scene,tt2473510 KeiJDMd8loM,2015.0,6,10,2017,Paranormal Activity: The Ghost Dimension,Demon in the Kitchen Scene,tt2473510 GUw4G1lDGYE,2015.0,4,10,2017,Paranormal Activity: The Ghost Dimension,They're Watching Us Scene,tt2473510 v8kB6cqv8qM,2015.0,8,10,2017,Paranormal Activity: The Ghost Dimension,He Knows Scene,tt2473510 LKrcDYvwV1Q,2016.0,2,10,2017,The Conjuring 2,The Crooked Man Scene,tt3065204 Trx5K54MNp8,2016.0,6,10,2017,The Conjuring 2,Ghost in the Water Scene,tt3065204 W8EhiYDVPEU,2016.0,3,10,2017,The Conjuring 2,I Come From the Grave Scene,tt3065204 piYwvMvqXPg,2014.0,1,10,2017,Annabelle,While You Slept Scene,tt3322940 8Qw1dYiaCto,2014.0,7,10,2017,Annabelle,No Dolls in Church Scene,tt3322940 axWtCnuctw0,2014.0,3,10,2017,Annabelle,Rumble in the Darkness Scene,tt3322940 _8hB8umrGlo,2014.0,6,10,2017,Annabelle,Trapped by a Demon Scene,tt3322940 _2gI4vpq9fo,2014.0,2,10,2017,Annabelle,A Little Girl Ghost Scene,tt3322940 EPj1eq1csm4,2014.0,9,10,2017,Annabelle,What Do You Want? Scene,tt3322940 KTVlvs7mtkM,2014.0,8,10,2017,Annabelle,Have Mercy on Your Soul Scene,tt3322940 GfUqvGxa6YE,2014.0,10,10,2017,Annabelle,My Sacrifice Scene,tt3322940 NGkLen8TbHc,2014.0,4,10,2017,Annabelle,Devil on Your Back Scene,tt3322940 Csn39S3c0kI,2014.0,5,10,2017,Annabelle,Baby in the Carriage Scene,tt3322940 Pg_mCxaEa10,2016.0,2,8,2017,The Nice Guys,Fistfight at the Party Scene,tt3799694 7fxvOlQLJWo,2016.0,8,8,2017,The Nice Guys,The Year's Most Wanted Film Scene,tt3799694 3snpAmY2xeE,2016.0,6,8,2017,The Nice Guys,Cold Coffee Scene,tt3799694 Xdp-MXh84BA,2016.0,3,8,2017,The Nice Guys,You Ain't Got Long to Live Scene,tt3799694 bKWBb1_NJe8,2016.0,7,8,2017,The Nice Guys,Auto Show Shootout Scene,tt3799694 -wBOjw_08o8,2016.0,1,8,2017,The Nice Guys,Messenger Service Scene,tt3799694 1nwaifplKCI,2016.0,4,8,2017,The Nice Guys,Hotel Massacre Scene,tt3799694 QQAd5xx0XHc,2016.0,5,8,2017,The Nice Guys,John Boy Attacks Scene,tt3799694 AC9URVogG3g,2017.0,9,10,2017,Cult of Chucky,Andy vs. Chucky Scene,tt3280262 uQR_i0ydJik,2017.0,2,10,2017,Cult of Chucky,I'm a Toy From the 80s Scene,tt3280262 xD9G6rUq_5I,2017.0,5,10,2017,Cult of Chucky,Giving Mommy a Hand Scene,tt3280262 JCo3QW-S310,2017.0,4,10,2017,Cult of Chucky,Hypno Horror Scene,tt3280262 I4mtL3Zs0Zs,2017.0,6,10,2017,Cult of Chucky,New Playmates Scene,tt3280262 wPmgfWpamb0,2017.0,10,10,2017,Cult of Chucky,Lover Reunion Scene,tt3280262 UA1QG3_VoQ4,2017.0,8,10,2017,Cult of Chucky,Feminine Face Crusher Scene,tt3280262 sHjCcVC1uR0,2017.0,3,10,2017,Cult of Chucky,Sometimes I Scare Myself Scene,tt3280262 bdFo-WtjOmA,2017.0,1,10,2017,Cult of Chucky,Let's Play Scene,tt3280262 v04j4-SBv9M,2017.0,7,10,2017,Cult of Chucky,Welcome to the Cult Scene,tt3280262 PsRTAWDrNYo,2016.0,8,10,2017,Batman v Superman: Dawn of Justice,Your Doomsday Scene,tt2975590 MWAMJWYNpK8,2016.0,4,10,2017,Batman v Superman: Dawn of Justice,Battle of the Titans Scene,tt2975590 i5dTE5dgWOw,2016.0,2,10,2017,Batman v Superman: Dawn of Justice,Do You Bleed? Scene,tt2975590 4GlXOOYL_5I,2016.0,1,10,2017,Batman v Superman: Dawn of Justice,The Knightmare Scene,tt2975590 ttEZ7b4Cf9w,2016.0,10,10,2017,Batman v Superman: Dawn of Justice,The Death of Superman Scene,tt2975590 UeeK-Fgup9w,2016.0,5,10,2017,Batman v Superman: Dawn of Justice,Hero vs. Hero Scene,tt2975590 Xu0QBBxHZWs,2016.0,6,10,2017,Batman v Superman: Dawn of Justice,Martha Scene,tt2975590 7HlSKPTYZhs,2016.0,3,10,2017,Batman v Superman: Dawn of Justice,Superman on Trial Scene,tt2975590 4JE04So6OqU,2016.0,9,10,2017,Batman v Superman: Dawn of Justice,The Trinity Scene,tt2975590 rRlfzy7Rxdo,2016.0,7,10,2017,Batman v Superman: Dawn of Justice,Warehouse Rescue Scene,tt2975590 RmEZwxFSsWE,2015.0,6,10,2017,Daddy's Home,It's a Pony! Scene,tt1528854 vk5Kr-zV8AE,2015.0,10,10,2017,Daddy's Home,New Dad on the Block Scene,tt1528854 WrY9UuucSUs,2015.0,9,10,2017,Daddy's Home,Dancing Dads Scene,tt1528854 taf0MZ5VgDc,2015.0,3,10,2017,Daddy's Home,Skateboard Dad Scene,tt1528854 vLw24Xr1zKo,2015.0,2,10,2017,Daddy's Home,Motorcycle Accident Scene,tt1528854 3OFda9AT-U4,2015.0,5,10,2017,Daddy's Home,Bedtime Stories Scene,tt1528854 vPYiq9JNq_c,2015.0,7,10,2017,Daddy's Home,Halfcourt Fail Scene,tt1528854 Iii55E60gfg,2015.0,1,10,2017,Daddy's Home,Cinnabons & Tumor Scene,tt1528854 fPcbyFeefXs,2015.0,4,10,2017,Daddy's Home,Sperm Envy Scene,tt1528854 6fJNyx7kI6w,2015.0,8,10,2017,Daddy's Home,Two Dads and a Bully Scene,tt1528854 IMT0EqTWI6I,1984.0,2,9,2017,Supergirl,A Super Girl Scene,tt0088206 JT_59yK4Gm4,1984.0,7,9,2017,Supergirl,Demon Storm Scene,tt0088206 2IIA6TYZynQ,1984.0,1,9,2017,Supergirl,New Powers Scene,tt0088206 ZWe2pwIiWsk,1984.0,3,9,2017,Supergirl,Date Interrupted Scene,tt0088206 EMKD4L6Peto,1984.0,5,9,2017,Supergirl,Enjoy Your Prison Scene,tt0088206 f0-Ea9Ki7YU,1984.0,9,9,2017,Supergirl,The Final Battle Scene,tt0088206 hzmZJcPlJlE,1984.0,8,9,2017,Supergirl,vs. Selena Scene,tt0088206 VM8ViJw7uNs,1984.0,6,9,2017,Supergirl,The Phantom Zone Scene,tt0088206 0zQAUQGwv4A,1984.0,4,9,2017,Supergirl,Linda is Alright Scene,tt0088206 MkKO-Z_Sjm4,2014.0,2,10,2017,300: Rise of an Empire,The Birth of Xerxes Scene,tt1253863 qMMl8NYzcNQ,2015.0,3,10,2017,Bad Roomies,Threesome Scene,tt3482062 vDL4qARSaBA,2015.0,4,10,2017,Bad Roomies,I'm Not Leaving Scene,tt3482062 5wcg-4j9CZ0,2017.0,4,10,2017,Atomic Blonde,Love with Delphine Scene,tt2406566 rCUNazDU2mg,2017.0,7,10,2017,Atomic Blonde,Fasten Your Seatbelt Scene,tt2406566 zNMpSVorNr0,2017.0,9,10,2017,Atomic Blonde,Truth and Lies Scene,tt2406566 iG5oSrAW9FQ,2017.0,8,10,2017,Atomic Blonde,This is the Game Scene,tt2406566 gQO9bgOLhmg,2017.0,1,10,2017,Atomic Blonde,Car Escape Scene,tt2406566 DxCjqhDD7X4,2017.0,2,10,2017,Atomic Blonde,Apartment Fight Scene,tt2406566 q8-xQspXFag,2017.0,10,10,2017,Atomic Blonde,I Never Worked for You Scene,tt2406566 VOk7mIZRPzI,2014.0,9,10,2017,300: Rise of an Empire,Surrender to Me Scene,tt1253863 4-hiooEmi-I,2017.0,6,10,2017,Atomic Blonde,Hand to Hand Fight Scene,tt2406566 xwjw5TFPKwA,2017.0,3,10,2017,Atomic Blonde,Movie Theater Fight Scene,tt2406566 XarGS1AeEcE,2017.0,5,10,2017,Atomic Blonde,Savage Stairwell Fight Scene,tt2406566 XDnXI6KXoeg,2014.0,6,10,2017,300: Rise of an Empire,The Ecstasy Scene,tt1253863 sN16d6mhe-A,2014.0,5,10,2017,300: Rise of an Empire,Massacre Amid the Wreckage Scene,tt1253863 aex6V8aGvxY,2014.0,3,10,2017,300: Rise of an Empire,My Heart is Persian Scene,tt1253863 VONBpGWaxL8,2014.0,8,10,2017,300: Rise of an Empire,Artemisia's Wrath Scene,tt1253863 qbRoK8WhJQQ,2014.0,1,10,2017,300: Rise of an Empire,Shock Combat Scene,tt1253863 VA6nnlleAb4,2014.0,4,10,2017,300: Rise of an Empire,First Battle at Sea Scene,tt1253863 PHJisUS7KSg,2014.0,7,10,2017,300: Rise of an Empire,Ocean of Fire Scene,tt1253863 -jtzzs0_bM4,2014.0,10,10,2017,300: Rise of an Empire,Spartan Rescue Scene,tt1253863 tOeINWwKvoA,2017.0,7,10,2017,Keanu,Hulka in the Trunk Scene,tt4139124 -s52VEAQmKc,2017.0,4,10,2017,Keanu,Getting to Know the Team Scene,tt4139124 UkZVQNNzUAA,2017.0,2,10,2017,Keanu,17th Street Blips Scene,tt4139124 I8gdjJYDJ4o,2017.0,9,10,2017,Keanu,Kitty Car Chase Scene,tt4139124 HthNICfVKS0,2017.0,3,10,2017,Keanu,Tectonic and Shark Tank Meet Cheddar Scene,tt4139124 2jHKPubCPDY,2017.0,5,10,2017,Keanu,We Killed 'Em Together Scene,tt4139124 Uc2sp69O0uU,2017.0,6,10,2017,Keanu,We Have Killed People Scene,tt4139124 7qjZeHpcVtI,2017.0,8,10,2017,Keanu,Dealbreaker Scene,tt4139124 7_G8cPqQwEM,2017.0,10,10,2017,Keanu,Undercover Scene,tt4139124 1DgOAPBMXws,2017.0,1,10,2017,Keanu,Meeting Scene,tt4139124 v4X6u53WL0U,2015.0,3,10,2017,Minecraft: Into the Nether,Minecraft Competition Scene,tt10146586 RwN3A9iBARI,2015.0,7,8,2017,Minecraft: Into the Nether,Why is Minecraft Popular? Scene,tt10146586 aBACy7VwhhA,2015.0,8,8,2017,Minecraft: Into the Nether,Microsoft's Minecraft Scene,tt10146586 mtZ90MN57TE,2015.0,4,8,2017,Minecraft: Into the Nether,YouTube Celebrities Scene,tt10146586 qLBpHZ9dUZk,2015.0,2,8,2017,Minecraft: Into the Nether,Minecraft Basics Scene,tt10146586 RvZfy1w-M7g,2015.0,7,10,2017,Finders Keepers,Media Whirlwhind Scene,tt3534842 GCdylltS-m8,2015.0,4,10,2017,Finders Keepers,Foot Fight Scene,tt3534842 eFs__fovQyk,2015.0,3,10,2017,Finders Keepers,The Plane Crash Scene,tt3534842 ZlFVmr9iJjc,2015.0,5,10,2017,Finders Keepers,Drug Addiction Scene,tt3534842 56o2aefvmRA,2015.0,6,10,2017,Finders Keepers,Shannon's Big Break Scene,tt3534842 5ArOFrHp9Lo,2015.0,2,10,2017,Finders Keepers,Foot in a Grill Scene,tt3534842 9Ou3nVQc4V8,2015.0,1,8,2017,Minecraft: Into the Nether,Ali A Scene,tt10146586 XPhVzIgYjhc,2015.0,8,10,2017,Finders Keepers,Judge Mathis Show Scene,tt3534842 VAfaWTc3WlQ,2015.0,9,10,2017,Finders Keepers,What Happened to Reality? Scene,tt3534842 s0rlNw_cXqI,2015.0,10,10,2017,Finders Keepers,Got My Life Back Scene,tt3534842 43nQlnNaU-8,2015.0,1,10,2017,Finders Keepers,Mummified Leg Scene,tt3534842 lsSC_8Aqums,2015.0,5,8,2017,Minecraft: Into the Nether,Minecraft Channels Scene,tt10146586 hMCFlfCw0HA,2015.0,6,10,2017,Bad Roomies,We're Shrooming Scene,tt3482062 0cWnOxMXOEo,2015.0,1,10,2017,Bad Roomies,The Perfect Roommate Scene,tt3482062 YQJoemnpWaM,2015.0,8,10,2017,Bad Roomies,We're Having a Sleepover Scene,tt3482062 IJIeGOw5bXk,2015.0,5,10,2017,Bad Roomies,Prank War Scene,tt3482062 mN22-ZrX-tc,2015.0,2,10,2017,Bad Roomies,Don't Let Crazy Move In Scene,tt3482062 M5mJMC_RpNc,2015.0,7,10,2017,Bad Roomies,The Gloves Are Off Scene,tt3482062 GoqDlg4px4M,2015.0,9,10,2017,Bad Roomies,Unbridled Passion Scene,tt3482062 fm12-rhW8cU,2015.0,6,8,2017,Minecraft: Into the Nether,Dealing with Celebrity Scene,tt10146586 ONBLhIZCtQU,2016.0,1,10,2017,Newtown,The Barden Family Scene,tt5278578 tVBI-Fup8EI,2016.0,7,10,2017,Newtown,What To Do? Scene,tt5278578 pQ62TmdWnyI,2016.0,8,10,2017,Newtown,The Waiting Room Scene,tt5278578 PPhGRj0W8e4,2015.0,10,10,2017,Bad Roomies,Knife Fight Scene,tt3482062 wxiEJrmUlL0,2016.0,10,10,2017,Newtown,Someday Scene,tt5278578 Z_7N4TS_AzA,2016.0,2,10,2017,Newtown,The Wheelers Scene,tt5278578 ayq1fVd6Qhk,2016.0,4,10,2017,Newtown,One of Many Scene,tt5278578 1YsmGZIZG0U,2016.0,9,10,2017,Newtown,This Can't Be Scene,tt5278578 2anI_i9YYf4,2016.0,3,10,2017,Newtown,The Hockleys Scene,tt5278578 XocJyNxHsW0,2016.0,5,10,2017,Newtown,Living Next to Evil Scene,tt5278578 PzjOxjO_LuI,2016.0,6,10,2017,Newtown,A Special Child Scene,tt5278578 VkldXV8Pgi8,2017.0,2,10,2017,Spider Man: Homecoming,Damage Control Warehouse Scene,tt2250912 umcyzRBeJtE,2017.0,4,10,2017,Spider Man: Homecoming,A Poor Interrogation Scene,tt2250912 PCn1uAs_0VQ,2017.0,9,10,2017,Spider Man: Homecoming,A Trapped Hero Scene,tt2250912 r8-BFx3xFJ4,2017.0,1,10,2017,Spider Man: Homecoming,That Spider Guy Scene,tt2250912 dR3cjXncoSk,2017.0,3,10,2017,Spider Man: Homecoming,Washington Monument Rescue Scene,tt2250912 sR_tidD4M_8,2017.0,10,10,2017,Spider Man: Homecoming,Bringing Down The Vulture Scene,tt2250912 fB5HTcFhCso,2017.0,6,10,2017,Spider Man: Homecoming,The Dad Talk Scene,tt2250912 ORrQKFliVLM,2017.0,5,10,2017,Spider Man: Homecoming,Ferry Fight Scene,tt2250912 _sHXbqFJCr0,2017.0,8,10,2017,Spider Man: Homecoming,They Don't Care About Us Scene,tt2250912 tu6FDI4JBDY,2017.0,7,10,2017,Spider Man: Homecoming,Shocker's Revenge Scene,tt2250912 C0vM89y4088,2017.0,2,10,2017,Power Rangers,You Are Not Rangers Scene,tt3717490 wa_9eIwrEK8,2017.0,7,10,2017,Power Rangers,The Destructive Goldar Scene,tt3717490 opSAGkaqx6Y,2017.0,1,10,2017,Power Rangers,The Coins Chose You Scene,tt3717490 YtqU_6Imito,2017.0,6,10,2017,Power Rangers,"Go, Go, ! Scene",tt3717490 enNm82zd1Ho,2017.0,10,10,2017,Power Rangers,Megazord Fights Goldar Scene,tt3717490 jgk96izcJbw,2017.0,4,10,2017,Power Rangers,It's Morphin' Time Scene,tt3717490 te2WMrdJ3yQ,2017.0,3,10,2017,Power Rangers,Rita Captures the Rangers Scene,tt3717490 Kdu22nQNZmQ,2017.0,8,10,2017,Power Rangers,Crush Them Scene,tt3717490 jojFdN-oysU,2017.0,9,10,2017,Power Rangers,The Mighty Megazord Scene,tt3717490 V11YeYfaxv0,2017.0,5,10,2017,Power Rangers,Rangers vs. Putties Scene,tt3717490 f03hKUGdtzY,2014.0,2,10,2017,One Direction: The Inside Story,The Beginning Scene,tt4005332 06h5HJo7A6I,2014.0,8,10,2017,One Direction: The Inside Story,America's Favorite,tt4005332 UwvIz7Vdhn0,2014.0,6,10,2017,One Direction: The Inside Story,Live While We're Young Scene,tt4005332 Kk3XhT9UJAM,2014.0,9,10,2017,One Direction: The Inside Story,This Is Us,tt4005332 oOhFc0F3jVw,2014.0,7,10,2017,One Direction: The Inside Story,Harry Styles & Taylor Swift Scene,tt4005332 uHltDaQU1uc,2017.0,8,10,2017,Baby Driver,"Song's Over, Baby Scene",tt3890160 6O554p-ovsI,2017.0,3,10,2017,Baby Driver,Songs for Debora Scene,tt3890160 ZFXOR2yoWCg,2017.0,5,10,2017,Baby Driver,Tequila Shootout Scene,tt3890160 UFo40MSG5Ss,2017.0,7,10,2017,Baby Driver,"Goodbye, Darling Scene",tt3890160 276AIPEK_JA,2017.0,6,10,2017,Baby Driver,A Robbery Habit Scene,tt3890160 iDnE3PV4YNc,2017.0,9,10,2017,Baby Driver,Told You to Run Scene,tt3890160 HlsvFTNrKK8,2017.0,10,10,2017,Baby Driver,Baby vs. Buddy Scene,tt3890160 PDnA3LOm-xY,2017.0,4,10,2017,Baby Driver,A Score for a Score Scene,tt3890160 KVbBkEyaoT8,2017.0,2,10,2017,Baby Driver,Is He Slow? Scene,tt3890160 _oLBVF_VYRM,2017.0,1,10,2017,Baby Driver,Blues Explosion Chase Scene,tt3890160 bkLs-xLbpNY,2017.0,2,10,2017,Residente,No Such Thing as Pure Music Scene,tt6414866 -r_EtRqgj_o,2017.0,8,10,2017,Residente,Our Own Culture Scene,tt6414866 P-M4AnVnnyU,2017.0,6,10,2017,Residente,Where You Become a Princess Scene,tt6414866 8KuNjb2xEoM,2017.0,5,10,2017,Residente,Rap Meets Chinese Opera Scene,tt6414866 C3lLA69xOc0,2017.0,4,10,2017,Residente,Made Out of War Scene,tt6414866 PK14gY9Gn-A,2017.0,10,10,2017,Residente,A Song for Puerto Rico Scene,tt6414866 VB_ZrC1u74w,2017.0,9,10,2017,Residente,Feat. Lin Manuel Miranda Scene,tt6414866 zm44ZmISCac,2017.0,3,10,2017,Residente,An Ignored Genocide Scene,tt6414866 pmU6-1I7eyQ,2017.0,1,10,2017,Residente,The Story of Rene Perez Scene,tt6414866 xSM_nz6gKOI,2017.0,8,10,2017,John Wick: Chapter 2,Museum Fight Scene,tt4425200 7-TZCEyok_o,2017.0,9,10,2017,John Wick: Chapter 2,Hall of Mirrors Scene,tt4425200 Ct-zGV4TgKY,2017.0,1,10,2017,John Wick: Chapter 2,With a Pencil Scene,tt4425200 rsuNowyCF0c,2017.0,6,10,2017,John Wick: Chapter 2,Pencil Kill Scene,tt4425200 Pv70ImW-l3s,2017.0,5,10,2017,John Wick: Chapter 2,John vs. Cassian Scene,tt4425200 qIalODmFrZk,2017.0,2,10,2017,John Wick: Chapter 2,Gun Shopping Scene,tt4425200 CujcdaQpYWE,2017.0,7,10,2017,John Wick: Chapter 2,Subway Fight Scene,tt4425200 eVJhlVgr9lM,2017.0,4,10,2017,John Wick: Chapter 2,Catacombs Shootout Scene,tt4425200 -xZKHX91z9I,2017.0,10,10,2017,John Wick: Chapter 2,Rule Breaker Scene,tt4425200 0xSSnfRYBQY,2017.0,3,10,2017,John Wick: Chapter 2,Concert Fight Scene,tt4425200 R66bHMRd6L4,2017.0,7,10,2017,Residente,The Shadow of Africa Scene,tt6414866 6rvbWWlv_qY,2015.0,4,10,2017,Club Life,Date with a Model Scene,tt3038734 Kh60xjnuAhA,2015.0,5,10,2017,Club Life,Who's Using Who? Scene,tt3038734 TgWu1QcM1Tg,2016.0,5,10,2017,Southbound,DIY Paramedic Scene,tt4935334 2dPi-jM7Jzo,2016.0,4,10,2017,Southbound,Road Accident Scene,tt4935334 Pq9kAmZ3X_k,2016.0,6,10,2017,Southbound,I Don't Deserve This Scene,tt4935334 31ZrzeS_ymg,2016.0,7,10,2017,Southbound,You Have to Leave Scene,tt4935334 3uIw6INr36g,2016.0,8,10,2017,Southbound,Home Invasion Scene,tt4935334 w4GgZsdpMDA,2016.0,9,10,2017,Southbound,What Do You Want? Scene,tt4935334 J8hfrE2LBSk,2016.0,10,10,2017,Southbound,We Told You to Run Scene,tt4935334 Wx98L_LssbI,2016.0,1,10,2017,Southbound,They've Come to Collect Scene,tt4935334 QHcl5XE4XuM,2016.0,2,10,2017,Southbound,Mystery Meat Dinner Scene,tt4935334 P7J3raOVLNU,2016.0,3,10,2017,Southbound,Cult Initiation Scene,tt4935334 B493yqCgpZQ,2015.0,6,10,2017,Club Life,Bad Fathers Scene,tt3038734 516x-cH_Cpk,2015.0,8,10,2017,Club Life,Somebody Help Scene,tt3038734 lUyHKva8Wfg,2015.0,7,10,2017,Club Life,Ain't No Original Ideas Scene,tt3038734 cmJRHlOcTVw,2015.0,2,10,2017,Club Life,The Model House Scene,tt3038734 285xhqP7D_Q,2015.0,1,10,2017,Club Life,The Life of a Promoter Scene,tt3038734 9cJ1ZWXeOXg,2015.0,9,10,2017,Club Life,Vice Bust Scene,tt3038734 TvxfLhFGRzY,2015.0,10,10,2017,Club Life,A Complete Success Scene,tt3038734 QwjfMOhKcTw,2015.0,3,10,2017,Club Life,How This Works Scene,tt3038734 9ZmqIpTPFmM,2014.0,10,10,2017,One Direction: The Inside Story,Best Song Ever Scene,tt4005332 v7Z3aLND9Xg,2014.0,1,10,2017,One Direction: The Inside Story,The Directioners Scene,tt4005332 Fq5yX9ENZh0,2014.0,3,10,2017,One Direction: The Inside Story,What Makes You Beautiful Scene,tt4005332 9F5v795Cfo4,2014.0,4,10,2017,One Direction: The Inside Story,The BRIT Awards Scene,tt4005332 FRvhNHgU6fI,2014.0,5,10,2017,One Direction: The Inside Story,Morals and Making Money Scene,tt4005332 IYHAqyiQ2i4,2016.0,9,10,2017,Ghost Team,Paintball Escape Scene,tt5115546 PcyonXZoHfQ,2016.0,3,10,2017,Ghost Team,Get Rid of Them Scene,tt5115546 s_B1ul97bfE,2016.0,4,10,2017,Ghost Team,We Got a Face Scene,tt5115546 Dv-ibHmFlS8,2016.0,8,10,2017,Ghost Team,Meth Lab Scene,tt5115546 qXu7Ts5FWqA,2016.0,7,10,2017,Ghost Team,Ghosts Making Meth Scene,tt5115546 Ir4wUoK_-c4,2016.0,1,10,2017,Ghost Team,Ouija Board Scene,tt5115546 vMWCg4TNWIg,2016.0,2,10,2017,Ghost Team,Sucky Ghosts Scene,tt5115546 JKbrP4cjzo8,2016.0,10,10,2017,Ghost Team,Daddy's Sorry Scene,tt5115546 4w6WN2_l0wA,2016.0,5,10,2017,Ghost Team,You're All Gonna Die Scene,tt5115546 pwuNGRVWB9w,2016.0,6,10,2017,Ghost Team,Chasing the Ghost Scene,tt5115546 VCLJGenGyB4,2017.0,4,10,2017,The Big Sick,You Can Go Now Scene,tt5462602 QiK2W8YshS4,2017.0,10,10,2017,The Big Sick,Emily Returns Scene,tt5462602 mbRL9NE5NXk,2017.0,3,10,2017,The Big Sick,Medically Induced Coma Scene,tt5462602 ocqy8r8rDI0,2017.0,2,10,2017,The Big Sick,I Can't Lose My Family Scene,tt5462602 VpmnPgUwVO8,2017.0,5,10,2017,The Big Sick,Comedy Show Interrupted Scene,tt5462602 uJ2RTDbq1IU,2017.0,1,10,2017,The Big Sick,Not Really Dating Scene,tt5462602 vrluM6pe89w,2017.0,6,10,2017,The Big Sick,I Cheated on Her Scene,tt5462602 NTTyF1mDtgw,2017.0,8,10,2017,The Big Sick,Fast Food Freakout Scene,tt5462602 zsmP1h809F4,2017.0,7,10,2017,The Big Sick,You're Not My Son Scene,tt5462602 Ik8q8LDqWiE,2017.0,9,10,2017,The Big Sick,Not Leaving This Family Scene,tt5462602 QHjr51lAne4,2016.0,10,10,2017,Moto 8: The Movie,Off-Road Mecca Scene,tt6231792 5rVB1DFakzA,2015.0,2,10,2017,View From a Blue Moon,John's Story Scene,tt5199588 lQLchoQRlZk,2015.0,9,10,2017,View From a Blue Moon,No Place Like Home Scene,tt5199588 Ae3HbC1X-_A,2015.0,4,10,2017,View From a Blue Moon,Airborne in Australia Scene,tt5199588 mat5twjYjJ8,2015.0,1,10,2017,View From a Blue Moon,Young John Scene,tt5199588 9fHiacvqXLY,2015.0,10,10,2017,View From a Blue Moon,Pipeline Scene,tt5199588 zY2G4v0b5IU,2015.0,6,10,2017,View From a Blue Moon,Rio De Janeiro Scene,tt5199588 ih4MIVjS8yU,2015.0,5,10,2017,View From a Blue Moon,South Africa Surf Scene,tt5199588 cscOz4NHIWY,2015.0,3,10,2017,View From a Blue Moon,My View of the World Scene,tt5199588 GwowcP5KIIA,2015.0,8,10,2017,View From a Blue Moon,The Mother Continent Scene,tt5199588 6U61OQAOe84,2015.0,7,10,2017,View From a Blue Moon,Because It Is There Scene,tt5199588 ToI9OHLE068,2016.0,5,10,2017,The Fourth Phase,Snowy Hills of Japan Scene,tt5226436 uJ_dVRo08Sc,2016.0,4,10,2017,The Fourth Phase,Gods of Nature Scene,tt5226436 D8gSV_8abXc,2016.0,8,10,2017,The Fourth Phase,Avalanche Scene,tt5226436 2wN8f0ezRS8,2016.0,3,10,2017,The Fourth Phase,Hydrology and Sports Scene,tt5226436 TLOD07LZw90,2016.0,6,10,2017,The Fourth Phase,Let the Fire Burn Scene,tt5226436 fWRkpKq-9f0,2016.0,2,10,2017,The Fourth Phase,The Cycle We Ride Scene,tt5226436 3N5u8TKtmfk,2016.0,7,10,2017,The Fourth Phase,"I'm Scared, Finally Scene",tt5226436 64-EdvBcZYg,2016.0,1,10,2017,The Fourth Phase,We Build Jumps Scene,tt5226436 pNRl-3kZPzY,2016.0,9,10,2017,The Fourth Phase,Falling Over the Edge Scene,tt5226436 jNNX5a8ogr8,2016.0,10,10,2017,The Fourth Phase,The Process Scene,tt5226436 ftOTPUX7vss,2017.0,9,10,2017,Diamond Cartel,Cliffside Showdown Scene,tt2538778 tuh3yZXagYE,2017.0,2,10,2017,Diamond Cartel,Schizophrenics and Narcotics Scene,tt2538778 mPxP11XFKcw,2017.0,7,10,2017,Diamond Cartel,All Out War Scene,tt2538778 aYNntWtMi24,2017.0,10,10,2017,Diamond Cartel,Mission Completed Scene,tt2538778 dyupZilayXY,2017.0,4,10,2017,Diamond Cartel,My Assassin Girlfriend Scene,tt2538778 a7dRLlirThw,2017.0,1,10,2017,Diamond Cartel,Lethal Lady Death Squad Scene,tt2538778 0mRRULBvuj0,2017.0,6,10,2017,Diamond Cartel,The Boatkeeper Scene,tt2538778 tStZuBeyeok,2017.0,8,10,2017,Diamond Cartel,The Way of the Drug Lords Scene,tt2538778 JtgnLYdR2ec,2017.0,5,10,2017,Diamond Cartel,Minigun Car Chase Scene,tt2538778 mMG-Op_PPEE,2017.0,3,10,2017,Diamond Cartel,Female Assassin School Scene,tt2538778 oUXKSovzDMw,2016.0,7,10,2017,Neruda,The Masterpiece Scene,tt4698584 iQrYqaPeMlc,2016.0,9,10,2017,Neruda,The Fugitive Scene,tt4698584 mu9cObUl8Gg,2016.0,4,10,2017,Neruda,Man to Man Scene,tt4698584 UIKJTZC53hY,2016.0,10,10,2017,Neruda,The Inspector's Journey Scene,tt4698584 PDVyr--ODQs,2016.0,6,10,2017,Neruda,The Humble Servant Scene,tt4698584 E-gwIn1O1pE,2016.0,3,10,2017,Neruda,This Is My Art Scene,tt4698584 2r_EHD8QVYg,2016.0,8,10,2017,Neruda,The Enemy of the State Scene,tt4698584 oeKyva3fU1c,2016.0,5,10,2017,Neruda,The People's Poet Scene,tt4698584 3oQd25IcII8,2016.0,1,10,2017,Neruda,The Dutch Wife Scene,tt4698584 hgQC-VGKUHo,2016.0,2,10,2017,Neruda,He is Not a Traitor Scene,tt4698584 0fAHVLBuwVU,2016.0,1,10,2017,Operator,Offensive Pseudo-Person Scene,tt4939066 Ro4xPHjRH8k,2016.0,5,10,2017,Operator,Emily vs. Emily Scene,tt4939066 Ty0O5WKbLkU,2016.0,7,10,2017,Operator,Abusive Caller Scene,tt4939066 8rSdR6dU7KA,2016.0,2,10,2017,Operator,Welcome to Welltrix Scene,tt4939066 Kmnf2USgtiA,2016.0,8,10,2017,Operator,I Miss You Scene,tt4939066 wPw9GesZAcw,2016.0,10,10,2017,Operator,Anything for You Scene,tt4939066 Se3ZAXB8sU4,2016.0,4,10,2017,Operator,Emily Helps Beth Scene,tt4939066 ABYeVd_JWss,2016.0,9,10,2017,Operator,Nothing Stays the Same Scene,tt4939066 9DmxaUyjKTk,2016.0,3,10,2017,Operator,Not Your Science Experiment Scene,tt4939066 DDaR9vzYJWA,2016.0,6,10,2017,Operator,Jealous of Her Scene,tt4939066 8PB5sU_QcUc,2017.0,8,10,2017,Carrie Pilby,Daddy to the Rescue Scene,tt2989524 YzCruCXU8Xc,2017.0,9,10,2017,Carrie Pilby,An Honest Therapist Scene,tt2989524 77DXn43fhVw,2017.0,6,10,2017,Carrie Pilby,Do One Thing For Me Scene,tt2989524 TYCfoxmY_vg,2017.0,5,10,2017,Carrie Pilby,Difficulties of Being a Mistress Scene,tt2989524 S_l6py_n6RM,2017.0,10,10,2017,Carrie Pilby,New Year's Eve Scene,tt2989524 nqJIAz0C5Ig,2017.0,7,10,2017,Carrie Pilby,Grown Up Conversation Scene,tt2989524 M6W-zjN_LYQ,2017.0,3,10,2017,Carrie Pilby,Rat Out a Cheater Scene,tt2989524 BvS7NWvYZb0,2017.0,2,10,2017,Carrie Pilby,The Enlightened Professor Scene,tt2989524 t9SNzY1Hq1k,2017.0,4,10,2017,Carrie Pilby,I Knew You Weren't a Virgin Scene,tt2989524 0qzhcuRwBnY,2017.0,1,10,2017,Carrie Pilby,Flirty Chit-Chat Scene,tt2989524 7tb3_GWTIaU,2016.0,10,10,2017,Hunter Gatherer,Follow Me Scene,tt3717316 oKW6UxOdICg,2016.0,8,10,2017,Hunter Gatherer,Everybody Dies Scene,tt3717316 lKzUGYETlU4,2016.0,2,10,2017,Hunter Gatherer,The Other Man Scene,tt3717316 7jXZpvSkCaM,2016.0,6,10,2017,Hunter Gatherer,It's Burning Scene,tt3717316 -LfB7USrdis,2016.0,1,10,2017,Hunter Gatherer,The Power of Positivity Scene,tt3717316 7n9xJpld-0s,2016.0,4,10,2017,Hunter Gatherer,Lab Rat Scene,tt3717316 ZnxMS3Nf6Ws,2016.0,7,10,2017,Hunter Gatherer,Losing Everything Scene,tt3717316 ZeuUMdNQTHQ,2016.0,5,10,2017,Hunter Gatherer,Visiting Santa Claus Scene,tt3717316 kHAHQMb4Lmc,2016.0,3,10,2017,Hunter Gatherer,Are Those Panties? Scene,tt3717316 97E7Kft_bno,2016.0,9,10,2017,Hunter Gatherer,Lesson Learned Scene,tt3717316 9hNNrKNPGVo,2017.0,2,6,2017,Moka,Breaking & Entering Scene,tt5072406 ermD7PGA3Do,2017.0,1,6,2017,Moka,A Test Drive Scene,tt5072406 aiiJ0fBFjCQ,2017.0,3,6,2017,Moka,Swim Class Scene,tt5072406 24B-_HU7NLs,2017.0,4,6,2017,Moka,An Impromptu Dinner Scene,tt5072406 Zdv1_Iimmgg,2017.0,5,6,2017,Moka,Unwanted Detour Scene,tt5072406 tm_W36kWahM,2017.0,6,6,2017,Moka,You Killed My Son Scene,tt5072406 g_C56llGC1E,2017.0,3,5,2017,Mad Tiger,Just Kotaro Scene,tt3911554 4tMdFDBXDpk,2017.0,5,5,2017,Mad Tiger,The Last Show Scene,tt3911554 WShQx7lNPi4,2017.0,1,5,2017,Mad Tiger,The History of Peelander-Z Scene,tt3911554 rZyjko9lXo0,2017.0,4,5,2017,Mad Tiger,Killing My Art Scene,tt3911554 HCRagorblVI,2017.0,2,5,2017,Mad Tiger,Red Says Goodbye Scene,tt3911554 aGE--b9ilhk,2017.0,4,6,2017,Glory,Retaliation Scene,tt7456468 7SNohNGz_f0,2017.0,2,6,2017,Glory,A New Watch Scene,tt7456468 wz0UlSqctTI,2017.0,1,6,2017,Glory,A Difficult Interview Scene,tt7456468 97gMDmQV_es,2017.0,5,6,2017,Glory,Forced Confession Scene,tt7456468 nvCEzZ3P_x8,2017.0,6,6,2017,Glory,A Good Job Scene,tt7456468 KS1iOmeMGEU,2017.0,3,6,2017,Glory,Stolen Scene,tt7456468 gXVvoSa1xBg,2015.0,3,8,2017,Blush,Good Night Out Scene,tt5022872 4iLKU2WRo4k,2017.0,2,8,2017,Afterimage,A Polish Citizen Scene,tt5186236 KW7bMwCb2_4,2015.0,8,8,2017,Blush,Heartbreak Scene,tt5022872 JdWS7JkUno8,2015.0,7,8,2017,Blush,Carried Away Scene,tt5022872 o71CfblYCqI,2015.0,2,8,2017,Blush,First Kiss Scene,tt5022872 dIx1J8hHVkw,2015.0,4,8,2017,Blush,An Arab Boyfriend Scene,tt5022872 ArnlIuuyPJ0,2015.0,1,8,2017,Blush,Bongs and Boyfriends Scene,tt5022872 rHYsSCKGZGo,2015.0,6,8,2017,Blush,Don't Be a Baby Scene,tt5022872 fZMKMakjV_A,2015.0,5,8,2017,Blush,Our Duty Scene,tt5022872 7eYTzvoxmk4,2017.0,6,8,2017,Afterimage,Artists Can Be Killed Scene,tt5186236 _sMqmGJObDU,2017.0,3,8,2017,Afterimage,Art and Ideology Scene,tt5186236 inMPeTx6hoA,2017.0,1,8,2017,Afterimage,The Professor Scene,tt5186236 QHTbbfdmYuc,2017.0,7,8,2017,Afterimage,Banned from Art Scene,tt5186236 YDBqQMQB_ls,2017.0,4,8,2017,Afterimage,Silencing Art Scene,tt5186236 pUtBYdlwUNA,2017.0,5,8,2017,Afterimage,Destroying the Art Scene,tt5186236 mymHgUYBTfk,2017.0,8,8,2017,Afterimage,Always Loved You Scene,tt5186236 hfXW-z1-aUY,2015.0,1,8,2017,I Am the Blues,The Juke Joint Scene,tt5120042 qlk05SwGu10,2015.0,5,8,2017,I Am the Blues,Carol Fran and Emmitt Lee Scene,tt5120042 lFzZCgFxUSc,2015.0,3,8,2017,I Am the Blues,The Blues Made Me Scene,tt5120042 WDrQaK1i_9U,2015.0,7,8,2017,I Am the Blues,Racism on the Chitlin' Circuit Scene,tt5120042 kJg9uBKvDZ4,2015.0,4,8,2017,I Am the Blues,The Real Blues Scene,tt5120042 Qx1wXZHymV8,2015.0,6,8,2017,I Am the Blues,The Fish Fry Scene,tt5120042 fhCVsKgC12w,2015.0,2,8,2017,I Am the Blues,Songs of Yester-year Scene,tt5120042 636QHxJvvjc,2015.0,8,8,2017,I Am the Blues,Back on Stage Scene,tt5120042 MsUXCqHc8xE,2016.0,2,10,2017,Moto 8: The Movie,Broke My Neck in 3 Places,tt6231792 gw4boF1v2YI,2016.0,5,10,2017,Moto 8: The Movie,Dangerboy Deegan Scene,tt6231792 0xHPBlFPCwo,2016.0,8,10,2017,Moto 8: The Movie,The Sand Dunes of Idaho Scene,tt6231792 o00oxyBzsb4,2016.0,7,10,2017,Moto 8: The Movie,The California Hills Scene,tt6231792 ttjmXS4de4Y,2016.0,1,10,2017,Moto 8: The Movie,Ripping Through the Vineyards Scene,tt6231792 VD-_YgrNOk4,2016.0,3,10,2017,Moto 8: The Movie,The Florida Tracks Scene,tt6231792 E6T4nHj8afI,2016.0,4,10,2017,Moto 8: The Movie,Everything Pays Off Scene,tt6231792 Q2P2WsgH6mQ,2016.0,6,10,2017,Moto 8: The Movie,Motocross Mini Me Scene,tt6231792 T6P6Jyhmj6E,2016.0,9,10,2017,Moto 8: The Movie,A World of Snow and Ice Scene,tt6231792 GGK2S2wy9sA,2016.0,2,10,2017,Christine,Bob Anderson Scene,tt4666726 TgfJD9geSac,2016.0,8,10,2017,Christine,Mental Breakdown Scene,tt4666726 jakEl-SL35c,2016.0,7,10,2017,Christine,Grisly Stuff Scene,tt4666726 31XcssmnGvM,2016.0,9,10,2017,Christine,Group Therapy Scene,tt4666726 kidICVXLnRY,2016.0,3,10,2017,Christine,Make Your Stories Juicy Scene,tt4666726 NXedF2XcFkA,2016.0,5,10,2017,Christine,I Feel Like Bob Woodward Scene,tt4666726 MX7c3F1q8UQ,2016.0,4,10,2017,Christine,Apologize to Me Scene,tt4666726 kNAO6eHuCjY,2016.0,6,10,2017,Christine,Funny Girl Scene,tt4666726 poVn84doiN8,2016.0,10,10,2017,Christine,"Yes, But Scene",tt4666726 5YEw7F6ri_0,2016.0,1,10,2017,Christine,"If It Bleeds, It Leads Scene",tt4666726 wTLo8CdhxGs,2017.0,2,10,2017,Rough Night,Dance Routine Scene,tt4799050 s9TKR7rSFfA,2017.0,6,10,2017,Rough Night,Jet Ski Accident Scene,tt4799050 c0XTkj3PIWg,2017.0,7,10,2017,Rough Night,Seducing the Neighbors Scene,tt4799050 Fr6fIMIc_Jo,2017.0,10,10,2017,Rough Night,The Kiwi Song Scene,tt4799050 05foBuX_brU,2017.0,9,10,2017,Rough Night,Tampon! Scene,tt4799050 5NTDlhH174M,2017.0,5,10,2017,Rough Night,Horny Neighbors Scene,tt4799050 fEwSNiZ3zn4,2017.0,8,10,2017,Rough Night,The Human Frentipede Scene,tt4799050 ra9UQb-OVqQ,2017.0,3,10,2017,Rough Night,Dead Stripper and Pizza Scene,tt4799050 OnJAp2emJ4U,2017.0,4,10,2017,Rough Night,Hiding the Body Scene,tt4799050 SwOfGb9QwTc,2017.0,1,10,2017,Rough Night,Doing Drugs Scene,tt4799050 _yxKJaVk4kI,2017.0,5,10,2017,T2 Trainspotting,Diane the Lawyer Scene,tt2763304 N35FsMxEmSc,2017.0,9,10,2017,T2 Trainspotting,You Robbed Us Scene,tt2763304 3x0UxzeZBso,2017.0,10,10,2017,T2 Trainspotting,Begbie vs. Renton Scene,tt2763304 I_X6zWElJdw,2017.0,2,10,2017,T2 Trainspotting,Be Addicted Scene,tt2763304 2EQCpQbUrzI,2017.0,3,10,2017,T2 Trainspotting,No More Catholics Scene,tt2763304 lQhQeus0ItY,2017.0,4,10,2017,T2 Trainspotting,Begbie's Son Scene,tt2763304 eKCkxzJFP5M,2017.0,7,10,2017,T2 Trainspotting,Tommy's Memorial Scene,tt2763304 cvNjYmDiV0Y,2017.0,1,10,2017,T2 Trainspotting,Saving Spud Scene,tt2763304 fBNzgfFkvEo,2017.0,8,10,2017,T2 Trainspotting,Begbie Chases Renton Scene,tt2763304 ahxDiseuAak,2017.0,6,10,2017,T2 Trainspotting,Choose Life Scene,tt2763304 F6dN5Kq5NZ8,2015.0,8,10,2017,Nasty Baby,The Last Straw Scene,tt3121332 JIkmOqrneTU,2015.0,1,10,2017,Nasty Baby,Bad Results Scene,tt3121332 9SYhu10qJ-o,2015.0,10,10,2017,Nasty Baby,We Can't Call the Cops Scene,tt3121332 aiWJhEMskMU,2015.0,2,10,2017,Nasty Baby,Meeting the Bishop Scene,tt3121332 YqRwOf0XHUg,2015.0,5,10,2017,Nasty Baby,A Menace to the Neighborhood Scene,tt3121332 yQ7JLXkHq2M,2015.0,6,10,2017,Nasty Baby,Normal in New York Scene,tt3121332 5W60oPaZOIc,2015.0,9,10,2017,Nasty Baby,What Did I Do? Scene,tt3121332 EntbO16GpNA,2015.0,3,10,2017,Nasty Baby,You're Pretty Scene,tt3121332 w7DIFgkIh4o,2015.0,4,10,2017,Nasty Baby,Stink Bomb Scene,tt3121332 VDGE0RPwLH4,2015.0,7,10,2017,Nasty Baby,Our Child's Conception Scene,tt3121332 DUYaGj7RBfk,2015.0,10,10,2017,What We Do in the Shadows,Stu Lives Scene,tt3416742 Iae-A9s8Nk4,2015.0,4,10,2017,What We Do in the Shadows,Not Eating Stu Scene,tt3416742 cWKL1gFCS54,2015.0,1,10,2017,What We Do in the Shadows,Flat Meeting Scene,tt3416742 CaIXZsmUl4I,2015.0,8,10,2017,What We Do in the Shadows,Party Fight Scene,tt3416742 qL_XE00jzXM,2015.0,6,10,2017,What We Do in the Shadows,Nothing to See Here Scene,tt3416742 e1BdvP4zenI,2015.0,7,10,2017,What We Do in the Shadows,Get Stu Out of Here Scene,tt3416742 Yr3YqpkoN_o,2015.0,5,10,2017,What We Do in the Shadows,Bat Fight Scene,tt3416742 qQJmr9kI9uw,2015.0,9,10,2017,What We Do in the Shadows,Werewolves Unchained Scene,tt3416742 RAqYpOzllmM,2015.0,2,10,2017,What We Do in the Shadows,Basghetti Dinner Scene,tt3416742 rF9Z6Hvmf5M,2015.0,3,10,2017,What We Do in the Shadows,"Werewolves, Not Swear Wolves Scene",tt3416742 FRSfDQyoav8,2017.0,6,10,2017,Resident Evil: The Final Chapter,Martial Arts and Zombies Scene,tt2592614 ILwJA2feDRs,2017.0,2,10,2017,Resident Evil: The Final Chapter,Roadblock Scene,tt2592614 z2PH2-yl5Ho,2017.0,4,10,2017,Resident Evil: The Final Chapter,Defense Fortress Scene,tt2592614 RDBywHkU6Wg,2017.0,7,10,2017,Resident Evil: The Final Chapter,The Turbine Scene,tt2592614 eGLC0vhemeA,2017.0,10,10,2017,Resident Evil: The Final Chapter,Laser Corridor Confrontation Scene,tt2592614 O7z6rV8Gdbs,2017.0,3,10,2017,Resident Evil: The Final Chapter,Zombie Convoy Escape Scene,tt2592614 0mPTGVoG248,2017.0,1,10,2017,Resident Evil: The Final Chapter,Winged Demon Scene,tt2592614 elcYyXvJF7U,2017.0,9,10,2017,Resident Evil: The Final Chapter,Laser System Reactivated Scene,tt2592614 EXUzqVIocHI,2017.0,5,10,2017,Resident Evil: The Final Chapter,Tower Inferno Scene,tt2592614 OpAEdqIIWpY,2017.0,8,10,2017,Resident Evil: The Final Chapter,The Bioweapon Scene,tt2592614 KSZN8iThGZ8,2017.0,8,10,2017,Life,I Trust You Scene,tt5442430 XaI13YBdi_M,2017.0,6,10,2017,Life,On the Hunt Scene,tt5442430 r3fnCEjvPCQ,2017.0,2,10,2017,Life,Alien Handshake Scene,tt5442430 iwGU5hY6stw,2017.0,9,10,2017,Life,Face to Face Scene,tt5442430 iPgcg3DVoUY,2017.0,7,10,2017,Life,No Rescue Scene,tt5442430 m-PsCZ_57MY,2017.0,3,10,2017,Life,Calvin Comes Out Scene,tt5442430 zfUzaYV1xfE,2017.0,5,10,2017,Life,He Has to Kill Us Scene,tt5442430 V022pMeqRjA,2017.0,10,10,2017,Life,Escape to Earth Scene,tt5442430 ViF6HrzoOj4,2017.0,4,10,2017,Life,Keeping Calvin Out Scene,tt5442430 _SdYxgbXnHs,2017.0,1,10,2017,Life,Extraterrestrial Scene,tt5442430 32QcvEuJYFA,2016.0,2,10,2017,Hunt for the Wilderpeople,Auntie's Funeral Scene,tt4698684 QfATkY6jMtM,2016.0,4,10,2017,Hunt for the Wilderpeople,Just Got Real Scene,tt4698684 av2VWuMUFCM,2016.0,7,10,2017,Hunt for the Wilderpeople,Psycho Sam the Bush-man Scene,tt4698684 _s3bHABazDA,2016.0,1,10,2017,Hunt for the Wilderpeople,Ricky's Birthday Scene,tt4698684 jirWCRbgK8E,2016.0,6,10,2017,Hunt for the Wilderpeople,What Would Uncle Do? Scene,tt4698684 Tr_OzL7mupk,2016.0,3,10,2017,Hunt for the Wilderpeople,Reading's Stupid Scene,tt4698684 8AXEzcuMQp4,2016.0,5,10,2017,Hunt for the Wilderpeople,The Famous Ricky Baker Scene,tt4698684 WyBvHGU-djg,2016.0,10,10,2017,Hunt for the Wilderpeople,You Shot Me! Scene,tt4698684 qTANCNgUW2Q,2016.0,9,10,2017,Hunt for the Wilderpeople,The Skux Life Chose Me Scene,tt4698684 ie6rKW_Giqc,2016.0,8,10,2017,Hunt for the Wilderpeople,Make Our Escape Scene,tt4698684 5UOJUZhe85M,2016.0,2,10,2017,"Life, Animated",He's Still in There Scene,tt3917210 fpOQzt9NtX4,2016.0,3,10,2017,"Life, Animated",Speaking in Disney Scene,tt3917210 BNgJCuwM7CQ,2016.0,7,10,2017,"Life, Animated",Owen's Apartment Scene,tt3917210 xchco5BLMQU,2016.0,8,10,2017,"Life, Animated",Pain and Tragedy Scene,tt3917210 7oOKwZlj4VE,2016.0,4,10,2017,"Life, Animated",Emily Scene,tt3917210 9WKilpdUoWQ,2016.0,6,10,2017,"Life, Animated",Protector of the Sidekicks Scene,tt3917210 9UslcBJkmyc,2016.0,1,10,2017,"Life, Animated",Owen Vanishes Scene,tt3917210 0vI1R3VEREQ,2016.0,5,10,2017,"Life, Animated",Meeting Gilbert Gottfried Scene,tt3917210 Mf0pWnkN_vc,2016.0,9,10,2017,"Life, Animated",Owen's Speech Scene,tt3917210 wZj44nizNJ0,2016.0,10,10,2017,"Life, Animated",Moving Forward Scene,tt3917210 ccH057kbWTg,2017.0,9,10,2017,Smurfs: The Lost Village,Mourning a Friend Scene,tt2398241 WG_LG1CfsCE,2017.0,3,10,2017,Smurfs: The Lost Village,What Are You Hiding?,tt2398241 -U9v7Nz6hOs,2017.0,2,10,2017,Smurfs: The Lost Village,Branch-Boarding Scene,tt2398241 xmzkZ12GMAs,2016.0,9,10,2017,Don't Breathe,Trapped in a Car Scene,tt4160708 pZRDwBXv7T0,2016.0,4,10,2017,Don't Breathe,Lights Out Scene,tt4160708 uUEpwPiiGco,2016.0,10,10,2017,Don't Breathe,Rocky's Revenge Scene,tt4160708 54x4n4FlV4U,2016.0,7,10,2017,Don't Breathe,A Fair Exchange Scene,tt4160708 PB-KpT4zhWo,2016.0,1,10,2017,Don't Breathe,Robbery Gone Wrong Scene,tt4160708 gsG8sEK2md8,2016.0,2,10,2017,Don't Breathe,The Secret in the Basement Scene,tt4160708 Vfi1V_SL9H8,2016.0,6,10,2017,Don't Breathe,A Thief's End Scene,tt4160708 yk73thpx_B8,2016.0,5,10,2017,Don't Breathe,A Way Out Scene,tt4160708 QO0gZrQw9KU,2016.0,8,10,2017,Don't Breathe,The Turkey Baster Scene,tt4160708 8le-4mOgJco,2016.0,3,10,2017,Don't Breathe,Blind Man with a Gun Scene,tt4160708 pmqBmTWq420,2017.0,7,10,2017,Smurfs: The Lost Village,Can't Escape Your Evil Destiny Scene,tt2398241 VGhUlUHKv7s,2017.0,4,10,2017,Smurfs: The Lost Village,The Great Escape Scene,tt2398241 9IYFHAnqOKM,2017.0,5,10,2017,Smurfs: The Lost Village,You're a Girl Scene,tt2398241 FjT4_Bi-F0I,2017.0,1,10,2017,Smurfs: The Lost Village,What is a Smurfette? Scene,tt2398241 2rFXR3_DeMU,2017.0,6,10,2017,Smurfs: The Lost Village,Smurfy Grove Hospitality Scene,tt2398241 dcCsAQTY9lQ,2017.0,10,10,2017,Smurfs: The Lost Village,I'm a Lady Scene,tt2398241 9MhRoo23Wak,2017.0,8,10,2017,Smurfs: The Lost Village,The Power of Smurfette Scene,tt2398241 Qft-ZvHFfmE,1979.0,9,11,2017,Phantasm,Inter-dimensional Portal Scene,tt0079714 H_xWhF2sSb0,1979.0,1,11,2017,Phantasm,The Fortuneteller Scene,tt0079714 QjEfREkwJe0,1979.0,5,11,2017,Phantasm,Giant Monster Fly Scene,tt0079714 zpSLlRt7KGE,1979.0,10,11,2017,Phantasm,Victory Over the Tall Man Scene,tt0079714 NONRLC7wAlM,1979.0,3,11,2017,Phantasm,The Tall Man Scene,tt0079714 9d30_Y2bF64,1979.0,4,11,2017,Phantasm,Flying Death Sphere Scene,tt0079714 y04Q-2-ut0I,1979.0,2,11,2017,Phantasm,Hot as Love Scene,tt0079714 bm3QkHapg3Q,1979.0,11,11,2017,Phantasm,Boy! Scene,tt0079714 E3lprGIkEic,1979.0,8,11,2017,Phantasm,Demonic Dwarves Scene,tt0079714 Pj5ds2Q_tJg,1979.0,7,11,2017,Phantasm,Who's Driving the Car? Scene,tt0079714 07KUTJpbNAQ,1979.0,6,11,2017,Phantasm,Deadly Dwarf in the Basement Scene,tt0079714 xgkspBFxLi4,1992.0,11,11,2017,Once Upon a Crime,The Killers Are Revealed Scene,tt0101625 fCNsIYsWjXo,1992.0,1,11,2017,Once Upon a Crime,I Smell Big Reward Scene,tt0101625 3WfRT1c7Tz0,1992.0,7,11,2017,Once Upon a Crime,"Sir, Your Suitcase! Scene",tt0101625 EYKOpaD_s1U,1992.0,4,11,2017,Once Upon a Crime,You're Jinxing Me Scene,tt0101625 wn-e7FlYRJU,1992.0,9,11,2017,Once Upon a Crime,You Got Nothing on Us Scene,tt0101625 I_TkNxwnJiY,1992.0,6,11,2017,Once Upon a Crime,"Don't Shoot, I'm an Actor! Scene",tt0101625 fxBoqr7OicA,1992.0,8,11,2017,Once Upon a Crime,Phoebe Under Arrest Scene,tt0101625 zmdsY7PIJDg,1992.0,10,11,2017,Once Upon a Crime,Between One and One Thirty Scene,tt0101625 6ZgWwouKUXg,1992.0,2,11,2017,Once Upon a Crime,The Only Way to Win in a Casino Scene,tt0101625 VCvOWhT1TiA,1992.0,5,11,2017,Once Upon a Crime,Augie's Gambling Relapse Scene,tt0101625 cGd2BBjzb0Y,1992.0,3,11,2017,Once Upon a Crime,Are You Finnish? Scene,tt0101625 E2WZXK79_d0,2005.0,3,8,2017,Zathura,The Stranded Astronaut Scene,tt0406375 WM3TedgbwIc,2005.0,2,8,2017,Zathura,Cryonic Sleeping Sister Scene,tt0406375 Ufv54teYXAw,2005.0,1,8,2017,Zathura,Meteor Shower Scene,tt0406375 cPfMxQLlirI,2005.0,7,8,2017,Zathura,Reprogramming the Killer Robot Scene,tt0406375 UinILaRACDA,2005.0,6,8,2017,Zathura,Wishing Star Scene,tt0406375 _dEEXgs7T1k,2005.0,8,8,2017,Zathura,Chased by Zorgons Scene,tt0406375 L5Jg3OVjPoo,2005.0,5,8,2017,Zathura,Caught Cheating Scene,tt0406375 9hMrzEWpZM0,2005.0,4,8,2017,Zathura,Time Sphincter Scene,tt0406375 FQwv6AGpdus,1979.0,10,10,2017,Dracula,The Defeat of Scene,tt0079073 CtDBcCXiE3M,1979.0,8,10,2017,Dracula,The King of Vampires Scene,tt0079073 cXm_h4Zdwpc,1979.0,4,10,2017,Dracula,I Love the Night Scene,tt0079073 grdxSWSHJaY,1979.0,6,10,2017,Dracula,A Vampire Van Helsing Scene,tt0079073 w8mbmSijd4o,1979.0,2,10,2017,Dracula,The Charming Count Scene,tt0079073 NyamI2ALbIA,1979.0,5,10,2017,Dracula,Flesh of My Flesh Scene,tt0079073 15WevUMiJI8,1979.0,3,10,2017,Dracula,A Visitor in the Night Scene,tt0079073 7rJZx_l_h1w,1979.0,7,10,2017,Dracula,An Unusual Creature Scene,tt0079073 0NXkZZqCGjs,1979.0,1,10,2017,Dracula,Death Ship Scene,tt0079073 uPS3iKFXKR4,1979.0,9,10,2017,Dracula,Lucy's Sharp Kiss Scene,tt0079073 bx50ueZJgns,2017.0,6,10,2017,The Mummy,Mr. Hyde Comes Out Scene,tt2345759 KsmXx3hB968,2017.0,4,10,2017,The Mummy,Ambulance Attack Scene,tt2345759 RyZ-saoiIzY,2017.0,7,10,2017,The Mummy,Escapes Scene,tt2345759 25_58Uww0bc,2017.0,5,10,2017,The Mummy,Dr. Jekyll Scene,tt2345759 j8nLPMys3b8,2017.0,10,10,2017,The Mummy,Death Kiss Scene,tt2345759 UJ_zLBr1NxE,2017.0,1,10,2017,The Mummy,The Plane Crash Scene,tt2345759 XTCEl_MFfHA,2017.0,8,10,2017,The Mummy,The Dead Rise Scene,tt2345759 AV3CrPe-1q0,2017.0,9,10,2017,The Mummy,Underwater Zombies Scene,tt2345759 7dtQiqaxf_o,2017.0,3,10,2017,The Mummy,Undead Fight Scene,tt2345759 1Ltz-vQPqgo,2017.0,2,10,2017,The Mummy,Nick Wakes Up Scene,tt2345759 Qch6oK4qX2k,2014.0,10,10,2017,A Little Chaos,The Fountain Revealed Scene,tt2639254 J5KvaQzBDoc,2014.0,5,10,2017,A Little Chaos,A Matter of Feeling Special Scene,tt2639254 xd9K2o_ZDdU,2014.0,9,10,2017,A Little Chaos,Stop! Scene,tt2639254 CpAVT7Y3vpM,2014.0,4,10,2017,A Little Chaos,The King's Gardener Scene,tt2639254 _1fHeesAez0,2014.0,8,10,2017,A Little Chaos,A Wise Rose Scene,tt2639254 MdfwpCH1Ksk,2014.0,7,10,2017,A Little Chaos,A Mother's Heart Scene,tt2639254 hdnrorjl0WM,2014.0,1,10,2017,A Little Chaos,Do You Believe in Order? Scene,tt2639254 TPDKmRQddq0,2014.0,6,10,2017,A Little Chaos,Flooding the Grove Scene,tt2639254 Me3eSvA2K9k,2014.0,2,10,2017,A Little Chaos,Search for Eden Scene,tt2639254 ZKfVrsrm_ac,2014.0,3,10,2017,A Little Chaos,His Highness Phillipe Scene,tt2639254 yZ773W4UICY,1933.0,8,10,2017,The Invisible Man,Killing Kemp Scene,tt0024184 KXMOURHEMpY,1933.0,1,10,2017,The Invisible Man,I'll Show You Who I Am Scene,tt0024184 bD8jQGwyuBU,1933.0,2,10,2017,The Invisible Man,Terrorizing the Village Scene,tt0024184 vsQak7aKH30,1933.0,5,10,2017,The Invisible Man,Terrible Power Scene,tt0024184 rW1_EfZ2pWU,1933.0,3,10,2017,The Invisible Man,A Visible Partner Scene,tt0024184 hvuQCnADQRM,1933.0,7,10,2017,The Invisible Man,"Murder, Money, Madness Scene",tt0024184 r7aXjBDUk8w,1933.0,9,10,2017,The Invisible Man,Trapped in a Barn Scene,tt0024184 ZmKECCbMc88,1933.0,6,10,2017,The Invisible Man,Escapes Scene,tt0024184 9D5WsQNIAcE,1933.0,10,10,2017,The Invisible Man,Visible at the End Scene,tt0024184 zZcYZmsSGs0,1933.0,4,10,2017,The Invisible Man,He's Here! Scene,tt0024184 I-93Ijkhy4I,1941.0,9,10,2017,The Wolf Man,The Hunt is On Scene,tt0034398 GYexCnV6cLY,1941.0,8,10,2017,The Wolf Man,They're Hunting Me Scene,tt0034398 8CouO6czPic,1941.0,6,10,2017,The Wolf Man,Bear Trap Scene,tt0034398 EqNTVkdsTL0,1941.0,4,10,2017,The Wolf Man,Protection From Me Scene,tt0034398 VAnkBQ7eWyc,1941.0,5,10,2017,The Wolf Man,First Kill Scene,tt0034398 R1hh6MVyQYg,1941.0,1,10,2017,The Wolf Man,A Beautiful Girl Scene,tt0034398 4mMrCXPCZAA,1941.0,3,10,2017,The Wolf Man,Heaven Help You Scene,tt0034398 F1nejgJdusQ,1941.0,2,10,2017,The Wolf Man,Wolf Attack Scene,tt0034398 uqS2-v7iZr8,1941.0,10,10,2017,The Wolf Man,Your Suffering Has Ended Scene,tt0034398 KFwzRnTqgDU,1941.0,7,10,2017,The Wolf Man,I'm a Murderer Scene,tt0034398 T_pKvfMT5ck,2005.0,3,10,2017,Lords of Dogtown,Pool Skating Scene,tt0355702 8RuMflmyF9k,2005.0,8,10,2017,Lords of Dogtown,Skateboard Championship Scene,tt0355702 ByRXX8KHS5o,2005.0,4,10,2017,Lords of Dogtown,Skip's Troubles Scene,tt0355702 XwFR9NZfhUI,2005.0,1,10,2017,Lords of Dogtown,Surfing the Streets Scene,tt0355702 jR_kxdUm1bc,2005.0,7,10,2017,Lords of Dogtown,Fame and Fortune Scene,tt0355702 Y8eSWYGZXe0,2005.0,10,10,2017,Lords of Dogtown,Skating with Sid Scene,tt0355702 NfDBhc__ntM,2005.0,5,10,2017,Lords of Dogtown,Bailing on Skip Scene,tt0355702 8e5fzbsfGCI,2005.0,6,10,2017,Lords of Dogtown,No Team Anymore Scene,tt0355702 XQEr5FlhFDc,2005.0,9,10,2017,Lords of Dogtown,Sorry I Left Scene,tt0355702 3ghKgAcPBC8,2005.0,2,10,2017,Lords of Dogtown,Not Looking Good Scene,tt0355702 Zxlo0xmD51Y,2016.0,3,10,2017,Pride and Prejudice and Zombies,Zombie Trap Scene,tt1374989 iRdSH-u1wWI,2016.0,8,10,2017,Pride and Prejudice and Zombies,Rescuing Darcy Scene,tt1374989 aYSdnLgl-FQ,2016.0,6,10,2017,Pride and Prejudice and Zombies,Elizabeth vs. Catherine Scene,tt1374989 NlPC4ag5S54,2016.0,7,10,2017,Pride and Prejudice and Zombies,Zombie Graveyard Scene,tt1374989 abXL2HrEjyE,2016.0,2,10,2017,Pride and Prejudice and Zombies,Jane is Attacked Scene,tt1374989 xs8jGY2dnCg,2016.0,4,10,2017,Pride and Prejudice and Zombies,Elizabeth Fights Darcy Scene,tt1374989 BKYpzJIAkeo,2016.0,5,10,2017,Pride and Prejudice and Zombies,Deeply Under Your Spell Scene,tt1374989 BSQeVY2fdL8,2016.0,1,10,2017,Pride and Prejudice and Zombies,Zombie Killers Scene,tt1374989 uFTd09NNJzo,2016.0,9,10,2017,Pride and Prejudice and Zombies,Irrevocably Caught Scene,tt1374989 ZCTqZhZRYl0,2016.0,10,10,2017,Pride and Prejudice and Zombies,The Love of My Life Scene,tt1374989 AvDUQXknug8,2016.0,8,10,2017,Billy Lynn's Long Halftime Walk,You Can Have Me Scene,tt2513074 5wErjt1ukFE,2016.0,1,10,2017,Billy Lynn's Long Halftime Walk,For My Sister Scene,tt2513074 JIRijCir934,2016.0,6,10,2017,Billy Lynn's Long Halftime Walk,It's Going Down Scene,tt2513074 0-Whu5Hlbz8,2016.0,5,10,2017,Billy Lynn's Long Halftime Walk,Sergeant's Ritual Scene,tt2513074 5JCbdlUra28,2016.0,9,10,2017,Billy Lynn's Long Halftime Walk,Make You Proud of Me,tt2513074 1vhyMvNS3Ek,2016.0,7,10,2017,Billy Lynn's Long Halftime Walk,Heroes Onstage Scene,tt2513074 MhS1b56Koxc,2016.0,4,10,2017,Billy Lynn's Long Halftime Walk,Ever Kill Somebody? Scene,tt2513074 KNwhBAOLCXQ,2016.0,10,10,2017,Billy Lynn's Long Halftime Walk,I Love You Scene,tt2513074 giajSDY8kCs,2016.0,3,10,2017,Billy Lynn's Long Halftime Walk,Backstage Love Scene,tt2513074 kwvSRZG285g,2016.0,2,10,2017,Billy Lynn's Long Halftime Walk,A Soldier's Story Scene,tt2513074 B46nugc-4c4,2017.0,4,10,2017,Underworld: Blood Wars,I've Seen So Much Killing Scene,tt3717252 SwarL21fqj0,2017.0,3,10,2017,Underworld: Blood Wars,Rescuing Selene Scene,tt3717252 kqFgnN10khg,2017.0,2,10,2017,Underworld: Blood Wars,Betrayed and Framed Scene,tt3717252 rM5Bg89j9qo,2017.0,10,10,2017,Underworld: Blood Wars,Spine-Ripping Death Scene,tt3717252 DSO1F6sM63s,2017.0,1,10,2017,Underworld: Blood Wars,I am Hunted Scene,tt3717252 6vAYIYN2Iac,2017.0,9,10,2017,Underworld: Blood Wars,Vampire Vengeance Scene,tt3717252 j0IXQIUh3jQ,2017.0,7,10,2017,Underworld: Blood Wars,Lycan Siege Scene,tt3717252 y9NhqnuoSAs,2017.0,5,10,2017,Underworld: Blood Wars,Lycans at the Gate Scene,tt3717252 dQNrOoc3NTA,2017.0,6,10,2017,Underworld: Blood Wars,Laid to Rest Scene,tt3717252 Sqnrzd0HCRY,2017.0,8,10,2017,Underworld: Blood Wars,The Return of Selene Scene,tt3717252 aJZL2uoPRZg,2016.0,3,10,2017,Passengers,Partner Mode Scene,tt1355644 xQyVBxABGxw,2016.0,1,10,2017,Passengers,Live a Little Scene,tt1355644 qeaiVveZWD8,2016.0,7,10,2017,Passengers,Gravity Loss Scene,tt1355644 0LArIo7OUJ8,2016.0,9,10,2017,Passengers,Saving Jim Scene,tt1355644 BH-EprDz8wI,2016.0,4,10,2017,Passengers,Space Date Scene,tt1355644 21aXGNHDBWQ,2016.0,5,10,2017,Passengers,Did You Wake Me Up? Scene,tt1355644 BJWR0io_SuE,2016.0,2,10,2017,Passengers,Meeting Aurora Scene,tt1355644 FCJSJ2xtky8,2016.0,6,10,2017,Passengers,You Took My Life Scene,tt1355644 CiqtsKGMblU,2016.0,8,10,2017,Passengers,We're Out of Time Scene,tt1355644 6-IGOKWYCDc,2016.0,10,10,2017,Passengers,Hell of a Life Scene,tt1355644 GoQhe_ntnR4,2014.0,1,8,2017,Theeb,Blood in the Well Scene,tt3170902 Y0TF3T90a8U,2014.0,4,8,2017,Theeb,In the Well Scene,tt3170902 IE_d_MBVR6s,2014.0,5,8,2017,Theeb,Help Me! Scene,tt3170902 MfKGLmjlyLo,2014.0,8,8,2017,Theeb,Revenge Scene,tt3170902 25UjaIMN-rY,2014.0,6,8,2017,Theeb,The Helpless Rabbit Scene,tt3170902 0LwM6-xXVQU,2014.0,3,8,2017,Theeb,Too Late for Prayers Scene,tt3170902 lFet5R_g-vY,2014.0,2,8,2017,Theeb,Canyon Ambush Scene,tt3170902 oNtGqOsseNQ,2014.0,7,8,2017,Theeb,The Dagger's Tip Scene,tt3170902 64cRTXIxwws,2016.0,8,8,2017,After the Storm,I Always Understood Scene,tt5294966 FeETSw95wp8,2016.0,4,8,2017,After the Storm,Before the Storm Scene,tt5294966 P1bTMEsYPug,2016.0,3,8,2017,After the Storm,A Day Out Scene,tt5294966 a7lxoNJJYEc,2016.0,7,8,2017,After the Storm,Like a Daughter Scene,tt5294966 1A08em6Y-kk,2016.0,5,8,2017,After the Storm,A New Relationship Scene,tt5294966 PSpIMEVCsV0,2016.0,6,8,2017,After the Storm,You Can't Find Happiness Scene,tt5294966 gfmtB17vowo,2016.0,2,8,2017,After the Storm,Bad Detective Scene,tt5294966 stqgd2mbvlo,2016.0,1,8,2017,After the Storm,Bathroom Visitation Scene,tt5294966 9xbk-7HBIOw,2016.0,8,8,2017,37,Happy Birthday Scene,tt4882174 15wjOeT6Qo4,2016.0,3,8,2017,37,The Attack Scene,tt4882174 Qj7OIg9Vc-g,2016.0,1,8,2017,37,The Neighbors Scene,tt4882174 ocXYjytHb40,2016.0,7,8,2017,37,A Coward Scene,tt4882174 UiHAMypGBPo,2016.0,6,8,2017,37,No One to Help Scene,tt4882174 7WkMxJKKITM,2016.0,5,8,2017,37,Daddy's Lying Scene,tt4882174 UjOJ-AMtAzY,2016.0,2,8,2017,37,Come to Bed Scene,tt4882174 Cf_0ggNhHMY,2016.0,4,8,2017,37,She's Crying Scene,tt4882174 SrqVUFbk_sE,2015.0,6,7,2017,Take Me to the River,Gun Lesson Scene,tt3142366 2g96QnNekOc,2015.0,1,7,2017,Take Me to the River,What Happened to Her? Scene,tt3142366 vFPRSImZev4,2015.0,5,7,2017,Take Me to the River,Are You Okay? Scene,tt3142366 yJTucB8fH04,2015.0,4,7,2017,Take Me to the River,Awkward Family Dinner Scene,tt3142366 Qt6F9WCle9k,2015.0,7,7,2017,Take Me to the River,It Wasn't My Idea Scene,tt3142366 LBLIa7bqcfY,2015.0,3,7,2017,Take Me to the River,Keep Away From My Daughter Scene,tt3142366 7MWts8-_LUo,2015.0,2,7,2017,Take Me to the River,Look Me in My Eye Scene,tt3142366 eKxv7whkFMM,1983.0,6,8,2017,Kamikaze '89,The Laughing Contest Scene,tt0084191 Na3loD5Xpew,1983.0,3,8,2017,Kamikaze '89,Krysmopompas Scene,tt0084191 ykcCGhbl1H4,1983.0,5,8,2017,Kamikaze '89,Freeway Freak Scene,tt0084191 0lCR_c5Su1M,1983.0,2,8,2017,Kamikaze '89,Rooftop Shootout Scene,tt0084191 zOHL9JZPELk,1983.0,1,8,2017,Kamikaze '89,Premature Death Scene,tt0084191 OstLbMEQM4Q,1983.0,8,8,2017,Kamikaze '89,Peace and Tranquility Scene,tt0084191 w9-ylaUijdc,1983.0,7,8,2017,Kamikaze '89,The Chief Scene,tt0084191 6WX8Ct4xMvE,1983.0,4,8,2017,Kamikaze '89,My Devoted Fans Scene,tt0084191 crZlpaRXKFE,2013.0,8,8,2017,Not Another Happy Ending,I Do Scene,tt1808339 bplKA4fZ8dI,2013.0,5,8,2017,Not Another Happy Ending,He's Using You Scene,tt1808339 CsXhHyDeJO0,2013.0,4,8,2017,Not Another Happy Ending,A Father's Anguish Scene,tt1808339 C77hQJ-zDeA,2013.0,2,8,2017,Not Another Happy Ending,You Changed My Title? Scene,tt1808339 VY50Mu29LxE,2013.0,7,8,2017,Not Another Happy Ending,You're the Reason Scene,tt1808339 TprgpfkdiRc,2013.0,6,8,2017,Not Another Happy Ending,Changing the Ending Scene,tt1808339 f6Oo9vLtKtA,2013.0,1,8,2017,Not Another Happy Ending,Never Been So Happy Scene,tt1808339 kpufOE3FIXA,2013.0,3,8,2017,Not Another Happy Ending,Meeting Darsie Scene,tt1808339 dBif8nb20_g,2016.0,3,8,2017,Glassland,Your Dad Was Never Around Scene,tt3407428 g_TTG6vhg_4,2016.0,5,8,2017,Glassland,You're Breaking My Heart Scene,tt3407428 8M0uWmbBrCc,2016.0,2,8,2017,Glassland,You're Gonna Drink Scene,tt3407428 dLxHFwfWIcQ,2016.0,1,8,2017,Glassland,Her Liver is Dying Scene,tt3407428 wnMPRSiIiUI,2016.0,6,8,2017,Glassland,Drinking Herself to Death Scene,tt3407428 k62E1AtOYnM,2016.0,8,8,2017,Glassland,Meet Your Son Scene,tt3407428 TqivtOAy2No,2016.0,7,8,2017,Glassland,Someone to Dance With Scene,tt3407428 EAKyvP2Rnqc,2016.0,4,8,2017,Glassland,That Child Ripped My Life Apart Scene,tt3407428 LK5QIZgbfZQ,2017.0,1,10,2017,Split,I Think You Have the Wrong Car Scene,tt4972582 I8-FxxgRACE,2017.0,9,10,2017,Split,Rejoice! Scene,tt4972582 My8kfz_Ddqg,2017.0,10,10,2017,Split,How Powerful We Can Be Scene,tt4972582 QAiVcQifKfE,2017.0,2,10,2017,Split,Help Us Hedwig Scene,tt4972582 I-6XHJFUBDI,2017.0,7,10,2017,Split,The Horde Takes Over Scene,tt4972582 FnFMS11g4fM,2017.0,6,10,2017,Split,Hedwig's Dance Scene,tt4972582 Uc--n6RoIgw,2017.0,4,10,2017,Split,Escape Attempt Scene,tt4972582 VPeXTe_6uOc,2017.0,3,10,2017,Split,Claire's Escape Scene,tt4972582 C83hfoyHHHk,2017.0,8,10,2017,Split,He's Coming Scene,tt4972582 H6ImGh1Xolc,2017.0,5,10,2017,Split,Hedwig's First Kiss Scene,tt4972582 2DgFlZwrD-Q,2016.0,3,10,2017,Ouija: Origin of Evil,Creepy Little Sister Scene,tt4361050 cn35LhT9zBg,2016.0,7,10,2017,Ouija: Origin of Evil,We'll Take All of You Scene,tt4361050 LSTU_JJcJxQ,2016.0,2,10,2017,Ouija: Origin of Evil,Family Seance Scene,tt4361050 -OUuZojE3aM,2016.0,9,10,2017,Ouija: Origin of Evil,I Didn't Mean To Scene,tt4361050 tFEKMdUMjEk,2016.0,10,10,2017,Ouija: Origin of Evil,Institutionalized Scene,tt4361050 rC9MhZGgJy4,2016.0,4,10,2017,Ouija: Origin of Evil,Channeling Forces Scene,tt4361050 DpQHj1R8kXk,2016.0,5,10,2017,Ouija: Origin of Evil,They Are Watching Us Scene,tt4361050 lwruhQqFttU,2016.0,6,10,2017,Ouija: Origin of Evil,Possessed Priest Scene,tt4361050 EiYxgC78ScI,2016.0,8,10,2017,Ouija: Origin of Evil,Sewing Her Fate Scene,tt4361050 8hWbptEarkA,2016.0,1,10,2017,Ouija: Origin of Evil,We Can See You Scene,tt4361050 U-Sqe0DN_E8,2017.0,9,10,2017,A Dog's Purpose,The Right Fit Scene,tt1753383 tg4jLJ6OiDY,2017.0,1,10,2017,A Dog's Purpose,I Had a Boy Scene,tt1753383 cOXVnmVPdtQ,2017.0,7,10,2017,A Dog's Purpose,My Best Life Scene,tt1753383 BhHv3Yxcuro,2017.0,10,10,2017,A Dog's Purpose,Bailey Comes Home Scene,tt1753383 Z4ScRG9SDSI,2017.0,6,10,2017,A Dog's Purpose,Corgi in Love Scene,tt1753383 BCGzM3s9-1o,2017.0,8,10,2017,A Dog's Purpose,I Found You! Scene,tt1753383 f-3Bldu8BJ4,2017.0,4,10,2017,A Dog's Purpose,Bailey Passes On Scene,tt1753383 ALw553euzsc,2017.0,5,10,2017,A Dog's Purpose,I Need to Rest Scene,tt1753383 nfFsHF8guzM,2017.0,3,10,2017,A Dog's Purpose,Doggie Matchmaker Scene,tt1753383 vhhiJqQBMMY,2017.0,2,10,2017,A Dog's Purpose,Coin Collecting Scene,tt1753383 1xhIWaxWINs,2017.0,8,10,2017,Almost Christmas,Inviting the Mistress to Dinner Scene,tt4649416 vLgTWXjMlWI,2017.0,6,10,2017,Almost Christmas,Blackaroni and Cheese Scene,tt4649416 u_n1SEwWmYc,2017.0,2,10,2017,Almost Christmas,He Killed Santa Scene,tt4649416 3B40Rhnt4PA,2017.0,4,10,2017,Almost Christmas,Dance Break Scene,tt4649416 wXQ1EhVW2xQ,2017.0,9,10,2017,Almost Christmas,I Looked Up To You Scene,tt4649416 318L0jBVIKM,2017.0,10,10,2017,Almost Christmas,Prom Do-Over Scene,tt4649416 CHs36bNm7xk,2017.0,7,10,2017,Almost Christmas,Christmas Dinner Scene,tt4649416 SzVC7ErC8RY,2017.0,1,10,2017,Almost Christmas,Five Days as a Family,tt4649416 u7yQ7qs6Zew,2017.0,5,10,2017,Almost Christmas,Caught Cheating Scene,tt4649416 7URRIBRCm8E,2017.0,3,10,2017,Almost Christmas,You Locked Me Out Scene,tt4649416 BG3bNlh0qiU,2017.0,8,10,2017,The Great Wall,Balloon Attack Scene,tt2034800 S7iDxRJpDZU,2017.0,9,10,2017,The Great Wall,The Cadet's Sacrifice Scene,tt2034800 V6B3elF2pYU,2017.0,4,10,2017,The Great Wall,Learning to Trust Scene,tt2034800 DefILRrX77k,2017.0,1,10,2017,The Great Wall,The First Attack Scene,tt2034800 4m15WAC5khw,2017.0,3,10,2017,The Great Wall,Archery Test Scene,tt2034800 JWbqI-m3A3w,2017.0,10,10,2017,The Great Wall,Killing the Queen Scene,tt2034800 6D64t1trSRs,2017.0,5,10,2017,The Great Wall,Nighttime Trap Scene,tt2034800 z23vdob1grU,2017.0,7,10,2017,The Great Wall,Fighting Blind Scene,tt2034800 ahCg__rBh1Q,2017.0,6,10,2017,The Great Wall,Death Blades and Harpoons Scene,tt2034800 CLWCgMVf6U0,2017.0,2,10,2017,The Great Wall,Close Combat Scene,tt2034800 Wurqpe5tNjA,2016.0,9,10,2017,Nocturnal Animals,A Good Man Scene,tt4550098 5PsKwqiRjEM,2016.0,5,10,2017,Nocturnal Animals,Did They Suffer? Scene,tt4550098 geoi6Sxyg7g,2016.0,10,10,2017,Nocturnal Animals,A Nice Guy Like You Scene,tt4550098 vrhgkmAzWvo,2016.0,7,10,2017,Nocturnal Animals,Do You Love Me? Scene,tt4550098 iAlU6xt7Y_s,2016.0,3,10,2017,Nocturnal Animals,Eyes Like Your Mother Scene,tt4550098 z-4DtLFGzG0,2016.0,2,10,2017,Nocturnal Animals,Get in My Car Scene,tt4550098 l-GbvgBXi18,2016.0,4,10,2017,Nocturnal Animals,Recognize this Man? Scene,tt4550098 5sMFxEL3zhw,2016.0,6,10,2017,Nocturnal Animals,Make Him Suffer Scene,tt4550098 a6--cEjo3bY,2016.0,8,10,2017,Nocturnal Animals,Any Last Words? Scene,tt4550098 FHeC_tenzrw,2016.0,1,10,2017,Nocturnal Animals,Pull Over! Scene,tt4550098 CEO9YAsxMfI,2016.0,7,10,2017,The Girl on the Train,Did You Murder Megan? Scene,tt3631112 SW-1sk_U8vU,2016.0,3,10,2017,The Girl on the Train,Stay Away Scene,tt3631112 X1ByBEw-WxM,2016.0,8,10,2017,The Girl on the Train,Tell Her the Truth Scene,tt3631112 yYQtZCaPFaM,2016.0,6,10,2017,The Girl on the Train,Taking the Baby Scene,tt3631112 B2zzhcU9f9U,2016.0,9,10,2017,The Girl on the Train,The Truth Comes Out Scene,tt3631112 ahCOQjOPTZw,2016.0,10,10,2017,The Girl on the Train,Revenge Scene,tt3631112 qJznSue3tEs,2016.0,1,10,2017,The Girl on the Train,Megan's Malaise Scene,tt3631112 yHw5A9BAZ98,2016.0,2,10,2017,The Girl on the Train,Pure Rage Scene,tt3631112 lKqBsgfSSU8,2016.0,4,10,2017,The Girl on the Train,Afraid of Myself Scene,tt3631112 IegMpeJM1QU,2016.0,5,10,2017,The Girl on the Train,You're Lying to Me Scene,tt3631112 5rGPKIgdV6A,2017.0,3,10,2017,The Fate of the Furious,Prison Escape Scene,tt4630562 5d1P50L28LU,2017.0,7,10,2017,The Fate of the Furious,Roman Goes Swimming Scene,tt4630562 ox1SVCutwv4,2017.0,2,10,2017,The Fate of the Furious,Wrecking Ball Chase Scene,tt4630562 6ZygVYbMrfc,2017.0,8,10,2017,The Fate of the Furious,Torpedoes Scene,tt4630562 AoB_mdZxNlY,2017.0,5,10,2017,The Fate of the Furious,Raining Cars Scene,tt4630562 G76ThtqLvWk,2017.0,6,10,2017,The Fate of the Furious,Harpooning Dom's Car Scene,tt4630562 wHfXZ9jcX3A,2017.0,10,10,2017,The Fate of the Furious,Heat Seeking Missile Scene,tt4630562 Z9kPRWAjSNo,2017.0,1,10,2017,The Fate of the Furious,The Cuban Mile Scene,tt4630562 Tr3_HOXg4Ug,2017.0,9,10,2017,The Fate of the Furious,Baby Fight Scene,tt4630562 4FkUmPvbDQs,2017.0,4,10,2017,The Fate of the Furious,Save Your Son Scene,tt4630562 v4tdwXAnFnU,2015.0,3,8,2017,Somewhere in the Middle,You Never Called Scene,tt3263408 xIeyPrdc2Yo,2015.0,1,8,2017,Somewhere in the Middle,Show Me How to Seduce Scene,tt3263408 tkNKZ8e4aPc,2015.0,5,8,2017,Somewhere in the Middle,You Can't Sleep With Me Then Leave Scene,tt3263408 Yaj2tnjamhM,2015.0,7,8,2017,Somewhere in the Middle,An Unsatisfying Night Scene,tt3263408 V6W8AZMUipE,2015.0,4,8,2017,Somewhere in the Middle,Enough With the Lies Scene,tt3263408 l0CbM-jK_eI,2015.0,8,8,2017,Somewhere in the Middle,What is Wrong With You? Scene,tt3263408 VonhME1FiMk,2015.0,2,8,2017,Somewhere in the Middle,Don't Embarrass Me Scene,tt3263408 -Q6oYNUhNes,2015.0,6,8,2017,Somewhere in the Middle,Trying New Things Scene,tt3263408 2ZyxEFqlA1Y,2014.0,8,8,2017,The Dark Valley,Make It Quick Scene,tt2650978 wAzEOzfIX_0,2014.0,6,8,2017,The Dark Valley,Cabin Shootout Scene,tt2650978 DjypYuuAvDY,2014.0,3,8,2017,The Dark Valley,The Wedding Scene,tt2650978 aZGpjXdKQXw,2014.0,1,8,2017,The Dark Valley,Blinded Scene,tt2650978 3a_nj9e_5bs,2014.0,5,8,2017,The Dark Valley,Eat It! Scene,tt2650978 way2bfS3z1M,2014.0,7,8,2017,The Dark Valley,Blacksmith Fight Scene,tt2650978 wDfgx1Cj97Y,2014.0,2,8,2017,The Dark Valley,Punishment and Revenge Scene,tt2650978 oymR3xfYh4c,2014.0,4,8,2017,The Dark Valley,Saving Luzi Scene,tt2650978 mfP8p7raf0s,2017.0,7,8,2017,Harmonium,We're Going to Kill You Scene,tt5182856 tpmqajLJQz0,2017.0,3,8,2017,Harmonium,A Wild Rose Scene,tt5182856 Pzk9hsEacmQ,2017.0,8,8,2017,Amnesia,The Night is Young Scene,tt8071196 Eduv1gpvg6w,2017.0,5,8,2017,Amnesia,War Stories Scene,tt8071196 hN-1U-g15NU,2017.0,3,8,2017,Amnesia,Martha's Memory Scene,tt8071196 RbU9NjiFLV0,2017.0,2,8,2017,Amnesia,Making Music Scene,tt8071196 6C3HDhgTv8Y,2017.0,7,8,2017,Amnesia,You Ran Away Scene,tt8071196 4Mzzy3KQNoI,2017.0,1,8,2017,Amnesia,To Music Scene,tt8071196 -FDEcmWJ2GU,2017.0,6,8,2017,Amnesia,What Happened to the Girls? Scene,tt8071196 r_SuoUET-ok,2017.0,4,8,2017,Amnesia,Pouring Concrete Onto Truth Scene,tt8071196 J73K7gabt-U,2017.0,8,8,2017,Harmonium,Tired of Life Scene,tt5182856 PXEJAEDVUkM,2017.0,2,8,2017,Harmonium,Lust in the Back Room Scene,tt5182856 zN8bZ1JjWWI,2017.0,4,8,2017,Harmonium,What Did You Do? Scene,tt5182856 os6khU56n2g,2017.0,1,8,2017,Harmonium,Do I Scare You? Scene,tt5182856 QD1AjTF83ds,2017.0,6,8,2017,Harmonium,A Proper Couple Scene,tt5182856 vh2wmVvFUZI,2017.0,5,8,2017,Harmonium,A Secret Revealed Scene,tt5182856 bI1MOyt8dXE,2016.0,2,8,2017,Soul on a String,Men's Business Scene,tt5974624 EML4kWiax44,2016.0,7,8,2017,Soul on a String,Gouri vs. Tabei Scene,tt5974624 nfteV9Dkml8,2016.0,3,8,2017,Soul on a String,The Wrong Man Scene,tt5974624 XC3h9PPpQtI,2016.0,5,8,2017,Soul on a String,Men Like You Scene,tt5974624 _0No4OkGHt4,2016.0,8,8,2017,Soul on a String,We've Lost Scene,tt5974624 B6OtAXBRTSI,2016.0,4,8,2017,Soul on a String,The Dying Man Scene,tt5974624 mCO14xw1nJo,2016.0,1,8,2017,Soul on a String,A Map On Your Body Scene,tt5974624 BGHB4Eyjqt4,2016.0,6,8,2017,Soul on a String,The Prayer Scene,tt5974624 bnLhMGzgfSM,1990.0,9,10,2017,Kindergarten Cop,Hitting Back Scene,tt0099938 0noY-XrAJRg,1990.0,10,10,2017,Kindergarten Cop,Saving Dominic Scene,tt0099938 m1JgMM8b9_w,1990.0,5,10,2017,Kindergarten Cop,They're Horrible Scene,tt0099938 t_FRWUPcR7Y,1990.0,6,10,2017,Kindergarten Cop,It's Not a Tumor! Scene,tt0099938 YSrOLez2GbE,1990.0,8,10,2017,Kindergarten Cop,You Belong to Me! Scene,tt0099938 q9FYBjSc3cU,1990.0,1,10,2017,Kindergarten Cop,The Party Pooper Scene,tt0099938 k96h1dYQrj0,1990.0,3,10,2017,Kindergarten Cop,Boys Have a Penis Scene,tt0099938 IxoCv_JpQVs,1990.0,2,10,2017,Kindergarten Cop,Kids on the Plane Scene,tt0099938 -yPwW5V4mhI,1990.0,7,10,2017,Kindergarten Cop,Who is Your Daddy? Scene,tt0099938 IMQADg1Dp9g,1990.0,4,10,2017,Kindergarten Cop,Shut Up! Scene,tt0099938 kn8k_ox5OXs,1995.0,2,11,2017,Apollo 13,Suiting Up Scene,tt0112384 lMtWWls4oas,1995.0,3,11,2017,Apollo 13,Go for Launch Scene,tt0112384 f6F6MzMT2g8,1995.0,8,11,2017,Apollo 13,Duct Tape and Cardboard Scene,tt0112384 ry55--J4_VQ,1995.0,7,11,2017,Apollo 13,Square Peg in a Round Hole Scene,tt0112384 C3J1AO9z0tA,1995.0,4,11,2017,Apollo 13,"Houston, We Have a Problem Scene",tt0112384 zZTH3HdE8Sg,1995.0,10,11,2017,Apollo 13,It's Been a Privilege Flying With You Scene,tt0112384 s_7PfocHTmc,1995.0,11,11,2017,Apollo 13,Re-Entry Scene,tt0112384 XLMDSjCzEx8,1995.0,5,11,2017,Apollo 13,A New Mission Scene,tt0112384 Tid44iy6Rjs,1995.0,6,11,2017,Apollo 13,Failure Is Not an Option Scene,tt0112384 7RJnMME0XAw,1995.0,1,11,2017,Apollo 13,Did You Know the Astronauts in the Fire? Scene,tt0112384 UNYBtjHAuSA,1995.0,9,11,2017,Apollo 13,Just Breathe Normal Scene,tt0112384 Igs1WM2pA54,1954.0,2,10,2017,Dial M for Murder,Your Word Against Mine Scene,tt0046912 LWIAWDjHhx4,1954.0,1,10,2017,Dial M for Murder,A Far More Sensible Idea Scene,tt0046912 8HiCEPL6oa8,1954.0,4,10,2017,Dial M for Murder,"Dialing ""M"" for Murder Scene",tt0046912 jPRiyRmsLBo,1954.0,3,10,2017,Dial M for Murder,Planning the Murder Scene,tt0046912 9qorxa6iMm4,1954.0,5,10,2017,Dial M for Murder,Manipulating the Crime Scene Scene,tt0046912 tUiVEKK8rWM,1954.0,9,10,2017,Dial M for Murder,A Fantastic Story Scene,tt0046912 DaWi5EoJVGA,1954.0,7,10,2017,Dial M for Murder,A Very Serious Position Scene,tt0046912 Oh0635HLx5s,1954.0,6,10,2017,Dial M for Murder,Reenacting the Murder Scene,tt0046912 JY4UoItJ_lA,1954.0,10,10,2017,Dial M for Murder,Caught by the Wrong Key Scene,tt0046912 9MSGSOjdViQ,1954.0,8,10,2017,Dial M for Murder,Guilty! Scene,tt0046912 3KdgZgQRDU0,1986.0,2,10,2017,Platoon,Dance! Scene,tt0091763 tImxhYu2PG8,1986.0,5,10,2017,Platoon,We're Gonna Lose This War Scene,tt0091763 r_3ofu2x8qM,1986.0,6,10,2017,Platoon,Elias is Betrayed Scene,tt0091763 tlLSqeVA_no,1986.0,3,10,2017,Platoon,Barnes Crosses the Line Scene,tt0091763 cCwn-ROhwyo,1986.0,10,10,2017,Platoon,Retribution Scene,tt0091763 8cGUULb2K-0,1986.0,4,10,2017,Platoon,Burning the Village Scene,tt0091763 QEv3zzKyiFQ,1986.0,7,10,2017,Platoon,The Death of Sgt. Elias Scene,tt0091763 S0IfbNVCoCE,1986.0,9,10,2017,Platoon,"Pecker Hard, Powder Dry Scene",tt0091763 0bw8UM1eLFo,1986.0,8,10,2017,Platoon,I Am Reality Scene,tt0091763 PvqQnJ7Fvz4,1986.0,1,10,2017,Platoon,Hell Is the Impossibility of Reason Scene,tt0091763 nKDUDF3cgRA,1988.0,4,12,2017,Dirty Rotten Scoundrels,Meeting Ruprecht Scene,tt0095031 14nilke-mtQ,1988.0,9,12,2017,Dirty Rotten Scoundrels,Do You Feel This? Scene,tt0095031 BYmHra1d_Nw,1988.0,8,12,2017,Dirty Rotten Scoundrels,Freddy's Sad Story Scene,tt0095031 r2RzBizjKT0,1988.0,7,12,2017,Dirty Rotten Scoundrels,Wheelchair Roulette Scene,tt0095031 08NzJRNAFGc,1988.0,2,12,2017,Dirty Rotten Scoundrels,Lawrence Meets Freddy Scene,tt0095031 xxulNn8UDtY,1988.0,10,12,2017,Dirty Rotten Scoundrels,"Freddy's ""Suicide"" Scene",tt0095031 NePF08sMSDA,1988.0,3,12,2017,Dirty Rotten Scoundrels,Freddy Goes to Jail Scene,tt0095031 yMiJp1nYlNA,1988.0,11,12,2017,Dirty Rotten Scoundrels,Freddy Walks! Scene,tt0095031 nkuKrymtuCg,1988.0,5,12,2017,Dirty Rotten Scoundrels,Ruprecht Gets Angry Scene,tt0095031 SKDX-qJaJ08,1988.0,6,12,2017,Dirty Rotten Scoundrels,Dinner With Ruprecht Scene,tt0095031 xof2LkhAFGU,1988.0,12,12,2017,Dirty Rotten Scoundrels,Janet's Return Scene,tt0095031 EOyAHaO7lwA,1988.0,1,12,2017,Dirty Rotten Scoundrels,Freddy Cons a Free Meal Scene,tt0095031 3wqXNKYn-fQ,2017.0,7,10,2017,Get Out,She's a Genius Scene,tt5052448 OT61p6s77_U,2017.0,5,10,2017,Get Out,Give Me the Keys Scene,tt5052448 n9hjsuaj448,2017.0,9,10,2017,Get Out,Chris's Revenge Scene,tt5052448 y1OhC9h3flY,2017.0,3,10,2017,Get Out,"No, No, No Scene",tt5052448 85O_vS9vSCA,2017.0,8,10,2017,Get Out,Saved by Cotton Scene,tt5052448 T31h3L_egm8,2017.0,2,10,2017,Get Out,Good to See Another Brother Scene,tt5052448 KJhlJ8p8v7A,2017.0,6,10,2017,Get Out,Abducting Black People Scene,tt5052448 kBwVWrBk_uo,2017.0,1,10,2017,Get Out,The Sunken Place Scene,tt5052448 uG_KHjd_PSc,2017.0,4,10,2017,Get Out,of Here Scene,tt5052448 sLLp4bO6dDI,2017.0,10,10,2017,Get Out,I Love You Scene,tt5052448 4TsgjtL0Qx4,2017.0,6,10,2017,Fifty Shades Darker,Unwelcome Visitor Scene,tt4465564 gT7MQhe8gRE,2017.0,4,10,2017,Fifty Shades Darker,Love in an Elevator Scene,tt4465564 X4jdgckXC9I,2017.0,9,10,2017,Fifty Shades Darker,The Answer is Yes Scene,tt4465564 UVXRswx8I8g,2017.0,2,10,2017,Fifty Shades Darker,Auction Seduction Scene,tt4465564 CoQM9K_r3kY,2017.0,1,10,2017,Fifty Shades Darker,Re-Negotiation Scene,tt4465564 b-w1bY8qhnc,2017.0,8,10,2017,Fifty Shades Darker,Miss Me? Scene,tt4465564 97qWmPkODZA,2017.0,3,10,2017,Fifty Shades Darker,Going the Extra Mile Scene,tt4465564 rDnazOBaF1U,2017.0,7,10,2017,Fifty Shades Darker,Submissive Sadist Scene,tt4465564 wEPZVYQqdMY,2017.0,5,10,2017,Fifty Shades Darker,A Friendly Wager Scene,tt4465564 0IiCOhajpS8,2017.0,10,10,2017,Fifty Shades Darker,A Proper Proposal Scene,tt4465564 RsJmRjseSzo,2004.0,11,13,2017,Hotel Rwanda,I Cannot Leave Them to Die Scene,tt0395169 Ak8uiLVkpy4,2004.0,9,13,2017,Hotel Rwanda,There Will Be No Rescue Scene,tt0395169 d46cDtFv_Rw,2004.0,5,13,2017,Hotel Rwanda,Tatiana's Brother Scene,tt0395169 wZTaXoogvDQ,2004.0,8,13,2017,Hotel Rwanda,The Hutu Leave Scene,tt0395169 btfIH4Q2BQA,2004.0,7,13,2017,Hotel Rwanda,A Grave Situation Scene,tt0395169 bY-jTccddQo,2004.0,4,13,2017,Hotel Rwanda,The Hutu Arrive Scene,tt0395169 ty_jbbvZDkQ,2004.0,3,13,2017,Hotel Rwanda,Capturing the Massacre Scene,tt0395169 1Kk_oah-wCM,2004.0,13,13,2017,Hotel Rwanda,There's Always Room Scene,tt0395169 FGLxQHJ5NEs,2004.0,12,13,2017,Hotel Rwanda,A Marked Man Scene,tt0395169 5tz8013avVU,2004.0,6,13,2017,Hotel Rwanda,Help Arrives Scene,tt0395169 vKcEalTIwfQ,2004.0,1,13,2017,Hotel Rwanda,Paul Finds Roger Scene,tt0395169 psW7sLoNutA,2004.0,2,13,2017,Hotel Rwanda,How Can People Not Intervene? Scene,tt0395169 TffPDHIwQtc,2004.0,10,13,2017,Hotel Rwanda,The Fog Clears Scene,tt0395169 9OMdSRrUdy8,2011.0,5,10,2017,Sanctum,The Squeeze Scene,tt0881320 s2QlioAboes,2011.0,10,10,2017,Sanctum,Can You Help Me? Scene,tt0881320 TGqv7BxCgYg,2011.0,1,10,2017,Sanctum,Into the Cave Scene Moveiclips,tt0881320 gkqqhFre2RE,2011.0,3,10,2017,Sanctum,He Killed Her Scene,tt0881320 N5fCeYm3-rQ,2011.0,6,10,2017,Sanctum,The Bends Scene,tt0881320 OF_frDHo_nw,2011.0,4,10,2017,Sanctum,Sealed In Scene,tt0881320 ei4m-fQ0bak,2011.0,7,10,2017,Sanctum,Traversing the Chasm Scene,tt0881320 qZk2O6OlYJo,2011.0,2,10,2017,Sanctum,Buddy Breathing Scene,tt0881320 cKUwdiog-n8,2011.0,8,10,2017,Sanctum,Put Your Knife Away Scene,tt0881320 Ujm2mTIaGC0,2011.0,9,10,2017,Sanctum,What About Carl? Scene,tt0881320 uQpHx3lBGms,1988.0,5,11,2017,Married to the Mob,Deadly Drive Thru Scene,tt0095593 JYLVFSmlNFs,1988.0,9,11,2017,Married to the Mob,Hotel Shootout Scene,tt0095593 BXNuNJhLWyw,1988.0,6,11,2017,Married to the Mob,Mike Opens Up Scene,tt0095593 MpaMbLDTxyY,1988.0,1,11,2017,Married to the Mob,Frank's Revolver Scene,tt0095593 0wTKzzRtGqY,1988.0,7,11,2017,Married to the Mob,The Mob vs. the FBI Scene,tt0095593 CUzNygPSRZM,1988.0,3,11,2017,Married to the Mob,Frank's Funeral Scene,tt0095593 XF33SnFIDAQ,1988.0,11,11,2017,Married to the Mob,A Second Chance Scene,tt0095593 4us4K3KLRM0,1988.0,4,11,2017,Married to the Mob,Peeping Tom at Chicken Lickin' Scene,tt0095593 bPH152eXEfU,1988.0,8,11,2017,Married to the Mob,Are You Being Straight With Me? Scene,tt0095593 FiVYtNf5Hos,1988.0,10,11,2017,Married to the Mob,Kiss it Goodbye! Scene,tt0095593 ovPXL1WPTMA,1988.0,2,11,2017,Married to the Mob,Tony Kills Frank Scene,tt0095593 1CKEXvHN9es,2007.0,4,12,2017,Lions for Lambs,The Cost of Leaving Afghanistan Scene,tt0891527 q2EU-k9I5yg,2007.0,10,12,2017,Lions for Lambs,A Conscience Attack Scene,tt0891527 wQc-GpTtnR0,2007.0,6,12,2017,Lions for Lambs,The Senator Challenges Janine Scene,tt0891527 q_u6njqBaB8,2007.0,7,12,2017,Lions for Lambs,A Greater Depression Scene,tt0891527 MvRfyxGjA90,2007.0,3,12,2017,Lions for Lambs,"The ""Science"" in Politics Scene",tt0891527 Aks95ziAQXU,2007.0,8,12,2017,Lions for Lambs,Lions Led by Lambs Scene,tt0891527 btk4Wp0RssY,2007.0,11,12,2017,Lions for Lambs,Malley on Adulthood Scene,tt0891527 E2wr_tRqNZQ,2007.0,1,12,2017,Lions for Lambs,Funneling Through Iran Scene,tt0891527 DzQjdpw73ZY,2007.0,5,12,2017,Lions for Lambs,A Tipping Point Scene,tt0891527 C1PilkENI-k,2007.0,9,12,2017,Lions for Lambs,News vs. Business Scene,tt0891527 2dB26bOiT4E,2007.0,2,12,2017,Lions for Lambs,Helicopter Attack Scene,tt0891527 8i7z8cEA4IM,2007.0,12,12,2017,Lions for Lambs,Not Laying Down Scene,tt0891527 lMmTZ7oTDRI,1992.0,7,8,2017,Body Snatchers,Discovered Scene,tt0106452 P_Iz-WhpmXY,1992.0,2,8,2017,Body Snatchers,What's in the Water? Scene,tt0106452 jF0RYgX6Hgo,1991.0,6,8,2017,Body Snatchers,It's the Race That's Important Scene,tt0106452 h8wzJimC5Zc,1992.0,8,8,2017,Body Snatchers,You Can Only Stay Awake So Long Scene,tt0106452 uSCNsJDEf1M,1992.0,5,8,2017,Body Snatchers,It's Too Late! Scene,tt0106452 NUmE-c4ym40,1992.0,1,8,2017,Body Snatchers,They Get You When You Sleep Scene,tt0106452 Lk2gIdLgwz4,1992.0,4,8,2017,Body Snatchers,Where You Gonna Go? Scene,tt0106452 qqZPej42OkE,1992.0,3,8,2017,Body Snatchers,Fingerpainting Scene,tt0106452 jEveVtZmPu0,2001.0,9,9,2017,Osmosis Jones,Osmosis vs. Thrax Scene,tt0181739 FnPOuK9RHH0,2001.0,2,9,2017,Osmosis Jones,"Careful, I'm Contagious Scene",tt0181739 5c1qYWHkPEc,2001.0,8,9,2017,Osmosis Jones,Pep Talk at Bladder Station Scene,tt0181739 MucDLDFYNDE,2001.0,3,9,2017,Osmosis Jones,The Smell of Change Scene,tt0181739 NlREC9TagHY,2001.0,7,9,2017,Osmosis Jones,Big Bad Pickanosis Scene,tt0181739 mGAaR9KKszs,2001.0,6,9,2017,Osmosis Jones,Fluish Informant Scene,tt0181739 0_0U4bhe6ag,2001.0,4,9,2017,Osmosis Jones,The Baddest Illness You've Ever Seen Scene,tt0181739 Rn0Qk4aHYfs,2001.0,5,9,2017,Osmosis Jones,Blowing the Snot Dam Scene,tt0181739 CU7-qLo7GPo,2001.0,1,9,2017,Osmosis Jones,Germicidal Maniac Scene,tt0181739 A0FwoprE1cQ,1997.0,5,10,2017,Mad City,Is Anybody Listening? Scene,tt0119592 j_1k-SzcOrs,1997.0,10,10,2017,Mad City,We Killed Him Scene,tt0119592 89FuExOuBbI,1997.0,8,10,2017,Mad City,Shots Fired Scene,tt0119592 Wm_7niZcI1s,1997.0,4,10,2017,Mad City,Public Opinion Scene,tt0119592 CeE4xdFmuVs,1997.0,9,10,2017,Mad City,You're Going to Destroy Him Scene,tt0119592 Y9HqtZTcTJk,1997.0,7,10,2017,Mad City,I Ain't Going to Prison Scene,tt0119592 NvKYxRmWYEs,1997.0,6,10,2017,Mad City,I Just Want to Go Home Scene,tt0119592 GbOXTIymvqc,1997.0,1,10,2017,Mad City,We Have Real News Scene,tt0119592 RehVwEopIQ4,1997.0,2,10,2017,Mad City,Shot on Live TV Scene,tt0119592 o-kmndqHfF0,1997.0,3,10,2017,Mad City,Helping a Negotiation Scene,tt0119592 Jou60MhXBcw,1992.0,3,12,2017,Diggstown,Boxing and Betting Scene,tt0104107 gtngV41jpcw,1992.0,1,12,2017,Diggstown,The Warden Don't Carry Blanks Scene,tt0104107 b1MxW8nf_lU,1992.0,10,12,2017,Diggstown,One Punch Knockout Scene,tt0104107 Q_GqOe9HFRY,1992.0,4,12,2017,Diggstown,Caine Meets Emily Scene,tt0104107 _kGt7Vv2Pyw,1992.0,6,12,2017,Diggstown,John Gillon's Plan Scene,tt0104107 lMiVewLfZKI,1992.0,12,12,2017,Diggstown,I'm Stopping the Fight Scene,tt0104107 P20hrE8pmoI,1992.0,7,12,2017,Diggstown,Flatulence Scene,tt0104107 9di5MvVZb1k,1992.0,5,12,2017,Diggstown,Old Man Training Scene,tt0104107 0ePC0mh4rCY,1992.0,8,12,2017,Diggstown,Desperation Scene,tt0104107 WlvCTpjwaXE,1992.0,9,12,2017,Diggstown,You Better Win Scene,tt0104107 iwxe2sIgQL0,1992.0,2,12,2017,Diggstown,Hustler and a Con Man Scene,tt0104107 6l0tsxNujWA,1992.0,11,12,2017,Diggstown,You Are Black Scene,tt0104107 hjuvr5uGA4s,1949.0,9,10,2017,Adam's Rib,Licorice Scene,tt0041090 n7l2RLvI7Ss,1939.0,3,8,2017,The Roaring Twenties,The Truth Behind the Fantasy Scene,tt0031867 q8woScnBklo,1939.0,8,8,2017,The Roaring Twenties,He Used to Be a Big Shot Scene,tt0031867 lKh7qSp6zIc,1939.0,2,8,2017,The Roaring Twenties,If I Ever Get Back Scene,tt0031867 tNuPwipxx94,1939.0,5,8,2017,The Roaring Twenties,A Partnership Built on Betrayal Scene,tt0031867 QuZ_ak2qxeE,1939.0,7,8,2017,The Roaring Twenties,Here's One Rap Ya Won't Beat Scene,tt0031867 FhXn_kxlWno,1939.0,1,8,2017,The Roaring Twenties,Making Friends in a Shell Hole Scene,tt0031867 D143VuAxr-k,1939.0,6,8,2017,The Roaring Twenties,He Had it Coming Scene,tt0031867 2NR-tebGw3U,1939.0,4,8,2017,The Roaring Twenties,The Boat Raid Scene,tt0031867 JxbvOwAB-xI,1949.0,4,10,2017,Adam's Rib,A Woman Scorned Scene,tt0041090 VR0NIF6PbCo,1949.0,3,10,2017,Adam's Rib,Equal Rights for Women Scene,tt0041090 yAmTu-R5MQM,1949.0,1,10,2017,Adam's Rib,This Deplorable System Scene,tt0041090 POu3JnhEmT4,1949.0,6,10,2017,Adam's Rib,Contempt for the Law Scene,tt0041090 8RGjds-aK00,1949.0,8,10,2017,Adam's Rib,Mutual Everything,tt0041090 6oqDO7aHVFo,1949.0,5,10,2017,Adam's Rib,A Little Slap Scene,tt0041090 hdQOL2aFufE,1949.0,7,10,2017,Adam's Rib,Equality Scene,tt0041090 Hl9OzCY9fVE,1949.0,10,10,2017,Adam's Rib,Vive Le Difference Scene,tt0041090 P27sTXSGrhQ,1949.0,2,10,2017,Adam's Rib,A Word in Edgewise Scene,tt0041090 i-2kXcQgs_w,1988.0,4,10,2017,Colors,Nothing But a Gangster Scene,tt0094894 003kLKX8n3E,1988.0,2,10,2017,Colors,Hodges' Alley Scene,tt0094894 00I2Ofraf4A,1988.0,10,10,2017,Colors,One-Eight-Seven Scene,tt0094894 vhfk-aOAgIE,1988.0,9,10,2017,Colors,Gangster Dance Party Scene,tt0094894 f4wmj-Nq9xA,1988.0,8,10,2017,Colors,T-Bone Represents Scene,tt0094894 VxKyoOxyrdU,1988.0,1,10,2017,Colors,Drive-By Scene,tt0094894 LJQAKDbq0hI,1988.0,3,10,2017,Colors,The One About the Two Bulls Scene,tt0094894 DkGLIu6lnT4,1988.0,6,10,2017,Colors,Chasing High Top Scene,tt0094894 t80UDdbV3Mk,1952.0,1,10,2017,Hans Christian Andersen,The King's New Clothes Scene,tt0044685 jn_D02Tvr4k,1988.0,5,10,2017,Colors,Five Names Scene,tt0094894 zYTsJkuEPWQ,1988.0,7,10,2017,Colors,T-Bone's Rabbit Scene,tt0094894 ZDbWeYRT7wo,1952.0,4,10,2017,Hans Christian Andersen,Thumbelina Scene,tt0044685 0RDDbfd_K74,1952.0,7,10,2017,Hans Christian Andersen,A Surprise in the Newspaper Scene,tt0044685 -Ok6Y77DeNA,1952.0,6,10,2017,Hans Christian Andersen,The Ugly Duckling Scene,tt0044685 n_lSwXF8wfw,1952.0,5,10,2017,Hans Christian Andersen,The Ballerina's Shoes Scene,tt0044685 Kx56Aefjn7s,1952.0,10,10,2017,Hans Christian Andersen,You'll Go On Telling Stories Scene,tt0044685 Z7QbvD-gd0s,1952.0,8,10,2017,Hans Christian Andersen,The Little Mermaid Scene,tt0044685 UsBN2NyjX94,1952.0,2,10,2017,Hans Christian Andersen,I've Never Seen a Worrier Like You Scene,tt0044685 S3phStzHz34,1952.0,3,10,2017,Hans Christian Andersen,Either He Leaves or I Do Scene,tt0044685 M1TkG_zlh6E,1952.0,9,10,2017,Hans Christian Andersen,I Let My Heart Speak Scene,tt0044685 FPtvpjBEEqo,1978.0,3,7,2017,The Last Waltz,Helpless Scene,tt0077838 Z2eTW8qZBtk,1978.0,4,7,2017,The Last Waltz,The Weight Scene,tt0077838 -zNnJiwo_5Y,1978.0,7,7,2017,The Last Waltz,"Baby, Let Me Follow You Down Scene",tt0077838 6dDbnwQlCek,1978.0,5,7,2017,The Last Waltz,The Night They Drove Old Dixie Down Scene,tt0077838 QzgJIF00Xdw,1978.0,6,7,2017,The Last Waltz,Caravan Scene,tt0077838 JsdUzN20Sow,1978.0,2,7,2017,The Last Waltz,Up on Cripple Creek Scene,tt0077838 ki3zzZ-GsGI,1978.0,1,7,2017,The Last Waltz,Don't Do It Scene,tt0077838 O3-W1ng-UWI,1989.0,9,11,2017,She-Devil,Sad Mary Fisher Scene,tt0098309 mTYe5PvlRno,1989.0,6,11,2017,She-Devil,French for Dog Puke Scene,tt0098309 9f1adgpyRjM,1989.0,5,11,2017,She-Devil,The Kids' New Home Scene,tt0098309 VbBi8ZIWbUc,1989.0,3,11,2017,She-Devil,"Four Assets, One Liability Scene",tt0098309 J_wbvP9hEFQ,1989.0,2,11,2017,She-Devil,Dinner Disaster Scene,tt0098309 AEYh9Sh6kk8,1989.0,10,11,2017,She-Devil,Taking Back Control Scene,tt0098309 rGtJbW9sRbo,1989.0,8,11,2017,She-Devil,The New Novel Scene,tt0098309 UPhZaK9jxYs,1989.0,1,11,2017,She-Devil,Mary's Research Scene,tt0098309 xqtbz-pVp2g,1989.0,7,11,2017,She-Devil,Olivia Honey Scene,tt0098309 W5-oHwzdWos,1989.0,11,11,2017,She-Devil,Court Hearing Scene,tt0098309 Z9zrMe8Gn1E,1989.0,4,11,2017,She-Devil,Ruth's Exit Scene,tt0098309 N6bOUves6hI,1992.0,7,11,2017,Article 99,A Disgrace to the Profession Scene,tt0101371 X8qBorenkn8,1992.0,10,11,2017,Article 99,Unconditional Surrender Scene,tt0101371 2NkV6POGLOc,1992.0,8,11,2017,Article 99,Patients' Effects Scene,tt0101371 BuN4WOVbk7s,1992.0,11,11,2017,Article 99,No Surrender Scene,tt0101371 rlXKgVlILbM,1992.0,5,11,2017,Article 99,Turfing the Patients Scene,tt0101371 Qgx38Vxw7Bc,1992.0,9,11,2017,Article 99,Time to Pull the Plug Scene,tt0101371 81YXRcpQSpE,1992.0,6,11,2017,Article 99,Counting Q-Tips Scene,tt0101371 Lurs1FzrSio,1992.0,4,11,2017,Article 99,Taking Hostages Scene,tt0101371 ItDFQOAqEuA,1992.0,3,11,2017,Article 99,Crashing the Hospital Scene,tt0101371 0GGOfY9uE1Y,1992.0,2,11,2017,Article 99,"First the Ventricles, Then the Testicles Scene",tt0101371 WNUJIR9y-N4,1992.0,1,11,2017,Article 99,There's Always Scene,tt0101371 8rlAQ3q4RDk,2003.0,4,9,2017,Jeepers Creepers 2,It Eats Us Scene,tt0301470 soynQCpGMz8,2003.0,6,9,2017,Jeepers Creepers 2,Getting a New Head Scene,tt0301470 lPB6exj8Kgo,2003.0,1,9,2017,Jeepers Creepers 2,Cornfield Attack Scene,tt0301470 fEA9BJfaaYA,2003.0,3,9,2017,Jeepers Creepers 2,The Creeper Creeps Scene,tt0301470 nhvRzLcCk40,2003.0,7,9,2017,Jeepers Creepers 2,Harpoon to the Heart Scene,tt0301470 E6AQQLVI68g,2003.0,8,9,2017,Jeepers Creepers 2,The Creeper Goes Down! Scene,tt0301470 EVvEtTyJYCo,2003.0,5,9,2017,Jeepers Creepers 2,The Students Fight Back,tt0301470 isct-XNu38E,2003.0,2,9,2017,Jeepers Creepers 2,Abducting the Adults Scene,tt0301470 5RGxUKhhRWA,2003.0,9,9,2017,Jeepers Creepers 2,A Bat Out of Hell Scene,tt0301470 6Tz9krF1K68,1967.0,9,10,2017,Casino Royale,Insignificant Little Monster Scene,tt0061452 j2MbvFYy_8Y,1967.0,8,10,2017,Casino Royale,Jimmy's Box of Goodies Scene,tt0061452 jVH_NN7phnA,1967.0,10,10,2017,Casino Royale,Dr. Noah is Poisoned Scene,tt0061452 BGlWalxUId0,1967.0,4,10,2017,Casino Royale,Miss Goodthighs Scene,tt0061452 OqgFY6ZhOfQ,1967.0,7,10,2017,Casino Royale,Evelyn is Tortured Scene,tt0061452 SDq_ZTxHLh4,1967.0,6,10,2017,Casino Royale,Vesper is Kidnapped Scene,tt0061452 mOicvmEloyY,1967.0,5,10,2017,Casino Royale,Le Chiffre Loses to Evelyn Scene,tt0061452 IrTJjUQ_xGQ,1967.0,3,10,2017,Casino Royale,007 Training Scene,tt0061452 5U72xvlbn-k,1967.0,2,10,2017,Casino Royale,Firing Squad Fumble Scene,tt0061452 9ukjNhwdbGY,1967.0,1,10,2017,Casino Royale,To the Laird! Scene,tt0061452 LiAiWknkwcc,1957.0,12,12,2017,Witness for the Prosecution,Don't Leave Me Scene,tt0051201 XlEkeUg2z8I,1957.0,11,12,2017,Witness for the Prosecution,Wilfrid Is Duped Scene,tt0051201 kOfY6wIKT40,1957.0,6,12,2017,Witness for the Prosecution,You've Bombed My Trousers Scene,tt0051201 MLaMV6zQND4,1957.0,7,12,2017,Witness for the Prosecution,A Hearing Aid Scene,tt0051201 tskpXGAJMhw,1957.0,10,12,2017,Witness for the Prosecution,Damn You! Damn You! Scene,tt0051201 V9JniMBfW18,1957.0,9,12,2017,Witness for the Prosecution,Christine in Disguise Scene,tt0051201 gDOSJkcKPbo,1957.0,8,12,2017,Witness for the Prosecution,A Chronic and Habitual Liar Scene,tt0051201 MrWZWfsif3E,1957.0,4,12,2017,Witness for the Prosecution,Sneaking a Cigar Scene,tt0051201 Saz3f-zPYeI,1957.0,5,12,2017,Witness for the Prosecution,I May Never Go Home Scene,tt0051201 T-ELiRFK_v0,1957.0,3,12,2017,Witness for the Prosecution,Wilfrid's New Lift Scene,tt0051201 0zImze5PCFg,1957.0,2,12,2017,Witness for the Prosecution,Wilfrid the Fox Scene,tt0051201 YCiimJ7d2Cs,1957.0,1,12,2017,Witness for the Prosecution,You Talk Too Much Scene,tt0051201 DII9AQZoUTo,1990.0,8,11,2017,Navy SEALS,Your God Doesn't Help You Now Scene,tt0100232 a7gZgEpgKiY,1990.0,7,11,2017,Navy SEALS,Dead to Rights Scene,tt0100232 oyZblWujofQ,1990.0,9,11,2017,Navy SEALS,A Fiery Rescue Scene,tt0100232 vUzF61mtilA,1990.0,10,11,2017,Navy SEALS,The Getaway Car Scene,tt0100232 iRIIcZuSiBo,1990.0,5,11,2017,Navy SEALS,Hawkins Gets His Car Back Scene,tt0100232 V8M4lPWWr3o,1990.0,2,11,2017,Navy SEALS,Bad Timing Scene,tt0100232 tRRQX1SXcMM,1990.0,11,11,2017,Navy SEALS,Underwater Fight Scene,tt0100232 WThmGeHf4hA,1990.0,1,11,2017,Navy SEALS,Hawkins Hops Off a Bridge Scene,tt0100232 J96X6ei7LRE,1990.0,3,11,2017,Navy SEALS,God Goes Thermal Scene,tt0100232 tF6XBuvWdPs,1990.0,4,11,2017,Navy SEALS,Naval Intelligence Scene,tt0100232 Irf50_-vVtI,1990.0,6,11,2017,Navy SEALS,Halo Jumping Scene,tt0100232 gcGvs4dw9CE,1985.0,2,8,2017,Spies Like Us,What's a Dickfer? Scene,tt0090056 DV_eqkGxAa4,1985.0,3,8,2017,Spies Like Us,Intelligence Training Scene,tt0090056 e0xPCas2tHQ,1985.0,7,8,2017,Spies Like Us,Alien Impressions Scene,tt0090056 hoe24aSvLtw,1985.0,4,8,2017,Spies Like Us,"Doctor, Doctor Scene",tt0090056 d7Aot4Wr-Yo,1985.0,1,8,2017,Spies Like Us,Cheating on the Exam Scene,tt0090056 T5rzOU-4Bkc,1985.0,8,8,2017,Spies Like Us,Going Out with a Bang Scene,tt0090056 7Rx90r--Xss,1985.0,6,8,2017,Spies Like Us,Rescue Mission Scene,tt0090056 1iOnKJA2H7I,1985.0,5,8,2017,Spies Like Us,The Operation Scene,tt0090056 fB8_lNQJ-JM,1995.0,4,7,2017,Grumpier Old Men,Maybe Scene,tt0113228 x5z9VZO--G4,1995.0,1,7,2017,Grumpier Old Men,Quite a Catch Scene,tt0113228 bFfnDQ3bDfA,1995.0,2,7,2017,Grumpier Old Men,Meeting Maria Scene,tt0113228 pJImKCcPIsU,1995.0,6,7,2017,Grumpier Old Men,Max and Maria Scene,tt0113228 lfKcANi5Zrk,1995.0,7,7,2017,Grumpier Old Men,I Know How To Treat a Lady Scene,tt0113228 cMPXArN7f9k,1995.0,5,7,2017,Grumpier Old Men,Would it Be Alright if I Kissed You? Scene,tt0113228 8R8mxS2E_UQ,1995.0,3,7,2017,Grumpier Old Men,My Cannelloni Scene,tt0113228 Pk-vHw-mstI,1985.0,9,9,2017,Mad Max Beyond Thunderdome,"Goodbye, Soldier Scene",tt0089530 c_u4oXd_Lfo,1985.0,7,9,2017,Mad Max Beyond Thunderdome,The Final Chase Scene,tt0089530 fWx9V0xoYsI,1985.0,2,9,2017,Mad Max Beyond Thunderdome,Underworld Scene,tt0089530 GbQy-0SzshA,1985.0,5,9,2017,Mad Max Beyond Thunderdome,Mad Max vs. Blaster Scene,tt0089530 Ov2ErYiFemg,1985.0,8,9,2017,Mad Max Beyond Thunderdome,An Air Escape Scene,tt0089530 ywcKkb5buJI,1985.0,1,9,2017,Mad Max Beyond Thunderdome,Welcome to Barter Town Scene,tt0089530 9yDL0AKUCKo,1985.0,4,9,2017,Mad Max Beyond Thunderdome,"Two Men Enter, One Man Leaves Scene",tt0089530 YLjwEodCmT4,1985.0,6,9,2017,Mad Max Beyond Thunderdome,"Bust a Deal, Face the Wheel Scene",tt0089530 kJ-UZ4DvYBg,1985.0,3,9,2017,Mad Max Beyond Thunderdome,Master Blaster Scene,tt0089530 ZJF_1LQbKiM,1996.0,10,10,2017,Executive Decision,Crash Landing Scene,tt0116253 iewhzdra0DU,1996.0,9,10,2017,Executive Decision,It's Not Over Scene,tt0116253 Xaj3Ohn7YrE,1996.0,2,10,2017,Executive Decision,Elevator Exchange Scene,tt0116253 NsRhhZPAGLI,1996.0,4,10,2017,Executive Decision,Second In Command Scene,tt0116253 LtFw6_YJiFs,1996.0,1,10,2017,Executive Decision,Boarding Party Scene,tt0116253 n3YqrYcnfpE,1996.0,8,10,2017,Executive Decision,Cabin Pressure Scene,tt0116253 RY_D9rFoWLo,1996.0,7,10,2017,Executive Decision,Taking The Sleeper Scene,tt0116253 0EQXnRlIbXs,1996.0,3,10,2017,Executive Decision,Inside Help Scene,tt0116253 NJQz-0F61yA,1996.0,5,10,2017,Executive Decision,Decoy Bomb Scene,tt0116253 bBHFfXCAPLc,1996.0,6,10,2017,Executive Decision,Hail Mary Scene,tt0116253 h5nhyFFSweU,1959.0,2,10,2017,North by Northwest,Love on a Train Scene,tt0053125 GRrLWGMz5XY,1959.0,3,10,2017,North by Northwest,I Like Your Flavor Scene,tt0053125 7bCca1RYtao,1959.0,10,10,2017,North by Northwest,The Ending Scene,tt0053125 aU9RYKxkRJk,1959.0,8,10,2017,North by Northwest,I've Never Felt More Alive Scene,tt0053125 nPeH0w6ZXZM,1959.0,9,10,2017,North by Northwest,Mount Rushmore Scene,tt0053125 L7YVcnBbeeI,1959.0,7,10,2017,North by Northwest,Surprise Shooting Scene,tt0053125 sIY7BQkbIT8,1959.0,4,10,2017,North by Northwest,The Crop Duster Scene,tt0053125 A7gKFleV_JU,1959.0,1,10,2017,North by Northwest,Framed for Murder Scene,tt0053125 XBz2wuGU9Cs,1959.0,5,10,2017,North by Northwest,The Art of Survival Scene,tt0053125 YEv7cVW8hBA,1959.0,6,10,2017,North by Northwest,A Genuine Idiot Scene,tt0053125 7qNZYicSJPk,1987.0,3,8,2017,Pelle the Conqueror,Egg Thief Scene,tt0093713 wIuKvNAGsH4,1987.0,7,8,2017,Pelle the Conqueror,The Widow and the Widower Scene,tt0093713 sPbOZXWbYNI,1987.0,5,8,2017,Pelle the Conqueror,Niels's Redemption Scene,tt0093713 ObCiRECeCdM,1987.0,6,8,2017,Pelle the Conqueror,Erik's Fate Scene,tt0093713 tK4GDziddRU,1987.0,1,8,2017,Pelle the Conqueror,A Father's Word Scene,tt0093713 _P97eUT7NH8,1987.0,4,8,2017,Pelle the Conqueror,I Killed It Scene,tt0093713 z-p4LnzhnvE,1987.0,2,8,2017,Pelle the Conqueror,Ice Dive Scene,tt0093713 G2EcYJ6Zjrk,1987.0,8,8,2017,Pelle the Conqueror,Chased Onto the Ice Scene,tt0093713 pQX-KEXTwmM,2011.0,8,8,2017,Resistance,I Will Join You Scene,tt1391116 FAhcPXtCykY,2011.0,6,8,2017,Resistance,Choices Scene,tt1391116 DTNDgoCP5TA,2011.0,1,8,2017,Resistance,The Story of Hermann Scene,tt1391116 6K-d8DN3wDA,2011.0,2,8,2017,Resistance,Why Are You Here? Scene,tt1391116 SNHn_jgFxIA,2011.0,5,8,2017,Resistance,Collaboration Will Not Be Tolerated Scene,tt1391116 lXS7GWgCBWM,2011.0,4,8,2017,Resistance,The Boys from the Railroad Scene,tt1391116 T2SlDOf410Q,2011.0,7,8,2017,Resistance,We Must Leave Scene,tt1391116 jKPc2IbQQOQ,2011.0,3,8,2017,Resistance,Hello There Scene,tt1391116 bmIP1NM8GwU,2015.0,6,8,2017,The Ardennes,Trailer Fight Scene,tt2586118 p4lBFrh79OI,2015.0,4,8,2017,The Ardennes,Meat in the Trunk Scene,tt2586118 twPxMYSEJ-8,2015.0,1,8,2017,The Ardennes,He Takes Care of Me Scene,tt2586118 QLXSp9erPv0,2015.0,7,8,2017,The Ardennes,It Was Stef's Idea Scene,tt2586118 gCF11he-_iU,2015.0,2,8,2017,The Ardennes,No One Touches Sylvie Scene,tt2586118 PywpJSG1dTM,2015.0,8,8,2017,The Ardennes,What Have You Done? Scene,tt2586118 u_nHHDkfBWQ,2015.0,5,8,2017,The Ardennes,As Brothers Scene,tt2586118 LyhRCLswT6A,2015.0,3,8,2017,The Ardennes,They're All Whores Scene,tt2586118 -HjYVQXvxVk,2017.0,4,8,2017,Heidi,Sneaking in Kittens Scene,tt3700392 EfHvcHYz-tY,2017.0,3,8,2017,Heidi,City Etiquette Scene,tt3700392 lwH4vtb9GA0,2017.0,5,8,2017,Heidi,Learning to Read Scene,tt3700392 xM4-RnBk-9Y,2017.0,1,8,2017,Heidi,To A Prominent Family Scene,tt3700392 mKLjOr5M5zg,2017.0,6,8,2017,Heidi,Leaving Clara Scene,tt3700392 FH6ODEaH5hI,2017.0,8,8,2017,Heidi,Clara Chases a Butterfly Scene,tt3700392 KXXwH7C3UjE,2017.0,7,8,2017,Heidi,Country Etiquette Scene,tt3700392 Kkg6cnUZ2vU,2017.0,2,8,2017,Heidi,Teaching Manners Scene,tt3700392 ONRzdzRMVsQ,2001.0,7,9,2017,I Am Sam,All You Need Is Love,tt0277027 i7QDt-z8ZjY,2001.0,6,9,2017,I Am Sam,It Matters to Me Scene,tt0277027 oBURpv30IkA,2001.0,3,9,2017,I Am Sam,Shoe Shopping Scene,tt0277027 MqIJKnUkGLY,2001.0,8,9,2017,I Am Sam,A Good Parent Scene,tt0277027 lRlgx_GFwyI,2001.0,9,9,2017,I Am Sam,People Like Me Scene,tt0277027 81XTZOlNHEU,2001.0,5,9,2017,I Am Sam,I Wouldn't Want Any Daddy But You Scene,tt0277027 1SkWbujEeLM,2001.0,4,9,2017,I Am Sam,You Are Not Stupid Scene,tt0277027 dAlYuokC9R0,2001.0,2,9,2017,I Am Sam,You're Not Like Other Daddies Scene,tt0277027 9fUtcVIlocI,2001.0,1,9,2017,I Am Sam,Lucy is Born Scene,tt0277027 KQDbtR9Z-zo,1993.0,3,9,2017,Dennis the Menace,A Apple Scene,tt0106701 Tiz3eN3KJRQ,1993.0,9,9,2017,Dennis the Menace,Eat Your Dinner Scene,tt0106701 eL62rDiuqDE,1993.0,6,9,2017,Dennis the Menace,The Forty Year Orchid Scene,tt0106701 zUhsEXaj_oY,1993.0,8,9,2017,Dennis the Menace,Tied Up Scene,tt0106701 fmRWWrBqiJE,1993.0,1,9,2017,Dennis the Menace,Take an Aspirin Scene,tt0106701 PkCxda_9xRc,1993.0,7,9,2017,Dennis the Menace,Shut Your Yap Scene,tt0106701 uE8yYJmpxeI,1993.0,5,9,2017,Dennis the Menace,Bathroom Mishaps Scene,tt0106701 JX2gQZj3-NI,1993.0,4,9,2017,Dennis the Menace,Only a Boy Scene,tt0106701 dkjBBdHZNUs,1993.0,2,9,2017,Dennis the Menace,Where Babies Come From Scene,tt0106701 8CZcZ_b-Cmg,1991.0,8,8,2017,Curly Sue,First Day of School Scene,tt0101635 FT1C1QdiMhw,1991.0,3,8,2017,Curly Sue,Pizza for Dinner Scene,tt0101635 oRe8EuewinY,1991.0,6,8,2017,Curly Sue,Breaking up with Walker Scene,tt0101635 CL3IXUZKbto,1991.0,7,8,2017,Curly Sue,A New Life Scene,tt0101635 nS-0lfCTcrk,1991.0,5,8,2017,Curly Sue,I Feel Like an Idiot Scene,tt0101635 Qfv31xWBgGI,1991.0,2,8,2017,Curly Sue,She Was Too Pretty Scene,tt0101635 BGmXnidRtoA,1991.0,4,8,2017,Curly Sue,Give Her a Chance Scene,tt0101635 n4pUbyGBD18,1991.0,1,8,2017,Curly Sue,You Killed My Daddy Scene,tt0101635 eU4-wIieuWU,1988.0,9,9,2017,Stand and Deliver,Racism and Discrimination Scene,tt0094027 PI35KfPB7nM,1988.0,8,9,2017,Stand and Deliver,Accused of Cheating Scene,tt0094027 mbKiHp_ljJY,1988.0,6,9,2017,Stand and Deliver,Think Cool Scene,tt0094027 LauRAuoFO0U,1988.0,4,9,2017,Stand and Deliver,The Gigolo Problem Scene,tt0094027 A2yqIm58ULo,1988.0,3,9,2017,Stand and Deliver,All We Need is Ganas Scene,tt0094027 vEj9ZwIzk44,1988.0,1,9,2017,Stand and Deliver,Finger Man Scene,tt0094027 obnODOdLD7k,1988.0,2,9,2017,Stand and Deliver,Tough Guys Don't Do Math Scene,tt0094027 T8KFieVkVkU,1988.0,7,9,2017,Stand and Deliver,What's Calculus? Scene,tt0094027 a81pNygdAXw,1988.0,5,9,2017,Stand and Deliver,I Want to Teach Calculus Scene,tt0094027 HIBYaeYQF0k,1997.0,3,9,2017,Selena,Twice As Perfect Scene,tt0120094 fFE8_U07a5I,1997.0,7,9,2017,Selena,"Kids, Career and a Farm Scene",tt0120094 YR4qgOi7VQ0,1997.0,1,9,2017,Selena,Be Who You Are Scene,tt0120094 FYnYxm5Awfg,1997.0,8,9,2017,Selena,Don't Know How to Let You Go Scene,tt0120094 aB0ABzNHvAE,1997.0,4,9,2017,Selena,I Love You Scene,tt0120094 _CuZqXrhEZI,1997.0,6,9,2017,Selena,Let's Get Married Scene,tt0120094 f86_fLGHu6M,1997.0,5,9,2017,Selena,I Love Him Scene,tt0120094 Kkl4-30oHVU,1997.0,2,9,2017,Selena,Anything for s Scene,tt0120094 a66f39DMwtY,1997.0,9,9,2017,Selena,'s Death Scene,tt0120094 zkWthOfGYgM,2010.0,7,9,2017,Valentine's Day,One Person for Life Scene,tt0817230 hbDdiPNS3ck,2010.0,6,9,2017,Valentine's Day,How Did You Guys Meet? Scene,tt0817230 qVzY2wmo8C4,2010.0,8,9,2017,Valentine's Day,The Lying Stinking Pig Scene,tt0817230 BR-kA4Jnn8M,2010.0,5,9,2017,Valentine's Day,Young Love Scene,tt0817230 STl0s9g_FwA,2010.0,9,9,2017,Valentine's Day,When You Love Someone Scene,tt0817230 cmgeSY8YdO4,2010.0,4,9,2017,Valentine's Day,I Hate Scene,tt0817230 WZNe0TD1E-I,2010.0,1,9,2017,Valentine's Day,The Sweetest Thing Ever Scene,tt0817230 PBVW7az0PkM,2010.0,3,9,2017,Valentine's Day,A Problem with Romance Scene,tt0817230 __f2KtcXAxI,2010.0,2,9,2017,Valentine's Day,Valentine Gifts Scene,tt0817230 tDlL6QWvKNk,1970.0,3,7,2017,The Ballad of Cable Hogue,2 Acres In Cable Springs Scene,tt0065446 -KVNfZo-cfc,1970.0,7,7,2017,The Ballad of Cable Hogue,A Funeral Sermon Scene,tt0065446 xcfYbwSXFVw,1970.0,1,7,2017,The Ballad of Cable Hogue,10 Cents a Head Scene,tt0065446 QyvbqZqQ0xI,1970.0,5,7,2017,The Ballad of Cable Hogue,Worth Something Scene,tt0065446 Mcf2hNBzwqg,1970.0,6,7,2017,The Ballad of Cable Hogue,Revenge Scene,tt0065446 yxlXYm5Uo08,1970.0,2,7,2017,The Ballad of Cable Hogue,Hildy Scene,tt0065446 yaoCvjqu_co,1970.0,4,7,2017,The Ballad of Cable Hogue,My Name is Hildy Scene,tt0065446 ajm_632U-Ac,1986.0,7,8,2017,Club Paradise,Mama Feels Good Tonight Scene,tt0090856 RFAiq0Qr6uQ,1986.0,1,8,2017,Club Paradise,Flotsam & Jetsam Scene,tt0090856 YihADAPOCWU,1986.0,4,8,2017,Club Paradise,Scoring Some Weed Scene,tt0090856 nS1ePEA5XeQ,1986.0,2,8,2017,Club Paradise,The Sky is Yours Scene,tt0090856 8DrF70mcr38,1986.0,6,8,2017,Club Paradise,In Jail Scene,tt0090856 yat2WR8Ishk,1986.0,5,8,2017,Club Paradise,Wrong Tank Scene,tt0090856 530g3-fuGGU,1986.0,8,8,2017,Club Paradise,Guns in the Sun Scene,tt0090856 2heRUn56wrg,1986.0,3,8,2017,Club Paradise,Chef Hat Scene,tt0090856 4qseBKnxIpQ,1988.0,5,9,2017,Crossing Delancey,This One I'll Meet Scene,tt0094921 76pNjmVp58w,1988.0,8,9,2017,Crossing Delancey,Ida's Story Scene,tt0094921 B3thiUpvzKo,1988.0,2,9,2017,Crossing Delancey,I Don't Need That Scene,tt0094921 40JQrUnvKUw,1988.0,4,9,2017,Crossing Delancey,A New Hat Scene,tt0094921 oQIubudKQQE,1988.0,6,9,2017,Crossing Delancey,Awkward Introduction Scene,tt0094921 pWt-GnERki0,1988.0,1,9,2017,Crossing Delancey,Meeting the Matchmaker Scene,tt0094921 MP414NY4kfA,1988.0,7,9,2017,Crossing Delancey,Get It Right Scene,tt0094921 HAal8jdk5gk,1988.0,9,9,2017,Crossing Delancey,A Good Match Scene,tt0094921 Kxyzb8LbVKQ,1988.0,3,9,2017,Crossing Delancey,This Isn't My Style Scene,tt0094921 5rOdGpkURD8,1983.0,2,10,2017,Christine,Choking the New Girlfriend Scene,tt0085333 IurXrQqZufM,1983.0,9,10,2017,Christine,Death on Wheels Scene,tt0085333 056HlHORCIU,1998.0,5,10,2017,The Avengers,"Insects, Bigger Every Year Scene",tt0118661 Tx1mcALQCFg,1998.0,9,10,2017,The Avengers,High Wire Fight Scene,tt0118661 Iqiyy26sW-Q,1998.0,6,10,2017,The Avengers,I Hope He Was a Baddie Scene,tt0118661 msqRzlYXXQE,1998.0,8,10,2017,The Avengers,Going Mad Scene,tt0118661 w_5OidjXy5o,1998.0,10,10,2017,The Avengers,Time to Die Scene,tt0118661 IjGKv209gAE,1998.0,1,10,2017,The Avengers,Secret Agent John Steed Scene,tt0118661 W1c-QSe7uU0,1998.0,3,10,2017,The Avengers,Welcome to Wonderland Weather Scene,tt0118661 oXpKBkMq_OM,1998.0,4,10,2017,The Avengers,A Silly Thing to Do Scene,tt0118661 jCh_3SFr7M4,1998.0,2,10,2017,The Avengers,A Lady of Hidden Talents Scene,tt0118661 HGL0CEjSHog,1998.0,7,10,2017,The Avengers,Never Trust the Weather Scene,tt0118661 xrO8AQ4CrKk,1983.0,5,10,2017,Christine,"Run, Moochie, Run Scene",tt0085333 zNSDAaeIh7U,1983.0,6,10,2017,Christine,The Fiery Fury Scene,tt0085333 oezKQEF0deY,1983.0,4,10,2017,Christine,Show Me Scene,tt0085333 gt6_2qd75F8,1983.0,10,10,2017,Christine,Gets Crushed Scene,tt0085333 A8BfSnbFxj4,1983.0,7,10,2017,Christine,A Life Ending Seat Adjustment Scene,tt0085333 4koPfEQVo44,1983.0,1,10,2017,Christine,"Body by Plymouth, Soul by Satan Scene",tt0085333 HYqSugRiG5Y,1983.0,8,10,2017,Christine,Love Eats Everything Scene,tt0085333 gjjJePytKig,1983.0,3,10,2017,Christine,The Wrecking Crew Scene,tt0085333 AOVHdyazjWM,2014.0,5,10,2017,Endless Love,I Love You Scene,tt2318092 oVLfIoIujHE,2014.0,8,10,2017,Endless Love,Meet Me Tonight Scene,tt2318092 M8yhM7zXdSI,2014.0,1,10,2017,Endless Love,Earning Our Three Minutes Scene,tt2318092 1J1osn73VYs,2014.0,3,10,2017,Endless Love,She's Amazing Scene,tt2318092 wxV84RoUr_U,2014.0,10,10,2017,Endless Love,Love You Fight For Scene,tt2318092 XlJpElakwP4,2014.0,2,10,2017,Endless Love,Dance Contest Scene,tt2318092 bpNxVXA5dcQ,2014.0,4,10,2017,Endless Love,Jade's First Time Scene,tt2318092 3bHDHRxatZg,2014.0,9,10,2017,Endless Love,It's Not Too Late Scene,tt2318092 _GAA_LvDQMQ,2014.0,6,10,2017,Endless Love,You're a Coward Scene,tt2318092 RHVyIHN6qOE,2014.0,7,10,2017,Endless Love,If It's Meant to Be Scene,tt2318092 VBHqNEADzfY,2013.0,7,10,2017,A Birder's Guide to Everything,Carpe Diem Scene,tt1582465 rzC1mABvnao,2013.0,8,10,2017,A Birder's Guide to Everything,Don't Confuse Me With a Role Model Scene,tt1582465 x3Uw69aKF-Y,2013.0,4,10,2017,A Birder's Guide to Everything,"Fillers, Listers and Watchers Scene",tt1582465 B1OK0eWfDB8,2013.0,1,10,2017,A Birder's Guide to Everything,Young Birder's Society Scene,tt1582465 -48m6UiKt_0,2013.0,2,10,2017,A Birder's Guide to Everything,A Lazarus Species Scene,tt1582465 NvUnzCHEfoo,2013.0,5,10,2017,A Birder's Guide to Everything,Dork Baiting Scene,tt1582465 KwZmZ6mybdo,2013.0,9,10,2017,A Birder's Guide to Everything,David's Duck Scene,tt1582465 cFl_xXXCo3s,2013.0,6,10,2017,A Birder's Guide to Everything,I Don't Really Have a Boyfriend Scene,tt1582465 lQdx2baN7Co,2013.0,3,10,2017,A Birder's Guide to Everything,Project ANAS Scene,tt1582465 5KgptmAR3KM,2013.0,10,10,2017,A Birder's Guide to Everything,You Shot An Extinct Duck Scene,tt1582465 jDD8IQgUPEU,1942.0,2,10,2017,The Magnificent Ambersons,A Princely Terror Scene,tt0035015 326RvY72nmE,2001.0,6,10,2017,Summer Catch,Lawn Girl Scene,tt0234829 wt0klpk3tBA,2001.0,5,10,2017,Summer Catch,Coming Undone Scene,tt0234829 vOJ1HPBID5A,2001.0,4,10,2017,Summer Catch,I'm the Nothing You Picked Scene,tt0234829 cE5l32W6Oxc,2001.0,8,10,2017,Summer Catch,Another Baseball Legend Scene,tt0234829 V4UM9BrSqos,2001.0,2,10,2017,Summer Catch,Not That You're Fat Scene,tt0234829 JzVCSXWeNnA,2001.0,9,10,2017,Summer Catch,Gonna Miss You Scene,tt0234829 a7XZaIy4a9k,2001.0,3,10,2017,Summer Catch,Allow Yourself to Succeed Scene,tt0234829 -Svsz19yyPM,2001.0,1,10,2017,Summer Catch,Thong Boy Scene,tt0234829 xz3nif1TPDk,2001.0,10,10,2017,Summer Catch,I Love Her Scene,tt0234829 ChD8PRF0hBg,2001.0,7,10,2017,Summer Catch,Why Are You So Scared? Scene,tt0234829 3jWrsTACVn4,1990.0,3,8,2017,Young Einstein,The Theory of Relativity Scene,tt0096486 IkVavN1lo9E,1990.0,8,8,2017,Young Einstein,Returning Home Scene,tt0096486 9YgorDRKoEo,1990.0,7,8,2017,Young Einstein,Atomic Overload Scene,tt0096486 x9mLSJS0n3Q,1990.0,4,8,2017,Young Einstein,Einstein's Success Scene,tt0096486 uhkfz535fR8,1990.0,6,8,2017,Young Einstein,Rock and Roll Scene,tt0096486 PXaE-weoKCo,1990.0,5,8,2017,Young Einstein,Mad Scientist's Dinner Scene,tt0096486 yQVdwJcerjw,1990.0,2,8,2017,Young Einstein,Marie Curie Scene,tt0096486 Ra7oqFqj9uU,1990.0,1,8,2017,Young Einstein,Bubbles into Beer Scene,tt0096486 JSX5qtBpL2g,1962.0,8,12,2017,The Manchurian Candidate,A Cold War Scene,tt0056218 p3ZnaRMhD_A,1962.0,11,12,2017,The Manchurian Candidate,I Wanted a Killer Scene,tt0056218 w_92-vVfgrw,1963.0,8,10,2017,"It's a Mad, Mad, Mad, Mad World",Raining Money Scene,tt0057193 FxvvnlcqLz0,1963.0,7,10,2017,"It's a Mad, Mad, Mad, Mad World",Chasing Captain Culpepper Scene,tt0057193 Hln19l9RtWg,1963.0,2,10,2017,"It's a Mad, Mad, Mad, Mad World",Preoccupation With Bosoms Scene,tt0057193 BnnkcdH5v14,1963.0,6,10,2017,"It's a Mad, Mad, Mad, Mad World",The Money Is Found Scene,tt0057193 CY5X8DD0ams,1963.0,4,10,2017,"It's a Mad, Mad, Mad, Mad World",Everything's Going Wrong Scene,tt0057193 1fp6lBNB7aw,1963.0,3,10,2017,"It's a Mad, Mad, Mad, Mad World",Fisticuffs Scene,tt0057193 j-7pVks8avo,1963.0,1,10,2017,"It's a Mad, Mad, Mad, Mad World",Every Man for Himself Scene,tt0057193 Tt-GdLwV4dA,1963.0,9,10,2017,"It's a Mad, Mad, Mad, Mad World",Ladder Rescue Scene,tt0057193 vZqr-1GJIAk,1963.0,10,10,2017,"It's a Mad, Mad, Mad, Mad World",Laughing in the Hospital Scene,tt0057193 oiYBUM-EE-w,1963.0,5,10,2017,"It's a Mad, Mad, Mad, Mad World",Pull Over Scene,tt0057193 U1GUJMTmoMY,1962.0,1,12,2017,The Manchurian Candidate,Manchurian Garden Club Scene,tt0056218 TzNPYPp_v78,1962.0,4,12,2017,The Manchurian Candidate,The Red Queen Scene,tt0056218 D7tCnGstwcs,1962.0,7,12,2017,The Manchurian Candidate,Rose Picks Up Marco Scene,tt0056218 sTcofHd5IlE,1962.0,6,12,2017,The Manchurian Candidate,Marco Fights Chunjin Scene,tt0056218 wH-i4ImreXs,1962.0,2,12,2017,The Manchurian Candidate,Marco's Nightmare Scene,tt0056218 MZXC37sbqUM,1962.0,5,12,2017,The Manchurian Candidate,Meeting Rose on the Train Scene,tt0056218 GI67NK5cmxk,1962.0,9,12,2017,The Manchurian Candidate,Killing Senator Jordan and Jocie Scene,tt0056218 UwfFWXUEyfQ,1962.0,12,12,2017,The Manchurian Candidate,Assassination Scene,tt0056218 b8Dv782UIb4,1962.0,3,12,2017,The Manchurian Candidate,Melvin's Nightmare Scene,tt0056218 EnfAVLatlmY,1962.0,10,12,2017,The Manchurian Candidate,52 Red Queens Say Its Over Scene,tt0056218 3EeGyS1BOGk,1942.0,9,10,2017,The Magnificent Ambersons,It's Not Hot! It's Cold! Scene,tt0035015 YauDSh8CfwI,1942.0,7,10,2017,The Magnificent Ambersons,"Goodbye, Lucy Scene",tt0035015 Ys_zYL7K3KQ,1942.0,8,10,2017,The Magnificent Ambersons,Major Amberson Scene,tt0035015 3pEtiCv07Yc,1942.0,3,10,2017,The Magnificent Ambersons,The Queer Looking Duck Scene,tt0035015 vA1fVHBWuBU,1942.0,5,10,2017,The Magnificent Ambersons,Automobiles Are a Useless Nuisance Scene,tt0035015 corlGzKJqAc,1942.0,1,10,2017,The Magnificent Ambersons,The Magnificence of the Ambersons Scene,tt0035015 dUbNFv_h6Kc,1942.0,4,10,2017,The Magnificent Ambersons,Get a Horse Scene,tt0035015 dudDh8KZiTE,1942.0,6,10,2017,The Magnificent Ambersons,The Talk of the Town Scene,tt0035015 BrWwVhnztcg,1942.0,10,10,2017,The Magnificent Ambersons,George's Comeuppance Scene,tt0035015 RZdQIbRXNCU,2011.0,5,10,2017,The Change-Up,How to Be a Grownup Scene,tt1488555 6p-S9nS21Wc,2011.0,4,10,2017,The Change-Up,Feeding the Twins Scene,tt1488555 KaqzKhM9-nU,2011.0,6,10,2017,The Change-Up,You Two Should Go Out Scene,tt1488555 f0sDG0nnftw,2011.0,7,10,2017,The Change-Up,Violence is Cool Scene,tt1488555 4G6VXPkfDvo,2011.0,8,10,2017,The Change-Up,Something We Really Regret Scene,tt1488555 cgoMJXAmLdc,2011.0,3,10,2017,The Change-Up,Guns Hot Scene,tt1488555 Q0IQ3GHGXdM,2011.0,1,10,2017,The Change-Up,Sabotaging the Merger Scene,tt1488555 -2KGPYEFnsU,2011.0,9,10,2017,The Change-Up,We Always Come Second Scene,tt1488555 lCcWPDXqKi0,2011.0,10,10,2017,The Change-Up,We Are Here to Have Fun Scene,tt1488555 1eSURYocFiM,2011.0,2,10,2017,The Change-Up,Somehow We Switched Bodies Scene,tt1488555 vr2jJkcTcxk,2007.0,10,10,2017,Charlie Bartlett,Dinner and a Movie Scene,tt0423977 Vmo12BffgQc,2007.0,6,10,2017,Charlie Bartlett,Yankee Doodle Dandy Scene,tt0423977 RNJ7CL89IFM,2007.0,8,10,2017,Charlie Bartlett,Backseat Date Scene,tt0423977 gTt8yvw4MJE,2007.0,1,10,2017,Charlie Bartlett,Fake I.D.s Scene,tt0423977 JCGqUJddlS4,2007.0,2,10,2017,Charlie Bartlett,Those Were the Days Scene,tt0423977 CvoAG6pgdC4,2007.0,3,10,2017,Charlie Bartlett,Misadventures of a Teenage Renegade Scene,tt0423977 VlfBJLU-8us,2007.0,7,10,2017,Charlie Bartlett,First Kiss Scene,tt0423977 vAYzTJIog1U,2007.0,9,10,2017,Charlie Bartlett,Charlie's First Time Scene,tt0423977 -arTRBtT9d4,2007.0,5,10,2017,Charlie Bartlett,After School Fights Scene,tt0423977 QHU65AAx6uk,2007.0,4,10,2017,Charlie Bartlett,Popping Pills Scene,tt0423977 jNIMe9C25BY,2001.0,1,10,2017,Charlotte Gray,Bravery Scene,tt0245046 q_xuviCDyCk,2001.0,2,10,2017,Charlotte Gray,Arrested Scene,tt0245046 v7tTCb-WU-A,2001.0,7,10,2017,Charlotte Gray,Leave With Me Scene,tt0245046 g2GlXX8nFHg,2001.0,10,10,2017,Charlotte Gray,My Name is Scene,tt0245046 6rbUAMnadso,2001.0,3,10,2017,Charlotte Gray,Blowing the Train Scene,tt0245046 NTvvUL9OgLU,2001.0,8,10,2017,Charlotte Gray,The Letter Scene,tt0245046 z4NqFwQCHQg,2001.0,9,10,2017,Charlotte Gray,Can't Go Back Scene,tt0245046 Jf_AooayjPw,2001.0,4,10,2017,Charlotte Gray,Somebody Told Them Scene,tt0245046 XKlt7H8_De0,2001.0,5,10,2017,Charlotte Gray,Jewish Heritage Scene,tt0245046 v6Tkyyi43OU,2001.0,6,10,2017,Charlotte Gray,Kiss Me Scene,tt0245046 ssZ1pf2Zuas,1990.0,6,10,2017,Reversal of Fortune,You're Debating Me Scene,tt0100486 FrxenZhf78I,1990.0,2,10,2017,Reversal of Fortune,Everybody Hates You Scene,tt0100486 1fN7M_u4xt0,1990.0,5,10,2017,Reversal of Fortune,You Think I'm Scum? Scene,tt0100486 B13fDbQ75Sk,1990.0,9,10,2017,Reversal of Fortune,Introducing New Evidence Scene,tt0100486 a7Y0CTo21uQ,1990.0,7,10,2017,Reversal of Fortune,Be a Man! Scene,tt0100486 N5PNlMUcaPE,1990.0,4,10,2017,Reversal of Fortune,Why Help Guilty People? Scene,tt0100486 DCW8XHP8ap4,1990.0,3,10,2017,Reversal of Fortune,What an Innocent Man Would Say Scene,tt0100486 15bAAD-awjk,1990.0,10,10,2017,Reversal of Fortune,"Morally, You're on Your Own Scene",tt0100486 Y5L_REhifRg,1990.0,1,10,2017,Reversal of Fortune,A Vegetable Scene,tt0100486 m7gCydjomXE,1990.0,8,10,2017,Reversal of Fortune,You Have No Idea Scene,tt0100486 5H7YGAM9Na0,1987.0,9,9,2017,Nuts,The Judge's Decision Scene,tt0093660 CDwnIJ5ohu4,1987.0,8,9,2017,Nuts,I Won't Be for You Scene,tt0093660 L0PPveTZVsw,1987.0,4,9,2017,Nuts,A Father's Dark Secret Scene,tt0093660 d1ZUnCbVoZQ,1987.0,5,9,2017,Nuts,Do You Understand Manslaughter? Scene,tt0093660 l7X3t5SOcFY,1987.0,2,9,2017,Nuts,They Say You're Crazy Scene,tt0093660 AOv5WvKX57s,1987.0,6,9,2017,Nuts,Money for Fantasies Scene,tt0093660 0_UCPY-mSZU,1987.0,3,9,2017,Nuts,I'm a Sane Woman Scene,tt0093660 oMt4F9ELo3U,1987.0,1,9,2017,Nuts,I'm Not Incompetent Scene,tt0093660 Bo-2-sJi7Uk,1987.0,7,9,2017,Nuts,Do You Trust Anyone Here? Scene,tt0093660 ppfnHlRju7Y,1998.0,7,10,2017,Virus,You Are Scene,tt0120458 MeHr3ZYy_g8,1998.0,6,10,2017,Virus,Robotic Friends Scene,tt0120458 UISLDo5JtiI,1998.0,4,10,2017,Virus,Robot Factory Scene,tt0120458 Olt04UetqMA,1998.0,1,10,2017,Virus,Space Station Power Surge Scene,tt0120458 gAbn72Nu_MM,1998.0,3,10,2017,Virus,A Trigger Happy Surprise Scene,tt0120458 PKnfWnfvSGM,1998.0,10,10,2017,Virus,Destroying Hardware Scene,tt0120458 13UIqhovLmI,1998.0,8,10,2017,Virus,A Cyborg Captain Scene,tt0120458 usImFOQQEIg,1998.0,2,10,2017,Virus,Tiny Terror in the Engine Room Scene,tt0120458 jcjMYkD-e80,1998.0,9,10,2017,Virus,Tortured By a Killer Machine Scene,tt0120458 k_tU5DWlyeo,1998.0,5,10,2017,Virus,A New Life Form Scene,tt0120458 qV6EOCw8Zu8,2010.0,9,10,2017,Skyline,Nowhere to Run Scene,tt1564585 MxMpRqQQ6o4,1989.0,2,10,2017,Her Alibi,I Do Not Like Bugs Scene,tt0097500 t8vRwv9kRjg,1989.0,7,10,2017,Her Alibi,Words of Love Scene,tt0097500 aSwi8mzc1gA,1989.0,1,10,2017,Her Alibi,I Confess Scene,tt0097500 7ZTCXQOU5oM,1989.0,10,10,2017,Her Alibi,Clown Fight Scene,tt0097500 xXLQhqwMT3A,1989.0,8,10,2017,Her Alibi,The Explosion Scene,tt0097500 jc2T3qbPJNI,1989.0,6,10,2017,Her Alibi,Romanian Driver Scene,tt0097500 8MSvuqf--9o,1989.0,5,10,2017,Her Alibi,Getting the Shaft Scene,tt0097500 RcZo8hHZqkY,1989.0,4,10,2017,Her Alibi,Doing Something Scene,tt0097500 vXXDqjLe4Ls,1989.0,3,10,2017,Her Alibi,Sexy Haircut Scene,tt0097500 ZBqZpBkiLiI,1989.0,9,10,2017,Her Alibi,Opening Up to the Family Scene,tt0097500 H7zXX6EqGbI,1998.0,6,9,2017,A Perfect Murder,Steven's Story Scene,tt0120787 G7_Mq3-ivsM,1998.0,9,9,2017,A Perfect Murder,The Key Scene,tt0120787 m2tk7RatWsk,1998.0,8,9,2017,A Perfect Murder,Wet Work Scene,tt0120787 xeLH_cCCgr0,1998.0,5,9,2017,A Perfect Murder,Blackmail Scene,tt0120787 TMeiAg1kXKs,1998.0,7,9,2017,A Perfect Murder,Lies Scene,tt0120787 ja00D_L5tm8,1998.0,4,9,2017,A Perfect Murder,Something Wrong? Scene,tt0120787 5cbim7n9ARs,1998.0,3,9,2017,A Perfect Murder,Planning the Murder Scene,tt0120787 jy9IGBTGVRQ,1998.0,2,9,2017,A Perfect Murder,Killing My Wife Scene,tt0120787 JanwLiyFPAU,1998.0,1,9,2017,A Perfect Murder,Nice to Meet You Scene,tt0120787 hQm4WGUJtQo,1995.0,2,10,2017,Murder in the First,3 Years Lost Scene,tt0113870 F9ScROJxATc,1995.0,4,10,2017,Murder in the First,I Accuse Alcatraz Scene,tt0113870 NZ-u1BXI0YQ,1995.0,7,10,2017,Murder in the First,Inhumane Treatment Scene,tt0113870 hR8yyXbTjNg,1995.0,8,10,2017,Murder in the First,It is Not Okay Scene,tt0113870 aTc9vNCS8vo,1995.0,3,10,2017,Murder in the First,30 Minutes of Exercise Scene,tt0113870 JZzbTqTLiqU,1995.0,10,10,2017,Murder in the First,I Won Scene,tt0113870 9zdo9xIvR9M,1995.0,1,10,2017,Murder in the First,Action Reaction Scene,tt0113870 YwUShaY_lew,1995.0,9,10,2017,Murder in the First,Stop Being Afraid Scene,tt0113870 ANAUjvgYxjQ,1995.0,6,10,2017,Murder in the First,I Am Not the Bad Guy Scene,tt0113870 XiXa1C9FECU,1995.0,5,10,2017,Murder in the First,They Will Eat You For Breakfast Scene,tt0113870 p_jspptikh8,2007.0,3,7,2017,The Reaping,Bugs For Dinner Scene,tt0444682 GfhCds4VHbo,2007.0,7,7,2017,The Reaping,God's Will Scene,tt0444682 BVrhwsgCuFU,2007.0,5,7,2017,The Reaping,Are You Gonna Kill My Girl? Scene,tt0444682 57MtQQ5sm24,2007.0,6,7,2017,The Reaping,The Queen of Locusts Scene,tt0444682 NWUxk3JPaqU,2007.0,4,7,2017,The Reaping,Mad Cow Scene,tt0444682 Tt2oL1sVVhM,2009.0,9,10,2017,The Unborn,When An Exorcism Fails Scene,tt1139668 ioQQ3gbY0vY,2009.0,4,10,2017,The Unborn,The Glory Hole of Terror Scene,tt1139668 gq5WIcSz2ko,2009.0,6,10,2017,The Unborn,Chased by the Dybbuk Scene Scene,tt1139668 RsSltFwkLPE,2009.0,3,10,2017,The Unborn,The Child Behind the Mirror Scene,tt1139668 n9uVWlO0GAs,2009.0,5,10,2017,The Unborn,Sleeping With a Ghost Child Scene,tt1139668 jaM0sgoi0vw,2009.0,1,10,2017,The Unborn,Follow the Dog Scene,tt1139668 tKei1kTWmKU,2009.0,8,10,2017,The Unborn,Don't Answer the Door Scene,tt1139668 yoYPBCFehng,2009.0,7,10,2017,The Unborn,A Strange Beast Scene,tt1139668 7UnKOlleCCw,2009.0,2,10,2017,The Unborn,Jumby Wants to Be Born Now Scene,tt1139668 d5gSQLPcya0,2009.0,10,10,2017,The Unborn,Casting Out the Evil Spirit Scene,tt1139668 kZQ87E53U_A,2007.0,1,7,2017,The Reaping,A Dark Vision Scene,tt0444682 SSY6_T2oAow,2007.0,2,7,2017,The Reaping,Raining Frogs Scene,tt0444682 oYet52yPgu0,2009.0,3,10,2017,2012,The Sinking of Los Angeles Scene,tt1190080 S1Kbym7WYzs,2009.0,4,10,2017,2012,Yellowstone Erupts Scene,tt1190080 mvgRi4K58U8,2010.0,3,10,2017,Skyline,Aliens Hate Cars Scene,tt1564585 EqW_b9Ec75w,2010.0,7,10,2017,Skyline,Monster On the Roof Scene,tt1564585 Qrj9qKZCuCw,2010.0,8,10,2017,Skyline,A Last Stand Scene,tt1564585 C0gEMF9Tx7o,2010.0,4,10,2017,Skyline,They're After Your Brain Scene,tt1564585 Ynfvc7uaDMo,2010.0,5,10,2017,Skyline,Outrunning the Beast,tt1564585 jW9JF2lCjqg,2010.0,10,10,2017,Skyline,The Alien Bodyguard Scene,tt1564585 UczxnDAsQjs,2010.0,6,10,2017,Skyline,Air Force to the Rescue Scene,tt1564585 TiQrmXZ_SZU,2010.0,1,10,2017,Skyline,The Blue Lights Scene,tt1564585 ppJ38u-KyYM,2010.0,2,10,2017,Skyline,The Abduction of a City Scene,tt1564585 J440ql0zXuE,2011.0,5,10,2017,The Adjustment Bureau,You Ruined Me Scene,tt1385826 7oczRhQvSlE,2011.0,9,10,2017,The Adjustment Bureau,Come With Me Scene,tt1385826 lyvAjZw6O_Q,2011.0,6,10,2017,The Adjustment Bureau,You Can Change the World Scene,tt1385826 Fz2HMTuqy98,2011.0,8,10,2017,The Adjustment Bureau,Running From Fate Scene,tt1385826 KblaujDjQ4g,2011.0,3,10,2017,The Adjustment Bureau,I Can Read Your Mind Scene,tt1385826 p1e3NC3IIF8,2011.0,2,10,2017,The Adjustment Bureau,Elise on the Bus Scene,tt1385826 sd2pBde6gkw,2011.0,1,10,2017,The Adjustment Bureau,Love In the Men's Room Scene,tt1385826 QiCNpDYavbg,2011.0,10,10,2017,The Adjustment Bureau,Rewriting the Ending Scene,tt1385826 FMDgoOi_HLk,2011.0,4,10,2017,The Adjustment Bureau,Meeting Elise Again Scene,tt1385826 p6oIR31ZgyA,2011.0,7,10,2017,The Adjustment Bureau,Her Dreams Scene,tt1385826 Bxh85MB9FOE,2014.0,9,10,2017,The Signal,I Need You To Go Scene,tt2910814 zU19JLG88tA,2014.0,8,10,2017,The Signal,Jonah's Ambush Scene,tt2910814 ehxd3S2foDg,2014.0,7,10,2017,The Signal,Area 51 Scene,tt2910814 tIj1luuOfO4,2014.0,6,10,2017,The Signal,As Fast As a Truck Scene,tt2910814 hAVDAEaxv_8,2014.0,5,10,2017,The Signal,Breaking Out Scene,tt2910814 KUMhlMS-z2I,2014.0,10,10,2017,The Signal,Run Like Fire Scene,tt2910814 mBdFXXV9hwY,2014.0,4,10,2017,The Signal,What Did They Do To My Legs? Scene,tt2910814 PXmtu0Kd0ms,2014.0,2,10,2017,The Signal,Contact with an EBE Scene,tt2910814 BKkw8FslzOI,2014.0,1,10,2017,The Signal,Abandoned and Abducted Scene,tt2910814 NPYyV_mq97M,2014.0,3,10,2017,The Signal,Shapes and Colors Scene,tt2910814 B-Wf5QOHPxw,2009.0,10,10,2017,2012,The Ark Launch Scene,tt1190080 1id63E3KgH0,2009.0,6,10,2017,2012,Get to the Plane Scene,tt1190080 CmMeT8MW1LA,2009.0,7,10,2017,2012,Cruise Ship Tsunami Scene,tt1190080 _TmztVM7Z4s,2009.0,5,10,2017,2012,Trust in Prayer Scene,tt1190080 sIDHrcDf-N0,2009.0,8,10,2017,2012,Rough Landing in Tibet Scene,tt1190080 YnnxVknsLk0,2009.0,1,10,2017,2012,Something Pulling Us Apart Scene,tt1190080 qgRXFJqB-9Q,2009.0,9,10,2017,2012,The Arks Scene,tt1190080 NclH5qEfL5c,2009.0,2,10,2017,2012,Do Not Panic Scene,tt1190080 nkVUb4kdhig,2014.0,8,10,2017,Non-Stop,You Failed Miserably Scene,tt2024469 8QNDAaCu9dI,2014.0,10,10,2017,Non-Stop,Crash Landing Scene,tt2024469 10TW3rcKMtA,2014.0,9,10,2017,Non-Stop,"8,000 Feet Scene",tt2024469 uUA0a8U7PdY,2014.0,7,10,2017,Non-Stop,Preparing for the Worst Scene,tt2024469 osFbJZfBOyA,2014.0,5,10,2017,Non-Stop,Why the Window Seat? Scene,tt2024469 -PzL4MTu3to,2014.0,6,10,2017,Non-Stop,I'm Not a Good Man Scene,tt2024469 zT4OxEg_-cY,2014.0,4,10,2017,Non-Stop,There Was Nothing I Could Do Scene,tt2024469 Ltjiyd-THC0,2014.0,3,10,2017,Non-Stop,Don't Do This Scene,tt2024469 mDViU8OSRkA,2014.0,2,10,2017,Non-Stop,How's Your Daughter? Scene,tt2024469 JjqnoH4D3mo,2014.0,1,10,2017,Non-Stop,Set Your Watch Scene,tt2024469 ehv1cHqfQ-U,2014.0,8,10,2017,A Walk Among the Tombstones,A Sudden Strangling Scene,tt0365907 6f1VnWuk4C8,2014.0,9,10,2017,A Walk Among the Tombstones,Your Choice Scene,tt0365907 XQ0Tlb8z3ow,2014.0,5,10,2017,A Walk Among the Tombstones,The Kidnapping Scene,tt0365907 5ZT2Mc8TEIY,2014.0,7,10,2017,A Walk Among the Tombstones,The Exchange Scene,tt0365907 gvaa1ZpqoUc,2014.0,6,10,2017,A Walk Among the Tombstones,Setting Up the Meeting Scene,tt0365907 S52bKF-hXu4,2014.0,2,10,2017,A Walk Among the Tombstones,Kenny's Story Scene,tt0365907 slegOy-GQMc,2014.0,4,10,2017,A Walk Among the Tombstones,Don't Feel Sorry for Me Scene,tt0365907 Sk0iV1R72OM,2014.0,10,10,2017,A Walk Among the Tombstones,Silent Kill Scene,tt0365907 Q780MiOrLwg,2014.0,3,10,2017,A Walk Among the Tombstones,Shoot Yourself in the Head Scene,tt0365907 eFzzQuYRw34,2014.0,1,10,2017,A Walk Among the Tombstones,Morning Shootout Scene,tt0365907 h9WDm1k4Hz4,2014.0,7,10,2017,Kill the Messenger,What Happened in Cleveland Scene,tt1216491 rtYKhaQStZE,2014.0,3,10,2017,Kill the Messenger,The Ends Justify the Means Scene,tt1216491 Q2-4x2KuRqE,2014.0,5,10,2017,Kill the Messenger,Home Invasion Scene,tt1216491 jjDuR4d7Iik,2014.0,8,10,2017,Kill the Messenger,Shades of Grey Scene,tt1216491 od6IxUWPMcs,2014.0,4,10,2017,Kill the Messenger,Too True to Tell Scene,tt1216491 uLhrOeavvOY,2014.0,9,10,2017,Kill the Messenger,Have You Seen a Bike? Scene,tt1216491 HYzSQZdBWVQ,2014.0,1,10,2017,Kill the Messenger,"""Freeway"" Ricky Ross Scene",tt1216491 NRBLTtDkQXU,2014.0,6,10,2017,Kill the Messenger,This Is About You Scene,tt1216491 hQUBid6LIPU,2014.0,10,10,2017,Kill the Messenger,My Job Was To Tell the Truth Scene,tt1216491 Mfcqb8DD400,2014.0,2,10,2017,Kill the Messenger,Interrogating Blandon Scene,tt1216491 dwzoyEaHxSM,1960.0,2,10,2017,Ocean's 11,Drowned in Champagne Scene,tt0054135 PkLpd8Eaah0,1960.0,8,10,2017,Ocean's 11,New Year's Heist Scene,tt0054135 U-7MSowBlG8,1960.0,4,10,2017,Ocean's 11,Just In Time for the Fun Scene,tt0054135 ZtHl67Oeb5I,1960.0,6,10,2017,Ocean's 11,Red Skelton Gets Thrown Out Scene,tt0054135 IXwwGEJkx8Y,1960.0,10,10,2017,Ocean's 11,50% of Something Scene,tt0054135 lV2XAU1JzuI,1960.0,9,10,2017,Ocean's 11,Garbage Truck Full of Money Scene,tt0054135 14Et05Okf8w,1960.0,3,10,2017,Ocean's 11,In Love With Danger Scene,tt0054135 npvFfvyT8Pc,1960.0,1,10,2017,Ocean's 11,Bravery Rhymes with Stupid Scene,tt0054135 klt86blKwaA,1960.0,7,10,2017,Ocean's 11,Getting Rid of the Girl Scene,tt0054135 1D4VF4WqJSE,1960.0,5,10,2017,Ocean's 11,You Really Are a Rat Scene,tt0054135 _eHwoQ4VQ1o,2015.0,9,11,2017,Mississippi Grind,Rainbow Road Scene,tt2349144 pzG1ckuBqpg,2015.0,8,11,2017,Mississippi Grind,Toto's Revenge Scene,tt2349144 E0i4dabbAcI,2015.0,6,11,2017,Mississippi Grind,A Bad Beat Scene,tt2349144 wZcRiRs1x-8,2015.0,10,11,2017,Mississippi Grind,The Winning Streak Scene,tt2349144 JbuGOroCWaI,2015.0,1,11,2017,Mississippi Grind,Want a Woodford? Scene,tt2349144 ePlb7b2nQm4,2015.0,11,11,2017,Mississippi Grind,Bet It All Scene,tt2349144 VU3Tu4K4MOo,2015.0,5,11,2017,Mississippi Grind,Playing the Piano Scene,tt2349144 gxhMfM0QlwM,2015.0,2,11,2017,Mississippi Grind,Stake Me Scene,tt2349144 iTQ4b0d3HxM,2015.0,4,11,2017,Mississippi Grind,Tell Me Something Scene,tt2349144 ovxjAnlr7qg,2015.0,3,11,2017,Mississippi Grind,Simone Scene,tt2349144 Tn44a8_14LU,2015.0,7,11,2017,Mississippi Grind,Where's the Money? Scene,tt2349144 2l_mfcc2I8E,2002.0,5,5,2017,Murder by Numbers,The Choice to Kill,tt0264935 NCUOJMkDAyI,2002.0,1,5,2017,Murder by Numbers,Freedom is Crime Scene,tt0264935 vlg5VPKbGQg,2002.0,3,5,2017,Murder by Numbers,Whoever Talks First Scene,tt0264935 0IQgjMYWVGc,2002.0,2,5,2017,Murder by Numbers,Committing the Perfect Murder Scene,tt0264935 yzera03y4_0,2002.0,4,5,2017,Murder by Numbers,We Killed a Woman Scene,tt0264935 jXKc-0nVIkQ,2014.0,7,10,2017,Deliver Us From Evil,The First Stage Scene,tt2377322 _zHhry-Ot0Y,2014.0,10,10,2017,Deliver Us From Evil,The Beast Is Gone Scene,tt2377322 L9x5p-s4zKs,2014.0,4,10,2017,Deliver Us From Evil,A Darkness Growing Inside Scene,tt2377322 Mgc3y6p-Bys,2014.0,6,10,2017,Deliver Us From Evil,Where's My Family? Scene,tt2377322 iVsfWht3zmo,2014.0,8,10,2017,Deliver Us From Evil,Leg Eater Scene,tt2377322 onO71_aItKA,2014.0,3,10,2017,Deliver Us From Evil,A Biting Suspect Scene,tt2377322 X67GWsa_NNM,2014.0,9,10,2017,Deliver Us From Evil,"Silence, Beast Scene",tt2377322 HPir9pU9shw,2014.0,5,10,2017,Deliver Us From Evil,POP Goes the Demon! Scene,tt2377322 DooTtUcpKM4,2014.0,2,10,2017,Deliver Us From Evil,The Writing on the Wall Scene,tt2377322 -Lrndfrc9yU,2014.0,1,10,2017,Deliver Us From Evil,Scratching Noises Scene,tt2377322 hRg2HEpwD5A,1991.0,8,8,2017,Showdown in Little Tokyo,"Kick His Ass, Samurai Scene",tt0102915 b7AjNXAF-7Y,1991.0,4,8,2017,Showdown in Little Tokyo,A Fully Loaded Savior Scene,tt0102915 fmMPmWO6b4E,1991.0,7,8,2017,Showdown in Little Tokyo,The Right to Be Dead Scene,tt0102915 BRBSfKmp3vs,2005.0,2,10,2017,Deuce Bigalow: European Gigolo,I Ain't Gay! Scene,tt0367652 w71pHLUz2i0,2005.0,10,10,2017,Deuce Bigalow: European Gigolo,What a Woman Wants Scene,tt0367652 beearAU0yn0,1991.0,6,8,2017,Showdown in Little Tokyo,Assault on the Red Dragon Brewery Scene,tt0102915 fB_fwuJOx7I,2005.0,9,10,2017,Deuce Bigalow: European Gigolo,Killer Girlfriend Scene,tt0367652 XcDzb6AeAI0,2005.0,8,10,2017,Deuce Bigalow: European Gigolo,Farting Fail Scene,tt0367652 xM1MNPKYl5g,2005.0,5,10,2017,Deuce Bigalow: European Gigolo,Bad Pussy Scene,tt0367652 b0KSEziycmw,2005.0,4,10,2017,Deuce Bigalow: European Gigolo,I Stood Down Scene,tt0367652 hZPz4w3jLXI,2005.0,7,10,2017,Deuce Bigalow: European Gigolo,Porn Interrupted Scene,tt0367652 2_BwhA8M9-w,2005.0,1,10,2017,Deuce Bigalow: European Gigolo,Space Cake Scene,tt0367652 _qh-4JFLd-s,2005.0,6,10,2017,Deuce Bigalow: European Gigolo,Aquarium Bully Scene,tt0367652 -kHMOXNsE2k,2005.0,3,10,2017,Deuce Bigalow: European Gigolo,Chicken and Waffles Scene,tt0367652 VnLaIBz4VMg,1991.0,5,8,2017,Showdown in Little Tokyo,Enjoy Being Dead Scene,tt0102915 ZIHWAugnBWI,1991.0,3,8,2017,Showdown in Little Tokyo,Critiquing Your Partner Scene,tt0102915 YGwPTU-SvbI,1991.0,2,8,2017,Showdown in Little Tokyo,I'm Your New Partner Scene,tt0102915 e3RDBiiOJaY,1991.0,1,8,2017,Showdown in Little Tokyo,You're Under Arrest Scene,tt0102915 vjmHq57MZso,2005.0,7,10,2017,Bewitched,I Want My Husband Scene,tt0374536 NHg_SEfj38M,2005.0,8,10,2017,Bewitched,She Has Her Broomstick Scene,tt0374536 Q49KVa7jotI,2005.0,10,10,2017,Bewitched,Home is With Me Scene,tt0374536 T5p0IaOt3tQ,2005.0,9,10,2017,Bewitched,Uncle Arthur Scene,tt0374536 HUKu_iqYDOA,2005.0,2,10,2017,Bewitched,Be My TV Wife Scene,tt0374536 Jx-I8OfW0GI,2005.0,6,10,2017,Bewitched,He's Being a Jerk! Scene,tt0374536 kZg0_oypRpU,2005.0,3,10,2017,Bewitched,Where's My Dog? Scene,tt0374536 fYNZsz9o3Sg,2005.0,5,10,2017,Bewitched,Who Would Want to Marry You? Scene,tt0374536 KOBGjFHXnqY,2005.0,1,10,2017,Bewitched,I Want to Feel Thwarted Scene,tt0374536 D_FRoxgOUNA,2005.0,4,10,2017,Bewitched,Hexed Date Scene,tt0374536 b2hhdMiOTOE,1988.0,10,10,2017,Pumpkinhead,Kill Me! Scene,tt0095925 gxacglqQMqE,1988.0,6,10,2017,Pumpkinhead,Maggie is Taken Scene,tt0095925 hwb1MK66new,1988.0,7,10,2017,Pumpkinhead,I'm the One You Want!,tt0095925 abTZPgqiEto,1988.0,4,10,2017,Pumpkinhead,Rises Scene,tt0095925 _oEolYMce4c,1988.0,5,10,2017,Pumpkinhead,Kills Steve Scene Movielcips,tt0095925 cfB1QaweRKU,1988.0,8,10,2017,Pumpkinhead,A Rifle Through the Chest Scene,tt0095925 ALYPTuyCxqI,1988.0,3,10,2017,Pumpkinhead,Death of a Child Scene,tt0095925 YZ5Y_GhXMKw,1988.0,2,10,2017,Pumpkinhead,There Ain't No ! Scene,tt0095925 ek0jTQAdN8Y,1988.0,9,10,2017,Pumpkinhead,Unholy Act Scene,tt0095925 fvNfhUZ-5z8,1988.0,1,10,2017,Pumpkinhead,It's Coming Scene,tt0095925 IsG-jJcrlr0,2014.0,3,10,2017,The Interview,The Money Shot Scene,tt2788710 OyziGbUQBIc,2014.0,1,10,2017,The Interview,Haters Gonna Hate Scene,tt2788710 fnpUxSXWy6I,2014.0,2,10,2017,The Interview,They're Honeypotting Us Scene,tt2788710 dN1RMOrtK7A,2014.0,4,10,2017,The Interview,Aardvark vs. Tiger Scene,tt2788710 EFtdTsawXK0,2014.0,5,10,2017,The Interview,Secure the Package Scene,tt2788710 B8dPQzwGcZI,2014.0,6,10,2017,The Interview,The Coolest Dictator,tt2788710 pb8pWn_yyF4,2014.0,7,10,2017,The Interview,Crying with Kim Scene,tt2788710 eWP8JMcy3O0,2014.0,8,10,2017,The Interview,No Hand Stuff Scene,tt2788710 Yo3rEGWrlws,2014.0,9,10,2017,The Interview,Interview Gone Wrong Scene,tt2788710 74PUHyVj4BQ,2014.0,10,10,2017,The Interview,A Fake Friend Scene,tt2788710 ssK4Uc8SXnU,2013.0,2,10,2017,Bad Words,Don't Look at Me Scene,tt2170299 0PtKzdvq7bc,2013.0,9,10,2017,Bad Words,Misspelling Bee Scene,tt2170299 kg2o35acq4c,2013.0,5,10,2017,Bad Words,Insults and Nipples Scene,tt2170299 3tMHSQGSUzc,2013.0,8,10,2017,Bad Words,Take Him Out! Scene,tt2170299 kzVO5JrnEJ8,2013.0,3,10,2017,Bad Words,Give These To Your Mother Scene,tt2170299 GzL4f-4uQVM,2013.0,1,10,2017,Bad Words,Autofellatio Scene,tt2170299 s2Tpk6RnkaA,2013.0,4,10,2017,Bad Words,Like an Elephant's Trunk Scene,tt2170299 TSAdyzdX4eA,2013.0,6,10,2017,Bad Words,These Are Not Light Pants Scene,tt2170299 SWKDbfvyZMU,2013.0,10,10,2017,Bad Words,Chaitanya the Champion Scene,tt2170299 nifcKdVjpbw,2013.0,7,10,2017,Bad Words,A Little Liar Scene,tt2170299 pEJHzQIMH5k,2001.0,1,10,2017,Wet Hot American Summer,Cleaning Up & Breaking Down Scene,tt0243655 YygwTWUI8vc,2001.0,5,10,2017,Wet Hot American Summer,An Unlikely Team of Misfits Scene,tt0243655 iYf3nqYQXDI,2001.0,9,10,2017,Wet Hot American Summer,Higher and Higher Montage Scene,tt0243655 B9oxe-Dvvj0,2001.0,6,10,2017,Wet Hot American Summer,Less Than Scene,tt0243655 VSdIYNSkQL8,2001.0,2,10,2017,Wet Hot American Summer,Making Out Scene,tt0243655 D-9zx3m6lLU,2001.0,4,10,2017,Wet Hot American Summer,"Wait for Me, Abbie Bernstein! Scene",tt0243655 E1e4f8YdkLg,2001.0,10,10,2017,Wet Hot American Summer,Where's the Phone? Scene,tt0243655 lYtc2lvkpTw,2001.0,3,10,2017,Wet Hot American Summer,Going into Town Scene,tt0243655 UyOxOyfX4uM,2001.0,7,10,2017,Wet Hot American Summer,The Talking Can Scene,tt0243655 glJzhylsfoc,2001.0,8,10,2017,Wet Hot American Summer,Hump the Fridge Scene,tt0243655 SZ3oe7dJdMc,2008.0,10,10,2017,Hancock,Back From the Dead Scene,tt0448157 yr-gQl9CKIU,1997.0,1,10,2017,Booty Call,A Brother Named Bunz Scene,tt0118750 Tt7qQmpLA2U,1997.0,3,10,2017,Booty Call,Dancing Nasty Scene,tt0118750 dTVEd7WtyAw,1997.0,4,10,2017,Booty Call,Footsie Scene,tt0118750 adatkf9XY44,1997.0,6,10,2017,Booty Call,Gimme the Money Scene,tt0118750 gIaqrkn0ymo,1997.0,8,10,2017,Booty Call,"No Insurance, No Problem Scene",tt0118750 gDSrAm2CKdU,1997.0,5,10,2017,Booty Call,Sexual Frustration Scene,tt0118750 wSpvR9B8QXw,1997.0,10,10,2017,Booty Call,Sex At Last Scene,tt0118750 YG0VNVGxyYs,1997.0,9,10,2017,Booty Call,Only Good For One Thing Scene,tt0118750 mlkWgiyQ-8g,1997.0,2,10,2017,Booty Call,Chinese Smack Talk Scene,tt0118750 I2v7jlIBL1A,1997.0,7,10,2017,Booty Call,Plastic Wrap Scene,tt0118750 yRlyvNmVWK0,1994.0,5,10,2017,The Next Karate Kid,Dancing Monks Scene,tt0110657 lkoWhWGcVR4,1994.0,3,10,2017,The Next Karate Kid,The Sacred Garden Scene,tt0110657 hprw4GtCu1w,1994.0,7,10,2017,The Next Karate Kid,Zen Archery Scene,tt0110657 7D_6z1EnSik,1994.0,2,10,2017,The Next Karate Kid,Gas Station Fight Scene,tt0110657 czJL-TPz-5M,1994.0,8,10,2017,The Next Karate Kid,Karate Waltz Scene,tt0110657 LlK6pn4qyrc,1994.0,1,10,2017,The Next Karate Kid,Boys Are Easier Scene,tt0110657 zIKq7DqdZa4,1994.0,10,10,2017,The Next Karate Kid,Miyagi Finishes Dugan Scene,tt0110657 yGYPTb9T3MU,1994.0,4,10,2017,The Next Karate Kid,Respect All Living Things Scene,tt0110657 xc2Ctw8pGrc,1994.0,9,10,2017,The Next Karate Kid,Julie Fights Ned Scene,tt0110657 06DLNzLaTlE,1994.0,6,10,2017,The Next Karate Kid,Julie's Training Scene,tt0110657 JLvkvjU_iyY,1998.0,8,10,2017,Stepmom,Isabel's Plan Works Scene,tt0120686 mExTnHwAcYY,1998.0,10,10,2017,Stepmom,You Have Made My Life So Wonderful Scene,tt0120686 fQy1yr_K_L4,1998.0,9,10,2017,Stepmom,You Have Their Future Scene,tt0120686 RmxqK1np7rY,1998.0,3,10,2017,Stepmom,Will You Marry Me? Scene,tt0120686 dH3dqXHH0yU,1998.0,2,10,2017,Stepmom,Losing Ben Scene,tt0120686 Ghexrw8bpc8,1998.0,5,10,2017,Stepmom,Mommy's Sick Scene,tt0120686 iuPDl6n2vO0,1998.0,7,10,2017,Stepmom,The Worst Day Until Now Scene,tt0120686 ns3j2exbdbU,1998.0,4,10,2017,Stepmom,Are You Dying? Scene,tt0120686 gj_BH6Suku0,1998.0,1,10,2017,Stepmom,Underlying Hostility Scene,tt0120686 Gx1K7ynF1JM,1998.0,6,10,2017,Stepmom,Ain't No Mountain High Enough Scene,tt0120686 9j3y-J8IzYo,1991.0,1,10,2017,The People Under the Stairs,I Busted This House's Cherry Scene,tt0105121 1kPvrYaCi4c,1991.0,9,10,2017,The People Under the Stairs,You're Not My Mother Scene,tt0105121 MQ2PrvpAT-k,1991.0,6,10,2017,The People Under the Stairs,Total Spring Cleaning Scene,tt0105121 EYdIrPSIgio,1991.0,2,10,2017,The People Under the Stairs,The House That Keeps You In Scene,tt0105121 KnXZP5yMlgw,1991.0,7,10,2017,The People Under the Stairs,Dead Meat Scene,tt0105121 IBTpVVTZJ5c,1991.0,3,10,2017,The People Under the Stairs,"Run, Fool! Scene",tt0105121 UkamBJTqN8c,1991.0,4,10,2017,The People Under the Stairs,Don't Go in the Basement Scene,tt0105121 mRIaK9Vf0Ns,1991.0,5,10,2017,The People Under the Stairs,A Dog and a Roach Scene,tt0105121 JOzVMqp3vMc,1991.0,8,10,2017,The People Under the Stairs,Get Away From the Walls Scene,tt0105121 cY8yXitzluU,1991.0,10,10,2017,The People Under the Stairs,Kiss Your Ass Goodbye Scene,tt0105121 iqZB7SIbeL4,2015.0,7,7,2017,The Green Inferno,Don't Shoot! Scene,tt2403021 GwM5LleRnAI,2015.0,6,7,2017,The Green Inferno,Fed to Ants Scene,tt2403021 13YnorzVWTE,2015.0,4,7,2017,The Green Inferno,I'm Really Sick Scene,tt2403021 VXDHzJ1LYRs,2015.0,5,7,2017,The Green Inferno,Vegan Death Scene,tt2403021 fJqWAvvKS1A,2015.0,2,7,2017,The Green Inferno,Crash in the Jungle Scene,tt2403021 t1SbH-c0m_0,2015.0,1,7,2017,The Green Inferno,Kill Her and See What Happens Scene,tt2403021 b5I9yFdAMzg,2015.0,3,7,2017,The Green Inferno,Captured Scene,tt2403021 TVViHShXqC4,1991.0,6,10,2017,My Girl,First Kiss Scene,tt0102492 woLbaFLoJI8,1991.0,8,10,2017,My Girl,He Can't See Without His Glasses Scene,tt0102492 c4w-IE-Hsqc,1991.0,1,10,2017,My Girl,Teased By the Girls Scene,tt0102492 iJKQl3uGg0I,1991.0,2,10,2017,My Girl,Ode to Ice Cream Scene,tt0102492 IE9S8CehYco,1991.0,3,10,2017,My Girl,Do You Think I'm Pretty? Scene,tt0102492 ukzIFp4Kj90,1991.0,5,10,2017,My Girl,I'm Hemorrhaging! Scene,tt0102492 kP5GKIrGoeQ,1991.0,9,10,2017,My Girl,Did I Kill My Mother? Scene,tt0102492 fV-wb1gZOyo,1991.0,7,10,2017,My Girl,It Hurts So Bad Scene,tt0102492 2vbGcYm8u1o,1991.0,10,10,2017,My Girl,Vada's Poem Scene,tt0102492 6e4xlcfKHxY,1991.0,4,10,2017,My Girl,My Best Friend Scene,tt0102492 xJb5tOlE1Fs,1999.0,8,10,2017,Stuart Little,Too Good to Be True Scene,tt0164912 VCLL9aD-VKw,1999.0,4,10,2017,Stuart Little,Playing With George Scene,tt0164912 KdOgihoZjZY,1999.0,10,10,2017,Stuart Little,Not Bad for a House Cat,tt0164912 K9z6npGGZAM,1999.0,3,10,2017,Stuart Little,A Mouse With a Pet Cat Scene,tt0164912 -MNpOKICOx8,1999.0,1,10,2017,Stuart Little,Meeting the Family Scene,tt0164912 YEdNAX9h_vI,1999.0,2,10,2017,Stuart Little,Stuck in the Washing Machine Scene,tt0164912 sPHeq8OM-dU,1999.0,6,10,2017,Stuart Little,Tell Him the Truth! Scene,tt0164912 P-KZ7N30lFY,1999.0,7,10,2017,Stuart Little,Roadster Chase Scene,tt0164912 OO4LqRUxinE,1999.0,5,10,2017,Stuart Little,Boat Race Scene,tt0164912 ICRVd--TY-U,1999.0,9,10,2017,Stuart Little,You Saved Me? Scene,tt0164912 N45Gbn2AtWk,2002.0,9,10,2017,Stuart Little 2,It Wouldn't Change a Thing Scene,tt0243585 SVSzVDnvkHw,2002.0,5,10,2017,Stuart Little 2,Down the Drain Scene,tt0243585 nJ1hrmVHUJg,2002.0,1,10,2017,Stuart Little 2,Stuart Plays Soccer Scene,tt0243585 t9vWi2ItxMc,2002.0,3,10,2017,Stuart Little 2,You Don't Have a Home? Scene,tt0243585 Zd27SaRdxiE,2002.0,10,10,2017,Stuart Little 2,I'll Miss You Scene,tt0243585 yYCVu5ZSki0,2002.0,6,10,2017,Stuart Little 2,Lying for Stuart Scene,tt0243585 3cdlwCCzujo,2002.0,8,10,2017,Stuart Little 2,Tiny Little Vandals Scene,tt0243585 opWPxmr2h2s,2002.0,4,10,2017,Stuart Little 2,Silver Lining Scene,tt0243585 ilCjx9gigWI,2002.0,7,10,2017,Stuart Little 2,In the Can Scene,tt0243585 CfRKGG52TPY,2002.0,2,10,2017,Stuart Little 2,Flying in the House Scene,tt0243585 b58Zg_TRqn0,2006.0,4,10,2017,Slither,You Betrayed Me Scene,tt0439815 ZQ6XwJOrBiE,2006.0,2,10,2017,Slither,Tentacle Temptation Scene,tt0439815 PfBi1PAfWcI,2006.0,3,10,2017,Slither,Alien Love Scene,tt0439815 bOqZC-DXvk4,2006.0,10,10,2017,Slither,"A Gun, a Grenade & an Alien Scene",tt0439815 LWCK6VFF6n4,2006.0,5,10,2017,Slither,For Better or Worse Scene,tt0439815 71kAAVlpENY,2006.0,6,10,2017,Slither,Ripped Apart From the Inside Scene,tt0439815 YqRnYf2cyI0,2006.0,7,10,2017,Slither,Bathtime Scene,tt0439815 9CD23yDPEF4,2006.0,9,10,2017,Slither,Zombie Deer Scene,tt0439815 UAa5Lw5lseQ,2006.0,8,10,2017,Slither,The Worms Are in Their Brains Scene,tt0439815 x0rCYl4e1Lw,2006.0,1,10,2017,Slither,The Thing in the Woods Scene,tt0439815 MBSxl8y36zg,2015.0,6,10,2017,Concussion,Accepted as an American Scene,tt3322364 _zPImuBvnOA,2015.0,8,10,2017,Concussion,Indicted Scene,tt3322364 zFDNg1Swx0s,2015.0,9,10,2017,Concussion,We Will Have This Family Scene,tt3322364 ab4MM9cHidM,2015.0,7,10,2017,Concussion,I'm Here For Science Scene,tt3322364 S60NRfBYTl4,2015.0,4,10,2017,Concussion,It's Business Scene,tt3322364 ryyEEyKD9EU,2015.0,2,10,2017,Concussion,The NFL Owns Neuroscience Scene,tt3322364 NXTrMtrTjlI,2015.0,3,10,2017,Concussion,Their Boogeyman Scene,tt3322364 RY1FQGd1Bb4,2015.0,1,10,2017,Concussion,Football Killed Mike Webster Scene,tt3322364 Mdp4T_G0Xsc,2015.0,10,10,2017,Concussion,The Gift of Knowing Scene,tt3322364 59wvo9e2XQY,2015.0,5,10,2017,Concussion,You Want to End the NFL Scene,tt3322364 H5pj6ZuBgeE,2008.0,8,10,2017,Hancock,"Gods, Angels, Superheroes",tt0448157 tqmbgqyc1bc,2008.0,9,10,2017,Hancock,Call Me Crazy One More Time Scene,tt0448157 yt1pZiuyKJE,2008.0,7,10,2017,Hancock,Defusing the Detonator Scene,tt0448157 tG1crFI87ro,2008.0,3,10,2017,Hancock,Causing a Trainwreck Scene,tt0448157 p1dzglJEqac,2008.0,2,10,2017,Hancock,Superpowered Climax Scene,tt0448157 dgM9V3lEZvE,2008.0,4,10,2017,Hancock,Call Me A**hole One More Time Scene,tt0448157 qEH9lnYIndY,2008.0,6,10,2017,Hancock,Good Job Scene,tt0448157 E-MOzwWySaQ,2008.0,1,10,2017,Hancock,Drunk Heroism Scene,tt0448157 HKcDfO71N1E,2008.0,5,10,2017,Hancock,Your Head is Going Up His A** Scene,tt0448157 IC21keB1yaM,2012.0,1,10,2017,That's My Boy,Hot for Teacher Scene,tt1232200 YdowX3H-hGo,2012.0,6,10,2017,That's My Boy,Spa Day Scene,tt1232200 4XKZFS7EoCU,2012.0,7,10,2017,That's My Boy,Uncle Vanny Scene,tt1232200 ykBG9mW1yC4,2012.0,4,10,2017,That's My Boy,Back Tattoos Scene,tt1232200 cfB9siDjpLk,2012.0,8,10,2017,That's My Boy,Riding a Bike Scene,tt1232200 G64ubBUMVek,2012.0,2,10,2017,That's My Boy,Marine Brother Scene,tt1232200 ptOc-HdvEW0,2012.0,3,10,2017,That's My Boy,Worst Dad Ever Scene,tt1232200 fZNHk9DKvtM,2012.0,5,10,2017,That's My Boy,Priest Fight Scene,tt1232200 0GCwhGQEZ90,2012.0,10,10,2017,That's My Boy,Broken Wedding Scene,tt1232200 AkaPD_qTmok,2012.0,9,10,2017,That's My Boy,Like a Model-T Scene,tt1232200 ZFMSluy-4gE,2011.0,7,10,2017,Just Go With It,Fake Hugs Scene,tt1564367 4WdyyPhh4-k,2011.0,6,10,2017,Just Go With It,Cooling Off Scene,tt1564367 lMA48vIxajE,2011.0,4,10,2017,Just Go With It,My Pretend Children Scene,tt1564367 V6WWK1gvpjc,2011.0,3,10,2017,Just Go With It,My Hot First Wife Scene,tt1564367 VXlMfWObFCA,2011.0,8,10,2017,Just Go With It,What Do You Love? Scene,tt1564367 nJwGWiuonws,2011.0,1,10,2017,Just Go With It,Brows Gone Wild Scene,tt1564367 Xz-BR8gyPhg,2011.0,2,10,2017,Just Go With It,You're Married? Scene,tt1564367 Wmo60ltq-TA,2011.0,10,10,2017,Just Go With It,The One I Love Scene,tt1564367 qfq5VozCshY,2011.0,9,10,2017,Just Go With It,Let's Get Married! Scene (9/10 ),tt1564367 dgdEr-mXQT4,2011.0,5,10,2017,Just Go With It,Sheep Shipper Scene,tt1564367 _1rqGyHtE4Q,2008.0,1,10,2017,You Don't Mess With the Zohan,Introducing the Zohan Scene,tt0960144 JAXij_5Rr0U,2008.0,7,10,2017,You Don't Mess With the Zohan,Pushups Scene,tt0960144 utYsQTUae5w,2008.0,4,10,2017,You Don't Mess With the Zohan,Pretzel Fight Scene,tt0960144 Yg1qC5VGoLw,2008.0,5,10,2017,You Don't Mess With the Zohan,Salon Mistakes Scene,tt0960144 NdGB1rnPcR0,2008.0,8,10,2017,You Don't Mess With the Zohan,The Coco Package Scene,tt0960144 Sb8ufI6z0zM,2008.0,2,10,2017,You Don't Mess With the Zohan,Super Agent Zohan Scene,tt0960144 8DkbFJ3uz54,2008.0,9,10,2017,You Don't Mess With the Zohan,The Goat Scene,tt0960144 5OfAMHeIr7k,2008.0,3,10,2017,You Don't Mess With the Zohan,I Feel No Pain Scene Scene,tt0960144 hl1z_vp3kXg,2008.0,6,10,2017,You Don't Mess With the Zohan,Phantom Muchentuchen Scene,tt0960144 Or4t1d_h0Y0,2008.0,10,10,2017,You Don't Mess With the Zohan,Hezbollah Hotline Scene,tt0960144 ZT0-DtdC93w,2004.0,4,10,2017,Spanglish,Don't Be Wonderful Scene,tt0371246 6GpeTJqqtG4,2004.0,2,10,2017,Spanglish,Sleep on It Scene,tt0371246 VW_Bmy2Cm2c,2004.0,6,10,2017,Spanglish,A Crack in the Planet Scene,tt0371246 pCFld9GCy_Q,2004.0,3,10,2017,Spanglish,Hypocritical Scene,tt0371246 208MQEPGWLA,2004.0,10,10,2017,Spanglish,My Mother's Daughter Scene,tt0371246 oeF5tq_zeqU,2004.0,8,10,2017,Spanglish,I Love You Scene,tt0371246 nO7qxQsQK44,2004.0,1,10,2017,Spanglish,"Good Guy, Bad Guy Scene",tt0371246 -Ww_Bo5ghiw,2004.0,5,10,2017,Spanglish,Get Out of the Wind! Scene,tt0371246 CyAW5eAhhPo,2004.0,7,10,2017,Spanglish,Drop Dead Crazy Gorgeous Scene,tt0371246 6La5YCYlMZY,2004.0,9,10,2017,Spanglish,I'm So Glad You're Back Scene,tt0371246 912ib1YghJ4,2006.0,1,10,2017,Click,Morty's Universal Remote Scene,tt0389860 yywlulXZ0ls,2006.0,7,10,2017,Click,I'm A Fat Guy Scene,tt0389860 VmZ1ni2IDdo,2006.0,5,10,2017,Click,First Kiss Time Scene,tt0389860 pDj1GM3RRWs,2006.0,9,10,2017,Click,Last Time with Dad Scene,tt0389860 hjhBzRH-plo,2006.0,4,10,2017,Click,Sexual Harassment Day Scene,tt0389860 9O-NfAWrkDM,2006.0,10,10,2017,Click,Family Comes First Scene,tt0389860 CKIh_vKo7Fg,2006.0,8,10,2017,Click,Bad Future Scene,tt0389860 dVFDYCPO19A,2006.0,6,10,2017,Click,Farting on the Boss Scene,tt0389860 9LvgzVmAFxo,2006.0,3,10,2017,Click,Boobs and Colors Scene,tt0389860 wUVJf2CkNNw,2006.0,2,10,2017,Click,Speedy Sex Scene,tt0389860 ZIdKsGWToLo,1994.0,2,9,2017,Being Human,Kill Myself by Tomorrow Morning Scene,tt0106379 1QC88NQZM-8,1994.0,1,9,2017,Being Human,Mine! Scene,tt0106379 bWo3nlFcH5k,1994.0,3,9,2017,Being Human,Two Till the End Scene,tt0106379 32Fz-BBjVXs,1994.0,6,9,2017,Being Human,Hector Apologizes to Ursula Scene,tt0106379 g3WSsm57iVM,1994.0,4,9,2017,Being Human,Time to Go Home Scene,tt0106379 hf1wQVWs0DA,1994.0,5,9,2017,Being Human,Don't Let Them Eat Us Scene,tt0106379 WIZlfA5kV7Q,1994.0,7,9,2017,Being Human,She Fell Through the Floor Scene,tt0106379 HKRXTzENFa4,1994.0,8,9,2017,Being Human,I Left You Scene,tt0106379 ZfyjpKP8zDk,1994.0,9,9,2017,Being Human,As Good as It Gets Scene,tt0106379 Qk1y1yVQkJQ,1985.0,8,9,2017,American Flyers,Last Day of the Race Scene,tt0088707 SccBZYmyjxE,1985.0,7,9,2017,American Flyers,Danger on the Track Scene,tt0088707 ngSM_wxh0lE,1985.0,9,9,2017,American Flyers,Race to the Finish Scene,tt0088707 eZc3GMgzwyk,1985.0,6,9,2017,American Flyers,Is That Legal? Scene,tt0088707 DGpJ1ndBxOA,1985.0,5,9,2017,American Flyers,The Race Begins Scene,tt0088707 DEmZWy1aDuo,1985.0,3,9,2017,American Flyers,Picking up Becky Scene,tt0088707 TBHjt3AyALw,1985.0,4,9,2017,American Flyers,Gonna Make Him Bleed Scene,tt0088707 V15AidhVCSw,1985.0,1,9,2017,American Flyers,"A Family of ""Could Haves"" Scene",tt0088707 evJPzjgv-2s,1985.0,2,9,2017,American Flyers,Treadmill Torture Scene,tt0088707 Hp93d2bsfQc,1985.0,9,9,2017,After Hours,Art Is Forever Scene,tt0088680 A-rs-kWL5-s,1985.0,7,9,2017,After Hours,Just Let Me In Scene,tt0088680 MsKaN_QrVT8,1985.0,8,9,2017,After Hours,Phone Call Scene,tt0088680 ZPMDA9N1itk,1985.0,6,9,2017,After Hours,Did You Miss Me? Scene,tt0088680 djTKMhvuXGM,1985.0,5,9,2017,After Hours,Dead Person Scene,tt0088680 6iGsAYTmnLg,1985.0,4,9,2017,After Hours,Where Are the Paperweights? Scene,tt0088680 zt4ek_5zQgY,1985.0,2,9,2017,After Hours,You Have a Great Body Scene,tt0088680 -iK4M_EFvjc,1985.0,3,9,2017,After Hours,Surrender Dorothy Scene,tt0088680 yEKOx9OHEz8,1985.0,1,9,2017,After Hours,Stuck Doing This Scene,tt0088680 ktt64clTkj4,2002.0,8,12,2017,24 Hour Party People,Miss U.K. Scene,tt0274309 YH_vICd0WQ0,2002.0,2,12,2017,24 Hour Party People,Two Tonys Scene,tt0274309 fwkzz6A_Qv4,2002.0,10,12,2017,24 Hour Party People,Tony Doesn't Sell Out Scene,tt0274309 3a6TxHEyLdo,2002.0,9,12,2017,24 Hour Party People,30 Grand Table Scene,tt0274309 UoMiVPjDb10,2002.0,1,12,2017,24 Hour Party People,Hang Gliding Scene,tt0274309 _B6AZdgQbeU,2002.0,12,12,2017,24 Hour Party People,Tony Sees God Scene,tt0274309 SK4l-e7UvRs,2002.0,11,12,2017,24 Hour Party People,Take It All Scene,tt0274309 dfrJhivMJJY,2002.0,6,12,2017,24 Hour Party People,The Hacienda Scene,tt0274309 SYffGozxMbU,2002.0,5,12,2017,24 Hour Party People,Poisoning Pigeons Scene,tt0274309 NQgAVrZRz3o,2002.0,4,12,2017,24 Hour Party People,Please Don't Leave Me Scene,tt0274309 90j6V8EjSuI,2002.0,3,12,2017,24 Hour Party People,Faster But Slower Scene,tt0274309 ghZ6ntXQp3E,2002.0,7,12,2017,24 Hour Party People,Last Refuge of the Untalented Scene,tt0274309 mbBhikLj86Y,1991.0,11,12,2017,Delirious,Do You Hear Bells? Scene,tt0101701 GusR6qF81kc,1991.0,12,12,2017,Delirious,I'm the Lox Scene,tt0101701 vD6FkjOtIIs,1991.0,9,12,2017,Delirious,Robert Wagner! Scene,tt0101701 _x3KSXMXzwM,1991.0,10,12,2017,Delirious,Don't Write Drunk Scene,tt0101701 XKNZy6gahyc,1991.0,8,12,2017,Delirious,A Game Called Trust Scene,tt0101701 pfOJfhbqJhY,1991.0,6,12,2017,Delirious,Horseback Riding Scene,tt0101701 VPXd9ANX3Bw,1991.0,7,12,2017,Delirious,I Am Jack Gates Scene,tt0101701 E8x4G2WceJA,1991.0,5,12,2017,Delirious,I Created This Whole Town Scene,tt0101701 _g-f7cZGqJ0,1991.0,1,12,2017,Delirious,The Cable Guy Scene,tt0101701 VXx_DVHO0go,1991.0,2,12,2017,Delirious,"Nervous, Huh? Scene",tt0101701 ARgghWSmq7Q,1991.0,4,12,2017,Delirious,Jack's Personal Hell Scene,tt0101701 nKuJ6UvlGek,1991.0,3,12,2017,Delirious,Beyond Our Dreams Scene,tt0101701 7AB4ab4LtFo,1990.0,10,10,2017,Night of the Living Dead,"They Are Us, We Are Them Scene",tt0100258 o5CBItcNkFs,1990.0,3,10,2017,Night of the Living Dead,Zombies At the Doorstep Scene,tt0100258 hH1TgDvC7sY,1990.0,8,10,2017,Night of the Living Dead,Shoot Your Daughter Scene,tt0100258 bLX_zt_MhW0,1990.0,9,10,2017,Night of the Living Dead,They Got That Right Scene,tt0100258 ETxIJN_avuM,1990.0,6,10,2017,Night of the Living Dead,Getting to the Gas Pumps Scene,tt0100258 aPUaHUwJJk8,1990.0,7,10,2017,Night of the Living Dead,A Daughter's Hunger Scene,tt0100258 QvdszN3x7M4,1990.0,2,10,2017,Night of the Living Dead,Undead Visitors Scene,tt0100258 NZ2qhFm6LO8,1990.0,1,10,2017,Night of the Living Dead,They're Coming to Get You Scene,tt0100258 MrhV0mA-bWg,1990.0,4,10,2017,Night of the Living Dead,Is He Dead? Scene,tt0100258 z1RLdJwkFZA,1990.0,5,10,2017,Night of the Living Dead,We Can Get Away Scene,tt0100258 -uPSVWxV6d8,2010.0,7,10,2017,Easy A,Can We Be Friends? Scene,tt1282140 VBLIuICtHuo,2010.0,9,10,2017,Easy A,Knock On Wood Scene,tt1282140 KKD0B8uROMI,2010.0,10,10,2017,Easy A,The End of the Webcast Scene,tt1282140 32I5RODje3o,2010.0,8,10,2017,Easy A,I'm a Mess Scene,tt1282140 EXwr6U_YypE,2010.0,6,10,2017,Easy A,100 Bucks for Second Base Scene,tt1282140 h9GHe5K0kOI,2010.0,5,10,2017,Easy A,Go Down Moses Scene,tt1282140 ylvh800i85I,2010.0,1,10,2017,Easy A,A Pocketful of Sunshine Scene,tt1282140 wJZP20y0R2Q,2010.0,4,10,2017,Easy A,Bad Reputation Scene,tt1282140 XFKhIBH23-Q,2010.0,2,10,2017,Easy A,Imaginary Sex Scene,tt1282140 S04wIhoGYQY,2010.0,3,10,2017,Easy A,Faking It Scene,tt1282140 R0HGeVmyI5I,2008.0,10,10,2017,The House Bunny,Be a Zeta Scene,tt0852713 io-hA6pxffU,2008.0,4,10,2017,The House Bunny,Sexy Car Wash Scene,tt0852713 jEKFfdQEbcg,2008.0,7,10,2017,The House Bunny,Hot Manhole Scene,tt0852713 vBLcmGPbryg,2008.0,6,10,2017,The House Bunny,Aztec Night Scene,tt0852713 QUI-9FAwA8w,2008.0,9,10,2017,The House Bunny,Your Girlfriend Scene,tt0852713 OJyRbpjlrmA,2008.0,8,10,2017,The House Bunny,Second Date Scene,tt0852713 61cBscxr69E,2008.0,5,10,2017,The House Bunny,Makeover Scene,tt0852713 wySz6ysIDhs,2008.0,3,10,2017,The House Bunny,Exorcist Introductions Scene,tt0852713 sL6gDhH7FpE,2008.0,2,10,2017,The House Bunny,T and A Scene,tt0852713 YgnhijYmavY,2008.0,1,10,2017,The House Bunny,Blow on This Scene,tt0852713 Vb6cuUI7B3E,2010.0,3,10,2017,Eat Pray Love,Ruin is a Gift Scene,tt0879870 jsyzJJFZzsg,2010.0,10,10,2017,Eat Pray Love,I Decided on My Word Scene,tt0879870 MGGGksL1ziM,2010.0,9,10,2017,Eat Pray Love,Do You Love Me? Scene,tt0879870 GbCytLu1-3k,2010.0,2,10,2017,Eat Pray Love,Through with the Guilt Scene,tt0879870 uA1Kloz4Ics,2010.0,7,10,2017,Eat Pray Love,You Need a Champion Scene,tt0879870 fJV0KtMZ7x8,2010.0,5,10,2017,Eat Pray Love,Wayan the Healer Scene,tt0879870 mxz_RfabdUo,2010.0,6,10,2017,Eat Pray Love,Tour Guide Scene,tt0879870 kRuKg_khl8Q,2010.0,8,10,2017,Eat Pray Love,It's Time Scene,tt0879870 8Ojsvc_KsDY,2010.0,4,10,2017,Eat Pray Love,So Miss Him Scene,tt0879870 bvITByUy5fA,2010.0,1,10,2017,Eat Pray Love,I Have No Pulse Scene,tt0879870 F8Y0hCMWyFg,2009.0,1,10,2017,Paul Blart: Mall Cop,Obstacle Course Fail Scene,tt1114740 EpcWBu5f2uY,2009.0,8,10,2017,Paul Blart: Mall Cop,Impossible to Underestimate Scene,tt1114740 MeyU68qSBMI,2009.0,5,10,2017,Paul Blart: Mall Cop,Tanning Bed Trap Scene,tt1114740 BvcBo3De8Hc,2009.0,10,10,2017,Paul Blart: Mall Cop,Your Flight's Been Cancelled Scene,tt1114740 Yb4Lrplxq_A,2009.0,9,10,2017,Paul Blart: Mall Cop,Minivan Jump Scene,tt1114740 7EcK-LuhzAA,2009.0,2,10,2017,Paul Blart: Mall Cop,Getting Wasted Scene,tt1114740 JjbIo_301ZA,2009.0,7,10,2017,Paul Blart: Mall Cop,Rainforest Attack Scene,tt1114740 CfaPUQMa1gc,2009.0,3,10,2017,Paul Blart: Mall Cop,Air Vent Attack Scene,tt1114740 ptAdtShJa_0,2009.0,4,10,2017,Paul Blart: Mall Cop,A Guy on the Inside Scene,tt1114740 gmSeaKdO9IQ,2009.0,6,10,2017,Paul Blart: Mall Cop,The Corner of Ne and Ver Scene,tt1114740 Ey-zuaZV8pM,1996.0,1,10,2017,Matilda,They Named Her Scene,tt0117008 mwMmZ8dtWNM,1996.0,10,10,2017,Matilda,A Loving Family Scene,tt0117008 fqnhqkXclUk,1996.0,9,10,2017,Matilda,And the Trunchbull Was Gone Scene,tt0117008 rDTZ6A5zsYc,1996.0,7,10,2017,Matilda,Little Bitty Pretty One Scene,tt0117008 q289a8P8Ht8,1996.0,6,10,2017,Matilda,Escape from Trunchbull Scene,tt0117008 alE17GLFoQE,1996.0,8,10,2017,Matilda,"I Will Get You, Agatha Scene",tt0117008 ntirWguFrfM,1996.0,3,10,2017,Matilda,Pigtail Hammer Throw Scene,tt0117008 EOQeU_6vbeg,1996.0,4,10,2017,Matilda,Bruce vs. Chocolate Cake Scene,tt0117008 WoN5cCs0l2M,1996.0,2,10,2017,Matilda,"I'm Smart, You're Dumb Scene",tt0117008 IeCZqVq7_pY,1996.0,5,10,2017,Matilda,It's a Newt Scene,tt0117008 sfWe6CUZUtc,1990.0,12,12,2017,Cadillac Man,Calling Mom Scene,tt0099204 oyqIjdFcJVg,1990.0,9,12,2017,Cadillac Man,I Shot a Cop! Scene,tt0099204 j2ZsEQ4Fr4c,1990.0,11,12,2017,Cadillac Man,Joey's a Busy Boy Scene,tt0099204 ri8WqeTAUDE,1990.0,10,12,2017,Cadillac Man,Love Sucks Scene,tt0099204 MnLvPe6VSTM,1990.0,8,12,2017,Cadillac Man,His Name Is Chuck Scene,tt0099204 sdvrA5qnZo4,1990.0,5,12,2017,Cadillac Man,Open Season on Everyone's Wife Scene,tt0099204 VVlECM2KyYg,1990.0,2,12,2017,Cadillac Man,Wheeling and Dealing Scene,tt0099204 yfg9cb_9NWQ,1990.0,7,12,2017,Cadillac Man,Joey Calls a Time-Out Scene,tt0099204 XLAGTl0Nnws,1990.0,6,12,2017,Cadillac Man,Larry Releases the Ladies Scene,tt0099204 4ri_ybNiTPU,1990.0,3,12,2017,Cadillac Man,Has She Run Well for You? Scene,tt0099204 8gvuU-U64d0,1990.0,1,12,2017,Cadillac Man,Sale at a Funeral Scene,tt0099204 VQjjlqVjiII,1990.0,4,12,2017,Cadillac Man,Larry Shoots Up the Dealership Scene,tt0099204 z_a4zak_zk0,1990.0,10,12,2017,Mermaids,You Kissed Him! Scene,tt0097757 27moTiftkCc,1990.0,1,12,2017,Mermaids,You Drive Like Old People Scene,tt0097757 DTdDzcr-7UM,1990.0,9,12,2017,Mermaids,Pregnancy Scare Scene,tt0097757 blQ8Wi0VAn0,1990.0,8,12,2017,Mermaids,Running Away Scene,tt0097757 7OIn2KFDWjM,1990.0,12,12,2017,Mermaids,Dancing in the Kitchen Scene,tt0097757 tV7wQ19UBqg,1990.0,11,12,2017,Mermaids,Can't We Just Stay? Scene,tt0097757 kpYZ4G1AQ0c,1990.0,6,12,2017,Mermaids,Charlotte Babbles Scene,tt0097757 rGAjkzbV8zw,1990.0,3,12,2017,Mermaids,Shoe Shopping Scene,tt0097757 _sZ4U5aOee0,1990.0,7,12,2017,Mermaids,Charlotte and Joe Kiss Scene,tt0097757 kswPGoPPdwE,1990.0,4,12,2017,Mermaids,Bus Ride Home Scene,tt0097757 3XZ9vtsDiuM,1990.0,2,12,2017,Mermaids,Dear God Scene,tt0097757 FSlLXYohrJg,1990.0,5,12,2017,Mermaids,He's Late Scene,tt0097757 Vnp8CkPERus,2006.0,5,10,2017,Poseidon,A Way Across,tt0409182 Fk69RQS7D8Y,2006.0,10,10,2017,Poseidon,Destroying the Propeller,tt0409182 qcYPASs4jMQ,2006.0,9,10,2017,Poseidon,A Hero's Sacrifice,tt0409182 njnCT6sD1Bk,2006.0,3,10,2017,Poseidon,Some Good Pushin',tt0409182 i3VNgECX8Ko,2006.0,7,10,2017,Poseidon,Under Pressure,tt0409182 2HMLj2siVxY,2006.0,8,10,2017,Poseidon,Losing Elena,tt0409182 oZ28XpWmN00,2006.0,6,10,2017,Poseidon,Flooding Vents,tt0409182 9VsHtn_RSHY,2006.0,1,10,2017,Poseidon,Capsized,tt0409182 -TqNDG7L__A,2006.0,4,10,2017,Poseidon,Lucky Larry,tt0409182 b74611maYgQ,2006.0,2,10,2017,Poseidon,Shake Him Off!,tt0409182 kndeWhsNlJs,1985.0,10,10,2017,Fright Night,Goodbye Neighbor Scene,tt0089175 VNLN5xyxwAY,1985.0,7,10,2017,Fright Night,The Death of Evil Ed Scene,tt0089175 PvoBUI7uz-w,1985.0,9,10,2017,Fright Night,Dawn Arrives Scene,tt0089175 CxrQd6Sn5PA,1985.0,8,10,2017,Fright Night,Billy's Gruesome Demise Scene,tt0089175 vfc3TGvcjEY,1985.0,5,10,2017,Fright Night,Vampire Dance Trance Scene,tt0089175 MBqT-UEySlI,1985.0,4,10,2017,Fright Night,You Don't Have to Be Afraid of Me Scene,tt0089175 68igl3sbzFI,1985.0,6,10,2017,Fright Night,A Girl's First Bite Scene,tt0089175 dshJG5PEOqY,1985.0,3,10,2017,Fright Night,Holy Water Test Scene,tt0089175 w98xbfLGWro,1985.0,2,10,2017,Fright Night,You Can't Murder a Vampire Scene,tt0089175 gnWkYf8Peo8,1985.0,1,10,2017,Fright Night,Uninvited Guest Scene,tt0089175 UnllAPMRnKE,2016.0,3,10,2017,Money Monster,I Can Make You Whole Scene,tt2241351 pUmu0VJuwOA,2016.0,1,10,2017,Money Monster,Intruder in the Studio Scene,tt2241351 OpwYfz6uFaQ,2016.0,4,10,2017,Money Monster,Staying Above Water Scene,tt2241351 _pzN5x6Pepw,2016.0,9,10,2017,Money Monster,It Was Wrong Scene,tt2241351 L06qVvXrJus,2016.0,10,10,2017,Money Monster,Friday Night Dinner Scene,tt2241351 IVRy-Jac660,2016.0,7,10,2017,Money Monster,They're Shooting At Me! Scene,tt2241351 Bf6I7N-DC7g,2016.0,2,10,2017,Money Monster,You Said It Was Safe Scene,tt2241351 kt1aHAlXi4g,2016.0,8,10,2017,Money Monster,What Am I Gonna Do? Scene,tt2241351 EjAwbjng__4,2016.0,5,10,2017,Money Monster,You're Not a Man Scene,tt2241351 58DPO_8Bd88,2016.0,6,10,2017,Money Monster,Human Fingerprints Scene,tt2241351 F58XJgGx3DY,1999.0,5,10,2017,"Girl, Interrupted",Downtown Scene,tt0172493 6VhCGQODB5U,1999.0,9,10,2017,"Girl, Interrupted",Playing the Villain Scene,tt0172493 DTexn9N2HMI,1999.0,10,10,2017,"Girl, Interrupted",You're Already Dead Scene,tt0172493 Tq9zhCo-PTQ,1999.0,8,10,2017,"Girl, Interrupted",The End of the World Scene,tt0172493 pvNA2JkMfSI,1999.0,6,10,2017,"Girl, Interrupted",Ambivalent Scene,tt0172493 GdrUYcOTUvY,1999.0,7,10,2017,"Girl, Interrupted",My Father Loves Me Scene,tt0172493 WnAVeKAUxPY,1999.0,2,10,2017,"Girl, Interrupted",Drugs and Chicken Scene,tt0172493 S3Po0Tld8Po,1999.0,4,10,2017,"Girl, Interrupted",Ice Cream and Crazy People Scene,tt0172493 Gnpxe9kO_V8,1999.0,1,10,2017,"Girl, Interrupted",Where's Jamie? Scene,tt0172493 GEAh4nF90iw,1999.0,3,10,2017,"Girl, Interrupted",Borderline Scene,tt0172493 DubYVqV92OQ,1995.0,5,11,2017,Dead Man Walking,I Ain't No Victim Scene,tt0112818 _9qsxe5kHdo,1995.0,4,11,2017,Dead Man Walking,Say Your Goodbyes Scene,tt0112818 pz6wAzZlnhE,1995.0,9,11,2017,Dead Man Walking,Last Words Scene,tt0112818 UQmQ7d-wXQE,1995.0,11,11,2017,Dead Man Walking,Final Breath Scene,tt0112818 tG2qsoC_-hs,1995.0,3,11,2017,Dead Man Walking,You Brought the Enemy Into This House Scene,tt0112818 ryqyAX_lA7w,1995.0,10,11,2017,Dead Man Walking,Lethal Injection Scene,tt0112818 qaAz6YklimY,1995.0,2,11,2017,Dead Man Walking,Keep Your Speed Down Scene,tt0112818 qAfsU2gI408,1995.0,1,11,2017,Dead Man Walking,Entering the Prison Scene,tt0112818 vUbnqySPN8E,1995.0,8,11,2017,Dead Man Walking,A Face of Love Scene,tt0112818 exCuIisMWl0,1995.0,7,11,2017,Dead Man Walking,Time Is Running Out Scene,tt0112818 6wyRTKGY2Tw,1995.0,6,11,2017,Dead Man Walking,Matthew's Confession Scene,tt0112818 DC2QaWmat7A,2002.0,11,11,2017,Bowling for Columbine,Charlton Heston Walks Out Scene,tt0310793 rczP7CJB4Hs,2002.0,10,11,2017,Bowling for Columbine,Charlton Heston on Guns Scene,tt0310793 oeQ4HWhPEdA,2002.0,7,11,2017,Bowling for Columbine,Marilyn Manson Talks About Fear Scene,tt0310793 vJZe9sHz10M,2002.0,9,11,2017,Bowling for Columbine,K-Mart's Statement Scene,tt0310793 jY2PzzjO3zo,2002.0,1,11,2017,Bowling for Columbine,"Open a Bank Account, Get a Free Gun Scene",tt0310793 0C4yBk6syOE,2002.0,5,11,2017,Bowling for Columbine,A Gun Under His Pillow Scene,tt0310793 yEyQgxLmGmI,2002.0,4,11,2017,Bowling for Columbine,Tyrannical Governments Scene,tt0310793 djr5QNJG73k,2002.0,2,11,2017,Bowling for Columbine,Dog Shoots Man Scene,tt0310793 b4vpGhO2LwA,2002.0,3,11,2017,Bowling for Columbine,Militia Babes Scene,tt0310793 58BDrZH7SX8,2002.0,8,11,2017,Bowling for Columbine,A Brief History of the United States Scene,tt0310793 0_-45EGFtA4,2002.0,6,11,2017,Bowling for Columbine,Matt Stone on High School Scene,tt0310793 NkmUIQL4spM,1932.0,1,9,2017,Freaks,Children in the Woods Scene,tt0022913 hqqlSTB5CfU,1932.0,9,9,2017,Freaks,It Wasn't Your Fault Scene,tt0022913 CrlVTZFPnzA,1932.0,8,9,2017,Freaks,The Code of the Scene,tt0022913 knJ438gN25k,1932.0,7,9,2017,Freaks,The Little Black Bottle Scene,tt0022913 39Bnk6VU53Y,1932.0,6,9,2017,Freaks,One of Us! Scene,tt0022913 SF5EacV4NI0,1932.0,5,9,2017,Freaks,The Wedding Reception Scene,tt0022913 NTswp_20tsA,1932.0,4,9,2017,Freaks,The Living Torso and Schlitze Scene,tt0022913 -DXU2ZHuiTs,1932.0,3,9,2017,Freaks,Daisy and Violet Scene,tt0022913 RUUhcK3Pt14,1932.0,2,9,2017,Freaks,Josephine Joseph Scene,tt0022913 yEeyJzItKAg,2013.0,9,10,2017,Captain Phillips,Two in the Water Scene,tt1535109 ng95gpwSjZU,2013.0,10,10,2017,Captain Phillips,You're Safe Now Scene,tt1535109 9z8uqVHf39M,2013.0,6,10,2017,Captain Phillips,Kidnapped Captain Scene,tt1535109 bPiv1wP8q7g,2013.0,7,10,2017,Captain Phillips,Too Much Talk Scene,tt1535109 KgmFWHZXmiY,2013.0,8,10,2017,Captain Phillips,Not Here to Negotiate Scene,tt1535109 XM3MRt89zy4,2013.0,5,10,2017,Captain Phillips,We Have Your Captain Scene,tt1535109 j21idqW08wU,2013.0,3,10,2017,Captain Phillips,Pirates On Board Scene,tt1535109 kSmAfIP9CoQ,2013.0,2,10,2017,Captain Phillips,Hit the Hoses Scene,tt1535109 tf_RRItKJm0,2013.0,1,10,2017,Captain Phillips,Radio Ruse Scene,tt1535109 KHsn2smp4N4,2013.0,4,10,2017,Captain Phillips,I'm the Captain Now Scene,tt1535109 XuGD4tGeLFc,2015.0,4,10,2017,The Gift,Listen to Me! Scene,tt4178092 mmCjPdu2TC4,2015.0,1,10,2017,The Gift,Stop Playing Games Scene,tt4178092 8gfk5E2iwdU,2015.0,2,10,2017,The Gift,The Wrong House Scene,tt4178092 R4ZGoNehEp4,2015.0,3,10,2017,The Gift,Robyn's Accident Scene,tt4178092 WzUMVMrEGnE,2015.0,6,10,2017,The Gift,Accept My Apology Scene,tt4178092 EtKt8Q32_Rk,2015.0,5,10,2017,The Gift,It Was All a Lie Scene,tt4178092 3vjTjf7m3Bs,2015.0,8,10,2017,The Gift,Fired and Divorced Scene,tt4178092 FnT4pAV1Cg4,2015.0,10,10,2017,The Gift,It's All in the Eyes Scene,tt4178092 5T4sIC7SB_4,2015.0,9,10,2017,The Gift,The Final Gift Scene,tt4178092 TmnPP66kwwg,2015.0,7,10,2017,The Gift,I Know It Was You Scene,tt4178092 Htp6crkePuw,2014.0,2,10,2017,Blackhat,Raiding Kassar's Hideout Scene,tt2717822 b3lOpSXhT0c,2014.0,1,10,2017,Blackhat,Piss Off and Die Scene,tt2717822 7HWfwLBqSQ4,2014.0,4,10,2017,Blackhat,Hacking the NSA Scene,tt2717822 qB311wvyggM,2014.0,9,10,2017,Blackhat,Killing Kassar Scene,tt2717822 lCqHKRjIMu8,2014.0,10,10,2017,Blackhat,It's Not About Zeroes or Ones Scene,tt2717822 tru0WMH7yic,2014.0,3,10,2017,Blackhat,Move Fast Scene,tt2717822 ngRthItc3Yc,2014.0,6,10,2017,Blackhat,Escaping the Ambush Scene,tt2717822 gPAI19a84KU,2014.0,5,10,2017,Blackhat,Don't Blame Your Brother Scene,tt2717822 Lr04AEabtnY,2014.0,7,10,2017,Blackhat,Truck Through the Roof Scene,tt2717822 fPEGcx4MFHI,2014.0,8,10,2017,Blackhat,You're Having a Bad Day Scene,tt2717822 JcRuXU7cvmo,1999.0,9,9,2017,The Thomas Crown Affair,Reunited Scene,tt0155267 C3rDWENRI7c,1999.0,7,9,2017,The Thomas Crown Affair,Bowler Hat Guy Scene,tt0155267 MODlCaeiT0M,1999.0,8,9,2017,The Thomas Crown Affair,Chasing Thomas Scene,tt0155267 yCrq5v5cg1A,1999.0,5,9,2017,The Thomas Crown Affair,Do You Wanna Dance? Scene,tt0155267 2zSE8r8jU_U,1999.0,6,9,2017,The Thomas Crown Affair,Burning Renoir Scene,tt0155267 gp8OWUqg4r4,1999.0,2,9,2017,The Thomas Crown Affair,I'm Catherine Banning Scene,tt0155267 ecmDPqCP8ms,1999.0,4,9,2017,The Thomas Crown Affair,You Like the Chase Scene,tt0155267 kJKWjeMtEDM,1999.0,1,9,2017,The Thomas Crown Affair,Master Monet Thief Scene,tt0155267 GUDrinKzSus,1999.0,3,9,2017,The Thomas Crown Affair,Always Gets Her Man Scene,tt0155267 KAE8h2rqA6g,1968.0,11,11,2017,The Thomas Crown Affair,Telegram From Tommy Scene,tt0063688 z21tJkx07J8,1968.0,9,11,2017,The Thomas Crown Affair,Let's Play Something Else Scene,tt0063688 k5bN73OnGmo,1968.0,8,11,2017,The Thomas Crown Affair,The Chess Game Scene,tt0063688 aWIcfkvKj9Q,1968.0,10,11,2017,The Thomas Crown Affair,It's Me and the System Scene,tt0063688 a6XtVMtUZI8,1968.0,7,11,2017,The Thomas Crown Affair,Like Ice Scene,tt0063688 688uSEwvYnQ,1968.0,5,11,2017,The Thomas Crown Affair,He Sounds Just Perfect for You Scene,tt0063688 bzSIHZcXwvQ,1968.0,6,11,2017,The Thomas Crown Affair,"A Funny, Dirty Little Job Scene",tt0063688 6XRJuEv5Ya4,1968.0,4,11,2017,The Thomas Crown Affair,Vicki Arrives Scene,tt0063688 fwkB6wAxNVM,1968.0,2,11,2017,The Thomas Crown Affair,"Crown Says ""Go"" Scene",tt0063688 ut_z2-96X0o,1968.0,1,11,2017,The Thomas Crown Affair,In or Out? Scene,tt0063688 Fw19beLDqn8,1968.0,3,11,2017,The Thomas Crown Affair,Crown Has a Laugh Scene,tt0063688 jHl4T9F9Vjw,1996.0,9,11,2017,The Pillow Book,The Book of the Lover Scene,tt0114134 2oDVJbZxmtk,2014.0,10,10,2017,Pawn Sacrifice,The Greatest Chess Game Ever Played Scene,tt1596345 _aj999HtbtE,2014.0,9,10,2017,Pawn Sacrifice,Spassky Loses Scene,tt1596345 ZqCnbtz5IgI,2014.0,5,10,2017,Pawn Sacrifice,Nothing To Prove Scene,tt1596345 GlVzp0Ldv4k,2014.0,6,10,2017,Pawn Sacrifice,Bobby Falls Apart Scene,tt1596345 tQQ2Cp7xQho,2014.0,8,10,2017,Pawn Sacrifice,I Will Not Win This Way Scene,tt1596345 FBhqtV3pVe4,2014.0,7,10,2017,Pawn Sacrifice,Win By Forfeit Scene,tt1596345 dluHLk1Hm64,2014.0,4,10,2017,Pawn Sacrifice,Are You Spying On Me? Scene,tt1596345 ntVZPACMOYA,2014.0,3,10,2017,Pawn Sacrifice,Bobby's Conditions Scene,tt1596345 PgotX7s-2YY,2014.0,2,10,2017,Pawn Sacrifice,"Bobby Won't Crack, He Will Explode Scene",tt1596345 Ma_h1r7VTME,2014.0,1,10,2017,Pawn Sacrifice,He Hates Draws Scene,tt1596345 -7Qoxub52B0,2015.0,1,10,2017,Woodlawn,Failed Integration Scene,tt4183692 M89zKEGFuME,2015.0,3,10,2017,Woodlawn,A Star Being Born Scene,tt4183692 UUD5-dcDdBw,2015.0,2,10,2017,Woodlawn,On This Day Scene,tt4183692 6VUothtoSeM,2015.0,4,10,2017,Woodlawn,A Hateful Attack Scene,tt4183692 x26Mst06IoY,2015.0,5,10,2017,Woodlawn,More Important Than Winning Scene,tt4183692 ws5scfTVUA0,2015.0,10,10,2017,Woodlawn,Born to Be a Coach Scene,tt4183692 Al3TIVxEPm4,2015.0,9,10,2017,Woodlawn,Touchdown Tony Nathan Scene,tt4183692 H0Bzz3gzvk8,2015.0,6,10,2017,Woodlawn,Because of You Scene,tt4183692 jSStdc_wWV8,2015.0,8,10,2017,Woodlawn,The Power of Prayer Scene,tt4183692 L6ayQbTmoxg,2015.0,7,10,2017,Woodlawn,When God Shows Up Scene,tt4183692 OTjYvVfWORo,1995.0,9,9,2017,The Doom Generation,The Three-Way Scene,tt0112887 TShV3gWFAIY,1995.0,8,9,2017,The Doom Generation,"Long, Slow and Deep Scene",tt0112887 CyetT8hwwtk,1995.0,7,9,2017,The Doom Generation,Tinfoil Bar Fight Scene,tt0112887 Mq3CFDYCWfA,1995.0,5,9,2017,The Doom Generation,I Got Jesus Inside Me Scene,tt0112887 -vNo9qyUHho,1995.0,6,9,2017,The Doom Generation,My One True Love Scene,tt0112887 5oEUU8YjUkg,1995.0,1,9,2017,The Doom Generation,Smothered Gerbil Scene,tt0112887 V0qYlLqMPNI,1995.0,3,9,2017,The Doom Generation,Kwik-E-Kill Scene,tt0112887 x9GGBivRItA,1995.0,2,9,2017,The Doom Generation,"Beam Me Up, Scotty Scene",tt0112887 AMHSm2gTUmA,1995.0,4,9,2017,The Doom Generation,Welcome to Carnoburger Scene,tt0112887 TlxOj02Wodk,1996.0,7,11,2017,The Pillow Book,I Could Be Your Messenger Scene,tt0114134 aENEFwxcrBs,1996.0,11,11,2017,The Pillow Book,The Book of the Dead Scene,tt0114134 2thZKjnQnK4,1996.0,8,11,2017,The Pillow Book,A Jealous Rage Scene,tt0114134 p-0nV3vGvTQ,1996.0,5,11,2017,The Pillow Book,Use My Body Scene,tt0114134 45MzBLAUUpk,1996.0,6,11,2017,The Pillow Book,The Ritual Scene,tt0114134 t_GWHV52Tds,1996.0,10,11,2017,The Pillow Book,Jerome's Funeral Scene,tt0114134 MFUZGrdKqtM,1996.0,4,11,2017,The Pillow Book,I Need Writing Scene,tt0114134 uMWI1q_J3mk,1996.0,3,11,2017,The Pillow Book,Sweet Pain and Bitter Pleasure Scene,tt0114134 foPz4rJfgSQ,1996.0,2,11,2017,The Pillow Book,The Scent of Skin Scene,tt0114134 ATOpJHEjvlI,1996.0,1,11,2017,The Pillow Book,Signing His Own Name Scene,tt0114134 271ymG6B7aw,1973.0,4,10,2017,Day for Night,A Cat That Can't Act Scene,tt0070460 VvSlUEWVleo,2015.0,9,10,2017,Legend,When Love Is Gone Scene,tt3569230 oYQWryzBuhs,2015.0,7,10,2017,Legend,A Genius Idea Scene,tt3569230 R7qVgpQEVBM,2015.0,10,10,2017,Legend,Cause I Can't Kill You Scene,tt3569230 WXUGWaYOnUs,2015.0,5,10,2017,Legend,Ron vs. Reggie Scene,tt3569230 Qy6dBc-9HRQ,2015.0,8,10,2017,Legend,Are You Mad? Scene,tt3569230 84WvFryk-1E,2015.0,6,10,2017,Legend,Twin Tussle Scene,tt3569230 AxUh8zdgPeM,2015.0,4,10,2017,Legend,A Window Proposal Scene,tt3569230 y-gs5U3OMMM,2015.0,2,10,2017,Legend,50/50 It Is Scene,tt3569230 xNwPw7mQnpo,2015.0,3,10,2017,Legend,You're Nothing In Here Scene,tt3569230 j1eQNUaOfZ4,2015.0,1,10,2017,Legend,Bar Beatdown Scene,tt3569230 OYpO9k6l8Bk,2015.0,10,10,2017,Suffragette,Lead On Scene,tt3077214 0KZ6EPv2Gio,2015.0,9,10,2017,Suffragette,We Go On Scene,tt3077214 uov-TD5osLM,2015.0,7,10,2017,Suffragette,Force-Feeding Scene,tt3077214 syM_HVHMynw,2015.0,6,10,2017,Suffragette,We Will Win Scene,tt3077214 9i9S12dwwKM,2015.0,8,10,2017,Suffragette,Emily's Sacrifice Scene,tt3077214 cazTXFYZ9gw,2015.0,5,10,2017,Suffragette,"Will You Find Me, George? Scene",tt3077214 tTlhLBjQdPc,2015.0,4,10,2017,Suffragette,A Battle None of You Can Win Scene,tt3077214 hsK4vleN-fE,2015.0,2,10,2017,Suffragette,No Votes For Women Scene,tt3077214 ecRAEoKp51M,2015.0,1,10,2017,Suffragette,Maud's Testimony Scene,tt3077214 buqRQWuVcw0,2015.0,3,10,2017,Suffragette,The Power Women Have Scene,tt3077214 zKATih1nvVo,2003.0,10,12,2017,The Cooler,"Pain, Pain, Pain Scene",tt0318374 wRN8Q_Lts7k,2003.0,12,12,2017,The Cooler,Drunk Driver Scene,tt0318374 -2KG4lLGEl0,2003.0,1,12,2017,The Cooler,"A Cheap, Fat Whore Scene",tt0318374 RZKKrQ8y_Uw,2003.0,4,12,2017,The Cooler,Luck Be a Lady Scene,tt0318374 djh21tkgGJ4,2003.0,2,12,2017,The Cooler,I Got You Covered in This Town Scene,tt0318374 AoKtg7t1Y0M,2003.0,7,12,2017,The Cooler,I Had a Son Scene,tt0318374 vkXY0EqahbY,2003.0,6,12,2017,The Cooler,Stickler for the Old Ways Scene,tt0318374 W4kci76gyn0,2003.0,3,12,2017,The Cooler,Pride of Lions Scene,tt0318374 uWY60oFlfxs,2003.0,5,12,2017,The Cooler,Family Reunion Scene,tt0318374 s33dP0ETrCo,2003.0,8,12,2017,The Cooler,Shangri-La Scene,tt0318374 5Ii0_2kAYlU,2003.0,9,12,2017,The Cooler,Bernie's Grandson Scene,tt0318374 lzo2hgdDUDw,2003.0,11,12,2017,The Cooler,Big Roller Scene,tt0318374 PW3WxPo74c8,1993.0,9,10,2017,The Saint of Fort Washington,An Untimely Death Scene,tt0108026 QwkW-Rbo3kE,1993.0,6,10,2017,The Saint of Fort Washington,A Place to Stay Scene,tt0108026 Joh9cLv0bp4,1993.0,10,10,2017,The Saint of Fort Washington,An Emotional Goodbye Scene,tt0108026 S1_AkfEVPpI,1993.0,8,10,2017,The Saint of Fort Washington,Back to the Shelter Scene,tt0108026 iJGazi2EdrQ,1993.0,7,10,2017,The Saint of Fort Washington,The Saint of the Homeless Scene,tt0108026 9ZEUnzRzvGg,1993.0,5,10,2017,The Saint of Fort Washington,Schizophrenic Meltdown Scene,tt0108026 S1sbKYDgyWA,1993.0,4,10,2017,The Saint of Fort Washington,"White Eyes, Black Body Scene",tt0108026 NQtL20JoP3Q,1993.0,3,10,2017,The Saint of Fort Washington,We Do Take Gratuities Scene,tt0108026 SuEt5n-k0e8,1993.0,1,10,2017,The Saint of Fort Washington,He's My Son Scene,tt0108026 ezOyoEG6GW8,1993.0,2,10,2017,The Saint of Fort Washington,Hearing Voices Scene,tt0108026 jSnvLrw4YR0,1973.0,9,10,2017,Day for Night,Everyone's Magic Scene,tt0070460 tlI--ATerwo,1973.0,8,10,2017,Day for Night,What a Funny Life We Lead Scene,tt0070460 zFxkzMB3qCE,1973.0,5,10,2017,Day for Night,Actors Are So Vulnerable Scene,tt0070460 p4HqnBtsz1I,1973.0,10,10,2017,Day for Night,Life is Rotten Scene,tt0070460 nBsxbjTIJxs,1973.0,2,10,2017,Day for Night,What is a Director? Scene,tt0070460 Dj9G_kEq5W8,1973.0,6,10,2017,Day for Night,Cinema is King Scene,tt0070460 uFNIrs3jtEQ,1973.0,3,10,2017,Day for Night,The Wrong Door Scene,tt0070460 kYFrx0jdcoY,1973.0,7,10,2017,Day for Night,The Car Stunt Scene,tt0070460 W6KRJEKYY7k,1973.0,1,10,2017,Day for Night,"Filming ""Meet Pamela"" Scene",tt0070460 JFeaWHDQzQA,2010.0,10,10,2017,The Social Network,I'm Not a Bad Guy Scene,tt1285016 y3NLNK72mzI,2010.0,9,10,2017,The Social Network,I Was Your Only Friend Scene,tt1285016 Dwiczhta4e0,2010.0,8,10,2017,The Social Network,Putting Out Fires Scene,tt1285016 TGqOd_3mrr4,2010.0,4,10,2017,The Social Network,We Have Groupies Scene,tt1285016 k5fJmkv02is,2010.0,6,10,2017,The Social Network,A Billion Dollars Scene,tt1285016 6-_tIPShuwQ,2010.0,3,10,2017,The Social Network,Cease and Desist Scene,tt1285016 VlSkPA60ujQ,2010.0,1,10,2017,The Social Network,You're Breaking Up With Me? Scene,tt1285016 rX6oUNKUbI8,2010.0,5,10,2017,The Social Network,Right and Wrong Scene,tt1285016 6KHyMISpE18,2010.0,7,10,2017,The Social Network,"I'm CEO, Bitch Scene",tt1285016 -Koj9hvcBMk,2010.0,2,10,2017,The Social Network,I Deserve Some Recognition Scene,tt1285016 9jL7oaQAPMI,2011.0,3,10,2017,The Girl with the Dragon Tattoo,Shots and Stitches Scene,tt1568346 i2xyQnF1kro,2011.0,2,10,2017,The Girl with the Dragon Tattoo,Help Me Catch a Killer Scene,tt1568346 5enqrVvjxg0,2011.0,6,10,2017,The Girl with the Dragon Tattoo,May I Kill Him? Scene,tt1568346 63Lf9kwyWd4,2011.0,4,10,2017,The Girl with the Dragon Tattoo,I Wanna Show You Something Scene,tt1568346 gTakZ13l8xY,2011.0,5,10,2017,The Girl with the Dragon Tattoo,Satisfying My Urges Scene,tt1568346 vP7uKAQLwXc,2011.0,7,10,2017,The Girl with the Dragon Tattoo,The Crash Scene,tt1568346 YvNjJgJM728,2011.0,8,10,2017,The Girl with the Dragon Tattoo,I Tried to Kill My Father Scene,tt1568346 mCSno4xODKY,2011.0,9,10,2017,The Girl with the Dragon Tattoo,I'd Like to Make a Deposit Scene,tt1568346 DSaBwTpdfkQ,2011.0,10,10,2017,The Girl with the Dragon Tattoo,Unmet Expectations Scene,tt1568346 iddBzE3syI4,2011.0,1,10,2017,The Girl with the Dragon Tattoo,I Just Want My Money Scene,tt1568346 bwoxnQ4eLR4,2015.0,7,10,2017,Dope,The N Word Scene,tt3850214 P2eknXZ8aLk,2015.0,10,10,2017,Dope,Student A or Student B Scene,tt3850214 TktPJgdwMtQ,2015.0,8,10,2017,Dope,Real or Fake? Scene,tt3850214 ytHR10ZesTY,2015.0,6,10,2017,Dope,William the Drug Dealer Scene,tt3850214 w-juhvM7yug,2015.0,4,10,2017,Dope,Criplexia Scene,tt3850214 MnMwbnAWawE,2015.0,5,10,2017,Dope,Nobody Got Time for This! Scene,tt3850214 EHUO2DqnD-o,2015.0,3,10,2017,Dope,Find My iPhone Scene,tt3850214 _4Od7V2mVG8,2015.0,2,10,2017,Dope,Drone Strikes and Gang Fights Scene,tt3850214 rLNN6Kef3Yk,2015.0,1,10,2017,Dope,Malcolm the Geek Scene,tt3850214 8BplQQtTt_A,2015.0,9,10,2017,Dope,Blackmailing Jacoby Scene,tt3850214 7doKgPFilPg,2014.0,2,10,2017,Get on Up,Welcome to America Scene,tt2473602 7DP-JKwZrA0,2014.0,1,10,2017,Get on Up,Settle Down Captain Scene,tt2473602 IfecgEak80I,2014.0,3,10,2017,Get on Up,"It Don't Move, It Don't Move Nobody Scene",tt2473602 pKsa_9TFG48,2014.0,4,10,2017,Get on Up,The Battle Royale Scene,tt2473602 p_wCMFyHeUE,2014.0,6,10,2017,Get on Up,The Night Train Scene,tt2473602 YYo5jJy61T8,2014.0,5,10,2017,Get on Up,James Brown and His Famous Flames Scene,tt2473602 _PSEaTZSZEE,2014.0,7,10,2017,Get on Up,A Brand New Bag Scene,tt2473602 2rSnCcaMDdg,2014.0,8,10,2017,Get on Up,We're Together or We Ain't Scene,tt2473602 4At_9_s2lDY,2014.0,10,10,2017,Get on Up,Soul Power Scene,tt2473602 9OlXAy0L0yI,2014.0,9,10,2017,Get on Up,Papa Don't Take No Mess Scene,tt2473602 5X_ZiFC5RMg,2008.0,7,7,2017,Speed Racer,"Spearhook, He Got Me! Scene",tt0811080 qIs2PMXvAmQ,2008.0,6,7,2017,Speed Racer,Mountain Pass Aggression Scene,tt0811080 YiCzTGRqCQ4,2008.0,5,7,2017,Speed Racer,More Like A Non-ja Scene,tt0811080 O-QaGllHqN0,2008.0,1,7,2017,Speed Racer,Following in His Brother's Footsteps Scene,tt0811080 gC672314kEU,2008.0,2,7,2017,Speed Racer,Trixie Meets Speed Scene,tt0811080 YYsdcBacV2U,2008.0,3,7,2017,Speed Racer,Racing a Legacy Scene,tt0811080 gZ-QU3KT1PE,2008.0,4,7,2017,Speed Racer,Racer X Rescue Scene,tt0811080 sR0wCC271s4,2001.0,1,10,2017,The Man Who Wasn't There,I Just Cut the Hair Scene,tt0243133 GC9MkHzTnRg,2001.0,3,10,2017,The Man Who Wasn't There,The Murder Scene,tt0243133 Zti44ptZTrc,2001.0,2,10,2017,The Man Who Wasn't There,A Blackmail Note Scene,tt0243133 KsimmeikE7w,2001.0,4,10,2017,The Man Who Wasn't There,Freddy Reidenschneider Scene,tt0243133 BjsuTimPBAM,2001.0,5,10,2017,The Man Who Wasn't There,It Stinks Scene,tt0243133 gM8trQSURdg,2001.0,8,10,2017,The Man Who Wasn't There,A Diamond in the Rough Scene,tt0243133 f2Hz2k2PcfI,2001.0,6,10,2017,The Man Who Wasn't There,Reasonable Doubt Scene,tt0243133 XtduKM28ohU,2001.0,9,10,2017,The Man Who Wasn't There,An Enthusiast Scene,tt0243133 ZLjp7ahdbWc,2001.0,10,10,2017,The Man Who Wasn't There,The End Scene,tt0243133 hOB4Qm1IiOY,2001.0,7,10,2017,The Man Who Wasn't There,The Ghost Scene,tt0243133 xPwAEt1Ajmk,1997.0,10,11,2017,Eve's Bayou,I Will Kill You Scene,tt0119080 IN0Nrftr8a0,1997.0,11,11,2017,Eve's Bayou,A Letter from Louis Scene,tt0119080 XzUFmbuyrCc,1997.0,9,11,2017,Eve's Bayou,I Want Him Dead! Scene,tt0119080 DYt__vjvf9s,1997.0,6,11,2017,Eve's Bayou,You Little Ingrate Scene,tt0119080 B0vxLqX3oAQ,1997.0,7,11,2017,Eve's Bayou,"Mozelle, Hosea and Maynard Scene",tt0119080 10f-q34JJZs,1997.0,8,11,2017,Eve's Bayou,Life Is Filled With Goodbyes Scene,tt0119080 WUVa_vf09dg,1997.0,3,11,2017,Eve's Bayou,Blind to My Own Life Scene,tt0119080 kIPK3l5gd9g,1997.0,5,11,2017,Eve's Bayou,The Black Widow Scene,tt0119080 O60YQRhi0s0,1997.0,1,11,2017,Eve's Bayou,Caught in the Act Scene,tt0119080 6LBW-X4DnSU,1997.0,4,11,2017,Eve's Bayou,Something for the Pain Scene,tt0119080 DbUDOZoHYkU,1997.0,2,11,2017,Eve's Bayou,How Come You Never Dance With Me? Scene,tt0119080 MF_RlYTOmco,1969.0,6,10,2017,Topaz,Exposed Scene,tt0065112 Nz4zu_fSHYY,1969.0,1,10,2017,Topaz,The Red Case Scene,tt0065112 5SkzHjQrCXk,1969.0,2,10,2017,Topaz,A Woman in Cuba Scene,tt0065112 tS36ZnWoR70,1969.0,4,10,2017,Topaz,I Will Raise Such Hell Scene,tt0065112 HLw1Og_JXK8,1969.0,3,10,2017,Topaz,Presents and Passion Scene,tt0065112 dkAv65bo8a8,1969.0,5,10,2017,Topaz,The Purple Dress Scene,tt0065112 FQoR9fu-CIE,1969.0,8,10,2017,Topaz,This Cannot Be Escaped Scene,tt0065112 jVu_cuFHZnc,1969.0,7,10,2017,Topaz,A Ring of Spies Scene,tt0065112 7A6HQOrRDiw,1969.0,10,10,2017,Topaz,Portrait of a Dead Traitor Scene,tt0065112 8yACSHANED0,1969.0,9,10,2017,Topaz,Death Discovered Scene,tt0065112 ACcJF4BpXXU,1990.0,11,11,2017,Rosencrantz & Guildenstern Are Dead,That's It Then Scene,tt0100519 tdADTzvJtSY,1990.0,6,11,2017,Rosencrantz & Guildenstern Are Dead,Life in a Box Scene,tt0100519 zJ3hgBFfQy0,1990.0,7,11,2017,Rosencrantz & Guildenstern Are Dead,An Intuition of Mortality Scene,tt0100519 C_TfdNAXOwE,1990.0,1,11,2017,Rosencrantz & Guildenstern Are Dead,Heads Scene,tt0100519 g3FFfmWvyAk,1990.0,3,11,2017,Rosencrantz & Guildenstern Are Dead,Delve! Scene,tt0100519 exFv7Srgwpk,1990.0,10,11,2017,Rosencrantz & Guildenstern Are Dead,The Player Fakes His Death Scene,tt0100519 fxVsGcxK1nc,1990.0,9,11,2017,Rosencrantz & Guildenstern Are Dead,Pirates Attack the Ship Scene,tt0100519 7wniAznxp08,1990.0,8,11,2017,Rosencrantz & Guildenstern Are Dead,You Call That an Ending? Scene,tt0100519 BLgX2oB_qn4,1990.0,5,11,2017,Rosencrantz & Guildenstern Are Dead,Silent But Deadly Scene,tt0100519 pf0erXl4pwQ,1990.0,4,11,2017,Rosencrantz & Guildenstern Are Dead,At the Mercy of the Elements Scene,tt0100519 u3xIs0aajN4,1990.0,2,11,2017,Rosencrantz & Guildenstern Are Dead,Playing Questions Scene,tt0100519 5lCObNv4T5M,1999.0,1,7,2017,Buena Vista Social Club,Ibrahim and Omara Scene,tt0186508 yTq_QU464Aw,1999.0,2,7,2017,Buena Vista Social Club,Francisco Scene,tt0186508 K8PDbQK7Jro,1999.0,3,7,2017,Buena Vista Social Club,The Pianist Scene,tt0186508 qzjPtczHQkU,1999.0,4,7,2017,Buena Vista Social Club,Barbarito Scene,tt0186508 tdfhiqOFtjk,1999.0,5,7,2017,Buena Vista Social Club,Bringing the Band Together Scene,tt0186508 qodNg2Xr7mA,1999.0,6,7,2017,Buena Vista Social Club,This is the Life Scene,tt0186508 e7uz82t68To,1999.0,7,7,2017,Buena Vista Social Club,Chan Chan Scene,tt0186508 FJZR935H0hw,2000.0,8,9,2017,Dr. T and the Women,Run Away With Me! Scene,tt0205271 LEq4-b61Hoo,2011.0,9,10,2017,Friends with Benefits,Who Needs Friends? Scene,tt1632708 -SkeK7t74oo,2011.0,3,10,2017,Friends with Benefits,Times Square Flash Mob Scene,tt1632708 7fduMinwJZ8,2011.0,1,10,2017,Friends with Benefits,Two Break-Ups Scene,tt1632708 q8nzGlXDvO8,2011.0,8,10,2017,Friends with Benefits,Glad I Met You Scene,tt1632708 kzf7hr9O00k,2011.0,2,10,2017,Friends with Benefits,Welcome to New York Scene,tt1632708 8Pd2fpoD0Xg,2011.0,5,10,2017,Friends with Benefits,Just Sex Scene,tt1632708 Y9b8tw9TR2k,2011.0,10,10,2017,Friends with Benefits,I Want My Best Friend Back Scene,tt1632708 PI6Q87pjO0o,2011.0,4,10,2017,Friends with Benefits,I Wish Life Was a Movie Scene,tt1632708 PX5QjCErMgU,2011.0,6,10,2017,Friends with Benefits,Mommy's Little Slampiece Scene,tt1632708 qqSS99m2dQ0,2011.0,7,10,2017,Friends with Benefits,Seeing Other People Scene,tt1632708 wJeeueogQQ4,2000.0,6,9,2017,Dr. T and the Women,A Nice Massage Scene,tt0205271 LEQ9ISPbfyM,2000.0,7,9,2017,Dr. T and the Women,The Wedding Scene,tt0205271 p9d7IXlAVUo,2000.0,9,9,2017,Dr. T and the Women,Texas Tornado Scene,tt0205271 SRlJ2SMwwYg,2000.0,5,9,2017,Dr. T and the Women,Yeast Infection Scene,tt0205271 Z-DbvvyH6Q4,2000.0,1,9,2017,Dr. T and the Women,The Hestia Complex Scene,tt0205271 K1ubjdkdmkc,2000.0,4,9,2017,Dr. T and the Women,I Surprised All Three of Us! Scene,tt0205271 JZ5bvcWLEW4,2000.0,2,9,2017,Dr. T and the Women,Bridal Shower Scene,tt0205271 QWPntJVp6cM,2000.0,3,9,2017,Dr. T and the Women,Lady of the Lake Scene,tt0205271 Gae_um_eNZU,1991.0,6,8,2017,Defending Your Life,Suck it Up Scene,tt0101698 wdS1l__SWms,1991.0,8,8,2017,Defending Your Life,Brave Enough Scene,tt0101698 wfq7O3AgXdE,1991.0,5,8,2017,Defending Your Life,How Did You Die? Scene,tt0101698 N8QzCj1RdpU,1991.0,3,8,2017,Defending Your Life,Friendly Sushi Scene,tt0101698 baNc64S4DHY,1999.0,10,10,2017,Things You Can Tell Just by Looking at Her,Carol's Broken Heart Scene,tt0210358 QeWifFsvr8o,1999.0,8,10,2017,Things You Can Tell Just by Looking at Her,When We First Met Scene,tt0210358 kZcr7bw6k_k,1999.0,5,10,2017,Things You Can Tell Just by Looking at Her,New Neighbor Scene,tt0210358 f8-6UgJ6dSo,1999.0,7,10,2017,Things You Can Tell Just by Looking at Her,"Love Rules, Baby Scene",tt0210358 _DtsWj_e2vI,1999.0,9,10,2017,Things You Can Tell Just by Looking at Her,Blind Date Preparation Scene,tt0210358 aL_6-dQCzwg,1999.0,6,10,2017,Things You Can Tell Just by Looking at Her,Neighborhood Welcome Scene,tt0210358 YpDpOphD1zo,1999.0,2,10,2017,Things You Can Tell Just by Looking at Her,Parking Lot Cigarette Scene,tt0210358 NKjZRRw3-Fs,1999.0,4,10,2017,Things You Can Tell Just by Looking at Her,A Snake and a Whore Scene,tt0210358 _5uHK-fVMcY,1999.0,1,10,2017,Things You Can Tell Just by Looking at Her,A Great Pretender Scene,tt0210358 U9t_bzEKBnA,1999.0,3,10,2017,Things You Can Tell Just by Looking at Her,Looking for Trouble Scene,tt0210358 bJ63bxSclsU,1986.0,10,11,2017,Shanghai Surprise,Scene,tt0091934 4_mFP5qAVqM,1986.0,8,11,2017,Shanghai Surprise,Drunk With the Ducks Scene,tt0091934 keTP_H6jqZk,1986.0,11,11,2017,Shanghai Surprise,The Crate Escape Scene,tt0091934 2_ix6kre_tA,1986.0,7,11,2017,Shanghai Surprise,Under Obligation Scene,tt0091934 g0RJFzg31xY,1986.0,9,11,2017,Shanghai Surprise,Someplace Else Scene,tt0091934 5QEWc2zmxGE,1986.0,6,11,2017,Shanghai Surprise,The Whip and the Horse Scene,tt0091934 8wx1XlXs4Ss,1986.0,5,11,2017,Shanghai Surprise,Fish Food Scene,tt0091934 P3YJLGWoPL0,1986.0,1,11,2017,Shanghai Surprise,A Man Can Always Use Luck Scene,tt0091934 xW2pDmzhD4o,1986.0,4,11,2017,Shanghai Surprise,Rickshaw Chase Scene,tt0091934 wbWWF1RwQU4,1986.0,2,11,2017,Shanghai Surprise,The Devil Himself Scene,tt0091934 Vk1Ca1ruQKA,1986.0,3,11,2017,Shanghai Surprise,Sorely Lacking in Moral Fiber Scene,tt0091934 WL4kf1SZAE8,2012.0,8,10,2017,Seeking a Friend for the End of the World,Pulled Over Scene,tt1307068 AtgkgRgn8Y0,2012.0,4,10,2017,Seeking a Friend for the End of the World,Rest of Your Life Scene,tt1307068 xAf9G9cqQbw,2012.0,10,10,2017,Seeking a Friend for the End of the World,To Be With You Scene,tt1307068 f6-8wpMn_8I,2012.0,9,10,2017,Seeking a Friend for the End of the World,I'm Sorry Scene,tt1307068 PMLfJk1X64I,2012.0,7,10,2017,Seeking a Friend for the End of the World,Too Friendly Scene,tt1307068 YFnErcVxB-Q,2012.0,6,10,2017,Seeking a Friend for the End of the World,Friendsy's Scene,tt1307068 1yi8Mc-5kLc,2012.0,5,10,2017,Seeking a Friend for the End of the World,The Hit Man Scene,tt1307068 Ot5G0Nh6EyY,2012.0,3,10,2017,Seeking a Friend for the End of the World,Double Stuffing Scene,tt1307068 EHqjx0MHej0,2012.0,2,10,2017,Seeking a Friend for the End of the World,This is the Titanic Scene,tt1307068 eT4bhNABlYM,2012.0,1,10,2017,Seeking a Friend for the End of the World,Anyone Want to Be CFO? Scene,tt1307068 2kV2EVWNqXQ,1986.0,5,9,2017,Police Academy 3: Back in Training,Tear Gas Training Scene,tt0091777 wI1LRBDvSFs,1986.0,8,9,2017,Police Academy 3: Back in Training,The Blue Oyster Scene,tt0091777 N6jkWHo8D_s,1986.0,6,9,2017,Police Academy 3: Back in Training,I Love America! Scene,tt0091777 srLwGlDe598,1986.0,9,9,2017,Police Academy 3: Back in Training,Identify Your Quarter Scene,tt0091777 --ifbq2xY6I,1986.0,7,9,2017,Police Academy 3: Back in Training,Naked Proctor Scene,tt0091777 1e_9GirqmoI,1986.0,1,9,2017,Police Academy 3: Back in Training,Welcome to Police Academy Scene,tt0091777 qo1cSaFhPiQ,1986.0,4,9,2017,Police Academy 3: Back in Training,Basic Training Scene,tt0091777 cil6HFXlccw,1986.0,2,9,2017,Police Academy 3: Back in Training,Nice Bike! Scene,tt0091777 7g5k1qwVLjw,1986.0,3,9,2017,Police Academy 3: Back in Training,Roommate Problems Scene,tt0091777 REwimg6y1Cg,1985.0,7,9,2017,Police Academy 2,Fight at the Blue Oyster Scene,tt0089822 WqWefwlmFmI,1985.0,3,9,2017,Police Academy 2,Lighting Up the Light Store Scene,tt0089822 kPNy_yGvpKI,1985.0,5,9,2017,Police Academy 2,Shopping Spree Scene,tt0089822 u7IXETT9OEQ,1985.0,4,9,2017,Police Academy 2,If Caring Is a Crime Scene,tt0089822 TUMru_xqvMU,1985.0,9,9,2017,Police Academy 2,Family Roughhousing Scene,tt0089822 WFUAl0Nly7Y,1985.0,2,9,2017,Police Academy 2,That's a Nice Piece Scene,tt0089822 3EIqxstBVCs,1985.0,1,9,2017,Police Academy 2,Loud Lunch Scene,tt0089822 hH0av1iDYVI,1985.0,6,9,2017,Police Academy 2,He Thinks He's Bruce Lee Scene,tt0089822 akSjCFfKAMo,1985.0,8,9,2017,Police Academy 2,Disrobe and Disarm Scene,tt0089822 3i7EvW15Lyk,1991.0,10,10,2017,Mannequin: On the Move,A Princess Rescue Scene,tt0102395 LWvcLI0lcFQ,1991.0,9,10,2017,Mannequin: On the Move,Butch Montrose Scene,tt0102395 OwfT8yTBPYs,1991.0,8,10,2017,Mannequin: On the Move,Department Store Chase Scene,tt0102395 HRJ1g7i0Ob8,1991.0,1,10,2017,Mannequin: On the Move,Hollywood Montrose Scene,tt0102395 _525BmUkPmI,1991.0,5,10,2017,Mannequin: On the Move,Bubble Bath and Breakfast Scene,tt0102395 4JtubCgodCE,1991.0,7,10,2017,Mannequin: On the Move,A Few Good Men Scene,tt0102395 oToIYlwJY9I,1991.0,4,10,2017,Mannequin: On the Move,This Is Dancing Scene,tt0102395 UxjYMYu0F8o,1991.0,6,10,2017,Mannequin: On the Move,Hollywood Montrose Mannequin Scene,tt0102395 q1SFvQhjK5I,1991.0,3,10,2017,Mannequin: On the Move,On a Date Scene,tt0102395 J5K0XKyL3i8,1987.0,2,12,2017,Mannequin,Felix & Rambo Scene,tt0093493 DGQkgqsHQns,1987.0,12,12,2017,Mannequin,Window Wedding Scene,tt0093493 p6HbXVaNFfc,1987.0,4,12,2017,Mannequin,Dancing in The Store Scene,tt0093493 vW7-H-GGYwk,1987.0,9,12,2017,Mannequin,Hollywood Hose Down Scene,tt0093493 qA_zzk2c7G8,1987.0,1,12,2017,Mannequin,You're Fired! Scene,tt0093493 Ug6yhGuDcUQ,1987.0,5,12,2017,Mannequin,Don't Mess With a Scene,tt0093493 z7gYF5LF-ec,1987.0,3,12,2017,Mannequin,Emmy Comes Alive Scene,tt0093493 dIy6QpVNPuo,1987.0,7,12,2017,Mannequin,A Motorcycle and a Scene,tt0093493 TeeNLFHot1Q,1987.0,6,12,2017,Mannequin,"Bye, Roxie Scene",tt0093493 YvT0GTWPw0M,1987.0,8,12,2017,Mannequin,Stealing Emmy Scene,tt0093493 0RM_Ehtb5C4,1987.0,10,12,2017,Mannequin,I'm Alive Scene,tt0093493 ORV1uYzvZzo,1987.0,11,12,2017,Mannequin,B.J. & Co. Get Served Scene,tt0093493 wBM9Aa_HG8g,1991.0,2,10,2017,Mannequin: On the Move,Coming to Life Scene,tt0102395 QQFxcGwtEBY,1989.0,1,11,2017,Little Monsters,Monsters Under My Bed Scene,tt0097758 MQ1YkJX4SJM,1989.0,8,11,2017,Little Monsters,Revenge on Ronnie Scene,tt0097758 wzYPC7FOJtc,1989.0,7,11,2017,Little Monsters,Fun Down Under Scene,tt0097758 dHSjJmNISjs,1989.0,9,11,2017,Little Monsters,A Trial Separation Scene,tt0097758 _5HRlIFjZiw,1989.0,6,11,2017,Little Monsters,First Trip to Monster Land Scene,tt0097758 AbU-6GsTbyE,1989.0,5,11,2017,Little Monsters,Lights Out Scene,tt0097758 raGaJdEHjEI,1989.0,11,11,2017,Little Monsters,Saying Goodbye Scene,tt0097758 IWZLSjyJPsU,1989.0,4,11,2017,Little Monsters,Brian Meets Maurice Scene,tt0097758 75AdYZPT3nE,1989.0,3,11,2017,Little Monsters,A Scary Story Scene,tt0097758 AgCF4dXv2JE,1989.0,2,11,2017,Little Monsters,First Fight at the New School Scene,tt0097758 KVWBllfyysk,1989.0,10,11,2017,Little Monsters,Brother to the Rescue Scene,tt0097758 KrBI7YdIPYk,1982.0,10,10,2017,Swamp Thing,Monster Mash Scene,tt0084745 osE84bZ1jNc,1982.0,6,10,2017,Swamp Thing,"Goodbye Arm, Goodbye Ferret Scene",tt0084745 71Nmq8VOKnY,1982.0,9,10,2017,Swamp Thing,He's Taken the Formula! Scene,tt0084745 1GfDQpfUaHQ,1982.0,7,10,2017,Swamp Thing,Swamp Romance Scene,tt0084745 sISJ7r3kERg,1982.0,8,10,2017,Swamp Thing,Bruno Gets Dosed Scene,tt0084745 bWQ1ekGzhwU,1982.0,5,10,2017,Swamp Thing,Attack on the Scene,tt0084745 q42thgSKkpo,1982.0,3,10,2017,Swamp Thing,Arrives Scene,tt0084745 Cony281khiE,1982.0,4,10,2017,Swamp Thing,Protecting Alice Scene,tt0084745 zLkNUykewic,1982.0,2,10,2017,Swamp Thing,Burned Alive Scene,tt0084745 cio6rIbCs-I,1982.0,1,10,2017,Swamp Thing,My Name Is Arcane Scene,tt0084745 T5cFTmim4Rw,2001.0,10,11,2017,Jeepers Creepers,Stalk and Sniff Scene,tt0263488 VBTrQhEwFqA,2001.0,11,11,2017,Jeepers Creepers,The Creeper Takes Darry Scene,tt0263488 kJnH45GslL0,2001.0,9,11,2017,Jeepers Creepers,Confronting Jezelle Scene,tt0263488 vFD6BbYg0-0,2001.0,8,11,2017,Jeepers Creepers,A Hole in a Cop Scene,tt0263488 BXXY48jjLtw,2001.0,7,11,2017,Jeepers Creepers,Running Over the Creeper Scene,tt0263488 5ZUgU9CsjDc,2001.0,6,11,2017,Jeepers Creepers,The Creeper Shows His Face Scene,tt0263488 P5kDAUzl-T4,2001.0,5,11,2017,Jeepers Creepers,Tongue Eater Scene,tt0263488 nI6agjxMa2s,2001.0,2,11,2017,Jeepers Creepers,Run Off the Road Scene,tt0263488 oWSIUe5wYvc,2001.0,4,11,2017,Jeepers Creepers,Finding the Body Scene,tt0263488 6QYw68kf4sI,2001.0,1,11,2017,Jeepers Creepers,Crazy Truck Driver Scene,tt0263488 AZfCHDSJc8c,2001.0,3,11,2017,Jeepers Creepers,Down the Pipe Scene,tt0263488 6loInvUSYEM,1989.0,2,11,2017,Leviathan,A Skin Sample Scene,tt0097737 5vFi7gu-g-w,1989.0,9,11,2017,Leviathan,We're Still Here! Scene,tt0097737 RPW4sx3UYjU,1989.0,3,11,2017,Leviathan,Skin Exam Scene,tt0097737 3lex4AAgAfs,1989.0,7,11,2017,Leviathan,It's Growing Scene,tt0097737 wa1uJbTy6XE,1989.0,11,11,2017,Leviathan,"Say ""Ahh"" Scene",tt0097737 8IJEqeoPPs8,1989.0,10,11,2017,Leviathan,One Minute to Implosion Scene,tt0097737 NP2fSxIpvis,1989.0,6,11,2017,Leviathan,Everybody's Jumpy Scene,tt0097737 KMI-Sxq9Npg,1989.0,5,11,2017,Leviathan,Don't F*** with Mother Nature Scene,tt0097737 zeSe5X9ALXg,1989.0,8,11,2017,Leviathan,The Monster Escapes Scene,tt0097737 ZP73cUcxidQ,1989.0,4,11,2017,Leviathan,Flushing the Bodies Scene,tt0097737 w9I7PBSMBZw,1989.0,1,11,2017,Leviathan,A New Discovery Scene,tt0097737 jqpkvCebSmU,1999.0,10,10,2017,The Rage: Carrie 2,Epilogue Scene,tt0144814 Jmls6360U9Q,1999.0,1,10,2017,The Rage: Carrie 2,Early Symptoms Scene,tt0144814 E_14d8dHpns,1999.0,7,10,2017,The Rage: Carrie 2,One Killer Party Scene,tt0144814 7SojZ1TuMsk,1999.0,8,10,2017,The Rage: Carrie 2,A Penetrating Vengeance Scene,tt0144814 xTKfpU41hbY,1999.0,9,10,2017,The Rage: Carrie 2,Burning Love Scene,tt0144814 Rt3u4bU6EMU,1999.0,5,10,2017,The Rage: Carrie 2,True or False? Scene,tt0144814 UK0wGi3JHrY,1999.0,4,10,2017,The Rage: Carrie 2,Drop Those Trousers Scene,tt0144814 qWiGcXSaKUc,1999.0,6,10,2017,The Rage: Carrie 2,Twisted Memorial Scene,tt0144814 ATU0Znam5Pw,1999.0,3,10,2017,The Rage: Carrie 2,Counseling Scene,tt0144814 crIlIvBYMoc,1999.0,2,10,2017,The Rage: Carrie 2,Jumper Scene,tt0144814 nm86_ZWeUzk,2013.0,10,10,2017,White House Down,No Jail for You Scene,tt2334879 UF2c01_glHU,2013.0,9,10,2017,White House Down,Millions of People Are Gonna Die Scene,tt2334879 aucs5KRFzhE,2013.0,6,10,2017,White House Down,Helicopter Hunting Scene,tt2334879 c4ibjfBu1IY,2013.0,8,10,2017,White House Down,Air Force One Destroyed Scene,tt2334879 PZBy1m-MmlQ,2013.0,7,10,2017,White House Down,Hand-to-Hand Combat Scene,tt2334879 vqxbLAcIgiw,2013.0,5,10,2017,White House Down,You're Not Going to Shoot the President Scene,tt2334879 WCaRP0aT9CU,2013.0,4,10,2017,White House Down,Presidential Rocket Launcher Scene,tt2334879 bp_GxHYCq90,2013.0,3,10,2017,White House Down,Ground Force One Scene,tt2334879 JV2dQauaWCU,2013.0,2,10,2017,White House Down,Mr. President Pulls the Trigger Scene,tt2334879 _Mr6MQB8vRg,2013.0,1,10,2017,White House Down,Consider This My Resignation Scene,tt2334879 snTvACYp8NA,2012.0,9,10,2017,Safe House,Housekeeping Scene,tt1599348 g9d1TR6Lb9g,2012.0,7,10,2017,Safe House,Bullets Over Shantytown Scene,tt1599348 KyfXb39rGT0,2012.0,10,10,2017,Safe House,We Got Him Scene,tt1599348 XJsuAUwGz0M,2012.0,8,10,2017,Safe House,Who Do You Work For? Scene,tt1599348 Cn_nTq97C7Y,2012.0,6,10,2017,Safe House,I Only Kill Professionals Scene,tt1599348 mr3L2D4yv-0,2012.0,2,10,2017,Safe House,Armed Intruders Scene,tt1599348 mlpkQuvDJbs,2012.0,1,10,2017,Safe House,Mercenaries Everywhere Scene,tt1599348 5asGTRoIqCw,2012.0,5,10,2017,Safe House,Dangerous Passenger Scene,tt1599348 NkhIROsY7Pg,2012.0,4,10,2017,Safe House,Pursued By Killers Scene,tt1599348 qCYYMqHyPKk,2012.0,3,10,2017,Safe House,They Want Me Alive Scene,tt1599348 BQ8vGslccwQ,2015.0,6,10,2017,Self/less,Who Are You? Scene,tt2140379 nwQtd7csTKo,2015.0,3,10,2017,Self/less,How Is It Possible? Scene,tt2140379 LFVi_krq2PM,2015.0,7,10,2017,Self/less,Someone Else's Son Scene,tt2140379 ohZ_J5yHSkc,2015.0,9,10,2017,Self/less,Standing Between You and Oblivion Scene,tt2140379 M4LzhjtD3YQ,2015.0,10,10,2017,Self/less,"Welcome Back, Mark Scene",tt2140379 8gIZMane5sI,2015.0,8,10,2017,Self/less,Damian's Dangerous Distraction Scene,tt2140379 nJIecTXKUrc,2015.0,2,10,2017,Self/less,Adjusting to a New Body Scene,tt2140379 EeQ_0rq-z1M,2015.0,1,10,2017,Self/less,The Transformation Scene,tt2140379 _wAX37x54hk,2015.0,4,10,2017,Self/less,Light Him Up! Scene,tt2140379 _iMsHacXWd4,2015.0,5,10,2017,Self/less,Ask Your Husband Scene,tt2140379 jz6VC23rVTE,2005.0,5,8,2017,V for Vendetta,Different Became Dangerous Scene,tt0434409 Z4RCK8LAFM0,2005.0,1,8,2017,V for Vendetta,"You May Call Me ""V"" Scene",tt0434409 a7KgMV3DXw0,2005.0,8,8,2017,V for Vendetta,We're Both About to Die Scene,tt0434409 0IyuK069I-w,2005.0,2,8,2017,V for Vendetta,V on TV Scene,tt0434409 6qxQ2l1DC6Y,2005.0,6,8,2017,V for Vendetta,Completely Free Scene,tt0434409 _VEDJMixt3c,2005.0,7,8,2017,V for Vendetta,My Gift to You Scene,tt0434409 QO0K8wfZrHc,2005.0,3,8,2017,V for Vendetta,Which One is V? Scene,tt0434409 3wXG_J4cPpg,2005.0,4,8,2017,V for Vendetta,V's Vengeful Visit Scene,tt0434409 swEgflM5Ol4,1995.0,7,10,2017,Sudden Death,A Good Goalie Scene,tt0114576 lQr3va8emXg,1995.0,9,10,2017,Sudden Death,Hero From Above Scene,tt0114576 Ho0k513yN6E,1995.0,8,10,2017,Sudden Death,Last Minute Save Scene,tt0114576 2NNTVLRN-Ms,1995.0,10,10,2017,Sudden Death,Bad Guy On Ice Scene,tt0114576 WksivsiSF_o,1995.0,6,10,2017,Sudden Death,A Toy Flamethrower Scene,tt0114576 qFprLPWDd-Y,1995.0,2,10,2017,Sudden Death,The Penguin Mascot Fight Scene,tt0114576 5M4VIDlRYjQ,1995.0,4,10,2017,Sudden Death,I'll Find the Bombs Myself Scene,tt0114576 oRRupV-lwbU,1995.0,1,10,2017,Sudden Death,The Best Kind of Lunatic Scene,tt0114576 3tvpgXQ4y4Q,1995.0,5,10,2017,Sudden Death,"Bye Bye, Terrorist Scene",tt0114576 Se38Z08pYS0,1995.0,3,10,2017,Sudden Death,Death by Chicken Bone Scene,tt0114576 mdHpbI8Y7Oo,1991.0,4,8,2017,Defending Your Life,Misjudgments Scene,tt0101698 V26hcTgoDLY,1991.0,2,8,2017,Defending Your Life,Dying Onstage Scene,tt0101698 ZsqkTaYITKQ,1991.0,7,8,2017,Defending Your Life,Tired of Being Judged Scene,tt0101698 x1FhrhoudSE,1991.0,1,8,2017,Defending Your Life,Little Brains Scene,tt0101698 sILyPxN_1Dc,2012.0,7,10,2017,Here Comes the Boom,Fixing His Shoulder Scene,tt1648179 4LvvutsvgrE,2012.0,4,10,2017,Here Comes the Boom,He Stole My Song! Scene,tt1648179 xdnibOE5L40,2012.0,10,10,2017,Here Comes the Boom,You Got Yourself a Fight Scene,tt1648179 yKv7A92MoBY,2012.0,6,10,2017,Here Comes the Boom,Time to Eat Scene,tt1648179 FAAKfmF5Jl4,2012.0,9,10,2017,Here Comes the Boom,Weirdest Date Ever Scene,tt1648179 JfEde8D6XE8,2012.0,8,10,2017,Here Comes the Boom,Learning Through Song Scene,tt1648179 NSTXoI3j4ko,2012.0,5,10,2017,Here Comes the Boom,Vomiting Victory Scene,tt1648179 BTeAQ_QLObc,2012.0,2,10,2017,Here Comes the Boom,Niko's Training Scene,tt1648179 euJyO4E3FzE,2012.0,1,10,2017,Here Comes the Boom,Intimidation Scene,tt1648179 EvUbi66AGKI,2012.0,3,10,2017,Here Comes the Boom,This Isn't Baseball Scene,tt1648179 NuTbNeev0sk,2013.0,9,10,2017,Last Vegas,I Don't Need a Pill Scene,tt1204975 gPjQr9sSrmQ,2013.0,10,10,2017,Last Vegas,We Gotta Talk Scene,tt1204975 mAhhCpdnVkI,2013.0,6,10,2017,Last Vegas,The Bachelor Party Scene,tt1204975 mJ7S9aUZgZA,2013.0,8,10,2017,Last Vegas,Archie Busts a Move Scene,tt1204975 VhdCpMoShM4,2013.0,5,10,2017,Last Vegas,The Penthouse Villa Scene,tt1204975 mmSNq3ELTDE,2013.0,7,10,2017,Last Vegas,Mafia Bosses Scene,tt1204975 rDpyBEorPeY,2013.0,4,10,2017,Last Vegas,What Brings You Boys to Vegas? Scene,tt1204975 7vx5baLs0NE,2013.0,1,10,2017,Last Vegas,The Senior Years Scene,tt1204975 RCp2lpFkeeE,2013.0,2,10,2017,Last Vegas,"We're Invincible, Baby Scene",tt1204975 kK6P8gN99eo,2013.0,3,10,2017,Last Vegas,The Great Escape Scene,tt1204975 aazXc06Oycs,2012.0,10,10,2017,Wanderlust,Ready For Sex Scene,tt1655460 GZxal1kvCfY,2012.0,1,10,2017,Wanderlust,Money Buys Nothing Scene,tt1655460 DaDZptGm6nI,2012.0,6,10,2017,Wanderlust,Truth Circle Scene,tt1655460 hIHC635Q9dc,2012.0,9,10,2017,Wanderlust,Nude Protest Scene,tt1655460 pbv02n_zKvo,2012.0,8,10,2017,Wanderlust,Open Sexual Boundaries Scene,tt1655460 Kei4Jlhhz-Q,2012.0,7,10,2017,Wanderlust,Tripping Your Balls Off Scene,tt1655460 PAw7vAf6HMg,2012.0,4,10,2017,Wanderlust,Primal Gesticulating Scene,tt1655460 3k7E9zkTPLA,2012.0,2,10,2017,Wanderlust,You're Doing it Wrong Scene,tt1655460 cTQRH6MPV3A,2012.0,3,10,2017,Wanderlust,I Don't Need a Door Scene,tt1655460 MAi6B_AFhH8,2012.0,5,10,2017,Wanderlust,You're the Beans Scene,tt1655460 ZF_2tUzPnvw,2015.0,5,10,2017,Rock the Kasbah,We Will Die Scene,tt3164256 yw2hoxOuiaw,2015.0,1,10,2017,Rock the Kasbah,Hell Flight Scene,tt3164256 N13exKaQgXo,2015.0,9,10,2017,Rock the Kasbah,You Will Feel It Scene,tt3164256 XftKutOVjQs,2015.0,2,10,2017,Rock the Kasbah,Welcome to the Jungle Scene,tt3164256 TA4zkT8ov_Y,2015.0,4,10,2017,Rock the Kasbah,This Wasn't the Deal! Scene,tt3164256 8FJZS4bwRrk,2015.0,6,10,2017,Rock the Kasbah,Why Are You in My Trunk? Scene,tt3164256 hNiDZEwkT84,2015.0,3,10,2017,Rock the Kasbah,Swimming Pool Seduction Scene,tt3164256 SlwofvltpRw,2015.0,8,10,2017,Rock the Kasbah,Do Something Scene,tt3164256 NWdhUnTq3gg,2015.0,7,10,2017,Rock the Kasbah,The Shameless Singer Scene,tt3164256 Hhs2RLxDgok,2015.0,10,10,2017,Rock the Kasbah,The Peace Train Scene,tt3164256 xG6__eK9jIE,1995.0,9,10,2017,Village of the Damned,Friendly Fire Scene,tt0114852 CyhOZgd8ahs,1995.0,8,10,2017,Village of the Damned,Self-Dissection Scene,tt0114852 6Kfqy-8C3o0,1995.0,10,10,2017,Village of the Damned,Explosive Secrets Scene,tt0114852 WOBy9Q8Gf9I,1995.0,7,10,2017,Village of the Damned,Reverends Shouldn't Play With Guns Scene,tt0114852 F-HZzW_NS88,1995.0,1,10,2017,Village of the Damned,A Town Falls Asleep Scene,tt0114852 PlkvQ0NbjUs,1995.0,6,10,2017,Village of the Damned,Life is Cruelty Scene,tt0114852 e4Dlc6yqJuA,1995.0,5,10,2017,Village of the Damned,Don't Argue With the Children Scene,tt0114852 NVXDwL6XG_c,1995.0,2,10,2017,Village of the Damned,Boiling Barbara Scene,tt0114852 vaCI48KHW1k,1995.0,3,10,2017,Village of the Damned,The Eye Doctor Scene,tt0114852 tD3vc9KZ9lQ,1995.0,4,10,2017,Village of the Damned,The Children From Hell Scene,tt0114852 ujgbo-_khSM,2011.0,3,10,2017,Bad Teacher,Bathroom Chat Scene,tt1284575 jdd1py-ilwc,2011.0,10,10,2017,Bad Teacher,Check My Urine! Scene,tt1284575 jmC2y7EsXqk,2011.0,8,10,2017,Bad Teacher,Not Working Hard Enough Scene,tt1284575 SCR9s8egrmo,2011.0,7,10,2017,Bad Teacher,Amy's Overwhelmed Scene,tt1284575 QsCBiq5cET4,2011.0,9,10,2017,Bad Teacher,A Bad Apple Scene,tt1284575 uzMEc37DGZA,2011.0,1,10,2017,Bad Teacher,You Never Loved Me Scene,tt1284575 fbkfr-S420o,2011.0,6,10,2017,Bad Teacher,Recess is Over Scene,tt1284575 XPsDyk5bJdE,2011.0,5,10,2017,Bad Teacher,Christmas with Garrett Scene,tt1284575 9HRIGCog9UQ,2011.0,2,10,2017,Bad Teacher,Sexy Car Wash Scene,tt1284575 Pk-zBUDgesM,2011.0,4,10,2017,Bad Teacher,Weapons of Math Instruction Scene,tt1284575 2G5KN2wt048,2011.0,9,10,2017,Paul,Escaping the Farm Scene,tt1092026 b9pr0K7SuYk,2011.0,10,10,2017,Paul,The Big Guy Scene,tt1092026 Hwczxp7h7Gg,2011.0,7,10,2017,Paul,Really Strong Weed Scene,tt1092026 2vJOE2qvIEM,2011.0,5,10,2017,Paul,New to Cursing Scene,tt1092026 P8ZCZJpluDA,2011.0,4,10,2017,Paul,Farting Buttholes Scene,tt1092026 lsmWjQdGHMI,2011.0,8,10,2017,Paul,Spaceman Balls Scene,tt1092026 mz6dgt11n-E,2011.0,6,10,2017,Paul,Awkward Makeout Scene,tt1092026 9JTGNwLdSDA,2011.0,1,10,2017,Paul,Spaz Attack Scene,tt1092026 VrXUYjVCX2o,2011.0,2,10,2017,Paul,Dead Bird Scene,tt1092026 dtgOzzBMl2o,2011.0,3,10,2017,Paul,Evolve This Scene,tt1092026 pS-KE1LXpXU,1991.0,2,11,2017,Life Stinks,Am I Interrupting? Scene,tt0102303 tvxjJd08MMc,1991.0,7,11,2017,Life Stinks,Molly's Many Layers Scene,tt0102303 -YiImyOVCj4,1991.0,5,11,2017,Life Stinks,Molly's Nervous Breakdown Scene,tt0102303 kpFSJhQ_30c,1991.0,11,11,2017,Life Stinks,Heavy Machinery Battle Scene,tt0102303 apasYYh6nEA,1991.0,9,11,2017,Life Stinks,I'm Richer! Scene,tt0102303 vndiMloYcYU,1991.0,10,11,2017,Life Stinks,! Scene,tt0102303 4E55_uKSR40,1991.0,8,11,2017,Life Stinks,You Lost Everything Scene,tt0102303 k6u3YvvvgjQ,1991.0,6,11,2017,Life Stinks,A Sh**load of Money Scene,tt0102303 pYaJ7p8RrzM,1991.0,3,11,2017,Life Stinks,No Place to Sleep Scene,tt0102303 BEsaqfzc6wQ,1991.0,4,11,2017,Life Stinks,Ziggity Bing Bam Boom! Scene,tt0102303 2VgamrBe_vM,1991.0,1,11,2017,Life Stinks,Bolt Center Scene,tt0102303 nxmaYsZjnXo,1997.0,9,10,2017,"Oh, God!",Courtroom Miracle Scene,tt0076489 rzIs51GUVgg,1997.0,8,10,2017,"Oh, God!",God Sent Me to You Scene,tt0076489 puXiyRw_L6g,1997.0,5,10,2017,"Oh, God!",Raining in the Car Scene,tt0076489 6x0i-FfeA44,1997.0,10,10,2017,"Oh, God!","You Talk, I'll Listen Scene",tt0076489 jPgV4d4ZmZo,1997.0,7,10,2017,"Oh, God!",The Theologians Scene,tt0076489 onesjJyXdFQ,1997.0,6,10,2017,"Oh, God!",Don't Blow It Scene,tt0076489 IBdgRBvFwlM,1997.0,4,10,2017,"Oh, God!",Grocery Store Appearance Scene,tt0076489 kheP3iy8-6E,1997.0,2,10,2017,"Oh, God!",Spread the Word Scene,tt0076489 VVvKuI8oK3c,1997.0,3,10,2017,"Oh, God!",God Reveals Himself Scene,tt0076489 zd6ZUTrW5b4,1997.0,1,10,2017,"Oh, God!",Interview with God Scene,tt0076489 yk5d161ytXE,1972.0,8,10,2017,"What's Up, Doc?",First Time Driving Scene,tt0069495 oUo_8mKGHvY,1972.0,4,10,2017,"What's Up, Doc?",Let's Say Goodbye Scene,tt0069495 piTAjb8dd2Y,1972.0,6,10,2017,"What's Up, Doc?",Madcap Mayhem Scene,tt0069495 PhkGK4ga-Gs,1972.0,1,10,2017,"What's Up, Doc?",Meeting Judy Scene,tt0069495 gU886wmXhQo,1972.0,2,10,2017,"What's Up, Doc?",You Again? Scene,tt0069495 dR0_tMYKwXE,1972.0,9,10,2017,"What's Up, Doc?",Howard's Send-Off Scene,tt0069495 XYc1XujRb1w,1972.0,7,10,2017,"What's Up, Doc?",Judy Seduces Howard Scene,tt0069495 kbVtjc-ygTM,1972.0,5,10,2017,"What's Up, Doc?",No Choice But to Jump Scene,tt0069495 PoIuiCAepLU,1972.0,3,10,2017,"What's Up, Doc?",Dangerously Unbalanced Woman Scene,tt0069495 m-ETkZmPNiM,1972.0,10,10,2017,"What's Up, Doc?",That's All Folks! Scene,tt0069495 hTzUYt__ogY,2015.0,10,10,2017,Everest,Aftermath Scene,tt2719848 34K-mcoEFuk,2015.0,8,10,2017,Everest,"Goodbye, My Love Scene",tt2719848 fAdsL7AXW6A,2015.0,7,10,2017,Everest,Left to Freeze Scene,tt2719848 MmBx8AMHTxE,2015.0,9,10,2017,Everest,Mountain Chopper Scene,tt2719848 eA-V5wUcWos,2015.0,6,10,2017,Everest,The Ice Storm Scene,tt2719848 XO4HxR3dPsI,2015.0,2,10,2017,Everest,Why Are You Climbing ? Scene,tt2719848 Q54GdrlgRoQ,2015.0,1,10,2017,Everest,Across the Chasm Scene,tt2719848 pXrMAjB8ka0,2015.0,4,10,2017,Everest,Dig Deep Scene,tt2719848 j0iplsU1qa4,2015.0,5,10,2017,Everest,Out of Oxygen Scene,tt2719848 wmXFSQdF3PM,2015.0,3,10,2017,Everest,We Made It! Scene,tt2719848 YZrVYAXYyws,2014.0,10,10,2017,Seventh Son,Tom's Destiny Scene,tt1121096 uPFxRUeRfu8,2014.0,7,10,2017,Seventh Son,A Taste of What's to Come Scene,tt1121096 HSjPTdKWcLA,2014.0,9,10,2017,Seventh Son,Dragons at the Blood Moon Scene,tt1121096 rW59kLTHdBE,2014.0,8,10,2017,Seventh Son,Fight for the Pendant Scene,tt1121096 Qzf3SFbaODw,2014.0,6,10,2017,Seventh Son,Boggart Attack Scene,tt1121096 xPwq9go3HDc,2014.0,5,10,2017,Seventh Son,You Can't Hide From Destiny Scene,tt1121096 lLItY-Oyvt0,2014.0,4,10,2017,Seventh Son,Master Gregory vs. Urag Scene,tt1121096 XCJxGxYDjQE,2014.0,2,10,2017,Seventh Son,Tom's First Test Scene,tt1121096 RJEoUwZdwfk,2014.0,1,10,2017,Seventh Son,An Apprentice Lost Scene,tt1121096 ah_Egywb780,2014.0,3,10,2017,Seventh Son,Sparks in the Moonlight Scene,tt1121096 KW1fyTqH0oE,2005.0,10,10,2017,The Legend of Zorro,An Explosive End Scene,tt0386140 g_O0J66490k,2005.0,7,10,2017,The Legend of Zorro,Good Boy Scene,tt0386140 Yg53M7TYpuo,2005.0,9,10,2017,The Legend of Zorro,Runaway Train Scene,tt0386140 QtQpMjuyHnM,2005.0,8,10,2017,The Legend of Zorro,Train Fight Scene,tt0386140 DJWKWwfURtI,2005.0,5,10,2017,The Legend of Zorro,This Changes Nothing Scene,tt0386140 uZpvHkGMn5k,2005.0,1,10,2017,The Legend of Zorro,Sword Fight on the Bridge Scene,tt0386140 ZlzhOaHLFBM,2005.0,6,10,2017,The Legend of Zorro,Unmasking Zorro Scene,tt0386140 Z6SklaeTne8,2005.0,3,10,2017,The Legend of Zorro,Barn Fight Scene,tt0386140 m31MSgGEIAk,2005.0,4,10,2017,The Legend of Zorro,A Definite Maybe Scene,tt0386140 Z2-9fWRAwMo,2005.0,2,10,2017,The Legend of Zorro,Perilous Polo Scene,tt0386140 NTUNJ7f0tHU,1986.0,7,9,2017,The Mission,The Church vs. The Chief Scene,tt0091530 P13rZWwIXmM,1986.0,1,9,2017,The Mission,Gabriel's Oboe Scene,tt0091530 I0E-0kTdg-k,1986.0,9,9,2017,The Mission,I Can't Bless You Scene,tt0091530 vVbXluPyrTA,1986.0,6,9,2017,The Mission,God and the Guarani Scene,tt0091530 EqRYx6Zgphw,1986.0,8,9,2017,The Mission,You Promised Your Life to God Scene,tt0091530 Pk_-jIncT5I,1986.0,2,9,2017,The Mission,There is No Redemption Scene,tt0091530 CYt5p4a8YzE,1986.0,5,9,2017,The Mission,"Welcome Home, Brother Scene",tt0091530 mnXN-mRFoPI,1986.0,3,9,2017,The Mission,Rodrigo's Penance Scene,tt0091530 CYTRQAy2o4E,1986.0,4,9,2017,The Mission,Accepted by the Tribe Scene,tt0091530 3HMU2k7i59M,2000.0,10,10,2017,The Widow of St. Pierre,Run Away! Scene,tt0191636 FNKYIVZOjqs,2000.0,5,10,2017,The Widow of St. Pierre,No Executioners Here Scene,tt0191636 tZ2yXL_RLEc,2000.0,9,10,2017,The Widow of St. Pierre,A Rebel Scene,tt0191636 VRN37FGgEic,2000.0,6,10,2017,The Widow of St. Pierre,The Executioner Scene,tt0191636 nPGxeiD4mgM,2000.0,7,10,2017,The Widow of St. Pierre,The Volunteer Scene,tt0191636 SuoDkikuZjo,2000.0,8,10,2017,The Widow of St. Pierre,A Man Who Loves His Wife Scene,tt0191636 _9lOz8mySPk,2000.0,1,10,2017,The Widow of St. Pierre,People Change Scene,tt0191636 6PumiBR18C4,2000.0,4,10,2017,The Widow of St. Pierre,Local Hero Scene,tt0191636 cY3aFhbBzoc,2000.0,2,10,2017,The Widow of St. Pierre,Mind Your Own Business Scene,tt0191636 5gQ3nWBmAak,2000.0,3,10,2017,The Widow of St. Pierre,I Demand an Apology Scene,tt0191636 9EOazpvA7-U,2016.0,9,10,2017,Inferno,Kill Billions to Save Lives Scene,tt3062096 Z2-qppnyM3s,2016.0,10,10,2017,Inferno,It's Contained Scene,tt3062096 GzMBisWrn_M,2016.0,8,10,2017,Inferno,We Create Illusions Scene,tt3062096 7LxG9WBUbf8,2016.0,7,10,2017,Inferno,Dedicated Disciple Scene,tt3062096 2ycw0UUyCm0,2016.0,1,10,2017,Inferno,Apocalyptic Nightmares Scene,tt3062096 9oiFkoROlu0,2016.0,6,10,2017,Inferno,Hidden Memory Scene,tt3062096 8UscACJkVxY,2016.0,5,10,2017,Inferno,Unknown Ally Scene,tt3062096 cRZ7bc3nqwA,2016.0,2,10,2017,Inferno,The Battle of Marciano Scene,tt3062096 f-EjBwpuVFI,2016.0,3,10,2017,Inferno,The Case of the Missing Mask Scene,tt3062096 WrZN5ouSodc,2016.0,4,10,2017,Inferno,Secrets of the Palazzo Scene,tt3062096 5LX01_nSeZU,2015.0,8,10,2017,Sinister 2,A Dangerous Man Scene,tt2752772 Ld8KOUtkHHY,2015.0,6,10,2017,Sinister 2,Sunday Service Murders Scene,tt2752772 G8_iVf44j-s,2015.0,10,10,2017,Sinister 2,"It's Over, Zach Scene",tt2752772 kJEvR6GEb7U,2015.0,9,10,2017,Sinister 2,Zach's Murder Movie Scene,tt2752772 eoffuyXUhLs,2015.0,7,10,2017,Sinister 2,Made for Murder Scene,tt2752772 o2wFqjb9AU0,2015.0,5,10,2017,Sinister 2,Bughuul Scene,tt2752772 yDxNlPIFWHM,2015.0,4,10,2017,Sinister 2,Jealous of the Jinxed Scene,tt2752772 p39lIRTEPY4,2015.0,3,10,2017,Sinister 2,Ghosts in the Church Scene,tt2752772 bqwS3qz3GhE,2015.0,2,10,2017,Sinister 2,Compelled to Watch Scene,tt2752772 Eh_0E0UdJcc,2015.0,1,10,2017,Sinister 2,A Dark Presence Scene,tt2752772 qyZXW5Md1HM,2014.0,10,10,2017,Unfriended,One Last Thing Scene,tt3713166 okdTt3VfJ6s,2014.0,9,10,2017,Unfriended,It Was Him Scene,tt3713166 qzQdwPNUcME,2014.0,7,10,2017,Unfriended,The Note Scene,tt3713166 SwCNp21CKes,2014.0,6,10,2017,Unfriended,NSFW: Adam & Blaire Scene,tt3713166 5Q52XfZ9no0,2014.0,8,10,2017,Unfriended,Call the Police! Scene,tt3713166 wN1iAzPTBbM,2014.0,5,10,2017,Unfriended,Never Have I Ever Scene,tt3713166 fQWMKUF7dvA,2014.0,1,10,2017,Unfriended,We'll Call Them Back Scene,tt3713166 gNCkFkii-tA,2014.0,3,10,2017,Unfriended,Something for Billie Scene,tt3713166 eYrt5n8DA2M,2014.0,4,10,2017,Unfriended,Something in Ken's Room Scene,tt3713166 198uP07pieE,2014.0,2,10,2017,Unfriended,Hacked By a Dead Girl Scene,tt3713166 WLq3zSm5SkQ,2014.0,10,10,2017,"As Above, So Below",On Three Scene,tt2870612 duEErwP8eds,2014.0,9,10,2017,"As Above, So Below",Saving George Scene,tt2870612 m1p-vJzqPKw,2014.0,8,10,2017,"As Above, So Below",Returning the Stone Scene,tt2870612 6IM3wUpXVfA,2014.0,7,10,2017,"As Above, So Below",We Have to Keep Going Scene,tt2870612 ekqjBZdbYJU,2014.0,6,10,2017,"As Above, So Below",Benji's Close Encounter Scene,tt2870612 W3cldIDgcoE,2014.0,5,10,2017,"As Above, So Below",It Can't Bring Back the Dead Scene,tt2870612 UtyiyBw401w,2014.0,3,10,2017,"As Above, So Below",How Did They Get a Piano Down Here? Scene,tt2870612 AwR1RawiBU0,2014.0,4,10,2017,"As Above, So Below",Discovering the Stone Scene,tt2870612 tFBSGc3v7BI,2014.0,2,10,2017,"As Above, So Below",The Catacombs Scene,tt2870612 bqvMCDQ3HEU,2014.0,1,10,2017,"As Above, So Below",My Father Wasn't Crazy Scene,tt2870612 _mPOfQw2fmY,2014.0,9,10,2017,Think Like a Man Too,Good Enough For My Son Scene,tt2239832 C5UD270jxfs,2014.0,8,10,2017,Think Like a Man Too,Marry Me Scene,tt2239832 vagva7xKyE8,2014.0,2,10,2017,Think Like a Man Too,Cedric's Dance Scene,tt2239832 RmkFsYUz4cs,2014.0,10,10,2017,Think Like a Man Too,The Wedding Scene,tt2239832 7T5KMMZfc_U,2014.0,3,10,2017,Think Like a Man Too,Back in the Saddle Scene,tt2239832 iKS_327EF84,2014.0,5,10,2017,Think Like a Man Too,Strip Club Fight Scene,tt2239832 Y15QXiFUV8U,2014.0,7,10,2017,Think Like a Man Too,Preoccupied with Gail Scene,tt2239832 mqYkD0nMs04,2014.0,1,10,2017,Think Like a Man Too,I Am Daenerys Scene,tt2239832 7oi0cS5tNRg,2014.0,6,10,2017,Think Like a Man Too,The New Boss Scene,tt2239832 8VhgYX8xRuw,2014.0,4,10,2017,Think Like a Man Too,Poison Scene,tt2239832 hM6KNsz7_mk,2012.0,5,10,2017,Think Like a Man,The Women Had No Chance Scene,tt1621045 AHV1LepZ2KM,2012.0,9,10,2017,Think Like a Man,The Number One Woman In My Life Scene,tt1621045 ZWszIB0z50k,2012.0,10,10,2017,Think Like a Man,I Want You Back Scene,tt1621045 qv4BPYX4B8U,2012.0,8,10,2017,Think Like a Man,I Wanna Be Your Wife Scene,tt1621045 7qi8llEviYY,2012.0,6,10,2017,Think Like a Man,All This For Me Scene,tt1621045 r_ckU9PkTbM,2012.0,7,10,2017,Think Like a Man,I Need to Be Held Scene,tt1621045 pLlcwabi5AQ,2012.0,4,10,2017,Think Like a Man,We Need to Talk Scene,tt1621045 wOSP7YOuOH4,2012.0,1,10,2017,Think Like a Man,Types of Men Scene,tt1621045 3A97Vc1eExE,2012.0,2,10,2017,Think Like a Man,First Dates Scene,tt1621045 cmlELkvVPeQ,2012.0,3,10,2017,Think Like a Man,Honesty is Overrated Scene,tt1621045 AtcaQ4_DBOs,2012.0,7,10,2017,The Five-Year Engagement,Fake Orgasm Scene,tt1195478 Gfc_7pOTR28,2012.0,6,10,2017,The Five-Year Engagement,Crossbow Scene,tt1195478 UYYIYehBS_s,2012.0,10,10,2017,The Five-Year Engagement,Choose Your Own Wedding Scene,tt1195478 VWMSjhr1BZE,2012.0,4,10,2017,The Five-Year Engagement,Wedding Planning Scene,tt1195478 pzE6SVUHAYE,2012.0,8,10,2017,The Five-Year Engagement,Elmo and Cookie Monster Scene,tt1195478 -LCqZeb1de0,2012.0,9,10,2017,The Five-Year Engagement,The Happiest Girl in the World Scene,tt1195478 njq3H2iy2X0,2012.0,3,10,2017,The Five-Year Engagement,Awkward Party Scene,tt1195478 uU_ftZ6EfX8,2012.0,2,10,2017,The Five-Year Engagement,Beautiful Wedding Scene,tt1195478 2HwVVwlGHU0,2012.0,5,10,2017,The Five-Year Engagement,Chewbacca's Cup Scene,tt1195478 rYHCZi-tmTE,2012.0,1,10,2017,The Five-Year Engagement,The Engagement Dinner Scene,tt1195478 gx-03rUq-1Q,2009.0,8,10,2017,Julie & Julia,The Business of Getting Published Scene,tt1135503 isFVKJA4E-k,2009.0,7,10,2017,Julie & Julia,Bon Appetit Scene,tt1135503 aSwH4lpuKE8,2009.0,6,10,2017,Julie & Julia,Dirty Mouth Scene,tt1135503 zXF0zcwPGuI,2009.0,10,10,2017,Julie & Julia,"I Love You, Julia Scene",tt1135503 ApANYuSl7A0,2009.0,9,10,2017,Julie & Julia,Julia Child Hates Me Scene,tt1135503 ptcDoIfzLtI,2009.0,4,10,2017,Julie & Julia,Finding Her Calling Scene,tt1135503 zPuVP5U-xag,2009.0,5,10,2017,Julie & Julia,The Butter to My Bread Scene,tt1135503 AsR-WnELodI,2009.0,3,10,2017,Julie & Julia,A Quick Learner Scene,tt1135503 czOgJJqehv0,2009.0,2,10,2017,Julie & Julia,You Can Never Have Too Much Butter Scene,tt1135503 TSQ770iqDgY,2009.0,1,10,2017,Julie & Julia,I Love to Eat Scene,tt1135503 svAY8Rg8HFY,2006.0,8,10,2017,The Holiday,I'm in Love with You Scene,tt0457939 LKeegFM5SdU,2006.0,2,10,2017,The Holiday,Amanda Dances Scene,tt0457939 coDyfoCUaSk,2006.0,10,10,2017,The Holiday,Going Back for Graham Scene,tt0457939 5OGX-e6WT88,2006.0,7,10,2017,The Holiday,If You Were a Melody Scene,tt0457939 eZHlWaIYjNE,2006.0,6,10,2017,The Holiday,Falling for the Wrong Person Scene,tt0457939 J7_oE1uN1pU,2006.0,9,10,2017,The Holiday,Done Being in Love with You Scene,tt0457939 iraWz0XdffE,2006.0,5,10,2017,The Holiday,Hold Please! Scene,tt0457939 GKNkucKoryE,2006.0,1,10,2017,The Holiday,Things End Scene,tt0457939 1O9BbPEZRBs,2006.0,4,10,2017,The Holiday,Mr. Napkin Head Scene,tt0457939 fY1s5Sn-GDE,2006.0,3,10,2017,The Holiday,You are a Leading Lady Scene,tt0457939 vn8YIDxEGrw,2016.0,10,10,2017,The Magnificent Seven,Pray With Me Scene,tt2404435 o-cA_1F05bU,2016.0,3,10,2017,The Magnificent Seven,Fastest Knife in the West Scene,tt2404435 7uYoJwMuN_8,2016.0,7,10,2017,The Magnificent Seven,Gatling Gun Scene,tt2404435 AwtSK1gLBBk,2016.0,8,10,2017,The Magnificent Seven,Comanche Fight Scene,tt2404435 2X8O8PN7GOQ,2016.0,6,10,2017,The Magnificent Seven,Battling Bogue's Brigade Scene,tt2404435 9_T2VQgL2XY,2016.0,9,10,2017,The Magnificent Seven,Farraday's Redemption Scene,tt2404435 D6MN7T-tnDw,2016.0,4,10,2017,The Magnificent Seven,Town Shootout Scene,tt2404435 bZhBhpm6m_A,2016.0,5,10,2017,The Magnificent Seven,Goodnight's Inspiration Scene,tt2404435 vNPCXKmF9LI,2016.0,2,10,2017,The Magnificent Seven,Farraday's Magic Trick Scene,tt2404435 zadI5ngwLsM,2016.0,1,10,2017,The Magnificent Seven,Money for Blood Scene,tt2404435 1rP402h6Euo,1986.0,8,12,2017,The Delta Force,"One Man, One Motorcycle Scene",tt0090927 XR7br4b3gsg,2003.0,10,10,2017,Bad Boys II,A Live Minefield Scene,tt0172156 LfL2xCfIMIU,1990.0,7,11,2017,Delta Force 2,School's Out Scene,tt0099399 pJIGy4zHo6E,1990.0,2,11,2017,Delta Force 2,Always the Hard Way Scene,tt0099399 ByPtVBI4_MI,1990.0,11,11,2017,Delta Force 2,Not Today Scene,tt0099399 d2uvpiz5up0,1990.0,9,11,2017,Delta Force 2,Out of the Sky Scene,tt0099399 BxB1Mpj8NiM,1986.0,5,12,2017,The Delta Force,McCoy Doesn't Negotiate Scene,tt0090927 Pf2LbcDDW5E,1986.0,10,12,2017,The Delta Force,"Bye, Bye Abdul Scene",tt0090927 TYA75RnDMGI,2003.0,1,10,2017,Bad Boys II,Swamp Shootout Scene,tt0172156 AIQHqvG9Ql8,2003.0,2,10,2017,Bad Boys II,Haitian Gang Shootout Scene,tt0172156 v9Cq9nThaNs,2003.0,4,10,2017,Bad Boys II,Car Chase Scene,tt0172156 LoRpJTD3HFY,2003.0,5,10,2017,Bad Boys II,Gun Fights and Train Bites Scene,tt0172156 F2AbEJnPRYM,2003.0,3,10,2017,Bad Boys II,Video Store Partners Scene,tt0172156 nEf2ML7wkBE,2003.0,6,10,2017,Bad Boys II,Intimidating Reggie Scene,tt0172156 XMPTy7Iaw9s,2003.0,9,10,2017,Bad Boys II,Crashing Through Cuba Scene,tt0172156 edHmOaS0lRU,2003.0,8,10,2017,Bad Boys II,Saving Syd Scene,tt0172156 cibZY1GwVQg,2003.0,7,10,2017,Bad Boys II,Marcus on Drugs Scene,tt0172156 jeYdR_r0iGo,1990.0,8,11,2017,Delta Force 2,Escaping the Chamber Scene,tt0099399 YZGetnQQU48,1990.0,3,11,2017,Delta Force 2,Eliminating the Traitor Scene,tt0099399 IMPHXKW9ntw,1990.0,10,11,2017,Delta Force 2,If You Had the Courage Scene,tt0099399 nqK7Kk3ZKvY,1990.0,6,11,2017,Delta Force 2,I Was Just in the Neighborhood Scene,tt0099399 lkT9aqC6Tqw,1990.0,5,11,2017,Delta Force 2,Unleashing Delta Force Scene,tt0099399 cqHKducp4MY,1990.0,4,11,2017,Delta Force 2,Delta Force Training Scene,tt0099399 _O9lT22rCj8,1990.0,1,11,2017,Delta Force 2,A Motivational Seminar Scene,tt0099399 PJTb9EdYZDg,1986.0,12,12,2017,The Delta Force,Liftoff! Scene,tt0090927 cSWMU_rISfw,1986.0,9,12,2017,The Delta Force,Going Somewhere? Scene,tt0090927 XssDZqS6WzE,1986.0,1,12,2017,The Delta Force,Prepared to Die Scene,tt0090927 TwnfJ8d9NqY,1986.0,11,12,2017,The Delta Force,It's About Time Scene,tt0090927 2yWYCKoqKmE,1986.0,7,12,2017,The Delta Force,Surprise Party Scene,tt0090927 hp3n_sA4Sqo,1986.0,6,12,2017,The Delta Force,Hostage Rescue Scene,tt0090927 1ugiiAH40_w,1986.0,2,12,2017,The Delta Force,Jewish Passengers Scene,tt0090927 udwKI7oFT6Y,1986.0,3,12,2017,The Delta Force,One Marine Killer Scene,tt0090927 WFAu7jYslik,1986.0,4,12,2017,The Delta Force,"Sleep Tight, Sucker Scene",tt0090927 5-Xw_z9dODw,1986.0,10,10,2017,Heat,I'm Gonna Rip Your Face Off Scene,tt0093164 eNZnCwkHaDM,1986.0,7,10,2017,Heat,I'm an Addict Scene,tt0093164 auMBMds7lQo,1986.0,8,10,2017,Heat,No Pain Scene,tt0093164 h4QvAd6nC10,1986.0,9,10,2017,Heat,Electrified Scene,tt0093164 Gokp5Aq-Yuw,1986.0,4,10,2017,Heat,The Envy of All Mankind Scene,tt0093164 9xS3XqTSRr4,1986.0,6,10,2017,Heat,Bust Scene,tt0093164 zMbx4rZOMig,1986.0,3,10,2017,Heat,Thinking About Venice Scene,tt0093164 KXa2pXA7v6I,1986.0,5,10,2017,Heat,Blackjack Scene,tt0093164 R0jAHXVoZ4E,1986.0,1,10,2017,Heat,I'm Your Man Scene,tt0093164 W3u0prIyDTs,1986.0,2,10,2017,Heat,Ozzie-Wozzie Scene,tt0093164 A83gS4JJXXE,2001.0,9,11,2017,Ghost World,Seymour Attacks Josh Scene,tt0162346 abgTPYfdbOE,2001.0,10,11,2017,Ghost World,Enid's Hero Scene,tt0162346 6nfXJd8nV9E,2001.0,11,11,2017,Ghost World,Therapy Session Scene,tt0162346 _XSFVQhMC5k,2001.0,6,11,2017,Ghost World,Seymour's Dating Service Scene,tt0162346 rQWpTKfljVg,2001.0,8,11,2017,Ghost World,Enid Gets Hired and Fired Scene,tt0162346 xHDeLp0sWBc,2001.0,7,11,2017,Ghost World,Enid Visits Rebecca at Work Scene,tt0162346 QoWIRCVeXBc,2001.0,5,11,2017,Ghost World,Amusing Cartoons Scene,tt0162346 HLlaSoozZbM,2001.0,2,11,2017,Ghost World,Nunchucks at the Sidewinder Scene,tt0162346 Cd1Q6LsOR8o,2001.0,3,11,2017,Ghost World,"Mirror, Father, Mirror Scene",tt0162346 8lsl4cNrpzI,2001.0,1,11,2017,Ghost World,High School Graduation Scene,tt0162346 Ub88RPZnHQM,2001.0,4,11,2017,Ghost World,Meeting Seymour Scene,tt0162346 cIscGgQD4uE,1998.0,2,10,2017,I Still Know What You Did Last Summer,The Horror of Karaoke Scene,tt0130018 D8NMSoCRPV8,1998.0,10,10,2017,I Still Know What You Did Last Summer,He Always Comes Back Scene,tt0130018 LgKIQbxZZgY,1998.0,9,10,2017,I Still Know What You Did Last Summer,Just Die Scene,tt0130018 TYJ-1E4hKAU,1998.0,6,10,2017,I Still Know What You Did Last Summer,Psycho Killer Scene,tt0130018 pkqyDC9YnfM,1998.0,7,10,2017,I Still Know What You Did Last Summer,Keep Running Scene,tt0130018 5VSg6c8TKNc,1998.0,8,10,2017,I Still Know What You Did Last Summer,It's Not My Blood Scene,tt0130018 CShHiYrQPGM,1998.0,5,10,2017,I Still Know What You Did Last Summer,Tanning Bed Terror Scene,tt0130018 h3g5B5JhFcY,1998.0,3,10,2017,I Still Know What You Did Last Summer,Death on the Dock Scene,tt0130018 Jd0XiJie7Lo,1998.0,4,10,2017,I Still Know What You Did Last Summer,Come to Papa Scene,tt0130018 f9Wq05WVXiQ,1998.0,1,10,2017,I Still Know What You Did Last Summer,Trouble on the Road Scene,tt0130018 2DdCmT_j5nE,2005.0,11,11,2017,Hard Candy,This Is Who I Am Scene,tt0424136 sidgUs-5R64,2005.0,10,11,2017,Hard Candy,Stunned Scene,tt0424136 58pw6PJAqZg,2005.0,9,11,2017,Hard Candy,This is For the Best Scene,tt0424136 jJnJFGaJwV8,2005.0,6,11,2017,Hard Candy,You Know Nothing About Me Scene,tt0424136 GVGyBNIfPL4,2005.0,5,11,2017,Hard Candy,I'm a Decent Guy Scene,tt0424136 aIKVAAfZZeM,2005.0,7,11,2017,Hard Candy,This Is Officially Sick Scene,tt0424136 ZkZvK6v-L7s,2005.0,8,11,2017,Hard Candy,Don't Do That to Yourself Scene,tt0424136 RgaUubM7yyY,2005.0,3,11,2017,Hard Candy,Shoot Me Scene,tt0424136 KGPW4PnJtoY,2005.0,2,11,2017,Hard Candy,Take It All Scene,tt0424136 SjbUk89pY7Y,2005.0,1,11,2017,Hard Candy,More Chocolate Scene,tt0424136 ab927ug4_xY,2005.0,4,11,2017,Hard Candy,Busted Scene,tt0424136 bwnrdj6zZfQ,1997.0,11,11,2017,Affliction,Don't You Sass Me Scene,tt0118564 PIeiRgfL9e8,1997.0,10,11,2017,Affliction,Pulling Teeth Scene,tt0118564 UcEl21V2btA,1997.0,8,11,2017,Affliction,I'll Shoot You Dead Scene,tt0118564 B7yi-MaUZaQ,1997.0,9,11,2017,Affliction,You're Fired Scene,tt0118564 lg0P7zox2V8,1997.0,7,11,2017,Affliction,Afflicted by Violence Scene,tt0118564 h72ZN-oKzTU,1997.0,5,11,2017,Affliction,A Modest Proposal Scene,tt0118564 mc082fyyMQw,1997.0,6,11,2017,Affliction,Jesus Freaks and Candy-Asses Scene,tt0118564 OaGLdGjlV7Y,1997.0,2,11,2017,Affliction,Don't Make a Scene,tt0118564 iIP23U3q5FU,1997.0,4,11,2017,Affliction,Hunting Accident Scene,tt0118564 RZieTQla0dM,1997.0,1,11,2017,Affliction,Halloween Scene,tt0118564 AAE6HOrW3rk,1997.0,3,11,2017,Affliction,A Lesson in Work Scene,tt0118564 V_dtlMkvp2Q,2014.0,2,10,2017,The Amazing Spider Man 2,I'm Electro Scene,tt1872181 mNUnCTKwS8Q,2014.0,1,10,2017,The Amazing Spider Man 2,Kissing in the Closet Scene,tt1872181 VflasoWmuoA,2014.0,6,10,2017,The Amazing Spider Man 2,I Love You Scene,tt1872181 j0cqqCpIZHE,2014.0,3,10,2017,The Amazing Spider Man 2,Peter's Father Scene,tt1872181 U-R21NaE91o,2014.0,4,10,2017,The Amazing Spider Man 2,Breaking Out Electro Scene,tt1872181 SD0eJL4D6q0,2014.0,5,10,2017,The Amazing Spider Man 2,Becoming Goblin Scene,tt1872181 msoyjm3gCBM,2014.0,8,10,2017,The Amazing Spider Man 2,Electro Overload Scene,tt1872181 g1jO4_HQQX4,2014.0,9,10,2017,The Amazing Spider Man 2,Spider Man vs. Goblin Scene,tt1872181 JOw4LqyJKyg,2014.0,7,10,2017,The Amazing Spider Man 2,Spider Man vs. Electro Scene,tt1872181 Xi3P8vUveVQ,2014.0,10,10,2017,The Amazing Spider Man 2,Gwen's Fall Scene,tt1872181 Xdzv5V4MVus,2011.0,9,10,2017,The Green Hornet,That's a Very Big Gun Scene,tt0990407 1x3IKujLO-E,2011.0,10,10,2017,The Green Hornet,That Was Incredibly Dangerous Scene,tt0990407 yvzmLB30MwM,2011.0,5,10,2017,The Green Hornet,Every Man For Himself Scene,tt0990407 MdI5DrJ6V3k,2011.0,8,10,2017,The Green Hornet,You Get Stung Scene,tt0990407 6wXeUrZ6p5E,2011.0,6,10,2017,The Green Hornet,Heroes Beat Sidekicks Scene,tt0990407 3xtKas3-ctQ,2011.0,7,10,2017,The Green Hornet,The Good Half of the Team Scene,tt0990407 Wa3l6Q7e5aA,2011.0,2,10,2017,The Green Hornet,The Black Beauty Scene,tt0990407 Zbi-MbMsnIM,2011.0,3,10,2017,The Green Hornet,I Am the Green Hornet Scene,tt0990407 lR8KTwcC8fc,2011.0,4,10,2017,The Green Hornet,The Hornet Gun Scene,tt0990407 re_liKgRGew,2011.0,1,10,2017,The Green Hornet,Wanna See Something Cool? Scene,tt0990407 6Gd4JbJxaf4,2000.0,10,10,2017,Hollow Man,For Old Times' Sake Scene,tt0164052 2rPDGz_0qvw,2000.0,9,10,2017,Hollow Man,Escaping the Exploding Lab Scene,tt0164052 aDq_JsN2Y6c,2000.0,5,10,2017,Hollow Man,This is a Gift Scene,tt0164052 ucYwV7EWIRU,2000.0,8,10,2017,Hollow Man,I'll Show You God Scene,tt0164052 GCSbGFMWzC4,2000.0,7,10,2017,Hollow Man,You're Not Gonna Die In Here Scene,tt0164052 JwAVnG8iemw,2000.0,1,10,2017,Hollow Man,Gorilla Visible Scene,tt0164052 CxQ4aL5IXZw,2000.0,6,10,2017,Hollow Man,Peeping Tom Jealousy Scene,tt0164052 CYgNbOsiKtk,2000.0,2,10,2017,Hollow Man,The First Invisible Man Scene,tt0164052 f7l5I6ZPt_Y,2000.0,3,10,2017,Hollow Man,One More Experiment Scene,tt0164052 fVoHEZb6imE,2000.0,4,10,2017,Hollow Man,Unseen Predator Scene,tt0164052 adjuOPzkpw4,1991.0,10,10,2017,F/X2,A Flying Clown Scene,tt0101846 n44APWaJZ58,1991.0,9,10,2017,F/X2,Give Me the Gun Scene,tt0101846 KbRMCmnLU8o,1991.0,8,10,2017,F/X2,Cue Ball Corner Pocket Scene,tt0101846 a_9dO9k2TPQ,1991.0,6,10,2017,F/X2,Exploding Beans Scene,tt0101846 tGg3h7NtiXs,1991.0,7,10,2017,F/X2,I Want Some Answers! Scene,tt0101846 cSSYFjtc4SY,1991.0,3,10,2017,F/X2,Clown Fights Back Scene,tt0101846 of7H9H_aPxg,1991.0,5,10,2017,F/X2,Making Popcorn Scene,tt0101846 Dd0f82f8ymk,1991.0,4,10,2017,F/X2,Gotcha! Scene,tt0101846 AtWL0iQxE7U,1991.0,2,10,2017,F/X2,Mike is Murdered Scene,tt0101846 mhCiFB07I2w,1991.0,1,10,2017,F/X2,I Don't Do Windows Scene,tt0101846 GwdgbTQ5cgU,1986.0,5,9,2017,F/X,Giving 'Em the Slip Scene,tt0089118 _KzpueROmto,1986.0,3,9,2017,F/X,Marked for Death Scene,tt0089118 rqdEaDM2PWM,1986.0,7,9,2017,F/X,Playing Games Scene,tt0089118 hE5rsmIsYPA,1986.0,9,9,2017,F/X,Escape From the Morgue Scene,tt0089118 MWxa84PirUc,1986.0,8,9,2017,F/X,Krazy-Glued Gun Scene,tt0089118 RV0EbFEZpT8,1986.0,4,9,2017,F/X,Trunk Torture Scene,tt0089118 MrtT-vOpAfc,1986.0,2,9,2017,F/X,No Loose Ends Scene,tt0089118 Z8JHamH3gW4,1986.0,1,9,2017,F/X,Nobody Dies Like You Scene,tt0089118 o-_ochO9CFQ,1986.0,6,9,2017,F/X,Borrowing a Badge Scene,tt0089118 UvojHP56dnQ,2016.0,9,10,2017,American Honey,You Think You're Special Scene,tt3721936 iHkMTqikRg4,2016.0,8,10,2017,American Honey,You Missed Your Pickup Scene,tt3721936 lGTsRcHaMic,2016.0,6,10,2017,American Honey,The Only Wolf Scene,tt3721936 2fbk5E4JTkI,2016.0,7,10,2017,American Honey,We're Sales Associates Scene,tt3721936 jV76HSEeAPQ,2016.0,10,10,2017,American Honey,Singing in the Van Scene,tt3721936 uqn1bgQX1lg,2016.0,4,10,2017,American Honey,Keep On Dreaming Scene,tt3721936 ynG2qpTbFP0,2016.0,5,10,2017,American Honey,A Crazy One Scene,tt3721936 4tVEuWxns6g,2016.0,3,10,2017,American Honey,The Devil Has a Hold on You Scene,tt3721936 WInIV1tcI28,2016.0,1,10,2017,American Honey,Come With Us Scene,tt3721936 4GYKaKvJ4Ng,2016.0,2,10,2017,American Honey,Leaving the Kids Scene,tt3721936 Jb2egULZePg,2005.0,4,11,2017,Fierce People,Dying to Do It Scene,tt0401420 H9bQdTtfGCU,2009.0,9,11,2017,The Haunting in Connecticut,Jonah's Fate Scene,tt0492044 lensYsrpsVY,1990.0,8,11,2017,"After Dark, My Sweet",If I Only Knew What You Wanted Scene,tt0098994 aRMHp-wDvnE,1990.0,9,11,2017,"After Dark, My Sweet",A Bad Feeling Scene,tt0098994 dWWjjk3Ody8,1990.0,2,11,2017,"After Dark, My Sweet",I'm Not Stupid Scene,tt0098994 XqtGRpyXGXg,1990.0,7,11,2017,"After Dark, My Sweet",Picking Up Charlie Scene,tt0098994 wdlhhgAT1EU,1990.0,5,11,2017,"After Dark, My Sweet",Punching His Brains Out Scene,tt0098994 HDPj29dAC-g,1990.0,3,11,2017,"After Dark, My Sweet",Glad You Came Back Scene,tt0098994 OQjvys5lLk4,1990.0,4,11,2017,"After Dark, My Sweet",You Know Where I'll Be Scene,tt0098994 Br0BUZWEDQg,1990.0,10,11,2017,"After Dark, My Sweet",I've Seen You Scene,tt0098994 bsbgDqKys5g,1990.0,1,11,2017,"After Dark, My Sweet",Bert's Bar Scene,tt0098994 IltqQORdPjY,1990.0,11,11,2017,"After Dark, My Sweet",The Crazy Stuff Scene,tt0098994 dBbxzOOGUqA,1990.0,6,11,2017,"After Dark, My Sweet",That's the Wrong Boy Scene,tt0098994 -CSIqCS1WIk,2005.0,11,11,2017,Fierce People,Caught in the Act Scene,tt0401420 PxKcm6wWUJ0,2005.0,10,11,2017,Fierce People,You Never Want to Kiss Me Scene,tt0401420 2BofOahaB0w,2005.0,8,11,2017,Fierce People,Let's Get High Together Scene,tt0401420 6xmaoTphmLY,2005.0,9,11,2017,Fierce People,Hot Air Balloon Race Scene,tt0401420 jqzTeVVmTvc,2005.0,7,11,2017,Fierce People,Take Off Your Clothes Scene,tt0401420 -XggDv2QdHg,2005.0,6,11,2017,Fierce People,A Eunuch Scene,tt0401420 1IyD0DjLrrc,2005.0,5,11,2017,Fierce People,A Pretty Girl Scene,tt0401420 V5P-1Vedt5E,2005.0,3,11,2017,Fierce People,Bear Trap Scene,tt0401420 rcA0MBnPPM8,2005.0,1,11,2017,Fierce People,The Meanest People in the World Scene,tt0401420 gm-sqEK2InM,2005.0,2,11,2017,Fierce People,Wanna Shotgun? Scene,tt0401420 QlYSFCvUGoI,2013.0,7,10,2017,The Haunting in Connecticut 2,The Station Master Scene,tt1457765 dkDGK_eFw5c,2013.0,8,10,2017,The Haunting in Connecticut 2,Death by Taxidermy Scene,tt1457765 _liUxE_lefE,2013.0,9,10,2017,The Haunting in Connecticut 2,The Station Master's Secret Scene,tt1457765 rb_iLvMVihA,2013.0,6,10,2017,The Haunting in Connecticut 2,Slave Ghosts Scene,tt1457765 UJ12I9sHqK8,2013.0,4,10,2017,The Haunting in Connecticut 2,That's Mr. Gordy Scene,tt1457765 3tbDLfgTAuI,2013.0,5,10,2017,The Haunting in Connecticut 2,Ghosts in the Woods Scene,tt1457765 8dcA5NLO_GQ,2013.0,3,10,2017,The Haunting in Connecticut 2,Mr. Gordy's Gifts Scene,tt1457765 LKVJLiiBlOs,2013.0,10,10,2017,The Haunting in Connecticut 2,Facing the Station Master Scene,tt1457765 I7pOcssa5uE,2013.0,2,10,2017,The Haunting in Connecticut 2,Listen to Your Mother Scene,tt1457765 KgbASFn2Pv8,2013.0,1,10,2017,The Haunting in Connecticut 2,The Old Wreck Scene,tt1457765 GMnwXB4A1iI,2009.0,10,11,2017,The Haunting in Connecticut,Shower Scare Scene,tt0492044 6hfzPfOrftY,2009.0,11,11,2017,The Haunting in Connecticut,Into the Fire Scene,tt0492044 4VaSyU3yfMw,2009.0,4,11,2017,The Haunting in Connecticut,Among the Dead Scene,tt0492044 5Vo99FUjbrc,2009.0,7,11,2017,The Haunting in Connecticut,Night Shock Scene,tt0492044 hK62U-Gm_hI,2009.0,1,11,2017,The Haunting in Connecticut,Things That Go Bump in the Night Scene,tt0492044 MgYmK3cDFq8,2009.0,5,11,2017,The Haunting in Connecticut,Ectoplasm Scene,tt0492044 hfCRzaZuY6s,2009.0,8,11,2017,The Haunting in Connecticut,Vengeful Spirit Scene,tt0492044 AjAJNPCQ1Fs,2009.0,2,11,2017,The Haunting in Connecticut,I'm Not Seeing Things Scene,tt0492044 OYsV5RbHvA4,2009.0,3,11,2017,The Haunting in Connecticut,Eye Opener Scene,tt0492044 EwsHFGh6fkE,2009.0,6,11,2017,The Haunting in Connecticut,Afraid of the Dark Scene,tt0492044 lzJV7k-LiC4,2016.0,10,10,2017,Sing,Just Start ing Scene,tt3470600 UK-vT8iapA8,2016.0,9,10,2017,Sing,I Did It My Way Scene,tt3470600 engSFG20kaA,2016.0,8,10,2017,Sing,Set It All Free Scene,tt3470600 Z2xooz6844k,2016.0,6,10,2017,Sing,Shake It Off Scene,tt3470600 ETC85CgzTHM,2016.0,7,10,2017,Sing,Johnny's Still Standing Scene,tt3470600 bCOc7VCSox4,2016.0,5,10,2017,Sing,Buster's Car Wash Scene,tt3470600 cUT0WQ9cTrg,2016.0,4,10,2017,Sing,Squid Power Scene,tt3470600 WDAlAqy9WUM,2016.0,1,10,2017,Sing,Open the Doors Scene,tt3470600 ukl9qBvRXfc,2016.0,3,10,2017,Sing,"$100,000 Prize Scene",tt3470600 10khF4-1rbU,2016.0,2,10,2017,Sing,Auditions Scene,tt3470600 15gPYqGlkwc,2016.0,10,10,2017,Kubo and the Two Strings,The Most Powerful Magic Scene,tt4302938 q_VK4zsJWNw,2016.0,9,10,2017,Kubo and the Two Strings,All Stories Have an End Scene,tt4302938 Awr5m5-ocv8,2016.0,7,10,2017,Kubo and the Two Strings,You Are My Quest Scene,tt4302938 hKTAeQKaKu0,2016.0,8,10,2017,Kubo and the Two Strings,Tearing Apart the Family Scene,tt4302938 Kdr51Y91SQE,2016.0,5,10,2017,Kubo and the Two Strings,The Hall of Bones Scene,tt4302938 zjdesHuied8,2016.0,6,10,2017,Kubo and the Two Strings,The Battle on the Boat Scene,tt4302938 7Q6ywfDSm_0,2016.0,2,10,2017,Kubo and the Two Strings,The Sinister Sisters Scene,tt4302938 dpKQxs7ashU,2016.0,4,10,2017,Kubo and the Two Strings,A Warrior Beetle Scene,tt4302938 LfL_KOOZvLw,2016.0,1,10,2017,Kubo and the Two Strings,The Legend of Hanzo Scene,tt4302938 Qrl_BpahMRs,2016.0,3,10,2017,Kubo and the Two Strings,Don't Mess With the Monkey Scene,tt4302938 yg42xdVf9mM,2007.0,5,7,2017,Nancy Drew,Birthday Party Emergency Scene,tt0479500 XqwQlCAM3P0,2007.0,7,7,2017,Nancy Drew,Everything Ends Up Okay Scene,tt0479500 rzCeSHk3aVY,2007.0,6,7,2017,Nancy Drew,Escape From a Moving Car Scene,tt0479500 Ece-FTMuKFU,2007.0,2,7,2017,Nancy Drew,You're Awesome Scene,tt0479500 PdzjDn5zVXo,2007.0,4,7,2017,Nancy Drew,I Have to Defuse This Bomb Scene,tt0479500 DjNVqYjp3E4,2007.0,3,7,2017,Nancy Drew,Who Tried to Kill Us? Scene,tt0479500 dXNmLJXEgQU,2007.0,1,7,2017,Nancy Drew,"Hello, I'm Scene",tt0479500 mHRbCgVCbIA,2010.0,6,10,2017,Legend of the Guardians,The Echidna Scene,tt1219342 PSWgZzUr_Yw,2010.0,1,10,2017,Legend of the Guardians,Taken From Home Scene,tt1219342 PD4Gq5GPcN8,2010.0,2,10,2017,Legend of the Guardians,Chasing the Bluebird Scene,tt1219342 raDWhK7iSqU,2010.0,3,10,2017,Legend of the Guardians,Soaring to Safety Scene,tt1219342 q9Wip3v8h40,2010.0,5,10,2017,Legend of the Guardians,Captured by Crows Scene,tt1219342 0YOmyGX2kmQ,2010.0,4,10,2017,Legend of the Guardians,We're Flying! Scene,tt1219342 Xjp16xSdsp0,2010.0,7,10,2017,Legend of the Guardians,Guardian Rescue Scene,tt1219342 3NpYTks1mDI,2010.0,8,10,2017,Legend of the Guardians,To Battle! Scene,tt1219342 n94um7eDILg,2010.0,9,10,2017,Legend of the Guardians,Kludd's Betrayal Scene,tt1219342 hRfF8Kes77E,2010.0,10,10,2017,Legend of the Guardians,The Death of Metal Beak Scene,tt1219342 51reM6wq2XU,2001.0,6,10,2017,A Knight's Tale,Take the Bad With the Good Scene,tt0183790 95N85bGdzw4,2001.0,9,10,2017,A Knight's Tale,Sir William Scene,tt0183790 PVEIr4MGaT8,2001.0,10,10,2017,A Knight's Tale,The Tournament Scene,tt0183790 Nj61hQhTwW0,2001.0,8,10,2017,A Knight's Tale,Do It For Love Scene,tt0183790 1WwlHv69kik,2001.0,7,10,2017,A Knight's Tale,Father and Son Scene,tt0183790 eAC2kNiKuEg,2001.0,1,10,2017,A Knight's Tale,Tournament Training Scene,tt0183790 yygNdTxoHus,2001.0,4,10,2017,A Knight's Tale,A Dance From Gelderland Scene,tt0183790 MBNiDwytFow,2001.0,3,10,2017,A Knight's Tale,Dance Lessons Scene,tt0183790 mXz39lQAEmY,2001.0,5,10,2017,A Knight's Tale,Love Letter Scene,tt0183790 yLFZcXeZymY,2001.0,2,10,2017,A Knight's Tale,My Foxy Lady Scene,tt0183790 gO6qemCFhEU,1955.0,2,10,2017,Abbott and Costello Meet the Mummy,Snake Charmer Scene,tt0047795 2m-I23sWzEI,1955.0,1,10,2017,Abbott and Costello Meet the Mummy,Making a Date Scene,tt0047795 fcFKVVHQn7o,1955.0,3,10,2017,Abbott and Costello Meet the Mummy,Finding the Medallion Scene,tt0047795 kOe-yLCbA4E,1955.0,6,10,2017,Abbott and Costello Meet the Mummy,Pickpockets Scene,tt0047795 -utei4CzIzc,1955.0,4,10,2017,Abbott and Costello Meet the Mummy,Selling the Medallion Scene,tt0047795 Yg6sZ2htZfc,1955.0,5,10,2017,Abbott and Costello Meet the Mummy,The Medallion of Death Scene,tt0047795 CECosJ9_6MI,1955.0,8,10,2017,Abbott and Costello Meet the Mummy,Pick the Pick Scene,tt0047795 4WibEcqn1c8,1955.0,9,10,2017,Abbott and Costello Meet the Mummy,Mummies Everywhere Scene,tt0047795 i_rch_cy7dM,1955.0,7,10,2017,Abbott and Costello Meet the Mummy,You Can Come Out Now Scene,tt0047795 GRADFiFVLJQ,1955.0,10,10,2017,Abbott and Costello Meet the Mummy,Opening Night Scene,tt0047795 b6vOp7_rI6Q,2015.0,3,10,2017,The Witch,Witch of the Wood Scene,tt4263482 iBptyagVaEQ,2015.0,10,10,2017,The Witch,I Will Guide Thy Hand Scene,tt4263482 LxAebgxJHyg,2015.0,8,10,2017,The Witch,Black Phillip's Revenge Scene,tt4263482 ALhR_LDm5Is,2015.0,9,10,2017,The Witch,Matricide Scene,tt4263482 YjJ2tMg4tTA,2015.0,6,10,2017,The Witch,Take Me to Thy Lap Scene,tt4263482 oS_Iap5D9jQ,2015.0,7,10,2017,The Witch,Black Magic Madness Scene,tt4263482 AE4RhPMAtp0,2015.0,2,10,2017,The Witch,Black Phillip Scene,tt4263482 atQYOl5KL-o,2015.0,4,10,2017,The Witch,Witch's Lair Scene,tt4263482 u7DV5coBXSA,2015.0,1,10,2017,The Witch,Peek-a-Boo Scene,tt4263482 aSajnx9QK-0,2015.0,5,10,2017,The Witch,The Apple Scene,tt4263482 cMmi5sRe8wc,2002.0,8,8,2017,Ghost Ship,Sinking the Ship Scene,tt0288477 n3D3JTzaiwA,2002.0,6,8,2017,Ghost Ship,Arctic Warrior Explodes Scene,tt0288477 RdTIzSuw-nI,2002.0,7,8,2017,Ghost Ship,Fighting Dead Friends Scene,tt0288477 hqhm_-sWbFg,2002.0,5,8,2017,Ghost Ship,Don't Go in There Scene,tt0288477 saTBYjmhcok,2002.0,1,8,2017,Ghost Ship,The Antonia Graza Scene,tt0288477 13wgcygv86Q,2002.0,2,8,2017,Ghost Ship,Be Careful Where You Step Scene,tt0288477 V5hfxgrLuoU,2002.0,3,8,2017,Ghost Ship,Death in the Water Scene,tt0288477 yNhbLL3Xvcw,2002.0,4,8,2017,Ghost Ship,A Box of Rats Scene,tt0288477 7Fj5JAYfWVc,1988.0,6,10,2017,Ghoulies II,Man vs. Ghoulie Scene,tt0093091 bd0IiiCDDGI,1988.0,2,10,2017,Ghoulies II,My Little Muffy Scene,tt0093091 PwgxGA6pLhc,1988.0,1,10,2017,Ghoulies II,Hitching a Ride Scene,tt0093091 vzzuOkCkHlQ,1988.0,3,10,2017,Ghoulies II,Slimed in Satan's Den Scene,tt0093091 N-ZFty2-G7I,1988.0,4,10,2017,Ghoulies II,Tortured Scene,tt0093091 T2ph28ghuEU,1988.0,9,10,2017,Ghoulies II,Conjuring a Giant Ghoulie Scene,tt0093091 D4HGK-_5TkY,1988.0,5,10,2017,Ghoulies II,You Can't Kill a Magician Scene,tt0093091 H_sYBmKxmvs,1988.0,7,10,2017,Ghoulies II,Dunk Tank Scene,tt0093091 Y4SSkX4sRMQ,1988.0,8,10,2017,Ghoulies II,Ghoulie in the Toilet Scene,tt0093091 H1TQv3qA7PI,1988.0,10,10,2017,Ghoulies II,Molotov Cocktail Scene,tt0093091 ZG60oroE7AI,2004.0,7,11,2017,Dumplings,I Don't Want to Die Scene,tt0472458 6bxX5ZV1qn0,2004.0,6,11,2017,Dumplings,Now You Need Me Scene,tt0472458 gLWaU-LKIwQ,2004.0,10,11,2017,Dumplings,The First Taste Scene,tt0472458 T535zq4Kpt8,2004.0,3,11,2017,Dumplings,You Promised to Stay Scene,tt0472458 n03zeBpWC0M,2004.0,9,11,2017,Dumplings,A Cursed Child Scene,tt0472458 8QPhWhQ6zS8,2004.0,8,11,2017,Dumplings,A Strange Smell Scene,tt0472458 qC7HofT0v4g,2004.0,11,11,2017,Dumplings,I Want Your Baby Scene,tt0472458 9-_TcYrv2YU,2004.0,2,11,2017,Dumplings,I Cleansed Them Scene,tt0472458 pjKnwaYJi6Y,2004.0,5,11,2017,Dumplings,The Most Nutritious Scene,tt0472458 OwDRBPO9eKw,2004.0,1,11,2017,Dumplings,Secret Exchange Scene,tt0472458 LYBdGadPNz8,2004.0,4,11,2017,Dumplings,We Can't Keep the Child Scene,tt0472458 1Jk8IZYcxmQ,2016.0,3,10,2017,Sausage Party,Firewater's Truth Scene,tt1700841 g7bQ7ynurn8,2016.0,5,10,2017,Sausage Party,I Would Do Anything for Love Scene,tt1700841 SWl87YF_hHQ,2016.0,9,10,2017,Sausage Party,Make It Rain Scene,tt1700841 VcnAtRLJS84,2016.0,2,10,2017,Sausage Party,Bagel vs. Lavash Scene,tt1700841 vmynulColPI,2016.0,8,10,2017,Sausage Party,The Gods Can Be Killed Scene,tt1700841 DI5t1Bxfy90,2016.0,10,10,2017,Sausage Party,The Fruits Attack Scene,tt1700841 4pSAjI9lOGY,2016.0,7,10,2017,Sausage Party,The Great Beyond is B.S. Scene,tt1700841 YKZRedzkeU8,2016.0,6,10,2017,Sausage Party,"Not Tweaking, Just Peaking Scene",tt1700841 iqZmwwUvgVU,2016.0,4,10,2017,Sausage Party,We're All Gonna Die! Scene,tt1700841 MvIqR1cMbv0,2016.0,1,10,2017,Sausage Party,The Great Beyond Song Scene,tt1700841 bxxHPYFtbE4,1997.0,5,7,2017,Fathers' Day,Big Trouble Scene,tt0119109 q_y6O1yflZI,1997.0,7,7,2017,Fathers' Day,Sugar Ray & the German Producer Scene,tt0119109 44BkOqV2jDc,1997.0,1,7,2017,Fathers' Day,I'm Your Dad Scene,tt0119109 H79X1JQ_S30,1997.0,3,7,2017,Fathers' Day,What Is Going On? Scene,tt0119109 HQCava8QqK8,1997.0,2,7,2017,Fathers' Day,Bridge Anxiety Scene,tt0119109 XNUers0BuD4,1997.0,6,7,2017,Fathers' Day,Sexy Wife Scene,tt0119109 qHA5R-Q1Od8,1997.0,4,7,2017,Fathers' Day,Parents Screw Up Sometimes Scene,tt0119109 1I2xNdoQXM4,1991.0,8,10,2017,Doc Hollywood,I Hate a Tight Hat Scene,tt0101745 hQIL99lP484,1991.0,9,10,2017,Doc Hollywood,Roadside Delivery Scene,tt0101745 Qc3voNxG1NM,1991.0,5,10,2017,Doc Hollywood,Hee Haw Hell Scene,tt0101745 SUfo49TsWOQ,1991.0,6,10,2017,Doc Hollywood,Panties Are Optional Scene,tt0101745 1eN1O1j3LcY,1991.0,10,10,2017,Doc Hollywood,The Halberstrom Clinic Scene,tt0101745 CpIgfRGUpU0,1991.0,2,10,2017,Doc Hollywood,A Permanent Position Scene,tt0101745 I0jOVXcnjdg,1991.0,1,10,2017,Doc Hollywood,Wrecked Fence Scene,tt0101745 xMjEmE1YLSU,1991.0,4,10,2017,Doc Hollywood,"Nice Work, Hollywood Scene",tt0101745 vp7r-h8OLm0,1991.0,7,10,2017,Doc Hollywood,Peeing in the Woods Scene,tt0101745 jmuC1ebmYQg,1991.0,3,10,2017,Doc Hollywood,I'm Cured Scene,tt0101745 Tv5BC6yJ61o,1990.0,10,10,2017,Awakenings,The Simplest Things Scene,tt0099077 XtL5tGpGIN8,1990.0,9,10,2017,Awakenings,I Won't See You Anymore Scene,tt0099077 q-nQtR-WbIs,1990.0,8,10,2017,Awakenings,Don't Give Up on Me Scene,tt0099077 fZflzybv5T0,1990.0,3,10,2017,Awakenings,We're Talking About Money Scene,tt0099077 2yZlrJWBLac,1990.0,7,10,2017,Awakenings,The Drug Isn't Working Scene,tt0099077 vKhAdR1G9io,1990.0,6,10,2017,Awakenings,You Woke A Person Scene,tt0099077 OxKXKwijH_g,1990.0,5,10,2017,Awakenings,Remind Them How Good It Is Scene,tt0099077 Hj52vD7KGxs,1990.0,1,10,2017,Awakenings,The Will of the Ball Scene,tt0099077 kS_QskTI8WI,1990.0,2,10,2017,Awakenings,You're Awake Scene,tt0099077 fNjMYPeG8IU,1990.0,4,10,2017,Awakenings,The Strangest Dream Scene,tt0099077 VEsvArkVtYQ,1989.0,9,9,2017,Dream a Little Dream,Under the Gun Scene,tt0097236 JIvq1ObEOrs,1989.0,6,9,2017,Dream a Little Dream,Dancing the Dream Scene,tt0097236 _cZ-D5Q-26M,1989.0,7,9,2017,Dream a Little Dream,Bobby Gets Beat Up Scene,tt0097236 415kITLNgvg,1989.0,8,9,2017,Dream a Little Dream,The Dance Scene,tt0097236 qlyJNTOwkAI,1989.0,1,9,2017,Dream a Little Dream,The Accident Scene,tt0097236 oOBu3uqpW1A,1989.0,5,9,2017,Dream a Little Dream,Wake Up Scene,tt0097236 _WE7Il9dZCE,1989.0,4,9,2017,Dream a Little Dream,Willing to Believe Scene,tt0097236 7LoHCPOvmuo,1989.0,2,9,2017,Dream a Little Dream,Welcome to Dreamland Scene,tt0097236 mHgXG0tmomg,1989.0,3,9,2017,Dream a Little Dream,Another First Day Scene,tt0097236 D3fVS2I9ZVM,2015.0,9,10,2017,Extraction,Sorry Scene,tt4382872 X0d8qyjQ20M,2015.0,10,10,2017,Extraction,I Like Complicated Scene,tt4382872 SJdUJZ7odoU,2015.0,8,10,2017,Extraction,For Your Mother Scene,tt4382872 UBnufwe-p_c,2015.0,5,10,2017,Extraction,You're Crazy Scene,tt4382872 n1GlWng3oOQ,2015.0,6,10,2017,Extraction,The CIA Gave Up My Cover Scene,tt4382872 aDZSH05DM_c,2015.0,7,10,2017,Extraction,Condor Activated Scene,tt4382872 E67jk75CRWM,2015.0,1,10,2017,Extraction,You Look Stupid With That Pen in Your Neck Scene,tt4382872 ArGWpUHkEmc,2015.0,4,10,2017,Extraction,Bathroom Assassin Scene,tt4382872 o3ya6zEv3eM,2015.0,2,10,2017,Extraction,He's Been Training For Years Scene,tt4382872 0mjSZpCpsdc,2015.0,3,10,2017,Extraction,Biker Bar Brawl Scene,tt4382872 xMoCoTO3d-Y,2014.0,8,10,2017,American Heist,Buying Time Scene,tt2923316 oEddtexPCso,2014.0,5,10,2017,American Heist,The Bank Robbery Scene,tt2923316 QmEz0udgJsA,2014.0,10,10,2017,American Heist,Not a Hostage Scene,tt2923316 2OrlbOFhcUs,2014.0,9,10,2017,American Heist,Frankie's Sacrifice Scene,tt2923316 wytpJXfw86w,2014.0,7,10,2017,American Heist,Not Without Frankie Scene,tt2923316 MMxE41xM9ic,2014.0,6,10,2017,American Heist,Robbery Gone Wrong Scene,tt2923316 kPXFWplmSyA,2014.0,1,10,2017,American Heist,It's Been Ten Years Scene,tt2923316 NufzJ2YVJB4,2014.0,3,10,2017,American Heist,They Broke Me Scene,tt2923316 wkoHQdbhfOc,2014.0,4,10,2017,American Heist,Me and You Against the World Scene,tt2923316 sRUb0GR0ZiE,2014.0,2,10,2017,American Heist,You're Complicit Scene,tt2923316 iAzMFB3QaBk,2014.0,6,10,2017,Tell,Blackmail and Gay Porn Scene,tt4195278 5gtFQegr2xA,2014.0,3,10,2017,Tell,God Where the Money Is Scene,tt4195278 ToF0U78xIyA,2014.0,5,10,2017,Tell,Shooting the Safe Scene,tt4195278 tXF23iSwW3I,2014.0,1,10,2017,Tell,The Robbery Scene,tt4195278 9u6xaK00otk,2014.0,10,10,2017,Tell,Just Aunt Beverly Scene,tt4195278 oOWl14GlJx4,2014.0,9,10,2017,Tell,'s Trick Scene,tt4195278 h5KBS20Ke6U,2014.0,4,10,2017,Tell,You Just Killed Me For No Reason Scene,tt4195278 ye38FmLnLBo,2014.0,2,10,2017,Tell,Something Came Over Me Scene,tt4195278 pzZ9UdUTRNA,2014.0,7,10,2017,Tell,Anything But This Scene,tt4195278 8OS1xorvbAs,2014.0,8,10,2017,Tell,Us Where the Money Is Scene,tt4195278 poU8QxFJjbo,2015.0,10,10,2017,Mercenary: Absolution,Up Close and Personal Scene,tt3503840 2uZV27BttLM,2015.0,1,10,2017,Mercenary: Absolution,Erasing Liabilities Scene,tt3503840 1BS3mo_yHvY,2015.0,9,10,2017,Mercenary: Absolution,I Wanna Kill You Scene,tt3503840 G77UaCXuoOs,2015.0,8,10,2017,Mercenary: Absolution,Don't Say I Never Did Nothing for You Scene,tt3503840 HYog4UvM1zI,2015.0,6,10,2017,Mercenary: Absolution,Escaping with the Evidence Scene,tt3503840 gUKbFeHjYX8,2015.0,7,10,2017,Mercenary: Absolution,Nadia's Revenge Scene,tt3503840 hM1OunX-QBg,2015.0,2,10,2017,Mercenary: Absolution,Leave Her Alone Scene,tt3503840 gxsDfmzU-Lo,2015.0,4,10,2017,Mercenary: Absolution,The Wrong Kind of People Scene,tt3503840 k2-SBnbz7pE,2015.0,5,10,2017,Mercenary: Absolution,Who's the Boss? Scene,tt3503840 MkNhAG2CUso,2015.0,3,10,2017,Mercenary: Absolution,For My Own Absolution Scene,tt3503840 yMe-7hW4evU,2014.0,10,10,2017,Mercenaries,Big Women Fall Hard Scene,tt3598222 WK_rWzm86RI,2014.0,9,10,2017,Mercenaries,Evasive Driving and Clear Shooting Scene,tt3598222 VlCkdkzOwFk,2014.0,7,10,2017,Mercenaries,One Woman Army Scene,tt3598222 vpTj6-4d5qA,2014.0,8,10,2017,Mercenaries,Like a Poodle Scene,tt3598222 acVDpeSHw44,2014.0,5,10,2017,Mercenaries,It's Go Time Scene,tt3598222 ZFGBlZw2kIM,2014.0,6,10,2017,Mercenaries,A Change in Plans Scene,tt3598222 VHF31ybakiM,2014.0,1,10,2017,Mercenaries,Kidnapping the President's Daughter Scene,tt3598222 fbnpdWhOwIs,2014.0,2,10,2017,Mercenaries,Uncle Sam Wants You Scene,tt3598222 SEtuhB8LEZU,2014.0,3,10,2017,Mercenaries,Don't Sample the Merchandise Scene,tt3598222 HuUhj-abydY,2014.0,4,10,2017,Mercenaries,Ulrika's Ultimatum Scene,tt3598222 djTx7slpfHI,2014.0,10,10,2017,See No Evil 2,Death by Embalming Fluid Scene,tt3106120 gmnU4tK8GOo,2014.0,9,10,2017,See No Evil 2,Nobody's Safe Scene,tt3106120 OS0rZQtDsoc,2014.0,6,10,2017,See No Evil 2,Run Scene,tt3106120 sfCQQLSwz3s,2014.0,8,10,2017,See No Evil 2,Electric Knife Scene,tt3106120 N-v-x6qmtcc,2014.0,5,10,2017,See No Evil 2,I See the Sin on You Scene,tt3106120 g9hEJv2uZLM,2014.0,7,10,2017,See No Evil 2,Will vs. Jacob Scene,tt3106120 kBTPEpA8BzU,2014.0,4,10,2017,See No Evil 2,Trapped in the Dark Scene,tt3106120 ymShdFJoqiw,2014.0,1,10,2017,See No Evil 2,Hot and Cold Scene,tt3106120 YRdXmtGnwCI,2014.0,3,10,2017,See No Evil 2,Goodnight Returns Scene,tt3106120 29D9SkdtVBU,2014.0,2,10,2017,See No Evil 2,Sex and Death Scene,tt3106120 KY-bRBsLLtA,2007.0,6,10,2017,Dead Wood,Seduction and Death Scene,tt1043791 HBPQtYCDKrk,2007.0,10,10,2017,Dead Wood,Killing the Forest Spirit Scene,tt1043791 -wqnmuzG51c,2007.0,7,10,2017,Dead Wood,Specters in the Woods Scene,tt1043791 Fecoe2kJdD0,2007.0,8,10,2017,Dead Wood,Bleeding Horror Scene,tt1043791 LRHNkBU6YWw,2007.0,9,10,2017,Dead Wood,Becoming a Tree Scene,tt1043791 RxEkm4dDAL4,2007.0,5,10,2017,Dead Wood,Skinny Dipping Threeway Scene,tt1043791 -KW0wz1xBfw,2007.0,1,10,2017,Dead Wood,Death Force Chase Scene,tt1043791 kTUnQubJMoc,2007.0,2,10,2017,Dead Wood,Strangling a Deer Scene,tt1043791 lcIuJs1vHrg,2007.0,4,10,2017,Dead Wood,Sex and Scares Scene,tt1043791 UiQdZRBhBAE,2007.0,3,10,2017,Dead Wood,Swarm of Bees Scene,tt1043791 1YrP2ICd6ro,2006.0,4,10,2017,Beyond the Wall of Sleep,Eldritch Horror Acid Trip Scene,tt0279688 SdFZEeR8a2s,2006.0,5,10,2017,Beyond the Wall of Sleep,Gore-Soaked Delirium Scene,tt0279688 _eyLdmCxtPo,2006.0,3,10,2017,Beyond the Wall of Sleep,Cadaver Sex Toy Scene,tt0279688 BWR9aK0vAAY,2006.0,6,10,2017,Beyond the Wall of Sleep,Skull Drilling Scene,tt0279688 2UK1aSp3bUY,2006.0,2,10,2017,Beyond the Wall of Sleep,Electrotherapy Orgasm Scene,tt0279688 nWd-gLPa5fs,2006.0,1,10,2017,Beyond the Wall of Sleep,I Wake With Bad Things Scene,tt0279688 4UOnDFoEPUQ,2006.0,7,10,2017,Beyond the Wall of Sleep,Ring Around the Rosy Scene,tt0279688 ti39GhRZkrw,2006.0,8,10,2017,Beyond the Wall of Sleep,Conduit of Brains Scene,tt0279688 1dLZuGiJRXA,2006.0,10,10,2017,Beyond the Wall of Sleep,H. P. Lovecraft Cameo Scene,tt0279688 Tp9iK2u30qQ,2006.0,9,10,2017,Beyond the Wall of Sleep,Summoning the Horror Scene,tt0279688 -Nj1XUtmKDo,2012.0,3,10,2017,The Haunting of Whaley House,Come and Get Me Scene,tt2396701 sG_cgDlDyEg,2012.0,7,10,2017,The Haunting of Whaley House,Come Out Wherever You Are Scene,tt2396701 iaxDwgBzVFk,2012.0,9,10,2017,The Haunting of Whaley House,"Come Home, Sweetie Scene",tt2396701 eYt5GYOLjNI,2012.0,10,10,2017,The Haunting of Whaley House,The Cries of a Ghost Scene,tt2396701 j4W7FAGrpiQ,2012.0,8,10,2017,The Haunting of Whaley House,You Deserve to Die Scene,tt2396701 EnAegC2mT8I,2012.0,4,10,2017,The Haunting of Whaley House,"He Died Bad, He Stayed Bad Scene",tt2396701 LiZ_h3tUmMs,2012.0,5,10,2017,The Haunting of Whaley House,"Never Fear, the Cops are Here Scene",tt2396701 m2yxUTpM3IQ,2012.0,6,10,2017,The Haunting of Whaley House,This is My House Scene,tt2396701 eret8dNSTqo,2012.0,1,10,2017,The Haunting of Whaley House,Happy to Oblige Scene,tt2396701 pRlsbwGqx8g,2012.0,2,10,2017,The Haunting of Whaley House,Unlucky Penny Scene,tt2396701 9GBxXdJBSPU,2012.0,9,10,2017,Hold Your Breath,"Two Ghosts, One Host Scene",tt2240312 bvEJjjYbgtk,2012.0,10,10,2017,Hold Your Breath,Hello Gorgeous Scene,tt2240312 1UtDbLZsJ4Q,2012.0,7,10,2017,Hold Your Breath,Eye Beaters Scene,tt2240312 ZsDOHhqqLCQ,2012.0,6,10,2017,Hold Your Breath,Jerry is Possessed Scene,tt2240312 jzxMo2UKUKM,2012.0,8,10,2017,Hold Your Breath,Ghost Battle Scene,tt2240312 a6cUudbbHl0,2012.0,5,10,2017,Hold Your Breath,Did You ? Scene,tt2240312 vmOBZjVBCUo,2012.0,3,10,2017,Hold Your Breath,Jump Start Your Death Scene,tt2240312 QPaP-XRQeM8,2012.0,1,10,2017,Hold Your Breath,Van Claus' Last Words Scene,tt2240312 15XqLhQ0_Oo,2012.0,2,10,2017,Hold Your Breath,A Suspicion of Possession Scene,tt2240312 a2ZdXUZt3iw,2012.0,4,10,2017,Hold Your Breath,You Almost Killed Me Scene,tt2240312 yquyze0QbPk,2015.0,3,11,2017,Freeheld,Happy Domestic Partnership Day Scene,tt1658801 mdgbtrpVBm8,2015.0,5,11,2017,Freeheld,Not My Roommate Scene,tt1658801 YjbYhnnEDRo,2015.0,1,11,2017,Freeheld,You Should Come Home With Me Scene,tt1658801 PQbyl1vsn1o,2015.0,2,11,2017,Freeheld,I Thought I'd Never Survive It Scene,tt1658801 rqKaJ4Yp_oU,2015.0,4,11,2017,Freeheld,Tire Rotation Competition Scene,tt1658801 QDroSLQiSRI,2015.0,8,11,2017,Freeheld,Trying to Buy a Little Time Scene,tt1658801 Hgee-O7ZAnY,2015.0,9,11,2017,Freeheld,You Have the Power Scene,tt1658801 NrhBIkWlIfA,2015.0,11,11,2017,Freeheld,The Motion is Passed Scene,tt1658801 1rJ_NvTBOmc,2015.0,7,11,2017,Freeheld,An Opportunity to Change the World Scene,tt1658801 0Cufl5Gao98,2015.0,10,11,2017,Freeheld,Political Theater Scene,tt1658801 PqOlbM-zmuI,2016.0,9,10,2017,Central Intelligence,See You on the Other Side Scene,tt1489889 VPOd_Y2qFJk,2016.0,10,10,2017,Central Intelligence,Hero of Your Own Story Scene,tt1489889 M3Jts1DPcWk,2016.0,8,10,2017,Central Intelligence,Grabbing the Codes Scene,tt1489889 BbyMGiPjDOw,2016.0,7,10,2017,Central Intelligence,One Regret in Life Scene,tt1489889 YjfLp0bll5U,2016.0,6,10,2017,Central Intelligence,I Did the Thing! Scene,tt1489889 ssxqmxjrx2c,2016.0,4,10,2017,Central Intelligence,Marriage Counseling Scene,tt1489889 3SsvC_2wKI0,2016.0,5,10,2017,Central Intelligence,"Once a Fat Kid, Always a Fat Kid Scene",tt1489889 yVRmafc7cqQ,2015.0,6,11,2017,Freeheld,It Offends Traditional Values Scene,tt1658801 MNQQS7QR9Vo,2016.0,2,10,2017,Central Intelligence,Stop Including Me! Scene,tt1489889 bdJPnMKhsnY,2016.0,1,10,2017,Central Intelligence,I Don't Like Bullies Scene,tt1489889 M4YOZHoDSyg,2016.0,3,10,2017,Central Intelligence,Time's Up Scene,tt1489889 DxdOJYRdABY,2013.0,7,11,2017,The Inevitable Defeat of Mister and Pete,Hate Your Mom Scene,tt2113075 NOACyJ1CYfo,2016.0,9,10,2017,The Boss,A Literal Sword Fight Scene,tt2702724 hAbVFxYi_q0,2016.0,4,10,2017,The Boss,Dandelion Meeting Scene,tt2702724 aHQQs4D3krU,2016.0,10,10,2017,The Boss,Don't Make Out With the Sociopath Scene,tt2702724 xRw3fodr6jY,2016.0,8,10,2017,The Boss,Plan B Scene,tt2702724 mG_G5waoSeo,2016.0,5,10,2017,The Boss,Darlings vs. Dandelions Scene,tt2702724 odvIh7iwK2E,2016.0,6,10,2017,The Boss,Jostling Each Other's Bosoms Scene,tt2702724 Eb9WH9OiKn8,2016.0,7,10,2017,The Boss,The Closest Thing to a Family Scene,tt2702724 ZLmRWzBjbtU,2016.0,3,10,2017,The Boss,"Get It Together, Michelle Scene",tt2702724 i1igdJh44yU,2016.0,1,10,2017,The Boss,The 47th Richest Woman in America Scene,tt2702724 sm5Zgj8kjD8,2015.0,10,10,2017,Miss You Already,The Bar Upstairs Scene,tt2245003 YRruOzr9_w0,2016.0,2,10,2017,The Boss,Who's On My Baseball? Scene,tt2702724 EuZM3sfjqno,2015.0,9,10,2017,Miss You Already,You Can Have That Baby Now Scene,tt2245003 opyh8AAgisI,2015.0,5,10,2017,Miss You Already,Even Your Scars Are Beautiful Scene,tt2245003 jzhXtCHYrAM,2015.0,7,10,2017,Miss You Already,I'm Legally Blind Also Scene,tt2245003 qR9MgJkOFJ0,2015.0,8,10,2017,Miss You Already,Last Wishes Scene,tt2245003 dZmGh0bXqqw,2015.0,4,10,2017,Miss You Already,Visiting the Moors Scene,tt2245003 fuwfQJrMgLI,2015.0,3,10,2017,Miss You Already,Surprise Birthday Party Scene,tt2245003 pKHAhc31MOI,2015.0,6,10,2017,Miss You Already,This One Takes the Biscuit Scene,tt2245003 HLTpxttylTM,2015.0,1,10,2017,Miss You Already,I'm Gonna Be Bald Scene,tt2245003 DLb9vR3Zu3g,2015.0,2,10,2017,Miss You Already,My Tits Died Scene,tt2245003 iJ_DrM05hp4,2014.0,10,10,2017,She's Funny That Way,You Changed My Life Scene,tt1767372 DcpIpj7RbxQ,2014.0,9,10,2017,She's Funny That Way,Jane's Fed Up Scene,tt1767372 m9aEg5dlFOI,2014.0,7,10,2017,She's Funny That Way,Twice in a Night Scene,tt1767372 91nX46JsnlU,2014.0,5,10,2017,She's Funny That Way,Squirrels to the Nuts Scene,tt1767372 uBP8cPLPWrQ,2014.0,6,10,2017,She's Funny That Way,Nobody Has Me Scene,tt1767372 7-H5Yu3_Py8,2014.0,8,10,2017,She's Funny That Way,Shut Up and Kiss Me Scene,tt1767372 KTxT13DzNsc,2014.0,4,10,2017,She's Funny That Way,Awkward Dinner Scene,tt1767372 TknTP23YYFI,2014.0,3,10,2017,She's Funny That Way,Call Girl Audition Scene,tt1767372 Cu5F2Z9mKmo,2014.0,2,10,2017,She's Funny That Way,Therapy Works Scene,tt1767372 bkhUe1txLoc,2014.0,1,10,2017,She's Funny That Way,Even a Muse Needs a Muse Scene,tt1767372 TmFKGDfxH_4,2013.0,10,11,2017,The Inevitable Defeat of Mister and Pete,The Audition Scene,tt2113075 8z4QVBaCAJM,2013.0,11,11,2017,The Inevitable Defeat of Mister and Pete,Mom Returns Scene,tt2113075 djpX32_UUvc,2013.0,9,11,2017,The Inevitable Defeat of Mister and Pete,You Seen My Mom? Scene,tt2113075 ZYB22miPyjY,2013.0,8,11,2017,The Inevitable Defeat of Mister and Pete,Kissing Alice Scene,tt2113075 zpccIJubm5g,2013.0,6,11,2017,The Inevitable Defeat of Mister and Pete,I Make This Look Good Scene,tt2113075 mZmMhrrh5vs,2013.0,2,11,2017,The Inevitable Defeat of Mister and Pete,What's Your Problem? Scene,tt2113075 WIQhvHsTDU8,2013.0,3,11,2017,The Inevitable Defeat of Mister and Pete,Riding with Alice Scene,tt2113075 piJUrPp2U2Q,2013.0,5,11,2017,The Inevitable Defeat of Mister and Pete,You Promised Scene,tt2113075 pduwe6sUsu4,2013.0,1,11,2017,The Inevitable Defeat of Mister and Pete,Eat Your Cheeseburger Scene,tt2113075 ZNo6GHJYrFc,2013.0,4,11,2017,The Inevitable Defeat of Mister and Pete,Hiding From the Police Scene,tt2113075 LW8M-U3Q8ug,2016.0,7,10,2017,Exposed,Have You Ever Been Sodomized? Scene,tt4019560 yB1w-AypA_s,2016.0,8,10,2017,Exposed,"Game Over, Playboy Scene",tt4019560 --ABd2SeIGE,2016.0,3,10,2017,Exposed,Killed in Action Scene,tt4019560 3nVP-DM1egA,2016.0,5,10,2017,Exposed,I'm Pregnant Scene,tt4019560 lOJnFwgpcMQ,2016.0,9,10,2017,Exposed,The Truth About That Night Scene,tt4019560 sMjmQzP9D6o,2016.0,10,10,2017,Exposed,He Hurt Elisa Scene,tt4019560 UJQvNi4m4LM,2016.0,6,10,2017,Exposed,Joey Wasn't No Choir Boy Scene,tt4019560 TZdCMfr0Um8,2016.0,4,10,2017,Exposed,Taking Elisa Home Scene,tt4019560 nlJqcYb65o0,2016.0,1,10,2017,Exposed,The Floating Man Scene,tt4019560 ZW-xfRn8vFY,2016.0,2,10,2017,Exposed,Frightening Phantoms Scene,tt4019560 LagXmjL6EeM,2014.0,9,10,2017,Dying of the Light,"Salaam Alaikum, A**hole Scene",tt1274586 IAb5uq3GzZI,2014.0,10,10,2017,Dying of the Light,Values Scene,tt1274586 -wSqiksvdD8,2014.0,8,10,2017,Dying of the Light,Was it Worth it? Scene,tt1274586 DCThJoIT-bY,2014.0,7,10,2017,Dying of the Light,How Will You Kill Me? Scene,tt1274586 WdzNa6wmtpw,2014.0,5,10,2017,Dying of the Light,Cutting Loose Ends Scene,tt1274586 roLboEc4M-w,2014.0,6,10,2017,Dying of the Light,He's Made His Choice Scene,tt1274586 tOcnYAE2i4Q,2014.0,1,10,2017,Dying of the Light,Frontotemporal Dementia Scene,tt1274586 yLtC-gH6ktw,2014.0,4,10,2017,Dying of the Light,I Got Anxious Scene,tt1274586 rA69NDoXRhI,2014.0,3,10,2017,Dying of the Light,What's Left of My Time Scene,tt1274586 9VY3OKScxP4,2014.0,2,10,2017,Dying of the Light,I Resign! Scene,tt1274586 1PkqpkQQmwg,2016.0,6,10,2017,The Huntsman: Winter's War,Worthy of Each Other Scene,tt2381991 1m8Ac21hxO4,2016.0,1,10,2017,The Huntsman: Winter's War,Freya's Icy Heart Scene,tt2381991 QM8StMC7V6Y,2016.0,2,10,2017,The Huntsman: Winter's War,A Wall of Ice Scene,tt2381991 32iBCneCYcI,2016.0,5,10,2017,The Huntsman: Winter's War,I Never Miss Scene,tt2381991 izP8mDH8XOc,2016.0,4,10,2017,The Huntsman: Winter's War,The Goblin Scene,tt2381991 AxhQq_-31FY,2016.0,3,10,2017,The Huntsman: Winter's War,Saved By Sara Scene,tt2381991 2BaBf4EEO10,2016.0,10,10,2017,The Huntsman: Winter's War,Conquering the Queen Scene,tt2381991 aPdLYN69cfE,2016.0,9,10,2017,The Huntsman: Winter's War,The Stronger Sister Scene,tt2381991 TZ9xan53wuA,2016.0,8,10,2017,The Huntsman: Winter's War,I've Missed You Scene,tt2381991 XWAuh7S1zjk,2016.0,7,10,2017,The Huntsman: Winter's War,Kill Him Scene,tt2381991 FU0HEv8SNrs,2009.0,9,10,2017,Dragonquest,She Has Failed You Scene,tt1353997 zATNPZTinmM,2009.0,10,10,2017,Dragonquest,Arkadi's Magic Scene,tt1353997 DflN8U5mO00,2009.0,7,10,2017,Dragonquest,Breathe in the Darkness Scene,tt1353997 98O6geBet-w,2009.0,6,10,2017,Dragonquest,Rewarding Rigor Scene,tt1353997 SormU7hbgk0,2009.0,8,10,2017,Dragonquest,My Name is Maxim Scene,tt1353997 wXzgVOU3Yrs,2009.0,5,10,2017,Dragonquest,The Bathing Beauty Scene,tt1353997 tMQjzrxE2Kc,2009.0,4,10,2017,Dragonquest,A Medieval Stoner No More Scene,tt1353997 UjjSZfAe8sE,2009.0,1,10,2017,Dragonquest,Arkadi's Destiny Scene,tt1353997 MwdekXx-4ls,2009.0,3,10,2017,Dragonquest,Meeting Maxim Scene,tt1353997 ORQ7CGUilMs,2009.0,2,10,2017,Dragonquest,For the Keeper Scene,tt1353997 6lv7o-rzkWM,2011.0,3,10,2017,Dragon Crusaders,'Tis A Revenant Scene,tt1999141 ZvytnyM6lRY,2011.0,10,10,2017,Dragon Crusaders,Dragon vs. Gargoyle Scene,tt1999141 aiN0_53Rwjg,2011.0,6,10,2017,Dragon Crusaders,Your Time Has Come Scene,tt1999141 DkpNYjgUlhw,2011.0,7,10,2017,Dragon Crusaders,"Less Haste, More Explosions Scene",tt1999141 ukZg66d96_Q,2011.0,9,10,2017,Dragon Crusaders,Dodging the Dragon Scene,tt1999141 zksgFqKxbVY,2011.0,8,10,2017,Dragon Crusaders,Don't Look Down Scene,tt1999141 P1R_JOEIMS4,2011.0,2,10,2017,Dragon Crusaders,He's Gone Mad! Scene,tt1999141 -O7sJe9k8w0,2011.0,1,10,2017,Dragon Crusaders,The Curse of Anathor Scene,tt1999141 kjMmwtxIRbg,2011.0,5,10,2017,Dragon Crusaders,Maldwyn's Metamorphosis Scene,tt1999141 ZN_59UzKu-8,2011.0,4,10,2017,Dragon Crusaders,Kill Me Scene,tt1999141 1DGrM6qhZHY,2008.0,2,12,2017,Dark Floors,They Can't See Me Scene,tt0985025 bdJcCwoJ4KQ,2008.0,1,12,2017,Dark Floors,Elevator to Nowhere Scene,tt0985025 rKUEBIPe5F8,2008.0,12,12,2017,Dark Floors,Light vs. Darkness Scene,tt0985025 hMbcMlAVxeg,2008.0,8,12,2017,Dark Floors,Death By Defibrillators Scene,tt0985025 TlyHBaAJVbk,2008.0,11,12,2017,Dark Floors,Hospital Zombies Scene,tt0985025 L_0imHGhC3o,2008.0,5,12,2017,Dark Floors,The Terror Is Real Scene,tt0985025 eTepvIyKhIo,2008.0,10,12,2017,Dark Floors,Ghost vs. Psychic Scene,tt0985025 Vl3IiVDwgpY,2008.0,6,12,2017,Dark Floors,Unstoppable Monster Scene,tt0985025 rGnXd_krGA0,2008.0,9,12,2017,Dark Floors,Death in the Hell Hospital Scene,tt0985025 68av2-Ti-GU,2008.0,7,12,2017,Dark Floors,Forcible Organ Removal Scene,tt0985025 CTpAikAZ2aA,2008.0,4,12,2017,Dark Floors,Horror in the Elevator Scene,tt0985025 mVUQ88T2S6E,2008.0,3,12,2017,Dark Floors,The Shrieking Ghost Scene,tt0985025 GoDxjaW2if0,2014.0,4,10,2017,Bermuda Tentacles,Nonterrestrial Scene,tt3307726 -fqOpmu8014,2014.0,3,10,2017,Bermuda Tentacles,Cut the Power! Scene,tt3307726 5yGE_RpI45U,2014.0,5,10,2017,Bermuda Tentacles,Airplane Graveyard Scene,tt3307726 _06GrnWiGqI,2014.0,10,10,2017,Bermuda Tentacles,Bombing the Mothership Scene,tt3307726 -Bxv4jtiR-U,2014.0,9,10,2017,Bermuda Tentacles,Destroy the Hell Out of That Ship Scene,tt3307726 yRec3myBtsM,2014.0,7,10,2017,Bermuda Tentacles,We're Surrounded by Tentacles Scene,tt3307726 B1uEaZ1xSaI,2014.0,8,10,2017,Bermuda Tentacles,Authorizing Nuclear Weapons Scene,tt3307726 81mLKFXLNSs,2014.0,6,10,2017,Bermuda Tentacles,The President is Alive Scene,tt3307726 hotQs5eawqM,2014.0,1,10,2017,Bermuda Tentacles,Evacuate the President Scene,tt3307726 9v9MVT2X0_M,2014.0,2,10,2017,Bermuda Tentacles,Sea Monster Slaughter Scene,tt3307726 pMFzy56i7RA,2014.0,6,10,2017,Age of Tomorrow,Fighting for Survival Scene,tt3677466 JPA1TtBEIbc,2014.0,9,10,2017,Age of Tomorrow,Welcome to Oblivion Scene,tt3677466 _g79FGuo2GE,2014.0,8,10,2017,Age of Tomorrow,Blast the Hell Out of Everything Scene,tt3677466 J66HeAFlMV0,2014.0,7,10,2017,Age of Tomorrow,Mankind's Final Hope Scene,tt3677466 1reD-PYDpvk,2014.0,10,10,2017,Age of Tomorrow,It's Not Over Yet Scene,tt3677466 QAJTgMZpigM,2014.0,5,10,2017,Age of Tomorrow,Vengeance for Vaporization Scene,tt3677466 26nqXIUqVhE,2014.0,3,10,2017,Age of Tomorrow,Wheeler Through Wormhole Scene,tt3677466 otsIUxrcoXQ,2014.0,2,10,2017,Age of Tomorrow,It's an Invasion! Scene,tt3677466 DUU7WFTBgBM,2014.0,1,10,2017,Age of Tomorrow,Hundreds of Bogeys Scene,tt3677466 M9p2ix0s-D0,2014.0,4,10,2017,Age of Tomorrow,Alien Ambush Scene,tt3677466 cP63R4QwDFI,2015.0,6,10,2017,Last Knights,The Siege Begins Scene,tt2493486 TEvVc1vsO2U,2015.0,7,10,2017,Last Knights,You Fought Well Scene,tt2493486 LE0TUN0Po7I,2015.0,10,10,2017,Last Knights,Raiden's Sentence Scene,tt2493486 BdZN3EJVjo8,2015.0,9,10,2017,Last Knights,The Death of Geza Mott Scene,tt2493486 bN1E4vf9FlM,2015.0,8,10,2017,Last Knights,Raiden Fights Ito Scene,tt2493486 qY7EPDCU5hc,2015.0,5,10,2017,Last Knights,Plotting the Attack Scene,tt2493486 afBwkWnwlD0,2015.0,3,10,2017,Last Knights,Bartok's Confession Scene,tt2493486 FcqJ2a3Dazs,2015.0,1,10,2017,Last Knights,The Heir to My Spirit Scene,tt2493486 94J4AzRTLE8,2015.0,4,10,2017,Last Knights,The Wounds of Honor Scene,tt2493486 jJvvT_Sb0jo,2015.0,2,10,2017,Last Knights,You Are Irrelevant Scene,tt2493486 tIy7sQGKtJA,2013.0,3,10,2017,Jack the Giant Killer,"Come, My Destroyer Scene",tt2552498 IMr_irerhRE,2013.0,2,10,2017,Jack the Giant Killer,A Narrow Escape Scene,tt2552498 6DmSVYtMoyQ,2013.0,10,10,2017,Jack the Giant Killer,Jack Faces the Beast Scene,tt2552498 1J-U8tLUlsg,2013.0,1,10,2017,Jack the Giant Killer,Up the Beanstalk Scene,tt2552498 kKUsYDTykUQ,2013.0,9,10,2017,Jack the Giant Killer,Monster vs. Motorcycle Scene,tt2552498 Sd4y4XC-qvw,2013.0,8,10,2017,Jack the Giant Killer,I Control Them Now Scene,tt2552498 MZIPOu6WeGg,2013.0,5,10,2017,Jack the Giant Killer,We Have a Major Situation Here Scene,tt2552498 FTGtcjSMjy0,2013.0,4,10,2017,Jack the Giant Killer,Who Does She Think She Is? Scene,tt2552498 E-NXKcnsDJ8,2013.0,7,10,2017,Jack the Giant Killer,The Crashing Castle Scene,tt2552498 7EmNSHq1mh0,2013.0,6,10,2017,Jack the Giant Killer,"And Now, the Descent Scene",tt2552498 uHd2oehKwuA,2015.0,4,10,2017,Hansel vs. Gretel,I'm Gonna Eat You All Up Scene,tt4145350 _a9IqPr1kdg,2015.0,6,10,2017,Hansel vs. Gretel,A Nice Little Treat Scene,tt4145350 8QDZKTF75Zs,2015.0,2,10,2017,Hansel vs. Gretel,Cemetery Shootout Scene,tt4145350 DUiEMltmojE,2015.0,5,10,2017,Hansel vs. Gretel,You've Been a Bad Boy Scene,tt4145350 heoNF-PyZ8Y,2015.0,1,10,2017,Hansel vs. Gretel,I Want the Little Girls Scene,tt4145350 _j0onVyO18I,2015.0,3,10,2017,Hansel vs. Gretel,I Taste Killer On You Scene,tt4145350 1m_aN2-vauc,2015.0,9,10,2017,Hansel vs. Gretel,"Willy is Dead, Darling Scene",tt4145350 Tt7LWRxtRcE,2015.0,8,10,2017,Hansel vs. Gretel,I am a Queen! Scene,tt4145350 Mw8bNmfoC48,2015.0,10,10,2017,Hansel vs. Gretel,This Ends Now Scene,tt4145350 9xp2F5kPbRQ,2015.0,7,10,2017,Hansel vs. Gretel,Grandma's Gruesome Goodbye Scene,tt4145350 oY1tp2HG06w,2013.0,9,10,2017,Hansel & Gretel,We'll Eat Youth Scene,tt1428538 -whQdRI7wUQ,2013.0,7,10,2017,Hansel & Gretel,Where Are My Kids? Scene,tt1428538 TXAJapM6E-U,2013.0,1,10,2017,Hansel & Gretel,Round and Round We Go Scene,tt1428538 31sP1-4GgsA,2013.0,8,10,2017,Hansel & Gretel,Who Was That Guy Anyway? Scene,tt1428538 e6B-T4KYIFQ,2013.0,3,10,2017,Hansel & Gretel,"We Kill Them, All of Them Scene",tt1428538 c7-u-fyUSkM,2013.0,6,10,2017,Hansel & Gretel,Out Through the Oven Scene,tt1428538 ovFDrgui4a0,2013.0,5,10,2017,Hansel & Gretel,Trapped with a Demon Scene,tt1428538 9_LX8b0kmiI,2013.0,2,10,2017,Hansel & Gretel,Dig In Scene,tt1428538 ipb0Bfg_FTs,2013.0,10,10,2017,Hansel & Gretel,What They Do To Witches Scene,tt1428538 JyQczb2eCf8,2013.0,4,10,2017,Hansel & Gretel,You're a Failure Scene,tt1428538 Ot5T_oe47Xs,2011.0,1,10,2017,3 Musketeers,Undercover Assault Scene,tt1509767 SCeW4Y-XPfo,2011.0,10,10,2017,3 Musketeers,Fatal Fencing Scene,tt1509767 CShX9zc_Zgg,2011.0,9,10,2017,3 Musketeers,I'm Gonna CTL ALT DEL Your Ass! Scene,tt1509767 -wHSMnaUzWY,2011.0,6,10,2017,3 Musketeers,Confronted by the Cardinal Scene,tt1509767 5Wpy4Luh_uY,2011.0,5,10,2017,3 Musketeers,Never Get in the Middle of a Chick Fight Scene,tt1509767 -GRPXrEaqn4,2011.0,8,10,2017,3 Musketeers,Dodging the Drones Scene,tt1509767 bhEMe--tKlY,2011.0,7,10,2017,3 Musketeers,Where are the Musketeers? Scene,tt1509767 MzvFEBBZuwA,2011.0,4,10,2017,3 Musketeers,D'Artangan Questions Athos Scene,tt1509767 sL0fO-3JquE,2011.0,3,10,2017,3 Musketeers,Three Days to Stop WWIII Scene,tt1509767 PdKfp8IWgGI,2011.0,2,10,2017,3 Musketeers,Escaping North Korea Scene,tt1509767 1O9Sgq0FK4c,2010.0,1,10,2017,The Last Circus,Why Are You a Clown? Scene,tt1572491 WQwgtpaIVkE,2010.0,5,10,2017,The Last Circus,The Hunting Dog Scene,tt1572491 uMx7RJLn08w,2010.0,2,10,2017,The Last Circus,I Decide What's Funny Scene,tt1572491 Em-hPjFyY-w,2010.0,9,10,2017,The Last Circus,I'm Mad About You Scene,tt1572491 tNnxJK7L3N0,2010.0,8,10,2017,The Last Circus,The Ballad of the Sad Trumpet Scene,tt1572491 -cPDC0me1iM,2010.0,10,10,2017,The Last Circus,The Funny Clown and The Sad Clown Scene,tt1572491 SHIG5bfYTs0,2010.0,7,10,2017,The Last Circus,The Diner Scene,tt1572491 I9XmewMPVdo,2010.0,6,10,2017,The Last Circus,The Angel of Death Scene,tt1572491 iyVCFSW_W1w,2010.0,3,10,2017,The Last Circus,Screwing Her Senseless Scene,tt1572491 0djt409Dqps,2010.0,4,10,2017,The Last Circus,Javier Attacks Sergio Scene,tt1572491 TEtlsYtj5-s,2008.0,2,10,2017,Splinter,Flat Tire Scene,tt1031280 Mki2fo1Ou-s,2008.0,7,10,2017,Splinter,A Severed Hand Scene,tt1031280 TvQmXzgtOeQ,2008.0,9,10,2017,Splinter,The Fire! Scene,tt1031280 r0MABEixxRM,2008.0,10,10,2017,Splinter,Get Out of Here Scene,tt1031280 eQ449GDHSA8,2008.0,8,10,2017,Splinter,I'm Going to Have to Cut It Scene,tt1031280 8QcReRkM8wQ,2008.0,6,10,2017,Splinter,Reaching the Radio Scene,tt1031280 Xc2OmGesDgo,2008.0,1,10,2017,Splinter,Get Out of the Car! Scene,tt1031280 oe59hoX10vU,2008.0,3,10,2017,Splinter,A Man With Spikes Scene,tt1031280 1GHCAqKWA58,2008.0,4,10,2017,Splinter,It's Not Her Anymore Scene,tt1031280 m3UDahZjiK4,2008.0,5,10,2017,Splinter,There's Something Out There! Scene,tt1031280 9T60vF2EZNg,2014.0,3,10,2017,Mischief Night,Daphne's Going to Be Late Scene,tt2872810 Gr18osLHHsE,2014.0,9,10,2017,Mischief Night,Halloween Disembowelment Scene,tt2872810 GV_pMBUT-24,2014.0,10,10,2017,Mischief Night,A Killer Inside Both of Us Scene,tt2872810 Bg17-zWqpkU,2014.0,8,10,2017,Mischief Night,I Want It to Hurt Scene,tt2872810 M4YhJdAsgdU,2014.0,7,10,2017,Mischief Night,The Angry God Scene,tt2872810 5YbynyAXAL8,2014.0,6,10,2017,Mischief Night,You Probably Can't Get It Up Scene,tt2872810 EeNJbbrT8e8,2014.0,5,10,2017,Mischief Night,I Don't Want to Die a Virgin Scene,tt2872810 uj0x3TbEE7g,2014.0,4,10,2017,Mischief Night,The Killer vs. Glassware Scene,tt2872810 FzlxL1f-E54,2014.0,1,10,2017,Mischief Night,Are You Alone Here Tonight? Scene,tt2872810 2nJCpOeT9x4,2014.0,2,10,2017,Mischief Night,Tempting the Killer Scene,tt2872810 PSDHvN95YgA,2013.0,10,10,2017,Killer Holiday,Catfight to the Death Scene,tt1982735 jHw_p75_LfU,2013.0,9,10,2017,Killer Holiday,Seducing the Spider Scene,tt1982735 PKG3eCpwYBM,2013.0,7,10,2017,Killer Holiday,Death in the Bottle Maze Scene,tt1982735 J3J92iSdERQ,2013.0,6,10,2017,Killer Holiday,TV Will Kill You Scene,tt1982735 dACX3WiPVU4,2013.0,8,10,2017,Killer Holiday,The Spider's Mania Scene,tt1982735 g1R5DmGvMCY,2013.0,5,10,2017,Killer Holiday,Murder and a Hot Girl Scene,tt1982735 mz4JJWjy-Uk,2013.0,3,10,2017,Killer Holiday,Bonfire Lap Dance Scene,tt1982735 IzFSwZqBjFM,2013.0,1,10,2017,Killer Holiday,Welcome to Muerto Ride Land Scene,tt1982735 0-vcQg70AX0,2013.0,4,10,2017,Killer Holiday,Funhouse Mirror Kill Scene,tt1982735 SWrq6xYYIbs,2013.0,2,10,2017,Killer Holiday,Horror in the Haunted House Scene,tt1982735 _41AKvC_uGk,2002.0,10,11,2017,Deathwatch,Eaten Alive by Rats Scene,tt0286306 03jGqiF-0Gg,2002.0,11,11,2017,Deathwatch,The Corpse Pit Scene,tt0286306 uXG9v1_X8jc,2002.0,9,11,2017,Deathwatch,Living Barbed Wire Scene,tt0286306 S-M0BOzttdg,2002.0,8,11,2017,Deathwatch,Slaying a Superior Officer Scene,tt0286306 UmRkYrYgnN4,2002.0,6,11,2017,Deathwatch,The Death Spirit Scene,tt0286306 ev-4cz3hlr0,2002.0,7,11,2017,Deathwatch,Crucifixion Scene,tt0286306 AJQd_pt3-pk,2002.0,4,11,2017,Deathwatch,Phantom War Scene,tt0286306 X4JETt9w9Zw,2002.0,5,11,2017,Deathwatch,Red Mist of Death Scene,tt0286306 6rDCHgWk7dI,2002.0,3,11,2017,Deathwatch,A Soldier Gets No Private Time Scene,tt0286306 dCyrhdW9e8M,2002.0,1,11,2017,Deathwatch,The Chaos of War Scene,tt0286306 LmK0bMGzHpU,2002.0,2,11,2017,Deathwatch,The Mudman Scene,tt0286306 xgA6VKUVRWY,2008.0,10,10,2017,Autopsy,Tree of Organs Scene,tt0443435 rAiLoLA4cyc,2008.0,8,10,2017,Autopsy,A Pile of Legs Scene,tt0443435 qnD5qOyIonw,2008.0,9,10,2017,Autopsy,Cranial Intrusion Scene,tt0443435 RMaNfwSn-pw,2008.0,1,10,2017,Autopsy,Car Crash Victim Scene,tt0443435 QGLQ6YvCo3A,2008.0,7,10,2017,Autopsy,Human Chop Shop Scene,tt0443435 7LraDj4Pjgk,2008.0,6,10,2017,Autopsy,Spinal Tap Scene,tt0443435 fcAhSCTiJm4,2008.0,5,10,2017,Autopsy,Drugged Up Scene,tt0443435 LrsnIyCjvB8,2008.0,2,10,2017,Autopsy,Glass in the Stomach Scene,tt0443435 IWmzBLX4j8s,2008.0,4,10,2017,Autopsy,Demented Doctor Scene,tt0443435 pLra48c-SuA,2008.0,3,10,2017,Autopsy,The Crazed Patient Scene,tt0443435 KAT5h_fimTM,2014.0,1,10,2017,Apocalypse Pompeii,Volcanic Destruction Scene,tt3384904 NhtvtnrHon8,2014.0,4,10,2017,Apocalypse Pompeii,Stealing a Ride Scene,tt3384904 IT236O8f-J8,2014.0,10,10,2017,Apocalypse Pompeii,A Daring Rescue Scene,tt3384904 -v_2hFPseDg,2014.0,8,10,2017,Apocalypse Pompeii,Downed by Volcanic Bombs Scene,tt3384904 yWu4GUFpwWo,2014.0,5,10,2017,Apocalypse Pompeii,Outrunning the Mudslide Scene,tt3384904 uB-53DTWD3k,2014.0,9,10,2017,Apocalypse Pompeii,The Unstoppable Flood Scene,tt3384904 boGgXcQIe-8,2014.0,3,10,2017,Apocalypse Pompeii,The Heat Surge Scene,tt3384904 DzqzlpAo9s4,2014.0,2,10,2017,Apocalypse Pompeii,Burned and Buried Scene,tt3384904 k3KR3Wz29FY,2014.0,6,10,2017,Apocalypse Pompeii,Whose Got the Biggest Cojones Scene,tt3384904 a_DO8nd7FeA,2014.0,7,10,2017,Apocalypse Pompeii,Saved by Science Scene,tt3384904 ZBvJyUTIU0k,2014.0,10,10,2017,Jessabelle,It's Scene,tt2300975 vnL8uiqp6_k,2014.0,9,10,2017,Jessabelle,You're Dead Scene,tt2300975 4V4jhMSJRW8,2014.0,6,10,2017,Jessabelle,Grave in the Bayou Scene,tt2300975 WfAp-jZV5Bo,2014.0,5,10,2017,Jessabelle,Demon in the Mirror Scene,tt2300975 eDPbu2vNrWk,2014.0,8,10,2017,Jessabelle,Attacked by the Ghost Scene,tt2300975 4QYYeDp44H8,2014.0,7,10,2017,Jessabelle,Exhuming the Body Scene,tt2300975 v3bWb5qZMu8,2014.0,3,10,2017,Jessabelle,Ghost in the Bathtub Scene,tt2300975 nudL_t9u78o,2014.0,2,10,2017,Jessabelle,Bloody Nightmare Scene,tt2300975 Ewpzngfnvcc,2014.0,4,10,2017,Jessabelle,Burning the Tape Scene,tt2300975 6Tax5ajZYsY,2014.0,1,10,2017,Jessabelle,The Tarot Tape Scene,tt2300975 YDkE97uXjRo,2009.0,1,11,2017,Dread,The Axe-Murderer Scene,tt1331307 6w5n1TfIFjk,2009.0,11,11,2017,Dread,The Study Concluded Scene,tt1331307 83Lfw7BxsQE,2009.0,6,11,2017,Dread,"You Are Sexy, You Know Scene",tt1331307 WGxfP216OFI,2009.0,5,11,2017,Dread,What's Wrong With Your Face? Scene,tt1331307 ZPjREKxiNsQ,2009.0,4,11,2017,Dread,The Sole Survivor Scene,tt1331307 yuQipNK_BiQ,2009.0,3,11,2017,Dread,Why I'm a Vegetarian Scene,tt1331307 nVvMBs0TFWA,2009.0,9,11,2017,Dread,"Rotten, Maggoty Meat Scene",tt1331307 iLFMRsi07_I,2009.0,10,11,2017,Dread,Two Victims for the Price of One Scene,tt1331307 fRhJPuDCXRk,2009.0,2,11,2017,Dread,Fear Test Subjects Scene,tt1331307 xR6jSh2HrAA,2009.0,7,11,2017,Dread,Fear of Deafness Scene,tt1331307 WxIgfDZXS4k,2009.0,8,11,2017,Dread,Bleach Bath Scene,tt1331307 SBIKhBgxq6M,2007.0,10,10,2017,Shrooms,Can You Help Me? Scene,tt0492486 99kt5BrTa4Y,2007.0,1,10,2017,Shrooms,The Indigenous People Scene,tt0492486 VIxumCmygzw,2007.0,4,10,2017,Shrooms,This is Just a Trip Scene,tt0492486 E7AA7Qv9LkM,2007.0,8,10,2017,Shrooms,A Permanent Rest Scene,tt0492486 c2v3ZXKLzh8,2007.0,6,10,2017,Shrooms,The Killer in the River Scene,tt0492486 X2aVRBuYsNI,2007.0,2,10,2017,Shrooms,A Talking Cow Scene,tt0492486 jS-7DpkGT_E,2007.0,7,10,2017,Shrooms,Only One Escape Scene,tt0492486 uwkMYWXtFu0,2007.0,9,10,2017,Shrooms,The Killer Within Scene,tt0492486 9RpdDbHL550,2007.0,5,10,2017,Shrooms,The Figure in the Woods Scene,tt0492486 nry9GG4Z0CY,2007.0,3,10,2017,Shrooms,Soft and Wet Scene,tt0492486 SV6R0ym_s1M,2009.0,10,10,2017,The Land That Time Forgot,Not Without You Scene,tt0073260 Bmd8v7RypQk,2009.0,8,10,2017,The Land That Time Forgot,It's Gonna Take a Lot of Digging Scene,tt0073260 m0FsyBlZtkk,2009.0,9,10,2017,The Land That Time Forgot,One Man to Stop a Dinosaur Scene,tt0073260 KngGYZgu02o,2009.0,7,10,2017,The Land That Time Forgot,Bombing the T-Rex Scene,tt0073260 aPDfc08u_s8,2009.0,5,10,2017,The Land That Time Forgot,A Way to Escape Scene,tt0073260 qFvJloqBYTQ,2009.0,6,10,2017,The Land That Time Forgot,Distilling Fuel Scene,tt0073260 bwH_nxsCKp8,2009.0,3,10,2017,The Land That Time Forgot,The Devil's Triangle Scene,tt0073260 rdCzBg9Xw8A,2009.0,2,10,2017,The Land That Time Forgot,What Is This Place? Scene,tt0073260 CRPf4U_MRVw,2009.0,4,10,2017,The Land That Time Forgot,Dinosaur Distraction Scene,tt0073260 aPcCjI--Cz4,2009.0,1,10,2017,The Land That Time Forgot,Dead in the Water Scene,tt0073260 TXLZrVcUcq4,2012.0,4,10,2017,American Warships,"Not Koreans, Aliens Scene",tt2175927 GVzyzXZuzOU,2012.0,6,10,2017,American Warships,Here Comes the Cavalry Scene,tt2175927 r2C-3xQskdg,2012.0,3,10,2017,American Warships,The Alien Control Room Scene,tt2175927 KlvWPWFYvo0,2012.0,8,10,2017,American Warships,Captain's Kiss Scene,tt2175927 9qwsfjnC0kM,2012.0,7,10,2017,American Warships,Not Gonna Sink My Battleship Scene,tt2175927 HCtR23MGwn0,2012.0,10,10,2017,American Warships,Alien Awakening Scene,tt2175927 -QdBG7PfFeE,2012.0,9,10,2017,American Warships,The Mothership Scene,tt2175927 up79gU3V8sk,2012.0,2,10,2017,American Warships,Like Nothing I've Ever Seen Scene,tt2175927 gsVcJ5gGsE0,2012.0,5,10,2017,American Warships,The Invisible Battleship Scene,tt2175927 Oe4jP8WV9lQ,2012.0,1,10,2017,American Warships,We Are Feet Wet Scene,tt2175927 pkwGEagSVT0,2015.0,10,10,2017,Jem and the Holograms,I'm Still Here Scene,tt3614530 6AWMlRhBN5U,2015.0,6,10,2017,Jem and the Holograms,Going Solo Scene,tt3614530 SV_eLd8wm70,2015.0,9,10,2017,Jem and the Holograms,Rio's Ready Scene,tt3614530 ybRy055wBsw,2015.0,7,10,2017,Jem and the Holograms,The Way I Was Scene,tt3614530 hKuh_h2nzN8,2015.0,5,10,2017,Jem and the Holograms,Youngblood Scene,tt3614530 9I-FCJRX2Cc,2015.0,8,10,2017,Jem and the Holograms,Dad's Final Message Scene,tt3614530 2oFuSvs-WU0,2015.0,1,10,2017,Jem and the Holograms,You're Not Alone Scene,tt3614530 _t1yxHW97xE,2015.0,3,10,2017,Jem and the Holograms,We Got Heart Scene,tt3614530 qEb51O12XFw,2015.0,4,10,2017,Jem and the Holograms,Rules For the Red Carpet Scene,tt3614530 BwWzZtG_6fA,2015.0,2,10,2017,Jem and the Holograms,Never Fear the Unknown Scene,tt3614530 PF2hIgWupGU,2012.0,6,10,2017,The Frozen Ground,Shock at the Strip Club Scene,tt2005374 izLhF-Oodrg,2012.0,5,10,2017,The Frozen Ground,On the Run Scene,tt2005374 FLjWVccRPOA,2012.0,8,10,2017,The Frozen Ground,From Bad to Worse Scene,tt2005374 3oqt6V9aJIM,2012.0,7,10,2017,The Frozen Ground,The Interrogation Scene,tt2005374 vZHS1nXJaGU,2012.0,4,10,2017,The Frozen Ground,Hunting Her Scene,tt2005374 kcniTaNYikg,2012.0,1,10,2017,The Frozen Ground,Chained Scene,tt2005374 pPCq9SIyHqE,2012.0,9,10,2017,The Frozen Ground,He's Coming Scene,tt2005374 y87LPJHRfOI,2012.0,2,10,2017,The Frozen Ground,The Lucky One Scene,tt2005374 8ILiVgno0_0,2012.0,3,10,2017,The Frozen Ground,Pole Dancing Scene,tt2005374 F6E2ojebPlA,2012.0,10,10,2017,The Frozen Ground,The Truth Comes Out Scene,tt2005374 ybFMkEvDx60,2008.0,11,11,2017,Return to Sleepaway Camp,Angela's Back Scene,tt0382943 dDX_fyIlXXg,2008.0,9,11,2017,Return to Sleepaway Camp,A Bed of Nails Scene,tt0382943 JVo7oslbnjA,2008.0,10,11,2017,Return to Sleepaway Camp,A Hanging in the Rec Hall Scene,tt0382943 yK9Y-rD7XGY,2008.0,8,11,2017,Return to Sleepaway Camp,Some Major Wood Scene,tt0382943 GLBlIYIlND4,2008.0,7,11,2017,Return to Sleepaway Camp,Late Night Castration Scene,tt0382943 3oFSNCmEZyE,2008.0,5,11,2017,Return to Sleepaway Camp,I Hate You All Scene,tt0382943 QlZ28Do9WmY,2008.0,6,11,2017,Return to Sleepaway Camp,Rats in a Cage Scene,tt0382943 4o1O6Pt7zr8,2008.0,1,11,2017,Return to Sleepaway Camp,Are You Insane? Scene,tt0382943 5DaiI6epRCU,2008.0,3,11,2017,Return to Sleepaway Camp,Deep Fryer Death Scene,tt0382943 0tVy79pRaBs,2008.0,2,11,2017,Return to Sleepaway Camp,Frogs Are My Friends Scene,tt0382943 1asspYdV3as,2008.0,4,11,2017,Return to Sleepaway Camp,Drugs Can Kill Scene,tt0382943 PXokYGWGASA,2011.0,7,10,2017,Apartment 143,Tell Me About Your Wife Scene,tt1757742 8lnd2BulFkU,2011.0,8,10,2017,Apartment 143,Don't Panic Scene,tt1757742 0vuS4vo4c94,2011.0,9,10,2017,Apartment 143,Keep Filming Scene,tt1757742 xV0HfZSFsiE,2011.0,6,10,2017,Apartment 143,Possessed and Angry Scene,tt1757742 T4ZusOrLSoY,2011.0,10,10,2017,Apartment 143,Caught on Camera Scene,tt1757742 JkW-iBe_WyQ,2011.0,5,10,2017,Apartment 143,That's My Daughter Scene,tt1757742 UZVhwFUQwcs,2011.0,2,10,2017,Apartment 143,A Ghost is Calling Scene,tt1757742 6OYZi5KUFzg,2011.0,1,10,2017,Apartment 143,The Sound in the Walls Scene,tt1757742 PPl4KzH-bGc,2011.0,4,10,2017,Apartment 143,What the Hell Was That? Scene,tt1757742 o33ZCLXEHIU,2011.0,3,10,2017,Apartment 143,Tell Me You Got That Scene,tt1757742 ijaNlufpcMs,2013.0,1,10,2017,Attila,The Dark Power of the Staff Scene,tt2474438 Jzr8lXSNRA8,2013.0,2,10,2017,Attila,Death Is a Dream Scene,tt2474438 GJwsVhQHggU,2013.0,4,10,2017,Attila,"If We Can't Handle It, No One Can Scene",tt2474438 mCfKPXX19Gw,2013.0,3,10,2017,Attila,Nomad Rises Scene,tt2474438 f8P51JbIp9g,2013.0,10,10,2017,Attila,Father vs. Son Scene,tt2474438 C-uCzmnXn-g,2013.0,9,10,2017,Attila,I Am the Demon That Torments You Scene,tt2474438 z542q4dYk-0,2013.0,6,10,2017,Attila,An Unstoppable Force Scene,tt2474438 7S3biRDwbAc,2013.0,8,10,2017,Attila,Kill the Hostile Scene,tt2474438 U714emx9EJQ,2013.0,7,10,2017,Attila,Officers Down Scene,tt2474438 rbYJb_i2czc,2013.0,5,10,2017,Attila,Wanna Bang? Scene,tt2474438 nW92suQFQ5c,2012.0,10,10,2017,The Cold Light of Day,Will is Cornered Scene,tt1366365 BefYI15la84,2012.0,8,10,2017,The Cold Light of Day,Battle for the Briefcase Scene,tt1366365 8gLOoFW3ke0,2012.0,9,10,2017,The Cold Light of Day,Chase Through Madrid Scene,tt1366365 BxIcBWi4ETk,2012.0,5,10,2017,The Cold Light of Day,Finding a Way Down Scene,tt1366365 k_pB_zV6kVw,2012.0,7,10,2017,The Cold Light of Day,The Deal Scene,tt1366365 sVZLKLWFDYs,2012.0,6,10,2017,The Cold Light of Day,He Was My Father Too Scene,tt1366365 FAnP3FAu5sU,2012.0,4,10,2017,The Cold Light of Day,Caldera's Office Scene,tt1366365 4Gs6pBwn5w8,2012.0,3,10,2017,The Cold Light of Day,Do You Want to Save Your Family? Scene,tt1366365 SqQmfQfAzzg,2012.0,2,10,2017,The Cold Light of Day,Did You Set Me Up? Scene,tt1366365 p0vZhGqM_Rs,2012.0,1,10,2017,The Cold Light of Day,A Special Agent Scene,tt1366365 BK5ad9GV4NQ,2013.0,10,10,2017,Enemies Closer,You Can Always Say Almost Scene,tt2395199 7j5VT6oDcVw,2013.0,9,10,2017,Enemies Closer,Playing in Trees Scene,tt2395199 Gy9Wan4jskg,2013.0,7,10,2017,Enemies Closer,Fight in the Woods Scene,tt2395199 jmwfCk8MBhk,2013.0,6,10,2017,Enemies Closer,Kiss My Geriatric Ass Scene,tt2395199 P8RUrH3UmPY,2013.0,5,10,2017,Enemies Closer,Showdown at the House Scene,tt2395199 -a4N0JuAW8A,2013.0,8,10,2017,Enemies Closer,On the Dock Scene,tt2395199 BSaGnAC8boM,2013.0,4,10,2017,Enemies Closer,Work Together Scene,tt2395199 OZJUtFROusE,2013.0,3,10,2017,Enemies Closer,Caught Him Night Fishing Scene,tt2395199 96CVkRhfoKU,2013.0,2,10,2017,Enemies Closer,I Had To Protect My Team Scene,tt2395199 bJbTcRnSFAA,2013.0,1,10,2017,Enemies Closer,The Guy With the Gun Scene,tt2395199 E1k9eRHXFX8,2008.0,8,10,2017,Allan Quatermain and the Temple of Skulls,The Claw of Vengeance Scene,tt1219671 2_W3saVv0qw,2014.0,6,10,2017,Repentance,Broken Glass Torture Scene,tt2012665 BLejeXcxLdg,2014.0,7,10,2017,Repentance,You're Guilty Scene,tt2012665 2Dlgg0Yqsd0,2014.0,9,10,2017,Repentance,You Are All About to Die Scene,tt2012665 kgs8NvXfI9c,2014.0,5,10,2017,Repentance,I'm Not Crazy Scene,tt2012665 W09CmZtBFRQ,2014.0,8,10,2017,Repentance,Captured Scene,tt2012665 IoRpcIVgtUc,2014.0,10,10,2017,Repentance,We're Spiritually Dead Scene,tt2012665 p6AK2S2N6hA,2014.0,1,10,2017,Repentance,I Ain't Gonna Tell Your Secret Scene,tt2012665 dY9zZS6BNkU,2014.0,3,10,2017,Repentance,I Can't Let You Go Scene,tt2012665 F1ZPE23KT_4,2014.0,4,10,2017,Repentance,She Says You Can't Leave Scene,tt2012665 2cgMKpAGSQw,2014.0,2,10,2017,Repentance,I Need Your Mind to Be Clear Scene,tt2012665 gwEoo0r_8EY,2013.0,9,10,2017,Throwdown,I'm Not Your Property Scene,tt3036676 BjPUO_4HJeo,2013.0,4,10,2017,Throwdown,Cross-Examination Scene,tt3036676 G_Rd3TcODj4,2013.0,10,10,2017,Throwdown,Revenge Scene,tt3036676 4OEhuma-rrY,2013.0,6,10,2017,Throwdown,No One Withdraws Scene,tt3036676 0ekAvNp_F9c,2013.0,7,10,2017,Throwdown,I'm a Goddamn Winner Scene,tt3036676 osLhRtHZ4Gw,2013.0,5,10,2017,Throwdown,No One Can Protect You Scene,tt3036676 6oUzjN26DoM,2013.0,8,10,2017,Throwdown,Defending the Guilty Scene,tt3036676 rlaRlCFXUqk,2013.0,3,10,2017,Throwdown,Represent Me or Die Scene,tt3036676 TTOlRTmEdoY,2013.0,1,10,2017,Throwdown,Courtroom Tragedy Scene,tt3036676 RdG9KwpjxA0,2013.0,2,10,2017,Throwdown,Sex Slaves Scene,tt3036676 QUtc_tjyrsI,2008.0,7,10,2017,Allan Quatermain and the Temple of Skulls,I'm Not For Sale Scene,tt1219671 7taghufoJY4,2008.0,5,10,2017,Allan Quatermain and the Temple of Skulls,Captured by the Natives Scene,tt1219671 ZdNa-FoYEo8,2008.0,4,10,2017,Allan Quatermain and the Temple of Skulls,The Look of Lust Scene,tt1219671 AW8Vxng7dDY,2008.0,10,10,2017,Allan Quatermain and the Temple of Skulls,Earthquake Escape Scene,tt1219671 dh6yBmJDLpQ,2008.0,9,10,2017,Allan Quatermain and the Temple of Skulls,Anna Lives Scene,tt1219671 1gjaw2BNg7U,2008.0,3,10,2017,Allan Quatermain and the Temple of Skulls,Attack of the Swarm! Scene,tt1219671 1rowOWuYacM,2008.0,1,10,2017,Allan Quatermain and the Temple of Skulls,A Liar and a Thief Scene,tt1219671 Xf2ZsLFeD24,2008.0,2,10,2017,Allan Quatermain and the Temple of Skulls,Fine Time to Bathe Scene,tt1219671 fZ99iSkvkec,2008.0,6,10,2017,Allan Quatermain and the Temple of Skulls,Lose Your Head Scene,tt1219671 A_n2FjVMiVY,2015.0,8,10,2017,Child 44,Train Car Attack Scene,tt1014763 1q-FL1Wd0EE,2015.0,4,10,2017,Child 44,Are You A Spy? Scene,tt1014763 eJPXQfvokV8,2015.0,10,10,2017,Child 44,A Fight for Survival Scene,tt1014763 5DWrrqP_HNk,2015.0,9,10,2017,Child 44,We're Both Killers Scene,tt1014763 v7QfNBfZT3w,2015.0,7,10,2017,Child 44,Blood On Our Hands Scene,tt1014763 rTlfnymyrrQ,2015.0,5,10,2017,Child 44,Where Are They Taking Us? Scene,tt1014763 i7Jg_6-fYF8,2015.0,2,10,2017,Child 44,Making An Example Scene,tt1014763 8zMlPNdRRLY,2015.0,6,10,2017,Child 44,Another Victim is Found Scene,tt1014763 68CXG6t1mxU,2015.0,3,10,2017,Child 44,No Murder in Paradise Scene,tt1014763 hCN8UAdH55A,2015.0,1,10,2017,Child 44,The Battle of Berlin Scene,tt1014763 FJStfF_7w9k,2014.0,7,10,2017,Reasonable Doubt,Jimmy Attacked Scene,tt2304953 RgM_mn4oP04,2014.0,8,10,2017,Reasonable Doubt,He's Trying to Kill Me Scene,tt2304953 NawsWUndVQQ,2014.0,9,10,2017,Reasonable Doubt,You Don't Know My Pain Scene,tt2304953 8fBQzlJdubE,2014.0,6,10,2017,Reasonable Doubt,I Know What You Did Scene,tt2304953 ELAfnYfUaAI,2014.0,10,10,2017,Reasonable Doubt,Who Dies First? Scene,tt2304953 xk9PtV1-Dl4,2014.0,1,10,2017,Reasonable Doubt,Hit and Run Scene,tt2304953 hFZGh14H_J4,2014.0,5,10,2017,Reasonable Doubt,Deadly Suspicions Scene,tt2304953 3hcHRAFPBVY,2014.0,3,10,2017,Reasonable Doubt,Enough for a Conviction Scene,tt2304953 x17F1j6spHw,2014.0,2,10,2017,Reasonable Doubt,The Suspected Killer Scene,tt2304953 BtvvvXRUks8,2014.0,4,10,2017,Reasonable Doubt,The Caller's Identity Scene,tt2304953 e1oUspIUHEw,2012.0,10,10,2017,For the Love of Money,The Road Less Traveled Scene,tt1730294 _J6ipSZnD2c,2012.0,7,10,2017,For the Love of Money,The Straight and Narrow Path Scene,tt1730294 ZoYZl8-VEGU,2012.0,9,10,2017,For the Love of Money,They Kidnapped Yoni Scene,tt1730294 Hv3mUXCo46M,2012.0,4,10,2017,For the Love of Money,I Had No Choice Scene,tt1730294 FY8vuvzZHl4,2012.0,6,10,2017,For the Love of Money,We'd Like Some Diamonds Scene,tt1730294 wmKfHN7NxeA,2012.0,5,10,2017,For the Love of Money,Opportunity's Knocking Scene,tt1730294 DEeqxarMzg0,2012.0,8,10,2017,For the Love of Money,Red is Dead Scene,tt1730294 Ny0jtHcjrbg,2012.0,1,10,2017,For the Love of Money,Meeting Aline Scene,tt1730294 G_5pbKwl4hE,2012.0,2,10,2017,For the Love of Money,At the Club Scene,tt1730294 G1OstoTh_Bo,2012.0,3,10,2017,For the Love of Money,Things Would Only Get Worse Scene,tt1730294 bgoBjzXp3ww,2000.0,3,11,2017,Barking Dogs Never Bite,Feasting Alone Scene,tt0269743 wqQYEQ-fsLA,2000.0,11,11,2017,Barking Dogs Never Bite,It Was Me Scene,tt0269743 jF6mqjUiljk,2000.0,10,11,2017,Barking Dogs Never Bite,Is that Your Dog? Scene,tt0269743 _wU_3DGbYS8,2000.0,9,11,2017,Barking Dogs Never Bite,Saving the Dog Scene,tt0269743 MBDyD5A2mQk,2000.0,7,11,2017,Barking Dogs Never Bite,The Chase Scene,tt0269743 X-lp4KfK9Qk,2000.0,6,11,2017,Barking Dogs Never Bite,Hurling the Dog Scene,tt0269743 TYiEofdhOgQ,2000.0,8,11,2017,Barking Dogs Never Bite,100 Meters Scene,tt0269743 bHoe-hfh9WE,2000.0,4,11,2017,Barking Dogs Never Bite,Boiler Kim Scene,tt0269743 9Wy6ekMz_Yk,2000.0,5,11,2017,Barking Dogs Never Bite,The Dog-napping Scene,tt0269743 08zyIFMP-LE,2000.0,2,11,2017,Barking Dogs Never Bite,The Wrong Dog Scene,tt0269743 Zp6CvBIvqZo,2000.0,1,11,2017,Barking Dogs Never Bite,Disposing of the Dog Scene,tt0269743 UCac6K5YWns,2014.0,10,10,2017,Reclaim,Don't Kill Me Scene,tt3202890 vgEq476aHxk,2014.0,6,10,2017,Reclaim,Chased Scene,tt3202890 jA83iWbczFc,2014.0,8,10,2017,Reclaim,He's Back Scene,tt3202890 K2LCoTSVORY,2014.0,9,10,2017,Reclaim,It's Been a Big Day Scene,tt3202890 jKIG_-544gY,2014.0,7,10,2017,Reclaim,Hanging off the Cliff Scene,tt3202890 wx-HWqbwssg,2014.0,5,10,2017,Reclaim,The Stakes Scene,tt3202890 ODeWs0Eu8n0,2014.0,2,10,2017,Reclaim,She's Not Here! Scene,tt3202890 FmYGC2QdXd4,2014.0,3,10,2017,Reclaim,ing Scene,tt3202890 f1mbRj3ejAk,2014.0,4,10,2017,Reclaim,Kidnapped Scene,tt3202890 3yVGaKmJrUY,2014.0,1,10,2017,Reclaim,Puerto Rican Manners Scene,tt3202890 Exw1_k7Hj6o,2009.0,11,11,2017,Legend of the Bog,Burning the Bog Body Scene,tt0928375 zjQSWtB7Kp4,2009.0,10,11,2017,Legend of the Bog,Zombie Bait Scene,tt0928375 TgzbVMwrr7s,2009.0,8,11,2017,Legend of the Bog,"I'm a Hunter, Not a Priest Scene",tt0928375 DHk_bI_wMcY,2009.0,9,11,2017,Legend of the Bog,Car Start Fail Scene,tt0928375 ybDsC1DzIPk,2009.0,7,11,2017,Legend of the Bog,Mudhole Corpse Scene,tt0928375 gm0I_zdgs8o,2009.0,5,11,2017,Legend of the Bog,Zombies Don't Drink Scene,tt0928375 F8vcszMAya4,2009.0,6,11,2017,Legend of the Bog,Dead Bodies and Little Boys Scene,tt0928375 g1lpI9wZtiI,2009.0,2,11,2017,Legend of the Bog,Don't Moon Zombies Scene,tt0928375 X-VYaCvJwxY,2009.0,4,11,2017,Legend of the Bog,Shower Tease Scene,tt0928375 BB3VbfL6Xyg,2009.0,3,11,2017,Legend of the Bog,Zombie Needs Water Scene,tt0928375 xDe-990DWEw,2009.0,1,11,2017,Legend of the Bog,Swamp Resurrection Scene,tt0928375 07mbIgWikmQ,2012.0,8,10,2017,Bigfoot County,Sacrifices Scene,tt2108605 GrJGkWkkHZo,2012.0,9,10,2017,Bigfoot County,Surrounded in the Dark Scene,tt2108605 e4EL5s__uC0,2012.0,7,10,2017,Bigfoot County,Noises in the Night Scene,tt2108605 s6QIbe248NI,2012.0,6,10,2017,Bigfoot County,Redneck With a Rifle Scene,tt2108605 xEnYDuZSSy4,2012.0,5,10,2017,Bigfoot County,Lost in the Woods Scene,tt2108605 Rpr0n3A3_BU,2012.0,10,10,2017,Bigfoot County,Feeding Bigfoot Scene,tt2108605 w8mpECLURqk,2012.0,3,10,2017,Bigfoot County,Man With an Axe Scene,tt2108605 BF6tMv04X9M,2012.0,4,10,2017,Bigfoot County,I Saw Bigfoot Scene,tt2108605 J_hkf20P6FM,2012.0,1,10,2017,Bigfoot County,Bigfoot 911 Call Scene,tt2108605 1RsuQNxE43A,2012.0,2,10,2017,Bigfoot County,Interviewing the Locals Scene,tt2108605 or6rCLpiS10,2012.0,1,10,2017,Bigfoot,Only He Can Prevent Wildfires Scene,tt1876261 Q2gFrTuZhFM,2012.0,4,10,2017,Bigfoot,Watch Your 12! Scene,tt1876261 ms_ERfOYnqI,2012.0,8,10,2017,Bigfoot,Sasquatch the Sheriff Slayer Scene,tt1876261 DoVnHRhvtKI,2012.0,9,10,2017,Bigfoot,Sorry Dude Scene,tt1876261 _2vMtzWb6q0,2012.0,7,10,2017,Bigfoot,Ambushing the Beast Scene,tt1876261 Mh51HEise7Q,2012.0,6,10,2017,Bigfoot,Bombarding Scene,tt1876261 _6RI-8Ia4do,2012.0,3,10,2017,Bigfoot,Rafter Ravage Scene,tt1876261 961QhyKlg34,2012.0,2,10,2017,Bigfoot,Kickin' It with Alice Cooper Scene,tt1876261 ROlSjAgE93Q,2012.0,5,10,2017,Bigfoot,Sasquashed Scene,tt1876261 ZSQBKh64SJA,2012.0,10,10,2017,Bigfoot,Rushmore Rampage Scene,tt1876261 AYy3qj5Y84I,2013.0,6,10,2017,Battledogs,Taking on the Pack Scene,tt2457138 DvMB2pgYRMM,2013.0,10,10,2017,Battledogs,I Already Dropped It! Scene,tt2457138 b3IInexeGWE,2013.0,8,10,2017,Battledogs,We're Not Gonna Make It! Scene,tt2457138 KKDCqTCoLQ4,2013.0,9,10,2017,Battledogs,"Chew on This, Mother! Scene",tt2457138 su9foi8t6NI,2013.0,5,10,2017,Battledogs,We're Here to Protect You Scene,tt2457138 iDTYtgkzpZo,2013.0,4,10,2017,Battledogs,We Need Her Alive Scene,tt2457138 gm5nPntwGQA,2013.0,7,10,2017,Battledogs,Get Back! Scene,tt2457138 OTAO1MRbmNY,2013.0,3,10,2017,Battledogs,Time to Go to Work Scene,tt2457138 _6IlaKlrXbs,2013.0,2,10,2017,Battledogs,Let's See What These Things Can Do Scene,tt2457138 cRc7p5HzKIQ,2013.0,1,10,2017,Battledogs,Transformation Scene,tt2457138 8ITOvb7Des0,2014.0,9,10,2017,Sex Tape,I'm Gonna Buy a Horse Scene,tt1956620 AHjOZLikqoM,2014.0,10,10,2017,Sex Tape,I Jumped Off A Balcony! Scene,tt1956620 aRPInpAD3_o,2014.0,8,10,2017,Sex Tape,The Mayor of Thousand Oaks Scene,tt1956620 R1GZ5ajb_xc,2014.0,7,10,2017,Sex Tape,What is Happening? Scene,tt1956620 IvgFrEk1JqA,2014.0,6,10,2017,Sex Tape,Let's Do Cocaine! Scene,tt1956620 R2DhcfXooy8,2014.0,5,10,2017,Sex Tape,Kids with Oversize Kidneys Scene,tt1956620 JyAbZxxgLw8,2014.0,2,10,2017,Sex Tape,Enjoyed Your Video Scene,tt1956620 Xc3bqi1G5xk,2014.0,3,10,2017,Sex Tape,Who Else Has These Things? Scene,tt1956620 LszhBmIWjeE,2014.0,4,10,2017,Sex Tape,The Full Lincoln Scene,tt1956620 lxlwKE2-3fg,2014.0,1,10,2017,Sex Tape,Instant Boner-Giver Scene,tt1956620 wC4MzUvxVa0,2014.0,10,11,2017,My Man Is a Loser,I Have Feelings for You Scene,tt2166934 cwOh20xN82E,2014.0,11,11,2017,My Man Is a Loser,Love the Flaws Scene,tt2166934 r1NUy3Rq8n4,2014.0,9,11,2017,My Man Is a Loser,Fight in the Club Scene,tt2166934 4YuwbC-9aDI,2014.0,7,11,2017,My Man Is a Loser,A Ladies Day Scene,tt2166934 HVlrXQ3qWqo,2014.0,6,11,2017,My Man Is a Loser,The Happy Kidnap Scene,tt2166934 NqmZSSpvghU,2014.0,8,11,2017,My Man Is a Loser,Three Stages of Cuddling Scene,tt2166934 Yfqg-PxRCD8,2014.0,4,11,2017,My Man Is a Loser,"Look, Listen and Learn Scene",tt2166934 lUglQukweZY,2014.0,1,11,2017,My Man Is a Loser,Relationship Advice Scene,tt2166934 zjdTL3Z77G8,2014.0,2,11,2017,My Man Is a Loser,Married Men in the Club Scene,tt2166934 iKscMa0XRXo,2014.0,3,11,2017,My Man Is a Loser,The Fix Scene,tt2166934 dfofju459FA,2014.0,5,11,2017,My Man Is a Loser,A Couple That Cries Together Scene,tt2166934 S98AgHKyX8o,2013.0,9,12,2017,Pulling Strings,On the Town With Mariachis Scene,tt3203890 Yn_W5-xgf28,2013.0,11,12,2017,Pulling Strings,You Used Me Scene,tt3203890 hY0SFHtFq9w,2013.0,12,12,2017,Pulling Strings,I'm Sorry I Hurt You Scene,tt3203890 H0-STiAQTqQ,2013.0,10,12,2017,Pulling Strings,Paying Off a Gangster Scene,tt3203890 1WlF1nxQKgw,2013.0,6,12,2017,Pulling Strings,A Daughter's Love Scene,tt3203890 p7CweK_hS90,2013.0,8,12,2017,Pulling Strings,Why You Don't See Me Scene,tt3203890 hV6I03_cIks,2013.0,7,12,2017,Pulling Strings,Maria's Song Scene,tt3203890 3BIyw7X0j74,2013.0,5,12,2017,Pulling Strings,Mexican Seer Scene,tt3203890 7LmO5fAuT8U,2013.0,3,12,2017,Pulling Strings,Drunk American Girl Scene,tt3203890 OSeQk_f4hSY,2013.0,2,12,2017,Pulling Strings,A Fateful Party Scene,tt3203890 nSCUWDt53fw,2013.0,1,12,2017,Pulling Strings,Visa Denied Scene,tt3203890 tbMeRyWgdW4,2013.0,4,12,2017,Pulling Strings,Alejandro's Scheme Scene,tt3203890 H3jNVPIi5YQ,2013.0,9,10,2017,Instructions Not Included,I Don't Wanna Go! Scene,tt2378281 0_s8rbNokS4,2013.0,8,10,2017,Instructions Not Included,Different Families Scene,tt2378281 KarwL_yYLcY,2013.0,4,10,2017,Instructions Not Included,Valentin Takes a Dive Scene,tt2378281 5Ka1bqIBXH0,2013.0,5,10,2017,Instructions Not Included,Stuntman Hell Scene,tt2378281 naPW3XAHz0g,2013.0,7,10,2017,Instructions Not Included,What Does Mom Look Like? Scene,tt2378281 pjHBTYOeSxE,2013.0,6,10,2017,Instructions Not Included,A Letter From Mom Scene,tt2378281 Yz6pNUcMwzo,2013.0,3,10,2017,Instructions Not Included,Father and Daughter Bonding Scene,tt2378281 qfKQJyqMnvw,2013.0,10,10,2017,Instructions Not Included,Maggie's Big Day Scene,tt2378281 hKH27VchVb4,2013.0,2,10,2017,Instructions Not Included,You're the Father Scene,tt2378281 1NnwUUf3RMg,2013.0,1,10,2017,Instructions Not Included,Big Fears and Small Fears Scene,tt2378281 nLpJ76VuXsA,2010.0,10,10,2017,Sound of Noise,Electric Love Scene,tt1278449 6eV48Ir-RYc,2010.0,8,10,2017,Sound of Noise,I Wrote This for You Scene,tt1278449 9_GelFK6rdw,2010.0,9,10,2017,Sound of Noise,The Grand Finale Scene,tt1278449 tpnUv93AAp4,2010.0,7,10,2017,Sound of Noise,I Want Silence! Scene,tt1278449 Y2NT0jeoBXk,2010.0,6,10,2017,Sound of Noise,Construction Music Scene,tt1278449 fkQHKvo7ZAw,2010.0,3,10,2017,Sound of Noise,Medical Music Scene,tt1278449 _pe3ht3F0A4,2010.0,4,10,2017,Sound of Noise,Musicians Scene,tt1278449 blGRLfNok3E,2010.0,2,10,2017,Sound of Noise,Drum Off Scene,tt1278449 qS1MeoM8iA0,2010.0,5,10,2017,Sound of Noise,Money 4 U Honey Scene,tt1278449 2iMVLR9jP1E,2010.0,1,10,2017,Sound of Noise,Drums vs. Cop Scene,tt1278449 fDSyuyOtPRU,2013.0,10,10,2017,Joe,Rescuing Dorothy Scene,tt2382396 m3CMdoMIX2k,2013.0,8,10,2017,Joe,Get the Hell Away From Me Scene,tt2382396 XIhDPwuwQdc,2013.0,9,10,2017,Joe,I'm Gonna Make Trouble Scene,tt2382396 Q-X3-JDIQLM,2013.0,7,10,2017,Joe,A Little Drink Never Hurt Nobody Scene,tt2382396 3Ks6tKs541g,2013.0,6,10,2017,Joe,Restraint Keeps Me Alive Scene,tt2382396 ZJ1UwZPZN6A,2013.0,5,10,2017,Joe,Don't Disrespect My Family Scene,tt2382396 QRWluPmgyow,2013.0,2,10,2017,Joe,Looking for Work Scene,tt2382396 n6mWh_43Azs,2013.0,3,10,2017,Joe,Hello Scene,tt2382396 uJDmoisR-28,2013.0,1,10,2017,Joe,"Scene A Selfish, Old Drunk",tt2382396 6ya4pGA6zPk,2013.0,4,10,2017,Joe,Teach You About Break Dancin' Scene,tt2382396 RybQmyBoWEQ,1993.0,8,10,2017,Kalifornia,Shoot The Dog Scene,tt0107302 egB-SG97EcI,1993.0,7,10,2017,Kalifornia,I Think I Gotta Kill You Scene,tt0107302 _pin0H9Udho,1993.0,10,10,2017,Kalifornia,Adele's Goodbye Scene,tt0107302 1c5xWXSWSgo,1993.0,9,10,2017,Kalifornia,Bri Came Back Scene,tt0107302 J329mOtIQ_Q,1993.0,6,10,2017,Kalifornia,Torture Tape Scene,tt0107302 YWJMmQUGP00,1993.0,4,10,2017,Kalifornia,Black Dahlia Theory Scene,tt0107302 OqzgxMFTQfU,1993.0,5,10,2017,Kalifornia,Teaching Brian to Shoot Scene,tt0107302 UxHXWhEq5lo,1993.0,3,10,2017,Kalifornia,Bathroom Kill Scene,tt0107302 yFSvuz5aHy8,1993.0,2,10,2017,Kalifornia,Bad Luck and Karma Scene,tt0107302 x_BYzj4jQEM,1993.0,1,10,2017,Kalifornia,Poor White Trash Scene,tt0107302 4cyZctbdFik,2014.0,4,10,2017,Cymbeline,He Hath Enjoyed Her Scene,tt3093522 mmdPZs0Nvvg,2014.0,8,10,2017,Cymbeline,Where Is Thy Head? Scene,tt3093522 s6n8HGwboO4,2014.0,10,10,2017,Cymbeline,Reunited Scene,tt3093522 TAK8DeL_w00,2014.0,1,10,2017,Cymbeline,A Covenant Scene,tt3093522 kZCgrTDVRbI,2014.0,2,10,2017,Cymbeline,Be Revenged Scene,tt3093522 GYh7IHTeLus,2014.0,9,10,2017,Cymbeline,I Killed Thy Daughter Scene,tt3093522 99IsS-uXJzQ,2014.0,7,10,2017,Cymbeline,Hold Me Your Loyal Servant Scene,tt3093522 GylxYHpdxVQ,2014.0,6,10,2017,Cymbeline,Art Not Afeard? Scene,tt3093522 5QFZ_Kh7vP0,2014.0,3,10,2017,Cymbeline,Taking the Treasure Scene,tt3093522 g_wEMoy_wi0,2014.0,5,10,2017,Cymbeline,What Is It To Be False? Scene,tt3093522 uzeSNmjxyNg,2014.0,10,10,2017,Revenge of the Green Dragons,Paying the Price Scene,tt1396523 FmEHRr23Hro,2014.0,8,10,2017,Revenge of the Green Dragons,Restaurant Murder Scene,tt1396523 Sq7RMukT_sY,2014.0,5,10,2017,Revenge of the Green Dragons,Moon Cakes Scene,tt1396523 U4fnEAu1--0,2014.0,9,10,2017,Revenge of the Green Dragons,A Heated Trial Scene,tt1396523 nGx3WY944DU,2014.0,7,10,2017,Revenge of the Green Dragons,Going too Far Scene,tt1396523 wyifbBO6sAY,2014.0,6,10,2017,Revenge of the Green Dragons,Love and a Drug Bust Scene,tt1396523 sk0mjld_eow,2014.0,4,10,2017,Revenge of the Green Dragons,Revenge on the White Tigers Scene,tt1396523 Ubb88WMrdmo,2014.0,3,10,2017,Revenge of the Green Dragons,Shootout in the Club Scene,tt1396523 4wv_1umbZ-w,2014.0,1,10,2017,Revenge of the Green Dragons,Green Dragons Are Somebody Scene,tt1396523 kHQq6ri9MDI,2014.0,2,10,2017,Revenge of the Green Dragons,The Killer Child Scene,tt1396523 vJ6XJtlqqZo,2013.0,11,11,2017,Life of Crime,A New Plan Scene,tt1663207 n6H7zga2Ks0,2013.0,10,11,2017,Life of Crime,You're Different Scene,tt1663207 SOR9UOc-alI,2013.0,9,11,2017,Life of Crime,I Know What You Did Scene,tt1663207 CFOC-_DYKXk,2013.0,8,11,2017,Life of Crime,I'm Ready to Go Home Scene,tt1663207 MGRJhDyY9ls,2013.0,5,11,2017,Life of Crime,The Peep Hole Scene,tt1663207 rZs0ZkhzpsI,2013.0,6,11,2017,Life of Crime,Telling Mickey the Truth Scene,tt1663207 THuOIvlbIjM,2013.0,7,11,2017,Life of Crime,Take Your Clothes Off Scene,tt1663207 WeSHSxMfC0A,2013.0,2,11,2017,Life of Crime,The Kidnapping Scene,tt1663207 07GcBnddoMU,2013.0,3,11,2017,Life of Crime,Who Is This? Scene,tt1663207 RIInmRkYOXc,2013.0,4,11,2017,Life of Crime,The Ransom Call Scene,tt1663207 cMFosgxgPAs,2013.0,1,11,2017,Life of Crime,I Hope He Learned Something Scene,tt1663207 u5hpQ0KeRgY,2014.0,7,10,2017,A Most Wanted Man,God's Will Scene,tt1972571 J6osFXTp7WQ,2014.0,10,10,2017,A Most Wanted Man,The Aftermath Scene,tt1972571 B0nhCPv8VB8,2014.0,4,10,2017,A Most Wanted Man,The Chase Scene,tt1972571 kqBMHRX-c-4,2014.0,8,10,2017,A Most Wanted Man,It Takes a Minnow Scene,tt1972571 oG-MKxVWwi4,2014.0,2,10,2017,A Most Wanted Man,You're Going to Help Me Scene,tt1972571 vZ3nHOtlQiU,2014.0,9,10,2017,A Most Wanted Man,The Abduction Gone Wrong Scene,tt1972571 M9FAInQwCm0,2014.0,6,10,2017,A Most Wanted Man,You've Crossed the Line Scene,tt1972571 ilXtCX0-CkE,2014.0,1,10,2017,A Most Wanted Man,Annabel Richter Scene,tt1972571 XvOKgNVwLes,2014.0,5,10,2017,A Most Wanted Man,You Gotta Tell Me Scene,tt1972571 AoPqvTGZv6g,2014.0,3,10,2017,A Most Wanted Man,The Bad in a Man Scene,tt1972571 vOfFVhSiwiA,2014.0,10,10,2017,The Prince,Let's Go Home Scene,tt1754656 6nZJPF_VgIQ,2014.0,9,10,2017,The Prince,Assassin Showdown Scene,tt1754656 Hj12WETYG0U,2014.0,8,10,2017,The Prince,Kidnapped Scene,tt1754656 yLJ5hUWH0yE,2014.0,5,10,2017,The Prince,Assassins on the Highway Scene,tt1754656 pizMaFdtY-s,2014.0,7,10,2017,The Prince,Life and Death Situation Scene,tt1754656 IfNo8NJyy8U,2014.0,3,10,2017,The Prince,Sexual Tension Scene,tt1754656 s_cz5JFWpzE,2014.0,4,10,2017,The Prince,Poolside Assassination Scene,tt1754656 AUPdPriOg6I,2014.0,6,10,2017,The Prince,That Man Brings Hell With Him Scene,tt1754656 Z4G5St8apOQ,2014.0,1,10,2017,The Prince,Lap Dance Fail Scene,tt1754656 GLeGjBbLSJI,2014.0,2,10,2017,The Prince,You're Not Going Anywhere Scene,tt1754656 Vh4rJorGhHQ,2011.0,9,9,2017,Headhunters,Revenge Scene,tt1614989 xHTAYPp_gzs,2011.0,7,9,2017,Headhunters,Diana Tells the Truth Scene,tt1614989 C3ajmVuQPk8,2011.0,8,9,2017,Headhunters,Scared Scene,tt1614989 7-juqE5ASnc,2011.0,2,9,2017,Headhunters,Finding Ove Scene,tt1614989 iiYX4JT6C_w,2011.0,5,9,2017,Headhunters,The Car Crash Scene,tt1614989 7UQFQ-FyV98,2011.0,6,9,2017,Headhunters,Cas's Plan Scene,tt1614989 Xr3vKjP1PUg,2011.0,4,9,2017,Headhunters,The Toilet Scene,tt1614989 8-S0Drs1N9Q,2011.0,3,9,2017,Headhunters,Don't Do Anything Stupid Scene,tt1614989 dFuy0W8-Wj4,2011.0,1,9,2017,Headhunters,A Startling Discovery Scene,tt1614989 RMdS3Hi-rMA,2006.0,4,10,2017,Special,We Have a Problem Scene,tt0479162 DE6io8Y3FQQ,2006.0,10,10,2017,Special,I'm Losing My Mind Scene,tt0479162 R8UDjs0FAdI,2006.0,6,10,2017,Special,You Don't Have a Clue Scene,tt0479162 OrHgSvrG8Z4,2006.0,9,10,2017,Special,Invisible Attackers Scene,tt0479162 nBGdf1uWu5A,2006.0,8,10,2017,Special,I'll Make You Disappear Scene,tt0479162 hHRWVczf8d8,2006.0,3,10,2017,Special,I'm Not Like Most People Scene,tt0479162 Vq5QdeqLYOw,2006.0,7,10,2017,Special,This is About Money? Scene,tt0479162 wdwd_fCVhFM,2006.0,1,10,2017,Special,You're Telepathic Scene,tt0479162 MUvtyyo1vdc,2006.0,5,10,2017,Special,Teleportation Scene,tt0479162 8tnIy3PuDiY,2006.0,2,10,2017,Special,Grocery Store Heroics Scene,tt0479162 44zsdC87LJs,2007.0,9,10,2017,"30,000 Leagues Under the Sea",Abandon Ship! Scene,tt1056026 XhWl0YaZKfY,2007.0,10,10,2017,"30,000 Leagues Under the Sea",We Got Her Sir Scene,tt1056026 EPFnZSvRq6s,2007.0,8,10,2017,"30,000 Leagues Under the Sea",Neutralizing the Squid Scene,tt1056026 L7rGRnu-2UE,2007.0,5,10,2017,"30,000 Leagues Under the Sea",The 8th Continent of the World Scene,tt1056026 mRXz6hTAW88,2007.0,6,10,2017,"30,000 Leagues Under the Sea",Everyone is the Enemy Scene,tt1056026 t8_p_4sqv4k,2007.0,7,10,2017,"30,000 Leagues Under the Sea",Let's Make a Deal Scene,tt1056026 7Tx0kjtoAks,2007.0,3,10,2017,"30,000 Leagues Under the Sea",Captain Nemo Scene,tt1056026 1LwSe_JnByw,2007.0,1,10,2017,"30,000 Leagues Under the Sea",Operation USS Scotia Scene,tt1056026 6rNaFgA6YlY,2007.0,4,10,2017,"30,000 Leagues Under the Sea",Robot Squid Attack Scene,tt1056026 dfALZ10xUyA,2007.0,2,10,2017,"30,000 Leagues Under the Sea",Breathless Scene,tt1056026 vdwWjsJLaJQ,2008.0,10,10,2017,100 Million BC,Extinct Again Scene,tt1136683 gtmmKXgSUwo,2008.0,9,10,2017,100 Million BC,Dino Trap Fail Scene,tt1136683 nDrjVVyUjZo,2008.0,5,10,2017,100 Million BC,Pterodactyl Trouble Scene,tt1136683 fN0w62AurJA,2008.0,8,10,2017,100 Million BC,Tyrannosaurus on the Loose Scene,tt1136683 B1uklxoaP24,2008.0,7,10,2017,100 Million BC,Time Traveling T-Rex Scene,tt1136683 aViOusNEtoU,2008.0,6,10,2017,100 Million BC,Portal to the 21st Century Scene,tt1136683 6GEll0BI7ko,2008.0,2,10,2017,100 Million BC,Harmless or Hostile? Scene,tt1136683 0I8xeAEpb8E,2008.0,4,10,2017,100 Million BC,Leave Me Scene,tt1136683 sSLdFuRVlmc,2008.0,3,10,2017,100 Million BC,Strange Saviors Scene,tt1136683 wWpNqaKrq8o,2008.0,1,10,2017,100 Million BC,Cretaceous Search and Rescue Scene,tt1136683 3SVCkLf0NiM,2015.0,4,10,2017,Jupiter Ascending,Claim Your Title Scene,tt1617661 FE42Xc_laYU,2015.0,7,10,2017,Jupiter Ascending,To Live is to Consume Scene,tt1617661 FeaVbBKg8tw,2015.0,8,10,2017,Jupiter Ascending,Refusal to Abdicate Scene,tt1617661 IQuxKuLkByg,2015.0,10,10,2017,Jupiter Ascending,Your Majesty Scene,tt1617661 8SvHSEy3xCs,2015.0,1,10,2017,Jupiter Ascending,Alien Operation Rescue Scene,tt1617661 I2s3FG8KpKc,2015.0,5,10,2017,Jupiter Ascending,Caine in the Void Scene,tt1617661 BZTDkSXwBD4,2015.0,9,10,2017,Jupiter Ascending,You Begged Me to Do It Scene,tt1617661 kKBsDfBDmG0,2014.0,2,10,2017,Draft Day,Burning the Draft Analysis Scene,tt2223990 LDmKhGcB0Xs,2015.0,3,10,2017,Jupiter Ascending,They're Here Scene,tt1617661 LdRoFo6JuNs,2015.0,6,10,2017,Jupiter Ascending,Crashing the Wedding Scene,tt1617661 L589GA-KKq4,2015.0,2,10,2017,Jupiter Ascending,Spaceship Chase Through Chicago Scene,tt1617661 M1hXX6aq1wA,2014.0,10,10,2017,Draft Day,Nothing Into Something Scene,tt2223990 qjqJtri_EG4,2014.0,8,10,2017,Draft Day,I Have the Pick Scene,tt2223990 4kRRDuR7OBM,2014.0,7,10,2017,Draft Day,Trading With the Jaguars Scene,tt2223990 S989EXPoZKs,2014.0,4,10,2017,Draft Day,Bo vs. Mack Scene,tt2223990 QT1Tl6npLic,2014.0,9,10,2017,Draft Day,I Want My Picks Back Scene,tt2223990 COSkA00zJlo,2014.0,3,10,2017,Draft Day,"If I Trade You, I Trade You Scene",tt2223990 8CcVO0mQ1go,2014.0,6,10,2017,Draft Day,The NFL Draft Scene,tt2223990 lnfpTgAQ0Ys,2014.0,5,10,2017,Draft Day,Why Did You Hate Your Father? Scene,tt2223990 3UbNdsZot98,2014.0,1,10,2017,Draft Day,We Have First Pick Scene,tt2223990 mKrFcdRLGQI,2014.0,12,12,2017,Cesar Chavez,A Better Tomorrow Scene,tt1621046 8_oVkRFKukY,2014.0,8,12,2017,Cesar Chavez,A Leader Not a Martyr Scene,tt1621046 iMaL4la2Q78,2014.0,11,12,2017,Cesar Chavez,Chavez Goes to Europe Scene,tt1621046 2cg4S8JO_hQ,2014.0,10,12,2017,Cesar Chavez,Nixon Becomes President Scene,tt1621046 tNheq6EGWuU,2014.0,9,12,2017,Cesar Chavez,The Grape Boycott Scene,tt1621046 isY1TQ26Gnc,2014.0,5,12,2017,Cesar Chavez,Senator Kennedy Scene,tt1621046 w01G5wVBQKs,2014.0,7,12,2017,Cesar Chavez,The Fast Scene,tt1621046 JnlOLl7Ew8I,2014.0,6,12,2017,Cesar Chavez,Advocating Nonviolence Scene,tt1621046 APxaNrWnSq0,2014.0,4,12,2017,Cesar Chavez,The Next Step Scene,tt1621046 2MFlcONJD-A,2014.0,2,12,2017,Cesar Chavez,Huelga! Scene,tt1621046 YACsFmbB9Ok,2014.0,3,12,2017,Cesar Chavez,Stay Together! Scene,tt1621046 NbSduHWUQDc,2014.0,1,12,2017,Cesar Chavez,Have You Read the Bill of Rights? Scene,tt1621046 wzkoiXWdFzw,2012.0,11,11,2017,Emperor,I Need Your Help Scene,tt2103264 y-m4KWfeyvs,2012.0,9,11,2017,Emperor,Bring Me the Scene,tt2103264 bmYXbieirM4,2012.0,10,11,2017,Emperor,Meeting the Scene,tt2103264 t8VC4GBHwds,2012.0,8,11,2017,Emperor,Complete Devotion Scene,tt2103264 jBt5rfpIjws,2012.0,5,11,2017,Emperor,A Web of Power Scene,tt2103264 VP5nSFxqyxo,2012.0,6,11,2017,Emperor,Another Way Scene,tt2103264 aKidFnGJDYA,2012.0,7,11,2017,Emperor,Tatemae and Honne Scene,tt2103264 FkjBXGnq8Jk,2012.0,1,11,2017,Emperor,10 Days Scene,tt2103264 x_Gr6RT8Aho,2012.0,2,11,2017,Emperor,A Spark Scene,tt2103264 5S8moDSqK0U,2012.0,3,11,2017,Emperor,A New Mission Scene,tt2103264 Kzw5aWCSZs8,2012.0,4,11,2017,Emperor,It's Not Black and White Scene,tt2103264 x5ajdqqytyA,2013.0,5,10,2017,Burning Blue,"If We're Careful, We Can Do This Scene",tt1811307 bNiztacMAJ0,2013.0,10,10,2017,Burning Blue,A Disgrace to the Uniform Scene,tt1811307 zElzcOQWLLo,2013.0,9,10,2017,Burning Blue,Homophobic Investigation Scene,tt1811307 w5mtX7FnO3M,2013.0,7,10,2017,Burning Blue,A Kiss Scene,tt1811307 2EojVDDg3xM,2013.0,8,10,2017,Burning Blue,I Loved Matt Scene,tt1811307 e1FWoMLjAU0,2013.0,6,10,2017,Burning Blue,Trouble Brewing Scene,tt1811307 jsUGvhq2MLM,2013.0,4,10,2017,Burning Blue,The Party Scene,tt1811307 4V9xYmVeNL4,2013.0,2,10,2017,Burning Blue,A Magic Trick Scene,tt1811307 lP-A8UaVbLE,2013.0,1,10,2017,Burning Blue,Jet Fighter Crash Scene,tt1811307 xkjfSZtHBXc,2013.0,3,10,2017,Burning Blue,Forbidden Love Scene,tt1811307 Ll-Ff-PIPOQ,2012.0,5,10,2017,The Hunt,A Sick Person Scene,tt2106476 8o1QfQXKstU,2012.0,10,10,2017,The Hunt,Scene,tt2106476 lhzE7_0RSow,2012.0,1,10,2017,The Hunt,The Accusation Scene,tt2106476 vWNDTaQG9jE,2012.0,2,10,2017,The Hunt,Get Out of Here Scene,tt2106476 wdLfTMSAErQ,2012.0,4,10,2017,The Hunt,He Didn't Do Anything Scene,tt2106476 lh8UIXq5ELc,2012.0,3,10,2017,The Hunt,Talking to Theo Scene,tt2106476 ByN3jkG-PzQ,2012.0,8,10,2017,The Hunt,I Want My Groceries Scene,tt2106476 i7Y0sXYRwhg,2012.0,6,10,2017,The Hunt,Marcus Confronts Klara Scene,tt2106476 JEbShXn2-Vs,2012.0,7,10,2017,The Hunt,Hate Crimes Scene,tt2106476 iUuWyMhkd9A,2012.0,9,10,2017,The Hunt,There Is Nothing Scene,tt2106476 UbQlBLCvOk0,2012.0,9,10,2017,The Bay,Too Much Pain Scene,tt1713476 7InJqZBrCuw,2012.0,2,10,2017,The Bay,Bacterial Infection Scene,tt1713476 zIWGx1aneus,2012.0,3,10,2017,The Bay,Something Really Bad Scene,tt1713476 v1ef0grzZWM,2012.0,10,10,2017,The Bay,Help Me Scene,tt1713476 w2z6YPTKVsA,2012.0,8,10,2017,The Bay,If You Find This Tape Scene,tt1713476 O4fYclm_0As,2012.0,7,10,2017,The Bay,Go Away! Scene,tt1713476 XztayplmOsE,2012.0,6,10,2017,The Bay,Never Been So Scared Scene,tt1713476 aELUig9qu3w,2012.0,1,10,2017,The Bay,Bring Me to a Hospital Scene,tt1713476 OdJlNbw8ru4,2012.0,5,10,2017,The Bay,They're Eating Their Flesh Scene,tt1713476 i3VHMIy8wHI,2012.0,4,10,2017,The Bay,The Last Swim Scene,tt1713476 L1hEpMsgttE,2009.0,10,10,2017,Survival of the Dead,Mayhem! Scene,tt1134854 VJgFWMPoK1M,2009.0,8,10,2017,Survival of the Dead,Not My Hat Scene,tt1134854 m_udTXudsnM,2009.0,9,10,2017,Survival of the Dead,Life Changing Scene,tt1134854 eiKrNt30jS4,2009.0,6,10,2017,Survival of the Dead,May You Get Into Heaven Scene,tt1134854 772oaU4DFTI,2009.0,7,10,2017,Survival of the Dead,Keeping Them in Chains Scene,tt1134854 sfqjgFBIBFQ,2009.0,4,10,2017,Survival of the Dead,Pole Trouble Scene,tt1134854 d82uV320Fzw,2009.0,5,10,2017,Survival of the Dead,Extinguished Scene,tt1134854 JqwzeAkRcJA,2009.0,2,10,2017,Survival of the Dead,Miracles Scene,tt1134854 Bl6M9MfRbcU,2009.0,3,10,2017,Survival of the Dead,Gettin' to Know Each Other Scene,tt1134854 gmJtNjLjsNQ,2007.0,10,10,2017,I Am Omega,Outrunning the Bombs Scene,tt1075746 I30x5dMvcA8,2007.0,7,10,2017,I Am Omega,We Got Company Scene,tt1075746 h6usdPpiqho,2009.0,1,10,2017,Survival of the Dead,I Can't! Scene,tt1134854 j-TPDJFWErg,2007.0,9,10,2017,I Am Omega,Fight to the Death Scene,tt1075746 wmbN_BXQaho,2007.0,5,10,2017,I Am Omega,Let's Get Goin' Scene,tt1075746 Mge3npvF4R0,2007.0,6,10,2017,I Am Omega,Nice to Meet You Scene,tt1075746 IORWBsyIivo,2007.0,8,10,2017,I Am Omega,A Perfect Utopia Scene,tt1075746 4aKmbFnV-mI,2007.0,3,10,2017,I Am Omega,Communication Issues Scene,tt1075746 1AhrD2-cvrw,2007.0,4,10,2017,I Am Omega,Tried to Ask Ya Nice Scene,tt1075746 CGwzaIS-tLk,2007.0,2,10,2017,I Am Omega,Property Check Scene,tt1075746 KxcKAGtHl3A,2007.0,1,10,2017,I Am Omega,Nightmare of the Undead Scene,tt1075746 218nJYQ3oMI,2015.0,7,10,2017,Spare Parts,The Competition Begins Scene,tt3233418 DKqFCG3UTEs,2015.0,1,10,2017,Spare Parts,An Underwater Robotics Competition Scene,tt3233418 ynC2_22yuGA,2015.0,9,10,2017,Spare Parts,A Finish Line Always Appears Scene,tt3233418 UyKyxHFIT3A,2015.0,5,10,2017,Spare Parts,You Wanna Be His Father? Scene,tt3233418 6ldKc6yXTyg,2015.0,3,10,2017,Spare Parts,Buying the Parts Scene,tt3233418 S3-atF715Mg,2015.0,4,10,2017,Spare Parts,Have You Seen Ramiro? Scene,tt3233418 xLZDij_-ZRw,2015.0,2,10,2017,Spare Parts,I Need You to Slap Me Scene,tt3233418 DHYCHYsyqTc,2015.0,8,10,2017,Spare Parts,Finish Strong Scene,tt3233418 RHmp-rhCrLo,2015.0,10,10,2017,Spare Parts,First Prize Scene,tt3233418 HgQDAW28DsA,2015.0,6,10,2017,Spare Parts,Am I Up For This? Scene,tt3233418 By05PXEvGWA,2014.0,5,10,2017,What We Did on Our Holiday,In the End None of it Matters Scene,tt2725962 QMmxxD7h5-Y,2014.0,10,10,2017,What We Did on Our Holiday,Love Those Around You Scene,tt2725962 IPPeDiU4Vdo,2014.0,9,10,2017,What We Did on Our Holiday,We're All Ridiculous Scene,tt2725962 Fr1A3ok_kfw,2014.0,7,10,2017,What We Did on Our Holiday,Have a Good Valhalla Scene,tt2725962 hAU8AQ6xlw8,2014.0,8,10,2017,What We Did on Our Holiday,Granddad Died Scene,tt2725962 u1Pgftn5H94,2014.0,6,10,2017,What We Did on Our Holiday,Our Present to Granddad Scene,tt2725962 GvDcscZXfl8,2014.0,3,10,2017,What We Did on Our Holiday,What is Your Actual Job? Scene,tt2725962 4I9-0dipqo0,2014.0,4,10,2017,What We Did on Our Holiday,A Warrior's Farewell Scene,tt2725962 5xnSzPHjw10,2014.0,1,10,2017,What We Did on Our Holiday,Thank You Jesus Scene,tt2725962 ItMY_4RobkM,2014.0,2,10,2017,What We Did on Our Holiday,Pissed Off With This Dying Thing Scene,tt2725962 213l0Kv26uQ,2009.0,4,10,2017,Princess of Mars,Bugs for Dessert Scene,tt1531911 nPRUkMAdukE,2009.0,2,10,2017,Princess of Mars,You Want Me to Jump? Scene,tt1531911 -E0UUIoS5xU,2009.0,9,10,2017,Princess of Mars,Sarka Sword Fight Scene,tt1531911 ncErLtJBlHw,2009.0,1,10,2017,Princess of Mars,I Owe You One Scene,tt1531911 SOa5HP_FHoQ,2009.0,8,10,2017,Princess of Mars,Time to End This Scene,tt1531911 _jF3JZMHL30,2009.0,10,10,2017,Princess of Mars,John Carter vs. Sarka Scene,tt1531911 P2NiGznbIcI,2009.0,7,10,2017,Princess of Mars,There Can Be Only One Scene,tt1531911 ez6GguY40SQ,2009.0,6,10,2017,Princess of Mars,Bug Blasters Scene,tt1531911 a1DuE8E4DpM,2009.0,3,10,2017,Princess of Mars,Spider Slayers Scene,tt1531911 1Dd5HFJn88E,2009.0,5,10,2017,Princess of Mars,Airship Ambush Scene,tt1531911 q30Pl1M6_DE,2013.0,9,10,2017,AE: Apocalypse Earth,River Rescue Scene,tt2756412 kL8e9CEgm6A,2013.0,5,10,2017,AE: Apocalypse Earth,More Than a Machine Scene,tt2756412 bBjLUZgx4WA,2013.0,10,10,2017,AE: Apocalypse Earth,Relativity's a Bitch Scene,tt2756412 V300Gtn8NVs,2013.0,7,10,2017,AE: Apocalypse Earth,Chameleon Counter-Offensive Scene,tt2756412 xME4tintsqs,2013.0,4,10,2017,AE: Apocalypse Earth,Let the River Take You Scene,tt2756412 Hsg_ZUoSlCs,2013.0,8,10,2017,AE: Apocalypse Earth,Get Back to the Ship Scene,tt2756412 WIBrEMlCGSM,2013.0,3,10,2017,AE: Apocalypse Earth,Best Damn Camouflage I Ever Saw Scene,tt2756412 l081UdHizvg,2013.0,6,10,2017,AE: Apocalypse Earth,Uniting Two Peoples Scene,tt2756412 J38c6k11K3U,2013.0,2,10,2017,AE: Apocalypse Earth,Crash-Landed Scene,tt2756412 M0iif-dNJus,2013.0,1,10,2017,AE: Apocalypse Earth,Emergency Launch Now! Scene,tt2756412 jra4awMyUr0,2004.0,7,10,2017,Control Room,The Picture Has Changed Scene,tt0391024 yYUtAKXuicA,2004.0,10,10,2017,Control Room,History is Written By the Victors Scene,tt0391024 toiIOy7q4xg,2004.0,3,10,2017,Control Room,The Human Cost Scene,tt0391024 mo2-63epZAM,2004.0,4,10,2017,Control Room,Images of War Scene,tt0391024 s_h-ZXgEtNo,2004.0,8,10,2017,Control Room,Losing Tarek Scene,tt0391024 5yGKubkHrio,2004.0,5,10,2017,Control Room,Most-Wanted Iraqi Cards Scene,tt0391024 QoT8ZUDDmKs,2004.0,9,10,2017,Control Room,America Prevails Scene,tt0391024 FsIaDwn2EtQ,2004.0,2,10,2017,Control Room,We Don't Have Those Pictures Scene,tt0391024 oS3Bld83J_o,2004.0,1,10,2017,Control Room,The American Media Were Hijacked Scene,tt0391024 gc19hOdR99c,2004.0,6,10,2017,Control Room,No Spin Scene,tt0391024 lEykI65QtSQ,2013.0,3,10,2017,The Smurfs 2,A Smurfday Surprise Scene,tt2017020 xbhm9F1ST6I,2013.0,2,10,2017,The Smurfs 2,The Naughties Scene,tt2017020 fQ09ePfYLpU,2013.0,1,10,2017,The Smurfs 2,How Smurfette Came to Be Scene,tt2017020 a8EeFNXk1TE,2013.0,6,10,2017,The Smurfs 2,Freedom Flighter Scene,tt2017020 6Xn4tr2grtc,2013.0,5,10,2017,The Smurfs 2,Paris Stork Race Scene,tt2017020 KEwC94CY-Go,2013.0,4,10,2017,The Smurfs 2,Candy Store Mischief Scene,tt2017020 WJOMiXmwfYE,2013.0,10,10,2017,The Smurfs 2,"Happy Smurfday, Smurfette! Scene",tt2017020 WEfMDGtX3K0,2013.0,8,10,2017,The Smurfs 2,Saving the Smurfs Scene,tt2017020 hn3XR4o8M4c,2013.0,7,10,2017,The Smurfs 2,Brewing the Formula Scene,tt2017020 pdmo-_KXg0Y,2013.0,9,10,2017,The Smurfs 2,Gargamel Goes Flying Scene,tt2017020 K2hcF1oOHb8,2011.0,1,10,2017,The Smurfs,Welcome to Smurf Village Scene,tt0472181 CVxgFZixwlg,2011.0,2,10,2017,The Smurfs,Through the Blue Portal Scene,tt0472181 5Ugqj1RATYE,2011.0,5,10,2017,The Smurfs,The Genius That Is Gargamel Scene,tt0472181 WsffSfKc-mw,2011.0,4,10,2017,The Smurfs,Meeting the Smurfs Scene,tt0472181 fLswSc81mw8,2011.0,3,10,2017,The Smurfs,Clumsy in the Bathroom Scene,tt0472181 GJ0-xGnrjBU,2011.0,6,10,2017,The Smurfs,Toy Store Teamwork Scene,tt0472181 IvGwIRIYlBo,2011.0,8,10,2017,The Smurfs,The Blue Moon Scene,tt0472181 WSYe57h6YUE,2011.0,7,10,2017,The Smurfs,Papa Smurf's Sacrifice Scene,tt0472181 x7qvOFN1QZg,2011.0,10,10,2017,The Smurfs,Clumsy Smurfs the Day Scene,tt0472181 HMUbL4Vgb2E,2011.0,9,10,2017,The Smurfs,Prepare to Get Smurfed Scene,tt0472181 xNzE5UoQmZw,2008.0,10,10,2017,Is Anybody There?,Saying Goodbye Scene,tt1130088 -Dny2rWieIA,2008.0,2,10,2017,Is Anybody There?,Grave Dance Scene,tt1130088 bugH1m4LteI,2008.0,4,10,2017,Is Anybody There?,I'll Teach You a Few Tricks Scene,tt1130088 noAefY8KRoQ,2008.0,9,10,2017,Is Anybody There?,Annie's Grave Scene,tt1130088 kjo_zi4cLJo,2008.0,8,10,2017,Is Anybody There?,Getting Involved,tt1130088 Zagt2ld1pwE,2008.0,6,10,2017,Is Anybody There?,You Don't Come Back Scene,tt1130088 9gEtABdjiiI,2008.0,7,10,2017,Is Anybody There?,Magic Show Scene,tt1130088 VpBuUC1P2jo,2008.0,5,10,2017,Is Anybody There?,Car Accident Scene,tt1130088 S88bgODlrbk,2008.0,3,10,2017,Is Anybody There?,Seance Scene,tt1130088 7SBBMiyv0kY,2008.0,1,10,2017,Is Anybody There?,Sorry For Not Saying Sorry Scene,tt1130088 g3vxfUb7Sr4,2012.0,10,10,2017,Much Ado About Nothing,Man is a Giddy Thing Scene,tt2094064 6AWo-9MFBug,2012.0,8,10,2017,Much Ado About Nothing,Is Not that Strange? Scene,tt2094064 U6PrB5bbWRM,2012.0,1,10,2017,Much Ado About Nothing,A Battle of Wits Scene,tt2094064 KJI1SIvGZEY,2012.0,7,10,2017,Much Ado About Nothing,Not To Be Married Scene,tt2094064 z4cGnSZQni4,2012.0,9,10,2017,Much Ado About Nothing,You Are an Ass! Scene,tt2094064 KlC81iup2Jo,2012.0,5,10,2017,Much Ado About Nothing,Horribly In Love With Her Scene,tt2094064 8ZkCvzJqCUY,2012.0,4,10,2017,Much Ado About Nothing,Tricking Benedick Scene,tt2094064 C919Gt7Yd2g,2012.0,6,10,2017,Much Ado About Nothing,The Night Watch Scene,tt2094064 yzTbstnZYro,2012.0,3,10,2017,Much Ado About Nothing,Sigh No More Scene,tt2094064 jH1hWH-WvLg,2012.0,2,10,2017,Much Ado About Nothing,I Will Live a Bachelor Scene,tt2094064 4D1OVjTF1E4,2012.0,7,10,2017,Grimm's Snow White,Decimate Them All Scene,tt2081255 VMteZw9UU-U,2012.0,6,10,2017,Grimm's Snow White,War is Upon Us Scene,tt2081255 eiuVC_cdyIA,2012.0,1,10,2017,Grimm's Snow White,A False Heart Scene,tt2081255 GuMg7x6_8No,2012.0,2,10,2017,Grimm's Snow White,Prince Alexander: Beast Slayer Scene,tt2081255 cRgXwpwVe4U,2012.0,3,10,2017,Grimm's Snow White,Snow & the Crow Scene,tt2081255 agzK8ig7rR0,2012.0,5,10,2017,Grimm's Snow White,A Prince in Prison Scene,tt2081255 wvknCnZ8HJ0,2012.0,4,10,2017,Grimm's Snow White,Saving Snow White Scene,tt2081255 EJOewEP6tKQ,2012.0,8,10,2017,Grimm's Snow White,A Prince Impaled Scene,tt2081255 vMs9qHAQaZE,2012.0,9,10,2017,Grimm's Snow White,The Headless Queen of Whitevale Scene,tt2081255 SH-HSmrjmBw,2012.0,10,10,2017,Grimm's Snow White,Happily Ever After Scene,tt2081255 c1K32XLhn1M,2013.0,6,10,2017,Angels Sing,Christmas is Stupid Scene,tt1833888 IrU4ze3VfD8,2013.0,7,10,2017,Angels Sing,Amazing Grace Scene,tt1833888 p9kL3O1TuMQ,2013.0,5,10,2017,Angels Sing,It Was All My Fault Scene,tt1833888 _q1BSBGTR2M,2013.0,2,10,2017,Angels Sing,Making a Deal Scene,tt1833888 jWP3sgGz2F8,2013.0,1,10,2017,Angels Sing,Uncle David Scene,tt1833888 JOXYV6UN3S0,2013.0,8,10,2017,Angels Sing,Memories Scene,tt1833888 8knM2DiWkUk,2013.0,4,10,2017,Angels Sing,There's Been an Accident Scene,tt1833888 uPcTCWfQbzQ,2013.0,3,10,2017,Angels Sing,The Crown Jewel Scene,tt1833888 pgDUFZ9TfPc,2013.0,9,10,2017,Angels Sing,Hanging Christmas Lights Scene,tt1833888 kC1Q45BQbY4,2013.0,10,10,2017,Angels Sing,Turning the Lights On Scene,tt1833888 6Nb7rSggCns,2013.0,1,10,2017,After Earth,What's in the Cage? Scene,tt1815862 1Zwl6vfqjNQ,2013.0,2,10,2017,After Earth,The Asteroid Storm Scene,tt1815862 SV8jbzudYJ8,2013.0,6,10,2017,After Earth,Fear is a Choice Scene,tt1815862 dDGMTl1Ya78,2013.0,3,10,2017,After Earth,Crashing on Earth Scene,tt1815862 t-lIuwPGT9w,2013.0,4,10,2017,After Earth,Baboon Attack Scene,tt1815862 eMgfTq1Z2n8,2013.0,5,10,2017,After Earth,Blood Contamination Scene,tt1815862 4KICpbB5YQY,2013.0,7,10,2017,After Earth,I'm Not a Coward! Scene,tt1815862 0vcXvLUt1E4,2013.0,10,10,2017,After Earth,Kitai Battles the Ursa Scene,tt1815862 Hxc048RM18U,2013.0,8,10,2017,After Earth,Defending the Nest Scene,tt1815862 8M1kdeDluRE,2013.0,9,10,2017,After Earth,It Has Found You Scene,tt1815862 FllAsMCrdJE,2008.0,10,10,2017,Mutant Chronicles,Running Out of Time Scene,tt0490181 XfeN42X2UHk,2008.0,8,10,2017,Mutant Chronicles,What Do You Believe? Scene,tt0490181 PS2CC6WdNMk,2008.0,1,10,2017,Mutant Chronicles,Mutant Attack! Scene,tt0490181 9QHYm5IVhHI,2008.0,9,10,2017,Mutant Chronicles,Making a Monster Scene,tt0490181 VCDY6MTuU6Y,2008.0,6,10,2017,Mutant Chronicles,War is Hell Scene,tt0490181 SNXqtm-WAh0,2008.0,7,10,2017,Mutant Chronicles,We're Still Human Scene,tt0490181 -05NPfkubKo,2008.0,5,10,2017,Mutant Chronicles,Juba's Last Stand Scene,tt0490181 JrPRGahKOoI,2008.0,4,10,2017,Mutant Chronicles,What Do You Weigh? Scene,tt0490181 Vfos_yqayxw,2008.0,3,10,2017,Mutant Chronicles,Crash Landing Scene,tt0490181 z3t0ltbfMJ8,2008.0,2,10,2017,Mutant Chronicles,How Do You Kill Them? Scene,tt0490181 XFHh8V9eIaU,2012.0,9,10,2017,Hellbenders,God Is on Our Side Scene,tt1865393 gSpHZ8Kuh4o,2012.0,10,10,2017,Hellbenders,Send Me to Hell Scene,tt1865393 ufhTl0M3rn4,2012.0,7,10,2017,Hellbenders,Priest Brawl Scene,tt1865393 Y8ML1TO5-JY,2012.0,8,10,2017,Hellbenders,The God Killer Scene,tt1865393 ehyYdjaZnoA,2012.0,5,10,2017,Hellbenders,The Demon's Revenge Scene,tt1865393 lxl55rsNihE,2012.0,6,10,2017,Hellbenders,Down and Out Scene,tt1865393 Z4nVqjAr_n8,2012.0,4,10,2017,Hellbenders,Demon Beatdown Scene,tt1865393 ABrBbozUYaI,2012.0,3,10,2017,Hellbenders,Sin Quota Scene,tt1865393 8oZJuop-N_g,2012.0,2,10,2017,Hellbenders,Getting High Scene,tt1865393 3YGQ4oen7gM,2012.0,1,10,2017,Hellbenders,Possessed Rabbi Scene,tt1865393 wMAAK7i1ib0,2008.0,3,10,2017,War of the Worlds 2,Inside the Alien Scene,tt1183733 QjJO-cEmxWg,2008.0,8,10,2017,War of the Worlds 2,"Vaporized, Again Scene",tt1183733 p8zwrVyJHxw,2008.0,2,10,2017,War of the Worlds 2,What Are You Waiting For? Scene,tt1183733 bp4HJ3JRxag,2008.0,9,10,2017,War of the Worlds 2,Suck On That Scene,tt1183733 CKtSDzT-SOo,2008.0,10,10,2017,War of the Worlds 2,Get Us Out of Here Scene,tt1183733 mkSxYpK4ALw,2008.0,7,10,2017,War of the Worlds 2,Entering the Martian Atmosphere Scene,tt1183733 4Q0eWJZIev0,2008.0,6,10,2017,War of the Worlds 2,Braving the Swarm Scene,tt1183733 SBW3d6oYdkU,2008.0,5,10,2017,War of the Worlds 2,Don't Touch the Walls Scene,tt1183733 S5fwxvrutg8,2008.0,4,10,2017,War of the Worlds 2,Fortune Favors the Bold Scene,tt1183733 q5ZwRphkFuc,2008.0,1,10,2017,War of the Worlds 2,I'm Gonna Find You Scene,tt1183733 Jq0iZ5okXgU,2005.0,5,10,2017,War of the Worlds,The Essence of Faith Scene,tt0407304 IwOoajZyRZU,2005.0,6,10,2017,War of the Worlds,I Don't Need the Lord! Scene,tt0407304 8Chr00fm6AM,2005.0,10,10,2017,War of the Worlds,Family Reunion Scene,tt0407304 jk1IJ5ggyQs,2005.0,2,10,2017,War of the Worlds,Bombing the Bridge Scene,tt0407304 sG41m7hVl9E,2005.0,9,10,2017,War of the Worlds,Come With Us or Die Scene,tt0407304 kzh2pWa1lzk,2005.0,3,10,2017,War of the Worlds,Horror in the Streets Scene,tt0407304 0Ij2veeSsE4,2005.0,8,10,2017,War of the Worlds,I Believed in Lies and Fiction Scene,tt0407304 MkiewChfW9k,2005.0,7,10,2017,War of the Worlds,This Is the Rapture Scene,tt0407304 90EupUjxPIM,2005.0,4,10,2017,War of the Worlds,"I Love You, Bro Scene",tt0407304 edjnSDwMFXQ,2005.0,1,10,2017,War of the Worlds,The Invasion Begins Scene,tt0407304 5dlDHt93ng8,2013.0,8,10,2017,Gangster Squad,Cops vs. Gangsters Scene,tt1321870 2onL0hkBVJc,2013.0,9,10,2017,Gangster Squad,Here Comes Santy Claus Scene,tt1321870 FOeyhFQK19c,2013.0,10,10,2017,Gangster Squad,Fistfight Arrest Scene,tt1321870 01Im5dacdqE,2013.0,7,10,2017,Gangster Squad,Dropping Dirty Cops Scene,tt1321870 OjmXuqNMrDY,2013.0,6,10,2017,Gangster Squad,The Chinatown Trap Scene,tt1321870 qG0W2UhUKRc,2013.0,5,10,2017,Gangster Squad,Get Out of Town Scene,tt1321870 Rdl0ApAeczQ,2013.0,4,10,2017,Gangster Squad,You're Officially Retired Scene,tt1321870 q5_LSGwd19k,2013.0,3,10,2017,Gangster Squad,Bugging Mickey's House Scene,tt1321870 z3H-ozBnwQ4,2013.0,2,10,2017,Gangster Squad,Gangster Warfare Scene,tt1321870 mEmmWa3xK8k,2013.0,1,10,2017,Gangster Squad,The Squad's First Mission Scene,tt1321870 gyRxos8xOyM,2012.0,5,10,2017,To the Wonder,Chasing Moonbeams Scene,tt1595656 wMa7Xd9GuUo,2012.0,2,10,2017,To the Wonder,How I Loved You Scene,tt1595656 R_qiBsGsQfI,2012.0,3,10,2017,To the Wonder,Human and Divine Love Scene,tt1595656 O-Odu2P8X1M,2012.0,4,10,2017,To the Wonder,How Long Will You Hide Yourself? Scene,tt1595656 9isn7V7c2gg,2012.0,9,10,2017,To the Wonder,"Christ, Be With Me Scene",tt1595656 0K-qOSq4vz0,2012.0,1,10,2017,To the Wonder,Love Makes Us One Scene,tt1595656 mt6D8QQ-nIY,2012.0,6,10,2017,To the Wonder,Be Free Scene,tt1595656 D97vMpPHzDg,2012.0,7,10,2017,To the Wonder,You Shall Love Scene,tt1595656 MviysUwcItA,2012.0,10,10,2017,To the Wonder,Love that Loves Us Scene,tt1595656 Qw9ltquDJRs,2012.0,8,10,2017,To the Wonder,Forgive Me Scene,tt1595656 RuZhnKanGQ4,2012.0,9,11,2017,Drift,60 Seconds Left Scene,tt1667889 h0aovIIojck,2012.0,11,11,2017,Drift,JB Departs Scene,tt1667889 -bYLI4I8vkI,2012.0,10,11,2017,Drift,The Front Page Scene,tt1667889 54CMOjYbovs,2012.0,8,11,2017,Drift,Qualifying Round Scene,tt1667889 ZQfZtwole3U,2012.0,7,11,2017,Drift,Goodbye Scene,tt1667889 gjODxXACjnc,2012.0,5,11,2017,Drift,The Big Wave Scene,tt1667889 M2AUEpmLf68,2012.0,6,11,2017,Drift,Heroin Scene,tt1667889 LLeKCWFnlW0,2012.0,1,11,2017,Drift,The New Boards Scene,tt1667889 2bdQKmp6hc0,2012.0,4,11,2017,Drift,Opens Scene,tt1667889 TU_iltXEntg,2012.0,3,11,2017,Drift,Peace Scene,tt1667889 Tyo-f87JA38,2012.0,2,11,2017,Drift,Living the Dream Scene,tt1667889 x7yAcIuyOb4,1989.0,4,11,2017,The Fabulous Baker Boys,A Very Special Lady Scene,tt0097322 gQNFCRom7c0,1989.0,6,11,2017,The Fabulous Baker Boys,Makin' Whoopee Scene,tt0097322 BX-hxkRsaT4,1989.0,9,11,2017,The Fabulous Baker Boys,The Telethon Scene,tt0097322 _4DRXSdPuCo,1989.0,10,11,2017,The Fabulous Baker Boys,Brother vs. Brother Scene,tt0097322 QyeYgwO4ADg,1989.0,11,11,2017,The Fabulous Baker Boys,A Final Drink Scene,tt0097322 mbTKo5Ylypw,1989.0,5,11,2017,The Fabulous Baker Boys,One Happy Family Scene,tt0097322 oZlQMLXqw0g,1989.0,1,11,2017,The Fabulous Baker Boys,Miracle Hair Scene,tt0097322 dyXlsD7Gx0Y,1989.0,7,11,2017,The Fabulous Baker Boys,Ballroom Back Massage Scene,tt0097322 7hacgmRbdMM,1989.0,8,11,2017,The Fabulous Baker Boys,"""Feelings"" Is Parsley Scene",tt0097322 pxSjP6JkAis,1989.0,3,11,2017,The Fabulous Baker Boys,Susie Diamond Scene,tt0097322 Hxtm9DG4k4o,1989.0,2,11,2017,The Fabulous Baker Boys,Painful Auditions Scene,tt0097322 BtL6iIh95ag,2012.0,5,12,2017,Stand Up Guys,Car Chase Scene,tt1389096 MD9AvOexMWY,2012.0,12,12,2017,Stand Up Guys,Final Shootout Scene,tt1389096 MI0ZlakXWFM,2012.0,9,12,2017,Stand Up Guys,The Nutcracker Scene,tt1389096 aCqeaDIGLD4,2012.0,2,12,2017,Stand Up Guys,Do You Like to Dance? Scene,tt1389096 4QCMLXFfJyY,2012.0,6,12,2017,Stand Up Guys,Menage a Trois Scene,tt1389096 UUSLRRjc57o,2012.0,10,12,2017,Stand Up Guys,Hirsch's Eulogy Scene,tt1389096 vVaBlzQzmjQ,2012.0,11,12,2017,Stand Up Guys,I Love You Scene,tt1389096 xKrzCRKABjY,2012.0,8,12,2017,Stand Up Guys,Time to Kick Ass Scene,tt1389096 fuyK26nKaPw,2012.0,7,12,2017,Stand Up Guys,Someone's in the Trunk Scene,tt1389096 6FtMdJEg2ak,2012.0,1,12,2017,Stand Up Guys,Deliver the Package Scene,tt1389096 ziue9g2nXZ0,2012.0,4,12,2017,Stand Up Guys,Erection Emergency Scene,tt1389096 ca3ejioEyiE,2012.0,3,12,2017,Stand Up Guys,You're My Only Friend Scene,tt1389096 eMru-ZnAzUk,2013.0,1,10,2017,Hours,"I'm Sorry, Mr. Hayes Scene",tt2094018 h1wWMu4nyRE,2013.0,3,10,2017,Hours,I Want You Back Scene,tt2094018 FYUDzpVRYio,2013.0,7,10,2017,Hours,Calling for Help Scene,tt2094018 3rlz8tdE5Mg,2013.0,8,10,2017,Hours,You'll Be an Amazing Father Scene,tt2094018 yjQqsPi138w,2013.0,5,10,2017,Hours,Floods and a Dying Battery Scene,tt2094018 ekakyXFzHwM,2013.0,4,10,2017,Hours,The Power Goes Out Scene,tt2094018 ADy7gUvipWw,2013.0,6,10,2017,Hours,The Proposal Scene,tt2094018 RWm6781MWb8,2013.0,2,10,2017,Hours,There She Is Scene,tt2094018 TR6tZ5CKRVg,2013.0,9,10,2017,Hours,Drug Looters Scene,tt2094018 rVQAt6GkMgk,2013.0,10,10,2017,Hours,Proud Father Scene,tt2094018 RZvJ5MoPjGs,2013.0,10,10,2017,Blood Ties,Racing to Save a Brother Scene,tt1747958 p6SMuW5b91o,2013.0,7,10,2017,Blood Ties,I Love You Scene,tt1747958 iKQIxiobVGM,2013.0,5,10,2017,Blood Ties,Robbery In Progress Scene,tt1747958 NOe3intBN0w,2013.0,8,10,2017,Blood Ties,What's in it for Me? Scene,tt1747958 jQVO3AWAgHU,2013.0,9,10,2017,Blood Ties,I Will Kill You Scene,tt1747958 0H3xMXZWU78,2013.0,3,10,2017,Blood Ties,Wanna Get Married? Scene,tt1747958 p0Iwafu7J4Q,2013.0,6,10,2017,Blood Ties,Chasing a Criminal Scene,tt1747958 bCAXuyqUJzs,2013.0,4,10,2017,Blood Ties,I Want You to Leave Scene,tt1747958 ylzTTNLGlD4,2013.0,1,10,2017,Blood Ties,I Want to Be With You Scene,tt1747958 IFVWE5XHflo,2013.0,2,10,2017,Blood Ties,The Job Scene,tt1747958 I6JIv4ht8OU,2009.0,9,10,2017,Raging Phoenix,Fighting the Gang Scene,tt1551621 4qdHRWWX2gM,2009.0,8,10,2017,Raging Phoenix,Bridge Fight Scene,tt1551621 BcRrXppXfEU,2009.0,10,10,2017,Raging Phoenix,Deu vs. the Gang Leader Scene,tt1551621 lBIi9tKMz2g,2009.0,5,10,2017,Raging Phoenix,Ninja Fight Scene,tt1551621 0EXwWYHzUNM,2009.0,7,10,2017,Raging Phoenix,The Dark Truth Scene,tt1551621 Fb3LibJlRdM,2009.0,6,10,2017,Raging Phoenix,Beach Fight Scene,tt1551621 mClqKZl0KEs,2009.0,4,10,2017,Raging Phoenix,Dance Fighting Scene,tt1551621 5K-YqPyi3BA,2009.0,1,10,2017,Raging Phoenix,Stilt Fight Scene,tt1551621 XRKrwa_--2U,2009.0,2,10,2017,Raging Phoenix,Breakdance Fight Scene,tt1551621 cSOwRJe9hSs,2009.0,3,10,2017,Raging Phoenix,Drunk Fighting Lessons Scene,tt1551621 iv8bdd2-Y0w,2011.0,6,10,2017,2012: Ice Age,Your Whole Family Is Dead! Scene,tt1846444 vk3s_WgZl1M,2011.0,5,10,2017,2012: Ice Age,A Crushing Cold Scene,tt1846444 7x43p4KHLLI,2011.0,1,10,2017,2012: Ice Age,Every Volcano Is Erupting Scene,tt1846444 oHAtHxDF6DQ,2011.0,7,10,2017,2012: Ice Age,Through the Storm Scene,tt1846444 trKur9bR2aE,2011.0,2,10,2017,2012: Ice Age,Watch For Falling Ice Scene,tt1846444 hxwuvmJyM8s,2011.0,4,10,2017,2012: Ice Age,A Little Science Project Scene,tt1846444 RbI_bPsWnmQ,2011.0,8,10,2017,2012: Ice Age,Icy Escape Scene,tt1846444 W8tB9ZTiPpw,2011.0,9,10,2017,2012: Ice Age,Frozen Explosion Scene,tt1846444 U-FFwUkA2QU,2011.0,10,10,2017,2012: Ice Age,Saved by the Statue of Liberty Scene,tt1846444 EpzearSkgOM,2011.0,3,10,2017,2012: Ice Age,Ice Storm Accident Scene,tt1846444 zFIHYJAp2rc,2013.0,2,10,2017,Elysium,Exoskeleton Surgery Scene,tt1535108 60V3JFUPvIE,2013.0,1,10,2017,Elysium,Doomed to Die Scene,tt1535108 1kNZdy-IxNQ,2013.0,4,10,2017,Elysium,Kruger's Kill Scene,tt1535108 _BjawJWZIxo,2013.0,8,10,2017,Elysium,Max vs. Kruger Scene,tt1535108 3uUUeNqdMMU,2013.0,5,10,2017,Elysium,Crash Landing Scene,tt1535108 f4gmgTebHog,2013.0,10,10,2017,Elysium,Max's Destiny Scene,tt1535108 OzliqFzK36E,2013.0,3,10,2017,Elysium,Bot Combat Scene,tt1535108 6j-vjtJ7PRI,2013.0,6,10,2017,Elysium,Facial Reconstruction Scene,tt1535108 c_6SIVs_M5Q,2013.0,7,10,2017,Elysium,I Will Hunt You Down Scene,tt1535108 2cJGGVlQ8X8,2013.0,9,10,2017,Elysium,No Coming Back Scene,tt1535108 VMLlpJdCYG0,2012.0,10,10,2017,Arbitrage,Ellen's Blackmail Scene,tt1764183 VIlnM_wcw0w,2012.0,8,10,2017,Arbitrage,Making the Deal Scene,tt1764183 a5AnZBVyCCw,2012.0,7,10,2017,Arbitrage,Too Complicated Scene,tt1764183 1psPf8n2AKo,2012.0,9,10,2017,Arbitrage,How Much is Ten Years Worth? Scene,tt1764183 Og1Ptc7w7GI,2012.0,6,10,2017,Arbitrage,You Work for Me! Scene,tt1764183 zJ08DhVEAiI,2012.0,1,10,2017,Arbitrage,A Deal Goes Bad Scene,tt1764183 gkStl7MVRnU,2012.0,5,10,2017,Arbitrage,Questioned by the Police Scene,tt1764183 vyVGOQCHbTA,2012.0,2,10,2017,Arbitrage,The Car Crash Scene,tt1764183 aBMH3MEYNIg,2012.0,3,10,2017,Arbitrage,We're Not Here Scene,tt1764183 OOfMTt2XfWU,2012.0,4,10,2017,Arbitrage,They're Going to Come to You Scene,tt1764183 W6Y6riI56Dg,2012.0,10,10,2017,Shadow Dancer,The Ending Scene,tt1770734 Yb9EnN_gvu0,2012.0,4,10,2017,Shadow Dancer,You Have to Be Sure Scene,tt1770734 1dcHIATBkS0,2012.0,5,10,2017,Shadow Dancer,I'm Inside Scene,tt1770734 tjpRBPJGPjY,2012.0,3,10,2017,Shadow Dancer,"Nobody Dies, Nobody Gets Hurt Scene",tt1770734 cvvBpQoiZpg,2012.0,6,10,2017,Shadow Dancer,Assassination Attempt Scene,tt1770734 cPBHxDtI3Ok,2012.0,9,10,2017,Shadow Dancer,I'm Dead Scene,tt1770734 fF8O4drwH-I,2012.0,7,10,2017,Shadow Dancer,Interrogation Scene,tt1770734 Ntn3ksJwDpk,2012.0,1,10,2017,Shadow Dancer,Family Tragedy Scene,tt1770734 -rMac-9Z66w,2012.0,8,10,2017,Shadow Dancer,A Soldier's Funeral Scene,tt1770734 2U2zhXAXdhQ,2012.0,2,10,2017,Shadow Dancer,The Bomb Scene,tt1770734 wbwXHxqxDwc,1979.0,6,11,2017,Murder by Decree,Mary Kelly Scene,tt0079592 _RWkRZDPnao,1979.0,11,11,2017,Murder by Decree,The Story of Annie Crook Scene,tt0079592 NvvU_4PsiKo,1979.0,9,11,2017,Murder by Decree,Discovering the Killers Scene,tt0079592 VAaeEoQq6jY,1979.0,2,11,2017,Murder by Decree,Investigating the Crime Scene,tt0079592 6EfYYxmfABk,1979.0,5,11,2017,Murder by Decree,Confronting Sir Charles,tt0079592 yq571gv49HQ,1979.0,10,11,2017,Murder by Decree,Fight for Survival Scene,tt0079592 86sXLVakflE,1979.0,8,11,2017,Murder by Decree,The Radical Informant Scene,tt0079592 raM63LAHuwo,1979.0,4,11,2017,Murder by Decree,Meeting at the Wharf Scene,tt0079592 cEezHIqQrEw,1979.0,1,11,2017,Murder by Decree,Insulting the Prince Scene,tt0079592 h1aJoWg4vGo,1979.0,3,11,2017,Murder by Decree,The Last Pea Scene,tt0079592 t5zrRGTShZA,1979.0,7,11,2017,Murder by Decree,Don't Let Them Hurt Me Scene,tt0079592 TXRHf6Hzg0g,2009.0,4,5,2017,Hulk Vs.,Sif and Enchantress,tt1325753 kYlPBN4yMe0,2009.0,5,5,2017,Hulk Vs.,Thor and Loki Team Up Scene,tt1325753 d3HAOZbAj1Q,2009.0,2,5,2017,Hulk Vs.,Hulk vs. Thor: Round One Scene,tt1325753 5vY-zNTuq8E,2009.0,3,5,2017,Hulk Vs.,Puny God Scene,tt1325753 ieVPPV5S0Ps,2009.0,1,5,2017,Hulk Vs.,Banner Meets the Hulk Scene,tt1325753 DU1C6QrVmuU,2008.0,8,10,2017,2012 Doomsday,The Chosen Messengers of Christ Scene,tt1132130 fLFf012Auvc,2008.0,2,10,2017,2012 Doomsday,Clearing Out of California Scene,tt1132130 Eur_GSTH4oA,2008.0,10,10,2017,2012 Doomsday,Just the Beginning Scene,tt1132130 WKoY2kS1UNo,2008.0,7,10,2017,2012 Doomsday,Death by Hail Scene,tt1132130 S5EWvpoWIBk,2008.0,6,10,2017,2012 Doomsday,"So Close, Yet So Far Scene",tt1132130 fXElquKFrMo,2008.0,4,10,2017,2012 Doomsday,A Bumpy Ride Scene,tt1132130 eBx_WJQ25Ec,2008.0,3,10,2017,2012 Doomsday,We Must Make it to the Pyramid Scene,tt1132130 hG2yx-PTxys,2008.0,1,10,2017,2012 Doomsday,End of Days Scene,tt1132130 Ei9RooSCn14,2008.0,5,10,2017,2012 Doomsday,The Rapture Scene,tt1132130 A6b9rDbdOzI,2008.0,9,10,2017,2012 Doomsday,A Doomsday Birth Scene,tt1132130 hgGi1ODlBBo,2012.0,6,10,2017,Total Recall,Traitors Get Put to Death Scene,tt1386703 qLoufJLKN6Q,2012.0,5,10,2017,Total Recall,Delusion or Reality? Scene,tt1386703 dzzijuZof1w,2012.0,8,10,2017,Total Recall,Anti-Gravity Gun Fight Scene,tt1386703 ibAU8weiUOI,2012.0,1,10,2017,Total Recall,Secret Agent Scene,tt1386703 d_A4tfEukp4,2012.0,3,10,2017,Total Recall,Who the Hell Am I? Scene,tt1386703 Bf6FD5UbSns,2012.0,4,10,2017,Total Recall,Car Chase Scene,tt1386703 RgubwsCVg1o,2012.0,2,10,2017,Total Recall,I'm Not Your Wife Scene,tt1386703 dw95Qsj59NA,2012.0,9,10,2017,Total Recall,Hauser vs. Cohaagen Scene,tt1386703 _92v2IFT7WE,2012.0,7,10,2017,Total Recall,Elevator Explosion Scene,tt1386703 68SlAT125f8,2012.0,10,10,2017,Total Recall,Destroying the Fall Scene,tt1386703 wfAfwKUkfHU,2009.0,1,12,2017,Blood Creek,The Power of the Occult Scene,tt0450336 5V-C6ziFKMA,2009.0,10,12,2017,Blood Creek,You Made This Possible Scene,tt0450336 H4d8EcquSUM,2009.0,2,12,2017,Blood Creek,Wake Up! Scene,tt0450336 o-6E3Hd2OW0,2009.0,7,12,2017,Blood Creek,Possession Scene,tt0450336 BbbXgjwlOpI,2009.0,8,12,2017,Blood Creek,Book Burning Scene,tt0450336 A6oAEu3DbKk,2009.0,6,12,2017,Blood Creek,Zombie Horse Scene,tt0450336 Tc7e-4kbDto,2009.0,3,12,2017,Blood Creek,Breaking Into the House Scene,tt0450336 nBZ39gX_FlU,2009.0,5,12,2017,Blood Creek,Evil Breaks Free Scene,tt0450336 xuhl1rceZdE,2009.0,12,12,2017,Blood Creek,You Poisoned Me! Scene,tt0450336 8wY9r2cpbxQ,2009.0,4,12,2017,Blood Creek,Time Doesn't Touch Us Scene,tt0450336 padXZANlFwE,2009.0,9,12,2017,Blood Creek,You're Going to Feed Me Scene,tt0450336 D8Cra7i2kGc,2009.0,11,12,2017,Blood Creek,Gaining Power Scene,tt0450336 K3dG3JrXAJc,2006.0,1,11,2017,Fido,Zomcon Newsreel Scene,tt0457572 CfsveeSvZNw,2006.0,6,11,2017,Fido,Zombie Troubles Scene,tt0457572 dK2oGZK490w,2006.0,7,11,2017,Fido,Zombies Can't Drink Scene,tt0457572 6_yYxTkdIk8,2006.0,8,11,2017,Fido,Blast Him! Scene,tt0457572 V2RKM83CQ_A,2006.0,9,11,2017,Fido,A Crazy Wonderful Zombie Scene,tt0457572 Y9OrRbeB-rU,2006.0,11,11,2017,Fido,I Call Him Daddy Scene,tt0457572 ERlyrvQbqP8,2006.0,3,11,2017,Fido,A Surprise Scene,tt0457572 dEqrnOk8P1Q,2006.0,2,11,2017,Fido,Dead or Alive? Scene,tt0457572 EDq1QNZ_JJo,2006.0,4,11,2017,Fido,Let's Call You Scene,tt0457572 5dE-JjnKznQ,2006.0,5,11,2017,Fido,That's Mrs. Henderson! Scene,tt0457572 jpTj6qTyIwY,2006.0,10,11,2017,Fido,The Wrong Side of the Fence Scene,tt0457572 qKT2-0WUbGY,2007.0,9,10,2017,The Signal,Surrounded by Crazy People Scene,tt0780607 a1ewWPS5ULg,2007.0,8,10,2017,The Signal,Lewis Meets Ben Scene,tt0780607 8I1qHr1kjF8,2007.0,4,10,2017,The Signal,I Was Shot Scene,tt0780607 tbu7lOVTric,2007.0,6,10,2017,The Signal,Desperate Measures Scene,tt0780607 XQO-ftv4ePQ,2007.0,5,10,2017,The Signal,The Party's Been Canceled Scene,tt0780607 81ZejwnzklY,2007.0,10,10,2017,The Signal,I'm You Scene,tt0780607 4A-T8umqRYE,2010.0,8,10,2017,2010: Moby Dick,Going Down Twice Scene,tt1694508 eTGHFj1kdsI,2007.0,1,10,2017,The Signal,Where Have You Been? Scene,tt0780607 hca09uawN_8,2007.0,2,10,2017,The Signal,Put the Bat Down Scene,tt0780607 Epzv2FLSjhk,2007.0,3,10,2017,The Signal,Murder the World Scene,tt0780607 fthLa-kq3WI,2007.0,7,10,2017,The Signal,Act Natural Scene,tt0780607 -V7_zk4wpQs,2010.0,5,10,2017,2010: Moby Dick,He's the Devil! Scene,tt1694508 zpCCg4DtXCU,2010.0,3,10,2017,2010: Moby Dick,Nuclear Strike Scene,tt1694508 bc4_fCULOKk,2010.0,1,10,2017,2010: Moby Dick,"You're Wrong, Ahab Scene",tt1694508 jdYgR4Vqwuw,2010.0,2,10,2017,2010: Moby Dick,He Will Roll in His Own Blood Scene,tt1694508 s1-5EZM82lM,2010.0,4,10,2017,2010: Moby Dick,Cutting it Close Scene,tt1694508 GGVL7N6Wz8I,2010.0,6,10,2017,2010: Moby Dick,I Am the Fates Scene,tt1694508 XkYj78aDy2I,2010.0,7,10,2017,2010: Moby Dick,He's Under Us! Scene,tt1694508 _txmRGsX5ss,2010.0,9,10,2017,2010: Moby Dick,I Spit My Last Breath at You Scene,tt1694508 XjYQd3hE6xI,2010.0,10,10,2017,2010: Moby Dick,The Unkillable Beast Scene,tt1694508 teoyewW1bUY,2008.0,3,10,2017,Stargate: The Ark of Truth,Going to Hell Scene,tt0942903 N9EnEuH0Tgo,2008.0,5,10,2017,Stargate: The Ark of Truth,Teal'c Down Scene,tt0942903 OSkFsRL177o,2008.0,10,10,2017,Stargate: The Ark of Truth,"I Was Blind, But Now I See Scene",tt0942903 1CXkATQLZGk,2008.0,9,10,2017,Stargate: The Ark of Truth,Replicator Reckoning Scene,tt0942903 ImO-q-hTdAc,2008.0,8,10,2017,Stargate: The Ark of Truth,Morgan Le Fay Scene,tt0942903 eRITzdlHJXA,2008.0,7,10,2017,Stargate: The Ark of Truth,A True God By Any Definition Scene,tt0942903 2b-ip6hZYgE,2008.0,6,10,2017,Stargate: The Ark of Truth,Marrick the Replicator Scene,tt0942903 RU2IP_oUqyc,2008.0,4,10,2017,Stargate: The Ark of Truth,Replicated Replicators Scene,tt0942903 y2_oXPF2b3Y,2008.0,1,10,2017,Stargate: The Ark of Truth,Inside This Ark Scene,tt0942903 huxXgcGvTPk,2008.0,2,10,2017,Stargate: The Ark of Truth,Visions and Replicators Scene,tt0942903 grpGRWYL6mQ,2008.0,10,10,2017,Stargate: Continuum,The Extraction Scene,tt0929629 pPcxCk8YBVs,2008.0,9,10,2017,Stargate: Continuum,We're About to Be Boarded Scene,tt0929629 GeLDjQIIkdI,2008.0,8,10,2017,Stargate: Continuum,In the Nick of Time Travel Scene,tt0929629 UCCkKfTVEy4,2008.0,7,10,2017,Stargate: Continuum,Shoot the People Chasing Us Scene,tt0929629 kFbDy90VZQY,2008.0,6,10,2017,Stargate: Continuum,As the Sovereign Wishes Scene,tt0929629 AkjImI2Qpew,2008.0,5,10,2017,Stargate: Continuum,An Honor to Serve Lord Ba'al Scene,tt0929629 Wv07oUFHGRQ,2008.0,4,10,2017,Stargate: Continuum,Supposed to Be Scene,tt0929629 f4LEgmt0roE,2008.0,3,10,2017,Stargate: Continuum,Not How It's Supposed To Be Scene,tt0929629 ry9yNbMVeMQ,2008.0,2,10,2017,Stargate: Continuum,Saving the Ship Scene,tt0929629 s1QgQny2o5E,2008.0,1,10,2017,Stargate: Continuum,All the Time in the World Scene,tt0929629 9ltpGvaDfBM,1997.0,9,10,2017,Crossworlds,You Are the Weapon Scene,tt0115985 I5RKRQcsDKU,1997.0,10,10,2017,Crossworlds,Just Plain Joe Scene,tt0115985 VV26lYf6VyM,1997.0,8,10,2017,Crossworlds,Teleporting Smackdown Scene,tt0115985 prAOME_9oP8,1997.0,7,10,2017,Crossworlds,A Trunk of Explosives Scene,tt0115985 CDQw1Ez9yOs,1997.0,6,10,2017,Crossworlds,I Believe in the Floor Scene,tt0115985 1C84oQva04A,1997.0,5,10,2017,Crossworlds,Shoved Off a Skyscraper Scene,tt0115985 wpxS1xSxUDY,1997.0,4,10,2017,Crossworlds,Let's Watch the World Go to Hell Scene,tt0115985 h0i2KfT2SB0,1997.0,3,10,2017,Crossworlds,Try Not to Die Scene,tt0115985 CdppQAIYPzY,1997.0,2,10,2017,Crossworlds,Living Suits of Armor Scene,tt0115985 KccpJ0xD-7E,1997.0,1,10,2017,Crossworlds,She's Dangerous in Bed Scene,tt0115985 P4KHpL7ZHlA,2007.0,9,10,2017,Timecrimes,The Second Time Traveler Scene,tt0480669 g1axUa-NsEE,2007.0,10,10,2017,Timecrimes,The Timeline Restored? Scene,tt0480669 Kxyzb-o56QQ,2007.0,8,10,2017,Timecrimes,I Have to Get Back In Scene,tt0480669 AqAm2IAg5Fw,2007.0,7,10,2017,Timecrimes,The Timeline Destroyed Scene,tt0480669 9Q2UjqahNSw,2007.0,6,10,2017,Timecrimes,What About My Panties? Scene,tt0480669 m8KBXUCttEw,2007.0,5,10,2017,Timecrimes,Pull Up Your Shirt Scene,tt0480669 WQXNChLdnvI,2007.0,4,10,2017,Timecrimes,I Am the Bandage Killer Scene,tt0480669 wVC_xkrm6kU,2007.0,3,10,2017,Timecrimes,"Hector 1, Hector 2 Scene",tt0480669 d5n-bZf3eVE,2007.0,2,10,2017,Timecrimes,You Went Back in Time Scene,tt0480669 YZ8k016_bvc,2007.0,1,10,2017,Timecrimes,The Bandage Killer Scene,tt0480669 1tryt4ddnWw,2009.0,8,10,2017,2012: Supernova,A Shocking Revelation Scene,tt1479847 -Kv4O5dyrzM,2009.0,10,10,2017,2012: Supernova,We're Still Here Scene,tt1479847 KmuxPl7RkK4,2009.0,9,10,2017,2012: Supernova,A Sacrifice to Save the World Scene,tt1479847 5N86yJbOjYM,2009.0,7,10,2017,2012: Supernova,Our Finest Final Hour Scene,tt1479847 C-NaBwskUp8,2009.0,6,10,2017,2012: Supernova,Surviving the Storm Scene,tt1479847 -4Qk4eACpXI,2009.0,4,10,2017,2012: Supernova,Ninja Heist Scene,tt1479847 nf1DA90KAIY,2009.0,5,10,2017,2012: Supernova,Too Much at Stake Scene,tt1479847 U87C_o3_qOo,2009.0,3,10,2017,2012: Supernova,Rock 'N' Roll Scene,tt1479847 N-dpQITO2fo,2009.0,1,10,2017,2012: Supernova,We're All in Danger Scene,tt1479847 4q5rmjaO9Cw,2009.0,2,10,2017,2012: Supernova,Supernova Scare Scene,tt1479847 kAFxKPtwYuU,2012.0,4,10,2017,This Is 40,Are Those Real? Scene,tt1758830 jjpQORCD0ZU,2012.0,5,10,2017,This Is 40,You're Acting Like a B Scene,tt1758830 GH-oJGZKmq8,2012.0,9,10,2017,This Is 40,Bodies By Jason Scene,tt1758830 -mlfefNP8cw,2012.0,3,10,2017,This Is 40,I Do Want to Kill You Scene,tt1758830 c4X58OjlVPo,2012.0,8,10,2017,This Is 40,Oxy Kitten Scene,tt1758830 MIZSWO65BXQ,2012.0,10,10,2017,This Is 40,The Jew Card Scene,tt1758830 rrMvGHoW7aw,2012.0,2,10,2017,This Is 40,Making Some Changes Scene,tt1758830 mFH_r2w28rM,2012.0,6,10,2017,This Is 40,Simon and Garfunkel Scene,tt1758830 6CBfg5X9Z3Y,2012.0,7,10,2017,This Is 40,He Touched My Nipple Scene,tt1758830 cT1iUwGGUAg,2012.0,1,10,2017,This Is 40,Sex and Loneliness Scene,tt1758830 84UF11bJDFY,2012.0,2,12,2017,The Big Wedding,Hell it is Then Scene,tt1931435 6UNDrO9PrzE,2012.0,12,12,2017,The Big Wedding,The Truth Scene,tt1931435 TjMQwe-R_5Y,2012.0,10,12,2017,The Big Wedding,I'm Your Daughter Scene,tt1931435 O_CorWKpGvU,2012.0,11,12,2017,The Big Wedding,Bebe Marries Don Scene,tt1931435 CbPAADCg6ns,2012.0,9,12,2017,The Big Wedding,Eloping on the Dock Scene,tt1931435 6iOxj7Lgn4I,2012.0,8,12,2017,The Big Wedding,True Symmetry Scene,tt1931435 3FeBwyb5g0U,2012.0,7,12,2017,The Big Wedding,Breakfast in Bed Scene,tt1931435 MJ9QAW4LUEY,2012.0,6,12,2017,The Big Wedding,I'm Pregnant Scene,tt1931435 x2jLrsMN6YY,2012.0,4,12,2017,The Big Wedding,Confession Scene,tt1931435 vhv17audEAo,2012.0,5,12,2017,The Big Wedding,A Wonderful Dinner Scene,tt1931435 NFgP1bVZCy4,2012.0,1,12,2017,The Big Wedding,An Unexpected Visitor Scene,tt1931435 cVGZCFgH-Dg,2012.0,3,12,2017,The Big Wedding,We Aren't Divorced Scene,tt1931435 ANXSdv-KaCQ,2014.0,9,10,2017,Date and Switch,Caterpillar Song Scene,tt1878942 gSZ82TOHWc0,2014.0,10,10,2017,Date and Switch,Pot Brownie Scene,tt1878942 XIPjMKd3-1U,2014.0,7,10,2017,Date and Switch,Go-Cart Bumping Scene,tt1878942 ZyHoPZAsm60,2014.0,8,10,2017,Date and Switch,The Prom Scene,tt1878942 PbC7alhpFBE,2014.0,2,10,2017,Date and Switch,Gay Research Scene,tt1878942 VvfIdmaKwfQ,2014.0,5,10,2017,Date and Switch,The Stephen Hawking of Luchadores Scene,tt1878942 XBCML9xJI8I,2014.0,4,10,2017,Date and Switch,"No Shirt, No Shoes, No Pants Scene",tt1878942 YDeGYXbeQV8,2014.0,6,10,2017,Date and Switch,Make-Out Point Scene,tt1878942 HwaqZA54GTk,2014.0,3,10,2017,Date and Switch,The Gay Bar Scene,tt1878942 HOY92xiGY2M,2014.0,1,10,2017,Date and Switch,I'm a Gay Dude Scene,tt1878942 M3DlQK8xFBQ,2012.0,7,10,2017,The Magic of Belle Isle,One Hell of a Mentor Scene,tt1839654 mbl4cWCn6z4,2012.0,10,10,2017,The Magic of Belle Isle,They Gave Me My Life Back Scene,tt1839654 h36L-NdLDhI,2012.0,1,10,2017,The Magic of Belle Isle,A Writer Nobody Reads Scene,tt1839654 PzUxcPh1zPI,2012.0,8,10,2017,The Magic of Belle Isle,"Reach for the Sky, Mr. Clown Scene",tt1839654 kVQN0ZDzIqU,2012.0,9,10,2017,The Magic of Belle Isle,I'll Stick With Real Life Scene,tt1839654 BxvRz4RftFY,2012.0,6,10,2017,The Magic of Belle Isle,Why Did You Stop Writing? Scene,tt1839654 eaFX0rKv2Fc,2012.0,3,10,2017,The Magic of Belle Isle,So You Write Stories? Scene,tt1839654 2haHRRfKLJ0,2012.0,5,10,2017,The Magic of Belle Isle,The Mystery of Imagination Scene,tt1839654 x2EI9M1XFOA,2012.0,4,10,2017,The Magic of Belle Isle,You Want a Mentor Scene,tt1839654 VqYLWPoXeuc,2012.0,2,10,2017,The Magic of Belle Isle,Discussion With a Dog Scene,tt1839654 VXkEBRtERnA,1963.0,11,11,2017,Irma la Douce,Baby Girl and Mystery Guest Scene,tt0057187 rxno2wz0eKc,1963.0,9,11,2017,Irma la Douce,Call-Girl Catfight Scene,tt0057187 JvG1hHsOFUA,1963.0,10,11,2017,Irma la Douce,A Love Triangle For Two Scene,tt0057187 Bi8Spey13uY,1963.0,4,11,2017,Irma la Douce,Unleashing the Tiger Scene,tt0057187 kbGvnI1qIz8,1963.0,8,11,2017,Irma la Douce,Meeting With Lord X Scene,tt0057187 iMPV0eFLxbQ,1963.0,7,11,2017,Irma la Douce,A Sticky Wicket Scene,tt0057187 k01VcZkKDME,1963.0,6,11,2017,Irma la Douce,Lord X Scene,tt0057187 VXPxIwL1e5g,1963.0,5,11,2017,Irma la Douce,Becoming Lord X Scene,tt0057187 ZQ0JJpvMq-g,1963.0,2,11,2017,Irma la Douce,Harem on Wheels Scene,tt0057187 ZH81ElJu-Jw,1963.0,3,11,2017,Irma la Douce,The World is Full of Opportunities Scene,tt0057187 lLbWBsRVUAU,1963.0,1,11,2017,Irma la Douce,That Kind of Love Is Illegal Scene,tt0057187 tXrxBy-CDPc,1988.0,4,8,2017,Arthur 2: On the Rocks,How to Be Poor Scene,tt0094678 dAoRRTPPIys,1988.0,8,8,2017,Arthur 2: On the Rocks,I Want My Life Back Scene,tt0094678 84gYIl6Zjks,1988.0,6,8,2017,Arthur 2: On the Rocks,The New Apartment Scene,tt0094678 kD0zHgK3BJ8,1988.0,7,8,2017,Arthur 2: On the Rocks,It's Up to You Scene,tt0094678 SqSZ5RSaT8k,1988.0,3,8,2017,Arthur 2: On the Rocks,The Party's Over Scene,tt0094678 vw44oj_STSw,1988.0,2,8,2017,Arthur 2: On the Rocks,The Adoption Counselor Scene,tt0094678 UkIwAAKv_iA,1988.0,5,8,2017,Arthur 2: On the Rocks,Thankful for Meatloaf Scene,tt0094678 an8Z9J29zWo,1988.0,1,8,2017,Arthur 2: On the Rocks,Messing with Fairchild Scene,tt0094678 S-Io377-jmE,2004.0,6,10,2017,A Love Song for Bobby Long,Not in Love With You Scene,tt0369672 XYD3ysriZ3k,2004.0,8,10,2017,A Love Song for Bobby Long,Everybody Seeing My Peter Scene,tt0369672 rcWb_qea8Eo,2004.0,5,10,2017,A Love Song for Bobby Long,Made Up Memories Scene,tt0369672 W2QDEiF7SGU,2004.0,10,10,2017,A Love Song for Bobby Long,A Toast to Pursy Scene,tt0369672 1DSkJxktHFY,2004.0,7,10,2017,A Love Song for Bobby Long,Merry Christmas Scene,tt0369672 0pPOxAQwRgQ,2004.0,9,10,2017,A Love Song for Bobby Long,You're My Father Scene,tt0369672 i_3ktf3XwNU,2004.0,4,10,2017,A Love Song for Bobby Long,The Senior Male Scene,tt0369672 i4l0vA9bzaw,2004.0,3,10,2017,A Love Song for Bobby Long,A Tiny Piece of Love Scene,tt0369672 z1e_c3E9ZR4,2004.0,2,10,2017,A Love Song for Bobby Long,The Heart is a Lonely Hunter Scene,tt0369672 KuLvoPT5PQM,2004.0,1,10,2017,A Love Song for Bobby Long,This is Our Home Scene,tt0369672 sWCjRo30-Ls,1990.0,3,9,2017,The Hot Spot,Breaking and Entering Scene,tt0099797 st8QRZbJdPY,1990.0,9,9,2017,The Hot Spot,Screwing George to Death Scene,tt0099797 7oqRCOYvOS4,1990.0,8,9,2017,The Hot Spot,Tough Guy Scene,tt0099797 SJ1_epc6q2E,1990.0,2,9,2017,The Hot Spot,A Real Lady Scene,tt0099797 kd01w5eLVwo,1990.0,7,9,2017,The Hot Spot,Taking a Dip Scene,tt0099797 rA6AZeHyw8Q,1990.0,6,9,2017,The Hot Spot,Harry Robs the Bank Scene,tt0099797 RVu3EPJ4-jA,1990.0,5,9,2017,The Hot Spot,Recognize These? Scene,tt0099797 BANrqTBnEy4,1990.0,4,9,2017,The Hot Spot,I Don't Know What I'm Doing Here Scene,tt0099797 3TzAJdCNpZw,1990.0,1,9,2017,The Hot Spot,Bad Boy Scene,tt0099797 lZltw3ubrGo,2011.0,8,10,2017,The Devil's Double,Assassination Attempt Scene,tt1270262 Kusz_-SyLfE,2011.0,7,10,2017,The Devil's Double,A Murderer and Rapist Scene,tt1270262 Xa36SdTlCZE,2011.0,6,10,2017,The Devil's Double,Meeting Saddam Hussein Scene,tt1270262 lGVU-OuhTlw,2011.0,9,10,2017,The Devil's Double,Destroying a Marriage Scene,tt1270262 P2qz2B9snxE,2011.0,10,10,2017,The Devil's Double,Killing Uday Scene,tt1270262 -ZTTZtzzbmI,2011.0,5,10,2017,The Devil's Double,The Price of Defiance Scene,tt1270262 xxxnlkTZlCk,2011.0,2,10,2017,The Devil's Double,You Belong to Him Scene,tt1270262 dDqhjzd8wXk,2011.0,3,10,2017,The Devil's Double,Becoming Uday Scene,tt1270262 E7CPLxlfKaw,2011.0,4,10,2017,The Devil's Double,One of the Family Scene,tt1270262 QQe-fCLVBVU,2011.0,1,10,2017,The Devil's Double,You're Asking Me to Extinguish Myself Scene,tt1270262 FgIgeE7C6bU,2011.0,8,10,2017,Blackthorn,A Well-Deserved Rest Scene,tt1629705 Ddj5oGNtezI,2011.0,7,10,2017,Blackthorn,The Salt Flats Scene,tt1629705 SAQN4EyLqZk,2011.0,6,10,2017,Blackthorn,My Own Man Scene,tt1629705 ffxg6IB27GM,2011.0,10,10,2017,Blackthorn,Don't Leave Me Here Scene,tt1629705 MVZn5gTph6M,2011.0,9,10,2017,Blackthorn,The Death of Sundance Scene,tt1629705 fuXPZqYtnjo,2011.0,3,10,2017,Blackthorn,Butch and Sundance Scene,tt1629705 _-GaobqA1LE,2011.0,1,10,2017,Blackthorn,You're Empty Scene,tt1629705 h7i8GGtWf_E,2011.0,2,10,2017,Blackthorn,Shoot the Lights Scene,tt1629705 XB2CUyVSAq0,2011.0,4,10,2017,Blackthorn,Etta Place Scene,tt1629705 gj2Y2uEcubE,2011.0,5,10,2017,Blackthorn,Ranch Shootout Scene,tt1629705 aDJgv1iARPg,2010.0,1,10,2017,The Other Guys,Tuna vs. Lion Scene,tt1386588 XP0SZTwlmMk,2010.0,3,10,2017,The Other Guys,Quiet Fight Scene,tt1386588 74Od5-Fmf60,2010.0,5,10,2017,The Other Guys,"Bad Cop, Bad Cop Scene",tt1386588 g4FOpeshqA8,2010.0,4,10,2017,The Other Guys,Gator the Pimp Scene,tt1386588 oeW9lZBY-VM,2010.0,6,10,2017,The Other Guys,Pimps Don't Cry Scene,tt1386588 eq3vD93GgLs,2010.0,8,10,2017,The Other Guys,Conference Room Shootout Scene,tt1386588 MvkN3003iU4,2010.0,2,10,2017,The Other Guys,Aim for the Bushes Scene,tt1386588 xGeYzlEV5KY,2010.0,9,10,2017,The Other Guys,Old Lady Dirty Talk Scene,tt1386588 JdZHXwqDXB4,2010.0,7,10,2017,The Other Guys,Big Boy Pants and Suicide Negotiation Scene,tt1386588 jBotZTDEcP8,2010.0,10,10,2017,The Other Guys,Shooting the Golden Goose Scene,tt1386588 A8nTO1XWlME,2010.0,11,11,2017,Everything Must Go,See You Around Scene,tt1531663 f_8dti9p0f0,2010.0,7,11,2017,Everything Must Go,Your Momma's So Fat Scene,tt1531663 B0sO3FekHUU,2010.0,10,11,2017,Everything Must Go,The 13th Step Scene,tt1531663 Ex-eX7zpZno,2010.0,9,11,2017,Everything Must Go,The Yard Sale Scene,tt1531663 QGRAdMGb5tw,2010.0,8,11,2017,Everything Must Go,What's Normal? Scene,tt1531663 0i1ihIW8eCY,2010.0,6,11,2017,Everything Must Go,Bark for Me! Scene,tt1531663 slDxIGhBuIE,2010.0,5,11,2017,Everything Must Go,What Happened? Scene,tt1531663 mEv2dXzZTV0,2010.0,4,11,2017,Everything Must Go,Selling Mouthwash Scene,tt1531663 h9HV76Jl2WE,2010.0,2,11,2017,Everything Must Go,Meeting Kenny Scene,tt1531663 4TBnG3RuU88,2010.0,3,11,2017,Everything Must Go,We Got a Deal? Scene,tt1531663 Tanjysfo1SE,2010.0,1,11,2017,Everything Must Go,Kicked Out Scene,tt1531663 a4OWkIrQUJw,1987.0,5,12,2017,Overboard,Cooking Fiasco Scene,tt0093693 SM2LxRKqYR8,1987.0,11,12,2017,Overboard,Joanna Regains Her Memory Scene,tt0093693 dYafG2EuZjs,1987.0,1,12,2017,Overboard,Haughty Joanna Scene,tt0093693 rKwnRWbuCx4,1987.0,12,12,2017,Overboard,"Dean and Annie, Scene",tt0093693 YtWJKXNMmhI,1987.0,4,12,2017,Overboard,I'm Your Husband Scene,tt0093693 jt2BPBAWiEQ,1987.0,2,12,2017,Overboard,Rich Bitch Scene,tt0093693 j_z70ZaqWUE,1987.0,3,12,2017,Overboard,Grant Ditches Joanna Scene,tt0093693 QPbUj6Ks8j4,1987.0,6,12,2017,Overboard,No Boom Boom Scene,tt0093693 NpzigSg-YkI,1987.0,7,12,2017,Overboard,Annie Is Catatonic Scene,tt0093693 3S5E22b49-Q,1987.0,9,12,2017,Overboard,The Washing Machine Scene,tt0093693 12KcnPMV3OM,1987.0,10,12,2017,Overboard,Billy Claims the Panties Scene,tt0093693 FBpzRIzISeY,1987.0,8,12,2017,Overboard,Was I Always This Miserable? Scene,tt0093693 _4juqo20ABE,1987.0,10,11,2017,My Best Friend Is a Vampire,Saving Ralph's Neck Scene,tt0095684 OosAKayGMj4,1987.0,5,11,2017,My Best Friend Is a Vampire,This is Totally Humiliating Scene,tt0095684 UBmxdy6C4JI,1987.0,9,11,2017,My Best Friend Is a Vampire,Bad Blood Club Scene,tt0095684 nToATRUkpMI,1987.0,7,11,2017,My Best Friend Is a Vampire,The Advantages of Vampirism Scene,tt0095684 ti3HSBmEoVU,1987.0,6,11,2017,My Best Friend Is a Vampire,"First Time, Eh Kid? Scene",tt0095684 o1RMSG4bnrg,1987.0,11,11,2017,My Best Friend Is a Vampire,We Want to Live in Peace Scene,tt0095684 NjfviAKKVj4,1987.0,8,11,2017,My Best Friend Is a Vampire,I'm a Vampire Scene,tt0095684 FkEU_g5u_1c,1987.0,1,11,2017,My Best Friend Is a Vampire,The Dream Scene,tt0095684 8jyiXMPl6EU,1987.0,3,11,2017,My Best Friend Is a Vampire,I'm Glad You Came Scene,tt0095684 qyXpj-yVjVg,1987.0,2,11,2017,My Best Friend Is a Vampire,An Unusual Delivery Scene,tt0095684 L3aF2hwu8yE,1987.0,4,11,2017,My Best Friend Is a Vampire,A Vampire? Scene,tt0095684 rjLuhEOhj-I,2009.0,9,10,2017,MegaFault,Boomer Bust Scene,tt1436432 h5WL8to9Gq8,2009.0,10,10,2017,MegaFault,Reunited Scene,tt1436432 ccJ95yYf3Ms,2009.0,8,10,2017,MegaFault,An Extinction Event Scene,tt1436432 dYaOu80atDo,2009.0,6,10,2017,MegaFault,A Family Rescue Scene,tt1436432 w5WmCh-cRCA,2009.0,5,10,2017,MegaFault,How Do You Uncouple a Trailer? Scene,tt1436432 uqA0WkLSyKI,2009.0,3,10,2017,MegaFault,Following the Quake Scene,tt1436432 h4XKQMfI3B0,2009.0,7,10,2017,MegaFault,Outracing the Beam Scene,tt1436432 OyUea4_exRU,2009.0,4,10,2017,MegaFault,Freezing the Phreatic Zone Scene,tt1436432 PIfFHypWnf4,2009.0,2,10,2017,MegaFault,A Level 7 Quake Scene,tt1436432 ZJDgkjbsitw,2009.0,1,10,2017,MegaFault,Demolition Surprise Scene,tt1436432 NIMWmy-1l4Y,2011.0,3,10,2017,Your Highness,The Wise Wizard Scene,tt1240982 TFDiCTUAJuE,2011.0,4,10,2017,Your Highness,A Love So True Scene,tt1240982 FEiK98h1IDc,2011.0,10,10,2017,Your Highness,Storming the Castle Scene,tt1240982 XeasXb98akc,2011.0,8,10,2017,Your Highness,Things Get Nasty Scene,tt1240982 NulXXh0cw4c,2011.0,2,10,2017,Your Highness,Stealing the Bride Scene,tt1240982 koWhZSL1Kwo,2011.0,9,10,2017,Your Highness,The Blade of Unicorn Scene,tt1240982 XuNDB-xL6uc,2011.0,7,10,2017,Your Highness,I'm the Chosen One Scene,tt1240982 jiHXahhmzjw,2011.0,6,10,2017,Your Highness,Sex By Campfire Scene,tt1240982 P2rpcVDPZEY,2011.0,5,10,2017,Your Highness,The Fair Isabel Scene,tt1240982 rxC2ZWU4IPo,2011.0,1,10,2017,Your Highness,I Want to Be King Scene,tt1240982 PdgSo4Ts7D4,1984.0,10,10,2017,Conan the Destroyer,Conan vs. Dagoth Scene,tt0087078 nqF0yFLjiXs,1984.0,8,10,2017,Conan the Destroyer,To Take Care of a Wizard Scene,tt0087078 hEZcqWRB2iU,1984.0,3,10,2017,Conan the Destroyer,Setting Zula Free Scene,tt0087078 bLqJo78X3OI,1984.0,9,10,2017,Conan the Destroyer,Stopping a Sacrifice Scene,tt0087078 PLr1f84fj8U,1984.0,5,10,2017,Conan the Destroyer,The Wizard Toth-Amon Scene,tt0087078 tEWLG9sG1VM,1984.0,4,10,2017,Conan the Destroyer,Zula Joins the Group Scene,tt0087078 mUVup2pr_eM,1984.0,1,10,2017,Conan the Destroyer,They Want to Capture Us Scene,tt0087078 BDZK9B4Gu6g,1984.0,7,10,2017,Conan the Destroyer,Enough Talk! Scene,tt0087078 be9FJeol_aQ,1984.0,6,10,2017,Conan the Destroyer,Rescuing Princess Jehnna Scene,tt0087078 sLKnt2jBax4,1984.0,2,10,2017,Conan the Destroyer,Tribe of Cannibals Scene,tt0087078 BL312TpdPQQ,2010.0,1,10,2017,Black Death,What is a Necromancer? Scene,tt1181791 0dC7aMWCULU,2010.0,9,10,2017,Black Death,I Will Renounce God Scene,tt1181791 Gn7MHo0ZZg8,2010.0,2,10,2017,Black Death,A Suspected Witch Scene,tt1181791 Tg_Z2u4GShE,2010.0,8,10,2017,Black Death,Crucified Scene,tt1181791 rp07bmYWtog,2010.0,10,10,2017,Black Death,I Am Death Scene,tt1181791 Bxne2K4K5GM,2010.0,7,10,2017,Black Death,Who Wants to Live? Scene,tt1181791 6fJ9PDZDS1M,2010.0,4,10,2017,Black Death,Bandit Attack Scene,tt1181791 TfGXctZRcLg,2010.0,6,10,2017,Black Death,You Have No Heart Scene,tt1181791 ppaA4P4tr88,2010.0,3,10,2017,Black Death,His Journey's Finished Scene,tt1181791 l3acfaQKSnk,2010.0,5,10,2017,Black Death,We Seek Refuge Scene,tt1181791 6VeUp8hdqj0,2008.0,9,10,2017,Merlin and the War of the Dragons,Merlin's Dragons Scene,tt1294699 BOKbcDdlAAc,2008.0,6,10,2017,Merlin and the War of the Dragons,You're Losing Your Touch Scene,tt1294699 CnyvrkabX5U,2008.0,10,10,2017,Merlin and the War of the Dragons,Not the Only Son Scene,tt1294699 dHaZflS9Qag,2008.0,8,10,2017,Merlin and the War of the Dragons,For Britain! Scene,tt1294699 T6ji12DwRQk,2008.0,7,10,2017,Merlin and the War of the Dragons,Death is Nigh Scene,tt1294699 2CY78EjBHIY,2008.0,1,10,2017,Merlin and the War of the Dragons,I Want the Child Scene,tt1294699 uV-0kDRYYbU,2008.0,5,10,2017,Merlin and the War of the Dragons,Merlin's Magic Scene,tt1294699 cNuHBU3DIAk,2008.0,2,10,2017,Merlin and the War of the Dragons,You're Not Ready Scene,tt1294699 dbGKS4GQbv4,2008.0,3,10,2017,Merlin and the War of the Dragons,The Mage's Sanctuary Scene,tt1294699 3WAg9OI2wn8,2008.0,4,10,2017,Merlin and the War of the Dragons,Vendiger the Dragon Master Scene,tt1294699 klnVwzouc_k,1995.0,11,11,2017,Frank & Jesse,Outlaws and Legends Scene,tt0109835 wKPbi9oL5xU,1995.0,10,11,2017,Frank & Jesse,The Death of Jesse James Scene,tt0109835 4_p4EAmMa-M,1995.0,9,11,2017,Frank & Jesse,Downfall of the Gang Scene,tt0109835 8oq28m4uqe8,1995.0,8,11,2017,Frank & Jesse,The Ill-fated Robbery at Northfield Scene,tt0109835 oLJ7246t3-c,1995.0,7,11,2017,Frank & Jesse,Zee James Scene,tt0109835 Fdq_l2-C1wg,1995.0,2,11,2017,Frank & Jesse,Killing the Railroad Man Scene,tt0109835 fi7cppyGPPw,1995.0,4,11,2017,Frank & Jesse,Bank Robbery Scene,tt0109835 2AoKTalyiUA,1995.0,3,11,2017,Frank & Jesse,Let's Be Hunters Scene,tt0109835 ukOx2hZvXkE,1995.0,5,11,2017,Frank & Jesse,The Pinkerton Man Scene,tt0109835 refu69Hu5R0,1995.0,6,11,2017,Frank & Jesse,Shooting in the Bathtub Scene,tt0109835 Gbvml-bH5Uc,1995.0,1,11,2017,Frank & Jesse,A Dollar Per Acre Scene,tt0109835 xqb_BP27cMo,2006.0,8,10,2017,Material Girls,You're Different Than I Thought Scene,tt0433412 Bcdz003oBg8,2010.0,1,12,2017,Frankie & Alice,Frankie is Not Here Scene,tt1221208 8qWfNcUZoW8,2006.0,10,10,2017,Material Girls,Six Months Later Scene,tt0433412 Ju6_z5Wx9iY,2006.0,6,10,2017,Material Girls,"No Skills, No Resume Scene",tt0433412 lwB834Vz_tA,2006.0,4,10,2017,Material Girls,Credit Card Declined Scene,tt0433412 wrRy2TR4WtM,2006.0,7,10,2017,Material Girls,Spa Seduction Scene,tt0433412 5i-LMWpJ_E0,2006.0,9,10,2017,Material Girls,Exfoliation Scene,tt0433412 bf0eKlTbGtI,2006.0,3,10,2017,Material Girls,Marchetta Everdew Nightmare Scene,tt0433412 ESv_Pi8qlE0,2006.0,5,10,2017,Material Girls,Never Talking to You Again Scene,tt0433412 O4TI2Nx8RjQ,2006.0,2,10,2017,Material Girls,We Help People Who Are Poor Scene,tt0433412 LxKahh3H-3U,2006.0,1,10,2017,Material Girls,Our Future Is in the Crapper Scene,tt0433412 Ai5tZ8_dQUU,1987.0,2,10,2017,Who's That Girl,Mr. Louden Clear Scene,tt0094321 qItvl5cX4-A,1995.0,3,10,2017,Tank Girl,Who Wants an Oil Change Scene,tt0114614 ZLhyjNnrb6s,1995.0,10,10,2017,Tank Girl,I Win Scene,tt0114614 jFQAy28o7Kc,1995.0,9,10,2017,Tank Girl,See You Cats Later Scene,tt0114614 _XST7hft6k8,1995.0,8,10,2017,Tank Girl,Recite a Poem Scene,tt0114614 2MxnokvI6c0,1995.0,2,10,2017,Tank Girl,Surprise Attack Scene,tt0114614 Zlqovh9U5v0,1995.0,7,10,2017,Tank Girl,This is a Committee Scene,tt0114614 YtktNetGOKU,1995.0,4,10,2017,Tank Girl,Sounds Wicked Scene,tt0114614 Q3n3k6XRQ8s,1995.0,6,10,2017,Tank Girl,That's for Being a Perv! Scene,tt0114614 Cj80JkVCCpg,1995.0,5,10,2017,Tank Girl,The Rippers Scene,tt0114614 bIfMAhK7Boo,1995.0,1,10,2017,Tank Girl,"Take Off Your Boots, Captain Scene",tt0114614 a46m8g3grB8,1987.0,5,10,2017,Who's That Girl,Your Lips Are Moving Scene,tt0094321 KUMoWS98jXM,1987.0,4,10,2017,Who's That Girl,Dropping Raoul Scene,tt0094321 R6nZpcweYXw,1987.0,9,10,2017,Who's That Girl,The Groom is in Love With Me Scene,tt0094321 1Dvx_8APGEo,1987.0,10,10,2017,Who's That Girl,I Love You Nikki Finn Scene,tt0094321 ebHQ50ZRvM4,1987.0,8,10,2017,Who's That Girl,Bell's Rainforest Scene,tt0094321 6T_01swH-OY,1987.0,7,10,2017,Who's That Girl,Extraordinary Scene,tt0094321 IH8u5eKHNhs,1987.0,6,10,2017,Who's That Girl,Fake Fiance Scene,tt0094321 xm2ztDqbbZE,1987.0,3,10,2017,Who's That Girl,Are You the Anti-Christ? Scene,tt0094321 ieoN6CC-9ns,2010.0,11,12,2017,Frankie & Alice,Frankie's Baby Scene,tt1221208 b2jnKIitsx8,2010.0,10,12,2017,Frankie & Alice,You're Not Alone Scene,tt1221208 6JIxbckE6MU,2010.0,9,12,2017,Frankie & Alice,You Came for Me Scene,tt1221208 tcgo6nFJXmc,2010.0,12,12,2017,Frankie & Alice,Things to Face Scene,tt1221208 At_y4RGfW4g,2010.0,8,12,2017,Frankie & Alice,I Will Never Let Her Win Scene,tt1221208 0W_kwmGYIS0,2010.0,7,12,2017,Frankie & Alice,Code Green Scene,tt1221208 1Y11eIVNgQA,2010.0,6,12,2017,Frankie & Alice,I'm Crazy as a Rat Scene,tt1221208 mBAPx0F4e4k,2010.0,5,12,2017,Frankie & Alice,Multiple Personalities Scene,tt1221208 JkC83ugjyNw,2010.0,3,12,2017,Frankie & Alice,Medical History Scene,tt1221208 OppcXf2Vp6g,2010.0,4,12,2017,Frankie & Alice,Somebody Played a Trick on You Scene,tt1221208 -45cXUSpOw8,2010.0,2,12,2017,Frankie & Alice,Do I Know You? Scene,tt1221208 txQcaXvbRB8,1987.0,1,10,2017,Who's That Girl,A Ride with Nikki Scene,tt0094321 Xh8fDMTvNew,2004.0,10,11,2017,Woman Thou Art Loosed,Remember When We Were Little? Scene,tt0399901 tvxi9MyoiGE,2004.0,3,11,2017,Woman Thou Art Loosed,Revival Scene,tt0399901 VAb8s41LLCs,2004.0,11,11,2017,Woman Thou Art Loosed,I Want to Be Loosed Scene,tt0399901 WOSAa_l3azw,2004.0,7,11,2017,Woman Thou Art Loosed,Did You Touch Her? Scene,tt0399901 9y7hXwrVgpY,2004.0,9,11,2017,Woman Thou Art Loosed,Thank You for Being So Honest Scene,tt0399901 im_-maHhOew,2004.0,8,11,2017,Woman Thou Art Loosed,House of God Scene,tt0399901 _EPtenKdrDc,2004.0,4,11,2017,Woman Thou Art Loosed,You Clean Up Pretty Well Scene,tt0399901 -GThoBQbPjI,2004.0,2,11,2017,Woman Thou Art Loosed,Snakes Scene,tt0399901 ctDyR3Nosis,2004.0,6,11,2017,Woman Thou Art Loosed,He Hurt Me Scene,tt0399901 OUztRf_TSHE,2004.0,5,11,2017,Woman Thou Art Loosed,Living in Sin Scene,tt0399901 VBahsJrr01E,2004.0,1,11,2017,Woman Thou Art Loosed,Building a Strong House Scene,tt0399901 sjZ5I8l32CI,1994.0,4,10,2017,Street Fighter,It Was Tuesday Scene,tt0111301 Pt6VzQ_0k_I,2010.0,10,10,2017,The Karate Kid,Dre's Victory Scene,tt1155076 QhZbpE7mdoU,2010.0,5,10,2017,The Karate Kid,Dance-Off Scene,tt1155076 DVR6p7Iopec,2010.0,7,10,2017,The Karate Kid,Kung Fu Training Scene,tt1155076 IvAjNuhubIM,2010.0,9,10,2017,The Karate Kid,Dre vs. Cheng Scene,tt1155076 G6f0w5BRasw,2010.0,4,10,2017,The Karate Kid,Everything is Kung Fu Scene,tt1155076 5bWanpZTnSQ,2010.0,6,10,2017,The Karate Kid,Picking Yourself Back Up Scene,tt1155076 0pRYoClF9w4,2010.0,3,10,2017,The Karate Kid,Festival Romance Scene,tt1155076 5WT1QRZ2z6A,2010.0,8,10,2017,The Karate Kid,I Want Him Broken Scene,tt1155076 E-wr7dD1n5w,2010.0,1,10,2017,The Karate Kid,Six Versus One Scene,tt1155076 8INjmc-WWSY,2010.0,2,10,2017,The Karate Kid,Pick Up Your Jacket Scene,tt1155076 FoiZPbPUnlc,1994.0,10,10,2017,Street Fighter,You Win Scene,tt0111301 CWwcW-iuP6c,1994.0,8,10,2017,Street Fighter,Ryu vs. Vega Scene,tt0111301 FKeJtRtug4Q,1994.0,7,10,2017,Street Fighter,Colonel Guile vs. General M. Bison Scene,tt0111301 lPFulJcbm0c,1994.0,9,10,2017,Street Fighter,The Defeat of General M. Bison Scene,tt0111301 8jIPR2QUl_k,1994.0,5,10,2017,Street Fighter,You Are Harmless Scene,tt0111301 CXOjc3b_FZ8,1994.0,6,10,2017,Street Fighter,Game Over Scene,tt0111301 hY6HUmWzaO8,1994.0,3,10,2017,Street Fighter,Who Wants to Go With Me? Scene,tt0111301 rjc3Et5D-2w,1994.0,1,10,2017,Street Fighter,Prison Break Scene,tt0111301 LNPf_P9svHQ,1994.0,2,10,2017,Street Fighter,Things Can't Get Worse Scene,tt0111301 pFXW-7VNngk,2010.0,9,10,2017,The Next Three Days,Highway Spin-Out Scene,tt1458175 NBY0l7A2uLA,2010.0,8,10,2017,The Next Three Days,Breaking Lara Out Scene,tt1458175 1zi4R4EklsI,2010.0,6,10,2017,The Next Three Days,I Know Who You Are Scene,tt1458175 QIIE8CobvEU,2010.0,10,10,2017,The Next Three Days,Escape Scene,tt1458175 QP3Pzr7UFE4,2010.0,4,10,2017,The Next Three Days,False Passports Scene,tt1458175 LbCGyHkR0ko,2010.0,5,10,2017,The Next Three Days,The Bump Key Scene,tt1458175 SVQDD7TK-qA,2010.0,7,10,2017,The Next Three Days,Drug Lord Robbery Scene,tt1458175 df2QdWqKC6Q,2010.0,3,10,2017,The Next Three Days,Planning a Prison Break Scene,tt1458175 X6keMEfkZok,2010.0,2,10,2017,The Next Three Days,Visiting Lara in Prison Scene,tt1458175 mCsu9hGvNEc,2010.0,1,10,2017,The Next Three Days,Lara's Arrest Scene,tt1458175 qjl77Gp88RM,2008.0,7,10,2017,The Great Buck Howard,Jay Leno is Satan Scene,tt0460810 xerkgvDm4Ig,2008.0,6,10,2017,The Great Buck Howard,Buck is Hip Now Scene,tt0460810 LRGzyb7-EeA,2008.0,8,10,2017,The Great Buck Howard,It's Over Scene,tt0460810 VeGtHpQzC6I,2008.0,9,10,2017,The Great Buck Howard,How About Entertainment Law? Scene,tt0460810 RPXI3xQ2aus,2008.0,2,10,2017,The Great Buck Howard,Buck's Quirks Scene,tt0460810 aaaPoObIxrM,2008.0,10,10,2017,The Great Buck Howard,The Hidden Money Trick Scene,tt0460810 ueC2ZLsV5DI,2008.0,5,10,2017,The Great Buck Howard,Mass-Hypnosis Scene,tt0460810 dmfgNHfdn8U,2008.0,4,10,2017,The Great Buck Howard,Drop the Coin Scene,tt0460810 8_2tkIqD3Io,2008.0,1,10,2017,The Great Buck Howard,"You Do Know Who I Am, Don't You? Scene",tt0460810 pQZkA0jRiKo,2008.0,3,10,2017,The Great Buck Howard,I Thought He Was In Law School Scene,tt0460810 rgd8TC1Q09g,2006.0,8,10,2017,Jesus Camp,Dead Churches Scene,tt0486358 xXi-6s-qrQM,2006.0,9,10,2017,Jesus Camp,Levi Preaches Scene,tt0486358 r8swYmKUGJ0,2006.0,2,10,2017,Jesus Camp,At Five I Got Saved Scene,tt0486358 _Vyg1SVaZu4,2006.0,10,10,2017,Jesus Camp,A Separation of Church and State Scene,tt0486358 F55uFHs0d-o,2006.0,6,10,2017,Jesus Camp,Dancing for the Flesh Scene,tt0486358 oP07gJASrGg,2006.0,3,10,2017,Jesus Camp,What's Wrong With This Reasoning? Scene,tt0486358 gSsaIqwGR1E,2006.0,4,10,2017,Jesus Camp,Religion Is Not Science Scene,tt0486358 YxQJTlFyebM,2006.0,5,10,2017,Jesus Camp,You're On God's Mind Scene,tt0486358 cNMRDmf3000,2006.0,7,10,2017,Jesus Camp,You're a Phony and a Hypocrite Scene,tt0486358 NLfY3XAZ6c0,2006.0,1,10,2017,Jesus Camp,An Entanglement of Politics With Religion Scene,tt0486358 PpxLYsi1Yk4,2010.0,9,10,2017,Salt,Spy vs. Spy Scene,tt0944835 BQl4CNHsgvc,2010.0,10,10,2017,Salt,I'm Free Scene,tt0944835 ZMlGZcr95To,2010.0,8,10,2017,Salt,Launch Sequence Aborted Scene,tt0944835 k7_V-3ApEiM,2010.0,6,10,2017,Salt,Satisfied Scene,tt0944835 dry7kY2BMlk,2010.0,7,10,2017,Salt,Nikolai Tarkovsky Scene,tt0944835 N_ooI6Wa0H0,2010.0,5,10,2017,Salt,My Name is Evelyn Scene,tt0944835 fC1zzL9DjdU,2010.0,1,10,2017,Salt,You Are a Russian Spy Scene,tt0944835 NY9q_Vfbi5Q,2010.0,4,10,2017,Salt,Assassination Scene,tt0944835 wTGRsKLqkGM,2010.0,3,10,2017,Salt,Freeway Chase Scene,tt0944835 sGLXpKnQfSs,2010.0,2,10,2017,Salt,Explosive Escape Scene,tt0944835 uuTeJ6tbyB4,1995.0,1,10,2017,Mortal Kombat,Johnny Cage the Movie Star Scene,tt0113855 i_uA0oZ3xnI,1995.0,9,10,2017,Mortal Kombat,Reptile Attack Scene,tt0113855 KsYil1zPabA,1995.0,4,10,2017,Mortal Kombat,We Got Company Scene,tt0113855 _AYtVmu9BkM,1995.0,5,10,2017,Mortal Kombat,Sonya Blade Fights Kano Scene,tt0113855 qXKeIDlP-ys,1995.0,10,10,2017,Mortal Kombat,Flawless Victory Scene,tt0113855 YaUe_zBgQ9I,1995.0,7,10,2017,Mortal Kombat,Sub-Zero vs. Liu Kang Scene,tt0113855 q_v3jNjwHNQ,1995.0,6,10,2017,Mortal Kombat,Scorpion vs. Johnny Cage Scene,tt0113855 mR0c0i1bCCM,1995.0,8,10,2017,Mortal Kombat,Those Were $500 Sunglasses Scene,tt0113855 zuqEfWjAAEM,1995.0,3,10,2017,Mortal Kombat,Welcome to Scene,tt0113855 xlAwSNbAY8E,1995.0,2,10,2017,Mortal Kombat,Enter Sub-Zero and Scorpion Scene,tt0113855 gHluHS9kX5A,2008.0,10,10,2017,Chocolate,Zen's Revenge Scene,tt0397044 5NuvfSWbggc,2008.0,9,10,2017,Chocolate,Father to the Rescue Scene,tt0397044 tqTDKWhqvn4,2008.0,7,10,2017,Chocolate,Dojo Beat Down Scene,tt0397044 CQ0Bt9PxosE,2008.0,8,10,2017,Chocolate,Autistic Fight Scene,tt0397044 uKtbfkmIT-A,2008.0,6,10,2017,Chocolate,Rooftop Battle Scene,tt0397044 qPVePtS52Gc,2008.0,3,10,2017,Chocolate,Candy Factory Brawl Scene,tt0397044 8_4rJG5TmBg,2008.0,4,10,2017,Chocolate,Meat Factory Brawl Scene,tt0397044 N7CWWZi58bI,2008.0,5,10,2017,Chocolate,Reaching a Solution Scene,tt0397044 x_-G1IuNv-o,2008.0,2,10,2017,Chocolate,Debt Collector Scene,tt0397044 pfPBf3mKwFc,2008.0,1,10,2017,Chocolate,Street Performers Scene,tt0397044 TDsPAXyCA9A,2010.0,9,10,2017,Buried,Last Will and Testament Scene,tt1462758 3R7OdK-F91c,2010.0,7,10,2017,Buried,The Bombing Scene,tt1462758 RIzrkbF1-SU,2010.0,6,10,2017,Buried,Pamela's Video Scene,tt1462758 9LqrBRqFxmk,2010.0,10,10,2017,Buried,So Sorry Scene,tt1462758 HwZeiTzih4Y,2010.0,8,10,2017,Buried,"It's Over, Isn't It? Scene",tt1462758 1_CfcecGCVA,2010.0,1,10,2017,Buried,Help? Scene,tt1462758 bwj9ig-venA,2010.0,4,10,2017,Buried,Ransom Video Scene,tt1462758 dhNjb67EpIU,2010.0,5,10,2017,Buried,The Snake Scene,tt1462758 wIC34lZi_NU,2010.0,3,10,2017,Buried,Calling Mom Scene,tt1462758 RN-F41EZQK0,2010.0,2,10,2017,Buried,You Make Video Scene,tt1462758 8tdYFT9BIuE,-1.0,7,10,2017,King of the Lost World,Sacrificial Squash Scene,tt0478188 FNX19RFNdGk,-1.0,8,10,2017,King of the Lost World,Nowhere is Safe Scene,tt0478188 DlkXnN0cENI,-1.0,10,10,2017,King of the Lost World,Blowing Up the Beast Scene,tt0478188 GcgIg6HEB7E,-1.0,9,10,2017,King of the Lost World,Only One Solution Scene,tt0478188 guEyoPzTkQw,-1.0,5,10,2017,King of the Lost World,The Scorpion's Sting Scene,tt0478188 lHgEqIvG14k,-1.0,4,10,2017,King of the Lost World,One Grabby Vine Scene,tt0478188 mjbU4wy8VwE,-1.0,6,10,2017,King of the Lost World,All for the Nuke Scene,tt0478188 t5nPC50ST0A,-1.0,1,10,2017,King of the Lost World,Crashed in a Faraway Land Scene,tt0478188 Jey2YsDSyoI,-1.0,2,10,2017,King of the Lost World,A Group Divided Scene,tt0478188 QqmSUjxUg1M,-1.0,3,10,2017,King of the Lost World,Giant Jungle Spider Scene,tt0478188 EYHLDJuEUoc,-1.0,1,10,2017,Charlie's Angels: Full Throttle,Surfboard Stakeout Scene,tt0305357 t-t8eVDckH8,-1.0,2,10,2017,Charlie's Angels: Full Throttle,Motocross Mayhem Scene,tt0305357 bn_Df5UNy3s,-1.0,4,10,2017,Charlie's Angels: Full Throttle,Striptease Distraction Scene,tt0305357 XeGGNf_-nYM,-1.0,3,10,2017,Charlie's Angels: Full Throttle,Undercover Nuns Scene,tt0305357 jMvR4K4QICQ,-1.0,5,10,2017,Charlie's Angels: Full Throttle,Fighting With the Light On Scene,tt0305357 i6oNzS6kCR8,-1.0,7,10,2017,Charlie's Angels: Full Throttle,Last Dance Scene,tt0305357 cjy-8dXBljk,-1.0,6,10,2017,Charlie's Angels: Full Throttle,Fire Starter Scene,tt0305357 0ACTvENkyD8,-1.0,10,10,2017,Charlie's Angels: Full Throttle,Go to Hell Scene,tt0305357 fUKoBAi7qCg,-1.0,9,10,2017,Charlie's Angels: Full Throttle,Rooftop Rumble Scene,tt0305357 vF-tPvPAqhQ,-1.0,8,10,2017,Charlie's Angels: Full Throttle,"Sorry, Charlie Scene",tt0305357 rpy7vhvX8jw,2007.0,3,10,2017,Lucky You,The 1-900 King Scene,tt0338216 9n23ISvkbFQ,2007.0,10,10,2017,Lucky You,Nice Hand Scene,tt0338216 4NGNbrLnvhA,2007.0,7,10,2017,Lucky You,18 Holes of Golf Scene,tt0338216 6rGBqovePfY,2007.0,9,10,2017,Lucky You,Three of a Kind Scene,tt0338216 DHnwNo7Z6Ts,2007.0,8,10,2017,Lucky You,Making a Good Fold Scene,tt0338216 _r6i8Ae0cvo,2007.0,6,10,2017,Lucky You,Father vs. Son Scene,tt0338216 Y0uLpcThaeU,2007.0,5,10,2017,Lucky You,Breast Implants Scene,tt0338216 sqZ6ZrVIemM,2007.0,4,10,2017,Lucky You,Poker Face Scene,tt0338216 DEcY6WXL6_Y,2007.0,1,10,2017,Lucky You,Sometimes Nothing's Enough Scene,tt0338216 vwbryjr2BKg,2007.0,2,10,2017,Lucky You,Pays to be Prudent Scene,tt0338216 G9D_0pXaM68,1992.0,12,12,2017,Honeymoon in Vegas,Jack Goes Skydiving Scene,tt0104438 zjm_GqK-Kmo,1992.0,3,12,2017,Honeymoon in Vegas,Let's Get Married Scene,tt0104438 BW1kpbOz5Eo,1992.0,11,12,2017,Honeymoon in Vegas,The Flying Elvises Scene,tt0104438 rx4sKoITt-Q,1992.0,9,12,2017,Honeymoon in Vegas,Chief Orman Scene,tt0104438 iz3ETniN1NI,1992.0,10,12,2017,Honeymoon in Vegas,Is It Kapa'a or Kapa'aa? Scene,tt0104438 m4SWkyqSFxM,1992.0,8,12,2017,Honeymoon in Vegas,Holding Up the Line Scene,tt0104438 FZlm1ledK-I,1992.0,4,12,2017,Honeymoon in Vegas,The Poker Game Scene,tt0104438 ElBy0fKa9Ic,1992.0,6,12,2017,Honeymoon in Vegas,You Turned Me Into a Whore! Scene,tt0104438 9tli2kwH5mY,1992.0,7,12,2017,Honeymoon in Vegas,He's Taking Me to Hawaii Scene,tt0104438 T3zIklxWw44,1992.0,5,12,2017,Honeymoon in Vegas,Your Girlfriend for the Weekend Scene,tt0104438 0CYdSfhwWVY,1992.0,2,12,2017,Honeymoon in Vegas,My Wife and Mike Tyson Scene,tt0104438 IS-TH-YQbL8,1992.0,1,12,2017,Honeymoon in Vegas,Never Get Married Scene,tt0104438 gpLzES4A7zY,2009.0,10,10,2017,Ondine,The Real Truth Scene,tt1235796 ic7g820jOqI,2009.0,9,10,2017,Ondine,I'm Beginning to Hope Scene,tt1235796 nzglM3ROd_8,2009.0,7,10,2017,Ondine,Swimming Lessons Scene,tt1235796 bp0aVPeUCrY,2009.0,8,10,2017,Ondine,How Many Lives Do You Have? Scene,tt1235796 6FxHQNSukfM,2006.0,3,10,2017,Cashback,A New Job Scene,tt0460740 dTQORe5M1tY,2009.0,6,10,2017,Ondine,There's a Girl Here Scene,tt1235796 H85jp6COWak,2009.0,5,10,2017,Ondine,Curiouser and Curiouser Scene,tt1235796 LFg8eGuhlak,2009.0,4,10,2017,Ondine,Annie Meets Scene,tt1235796 u6YtIOaN264,2009.0,1,10,2017,Ondine,From the Sea Scene,tt1235796 T4v_27FwSbc,2009.0,2,10,2017,Ondine,You Bring Me Luck Scene,tt1235796 d6N8yKrG2Ps,2009.0,3,10,2017,Ondine,Stealing Ladies' Clothes Scene,tt1235796 DBooQQKsDac,2006.0,1,10,2017,Cashback,The Break-up Scene,tt0460740 czLSpZb6aWo,2006.0,2,10,2017,Cashback,She Was Never Far From My Mind Scene,tt0460740 L6Z80A-avdA,2006.0,5,10,2017,Cashback,Freezing Time Scene,tt0460740 IJe-gy5sR6I,2006.0,4,10,2017,Cashback,The Clock is the Enemy Scene,tt0460740 AapjOgixmfQ,2006.0,6,10,2017,Cashback,Grab My Arm Scene,tt0460740 5GZbCRzKoTQ,2006.0,8,10,2017,Cashback,Dreams Scene,tt0460740 c5ZISrFKFP0,2006.0,7,10,2017,Cashback,Crushed Scene,tt0460740 HHc1myygH_A,2006.0,9,10,2017,Cashback,Drawing Sharon Scene,tt0460740 gS5vt3ZE-jI,2006.0,10,10,2017,Cashback,Love is There Scene,tt0460740 zha1tYGnAC8,2003.0,10,10,2017,Hulk,Father vs. Son Scene,tt0286716 9j3KAnX0Nhk,2003.0,9,10,2017,Hulk,He's Got My Missile Scene,tt0286716 qe8IY41zyCc,2003.0,8,10,2017,Hulk,Send in the Tanks Scene,tt0286716 NpoB6-TCGWw,2003.0,7,10,2017,Hulk,Breaks Out Scene,tt0286716 uSZi8oPRUkE,2003.0,6,10,2017,Hulk,Talbot Confronts the Scene,tt0286716 5jv7TlhbjAQ,2003.0,5,10,2017,Hulk,The Absorbing Man Scene,tt0286716 uEMTQYe1ro0,2003.0,4,10,2017,Hulk,vs. Dogs Scene,tt0286716 Hj9q4NlwcXo,2003.0,2,10,2017,Hulk,The is Born Scene,tt0286716 7ZUVMim8ebM,2003.0,1,10,2017,Hulk,Gamma Accident Scene,tt0286716 YdcWFWm4n6g,2003.0,3,10,2017,Hulk,You're Making Me Angry Scene,tt0286716 v2qDlGbaqSQ,2004.0,9,9,2017,De-Lovely,So In Love Scene,tt0352277 q6j_0vS_NNM,2004.0,5,9,2017,De-Lovely,Begin the Beguine Scene,tt0352277 NWvUNDAsYqE,2004.0,7,9,2017,De-Lovely,Blackmailed Scene,tt0352277 SUKdlcCiE60,2004.0,8,9,2017,De-Lovely,Spoiled Behavior Scene,tt0352277 ECirl_sSf-M,2004.0,6,9,2017,De-Lovely,Linda's Miscarriage Scene,tt0352277 mM5dRMY2u28,2004.0,4,9,2017,De-Lovely,Night and Day Scene,tt0352277 aiJtAU0V_60,2004.0,3,9,2017,De-Lovely,Happiness Scene,tt0352277 UkH65BsZg_g,2004.0,1,9,2017,De-Lovely,Easy to Love Scene,tt0352277 Oui5yj3OvxQ,2004.0,2,9,2017,De-Lovely,Let's Do It Scene,tt0352277 fQEGMNLTYPs,1978.0,11,11,2017,Capricorn One,Biplane Helicopter Chase Scene,tt0077294 AZ0AsuZu4ds,1978.0,3,11,2017,Capricorn One,Threatening Their Families Scene,tt0077294 jPH8I5QWFUU,1978.0,10,11,2017,Capricorn One,Avoiding Capture Scene,tt0077294 S9EIFSWUoOc,1978.0,9,11,2017,Capricorn One,Hiring a Plane Scene,tt0077294 35FF7e1-zCg,1978.0,8,11,2017,Capricorn One,I Don't Like You Scene,tt0077294 aVHgGXnna94,1978.0,6,11,2017,Capricorn One,Escaping From Captivity Scene,tt0077294 ok6H1OFTmyA,1978.0,7,11,2017,Capricorn One,How to Break Bad News Scene,tt0077294 d5Pc-tNsvT4,1978.0,1,11,2017,Capricorn One,Launching Scene,tt0077294 Vx3I6XjqCho,1978.0,5,11,2017,Capricorn One,Runaway Car Scene,tt0077294 UDq-H6B36g8,1978.0,2,11,2017,Capricorn One,Revealing the Landing Studio Scene,tt0077294 2LhsuPLvtFk,1978.0,4,11,2017,Capricorn One,Faked Mars Landing Scene,tt0077294 o9dLO77OSao,1961.0,4,11,2017,Judgment at Nuremberg,The Loyalty Oath Scene,tt0055031 TyS98_jQIA0,1961.0,10,11,2017,Judgment at Nuremberg,What A Country Stands For Scene,tt0055031 jRSw_0zpNE8,1961.0,11,11,2017,Judgment at Nuremberg,You Must Believe It Scene,tt0055031 SfMSiaxLslA,1961.0,6,11,2017,Judgment at Nuremberg,To Prevent Worse Things Scene,tt0055031 ptJ8x9AERwA,1961.0,9,11,2017,Judgment at Nuremberg,We Were Doing Our Duty Scene,tt0055031 lbqDuUjm4aU,1961.0,8,11,2017,Judgment at Nuremberg,The Guilt of the World Scene,tt0055031 9_yf1HCH5CY,1961.0,3,11,2017,Judgment at Nuremberg,Justice Handed Over to Dictatorship Scene,tt0055031 ALfuWSv9YVc,1961.0,7,11,2017,Judgment at Nuremberg,It Was Only Temporary Scene,tt0055031 4HB9b-ttI3I,1961.0,1,11,2017,Judgment at Nuremberg,Judge Haywood Scene,tt0055031 di3Xh95aXp8,1961.0,2,11,2017,Judgment at Nuremberg,Judges in the Dock Scene,tt0055031 WfCufFRo-hU,1961.0,5,11,2017,Judgment at Nuremberg,Instead of Water Scene,tt0055031 TSCcj7mYuhc,1960.0,4,12,2017,Inherit the Wind,The Right to Think Scene,tt0053946 v757jrOBkng,1960.0,12,12,2017,Inherit the Wind,The Atheist Who Believes in God Scene,tt0053946 FRhbIIkLlFI,1960.0,11,12,2017,Inherit the Wind,Death of Matthew Brady Scene,tt0053946 3l3rJxuxpDo,1960.0,9,12,2017,Inherit the Wind,Brady Breaks Down Scene,tt0053946 EsTniU7j_yw,1960.0,7,12,2017,Inherit the Wind,The Power to Think Scene,tt0053946 8YUnOHihAU0,1960.0,5,12,2017,Inherit the Wind,Fanaticism and Ignorance Scene,tt0053946 oqQGFh5yiWE,1960.0,10,12,2017,Inherit the Wind,The Sentence Is Delivered Scene,tt0053946 IYfuTlTiixA,1960.0,8,12,2017,Inherit the Wind,Meet the Prophet From Nebraska! Scene,tt0053946 FQLXXM-nktc,1960.0,6,12,2017,Inherit the Wind,Calling Brady to the Stand Scene,tt0053946 nepc-GLWtfc,1960.0,3,12,2017,Inherit the Wind,Excusing the Juror Scene,tt0053946 FYDEheLGrKw,1960.0,2,12,2017,Inherit the Wind,Drummond Meets Brady Scene,tt0053946 vYtc_bS47oM,1960.0,1,12,2017,Inherit the Wind,Arrested for Teaching Darwin Scene,tt0053946 xjdKPS6-8XU,1967.0,9,9,2017,Bonnie and Clyde,The Story of Bonnie & Clyde Scene,tt0061418 21b9Nr4VIcI,1967.0,7,9,2017,Bonnie and Clyde,This is The Barrow Gang Scene,tt0061418 IL-_pNnEuk8,1967.0,8,9,2017,Bonnie and Clyde,I'm An Undertaker Scene,tt0061418 wjVPv5aO_no,1967.0,6,9,2017,Bonnie and Clyde,Blanche Loses It Amid Bullets Scene,tt0061418 2GM0LKQ-ml0,1967.0,3,9,2017,Bonnie and Clyde,We Rob Banks Scene,tt0061418 Pb1N5TcA5to,1967.0,5,9,2017,Bonnie and Clyde,Parking The Car Scene,tt0061418 SLC0omm3N98,1967.0,4,9,2017,Bonnie and Clyde,A Getaway Driver Scene,tt0061418 FS3hFDdeX30,1967.0,1,9,2017,Bonnie and Clyde,Birdcaged Bonnie Scene,tt0061418 9smHLhj75CU,1967.0,2,9,2017,Bonnie and Clyde,What's It Like? Scene,tt0061418 h7NG9ZEfyKo,1968.0,9,10,2017,Bullitt,Runway Escape Scene,tt0062765 tRx8N7mJU9g,1968.0,5,10,2017,Bullitt,Ford Mustang vs. Dodge Charger Scene,tt0062765 t-5usV6m4J4,1968.0,1,10,2017,Bullitt,The Hotel Hit Scene,tt0062765 sWCQm58jJsk,1968.0,2,10,2017,Bullitt,Who Else Knew Where He Was? Scene,tt0062765 ik-n-L9UNTY,1968.0,3,10,2017,Bullitt,Hospital Hunt Scene,tt0062765 0xHe1zkABYo,1968.0,8,10,2017,Bullitt,We Must All Compromise Scene,tt0062765 Ovyfd29a1ik,1968.0,6,10,2017,Bullitt,Giving Up the John Doe Scene,tt0062765 cWiljyh4NR4,1968.0,7,10,2017,Bullitt,What Will Happen to Us? Scene,tt0062765 no7XR7s8Z7o,1968.0,4,10,2017,Bullitt,San Francisco Car Chase Scene,tt0062765 MmtvzIGaH1I,1968.0,10,10,2017,Bullitt,Airport Shootout Scene,tt0062765 GrCmVFX9tyQ,1940.0,8,12,2017,His Girl Friday,Not Afraid to Die Scene,tt0032599 x-_17t-v9dA,1940.0,12,12,2017,His Girl Friday,The Power of the Press Scene,tt0032599 _4EkJkuiwIg,1940.0,11,12,2017,His Girl Friday,A Cock-Eyed Liar Scene,tt0032599 OPuOk309lSE,-1.0,9,12,2017,Back to the Secret Garden,If She Lost the Key Scene,tt0233277 9tHwS5Ymvag,1940.0,7,12,2017,His Girl Friday,What's the Story? Scene,tt0032599 WsaXEsBV6b4,1940.0,6,12,2017,His Girl Friday,Hildy's Farewell Scene,tt0032599 rz2FxTVVJi4,1940.0,9,12,2017,His Girl Friday,This Is War Scene,tt0032599 e5cg1EeFISo,1940.0,10,12,2017,His Girl Friday,Hiring a Poet Scene,tt0032599 m8lzyaMZ-mA,1940.0,1,12,2017,His Girl Friday,A Better Offer Scene,tt0032599 sbIfW_Pf9vk,-1.0,5,12,2017,Back to the Secret Garden,Tea Lesson Gone Wrong Scene,tt0233277 FN3SPnr9EZg,1940.0,3,12,2017,His Girl Friday,Hildy's New Beau Scene,tt0032599 Eom_iOkd0-I,1940.0,4,12,2017,His Girl Friday,Hildy's Getting Married Scene,tt0032599 gA3wJRuClks,1940.0,5,12,2017,His Girl Friday,Jailhouse Interview Scene,tt0032599 v8UDjwdqzKY,1940.0,2,12,2017,His Girl Friday,You're a Newspaper Man Scene,tt0032599 V32SkmBB1KU,1994.0,10,10,2017,Black Beauty,Coming Home Scene,tt0109279 cBFrfA6TrB0,1994.0,9,10,2017,Black Beauty,My Precious Friend Scene,tt0109279 iga0_T5B8dU,1994.0,7,10,2017,Black Beauty,The Bearing Rein Scene,tt0109279 SXVUCgoOcfs,1994.0,4,10,2017,Black Beauty,Stable Fire Scene,tt0109279 V-mlZvBRoOQ,1994.0,8,10,2017,Black Beauty,A Good Place Scene,tt0109279 VZM1S9VcjAM,-1.0,2,12,2017,Back to the Secret Garden,A Green Nose Scene,tt0233277 zeV1-Ito9HM,1994.0,6,10,2017,Black Beauty,A New Home Scene,tt0109279 gQ5KDSBMFRU,-1.0,7,12,2017,Back to the Secret Garden,Giving Lizzie the Key Scene,tt0233277 Km2lbJKGAqA,1994.0,5,10,2017,Black Beauty,Goodbye My Beauty Scene,tt0109279 tkWWtYRbnq8,1994.0,1,10,2017,Black Beauty,Training Scene,tt0109279 Go55LztXeQA,1994.0,3,10,2017,Black Beauty,Danger on the Bridge Scene,tt0109279 q5RSKejDWo8,1994.0,2,10,2017,Black Beauty,Beauty is as Beauty Does Scene,tt0109279 xcc3vzgR9QQ,-1.0,1,12,2017,Back to the Secret Garden,I Can't Find the Door Scene,tt0233277 s3mwDA8sv8I,-1.0,12,12,2017,Back to the Secret Garden,A Children's Garden Scene,tt0233277 DV5EHuaa23c,-1.0,3,12,2017,Back to the Secret Garden,The Sacred Garden Scene,tt0233277 tD9DfbbK6OE,-1.0,11,12,2017,Back to the Secret Garden,I Say Play Scene,tt0233277 w-6lVMklaKY,-1.0,6,12,2017,Back to the Secret Garden,Fire! Fire! Scene,tt0233277 QqQYNj15OfI,-1.0,10,12,2017,Back to the Secret Garden,I Threw It in the Lake Scene,tt0233277 rNP5uIQxAfY,-1.0,8,12,2017,Back to the Secret Garden,My Mother's Roses Scene,tt0233277 ulALOA2LeNw,-1.0,4,12,2017,Back to the Secret Garden,The Garden is Dying Scene,tt0233277 AH4E6mdxZDw,2015.0,1,10,2017,Spotlight,Survivor Story Scene,tt1895587 csRJ-T2LNI0,2015.0,10,10,2017,Spotlight,Success Scene,tt1895587 4pUi3hbXF2c,2015.0,9,10,2017,Spotlight,Nobody Can Get Away With This! Scene,tt1895587 5Abq-DZrjB0,2015.0,8,10,2017,Spotlight,Sensitive Records Scene,tt1895587 8ilbyubEDhM,2015.0,6,10,2017,Spotlight,"Off the Record, It's All Public Scene",tt1895587 ogW6YDmEb1M,2015.0,7,10,2017,Spotlight,Everybody Already Knows Scene,tt1895587 k60eGmxn7Rk,2015.0,4,10,2017,Spotlight,Six Percent Of All Priests Scene,tt1895587 CW2M1ZyYArk,2015.0,5,10,2017,Spotlight,Sure I Fooled Around Scene,tt1895587 f5RQrcIrlBA,2015.0,3,10,2017,Spotlight,It Really Messed Me Up Scene,tt1895587 kGQbCYm2kx4,2015.0,2,10,2017,Spotlight,He Was Nice At First Scene,tt1895587 d9TdwetEIQ8,-1.0,9,9,2017,Argo,Cleared For Take-Off Scene,tt1024648 79WfcpXDbg4,-1.0,8,9,2017,Argo,Studio 6 Confirms Scene,tt1024648 EqFFgltjVbg,-1.0,7,9,2017,Argo,Confirm the Tickets Scene,tt1024648 BleQjp9zglY,-1.0,6,9,2017,Argo,I'm Responsible Scene,tt1024648 t2NytKIhd68,-1.0,5,9,2017,Argo,Americans at the Bazaar Scene,tt1024648 5A98txE5nno,-1.0,4,9,2017,Argo,The Best Bad Idea We Have Scene,tt1024648 PiMWCFay_sE,-1.0,3,9,2017,Argo,A Fake Movie Scene,tt1024648 Td_5-DJdFQM,-1.0,2,9,2017,Argo,Taking Hostages Scene,tt1024648 8j4k-10bZC0,-1.0,1,9,2017,Argo,Over the Wall Scene,tt1024648 5qKySTAWpiY,-1.0,8,10,2017,The Danish Girl,I Need My Husband Scene,tt0810819 8Cyv7f65bbY,-1.0,9,10,2017,The Danish Girl,A Complex Surgery Scene,tt0810819 PXMASW5YQl8,-1.0,10,10,2017,The Danish Girl,Lili Finally Scene,tt0810819 C-FH-TOuFpQ,-1.0,5,10,2017,The Danish Girl,I Thought You Knew Scene,tt0810819 JyEYiaZW3Ok,-1.0,7,10,2017,The Danish Girl,Sorry Einar Couldn't Be Here Scene,tt0810819 TSclZRaacyA,-1.0,6,10,2017,The Danish Girl,Your Husband Is Insane Scene,tt0810819 ejD-W0F0hr8,-1.0,1,10,2017,The Danish Girl,A Model Called Lili Scene,tt0810819 8p6L3Vl8ezA,-1.0,3,10,2017,The Danish Girl,Different From Most Girls Scene,tt0810819 2hcGeToc17I,-1.0,2,10,2017,The Danish Girl,Role Play Scene,tt0810819 5Ackdv3pgmU,-1.0,4,10,2017,The Danish Girl,Identity Crisis Scene,tt0810819 Uk1MJFwGMjI,1955.0,10,10,2017,Rebel Without a Cause,I Got The Bullets! Scene,tt0048545 ntnqp7-SG7k,1955.0,9,10,2017,Rebel Without a Cause,Live It Up Scene,tt0048545 1AlMY9fDHu0,1955.0,7,10,2017,Rebel Without a Cause,The Chickie-Run Scene,tt0048545 7014C_6ABAg,1955.0,8,10,2017,Rebel Without a Cause,Stand Up For Me! Scene,tt0048545 _RHrQlqoTTA,1955.0,6,10,2017,Rebel Without a Cause,Disappointing Parents Scene,tt0048545 vJv647j5Ig4,1955.0,5,10,2017,Rebel Without a Cause,The Knife Fight Scene,tt0048545 hoKvbJSMShA,1955.0,4,10,2017,Rebel Without a Cause,I Go With the Kids Scene,tt0048545 _EpizUY_las,1955.0,3,10,2017,Rebel Without a Cause,I Don't Ever Wanna Be Like Him Scene,tt0048545 UBOcWFBBB04,1955.0,2,10,2017,Rebel Without a Cause,You're Tearing Me Apart Scene,tt0048545 8JhRzlsZPas,1955.0,1,10,2017,Rebel Without a Cause,He Called Me A Dirty Tramp Scene,tt0048545 dc8glsGbIus,1956.0,4,10,2017,The Searchers,Cowboys vs. Indians Scene,tt0049730 jTz_VNAGqog,1956.0,6,10,2017,The Searchers,Buying a Wife Scene,tt0049730 8Wgkpfa5HMw,1956.0,2,10,2017,The Searchers,The Raid Scene,tt0049730 S6iFW-HoFwc,1956.0,5,10,2017,The Searchers,Don't Ever Ask Me More! Scene,tt0049730 KAByPJJecxQ,1956.0,7,10,2017,The Searchers,Stand Aside! Scene,tt0049730 99IRJoGX238,1956.0,8,10,2017,The Searchers,Fighting for Laurie Scene,tt0049730 rZpeepxXh7I,1956.0,3,10,2017,The Searchers,Finishing the Job Scene,tt0049730 5_j3NrcDiS4,1956.0,1,10,2017,The Searchers,"Welcome Home, Ethan Scene",tt0049730 KvfIsbhIQLA,1956.0,10,10,2017,The Searchers,The Doorway Scene,tt0049730 IC-u2-aQXS4,1956.0,9,10,2017,The Searchers,"Let's Go Home, Debbie Scene",tt0049730 xKaCxkf1Ccs,-1.0,6,10,2017,"Hail, Caesar!",Fixin' to Be Friendly Scene,tt0475290 S64LeYg3Tg4,-1.0,10,10,2017,"Hail, Caesar!","Thanks, But No Thanks Scene",tt0475290 G629a_3MkkI,-1.0,2,10,2017,"Hail, Caesar!",Would That It Were So Simple Scene,tt0475290 N9v6VJLZ8_I,-1.0,9,10,2017,"Hail, Caesar!",Got Most Of It Scene,tt0475290 uSMxnpecSZM,-1.0,3,10,2017,"Hail, Caesar!",No Dames Scene,tt0475290 mqhpZ30uNic,-1.0,7,10,2017,"Hail, Caesar!",Catching the Submarine Scene,tt0475290 Rpt-fbpiTU8,-1.0,8,10,2017,"Hail, Caesar!",The Picture Has Worth Scene,tt0475290 TtALqoM5hkY,-1.0,1,10,2017,"Hail, Caesar!",The Mermaid Ballet Scene,tt0475290 UbwxGgR-EAM,-1.0,5,10,2017,"Hail, Caesar!",No One's the Wiser Scene,tt0475290 8YQZMbgpmIo,-1.0,4,10,2017,"Hail, Caesar!",What If I Named Names? Scene,tt0475290 IXSNWvdkkic,2015.0,1,10,2017,Trumbo,Clashing with John Wayne Scene,tt3203606 bubK4ybEy-Y,2015.0,8,10,2017,Trumbo,A Hideous Waste of Life Scene,tt3203606 apJLTO5T430,2015.0,6,10,2017,Trumbo,I Make Garbage! Scene,tt3203606 SUVN09kOsAo,2015.0,5,10,2017,Trumbo,Buddy Named Names Scene,tt3203606 5AstACoPo9w,2015.0,2,10,2017,Trumbo,Hostility at HUAC Scene,tt3203606 0dGLAOaTgyw,2015.0,10,10,2017,Trumbo,There Were Only Victims Scene,tt3203606 COy16bTI_zE,2015.0,7,10,2017,Trumbo,Are You Robert Rich? Scene,tt3203606 nTs76MbxqEM,2015.0,9,10,2017,Trumbo,Spartacus By Dalton Scene,tt3203606 vwrWW26_JHY,2015.0,3,10,2017,Trumbo,Writing for the King Brothers Scene,tt3203606 ssS5S_E37G8,2015.0,4,10,2017,Trumbo,I Did What I Had To Scene,tt3203606 Y4XiKFvQ1rM,-1.0,6,10,2017,Citizen Kane,Gettys Blackmails Kane Scene,tt0033467 ttTyXqwsP0o,-1.0,5,10,2017,Citizen Kane,Campaign Promises Scene,tt0033467 oqquLzHmH5k,-1.0,7,10,2017,Citizen Kane,Love on Your Own Terms Scene,tt0033467 FSj-BCOlGPY,-1.0,9,10,2017,Citizen Kane,The Snow Globe Scene,tt0033467 z9OUZNicTGU,-1.0,3,10,2017,Citizen Kane,How to Run a Newspaper Scene,tt0033467 2LX27W51kB0,-1.0,2,10,2017,Citizen Kane,The Union Forever! Scene,tt0033467 BFSjHBVx-xk,-1.0,1,10,2017,Citizen Kane,Famous Last Words Scene,tt0033467 3v-e25d34pY,-1.0,8,10,2017,Citizen Kane,Kane Finishes the Review Scene,tt0033467 Rfl2M8B9WA8,-1.0,4,10,2017,Citizen Kane,A Marriage Just Like Any Other Scene,tt0033467 fr93wwtiKQM,-1.0,10,10,2017,Citizen Kane,Rosebud Scene,tt0033467 GfBsuOuUdoI,-1.0,6,10,2017,Zero Dark Thirty,You're on a List Scene,tt1790885 ijjYDSqZOyA,-1.0,2,10,2017,Zero Dark Thirty,Hotel Explosion Scene,tt1790885 YXFkCH90yYQ,-1.0,9,10,2017,Zero Dark Thirty,The Raid,tt1790885 nq33k1fFyK0,-1.0,8,10,2017,Zero Dark Thirty,Her Confidence Scene,tt1790885 NgLepPDh5tY,-1.0,10,10,2017,Zero Dark Thirty,Visual Confirmation Scene,tt1790885 DsSvkC4X4Ko,-1.0,1,10,2017,Zero Dark Thirty,"When You Lie, I Hurt You Scene",tt1790885 2ZO0CFb3eys,-1.0,5,10,2017,Zero Dark Thirty,Protect the Homeland Scene,tt1790885 HdbL45I6VqM,-1.0,7,10,2017,Zero Dark Thirty,Kill Him For Me Scene,tt1790885 qiDGtIbWRVY,-1.0,4,10,2017,Zero Dark Thirty,Bring Me People to Kill Scene,tt1790885 2rJqM-hodGQ,-1.0,3,10,2017,Zero Dark Thirty,Take Your Hand Out Scene,tt1790885 HrYK4U_a6y8,-1.0,5,10,2017,Clash of the Empires,No Peace for Evil Men Scene,tt2456594 Wla8a89Vm8I,-1.0,10,10,2017,Clash of the Empires,Leader of Men Scene,tt2456594 n0Cg6MnUw20,-1.0,4,10,2017,Clash of the Empires,Into the Spider's Trap Scene,tt2456594 IZ-VZCROw_4,-1.0,6,10,2017,Clash of the Empires,"Wretched Lizards, Poisoned Prey Scene",tt2456594 KCg0cDrNQvo,-1.0,7,10,2017,Clash of the Empires,A Sight for Sore Eye Scene,tt2456594 Bjcu7KBoaNg,-1.0,2,10,2017,Clash of the Empires,Suta is Kidnapped Scene,tt2456594 bCD25qkPSwQ,-1.0,8,10,2017,Clash of the Empires,Return of the Dragons Scene,tt2456594 Pt2wNC6SYnE,-1.0,1,10,2017,Clash of the Empires,Village Under Attack Scene,tt2456594 YXzjSJDDRIc,-1.0,3,10,2017,Clash of the Empires,Hold Strong! Scene,tt2456594 l_ZRivM0lSY,-1.0,9,10,2017,Clash of the Empires,Help Arrives Scene,tt2456594 1ccMqOW6LMs,-1.0,5,10,2017,Neighbors 2: Sorority Rising,There's No I in Sorority Scene,tt4438848 MQ1E_qYia9Q,-1.0,10,10,2017,Neighbors 2: Sorority Rising,Don't Give Up on Yourselves Scene,tt4438848 nCWBxPh4dGo,-1.0,7,10,2017,Neighbors 2: Sorority Rising,Stealing the Weed Scene,tt4438848 dZb8CGMC1zA,-1.0,9,10,2017,Neighbors 2: Sorority Rising,Trapped In the Garage Scene,tt4438848 h6iHbAju1cI,-1.0,1,10,2017,Neighbors 2: Sorority Rising,Ours Is In Black Scene,tt4438848 ItHtrNSJwDo,-1.0,8,10,2017,Neighbors 2: Sorority Rising,Where is Mac? Scene,tt4438848 uta8BACjLNk,-1.0,3,10,2017,Neighbors 2: Sorority Rising,Teddy Helps the Girls Scene,tt4438848 pikAt8prREE,-1.0,2,10,2017,Neighbors 2: Sorority Rising,Poker Night Proposal Scene,tt4438848 9C0B94fFZkQ,-1.0,4,10,2017,Neighbors 2: Sorority Rising,It's On! Scene,tt4438848 h5D7aOzmDec,-1.0,6,10,2017,Neighbors 2: Sorority Rising,Teddy's Dance Scene,tt4438848 7lL9YOO31Ig,2012.0,1,10,2017,Compliance,In Trouble Here Scene,tt1971352 Fu82oMZobYQ,2012.0,3,10,2017,Compliance,In the Weeds Scene,tt1971352 VZRUqjnEPSk,2012.0,4,10,2017,Compliance,I Need You to Inspect Her Scene,tt1971352 fyl1lmsVuQU,2012.0,5,10,2017,Compliance,Find the Money Scene,tt1971352 GcVogDQ4VBY,2012.0,7,10,2017,Compliance,Phone Card Scene,tt1971352 0v4aJAsXjCA,2012.0,9,10,2017,Compliance,The Truth Comes Out Scene,tt1971352 22hhTrBAFRA,2012.0,2,10,2017,Compliance,Strip Search Scene,tt1971352 T-OmaEI2xrs,2012.0,10,10,2017,Compliance,I Did What I Was Told to Do Scene,tt1971352 W2gWVhYRyXI,2012.0,8,10,2017,Compliance,Spanking Scene,tt1971352 AC2swLcXfwQ,2012.0,6,10,2017,Compliance,Take the Apron Off Scene,tt1971352 w_e5kx3ONfs,1990.0,11,11,2017,Wild at Heart,Don't Turn Away From Love Scene,tt0100935 ZpmCdIS3TKc,1990.0,10,11,2017,Wild at Heart,Sailor Leaves Lula Scene,tt0100935 n2YCseaZK0Q,1990.0,6,11,2017,Wild at Heart,Bobby Peru Scene,tt0100935 kZz5k_xsG0Q,1990.0,9,11,2017,Wild at Heart,Bobby Tricks Sailor Scene,tt0100935 KnPfaGzmt4M,1990.0,3,11,2017,Wild at Heart,Gonna Have to Kill Me Scene,tt0100935 v_lHiT6UVCE,1990.0,8,11,2017,Wild at Heart,Terrorizing Lula Scene,tt0100935 aEfAFo99jEs,1990.0,7,11,2017,Wild at Heart,I'm Pregnant Scene,tt0100935 alYZ8jQ5L3A,1990.0,2,11,2017,Wild at Heart,Marietta and Sailor Scene,tt0100935 melCNhYmwII,1990.0,1,11,2017,Wild at Heart,Picking Up Sailor Scene,tt0100935 1y7cZSWu93k,1990.0,5,11,2017,Wild at Heart,Jingle Dell Scene,tt0100935 FtPj029E3Qk,1990.0,4,11,2017,Wild at Heart,Permission to Kill Scene,tt0100935 PZeVTlloWxw,1962.0,8,10,2017,Lolita,The Game Scene,tt0056193 3SKk58UngIk,1962.0,3,10,2017,Lolita,Infatuated by Scene,tt0056193 lMXVWQCa_MY,1962.0,5,10,2017,Lolita,No Longer Your Doup Scene,tt0056193 UfoHq1-vpss,1962.0,10,10,2017,Lolita,Acute Suppression of the Libido Scene,tt0056193 4k1Vx0equfE,1962.0,6,10,2017,Lolita,Bathtub Consolation Scene,tt0056193 6zfXkQ5QkrE,1962.0,9,10,2017,Lolita,You Never Let Me Have Any Fun Scene,tt0056193 5ODDHpmqyWE,1962.0,4,10,2017,Lolita,If You Love Me Scene,tt0056193 wIb3cRvQYw8,1962.0,7,10,2017,Lolita,I'm Just a Normal Guy Scene,tt0056193 lHqGIe8AZ1g,1962.0,2,10,2017,Lolita,A New Home Scene,tt0056193 VRXkf4--IXw,1962.0,1,10,2017,Lolita,Roman Ping Pong Scene,tt0056193 k6kWvjAJHh4,2015.0,8,10,2017,Road Wars,We Don't Run Scene,tt4530832 MHyA5fJ18HA,2015.0,9,10,2017,Road Wars,"No Cure, Only Contagion Scene",tt4530832 ihJ8mtOVfmM,2015.0,6,10,2017,Road Wars,Never Giving Up Scene,tt4530832 PSjEQHBkcq4,2015.0,10,10,2017,Road Wars,No Way Out Scene,tt4530832 l0PUssYO5A8,2015.0,7,10,2017,Road Wars,I'll Be Here Waiting Scene,tt4530832 2WgBKaFO7wk,2015.0,4,10,2017,Road Wars,Drink or Die Scene,tt4530832 iCmT0IRM9Z0,2015.0,2,10,2017,Road Wars,What Do You Remember? Scene,tt4530832 uJw5rPEUblc,2015.0,1,10,2017,Road Wars,Death Duty Scene,tt4530832 buDmlhm8mKE,2015.0,5,10,2017,Road Wars,Don't You Know What He Is? Scene,tt4530832 3fotxrK_Spg,2015.0,3,10,2017,Road Wars,Chasing Orsini Scene,tt4530832 5qWIaxikcbc,-1.0,8,10,2017,21 Jump Street,We Gotta Get Outta Here Scene,tt1232829 92WjYrR0PEA,-1.0,7,10,2017,21 Jump Street,She Tried to Grab My Dick Scene,tt1232829 ZE5ddEN5Nbk,-1.0,4,10,2017,21 Jump Street,First Day of School Scene,tt1232829 UuuzF8Pyh0s,-1.0,9,10,2017,21 Jump Street,Limo Chase Scene,tt1232829 k7oRzwLIgbo,-1.0,10,10,2017,21 Jump Street,You Shot Me in the Dick! Scene,tt1232829 7OsEWB35fPE,-1.0,2,10,2017,21 Jump Street,You Idiots are Perfect Scene,tt1232829 iwZN1N7Denc,-1.0,5,10,2017,21 Jump Street,Let's Finger Each Other's Mouths Scene,tt1232829 nC2HOMOxdkY,-1.0,1,10,2017,21 Jump Street,Park Arrest Scene,tt1232829 C2JaJ_FLYiM,-1.0,3,10,2017,21 Jump Street,Captain Sassy Scene,tt1232829 5AQC5oeDhDg,-1.0,6,10,2017,21 Jump Street,Trippin' Major Balls Scene,tt1232829 LRc6Awco5aU,-1.0,3,10,2017,Don Verdean,The Skull of Goliath Scene,tt3534282 N_3_HB0AfdY,-1.0,4,10,2017,Don Verdean,A Grave-Robbing Creep Scene,tt3534282 G3TWgClyD9E,-1.0,10,10,2017,Don Verdean,"You Are Done, Man Scene",tt3534282 0GYwcr3RD_k,-1.0,5,10,2017,Don Verdean,Satan's Cereal Scene,tt3534282 vTTzWRdAN4M,-1.0,2,10,2017,Don Verdean,You Hit Her in the Uterus Scene,tt3534282 -7mzQx0ebqk,-1.0,6,10,2017,Don Verdean,Tell Them the Truth Scene,tt3534282 0tq44zxA0Ao,-1.0,7,10,2017,Don Verdean,What Qualities Are You Looking for in a Mate? Scene,tt3534282 ThdpcnGKsVY,-1.0,8,10,2017,Don Verdean,The Holy Grail Scene,tt3534282 r8uOQupi1iQ,-1.0,9,10,2017,Don Verdean,I've Been Hit! Scene,tt3534282 lRpBlNgu8j4,-1.0,1,10,2017,Don Verdean,A Pillar of Salt Scene,tt3534282 LpDRf3h6OHw,-1.0,8,10,2017,Fort Tilden,My Father's Not a Criminal! Scene,tt3457734 egrmjjy2Pgo,-1.0,10,10,2017,Fort Tilden,I Left It In the Ghetto Scene,tt3457734 Zle2EnAj0Ms,-1.0,9,10,2017,Fort Tilden,Kitten Killers Scene,tt3457734 QCsjm6QI4WM,-1.0,6,10,2017,Fort Tilden,Marin and Amanda Scene,tt3457734 088CLxgnr8w,-1.0,7,10,2017,Fort Tilden,Like Three Quiet Minutes Scene,tt3457734 OliOEVSIsmY,-1.0,3,10,2017,Fort Tilden,Hitting a Baby Stroller Scene,tt3457734 xqmqskVELNs,-1.0,1,10,2017,Fort Tilden,If You Want Any Feedback Scene,tt3457734 bGXeYGkiQDo,-1.0,4,10,2017,Fort Tilden,Go to Portugal Scene,tt3457734 _4otc_6WtmQ,-1.0,2,10,2017,Fort Tilden,Borrowing a Bike Scene,tt3457734 dy3yjv2YLh0,-1.0,5,10,2017,Fort Tilden,You Should Stop Him Scene,tt3457734 dbnWDDp4s1c,-1.0,7,10,2017,John Dies at the End,That Soy Sauce Feeling Scene,tt1783732 wC2iSGzmdKI,-1.0,10,10,2017,John Dies at the End,Saving the World Scene,tt1783732 9PLm3XZsotA,-1.0,8,10,2017,John Dies at the End,Killing Friends Scene,tt1783732 yIG_egCmhTw,-1.0,3,10,2017,John Dies at the End,Soy Sauce Scene,tt1783732 59rdzSTXs5c,-1.0,5,10,2017,John Dies at the End,Look at the Box Scene,tt1783732 oIyXMnHWjIE,-1.0,9,10,2017,John Dies at the End,Meet Korrok Scene,tt1783732 qNOk4yyxE38,-1.0,1,10,2017,John Dies at the End,The Axe Riddle Scene,tt1783732 r8I0oejVPJI,-1.0,2,10,2017,John Dies at the End,The Meat Monster Scene,tt1783732 abBd7mEUNwA,-1.0,6,10,2017,John Dies at the End,He's Not Real Scene,tt1783732 6PPNd2HqmoA,-1.0,4,10,2017,John Dies at the End,Roger North Scene,tt1783732 Q85twbu-Vvk,-1.0,4,10,2017,The Purge: Election Year,All-American Murder Scene,tt4094724 WFdOIU2jKpo,-1.0,8,10,2017,The Purge: Election Year,Church Massacre Scene,tt4094724 1HfZYZ2sDwE,-1.0,9,10,2017,The Purge: Election Year,One More Move Scene,tt4094724 x39ZG34sn28,-1.0,10,10,2017,The Purge: Election Year,A Man of God and Gun Scene,tt4094724 cRuYB2gXpM8,-1.0,3,10,2017,The Purge: Election Year,They've Come to Kill You Scene,tt4094724 aUAVPdrvwoA,-1.0,7,10,2017,The Purge: Election Year,Born Again Through Blood Scene,tt4094724 6GhSM3Gu9VU,-1.0,5,10,2017,The Purge: Election Year,Pequeña Muerte is Back Scene,tt4094724 l8MFxT9ILKY,-1.0,6,10,2017,The Purge: Election Year,Y'all Need to See This Scene,tt4094724 V25QF11MwDU,-1.0,2,10,2017,The Purge: Election Year,Killing Party in the USA Scene,tt4094724 Kw6gubNxWQ4,-1.0,1,10,2017,The Purge: Election Year,Purge Patrol Scene,tt4094724 rAdvJOAGEmc,-1.0,6,10,2017,We'll Never Have Paris,Love in Paris Scene,tt3079016 2ZTrUc824oI,-1.0,5,10,2017,We'll Never Have Paris,I Could Barely Feel You Inside Me Scene,tt3079016 zaHU1FW_RZk,-1.0,4,10,2017,We'll Never Have Paris,Let's Go Be Guys Scene,tt3079016 -QT_Af7RLjU,-1.0,3,10,2017,We'll Never Have Paris,A Threesome With Two of Me Scene,tt3079016 0mmSi-63Y9U,-1.0,2,10,2017,We'll Never Have Paris,Bathtub Break-Up Scene,tt3079016 Ch1DsDy-osI,-1.0,1,10,2017,We'll Never Have Paris,A Giant Nose Scene,tt3079016 8QzFJA3QM7E,-1.0,7,10,2017,We'll Never Have Paris,I Need Her Scene,tt3079016 n_ci8BbMilc,-1.0,8,10,2017,We'll Never Have Paris,Making a Fool of Myself Scene,tt3079016 xLLOmh2nxWQ,-1.0,9,10,2017,We'll Never Have Paris,A Botched Proposal Scene,tt3079016 N0gOaE92ogg,-1.0,10,10,2017,We'll Never Have Paris,Please Say Yes! Scene,tt3079016 2BQoPPpt_9o,-1.0,8,10,2017,Bel Ami,I've Never Loved You Scene,tt1440732 IMTJSKr7yJA,-1.0,7,10,2017,Bel Ami,Seducing Virginie Scene,tt1440732 ltcp0jylvgQ,-1.0,9,10,2017,Bel Ami,He Will Marry Her Scene,tt1440732 Ft-7riREEaA,-1.0,6,10,2017,Bel Ami,More Powerful Than a King Scene,tt1440732 hJ6_nbGdWT0,-1.0,10,10,2017,Bel Ami,I Am Going to Live Scene,tt1440732 5-2eKvFCqw8,-1.0,4,10,2017,Bel Ami,I'm Getting Married Scene,tt1440732 DuYmyHWZqwE,-1.0,2,10,2017,Bel Ami,Other Women Scene,tt1440732 QRwiLuz2olI,-1.0,5,10,2017,Bel Ami,A Bit Grand Scene,tt1440732 ddVQoF2TvNQ,-1.0,3,10,2017,Bel Ami,Make Me Your Husband Scene,tt1440732 7ktZEjwyFhQ,-1.0,1,10,2017,Bel Ami,Love Nest Scene,tt1440732 4Cw7JHJuTt8,2015.0,9,10,2017,Vendetta,Rage and Riot Scene,tt3746298 lPrJqB8ljAE,2015.0,10,10,2017,Vendetta,See You Soon Scene,tt3746298 57eIYneEz7E,2015.0,8,10,2017,Vendetta,This is My House Scene,tt3746298 _-4Xy6CjAbw,2015.0,7,10,2017,Vendetta,Rooftop Fight Scene,tt3746298 CE8VRLW8Zw4,2015.0,6,10,2017,Vendetta,Joel is Attacked Scene,tt3746298 uB6JMgU50J0,2015.0,3,10,2017,Vendetta,Wrong Answer Scene,tt3746298 -QZzReak2Ck,2015.0,5,10,2017,Vendetta,Spiked Fist Scene,tt3746298 BbHxQ77anjQ,2015.0,4,10,2017,Vendetta,Shower With a Shiv Scene,tt3746298 7XaThsXXj_M,2015.0,2,10,2017,Vendetta,Hello Mrs. Danvers Scene,tt3746298 Ss5HAL8j7p8,2015.0,1,10,2017,Vendetta,Chasing Down Abbott Scene,tt3746298 UDhWyFDDrUg,2015.0,8,10,2017,Vice,Taking Down Scene,tt1791528 6xCIhFtDtx0,2015.0,6,10,2017,Vice,I Designed You Scene,tt1791528 TmTq2M6xgEs,2015.0,9,10,2017,Vice,Shoot Me Scene,tt1791528 xkzlZGohQ_4,2015.0,10,10,2017,Vice,No More Scene,tt1791528 ih9NffWqWgM,2015.0,5,10,2017,Vice,"Run, Rabbit, Run Scene",tt1791528 YejzV_nWN1M,2015.0,7,10,2017,Vice,Where's the Girl? Scene,tt1791528 kaJbWpMZdwM,2015.0,3,10,2017,Vice,Memory Overload Scene,tt1791528 I5ohJ4BBHzo,2015.0,2,10,2017,Vice,A.I. Technical Difficulties Scene,tt1791528 3Iy44xwjtQA,2015.0,4,10,2017,Vice,Stick to the Story Scene,tt1791528 57u_LsqMoys,2015.0,1,10,2017,Vice,Send in the Sweeper Team Scene,tt1791528 iP7_QcV9Q9s,-1.0,10,10,2017,Ride Along 2,Boat Fail Scene,tt2869728 LyGXFcfRyAQ,-1.0,1,10,2017,Ride Along 2,It's a Foot Chase! Scene,tt2869728 YRCIuvKg4tc,-1.0,2,10,2017,Ride Along 2,Bachelor Party Scene,tt2869728 ra42YS4NRlY,-1.0,4,10,2017,Ride Along 2,Nasty Nachos Scene,tt2869728 3XD34HIx-00,-1.0,3,10,2017,Ride Along 2,The Apple Chime Scene,tt2869728 -yyoLJuNIJU,-1.0,5,10,2017,Ride Along 2,Video Game Car Chase Scene,tt2869728 7ezYV1mOdh0,-1.0,8,10,2017,Ride Along 2,Forklift Frenzy Scene,tt2869728 ENC7ueK93Ow,-1.0,7,10,2017,Ride Along 2,Alligator Scene,tt2869728 WmFiW2CSiO4,-1.0,6,10,2017,Ride Along 2,Nigerian Prince Scene,tt2869728 SLL5ziDWc6k,-1.0,9,10,2017,Ride Along 2,Bulletproof Ben Scene,tt2869728 -vBO8PStfEg,-1.0,2,10,2017,My Big Fat Greek Wedding 2,Parents Deserve a Sex Life Scene,tt3760922 mSsrdFBpuqU,-1.0,3,10,2017,My Big Fat Greek Wedding 2,A Boyfriend for Paris Scene,tt3760922 PI82pNmQodk,-1.0,1,10,2017,My Big Fat Greek Wedding 2,Grandpa's Computer Scene,tt3760922 P1EIIQ0tZUE,-1.0,5,10,2017,My Big Fat Greek Wedding 2,Will You Marry Me? Scene,tt3760922 fR8fl1fJftU,-1.0,4,10,2017,My Big Fat Greek Wedding 2,Gus in the Tub Scene,tt3760922 gFDIKfe91mg,-1.0,6,10,2017,My Big Fat Greek Wedding 2,Will You Go to Prom With Me? Scene,tt3760922 UkF508FI9ws,-1.0,7,10,2017,My Big Fat Greek Wedding 2,Stepping Back Scene,tt3760922 oxml1eY8urE,-1.0,8,10,2017,My Big Fat Greek Wedding 2,I Love Him Scene,tt3760922 vlwrxfIiDBs,-1.0,10,10,2017,My Big Fat Greek Wedding 2,The Wedding Scene,tt3760922 0LQZpUHbjDM,-1.0,9,10,2017,My Big Fat Greek Wedding 2,I Missed You Scene,tt3760922 Npdj1jv8JKo,2009.0,12,12,2017,Humpday,A Great Piece of Art Scene,tt1334537 9h6w198Yg_Q,2009.0,11,12,2017,Humpday,That Was Awful Scene,tt1334537 9vn3DZZHC4s,2009.0,7,12,2017,Humpday,Don't Be Scared Scene,tt1334537 xD1OPkq6-Vg,2009.0,3,12,2017,Humpday,What a Wild Life Scene,tt1334537 MR8hXM7_6EQ,2009.0,1,12,2017,Humpday,So Tired Scene,tt1334537 Ctux2wyz_W8,2009.0,10,12,2017,Humpday,Straight Dude Testimonial Scene,tt1334537 heqpyT4kudQ,2009.0,5,12,2017,Humpday,Hangover Cure Scene,tt1334537 xax--zcAdss,2009.0,2,12,2017,Humpday,Welcome Andrew Scene,tt1334537 zkX8cKUFOvk,2009.0,8,12,2017,Humpday,Polyamorous Relationships Scene,tt1334537 oIymf1Bgmqg,2009.0,6,12,2017,Humpday,It's On Scene,tt1334537 liDkvm3hMtw,2009.0,4,12,2017,Humpday,Beyond Gay Scene,tt1334537 3_2F9m4Rvw4,2009.0,9,12,2017,Humpday,Ben's Secret Crush Scene,tt1334537 0_7vIOvdKqY,1983.0,6,11,2017,Class,Instant Margarita Scene,tt0083739 3J0d3ZwHy-Y,1983.0,11,11,2017,Class,Your Mom Called Scene,tt0083739 u3oi4L5tWQg,1983.0,10,11,2017,Class,Skip Punches Jonathan Scene,tt0083739 eFrS6uCoMsw,1983.0,5,11,2017,Class,Love in an Elevator Scene,tt0083739 SrNNEi50cl4,1983.0,2,11,2017,Class,Your Dead Roommate Scene,tt0083739 UeV6eAtHp0M,1983.0,4,11,2017,Class,Have You Ever Been in Love? Scene,tt0083739 nM0h6QXTpHQ,1983.0,7,11,2017,Class,"Nice to Meet You, Mrs. Burroughs Scene",tt0083739 SzlHzRvw-MI,1983.0,9,11,2017,Class,The Stolen SAT Tests Scene,tt0083739 Y6jBV4wDoO4,1983.0,1,11,2017,Class,The Guy in Women's Underwear Scene,tt0083739 k8bJrJ7_LKI,1983.0,3,11,2017,Class,Jesus Is My Roommate Scene,tt0083739 IywRc7bHziQ,1983.0,8,11,2017,Class,Room Service Surprise Scene,tt0083739 sp0O70Q5FAQ,-1.0,10,11,2017,Foxy Brown,Below the Belt Scene,tt0071517 odNZhZSydNc,-1.0,7,11,2017,Foxy Brown,Here'sx Some Gasoline Scene,tt0071517 tlJM0tgXu5Q,-1.0,3,11,2017,Foxy Brown,Cleaning the Streets Scene,tt0071517 GCc99Gh-IEM,-1.0,11,11,2017,Foxy Brown,I Want You to Suffer! Scene,tt0071517 rMczYrlPwaw,-1.0,8,11,2017,Foxy Brown,"You Handle Justice, I'll Handle Revenge Scene",tt0071517 JWXgBi3HDac,-1.0,9,11,2017,Foxy Brown,Frisky Flying Scene,tt0071517 1UXl3LGnRR4,-1.0,6,11,2017,Foxy Brown,Lesbian Bar Fight Scene,tt0071517 yBd_y4V7vtc,-1.0,4,11,2017,Foxy Brown,A Whole Lotta Woman Scene,tt0071517 Qf_EPkVA31c,-1.0,5,11,2017,Foxy Brown,Humiliating the Honky Judge Scene,tt0071517 cTR9Hnxfk7A,-1.0,2,11,2017,Foxy Brown,All This Ambition Scene,tt0071517 AxBkurGlhHg,-1.0,1,11,2017,Foxy Brown,Foxy Rescues Her Brother Scene,tt0071517 WRlIDIu2qpg,2016.0,10,10,2017,Popstar,Incredible Thoughts Scene,tt3960412 DAPrbiJaej4,2016.0,9,10,2017,Popstar,Connor's Fancy Flapjacks Scene,tt3960412 W95X207kQxU,2016.0,5,10,2017,Popstar,Finest Girl (Bin Laden Song) Scene,tt3960412 1EcAcWe08NU,2016.0,7,10,2017,Popstar,Where's Connor's Dick? Scene,tt3960412 QC0kTcAlf64,2016.0,6,10,2017,Popstar,New Helmet and Two Banditos Scene,tt3960412 pLooDtjrhv8,2016.0,8,10,2017,Popstar,Wolves Attack Seal Scene,tt3960412 t1Wk3H5Xur0,2016.0,4,10,2017,Popstar,Bad Reviews and Catchprases Scene,tt3960412 xGAAMQLb4ZE,2016.0,3,10,2017,Popstar,Equal Rights Scene,tt3960412 KzUKcXxbU4U,2016.0,2,10,2017,Popstar,I'm So Humble Scene,tt3960412 Tht98G49dos,2016.0,1,10,2017,Popstar,The Style Boyz Scene,tt3960412 _ZLAt3zwEpQ,-1.0,1,10,2017,Harold & Kumar Go to White Castle,Burger Shack Employee Scene,tt0366551 cN2VCBTYgHI,-1.0,2,10,2017,Harold & Kumar Go to White Castle,Battleshits Scene,tt0366551 Y4-vFWxvdjs,-1.0,4,10,2017,Harold & Kumar Go to White Castle,Kumar's Operation Scene,tt0366551 HNajZgCe5Pg,-1.0,3,10,2017,Harold & Kumar Go to White Castle,Rabid Raccoon Attack Scene,tt0366551 Zk5K-Z2enGA,-1.0,5,10,2017,Harold & Kumar Go to White Castle,Freakshow Scene,tt0366551 VMhwOytHUsU,-1.0,6,10,2017,Harold & Kumar Go to White Castle,I Want You Both Inside Me Scene,tt0366551 zPWwORb6PW8,-1.0,7,10,2017,Harold & Kumar Go to White Castle,Neil Patrick Harris Scene,tt0366551 aVUhnzQmx_A,-1.0,8,10,2017,Harold & Kumar Go to White Castle,Punching a Cop Scene,tt0366551 fzRvMylDVi8,-1.0,10,10,2017,Harold & Kumar Go to White Castle,White Castle Scene,tt0366551 SNwh7RP56S8,-1.0,9,10,2017,Harold & Kumar Go to White Castle,The Friendly Cheetah Scene,tt0366551 Uj6eiUsNwvU,-1.0,6,10,2017,Pineapple Express,Police Car Chase Scene,tt0910936 AnGVJ8Gv8aU,-1.0,9,10,2017,Pineapple Express,You're Not Dying Today Scene,tt0910936 o6FUdj0_fGY,-1.0,10,10,2017,Pineapple Express,Can We Be Best Friends? Scene,tt0910936 vOoyaqLrZnE,-1.0,8,10,2017,Pineapple Express,Dinner's Gonna Be Cold Tonight Scene,tt0910936 18Qa__JYKdc,-1.0,5,10,2017,Pineapple Express,Dinner at Angie's House Scene,tt0910936 aDvjCbdyEHw,-1.0,7,10,2017,Pineapple Express,Thug Life Scene,tt0910936 HKJOcRnkRQ4,-1.0,4,10,2017,Pineapple Express,I Seen't It Scene,tt0910936 4DD8QRsms1s,-1.0,3,10,2017,Pineapple Express,Fight at Red's Scene,tt0910936 eI1dAmDZrZE,-1.0,2,10,2017,Pineapple Express,The Trifecta Scene,tt0910936 uX7CAoxBNOU,-1.0,1,10,2017,Pineapple Express,The Bee's Knees Scene,tt0910936 5sNY4Rn7bYI,-1.0,4,10,2017,Jason Bourne,The Asset Chases Bourne Scene,tt4196776 fbR1gtlY7FM,-1.0,9,10,2017,Jason Bourne,Vegas Chase Scene,tt4196776 AnJm-acXQCo,-1.0,5,10,2017,Jason Bourne,Find the Shot Scene,tt4196776 5c3tOFFEcU4,-1.0,10,10,2017,Jason Bourne,Bourne vs. the Asset Scene,tt4196776 NzJH4towI_A,-1.0,6,10,2017,Jason Bourne,Turned Into a Killer Scene,tt4196776 yvtb9A9ai9Q,-1.0,7,10,2017,Jason Bourne,Assassination Attempt Scene,tt4196776 FWznyZ9Znuw,-1.0,8,10,2017,Jason Bourne,It's Time to Come In Scene,tt4196776 zb5RJyrk4gc,-1.0,2,10,2017,Jason Bourne,Riot Chase Scene,tt4196776 Wnocz8UrhQw,-1.0,3,10,2017,Jason Bourne,Motorcycle Rescue Scene,tt4196776 yunEcgw8va0,-1.0,1,10,2017,Jason Bourne,One Punch Scene,tt4196776 HsRwyJw5o7k,1999.0,10,10,2017,Deep Blue Sea,Blowing Up the Shark Scene,tt0149261 nA1lAszNSoI,1999.0,9,10,2017,Deep Blue Sea,Shocking the Shark Scene,tt0149261 q6ObhNBURyY,1999.0,8,10,2017,Deep Blue Sea,Tunnel of Terror Scene,tt0149261 BS8I9H07wKw,1999.0,7,10,2017,Deep Blue Sea,Russell Is Eaten Scene,tt0149261 gfXns_cU8I8,1999.0,6,10,2017,Deep Blue Sea,You Ate My Bird Scene,tt0149261 -v8l6cCrf0w,1999.0,5,10,2017,Deep Blue Sea,A Feathered Snack Scene,tt0149261 m2aC-nkV1Zg,1999.0,3,10,2017,Deep Blue Sea,Jim Is Bitten Scene,tt0149261 rvqm61CcOLo,1999.0,4,10,2017,Deep Blue Sea,Breaking Into the Lab Scene,tt0149261 i31XFSORRfc,1999.0,2,10,2017,Deep Blue Sea,Smart Sharks Scene,tt0149261 5lPGiKG9VI8,1999.0,1,10,2017,Deep Blue Sea,The Beast Beneath the Boat Scene,tt0149261 dfWdmxCHwfc,-1.0,9,10,2017,Last Action Hero,Rooftop Ripper Scene,tt0107362 9Eont_yEGZs,-1.0,1,10,2017,Last Action Hero,Hamlet Parody Scene,tt0107362 Br9zd0KkFTU,-1.0,10,10,2017,Last Action Hero,No Sequel For You Scene,tt0107362 gzPiBOc_Nfs,-1.0,7,10,2017,Last Action Hero,Silent But Deadly Scene,tt0107362 Jo1OjI4Yfv8,-1.0,8,10,2017,Last Action Hero,"If God Was a Villain, He'd Be Me Scene",tt0107362 hwTf9WurF4U,-1.0,6,10,2017,Last Action Hero,This Man's Not Dead! Scene,tt0107362 IXmWL4J2wwI,-1.0,2,10,2017,Last Action Hero,This is Happening Scene,tt0107362 5kQCpsPnnew,-1.0,5,10,2017,Last Action Hero,Don't Give Up Your Day Job Scene,tt0107362 u_z2ttNkL24,-1.0,4,10,2017,Last Action Hero,I'll Be Back Scene,tt0107362 3yjYPrkMGdk,-1.0,3,10,2017,Last Action Hero,Fasten Your Seatbelt Scene,tt0107362 fiP6h4VL-wE,-1.0,3,10,2017,The Day the Earth Stopped,Get Out of the Car! Scene,tt1290471 nhDX2exjhGU,-1.0,6,10,2017,The Day the Earth Stopped,As Long As There's Sunlight Scene,tt1290471 EMbzESGsxoY,-1.0,10,10,2017,The Day the Earth Stopped,We Can Learn to Live in Harmony Scene,tt1290471 -u0yhzYlhFA,-1.0,9,10,2017,The Day the Earth Stopped,Resurrection Scene,tt1290471 83Ax_EIMDVk,-1.0,8,10,2017,The Day the Earth Stopped,You Will Destroy This Planet Scene,tt1290471 KMr9bWPy7u8,-1.0,4,10,2017,The Day the Earth Stopped,Visions of Home Scene,tt1290471 ZdmU6mM0Gog,-1.0,7,10,2017,The Day the Earth Stopped,Family Revival Scene,tt1290471 y3L-a3R9OQE,-1.0,5,10,2017,The Day the Earth Stopped,She's the Only Hope We've Got Scene,tt1290471 LZD-86lIgYg,-1.0,1,10,2017,The Day the Earth Stopped,Sky's Special Abilities Scene,tt1290471 rnkIsbFHoB4,-1.0,2,10,2017,The Day the Earth Stopped,Losing Power Scene,tt1290471 xhgWGU6cQ00,-1.0,7,10,2017,Grown Ups 2,Lenny's Childhood Bully Scene,tt2191701 fq5JFon-LOs,-1.0,3,10,2017,Grown Ups 2,Creepy Warm Up Scene,tt2191701 os7KKfG3QE0,-1.0,10,10,2017,Grown Ups 2,Please Don't Hit Me! Scene,tt2191701 xkMijsfMZBU,-1.0,9,10,2017,Grown Ups 2,Party Time! Scene,tt2191701 1jK2Y8vAM1A,-1.0,5,10,2017,Grown Ups 2,Presidential Police Escort Scene,tt2191701 af1gSplQfPU,-1.0,8,10,2017,Grown Ups 2,Runaway Tire Scene,tt2191701 JU_Vqys3Kp4,-1.0,6,10,2017,Grown Ups 2,Sexy Dance Recital Scene,tt2191701 x2K8I28zejw,-1.0,2,10,2017,Grown Ups 2,Substitute Bus Driver Scene,tt2191701 JaMejPOFVCc,-1.0,4,10,2017,Grown Ups 2,K-mart Shopping Scene,tt2191701 KPOx5tioLeY,-1.0,1,10,2017,Grown Ups 2,Deer In the House Scene,tt2191701 JjfbxBMmXTI,-1.0,10,10,2017,Grown Ups,The Basketball Game Begins Scene,tt1375670 PhRyzmcEOVA,-1.0,9,10,2017,Grown Ups,You Fell Asleep on the Couch Again Scene,tt1375670 GHZSYBkKec4,-1.0,8,10,2017,Grown Ups,Canadian Hunk and the Water Park Scene,tt1375670 gNbqn47rt3M,-1.0,7,10,2017,Grown Ups,Putting Her Advantages to Work Scene,tt1375670 SOwJJPZKIys,-1.0,5,10,2017,Grown Ups,Arrow Roulette Scene,tt1375670 wZl5uWOpepU,-1.0,6,10,2017,Grown Ups,And There's the Snap Scene,tt1375670 wKiW5OYjels,-1.0,4,10,2017,Grown Ups,I Hope That Car Never Gets Fixed Scene,tt1375670 rezZBgaJGoM,-1.0,3,10,2017,Grown Ups,Rope Fail Scene,tt1375670 --QCZKgJt6o,-1.0,2,10,2017,Grown Ups,Ave Maria and Mommy's Milk Scene,tt1375670 hQmDmh3qA6s,-1.0,1,10,2017,Grown Ups,His Time of the Month Scene,tt1375670 QggV4W5BTkM,-1.0,6,10,2017,Hercules Reborn,This Is Definitely Bad Scene,tt3499424 uTIfsQ15LPM,-1.0,1,10,2017,Hercules Reborn,Live by My Rule or Die Scene,tt3499424 S0wF9tshsyk,-1.0,4,10,2017,Hercules Reborn,We Will Not Tolerate Traitors Scene,tt3499424 I8_tVvzJ1xg,-1.0,3,10,2017,Hercules Reborn,I Am Hercules Scene,tt3499424 qtRfpAJHi3U,-1.0,5,10,2017,Hercules Reborn,It's an Ambush! Scene,tt3499424 e9nVeZ8UE5M,-1.0,7,10,2017,Hercules Reborn,Spit Out the Demons! Scene,tt3499424 GY0btkKshOo,-1.0,8,10,2017,Hercules Reborn,Arius vs. Nikos Scene,tt3499424 GJVYWd_3tzU,-1.0,10,10,2017,Hercules Reborn,The Game is Over Scene,tt3499424 oq0Aj9JsmMQ,-1.0,9,10,2017,Hercules Reborn,I Am No God Scene,tt3499424 07I2_etOYhM,-1.0,2,10,2017,Hercules Reborn,Your Hero Has Left You Scene,tt3499424 9Pn6NgaX8I0,2013.0,1,10,2017,Pacific Rim,Jaeger Pilot Suit Up Scene,tt1663662 yzwheD19-PQ,2013.0,8,10,2017,Pacific Rim,A Baby Kaiju Scene,tt1663662 R5a3sZiNuu4,2013.0,10,10,2017,Pacific Rim,The Sacrifice of Striker Eureka Scene,tt1663662 BiuCpXg_jgU,2013.0,7,10,2017,Pacific Rim,Sword Activate Scene,tt1663662 -7Sow81yi24,2013.0,9,10,2017,Pacific Rim,We Are Canceling the Apocalypse Scene,tt1663662 AYQjmj7cSM0,2013.0,6,10,2017,Pacific Rim,Gipsy Danger vs. Otachi Scene,tt1663662 oDcNKpBgd_0,2013.0,5,10,2017,Pacific Rim,Rumble on the Docks Scene,tt1663662 Uy-L94Tio9w,2013.0,4,10,2017,Pacific Rim,Cherno Alpha & Crimson Typhoon Scene,tt1663662 s4esaE679Wg,2013.0,2,10,2017,Pacific Rim,Gipsy Danger vs. Knifehead Scene,tt1663662 E7i4pNsqnls,2013.0,3,10,2017,Pacific Rim,A Worthy Opponent Scene,tt1663662 JhMWopjJiI8,-1.0,2,10,2017,The Conjuring,Hide and Clap Scene,tt7069210 wHqQzF4JXdE,-1.0,1,10,2017,The Conjuring,Annabelle the Doll Scene,tt7069210 16op1FeUX1A,-1.0,3,10,2017,The Conjuring,Look What She Made Me Do Scene,tt7069210 rRuulhJ2ARQ,-1.0,4,10,2017,The Conjuring,She Made Me Do It Scene,tt7069210 nLMkSN2F2xs,-1.0,6,10,2017,The Conjuring,Annabelle Awakens Scene,tt7069210 zS41k2xmQUI,-1.0,5,10,2017,The Conjuring,She's Feeding Off Her Scene,tt7069210 OcS7veELZ0c,-1.0,8,10,2017,The Conjuring,Fighting for Her Soul Scene,tt7069210 lPYFkRoFM-A,-1.0,7,10,2017,The Conjuring,The Witch Will Kill Her Scene,tt7069210 Yke_Lkmm5Bc,-1.0,9,10,2017,The Conjuring,You're All Gonna Die Scene,tt7069210 V4rzoRzqmyc,-1.0,10,10,2017,The Conjuring,I Condemn You Back to Hell Scene,tt7069210 kzxSZ5zCfXs,2015.0,6,10,2017,Heist,SWAT Assaults the Bus Scene,tt3276924 kbb1MUQmusU,2015.0,10,10,2017,Heist,Daddy's Comin' Home Scene,tt3276924 hjyWtmbAyco,2015.0,9,10,2017,Heist,A Magic Trick Scene,tt3276924 FxcIBbXalVg,2015.0,8,10,2017,Heist,Making a Deal Scene,tt3276924 DJZqFXSHyvc,2015.0,7,10,2017,Heist,An Execution on Live TV Scene,tt3276924 d_hNjBBdcyU,2015.0,5,10,2017,Heist,Pope's Errand Boy Scene,tt3276924 5Y7gOcsg0Xk,2015.0,4,10,2017,Heist,Gassing Up Scene,tt3276924 CScFydObPJA,2015.0,3,10,2017,Heist,"Cops, This is Robbers Scene",tt3276924 zSw2bGgrIQQ,2015.0,2,10,2017,Heist,Road Block Cleared Scene,tt3276924 tpsGUGc8Ri8,2015.0,1,10,2017,Heist,Plan B is Run for Your Life Scene,tt3276924 LwSsrFFa2Wc,-1.0,8,10,2017,Larry Gaye,Urban Landing Scene,tt2547172 QN8ln3Hx1mc,-1.0,9,10,2017,Larry Gaye,I Don't Wanna Live Scene,tt2547172 Bwpvq4JhqY4,-1.0,10,10,2017,Larry Gaye,Semi-Happy Ending Scene,tt2547172 D-gTnaF9LVA,-1.0,7,10,2017,Larry Gaye,Powering Down Scene,tt2547172 0o9Fm3hnpYQ,-1.0,5,10,2017,Larry Gaye,A Disturbing Meet Cute Scene,tt2547172 AgNH9Ktkrqk,-1.0,6,10,2017,Larry Gaye,Superior Sally Scene,tt2547172 qYCEXS6Ws_c,-1.0,2,10,2017,Larry Gaye,Let's Fly This Bitch Scene,tt2547172 O4TmwflckcU,-1.0,3,10,2017,Larry Gaye,I'm Gonna Pass Scene,tt2547172 jvBp6TqoHWw,-1.0,1,10,2017,Larry Gaye,The Unauthorized Autobiography Scene,tt2547172 _LzgxVd1wF8,-1.0,4,10,2017,Larry Gaye,Daddy Leaves Scene,tt2547172 PM8-Hmfy6OU,-1.0,10,10,2017,Android Cop,"Grand Entrance, Dramatic End Scene",tt3393070 5UnmqCr95HI,-1.0,8,10,2017,Android Cop,Bring Me Their Guts Scene,tt3393070 Hl1iN3hP-60,-1.0,9,10,2017,Android Cop,I'm Not an Android! Scene,tt3393070 XndQbcPIsI8,-1.0,7,10,2017,Android Cop,Hell is a Long Way From Home Scene,tt3393070 muMv1K99l64,-1.0,3,10,2017,Android Cop,"Dead or Alive, You're Under Arrest Scene",tt3393070 6xYx1k3O8X8,-1.0,4,10,2017,Android Cop,"Good Cop, Mediocre Cop Scene",tt3393070 qIAWFde0FO0,-1.0,2,10,2017,Android Cop,The Raid To Capture Dexts Scene,tt3393070 AoWXSOx502Q,-1.0,1,10,2017,Android Cop,A Bullet Riddled Mistake Scene,tt3393070 lJjxm4xTVKk,-1.0,5,10,2017,Android Cop,To Keep Friends From Exploding Scene,tt3393070 XLqh2vpx6BI,-1.0,6,10,2017,Android Cop,How to Negotiate in LA Scene,tt3393070 lYCq6x3AHYw,-1.0,10,10,2017,The Secret Life of Pets,The Owners Return Scene,tt2709768 JvclIUy-JlA,-1.0,9,10,2017,The Secret Life of Pets,You're In Love Scene,tt2709768 HPGSDBjsSWI,-1.0,8,10,2017,The Secret Life of Pets,Get the Keys! Scene,tt2709768 rLZ5aVNxV84,-1.0,6,10,2017,The Secret Life of Pets,You Know Tiny Dog? Scene,tt2709768 v5nIRiA5W-E,-1.0,7,10,2017,The Secret Life of Pets,Gidget Saves Max Scene,tt2709768 Gl5GVViqvjo,-1.0,5,10,2017,The Secret Life of Pets,Sausage Factory Scene,tt2709768 GAozArqKtGQ,-1.0,4,10,2017,The Secret Life of Pets,Secret Route Scene,tt2709768 RbsNzYdNM5I,-1.0,3,10,2017,The Secret Life of Pets,Busting You Out! Scene,tt2709768 HR2-PHuh3W8,-1.0,2,10,2017,The Secret Life of Pets,Max Meets Duke Scene,tt2709768 6_u456zQtkY,-1.0,1,10,2017,The Secret Life of Pets,The Owners Leave Scene,tt2709768 j8cGENcePl0,-1.0,1,10,2017,Open Season,Mini-Mart Mayhem Scene,tt0400717 -u1uwI5qJ74,-1.0,2,10,2017,Open Season,Staging an Attack Scene,tt0400717 a2qE4hG9XCk,-1.0,6,10,2017,Open Season,Fishin' & Huntin' Scene,tt0400717 QvfcWxGZv9M,-1.0,4,10,2017,Open Season,Forest 101 Scene,tt0400717 gJvoeKHjuvE,-1.0,3,10,2017,Open Season,McSquizzy's Army Scene,tt0400717 zgrvS0PJDrA,-1.0,5,10,2017,Open Season,Boog's Poop Scene,tt0400717 V-9fQTUix6I,-1.0,8,10,2017,Open Season,Hunting the Hunters Scene,tt0400717 uCsRqsNpF60,-1.0,7,10,2017,Open Season,Goldilocks the Bear Scene,tt0400717 oGV14YsOvWo,-1.0,9,10,2017,Open Season,The Mighty Grizzly Scene,tt0400717 agrpQQWiX48,-1.0,10,10,2017,Open Season,You Are Home Scene,tt0400717 5m9Bf48pWc0,-1.0,1,10,2017,Surf's Up,Surfing Documentary Scene,tt0423294 BWT3i-fgw0s,-1.0,2,10,2017,Surf's Up,Cody vs. Tank Surf Off Scene,tt0423294 G2ngOQwMMek,-1.0,3,10,2017,Surf's Up,A Surefire Cure Scene,tt0423294 e96_1NxL9no,-1.0,7,10,2017,Surf's Up,Let's Surf! Scene,tt0423294 YHirkSmJcEU,-1.0,6,10,2017,Surf's Up,Lava Boarding Scene,tt0423294 HGrPKwsAvqE,-1.0,5,10,2017,Surf's Up,Chicken Joe's Hot Tub Scene,tt0423294 VD8UttNfU60,-1.0,4,10,2017,Surf's Up,Building Cody's Board Scene,tt0423294 uhBhYnRrOg4,-1.0,8,10,2017,Surf's Up,The Competition Begins Scene,tt0423294 8fzGR29bKjY,-1.0,9,10,2017,Surf's Up,The Final Wave Scene,tt0423294 kn5Sc8o9YTM,-1.0,10,10,2017,Surf's Up,Big Z Returns Scene,tt0423294 1mLEN1SN9Eo,-1.0,9,10,2017,Balls Out,Thad Tamer Scene,tt0787470 bSm3d9ftiJA,-1.0,8,10,2017,Balls Out,Speech Time Scene,tt0787470 gFocZQa78ho,-1.0,10,10,2017,Balls Out,What Type of Devilry Is This? Scene,tt0787470 kr2k20G3hCc,-1.0,6,10,2017,Balls Out,"Minions, Attack! Scene",tt0787470 OXUmjMKCR_c,-1.0,7,10,2017,Balls Out,You've Been Ghosted Scene,tt0787470 aKtrjeCFCAg,-1.0,4,10,2017,Balls Out,We Train! Scene,tt0787470 95fAKnIgqmM,-1.0,2,10,2017,Balls Out,Vicky's Proposal Scene,tt0787470 hkEXnpQ_c5I,-1.0,1,10,2017,Balls Out,Paralyzed Penis Scene,tt0787470 bqwH3cQUlNA,-1.0,5,10,2017,Balls Out,Too Afraid To Triple Z Scene,tt0787470 bDcFILIfHU4,-1.0,3,10,2017,Balls Out,Getting the Team Back Together Scene,tt0787470 sX8SScsA8TM,-1.0,10,11,2017,A Royal Affair,Frederik Stays Here Scene,tt1276419 bsoa3DBmelk,-1.0,6,11,2017,A Royal Affair,The Kiss Scene,tt1276419 twdd-yhC2vw,-1.0,8,11,2017,A Royal Affair,A Daughter Scene,tt1276419 mkIwuziqr0k,-1.0,9,11,2017,A Royal Affair,The Real Father Scene,tt1276419 19h6CYFMUBU,-1.0,2,11,2017,A Royal Affair,Meeting the King Scene,tt1276419 20Q3Qa51MUs,-1.0,5,11,2017,A Royal Affair,Dancing with the Queen Scene,tt1276419 2BbpnPOIKIM,-1.0,11,11,2017,A Royal Affair,The Execution Scene,tt1276419 tBVoGbg2ocA,-1.0,7,11,2017,A Royal Affair,Dissolving the Council Scene,tt1276419 vtu0TbT35UY,-1.0,3,11,2017,A Royal Affair,Inoculating the Prince Scene,tt1276419 aWUJI1UPuHs,-1.0,4,11,2017,A Royal Affair,Freedom Scene,tt1276419 1EJYZ1IlTF8,-1.0,1,11,2017,A Royal Affair,Her Wretched Fate Scene,tt1276419 PX3By_Y0jTA,-1.0,7,10,2017,Warcraft,Alliance vs. The Horde Scene,tt0803096 Ax83IEcbUwU,-1.0,10,10,2017,Warcraft,Lothar vs. Blackhand Scene,tt0803096 S0ymo6QHMc0,-1.0,9,10,2017,Warcraft,The Honor of Killing a King Scene,tt0803096 4sOjksh8vX8,-1.0,8,10,2017,Warcraft,"Stopping Medivh, The Last Guardian Scene",tt0803096 nD6DMtXc3mY,-1.0,6,10,2017,Warcraft,Durotan Challenges Gul'dan Scene,tt0803096 lfObLA5H4Rg,-1.0,5,10,2017,Warcraft,Casualties of War Scene,tt0803096 yuQW4F1siis,-1.0,3,10,2017,Warcraft,War Solves Everything Scene,tt0803096 ECDKjStq8Eg,-1.0,4,10,2017,Warcraft,Lightning Barrier Battle Scene,tt0803096 xI4s1uyYIX4,-1.0,2,10,2017,Warcraft,Warriors and Worgs Scene,tt0803096 m0DbfOnOBQo,-1.0,1,10,2017,Warcraft,Orc Ambush Scene,tt0803096 KKsVK5R9q80,-1.0,2,10,2017,Green Lantern,The Oath Scene,tt1133985 vUrgn1Vm86I,-1.0,5,10,2017,Green Lantern,Sinestro vs. Hal Jordan Scene,tt1133985 Z0FKMJQR9RU,-1.0,1,10,2017,Green Lantern,It Chose You Scene,tt1133985 lP8EYYjPEmc,-1.0,7,10,2017,Green Lantern,What the Hell is With That Mask? Scene,tt1133985 EpCLoqVPwqw,-1.0,3,10,2017,Green Lantern,A Powerful Punch Scene,tt1133985 9KkV_swvE2Q,-1.0,4,10,2017,Green Lantern,Ring-Slinging 101 Scene,tt1133985 _I_F4a-oUyA,-1.0,6,10,2017,Green Lantern,Hot Wheel Helicopter Scene,tt1133985 h0qniQTX3r8,-1.0,8,10,2017,Green Lantern,The Power of Fear Scene,tt1133985 QnX-Xgbi37I,-1.0,10,10,2017,Green Lantern,The Faster You Burn Scene,tt1133985 nQeov6j0bsQ,-1.0,9,10,2017,Green Lantern,Parallax Attacks Scene,tt1133985 e3BZn-XJ4mU,-1.0,5,10,2017,Dragon Blade,Tiberius vs. Yin Po Scene,tt3672840 mRwKWTGCd7Y,-1.0,4,10,2017,Dragon Blade,I Order You to Go Scene,tt3672840 nwt-V8xfwkQ,-1.0,3,10,2017,Dragon Blade,Arrows and Fire Scene,tt3672840 SwjKQrYpe-g,-1.0,1,10,2017,Dragon Blade,Huo An vs. Cold Moon Scene,tt3672840 p9XIPtizl3s,-1.0,2,10,2017,Dragon Blade,Lucius vs. Huo An Scene,tt3672840 Pve6cemkiDg,-1.0,8,10,2017,Dragon Blade,A Battle of Nations Scene,tt3672840 KaLpXs1SDWo,-1.0,7,10,2017,Dragon Blade,A True Roman Never Surrenders Scene,tt3672840 1xXjjahIwr8,-1.0,6,10,2017,Dragon Blade,We Shall Meet Again Scene,tt3672840 1mqubJrf6KA,-1.0,9,10,2017,Dragon Blade,Huo An vs. Tiberius Scene,tt3672840 taL06OVt4kQ,-1.0,10,10,2017,Dragon Blade,A Real Hero Scene,tt3672840 Ga9WsLD5LV4,-1.0,1,10,2017,Battle of Los Angeles,Using Our Weapons Against Us Scene,tt1758570 pmuDcYB17E0,-1.0,2,10,2017,Battle of Los Angeles,Move That Bird Scene,tt1758570 jTnDuMlebNU,-1.0,9,10,2017,Battle of Los Angeles,Alien Annihilation Scene,tt1758570 PENNRVb6OBM,-1.0,4,10,2017,Battle of Los Angeles,They Don't Come in Peace,tt1758570 TSxB1wKzjhE,-1.0,3,10,2017,Battle of Los Angeles,That's How We Do Scene,tt1758570 B9pucpn_NOE,-1.0,10,10,2017,Battle of Los Angeles,Feel the Ship Scene,tt1758570 KbOr1buhh-Y,-1.0,7,10,2017,Battle of Los Angeles,Point and Shoot Scene,tt1758570 aYTP2-S8fxk,-1.0,8,10,2017,Battle of Los Angeles,Telekinetic Navigation Scene,tt1758570 gOw5myC1PBI,-1.0,5,10,2017,Battle of Los Angeles,Screech! Scene,tt1758570 iypUHnZ-9TM,-1.0,6,10,2017,Battle of Los Angeles,Fighting the Facebot Scene,tt1758570 ZuCKjnYIRYQ,-1.0,10,10,2017,A Hijacking,Just Leave Scene,tt2216240 CzugC2PxerE,-1.0,9,10,2017,A Hijacking,We Have a Deal Scene,tt2216240 L-5U2tIfxAg,-1.0,7,10,2017,A Hijacking,Call Your Wife Scene,tt2216240 jvh9Kw3NbMs,-1.0,8,10,2017,A Hijacking,Don't Threaten My Men Scene,tt2216240 m83iX-zbiGU,-1.0,3,10,2017,A Hijacking,The First Negotiation Scene,tt2216240 iI5M8zwvki0,-1.0,6,10,2017,A Hijacking,Let's Fish Scene,tt2216240 0y-Y83y4kKo,-1.0,5,10,2017,A Hijacking,He Doesn't Care About You Scene,tt2216240 GrWc2UKDo-s,-1.0,1,10,2017,A Hijacking,I Believe They Are Alive Scene,tt2216240 YOlt7yp_QIs,-1.0,2,10,2017,A Hijacking,Dealing With Pirates Scene,tt2216240 ZhAeutRIUzI,-1.0,4,10,2017,A Hijacking,I Have Very Good News Scene,tt2216240 tJPokP3FVl8,-1.0,6,10,2017,The Hobbit: The Battle of the Five Armies,Here Ends Your Bloodline Scene,tt2310332 CBbH4CVp1S0,-1.0,4,10,2017,The Hobbit: The Battle of the Five Armies,Slaughter Them All Scene,tt2310332 v5llnbqhLZM,-1.0,1,10,2017,The Hobbit: The Battle of the Five Armies,The Fall of Smaug Scene,tt2310332 tb9kVTItw3I,-1.0,3,10,2017,The Hobbit: The Battle of the Five Armies,Bard and the Beast Scene,tt2310332 qPkKjKAyJ8I,-1.0,2,10,2017,The Hobbit: The Battle of the Five Armies,The Darkness Has Returned Scene,tt2310332 WYi4Bp1hmC0,-1.0,5,10,2017,The Hobbit: The Battle of the Five Armies,To Battle! Scene,tt2310332 tnwarNcu3fc,-1.0,7,10,2017,The Hobbit: The Battle of the Five Armies,Kili's Sacrifice Scene,tt2310332 3kNqc5Hrh0M,-1.0,8,10,2017,The Hobbit: The Battle of the Five Armies,Legolas's Rampage Scene,tt2310332 uHuDwL4XEUE,-1.0,10,10,2017,The Hobbit: The Battle of the Five Armies,A True Friend Scene,tt2310332 tuXSqMrfVW8,-1.0,9,10,2017,The Hobbit: The Battle of the Five Armies,Azog's Demise Scene,tt2310332 UC6sKTqfgg8,-1.0,2,10,2017,The Hobbit: The Desolation of Smaug,Captured by the Elves Scene,tt1170358 -QfKnft9uWY,-1.0,1,10,2017,The Hobbit: The Desolation of Smaug,The Stinger Scene,tt1170358 AutuCkT54KI,-1.0,3,10,2017,The Hobbit: The Desolation of Smaug,Hold Your Breath Scene,tt1170358 khK3EggW2DY,-1.0,4,10,2017,The Hobbit: The Desolation of Smaug,Barreling Down the River Scene,tt1170358 SeYgMYijdz4,-1.0,5,10,2017,The Hobbit: The Desolation of Smaug,Fighting the Darkness Scene,tt1170358 n59mG9_X35Q,-1.0,6,10,2017,The Hobbit: The Desolation of Smaug,How Do You Choose to Die? Scene,tt1170358 KLkD0H3K5Zk,-1.0,8,10,2017,The Hobbit: The Desolation of Smaug,Legolas vs. the Orcs Scene,tt1170358 Rf82VHBcoYY,-1.0,7,10,2017,The Hobbit: The Desolation of Smaug,Legolas and Tauriel Scene,tt1170358 aBxlJkcHDSM,-1.0,10,10,2017,The Hobbit: The Desolation of Smaug,"I Am Fire, I Am Death Scene",tt1170358 v9pZdy4lZ7U,-1.0,9,10,2017,The Hobbit: The Desolation of Smaug,Lighting the Furnace Scene,tt1170358 pxQNKJWZ-t0,-1.0,7,10,2017,The Hobbit: An Unexpected Journey,Hunted by Orcs Scene,tt0903624 YV-vi9NuyTw,-1.0,6,10,2017,The Hobbit: An Unexpected Journey,The Necromancer Has Come Scene,tt0903624 RcC6K2k6cwk,-1.0,9,10,2017,The Hobbit: An Unexpected Journey,The Goblin Hoard Scene,tt0903624 IQWtTLEslg8,-1.0,10,10,2017,The Hobbit: An Unexpected Journey,Orcs and Eagles Scene,tt0903624 TeSzBaedb2Y,-1.0,5,10,2017,The Hobbit: An Unexpected Journey,Battling the Trolls Scene,tt0903624 gW7ozVNSL8k,-1.0,8,10,2017,The Hobbit: An Unexpected Journey,Riddles in the Dark Scene,tt0903624 qHisKG66fLI,-1.0,4,10,2017,The Hobbit: An Unexpected Journey,One I Could Call King Scene,tt0903624 s8cVCsIcGAE,-1.0,1,10,2017,The Hobbit: An Unexpected Journey,The Legend of Lonely Mountain Scene,tt0903624 UFFWH8N9SLk,-1.0,3,10,2017,The Hobbit: An Unexpected Journey,The Misty Mountains Cold Scene,tt0903624 e0HzBST_794,-1.0,2,10,2017,The Hobbit: An Unexpected Journey,What Bilbo Baggins Hates Scene,tt0903624 KQlR_8YkRKg,2011.0,10,11,2017,Fake,We Did It Scene,tt1507566 ZYaLloEakCg,2011.0,11,11,2017,Fake,Where Is It? Scene,tt1507566 5hocAgn07-U,2011.0,9,11,2017,Fake,You Can't Scene,tt1507566 2QKuy-mlQfI,2011.0,6,11,2017,Fake,Mr. Seamus White Scene,tt1507566 wJzWgX63LRs,2011.0,4,11,2017,Fake,FBI Agent Kozinski Scene,tt1507566 Aaj_WEYZJN0,2011.0,7,11,2017,Fake,Their Plan Scene,tt1507566 XuLHSjIXpJk,2011.0,5,11,2017,Fake,These are s Scene,tt1507566 pa1ZFxgQmUY,2011.0,8,11,2017,Fake,You Work for Me Now Scene,tt1507566 DNpBEvHATIs,2011.0,3,11,2017,Fake,Art as Forgery Scene,tt1507566 XhwgtlCns34,2011.0,1,11,2017,Fake,That Painting Scene,tt1507566 BFaqEfhGj4Y,2011.0,2,11,2017,Fake,We Just Don't Like You Scene,tt1507566 0NUDP-gxGyM,2009.0,6,10,2017,Sherlock Holmes,Let it Breathe Scene,tt0988045 ZXyLYqWUffA,2009.0,10,10,2017,Sherlock Holmes,Far Too Fond of Himself Scene,tt0988045 iA_KZwlnrcI,2009.0,9,10,2017,Sherlock Holmes,Never Any Magic Scene,tt0988045 eBVqcDJbl5A,2009.0,7,10,2017,Sherlock Holmes,Saving Irene Scene,tt0988045 1DTrvZ3wxy0,2009.0,8,10,2017,Sherlock Holmes,Race Against the Clock Scene,tt0988045 N_c0y8BcKBU,2009.0,5,10,2017,Sherlock Holmes,Meat or Potatoes? Scene,tt0988045 wdVtcHMYAM4,2009.0,4,10,2017,Sherlock Holmes,Master of Disguise Scene,tt0988045 l6TGERgrXmA,2009.0,2,10,2017,Sherlock Holmes,What Can You Tell About Me? Scene,tt0988045 u-z5139CW1I,2009.0,3,10,2017,Sherlock Holmes,Boxing Match Scene,tt0988045 dVzFy-4c-AY,2009.0,1,10,2017,Sherlock Holmes,The Arrest of Lord Blackwood Scene,tt0988045 DlJKjlgWFu0,2008.0,1,10,2017,Death Racers,You Have Two Weeks Scene,tt1261046 NS8z60XHJdk,2008.0,9,10,2017,Death Racers,Do It for the Juggalos Scene,tt1261046 YC0tFqipqpI,2008.0,8,10,2017,Death Racers,Attacking the Reaper Scene,tt1261046 YM4Of8J6gLE,2008.0,6,10,2017,Death Racers,Murdering Metal Man Scene,tt1261046 WZrXR5HAEVw,2008.0,5,10,2017,Death Racers,Surprise Attack Scene,tt1261046 RjyCXfloRJk,2008.0,2,10,2017,Death Racers,Don't Lose Your Head Scene,tt1261046 rl6soHoCV8k,2008.0,3,10,2017,Death Racers,Start Your Engines! Scene,tt1261046 -08xWZTUbNI,2008.0,10,10,2017,Death Racers,Destroying the World Scene,tt1261046 o0HHjpIa8fw,2008.0,7,10,2017,Death Racers,The Worst Day of My Life Scene,tt1261046 K3VNZOc_Wo4,2008.0,4,10,2017,Death Racers,Natural Born Artiste Scene,tt1261046 GjhHy-kMAw8,2012.0,11,11,2017,Stolen,Sinking Scene,tt1656186 Rsd5rA1MJSw,2012.0,4,11,2017,Stolen,Kidnapped Daughter Scene,tt1656186 Y9H1jFdPzD8,2012.0,8,11,2017,Stolen,Death and Brake Lights Scene,tt1656186 gLzsj4U96oM,2012.0,10,11,2017,Stolen,Car Crash Scene,tt1656186 gv0zKrCQscA,2012.0,9,11,2017,Stolen,The Wrong Cab Scene,tt1656186 JNkxfdR9dXk,2012.0,6,11,2017,Stolen,A Criminal Mastermind Scene,tt1656186 Y3NbUilKutU,2012.0,7,11,2017,Stolen,Psycho Cabbie Scene,tt1656186 SplRDi4FOfs,2012.0,5,11,2017,Stolen,"Miss a Call, She Dies Scene",tt1656186 QS-7heS_70c,2012.0,3,11,2017,Stolen,Getaway Gone Bad Scene,tt1656186 aBxruaQibgE,2012.0,1,11,2017,Stolen,Bank Heist Scene,tt1656186 oYuI54XUXkg,2012.0,2,11,2017,Stolen,No Homicide Scene,tt1656186 GKAPU5e7miY,2013.0,11,11,2017,Run,Mike Confronts Luke Scene,tt2097307 kbS0Wkxr49I,2013.0,10,11,2017,Run,Rescuing Emily Scene,tt2097307 glrsnwHe_ng,2013.0,9,11,2017,Run,Kidnapped Scene,tt2097307 9glAGvMjZiw,2013.0,8,11,2017,Run,School Chase Scene,tt2097307 1X2YeXs8FE4,2013.0,7,11,2017,Run,Home Invasion Scene,tt2097307 Tctmuish8xI,2013.0,5,11,2017,Run,First Date Scene,tt2097307 MhCI7MtnO3w,2013.0,4,11,2017,Run,The Fire Scene,tt2097307 2oLedbPVWzY,2013.0,6,11,2017,Run,You're Dangerous Scene,tt2097307 tfiIjZGirC8,2013.0,3,11,2017,Run,Sightseeing Scene,tt2097307 Q93k0-I6RC4,2013.0,2,11,2017,Run,Joining the Club Scene,tt2097307 _ODUt36beOo,2013.0,1,11,2017,Run,Evading the Police Scene,tt2097307 zYZIHnjnGSQ,2013.0,11,11,2017,1,Control of the Danger Scene,tt1951265 YKYtIhbcyuo,2013.0,10,11,2017,1,Senna Scene,tt1951265 bCZVLjurkyY,2013.0,8,11,2017,1,Hunt vs. Lauda Scene,tt1951265 phwcul7F-Ro,2013.0,9,11,2017,1,Lauda's Accident Scene,tt1951265 O_rneC4S2G0,2013.0,7,11,2017,1,Cervet's Crash Scene,tt1951265 -ryd97UQcrI,2013.0,6,11,2017,1,A Horrible Accident Scene,tt1951265 IyFhDTUhX80,2013.0,4,11,2017,1,"Rivals, Wives and Girlfriends Scene",tt1951265 U3ua5aIvPNg,2013.0,5,11,2017,1,The Death of Jim Clark Scene,tt1951265 kUMB4-8MTio,2013.0,3,11,2017,1,Monaco Grand Prix Scene,tt1951265 zdHVp6JC0mQ,2013.0,1,11,2017,1,Martin's Accident Scene,tt1951265 wQFjbrojx4I,2013.0,2,11,2017,1,Fangio Scene,tt1951265 uuWIaDATbnE,-1.0,2,10,2017,Cloudy with a Chance of Meatballs,"Sunshine, Lollipops and Rainbows Scene",tt0844471 iGVsptoMsKE,-1.0,1,10,2017,Cloudy with a Chance of Meatballs,It's Raining Burgers Scene,tt0844471 xAkmG6uqBd4,-1.0,3,10,2017,Cloudy with a Chance of Meatballs,Ice Cream Snow Day Scene,tt0844471 pHrp2OM19t4,-1.0,4,10,2017,Cloudy with a Chance of Meatballs,Spaghetti Tornado Scene,tt0844471 8xZ0jOhAHMk,-1.0,5,10,2017,Cloudy with a Chance of Meatballs,Food Hurricane Scene,tt0844471 HlyzLOPYuKc,-1.0,7,10,2017,Cloudy with a Chance of Meatballs,Chicken Brent Scene,tt0844471 FKW1h53hSxs,-1.0,6,10,2017,Cloudy with a Chance of Meatballs,Food-alanche Scene,tt0844471 z-fCbA2aAyg,-1.0,8,10,2017,Cloudy with a Chance of Meatballs,Vicious Gummi Bears Scene,tt0844471 MwcXLL103vE,-1.0,9,10,2017,Cloudy with a Chance of Meatballs,Kitchen's Closed! Scene,tt0844471 1Qd2hicvxBc,-1.0,10,10,2017,Cloudy with a Chance of Meatballs,I Love My Son Scene,tt0844471 HyY-bOuj9SY,2012.0,11,11,2017,So Undercover,The Contingency Scene,tt1766094 OBErTpjVCQQ,2012.0,9,11,2017,So Undercover,Uncovering the Truth Scene,tt1766094 qV0h46fpZeA,2012.0,10,11,2017,So Undercover,A Sister in Need Scene,tt1766094 5Qfba1tSw4k,2012.0,8,11,2017,So Undercover,Molly's Wild Night Scene,tt1766094 zYeRo6OtrYU,2012.0,7,11,2017,So Undercover,Walking Home,tt1766094 tDzuDRGP0z8,2012.0,5,11,2017,So Undercover,Wake Up! Scene,tt1766094 0E1TIcc29vw,2012.0,6,11,2017,So Undercover,Your Balls Are Amazing Scene,tt1766094 PkqrMMqSNaA,2012.0,3,11,2017,So Undercover,The FBI Arranged It Scene,tt1766094 v7r2OuigZoQ,2012.0,4,11,2017,So Undercover,Molly Meets Nicholas Scene,tt1766094 itIt0nSWDGI,2012.0,2,11,2017,So Undercover,Welcome to KKZ Scene,tt1766094 4cH4xyezQv8,2012.0,1,11,2017,So Undercover,Menage a Gross Scene,tt1766094 i9OLZ8rhtlk,2013.0,10,11,2017,Straight A's,In a Coma Scene,tt2024506 zEGnL7wKzXE,2013.0,11,11,2017,Straight A's,Reconnecting Scene,tt2024506 60QyvomMug0,2013.0,9,11,2017,Straight A's,Lunch with the Family Scene,tt2024506 GZACBCZQFt8,2013.0,8,11,2017,Straight A's,The Aztecs Scene,tt2024506 ZLIY6uk1pxI,2013.0,7,11,2017,Straight A's,Everyone Out Scene,tt2024506 AcOMZUiVuJM,2013.0,6,11,2017,Straight A's,Smoking a Joint Scene,tt2024506 qK-5zQpICPw,2013.0,5,11,2017,Straight A's,Public Speaking Scene,tt2024506 MFbZe0ZJn04,2013.0,4,11,2017,Straight A's,Visiting Charles at School Scene,tt2024506 P785O3-r7A8,2013.0,3,11,2017,Straight A's,Missing Dinner Scene,tt2024506 sOmJgmCvISY,2013.0,1,11,2017,Straight A's,Meeting Uncle Scott Scene,tt2024506 5N8eh_84W4w,2013.0,2,11,2017,Straight A's,Why Are You Here? Scene,tt2024506 rCLzT9M7rCE,2012.0,9,10,2017,Upside Down,Hold On!,tt1374992 WefEB2u3fwI,2012.0,10,10,2017,Upside Down,Together Forever Scene,tt1374992 MsHusoTYzTA,2012.0,8,10,2017,Upside Down,Reunited Scene,tt1374992 aBFi3S-t9R8,2012.0,2,10,2017,Upside Down,Defying Gravity Scene,tt1374992 fS4vBoC4Di0,2012.0,7,10,2017,Upside Down,You Remember? Scene,tt1374992 nXqveIQdCvE,2012.0,6,10,2017,Upside Down,Shoes on Fire Scene,tt1374992 kgYskjeMVOA,2012.0,5,10,2017,Upside Down,What's Your Plan? Scene,tt1374992 mj04qm_DEp8,2012.0,3,10,2017,Upside Down,Discovered Scene,tt1374992 kv9QW8UYCDE,2012.0,4,10,2017,Upside Down,Giving My Life Hope Scene,tt1374992 xfdye3eXF8s,2012.0,1,10,2017,Upside Down,Flying Pancakes Scene,tt1374992 FGL4-sXko9w,-1.0,9,10,2016,Man of Steel,Either You Die or I Do Scene,tt0770828 5h9E5SmLCVM,-1.0,1,10,2016,Man of Steel,Jor-El Steals the Codex Scene,tt0770828 kjtPUnPa0LQ,-1.0,8,10,2016,Man of Steel,A Good Death Is Its Own Reward Scene,tt0770828 lpod4qQzO7Q,-1.0,10,10,2016,Man of Steel,Superman Kills Zod Scene,tt0770828 A6PpUgfZcRU,-1.0,7,10,2016,Man of Steel,You Will Never Win Scene,tt0770828 sQA199D8U2g,-1.0,4,10,2016,Man of Steel,Superman's First Flight Scene,tt0770828 BIdtUDoR5A0,-1.0,6,10,2016,Man of Steel,Clash of the Kryptonians Scene,tt0770828 U2SdWVntd-o,-1.0,2,10,2016,Man of Steel,Beyond Your Reach Scene,tt0770828 yodVQ5QAc88,-1.0,5,10,2016,Man of Steel,Jonathan's Sacrifice Scene,tt0770828 S9U3ajjpH5A,-1.0,3,10,2016,Man of Steel,It's Not Worth It Scene,tt0770828 fpK36FZmTFY,-1.0,10,10,2016,Willy Wonka & the Chocolate Factory,You Lose! Good Day Sir! Scene,tt0067992 Tkjw0XB9Xuc,-1.0,2,10,2016,Wrath of the Titans,Chimera Chaos Scene,tt1646987 BKgd8Q3X0AA,-1.0,1,10,2016,Wrath of the Titans,It Has Begun Scene,tt1646987 -IV-ZZwXUkw,-1.0,3,10,2016,Wrath of the Titans,Cyclops Attack Scene,tt1646987 CsukLjjPv-U,-1.0,4,10,2016,Wrath of the Titans,One Last Godly Thing Scene,tt1646987 EQqdhMcUSAw,-1.0,7,10,2016,Wrath of the Titans,The Battle Begins Scene,tt1646987 xihdBpPICZY,-1.0,10,10,2016,Wrath of the Titans,The Battle With Kronos Scene,tt1646987 CgmI90T4Efk,-1.0,8,10,2016,Wrath of the Titans,Perseus vs. Ares Scene,tt1646987 jNPBfvcLIMs,-1.0,6,10,2016,Wrath of the Titans,The Power Inside You Scene,tt1646987 Q6jbNsSNxf4,-1.0,5,10,2016,Wrath of the Titans,The Minotaur Scene,tt1646987 qmJiZfD6n9M,-1.0,9,10,2016,Wrath of the Titans,Perseus the Protector Scene,tt1646987 CjqKicoWqZ0,-1.0,8,10,2016,The Sacrament,Quick and Painless Scene,tt2383068 uYBCAaCGGcc,-1.0,9,10,2016,The Sacrament,You Should've Never Come Scene,tt2383068 AYxHnjsJOik,-1.0,10,10,2016,The Sacrament,Everybody Dies Scene,tt2383068 nIsM8bP-GHQ,-1.0,7,10,2016,The Sacrament,Don't Be Afraid Scene,tt2383068 byrLv_402BU,-1.0,5,10,2016,The Sacrament,You're in Paradise Scene,tt2383068 m5dfATd_ZY8,-1.0,2,10,2016,The Sacrament,Welcome to Eden Parish Scene,tt2383068 56F_nTxTQj8,-1.0,4,10,2016,The Sacrament,You're Dealing With Their Lives Scene,tt2383068 mGJ-2YWYrgE,-1.0,1,10,2016,The Sacrament,The Worst Idea Ever Scene,tt2383068 OGG3HuI6HcY,-1.0,6,10,2016,The Sacrament,Destroy Us From Within Scene,tt2383068 2pFBwbyyNac,-1.0,3,10,2016,The Sacrament,Your Government is Failing Scene,tt2383068 vf2EeAvsHAU,-1.0,1,10,2016,Universal Soldiers,For the Greater Good Scene,tt0105698 KJ7Fv2QvzpI,-1.0,2,10,2016,Universal Soldiers,Super Soldier Scene,tt0105698 h6jcrXOs088,-1.0,3,10,2016,Universal Soldiers,"One Core, One Family, One Fight Scene",tt0105698 0Cpa6Zn7ffA,-1.0,10,10,2016,Universal Soldiers,Riley vs. Robot Scene,tt0105698 66f94DU8ab4,-1.0,9,10,2016,Universal Soldiers,An Almost Happy Ending Scene,tt0105698 MOA_WeKu76o,-1.0,4,10,2016,Universal Soldiers,The Ultimate Fighting Machine Scene,tt0105698 3JF7tS3pxmc,-1.0,5,10,2016,Universal Soldiers,They're Herding Us Scene,tt0105698 m8A9XOElA2o,-1.0,8,10,2016,Universal Soldiers,This Has Been a Test Scene,tt0105698 yQYUTyaODfE,-1.0,7,10,2016,Universal Soldiers,Ash to Ashes Scene,tt0105698 xPYQOuxYES0,-1.0,6,10,2016,Universal Soldiers,Why Won't You Die? Scene,tt0105698 4EF1zYFHbus,-1.0,5,10,2016,Willy Wonka & the Chocolate Factory,Augustus and the Chocolate River Scene,tt0067992 Oa6OoTVXG6E,-1.0,3,10,2016,Willy Wonka & the Chocolate Factory,I've Got a Golden Ticket Scene,tt0067992 HcpDdWIaAuE,-1.0,1,10,2016,Willy Wonka & the Chocolate Factory,The Candy Man Scene,tt0067992 8Yqw_f26SvM,-1.0,7,10,2016,Willy Wonka & the Chocolate Factory,Violet Blows Up Like a Blueberry Scene,tt0067992 LIYNk4ARUR8,-1.0,4,10,2016,Willy Wonka & the Chocolate Factory,Pure Imagination Scene,tt0067992 5wAlQf4WdiE,-1.0,8,10,2016,Willy Wonka & the Chocolate Factory,I Want It Now Scene,tt0067992 pvS3j8VtanM,-1.0,9,10,2016,Willy Wonka & the Chocolate Factory,It's WonkaVision Scene,tt0067992 XB401RfGMlM,-1.0,6,10,2016,Willy Wonka & the Chocolate Factory,Tunnel of Terror Scene,tt0067992 1Fxq_n8e1qA,-1.0,2,10,2016,Willy Wonka & the Chocolate Factory,Charlie Finds the Golden Ticket Scene,tt0067992 p03u3v6GF-Y,1933.0,5,10,2016,King Kong,Jack Rescues Ann Scene,tt0024216 1vNv-pE8I_c,1933.0,3,10,2016,King Kong,Rampage Ravine Scene,tt0024216 0JVZ0bE8hpk,1933.0,2,10,2016,King Kong,Something in the Water Scene,tt0024216 DujyJ1EDft8,1933.0,8,10,2016,King Kong,The Clutches of the Beast Scene,tt0024216 8qkahQVFzMI,1933.0,9,10,2016,King Kong,Climbing the Empire State Building Scene,tt0024216 zct1tPK1Zk0,1933.0,7,10,2016,King Kong,Kong Escapes Scene,tt0024216 MMNICLfHE3M,1933.0,10,10,2016,King Kong,Beauty Killed the Beast Scene,tt0024216 m2cUbp6Vkfs,1933.0,6,10,2016,King Kong,Capturing Kong Scene,tt0024216 yvD3X3RcK3Y,1933.0,4,10,2016,King Kong,Kong vs. T-Rex Scene,tt0024216 XvZhDq1NRhk,-1.0,8,10,2016,The Last Days on Mars,I Can't Stop It Scene,tt1709143 rnaCi4rBfqw,1933.0,1,10,2016,King Kong,The Bride of Kong Scene,tt0024216 N1HQEIaRZxk,-1.0,10,10,2016,The Last Days on Mars,It Has to End Here Scene,tt1709143 93Kzx7azL6c,-1.0,9,10,2016,The Last Days on Mars,Sandstorm Slaughter Scene,tt1709143 eyvwHF7NIGc,-1.0,6,10,2016,The Last Days on Mars,Every Man For Himself Scene,tt1709143 7lQT4xGTpIA,-1.0,7,10,2016,The Last Days on Mars,Last Minute Betrayal Scene,tt1709143 blWwfkSF89o,-1.0,4,10,2016,The Last Days on Mars,You'll Never See Home Scene,tt1709143 GLOcJyFEXIw,-1.0,5,10,2016,The Last Days on Mars,It's Right Behind Me Scene,tt1709143 EbMddMJU97g,-1.0,3,10,2016,The Last Days on Mars,Don't Let Them Get Out Scene,tt1709143 19j24of8C_w,-1.0,2,10,2016,The Last Days on Mars,Zombie Astronaut Scene,tt1709143 SEQuHP-wL5Y,-1.0,1,10,2016,The Last Days on Mars,Swallowed by the Planet Scene,tt1709143 kJ-wkP8Xm40,-1.0,9,10,2016,Elephant White,The Truth about Mae Scene,tt1578882 7HZj_fM4yTg,-1.0,10,10,2016,Elephant White,The Initiation of a Monk Scene,tt1578882 2as1htsiNxY,-1.0,8,10,2016,Elephant White,Fight in the Woods Scene,tt1578882 pjJU7RkSrr8,-1.0,7,10,2016,Elephant White,Torturing Jimmy Scene,tt1578882 qerH8bjHVnI,-1.0,6,10,2016,Elephant White,Visiting the Brothel Scene,tt1578882 tp_TZ--JHEA,-1.0,5,10,2016,Elephant White,A New Gun Scene,tt1578882 RLsGDXjTW2w,-1.0,4,10,2016,Elephant White,The Sniper Scene,tt1578882 f6kcBGKxGtE,-1.0,1,10,2016,Elephant White,Running Into an Old Friend Scene,tt1578882 F-q3C6jSZYQ,-1.0,2,10,2016,Elephant White,Gunzone Scene,tt1578882 3nDCPEcEuPs,-1.0,3,10,2016,Elephant White,Welcome to My Humidor Scene,tt1578882 AGY5gNpoPfI,-1.0,8,11,2016,Love the Coopers,You're Not a Disappointment Scene,tt2279339 DECt9uTxaLE,-1.0,5,11,2016,Love the Coopers,You Were Standing Right Next to Her Scene,tt2279339 9dmlcGZta9E,-1.0,7,11,2016,Love the Coopers,Where Did You Go? Scene,tt2279339 RAsK38Vdep4,-1.0,3,11,2016,Love the Coopers,Our First Time Scene,tt2279339 SELFeneZL04,-1.0,1,11,2016,Love the Coopers,This Amazing Moment Scene,tt2279339 jPfje0jZeMo,-1.0,4,11,2016,Love the Coopers,Under the Mistletoe Scene,tt2279339 LAk5KEGLzmc,-1.0,2,11,2016,Love the Coopers,Role Playing Scene,tt2279339 KwWHPqidGuA,-1.0,11,11,2016,Love the Coopers,Everything We Want Scene,tt2279339 zzORtbUYE4c,-1.0,10,11,2016,Love the Coopers,Too Good a Story Scene,tt2279339 uRjbDsGz2tc,-1.0,6,11,2016,Love the Coopers,Time Was Their Friend Scene,tt2279339 z7fOP7aW1P4,-1.0,9,11,2016,Love the Coopers,We Are Family Scene,tt2279339 ZMplRnotp8M,-1.0,8,10,2016,The Voices,Ten Years of Therapy Scene,tt5323662 Gk_2euKF9MY,-1.0,10,10,2016,The Voices,Sing a Happy Song Scene,tt5323662 xllpnvAmnHE,-1.0,5,10,2016,The Voices,A Stone-Cold Murdering Maniac Scene,tt5323662 bJSDrRcwwKQ,-1.0,4,10,2016,The Voices,Finish It Scene,tt5323662 SaaTUj7m8e4,-1.0,7,10,2016,The Voices,You Think I'm Evil? Scene,tt5323662 ml_zSw6yWOE,-1.0,6,10,2016,The Voices,I'm Not Gonna Hurt You Scene,tt5323662 Ax-iwIoIxjY,-1.0,9,10,2016,The Voices,Jerry's Escape Scene,tt5323662 pYmo3PXF_T4,-1.0,2,10,2016,The Voices,"I'm Sorry, I'm Sorry, I'm Sorry Scene",tt5323662 UY0nYr-dXEI,-1.0,1,10,2016,The Voices,Conga! Scene,tt5323662 H5I1DyJ3w1g,-1.0,3,10,2016,The Voices,I'm a Severed Head in a Fridge Scene,tt5323662 o4ARk91_ptU,2010.0,3,10,2016,Clash of the Titans,Calibos Attacks Scene,tt0800320 38AYeNGjqg0,2010.0,8,10,2016,Clash of the Titans,Release the Kraken! Scene,tt0800320 jdp_wn_UrcE,2010.0,7,10,2016,Clash of the Titans,Perseus vs. Calibos Scene,tt0800320 GrIJLWISdlQ,2010.0,9,10,2016,Clash of the Titans,Perseus Faces the Kraken Scene,tt0800320 MUEhAUpa7iA,2010.0,10,10,2016,Clash of the Titans,Hero of Men Scene,tt0800320 Bx9JRDKjrwA,2010.0,5,10,2016,Clash of the Titans,Stygian Witches and the Eye Scene,tt0800320 GWxf8Hb-Xis,2010.0,2,10,2016,Clash of the Titans,I Am Hades Scene,tt0800320 FY00zwMZsqM,2010.0,6,10,2016,Clash of the Titans,Medusa's Lair Scene,tt0800320 2OXtHJgLJr0,2010.0,1,10,2016,Clash of the Titans,Declaring War Against the Gods Scene,tt0800320 K57aIbpF_Co,2010.0,4,10,2016,Clash of the Titans,Giant Scorpions Scene,tt0800320 kRNhyHiBUXs,-1.0,2,10,2016,Men in Black II,Frank Will Survive Scene,tt0120912 lr7pyggTmmY,-1.0,3,10,2016,Men in Black II,Post Office Aliens Scene,tt0120912 W_EYrVGI7LQ,-1.0,1,10,2016,Men in Black II,Jeff the 600 Foot Worm Scene,tt0120912 F4QzrKakPmU,-1.0,4,10,2016,Men in Black II,Jeebs' De-Neuralyzer Scene,tt0120912 nwrLvq5W58o,-1.0,5,10,2016,Men in Black II,Fighting the Alien Gang Scene,tt0120912 A9sd10CHAP8,-1.0,6,10,2016,Men in Black II,All Hail Jay Scene,tt0120912 5NY_8ulSutc,-1.0,8,10,2016,Men in Black II,That's How I Fight Scene,tt0120912 KNdmBWoCfAc,-1.0,9,10,2016,Men in Black II,Hyper Speed Scene,tt0120912 ZdhqVdIsBSE,-1.0,7,10,2016,Men in Black II,Someone I Need to Eat Scene,tt0120912 PhLfIqO2SLI,-1.0,10,10,2016,Men in Black II,If You Don't Go We All Die Scene,tt0120912 Mk_C5QH2Eb8,-1.0,8,10,2016,Mad Max: Fury Road,Harpoon and Pole Battle Scene,tt1392190 QJX3XvkTJQk,-1.0,7,10,2016,Mad Max: Fury Road,Feels Like Hope Scene,tt1392190 q38QzB5dw0A,-1.0,10,10,2016,Mad Max: Fury Road,Furiosa vs. Immortan Joe Scene,tt1392190 y1gkMNjkFiQ,-1.0,9,10,2016,Mad Max: Fury Road,Desert Battle Scene,tt1392190 AWvRcWDr5y8,-1.0,6,10,2016,Mad Max: Fury Road,Max Retaliates Scene,tt1392190 KS_KStIPiwU,-1.0,5,10,2016,Mad Max: Fury Road,She Went Under the Wheels Scene,tt1392190 ZnIkMhuNmjo,-1.0,4,10,2016,Mad Max: Fury Road,Motorcycle Gang Attack Scene,tt1392190 Vcgn4EY5_S8,-1.0,3,10,2016,Mad Max: Fury Road,Max vs. Furiosa Scene,tt1392190 W28kNzz50pw,-1.0,2,10,2016,Mad Max: Fury Road,"I Live, I Die, I Live Again Scene",tt1392190 k4Lpr1sqKbQ,-1.0,1,10,2016,Mad Max: Fury Road,Attack on the War Rig Scene,tt1392190 l7FkN4ooYvA,-1.0,2,10,2016,Angry Birds,Anger Management Classmates Scene,tt1985949 BGEFW4kc5EQ,-1.0,1,10,2016,Angry Birds,The Angry Bird Scene,tt1985949 lF3IIOXn5qU,-1.0,4,10,2016,Angry Birds,The Slingshot Scene,tt1985949 FUWdPWW4csI,-1.0,3,10,2016,Angry Birds,The Pigs Arrive Scene,tt1985949 LCljgWh4L8Y,-1.0,5,10,2016,Angry Birds,The Legend of Mighty Eagle Scene,tt1985949 Boona4-qLSE,-1.0,6,10,2016,Angry Birds,The Lake of Whiz-dom Scene,tt1985949 KKfz8C48EJk,-1.0,9,10,2016,Angry Birds,Save That Egg! Scene,tt1985949 Jj-mAiTMvX8,-1.0,7,10,2016,Angry Birds,Mighty Eagle's Theme Song Scene,tt1985949 dmqo-EuR8Cw,-1.0,8,10,2016,Angry Birds,Red Flies Scene,tt1985949 T5CoWL_wdC4,-1.0,10,10,2016,Angry Birds,A Dynamite Defeat Scene,tt1985949 y_eZw262fhM,-1.0,7,10,2016,Spectre,Train Fight Scene,tt2379713 iM0hP-LZIvI,-1.0,10,10,2016,Spectre,Goodbye James Bond Scene,tt2379713 bOP-THNe4m8,-1.0,9,10,2016,Spectre,Doesn't Time Fly Scene,tt2379713 Ih-zPWi9INA,-1.0,8,10,2016,Spectre,Ernst Stavro Blofeld Scene,tt2379713 wOuk6V3Dj5A,-1.0,6,10,2016,Spectre,Snow Plane Pursuit Scene,tt2379713 A7HmqwyZ3oA,-1.0,5,10,2016,Spectre,Rome Car Chase Scene,tt2379713 g9S5GndUhko,-1.0,2,10,2016,Spectre,Helicopter Fight Scene,tt2379713 9eosfNwMpMs,-1.0,4,10,2016,Spectre,Welcome James Scene,tt2379713 kEnK0ZdMThc,-1.0,1,10,2016,Spectre,Blowing Up the Block Scene,tt2379713 J-OLwCyAtBc,-1.0,3,10,2016,Spectre,Seducing Lucia Scene,tt2379713 zUL_yawY6Ks,-1.0,10,10,2016,Men in Black 3,Secrets the Universe Doesn't Know Scene,tt1409024 bCLTAaa3qMM,-1.0,1,10,2016,Men in Black 3,Breaking Out Boris Scene,tt1409024 JLH_smT7Qog,-1.0,3,10,2016,Men in Black 3,Extraterrestrial Foodstuffs Scene,tt1409024 M3FtlKHZXhs,-1.0,2,10,2016,Men in Black 3,Zed's Funeral Scene,tt1409024 WIr_dCgNAjM,-1.0,4,10,2016,Men in Black 3,Chinese Restaurant Fight Scene,tt1409024 Y-cCAY2hGPs,-1.0,5,10,2016,Men in Black 3,Hippies and Racial Profiling Scene,tt1409024 nSO22k4XGUo,-1.0,6,10,2016,Men in Black 3,Bowling Ball Head Scene,tt1409024 gDPJG9FP3iM,-1.0,9,10,2016,Men in Black 3,Your Daddy Is a Hero Scene,tt1409024 a3Xm0KpUYj4,-1.0,7,10,2016,Men in Black 3,The Texas Two Step Scene,tt1409024 Xd5ESRqpz3E,-1.0,8,10,2016,Men in Black 3,That's Not Possible Scene,tt1409024 xP7yIQladb0,1998.0,9,10,2016,Godzilla,We're in His Mouth! Scene,tt0120685 jB9WGpVrYBs,1998.0,2,10,2016,Godzilla,Almost Squashed Scene,tt0120685 VV97_cn54bQ,1998.0,1,10,2016,Godzilla,Rises Scene,tt0120685 f_LDdElm9fc,1998.0,4,10,2016,Godzilla,Helicopter Chase Scene,tt0120685 xiwtX0NC0uA,1998.0,3,10,2016,Godzilla,Negative Impact Scene,tt0120685 _Z_n2Ray64o,1998.0,6,10,2016,Godzilla,vs. Submarines Scene,tt0120685 4IsISIQpKTc,1998.0,5,10,2016,Godzilla,Fire at Will! Scene,tt0120685 DnGpfWa6FAQ,1998.0,7,10,2016,Godzilla,Babies Scene,tt0120685 GKuPSf9P3tw,1998.0,8,10,2016,Godzilla,Blowing Up Madison Square Garden Scene,tt0120685 _JcFaIDdphE,1998.0,10,10,2016,Godzilla,Goes Down Scene,tt0120685 3PBo1ef-18Y,-1.0,3,10,2016,Cloudy with a Chance of Meatballs 2,Living Food Scene,tt1985966 kJlqNXhZE_I,-1.0,2,10,2016,Cloudy with a Chance of Meatballs 2,Barry the Berry Scene,tt1985966 YjewWZ3JWiE,-1.0,1,10,2016,Cloudy with a Chance of Meatballs 2,Getting the Team Together Scene,tt1985966 o-OKsTWIVxk,-1.0,5,10,2016,Cloudy with a Chance of Meatballs 2,Wedgie-Proof Underwear Scene,tt1985966 V3Tlo0EutEQ,-1.0,4,10,2016,Cloudy with a Chance of Meatballs 2,Cheese Spider Attack Scene,tt1985966 ZawJ9EBOLVk,-1.0,6,10,2016,Cloudy with a Chance of Meatballs 2,Tacodile Supreme Scene,tt1985966 Ew8AJsPAyLg,-1.0,8,10,2016,Cloudy with a Chance of Meatballs 2,Let's Go Fishing Scene,tt1985966 xswJpwb7Afs,-1.0,7,10,2016,Cloudy with a Chance of Meatballs 2,Nice Cheese Spider Scene,tt1985966 8osP7KRacWk,-1.0,10,10,2016,Cloudy with a Chance of Meatballs 2,A Happy Ending Scene,tt1985966 DHWbxxpKb04,-1.0,9,10,2016,Cloudy with a Chance of Meatballs 2,Time to Celebrate! Scene,tt1985966 jv6-p4kphmc,-1.0,11,11,2016,Creed,One Step at a Time Scene,tt6343314 4WgLRH-FpWQ,-1.0,10,11,2016,Creed,The Final Round Scene,tt6343314 rvOq4hFIRJg,-1.0,9,11,2016,Creed,I Gotta Prove It Scene,tt6343314 W4efgyM82kE,-1.0,8,11,2016,Creed,It's Time Scene,tt6343314 esFVrrZCvwA,-1.0,7,11,2016,Creed,Run to Rocky Scene,tt6343314 wnwsSOrmEKI,-1.0,6,11,2016,Creed,Rocky's Diagnosis Scene,tt6343314 YYPpg3_Y4XY,-1.0,5,11,2016,Creed,Adonis vs. The Lion Scene,tt6343314 UQ15FRltlsY,-1.0,3,11,2016,Creed,You Got a Jawn? Scene,tt6343314 jyNtMzHeJ6I,-1.0,4,11,2016,Creed,I'm Ready Scene,tt6343314 Fjr_CQHJiCo,-1.0,2,11,2016,Creed,Rocky Meets Adonis Scene,tt6343314 W-cZK60yWbY,-1.0,1,11,2016,Creed,Learning the Hard Way Scene,tt6343314 3Sz7dbX2kTY,-1.0,1,10,2016,The Karate Kid Part III,Mr. Miyagi's Little Trees Scene,tt0097647 C58_gjlogWY,-1.0,4,10,2016,The Karate Kid Part III,Daniel's Blackmailed Scene,tt0097647 ymbKDavsVaU,-1.0,3,10,2016,The Karate Kid Part III,Save the Tree! Scene,tt0097647 xCWkAXGz8W8,-1.0,2,10,2016,The Karate Kid Part III,Mike Attacks Daniel Scene,tt0097647 MPhIzvgB31Y,-1.0,6,10,2016,The Karate Kid Part III,Killer Instinct Scene,tt0097647 e2dAiCB6igE,-1.0,5,10,2016,The Karate Kid Part III,Doing Damage Scene,tt0097647 TcndF9QpYAU,-1.0,7,10,2016,The Karate Kid Part III,Strong Roots Scene,tt0097647 SPMpDCxhKGU,-1.0,8,10,2016,The Karate Kid Part III,Miyagi Makes a Stand Scene,tt0097647 7GrURVFAC2I,-1.0,9,10,2016,The Karate Kid Part III,Now the Real Pain Begins Scene,tt0097647 _S6GYF1B8Yk,-1.0,10,10,2016,The Karate Kid Part III,Daniel Wins! Scene,tt0097647 U2HWD9dymUk,-1.0,6,10,2016,The Karate Kid Part II,The Japanese Tea Ceremony Scene,tt0091326 7KF4iJzBVWM,-1.0,1,10,2016,The Karate Kid Part II,No Mercy Scene,tt0091326 XemAlj9_qKE,-1.0,2,10,2016,The Karate Kid Part II,"Breathe In, Breathe Out Scene",tt0091326 gmElew2NIS8,-1.0,9,10,2016,The Karate Kid Part II,Daniel vs. Chozen Scene,tt0091326 TSPaaPqteCU,-1.0,3,10,2016,The Karate Kid Part II,Mr. Miyagi Says Goodbye Scene,tt0091326 iKRpMjVJKZc,-1.0,4,10,2016,The Karate Kid Part II,Breaking the Ice Scene,tt0091326 -JNyHnAi8zk,-1.0,8,10,2016,The Karate Kid Part II,Daniel's Daring Rescue Scene,tt0091326 DPmHrgbe3xo,-1.0,7,10,2016,The Karate Kid Part II,Saving Sato Scene,tt0091326 K7I9ERiBZrc,-1.0,5,10,2016,The Karate Kid Part II,Mr. Miyagi Fights Scene,tt0091326 nKISdYhQcvw,-1.0,10,10,2016,The Karate Kid Part II,Live or Die? Scene,tt0091326 UFuxiZFwDPs,2014.0,2,10,2016,RoboCop,End This Nightmare Scene,tt1234721 GlCN1EPAoHI,2014.0,1,10,2016,RoboCop,What Have You Done To Me? Scene,tt1234721 ti9jg0JOK2I,2014.0,3,10,2016,RoboCop,I've Been Through A Lot Scene,tt1234721 gvuZShYhzX8,2014.0,5,10,2016,RoboCop,You're Under Arrest Scene,tt1234721 _emU23tTUAw,2014.0,4,10,2016,RoboCop,Emotional Overload Scene,tt1234721 QLTlJDjPfHI,2014.0,6,10,2016,RoboCop,Drug Bust Simulation Scene,tt1234721 TxvqZhVwrSY,2014.0,10,10,2016,RoboCop,You're a Robot Scene,tt1234721 GtSNSaW9IRI,2014.0,9,10,2016,RoboCop,Robocop vs ED-209 Drones Scene,tt1234721 sTbJQwezQZY,2014.0,8,10,2016,RoboCop,"Bad Cop, Scene",tt1234721 qyvR5lglbTE,2014.0,7,10,2016,RoboCop,"He Leaves Alive, You Don't Scene",tt1234721 7jz_uA1dv9w,-1.0,1,10,2016,Battle: Los Angeles,First Contact Scene,tt1217613 m49ub45c8AI,-1.0,2,10,2016,Battle: Los Angeles,Swimming Pool Ambush Scene Moviclips,tt1217613 rd8JDPjEoE0,-1.0,3,10,2016,Battle: Los Angeles,Destroying the Alien Drone Scene,tt1217613 JYVhLnjKKC8,-1.0,5,10,2016,Battle: Los Angeles,I'm Not Leaving You! Scene,tt1217613 Q0okgIEkRJM,-1.0,4,10,2016,Battle: Los Angeles,Saving Civilians Scene,tt1217613 TjY8crETM6s,-1.0,6,10,2016,Battle: Los Angeles,Go Right Through 'Em Scene,tt1217613 t6nqp5MdMp0,-1.0,8,10,2016,Battle: Los Angeles,Direct Hit! Scene,tt1217613 yrfpRh2SqIw,-1.0,10,10,2016,Battle: Los Angeles,Defeating the Aliens Scene,tt1217613 xSNkZYKC_c0,-1.0,7,10,2016,Battle: Los Angeles,Stalked in the Sewers Scene,tt1217613 06Its9LhIHQ,-1.0,9,10,2016,Battle: Los Angeles,The Siege Continues Scene,tt1217613 X5HvuYGCyzQ,-1.0,2,10,2016,Hot Tub Time Machine 2,Crotch Shot Scene,tt2637294 ttOuvmYYeps,-1.0,1,10,2016,Hot Tub Time Machine 2,Success Stories Scene,tt2637294 LGnwTTGzjpk,-1.0,3,10,2016,Hot Tub Time Machine 2,You're My Best Choice Scene,tt2637294 62z8SYqpuZ4,-1.0,4,10,2016,Hot Tub Time Machine 2,A Smart Car Scene,tt2637294 GN1LhsTj5CQ,-1.0,7,10,2016,Hot Tub Time Machine 2,Celebrity Choozy Doozy Scene,tt2637294 UzTveNwweRM,-1.0,6,10,2016,Hot Tub Time Machine 2,The Electric Ladybug Scene,tt2637294 lKqS8lnlJsc,-1.0,5,10,2016,Hot Tub Time Machine 2,The Webber Strut Scene,tt2637294 rnTrWINYDsM,-1.0,8,10,2016,Hot Tub Time Machine 2,That's My Butt! Scene,tt2637294 _KC5AJdRgBs,-1.0,9,10,2016,Hot Tub Time Machine 2,Ball Juice Scene,tt2637294 gYdm3PIHyaM,-1.0,10,10,2016,Hot Tub Time Machine 2,I Can't Do It Scene,tt2637294 9AtlQm1jVpM,-1.0,2,10,2016,Hot Pursuit,Extreme Measures Scene,tt2967224 wXer1Hj8hR4,-1.0,6,10,2016,Hot Pursuit,You're Kinda Intense Scene,tt2967224 NpSkrZRlGbk,-1.0,4,10,2016,Hot Pursuit,All Jacked Up Scene,tt2967224 BiukHSW8Az4,-1.0,1,10,2016,Hot Pursuit,Commandeering Your Personal Vehicle Scene,tt2967224 tdvj1iOOUE0,-1.0,10,10,2016,Hot Pursuit,I Helped Him Get Off Scene,tt2967224 VnAmEovifpU,-1.0,5,10,2016,Hot Pursuit,I Am Her Lover Scene,tt2967224 UUzW7NqutUg,-1.0,3,10,2016,Hot Pursuit,Through the Window Scene,tt2967224 Fy988XyqFhM,-1.0,8,10,2016,Hot Pursuit,Hit the Brakes! Scene,tt2967224 lwhQK2kDfBM,-1.0,7,10,2016,Hot Pursuit,Criminal Cat Fight Scene,tt2967224 xpFArzEh9Dk,-1.0,9,10,2016,Hot Pursuit,Put the Gun Down Scene,tt2967224 giGWC-o1mvw,-1.0,2,10,2016,If I Stay,The Accident Scene,tt1355630 2aqgKA3uUwM,-1.0,7,10,2016,If I Stay,I Want This To Be Over Scene,tt1355630 hhRIhD6BvMo,-1.0,1,10,2016,If I Stay,A Cello of My Very Own Scene,tt1355630 oUpzcxwFI6o,-1.0,3,10,2016,If I Stay,You're Not Alone Scene,tt1355630 TajTfrf2yXs,-1.0,4,10,2016,If I Stay,Like Playing Music Together Scene,tt1355630 -PFdr0SiAEw,-1.0,6,10,2016,If I Stay,Mia's Audition Scene,tt1355630 9OhXJOQioeU,-1.0,5,10,2016,If I Stay,I'm Terrified of Losing You Scene,tt1355630 ZNnk9L2LSZI,-1.0,8,10,2016,If I Stay,I Understand Scene,tt1355630 EBnn_Y29Pks,-1.0,10,10,2016,If I Stay,Heart Like Yours Scene,tt1355630 IYVg4o3KVPo,-1.0,9,10,2016,If I Stay,Today's the Best Day Scene,tt1355630 sNrOsj0xDPs,-1.0,10,10,2016,The Purple Rose of Cairo,Cheek to Cheek Scene,tt0089853 vR1WPNzcXHE,-1.0,9,10,2016,The Purple Rose of Cairo,The Same Two People Love Me Scene,tt0089853 nfzJCrxKVMU,-1.0,8,10,2016,The Purple Rose of Cairo,Back Into the Story Scene,tt0089853 vZlWLj1-eC4,-1.0,7,10,2016,The Purple Rose of Cairo,Plagued By His Own Creation Scene,tt0089853 bryVfEK0U4k,-1.0,6,10,2016,The Purple Rose of Cairo,What Kind of a Club is This? Scene,tt0089853 QanZzw7zh7M,-1.0,5,10,2016,The Purple Rose of Cairo,The Advantage of Being Imaginary Scene,tt0089853 _T6r7w_m504,-1.0,4,10,2016,The Purple Rose of Cairo,Damage Control Scene,tt0089853 pLC_hRDO7Hk,-1.0,1,10,2016,The Purple Rose of Cairo,"Free After 2,000 Performances Scene",tt0089853 cyEqzALZmeA,-1.0,3,10,2016,The Purple Rose of Cairo,Real Life Lessons Scene,tt0089853 75ovyrTzuYY,-1.0,2,10,2016,The Purple Rose of Cairo,Don't Turn the Projector Off Scene,tt0089853 yXyrZImvR7c,-1.0,7,10,2016,Krampus,Elves From Hell Scene,tt3850590 ElvTXO2A3Uw,-1.0,1,10,2016,Krampus,Happy Holidays Scene,tt3850590 sl1Jjq82XUA,-1.0,5,10,2016,Krampus,"Der Klown, Eater of Children Scene",tt3850590 UVGzuUm3uzs,-1.0,10,10,2016,Krampus,The Ending of a Christmas Wish Scene,tt3850590 U0xf89hs1Mc,-1.0,6,10,2016,Krampus,Terror Toys and Gingerbread Nightmares Scene,tt3850590 mFkxrTfAkq8,-1.0,9,10,2016,Krampus,When All is Lost Scene,tt3850590 oUXPpeE2pv4,-1.0,8,10,2016,Krampus,Arrives Scene,tt3850590 M8s2txilG08,-1.0,4,10,2016,Krampus,When the Christmas Spirit Dies Scene,tt3850590 oA-dHypOn9M,-1.0,3,10,2016,Krampus,Christmas Cookie Kidnapper Scene,tt3850590 aPQcQ4IhHNE,-1.0,2,10,2016,Krampus,You Better Watch Out Scene,tt3850590 huI39DZ4b44,-1.0,10,10,2016,Hercules,Must Die Scene,tt0119282 Xiki4aOO4tw,-1.0,9,10,2016,Hercules,Tydeus's Sacrifice Scene,tt0119282 hSvJRk5OH_o,-1.0,6,10,2016,Hercules,"To Kill a Snake, Cut Off Its Head Scene",tt0119282 Lrr_z_4VLdU,-1.0,7,10,2016,Hercules,Three Wolves For One Lion Scene,tt0119282 tFeew6TgM8w,-1.0,8,10,2016,Hercules,Ask My Family For Forgiveness Scene,tt0119282 5EeD0NiVALs,-1.0,5,10,2016,Hercules,Your Legend Ends Here Scene,tt0119282 xNu0qNfOoGY,-1.0,3,10,2016,Hercules,Hold the Lines! Scene,tt0119282 oc8Hm_t5BRo,-1.0,2,10,2016,Hercules,Walked Into a Trap Scene,tt0119282 5ACVz6Cmo3M,-1.0,4,10,2016,Hercules,Man Cannot Escape His Fate Scene,tt0119282 K4fpErUdp3k,-1.0,1,10,2016,Hercules,The Son of Zeus Scene,tt0119282 SUMtjCypolU,-1.0,2,10,2016,The Chronicles of Riddick,You're Not Afraid of the Dark? Scene,tt0296572 RARFpfBt66M,-1.0,1,10,2016,The Chronicles of Riddick,You Made Three Mistakes Scene,tt0296572 ilG8mzbHNNI,-1.0,3,10,2016,The Chronicles of Riddick,I Bow to No Man Scene,tt0296572 h9Rb7mT3juI,-1.0,5,10,2016,The Chronicles of Riddick,It's an Animal Thing Scene,tt0296572 RmqqNrg2cKg,-1.0,6,10,2016,The Chronicles of Riddick,Death by Teacup Scene,tt0296572 otk_S_5inBM,-1.0,4,10,2016,The Chronicles of Riddick,Welcome to Crematoria Scene,tt0296572 5kGTDvVTAOw,-1.0,8,10,2016,The Chronicles of Riddick,Who's the Better Killer? Scene,tt0296572 yX5TsLuIEy8,-1.0,10,10,2016,The Chronicles of Riddick,You Keep What You Kill Scene,tt0296572 98I5LTPcRnw,-1.0,7,10,2016,The Chronicles of Riddick,Extreme Temperatures Scene,tt0296572 39HR8ZjQnYA,-1.0,9,10,2016,The Chronicles of Riddick,You Killed Everything I Know Scene,tt0296572 TeDEtT7YjYY,-1.0,10,10,2016,Ghost Rider,vs. Blackheart Scene,tt0259324 -oPHsR72Lfo,-1.0,2,10,2016,Barbershop: The Next Cut,One-Stop Scene,tt3628584 p_ixTZLD7k0,-1.0,1,10,2016,Barbershop: The Next Cut,Chauvinistic Talk Scene,tt3628584 T6BDCLnWSes,-1.0,3,10,2016,Barbershop: The Next Cut,Unequal Opportunity Scene,tt3628584 e5SbxMFk6Vo,-1.0,4,10,2016,Barbershop: The Next Cut,The Ceasefire Begins Scene,tt3628584 cW23WpOvC6A,-1.0,7,10,2016,Barbershop: The Next Cut,Shout-Out Scene,tt3628584 1iCqTxtsqvw,-1.0,1,10,2016,Ghost Rider,The Consequences of a Sold Soul Scene,tt0259324 b-2p52a82UM,-1.0,5,10,2016,Barbershop: The Next Cut,Marital Problems Scene,tt3628584 zbkojhq6Ryw,-1.0,8,10,2016,Barbershop: The Next Cut,I'm Out! Scene,tt3628584 KGW0LbnEraM,-1.0,6,10,2016,Barbershop: The Next Cut,The Blame Game Scene,tt3628584 NR-BaVehxrA,-1.0,9,10,2016,Barbershop: The Next Cut,Ceasefire is Back On Scene,tt3628584 EonKIlrj7t0,-1.0,10,10,2016,Barbershop: The Next Cut,Dear Chicago Scene,tt3628584 tyyPSnHcthg,-1.0,3,10,2016,Ghost Rider,How a Stuntman Asks for a Date Scene,tt0259324 10X4Th3YE30,-1.0,2,10,2016,Ghost Rider,The Leap of Death Scene,tt0259324 Rj5XdwnuQ80,-1.0,4,10,2016,Ghost Rider,Knows No Mercy Scene,tt0259324 riDe28hGBuo,-1.0,6,10,2016,Ghost Rider,Prison Break Scene,tt0259324 -fvfHqNEmGU,-1.0,5,10,2016,Ghost Rider,The Penance Stare Scene,tt0259324 OsgEdYjoqUI,-1.0,8,10,2016,Ghost Rider,Slade's Last Ride Scene,tt0259324 a4QlQy31HIk,-1.0,7,10,2016,Ghost Rider,Time to Clear the Air Scene,tt0259324 EnBWc20FGuc,-1.0,9,10,2016,Ghost Rider,You're Out of Time Scene,tt0259324 V0UBmkWw5Oo,-1.0,10,10,2016,The Amazing Spider Man,Those Are the Best Kind Scene,tt0948470 BXx51SR_3Sk,-1.0,1,10,2016,The Amazing Spider Man,Air Spidey Scene,tt0948470 psB3Ta-5XWY,-1.0,2,10,2016,The Amazing Spider Man,Love Struck Skateboarding Scene,tt0948470 4331uXY0nxA,-1.0,4,10,2016,The Amazing Spider Man,Web-Sling Kiss Scene,tt0948470 4_23t4NzAMk,-1.0,3,10,2016,The Amazing Spider Man,Taking Down the Car Thief Scene,tt0948470 hvACHvnVCbw,-1.0,5,10,2016,The Amazing Spider Man,Saved by Spider Man Scene,tt0948470 ltmHZiXkb9c,-1.0,6,10,2016,The Amazing Spider Man,The Lizard's Sewer Lair Scene,tt0948470 EauDkPyyz8I,-1.0,7,10,2016,The Amazing Spider Man,High School Attack Scene,tt0948470 7pD2vZ28a3E,-1.0,8,10,2016,The Amazing Spider Man,Unmasking Spider Man Scene,tt0948470 4uc2qplSyss,-1.0,9,10,2016,The Amazing Spider Man,Spider Man vs. The Lizard Scene,tt0948470 rDGRAHBojWE,2007.0,5,10,2016,Spider Man 3,Cool Peter Parker Scene,tt0413300 N_O0XDnM2AM,2007.0,1,10,2016,Spider Man 3,New Goblin Attacks Scene,tt0413300 WE4iNhRivzc,2007.0,3,10,2016,Spider Man 3,Sandman Subway Fight Scene,tt0413300 5A9D-XVmK10,2007.0,2,10,2016,Spider Man 3,Spidey Saves Gwen Scene,tt0413300 OJNBsuHFdM4,2007.0,4,10,2016,Spider Man 3,Peter Fights Harry Scene,tt0413300 iX23r272kqg,2007.0,6,10,2016,Spider Man 3,Jazz Club Dance Scene,tt0413300 GVt3XFTYp-0,2007.0,8,10,2016,Spider Man 3,The End of Spider Man? Scene,tt0413300 m8LWjDS3IkQ,2007.0,10,10,2016,Spider Man 3,Venom's Demise Scene,tt0413300 IPdtCQV4Dz8,2007.0,7,10,2016,Spider Man 3,Venom Rises Scene,tt0413300 dwh6SShhnVI,2007.0,9,10,2016,Spider Man 3,Spider Man & Goblin vs. Sandman & Venom Scene,tt0413300 DgUvg4sBGcs,-1.0,1,10,2016,Spider Man 2,Spidey's Pizza Delivery Scene,tt1872181 5wUezm-K0Bw,-1.0,4,10,2016,Spider Man 2,Peter Loses His Powers Scene,tt1872181 q292IDwEWZ0,-1.0,3,10,2016,Spider Man 2,Aunt May in Peril Scene,tt1872181 R4CiWP08yes,-1.0,2,10,2016,Spider Man 2,Bank Fight Scene,tt1872181 m8Jm9_iR6cg,-1.0,5,10,2016,Spider Man 2,Cafe Kidnapping Scene,tt1872181 yRhRZB-nqOU,-1.0,7,10,2016,Spider Man 2,Stopping the Train Scene,tt1872181 HStPxrLfM9k,-1.0,6,10,2016,Spider Man 2,The Train Battle Scene,tt1872181 0TvKsVxgbF4,-1.0,8,10,2016,Spider Man 2,Harry Learns the Truth Scene,tt1872181 QbwYDkPwfUM,-1.0,9,10,2016,Spider Man 2,Spider Man vs. Doc Ock Scene,tt1872181 aGAInDBQOoE,-1.0,10,10,2016,Spider Man 2,"Thank You, Mary Jane Watson Scene",tt1872181 xcqbp1ysN1M,2010.0,1,10,2016,Legion,Arresting an Angel,tt1038686 0SDvqDdbhSc,2010.0,10,10,2016,Legion,You Failed Him,tt1038686 Mp6aKCE3jSc,2010.0,9,10,2016,Legion,Michael vs. Gabriel,tt1038686 Z0l0sXacQ9Y,2010.0,6,10,2016,Legion,You're Gonna Die Now,tt1038686 onNv1u-qdZY,2010.0,8,10,2016,Legion,Gabriel's Arrival,tt1038686 LFT504CjJFA,2010.0,7,10,2016,Legion,I Just Wanna Play With the Baby,tt1038686 P5Q7apxWucc,2010.0,4,10,2016,Legion,The Ice Cream Man,tt1038686 4kNNwEV5XJI,2010.0,5,10,2016,Legion,Acid Filled Boils,tt1038686 tWEBbYoDaU8,2010.0,2,10,2016,Legion,Granny's Got Teeth,tt1038686 wFg1qWPryvI,2010.0,3,10,2016,Legion,They're Here,tt1038686 5LE2vO_aQgU,1986.0,9,11,2016,Hannah and Her Sisters,A Contentious Lunch,tt0091167 REXJhZBFD1w,1986.0,11,11,2016,Hannah and Her Sisters,The Heart is a Resistant Muscle,tt0091167 j6qjibwpEzM,1986.0,10,11,2016,Hannah and Her Sisters,It's Not All a Drag,tt0091167 WVed9LPelUw,1986.0,6,11,2016,Hannah and Her Sisters,I'm In Love with You,tt0091167 wU7TupjcCbo,1986.0,7,11,2016,Hannah and Her Sisters,Punk Rock Earache,tt0091167 9VLcxXz-0w4,1986.0,8,11,2016,Hannah and Her Sisters,Converting to Catholicism,tt0091167 8KJkEQx2lKI,1986.0,2,11,2016,Hannah and Her Sisters,Sketch Mess,tt0091167 rLtmIBRWQVQ,1986.0,3,11,2016,Hannah and Her Sisters,The Hypochondriac,tt0091167 MPqg9uMHTDQ,1986.0,5,11,2016,Hannah and Her Sisters,We Need Some Sperm,tt0091167 JauxWp4eWnM,1986.0,1,11,2016,Hannah and Her Sisters,"God, She's Beautiful",tt0091167 QYHTRRmkung,1986.0,4,11,2016,Hannah and Her Sisters,A Poem of You,tt0091167 7mwZYGcbQCo,1979.0,1,10,2016,Manhattan,He Adored New York City,tt0079522 sZU26D42s2M,1979.0,4,10,2016,Manhattan,I Can't Have This Argument,tt0079522 GE64zY42bUA,1979.0,3,10,2016,Manhattan,The Queensboro Bridge,tt0079522 CZO8Dh7dXvM,1979.0,6,10,2016,Manhattan,I'm Trouble,tt0079522 jf9d3cwVWBY,1979.0,2,10,2016,Manhattan,On Nazis and Orgasms,tt0079522 P2oF9-9UpbQ,1979.0,5,10,2016,Manhattan,The Planetarium,tt0079522 KQbGttprUMA,1979.0,10,10,2016,Manhattan,Have a Little Faith in People,tt0079522 2dD7upKpLks,1979.0,9,10,2016,Manhattan,You Think You're God,tt0079522 FLCvFcaZW3Q,1979.0,7,10,2016,Manhattan,Don't You Love Me?,tt0079522 63fCYTWuVoA,1979.0,8,10,2016,Manhattan,I'm Still in Love With Yale,tt0079522 kb4jEHmH_kU,2002.0,10,10,2016,Spider Man Movie,With Great Power Comes Great Responsibility Scene,tt0316654 hHKUBg_c9no,2002.0,8,10,2016,Spider Man Movie,Spider Man vs. Green Goblin Scene,tt0316654 MEBibAHnEK4,1977.0,12,12,2016,Annie Hall,Trying Something New,tt0075686 iLBL-XeNrRI,1977.0,4,12,2016,Annie Hall,Cooking Lobster,tt0075686 vTSmbMm7MDg,1977.0,3,12,2016,Annie Hall,If Life Were Only Like This,tt0075686 5h5zurZsIQY,1977.0,1,12,2016,Annie Hall,Opening Monologue,tt0075686 Qp3NWzLzaek,1977.0,8,12,2016,Annie Hall,Can I Confess Something?,tt0075686 lXy9Lp8bu98,1977.0,5,12,2016,Annie Hall,Awkward Annie,tt0075686 JduADWt0XMI,1977.0,6,12,2016,Annie Hall,Honest Subtitles,tt0075686 p32OEIazBew,1977.0,11,12,2016,Annie Hall,Seems Like Old Times,tt0075686 1eTXG8FReno,1977.0,10,12,2016,Annie Hall,There's a Spider in the Bathroom,tt0075686 kIUgcwJeN5A,1977.0,9,12,2016,Annie Hall,How Do You Account For Your Happiness?,tt0075686 1VIBA_mPdPA,1977.0,2,12,2016,Annie Hall,Where My Classmates Are Today,tt0075686 WYY9Epog0rs,1977.0,7,12,2016,Annie Hall,I Can't Believe This Family,tt0075686 jM7Eou4bV-Q,2002.0,1,10,2016,Spider Man Movie,Peter vs. Flash Scene,tt0316654 zlwaUJzGqns,2002.0,2,10,2016,Spider Man Movie,Peter's New Powers Scene,tt0316654 UDSfJaVC0KY,2002.0,3,10,2016,Spider Man Movie,Bone Saw vs. Spider Man Scene,tt0316654 9LglzW3HFyg,2002.0,4,10,2016,Spider Man Movie,Uncle Ben's Death Scene,tt0316654 TvoWGxM8TU8,2002.0,9,10,2016,Spider Man Movie,Green Goblin's Demise Scene,tt0316654 K_a1_SO8hu0,2002.0,5,10,2016,Spider Man Movie,Green Goblin Attacks the Festival Scene,tt0316654 aBpwrORhKWU,2002.0,6,10,2016,Spider Man Movie,Upside-Down Kiss Scene,tt0316654 Xt0Fv0W-CSo,2002.0,7,10,2016,Spider Man Movie,Bridge Rescue Scene,tt0316654 FJ7rx8LeTgg,2016.0,10,10,2016,Ghostbusters,Giant Ghost Fight Scene,tt1289401 jYpYTpKuT_k,2016.0,9,10,2016,Ghostbusters,Battling the Ghosts Scene,tt1289401 RRLisRc0j1c,2016.0,7,10,2016,Ghostbusters,Heavy Metal Demon Scene,tt1289401 YW6VrETYUfU,2016.0,8,10,2016,Ghostbusters,Abby's Possessed Scene,tt1289401 LMViEmB4_Fk,2016.0,6,10,2016,Ghostbusters,Evil Mannequin Scene,tt1289401 aGcvpWAhP6I,2016.0,2,10,2016,Ghostbusters,Kevin the Receptionist Scene,tt1289401 3mw9rXZv4tY,2016.0,5,10,2016,Ghostbusters,Who Ya Gonna Call? Scene,tt1289401 Gl4bRwYs1tI,2016.0,3,10,2016,Ghostbusters,The Subway Ghost Scene,tt1289401 HfKAC6eOlXg,2016.0,1,10,2016,Ghostbusters,The Mansion Ghost Scene,tt1289401 zoSzqHlvN6s,2016.0,4,10,2016,Ghostbusters,Getting Equipped Scene,tt1289401 svytEWJK6Qk,2015.0,8,10,2016,The Night Before,The Talking Nativity,tt3530002 kptIt3LwGWc,2015.0,9,10,2016,The Night Before,We Did Not Kill Jesus!,tt3530002 3IiKTJztqFY,2015.0,10,10,2016,The Night Before,A Christmas Miracle,tt3530002 oQjMZTetuEg,2015.0,7,10,2016,The Night Before,Sleigh Ride Car Chase,tt3530002 IgrJkJ8NYrw,2015.0,5,10,2016,The Night Before,Do I Look Weird?,tt3530002 VLXwMhs4ODU,2015.0,6,10,2016,The Night Before,Looking Into Your Soul,tt3530002 w4-b-D0iByQ,2015.0,2,10,2016,The Night Before,The Weed of Christmas Present,tt3530002 b-_C0lWgga0,2015.0,1,10,2016,The Night Before,Toy Store Runaway,tt3530002 NHDA6rk-bek,2015.0,4,10,2016,The Night Before,You Bled in My Drink!,tt3530002 wwDCSzZx37I,2015.0,3,10,2016,The Night Before,This Baby is a Mistake,tt3530002 t_wR8zbM5VI,2011.0,10,10,2016,Arthur Christmas,All the Santas,tt1430607 YpnqA-vr53Q,2011.0,8,10,2016,Arthur Christmas,Scared of Everything,tt1430607 mqpQgFfidcA,2011.0,9,10,2016,Arthur Christmas,Season's Greetings From Mankind,tt1430607 IRRYuq7qYk4,2011.0,7,10,2016,Arthur Christmas,Nice Kitties,tt1430607 v-OKZSh7tQ4,2011.0,5,10,2016,Arthur Christmas,Going Through Canada,tt1430607 vF3sZj6ge18,2011.0,6,10,2016,Arthur Christmas,Man-Eating Lions,tt1430607 QpqCLenOeAM,2011.0,2,10,2016,Arthur Christmas,Operation Santa Claus Is Coming to Town,tt1430607 Hi_NmfSbE3g,2011.0,3,10,2016,Arthur Christmas,Risk of Mooing: 98 Percent,tt1430607 AxpzOZT_C0o,2011.0,4,10,2016,Arthur Christmas,Dash Away!,tt1430607 oLUmNV0tmMo,2011.0,1,10,2016,Arthur Christmas,The Elf Battalion,tt1430607 bVKJscj58DI,2012.0,1,10,2016,The Pirates! Band of Misfits,Ham Nite!,tt1430626 KLIB40d6Pz8,2012.0,2,10,2016,The Pirates! Band of Misfits,Attacking Charles Darwin,tt1430626 8HO4C01n00c,2012.0,3,10,2016,The Pirates! Band of Misfits,Runaway Bathtub,tt1430626 M1uBjOpTa6Y,2012.0,6,10,2016,The Pirates! Band of Misfits,Stick 'Em Up,tt1430626 7SClmJTqKo0,2012.0,5,10,2016,The Pirates! Band of Misfits,He's a Pirate!,tt1430626 Eva9_scd290,2012.0,4,10,2016,The Pirates! Band of Misfits,Here's Polly!,tt1430626 ajb31pJMQmw,2012.0,9,10,2016,The Pirates! Band of Misfits,Dodo is Off the Menu,tt1430626 ip1igmoPSD8,2012.0,8,10,2016,The Pirates! Band of Misfits,I'm Not Crying,tt1430626 g3svdzmBtic,2012.0,10,10,2016,The Pirates! Band of Misfits,"Welcome Back, Captain",tt1430626 TZ2ryw04fx4,2012.0,7,10,2016,The Pirates! Band of Misfits,A Pirate No More,tt1430626 awkGgPALfho,2015.0,2,10,2016,Hotel Transylvania 2,Werewolf Birthday Party,tt2510894 ft9XnHcLYiI,2015.0,1,10,2016,Hotel Transylvania 2,Drac's Social Media Game,tt2510894 8fGU90-I_H4,2015.0,3,10,2016,Hotel Transylvania 2,Wayne the Were-Wussy,tt2510894 7y9stFHCvEY,2015.0,4,10,2016,Hotel Transylvania 2,Mummy Mistake,tt2510894 NNouwnR8QQw,2015.0,6,10,2016,Hotel Transylvania 2,Learning to Fly,tt2510894 RkINjKcnVuY,2015.0,5,10,2016,Hotel Transylvania 2,Camp Vamp,tt2510894 n1lQR-GjWYw,2015.0,9,10,2016,Hotel Transylvania 2,Family Bat Fight,tt2510894 D4_CGzg3fmQ,2015.0,10,10,2016,Hotel Transylvania 2,I'm in Love With a Monster,tt2510894 oOp7Q_xw94I,2015.0,7,10,2016,Hotel Transylvania 2,You Can't Change Him,tt2510894 Cf5dlMw2d7s,2015.0,8,10,2016,Hotel Transylvania 2,Dennis Gets His Fangs,tt2510894 gpkncObsNqY,2012.0,2,10,2016,Hotel Transylvania,Welcome to ! Scene,tt0837562 Axru07JeBig,2012.0,1,10,2016,Hotel Transylvania,Daddy's Girl Scene,tt0837562 uBPs4AHD52Y,2012.0,3,10,2016,Hotel Transylvania,Pouty Bat Face Scene,tt0837562 vHBKdIq9RGs,2012.0,4,10,2016,Hotel Transylvania,Johnnystein Scene,tt0837562 tj3Trywp_zk,2012.0,6,10,2016,Hotel Transylvania,The Legend of Lady Lubov Scene,tt0837562 2JMmof1eg1s,2012.0,5,10,2016,Hotel Transylvania,Pool Party! Scene,tt0837562 zjiAUjrvTrw,2012.0,7,10,2016,Hotel Transylvania,Where Did the Time Go? Scene,tt0837562 El0_VgXqgXU,2012.0,9,10,2016,Hotel Transylvania,Monster Festival Scene,tt0837562 _AgBIeTHzTM,2012.0,10,10,2016,Hotel Transylvania,The Zing Song Scene,tt0837562 JtuMPxXQ2l4,2012.0,8,10,2016,Hotel Transylvania,Tracking Johnny Scene,tt0837562 XRx0KtjPoX0,2015.0,2,10,2016,Goosebumps,Sucked Back Into the Book,tt1051904 v3H9-sHDZSA,2015.0,1,10,2016,Goosebumps,The Abominable Snowman of Pasadena,tt1051904 JIqfgLLZhAk,2015.0,4,10,2016,Goosebumps,Indestructible Gnomes,tt1051904 AtJ5phl1iVE,2015.0,3,10,2016,Goosebumps,Unhappy Slappy,tt1051904 HmwZxnQbox8,2015.0,6,10,2016,Goosebumps,Werewolf On Aisle 2,tt1051904 wk-P07PoFAk,2015.0,5,10,2016,Goosebumps,Attack of the Giant Praying Mantis,tt1051904 c0-3FQ-_SAg,2015.0,7,10,2016,Goosebumps,Silver Fillings,tt1051904 me9Vweatkto,2015.0,10,10,2016,Goosebumps,"Open the Book, Scaredy Cat",tt1051904 gEC1WbYzZYk,2015.0,9,10,2016,Goosebumps,The Blob That Ate Everyone,tt1051904 QxNZJZrkdM0,2015.0,8,10,2016,Goosebumps,There's No Escaping From Us,tt1051904 i7hF7BAKV_I,2013.0,8,10,2016,Evil Dead,Natalie's Got a Nail Gun,tt1288558 ykeqEK7m5oI,2013.0,10,10,2016,Evil Dead,Evil Meets Chainsaw,tt1288558 mk2OptcsXuo,2013.0,9,10,2016,Evil Dead,"Blood Falls, Demon Rises",tt1288558 s6lrBldtwVk,2013.0,2,10,2016,Evil Dead,Getting Inside Mia,tt1288558 5PikP1s15F0,2013.0,4,10,2016,Evil Dead,You Are All Going To Die Tonight,tt1288558 XAuxvhZzUhE,2013.0,1,10,2016,Evil Dead,I Will Rip Your Soul Out,tt1288558 FHXzsBsOVjY,2013.0,6,10,2016,Evil Dead,Bloody Kiss,tt1288558 t4pLZtTuryE,2013.0,5,10,2016,Evil Dead,Face Carving and Head Bashing,tt1288558 8k9h0yE0XIg,2013.0,3,10,2016,Evil Dead,Scalding Shower,tt1288558 IMOAEKRuaeI,2013.0,7,10,2016,Evil Dead,Cutting Off the Arm,tt1288558 pVfx0OQcmBk,2016.0,8,10,2016,The Shallows,Jellyfish Swim,tt4052882 ydFjplhKYng,2016.0,3,10,2016,The Shallows,Stitches,tt4052882 DzpGeXWsQKY,2016.0,10,10,2016,The Shallows,Impaled,tt4052882 ohoPpyAG0zA,2016.0,9,10,2016,The Shallows,Fighting with Fire,tt4052882 W9DAFX_ieak,2016.0,6,10,2016,The Shallows,30 Seconds,tt4052882 1UqGimF2hkI,2016.0,7,10,2016,The Shallows,I Love You,tt4052882 GwyuRxkac2Q,2016.0,1,10,2016,The Shallows,Shark Attack,tt4052882 ru_PLKD7w4c,2016.0,5,10,2016,The Shallows,Get Out of the Water!,tt4052882 vT4HrbzMVgI,2016.0,2,10,2016,The Shallows,Swim for Safety,tt4052882 w8IS7igzQxw,2016.0,4,10,2016,The Shallows,Stop!,tt4052882 zdTmdoeLgAc,2012.0,1,10,2016,Underworld: Awakening,Our Only Chance of Survival,tt1496025 6OizpcahOZA,2012.0,2,10,2016,Underworld: Awakening,What Is This Place?,tt1496025 ujcglOdwI1E,2012.0,3,10,2016,Underworld: Awakening,Do You Know Her?,tt1496025 A5fwu8OlNG0,2012.0,4,10,2016,Underworld: Awakening,Lycan Chase,tt1496025 4HSdmiu24xQ,2012.0,7,10,2016,Underworld: Awakening,"Find Her, and Destroy Her",tt1496025 M5F8dw_FfPc,2012.0,5,10,2016,Underworld: Awakening,Defending the Coven,tt1496025 ow0vNLhDNzI,2012.0,8,10,2016,Underworld: Awakening,Elevator Drop,tt1496025 tWuBw5082gI,2012.0,9,10,2016,Underworld: Awakening,It's Worse If You Try To Fight It,tt1496025 ZtQD3EqQAC0,2012.0,10,10,2016,Underworld: Awakening,Grenade Punch,tt1496025 o0wTt_xDlpk,2012.0,6,10,2016,Underworld: Awakening,Battling the Beast,tt1496025 _-JtvyLvSlo,2009.0,1,10,2016,Underworld: Rise of the Lycans,A Lycan Unbounded,tt0834001 19u6S4Fqnss,2009.0,8,10,2016,Underworld: Rise of the Lycans,Lucian's Escape,tt0834001 VDGKUOjQ-Zs,2009.0,2,10,2016,Underworld: Rise of the Lycans,Thirty Lashings,tt0834001 2tWRTtI7huk,2009.0,3,10,2016,Underworld: Rise of the Lycans,We Can Be Slaves Or We Can Be Lycans,tt0834001 4frYhsIGjJU,2009.0,6,10,2016,Underworld: Rise of the Lycans,For the Sake of Your Grandchild,tt0834001 51Kfo8X3V18,2009.0,7,10,2016,Underworld: Rise of the Lycans,Goodbye My Love,tt0834001 emW6TopzEe0,2009.0,9,10,2016,Underworld: Rise of the Lycans,Lycan Revenge,tt0834001 bmeh1eFkyHg,2009.0,10,10,2016,Underworld: Rise of the Lycans,Lucian Versus Viktor,tt0834001 Xq_9TDk-hj0,2009.0,5,10,2016,Underworld: Rise of the Lycans,Escaped,tt0834001 xZXOBmW-7Jk,2009.0,4,10,2016,Underworld: Rise of the Lycans,Are You With Me?,tt0834001 tqqSIT1D0vU,2006.0,10,10,2016,Underworld: Evolution,Battling the Brothers,tt0401855 L9pxOwibtWQ,2006.0,9,10,2016,Underworld: Evolution,Michael Rises,tt0401855 DNAwkyyq3kM,2006.0,8,10,2016,Underworld: Evolution,Selene vs. William,tt0401855 Pw8FO7eRAoY,2006.0,7,10,2016,Underworld: Evolution,Too Late,tt0401855 StS0_Y5Dh4Q,2006.0,5,10,2016,Underworld: Evolution,Marcus Comes For the Key,tt0401855 EegnTsyPDF4,2006.0,6,10,2016,Underworld: Evolution,A True God Has No Father,tt0401855 9PllxjcicFo,2006.0,4,10,2016,Underworld: Evolution,You Don't Scare Me,tt0401855 LCD5BDaqANw,2006.0,3,10,2016,Underworld: Evolution,You Will Give Me What I Want,tt0401855 KwIg2QMWVOU,2006.0,1,10,2016,Underworld: Evolution,Imprisonment For All Time,tt0401855 R0p6s2L8yk4,2006.0,2,10,2016,Underworld: Evolution,Saving Michael,tt0401855 FQjvyy8gOS0,2002.0,9,10,2016,Eight Crazy Nights,Bum Biddy,tt0271263 esHXIrYgSzo,2002.0,10,10,2016,Eight Crazy Nights,"It's Your Moment, Whitey",tt0271263 mA1FWjriD60,2002.0,7,10,2016,Eight Crazy Nights,That's a Technical Foul,tt0271263 t-dJ4I7rGp8,2002.0,8,10,2016,Eight Crazy Nights,The Dukesberry All-Star Patch,tt0271263 Q-MVoUlU-OY,2002.0,6,10,2016,Eight Crazy Nights,It's a Home Invasion Robbery!,tt0271263 s3PbszHh8vE,2002.0,5,10,2016,Eight Crazy Nights,But That Was Long Ago,tt0271263 bGQ9QznPQ_M,2002.0,4,10,2016,Eight Crazy Nights,Eat That Nut Strap,tt0271263 f7vRR8-n_Rc,2002.0,1,10,2016,Eight Crazy Nights,Davey's Song,tt0271263 fVVoh_Xh0xo,2002.0,3,10,2016,Eight Crazy Nights,The Jock Strap Bet,tt0271263 ehNNyfvhcto,2002.0,2,10,2016,Eight Crazy Nights,Ref Seizure,tt0271263 31ZCtppXSoU,2006.0,5,10,2016,Monster House,Hungry House,tt0385880 xLD9iygFMgA,2006.0,10,10,2016,Monster House,Death-Defying Dynamite Destruction,tt0385880 M_HMbS9bEhM,2006.0,9,10,2016,Monster House,The Right Thing to Do,tt0385880 41FRwoAJkpw,2006.0,8,10,2016,Monster House,The House is Alive!,tt0385880 ycyXqWAMzZ8,2006.0,7,10,2016,Monster House,"She Died, But She Didn't Leave",tt0385880 jBxnTnikZEo,2006.0,6,10,2016,Monster House,Nature's Emergency Exit,tt0385880 JXxF-_0u_qU,2006.0,4,10,2016,Monster House,Little Vacuum Cleaner Dummy,tt0385880 ATDt5EBims4,2006.0,3,10,2016,Monster House,Detectable Movement!,tt0385880 TE4ZWi6xkZo,2006.0,1,10,2016,Monster House,Stay Away From My House!,tt0385880 4VX7ZvbbLrE,2006.0,2,10,2016,Monster House,Ding Dong Ditch Doom,tt0385880 vdED1lRQ-N8,1997.0,10,10,2016,I Know What You Did Last Summer,I Still Know,tt0119345 IE1ZeXC4vtg,1997.0,5,10,2016,I Know What You Did Last Summer,What Are You Waiting For?,tt0119345 TGoICPqXjAY,1997.0,9,10,2016,I Know What You Did Last Summer,Make Sure He's Really Dead,tt0119345 OgaJLKX1sUo,1997.0,6,10,2016,I Know What You Did Last Summer,A Killer in the Balcony,tt0119345 UDcu3Pg8LiI,1997.0,1,10,2016,I Know What You Did Last Summer,I Think He's Dead,tt0119345 xGCLACE7SUI,1997.0,2,10,2016,I Know What You Did Last Summer,We'll Dump the Body,tt0119345 g3a9qZnTzJQ,1997.0,7,10,2016,I Know What You Did Last Summer,The Killer's Trap,tt0119345 tdMF1i45oks,1997.0,3,10,2016,I Know What You Did Last Summer,We Take This To Our Grave,tt0119345 gLLgGSdfy3I,1997.0,8,10,2016,I Know What You Did Last Summer,No Escape,tt0119345 TAZ3_IuoGew,1997.0,4,10,2016,I Know What You Did Last Summer,I Know,tt0119345 dx07n7Eov0o,1996.0,8,10,2016,The Craft,You're Going to Kill Yourself Tonight,tt0115963 IXXv4DMkBpM,1996.0,4,10,2016,The Craft,"As I Will It, So Shall It Be",tt0115963 sHFXRjwKOG8,1996.0,10,10,2016,The Craft,"I Bind You, Nancy",tt0115963 8EUTXbhTFg8,1996.0,9,10,2016,The Craft,"Relax, It's Only Magic",tt0115963 HUJtn_Bwm-w,1996.0,6,10,2016,The Craft,He's Gotta Pay,tt0115963 yuochlbdRmQ,1996.0,7,10,2016,The Craft,Snakes For Sarah,tt0115963 arf7Bi4CCmU,1996.0,5,10,2016,The Craft,Nancy Walks on Water,tt0115963 kZMKLwtkLrI,1996.0,3,10,2016,The Craft,One Hundred and Seventy-Five Thousand Dollars,tt0115963 6FVwlgBDCo0,1996.0,1,10,2016,The Craft,Blessed Be,tt0115963 GBTN4LA7pTs,1996.0,2,10,2016,The Craft,"Light As a Feather, Stiff As a Board",tt0115963 LxxFi7igv2A,2009.0,1,10,2016,Angels & Demons,The Diagram of Truth,tt0808151 99dOPdlLIw0,2009.0,2,10,2016,Angels & Demons,The Pantheon,tt0808151 Ur1StpqHA1M,2009.0,3,10,2016,Angels & Demons,Murder in Saint Peter's Square,tt0808151 B98YODkeEqY,2009.0,4,10,2016,Angels & Demons,Running Out of Air,tt0808151 41AhzyLUBFM,2009.0,5,10,2016,Angels & Demons,Burned at the Stake,tt0808151 Pw0CzPQdaE4,2009.0,6,10,2016,Angels & Demons,Drowning in the Trevi Fountain,tt0808151 I_v5km4eDik,2009.0,7,10,2016,Angels & Demons,Antimatter Explosion,tt0808151 wQ5uso-R6aY,2009.0,8,10,2016,Angels & Demons,We Are at War,tt0808151 9F9KKPakio4,2009.0,9,10,2016,Angels & Demons,Self-Immolation,tt0808151 xzW255065XQ,2009.0,10,10,2016,Angels & Demons,Science and Faith,tt0808151 OY5yOdITL-8,2008.0,7,10,2016,Journey to the Center of the Earth,Stuck and Suffocating,tt0373051 kp2u8LURkgQ,2008.0,4,10,2016,Journey to the Center of the Earth,The Bridge of Lava,tt0373051 H2cgoxJHSPs,2008.0,8,10,2016,Journey to the Center of the Earth,Breaching the Surface,tt0373051 LYsdYDbW_Iw,2008.0,1,10,2016,Journey to the Center of the Earth,Disarming Maneuvers,tt0373051 V0dVNpmzCyg,2008.0,5,10,2016,Journey to the Center of the Earth,15 Seconds to Impact,tt0373051 zMzCxBRDhlA,2008.0,10,10,2016,Journey to the Center of the Earth,The Race to the Teleporter,tt0373051 O2hN7307Nio,2008.0,2,10,2016,Journey to the Center of the Earth,Teleportation Disappearance,tt0373051 av5eE5HTVzs,2008.0,9,10,2016,Journey to the Center of the Earth,Life Inside Magma,tt0373051 3O13oeNWWfU,2008.0,3,10,2016,Journey to the Center of the Earth,Outrunning the Dinosaur,tt0373051 sQcgpyPhaIA,2008.0,6,10,2016,Journey to the Center of the Earth,Let's Do This Thing!,tt0373051 4tEfbGzxI-E,2012.0,10,10,2016,Nazis at the Center of the Earth,Bobble-Headed Zombie Nazi,tt2130142 l3zxPrDoN74,2012.0,10,10,2016,Rise of the Zombies,Surviving the Zombie Apocalypse,tt2236182 61LA1soyYkg,2012.0,9,10,2016,Rise of the Zombies,The Doubtful Doctor,tt2236182 GMXgGPnbnow,2012.0,5,10,2016,Rise of the Zombies,Zombie Baby,tt2236182 jhvqJs7apdo,2012.0,8,10,2016,Rise of the Zombies,Light 'Em Up!,tt2236182 jDnp-EKD-Qw,2012.0,7,10,2016,Rise of the Zombies,Hopeless,tt2236182 Q9NJiwYZt4Q,2012.0,1,10,2016,Rise of the Zombies,Lockdown,tt2236182 phTSTiwPBUk,2012.0,6,10,2016,Rise of the Zombies,Snack Time,tt2236182 zxO4SgwCONk,2012.0,3,10,2016,Rise of the Zombies,A Necessary Evil,tt2236182 HtC2c6DQvSE,2012.0,2,10,2016,Rise of the Zombies,Escaping Alcatraz,tt2236182 7jrjZ5DIEzU,2012.0,4,10,2016,Rise of the Zombies,Golden Gate Zombies,tt2236182 cbBTkI-JxVg,2013.0,2,10,2016,Zombie Night,Zombie Slayer Parenting,tt2978716 7RAzClJ4XLk,2013.0,10,10,2016,Zombie Night,"Pancakes, Anyone?",tt2978716 ek_w1fGGUT0,2013.0,9,10,2016,Zombie Night,The Only Safe Place is a Coffin,tt2978716 S8HUYXl6grQ,2013.0,6,10,2016,Zombie Night,From Father to Flesh Eater,tt2978716 HJwSvsEaai8,2013.0,8,10,2016,Zombie Night,"Dammit, Not the Cemetary",tt2978716 R-Rc1lQMjQc,2013.0,7,10,2016,Zombie Night,Bye Bye Boyfriend,tt2978716 MiQsEACG7_w,2013.0,4,10,2016,Zombie Night,The Undead Love Children,tt2978716 DFgmFM-w0Rk,2013.0,5,10,2016,Zombie Night,A Greenhouse of Ghouls,tt2978716 kRZxEorotnY,2013.0,1,10,2016,Zombie Night,Don't Let Them In!,tt2978716 6EM223j0wls,2013.0,3,10,2016,Zombie Night,Zombie Mom,tt2978716 9V8IRFmXcQI,2012.0,3,10,2016,Nazis at the Center of the Earth,Beyond the Void,tt2130142 B9aW-CumBFg,2012.0,2,10,2016,Nazis at the Center of the Earth,Flesh and Blood,tt2130142 VwB6p1A-FwA,2012.0,8,10,2016,Nazis at the Center of the Earth,They're Going to Infect the Planet,tt2130142 VtGNNvJF5Qk,2012.0,9,10,2016,Nazis at the Center of the Earth,Silje's Sacrifice,tt2130142 d7vy5NkiJJE,2012.0,4,10,2016,Nazis at the Center of the Earth,Vaporized,tt2130142 tn24Ca1sslc,2012.0,7,10,2016,Nazis at the Center of the Earth,Hitler the Headslasher,tt2130142 oKTtRDYwIG4,2012.0,5,10,2016,Nazis at the Center of the Earth,Don't Kill Our Baby,tt2130142 8jWoq1fTwJ8,2012.0,1,10,2016,Nazis at the Center of the Earth,Facial Extraction,tt2130142 9dDKx-vREdQ,2012.0,6,10,2016,Nazis at the Center of the Earth,Hitler Reborn,tt2130142 RF2gzBNsZQ4,2013.0,10,10,2016,Atlantic Rim,Takin' it to Outer Space,tt2740710 lBs_nLdio1M,2013.0,9,10,2016,Atlantic Rim,Red Jams the Nuke,tt2740710 ndZVwNuTYa4,2013.0,11,11,2016,Mindless Behavior: All Around the World,The Movement,tt2621126 glNH68Iaa3E,2013.0,8,10,2016,Atlantic Rim,Some Jackass Ordered a Nuclear Strike,tt2740710 krBjSShSxu0,2013.0,7,10,2016,Atlantic Rim,The Suits Feel Pain,tt2740710 F8lEfmjN9C0,2013.0,6,10,2016,Atlantic Rim,Biobots,tt2740710 pDCzYY0bjbc,2013.0,5,10,2016,Atlantic Rim,Comin' in Hot,tt2740710 eCXv9LnSKeA,2013.0,2,10,2016,Atlantic Rim,Evacuate the Beach,tt2740710 YAhyJTSt_9o,2013.0,1,10,2016,Atlantic Rim,Launching Project Armada,tt2740710 04BZh6E-Nck,2013.0,4,10,2016,Atlantic Rim,It Hatched,tt2740710 AVpd8G_48FM,2013.0,3,10,2016,Atlantic Rim,Here's Your Target!,tt2740710 EwWuQOBBcFA,2015.0,3,10,2016,Avengers Grimm,A Swarm of Thralls,tt4296026 EN7SYqdbsm4,2015.0,1,10,2016,Avengers Grimm,No Life is Worth a Kingdom,tt4296026 sS1L9wZXFic,2015.0,2,10,2016,Avengers Grimm,Red Sends a Message,tt4296026 tUr2KIu-nvE,2015.0,10,10,2016,Avengers Grimm,No More Deals!,tt4296026 SnKEQA88PXg,2015.0,8,10,2016,Avengers Grimm,Help Me Close the Portal,tt4296026 VPXC2aQZyEs,2015.0,5,10,2016,Avengers Grimm,We Are Avengers,tt4296026 taAwMJ4hsdk,2015.0,9,10,2016,Avengers Grimm,All the Better to Kill You With,tt4296026 V8oMGhl8FFg,2015.0,7,10,2016,Avengers Grimm,Does This Look Like Order?,tt4296026 6Z5bmj561YM,2015.0,6,10,2016,Avengers Grimm,Red vs. The Wolf,tt4296026 7a-OSvw0tjg,2015.0,4,10,2016,Avengers Grimm,Gonna Kill Me a Princess,tt4296026 kAyPdsYr2K0,2013.0,7,10,2016,Age of Dinosaurs,Chompers vs. Chopper,tt2518926 JaEv5uq8sJs,2013.0,2,10,2016,Age of Dinosaurs,Dino Destruction,tt2518926 3pjwMG4hrFw,2013.0,6,10,2016,Age of Dinosaurs,Mauled at the Mall,tt2518926 RQZFCcsvtew,2013.0,3,10,2016,Age of Dinosaurs,Dad Decapitates a Dinosaur,tt2518926 ioKNba1RRys,2013.0,8,10,2016,Age of Dinosaurs,Dino Whackin',tt2518926 VwSWeeg9RSg,2013.0,1,10,2016,Age of Dinosaurs,It Smells the Blood,tt2518926 LtGQwP3jiUk,2013.0,9,10,2016,Age of Dinosaurs,Follow That Pteranodon!,tt2518926 Jch6T39j20E,2013.0,5,10,2016,Age of Dinosaurs,Dino Driving,tt2518926 gvBe38KoiVc,2013.0,4,10,2016,Age of Dinosaurs,Big Dinosaurs,tt2518926 qoftQY-P85o,2013.0,10,10,2016,Age of Dinosaurs,Bye Bye Birdie,tt2518926 BS82G9f2Xaw,2010.0,10,11,2016,Centurion,A Bloody Victory,tt1020558 8kAtef-L6do,2010.0,11,11,2016,Centurion,Betrayed by Romans,tt1020558 fG1_01gDUoc,2010.0,9,11,2016,Centurion,I'm Tired of Running,tt1020558 YrIvuBpSGio,2010.0,6,11,2016,Centurion,We Have to Jump,tt1020558 38Zst1IDgIs,2010.0,8,11,2016,Centurion,Left to the Wolves,tt1020558 0M0dGWXQt6Y,2010.0,7,11,2016,Centurion,Night Raid,tt1020558 CRbtvxbu6fg,2010.0,5,11,2016,Centurion,She-Wolf,tt1020558 LpP3_e3ioiQ,2010.0,3,11,2016,Centurion,The Massacre of the Ninth Legion,tt1020558 B4jUZUgKhFQ,2010.0,4,11,2016,Centurion,Saving the General,tt1020558 XS7Tpc7yY8Y,2010.0,2,11,2016,Centurion,Rescuing a Roman,tt1020558 toe0MwxNN1o,2010.0,1,11,2016,Centurion,Kill Them All,tt1020558 AMOb_w6Jfug,1993.0,2,12,2016,Six Degrees of Separation,"Chaos, Control",tt0108149 EUB6R41g7cA,1993.0,9,12,2016,Six Degrees of Separation,,tt0108149 wkyZ8pJD0Uo,1993.0,1,12,2016,Six Degrees of Separation,I Was Mugged,tt0108149 7rGY9Tw2hSw,1993.0,5,12,2016,Six Degrees of Separation,The Worst Kind of Yellowness,tt0108149 QnMDpNk1DFY,1993.0,7,12,2016,Six Degrees of Separation,I Loved That Shirt!,tt0108149 9e06PDg1pgs,1993.0,4,12,2016,Six Degrees of Separation,Everybody's a Phony,tt0108149 DUJHFbmzhtQ,1993.0,3,12,2016,Six Degrees of Separation,The Life of Sidney Poitier,tt0108149 m5Qi_YVxd5M,1993.0,11,12,2016,Six Degrees of Separation,We'll Have a Wonderful Life,tt0108149 Rq-hSPn_Elc,1993.0,12,12,2016,Six Degrees of Separation,A Terrible Match,tt0108149 HXtYMxtMlhI,1993.0,10,12,2016,Six Degrees of Separation,Paul Seduces Rick,tt0108149 PnZpYoBuiGw,1993.0,8,12,2016,Six Degrees of Separation,Stripping for Info,tt0108149 QzzcHhFa66Q,1993.0,6,12,2016,Six Degrees of Separation,A Painter Losing a Painting,tt0108149 KtHucDG9t9k,2011.0,6,11,2016,Little Birds,Making Out,tt1623745 XXcdcrn7usw,2011.0,11,11,2016,Little Birds,Saving Lily,tt1623745 AtZDj7gset0,2011.0,10,11,2016,Little Birds,The Pyscho,tt1623745 s0bZ80iuZdQ,2011.0,9,11,2016,Little Birds,Things Have Changed,tt1623745 XVyVUZrzGrE,2011.0,8,11,2016,Little Birds,The Pervert,tt1623745 pQ7F6S4FrdY,2011.0,7,11,2016,Little Birds,I Don't Know Anything,tt1623745 sfObDKSfaZA,2011.0,5,11,2016,Little Birds,Apologize to the Girls,tt1623745 2ul7iwAUMN8,2011.0,4,11,2016,Little Birds,Shoplifting,tt1623745 KtDkR9YdBS0,2011.0,3,11,2016,Little Birds,I Kissed That Boy,tt1623745 H5ocMbhjb-M,2011.0,2,11,2016,Little Birds,Why Don't You Cut It Off?,tt1623745 fi3K18p1Pww,2011.0,1,11,2016,Little Birds,The Train's Coming,tt1623745 NUI_ZNu-GXM,2011.0,7,12,2016,High Road,John Wayne Gacy Had a Gun,tt1692084 QGq7H8ku2cI,2011.0,12,12,2016,High Road,I Love You Forever,tt1692084 DhW1_LX5xZg,2011.0,11,12,2016,High Road,Drag Queen Dad,tt1692084 M6aTyZE_Zss,2011.0,10,12,2016,High Road,Horny Doctor,tt1692084 AtDwOreXh-k,2011.0,9,12,2016,High Road,Rude Hooker,tt1692084 Q1ITCuUHAnY,2011.0,8,12,2016,High Road,You Aren't Like Jerry Maguire,tt1692084 Tn1YK5UEr_c,2011.0,6,12,2016,High Road,A Van and a Natural Healer,tt1692084 38tBs7AinQA,2011.0,5,12,2016,High Road,Sexual Harrassment,tt1692084 lAebdantAPM,2011.0,2,12,2016,High Road,You're a Drug Dealer,tt1692084 LHEPabAiiTo,2011.0,3,12,2016,High Road,Grab All My Weed!,tt1692084 XLJwlFShttg,2011.0,4,12,2016,High Road,The Kill Zone,tt1692084 dH5RKJLZ7HQ,2011.0,1,12,2016,High Road,Mouthful of Smacker,tt1692084 bzoIipqEbXE,2011.0,12,12,2016,Intruders,The End of Hollow Face,tt1634121 JHlNsy6rMUI,2011.0,11,12,2016,Intruders,Ghostly Tentacles,tt1634121 DeoXtC4c5Ck,2011.0,8,12,2016,Intruders,Ghost Attack,tt1634121 ABAYY_S63CE,2011.0,9,12,2016,Intruders,Hollow Face Returns,tt1634121 69yTsxMTNnQ,2011.0,10,12,2016,Intruders,What Do You See?,tt1634121 h1vDFFr7nNs,2011.0,7,12,2016,Intruders,What Are You Scared of?,tt1634121 i7eR-SzImZQ,2011.0,5,12,2016,Intruders,Hollow Face Hauntings,tt1634121 6dySVi75n7M,2011.0,6,12,2016,Intruders,Shapes in the Dark,tt1634121 QfNYdXHjGV0,2011.0,4,12,2016,Intruders,A Dark Confession,tt1634121 KtZQO636AQw,2011.0,3,12,2016,Intruders,The Story of Hollow Face,tt1634121 EY18WYrcYHw,2011.0,2,12,2016,Intruders,A Ghostly Dream,tt1634121 VhTqGpjZzfk,2011.0,1,12,2016,Intruders,Balcony Haunting,tt1634121 U6CQhcLjjfY,2008.0,1,10,2016,Donkey Punch,We're All Going Down,tt0988849 mwVsJoafaP0,2008.0,10,10,2016,Donkey Punch,The Last Two Alive,tt0988849 GnAKqKB8ryc,2008.0,9,10,2016,Donkey Punch,A Grave Mistake,tt0988849 m6-AzGII9Ts,2008.0,8,10,2016,Donkey Punch,You Want Me to Help You?,tt0988849 sCSUnot0u30,2008.0,7,10,2016,Donkey Punch,Torture,tt0988849 wojHQib2wn4,2008.0,6,10,2016,Donkey Punch,Breaking the Glass,tt0988849 tcH0KwS_YEA,2008.0,5,10,2016,Donkey Punch,Flares,tt0988849 yLj0FvavCe0,2008.0,3,10,2016,Donkey Punch,Buried at Sea,tt0988849 sHhFAITCEPs,2008.0,4,10,2016,Donkey Punch,A Tense Dinner,tt0988849 u0aPph3nUwQ,2008.0,2,10,2016,Donkey Punch,The Right Thing to Do,tt0988849 oX5iDM-DnQ4,2013.0,9,11,2016,Mindless Behavior: All Around the World,My Girl,tt2621126 dlwR6MhC2Hc,2013.0,10,11,2016,Mindless Behavior: All Around the World,Reunion with Moms,tt2621126 08UMKwdtWk8,2013.0,8,11,2016,Mindless Behavior: All Around the World,Michael Jackson's Old House,tt2621126 FxwaraxX89Y,2013.0,6,11,2016,Mindless Behavior: All Around the World,#1 Girl,tt2621126 -D3PMCmZot0,2013.0,7,11,2016,Mindless Behavior: All Around the World,Live to Live for Others,tt2621126 ouN3vJJmPgw,2013.0,5,11,2016,Mindless Behavior: All Around the World,Success or Fame,tt2621126 b_5M03JfdQo,2013.0,4,11,2016,Mindless Behavior: All Around the World,Prodigy,tt2621126 iab2tzXfWsU,2013.0,3,11,2016,Mindless Behavior: All Around the World,Ray Ray,tt2621126 LPEVs0FV7Os,2013.0,1,11,2016,Mindless Behavior: All Around the World,Princeton,tt2621126 y-PhkF8e4rc,2013.0,2,11,2016,Mindless Behavior: All Around the World,Roc Royal,tt2621126 1_uvjP9QZcE,2005.0,10,10,2016,Enron: The Smartest Guys in the Room,The Definition of Wrong,tt1016268 eYR0zgfAcQk,2005.0,9,10,2016,Enron: The Smartest Guys in the Room,Bankruptcy,tt1016268 _08wo4Rxayk,2005.0,8,10,2016,Enron: The Smartest Guys in the Room,The Ship Is Sinking,tt1016268 puGracMskK8,2005.0,6,10,2016,Enron: The Smartest Guys in the Room,Useful Idiots,tt1016268 9ejzBYus8qE,2005.0,7,10,2016,Enron: The Smartest Guys in the Room,"Burn, Baby, Burn",tt1016268 sHAoAwDUkBo,2005.0,4,10,2016,Enron: The Smartest Guys in the Room,Perception of Demand,tt1016268 gaZOIAJJ6Kk,2005.0,5,10,2016,Enron: The Smartest Guys in the Room,Something Didn't Add Up,tt1016268 IUu1T75RjTo,2005.0,2,10,2016,Enron: The Smartest Guys in the Room,Shredded,tt1016268 vBasqtPRco0,2005.0,3,10,2016,Enron: The Smartest Guys in the Room,The Selfish Gene,tt1016268 jm7zMNBEgmA,2005.0,1,10,2016,Enron: The Smartest Guys in the Room,Cliff's Exit,tt1016268 EFlCixq_HEM,2015.0,10,10,2016,Man Up,F*** the Past,tt3064298 kZgaz49f5aE,2015.0,8,10,2016,Man Up,Grand Romantic Gestures,tt3064298 Vjc0wdQtl64,2015.0,9,10,2016,Man Up,Jack's Quest,tt3064298 gsYcnpq1HBc,2015.0,6,10,2016,Man Up,Cynic vs. Romantic,tt3064298 1Gnmq6nB1ws,2015.0,7,10,2016,Man Up,Finally Moving On,tt3064298 mwrMEQnMRCQ,2015.0,5,10,2016,Man Up,"Ready, Steady, Tactical Puke",tt3064298 Ux6L0eRqDGY,2015.0,4,10,2016,Man Up,She's Nancy,tt3064298 XKrIeZTVBQ4,2015.0,3,10,2016,Man Up,Call Me Jessica,tt3064298 RDrZm6eEY6E,2015.0,1,10,2016,Man Up,Don't Seal Up Just Yet,tt3064298 0bRr_MER6Vg,2015.0,2,10,2016,Man Up,It's Been Awhile,tt3064298 zTh8P8BTQVE,2013.0,12,12,2016,Home Run,A New Story,tt2051894 RCzgkvkbVI4,2013.0,11,12,2016,Home Run,Family,tt2051894 Z1MsMWSkKWE,2013.0,10,12,2016,Home Run,Are You My Dad?,tt2051894 2rq0nLbL5fg,2013.0,9,12,2016,Home Run,I Want to Be His Father,tt2051894 D6SVqGVTlFU,2013.0,8,12,2016,Home Run,Shaking It Up,tt2051894 utHcPvSz6AM,2013.0,7,12,2016,Home Run,Cory's Advice,tt2051894 u5gSeZQbbq8,2013.0,6,12,2016,Home Run,Our Yearbook,tt2051894 Yz0YrG0oJQU,2013.0,4,12,2016,Home Run,Photo-Op,tt2051894 cUy-J4YGxcE,2013.0,5,12,2016,Home Run,Coach Cory,tt2051894 UIdm6BTefb8,2013.0,3,12,2016,Home Run,Coaching Kids Baseball,tt2051894 BIW6tF1dE50,2013.0,2,12,2016,Home Run,Consequences,tt2051894 PuI5bs7mZG8,2013.0,1,12,2016,Home Run,Cory Blows Up,tt2051894 n1X2w0tinkg,2015.0,7,10,2016,By the Sea,Dance with Me,tt4034228 SWYmSp9wxUM,2015.0,10,10,2016,By the Sea,Am I a Bad Person?,tt4034228 JkeXMSrRsYI,2015.0,9,10,2016,By the Sea,I'm Barren,tt4034228 EcDcNDlil_A,2015.0,8,10,2016,By the Sea,Hurt Me,tt4034228 YCIt5jn2XPk,2015.0,6,10,2016,By the Sea,Everyone Has Many Opinions,tt4034228 U-42oAzybn4,2015.0,5,10,2016,By the Sea,Are We Perverse?,tt4034228 77326fqWeR4,2015.0,2,10,2016,By the Sea,You Make Me Sick,tt4034228 zWtQ2tYVagg,2015.0,3,10,2016,By the Sea,Are You Trying to Destroy Us?,tt4034228 ySwvsZ3KWhc,2015.0,1,10,2016,By the Sea,Why Are You Trying to Put That In My Head?,tt4034228 6MDRk-oDzAE,2015.0,4,10,2016,By the Sea,Watch With Me,tt4034228 NgQmrSNWY0U,2013.0,4,12,2016,Parkland,The Zapruder Film,tt2345112 m_adoXQ7GT4,2013.0,7,12,2016,Parkland,Change Your Name,tt2345112 q4FzgqjlrVY,2013.0,10,12,2016,Parkland,Life Magazine,tt2345112 RYgoemOYknw,2013.0,8,12,2016,Parkland,We Had Him,tt2345112 ARSK76A2xts,2013.0,12,12,2016,Parkland,Hail Mary,tt2345112 WvJZlC93jVM,2013.0,9,12,2016,Parkland,You Did This to All of Us,tt2345112 IUBx1ZoP6PA,2013.0,6,12,2016,Parkland,My Story Too,tt2345112 IR7xuySx1v0,2013.0,11,12,2016,Parkland,The Funeral,tt2345112 KGPl7ahFDEc,2013.0,5,12,2016,Parkland,This is My Body,tt2345112 g5wB0DNvM8M,2013.0,2,12,2016,Parkland,Did You Film the Parade?,tt2345112 ddrQKAMzUGI,2013.0,1,12,2016,Parkland,Right Now it is Just You,tt2345112 aRAHfPrf7C8,2013.0,3,12,2016,Parkland,Time to Say Goodbye,tt2345112 -fnJhOLKjv0,1945.0,10,10,2016,Spellbound,A Stupid Murder,tt0038109 3V2gt6bAYxM,1989.0,4,9,2016,Driving Miss Daisy,A Can of Salmon,tt0097239 HJK28cWPvH4,1989.0,3,9,2016,Driving Miss Daisy,"You Need a Chauffeur, I Need a Job",tt0097239 SQNzOyXHbYY,1989.0,6,9,2016,Driving Miss Daisy,Bathroom Break,tt0097239 9bjpF066edk,1989.0,9,9,2016,Driving Miss Daisy,Doing the Best We Can,tt0097239 NuEXMD5przE,1989.0,5,9,2016,Driving Miss Daisy,Learning to Read,tt0097239 omFpUjAzM9M,1989.0,8,9,2016,Driving Miss Daisy,You're My Best Friend,tt0097239 HqquGvHwicg,1989.0,7,9,2016,Driving Miss Daisy,Go On and Cry,tt0097239 zp-g3uxoQeE,1989.0,2,9,2016,Driving Miss Daisy,Back Seat Driver,tt0097239 p4z5ZU-dHr8,1989.0,1,9,2016,Driving Miss Daisy,I Don't Need You,tt0097239 GMk7xOOzK4E,2015.0,12,12,2016,Mr. Holmes,I'm Leaving You the House,tt3168230 SD86_k19Rx8,2015.0,11,12,2016,Mr. Holmes,The Bees Were Not to Blame,tt3168230 1fM9KjHmVNw,2015.0,10,12,2016,Mr. Holmes,Holmes Finds Roger,tt3168230 BGyHgJ9DunE,2015.0,9,12,2016,Mr. Holmes,An Incomprehensible Emptiness,tt3168230 mvYdMO5ZfYM,2015.0,8,12,2016,Mr. Holmes,The Dead Are Not So Very Far Away,tt3168230 _zjqM0Hmk2A,2015.0,7,12,2016,Mr. Holmes,Do You Regret?,tt3168230 QHYatXsRFEI,2015.0,6,12,2016,Mr. Holmes,I Can't Remember,tt3168230 hiREoiox0Tw,2015.0,5,12,2016,Mr. Holmes,Palm Reading,tt3168230 PGTXynHmp_o,2015.0,4,12,2016,Mr. Holmes,A Lesson In Beekeeping,tt3168230 Q91iEtSRiwU,2015.0,3,12,2016,Mr. Holmes,Ann's Story,tt3168230 aNQL0s6v8nI,2015.0,1,12,2016,Mr. Holmes,A Man Comes to Baker Street,tt3168230 _aePd1mFn7M,2015.0,2,12,2016,Mr. Holmes,The Forgetful Sherlock Holmes,tt3168230 YCAW0hzka8I,1945.0,5,10,2016,Spellbound,The Heart Can See Deeper,tt0038109 KTFG9YDV_8o,1945.0,7,10,2016,Spellbound,Skiing Breakthrough,tt0038109 tEptrqj1R50,1945.0,3,10,2016,Spellbound,Who Are You?,tt0038109 E8MitqqUuBI,1945.0,2,10,2016,Spellbound,Something Has Happened to Us,tt0038109 4wPqQUl2y5A,1945.0,1,10,2016,Spellbound,Delusions of Love,tt0038109 OTX8quF1g4I,1940.0,10,12,2016,Rebecca,It's Gone Forever,tt0032976 gnqyCM42fOU,1945.0,6,10,2016,Spellbound,Dr. Edwardes' Surreal Dream,tt0038109 p8lLNtyeSz4,1945.0,9,10,2016,Spellbound,Dangerous Analysis,tt0038109 s2gjCGRLfKM,1945.0,8,10,2016,Spellbound,A Bullet in the Back,tt0038109 8ZLUn8xHbiM,1945.0,4,10,2016,Spellbound,Nothing to Do With Love,tt0038109 N-2stIHQ12U,1940.0,12,12,2016,Rebecca,Manderley Burns,tt0032976 t2ydTbUJ__8,1940.0,5,12,2016,Rebecca,She Simply Adored,tt0032976 whEcud8GBTo,1940.0,4,12,2016,Rebecca,Meeting Mrs. Danvers,tt0032976 JZGQiDSJRWw,1940.0,8,12,2016,Rebecca,Why Do You Hate Me?,tt0032976 BTUIaeLGBPk,1940.0,11,12,2016,Rebecca,Blackmail,tt0032976 S2NZ6XCtqMQ,1940.0,9,12,2016,Rebecca,Maxim's Confession,tt0032976 dGVvqcGBn_E,1940.0,7,12,2016,Rebecca,I Am Mrs. de Winter Now!,tt0032976 izbOPZezYiQ,1940.0,6,12,2016,Rebecca,'s Clothes,tt0032976 7SaFvv-XoIM,1940.0,3,12,2016,Rebecca,Maxim's Marriage Proposal,tt0032976 ijkNii0A80I,1940.0,2,12,2016,Rebecca,Driving in Monte Carlo,tt0032976 7IsskjJnGN0,1940.0,1,12,2016,Rebecca,Dreams of Manderley,tt0032976 UppZwnbIvZI,2011.0,9,10,2016,Zombie Apocalypse,Shopping Cart Machine Gun,tt1876547 kfYzoHzwZZY,2011.0,5,10,2016,Zombie Apocalypse,Ugly and Undead,tt1876547 GCQrTxMgMiM,2011.0,8,10,2016,Zombie Apocalypse,They're Getting Smarter,tt1876547 2k2hQ4dI5Zs,2011.0,6,10,2016,Zombie Apocalypse,Stop and Drop,tt1876547 sSMoOPktKsQ,2011.0,10,10,2016,Zombie Apocalypse,"Here, Kitty, Kitty",tt1876547 fOdzgxEe1u0,2011.0,4,10,2016,Zombie Apocalypse,We Lost Two of Ours,tt1876547 AUxAITobkNA,2011.0,7,10,2016,Zombie Apocalypse,What's Done Is Done,tt1876547 uwEFn60u9SE,2011.0,3,10,2016,Zombie Apocalypse,It's an Ambush!,tt1876547 son5FnMtr_8,2011.0,1,10,2016,Zombie Apocalypse,"Shoot, Slash, Save",tt1876547 pxWCOG2v42c,2011.0,2,10,2016,Zombie Apocalypse,We Got Company!,tt1876547 y2DC74NT5G8,2015.0,4,10,2016,The Visit,The Deep Darkies,tt3567288 dLVgEWrfdSg,2015.0,10,10,2016,The Visit,T-Diamond's Rap,tt3567288 sQPrjgzEcAc,2015.0,9,10,2016,The Visit,Don't Hold on To Anger,tt3567288 zJ4owMQIKuQ,2015.0,3,10,2016,The Visit,You Think You're Worthless,tt3567288 OzWA6M7VnGg,2015.0,1,10,2016,The Visit,Hide and Seek,tt3567288 L2GbnErVDqk,2015.0,2,10,2016,The Visit,Inside the Oven,tt3567288 o3s4QiK4MSM,2015.0,7,10,2016,The Visit,Yahtzee!,tt3567288 0B1NRC3WYEs,2015.0,5,10,2016,The Visit,Stay in Your Bed,tt3567288 W_0WRTR2vSc,2015.0,8,10,2016,The Visit,Diapers and Death,tt3567288 y6u4QEi3n2g,2015.0,6,10,2016,The Visit,Those Aren't Your Grandparents,tt3567288 I5xqeX3lAgk,2012.0,3,10,2016,ParaNorman,The Haunted Bathroom Stall,tt1623288 PczVuk7L0MU,2012.0,4,10,2016,ParaNorman,Waking the Dead,tt1623288 LxOEBk9PqQQ,2012.0,7,10,2016,ParaNorman,Leave The Zombies Alone!,tt1623288 o6NxwI5Sbbw,2012.0,8,10,2016,ParaNorman,Confronting Aggie,tt1623288 SVUcZ0sAf9c,2012.0,6,10,2016,ParaNorman,Things Get Out of Hand,tt1623288 wZUKOxIXZ8c,2012.0,2,10,2016,ParaNorman,Bub the Ghost Dog,tt1623288 WCO594skLRA,2012.0,5,10,2016,ParaNorman,Zombie Hit and Run,tt1623288 wehE7YLFmGI,2012.0,9,10,2016,ParaNorman,There's Someone Out There For You,tt1623288 QbMcPeuQsfE,2012.0,1,10,2016,ParaNorman,"Good Morning, Ghosts",tt1623288 oK0u0F_Y2EU,2012.0,10,10,2016,ParaNorman,You're Gonna Love My Boyfriend,tt1623288 JBc-gNIjGuc,1968.0,10,10,2016,Night of the Living Dead,The Posse Arrives,tt0063350 komxaWgJ8O4,1968.0,9,10,2016,Night of the Living Dead,Get in the Cellar,tt0063350 n5HtgUGCM30,1968.0,8,10,2016,Night of the Living Dead,Feast of Flesh,tt0063350 ViIuvUSF3YU,1968.0,7,10,2016,Night of the Living Dead,Gas Pump Disaster,tt0063350 d8Gg9rPHKNU,1968.0,5,10,2016,Night of the Living Dead,Window Attack,tt0063350 727NnSLXsxc,1968.0,6,10,2016,Night of the Living Dead,Molotov Cocktails,tt0063350 ct7Ox_OKe-s,1968.0,3,10,2016,Night of the Living Dead,They Know We're In Here Now,tt0063350 p8L6CtsqDE4,1968.0,4,10,2016,Night of the Living Dead,Your Brother Is Dead,tt0063350 _d68kyNY0jI,1968.0,1,10,2016,Night of the Living Dead,They're Coming to Get You,tt0063350 SWxdW9jlHqM,1968.0,2,10,2016,Night of the Living Dead,Safe House,tt0063350 Ia7el1fEff8,2014.0,10,10,2016,Ouija,Maybe There Are No Goodbyes,tt1204977 m3262E3sfb8,2014.0,9,10,2016,Ouija,You Have to Play,tt1204977 -zxyN9-P9_c,2014.0,8,10,2016,Ouija,"She's Coming to Get You, Too",tt1204977 CDiosBMzR_c,2014.0,7,10,2016,Ouija,We Shouldn't Be Here,tt1204977 4932enSiFRA,2014.0,6,10,2016,Ouija,Flossing,tt1204977 KVGVHjX_bkg,2014.0,5,10,2016,Ouija,She Played Alone,tt1204977 VVAlND4mt5s,2014.0,4,10,2016,Ouija,This Isn't Debbie,tt1204977 gEdTciZtW4o,2014.0,2,10,2016,Ouija,It's Just a Game,tt1204977 XY2mzqw0vR0,2014.0,3,10,2016,Ouija,It Doesn't Sound Crazy At All,tt1204977 KSfYdl24m7s,2014.0,1,10,2016,Ouija,Killer Christmas Lights,tt1204977 WxIIpvpAEEM,2002.0,5,11,2016,Jonah: A VeggieTales Movie,What's the Word?,tt0298388 7umeeSjxQl0,2002.0,11,11,2016,Jonah: A VeggieTales Movie,Jonah Was a Prophet,tt0298388 Tw99DKA5tss,2002.0,10,11,2016,Jonah: A VeggieTales Movie,Stop It!,tt0298388 WGy01KGFK7I,2002.0,9,11,2016,Jonah: A VeggieTales Movie,The Slap of No Return,tt0298388 lot6apnbKk4,2002.0,7,11,2016,Jonah: A VeggieTales Movie,Go Fish,tt0298388 Jr4HhX_kbf4,2002.0,8,11,2016,Jonah: A VeggieTales Movie,Second Chances,tt0298388 emnU7uOpYtk,2002.0,4,11,2016,Jonah: A VeggieTales Movie,It Cannot Be,tt0298388 AY1ze9t3lus,2002.0,6,11,2016,Jonah: A VeggieTales Movie,Meeting Khalil,tt0298388 BgkEy5fF1rM,2002.0,3,11,2016,Jonah: A VeggieTales Movie,A Message From the Lord,tt0298388 iAMImEbSpDk,2002.0,2,11,2016,Jonah: A VeggieTales Movie,Steak and Shrimp,tt0298388 ivZaXeAv5X4,2002.0,1,11,2016,Jonah: A VeggieTales Movie,"Tree, Cabin, Underwear!",tt0298388 WrfxIymvEhQ,2004.0,5,5,2016,A Series of Unfortunate Events,The Letter That Never Came,tt0339291 tsIYleoAQpY,2004.0,4,5,2016,A Series of Unfortunate Events,Hurricane Herman,tt0339291 nh8mjiSlAws,2004.0,2,5,2016,A Series of Unfortunate Events,Aunt Josephine,tt0339291 mIvQRRVbt9E,2004.0,3,5,2016,A Series of Unfortunate Events,We're Too Late,tt0339291 6zqeWbDCXMM,2004.0,1,5,2016,A Series of Unfortunate Events,The Baudelaire Children,tt0339291 WMWI2FTLbhg,1995.0,8,10,2016,Casper,How Died,tt0112642 01ClRWyf9I4,1995.0,10,10,2016,Casper,Boo?,tt0112642 uA7BbE1cF2U,1995.0,9,10,2016,Casper,Crossing Over,tt0112642 DXH2BXpwCAo,1995.0,7,10,2016,Casper,Can I Keep You?,tt0112642 5IPCNRlCYP8,1995.0,6,10,2016,Casper,A Ghost-to-Ghost Network,tt0112642 odUsOcEqT4g,1995.0,5,10,2016,Casper,The New Girl,tt0112642 rxCuYueuyxM,1995.0,4,10,2016,Casper,Breakfast with the Ghosts,tt0112642 UEEIFRxwHSM,1995.0,2,10,2016,Casper,Pleasure to Meet You,tt0112642 vZKaVV0ZyFs,1995.0,3,10,2016,Casper,"Dr. James Harvey, Your Therapist",tt0112642 o94LScznlmY,1995.0,1,10,2016,Casper,No Problem Whatsoever,tt0112642 YLjkzy7nhc8,2000.0,10,10,2016,Pitch Black,Rescuing Riddick,tt0134847 PlSt57BseA8,2000.0,9,10,2016,Pitch Black,Would You Die for Them?,tt0134847 wyuPoWs79fo,2000.0,7,10,2016,Pitch Black,Murderer vs. Merc,tt0134847 TjGfTL6l-HM,2000.0,8,10,2016,Pitch Black,Monster Meets Monster,tt0134847 luuYRrPaEpM,2000.0,5,10,2016,Pitch Black,The Dark Brings Devils,tt0134847 Eum-rR934sQ,2000.0,6,10,2016,Pitch Black,Don't Stray From the Light,tt0134847 2ZGmI0V_Hgo,2000.0,4,10,2016,Pitch Black,They're All Dead,tt0134847 1c7FYxTa2mQ,2000.0,2,10,2016,Pitch Black,How Do I Get Eyes Like That?,tt0134847 G1BREAJI3E0,2000.0,3,10,2016,Pitch Black,Found Something Worse Than Me?,tt0134847 KAZVdaHzWNc,2000.0,1,10,2016,Pitch Black,Dislocated Escape,tt0134847 tz-XJMspLOA,2011.0,10,10,2016,The Thing,How I Knew You Were Human,tt0905372 FFGm__skOH4,2011.0,9,10,2016,The Thing,Kate Confronts the Thing,tt0905372 DZwobit-Zy4,2011.0,1,10,2016,The Thing,Alien Autopsy,tt0905372 A8GRnS_49gs,2011.0,8,10,2016,The Thing,Trapped in the Kitchen,tt0905372 4TgJgyypajE,2011.0,6,10,2016,The Thing,Reveals Itself,tt0905372 6-PJPTcT-o4,2011.0,7,10,2016,The Thing,"We Find It, We Kill It",tt0905372 3PRuMx1gqdM,2011.0,4,10,2016,The Thing,Let's See Your Teeth,tt0905372 ZMURdEkb_3Y,2011.0,3,10,2016,The Thing,Juliette Transforms,tt0905372 KL5rXhSkP34,2011.0,2,10,2016,The Thing,Everything's Fine,tt0905372 o7zebTh4tHo,2011.0,5,10,2016,The Thing,They Killed Lars!,tt0905372 w0BK_hLT-Wo,2012.0,10,10,2016,Battleship,They Ain't Gonna Sink This,tt1440129 ZQsCM4wE_es,2012.0,9,10,2016,Battleship,Shredding the John Paul Jones,tt1440129 1KBy8-7nc1M,2012.0,7,10,2016,Battleship,That's a Hit,tt1440129 yWuZtDeeZmc,2012.0,8,10,2016,Battleship,Light 'Em Up,tt1440129 dGz9C2xMADc,2012.0,5,10,2016,Battleship,Mahalo,tt1440129 7yjowqaIUnU,2012.0,6,10,2016,Battleship,It's a Miss,tt1440129 3a7e-npyunY,2012.0,4,10,2016,Battleship,Not Dead! Not Dead!,tt1440129 JCVLrJfjsIo,2012.0,3,10,2016,Battleship,Attack On Hawaii,tt1440129 y7T5Ea-WGII,2012.0,2,10,2016,Battleship,We're All Going to Die,tt1440129 YUaq56T5qSo,2012.0,1,10,2016,Battleship,You Sunk My,tt1440129 j40IcG_BZuc,1932.0,10,10,2016,The Mummy,A Mummy Once More,tt0023245 MnZJSCtPQtY,1932.0,8,10,2016,The Mummy,Too Weak to Fight It,tt0023245 ikWTYTomQI4,1932.0,6,10,2016,The Mummy,Buried Alive For Love,tt0023245 cEJhVm0TJUQ,1932.0,7,10,2016,The Mummy,"Save Me, Frank",tt0023245 pvZXE-e5Yo4,1932.0,9,10,2016,The Mummy,I Want to Live,tt0023245 N2A4tcaMl9c,1932.0,5,10,2016,The Mummy,Caught Doing An Unholy Thing,tt0023245 TnkyKOn81nA,1932.0,4,10,2016,The Mummy,Death to Sir Joseph,tt0023245 3ce2e-d1ZEc,1932.0,3,10,2016,The Mummy,An Uncanny Recognition,tt0023245 f187FGFi1AM,1932.0,2,10,2016,The Mummy,Helen's Trance,tt0023245 VAp8WVZm3cc,1932.0,1,10,2016,The Mummy,Rises,tt0023245 yOWS9e_r5OI,1982.0,8,10,2016,Halloween III: Season of the Witch,Silver Shamrock Shutdown,tt0085636 VX3u1HUl2Zw,1982.0,9,10,2016,Halloween III: Season of the Witch,Ellie the Android,tt0085636 goKRpR4XNg8,1982.0,10,10,2016,Halloween III: Season of the Witch,Get It Off the Air!,tt0085636 vsfjzfGZVyQ,1982.0,7,10,2016,Halloween III: Season of the Witch,Happy Halloween,tt0085636 u2D0kDFKaxE,1982.0,5,10,2016,Halloween III: Season of the Witch,Test Room A,tt0085636 b_tZKOxNR7o,1982.0,6,10,2016,Halloween III: Season of the Witch,A Drill for the Doctor,tt0085636 mQpZdtspStY,1982.0,4,10,2016,Halloween III: Season of the Witch,Android Assassin,tt0085636 4bB-IJBlZms,1982.0,3,10,2016,Halloween III: Season of the Witch,Mangled Marge,tt0085636 dUFtkBtGIgg,1982.0,1,10,2016,Halloween III: Season of the Witch,Gouged Eyes and Gasoline Suicides,tt0085636 O2RUT5J7T4E,1982.0,2,10,2016,Halloween III: Season of the Witch,Starker Loses His Head,tt0085636 zlVbQsf7vpk,1981.0,6,10,2016,Halloween II,Slippery When Bloody,tt0082495 AI752yUQd1o,1981.0,3,10,2016,Halloween II,Hammer to the Head,tt0082495 COZxvXx4bSg,1981.0,10,10,2016,Halloween II,The Death of Michael Myers,tt0082495 e4-STTC0pNc,1981.0,5,10,2016,Halloween II,Syringe Stabbings,tt0082495 FyuQ13ZZNIQ,1981.0,1,10,2016,Halloween II,A Sudden Stabbing,tt0082495 Ht3gFCqpFkE,1981.0,9,10,2016,Halloween II,Why Won't He Die?,tt0082495 PP8BpNVk8JM,1981.0,8,10,2016,Halloween II,The Desperate Crawl,tt0082495 OuacLAbhxqc,1981.0,2,10,2016,Halloween II,Mistaken for a Murderer,tt0082495 QaSr6mpkTII,1981.0,7,10,2016,Halloween II,Knifing the Nightshift Nurse,tt0082495 h0w6WywbohM,1981.0,4,10,2016,Halloween II,Hot Tub Horror,tt0082495 lCyS2Gxxzfg,1996.0,10,10,2016,The Frighteners,A-Hole with an Uzi,tt0116365 alh8b1lYuRU,1996.0,1,10,2016,The Frighteners,Frank Bannister in Action,tt0116365 Y91jebCjFBE,1996.0,8,10,2016,The Frighteners,Back from Hell,tt0116365 qz0rKdYiqDQ,1996.0,9,10,2016,The Frighteners,Psycho Killers,tt0116365 E81RLAQyhCA,1996.0,7,10,2016,The Frighteners,Fighting Death,tt0116365 YZPkrplfycM,1996.0,6,10,2016,The Frighteners,Death Comes for Lucy,tt0116365 1xFsHF8ZF2Y,1996.0,5,10,2016,The Frighteners,Fleeing the Reaper,tt0116365 yYF0oK8oXSk,1996.0,4,10,2016,The Frighteners,Death in the Restroom,tt0116365 CQvEBaLYHJE,1996.0,3,10,2016,The Frighteners,Sergeant Spook,tt0116365 mdsLJ_ciPHI,1996.0,2,10,2016,The Frighteners,African American Apparition Coalition,tt0116365 hRBRb2eiK4I,2010.0,10,10,2016,The Wolfman,Love With a Silver Bullet,tt0780653 Y5pRDzBxZtY,2010.0,9,10,2016,The Wolfman,Werewolf vs. Werewolf,tt0780653 4i3CEXiGKgU,2010.0,7,10,2016,The Wolfman,I Will Kill All of You,tt0780653 ba9YG9xCC7A,2010.0,6,10,2016,The Wolfman,The Visions of the Disturbed,tt0780653 vEd2sU65NQI,2010.0,8,10,2016,The Wolfman,Wolfman in London,tt0780653 wJZHc5SJ9eE,2010.0,5,10,2016,The Wolfman,Slaughter in the Woods Tonight,tt0780653 -lX6P0PFKy4,2010.0,4,10,2016,The Wolfman,The Beast Will Have It's Day,tt0780653 YiE8wDRFfvM,2010.0,3,10,2016,The Wolfman,You're Trespassing,tt0780653 tbdHhLOzT-Y,2010.0,1,10,2016,The Wolfman,Wolf in a Gypsy Camp,tt0780653 BktKAiQQ_tw,2010.0,2,10,2016,The Wolfman,There's Something in the Fog,tt0780653 gG1XmKlqhIU,1991.0,8,10,2016,Child's Play 3,They're Using Live Rounds! Scene,tt0103956 8w4UZGP7OGo,1991.0,10,10,2016,Child's Play 3,End of the Line Scene,tt0103956 i4M2tehIejI,1991.0,6,10,2016,Child's Play 3,A Different Kind of Cut Scene,tt0103956 nFRuYV4QrnE,1991.0,7,10,2016,Child's Play 3,I'm Bad Scene,tt0103956 7OpujffVbUQ,1991.0,9,10,2016,Child's Play 3,A New Look Scene,tt0103956 ttU5gs0lj38,1990.0,10,10,2016,Child's Play 2,Exploding Chucky,tt0099253 SwPPG_B3ArY,1991.0,4,10,2016,Child's Play 3,Can't Keep a Good Guy Down Scene,tt0103956 azot-mIuW3Y,1991.0,5,10,2016,Child's Play 3,Scared to Death Scene,tt0103956 zjFMyK_bRso,1990.0,9,10,2016,Child's Play 2,I Hate Kids,tt0099253 tQl5ypxi69U,1991.0,3,10,2016,Child's Play 3,Taking Out the Trash Scene,tt0103956 pwL0PcIHtxQ,1991.0,1,10,2016,Child's Play 3,Just Like the Good Old Days Scene,tt0103956 ic9PvDGkzf8,1991.0,2,10,2016,Child's Play 3,A New Lease on Life Scene,tt0103956 41VUCQfnnco,1990.0,6,10,2016,Child's Play 2,It's Amazingly Lifelike,tt0099253 PM5TJ6vZ9YM,1990.0,8,10,2016,Child's Play 2,I'm Gonna Kill You!,tt0099253 pDnPZ0Ccdus,1990.0,7,10,2016,Child's Play 2,I'm Trapped in Here!,tt0099253 TuafKNbgTCA,1990.0,5,10,2016,Child's Play 2,Women Drivers,tt0099253 PHFG3ZC0fZI,1990.0,4,10,2016,Child's Play 2,You Hurt Me,tt0099253 Qe5hop7o4ZI,1990.0,3,10,2016,Child's Play 2,How's It Hanging?,tt0099253 UvFclgKfUQA,1990.0,2,10,2016,Child's Play 2,You've Been Very Naughty,tt0099253 OvbvCOM89Ew,2013.0,9,10,2016,Curse of Chucky,Let's Play!,tt2230358 3AfqCkqJVt0,1990.0,1,10,2016,Child's Play 2,Bang! You're Dead,tt0099253 AuGJ_SZEXFI,2013.0,10,10,2016,Curse of Chucky,Who's Next?,tt2230358 WnBzLtUAnIg,2013.0,8,10,2016,Curse of Chucky,The Birth of Chucky,tt2230358 BzMaqlt74NY,2013.0,7,10,2016,Curse of Chucky,The Nanny Cam,tt2230358 WVDrmwtooj4,2013.0,6,10,2016,Curse of Chucky,What Have You Done?,tt2230358 AP_hr5nmo9M,2013.0,5,10,2016,Curse of Chucky,I'm Gonna Get You,tt2230358 f505OHOUHoU,2013.0,4,10,2016,Curse of Chucky,Your Mother's Eyes,tt2230358 iFEr1xsuksI,2004.0,7,9,2016,Seed of Chucky,Tiffany Guts Redman,tt0387575 7RsohcD0tS8,2004.0,9,9,2016,Seed of Chucky,The End of the Family,tt0387575 _7pkwL7yY5g,2013.0,3,10,2016,Curse of Chucky,We're All Going to Die,tt2230358 71FkH7FwfFg,2013.0,2,10,2016,Curse of Chucky,Get Him Out,tt2230358 WSADpIlmqQ8,2004.0,8,9,2016,Seed of Chucky,A Voodoo Pregnancy,tt0387575 rdEbjNy5BNs,2013.0,1,10,2016,Curse of Chucky,He Scared Me Half to Death,tt2230358 lN4oFlIKm7A,2004.0,6,9,2016,Seed of Chucky,Father Son Bonding,tt0387575 5lBfYlWmDC8,2004.0,2,9,2016,Seed of Chucky,Chucky Meets His Son,tt0387575 ARKPBJdE_QU,2004.0,3,9,2016,Seed of Chucky,Glen or Glenda,tt0387575 NtQdJIeh2ho,2004.0,5,9,2016,Seed of Chucky,"Oops, I Did it Again",tt0387575 I8yAmR1UymM,2004.0,4,9,2016,Seed of Chucky,Killing is an Addiction,tt0387575 sggwHnudtH0,1998.0,7,7,2016,Bride of Chucky,I Always Come Back,tt0144120 37yJV-YPBJY,1998.0,5,7,2016,Bride of Chucky,"Right Place, Wrong Time",tt0144120 Snt_FLn3dwM,1998.0,6,7,2016,Bride of Chucky,Marriage Trouble,tt0144120 YPQJOKn0I0s,2004.0,1,9,2016,Seed of Chucky,Glen Kills,tt0387575 cqD8XBONBHY,1998.0,2,7,2016,Bride of Chucky,Chucky Makes a Bride,tt0144120 p4yCboEAjLk,1998.0,4,7,2016,Bride of Chucky,That is a Rude Doll,tt0144120 lniVpfK5SW8,1998.0,1,7,2016,Bride of Chucky,The Deadly Tiffany,tt0144120 nID1enI2xW8,1998.0,3,7,2016,Bride of Chucky,A True Homicidal Genius,tt0144120 W_CvL_fMIm4,2015.0,4,10,2016,Sisters,Asking James Out,tt1850457 Uw1WGruy_KI,2015.0,2,10,2016,Sisters,Hae Won and Maura,tt1850457 IyN025OadaE,2015.0,3,10,2016,Sisters,That Looks Amazing on You,tt1850457 GyhrH5E6B6g,2015.0,8,10,2016,Sisters,I Am a Yeah!,tt1850457 -3RMOO6mHr4,2015.0,5,10,2016,Sisters,Balls Deep in Joy,tt1850457 GJsTqU9Ujxo,2015.0,7,10,2016,Sisters,The Apple Butt Jam,tt1850457 jx757TP9spg,2015.0,9,10,2016,Sisters,Rectal Accident,tt1850457 AqMWvk5DMcU,2015.0,10,10,2016,Sisters,Girl Fight!,tt1850457 _XAKjc2gIfo,2015.0,6,10,2016,Sisters,Pazuzu's Drugs,tt1850457 KhtepI51wuo,2015.0,1,10,2016,Sisters,Very Different Diaries,tt1850457 tv_xMisf9oc,2015.0,3,10,2016,MI-5,This is Bigger Than Qasim,tt3321300 nVKSBDddFxM,2015.0,10,10,2016,MI-5,The Good Ones Tend Not to Last,tt3321300 W2roZO0kTUs,2015.0,1,10,2016,MI-5,Prisoner Escape,tt3321300 YkYqKiASqJM,2015.0,8,10,2016,MI-5,One More Dead Terrorist,tt3321300 nNKsj8rQGHc,2015.0,9,10,2016,MI-5,A Way Out,tt3321300 EGqPXMAThig,2015.0,7,10,2016,MI-5,I Gave Him You,tt3321300 XtFr2BdLrv0,2015.0,6,10,2016,MI-5,A Botched Negotiation,tt3321300 XS2yOMGv5to,2015.0,5,10,2016,MI-5,Old-Fashioned Blind Obedience,tt3321300 dStxLpnwvWs,2015.0,4,10,2016,MI-5,You Have to Go Now,tt3321300 plcl4YShR5Q,2015.0,2,10,2016,MI-5,She Has to Die,tt3321300 309Cnimrm5A,1986.0,5,12,2016,Poltergeist II: The Other Side,They Followed Him,tt0091778 Atyyr6d7-u8,1986.0,6,12,2016,Poltergeist II: The Other Side,The Bottle,tt0091778 7WjOFzTTiHY,1986.0,7,12,2016,Poltergeist II: The Other Side,Possessed,tt0091778 sjWdByLxTuI,1986.0,11,12,2016,Poltergeist II: The Other Side,Final Resting Place,tt0091778 Yp2w2XxXKD4,1986.0,12,12,2016,Poltergeist II: The Other Side,Good vs. Evil,tt0091778 UtSE9OXHIgw,1986.0,10,12,2016,Poltergeist II: The Other Side,Chainsaw Attack,tt0091778 FSB26l-iDEw,1986.0,9,12,2016,Poltergeist II: The Other Side,Skeletons in the Closet,tt0091778 ZMQCyJ2lhu8,1986.0,8,12,2016,Poltergeist II: The Other Side,Vomit From Hell,tt0091778 ayOLECuygTQ,1986.0,4,12,2016,Poltergeist II: The Other Side,Braces Attack,tt0091778 zqTxw0eiZaE,1986.0,3,12,2016,Poltergeist II: The Other Side,Mind Control,tt0091778 8l-HZqArmXU,1986.0,1,12,2016,Poltergeist II: The Other Side,Kane,tt0091778 ofWdRHOZpV4,1986.0,2,12,2016,Poltergeist II: The Other Side,Diane's Nightmare,tt0091778 U5fkvkaFqt4,1986.0,11,11,2016,The Texas Chainsaw Massacre 2,Cleaning House,tt0092076 CqHyrmbiD1E,1986.0,9,11,2016,The Texas Chainsaw Massacre 2,Dinner Time,tt0092076 9RrN7k_5fl4,1986.0,3,11,2016,The Texas Chainsaw Massacre 2,Chop-Top,tt0092076 AebCDidbqI8,1986.0,6,11,2016,The Texas Chainsaw Massacre 2,Leatherface Aroused,tt0092076 QPmSOAIRsj4,1986.0,1,11,2016,The Texas Chainsaw Massacre 2,Chili Cook Off,tt0092076 tkDK_YLfTO0,1986.0,7,11,2016,The Texas Chainsaw Massacre 2,Bubba's Got a Girlfriend!,tt0092076 -yEE_toKFxc,1986.0,10,11,2016,The Texas Chainsaw Massacre 2,Lord of the Harvest,tt0092076 QjrvHsFzbvI,1986.0,8,11,2016,The Texas Chainsaw Massacre 2,The Saw Is Family,tt0092076 WfQ8qbtS63s,1986.0,2,11,2016,The Texas Chainsaw Massacre 2,Chainsaw Shopping,tt0092076 Rv1MSTB7QeA,1986.0,5,11,2016,The Texas Chainsaw Massacre 2,Dog Will Hunt,tt0092076 cIG0COsZmjg,1986.0,4,11,2016,The Texas Chainsaw Massacre 2,Far Out Fans,tt0092076 FXhW_IAJ_Yg,2013.0,8,12,2016,Spiders 3D,The Spider Queen Hits New York,tt1659216 vAJ_RdlVzgw,2013.0,7,12,2016,Spiders 3D,We Are Overrun!,tt1659216 2N4Tq6Zpx3g,2013.0,5,12,2016,Spiders 3D,Spider Attack,tt1659216 4kQr8dkriIg,2013.0,6,12,2016,Spiders 3D,Death by Forklift,tt1659216 vnJE2OLp55w,2013.0,4,12,2016,Spiders 3D,The Spiders Grow,tt1659216 gbr7Qazpy2E,2013.0,3,12,2016,Spiders 3D,A Fateful Carjacking,tt1659216 ivlV5kanNFE,2013.0,10,12,2016,Spiders 3D,The Queen's Rampage,tt1659216 ihOU-LC0ue8,2013.0,2,12,2016,Spiders 3D,We Need Her Eggs,tt1659216 yB_0DHi3Z4k,2013.0,1,12,2016,Spiders 3D,The Spiders Hatch,tt1659216 frxxz1Nx3x0,2013.0,12,12,2016,Spiders 3D,Death by Subway Train,tt1659216 xb4rFYLKzHA,2013.0,11,12,2016,Spiders 3D,Fighting the Spider Queen,tt1659216 A8WBlVOcSs8,2013.0,9,12,2016,Spiders 3D,Terror in the Toy Store,tt1659216 mRRLEgHhu3U,2006.0,11,11,2016,Mercury Man,Hot vs. Cold,tt0860462 7cJS4h5_KJ0,2006.0,9,11,2016,Mercury Man,Fire Fight,tt0860462 xzwBLuOLjzA,2006.0,10,11,2016,Mercury Man,You Will Be Lose,tt0860462 4009LQ96f4E,2006.0,8,11,2016,Mercury Man,The Dark Hero,tt0860462 XdPLA-egIeQ,2006.0,7,11,2016,Mercury Man,Rampaging Elephants,tt0860462 Mu4AuoaIuHg,2006.0,6,11,2016,Mercury Man,Arrives,tt0860462 olg8NTkDXrI,2006.0,5,11,2016,Mercury Man,Controlling the Power,tt0860462 LZcSMyk5Obo,2006.0,4,11,2016,Mercury Man,Where is the Amulet?,tt0860462 t-DJLPtSaHw,2006.0,2,11,2016,Mercury Man,Cafe Attack,tt0860462 00Tazm9Z6XU,2006.0,3,11,2016,Mercury Man,Amulets of Thailand,tt0860462 eX7t2x1F5wA,2006.0,1,11,2016,Mercury Man,Flame Guru,tt0860462 6uRycxZgotc,2014.0,10,10,2016,Asteroid vs. Earth,See You on the Other Side,tt3453772 HLJHW3slPW0,2014.0,9,10,2016,Asteroid vs. Earth,Metal's Misstep,tt3453772 j6SBSViczK4,2014.0,7,10,2016,Asteroid vs. Earth,Torpedoes in the Water!,tt3453772 6R_37O7HwMI,2014.0,8,10,2016,Asteroid vs. Earth,An Explosion Felt Around the World,tt3453772 Jfk2QR-qyZk,2014.0,6,10,2016,Asteroid vs. Earth,Hong Kong's Final Moments,tt3453772 SWnqUVFoQ9w,2014.0,5,10,2016,Asteroid vs. Earth,A Meteoric Mistake,tt3453772 KTes0O7QBR8,2014.0,4,10,2016,Asteroid vs. Earth,Narrow Nuclear Escape,tt3453772 CyXxBjk4UaQ,2014.0,1,10,2016,Asteroid vs. Earth,It's a Supercell,tt3453772 5_C7GNWPinI,2014.0,3,10,2016,Asteroid vs. Earth,Blow Up the Yap Trench,tt3453772 ubD8vf5WvnE,2014.0,2,10,2016,Asteroid vs. Earth,Move the Earth,tt3453772 aDrR7riBeLA,1972.0,4,7,2016,Jeremiah Johnson,Great Hunter,tt0068762 bLbLsjRVm9Y,1972.0,7,7,2016,Jeremiah Johnson,You Have Done Well,tt0068762 ux9JHznPT8E,1972.0,3,7,2016,Jeremiah Johnson,Jeremiah Gets Married,tt0068762 7NMQnDrBp60,1972.0,1,7,2016,Jeremiah Johnson,Sure That You Can Skin Grizz?,tt0068762 qJ_EsjyYevs,1972.0,5,7,2016,Jeremiah Johnson,Building a Home,tt0068762 WrGf03jRHSE,1972.0,6,7,2016,Jeremiah Johnson,Crow Warriors Attack,tt0068762 pYhlVR9GzjA,1972.0,2,7,2016,Jeremiah Johnson,Buried,tt0068762 Lt7yltFpVyE,2009.0,6,9,2016,The Time Traveler's Wife,I'm Pregnant,tt0452694 k10DDJ4L2lc,2009.0,1,9,2016,The Time Traveler's Wife,My Best Friend,tt0452694 6WArrD9VPJE,2009.0,3,9,2016,The Time Traveler's Wife,Will You Marry Me?,tt0452694 OlPauBNIDAQ,2009.0,2,9,2016,The Time Traveler's Wife,Your Son Loves You,tt0452694 L8cLSkIAgJ4,2009.0,4,9,2016,The Time Traveler's Wife,Winning the Lottery,tt0452694 uV-u-N8RkKs,2009.0,8,9,2016,The Time Traveler's Wife,Saying Goodbye,tt0452694 5D4D0Hby47o,2009.0,5,9,2016,The Time Traveler's Wife,First Kiss,tt0452694 iRd63BXG6nE,2009.0,7,9,2016,The Time Traveler's Wife,Daddy,tt0452694 BdC4os4SOH0,2009.0,9,9,2016,The Time Traveler's Wife,Henry Returns,tt0452694 FvJp6IklZUA,2015.0,6,10,2016,Crimson Peak,Monsters,tt2554274 UkDKxprXy_0,2015.0,7,10,2016,Crimson Peak,The Things We Do For Love,tt2554274 toctHJpW6no,2015.0,3,10,2016,Crimson Peak,Already Married,tt2554274 bZ7ZsN1FXuI,2015.0,1,10,2016,Crimson Peak,Ghost in the Floor,tt2554274 hJErQ3vUD24,2015.0,2,10,2016,Crimson Peak,His Blood Will Be on Your Hands,tt2554274 e434wHYilA0,2015.0,4,10,2016,Crimson Peak,I Have to Get Out of Here,tt2554274 5xx4Ha3kGtg,2015.0,5,10,2016,Crimson Peak,All Out in the Open,tt2554274 rkPT_6JWenQ,2015.0,8,10,2016,Crimson Peak,You Love Her,tt2554274 6mtG2DSbR3g,2015.0,10,10,2016,Crimson Peak,Ghosts Are Real,tt2554274 Kcf2d8epCXY,2015.0,9,10,2016,Crimson Peak,I Won't Stop Until You Kill Me,tt2554274 vV3RTL40nmw,2014.0,10,10,2016,Life After Beth,Thank You for Coming Back,tt2581244 9b32VkOh2nQ,2014.0,9,10,2016,Life After Beth,She's Gotta Die,tt2581244 XHJI9tya2cM,2014.0,8,10,2016,Life After Beth,Beth's Hungry,tt2581244 aIau-DQHI3Y,2014.0,7,10,2016,Life After Beth,She's Going to Eat Me!,tt2581244 EegoLE6n-Gk,2014.0,6,10,2016,Life After Beth,The Dead are Coming Back!,tt2581244 cJ4mSB-0OA0,2014.0,4,10,2016,Life After Beth,Who Are You?,tt2581244 Kpomd1Lwn6Y,2014.0,5,10,2016,Life After Beth,I'm Beth and I'm Alive!,tt2581244 X9A5UFJ1iZk,2014.0,3,10,2016,Life After Beth,Smooth Jazz,tt2581244 PWfgDuO0vmI,2014.0,1,10,2016,Life After Beth,It's a Resurrection!,tt2581244 6bDF7ZQgkZA,2014.0,2,10,2016,Life After Beth,What's Happening to Me?,tt2581244 SXOm6AEArjo,2015.0,10,10,2016,3 Headed Shark Attack,Giving the Beast a Hand,tt4685096 K04WrySpUH8,2015.0,8,10,2016,3 Headed Shark Attack,Jaws Meets Machete,tt4685096 nBlkMaEmWeI,2015.0,9,10,2016,3 Headed Shark Attack,Never Seen Anything Like That,tt4685096 rpE_9A4LXWs,2015.0,7,10,2016,3 Headed Shark Attack,High-Flying Axe,tt4685096 gIQWTB6lNlw,2015.0,6,10,2016,3 Headed Shark Attack,All Aboard for Dinner,tt4685096 Od9Z1C8dboY,2015.0,5,10,2016,3 Headed Shark Attack,Shark vs. Party Boat,tt4685096 Jz0Ueh_tkFg,2015.0,4,10,2016,3 Headed Shark Attack,Dying to Be a Distraction,tt4685096 3Rayb1Y5SmA,2015.0,3,10,2016,3 Headed Shark Attack,Bathroom Attack,tt4685096 mY-6iHAZZoo,2015.0,2,10,2016,3 Headed Shark Attack,That's Not a Whale,tt4685096 wT2zu8zPXHQ,2015.0,1,10,2016,3 Headed Shark Attack,Get Out of the Water,tt4685096 XGg85Qv_gK4,2012.0,2,10,2016,2-Headed Shark Attack,Dead Man's Hand,tt2043757 8yXl1yKbBiU,2012.0,3,10,2016,2-Headed Shark Attack,Get Out of the Water!,tt2043757 VPzrMnBW_JY,2012.0,1,10,2016,2-Headed Shark Attack,We're Taking on Water,tt2043757 B7rcsBCaMI4,2012.0,5,10,2016,2-Headed Shark Attack,Run!,tt2043757 xaYlkjfpdG0,2012.0,4,10,2016,2-Headed Shark Attack,Twice as Many Teeth,tt2043757 cl1Yl57gCW4,2012.0,10,10,2016,2-Headed Shark Attack,Boat Bomb,tt2043757 qq3C3psItOo,2012.0,8,10,2016,2-Headed Shark Attack,What Are We Gonna Do Now?!,tt2043757 bQ9vlCKo04g,2012.0,9,10,2016,2-Headed Shark Attack,Fears Don't Get Over Themselves,tt2043757 s8BQXJxRw10,2012.0,7,10,2016,2-Headed Shark Attack,One Last Kiss,tt2043757 qFbklFTJlCs,2012.0,6,10,2016,2-Headed Shark Attack,Mayday!,tt2043757 5MB15iYADy0,2012.0,11,11,2016,The Iceman,I Never Felt Sorry,tt1491044 o36MJbiMMH8,2012.0,10,11,2016,The Iceman,You Kill My Family,tt1491044 gQ1o6y8iYXs,2012.0,8,11,2016,The Iceman,My Daughter's Birthday,tt1491044 9FuvuHFUeoE,2012.0,9,11,2016,The Iceman,I Want My Money,tt1491044 qr6vDBiESB4,2012.0,4,11,2016,The Iceman,Car Accident.,tt1491044 LKXQQmMdiws,2012.0,7,11,2016,The Iceman,You Can Finish Jerking Off,tt1491044 RJ2waor6V0g,2012.0,1,11,2016,The Iceman,An Impromptu Audition,tt1491044 5HbKxlvyiLk,2012.0,5,11,2016,The Iceman,That's It,tt1491044 8APhdryZ6m4,2012.0,6,11,2016,The Iceman,Partners,tt1491044 4LY3sXlBbk4,2012.0,3,11,2016,The Iceman,I Think God's Busy,tt1491044 oX3g90bTn1g,2012.0,2,11,2016,The Iceman,Leading a Double Life,tt1491044 mkEMQ9OK088,2010.0,9,10,2016,Ceremony,In Love with You,tt1341341 80xURylcWpI,2010.0,7,10,2016,Ceremony,Best Friend Breakup,tt1341341 lLxVEs_X_9k,2010.0,10,10,2016,Ceremony,Perspective,tt1341341 QtSzDCV1CHI,2010.0,6,10,2016,Ceremony,Paper Chase,tt1341341 nqIhzUUH6Ts,2010.0,8,10,2016,Ceremony,Wanna Marry Me?,tt1341341 FCv0BgoGj0g,2010.0,4,10,2016,Ceremony,Writing Vows,tt1341341 vI48ZXLGoBk,2010.0,5,10,2016,Ceremony,An Intense Young Man,tt1341341 SRoBDfwS2xU,2010.0,3,10,2016,Ceremony,Winning You Back,tt1341341 KOAAIBdD3bM,2010.0,2,10,2016,Ceremony,Awkward Toasts,tt1341341 9dSVd8ISfl8,2010.0,1,10,2016,Ceremony,What Are You Doing Here?,tt1341341 6mJk2i7Lfjs,1987.0,11,11,2016,House of Games,Margaret Kills Mike,tt0093223 gPv4C6gIdOo,1987.0,10,11,2016,House of Games,It Was Fate I Found You,tt0093223 sp2FvfOi928,1987.0,9,11,2016,House of Games,A Born Thief,tt0093223 WSBO1fuXCCE,1987.0,7,11,2016,House of Games,The Accidental Shooting,tt0093223 PW-I6rrNzyM,1987.0,8,11,2016,House of Games,The Missing Briefcase,tt0093223 5FHPI2NlOm8,1987.0,5,11,2016,House of Games,What Mike Wants,tt0093223 rC9LfNF_CW8,1987.0,6,11,2016,House of Games,Margaret Joins the Sting,tt0093223 N27gumJNHP0,1987.0,4,11,2016,House of Games,Con at Western Union,tt0093223 GLmTfdkWZp4,1987.0,3,11,2016,House of Games,Margaret Can't Be Conned,tt0093223 FTJcaJziQ1I,1987.0,2,11,2016,House of Games,Poker Game Showdown,tt0093223 ftNK4JPSoto,1987.0,1,11,2016,House of Games,Mike Teaches About Tells,tt0093223 yUrcH6c-FX4,2012.0,10,10,2016,Shark Week,Game Over,tt2292182 VScQtueKnXM,2012.0,8,10,2016,Shark Week,You Will Live,tt2292182 UdRma1qSMGo,2012.0,9,10,2016,Shark Week,"If I Can't Leave, Neither Will You!",tt2292182 SVYv9SJAr2M,2012.0,7,10,2016,Shark Week,Anyone Want Sushi?,tt2292182 Y9_k4iGJMco,2012.0,5,10,2016,Shark Week,Through the Minefield,tt2292182 olj-IIjnxLY,2012.0,4,10,2016,Shark Week,Attacking the Shark,tt2292182 f-mlUVx01MA,2012.0,6,10,2016,Shark Week,An Explosive Last Meal,tt2292182 9uRPfjWwOL0,2012.0,3,10,2016,Shark Week,He Was Innocent!,tt2292182 6Dg8xn6Rdwo,2012.0,2,10,2016,Shark Week,A Game of Life and Death,tt2292182 HycJFYsUxaU,2012.0,1,10,2016,Shark Week,15 Seconds,tt2292182 yZWEB9JWLHM,2011.0,10,10,2016,Fred 2: Night of the Living Fred,Fred the Vampire,tt1927093 vkX9jHBsmwM,2011.0,6,10,2016,Fred 2: Night of the Living Fred,Wrestling Match,tt1927093 4pHgq_uwXjs,2011.0,9,10,2016,Fred 2: Night of the Living Fred,Blasting the Vampires,tt1927093 BoGZH9krgjE,2011.0,8,10,2016,Fred 2: Night of the Living Fred,Derf and Garlic Sauce,tt1927093 vMwfVOf1-vM,2011.0,7,10,2016,Fred 2: Night of the Living Fred,Suck His Blood,tt1927093 w6USFL0JYAU,2011.0,5,10,2016,Fred 2: Night of the Living Fred,Mr. Devlin is a Vampire,tt1927093 -78FgmNwyD4,2011.0,4,10,2016,Fred 2: Night of the Living Fred,Talia is Kevin's Sister?,tt1927093 7MJd-RSHTqs,2011.0,3,10,2016,Fred 2: Night of the Living Fred,Fred's Imaginary Dad,tt1927093 JegIRfX4LJQ,2011.0,1,10,2016,Fred 2: Night of the Living Fred,The Piano Duel,tt1927093 hEH49mSRWGw,2011.0,2,10,2016,Fred 2: Night of the Living Fred,Talia the Ghost,tt1927093 RmSIKuobH10,2015.0,10,10,2016,Nightlight,The Final Possession,tt2236160 PbndU1PQlPk,2015.0,9,10,2016,Nightlight,It's My Fault,tt2236160 jS7XOEttewM,2015.0,5,10,2016,Nightlight,Victims of Possession,tt2236160 NmsLAaKjKEE,2015.0,8,10,2016,Nightlight,"Nia, No!",tt2236160 9hXnvqJ7uxQ,2015.0,7,10,2016,Nightlight,It's Back,tt2236160 no5XxM0OY4o,2015.0,6,10,2016,Nightlight,Run!,tt2236160 vIrRt0vaySY,2015.0,3,10,2016,Nightlight,I Feel Sick,tt2236160 Xe8LJ4g7Dpg,2015.0,4,10,2016,Nightlight,Help!,tt2236160 rXyyr3kSB3s,2015.0,2,10,2016,Nightlight,Ben Was Here,tt2236160 oKCF_TzQ6Pk,2015.0,1,10,2016,Nightlight,Unseen Forces,tt2236160 --vFXH3mH3A,2014.0,10,10,2016,Cooties,Somebody Order a Badass?,tt2490326 uvAd-GbYBVw,2014.0,9,10,2016,Cooties,Nugget Outta Here,tt2490326 G6EzUGdelYg,2014.0,8,10,2016,Cooties,Eat a Cock,tt2490326 SQ9JOrG0mUM,2014.0,7,10,2016,Cooties,Teachers vs. Cootie Kids,tt2490326 x6jUAU8hoBk,2014.0,6,10,2016,Cooties,The 80's Action Movie Scene,tt2490326 _oFhIKlIBr0,2014.0,4,10,2016,Cooties,I Think I'm Gonna Dissect Him,tt2490326 ZMZxDJb5V8o,2014.0,5,10,2016,Cooties,You Can't Do Anything to Stop Me,tt2490326 jR3JlEXdBIo,2014.0,2,10,2016,Cooties,"Oh Look, Carnage",tt2490326 y5cSt5uqt3E,2014.0,3,10,2016,Cooties,They've Got,tt2490326 c7AescgZzEg,2014.0,1,10,2016,Cooties,Teacher's Lounge Trauma,tt2490326 i-VM7_DJlkQ,1987.0,5,8,2016,Jaws: The Revenge,The Banana Boat,tt0093300 wrkeOayCv6E,1987.0,8,8,2016,Jaws: The Revenge,Killing the Beast,tt0093300 5kgYUoeOPj4,1987.0,6,8,2016,Jaws: The Revenge,Come and Get Me,tt0093300 UbrDTO9asW4,1987.0,4,8,2016,Jaws: The Revenge,The Shark Hunts Michael,tt0093300 Fl9Cexw3ACk,1987.0,2,8,2016,Jaws: The Revenge,A Big Fish,tt0093300 sf2eXsM6Kik,1987.0,3,8,2016,Jaws: The Revenge,You Got 'Im,tt0093300 8CCr6_Xqt1k,1987.0,7,8,2016,Jaws: The Revenge,The Beast Comes Back,tt0093300 MG_ZMkTJ1dA,1987.0,1,8,2016,Jaws: The Revenge,A Shark Surprise,tt0093300 QQsH99EAwoE,1983.0,8,9,2016,Jaws 3D,How Did He Get Loose?,tt0085750 bLi52djkRTs,1983.0,4,9,2016,Jaws 3D,You Don't Want to See This,tt0085750 a4Td_W5dc1w,1983.0,6,9,2016,Jaws 3D,"Please Walk, Don't Run",tt0085750 _CWSn-Zdi5w,1983.0,7,9,2016,Jaws 3D,Swallowed Whole,tt0085750 arsAllZIa1Y,1983.0,9,9,2016,Jaws 3D,The Exploding Shark,tt0085750 Gw8uD1xHhBc,1983.0,1,9,2016,Jaws 3D,SeaWorld Attack,tt0085750 IMzMccLiMIc,1983.0,5,9,2016,Jaws 3D,Havoc at SeaWorld,tt0085750 lRAsSTNZD8g,1983.0,3,9,2016,Jaws 3D,Capturing a Great White,tt0085750 Cdgq2SQcKcQ,1983.0,2,9,2016,Jaws 3D,Rescued by Dolphins,tt0085750 ciL0tWi56tM,1978.0,8,9,2016,Jaws 2,Helicopter Attack,tt0077766 pfVP6HBoflg,1978.0,9,9,2016,Jaws 2,Open Wide,tt0077766 qy_ZclSCUwA,1978.0,7,9,2016,Jaws 2,Shark vs. Sailboats,tt0077766 rqWz0oKJQ5E,1978.0,5,9,2016,Jaws 2,Underwater Scare,tt0077766 a6CsW4dCk_8,1978.0,6,9,2016,Jaws 2,Swim Faster,tt0077766 N92pfxjHXkg,1978.0,2,9,2016,Jaws 2,A Grisly Discovery,tt0077766 cVPTibn-ewI,1978.0,3,9,2016,Jaws 2,Everybody Out of the Water,tt0077766 yr923CbtKsU,1978.0,1,9,2016,Jaws 2,Water Ski Attack,tt0077766 D3PcFuLPhG4,1978.0,4,9,2016,Jaws 2,That's a Shark,tt0077766 2fweZsmH4Tw,2015.0,9,10,2016,Steve Jobs,Acknowledge the Apple II Team,tt2080374 1To7zCTHAv4,2015.0,10,10,2016,Steve Jobs,Lisa Was Named After You,tt2080374 JhNznuSZ1n8,2015.0,8,10,2016,Steve Jobs,Make Things Alright with Lisa,tt2080374 moeAot5_Q_U,2015.0,7,10,2016,Steve Jobs,Jobs vs. Sculley,tt2080374 ya0uliWzUTI,2015.0,5,10,2016,Steve Jobs,It Needs to Say Hello,tt2080374 mLKA_BX6xKo,2015.0,4,10,2016,Steve Jobs,Here's What I'm Going to Do,tt2080374 AeZQ4Oi1wu8,2015.0,6,10,2016,Steve Jobs,What Do You Do?,tt2080374 C6MgTAuqpXc,2015.0,3,10,2016,Steve Jobs,Do You Know What a Coincidence Is?,tt2080374 XS-R1raNESI,2015.0,1,10,2016,Steve Jobs,Fix the Voice Demo,tt2080374 -b-EFcA7ing,2015.0,2,10,2016,Steve Jobs,Everyone Is Waiting For the Mac,tt2080374 DHL2KTvQ_eQ,1968.0,12,12,2016,Hang 'Em High,I'm the Law,tt0061747 1yMhC0o3y_0,1968.0,2,12,2016,Hang 'Em High,Some People Calls This Hell,tt0061747 BocJIlRPVvU,1968.0,9,12,2016,Hang 'Em High,Last Words,tt0061747 8-0dpreHXFM,1968.0,6,12,2016,Hang 'Em High,Dead or Alive,tt0061747 zDQueu9EF6M,1968.0,7,12,2016,Hang 'Em High,Fighting Miller,tt0061747 2QRFeV4rPZE,1968.0,8,12,2016,Hang 'Em High,Lynched or Judged,tt0061747 rqS6CaouXwE,1968.0,10,12,2016,Hang 'Em High,A Hanging and a Shooting,tt0061747 -pEKUJ9MADs,1968.0,3,12,2016,Hang 'Em High,Come to Kill the Prophet,tt0061747 ZgbGOBeeaD8,1968.0,4,12,2016,Hang 'Em High,The Judge's Offer,tt0061747 frIi1u8PAlc,1968.0,11,12,2016,Hang 'Em High,Rachel Remembers,tt0061747 eB46dRO0YZ8,1968.0,5,12,2016,Hang 'Em High,You Better Look at Him,tt0061747 vl5LaKMkhYw,1968.0,1,12,2016,Hang 'Em High,Hang 'Em,tt0061747 uk2ovL8llCw,2006.0,3,11,2016,The Host,River of No Return,tt0468492 djquKsYMo74,2006.0,9,11,2016,The Host,Thwarted Escape,tt0468492 jQTtJ71PkKE,2006.0,7,11,2016,The Host,Sewer Vomit,tt0468492 ZGha6pmwigQ,2006.0,10,11,2016,The Host,Agent Yellow,tt0468492 _GksGDm__8U,2006.0,8,11,2016,The Host,You Like Viruses?,tt0468492 fXGEXg5q5HM,2006.0,6,11,2016,The Host,The Last Stand,tt0468492 SN9LQ05sQEU,2006.0,11,11,2016,The Host,Defeating the Monster,tt0468492 4V7dPXjZJC0,2006.0,4,11,2016,The Host,Grieving Family,tt0468492 LkkVEYz6y20,2006.0,5,11,2016,The Host,Hospital Break,tt0468492 j4mo1ywVR_M,2006.0,1,11,2016,The Host,Down the Drain,tt0468492 lGcW9Egfm2M,2006.0,2,11,2016,The Host,Monster Fish Attack,tt0468492 r1fp_NVGr6Q,1979.0,9,10,2016,Hair,The Flesh Failures,tt0079261 kzueHOeJk40,1979.0,6,10,2016,Hair,Black Boys/White Boys,tt0079261 UTKrefMHcJQ,1979.0,10,10,2016,Hair,Let the Sunshine In,tt0079261 q1D9i-d1m4Y,1979.0,3,10,2016,Hair,Ain't Got No,tt0079261 DOrvXyOMjhQ,1979.0,5,10,2016,Hair,Where Do I Go?,tt0079261 LepvQqFvoWc,1979.0,2,10,2016,Hair,Manchester,tt0079261 t3XewsVnx9E,1979.0,8,10,2016,Hair,Good Morning Starshine,tt0079261 BTZArvbmG_o,1979.0,1,10,2016,Hair,Aquarius,tt0079261 U45CzgrLE9s,1979.0,7,10,2016,Hair,Easy to Be Hard,tt0079261 5P2p_4ftJjE,1979.0,4,10,2016,Hair,,tt0079261 73F6wZrDxao,2010.0,10,10,2016,Sherlock Holmes,The Final Solution,tt0988045 6QEYgLKNZd0,2010.0,8,10,2016,Sherlock Holmes,The Problem of the Ticking Bot,tt0988045 fI5qOb-otrs,2010.0,9,10,2016,Sherlock Holmes,A Case of a Brother's Burden,tt0988045 cKJ6Jyo_9to,2010.0,7,10,2016,Sherlock Holmes,His Last Bow,tt0988045 SxMetYMwzUU,2010.0,6,10,2016,Sherlock Holmes,The Copper Brother,tt0988045 RqNXT7abtQQ,2010.0,5,10,2016,Sherlock Holmes,The Adventure of the Cooked Man,tt0988045 AjXsoJGi1fo,2010.0,3,10,2016,Sherlock Holmes,The Hound of the Lost World,tt0988045 07k4FaH9dTc,2010.0,4,10,2016,Sherlock Holmes,The Disappointment of Lady Anesidora,tt0988045 crX0CMJ_aIQ,2010.0,2,10,2016,Sherlock Holmes,The John-Prostitute Plans,tt0988045 SiOImcd9L2c,2010.0,1,10,2016,Sherlock Holmes,A Study in Mercury Poisoning,tt0988045 x94XSdW6eEE,2007.0,10,10,2016,AVH: Alien vs. Hunter,The Hunter is Human,tt1094162 ZfKsbOpsea4,2007.0,9,10,2016,AVH: Alien vs. Hunter,Lee the Destroyer,tt1094162 8YaSWlYa9u4,2007.0,8,10,2016,AVH: Alien vs. Hunter,Man Battle for Survival,tt1094162 aCx3jrZJjPM,2007.0,7,10,2016,AVH: Alien vs. Hunter,Inside the Ship,tt1094162 btug5ZMTWuk,2007.0,5,10,2016,AVH: Alien vs. Hunter,Valentine's Alive,tt1094162 xiXiMxTbu5k,2007.0,6,10,2016,AVH: Alien vs. Hunter,Don't Leave the House,tt1094162 _8dcjZCqilE,2007.0,3,10,2016,AVH: Alien vs. Hunter,"It's an Alien, Dude",tt1094162 VaQo1PTIzXs,2007.0,4,10,2016,AVH: Alien vs. Hunter,He's Never Going to Die,tt1094162 c_lWrv5E18A,2007.0,2,10,2016,AVH: Alien vs. Hunter,Snack Time for the Alien,tt1094162 1OXNsIjuAnk,2007.0,1,10,2016,AVH: Alien vs. Hunter,Freaked Me Out So Badly,tt1094162 lq2V4EnoY68,2009.0,8,10,2016,Paranormal Entity,The Sister in the Attic,tt1586261 rFBErC8napg,2009.0,10,10,2016,Paranormal Entity,Sam's Nightmare,tt1586261 DLUx3hDY2wI,2009.0,9,10,2016,Paranormal Entity,Supernatural Slit Wrists,tt1586261 0KtJi_MLKqY,2009.0,7,10,2016,Paranormal Entity,It Followed Us,tt1586261 6CO4uEdr8p4,2009.0,6,10,2016,Paranormal Entity,Ghost Warning Bells,tt1586261 5BBhXUaqDZQ,2009.0,4,10,2016,Paranormal Entity,Footprints On the Ceiling,tt1586261 wQlyX4xKYeU,2009.0,5,10,2016,Paranormal Entity,Father's Ashes,tt1586261 _ZpONi1-f24,2009.0,3,10,2016,Paranormal Entity,A Phantom Voice,tt1586261 u34dzFKx4Rg,2009.0,1,10,2016,Paranormal Entity,No Protection From Evil,tt1586261 P8Cv5p0cgG0,2009.0,2,10,2016,Paranormal Entity,Message From a Ghost,tt1586261 itk5hcD2sFs,2013.0,10,10,2016,Prince Avalanche,Getting Drunk,tt2195548 u5qpNA4ZIFA,2013.0,9,10,2016,Prince Avalanche,Become a Dad,tt2195548 n8r0JS4Z9tI,2013.0,8,10,2016,Prince Avalanche,I Love Her,tt2195548 S7yCsHLwg30,2013.0,7,10,2016,Prince Avalanche,Fell Off a Cliff,tt2195548 tSYhESdFisA,2013.0,6,10,2016,Prince Avalanche,On Strike,tt2195548 xWZtwOffj1o,2013.0,5,10,2016,Prince Avalanche,Enjoy the Silence,tt2195548 ACr98cpjXnE,2013.0,4,10,2016,Prince Avalanche,A Blown Weekend,tt2195548 6Knf2lu45Yw,2013.0,3,10,2016,Prince Avalanche,Digging Through the Ashes,tt2195548 5ZxVaJcxkMo,2013.0,2,10,2016,Prince Avalanche,The Rewards of Solitude,tt2195548 YVmZ5gRR_zc,2013.0,1,10,2016,Prince Avalanche,Time for a Drink,tt2195548 Z9QsVa8r5Fk,2011.0,12,12,2016,Faces in the Crowd,Facing the Killer,tt1536410 8skrIns6h6I,2011.0,9,12,2016,Faces in the Crowd,Do You See Me When We Have Sex?,tt1536410 KuebMqpuoEg,2011.0,11,12,2016,Faces in the Crowd,Remembering the Killer,tt1536410 uvUaNcx7mlg,2011.0,10,12,2016,Faces in the Crowd,I Can Do Wacko,tt1536410 LFB_SKdGuLk,2011.0,8,12,2016,Faces in the Crowd,Meeting the Killer,tt1536410 eAvVsXliFxo,2011.0,7,12,2016,Faces in the Crowd,A Different Guy Every Night,tt1536410 rXDhJmUGdiM,2011.0,6,12,2016,Faces in the Crowd,That's Not Me,tt1536410 Td6UanhjhVs,2011.0,5,12,2016,Faces in the Crowd,Escaping the Faceless Killer,tt1536410 OFcprqLHg-M,2011.0,3,12,2016,Faces in the Crowd,I Don't Want to See You on a Slab,tt1536410 9pcfdiFrBEQ,2011.0,4,12,2016,Faces in the Crowd,The Barcode of the Human Race,tt1536410 s1pDel1G9Eg,2011.0,2,12,2016,Faces in the Crowd,Face Blindness,tt1536410 kePIiYeH2Ko,2011.0,1,12,2016,Faces in the Crowd,The Face of a Killer,tt1536410 TaYnzfexuFg,2015.0,8,10,2016,The Vatican Tapes,"Show Yourself, Serpent",tt1524575 ybq8gINMdBs,2015.0,10,10,2016,The Vatican Tapes,The Day We Most Fear,tt1524575 eIAiu9_4JDs,2015.0,9,10,2016,The Vatican Tapes,Antichrist,tt1524575 LiI1LdPRcQM,2015.0,7,10,2016,The Vatican Tapes,There Is an Obstruction,tt1524575 dpg077fR9Mc,2015.0,5,10,2016,The Vatican Tapes,Asylum Chaos,tt1524575 jAwlK8vL8OQ,2015.0,6,10,2016,The Vatican Tapes,We Move Away From God,tt1524575 OIFEMSfu4pk,2015.0,3,10,2016,The Vatican Tapes,Why Did You Do This?,tt1524575 yCUaXGVdi_k,2015.0,4,10,2016,The Vatican Tapes,Honesty Hour,tt1524575 ooiimi7zkoE,2015.0,2,10,2016,The Vatican Tapes,It's a Miracle,tt1524575 IwA5uSA5ZBI,2015.0,1,10,2016,The Vatican Tapes,The Accident,tt1524575 iQoNLmqqMQA,2015.0,10,10,2016,Knock Knock,Cheating Eventually Gets You Killed,tt3605418 zCttJu0ZFpw,2015.0,6,10,2016,Knock Knock,Like a Good Little Girl,tt3605418 52sXSYdNPsg,2015.0,9,10,2016,Knock Knock,Hide and Seek,tt3605418 2Qx3hHEoqMs,2015.0,8,10,2016,Knock Knock,The Correct Answer is Death,tt3605418 7TY3DFSCrOc,2015.0,7,10,2016,Knock Knock,Who Wants to Be a Pedophile?,tt3605418 FvUs8613_TM,2015.0,5,10,2016,Knock Knock,"Like What You See, Daddy?",tt3605418 VvGhOtoy5iE,2015.0,4,10,2016,Knock Knock,To Catch a Predator,tt3605418 l-aUy9_L22o,2015.0,3,10,2016,Knock Knock,Play Time's Over,tt3605418 Le-bfbn43WE,2015.0,1,10,2016,Knock Knock,Lost Girls,tt3605418 hK2Em4D7fhU,2015.0,2,10,2016,Knock Knock,Slow Jam DJ,tt3605418 koWVPnRRGlA,2014.0,10,10,2016,Paranormal Activity: The Marked Ones,Katie and Micah,tt2473682 zvdLSI3-j-A,2014.0,9,10,2016,Paranormal Activity: The Marked Ones,Surrounded by Witches,tt2473682 Y4fkp_IINqo,2014.0,8,10,2016,Paranormal Activity: The Marked Ones,Cleansing the Evil Spirit,tt2473682 v7kRQXWpSdE,2014.0,7,10,2016,Paranormal Activity: The Marked Ones,Trapped in the Basement,tt2473682 C42zpLSVjCY,2014.0,5,10,2016,Paranormal Activity: The Marked Ones,You Have the Same Mark,tt2473682 gw4Sj4hJy4s,2014.0,4,10,2016,Paranormal Activity: The Marked Ones,The Trapdoor,tt2473682 OhncteZCJWE,2014.0,6,10,2016,Paranormal Activity: The Marked Ones,Something in His Eyes,tt2473682 4nEsHsxsjew,2014.0,3,10,2016,Paranormal Activity: The Marked Ones,Strange Powers,tt2473682 63KhwUcX8dE,2014.0,2,10,2016,Paranormal Activity: The Marked Ones,Demonic Strength,tt2473682 9Fu4muqAsBM,2014.0,1,10,2016,Paranormal Activity: The Marked Ones,Simon Says,tt2473682 CLfY0oLo7o0,2012.0,10,10,2016,Paranormal Activity 4,Please Don't Hurt Me,tt2109184 Gko7aal3o7U,2012.0,9,10,2016,Paranormal Activity 4,Something in the Closet,tt2109184 rXpCjDg0RT0,2012.0,7,10,2016,Paranormal Activity 4,Trapped in the Garage,tt2109184 qBdgJs4tf60,2012.0,3,10,2016,Paranormal Activity 4,Ghost Child,tt2109184 CtARWCZGiag,2012.0,8,10,2016,Paranormal Activity 4,Katie Returns,tt2109184 b56RExAdg7s,2012.0,6,10,2016,Paranormal Activity 4,The Garage Door,tt2109184 OW1bbk4wVqo,2012.0,1,10,2016,Paranormal Activity 4,Robbie's Friend,tt2109184 CYXBxG1COzQ,2012.0,5,10,2016,Paranormal Activity 4,Levitation,tt2109184 WOcSwhJCnr8,2012.0,4,10,2016,Paranormal Activity 4,Bathtub Visitor,tt2109184 W1U_sJhDIXI,2012.0,2,10,2016,Paranormal Activity 4,The Chandelier,tt2109184 sfh3DVzcGAI,2012.0,2,12,2016,Stuck in Love,Punch to the Face,tt2205697 lTyNEv7TXmk,2012.0,12,12,2016,Stuck in Love,Happy Thanksgiving,tt2205697 _s2FEVQePMg,2012.0,11,12,2016,Stuck in Love,My Mom is Dead,tt2205697 pfk_iBQzECI,2012.0,9,12,2016,Stuck in Love,Between the Bars,tt2205697 iekeU-w3im0,2012.0,10,12,2016,Stuck in Love,Profile Picture,tt2205697 Ipf6Zg3UFTk,2012.0,8,12,2016,Stuck in Love,Less Cynical,tt2205697 SCp3HsyGqeo,2012.0,7,12,2016,Stuck in Love,Running Into You,tt2205697 SAMMLF75HmM,2012.0,5,12,2016,Stuck in Love,Gonna be Friends,tt2205697 LP22LQEq-tY,2012.0,6,12,2016,Stuck in Love,Favorite Book,tt2205697 Xq_a8AYpKYA,2012.0,4,12,2016,Stuck in Love,"Don't, Don't, Don't",tt2205697 yF0HUzSCd84,2012.0,3,12,2016,Stuck in Love,I Release You,tt2205697 6ljUgAVSu0M,2012.0,1,12,2016,Stuck in Love,Two Kinds of People,tt2205697 H8nX1mhYFk8,2013.0,11,11,2016,Life of a King,The Final Round,tt2708254 6MtwwUfJ8IE,2013.0,10,11,2016,Life of a King,By Myself,tt2708254 V2M1t7HAj1A,2013.0,9,11,2016,Life of a King,The Radio Show,tt2708254 cx2YdJwQaeU,2013.0,7,11,2016,Life of a King,They Think I'm Nuts,tt2708254 BDYgCu8m5dQ,2013.0,6,11,2016,Life of a King,One Mistake,tt2708254 5LXDBdoZfy4,2013.0,8,11,2016,Life of a King,I Learned the Board,tt2708254 3bcNygIQfMU,2013.0,5,11,2016,Life of a King,The Chess House,tt2708254 OqnFSU27fuE,2013.0,4,11,2016,Life of a King,Chess Club Cancelled,tt2708254 m4qQ9IIo23c,2013.0,3,11,2016,Life of a King,The Board of Life,tt2708254 N7urptsSqNY,2013.0,2,11,2016,Life of a King,The King is Your Life,tt2708254 f4D3R4tJNMo,2013.0,1,11,2016,Life of a King,You Some Kinda Tough Guy?,tt2708254 keymL9b6W4g,2013.0,11,11,2016,Plush,Enzo's End,tt2226519 JDnjiQCk2JQ,2013.0,10,11,2016,Plush,Did You Hurt Him?,tt2226519 sdc-LNkYA78,2013.0,9,11,2016,Plush,Erotic Music Video,tt2226519 TFGYMpZUv4Q,2013.0,8,11,2016,Plush,Embrace the Dark Side,tt2226519 D_1bty7dttk,2013.0,7,11,2016,Plush,Music and Sex,tt2226519 q1V_8cCX5Vg,2013.0,6,11,2016,Plush,Stalkers and Soulmates,tt2226519 Ern5-LGeU50,2013.0,5,11,2016,Plush,Awkward Sex,tt2226519 gx4ZNttML0M,2013.0,4,11,2016,Plush,Hayley and Enzo,tt2226519 hh7_pDbACts,2013.0,3,11,2016,Plush,First Time's Always Free,tt2226519 yYhuz0q21_4,2013.0,2,11,2016,Plush,Sexy Massage,tt2226519 EFhZ72P48bc,2013.0,1,11,2016,Plush,Psycho Fan,tt2226519 AFJ_QnfENd4,2005.0,7,7,2016,American Pie Presents Band Camp,Ruined Routine,tt0781008 zSd5uTUpuAY,2005.0,6,7,2016,American Pie Presents Band Camp,Making Out,tt0781008 gijYgnVD9vo,2005.0,5,7,2016,American Pie Presents Band Camp,Horndog and Stiffmeister,tt0781008 rWe5nzPq1JA,2005.0,4,7,2016,American Pie Presents Band Camp,I've Been Poisoned!,tt0781008 nlH_5ejw7Gs,2005.0,3,7,2016,American Pie Presents Band Camp,The Duel,tt0781008 oSc-5smBhRQ,2005.0,2,7,2016,American Pie Presents Band Camp,Challenge to a Duel,tt0781008 imcPspMbcL0,2005.0,1,7,2016,American Pie Presents Band Camp,Pepper Spray Prank,tt0781008 rlXTyrGsiHQ,2012.0,10,10,2016,2 Days in New York,If We Broke Up,tt1602472 OjGiHy7VIhI,2012.0,8,10,2016,2 Days in New York,Selling a Soul,tt1602472 MDsC2TNfF3g,2012.0,9,10,2016,2 Days in New York,Vincent Gallo Ate My Soul,tt1602472 FrH_IKiZTOc,2012.0,7,10,2016,2 Days in New York,Boyfriend on the Radio,tt1602472 8tfmRZV1vnI,2012.0,5,10,2016,2 Days in New York,A Brain Tumor,tt1602472 TPdR8MCjRGQ,2012.0,6,10,2016,2 Days in New York,Introducing the Family,tt1602472 19moJ8AP49o,2012.0,4,10,2016,2 Days in New York,I'm Getting You Evicted,tt1602472 ZrCtTXl-84I,2012.0,3,10,2016,2 Days in New York,Getting Freaky With a Toothbrush,tt1602472 0GsFiFVwfBE,2012.0,2,10,2016,2 Days in New York,You're So Lucky to Be Black,tt1602472 _ilh4ZR3aUo,2012.0,1,10,2016,2 Days in New York,Meeting the Family,tt1602472 QA34Dlela4Y,2009.0,3,10,2016,The Terminators,We Need to Go On Lockdown,tt1350512 u1CmSdzgYiY,2009.0,4,10,2016,The Terminators,Extermination of the Humans,tt1350512 5cxSYatteJ0,2009.0,2,10,2016,The Terminators,We're Flying Solo,tt1350512 NK_Gt07WU5o,2009.0,1,10,2016,The Terminators,Breaking Command,tt1350512 BcfTPLZTAog,2009.0,10,10,2016,The Terminators,The Big One,tt1350512 L1bqqCJlCpg,2009.0,9,10,2016,The Terminators,We Have Lift Off,tt1350512 d-Sk3AvyR24,2009.0,6,10,2016,The Terminators,We're Their Only Threat,tt1350512 2QB-g-9tuEk,2009.0,8,10,2016,The Terminators,The Unstoppable Machines,tt1350512 ZeMzb1DXoFM,2009.0,7,10,2016,The Terminators,Strap Yourselves In!,tt1350512 ztEcn3h90g0,2009.0,5,10,2016,The Terminators,Calm Down!,tt1350512 gFsyI1eps-U,2010.0,10,10,2016,Titanic II,Failure to Resuscitate,tt1640571 _41uCWOabEU,2010.0,8,10,2016,Titanic II,"We Won't Be Electrocuted, Right?",tt1640571 rgFfioIzPgs,2010.0,9,10,2016,Titanic II,Only One Can Survive,tt1640571 vssoBfErh5w,2010.0,6,10,2016,Titanic II,Ships and Planes Ablaze,tt1640571 gvAl9GR1kDs,2010.0,7,10,2016,Titanic II,Door Jam Death,tt1640571 Y9ajaBIbzYI,2010.0,4,10,2016,Titanic II,It's Going to Hit!,tt1640571 _jkSWElBWf0,2010.0,5,10,2016,Titanic II,It Happened,tt1640571 Q1XwIK9Ykvs,2010.0,3,10,2016,Titanic II,15 Minutes Until Impact,tt1640571 OAMxHdzk0EU,2010.0,2,10,2016,Titanic II,Frozen With Fear,tt1640571 C1QL0e4B7N8,2010.0,1,10,2016,Titanic II,Ticking Time Bomb,tt1640571 auMWOnofBSI,2011.0,5,11,2016,Rampart,Talking to the Lawyers,tt1640548 _6iwpd8yeQc,2011.0,11,11,2016,Rampart,Not the Confession I Want,tt1640548 ayplsqakP80,2011.0,2,11,2016,Rampart,The Beating,tt1640548 P94nUxbIgs0,2011.0,10,11,2016,Rampart,It's All True,tt1640548 1kAMrmDG-68,2011.0,8,11,2016,Rampart,Call This Lawyer,tt1640548 hK9v_6lK_lw,2011.0,9,11,2016,Rampart,I Hate Everyone Equally,tt1640548 Y0SFyVdPfO8,2011.0,7,11,2016,Rampart,What Happened,tt1640548 aGActTYN93E,2011.0,6,11,2016,Rampart,Something You Aren't Telling Me,tt1640548 Yd_u2G_ucCU,2011.0,3,11,2016,Rampart,Thought About Retirement?,tt1640548 CHz--mmu5RA,2011.0,4,11,2016,Rampart,They Predicted Your Response,tt1640548 RPS05ujl9FM,2011.0,1,11,2016,Rampart,Date Rape Dave,tt1640548 nW-iQzgmyeI,2006.0,8,12,2016,Van Wilder 2: The Rise of Taj,Do I Look Like An American Idiot?,tt0480271 WrCCnZaSlKE,2006.0,10,12,2016,Van Wilder 2: The Rise of Taj,The Truth About Dad,tt0480271 0gAMfKzCJsc,2006.0,5,12,2016,Van Wilder 2: The Rise of Taj,Throwing Textbooks,tt0480271 snRRa2Z3DFo,2006.0,9,12,2016,Van Wilder 2: The Rise of Taj,Paint Balls,tt0480271 HcadJjFOhcg,2006.0,1,12,2016,Van Wilder 2: The Rise of Taj,Taj Is Rejected,tt0480271 jKa9O33GXLI,2006.0,12,12,2016,Van Wilder 2: The Rise of Taj,Pip Meets His Ancestors,tt0480271 WPrJDDvstbM,2006.0,11,12,2016,Van Wilder 2: The Rise of Taj,The Final Competition Begins,tt0480271 kRwFOUeh-Ro,2006.0,6,12,2016,Van Wilder 2: The Rise of Taj,Diarrhea Face,tt0480271 4GUliPk7fK0,2006.0,4,12,2016,Van Wilder 2: The Rise of Taj,The New You,tt0480271 0WOnDEx4QLc,2006.0,7,12,2016,Van Wilder 2: The Rise of Taj,Fencing Like Zorro,tt0480271 AiZf4-eJQUA,2006.0,2,12,2016,Van Wilder 2: The Rise of Taj,Taj Meets the Boys,tt0480271 loVYzYPJBTE,2007.0,8,8,2016,American Pie Presents Beta House,Keg Competition,tt0974959 fw5N8DF4js8,2006.0,3,12,2016,Van Wilder 2: The Rise of Taj,Sexy Sadie,tt0480271 fk0O_cdBbMg,2007.0,7,8,2016,American Pie Presents Beta House,Greek Roulette,tt0974959 7AkMzkl0r4E,2007.0,6,8,2016,American Pie Presents Beta House,Parkour Pig Chase,tt0974959 3wsMRsZ2Q3I,2007.0,5,8,2016,American Pie Presents Beta House,Pool Duel,tt0974959 muVopS3Yn7s,2007.0,3,8,2016,American Pie Presents Beta House,The Party's Over,tt0974959 XcE9IUjMtOE,2007.0,4,8,2016,American Pie Presents Beta House,What Would Levenstein Do?,tt0974959 qtKtxLmxl24,2007.0,1,8,2016,American Pie Presents Beta House,Beta House Rules!,tt0974959 7yVV04Hi1Ms,2007.0,2,8,2016,American Pie Presents Beta House,The Geek House,tt0974959 QDurduePMWE,2012.0,11,11,2016,Red Lights,Psychic Showdown,tt1748179 Q9-NzGEY90w,2012.0,10,11,2016,Red Lights,Bathroom Beating,tt1748179 6S__xAKQcF4,2012.0,9,11,2016,Red Lights,Investigating Simon Silver,tt1748179 PkLE7uHqRt4,2012.0,8,11,2016,Red Lights,Paranoia and Hallucinations,tt1748179 Oe_sEQkEIZw,2012.0,7,11,2016,Red Lights,Questioning Leonard,tt1748179 6bNyU9A9LlM,2012.0,6,11,2016,Red Lights,Simon's Power,tt1748179 i3u7nvpgDTM,2012.0,4,11,2016,Red Lights,Fake Faith Healer,tt1748179 CcLJWUzDSbA,2012.0,5,11,2016,Red Lights,Psychic Test,tt1748179 aRr8QkQ9Qrw,2012.0,2,11,2016,Red Lights,Why Bother?,tt1748179 bfn9-AjAJCU,2012.0,3,11,2016,Red Lights,Beliefs and Desires,tt1748179 dpIyHx-GsbA,2012.0,1,11,2016,Red Lights,A Skeptic,tt1748179 0t1TFwXKL2E,2010.0,10,10,2016,Little Fockers,Let's Dance,tt0970866 SqY9GVVUo4w,2010.0,8,10,2016,Little Fockers,Greg Is Done,tt0970866 lyuqs9s8134,2010.0,7,10,2016,Little Fockers,The Hottie and the Groupie,tt0970866 7478n46dKCg,2010.0,9,10,2016,Little Fockers,Come and Get It,tt0970866 6SoBKiO5mlY,2010.0,6,10,2016,Little Fockers,Double Dose of Focker,tt0970866 Hx3l8vu5L6Q,2010.0,4,10,2016,Little Fockers,Burying Jack,tt0970866 _Y8RUTZ6CKc,2010.0,5,10,2016,Little Fockers,Erectile Dysfunction,tt0970866 BgvJlZKbqlw,2010.0,1,10,2016,Little Fockers,The Godfocker,tt0970866 o6V1Ov1GCuQ,2010.0,3,10,2016,Little Fockers,The Ex-Lover,tt0970866 7nZ0VyXfpec,2010.0,2,10,2016,Little Fockers,Carving the Turkey,tt0970866 j2SPawJewxA,1972.0,11,12,2016,The Magnificent Seven Ride!,Battling De Toro,tt0068897 qVS1E2L7DYg,1972.0,12,12,2016,The Magnificent Seven Ride!,The Town Is Saved,tt0068897 tTFOv5oFe3E,1972.0,10,12,2016,The Magnificent Seven Ride!,Pick Your Partners,tt0068897 ucBnN5N2fn8,1972.0,8,12,2016,The Magnificent Seven Ride!,A Posse of Prisoners,tt0068897 Wk9-oZ9OGjw,1972.0,9,12,2016,The Magnificent Seven Ride!,Assault on the Hacienda,tt0068897 W9vPRj-c6VQ,1972.0,7,12,2016,The Magnificent Seven Ride!,Open for Suggestions,tt0068897 nB95pK8TgYw,1972.0,5,12,2016,The Magnificent Seven Ride!,In Cold Blood,tt0068897 3ynO7Oaj2oY,1972.0,4,12,2016,The Magnificent Seven Ride!,Shelly Robs a Bank,tt0068897 z-KB47AFQAY,1972.0,6,12,2016,The Magnificent Seven Ride!,Damsels in Distress,tt0068897 KbZQdFPxeXE,1972.0,2,12,2016,The Magnificent Seven Ride!,Only a Boy,tt0068897 vkFKHF9Fs_s,1972.0,3,12,2016,The Magnificent Seven Ride!,Set Free,tt0068897 q_y1Qe8dyCw,1972.0,1,12,2016,The Magnificent Seven Ride!,The Marshal Saves Jim,tt0068897 1MVR4GmqfHg,2007.0,10,12,2016,Lars and the Real Girl,A Kiss Before Dying,tt0805564 0j9yDnytwPU,2007.0,11,12,2016,Lars and the Real Girl,No Ordinary Funeral,tt0805564 wSdltnqDWV0,2007.0,6,12,2016,Lars and the Real Girl,We Do It for You,tt0805564 qfwei0pOLVs,2007.0,5,12,2016,Lars and the Real Girl,Touch Therapy,tt0805564 ZfcfpjiFZAQ,2007.0,8,12,2016,Lars and the Real Girl,The Bear Is Dead,tt0805564 IMuAOVTXtLM,2007.0,12,12,2016,Lars and the Real Girl,A New Beginning,tt0805564 DKp509HHG0w,2007.0,9,12,2016,Lars and the Real Girl,Call 911!,tt0805564 Pu1vplwgGAY,2007.0,7,12,2016,Lars and the Real Girl,How Did You Know?,tt0805564 gHWnmlpmub4,2007.0,3,12,2016,Lars and the Real Girl,Dinner With the Real Girl,tt0805564 Ej_fgugvtRg,2007.0,4,12,2016,Lars and the Real Girl,Bianca Goes to the Doctor,tt0805564 MB5zQ9X-2tY,2007.0,1,12,2016,Lars and the Real Girl,Worried About Lars,tt0805564 2W9aISYBJXY,2007.0,2,12,2016,Lars and the Real Girl,Meeting Bianca,tt0805564 nIuuhtJM_Dw,1986.0,8,10,2016,Something Wild,Virginia is for Lovers,tt0091983 D0Rs2n8eCPQ,1986.0,6,10,2016,Something Wild,Enjoy It While We Can,tt0091983 FKPNubrWp0A,1986.0,5,10,2016,Something Wild,A Pretty Good Liar,tt0091983 4nSkJZ3i2-g,1986.0,9,10,2016,Something Wild,Charlie Stabs Ray,tt0091983 ueNjp9QfQFM,1986.0,3,10,2016,Something Wild,Getting a Room,tt0091983 vtyIGp8uv8w,1986.0,10,10,2016,Something Wild,Never Wanted to Say Goodbye,tt0091983 23Xxotom7bI,1986.0,7,10,2016,Something Wild,How's Audrey in Bed?,tt0091983 PsAtoPJeiys,1986.0,4,10,2016,Something Wild,A New Car,tt0091983 LHTaiCLZO3s,1986.0,1,10,2016,Something Wild,A Closet Rebel,tt0091983 _mzI1HQ0cYE,1986.0,2,10,2016,Something Wild,A Bottle of Scotch,tt0091983 b7wurDomuVs,1990.0,7,11,2016,Quigley Down Under,Farewell to Cora,tt0102744 r9mcNXIJFbY,1990.0,3,11,2016,Quigley Down Under,Pacification By Force,tt0102744 0sUHxfXKUas,1990.0,11,11,2016,Quigley Down Under,Headed for America,tt0102744 NtxR-xgJWwo,1990.0,10,11,2016,Quigley Down Under,Natives Save Quigley's Life,tt0102744 pGxyOeypYFs,1990.0,9,11,2016,Quigley Down Under,Quigley Wins the Duel,tt0102744 K0xwTAJROW4,1990.0,8,11,2016,Quigley Down Under,Marston Challenges Quigley,tt0102744 7UvSGe2Md6g,1990.0,6,11,2016,Quigley Down Under,Attacked by Dingoes,tt0102744 j95Tk1SLXOA,1990.0,4,11,2016,Quigley Down Under,Native Food,tt0102744 7Lj3LydT1uk,1990.0,1,11,2016,Quigley Down Under,Meeting Crazy Cora,tt0102744 TTXjgOan_KI,1990.0,2,11,2016,Quigley Down Under,A Good Shot,tt0102744 -cFW3A13o8s,1990.0,5,11,2016,Quigley Down Under,A Day With the Natives,tt0102744 QGNI11LEG54,1988.0,2,11,2016,Vampire's Kiss,Rachel the Vampire,tt0098577 s0eHgfzlrF8,1988.0,7,11,2016,Vampire's Kiss,Tell Me You Love Me,tt0098577 0isiQvOb874,1988.0,9,11,2016,Vampire's Kiss,Taxi Cab Meltdown,tt0098577 V5Np7vmtIYc,1988.0,11,11,2016,Vampire's Kiss,A Few Minor Confessions,tt0098577 W1W5JF4lRIQ,1988.0,10,11,2016,Vampire's Kiss,Calling the Doctor,tt0098577 n2ZkOcq4vWU,1988.0,8,11,2016,Vampire's Kiss,Cockroach for Breakfast,tt0098577 xB1tKdhnGaE,1988.0,6,11,2016,Vampire's Kiss,A Horrible Job,tt0098577 fOONIlhXFh4,1988.0,5,11,2016,Vampire's Kiss,Alphabetical Order,tt0098577 gbXZzvvp2uc,1988.0,4,11,2016,Vampire's Kiss,"Am I Getting Through to You, Alva?",tt0098577 ShCW6mr_rsM,1988.0,3,11,2016,Vampire's Kiss,Drunk and Horny,tt0098577 Q1-jHyQHGl8,1988.0,1,11,2016,Vampire's Kiss,Aroused By a Bat,tt0098577 X7ME7WkPyC8,1988.0,11,12,2016,Eight Men Out,Banned From Baseball,tt0095082 cMxPAkZgoy0,1988.0,12,12,2016,Eight Men Out,It's Him,tt0095082 hOnolgR_8tc,1988.0,9,12,2016,Eight Men Out,The Thrill of Baseball,tt0095082 BKtBN0KHq5A,1988.0,10,12,2016,Eight Men Out,The Verdict,tt0095082 J2ugazPv__M,1988.0,8,12,2016,Eight Men Out,A Separate Trial,tt0095082 hFjIRET64r4,1988.0,3,12,2016,Eight Men Out,Buck's Fans,tt0095082 oEUB2LSsbe8,1988.0,7,12,2016,Eight Men Out,"Say It Ain't So, Joe",tt0095082 v3bQ1GiWhJk,1988.0,6,12,2016,Eight Men Out,Dickie Wins Game 3,tt0095082 -_Bdf9C0SAU,1988.0,5,12,2016,Eight Men Out,The Fix,tt0095082 0fBA7VUZEgY,1988.0,4,12,2016,Eight Men Out,Eddie's Bonus,tt0095082 LlJx0tWUuGY,1988.0,1,12,2016,Eight Men Out,Shoeless Joe,tt0095082 S9ryLG-cAHo,1988.0,2,12,2016,Eight Men Out,The Players' Bonus,tt0095082 4E_jCd4LZL8,1985.0,10,10,2016,Lost in America,Crossing Guard Woes,tt0089504 pVssi5x6rxI,1985.0,2,10,2016,Lost in America,Quit Your Job,tt0089504 ULLpy_WyJds,1985.0,9,10,2016,Lost in America,"The $100,000 Box",tt0089504 cZumS81KSw8,1985.0,5,10,2016,Lost in America,Twenty-Two!,tt0089504 rFy2252ierA,1985.0,3,10,2016,Lost in America,"Las Vegas, Here We Come",tt0089504 7moP2oVrQ7Q,1985.0,4,10,2016,Lost in America,How Much Do You Want?,tt0089504 pf2q0HemaFs,1985.0,6,10,2016,Lost in America,The Boldest Experiment in Advertising History,tt0089504 xdMilnKGJdA,1985.0,8,10,2016,Lost in America,The Nest Egg Principle,tt0089504 rXwdnHnLvms,1985.0,1,10,2016,Lost in America,I've Seen the Future!,tt0089504 MnIzvH5GvOA,1985.0,7,10,2016,Lost in America,Hoover Dam Meltdown,tt0089504 uPQlrPGbD6k,1993.0,3,12,2016,Benny & Joon,Meeting Sam,tt0106387 pQ68ImO9dBU,1993.0,11,12,2016,Benny & Joon,You Need Me to Be Sick,tt0106387 8YMGQMcNu2s,1993.0,8,12,2016,Benny & Joon,The Troublesome Hat,tt0106387 UnM6dPbV9Ng,1993.0,12,12,2016,Benny & Joon,Sam Swings By,tt0106387 w0X84fml-Bc,1993.0,10,12,2016,Benny & Joon,A Quick Diversion,tt0106387 olTfms7kJIk,1993.0,9,12,2016,Benny & Joon,Sam's Park Routine,tt0106387 QUP62JKYg2I,1993.0,7,12,2016,Benny & Joon,Fingerpainting,tt0106387 74c-fV_AjAQ,1993.0,1,12,2016,Benny & Joon,Joon Sees Sam,tt0106387 F6mWKtfNVA0,1993.0,6,12,2016,Benny & Joon,Prom Queen Mutilator,tt0106387 tkj3klWMn5E,1993.0,4,12,2016,Benny & Joon,The Dance of the Rolls,tt0106387 0QoGNA_9zqQ,1993.0,5,12,2016,Benny & Joon,Grilled Cheese Sandwich,tt0106387 uJlhwWFAAxI,1993.0,2,12,2016,Benny & Joon,Smoothie Snorkeling,tt0106387 vQ-bN0fv4Uw,2009.0,9,11,2016,Merantau,Showdown at the Shipyard,tt1368116 fp4Rib-6cm0,2009.0,10,11,2016,Merantau,Crowbar Attack,tt1368116 UUnnQwVC0rk,2009.0,11,11,2016,Merantau,Listen to Them,tt1368116 xB-h2YkIP0Q,2009.0,7,11,2016,Merantau,Elevator Fight,tt1368116 dZtW9n3C2gg,2009.0,8,11,2016,Merantau,Yuda Faces the Henchmen,tt1368116 KYeZm7yCOaE,2009.0,6,11,2016,Merantau,Rooftop Chase,tt1368116 EYpR4aksH3g,2009.0,5,11,2016,Merantau,Saving Adit,tt1368116 DHww3Tdh26o,2009.0,4,11,2016,Merantau,Fighting in the Club,tt1368116 GjJzcjwVF8s,2009.0,3,11,2016,Merantau,Four on One,tt1368116 AbkZAbJqcIA,2009.0,2,11,2016,Merantau,Let Her Go,tt1368116 Qrg2m5OnJT0,2009.0,1,11,2016,Merantau,The Thief and His Sister,tt1368116 I5tF_zv73vk,2007.0,5,10,2016,Big Man Japan,The Evil Stare Monster,tt0997147 yuvBcB1oLI8,2007.0,4,10,2016,Big Man Japan,Kaiju Grandpa,tt0997147 F2CVL2cAV80,2007.0,2,10,2016,Big Man Japan,Becoming,tt0997147 -ZDt52_mxS8,2007.0,1,10,2016,Big Man Japan,The Strangling Monster,tt0997147 YYsc7jslsc0,2007.0,3,10,2016,Big Man Japan,The Leaping Monster,tt0997147 2GGLMLNbZpE,2007.0,7,10,2016,Big Man Japan,The Child Monster,tt0997147 dWhKh27tEHQ,2007.0,10,10,2016,Big Man Japan,Super Justice Beating,tt0997147 2-i06SAeWs8,2007.0,6,10,2016,Big Man Japan,The Stink Monster,tt0997147 kbLP4mKMTYg,2007.0,9,10,2016,Big Man Japan,Baby or Die!,tt0997147 L92EFtI5VxA,2007.0,8,10,2016,Big Man Japan,Grandpa vs. The Evil Red Menace,tt0997147 4x1rlz-IYUk,2011.0,10,10,2016,Johnny English Reborn,You Can't Get Away,tt1634122 MC_Wv7-i2Es,2011.0,8,10,2016,Johnny English Reborn,Body Bag,tt1634122 cA9k-dz7Bqw,2011.0,7,10,2016,Johnny English Reborn,Wheelchair Chase,tt1634122 cU2j_kP6U0w,2011.0,9,10,2016,Johnny English Reborn,Mind Control,tt1634122 SQrD5lkN18o,2011.0,6,10,2016,Johnny English Reborn,The Sinking Chair,tt1634122 cighZsv-N2E,2011.0,5,10,2016,Johnny English Reborn,Don't Give Up on Us Baby,tt1634122 KZt-mGmTpZI,2011.0,4,10,2016,Johnny English Reborn,Murderous Crone,tt1634122 aj71pJABFFU,2011.0,3,10,2016,Johnny English Reborn,You've Met Your Matchstick,tt1634122 W_WSGHIPSrM,2011.0,2,10,2016,Johnny English Reborn,Parkour Chase,tt1634122 ZAF804tkZ8o,2011.0,1,10,2016,Johnny English Reborn,The Toy Cupboard,tt1634122 _pzghUqM1QQ,2014.0,10,10,2016,Noah,A Second Chance,tt1959490 CRXtW09cufc,2014.0,9,10,2016,Noah,I Cannot Do This,tt1959490 gSHomdp3o2U,2014.0,5,10,2016,Noah,Battle for the Ark,tt1959490 o2sjOBiBXSc,2014.0,8,10,2016,Noah,We Broke the World,tt1959490 PWf0rLp7sUY,2014.0,6,10,2016,Noah,The Great Flood,tt1959490 B_FpV0CZjxY,2014.0,7,10,2016,Noah,The Creation of the World,tt1959490 8pUjbhH7A7M,2014.0,4,10,2016,Noah,Methusaleh's Blessing,tt1959490 jm7xE-OyJUY,2014.0,3,10,2016,Noah,Your Time Is Done,tt1959490 r2e-9oBXk0o,2014.0,2,10,2016,Noah,'s Vision,tt1959490 LbkjkJzREd4,2014.0,1,10,2016,Noah,The Watchers,tt1959490 _W1RJXCb0xo,2011.0,12,12,2016,Deadtime Stories 2,Undead Love Triangle,tt1156300 JHpXWiJJbL0,2011.0,11,12,2016,Deadtime Stories 2,Audrey Goes Mad,tt1156300 H_GApJWNWiw,2011.0,10,12,2016,Deadtime Stories 2,Anything for Love,tt1156300 QVNrihP8ME8,2011.0,8,12,2016,Deadtime Stories 2,Undead Birth,tt1156300 i5JmxPGoM7U,2011.0,9,12,2016,Deadtime Stories 2,Insatiable Lust,tt1156300 2kLkwWVB9Wg,2011.0,7,12,2016,Deadtime Stories 2,Allison Returns,tt1156300 q3kcQHhvOWA,2011.0,5,12,2016,Deadtime Stories 2,Babe With a Gun,tt1156300 xsHeAaSmoe8,2011.0,6,12,2016,Deadtime Stories 2,Bombshell Suicide,tt1156300 n1r4aOeOxgo,2011.0,2,12,2016,Deadtime Stories 2,Eating Rats and People,tt1156300 gd9ZzDgPVFo,2011.0,1,12,2016,Deadtime Stories 2,Death in the Cave,tt1156300 aMOraCoYToI,2011.0,4,12,2016,Deadtime Stories 2,Devouring Our Friend,tt1156300 f4OPBNbNWnw,2011.0,3,12,2016,Deadtime Stories 2,Cannibalism in the Cave,tt1156300 W2z88979aKM,2009.0,10,10,2016,Deadtime Stories,The Vampire Strikes,tt1334526 exo_QZ07_BU,2009.0,9,10,2016,Deadtime Stories,Ravished by a Vampire,tt1334526 i_qYwD16FXc,2009.0,8,10,2016,Deadtime Stories,The Mermaid's Slave,tt1334526 u-ywf1_Aqy8,2009.0,7,10,2016,Deadtime Stories,The Mermaid's Lethal Kiss,tt1334526 OU4AuLhWTv8,2009.0,3,10,2016,Deadtime Stories,Death by Blow Dart,tt1334526 6COCjzLI5kU,2009.0,6,10,2016,Deadtime Stories,Are You Trying to Tell Me a Mermaid Story?,tt1334526 g2h4ycVI7AQ,2009.0,1,10,2016,Deadtime Stories,Forbidden Fruit?,tt1334526 k2ih0cR-fEI,2009.0,5,10,2016,Deadtime Stories,A Rotten Hand,tt1334526 5Nw5r8_YCFw,2009.0,4,10,2016,Deadtime Stories,Expedition's End,tt1334526 3aJHkdlvdHM,2009.0,2,10,2016,Deadtime Stories,Poison-Tipped Darts,tt1334526 kaPdOgl1s7k,2010.0,10,10,2016,Ong Bak 3: The Final Battle,Death by Elephant,tt1653690 OEf-Lee0YnE,2015.0,10,10,2016,The Last Witch Hunter,Iron and Fire,tt1618442 8aegfjXaTmY,2015.0,9,10,2016,The Last Witch Hunter,Witch Queen vs. Witch Hunter,tt1618442 C-c8T2hNNoo,2015.0,4,10,2016,The Last Witch Hunter,Dragged Into the Dark,tt1618442 2Nd_TsVQwgA,2015.0,6,10,2016,The Last Witch Hunter,The Witch Queen's Heart,tt1618442 x4oAO_kDHTY,2015.0,7,10,2016,The Last Witch Hunter,I Am Reborn,tt1618442 ZTi7bZGkJk4,2015.0,8,10,2016,The Last Witch Hunter,Sentinel Shut Down,tt1618442 0NHFYpXhiiY,2015.0,5,10,2016,The Last Witch Hunter,Mind Trap,tt1618442 zt-zQ_EzPsY,2015.0,1,10,2016,The Last Witch Hunter,I Curse You,tt1618442 6qAar5htD0g,2015.0,3,10,2016,The Last Witch Hunter,No More Memory Potions For You,tt1618442 e-6fZ7wiPQk,2015.0,2,10,2016,The Last Witch Hunter,Apprehending a Witch,tt1618442 dlxT9ot5Bi8,2014.0,10,10,2016,Mega Shark vs. Mecha Shark,Nero the Hero,tt1705773 k9mzgW758k8,2014.0,6,10,2016,Mega Shark vs. Mecha Shark,A Mech Crashes the Opera,tt1705773 ayLJJZh7RRo,2014.0,9,10,2016,Mega Shark vs. Mecha Shark,Rosie's Stuck in Chum,tt1705773 UeKhKcL5efg,2014.0,8,10,2016,Mega Shark vs. Mecha Shark,Jumping the Shark,tt1705773 l94WdhJc8ZM,2014.0,4,10,2016,Mega Shark vs. Mecha Shark,One Pissed Off Mega Shark,tt1705773 swcFDa5jYfw,2014.0,7,10,2016,Mega Shark vs. Mecha Shark,Amphibious Mode,tt1705773 8tnQxuIPgXQ,2014.0,5,10,2016,Mega Shark vs. Mecha Shark,Nero at the Wheel,tt1705773 Jj6S3vtJPaA,2014.0,3,10,2016,Mega Shark vs. Mecha Shark,Smackdown in the Sky,tt1705773 -jFiu3zG8dc,2014.0,2,10,2016,Mega Shark vs. Mecha Shark,Mega Meets Mecha,tt1705773 qgcQxJuBfY4,2014.0,1,10,2016,Mega Shark vs. Mecha Shark,Tugboat Toss,tt1705773 dcB5igj1k6w,2006.0,2,10,2016,Snakes on a Train,Smoke and Slime,tt0843873 Qwi6MbaOBME,2006.0,6,10,2016,Snakes on a Train,Take Off Your Shirt,tt0843873 iCTkYP-7by0,2006.0,3,10,2016,Snakes on a Train,Throw Chico From the Train,tt0843873 L2ozJHHf1ec,2006.0,5,10,2016,Snakes on a Train,We Have a Runaway Train!,tt0843873 qE_SJYfhUc0,2006.0,7,10,2016,Snakes on a Train,The Snakes Are Loose!,tt0843873 T1jK-kQgdeo,2006.0,8,10,2016,Snakes on a Train,Where's Alma?,tt0843873 Df3535-5wE8,2006.0,9,10,2016,Snakes on a Train,Put Them Back In,tt0843873 nvnag6ta7LA,2006.0,1,10,2016,Snakes on a Train,I Hate Goddamn Snakes,tt0843873 DxVqAcNKMNk,2006.0,10,10,2016,Snakes on a Train,Giant Snake Attack,tt0843873 CdAJ9-36cAM,2006.0,4,10,2016,Snakes on a Train,"That's Not Marijuana, Man",tt0843873 dGIyVafU14c,2009.0,4,10,2016,Mega Shark vs. Giant Octopus,Smell Is a Powerful Thing,tt1350498 wh9ZsEMo0-o,2009.0,1,10,2016,Mega Shark vs. Giant Octopus,Oil Rig Obliteration,tt1350498 Z2yt_J6z2FQ,2009.0,5,10,2016,Mega Shark vs. Giant Octopus,Pull Up Now!,tt1350498 HkNa8r5E770,2009.0,3,10,2016,Mega Shark vs. Giant Octopus,It Rises,tt1350498 3ycDiqPVBqo,2009.0,9,10,2016,Mega Shark vs. Giant Octopus,You're Insane!,tt1350498 dLc8QqtMhYQ,2009.0,8,10,2016,Mega Shark vs. Giant Octopus,The Devil's On Our Tail!,tt1350498 Ma5iacR9d74,2009.0,6,10,2016,Mega Shark vs. Giant Octopus,Who Wants Shark Skin Boots?,tt1350498 KNol4Te8mCs,2009.0,10,10,2016,Mega Shark vs. Giant Octopus,Tentacles vs. Teeth,tt1350498 ViWgPQKgQYU,2009.0,7,10,2016,Mega Shark vs. Giant Octopus,Goodbye Golden Gate,tt1350498 KsU5oT6FhE8,2009.0,2,10,2016,Mega Shark vs. Giant Octopus,Shark Bites Plane,tt1350498 qB26s5dx_sQ,2010.0,8,10,2016,Ong Bak 3: The Final Battle,A Hopeless Fight,tt1653690 p76b_u00SSU,2010.0,3,10,2016,Ong Bak 3: The Final Battle,The Power is Mine,tt1653690 jsLRdkCMvxI,2010.0,1,10,2016,Ong Bak 3: The Final Battle,Break Him,tt1653690 r6AmK5ecvRE,2010.0,7,10,2016,Ong Bak 3: The Final Battle,Battling the Guards,tt1653690 _ZiRPpAgOlY,2010.0,6,10,2016,Ong Bak 3: The Final Battle,No Match for Tien,tt1653690 SpaZXamzgwA,2010.0,2,10,2016,Ong Bak 3: The Final Battle,Get the Rebel's Head,tt1653690 UNvtKMt78aY,2010.0,4,10,2016,Ong Bak 3: The Final Battle,A Miserable End,tt1653690 iHDhfU-N87E,2010.0,5,10,2016,Ong Bak 3: The Final Battle,Same Rope,tt1653690 PTwqLCxIMiU,2010.0,9,10,2016,Ong Bak 3: The Final Battle,Final Battle,tt1653690 IwQVcVqDUqE,2011.0,9,10,2016,Puncture,Overdose,tt1582248 bjUMh2wObW8,2011.0,10,10,2016,Puncture,We're Going to Court,tt1582248 iIcbE_xFIuw,2011.0,8,10,2016,Puncture,Cocaine Under Your Nose,tt1582248 SKMgjxAgidE,2011.0,7,10,2016,Puncture,Bright Light From Dark Places,tt1582248 K_0hl7Yc0fI,2011.0,6,10,2016,Puncture,Sex Therapy,tt1582248 qKrNYYuf7Z4,2011.0,5,10,2016,Puncture,Cut Your Losses,tt1582248 SNCyMweQ_8c,2011.0,4,10,2016,Puncture,Medical Suppliers Conference,tt1582248 4_3PUB38zJU,2011.0,2,10,2016,Puncture,I Want a Divorce,tt1582248 w_V5UPmEH_s,2011.0,3,10,2016,Puncture,Safety Needles,tt1582248 Rb3em4rmYxs,2011.0,1,10,2016,Puncture,Hotshot Lawyer,tt1582248 _iw7PLtjjow,2015.0,7,10,2016,Wild Card,I Earned My Past,tt2231253 o1DgvimHOvw,2015.0,4,10,2016,Wild Card,Tell Me You Love Me,tt2231253 kmr68ZevIrM,2015.0,9,10,2016,Wild Card,On Trial For Your Life,tt2231253 nBRTe09eseE,2015.0,10,10,2016,Wild Card,Butter Knife Brutality,tt2231253 EJCaAADpCuQ,2015.0,8,10,2016,Wild Card,Casino Clash,tt2231253 2tWroNJp2zI,2015.0,2,10,2016,Wild Card,What Are Your Qualifications?,tt2231253 KINtZPTjGOM,2015.0,5,10,2016,Wild Card,When Luck Comes Calling,tt2231253 rxme5eLoK5E,2015.0,6,10,2016,Wild Card,The Big Bet,tt2231253 iB8eR7GugQY,2015.0,3,10,2016,Wild Card,Nick's Sweet Side,tt2231253 MBY84LUh7s4,2015.0,1,10,2016,Wild Card,You're My Own Little Hero,tt2231253 P_VgDHPDtK8,1951.0,8,8,2016,A Streetcar Named Desire,The Kindness of Strangers,tt0044081 vLxUYa47OXE,1951.0,7,8,2016,A Streetcar Named Desire,Pearls Before Swine,tt0044081 Napj_I8kdHY,1951.0,5,8,2016,A Streetcar Named Desire,I'm the King Around Here,tt0044081 BfniNOclXKs,1951.0,4,8,2016,A Streetcar Named Desire,He's Like an Animal,tt0044081 kYA9hvcLekg,1951.0,3,8,2016,A Streetcar Named Desire,Stella!,tt0044081 9UMiW3dzW8g,1951.0,2,8,2016,A Streetcar Named Desire,The Napoleonic Code,tt0044081 Sp_ZkjTIRiI,1951.0,6,8,2016,A Streetcar Named Desire,Meetings with Strangers,tt0044081 V6TrgQxf3lk,1951.0,1,8,2016,A Streetcar Named Desire,You Must Be Stanley,tt0044081 VWX9yxvtjxo,2014.0,1,10,2016,Wish I Was Here,Swear Jar,tt2870708 I_Ld8Rtl-Gc,2014.0,9,10,2016,Wish I Was Here,Confronting Terry,tt2870708 j_a_zvQOrIE,2014.0,10,10,2016,Wish I Was Here,Remember How Fast It Goes,tt2870708 YkYypI0-OAY,2014.0,8,10,2016,Wish I Was Here,Maybe You Can Believe in Family,tt2870708 BaSUY4geCtE,2014.0,7,10,2016,Wish I Was Here,The Other Side of Heartbreak,tt2870708 xXjPITaIjPA,2014.0,3,10,2016,Wish I Was Here,My Child Shaved Her Head!,tt2870708 Dh6M4SEdLdU,2014.0,6,10,2016,Wish I Was Here,You Won't Have to Squint,tt2870708 ivzvZlKaKAs,2014.0,5,10,2016,Wish I Was Here,Hiding in a Fish Bowl,tt2870708 V0Y4f1UoH9o,2014.0,4,10,2016,Wish I Was Here,A Time For Everything,tt2870708 u_4L7Dx1rIg,2014.0,2,10,2016,Wish I Was Here,We've Decided to Go African-American,tt2870708 Rz0JV0WUjPo,2015.0,10,10,2016,The DUFF,Getting the Girl,tt1666801 4YFz0PJernc,2015.0,9,10,2016,The DUFF,Labels Are Meaningless,tt1666801 NVCvHb1UK_g,2015.0,8,10,2016,The DUFF,Pull it Together,tt1666801 FK7N96w_3FU,2015.0,5,10,2016,The DUFF,It's Go Time,tt1666801 lKwghMLo0AY,2015.0,7,10,2016,The DUFF,The Date Game Plan,tt1666801 MIpPd7IhPNA,2015.0,6,10,2016,The DUFF,Bianca Goes Viral,tt1666801 eXVVSJUhDmo,2015.0,4,10,2016,The DUFF,Unfriended,tt1666801 -o-C21COWIQ,2015.0,3,10,2016,The DUFF,,tt1666801 sHt3TElCugg,2015.0,1,10,2016,The DUFF,The Hottest Friends,tt1666801 qwUgyrgP9H4,2015.0,2,10,2016,The DUFF,What Homecoming Means to Me,tt1666801 CGHuALdM57s,2015.0,10,10,2016,Mortdecai,I Deeply Love My Mustache,tt3045616 zUvgi8Rxl9Q,2015.0,9,10,2016,Mortdecai,Fingers All Look the Same,tt3045616 70zF5FTAfAE,2015.0,8,10,2016,Mortdecai,The Fine Art of Fencing,tt3045616 TqVLkE4Lr8U,2015.0,7,10,2016,Mortdecai,Shellfish at a Catered Affair?,tt3045616 Br3e2gRhBZw,2015.0,6,10,2016,Mortdecai,Feel Me,tt3045616 1H_5SNtiMIs,2015.0,4,10,2016,Mortdecai,Open Your Balls,tt3045616 Uk4tuWVB-ho,2015.0,5,10,2016,Mortdecai,Motorcycle Chase,tt3045616 8lRysx2QaZg,2015.0,1,10,2016,Mortdecai,A Sympathetic Gag Reflex,tt3045616 kAd-K7nteyI,2015.0,3,10,2016,Mortdecai,I'm on the Bonnet!,tt3045616 6yuDWX2prJg,2015.0,2,10,2016,Mortdecai,I Believe I Shot Jock,tt3045616 GECuST_cjC8,2011.0,9,10,2016,Trespass,Security Call,tt1674784 NBhmNRq0uU8,2011.0,10,10,2016,Trespass,Fire in the Shed,tt1674784 YCIO_JbmcZ0,2011.0,8,10,2016,Trespass,Fake Necklace,tt1674784 uZhJYIZthNg,2011.0,7,10,2016,Trespass,There is No Money,tt1674784 k4sAUqI-y8A,2011.0,6,10,2016,Trespass,Sarah and Jonah,tt1674784 aGk88ZwiLRs,2011.0,5,10,2016,Trespass,This is a Negotiation,tt1674784 EyqjJVgnJMo,2011.0,4,10,2016,Trespass,Who's Cutting Them?,tt1674784 CKQiEEWqW-0,2011.0,3,10,2016,Trespass,Daddy's Home,tt1674784 UUPZ8Bzq1wA,2011.0,2,10,2016,Trespass,"Run, Sarah!",tt1674784 oe6nOL82mmU,2011.0,1,10,2016,Trespass,No Party,tt1674784 c7RyGNzyGB4,2011.0,7,10,2016,Paranormal Activity 3,Just Let Her Go!,tt1778304 t3dmXdp2O0Q,2011.0,9,10,2016,Paranormal Activity 3,The Witch House,tt1778304 uzIEsj6Me9g,2011.0,10,10,2016,Paranormal Activity 3,Demonic Death,tt1778304 qYEceRHS8jM,2011.0,8,10,2016,Paranormal Activity 3,There's No Ghost,tt1778304 42tGOQelinA,2011.0,6,10,2016,Paranormal Activity 3,Bloody Mary,tt1778304 76gNp5rkFX0,2011.0,5,10,2016,Paranormal Activity 3,Haunting the Babysitter,tt1778304 6_ZBUhBx3w8,2011.0,4,10,2016,Paranormal Activity 3,Toby's Closet,tt1778304 BqcHbcPo7zk,2011.0,3,10,2016,Paranormal Activity 3,Dark Forces,tt1778304 Li8ROpFUD4E,2011.0,2,10,2016,Paranormal Activity 3,Find Anything?,tt1778304 j2aGGNQW_7M,2011.0,1,10,2016,Paranormal Activity 3,Ghostly Sex,tt1778304 ISt_AN1f0Xw,2010.0,10,10,2016,Paranormal Activity 2,Evil Katie,tt1536044 hTF5JMKgI1I,2010.0,9,10,2016,Paranormal Activity 2,Basement Attack,tt1536044 yjrwCXMRh24,2010.0,8,10,2016,Paranormal Activity 2,Exorcising the Demon,tt1536044 7PfDjA-3RP4,2010.0,7,10,2016,Paranormal Activity 2,Dragged to the Basement,tt1536044 NerShU5K9Ac,2010.0,6,10,2016,Paranormal Activity 2,The Dog is Attacked,tt1536044 IqJSc4WySE8,2010.0,5,10,2016,Paranormal Activity 2,Kitchen Ghost,tt1536044 TCK-ODyUwoM,2010.0,3,10,2016,Paranormal Activity 2,Ali's Locked Out,tt1536044 L4kxEO7Okhc,2010.0,4,10,2016,Paranormal Activity 2,Baby Levitation,tt1536044 PBBZHnc8Jxk,2010.0,2,10,2016,Paranormal Activity 2,Fire in the Kitchen,tt1536044 YCleI91Af3s,2010.0,1,10,2016,Paranormal Activity 2,Baby Room Disturbance,tt1536044 qnyoHZa5rrQ,2012.0,2,10,2016,Moonrise Kingdom,What Kind of Bird Are You?,tt1748122 HhP2rEHWxCI,2012.0,10,10,2016,Moonrise Kingdom,Social Services,tt1748122 g2py3Bx0Nr8,2012.0,9,10,2016,Moonrise Kingdom,Married by Cousin Ben,tt1748122 z5xRXKOAu-Q,2012.0,6,10,2016,Moonrise Kingdom,Was He a Good Dog?,tt1748122 BlC3yzpzATY,2012.0,8,10,2016,Moonrise Kingdom,I Love You,tt1748122 i6XlRCrUvxU,2012.0,7,10,2016,Moonrise Kingdom,This is Our Land!,tt1748122 sorSQzGGdv0,2012.0,5,10,2016,Moonrise Kingdom,"Dear Suzy, Dear Sam",tt1748122 3l4Uuh_byns,2012.0,3,10,2016,Moonrise Kingdom,Running Away Together,tt1748122 5bBti58el_g,2012.0,4,10,2016,Moonrise Kingdom,I'm On Your Side,tt1748122 JQoNhRN9CiI,2012.0,1,10,2016,Moonrise Kingdom,Camp Ivanhoe,tt1748122 nKBE3U4mwuY,2010.0,9,11,2016,Act of Vengeance,Rooftop Confrontation,tt0072067 KbaqSn9LDiM,2010.0,4,11,2016,Act of Vengeance,Freedom and Terror,tt0072067 oHB3yg1vFAQ,2010.0,3,11,2016,Act of Vengeance,Raid on the Hideout,tt0072067 N1Jg10AGbGk,2010.0,11,11,2016,Act of Vengeance,Persuasion & Wisdom,tt0072067 I_oKf3IEGmQ,2010.0,5,11,2016,Act of Vengeance,The Irrefutable Truth,tt0072067 XfKq2_EzkE4,2010.0,7,11,2016,Act of Vengeance,Not a Single Evil Bone,tt0072067 ha40ifVCakk,2010.0,6,11,2016,Act of Vengeance,Quoting Scripture,tt0072067 JfFRCGgpkSg,2010.0,1,11,2016,Act of Vengeance,Hadji is Arrested,tt0072067 wTqPJaupccs,2010.0,2,11,2016,Act of Vengeance,The Start of the Operation,tt0072067 H_CVt8o2GAc,2010.0,8,11,2016,Act of Vengeance,I Am Innocent,tt0072067 HfiKoIVr3T0,2010.0,10,11,2016,Act of Vengeance,God Sees All,tt0072067 K9Z6ZZIZPFw,1985.0,3,12,2016,Desperately Seeking Susan,Jimi Hendrix's Jacket,tt0089017 3TAoWo3kBkw,1985.0,2,12,2016,Desperately Seeking Susan,Stalking Susan,tt0089017 OWRqJA31H_E,1985.0,10,12,2016,Desperately Seeking Susan,Magic Trick,tt0089017 lnQRXfjI664,1985.0,12,12,2016,Desperately Seeking Susan,Roberta Isn't Susan,tt0089017 wEzZX_MFu4w,1985.0,11,12,2016,Desperately Seeking Susan,"Gary, Meet Dez",tt0089017 ZwlQdSE1LdM,1985.0,8,12,2016,Desperately Seeking Susan,Got Any Pot,tt0089017 5mbqW5rZaCI,1985.0,9,12,2016,Desperately Seeking Susan,Dez Confesses to Jim,tt0089017 xyiG9P_Vc7A,1985.0,7,12,2016,Desperately Seeking Susan,Into the Groove,tt0089017 8HI62qvNWPU,1985.0,6,12,2016,Desperately Seeking Susan,Bad Luck Is Following You Around,tt0089017 wt0_m5mUsbo,1985.0,4,12,2016,Desperately Seeking Susan,Take a Valium,tt0089017 rtsis0lgx7k,1985.0,5,12,2016,Desperately Seeking Susan,Rooftop Kiss,tt0089017 XZXg3WkUGPw,1985.0,1,12,2016,Desperately Seeking Susan,Desperate is Romantic,tt0089017 PC_O4NLvktE,2006.0,1,10,2016,The Da Vinci Treasure,No Honor Among Thieves,tt0810817 wRCiwDkYtVo,2006.0,10,10,2016,The Da Vinci Treasure,Saved by the Shroud,tt0810817 gVIdf-kZJXk,2006.0,8,10,2016,The Da Vinci Treasure,That's Our Key,tt0810817 CbM6muvlHOw,2006.0,7,10,2016,The Da Vinci Treasure,We've Got Company,tt0810817 gsXRITF5hcI,2006.0,9,10,2016,The Da Vinci Treasure,Da Vinci's Treasure,tt0810817 VOgIyusLSOA,2006.0,6,10,2016,The Da Vinci Treasure,Decoding the Map,tt0810817 iMigt5aPvPQ,2006.0,4,10,2016,The Da Vinci Treasure,"This is a War, My War",tt0810817 aKNOSJT3vCo,2006.0,5,10,2016,The Da Vinci Treasure,Double-Decker Brawl,tt0810817 LDDFccHEa3s,2006.0,3,10,2016,The Da Vinci Treasure,Give Me the Shroud,tt0810817 l4Ws4ou6UO0,2006.0,2,10,2016,The Da Vinci Treasure,Your Clues Lead to My Treasure,tt0810817 S5x3QGlo22M,1967.0,9,10,2016,In the Heat of the Night,Loneliness,tt0061811 cXfD-Ai_QuA,1967.0,6,10,2016,In the Heat of the Night,You're Gonna Stay Here,tt0061811 Kc2EYuV33Ns,1967.0,5,10,2016,In the Heat of the Night,Keep Cool Harvey,tt0061811 2UrB8TI5El4,1967.0,8,10,2016,In the Heat of the Night,Slapping Endicott,tt0061811 cmBN-X701Gg,1967.0,2,10,2016,In the Heat of the Night,Top Homicide Detective,tt0061811 LoLBuoPL7nI,1967.0,10,10,2016,In the Heat of the Night,Take Care,tt0061811 RisSaXLB5ok,1967.0,3,10,2016,In the Heat of the Night,Examining the Corpse,tt0061811 i6n8VyqaCQ4,1967.0,4,10,2016,In the Heat of the Night,They Call Me Mr. Tibbs,tt0061811 iI8w5AQJcN8,1967.0,7,10,2016,In the Heat of the Night,Whipping Boy,tt0061811 g-g4vCbZsDM,1967.0,1,10,2016,In the Heat of the Night,I'm a Police Officer,tt0061811 nAK7Uyg_Y7Y,2008.0,10,10,2016,Ong Bak 2,Final Fight,tt0785035 1S3Vom2V2lY,2008.0,9,10,2016,Ong Bak 2,The Crow Demon,tt0785035 vL5LepmOUQk,2008.0,1,10,2016,Ong Bak 2,Crocodile Fight,tt0785035 k92e50obPsQ,2008.0,3,10,2016,Ong Bak 2,Master Warrior,tt0785035 o02NQhYm4lU,2008.0,2,10,2016,Ong Bak 2,The Elephant Lord,tt0785035 6kxFTk_Yoq0,2008.0,4,10,2016,Ong Bak 2,The Cave Witch,tt0785035 PEOiWoM2q6Y,2008.0,6,10,2016,Ong Bak 2,Slave Fight,tt0785035 sWd44kgjkeE,2008.0,8,10,2016,Ong Bak 2,Assassin Bloodbath,tt0785035 4QOA-TyD42o,2008.0,5,10,2016,Ong Bak 2,River Fight,tt0785035 1u7U16N_yJg,2008.0,7,10,2016,Ong Bak 2,Coronation Massacre,tt0785035 4hAjAP6kPg4,1981.0,5,10,2016,Scanners,Scanning the Assassins,tt0081455 goAo5dC8P1s,1954.0,9,10,2016,Seven Brides for Seven Brothers,"Spring, Spring, Spring",tt0047472 QbzJtP75NqM,1954.0,5,10,2016,Seven Brides for Seven Brothers,The Barn Dance,tt0047472 smwBZ-3HAPY,1954.0,10,10,2016,Seven Brides for Seven Brothers,Shotgun Wedding,tt0047472 6_gHh5IEgi0,1954.0,7,10,2016,Seven Brides for Seven Brothers,Lonesome Polecat,tt0047472 SqaM88u082Y,1954.0,6,10,2016,Seven Brides for Seven Brothers,Barn Raising,tt0047472 846by3LOKlA,1954.0,8,10,2016,Seven Brides for Seven Brothers,Sobbin' Women,tt0047472 G87BCljOeuA,1954.0,4,10,2016,Seven Brides for Seven Brothers,Goin' Courtin',tt0047472 khfeRoRCp7c,1954.0,3,10,2016,Seven Brides for Seven Brothers,When You're In Love,tt0047472 z7OEKs7hAEk,1954.0,2,10,2016,Seven Brides for Seven Brothers,Bless Your Beautiful Hide,tt0047472 dvJqm3PFKLk,1954.0,1,10,2016,Seven Brides for Seven Brothers,Looking for a Wife,tt0047472 8VItLIW2D4g,2003.0,10,10,2016,Johnny English,Does Your Mother Know?,tt0274166 Ab3QDSj2ws0,2003.0,9,10,2016,Johnny English,The Archbishop's Bottom,tt0274166 mVdTVvgW4EM,2003.0,6,10,2016,Johnny English,Like a Coiled Viper,tt0274166 _FurW3BTcjw,2003.0,8,10,2016,Johnny English,Muscle Relaxant and Truth Serum,tt0274166 n3Y6B_UKam0,2003.0,7,10,2016,Johnny English,Sushi,tt0274166 7ELmyf41TnQ,2003.0,4,10,2016,Johnny English,Tow Truck Chase,tt0274166 WZxFIAFTfEU,2003.0,3,10,2016,Johnny English,The Assailant,tt0274166 93TnnyxGBqI,2003.0,5,10,2016,Johnny English,Disturbing the Funeral,tt0274166 U6CGGUJKymk,2003.0,2,10,2016,Johnny English,Subduing the Assailant,tt0274166 2uyy1EOBBm4,2003.0,1,10,2016,Johnny English,Have You Seen My Secretary?,tt0274166 h_JeXTLSCQk,1983.0,8,8,2016,Cujo,Breathe!,tt0085382 sVg5_6gjzlg,1983.0,4,8,2016,Cujo,You're Rabid!,tt0085382 5CS1t_QtZOU,1983.0,7,8,2016,Cujo,Donna Is Bitten,tt0085382 T37ezlBVMME,1983.0,6,8,2016,Cujo,"Get Back in That Barn, Damn You",tt0085382 WyKHdjh7_2E,1983.0,5,8,2016,Cujo,It's Just a Doggie,tt0085382 qNnfnI8ai6o,1983.0,2,8,2016,Cujo,Won't Hurt Him,tt0085382 VN-AkfFZwfI,1983.0,3,8,2016,Cujo,What's the Matter?,tt0085382 awPDaFp70yI,1983.0,1,8,2016,Cujo,A Bat Bites,tt0085382 uGrrtkaWoU8,1983.0,11,12,2016,Valley Girl,Randy Stalks Julie,tt0086525 h0qWin97VyI,1983.0,10,12,2016,Valley Girl,It's Your Friends,tt0086525 FcEchaH6EJk,1983.0,8,12,2016,Valley Girl,I Melt With You,tt0086525 s59yqpV0ICo,1983.0,6,12,2016,Valley Girl,Driver's Ed,tt0086525 bKkJKMjnYf4,1983.0,5,12,2016,Valley Girl,Julie Comes Home,tt0086525 s9FoorJGkrA,1983.0,4,12,2016,Valley Girl,Let's Get Outta Here,tt0086525 xZ_GOyfnTTs,1983.0,12,12,2016,Valley Girl,Homecoming Fight,tt0086525 TuOYe44bL0U,1983.0,7,12,2016,Valley Girl,Meeting Julie's Dad,tt0086525 3ExJ909lWds,1983.0,9,12,2016,Valley Girl,Slumber Party,tt0086525 L-xNqfIXuaM,1983.0,2,12,2016,Valley Girl,What a Hunk!,tt0086525 SKoj1Its8vo,1983.0,3,12,2016,Valley Girl,We're Going Back,tt0086525 uhH9ewIEbnU,1983.0,1,12,2016,Valley Girl,I'm Totally Not in Love With You,tt0086525 M8T58oBOsAU,1981.0,9,10,2016,Scanners,Her Unborn Scanner,tt0081455 uTINsxfQwUw,1981.0,2,10,2016,Scanners,Mind Over Matter,tt0081455 Cy6I9ydBSWc,1981.0,10,10,2016,Scanners,I'm Gonna Suck Your Brain Dry,tt0081455 7lAIabgWtbI,1981.0,6,10,2016,Scanners,Kim's Scanner Powers,tt0081455 F9puQXwExbY,1981.0,3,10,2016,Scanners,Too Much Pressure,tt0081455 yKNauUKkW9Q,1981.0,8,10,2016,Scanners,Vale vs. The Computer,tt0081455 yWGL8RTONpM,1981.0,4,10,2016,Scanners,Control His Heart,tt0081455 qnp1jfLhtck,1981.0,1,10,2016,Scanners,Mind Blowing,tt0081455 XFosHLSA03w,1981.0,7,10,2016,Scanners,Keller the Killer,tt0081455 NvKOhmZA9bU,2013.0,8,11,2016,Killing Season,Salt and Lemon Juice Torture,tt1480295 yp1luet0nkU,2013.0,11,11,2016,Killing Season,Nothing But Meat and Flesh,tt1480295 wC-N_KnYNLw,2013.0,4,11,2016,Killing Season,You Shot Me!,tt1480295 W3s4HSqODSE,2013.0,5,11,2016,Killing Season,Confess to Me,tt1480295 dJcvUGXOMMw,2013.0,9,11,2016,Killing Season,"Everywhere I Look, I See Red",tt1480295 zdKxziIlC-c,2013.0,6,11,2016,Killing Season,Healing Wounds,tt1480295 YOuQ9V-tzps,2013.0,7,11,2016,Killing Season,You Like to Talk,tt1480295 0XZlgVrxKfg,2013.0,2,11,2016,Killing Season,One Day It Snaps,tt1480295 g5iR3s9FA_g,2013.0,1,11,2016,Killing Season,Engine Trouble,tt1480295 2xH234D7lao,2013.0,3,11,2016,Killing Season,War Is Not Fair,tt1480295 HSQl1nhi3N0,2013.0,10,11,2016,Killing Season,The Confession,tt1480295 X3Ujc0YaltE,2009.0,1,10,2016,Transmorphers: Fall of Man,Cellular Slaughter,tt1376460 TdffyS619Qw,2009.0,7,10,2016,Transmorphers: Fall of Man,Heavy Metal Heart,tt1376460 i4zxmn6_aRA,2009.0,8,10,2016,Transmorphers: Fall of Man,They're Terraforming the Planet,tt1376460 ML1hxH1yQb8,2009.0,6,10,2016,Transmorphers: Fall of Man,The Machines Are Coming,tt1376460 e3BQROKhvgo,2009.0,5,10,2016,Transmorphers: Fall of Man,"Taste This, Tin Head!",tt1376460 Hk-_1SD1pic,2009.0,3,10,2016,Transmorphers: Fall of Man,We Need Reinforcements!,tt1376460 B1Y4s89sBpY,2009.0,4,10,2016,Transmorphers: Fall of Man,What Better Way to Go Out?,tt1376460 204zPTniPrU,2009.0,2,10,2016,Transmorphers: Fall of Man,In Pursuit,tt1376460 5CfzQ1956jw,2009.0,10,10,2016,Transmorphers: Fall of Man,Endurance of the Human Spirit,tt1376460 hTdBkXMvY6o,2009.0,9,10,2016,Transmorphers: Fall of Man,The Plan,tt1376460 FPgDrHxAntE,2007.0,9,10,2016,Transmorphers,The Final Transformation,tt0960835 phOJkEJled8,2007.0,8,10,2016,Transmorphers,Death From Above,tt0960835 YGmK5uMOgZ0,2007.0,10,10,2016,Transmorphers,The Machines Have Fallen,tt0960835 3YWCnhDDMac,2007.0,6,10,2016,Transmorphers,Massacre the Machines,tt0960835 FIjtDcICyIE,2007.0,4,10,2016,Transmorphers,Don't Call Me a Traitor,tt0960835 wxRSLer7VIg,2007.0,5,10,2016,Transmorphers,Relentless Robots,tt0960835 3TN3wohDAXg,2007.0,7,10,2016,Transmorphers,I Made You Too Human,tt0960835 60d2lmx8LQM,2007.0,3,10,2016,Transmorphers,Testing the Team,tt0960835 BW3ZFYQQXb8,2007.0,1,10,2016,Transmorphers,Machines Now Walk the Earth,tt0960835 FVTtA6m68rg,2007.0,2,10,2016,Transmorphers,Sacrificing the Squad,tt0960835 NJzij2bw0f4,1985.0,4,10,2016,The Return of the Living Dead,We Have a Little Problem,tt0089907 yhjD1CmE9gs,1985.0,10,10,2016,The Return of the Living Dead,My Zombie Boyfriend,tt0089907 2NhF6zphSx8,1985.0,9,10,2016,The Return of the Living Dead,Why Do You Eat People?,tt0089907 KkV42m5wVTk,1985.0,8,10,2016,The Return of the Living Dead,Punks vs. Zombie,tt0089907 d6zX6-Rf4JY,1985.0,7,10,2016,The Return of the Living Dead,Brains!,tt0089907 K7bA4PB0zdk,1985.0,6,10,2016,The Return of the Living Dead,Rabid Weasels,tt0089907 I9npL6x8oFQ,1985.0,3,10,2016,The Return of the Living Dead,Breaking the Seal,tt0089907 D_xUviDPUOE,1985.0,5,10,2016,The Return of the Living Dead,Headless Zombie,tt0089907 8mZEPgvvd4I,1985.0,2,10,2016,The Return of the Living Dead,245-Trioxin,tt0089907 Hdh3npiRip4,1985.0,1,10,2016,The Return of the Living Dead,Fresh Cadavers,tt0089907 ajRRS6NzMBU,2012.0,10,10,2016,American Reunion,You're Our Dick,tt1605630 U97UagTDW_0,2012.0,9,10,2016,American Reunion,A Well-Placed Thumb,tt1605630 38jPEmoNjAw,2012.0,8,10,2016,American Reunion,Who You Calling Skank?,tt1605630 qnVGIFPFry8,2012.0,7,10,2016,American Reunion,No More Wars!,tt1605630 5Xbdu0wnun4,2012.0,6,10,2016,American Reunion,There Are Services,tt1605630 nQLSbuSZzE8,2012.0,5,10,2016,American Reunion,Mr. Moo,tt1605630 a469ezsg86A,2012.0,3,10,2016,American Reunion,Stifler's Revenge,tt1605630 ZvG2Q_KNCOA,2012.0,2,10,2016,American Reunion,This Must Be Awkward,tt1605630 JQLBuA1JCfg,2012.0,4,10,2016,American Reunion,A Babysitter's Job Never Ends,tt1605630 utS5IxGpAPI,2012.0,1,10,2016,American Reunion,Big Stiffie,tt1605630 _dVAPmlzo7g,1972.0,1,8,2016,The Last House on the Left,You Want To Buy Grass,tt0068833 8_mRYeBdwcc,1972.0,4,8,2016,The Last House on the Left,Tortured and Stabbed,tt0068833 p4TZcBFacUg,1972.0,8,8,2016,The Last House on the Left,Revenge,tt0068833 4UgTUqi3Xxk,1972.0,2,8,2016,The Last House on the Left,Pee Your Pants,tt0068833 fTMY9OkzTBA,1972.0,3,8,2016,The Last House on the Left,Phyllis Nearly Escapes,tt0068833 NJtOmLkUSKs,1972.0,6,8,2016,The Last House on the Left,Fred's Poor Little Fella,tt0068833 ZAhwNITS1WQ,1972.0,5,8,2016,The Last House on the Left,Mari Gets Sliced,tt0068833 8rN5CaA7OUI,1972.0,7,8,2016,The Last House on the Left,Blow Your Brains Out!,tt0068833 QaxQWGA3wys,2012.0,5,10,2016,REC 3: Genesis,SpongeJohn NoPants,tt1649444 JaTnlFHOkZ8,2012.0,10,10,2016,REC 3: Genesis,You May Now Kiss the Zombie,tt1649444 LydYnbMzIGA,2012.0,9,10,2016,REC 3: Genesis,Disarming Clara,tt1649444 ucqBb8FMJ74,2012.0,6,10,2016,REC 3: Genesis,Kitchen Attack,tt1649444 MB-oElVuFoc,2012.0,3,10,2016,REC 3: Genesis,Zombie Prayer,tt1649444 h0lUVSpj310,2012.0,2,10,2016,REC 3: Genesis,Zombie vs. Tire Iron,tt1649444 Or3JIDwWgH4,2012.0,1,10,2016,REC 3: Genesis,Zombie Wedding Reception,tt1649444 Nds71RtsnxY,2012.0,8,10,2016,REC 3: Genesis,Desperate Escape,tt1649444 p9Iw3217IRs,2012.0,7,10,2016,REC 3: Genesis,This Is My Day!,tt1649444 n5wiHK9V_ss,2012.0,4,10,2016,REC 3: Genesis,The Zombie Outbreak,tt1649444 Jxs8p22Pq_Y,2015.0,9,10,2016,The Age of Adaline,He Knows,tt1655441 ZQ146HsyzE8,2015.0,10,10,2016,The Age of Adaline,Aging Again,tt1655441 kTKIACVqDzQ,2015.0,8,10,2016,The Age of Adaline,Stay,tt1655441 d5nAgnojNgk,2015.0,7,10,2016,The Age of Adaline,The Scar,tt1655441 4Em53e2p7HQ,2015.0,6,10,2016,The Age of Adaline,Trivial Pursuit,tt1655441 k8VqG4ftlK0,2015.0,5,10,2016,The Age of Adaline,A Love Lost in Time,tt1655441 ivGfI_8TE9I,2015.0,3,10,2016,The Age of Adaline,Let Go,tt1655441 zkR_E8jw6qE,2015.0,4,10,2016,The Age of Adaline,Jenny Actually,tt1655441 Q59V4qwZI14,2015.0,1,10,2016,The Age of Adaline,No Scientific Explanation,tt1655441 CmssRVrBMxU,2015.0,2,10,2016,The Age of Adaline,27 Floors with You,tt1655441 7Ce8fa-b_m0,2009.0,8,10,2016,REC 2,Death by Firecracker,tt1245112 cwkEbwJR0aM,2009.0,7,10,2016,REC 2,Tell Me Where You Are!,tt1245112 t9_VbtJdDSQ,2009.0,6,10,2016,REC 2,One Way Out,tt1245112 sS8ECvGKWT4,2009.0,4,10,2016,REC 2,Blood of the Demon,tt1245112 _lJxUhMK4ZE,2009.0,5,10,2016,REC 2,Demon Zombie Swarm,tt1245112 epbmsvL_da8,2009.0,3,10,2016,REC 2,Not a Child Anymore,tt1245112 ZG5aSjd3ejo,2009.0,1,10,2016,REC 2,Zombie Attack,tt1245112 MATnKRvs8K8,2009.0,2,10,2016,REC 2,A Secret Operation,tt1245112 QYtcftNU7Gs,2009.0,9,10,2016,REC 2,Demon in the Dark,tt1245112 yLJU7uywTXc,2009.0,10,10,2016,REC 2,The Demon Victorious,tt1245112 cP4Q_O_ZKWA,2013.0,3,10,2016,World War Z,They're Coming,tt0816711 4rGu9dMtQWA,2013.0,8,10,2016,World War Z,Lab Attack,tt0816711 YqjCnk31_Ss,2013.0,6,10,2016,World War Z,Zombie Stampede,tt0816711 uU0DNCV22dU,2013.0,5,10,2016,World War Z,Over the Wall,tt0816711 GDhe2vbzjwU,2013.0,4,10,2016,World War Z,We Just Woke the Dead,tt0816711 BLIuci6IBIg,2013.0,2,10,2016,World War Z,12 Seconds to Infection,tt0816711 YdhnqI-beNo,2013.0,1,10,2016,World War Z,Zombie Outbreak,tt0816711 mvbLx0pbohk,2013.0,7,10,2016,World War Z,Flight of the Living Dead,tt0816711 PAkRrp46SBE,2013.0,9,10,2016,World War Z,Zombie Camouflage,tt0816711 0mwkZUkwEHw,2013.0,10,10,2016,World War Z,Be Prepared for Anything,tt0816711 bFrORNp20Js,2013.0,11,11,2016,The Protector 2,Tusk Bombs,tt1925518 MMcWHkb8Ank,2013.0,8,11,2016,The Protector 2,Fire and Fury,tt1925518 TVPDfLM9zIw,2013.0,10,11,2016,The Protector 2,The #1 Fighter,tt1925518 EgkBHCLS0cA,2013.0,7,11,2016,The Protector 2,Temple Fight,tt1925518 l2zPMIA3SYk,2013.0,6,11,2016,The Protector 2,That All You Got?,tt1925518 6hxZUTUMkf8,2013.0,9,11,2016,The Protector 2,Electric Fight,tt1925518 X4b1jFHAC98,2013.0,3,11,2016,The Protector 2,Chased by the Gang,tt1925518 Acmav3U4xOE,2013.0,5,11,2016,The Protector 2,Shipyard Brawl,tt1925518 suz-NZ9GZ80,2013.0,4,11,2016,The Protector 2,Explosive Escape,tt1925518 iWrr0qhRNaA,2013.0,2,11,2016,The Protector 2,Motorbike Gang Attack,tt1925518 t0hEHI9fcsU,2013.0,1,11,2016,The Protector 2,Beautiful Ass-Kickin' Chick,tt1925518 2ZMYorajMhk,2012.0,3,12,2016,What Maisie Knew,Making a Castle,tt1932767 9qmOMFvxI2I,2012.0,2,12,2016,What Maisie Knew,You're What?,tt1932767 SIgiRJmMz1A,2012.0,1,12,2016,What Maisie Knew,Don't Take Her,tt1932767 OkiJH2Y4z08,2012.0,4,12,2016,What Maisie Knew,Lincoln,tt1932767 dbu7AfaXHvE,2012.0,7,12,2016,What Maisie Knew,A Day at the High Line,tt1932767 2f2hB_pRG24,2012.0,9,12,2016,What Maisie Knew,Back to England,tt1932767 IcawiMd_kkM,2012.0,5,12,2016,What Maisie Knew,Beale Meets Lincoln,tt1932767 lhY7RZxINlY,2012.0,8,12,2016,What Maisie Knew,Locked Out,tt1932767 J-AftfYVSI8,2012.0,10,12,2016,What Maisie Knew,I'm Taking My Daughter,tt1932767 aQobE1tPeGw,2012.0,11,12,2016,What Maisie Knew,Lincoln Returns,tt1932767 rLh0UcN75A4,2012.0,12,12,2016,What Maisie Knew,Don't You Want to Come?,tt1932767 vSCT2CffKDI,2012.0,6,12,2016,What Maisie Knew,She's a Child,tt1932767 lYEy4it6m3Y,2015.0,10,10,2016,American Ultra,Engaged and Tased,tt3316948 Z1Cv11vpjhQ,2015.0,9,10,2016,American Ultra,Not So Different,tt3316948 Kz6J6Y2DpL0,2015.0,8,10,2016,American Ultra,Supermarket Skirmish,tt3316948 AJWkS8Ja9YA,2015.0,7,10,2016,American Ultra,The Old Frying Pan Bullet Trick,tt3316948 LODjoHqYzyw,2015.0,6,10,2016,American Ultra,"I Hate You, Man!",tt3316948 z-glL87s5lg,2015.0,5,10,2016,American Ultra,I'm Your Handler,tt3316948 u-M2Zb_B7BY,2015.0,4,10,2016,American Ultra,Escaping the Basement,tt3316948 1lYlFbsVOjI,2015.0,2,10,2016,American Ultra,The Tough Guy Operatives,tt3316948 Cgow0KNc4Hc,2015.0,3,10,2016,American Ultra,You Got the Monkey Virus?,tt3316948 OzVZMadRoSQ,2015.0,1,10,2016,American Ultra,I Just Killed Two Gentlemen,tt3316948 xAmgUnwxCUc,1938.0,8,9,2016,Bringing Up Baby,Two Leopards,tt0029947 5h8EbDuS0so,1938.0,6,9,2016,Bringing Up Baby,Dinner with a Loon,tt0029947 0JoIRmQW2es,1938.0,9,9,2016,Bringing Up Baby,The Dinosaur Falls,tt0029947 aAkF2Du59Qw,1938.0,5,9,2016,Bringing Up Baby,Big Game Hunting,tt0029947 9P-MtbTe3O4,1938.0,2,9,2016,Bringing Up Baby,A Man of Some Dignity,tt0029947 yPzAML0fs2o,1938.0,7,9,2016,Bringing Up Baby,You Haven't Got an Aunt,tt0029947 EQDbDIz1Y0E,1938.0,4,9,2016,Bringing Up Baby,I Just Went Gay All of a Sudden,tt0029947 CiWjwS4lqLY,1938.0,3,9,2016,Bringing Up Baby,30 Pounds of Sirloin Steak,tt0029947 BVrZAIo3wX4,1938.0,1,9,2016,Bringing Up Baby,The Torn Dress,tt0029947 6K7Xjdfc0bA,2013.0,10,10,2016,The Wolf of Wall Street,Get Off the Phone!,tt0993846 DuGfgv_eDEo,2013.0,9,10,2016,The Wolf of Wall Street,The Lamborghini Scene,tt0993846 5mMnqYaXDk4,2013.0,8,10,2016,The Wolf of Wall Street,I Choose Rich Every Time,tt0993846 rasqcYuX80A,2013.0,6,10,2016,The Wolf of Wall Street,Bedroom Fight,tt0993846 2foDdTT3cG8,2013.0,5,10,2016,The Wolf of Wall Street,Welcome to Stratton Oakmont,tt0993846 l8kCCIoP1jg,2013.0,2,10,2016,The Wolf of Wall Street,The Money Chant,tt0993846 86TpCwZ4FvY,2013.0,7,10,2016,The Wolf of Wall Street,Daddy Doesn't Get to Touch Mommy,tt0993846 xbBD7VIJ4cc,2013.0,1,10,2016,The Wolf of Wall Street,"Fugazi, Fugazi",tt0993846 TxHITqC5rxE,2013.0,3,10,2016,The Wolf of Wall Street,I'll Quit My Job Right Now,tt0993846 I13gMF50oqE,2013.0,4,10,2016,The Wolf of Wall Street,You Married Your Cousin,tt0993846 VF_-AB2-Ux4,2015.0,8,11,2016,Sicario,That's What We're Dealing With,tt3397884 h-UqMU-MIig,2015.0,4,11,2016,Sicario,Hell in Yankee Land,tt3397884 Jig6r9FAwAY,2015.0,6,11,2016,Sicario,This Is Where You Negotiate How to Survive,tt3397884 u-pvs7gVNHo,2015.0,2,11,2016,Sicario,Rigged With Explosives,tt3397884 aa2agiADM04,2015.0,3,11,2016,Sicario,Border Ambush,tt3397884 GYPwh07eWok,2015.0,5,11,2016,Sicario,A Deadly Mistake,tt3397884 RwuhnfKnTYY,2015.0,1,11,2016,Sicario,A Horrifying Discovery,tt3397884 qcGEIq1AEGM,2015.0,7,11,2016,Sicario,Don't Ever Point a Weapon at Me,tt3397884 4RKjRiO1FPU,2015.0,9,11,2016,Sicario,What a Good Police Officer You Make,tt3397884 aDJJBMXiwiI,2015.0,11,11,2016,Sicario,A Land of Wolves,tt3397884 vv84nq5_ZY4,2015.0,10,11,2016,Sicario,Time to Meet God,tt3397884 X9YOhb0FiIM,2011.0,5,11,2016,Take This Waltz,To Seduce You,tt1592281 UKvQEHlkqJU,2011.0,2,11,2016,Take This Waltz,You Got Me,tt1592281 zeTYlUcrfRY,2011.0,3,11,2016,Take This Waltz,Pool Exercise,tt1592281 Q1Yz3J6OGQQ,2011.0,11,11,2016,Take This Waltz,Bye,tt1592281 t3aYQKl1qbc,2011.0,9,11,2016,Take This Waltz,The Break-up,tt1592281 D6AzQTg_bPA,2011.0,10,11,2016,Take This Waltz,Life Has a Gap in It,tt1592281 vioUisPavvA,2011.0,8,11,2016,Take This Waltz,Sobriety Party,tt1592281 xxmnK05iITY,2011.0,6,11,2016,Take This Waltz,Rickshaw Ride,tt1592281 HhBAeTBIj0U,2011.0,7,11,2016,Take This Waltz,Unhappy Anniversary,tt1592281 jMHH-fH6oBc,2011.0,4,11,2016,Take This Waltz,I Love You,tt1592281 1SnNjUe_vuQ,2011.0,1,11,2016,Take This Waltz,In Between Things,tt1592281 gaLJooLoKjE,2014.0,2,10,2016,The Boxtrolls,Raised by Boxtrolls,tt0787474 ENsr9cH6irs,2014.0,8,10,2016,The Boxtrolls,A Pleasure to Meet You,tt0787474 MJNG_rYJPV0,2014.0,9,10,2016,The Boxtrolls,You're the Monster!,tt0787474 hggAh6GibqQ,2014.0,1,10,2016,The Boxtrolls,Acquire Them!,tt0787474 cudA9HUl6AA,2014.0,3,10,2016,The Boxtrolls,White Hats Meeting,tt0787474 L1DsFsUlgwM,2014.0,4,10,2016,The Boxtrolls,Here Come the Exterminators!,tt0787474 wNhse5NZgR8,2014.0,5,10,2016,The Boxtrolls,Song,tt0787474 7iM1XM9SvdQ,2014.0,6,10,2016,The Boxtrolls,Tell Me Everything!,tt0787474 vicOpIdpQVM,2014.0,10,10,2016,The Boxtrolls,You Make You,tt0787474 Vz2OwX1XETQ,2014.0,7,10,2016,The Boxtrolls,The Cheese Fits,tt0787474 dlEoKlncQsQ,2015.0,7,10,2016,San Andreas Quake,Trapped in the Tunnels,tt4547120 Lbq1U6X78Io,2015.0,1,10,2016,San Andreas Quake,The House Comes Down,tt4547120 0mT5xT39Zvs,2015.0,4,10,2016,San Andreas Quake,Get Off the Bridge!,tt4547120 u-LCigQRPdk,2015.0,8,10,2016,San Andreas Quake,A Way Out,tt4547120 UxIpYfsTkew,2015.0,3,10,2016,San Andreas Quake,Going Down,tt4547120 sJOA_CvMqvg,2015.0,10,10,2016,San Andreas Quake,Need a Lift?,tt4547120 7ZbYv65cJ1M,2015.0,6,10,2016,San Andreas Quake,We Have to Get Out Now,tt4547120 _9xxKArFYfo,2015.0,2,10,2016,San Andreas Quake,Predicting a Quake,tt4547120 oaSLgsnsrBk,2015.0,9,10,2016,San Andreas Quake,Grab My Hand!,tt4547120 CMFFeWPy-NM,2015.0,5,10,2016,San Andreas Quake,Angry Angry Hippo,tt4547120 lOR8JBFySr8,2005.0,11,11,2016,Man-Thing,The End of Scene,tt0290747 rITjAbXej3o,2005.0,3,11,2016,Man-Thing,Hick With a Chainsaw Scene,tt0290747 hfOL-PefOz4,2005.0,10,11,2016,Man-Thing,Oily Death Scene,tt0290747 z_3ODalPzT4,2005.0,2,11,2016,Man-Thing,Horror at the Door Scene,tt0290747 LDWuu8GZnkM,2005.0,4,11,2016,Man-Thing,Dark Waters Scene,tt0290747 X-t_25jG36E,2005.0,5,11,2016,Man-Thing,Mutilated Body Scene,tt0290747 598QZf6lkKw,2005.0,8,11,2016,Man-Thing,Human Sacrifice Scene,tt0290747 P94WndY58eg,2005.0,7,11,2016,Man-Thing,The Origin of Scene,tt0290747 hmYIR6v-oVE,2005.0,6,11,2016,Man-Thing,Torn to Pieces Scene,tt0290747 QImoaNjTtng,2005.0,9,11,2016,Man-Thing,Murder in the Swamp Scene,tt0290747 hAQ2xTr4U64,2005.0,1,11,2016,Man-Thing,Swamp Corpses Scene,tt0290747 UoM7CdIs2b0,2010.0,9,10,2016,Trust,He Lied to Me,tt1529572 NQ1-De19txE,2010.0,10,10,2016,Trust,I Failed You,tt1529572 7yhDJzI-hjg,2010.0,8,10,2016,Trust,Will's Anger,tt1529572 vk9wMNmKk6Q,2010.0,7,10,2016,Trust,You Lied to Me,tt1529572 jsTtWLXjHZM,2010.0,6,10,2016,Trust,He Loves Me,tt1529572 iCfplC1mMoI,2010.0,4,10,2016,Trust,A Victim of a Crime,tt1529572 txbmUDJcF6k,2010.0,5,10,2016,Trust,Contacting Charlie,tt1529572 _azX1Pr0vkA,2010.0,2,10,2016,Trust,Charlie,tt1529572 YHTyGMYFsU0,2010.0,3,10,2016,Trust,The Motel,tt1529572 BTbo7NyijNA,2010.0,1,10,2016,Trust,The First Lie,tt1529572 HhEyYbmTh_Y,1989.0,11,11,2016,All Dogs Go to Heaven,"Goodbye, Charlie",tt0096787 9YFfoCKHAQQ,1989.0,6,11,2016,All Dogs Go to Heaven,Winning Streak,tt0096787 pHB8Z35H29k,1989.0,2,11,2016,All Dogs Go to Heaven,The Big Surprise,tt0096787 oX3PL_u2LbQ,1989.0,9,11,2016,All Dogs Go to Heaven,You're Not My Friend,tt0096787 whCKn6cV-0k,1989.0,5,11,2016,All Dogs Go to Heaven,You'll Stay with Me,tt0096787 y_3OE_uIS8I,1989.0,10,11,2016,All Dogs Go to Heaven,Charlie Saves Anne-Marie,tt0096787 27U6dyYE9rA,1989.0,8,11,2016,All Dogs Go to Heaven,Let's Make Music Together,tt0096787 wufYHJkbl7k,1989.0,4,11,2016,All Dogs Go to Heaven,Let Me Be Surprised,tt0096787 1PLIzuZNuJI,1989.0,7,11,2016,All Dogs Go to Heaven,Come Home to My Heart,tt0096787 qe5s8UTNw4c,1989.0,3,11,2016,All Dogs Go to Heaven,Charlie Goes to Heaven,tt0096787 5KaMqmlEcJQ,1989.0,1,11,2016,All Dogs Go to Heaven,You Can't Keep a Good Dog Down,tt0096787 gS6ibQuZIS8,2002.0,8,8,2016,Queen of the Damned,The Death of a Queen,tt0238546 6yXY1OKtYPY,2002.0,7,8,2016,Queen of the Damned,"You Kill Me, You Kill Yourselves",tt0238546 Ze4qFn-a-2E,2002.0,6,8,2016,Queen of the Damned,I'd Like You to Kill Her,tt0238546 FuJsy0k28tk,2002.0,5,8,2016,Queen of the Damned,Join Me or Die,tt0238546 kdDH7Ynw5Lc,2002.0,4,8,2016,Queen of the Damned,Queen Akasha Arrives,tt0238546 xW0Babu_t8U,2002.0,1,8,2016,Queen of the Damned,Only Your Body That Dies,tt0238546 BWMFLJwEVyQ,2002.0,2,8,2016,Queen of the Damned,You Should Be More Careful,tt0238546 kr5skPIftSY,2002.0,3,8,2016,Queen of the Damned,So You Want to Be a Vampire,tt0238546 SlYRjU2KBfk,2010.0,9,10,2016,Shadows & Lies,A Job Gone Bad,tt1453403 g7kdpW2hZOI,2010.0,10,10,2016,Shadows & Lies,Love's End,tt1453403 sIPWv4xB9-0,2010.0,7,10,2016,Shadows & Lies,Drug Delivery,tt1453403 Tolt_g4y_tI,2010.0,6,10,2016,Shadows & Lies,Not a Nice Group,tt1453403 Q1B3sGDIxtg,2010.0,5,10,2016,Shadows & Lies,Meeting Ann,tt1453403 v9AtWaaaShE,2010.0,8,10,2016,Shadows & Lies,The Kimono,tt1453403 MlACEw_4JXY,2010.0,4,10,2016,Shadows & Lies,Meeting with the Boss,tt1453403 Tf3r8Bty06I,2010.0,3,10,2016,Shadows & Lies,Pickpocketing,tt1453403 R8JhC8HArkQ,2010.0,2,10,2016,Shadows & Lies,Dinner and Sex,tt1453403 Sei2JdiJ5Ic,2010.0,1,10,2016,Shadows & Lies,The Birth of William Vincent,tt1453403 plEvMJ44Exs,2013.0,1,10,2016,The Double,I Attract So Many Weirdos,tt1825157 AFCv59zRbGo,2013.0,4,10,2016,The Double,The Man I Want to Be,tt1825157 EdC7U0ZRALs,2013.0,3,10,2016,The Double,Simon & James,tt1825157 11qpNfXStVI,2013.0,2,10,2016,The Double,You Look Just Like Him,tt1825157 CKMpPpuKLFI,2013.0,5,10,2016,The Double,Seducing Hannah,tt1825157 IEA7PR8i5Gc,2013.0,6,10,2016,The Double,Double Date,tt1825157 GM8DRazH4ck,2013.0,7,10,2016,The Double,I'm A Good Worker,tt1825157 vjMRE5A5tVc,2013.0,9,10,2016,The Double,This Man is a Fraud,tt1825157 ogEjqyO09yg,2013.0,8,10,2016,The Double,Threatening James,tt1825157 HrIyLLIHrDA,2013.0,10,10,2016,The Double,I'm Pretty Unique,tt1825157 bXS1LMaU7TM,2007.0,10,10,2016,Mr. Bean's Holiday,Bean at the Beach,tt0453451 ueAsO0Gq8vI,2007.0,6,10,2016,Mr. Bean's Holiday,Bean Sabine,tt0453451 BgjJ00HhyCQ,2007.0,9,10,2016,Mr. Bean's Holiday,Bean's Movie Premiere,tt0453451 cA-laLpcLIw,2007.0,7,10,2016,Mr. Bean's Holiday,Sleepy Driving,tt0453451 55d4Hx_kaGc,2007.0,8,10,2016,Mr. Bean's Holiday,Bean in Disguise,tt0453451 t5eRT32QWdg,2007.0,5,10,2016,Mr. Bean's Holiday,Stealing the Scooter,tt0453451 wUEYIhP_9ag,2007.0,3,10,2016,Mr. Bean's Holiday,Mr. Bombastic,tt0453451 eH7EyPs_Va8,2007.0,4,10,2016,Mr. Bean's Holiday,Bike Ride,tt0453451 P-3iw8l0lB8,2007.0,2,10,2016,Mr. Bean's Holiday,Funny Faces,tt0453451 MCJcxb_RtII,2007.0,1,10,2016,Mr. Bean's Holiday,Seafood Dinner,tt0453451 FjKQ2_lTY_c,2008.0,9,10,2016,Sunday School Musical,The State Finals,tt1270792 gzyR9eQJMvQ,2008.0,10,10,2016,Sunday School Musical,The True Winners,tt1270792 2MYB0Gp7RLs,2008.0,8,10,2016,Sunday School Musical,The Competition,tt1270792 W6aifznLeXE,2008.0,6,10,2016,Sunday School Musical,Closing the Doors on Hawthorne,tt1270792 yq7rSvWzhNQ,2008.0,7,10,2016,Sunday School Musical,Better With You,tt1270792 SfN8z2mHAmw,2008.0,4,10,2016,Sunday School Musical,Do Your Own Thing,tt1270792 BzeKxlcKil4,2008.0,5,10,2016,Sunday School Musical,You're Not the Boss,tt1270792 ujhnKE7fscw,2008.0,3,10,2016,Sunday School Musical,One Step at a Time,tt1270792 THe7-5-D-gM,2008.0,2,10,2016,Sunday School Musical,If You Really Cared,tt1270792 Jhho1OqCSiY,2008.0,1,10,2016,Sunday School Musical,This Little Light of Mine,tt1270792 FxzaTk1VwGs,2011.0,10,10,2016,You're Next,You Would've Killed Me,tt1853739 HNxe49fa2p4,2011.0,1,10,2016,You're Next,Dysfunctional Family Dinner,tt1853739 QrbBBAXBPE4,2011.0,9,10,2016,You're Next,Death by Blender,tt1853739 wtnRz9SIZAY,2011.0,7,10,2016,You're Next,Would You Just Die Already?,tt1853739 hphPtQjqfQQ,2011.0,8,10,2016,You're Next,The Traitors Revealed,tt1853739 gjUN_o1mtW4,2011.0,6,10,2016,You're Next,This Wasn't A Random Attack,tt1853739 gQjGFMTbNxU,2011.0,5,10,2016,You're Next,Kelly and the Lamb,tt1853739 pR5to9mS2cg,2011.0,4,10,2016,You're Next,No Time to Grieve,tt1853739 rUW2mfL---k,2011.0,3,10,2016,You're Next,Making a Run for It,tt1853739 rqwx9NRpmHc,2011.0,2,10,2016,You're Next,Death at Dinner,tt1853739 yc8UHdsuy68,2013.0,1,8,2016,Grand Piano,One Wrong Note and You Die,tt2039345 UYpqBY5DTUI,2013.0,2,8,2016,Grand Piano,The Voice in Your Head,tt2039345 xjCbC99HMdo,2013.0,4,8,2016,Grand Piano,Keep it Together,tt2039345 VMO06PHDR9E,2013.0,3,8,2016,Grand Piano,A Call For Help,tt2039345 C1_BoN9f1hw,2013.0,7,8,2016,Grand Piano,Take Her Out,tt2039345 nvRcQGBL7Cw,2013.0,5,8,2016,Grand Piano,Ashley's Fate,tt2039345 pgae5kDwHT0,2013.0,6,8,2016,Grand Piano,Just a Puppet,tt2039345 W4Zj0uwpIwo,2013.0,8,8,2016,Grand Piano,The Fall,tt2039345 yygkcTQjw7s,2014.0,10,10,2016,Dear White People,Crashing the Party,tt2235108 9cwWiC6Gs80,2014.0,9,10,2016,Dear White People,Blackface Party,tt2235108 W2EZOorGpI0,2014.0,5,10,2016,Dear White People,The Tip Test,tt2235108 ObyANYT5y_c,2014.0,4,10,2016,Dear White People,Black and White Relations,tt2235108 QZ9b-TPTC_U,2014.0,8,10,2016,Dear White People,Who Am I?,tt2235108 tpkTStVMv_Q,2014.0,7,10,2016,Dear White People,I Want People to Know My Name,tt2235108 qRahFLj59bc,2014.0,6,10,2016,Dear White People,"Ooftas, Nose-Jobs and 100s",tt2235108 yShrBo6NiI8,2014.0,3,10,2016,Dear White People,Rebirth of a Nation,tt2235108 tKjyNywkBEQ,2014.0,1,10,2016,Dear White People,Bringing Black Back,tt2235108 cypqB_GKzjA,2014.0,2,10,2016,Dear White People,Dining Hall Dispute,tt2235108 85PCzIbeQGU,1982.0,9,9,2016,The Secret of NIMH,Saving the House,tt0084649 1OV3T6GWhIg,1982.0,7,9,2016,The Secret of NIMH,The Secret is Revealed,tt0084649 umIBbT6uwZI,1982.0,8,9,2016,The Secret of NIMH,Justin Duels Jenner,tt0084649 UlddepR-iRg,1982.0,6,9,2016,The Secret of NIMH,Meeting Nicodemus,tt0084649 GfH27NmFVSw,1982.0,2,9,2016,The Secret of NIMH,Dragon Attacks,tt0084649 SI_DOVqlJA4,1982.0,5,9,2016,The Secret of NIMH,Driven Out,tt0084649 Mr7Ned_vQgU,1982.0,3,9,2016,The Secret of NIMH,Stopping the Plow,tt0084649 Dd0PTNGBFUM,1982.0,4,9,2016,The Secret of NIMH,The Great Owl,tt0084649 eqv02JDVQ1o,1982.0,1,9,2016,The Secret of NIMH,Medicine from Mr. Ages,tt0084649 mGq0iyW-f7A,2010.0,9,10,2016,Yogi Bear,Flying Bears,tt1302067 riXp9rJ90Xw,2010.0,1,10,2016,Yogi Bear,Stealing a Picnic Basket,tt1302067 c5zKpr5gmgk,2010.0,7,10,2016,Yogi Bear,You're Not an Average Bear,tt1302067 8R9KLz7qDIY,2010.0,6,10,2016,Yogi Bear,How Smart Are You Now?,tt1302067 e9cysHm38Kg,2010.0,8,10,2016,Yogi Bear,Don't Give Up Now,tt1302067 iwAciIQDE4A,2010.0,2,10,2016,Yogi Bear,Getting Caught,tt1302067 NLDt8Iyh5f4,2010.0,10,10,2016,Yogi Bear,Surviving the Rapids,tt1302067 oqEm8mihoA4,2010.0,4,10,2016,Yogi Bear,Yogi's New Invention,tt1302067 H37dm_eRkLU,2010.0,3,10,2016,Yogi Bear,Can I Shoot You?,tt1302067 DvX8DbtVspE,2010.0,5,10,2016,Yogi Bear,I'm Losing Control,tt1302067 AUBx-geW0Tg,2006.0,9,10,2016,Serenity,It's Finished,tt0379786 tBMAuUeeqdE,2006.0,8,10,2016,Serenity,Mal vs. The Operative,tt0379786 2PQw2qw3BDw,2006.0,10,10,2016,Serenity,Love,tt0379786 kgu59EAXbic,2006.0,7,10,2016,Serenity,My Turn,tt0379786 BnnCQlp2msk,2006.0,6,10,2016,Serenity,A Leaf on the Wind,tt0379786 X_VSJfHiNPA,2006.0,5,10,2016,Serenity,Space Battle,tt0379786 WERocs57QaE,2006.0,3,10,2016,Serenity,The Operative,tt0379786 mXLSLzeu-mM,2006.0,4,10,2016,Serenity,A Danger to Us,tt0379786 hXCaF68sDPU,2006.0,2,10,2016,Serenity,The Miranda Fight,tt0379786 AC9SF7TOyHQ,2006.0,1,10,2016,Serenity,Fall on Your Sword,tt0379786 YnsmoUntOzI,2010.0,1,10,2016,Mega Shark vs. Crocosaurus,Shark Sinks Ship,tt1705773 H6FYQzuVMfA,2010.0,7,10,2016,Mega Shark vs. Crocosaurus,The Shark Just Went Nuclear,tt1705773 jtHIEO1Zdfk,2010.0,4,10,2016,Mega Shark vs. Crocosaurus,Torpedoes Away,tt1705773 8s4TDbX1B_s,2010.0,9,10,2016,Mega Shark vs. Crocosaurus,Beastly Barrage,tt1705773 WD2I5Jpe9bk,2010.0,3,10,2016,Mega Shark vs. Crocosaurus,Jumping Ship,tt1705773 KapEcfMelL4,2010.0,8,10,2016,Mega Shark vs. Crocosaurus,This Is Not Your Fiance!,tt1705773 DMhcIrShxec,2010.0,2,10,2016,Mega Shark vs. Crocosaurus,Nice Crocodile,tt1705773 n0MW9qK_xlY,2010.0,5,10,2016,Mega Shark vs. Crocosaurus,Arc Flash Orlando,tt1705773 MLFzROHNLmM,2010.0,10,10,2016,Mega Shark vs. Crocosaurus,The Creatures are Toast,tt1705773 yBM4SCBZ7qM,2010.0,6,10,2016,Mega Shark vs. Crocosaurus,Those Dam Beasts,tt1705773 Tsk9gCcchg8,1984.0,5,7,2016,Greystoke: Legend of Tarzan,Jungle Man,tt0087365 _AmKz3iZ1K8,1984.0,1,7,2016,Greystoke: Legend of Tarzan,Razor and Mirror,tt0087365 MCN-beeZSKk,1984.0,3,7,2016,Greystoke: Legend of Tarzan,"""Johnny"" Returns",tt0087365 zOiq-2Jpy-U,1984.0,6,7,2016,Greystoke: Legend of Tarzan,Tarzan & Jane,tt0087365 NiVB-n5b0hE,1984.0,7,7,2016,Greystoke: Legend of Tarzan,Going Home,tt0087365 JgPlgAnASbY,1984.0,2,7,2016,Greystoke: Legend of Tarzan,"Mother, Father, Family",tt0087365 EkE_bNKYqCM,1984.0,4,7,2016,Greystoke: Legend of Tarzan,An Excellent Mimic,tt0087365 TPgdAesH76E,2015.0,8,10,2016,The Boy Next Door,Get the Hell Out of There,tt3181822 wvVrDGmqHjI,2015.0,5,10,2016,The Boy Next Door,Disorderly Conduct,tt3181822 BvXUga4d3Zc,2015.0,10,10,2016,The Boy Next Door,Live with Me or Die,tt3181822 y9ZcKltnEx8,2015.0,7,10,2016,The Boy Next Door,Class Pictures,tt3181822 V5DgQr_g6SY,2015.0,2,10,2016,The Boy Next Door,This Isn't Normal,tt3181822 3QyEUXjHzOc,2015.0,1,10,2016,The Boy Next Door,Let Me Love You,tt3181822 lIVO6oEk4Hk,2015.0,4,10,2016,The Boy Next Door,Stay Away From Noah,tt3181822 uaLxw2PDnmk,2015.0,9,10,2016,The Boy Next Door,That's What Heroes Do,tt3181822 kKC8076NZOY,2015.0,3,10,2016,The Boy Next Door,Asthma Attack,tt3181822 asNSRS-UbHM,2015.0,6,10,2016,The Boy Next Door,Unacceptable Behavior,tt3181822 yKloyDDxo7g,2015.0,8,10,2016,Mega Shark vs. Kolossus,"Surf, Turf, Let's Play!",tt4566574 b0VU3j1hp70,2015.0,4,10,2016,Mega Shark vs. Kolossus,The Abramov Advantage,tt4566574 xDC6IlQdTLs,2015.0,10,10,2016,Mega Shark vs. Kolossus,A Battle to the Death,tt4566574 mcp6KbG_5rg,2015.0,6,10,2016,Mega Shark vs. Kolossus,Sidetracking the Savages,tt4566574 rpWuKoDm_9o,2015.0,3,10,2016,Mega Shark vs. Kolossus,Help Me End This,tt4566574 npWeWCC06fU,2015.0,9,10,2016,Mega Shark vs. Kolossus,Kolossus Throws Mega Shark into Space,tt4566574 T2jMiMTHY80,2015.0,5,10,2016,Mega Shark vs. Kolossus,"Missiles Sapped, Shark Trapped",tt4566574 G_v8xjmxtLY,2015.0,7,10,2016,Mega Shark vs. Kolossus,Kolossal Control,tt4566574 LxnWduj4P-g,2015.0,2,10,2016,Mega Shark vs. Kolossus,A Slippery Fish,tt4566574 53vQBW_4hzw,2015.0,1,10,2016,Mega Shark vs. Kolossus,Kolossus Unleashed,tt4566574 0_hajel24IE,2012.0,3,3,2016,Hitchcock,Directing the Screams,tt0975645 2AHF50fxTNw,2012.0,1,3,2016,Hitchcock,Only Suggesting Nudity,tt0975645 3iZ1TVOskhA,2012.0,2,3,2016,Hitchcock,Cutting Psycho,tt0975645 OwQCAyUyuSs,1984.0,10,11,2016,Adventures of Buckaroo Banzai,Saving the Day,tt0086856 8jK3RW6rSCM,1984.0,1,11,2016,Adventures of Buckaroo Banzai,Inter-Dimensional Ford,tt0086856 g95ZXrh2oK4,1984.0,3,11,2016,Adventures of Buckaroo Banzai,There You Are,tt0086856 ah6TYuJ1iQg,1984.0,11,11,2016,Adventures of Buckaroo Banzai,Awesome Credits,tt0086856 2H2c3F_rzqw,1984.0,4,11,2016,Adventures of Buckaroo Banzai,Dr. New Jersey,tt0086856 1w_JdfgygYY,1984.0,8,11,2016,Adventures of Buckaroo Banzai,Penny for Your Thoughts,tt0086856 f6hhVIV_LPs,1984.0,9,11,2016,Adventures of Buckaroo Banzai,Declaration of War: The Short Form,tt0086856 VQSA2-NbbL8,1984.0,5,11,2016,Adventures of Buckaroo Banzai,Duck Hunting Discovery,tt0086856 GjA92f_iCHQ,1984.0,2,11,2016,Adventures of Buckaroo Banzai,Dr. Lizardo Loses His Mind,tt0086856 mh7fUlkkX68,1984.0,6,11,2016,Adventures of Buckaroo Banzai,Holographic Warning,tt0086856 1egkqpDOn2A,1984.0,7,11,2016,Adventures of Buckaroo Banzai,Transmission to the President,tt0086856 QyOM1rQ7iT8,2015.0,2,10,2016,The Hunger Games: Mockingjay,Part 2 - They Messed Us Up Pretty Good,tt1951266 cZKYcRqPh-o,2015.0,8,10,2016,The Hunger Games: Mockingjay,Part 2 - These Things Happen in War,tt1951266 -CXBIAH4Kgo,2015.0,1,10,2016,The Hunger Games: Mockingjay,Part 2 - Turn Your Weapons to Snow,tt1951266 SBq1FLgZJug,2015.0,6,10,2016,The Hunger Games: Mockingjay,Part 2 - Our Lives Were Never Ours,tt1951266 ZGM5Y16SSb8,2015.0,10,10,2016,The Hunger Games: Mockingjay,Part 2 - There Are Worse Games to Play,tt1951266 xCQ3ZdnptUM,2015.0,9,10,2016,The Hunger Games: Mockingjay,Part 2 - May Your Aim Be True,tt1951266 tvj61hwINaE,2015.0,5,10,2016,The Hunger Games: Mockingjay,Part 2 - Stay With Me,tt1951266 H6bQXth1CEs,2015.0,7,10,2016,The Hunger Games: Mockingjay,Part 2 - Explosion at the Gates,tt1951266 y03_LmnDaTY,2015.0,4,10,2016,The Hunger Games: Mockingjay,Part 2 - The Mutts Attack,tt1951266 OF22NIhPKgE,2015.0,3,10,2016,The Hunger Games: Mockingjay,Part 2 - The Black Ooze,tt1951266 uEV9jxF2tOo,2015.0,1,10,2016,Insurgent,Every Man for Themselves,tt2908446 wyMDViXXXXU,2015.0,2,10,2016,Insurgent,Fighting the Factionless,tt2908446 ns9WcZlqv_I,2015.0,3,10,2016,Insurgent,May the Truth Set You Free,tt2908446 ADXqDq5zCTg,2015.0,8,10,2016,Insurgent,"You Die, I Die",tt2908446 ST7mR3xLdys,2015.0,4,10,2016,Insurgent,Hand Over Tris Prior,tt2908446 n-5bVE4K2Ls,2015.0,5,10,2016,Insurgent,You Are Worth It,tt2908446 2RYNIbNVFhg,2015.0,6,10,2016,Insurgent,The Dauntless Simulation,tt2908446 hqJxDiGXTWc,2015.0,10,10,2016,Insurgent,We're The Solution,tt2908446 irhRobBI3BE,2015.0,7,10,2016,Insurgent,Her Death Means Nothing,tt2908446 KQa_SiTfU34,2015.0,9,10,2016,Insurgent,The Amity Simulation,tt2908446 w-A750XbFAo,2015.0,3,10,2016,Shaun the Sheep Movie,Sheep in Human Clothing Scene,tt2872750 7tUYeqOLuYU,2015.0,4,10,2016,Shaun the Sheep Movie,Dog Doctor Scene,tt2872750 TPiRiwKEz28,2015.0,2,10,2016,Shaun the Sheep Movie,Runaway Farmer Scene,tt2872750 2SiwZWhmbS0,2015.0,9,10,2016,Shaun the Sheep Movie,Escaping the City Scene,tt2872750 ulLxPcOmDmU,2015.0,1,10,2016,Shaun the Sheep Movie,Shaun's Staycation Scene,tt2872750 v3JlEi3CbGI,2015.0,1,10,2016,Ex Machina,That's the History of Gods,tt0470752 0Gq5R5ffrtE,2015.0,10,10,2016,Ex Machina,Ava is Free,tt0470752 jGAsihLnYqM,2015.0,3,10,2016,Ex Machina,You Shouldn't Trust Him,tt0470752 mAtmopQxu0o,2015.0,2,10,2016,Ex Machina,Breaking the Ice,tt0470752 lOgPGO4JnaA,2015.0,6,10,2016,Ex Machina,You're Causing the Cuts,tt0470752 8cQVspzP0Ms,2015.0,5,10,2016,Ex Machina,Are You Attracted to Me?,tt0470752 b7C69HqnV8s,2015.0,7,10,2016,Ex Machina,Tearing Up the Dance Floor,tt0470752 Kbsi0KOunj8,2015.0,8,10,2016,Ex Machina,The Real Test,tt0470752 LxXrccK4S3I,2015.0,9,10,2016,Ex Machina,Go Back to Your Room,tt0470752 ruOXWHbyfjo,2015.0,4,10,2016,Ex Machina,How Ava Was Created,tt0470752 oAheN_ARn1U,2015.0,10,10,2016,Shaun the Sheep Movie,Defeating Trumper Scene,tt2872750 74BF0nnqO5o,2015.0,8,10,2016,Shaun the Sheep Movie,The Sheep Horse Scene,tt2872750 WazcuKEk2to,2015.0,7,10,2016,Shaun the Sheep Movie,A Familiar Tune Scene,tt2872750 dKPw9-jpA3Y,2015.0,6,10,2016,Shaun the Sheep Movie,Shaun in the Slammer Scene,tt2872750 bzGDMtX1IU0,2015.0,5,10,2016,Shaun the Sheep Movie,Lunch Fiasco Scene,tt2872750 hW_NzisexqU,2010.0,1,12,2016,I'm Still Here,Don't Wanna Play Joaquin Anymore,tt1356864 4GCBqzsWF_M,2010.0,12,12,2016,I'm Still Here,Heckler at the Show,tt1356864 oLQ5NOAIAw0,2010.0,7,12,2016,I'm Still Here,Ben Stiller Meeting,tt1356864 MvFkGlAqYYc,2010.0,2,12,2016,I'm Still Here,My Last Acting Thing,tt1356864 XzSBAvxA5GE,2010.0,8,12,2016,I'm Still Here,Edward James Olmos' Advice,tt1356864 2v0aoYD6OOM,2010.0,5,12,2016,I'm Still Here,Calling Hookers,tt1356864 5Q1f6Oij1NQ,2010.0,9,12,2016,I'm Still Here,In the Studio with Diddy,tt1356864 H177TSRFiTo,2010.0,3,12,2016,I'm Still Here,This Is Hard,tt1356864 -xCS0zZPAoA,2010.0,10,12,2016,I'm Still Here,Post-Letterman Breakdown,tt1356864 mCbY7cAv7r8,2010.0,11,12,2016,I'm Still Here,Pooping the Bed,tt1356864 9Dd423YO56c,2010.0,4,12,2016,I'm Still Here,Do the Snow Angel!,tt1356864 n-omBTsCIDE,2010.0,6,12,2016,I'm Still Here,Diddy Knows Best,tt1356864 TyXD96iAjuM,2010.0,10,10,2016,Jackass 3D,I'm About to End This Movie,tt1116184 Y4HSQKUAPKM,2010.0,9,10,2016,Jackass 3D,Poo Cocktail Supreme,tt1116184 33NlZaZVCgw,2010.0,5,10,2016,Jackass 3D,Wee Man Fight,tt1116184 pIyrp5Aj7LY,2010.0,6,10,2016,Jackass 3D,Will the Farter,tt1116184 09m9ltjwuJU,2010.0,3,10,2016,Jackass 3D,Beehive Tetherball,tt1116184 lEFx1qmW4ts,2010.0,4,10,2016,Jackass 3D,Jet Engine Stunt,tt1116184 t4M3hbVh3U4,2010.0,7,10,2016,Jackass 3D,Duck Hunting,tt1116184 nXjnagPujjE,2010.0,8,10,2016,Jackass 3D,The Ram Jam,tt1116184 rMS4ESFlfDk,2010.0,2,10,2016,Jackass 3D,High Five,tt1116184 293PMWaznLM,2010.0,1,10,2016,Jackass 3D,Welcome to Jackass,tt1116184 XX2EpE8SLK4,2014.0,10,10,2016,Step Up All In,You Better Catch Me,tt2626350 uJnIaD7gDlQ,2014.0,7,10,2016,Step Up All In,The Mob vs. LMNTRIX,tt2626350 ma7zprvD7UA,2014.0,5,10,2016,Step Up All In,The Vortex,tt2626350 -WrDbBvPN00,2014.0,6,10,2016,Step Up All In,Old School,tt2626350 NXH48hZ6798,2014.0,4,10,2016,Step Up All In,High Voltage,tt2626350 bX-o8WaWp2Q,2014.0,2,10,2016,Step Up All In,Sean Meets Andie,tt2626350 mn6Wmceebfc,2014.0,3,10,2016,Step Up All In,I Want to be in Your Crew,tt2626350 AZtman1rdUw,2014.0,1,10,2016,Step Up All In,You Picked The Wrong Night,tt2626350 J8JhG2j8E_w,2014.0,9,10,2016,Step Up All In,The Final Round,tt2626350 RUox4o5J5x4,2014.0,8,10,2016,Step Up All In,Grim Knights vs. LMNTRIX,tt2626350 h5RMM02YE3U,1993.0,12,12,2016,Romeo Is Bleeding,Sometimes She Stays,tt0107983 mZzkE03B64o,1993.0,11,12,2016,Romeo Is Bleeding,Mona Murdered,tt0107983 kYA44FTePNQ,1993.0,10,12,2016,Romeo Is Bleeding,What's Hell?,tt0107983 CZRn7cU3UsU,1993.0,8,12,2016,Romeo Is Bleeding,The Docks,tt0107983 utFeHmJ1iUw,1993.0,9,12,2016,Romeo Is Bleeding,Femme Fatale,tt0107983 GiykTnvV8Mo,1993.0,6,12,2016,Romeo Is Bleeding,More Risk More Pay,tt0107983 OE5CnBYFkZA,1993.0,7,12,2016,Romeo Is Bleeding,Taking the Toe,tt0107983 EvWX1drAfhg,1993.0,5,12,2016,Romeo Is Bleeding,Pacifism With Falcone,tt0107983 z7_AwjQz_AY,1993.0,4,12,2016,Romeo Is Bleeding,A Terrible Dream,tt0107983 t_BSGcc9XkY,1993.0,3,12,2016,Romeo Is Bleeding,What Happened to Meat & Potatoes?,tt0107983 W1GrNDtRkgE,1993.0,2,12,2016,Romeo Is Bleeding,Mona's Laughing Seduction,tt0107983 PLPb1pB0vJg,1993.0,1,12,2016,Romeo Is Bleeding,The Big Hoodlum,tt0107983 P4JGOWnX9VU,-1.0,10,10,2016,Anchorman 2: The Legend Continues,News Team Battle Scene,tt1229340 -zAp8NOpVKU,-1.0,9,10,2016,Anchorman 2: The Legend Continues,News Team Fighting Words Scene,tt1229340 ZLJX6CEkgto,-1.0,8,10,2016,Anchorman 2: The Legend Continues,White Elephant in the Room Scene,tt1229340 65N3OBBrImc,-1.0,5,10,2016,Anchorman 2: The Legend Continues,Jack Lame Scene,tt1229340 ZdkOLsRkjBU,-1.0,6,10,2016,Anchorman 2: The Legend Continues,A Goddess Among Women Scene,tt1229340 VHz5xaHrCCU,-1.0,4,10,2016,Anchorman 2: The Legend Continues,Brick Meets Chani Scene,tt1229340 GKNv1vjCnQI,-1.0,7,10,2016,Anchorman 2: The Legend Continues,Where Are My Legs? Scene,tt1229340 MMigS6B4t3Q,-1.0,1,10,2016,Anchorman 2: The Legend Continues,The Worst Anchorman Ever Scene,tt1229340 lwkdeQQiCms,-1.0,3,10,2016,Anchorman 2: The Legend Continues,African and American Scene,tt1229340 IfY49zx7RU0,-1.0,2,10,2016,Anchorman 2: The Legend Continues,RV Crash Scene,tt1229340 PhbkMQ89QPM,2011.0,10,10,2016,Mission: Impossible Ghost Protocol,Mission Accomplished Scene,tt1229238 zh5VtQ-x4QI,2011.0,9,10,2016,Mission: Impossible Ghost Protocol,Fight For the Briefcase Scene,tt1229238 Bi75jrN5yDk,2011.0,8,10,2016,Mission: Impossible Ghost Protocol,Seducing the Rich Guy Scene,tt1229238 J4me49IF70k,2011.0,7,10,2016,Mission: Impossible Ghost Protocol,Sandstorm Chase Scene,tt1229238 2nZBPdh9_Jc,2011.0,6,10,2016,Mission: Impossible Ghost Protocol,Jane Fights Moreau Scene,tt1229238 Ep85AkCkk-U,2011.0,5,10,2016,Mission: Impossible Ghost Protocol,Get Down Here Scene,tt1229238 cYGVkLGyGqE,2011.0,3,10,2016,Mission: Impossible Ghost Protocol,The Kremlin Explodes Scene,tt1229238 wr4rZEPQ09Y,2011.0,4,10,2016,Mission: Impossible Ghost Protocol,Climbing the Burj Khalifa Scene,tt1229238 p-5nqrOtaug,2011.0,1,10,2016,Mission: Impossible Ghost Protocol,Escaping the Russian Prison Scene,tt1229238 7DkV8WE7DFA,2011.0,2,10,2016,Mission: Impossible Ghost Protocol,Hallway Projection Scene,tt1229238 HcuptmqW_kA,2013.0,9,10,2016,G.I. Joe: Retaliation,Rescuing the President,tt1583421 P0A0LnjsGSA,2013.0,10,10,2016,G.I. Joe: Retaliation,Threat Terminated,tt1583421 LgMEyrPhq3k,2013.0,8,10,2016,G.I. Joe: Retaliation,Ninja Team-Up,tt1583421 zDdHlO3v8Kg,2013.0,6,10,2016,G.I. Joe: Retaliation,Roadblock vs. Firefly,tt1583421 zVzeXqLbqug,2013.0,5,10,2016,G.I. Joe: Retaliation,Cliffside Ninja Battle,tt1583421 22bHxTTLcdc,2013.0,7,10,2016,G.I. Joe: Retaliation,London is Destroyed,tt1583421 82wvQMuzbow,2013.0,2,10,2016,G.I. Joe: Retaliation,Duke's Death,tt1583421 ZMROlNs8iWw,2013.0,4,10,2016,G.I. Joe: Retaliation,Ninja vs. Ninja,tt1583421 Nr6NPOkDbpU,2013.0,3,10,2016,G.I. Joe: Retaliation,You're Out of the Band,tt1583421 nn1qvGiHvLc,2013.0,1,10,2016,G.I. Joe: Retaliation,Securing the Nuke,tt1583421 3gLU99wxUyA,2006.0,6,8,2016,Jackass Number Two,Old Man Balls,tt0493430 zaYgv8likRs,2006.0,7,8,2016,Jackass Number Two,Terror Taxi,tt0493430 UwPJMQwo2xw,2006.0,5,8,2016,Jackass Number Two,Toro Totter,tt0493430 Mb1kLqoiDuA,2006.0,4,8,2016,Jackass Number Two,Riot Control Test,tt0493430 8MoQTjNnlmA,2006.0,3,8,2016,Jackass Number Two,Beehive Limo,tt0493430 FPnF0-VdHNk,2006.0,2,8,2016,Jackass Number Two,Cattle Brand,tt0493430 4nSA_B8pC_s,2006.0,8,8,2016,Jackass Number Two,The Best of Times,tt0493430 7wSQMwlqy0s,2006.0,1,8,2016,Jackass Number Two,Running of the Bulls,tt0493430 ooXE33T2Dls,2014.0,12,12,2016,The Expendables 3,Go!,tt2333784 4VKym1WU9go,2014.0,11,12,2016,The Expendables 3,Barney vs. Stonebanks,tt2333784 bDAdgXd7Znk,2014.0,10,12,2016,The Expendables 3,Get to the Roof!,tt2333784 2hqwpvVHly4,2014.0,8,12,2016,The Expendables 3,A Tank Problem,tt2333784 u54-0h7QZN8,2014.0,9,12,2016,The Expendables 3,You Finished Yet?,tt2333784 IpW3LbAEypo,2014.0,7,12,2016,The Expendables 3,We Were Brothers,tt2333784 6kk46qE9oWk,2014.0,6,12,2016,The Expendables 3,Capturing Stonebanks,tt2333784 QhVvJyCaQS0,2014.0,5,12,2016,The Expendables 3,Old vs. New,tt2333784 E-g_up1kWt0,2014.0,4,12,2016,The Expendables 3,Age is Just a State of Mind,tt2333784 9b1Ii-U2lao,2014.0,3,12,2016,The Expendables 3,Escaping the Docks,tt2333784 kuAwUNzVX2I,2014.0,2,12,2016,The Expendables 3,Stonebanks!,tt2333784 2CxV_NKhsgY,2014.0,1,12,2016,The Expendables 3,Doc's Revenge,tt2333784 MPu6DXTG2ps,2003.0,5,9,2016,What a Girl Wants,Coming Out Party,tt0286788 wVAL10Zb9Q4,2003.0,4,9,2016,What a Girl Wants,A Few Pointers,tt0286788 DQaHIFC9034,2003.0,3,9,2016,What a Girl Wants,Coco Pops,tt0286788 y6i9UH65q2g,2003.0,2,9,2016,What a Girl Wants,I'm Your Daughter,tt0286788 0D5EL4HLd3g,2003.0,8,9,2016,What a Girl Wants,Longing to Do This,tt0286788 KprKHSAAn7U,2003.0,9,9,2016,What a Girl Wants,Withdraw My Candidacy,tt0286788 vVPtQKHiWwM,2003.0,7,9,2016,What a Girl Wants,Born to Stand Out,tt0286788 8-9wlwVvR1M,2003.0,6,9,2016,What a Girl Wants,Daddy's Girl,tt0286788 2YbvpD3WQnk,2003.0,1,9,2016,What a Girl Wants,Half of Me is Missing,tt0286788 Tw_kFAuhkbI,1998.0,1,8,2016,Quest for Camelot,On My Father's Wings,tt0120800 1V53lOLjgiw,1998.0,2,8,2016,Quest for Camelot,Good Old Bad Days,tt0120800 f57Vat6YZUI,1998.0,3,8,2016,Quest for Camelot,I Stand Alone,tt0120800 CEvHsuyVfRo,1998.0,4,8,2016,Quest for Camelot,Chased by Dragons,tt0120800 RR5kEQ9LgvU,1998.0,5,8,2016,Quest for Camelot,Looking Through Your Eyes,tt0120800 _lpIHzRR1xY,1998.0,6,8,2016,Quest for Camelot,The Ogre's Butt,tt0120800 GUWxHgIn91w,1998.0,8,8,2016,Quest for Camelot,Defeating Ruber,tt0120800 UfHqN7KPZ5s,1998.0,7,8,2016,Quest for Camelot,To the Rescue,tt0120800 Hda6MwCdwI8,2014.0,10,10,2016,The Skeleton Twins,You're Here,tt1571249 V7gceiThJ6U,2014.0,9,10,2016,The Skeleton Twins,What Am I To You?,tt1571249 RKt17dM8eFk,2014.0,8,10,2016,The Skeleton Twins,You Ruined My Marriage,tt1571249 QEQp25xImoA,2014.0,7,10,2016,The Skeleton Twins,He Was Your English Teacher,tt1571249 yP9sbfNwtv0,2014.0,6,10,2016,The Skeleton Twins,Halloween,tt1571249 0npouzhhZTo,2014.0,5,10,2016,The Skeleton Twins,Nothing's Gonna Stop Us Now,tt1571249 UZnEqDr9PKE,2014.0,4,10,2016,The Skeleton Twins,Whore-Like Tendencies,tt1571249 5X_mnh-S0pU,2014.0,3,10,2016,The Skeleton Twins,Laughing Gas,tt1571249 TNVwN7IfVAw,2014.0,1,10,2016,The Skeleton Twins,Welcome Home,tt1571249 Sl1G9Jxc9hI,2014.0,2,10,2016,The Skeleton Twins,A Bad Mother,tt1571249 lntqgt5jbjg,2015.0,8,10,2016,Sharknado 3: Oh Hell No!,Claudia's First Date,tt3899796 VV55v_IKVJI,2015.0,7,10,2016,Sharknado 3: Oh Hell No!,"Trust Me, They're Real",tt3899796 lh3WF7shhlM,2015.0,9,10,2016,Sharknado 3: Oh Hell No!,Sharks in Space,tt3899796 J6i7WPT1cFk,2015.0,10,10,2016,Sharknado 3: Oh Hell No!,The Birth of Baby Gil,tt3899796 9Ipb0xcxdqk,2015.0,2,10,2016,Sharknado 3: Oh Hell No!,Nova Returns,tt3899796 hSe-_6hmDgI,2015.0,5,10,2016,Sharknado 3: Oh Hell No!,Take My Picture!,tt3899796 eKrrYByQTQI,2015.0,3,10,2016,Sharknado 3: Oh Hell No!,Lucas Loses Limbs,tt3899796 mvFQciz5wRc,2015.0,4,10,2016,Sharknado 3: Oh Hell No!,Professional Shark Slayers,tt3899796 zu9vz_Krzb0,2015.0,1,10,2016,Sharknado 3: Oh Hell No!,God Bless America,tt3899796 wBFzZM9YqEo,2015.0,6,10,2016,Sharknado 3: Oh Hell No!,Shark Coaster,tt3899796 BBXUqYlAK6o,2011.0,6,10,2016,Mega Python vs. Gatoroid,I Think We're Alone Now,tt1680138 nftQNmMRqG8,2011.0,4,10,2016,Mega Python vs. Gatoroid,Let's Blow It Up,tt1680138 Z6rYB0AOMjA,2011.0,1,10,2016,Mega Python vs. Gatoroid,Python Eggs,tt1680138 _UhMIImQ-Bo,2011.0,2,10,2016,Mega Python vs. Gatoroid,Headless Hunter,tt1680138 ejRc7XEbAQI,2011.0,3,10,2016,Mega Python vs. Gatoroid,Eaten Alive,tt1680138 m6U7qRsCp6M,2011.0,7,10,2016,Mega Python vs. Gatoroid,Reptile Rampage,tt1680138 -zEXV5oiWgc,2011.0,5,10,2016,Mega Python vs. Gatoroid,Cake War Cat Fight,tt1680138 3I44VJIIzKM,2011.0,8,10,2016,Mega Python vs. Gatoroid,No Girl Left Behind,tt1680138 eG4B_DIenu8,2011.0,10,10,2016,Mega Python vs. Gatoroid,I'm Alive!,tt1680138 dP9mVoZ-cmQ,2011.0,9,10,2016,Mega Python vs. Gatoroid,Chomped from the Chopper,tt1680138 0DnThxPfhJE,2013.0,4,10,2016,Jackass Presents: Bad Grandpa,Moving the Body,tt3063516 smUy5NzszX0,2013.0,1,10,2016,Jackass Presents: Bad Grandpa,Stuck to the Machine,tt3063516 DoqPEhVHdBM,2013.0,10,10,2016,Jackass Presents: Bad Grandpa,Beauty Pageant,tt3063516 bQXJoR6tLao,2013.0,2,10,2016,Jackass Presents: Bad Grandpa,Funeral Fail,tt3063516 1fVPS7eLbME,2013.0,8,10,2016,Jackass Presents: Bad Grandpa,You Sharted!,tt3063516 FqYJIUS39Ck,2013.0,3,10,2016,Jackass Presents: Bad Grandpa,Broken Bed,tt3063516 IV0hoLATbJY,2013.0,6,10,2016,Jackass Presents: Bad Grandpa,Shipping Billy,tt3063516 TaJeShUtQjc,2013.0,7,10,2016,Jackass Presents: Bad Grandpa,Grandpa Strips,tt3063516 IbkWZDej_v8,2013.0,9,10,2016,Jackass Presents: Bad Grandpa,Hanging with Grandpa,tt3063516 vQSkLuEOdMM,2013.0,5,10,2016,Jackass Presents: Bad Grandpa,Grandpa Goes for a Ride,tt3063516 qgbSfZMR99w,2013.0,4,10,2016,Filth,Defamation of Character,tt1450321 aPkfoqjZXog,2013.0,6,10,2016,Filth,Phone Sex,tt1450321 BH3ApQHJslA,2013.0,3,10,2016,Filth,Painful Hallucinations,tt1450321 e37vIq1VL0I,2013.0,8,10,2016,Filth,There's Something Wrong With Me,tt1450321 z6FcMyuo0R4,2013.0,9,10,2016,Filth,Wanna Hear You Squeal,tt1450321 d5CmbbyeDco,2013.0,1,10,2016,Filth,Dirty Cop,tt1450321 jQPKeltJ-Vk,2013.0,5,10,2016,Filth,A Fine Man,tt1450321 IMYTK5IyZ9E,2013.0,10,10,2016,Filth,Same Rules Apply,tt1450321 LrIJa8zJs_0,2013.0,7,10,2016,Filth,You Are,tt1450321 RsSl85y9JN4,2013.0,2,10,2016,Filth,Tulips on My Bulbs,tt1450321 iRLGo522K5A,2010.0,6,10,2016,Mega Piranha,Suck on the Battery,tt1587807 YK7cNXMRifo,2010.0,10,10,2016,Mega Piranha,You're Fish Food,tt1587807 gCnWKrvrCNw,2010.0,2,10,2016,Mega Piranha,Scuba Snacks,tt1587807 xiVeUn1rF3E,2010.0,1,10,2016,Mega Piranha,Devoured,tt1587807 bJXBNZ7FU40,2010.0,5,10,2016,Mega Piranha,Fish Kicker,tt1587807 XSTakNMoF2s,2010.0,8,10,2016,Mega Piranha,Helicopter Hijack,tt1587807 iUi2XKRnJD0,2010.0,7,10,2016,Mega Piranha,You Ate My Battleship!,tt1587807 fn1dNeTNduk,2010.0,3,10,2016,Mega Piranha,You Can't Help Him,tt1587807 pShuaMA2rY4,2010.0,4,10,2016,Mega Piranha,Exploding Piranhas,tt1587807 YjF4rd3J58U,2010.0,9,10,2016,Mega Piranha,Persistent Piranhas,tt1587807 VazRhsh6uys,1994.0,4,7,2016,Richie Rich,Baseball Bet,tt0110989 kFFuJQRlm38,1994.0,5,7,2016,Richie Rich,Richie Runs Things,tt0110989 -ZlL0LLfjKY,1994.0,3,7,2016,Richie Rich,Business School,tt0110989 ROzcf7QoDjU,1994.0,6,7,2016,Richie Rich,Cadbury Escapes,tt0110989 bhYOGuozHd4,1994.0,7,7,2016,Richie Rich,Keenbeam Saves Richie,tt0110989 uQlKjRScXww,1994.0,1,7,2016,Richie Rich,Mount Richmore,tt0110989 myOTp1wr3Bg,1994.0,2,7,2016,Richie Rich,Robo-Bee,tt0110989 yb5FDpFLc1M,2015.0,10,10,2016,Ted 2,Ted Wrecks the Car,tt2637276 8YDVV75itA0,2015.0,9,10,2016,Ted 2,Cookie in the Crack,tt2637276 P0JUY_IEZts,2015.0,8,10,2016,Ted 2,Beer Fight and Sad Improv,tt2637276 f0wEV9jySXg,2015.0,7,10,2016,Ted 2,Questioning Ted,tt2637276 us_GLuu2SAc,2015.0,6,10,2016,Ted 2,Library Dance,tt2637276 z6ViDZpVoYc,2015.0,1,10,2016,Ted 2,Trix Are for Kids,tt2637276 ER6BpmtBLkk,2015.0,4,10,2016,Ted 2,Sperm Bank Mishap,tt2637276 jot1h4tgY6M,2015.0,2,10,2016,Ted 2,Law & Order & Porn,tt2637276 83xaGtnlvR0,2015.0,3,10,2016,Ted 2,Operation Tom Brady,tt2637276 3TWv-3cC9NM,2015.0,5,10,2016,Ted 2,Sam L. Jackson,tt2637276 LMGAxyUnURI,1992.0,6,10,2016,The Cutting Edge,You're a Lousy Drunk,tt0104040 Equ4D2mZDHc,1992.0,9,10,2016,The Cutting Edge,Kate's Confession,tt0104040 XcMH5ntEWGQ,1992.0,8,10,2016,The Cutting Edge,She Has to Fly!,tt0104040 m946LkLieG8,1992.0,7,10,2016,The Cutting Edge,With Another Woman,tt0104040 TrRogqsarno,1992.0,4,10,2016,The Cutting Edge,Foreplay,tt0104040 YmbXanCiB-U,1992.0,10,10,2016,The Cutting Edge,Because I Love You,tt0104040 Zm0f0oFUxVA,1992.0,2,10,2016,The Cutting Edge,Toe Pick!,tt0104040 PwSihgp_iTE,1992.0,1,10,2016,The Cutting Edge,Kate Meets Doug,tt0104040 hl31RQCC_Bc,1992.0,5,10,2016,The Cutting Edge,How Nervous Are You?,tt0104040 5sr-kuYhYGU,1992.0,3,10,2016,The Cutting Edge,Sparks Fly,tt0104040 dOzGnmkbahw,2014.0,4,10,2016,Transformers: Age of Extinction,We Don't Need You Anymore,tt2109248 Y9isIphHz2w,2014.0,3,10,2016,Transformers: Age of Extinction,Autobots Reunion,tt2109248 9C_429woeJ0,2014.0,9,10,2016,Transformers: Age of Extinction,Us vs. Them,tt2109248 qzZegCkbJAw,2014.0,7,10,2016,Transformers: Age of Extinction,Dinobots Join the Fight,tt2109248 WHu2355LLQc,2014.0,10,10,2016,Transformers: Age of Extinction,"Honor, To the End",tt2109248 8koQ3N3w7aw,2014.0,8,10,2016,Transformers: Age of Extinction,Dinobot Reinforcements,tt2109248 yDd3xayehVg,2014.0,2,10,2016,Transformers: Age of Extinction,Grab My Stick!,tt2109248 cxRYIDsZzuE,2014.0,5,10,2016,Transformers: Age of Extinction,Lockdown and Loaded,tt2109248 4rzrz48Fa_o,2014.0,1,10,2016,Transformers: Age of Extinction,Optimus Emerges,tt2109248 Vcxvmi26Kfw,2014.0,6,10,2016,Transformers: Age of Extinction,A Long Way Down,tt2109248 FYm6LTv7PKk,2011.0,10,10,2016,Transformers: Dark of the Moon,You Betrayed Yourself,tt1399103 RonS_bJ7mcU,2011.0,1,10,2016,Transformers: Dark of the Moon,Escape from Cybertron,tt1399103 5qzsQMiYINo,2011.0,6,10,2016,Transformers: Dark of the Moon,"No Prisoners, Only Trophies",tt1399103 RzngZOLn-bk,2011.0,7,10,2016,Transformers: Dark of the Moon,Army Rangers vs. Decepticons,tt1399103 mLk_txo4sYc,2011.0,3,10,2016,Transformers: Dark of the Moon,Autobots vs. Decepticons,tt1399103 oUleBi3j0o8,2011.0,4,10,2016,Transformers: Dark of the Moon,I'm Coming for You!,tt1399103 0vtLA9LFkSs,2011.0,5,10,2016,Transformers: Dark of the Moon,"You Can't Hide, Boy!",tt1399103 btwtChuzeaA,2011.0,9,10,2016,Transformers: Dark of the Moon,Prime vs. Prime,tt1399103 a_UjNi8M_bw,2011.0,8,10,2016,Transformers: Dark of the Moon,The Battle for Chicago,tt1399103 CDbpKJDcbQ8,2011.0,2,10,2016,Transformers: Dark of the Moon,Shockwave Attacks,tt1399103 Oneax2fARKs,2009.0,5,10,2016,Transformers: Revenge of the Fallen,The Mad Doctor Scene,tt1055369 svXObgE9fXc,2009.0,1,10,2016,Transformers: Revenge of the Fallen,Decepticon Hunters Scene,tt1055369 j8Sb4-hMhCg,2009.0,6,10,2016,Transformers: Revenge of the Fallen,The Death of Optimus Prime Scene,tt1055369 2V_LmUEtPMs,2009.0,4,10,2016,Transformers: Revenge of the Fallen,A Love Machine Scene,tt1055369 YejpJgtQtuU,2009.0,2,10,2016,Transformers: Revenge of the Fallen,The Appliances Attack Scene,tt1055369 fjAnmRjjY3E,2009.0,9,10,2016,Transformers: Revenge of the Fallen,Operation Firestorm Scene,tt1055369 C73kXYUTC14,2009.0,8,10,2016,Transformers: Revenge of the Fallen,Bumblebee vs. Rampage Scene,tt1055369 UzPRCUNCoIA,2009.0,7,10,2016,Transformers: Revenge of the Fallen,Devastator's Assault Scene,tt1055369 0pbdha7w0V0,2009.0,3,10,2016,Transformers: Revenge of the Fallen,Ravage Attacks Scene,tt1055369 cneoNgk9dhM,2009.0,10,10,2016,Transformers: Revenge of the Fallen,"I Rise, You Fall Scene",tt1055369 rWLEdpLkmrc,2011.0,2,10,2016,Almighty Thor,Odin vs. Loki,tt1792794 yjuTLT5OWko,2011.0,3,10,2016,Almighty Thor,Fight Me Like a Warrior,tt1792794 kBI3jfVTQ04,2011.0,1,10,2016,Almighty Thor,Valor and Strength,tt1792794 nM1xpUM4uUs,2011.0,4,10,2016,Almighty Thor,Battle at the Tree of Life,tt1792794 gpEiNwKpq1U,2011.0,5,10,2016,Almighty Thor,Mind Tricks,tt1792794 CNYtVjUf5uc,2011.0,10,10,2016,Almighty Thor,Thor vs. Loki,tt1792794 38mMNp3gyYs,2011.0,6,10,2016,Almighty Thor,The Power of the Bone,tt1792794 N2EC0gAi2lk,2011.0,8,10,2016,Almighty Thor,Loki and the Lindworms,tt1792794 dEqZRPnfSqo,2011.0,9,10,2016,Almighty Thor,"Die, Mother of Living Earth",tt1792794 QiVqI3oxdtw,2011.0,7,10,2016,Almighty Thor,Bring My Father Back to Life,tt1792794 H9Anw9hFNQE,1995.0,6,13,2016,Hackers,I Was Zero Cool,tt0113243 dgXARu_D5d8,2012.0,3,10,2016,Abraham Lincoln vs. Zombies,"They're Coming, Mr. President!",tt2246549 ZLbDKSo2QLA,2012.0,6,10,2016,Abraham Lincoln vs. Zombies,Emancipate This,tt2246549 DOeYRNcSjWM,2012.0,9,10,2016,Abraham Lincoln vs. Zombies,"Blowing Up the ""Stone"" Walls",tt2246549 gu_ckpTcrBI,2012.0,10,10,2016,Abraham Lincoln vs. Zombies,Abe's Sacrifice,tt2246549 r_Bdli4c8TA,2012.0,8,10,2016,Abraham Lincoln vs. Zombies,Overwhelmed by the Zombies,tt2246549 Hc6cJ6xmfM0,2012.0,5,10,2016,Abraham Lincoln vs. Zombies,A Single Drop of Blood,tt2246549 pF67F-hlVaA,2012.0,7,10,2016,Abraham Lincoln vs. Zombies,Living to Fight Another Day,tt2246549 UczoOVtUsDA,2012.0,1,10,2016,Abraham Lincoln vs. Zombies,Standing Against Reason,tt2246549 sNi3hwriXyE,2012.0,2,10,2016,Abraham Lincoln vs. Zombies,Only in the Head!,tt2246549 TCIgI-AObzk,2012.0,4,10,2016,Abraham Lincoln vs. Zombies,On the Run,tt2246549 hdrvg0jmL8s,2004.0,11,11,2016,Barbershop 2,Calvin Addresses City Council,tt0337579 iY5fvk3H2Js,2004.0,3,11,2016,Barbershop 2,Nappy Cutz,tt0337579 EqEDcrYPp3U,2004.0,10,11,2016,Barbershop 2,Getting to Know Ricky,tt0337579 EKLCchi0iCI,2004.0,1,11,2016,Barbershop 2,I Don't Know This Woman,tt0337579 85PpxPJ52us,2004.0,5,11,2016,Barbershop 2,New Rules,tt0337579 wBIVUUflNb4,2004.0,6,11,2016,Barbershop 2,Gina vs. Eddie,tt0337579 L-y9V-gpj9U,2004.0,4,11,2016,Barbershop 2,Lactose Intolerant,tt0337579 FInHKeP2UoU,2004.0,9,11,2016,Barbershop 2,Haircut for the Councilman,tt0337579 9MDbaBqAqMg,2004.0,8,11,2016,Barbershop 2,Breaking Into Nappy Cutz,tt0337579 lRQXQXsXIm8,2004.0,2,11,2016,Barbershop 2,Toddler Penis,tt0337579 CoFFpId2-Ak,2004.0,7,11,2016,Barbershop 2,Ricky Kisses Terri,tt0337579 h_Awe6CI91k,1995.0,4,13,2016,Hackers,Ramon Gets Busted,tt0113243 pxiwqleE9Do,1995.0,2,13,2016,Hackers,Pool on the Roof,tt0113243 r38fEGep2yU,1995.0,11,13,2016,Hackers,Kind of Feel Like God,tt0113243 2son-vLime4,1995.0,3,13,2016,Hackers,Dade's Revenge,tt0113243 SFEc7iy6zmI,1995.0,13,13,2016,Hackers,Crash and Burn,tt0113243 eL2DjnXT4wQ,1995.0,12,13,2016,Hackers,The Plague is Caught,tt0113243 5y_SbnPx_cE,1995.0,10,13,2016,Hackers,Hack the Planet,tt0113243 GIKfEAF2Yhw,1995.0,9,13,2016,Hackers,"Mess With the Best, Die Like the Rest",tt0113243 Bmz67ErIRa4,1995.0,8,13,2016,Hackers,Hack the Gibson,tt0113243 0T0QWPRBau4,1995.0,7,13,2016,Hackers,Subway Defense System,tt0113243 bcAACOrgVKE,1995.0,5,13,2016,Hackers,The Worm,tt0113243 peBuMWtkw8s,1995.0,1,13,2016,Hackers,Zero Cool,tt0113243 y6mlssn2bl0,2005.0,8,12,2016,Beauty Shop,Joe's Spear,tt0388500 xCLCNJpKLx8,2005.0,10,12,2016,Beauty Shop,Airbags for Breasts,tt0388500 07YuuA_2O9w,2005.0,1,12,2016,Beauty Shop,Gina Quits,tt0388500 AwXJIHFo84c,2005.0,9,12,2016,Beauty Shop,I Will Burn Your Ass,tt0388500 0CQi2Bb7WE8,2005.0,7,12,2016,Beauty Shop,Bikini Wax,tt0388500 zs5bqvL5Wh4,2005.0,12,12,2016,Beauty Shop,A Phenomenal Woman,tt0388500 hSwy6UI-djc,2005.0,11,12,2016,Beauty Shop,Don King Issues,tt0388500 iNa97wFdFyE,2005.0,6,12,2016,Beauty Shop,Does My Sexiness Offend You?,tt0388500 Jp9IN_iver4,2005.0,5,12,2016,Beauty Shop,How to Get Rid of a Man,tt0388500 PHj4OVnU6EY,2005.0,4,12,2016,Beauty Shop,Mrs. Towner,tt0388500 jnoCeqeNM3g,2005.0,2,12,2016,Beauty Shop,We Are Professionals,tt0388500 3FOUAKr22K4,2005.0,3,12,2016,Beauty Shop,Meet the White Girl,tt0388500 q0vvYHuA10U,1989.0,7,10,2016,Indiana Jones and the Last Crusade,An Army of Birds,tt0097576 mG1vn39lP3M,1989.0,2,10,2016,Indiana Jones and the Last Crusade,Boat Chase,tt0097576 AwH6-Yh7_SM,1989.0,1,10,2016,Indiana Jones and the Last Crusade,Young Indy,tt0097576 hl8e9i6YiA8,1989.0,3,10,2016,Indiana Jones and the Last Crusade,Fiery Escape,tt0097576 Np4OojYGixI,1989.0,9,10,2016,Indiana Jones and the Last Crusade,I've Lost Him,tt0097576 o4lq3SOB8sw,1989.0,5,10,2016,Indiana Jones and the Last Crusade,Hitler's Autograph,tt0097576 U6tzqlxOr2U,1989.0,8,10,2016,Indiana Jones and the Last Crusade,Tank Battle,tt0097576 ilV5Qt01eyc,1989.0,4,10,2016,Indiana Jones and the Last Crusade,Motorcycle Chase,tt0097576 s0vNsH81YeA,1989.0,6,10,2016,Indiana Jones and the Last Crusade,No Ticket,tt0097576 VA7J0KkanzM,1989.0,10,10,2016,Indiana Jones and the Last Crusade,He Chose Poorly,tt0097576 PT3Wpc71ebk,2008.0,7,10,2016,Indiana Jones 4,Jeep Sword Fight,tt0367882 VbdaoAYveUA,2008.0,8,10,2016,Indiana Jones 4,Mutt and the Monkeys,tt0367882 ohnkD-gjNVQ,2008.0,10,10,2016,Indiana Jones 4,I Want to Know,tt0367882 K1R4hHq8yr4,2008.0,9,10,2016,Indiana Jones 4,Giant Ants,tt0367882 fcfYrTFbM94,2008.0,5,10,2016,Indiana Jones 4,Marion is Your Mother?,tt0367882 iGIooJXEu9E,2008.0,6,10,2016,Indiana Jones 4,Henry Jones III,tt0367882 sR_xG8DNCSI,2008.0,3,10,2016,Indiana Jones 4,Get Out of the Library,tt0367882 PHHgumL4rUI,2008.0,1,10,2016,Indiana Jones 4,Warehouse Escape,tt0367882 jn4Vhkmb4Lw,2008.0,2,10,2016,Indiana Jones 4,Saved By the Fridge,tt0367882 npaJix_AarM,2008.0,4,10,2016,Indiana Jones 4,The Crystal Skull,tt0367882 EyexoSJ1tsg,1974.0,1,11,2016,The Conversation,Under Surveillance,tt0071360 dWhFW021gwM,1974.0,2,11,2016,The Conversation,I'm Your Secret,tt0071360 7ocMJfJATEw,1974.0,3,11,2016,The Conversation,Someone May Get Hurt,tt0071360 vROih4weKoM,1974.0,5,11,2016,The Conversation,He'd Kill Us If He Got the Chance,tt0071360 KRfJqmecqUQ,1974.0,6,11,2016,The Conversation,Phone Tap,tt0071360 SH4vCrz5Pb4,1974.0,8,11,2016,The Conversation,I'm Not Afraid of Death,tt0071360 GcPyVMO8bcA,1974.0,7,11,2016,The Conversation,The Bugger Got Bugged,tt0071360 YGOmoGwJbTk,1974.0,9,11,2016,The Conversation,What Will You Do to Her?,tt0071360 btXmzToD3W4,1974.0,11,11,2016,The Conversation,Bug Hunt,tt0071360 zbN6F4tfbgo,1974.0,10,11,2016,The Conversation,Scene of the Crime,tt0071360 wTP_SdjD5ms,1978.0,12,12,2016,Invasion of the Body Snatchers,The Scream,tt0077745 nkmg10eebk4,1974.0,4,11,2016,The Conversation,What a Stupid Conversation,tt0071360 es83ejXi5wg,1978.0,9,12,2016,Invasion of the Body Snatchers,Escaping Kibner,tt0077745 LIhdfU4RIdo,1978.0,11,12,2016,Invasion of the Body Snatchers,Matthew Gets Away,tt0077745 vdyYR85RNkk,1978.0,8,12,2016,Invasion of the Body Snatchers,Type H,tt0077745 ktEW65QQFgQ,1978.0,10,12,2016,Invasion of the Body Snatchers,Dog-Man Pod,tt0077745 eT5XhG7qLcU,1978.0,7,12,2016,Invasion of the Body Snatchers,Escaping the Pod People,tt0077745 3Iambpg_8w4,1978.0,5,12,2016,Invasion of the Body Snatchers,The Run Around,tt0077745 8mYlqWefu-8,1978.0,6,12,2016,Invasion of the Body Snatchers,Wake the Others!,tt0077745 0BXa52qz-kU,1978.0,4,12,2016,Invasion of the Body Snatchers,Long Gone,tt0077745 q4VIMzhfeYc,1978.0,2,12,2016,Invasion of the Body Snatchers,Examining a Pod Body,tt0077745 z_G7CS4mJqc,1978.0,3,12,2016,Invasion of the Body Snatchers,Eyes Wide Open,tt0077745 w2XWa1XuKSI,1978.0,1,12,2016,Invasion of the Body Snatchers,They're Coming!,tt0077745 1CJuzTFRGhE,2015.0,10,11,2016,Accidental Love,Sexual Favors,tt1137470 3izQonrYukE,2015.0,2,11,2016,Accidental Love,Orgasms Do Exist,tt1137470 DmDtPzG5aU0,2015.0,11,11,2016,Accidental Love,Not Everyone Has Really Awesome Health Care,tt1137470 EuUUunxYat8,2015.0,6,11,2016,Accidental Love,Death by Girl Scout Cookies,tt1137470 cK2a6BzrUO0,2015.0,8,11,2016,Accidental Love,Catastrophic Lesbianism,tt1137470 KcPIEP0GpSo,2015.0,9,11,2016,Accidental Love,Men's Spiritual Workshop,tt1137470 OLgi3eAwNGE,2015.0,7,11,2016,Accidental Love,I'm a Woman With a Nail in My Head,tt1137470 BtEfmxkeEcY,2015.0,4,11,2016,Accidental Love,"Rock on, Moon Base",tt1137470 8pEobIigs5Y,2015.0,1,11,2016,Accidental Love,Crazy Talking to Crazy,tt1137470 -pCVsB4Dghk,2015.0,5,11,2016,Accidental Love,Voluntary Sex Thing,tt1137470 iOhZLY0cDV8,2015.0,3,11,2016,Accidental Love,I Cry for You,tt1137470 YKFQfaDL9gQ,2013.0,10,10,2016,Mama,The Ending,tt2023587 yGGZUbqbTWg,2013.0,9,10,2016,Mama,She's Mad,tt2023587 dUoKiRrGu4c,2013.0,8,10,2016,Mama,Scared the Crap Out of Me,tt2023587 yayNXxs76vE,2013.0,6,10,2016,Mama,Is She Here?,tt2023587 o3w6MouV4NE,2013.0,7,10,2016,Mama,I Know What You Want,tt2023587 qWOQp-rJ0Vc,2013.0,4,10,2016,Mama,Someone's Here,tt2023587 gFES6-SLD_s,2013.0,5,10,2016,Mama,Don't Turn Around,tt2023587 yxiNPHXAH0s,2013.0,2,10,2016,Mama,Feral Children,tt2023587 Eo87byVKgfo,2013.0,1,10,2016,Mama,Daddy is Taken,tt2023587 Frwrlztd8C4,2013.0,3,10,2016,Mama,and the Kids,tt2023587 Bdc_wuMUpP8,2011.0,1,10,2016,A Little Bit of Heaven,Condoms for Her,tt1440161 1-70_Trz7M8,2011.0,2,10,2016,A Little Bit of Heaven,Meeting God,tt1440161 1Wm5NiRIKB4,2011.0,4,10,2016,A Little Bit of Heaven,Hitting on the Doctor,tt1440161 bHGyGED8qCc,2011.0,10,10,2016,A Little Bit of Heaven,A Happy Funeral,tt1440161 1-pgYgfRbZE,2011.0,5,10,2016,A Little Bit of Heaven,Makeup of a Fool,tt1440161 NJe9WplQKN4,2011.0,3,10,2016,A Little Bit of Heaven,I Have Cancer,tt1440161 b-7IuyhoAxg,2011.0,6,10,2016,A Little Bit of Heaven,Little Gigolo,tt1440161 MoHQNC_-45U,2011.0,7,10,2016,A Little Bit of Heaven,A Whole Lot of Heaven,tt1440161 8MVN6SVnO_o,2011.0,8,10,2016,A Little Bit of Heaven,My Third Wish,tt1440161 7FK6P0sTBrs,2011.0,9,10,2016,A Little Bit of Heaven,My Second Wish,tt1440161 sO6DX9YCIPw,2010.0,1,11,2016,Remember Me,Alleyway Brawl,tt1403981 zbZmKqU90pE,2010.0,2,11,2016,Remember Me,Sociological Experiment,tt1403981 cQigrDa8S60,2010.0,3,11,2016,Remember Me,Dessert First,tt1403981 71cKzwJPI5g,2010.0,4,11,2016,Remember Me,Wet and Playful,tt1403981 6Cf1MeHEZn0,2010.0,5,11,2016,Remember Me,I Take After My Mother,tt1403981 nxnkxubWt5A,2010.0,6,11,2016,Remember Me,Sharing Secrets,tt1403981 k39MKOaoDhc,2010.0,11,11,2016,Remember Me,I Forgive You,tt1403981 PJQgGszBO9s,2010.0,8,11,2016,Remember Me,Why Aren't You Riveted?,tt1403981 vxloU1qqM_w,2010.0,7,11,2016,Remember Me,You're Tyler's Girlfriend,tt1403981 NOVhlDQthwM,2010.0,9,11,2016,Remember Me,I Didn't Mean to Hurt You,tt1403981 0pfqzjPMnoE,2010.0,10,11,2016,Remember Me,School Rage,tt1403981 xbHSfACHWQE,2013.0,11,11,2016,Peeples,The Proposal,tt1699755 DkVjSKOdczM,2013.0,3,11,2016,Peeples,Hurts So Good,tt1699755 DOqHpCInxQ4,2013.0,10,11,2016,Peeples,Unraveling the Truth,tt1699755 WOG22C6GDMA,2013.0,8,11,2016,Peeples,The Sweat Teepee,tt1699755 SUQaxkWkB0s,2013.0,5,11,2016,Peeples,Naughty School Girl,tt1699755 px2rxAmJNHU,2013.0,9,11,2016,Peeples,Moby Dick Day,tt1699755 hE7Nc_la-l0,2013.0,1,11,2016,Peeples,The Chocolate Kennedys,tt1699755 eiKSmbxn4UY,2013.0,7,11,2016,Peeples,Simon Sticky Fingers,tt1699755 DUMW--Zlrcs,2013.0,6,11,2016,Peeples,The Headpiece,tt1699755 OKR7b6NL6IU,2013.0,2,11,2016,Peeples,First Impressions,tt1699755 _9rqQ-bOcLc,2013.0,4,11,2016,Peeples,Nude Beach,tt1699755 wwxjFuoLYzQ,2013.0,8,10,2016,Identity Thief,Car Chase,tt2024432 UV5zCTfvurQ,2012.0,9,10,2016,The Impossible,Maria's Ordeal,tt1649419 J-7LezqtuMY,2012.0,3,10,2016,The Impossible,Thank You,tt1649419 LalslCf2kLQ,2012.0,5,10,2016,The Impossible,Calling Home,tt1649419 tagDBoX24S0,2012.0,8,10,2016,The Impossible,You Came Back,tt1649419 vEFoOcev00s,2012.0,4,10,2016,The Impossible,What's Your Name?,tt1649419 l0RkrxY9mH8,2012.0,6,10,2016,The Impossible,A Beautiful Mystery,tt1649419 4d-EYIZAqXc,2012.0,1,10,2016,The Impossible,The Tsunami,tt1649419 FnahBy4Od9Q,2012.0,2,10,2016,The Impossible,Is it Over?,tt1649419 LfSLyM9XiCw,2012.0,10,10,2016,The Impossible,It's Going to Be Okay,tt1649419 T5-LhZ2YpGc,2012.0,7,10,2016,The Impossible,Reunited.,tt1649419 azkJMOVoNys,2013.0,9,10,2016,Identity Thief,Your Real Name,tt2024432 gEq_wldXBww,2013.0,10,10,2016,Identity Thief,The Ending,tt2024432 FOWZ7B1QenY,2013.0,1,10,2016,Identity Thief,A Trained Baboon,tt2024432 1shru4620TE,2013.0,3,10,2016,Identity Thief,Not the Easy Way,tt2024432 YXt8RmeU_AA,2013.0,4,10,2016,Identity Thief,Highway Fight,tt2024432 8pi1bm3890U,2013.0,2,10,2016,Identity Thief,Sandy Meets Sandy,tt2024432 s8hKbzuOAQY,2013.0,7,10,2016,Identity Thief,Big Chuck and Diana,tt2024432 mszPMVP_qcw,2013.0,6,10,2016,Identity Thief,Dinner With a Sociopath,tt2024432 fjodt2JnWT8,2013.0,5,10,2016,Identity Thief,Singing to the Radio,tt2024432 Hu-xJbVwgPM,2014.0,10,10,2016,Sharknado 2: The Second One,"Will You Marry Me, Again?",tt3062074 GA_4dJb-nQg,2014.0,4,10,2016,Sharknado 2: The Second One,Subway Sharks,tt3062074 S8aigz2j7-o,2014.0,7,10,2016,Sharknado 2: The Second One,Let's Go Kill Some Sharks!,tt3062074 Jipo-s5DGj8,2014.0,3,10,2016,Sharknado 2: The Second One,Stun Gun Meets Sharp Teeth,tt3062074 xHgLwzZ2_8s,2014.0,8,10,2016,Sharknado 2: The Second One,Let the Fireworks Begin,tt3062074 -BNqJHOxNp0,2014.0,9,10,2016,Sharknado 2: The Second One,Through the Eye of the Sharknado,tt3062074 1iwBRoAb_Cg,2014.0,6,10,2016,Sharknado 2: The Second One,Flaming Sharks!,tt3062074 sRFINj9g1iI,2014.0,5,10,2016,Sharknado 2: The Second One,The Statue of Liberty and Death,tt3062074 C_0W1Q51_z8,2014.0,2,10,2016,Sharknado 2: The Second One,My Hand!,tt3062074 FmPwgLX9fAQ,2014.0,1,10,2016,Sharknado 2: The Second One,Sharks on a Plane,tt3062074 SQzC9SO66pc,2013.0,1,10,2016,Sharknado,Everyone Out of the Water!,tt2724064 naCL7BZb4Lw,2013.0,9,10,2016,Sharknado,I'm Gonna Finish This,tt2724064 LhbPVQUZV0A,2013.0,8,10,2016,Sharknado,Chopper Chomper,tt2724064 OtBnQ30-Iio,2013.0,7,10,2016,Sharknado,It's Raining Sharks!,tt2724064 udcb-kQs-GU,2013.0,2,10,2016,Sharknado,Santa Monica Pier Carnage,tt2724064 0slaW0ARW1Q,2013.0,6,10,2016,Sharknado,We're Gonna Need a Bigger Chopper,tt2724064 uYDdBUasjxM,2013.0,5,10,2016,Sharknado,Shark Made Sunroof,tt2724064 nsR0Z8f6QAM,2013.0,3,10,2016,Sharknado,Razor-Toothed Home Invasion,tt2724064 0eBDwVSU56s,2013.0,10,10,2016,Sharknado,Chainsaw vs Jaws,tt2724064 qlX5rnpp0iA,2013.0,4,10,2016,Sharknado,Hollywood Will Kill You,tt2724064 En3JBEKvxr4,2011.0,1,11,2016,Jiro Dreams of Sushi,Fall in Love With Your Work,tt1772925 eF9nKXO2Zdg,2011.0,10,11,2016,Jiro Dreams of Sushi,Like a Concerto,tt1772925 ovD51p3YDFk,2011.0,11,11,2016,Jiro Dreams of Sushi,Always Elevate Your Craft,tt1772925 m1HazoM2hOY,2011.0,6,11,2016,Jiro Dreams of Sushi,Tuna Shopping,tt1772925 XYwGKDK87DI,2011.0,7,11,2016,Jiro Dreams of Sushi,The Orchestra of Sushi,tt1772925 tWHVvdPw2t4,2011.0,4,11,2016,Jiro Dreams of Sushi,Dreaming of Sushi,tt1772925 0x0muJjYzp4,2011.0,9,11,2016,Jiro Dreams of Sushi,Umami,tt1772925 1LoKbaf2vrU,2011.0,8,11,2016,Jiro Dreams of Sushi,Making Egg Sushi,tt1772925 f9qQfURhph4,2011.0,3,11,2016,Jiro Dreams of Sushi,Subtlety of Tuna,tt1772925 tyUJnwrI-FU,2011.0,5,11,2016,Jiro Dreams of Sushi,Jiro's Ghost,tt1772925 8nOx6uj46XQ,2011.0,2,11,2016,Jiro Dreams of Sushi,Attributes of a Great Chef,tt1772925 v53yiG9-_xs,1987.0,10,10,2016,Superman IV,There Will Be Peace,tt0094074 9jxlrFSiLCk,1987.0,7,10,2016,Superman IV,Nuclear Man Weakens Superman,tt0094074 uQLeZO2Z1YQ,1987.0,9,10,2016,Superman IV,Moon Battle,tt0094074 0ezPVizHpY0,1987.0,8,10,2016,Superman IV,Where is the Woman?,tt0094074 lMilbGNSGtI,1987.0,5,10,2016,Superman IV,Superman & Clark Kent,tt0094074 f5mcMmE3RL8,1987.0,6,10,2016,Superman IV,Superman vs. Nuclear Man,tt0094074 -jiQdqoe1cU,1987.0,3,10,2016,Superman IV,"No Pain, No Gain",tt0094074 P-3Aca5nRn0,1987.0,1,10,2016,Superman IV,Lois & Superman,tt0094074 zWQIwJsqXrI,1987.0,2,10,2016,Superman IV,Eliminating Nuclear Weapons,tt0094074 2KLf6pNcizk,1987.0,4,10,2016,Superman IV,Nuclear Man,tt0094074 O9zWwhJYQNc,1983.0,7,10,2016,Superman III,Superman Reborn,tt0086393 fQ5sMUzf2bo,1983.0,6,10,2016,Superman III,Superman vs. Clark Kent,tt0086393 1UpUjmKJaso,1983.0,1,10,2016,Superman III,Making It Rain,tt0086393 5gf0f8WioTM,1983.0,2,10,2016,Superman III,Rescuing Ricky,tt0086393 rpZI9it2rJM,1983.0,3,10,2016,Superman III,Superman Is Bad!,tt0086393 xrggI-ISIQc,1983.0,4,10,2016,Superman III,Thank God for Superman,tt0086393 Ig5uMkprqEk,1983.0,5,10,2016,Superman III,Super Seduction,tt0086393 05GysooKs0g,1983.0,8,10,2016,Superman III,Superman: The Videogame,tt0086393 Dye66uJlLRc,1983.0,9,10,2016,Superman III,Superman vs. Supercomputer,tt0086393 pesYeCruSyI,2010.0,1,3,2016,Love and Other Drugs,You Have to Leave,tt0758752 LZDir3e680o,2010.0,3,3,2016,Love and Other Drugs,I Need You,tt0758752 p1aWpCsLn40,1983.0,10,10,2016,Superman III,Superman and Gus,tt0086393 ShwCEMe6wFs,2010.0,2,3,2016,Love and Other Drugs,I Have This Moment,tt0758752 5vZ-SYX-4oY,2009.0,3,3,2016,Crazy Heart,The Weary Kind,tt1263670 Z1sTQ3g7V-U,2009.0,2,3,2016,Crazy Heart,I'm Not Gonna Forget You,tt1263670 RX4-U2r4lS0,2009.0,1,3,2016,Crazy Heart,Fallin' and Flyin',tt1263670 HLi_w5rCH1I,2000.0,1,5,2016,Cast Away,The Plane Crash,tt0162222 zaQa4ttIyNo,2000.0,4,5,2016,Cast Away,"I'm Sorry, Wilson!",tt0162222 PKLVAeI7MU8,2000.0,5,5,2016,Cast Away,Who Knows What the Tide Could Bring?,tt0162222 5zXWLbr1LyY,2000.0,2,5,2016,Cast Away,I Made Fire!,tt0162222 mgh0nSkIy04,2000.0,3,5,2016,Cast Away,Never Again,tt0162222 U8x2PcmL4pg,1984.0,2,10,2016,Indiana Jones and the Temple of Doom,Raft Jump,tt0087469 8YzEce7XN_E,1984.0,1,10,2016,Indiana Jones and the Temple of Doom,Nightclub Brawl,tt0087469 KjdjDz8jhN4,1984.0,5,10,2016,Indiana Jones and the Temple of Doom,Ritual Heart Removal,tt0087469 wAZ6dSIMivk,1984.0,3,10,2016,Indiana Jones and the Temple of Doom,Chilled Monkey Brains,tt0087469 WQXqhk-8h7o,1984.0,4,10,2016,Indiana Jones and the Temple of Doom,Spikes and Bugs,tt0087469 7YYge4b8MBk,1984.0,6,10,2016,Indiana Jones and the Temple of Doom,Rock Crusher Fight,tt0087469 nPGxSotEa-c,1984.0,9,10,2016,Indiana Jones and the Temple of Doom,The Rope Bridge,tt0087469 5rkWzIzJiiA,1984.0,10,10,2016,Indiana Jones and the Temple of Doom,The Stones Are Mine!,tt0087469 DFa_oIuRDQ8,1984.0,8,10,2016,Indiana Jones and the Temple of Doom,Water! Water! Water!,tt0087469 hVGl1d8hRBI,1984.0,7,10,2016,Indiana Jones and the Temple of Doom,Mine Cart Chase,tt0087469 lH7EYLWHT4Q,1981.0,4,10,2016,Raiders of the Lost Ark,The Well of Souls,tt0082971 FRP0MBNoieY,1981.0,10,10,2016,Raiders of the Lost Ark,Top Secret,tt0082971 JGB0ZvO8J5k,1981.0,7,10,2016,Raiders of the Lost Ark,Taking the Ark,tt0082971 YcR9k8o4I0w,1981.0,9,10,2016,Raiders of the Lost Ark,Face Melting Power,tt0082971 CjCmtqPIRp4,1981.0,6,10,2016,Raiders of the Lost Ark,Truck Chase,tt0082971 SFzxuEm9MyM,1981.0,8,10,2016,Raiders of the Lost Ark,"It Not the Years, It's the Mileage",tt0082971 vdnA-ESWcPs,1981.0,3,10,2016,Raiders of the Lost Ark,Sword vs. Gun,tt0082971 jW1CeAVPhVg,1981.0,5,10,2016,Raiders of the Lost Ark,Nazi Mechanic Fight,tt0082971 c6XHLe94SJA,1981.0,1,10,2016,Raiders of the Lost Ark,The Boulder Chase,tt0082971 854Zlz5-vXQ,1981.0,2,10,2016,Raiders of the Lost Ark,Nepal Shootout,tt0082971 opt5yQqMIdc,2010.0,3,3,2016,Our Family Wedding,Goat on Viagra,tt1305583 Tggs6HJxghE,2010.0,1,3,2016,Our Family Wedding,"I'm Not Your Cuz, Vato!",tt1305583 lt3h5Ez9t4g,2010.0,2,3,2016,Our Family Wedding,Seating Arrangement Hell,tt1305583 mLl9jkYywZY,2010.0,2,5,2016,Percy Jackson & the Olympians,The Water Will Give You Power,tt0814255 wAE_PelhISM,2010.0,1,5,2016,Percy Jackson & the Olympians,The Minotaur Attacks,tt0814255 HPjZKKV37do,2010.0,3,5,2016,Percy Jackson & the Olympians,Medusa's Garden,tt0814255 9hoSF_oY8Jw,2010.0,4,5,2016,Percy Jackson & the Olympians,The Museum Hydra,tt0814255 tJBeQ9Ewo3o,2010.0,5,5,2016,Percy Jackson & the Olympians,Feed Them to the Souls,tt0814255 GltdSC_5Zzw,2008.0,3,5,2016,The Happening,Stay Ahead of the Wind,tt0949731 m9PEvezB8Nc,2008.0,2,5,2016,The Happening,My Firearm Is My Friend,tt0949731 uLtUl4pDmOs,2008.0,1,5,2016,The Happening,Mauled to Death,tt0949731 _WovFZ_MDW0,2008.0,5,5,2016,The Happening,The Infected Attack,tt0949731 5y4ZUMVTGcI,2008.0,4,5,2016,The Happening,Talking to Plants,tt0949731 NUdXYkBhHkQ,2008.0,2,3,2016,The Secret Life of Bees,Send the Bees Love,tt0416212 0OKdy3Hpzp8,2008.0,3,3,2016,The Secret Life of Bees,Touch Her Heart,tt0416212 5mL4wT8DEuU,2008.0,1,3,2016,The Secret Life of Bees,I'm Registering to Vote,tt0416212 _WWIiTlGyYQ,2003.0,1,5,2016,The League of Extraordinary Gentlemen,A Library of Bullets,tt0311429 _N1L7UsUeuo,2003.0,3,5,2016,The League of Extraordinary Gentlemen,It's Possible I Can't Die,tt0311429 gCFBkXA374Y,2003.0,4,5,2016,The League of Extraordinary Gentlemen,The Invisible Knife Fight,tt0311429 Z1RHhhCqpqs,2003.0,2,5,2016,The League of Extraordinary Gentlemen,Save Your Bullets!,tt0311429 l1SZ4ccagFQ,2003.0,5,5,2016,The League of Extraordinary Gentlemen,Me on a Bad Day,tt0311429 Go6CJ0JVOUc,1962.0,2,3,2016,The Longest Day,The British Invasion,tt0056197 ZFuV5x1drXU,1962.0,3,3,2016,The Longest Day,The Assault on Pointe du Hoc,tt0056197 elwNOiCaRIs,1962.0,1,3,2016,The Longest Day,Parachuting Fiasco,tt0056197 Jq19-ZzDlc4,2013.0,3,10,2016,"Cinco de Mayo, La Batalla",We Die for Our Homeland,tt2553908 I6uZjdjkRVg,2013.0,1,10,2016,"Cinco de Mayo, La Batalla",We Will March Over Mexico,tt2553908 LurparxqlNI,2013.0,4,10,2016,"Cinco de Mayo, La Batalla",Taken Captive,tt2553908 u0c_2Mk4rJA,2013.0,2,10,2016,"Cinco de Mayo, La Batalla",Facing War,tt2553908 ctU1dN0Js1M,2013.0,7,10,2016,"Cinco de Mayo, La Batalla",The Start of the Battle,tt2553908 N2IfyUBU9_M,2013.0,5,10,2016,"Cinco de Mayo, La Batalla",Flor De Mis Labios,tt2553908 t75KclV8x0U,2013.0,8,10,2016,"Cinco de Mayo, La Batalla",Surprise Attack,tt2553908 9sSXNopytKQ,2013.0,6,10,2016,"Cinco de Mayo, La Batalla",Viva Mexico Libre!,tt2553908 UCgvftiw0t0,2013.0,9,10,2016,"Cinco de Mayo, La Batalla",The Mexican Rally,tt2553908 tX6-gQGKm40,2013.0,10,10,2016,"Cinco de Mayo, La Batalla",Retreat!,tt2553908 ETchiCkaaYE,2013.0,3,3,2016,Epic,No Kisses!,tt0848537 sT7nVSNlpTE,2013.0,2,3,2016,Epic,Mouse Attack,tt0848537 Jz7ZWKumqfQ,2013.0,1,3,2016,Epic,War for the Forest,tt0848537 x03pWg-naqg,2011.0,1,3,2016,We Bought a Zoo,The Escaped Bear,tt1389137 WFGyCzl7_zE,2011.0,2,3,2016,We Bought a Zoo,Yelling Down the Tiger,tt1389137 aaaIdkgVahY,2011.0,3,3,2016,We Bought a Zoo,I've Got a Big Crush on You,tt1389137 yTNjsgJ1wwc,2011.0,5,5,2016,The Descendants,I Have to Forgive You!,tt1033575 5ke6m-Y8DHE,2011.0,3,5,2016,The Descendants,You're Still Messing Up My Life,tt1033575 EjWWHD7bN3A,2011.0,4,5,2016,The Descendants,It Was Just an Affair,tt1033575 6n99ZpSgKg4,2011.0,2,5,2016,The Descendants,Does She Love Him?,tt1033575 nna-IuI5SDk,2010.0,5,5,2016,Date Night,Worst Striptease Ever,tt1279935 dXqs6yH3KF8,2011.0,1,5,2016,The Descendants,Mom Was Cheating on You,tt1033575 tDW4X-r1dQI,2010.0,4,5,2016,Date Night,Your Plans Are the Worst,tt1279935 5TSXq6wBPVM,2010.0,3,5,2016,Date Night,I Know What I'm Doing,tt1279935 8s2lUiTRbpU,2010.0,2,5,2016,Date Night,Forget About the Anal!,tt1279935 QYLjbRd1_DE,2010.0,1,5,2016,Date Night,You Two Make Sex With Us?,tt1279935 8Dw3DomVuwI,2008.0,3,3,2016,What Happens in Vegas,Our First Dance,tt1033643 GjZ2eEcUTrE,2008.0,2,3,2016,What Happens in Vegas,I Like Breasts,tt1033643 TmdzJyoeQls,2008.0,1,3,2016,What Happens in Vegas,Wedding Counseling,tt1033643 xMJFie7JfbY,2010.0,5,5,2016,The A-Team,Skyscraper Assault,tt0429493 rTBkVOYzVZA,2010.0,4,5,2016,The A-Team,"You Can't Fly a Tank, Fool!",tt0429493 IhdEKY1b0tk,2010.0,3,5,2016,The A-Team,The Great Escape in 3D,tt0429493 6FqUyxVD4qc,2010.0,2,5,2016,The A-Team,I Love It When a Plan Comes Together!,tt0429493 _ia3xfBh5Pc,2010.0,1,5,2016,The A-Team,Alpha Mike Foxtrot,tt0429493 iKzLZIbUM8o,2014.0,10,10,2016,Leprechaun: Origins,"F*** You, Lucky Charms!",tt2345613 zkRC3GX5BEQ,2014.0,9,10,2016,Leprechaun: Origins,Truck Attack,tt2345613 JTgbdnNC5ZE,2014.0,8,10,2016,Leprechaun: Origins,Run!,tt2345613 x22ZX9dGaKk,2014.0,6,10,2016,Leprechaun: Origins,The Trap,tt2345613 6VdHec3IAn8,2014.0,4,10,2016,Leprechaun: Origins,Little Murderer,tt2345613 d3GeSiD2HIs,2014.0,5,10,2016,Leprechaun: Origins,A Sacrifice,tt2345613 SVZubVb2L8U,2014.0,7,10,2016,Leprechaun: Origins,Spine Ripper,tt2345613 s1s6SqHLUQA,2014.0,3,10,2016,Leprechaun: Origins,"Big Injury, Small Chance",tt2345613 OOgShYNNtn4,2014.0,1,10,2016,Leprechaun: Origins,Glimpse of the Creature,tt2345613 WajS0jEmEG0,2014.0,2,10,2016,Leprechaun: Origins,Leprechaun Attack,tt2345613 4oJlFH_1q3Q,2012.0,7,8,2016,The Bourne Legacy,Motorcycle Chase,tt1194173 mBUdGRqiIR4,2012.0,6,8,2016,The Bourne Legacy,The Rescue,tt1194173 8QYlXDYOhM0,2012.0,8,8,2016,The Bourne Legacy,From a Chase to a Crash,tt1194173 RvClpuFmfm0,2012.0,2,8,2016,The Bourne Legacy,Drone Attack,tt1194173 EBSjabRNztY,2012.0,5,8,2016,The Bourne Legacy,We Got to Go,tt1194173 eWirsPiHnA0,2012.0,3,8,2016,The Bourne Legacy,Laboratory Massacre,tt1194173 ThbFbz_0qhc,2012.0,4,8,2016,The Bourne Legacy,"Save Marta, Kill Everyone Else",tt1194173 CrYqMX-T7G8,2012.0,1,8,2016,The Bourne Legacy,We're Done Talking,tt1194173 Oozc5zchP98,2013.0,10,10,2016,Star Trek Into Darkness,Spock vs. Khan,tt1408101 AQkLWa6J3dM,2013.0,9,10,2016,Star Trek Into Darkness,Crashing the Vengeance,tt1408101 JFwhPbsr5RU,2013.0,7,10,2016,Star Trek Into Darkness,The Most Dangerous Adversary,tt1408101 OvdQYzRHlO0,2013.0,5,10,2016,Star Trek Into Darkness,My Name is Khan,tt1408101 tYf5ENc39dQ,2013.0,8,10,2016,Star Trek Into Darkness,Because You Are My Friend,tt1408101 qcVr2eztQEk,2013.0,6,10,2016,Star Trek Into Darkness,Welcome Aboard,tt1408101 w6zGX2qpxzU,2013.0,4,10,2016,Star Trek Into Darkness,Carol is Revealed,tt1408101 TwQ1KE0CRrI,2013.0,3,10,2016,Star Trek Into Darkness,Klingon Shootout,tt1408101 XDI3snWDWuo,2013.0,1,10,2016,Star Trek Into Darkness,Violating the Prime Directive,tt1408101 41T9HTzQ92w,2013.0,2,10,2016,Star Trek Into Darkness,Attack on Starfleet Headquarters,tt1408101 iQ-P3eRhpKI,1982.0,8,8,2016,Amityville II: The Possession,The Exorcism,tt0083550 PSvMn5gSLWs,1982.0,7,8,2016,Amityville II: The Possession,The Murders,tt0083550 ZSrz2g2kmb4,1982.0,2,8,2016,Amityville II: The Possession,Dishonor Thy Father,tt0083550 pQOcRJKuXd0,1982.0,6,8,2016,Amityville II: The Possession,Guilt Manifested,tt0083550 J9aEPBqeLr8,1982.0,5,8,2016,Amityville II: The Possession,Blessing the House,tt0083550 DWyzPO2x67E,1982.0,1,8,2016,Amityville II: The Possession,The Extra Room,tt0083550 lq13hsPI-yY,1982.0,3,8,2016,Amityville II: The Possession,Demonic Disturbances,tt0083550 r7ApEmhlxro,1982.0,4,8,2016,Amityville II: The Possession,The Possession,tt0083550 iJHyw2pjpWA,2015.0,10,10,2016,Minions,The New Boss,tt2293640 ax3ZNv5jqQY,2015.0,9,10,2016,Minions,Kevin Saves the Day,tt2293640 h-Ss_FvzZcs,2015.0,5,10,2016,Minions,Kidnapping the Queen,tt2293640 1TGWdRK-Ykk,2015.0,8,10,2016,Minions,The Ultimate Weapon,tt2293640 7booh4V0jaA,2015.0,6,10,2016,Minions,King Bob!,tt2293640 zGdF6OXr6t0,2015.0,2,10,2016,Minions,One Evil Family,tt2293640 EB74RP-oZqE,2015.0,7,10,2016,Minions,This is Torture,tt2293640 -1U0LH6dPfw,2015.0,3,10,2016,Minions,Knights in Shining Denim,tt2293640 m0XrO4YJyeI,2015.0,4,10,2016,Minions,Breaking into the Castle,tt2293640 Ei5IEWld1xw,2015.0,1,10,2016,Minions,Many Evil Bosses,tt2293640 L5SM0HY5-vw,2014.0,10,10,2016,John Wick,Just You and Me,tt2911666 77X1yGjjHvQ,2014.0,3,10,2016,John Wick,Bath House Bloodshed,tt2911666 XURWRujGTNk,2014.0,9,10,2016,John Wick,Good Luck,tt2911666 yu3iX6zxbm0,2014.0,4,10,2016,John Wick,Club Rampage,tt2911666 NYo4WkYNLn4,2014.0,7,10,2016,John Wick,Where Is He?,tt2911666 tM47HMT8GGE,2014.0,8,10,2016,John Wick,John Gets Revenge,tt2911666 Y0LuDSiX63M,2014.0,5,10,2016,John Wick,Ms. Perkins Attacks,tt2911666 51t2_o_H_Rw,2014.0,6,10,2016,John Wick,I'm Back,tt2911666 4S8_1PIolnY,2014.0,2,10,2016,John Wick,Noise Complaint,tt2911666 CdHKXmEn4l8,2014.0,1,10,2016,John Wick,The Break-In,tt2911666 TU00uzqJGKw,2013.0,9,10,2016,The Quiet Ones,Telekinetic Rage,tt2235779 tpzp6-BkkIU,2013.0,8,10,2016,The Quiet Ones,Hot Water,tt2235779 DDClFYXZmtM,2013.0,6,10,2016,The Quiet Ones,The Torments of Men,tt2235779 kymk0SPNe7c,2013.0,7,10,2016,The Quiet Ones,The Seance,tt2235779 vSa0UepuyTo,2013.0,5,10,2016,The Quiet Ones,Take Your Hand out of His Trousers,tt2235779 9xEXh16KupI,2013.0,4,10,2016,The Quiet Ones,Captive Love,tt2235779 oE_FGufcMpI,2013.0,10,10,2016,The Quiet Ones,Evil Remains,tt2235779 7xMhKadE7gU,2013.0,3,10,2016,The Quiet Ones,Go Down Into the Darkness,tt2235779 atNVzztHoUc,2013.0,2,10,2016,The Quiet Ones,"Come Out, Evey",tt2235779 Q1ACWidWmjo,2013.0,1,10,2016,The Quiet Ones,Thank You,tt2235779 bfgRDarWFnk,2013.0,9,10,2016,As I Lay Dying,Darl's Arrest,tt1807944 CsOFvj63I2c,2013.0,6,10,2016,As I Lay Dying,Sold the Horse,tt1807944 918j6y6IMY8,2013.0,4,10,2016,As I Lay Dying,Fording the River,tt1807944 5azSB3B9dgU,2013.0,5,10,2016,As I Lay Dying,Sin,tt1807944 Ew9wk3EGlJc,2013.0,8,10,2016,As I Lay Dying,He's Crazy,tt1807944 -zD7CZtUNbA,2013.0,3,10,2016,As I Lay Dying,She's Gone,tt1807944 MiBcK87oWBU,2013.0,7,10,2016,As I Lay Dying,Fire,tt1807944 ISeGBx2JvGs,2013.0,2,10,2016,As I Lay Dying,The Lord Giveth,tt1807944 MH7EgG6Y5kc,2013.0,1,10,2016,As I Lay Dying,Leaving to Work,tt1807944 H08d5DSdT6U,2013.0,10,10,2016,As I Lay Dying,Losing a Leg,tt1807944 KNh81oYmq7A,2012.0,8,12,2016,Thanks for Sharing,Free Dance,tt1932718 qI-CTJnYdBs,2012.0,4,12,2016,Thanks for Sharing,Phoebe Finds Out,tt1932718 0dbyPr97N48,2012.0,5,12,2016,Thanks for Sharing,Neil Helps Dede,tt1932718 lKU5GNOEj3Q,2012.0,9,12,2016,Thanks for Sharing,I Don't Think I Can Do This,tt1932718 mryo27tUcJE,2012.0,7,12,2016,Thanks for Sharing,Taking It Slow,tt1932718 Yxa48jQBfLc,2012.0,6,12,2016,Thanks for Sharing,What's Your Trigger?,tt1932718 QNCuoEO3jFY,2012.0,9,12,2016,Mud,Rescues Ellis,tt1935179 WFhKV35sbCE,2012.0,2,12,2016,Thanks for Sharing,Dede's Story,tt1932718 PZrRQrPE-Y0,2012.0,3,12,2016,Thanks for Sharing,They Are Fake,tt1932718 g7pwgA-oyYY,2012.0,1,12,2016,Thanks for Sharing,Bug Party,tt1932718 JhTVkpj8g_o,2012.0,12,12,2016,Thanks for Sharing,What Will You Do When the War is Over?,tt1932718 Ht6uQH8qIf0,2012.0,4,12,2016,Mud,You Can Call Me,tt1935179 Z4zy9tTPl2c,2012.0,10,12,2016,Thanks for Sharing,Porn Collection,tt1932718 4dVIxwhMYL8,2012.0,11,12,2016,Thanks for Sharing,I'm Sorry,tt1932718 gNT4N5W81Hc,2012.0,6,12,2016,Mud,I Shot a Man,tt1935179 YlF1gLpUZp8,2012.0,8,12,2016,Mud,I Trusted You!,tt1935179 zz0w0KDwhWg,2012.0,1,12,2016,Mud,There It Is,tt1935179 xMuWufwEZiA,2012.0,7,12,2016,Mud,Where is He?,tt1935179 wyzpqpXHcSE,2012.0,3,12,2016,Mud,I Reckon We Can Make a Deal,tt1935179 7FGCTdYcdIM,2012.0,5,12,2016,Mud,A Talk by the Fire,tt1935179 yKhHoh_H350,2012.0,12,12,2016,Mud,Mouth of the River,tt1935179 1hag3avWVXs,2012.0,2,12,2016,Mud,The Mysterious Stranger,tt1935179 KsmXgmhjUic,2013.0,8,10,2016,Europa Report,Crash Landing,tt2051879 ZmOUutOuqn8,2013.0,7,10,2016,Europa Report,Proceed with Caution,tt2051879 6lRIgVCdLP4,2012.0,11,12,2016,Mud,Shootout on the River,tt1935179 OnExOgppDJc,2013.0,9,10,2016,Europa Report,Alien Life,tt2051879 CWBwJk1f-gs,2012.0,10,12,2016,Mud,Farewell,tt1935179 3uzjEETq9oM,2013.0,6,10,2016,Europa Report,The Discovery,tt2051879 583Eukgz0QQ,2013.0,1,10,2016,Europa Report,Landing on Europa,tt2051879 ctsrpWvUQB4,2013.0,4,10,2016,Europa Report,Hydrazine,tt2051879 Iwye0A9pCVk,2013.0,5,10,2016,Europa Report,I'm Gone,tt2051879 TzpamJ6GsFw,2013.0,2,10,2016,Europa Report,I Saw Something,tt2051879 S6Ze8IndlBo,2013.0,3,10,2016,Europa Report,Lights in the Deep,tt2051879 ZAtw0w5b_1o,2013.0,10,10,2016,Europa Report,What Greater Success,tt2051879 _o490P6zeZ4,2008.0,9,12,2016,Man on Wire,Once in a Lifetime,tt1155592 G_r06v8SswA,2008.0,4,12,2016,Man on Wire,Nothing is Impossible,tt1155592 q1QELI37duI,2008.0,8,12,2016,Man on Wire,Walking on a Cloud,tt1155592 zU9rHffZVBE,2008.0,7,12,2016,Man on Wire,Anchored on the Wire,tt1155592 5Q8BbiDiI5c,2008.0,2,12,2016,Man on Wire,Two Mischievous Kids,tt1155592 jJohoC479no,2008.0,6,12,2016,Man on Wire,Hide and Seek,tt1155592 HJCm9e0Q2Yc,2008.0,5,12,2016,Man on Wire,Ageless Mask of Concentration,tt1155592 5kvHTPJfo7o,2008.0,3,12,2016,Man on Wire,A Beautiful Death,tt1155592 uBAd6Nfv3uE,2015.0,8,10,2016,Straight Outta Compton,Madness in Detroit,tt1398426 ZCMwz1K-Cso,2008.0,12,12,2016,Man on Wire,Live Your Life on a Tightrope,tt1155592 Io1xroeJoBM,2008.0,1,12,2016,Man on Wire,Once Upon a Time,tt1155592 euCE7LJZxvE,2008.0,10,12,2016,Man on Wire,We Were Stars,tt1155592 1WA_d9qBf4E,2015.0,3,10,2016,Straight Outta Compton,Cruisin' Down the Street in My 64,tt1398426 6s_lBln0kzg,2008.0,11,12,2016,Man on Wire,A New Life,tt1155592 VBYiVoNwzQo,2015.0,5,10,2016,Straight Outta Compton,Police Harassment,tt1398426 dyCbGaYPSIY,2015.0,4,10,2016,Straight Outta Compton,N.W.A. Plays Dopeman,tt1398426 UStNNBG5K0Y,2015.0,9,10,2016,Straight Outta Compton,Cube's Diss Track,tt1398426 LGmthB51XUc,2015.0,6,10,2016,Straight Outta Compton,F*** Tha Police,tt1398426 dIv1kqivuZc,2014.0,8,10,2016,The Purge: Anarchy,We're Here to Help,tt2975578 4KFtwqYA_kE,2015.0,2,10,2016,Straight Outta Compton,Gangsta Gangsta,tt1398426 YDh2u5hneLE,2015.0,7,10,2016,Straight Outta Compton,Always Going to Be Brothers,tt1398426 PnjkPSAncPc,2015.0,1,10,2016,Straight Outta Compton,Raid on the Dope House,tt1398426 aY6ZwMZqaBk,2015.0,10,10,2016,Straight Outta Compton,Eazy-E Has HIV,tt1398426 0x6usdVsGbI,2014.0,9,10,2016,The Purge: Anarchy,Sergeant's Revenge,tt2975578 OlAEXT0Hg70,2014.0,6,10,2016,The Purge: Anarchy,We're Being Hunted,tt2975578 moH3FSt88FY,2014.0,7,10,2016,The Purge: Anarchy,There's a Whole Army,tt2975578 edBNDiSwnlg,2014.0,3,10,2016,The Purge: Anarchy,Sergeant Stops a Purge,tt2975578 BOo2x6MlAtI,2014.0,4,10,2016,The Purge: Anarchy,It's a Trap!,tt2975578 4a3OH0EcieY,2014.0,5,10,2016,The Purge: Anarchy,Cheaters Deserve to Die,tt2975578 dsTyKFkGPuM,2014.0,1,10,2016,The Purge: Anarchy,The Face of God,tt2975578 kYHCKF2WLA8,2014.0,2,10,2016,The Purge: Anarchy,Commencement,tt2975578 7fkatAePOnI,2014.0,10,10,2016,The Purge: Anarchy,We Can't Have Heroes,tt2975578 KxRDIx23Xmg,2013.0,11,11,2016,Crush,Go Bess!,tt2093977 IvwJ-KwPATw,2013.0,9,11,2016,Crush,I Trust You,tt2093977 YBrFMKQOqDc,2013.0,10,11,2016,Crush,Draw Me Like You Drew Her,tt2093977 jla2i4bOfjg,2013.0,7,11,2016,Crush,Sometimes I Just Can't Help Myself,tt2093977 MzFCoTidaDI,2013.0,6,11,2016,Crush,Sexual Rivals,tt2093977 19KoXOFVCCM,2013.0,5,11,2016,Crush,Give Me a Call,tt2093977 ietWI5HT_nA,2013.0,8,11,2016,Crush,Smothered,tt2093977 sOxAN1jqfpQ,2013.0,2,11,2016,Crush,Kissing Jules,tt2093977 gQ2HC6eotDg,2013.0,4,11,2016,Crush,Stalker in the House,tt2093977 aLVjmX-ottU,2013.0,3,11,2016,Crush,Seducing Scott,tt2093977 o3f8UMtGyoA,2013.0,1,11,2016,Crush,You Kissed the Wrong Girl,tt2093977 ZV7UY6RYG6M,2013.0,10,10,2016,Charlie Countryman,For Love,tt1196948 O0Q3TOvvZNY,2013.0,8,10,2016,Charlie Countryman,The Tape,tt1196948 ElXKzY-3DoU,2013.0,7,10,2016,Charlie Countryman,I Loved Him,tt1196948 WoACzZ_FUzs,2013.0,9,10,2016,Charlie Countryman,Run Away,tt1196948 W_Aq6Mu-bQU,2013.0,4,10,2016,Charlie Countryman,Nigel Was My Husband,tt1196948 F0tBvKtpT-I,2013.0,5,10,2016,Charlie Countryman,Us,tt1196948 pLKhG9v_0fk,2013.0,6,10,2016,Charlie Countryman,Viagra Emergency,tt1196948 PbnhCazvuts,2013.0,3,10,2016,Charlie Countryman,Meeting Gabi,tt1196948 rk0WkrT6L1k,2013.0,1,10,2016,Charlie Countryman,Losing Mom,tt1196948 0WwbRHBAg9w,2013.0,2,10,2016,Charlie Countryman,This is a Dead Man,tt1196948 lZ4ouD3RVKU,1953.0,10,10,2016,The Naked Spur,I'm Taking Him Back,tt0044953 RQlXH-KzlXg,1953.0,9,10,2016,The Naked Spur,River Showdown,tt0044953 GzsGxfcPyTI,1953.0,8,10,2016,The Naked Spur,Sack of Money,tt0044953 TH0d-3NnNUM,1953.0,7,10,2016,The Naked Spur,Kill Him,tt0044953 BKER7E61cvs,1953.0,6,10,2016,The Naked Spur,You Know What I'm Asking,tt0044953 qgv_7j1_CdA,1953.0,5,10,2016,The Naked Spur,The High Pass,tt0044953 7rVMT0xklto,1953.0,4,10,2016,The Naked Spur,You're Different,tt0044953 nQBrfPjwAfQ,1953.0,3,10,2016,The Naked Spur,Not Our Business,tt0044953 5p9BA72SfkY,1953.0,2,10,2016,The Naked Spur,Blackfeet Battle,tt0044953 OA1pcNFRhXY,1953.0,1,10,2016,The Naked Spur,A Couple Partners,tt0044953 SFy70juGAHo,1998.0,10,12,2016,Dirty Work,"Broken, Spiritless Homeless Guys",tt0120654 ROy7gCg3hJE,1998.0,11,12,2016,Dirty Work,Fighting Back,tt0120654 9z5YYwpysWs,1998.0,12,12,2016,Dirty Work,Release the Skunks!,tt0120654 Sczun-f_Uiw,1998.0,8,12,2016,Dirty Work,Ridiculous!,tt0120654 OG9EDE_bnws,1998.0,7,12,2016,Dirty Work,Smells Like Fish,tt0120654 Sqj803KC3T4,1998.0,9,12,2016,Dirty Work,Mitch Likes Kathy,tt0120654 nOkJXxd0cNg,1998.0,6,12,2016,Dirty Work,The Bearded Lady,tt0120654 oD-1eCD7lkE,1998.0,4,12,2016,Dirty Work,Screwing Over Hamilton,tt0120654 BlWpx55Mo5s,1998.0,5,12,2016,Dirty Work,A Whole Lotta Dead Hookers,tt0120654 qWEaCJlKZXs,1998.0,1,12,2016,Dirty Work,Don't Take No Crap From Nobody,tt0120654 F-gTRiA6Ncs,1998.0,2,12,2016,Dirty Work,Mitch Loses His Shirt,tt0120654 4tehW9FH9aw,1998.0,3,12,2016,Dirty Work,Hallucinogenic Brownies,tt0120654 E5KigabenVg,1948.0,10,10,2016,They Live by Night,Bowie the Kid,tt0040872 J3Uq3-vH_I0,2014.0,1,12,2016,The Angriest Man in Brooklyn,Things He Hated,tt1294970 9kcwYNK9cp8,2013.0,8,11,2016,Ninja: Shadow of a Tear,One-Man Ambush,tt2458106 wi1iG6DIFOA,2014.0,12,12,2016,The Angriest Man in Brooklyn,How to Be Happy,tt1294970 izRUBt3oeMw,2014.0,11,12,2016,The Angriest Man in Brooklyn,Father and Son Reunited,tt1294970 tIZfD-LANtA,2014.0,10,12,2016,The Angriest Man in Brooklyn,Punch It,tt1294970 qZD-BA_Cxus,2014.0,9,12,2016,The Angriest Man in Brooklyn,You In My Cab,tt1294970 sW1_A07itgQ,2014.0,8,12,2016,The Angriest Man in Brooklyn,A Second Chance,tt1294970 9fs03_cdppQ,2014.0,7,12,2016,The Angriest Man in Brooklyn,The Brooklyn Bridge,tt1294970 jqvMzCLAE0g,2014.0,5,12,2016,The Angriest Man in Brooklyn,I Need a Camcorder,tt1294970 uZC4v8_fApA,2014.0,6,12,2016,The Angriest Man in Brooklyn,Anger is My Birthright,tt1294970 NP5PcpEDjS0,2014.0,4,12,2016,The Angriest Man in Brooklyn,We Need to Have Sex Now,tt1294970 ewvkTkHfJqQ,2014.0,3,12,2016,The Angriest Man in Brooklyn,Reconciliation in 90 Minutes,tt1294970 OrxsZHRGxRc,2014.0,2,12,2016,The Angriest Man in Brooklyn,You Got 90 Minutes,tt1294970 0GBAUGvKy2A,2013.0,9,11,2016,Ninja: Shadow of a Tear,Fight to the Death,tt2458106 6UY9MtqSMgs,2013.0,10,11,2016,Ninja: Shadow of a Tear,Killing Goro,tt2458106 QvUl28vA8oM,2013.0,11,11,2016,Ninja: Shadow of a Tear,The True Enemy,tt2458106 YcT_oPYKOw4,2013.0,6,11,2016,Ninja: Shadow of a Tear,Deadly Premonitions,tt2458106 2nrHffYUXqQ,2013.0,5,11,2016,Ninja: Shadow of a Tear,Barfight,tt2458106 gnfJ4wcpQsk,2013.0,4,11,2016,Ninja: Shadow of a Tear,Sparring Meltdown,tt2458106 LX4AIei6zUw,2013.0,3,11,2016,Ninja: Shadow of a Tear,Avenging Namiko,tt2458106 ygNoJlu743w,2013.0,1,11,2016,Ninja: Shadow of a Tear,The Alley Fight,tt2458106 VMkhYJEjv7I,2013.0,7,11,2016,Ninja: Shadow of a Tear,Fighting Stoned,tt2458106 gMODOv68SGE,2013.0,2,11,2016,Ninja: Shadow of a Tear,I Have a Long Memory,tt2458106 iFKyzbCLQQA,1948.0,9,10,2016,They Live by Night,"Merry Christmas, Baby",tt0040872 4J0fchFqprw,1948.0,6,10,2016,They Live by Night,Bank Robbery,tt0040872 e8mmLcViaGI,1948.0,7,10,2016,They Live by Night,A $20 Wedding,tt0040872 tRwyOQw5zcw,1948.0,8,10,2016,They Live by Night,Just Married,tt0040872 --oCWVOBuvA,1948.0,4,10,2016,They Live by Night,In So Deep,tt0040872 f8a97iauRtw,1948.0,2,10,2016,They Live by Night,Thieves Like Us,tt0040872 f6m4J0AfEOo,1948.0,1,10,2016,They Live by Night,Prison Break,tt0040872 0REROw4SOGc,1948.0,3,10,2016,They Live by Night,We Move Fast,tt0040872 CK3cE7N1pzU,1948.0,5,10,2016,They Live by Night,A One-Eyed Lush,tt0040872 Xpy157qTtng,1981.0,10,13,2016,Enter the Ninja,An Agent of Death Scene,tt0082332 XWxNXRPHQIQ,1981.0,13,13,2016,Enter the Ninja,Die With Honor Scene,tt0082332 cRoIsrSzapo,1981.0,12,13,2016,Enter the Ninja,Death by Shuriken Scene,tt0082332 ZrKUk6S3XSc,1981.0,11,13,2016,Enter the Ninja,Cole's Killing Spree Scene,tt0082332 Xm5eKjy5MTg,1981.0,7,13,2016,Enter the Ninja,Coming Unhooked Scene,tt0082332 FARHf9b8zyk,1981.0,8,13,2016,Enter the Ninja,My Friend Doesn't Like Guns Scene,tt0082332 BXq-jB4MZdU,1981.0,9,13,2016,Enter the Ninja,A Ninja Demo Scene,tt0082332 eYx5m_iT-1U,1981.0,6,13,2016,Enter the Ninja,Being Deadly in a Dive Bar Scene,tt0082332 G_1jQkCRF58,1981.0,4,13,2016,Enter the Ninja,Seeing an Old Friend Scene,tt0082332 pKjMt3cBv6g,1981.0,5,13,2016,Enter the Ninja,Cole Protects Mary Ann Scene,tt0082332 wu-RfHKCK7Y,1981.0,2,13,2016,Enter the Ninja,Cole Conquers All Scene,tt0082332 -IIHYIZSFbk,1981.0,3,13,2016,Enter the Ninja,9 Levels of Power Scene,tt0082332 4RsVOfPT_is,1981.0,1,13,2016,Enter the Ninja,The White Shinobi Scene,tt0082332 jOLLiuCk420,2014.0,10,10,2016,Unbroken,War Is Over,tt1809398 a2_9fQ0U57w,2014.0,5,10,2016,Unbroken,Am I Gonna Die?,tt1809398 XrBTDbxOZE8,2014.0,9,10,2016,Unbroken,Don't Look at Me!,tt1809398 I6f8bYDvpKY,2014.0,6,10,2016,Unbroken,The Olympic Athlete,tt1809398 qhgkpZecrTY,2014.0,7,10,2016,Unbroken,Hello Mother and Father,tt1809398 7ru6HnpJJP4,2014.0,8,10,2016,Unbroken,Punch Him in the Face,tt1809398 1l1qpOrjsi4,2014.0,1,10,2016,Unbroken,An Olympic Record,tt1809398 gpgsfivrruk,2014.0,3,10,2016,Unbroken,A Storm and a Prayer,tt1809398 xSvW3Gxd-h0,2014.0,4,10,2016,Unbroken,"Bullets Above, Sharks Below",tt1809398 QU677HiXf6M,2014.0,2,10,2016,Unbroken,Plane Crash at Sea,tt1809398 lQ2RStfZii0,2010.0,10,10,2016,MacGruber,Defeating Cunth,tt1470023 KTugpKzfZJk,2010.0,7,10,2016,MacGruber,Human Shield,tt1470023 nrqg6wxuqFo,2010.0,8,10,2016,MacGruber,I Like Holes,tt1470023 iJiQsEZXz_8,2010.0,9,10,2016,MacGruber,Love Scene,tt1470023 0WoyXBXCqdg,2010.0,6,10,2016,MacGruber,Meets Cunth,tt1470023 9FKgmafi1p8,2010.0,4,10,2016,MacGruber,Vicki Under Cover,tt1470023 jWHcIO4y8kk,2010.0,5,10,2016,MacGruber,Winging It,tt1470023 ZHCd8doza2M,2010.0,3,10,2016,MacGruber,Will Do Anything,tt1470023 0kgLLa9gnsU,2010.0,2,10,2016,MacGruber,Quite a Team,tt1470023 zFbHwupcqpQ,2010.0,1,10,2016,MacGruber,The Legendary,tt1470023 vapcFQlS6Qo,2008.0,12,12,2016,Let the Right One In,The Swimming Pool,tt1139797 bdJt1Mggjl4,2008.0,9,12,2016,Let the Right One In,Open the Shutters,tt1139797 BUrDm2GmJ5I,2008.0,11,12,2016,Let the Right One In,The Bathtub,tt1139797 AcJq5nGwm4U,2008.0,6,12,2016,Let the Right One In,Oskar Fights Back,tt1139797 JLTtgzY_7-Y,2008.0,10,12,2016,Let the Right One In,Invite Me In,tt1139797 6i0sEgnPLms,2008.0,7,12,2016,Let the Right One In,Vampire Attack,tt1139797 lmqQPyNsXpU,2008.0,8,12,2016,Let the Right One In,Killer Cats,tt1139797 J9z4myiIVww,2008.0,4,12,2016,Let the Right One In,The Hospital,tt1139797 w-_BMZo7mik,2008.0,5,12,2016,Let the Right One In,Going Steady,tt1139797 GYJ-Z5o9gUM,2008.0,3,12,2016,Let the Right One In,Do You Like Me?,tt1139797 u31Fyx8g5ZY,2008.0,2,12,2016,Let the Right One In,Rubik's Cube,tt1139797 hiO38yFF-Q8,2008.0,1,12,2016,Let the Right One In,Under the Bridge,tt1139797 XFTJJtOtFtI,2005.0,11,11,2016,Into the Blue,Shark Saves the Day,tt0378109 8hGqSM0OV9U,2005.0,9,11,2016,Into the Blue,One Down,tt0378109 KpM_NyYKwkE,2005.0,8,11,2016,Into the Blue,Cocaine Overboard,tt0378109 PzL7MICU_OI,2005.0,10,11,2016,Into the Blue,Sam and Jared Keep Up the Good Fight,tt0378109 93njceSaOMM,2005.0,6,11,2016,Into the Blue,Jared Is a Madman,tt0378109 k-RHqxyYzMo,2005.0,7,11,2016,Into the Blue,Jared's Secret Hiding Spot,tt0378109 UeCpUca9VUs,2005.0,4,11,2016,Into the Blue,Sic Semper Tyrannis,tt0378109 gHQV6AMclGA,2005.0,5,11,2016,Into the Blue,What's Missing in Your Life?,tt0378109 -qijwXk_bnk,2005.0,1,11,2016,Into the Blue,Jared's Discovery,tt0378109 x2CizSzk9s4,2005.0,3,11,2016,Into the Blue,Cocaine Palace,tt0378109 WquPun-ky2Y,2005.0,2,11,2016,Into the Blue,A Giant Stash,tt0378109 _msjEt4-jZc,2015.0,4,10,2016,Fifty Shades of Grey,What Is It About Elevators?,tt2322441 JWLd18_ViOM,2015.0,10,10,2016,Fifty Shades of Grey,You Can't Love Me,tt2322441 HOrCBUADkMM,2015.0,7,10,2016,Fifty Shades of Grey,The Contract,tt2322441 VkJAnikGNCQ,2015.0,9,10,2016,Fifty Shades of Grey,Punish Me,tt2322441 xJOME7D6-ow,2015.0,8,10,2016,Fifty Shades of Grey,Let Me Touch You,tt2322441 SeiltyhdQGg,2015.0,3,10,2016,Fifty Shades of Grey,Enlighten Me,tt2322441 RMRJQL65AqA,2015.0,5,10,2016,Fifty Shades of Grey,Helicopter Ride,tt2322441 IWjPXaM20kY,2015.0,6,10,2016,Fifty Shades of Grey,The Play Room,tt2322441 XFK5SV1-Pzg,2015.0,1,10,2016,Fifty Shades of Grey,A Little Curious,tt2322441 X8YOtEocd6I,2015.0,2,10,2016,Fifty Shades of Grey,"Rope, Tape and Cable Ties",tt2322441 ICPNrxD783c,2011.0,4,5,2016,The Tree of Life,I'm More Like You Than Her,tt0478304 1PoAz1WNBdM,2011.0,3,5,2016,The Tree of Life,Put Your Finger Over It,tt0478304 wsIybRQaDE4,2011.0,5,5,2016,The Tree of Life,"The Family, United",tt0478304 D4TfTzW8GVg,2011.0,2,5,2016,The Tree of Life,You've Turned Them Against Me,tt0478304 c4Wls5pZlxQ,2011.0,1,5,2016,The Tree of Life,Love and Birth,tt0478304 EOO8TwyVFYI,2008.0,5,5,2016,Marley & Me,"You're a Great Dog, Marley",tt0822832 w9sO9o8LNvQ,2008.0,4,5,2016,Marley & Me,Life With Marley,tt0822832 99-v2bOxnJU,2008.0,1,5,2016,Marley & Me,Clearance Puppy,tt0822832 2jgk4c5V3b4,2008.0,2,5,2016,Marley & Me,How Marley Got His Name,tt0822832 Pn7M9PpQEgo,2008.0,3,5,2016,Marley & Me,Marley Gets Frisky,tt0822832 LQnfBdZnLmI,2009.0,4,5,2016,Jennifer's Body,She's Eating Boys Scene,tt1131734 _uhtsUzb7fg,2009.0,5,5,2016,Jennifer's Body,I Am Going to Eat Your Soul Scene,tt1131734 k1MdKI8kiXU,2009.0,2,5,2016,Jennifer's Body,We Always Share Your Bed Scene,tt1131734 EVIsqHrME68,2009.0,1,5,2016,Jennifer's Body,I Am A God Scene,tt1131734 _NcD2k_QmgQ,2009.0,3,5,2016,Jennifer's Body,Satan Is Our Only Hope Scene,tt1131734 ELqdLvz60zA,2009.0,5,5,2016,Fantastic Mr. Fox,Meeting the Wolf,tt0432283 Mp1_PuUoSaM,2009.0,3,5,2016,Fantastic Mr. Fox,A Psychotic Rat,tt0432283 AEocciZMBjc,2009.0,4,5,2016,Fantastic Mr. Fox,Pure Animal Craziness,tt0432283 HNPyZsPH8TI,2009.0,2,5,2016,Fantastic Mr. Fox,Whack-Bat,tt0432283 iuKNXP9LcSg,2009.0,1,5,2016,Fantastic Mr. Fox,"Boggis, Bunce and Bean",tt0432283 zI6U8UWPhWk,2012.0,12,12,2016,Girl Most Likely,The Red Scorpion,tt1698648 1hyzWfYu6J0,2012.0,10,12,2016,Girl Most Likely,The Book Party,tt1698648 -28eBo0EDDg,2012.0,11,12,2016,Girl Most Likely,I Get Why You Did It,tt1698648 t7mMEDZkDlY,2012.0,7,12,2016,Girl Most Likely,The Club,tt1698648 bJwzDAtwJQU,2012.0,9,12,2016,Girl Most Likely,The Human Shell in New York,tt1698648 C0uo35iCk0A,2012.0,8,12,2016,Girl Most Likely,Did You Guys Have Sex?,tt1698648 swnHnXKbQPM,2012.0,6,12,2016,Girl Most Likely,Backstreet Boy,tt1698648 hYwxyijuhOQ,2012.0,5,12,2016,Girl Most Likely,Take Me to New York,tt1698648 zQX5VL1XU5c,2012.0,4,12,2016,Girl Most Likely,Hitting a Porsche,tt1698648 VUqea11tvH0,2012.0,3,12,2016,Girl Most Likely,Dad Is Alive?,tt1698648 UsonrKXJoas,2012.0,2,12,2016,Girl Most Likely,Getting Spanked,tt1698648 fhgqKH6V34k,2012.0,1,12,2016,Girl Most Likely,Going Home With Mom,tt1698648 aJVHnyq7Nz8,1995.0,12,12,2016,Canadian Bacon,Need-to-Know News,tt0109370 4MTf0k1vqTk,2012.0,7,11,2016,The Perks of Being a Wallflower,Truth or Dare,tt1659337 OMSkavUrzHM,2012.0,11,11,2016,The Perks of Being a Wallflower,We Are Infinite,tt1659337 9rTcIUk9Aio,2012.0,10,11,2016,The Perks of Being a Wallflower,Charlie's Breakdown,tt1659337 Ix8ShPSjmtE,2012.0,8,11,2016,The Perks of Being a Wallflower,Sorry Nothing,tt1659337 4DAJ2QupBUc,2012.0,10,11,2016,LOL,Lola Gets Slapped,tt1592873 5DEINY4WTVY,2012.0,7,11,2016,LOL,Bathroom Sex Break-Up,tt1592873 o6hrLFJq63E,1995.0,5,12,2016,Canadian Bacon,Canada's Inferiority Complex,tt0109370 kO3MXkSKwZs,2012.0,4,11,2016,LOL,Lola Falls for Kyle,tt1592873 pbfBzWJVbX4,1995.0,7,12,2016,Canadian Bacon,Anti-Canada Propaganda,tt0109370 uxXMshs5exs,1995.0,2,12,2016,Canadian Bacon,Contingency Plan,tt0109370 XO3-PumyjoI,2012.0,1,11,2016,The Perks of Being a Wallflower,Come On Eileen,tt1659337 8Q-DUxHMLvg,1995.0,8,12,2016,Canadian Bacon,Boomer Raids Canada,tt0109370 -X9XaNXkvCI,2012.0,8,11,2016,LOL,Make It Look Sexy,tt1592873 b10LyOeq5Hs,2012.0,9,11,2016,The Perks of Being a Wallflower,We Accept the Love We Think We Deserve,tt1659337 IWpThrDfQEI,1995.0,9,12,2016,Canadian Bacon,Canadian Prisoners,tt0109370 tMaXLU_KG-k,2012.0,4,11,2016,The Perks of Being a Wallflower,Write About Us,tt1659337 _nk2ZNKOxCY,1995.0,1,12,2016,Canadian Bacon,30 Point Boost,tt0109370 sXrZaiADkTU,2012.0,6,11,2016,LOL,Lola's Party,tt1592873 1KPTpxxZJRs,2012.0,11,11,2016,LOL,Happy Endings,tt1592873 0YDejqKggWA,2012.0,5,11,2016,The Perks of Being a Wallflower,"I Love You, Charlie",tt1659337 axcECZzlPVI,2012.0,6,11,2016,The Perks of Being a Wallflower,Rocky Horror Picture Show,tt1659337 yVAFP91HfBs,2012.0,3,11,2016,LOL,Mom's Affair With Dad,tt1592873 SRMuzjyoMRg,1995.0,3,12,2016,Canadian Bacon,Civilized Men,tt0109370 z0bO_2sgBZA,2012.0,9,11,2016,LOL,Lola's First Time,tt1592873 MmPU9OjE2X8,2012.0,2,11,2016,The Perks of Being a Wallflower,You're a Wallflower,tt1659337 Ve1oHq8JIwo,2012.0,2,11,2016,LOL,Teens in Love,tt1592873 kMalrBgdRvI,2012.0,3,11,2016,The Perks of Being a Wallflower,The Tunnel,tt1659337 eCS7qPuOXQI,1995.0,4,12,2016,Canadian Bacon,Hockey Fight,tt0109370 eZXgYKx0aQI,1995.0,6,12,2016,Canadian Bacon,The Case Against Canada,tt0109370 iWII1mMM9HY,2012.0,5,11,2016,LOL,In the Girl's Locker Room,tt1592873 U8VDmQw-FAo,2012.0,1,11,2016,LOL,Hooking Up and Breaking Up,tt1592873 UdZi8K3PLs0,1995.0,11,12,2016,Canadian Bacon,The Black Guy Always Dies,tt0109370 jyO1ILQAGsU,1995.0,10,12,2016,Canadian Bacon,Language Police,tt0109370 eRqgQiBel8I,2012.0,10,10,2016,Snow White and the Huntsman,You Cannot Defeat Me,tt1735898 Ehaogw2TNOQ,2012.0,9,10,2016,Snow White and the Huntsman,You'll Be a Queen in Heaven,tt1735898 LoDGQLw_iLM,2012.0,6,10,2016,Snow White and the Huntsman,She is the One,tt1735898 VHsRuDuQKo8,2012.0,7,10,2016,Snow White and the Huntsman,Fighting Finn,tt1735898 104ZQtfYDso,2012.0,5,10,2016,Snow White and the Huntsman,Troll,tt1735898 G0y14S8h4ic,2012.0,8,10,2016,Snow White and the Huntsman,A Poisoned Apple,tt1735898 d9YfIZP8qPE,2012.0,3,10,2016,Snow White and the Huntsman,You Would Kill Your Queen?,tt1735898 FHDq1ehz_cg,2012.0,2,10,2016,Snow White and the Huntsman,"Mirror, Mirror On the Wall",tt1735898 kaWU7XlPxV4,2012.0,1,10,2016,Snow White and the Huntsman,An Army of Glass,tt1735898 VGA1SZwZC7A,2012.0,4,10,2016,Snow White and the Huntsman,The Huntsman Betrayed,tt1735898 GxA7BICC_zM,2012.0,10,10,2016,The ABCs of Death,W is for WTF,tt1935896 keumDslluNk,2012.0,6,10,2016,The ABCs of Death,R is for Removed,tt1935896 iIUhwUKRg28,2012.0,8,10,2016,The ABCs of Death,T is for Toilet,tt1935896 BNHVkYhC8Po,2012.0,9,10,2016,The ABCs of Death,V is for Vagitus,tt1935896 pv7lZRQDygc,2012.0,7,10,2016,The ABCs of Death,S is for Speed,tt1935896 0JRdzrh9in4,2012.0,3,10,2016,The ABCs of Death,F is for Fart,tt1935896 w2fpC1izWPA,2012.0,2,10,2016,The ABCs of Death,D is for Dogfight,tt1935896 zZSiCTrPiXU,2012.0,4,10,2016,The ABCs of Death,H is for Hydro-Electric Diffusion,tt1935896 jBuygQyZbf4,2012.0,5,10,2016,The ABCs of Death,K is for Klutz,tt1935896 2COP58ej7QA,2012.0,1,10,2016,The ABCs of Death,A is for Apocalypse,tt1935896 O31rBYqYkuQ,1995.0,11,12,2016,Get Shorty,Look at Me,tt0113161 bkeLkORd2y4,1995.0,12,12,2016,Get Shorty,Making the Movie,tt0113161 zSBXBMVa_Y0,1995.0,10,12,2016,Get Shorty,Beating Up Bear,tt0113161 0H8EmzfVSbg,1995.0,7,12,2016,Get Shorty,Martin's Motivation,tt0113161 r1scNthC8NI,1995.0,9,12,2016,Get Shorty,Testing Bear's Stuntman Skills,tt0113161 mohoyRj_VpU,1995.0,8,12,2016,Get Shorty,The Cadillac of Minivans,tt0113161 EP74OZdI5d8,1995.0,5,12,2016,Get Shorty,A Fan of Karen's Work,tt0113161 h_htCIiCXfE,1995.0,6,12,2016,Get Shorty,Chili and Bo Talk Screenwriting,tt0113161 IsKNaQuuL1g,1995.0,4,12,2016,Get Shorty,My Associate Chili Palmer,tt0113161 HHSAml1BAR4,1995.0,2,12,2016,Get Shorty,E.g. vs. I.e.,tt0113161 VNUBj_27Z-A,1995.0,3,12,2016,Get Shorty,Chili Surprises Harry,tt0113161 rh8OdlSXiDo,1995.0,1,12,2016,Get Shorty,Chili Wants His Coat,tt0113161 cjIv83h6Tcc,2005.0,9,9,2016,Bad News Bears,Second Place,tt0408524 O87gR6xJ9Hw,2005.0,8,9,2016,Bad News Bears,Bottom of the 6th,tt0408524 7WzJb1l2wtg,2005.0,7,9,2016,Bad News Bears,Brawl at the Plate,tt0408524 yan-Tdiyrig,2005.0,5,9,2016,Bad News Bears,Do You Feel That?,tt0408524 5aBVbBiojuM,2005.0,4,9,2016,Bad News Bears,Opening Day,tt0408524 XOUauBpPRNk,2005.0,6,9,2016,Bad News Bears,Genital Defense Apparatus,tt0408524 PwfZYNFfEfM,2005.0,3,9,2016,Bad News Bears,Batting Practice,tt0408524 h2Fbdx7N2Kw,2005.0,2,9,2016,Bad News Bears,Don't Lean Against That Door,tt0408524 fCuYlKKFAO8,2005.0,1,9,2016,Bad News Bears,First Practice,tt0408524 9Fj1STjqFDU,2012.0,12,12,2016,The Paperboy,Harrowing Justice,tt1496422 iso415ggxMg,2012.0,11,12,2016,The Paperboy,Laundry Room Lust,tt1496422 F5Hme0QUyXI,2012.0,8,12,2016,The Paperboy,Nightmarish Torture,tt1496422 2l1u5Q9AYjM,2012.0,10,12,2016,The Paperboy,It's Not the Truth,tt1496422 PeFLEFUNxzc,2012.0,7,12,2016,The Paperboy,The N Word,tt1496422 pzrbB0XK9eI,2012.0,9,12,2016,The Paperboy,Oversexed Barbie Doll,tt1496422 JyVZgdLjGOo,2012.0,3,12,2016,The Paperboy,Spread Your Legs,tt1496422 OtsMWS5Z2Oc,2012.0,4,12,2016,The Paperboy,Jellyfish Sting,tt1496422 QQCeQOAVWFw,2012.0,5,12,2016,The Paperboy,Gator Gutting,tt1496422 J2vVweGS13Y,2012.0,6,12,2016,The Paperboy,The Most Natural Thing in the World,tt1496422 GiQJxD_bQCI,2012.0,2,12,2016,The Paperboy,Sexy Daydream,tt1496422 ucuU6zGryPE,2012.0,1,12,2016,The Paperboy,I'm Getting Horny,tt1496422 3k9G5rq86PU,1998.0,9,10,2016,Sphere,Your Fears Are Going to Kill Us,tt0120184 xnV6hJs2Zu0,1998.0,10,10,2016,Sphere,It's an Illusion,tt0120184 l6cFM5Ubilw,1998.0,4,10,2016,Sphere,They're Harmless,tt0120184 evWlSySuiII,1998.0,8,10,2016,Sphere,Sea Snake,tt0120184 iY2xD9VKDiE,1998.0,7,10,2016,Sphere,Chaos Underwater,tt0120184 jCXcE6DvgLw,1998.0,6,10,2016,Sphere,You're Not Alone Out There,tt0120184 2GLDqvA6tKI,1998.0,5,10,2016,Sphere,An Alien Named Jerry,tt0120184 M5UXOwphsLk,1998.0,2,10,2016,Sphere,A Perfect,tt0120184 vrVDJcw40BU,1998.0,1,10,2016,Sphere,You Think This is Alien?,tt0120184 KOxmixap5yw,1998.0,3,10,2016,Sphere,We're All Gonna Die Down Here,tt0120184 qkVImymH0A0,1977.0,9,9,2016,Semi-Tough,I Don't,tt0078227 NeTnaYH-08o,1977.0,8,9,2016,Semi-Tough,Superbowl Win,tt0078227 PSG5uNsnkks,1977.0,7,9,2016,Semi-Tough,A Great Respect for One Another,tt0078227 01OfrTMVeD8,1977.0,6,9,2016,Semi-Tough,Crawlin' and Creepin' With Big Ed,tt0078227 0zROMB5cxBA,1977.0,5,9,2016,Semi-Tough,Bathroom Visitors,tt0078227 uF7ftHMCN1w,1977.0,4,9,2016,Semi-Tough,Shake to the Rescue,tt0078227 746lMCHNZeU,1977.0,1,9,2016,Semi-Tough,The Jocks of the Mind,tt0078227 69bd2hhDLF0,1977.0,3,9,2016,Semi-Tough,Big Women Have Big Feelings,tt0078227 nFJvGENqc20,1977.0,2,9,2016,Semi-Tough,Deodorant Commercial,tt0078227 x63YlKqGZhI,2013.0,10,10,2016,V/H/S/2,Aliens in the Woods,tt2450186 fyXyDW0pU7s,2013.0,9,10,2016,V/H/S/2,Slumber Party Abduction,tt2450186 _7aTnDiBVEQ,2013.0,8,10,2016,V/H/S/2,Escaping From Hell,tt2450186 F_BH945RjPM,2013.0,2,10,2016,V/H/S/2,Zombie on the Trail,tt2450186 ZmNGTR9Y7f0,2013.0,6,10,2016,V/H/S/2,Mass Suicide,tt2450186 BhSNoxyn9ao,2013.0,7,10,2016,V/H/S/2,A Satanic Birth,tt2450186 9-NoQwwRDJY,2013.0,3,10,2016,V/H/S/2,The Fate of Good Samaritans,tt2450186 PDSgyYfLpdo,2013.0,4,10,2016,V/H/S/2,Birthday Party Zombie Attack,tt2450186 lYZKtD3RwAw,2013.0,5,10,2016,V/H/S/2,You Didn't Listen to Me,tt2450186 MUlVu0L0A0I,2013.0,1,10,2016,V/H/S/2,Eye See You,tt2450186 Rdxv6jaQZKM,2012.0,9,10,2016,V/H/S,The House is Alive,tt2105044 60gXuCsTsPE,2012.0,10,10,2016,V/H/S,Saving the Wrong Girl,tt2105044 ilYccsPDTXM,2012.0,5,10,2016,V/H/S,Don't Come Here,tt2105044 Ge-zBQLa7FY,2012.0,8,10,2016,V/H/S,Close Your Eyes,tt2105044 HAW15MhSWuM,2012.0,4,10,2016,V/H/S,You're All Just Bait,tt2105044 E7fcdG_azPE,2012.0,2,10,2016,V/H/S,Honeymoon From Hell,tt2105044 q2vaQZMf7LI,2012.0,6,10,2016,V/H/S,My Apartment is Haunted,tt2105044 6NbloMPJuRY,2012.0,7,10,2016,V/H/S,Investigating the Noise,tt2105044 DslpNlhAfLo,2012.0,3,10,2016,V/H/S,Wanna See Something Sickening?,tt2105044 5ql5X72wS0I,2012.0,1,10,2016,V/H/S,The Unwelcomed Guest,tt2105044 n2GAcA_P9Tk,2012.0,7,11,2016,The Babymakers,The Indian Mafia,tt0835418 TGAHQorruwA,2012.0,11,11,2016,The Babymakers,The Great Baby Race,tt0835418 fpgKY0I3taA,2012.0,10,11,2016,The Babymakers,The Heist Begins,tt0835418 SjfMBu6JQ-0,2012.0,9,11,2016,The Babymakers,A Chinese Baby,tt0835418 rvImiPkES20,2012.0,5,11,2016,The Babymakers,The Sperm Bank,tt0835418 JupxjoCyrBE,2012.0,8,11,2016,The Babymakers,Planning the Mission,tt0835418 A-zeWjOl0rE,2012.0,6,11,2016,The Babymakers,I Want to Be Inside You,tt0835418 X2zBKcPda98,2012.0,2,11,2016,The Babymakers,Sex Advice,tt0835418 6df7al2Ez0U,2012.0,4,11,2016,The Babymakers,Testicular Trauma,tt0835418 O5TthS_9-9s,2012.0,3,11,2016,The Babymakers,Fantasy Interrupted,tt0835418 RKcDDLS3aqQ,2009.0,9,9,2016,"I Love You, Man",Stop Calling Me Hulk,tt1155056 HnKmwbVpRno,2009.0,6,9,2016,"I Love You, Man",Screaming Lessons,tt1155056 MvDNoWSnSsU,2009.0,3,9,2016,"I Love You, Man",Have You Been Kissing Someone?,tt1155056 f_zpkjkB8ac,2009.0,7,9,2016,"I Love You, Man",This Is My Nightmare,tt1155056 kH6SUxCwXzs,2009.0,8,9,2016,"I Love You, Man",Best Bond Impression,tt1155056 K6bTibRdNxE,2009.0,4,9,2016,"I Love You, Man",Open House,tt1155056 SV6dKGbbkIk,2009.0,2,9,2016,"I Love You, Man",I Gotta Get Some Friends,tt1155056 GCM5SoA82w4,2009.0,5,9,2016,"I Love You, Man",Message from Klaven,tt1155056 sb8IU6c5obc,2009.0,1,9,2016,"I Love You, Man",A Girlfriend Guy,tt1155056 Y7gTgzqJD-w,2015.0,10,10,2016,Trainwreck,Amy's Dance Scene,tt3152624 4WCDgJSCQpc,2015.0,9,10,2016,Trainwreck,I Scored on LeBron James Scene,tt3152624 -y6RPL5v1bU,2015.0,8,10,2016,Trainwreck,We Should Be a Couple Scene,tt3152624 dQQd6s5gYhk,2015.0,6,10,2016,Trainwreck,You Butt-Dialed Me Scene,tt3152624 zie94YV7W4Y,2015.0,7,10,2016,Trainwreck,LeBron's Advice Scene,tt3152624 iHheroBxkuE,2015.0,5,10,2016,Trainwreck,Breathe up Towards the Sky Scene,tt3152624 ZDbhvMyusZ8,2015.0,1,10,2016,Trainwreck,Talk Dirty to Me Scene,tt3152624 JNRFWtS0LlM,2015.0,4,10,2016,Trainwreck,This Is How I Walk Scene,tt3152624 8wyhEmMY_yc,2015.0,2,10,2016,Trainwreck,Sports? I Love Them Scene,tt3152624 OCvg2G2SEhU,2015.0,3,10,2016,Trainwreck,You Always Do This to Me Scene,tt3152624 sUad0ZL-nBU,2014.0,10,10,2016,Lucy,I Am Everywhere,tt2872732 7Dxxk1az9Uo,2014.0,6,10,2016,Lucy,I've Never Driven Before,tt2872732 LWG3aFFhg8k,2014.0,9,10,2016,Lucy,Crossing the Spacetime Continuum,tt2872732 vwObck9twes,2014.0,8,10,2016,Lucy,Time is the Answer,tt2872732 GXumhcRLN_E,2014.0,5,10,2016,Lucy,Self-Management,tt2872732 aIBT3l54BAg,2014.0,7,10,2016,Lucy,Give Me the Case,tt2872732 Dvi6n89JWUY,2014.0,3,10,2016,Lucy,Learning's a Painful Process,tt2872732 nELxnSK1SHk,2014.0,4,10,2016,Lucy,A Higher Purpose,tt2872732 dTGuyNnJJFs,2014.0,2,10,2016,Lucy,I Feel Everything,tt2872732 tsQS1b-fNSs,2014.0,1,10,2016,Lucy,Escapes,tt2872732 Vx357DNh0vw,2014.0,9,10,2016,Neighbors,Mano y Mano,tt2004420 03WbdaZCGAA,2014.0,10,10,2016,Neighbors,So Long Neighbor,tt2004420 vKMMeOLK9Y4,2014.0,7,10,2016,Neighbors,Just a Little Taste,tt2004420 xrbaFa8zV_o,2014.0,5,10,2016,Neighbors,Calling the Cops,tt2004420 J1wEoCLDl9Y,2014.0,8,10,2016,Neighbors,Air Bag Prank,tt2004420 1uX_OAhcgb0,2014.0,6,10,2016,Neighbors,Robert De Niro Party,tt2004420 bLD14JwSiYs,2014.0,4,10,2016,Neighbors,Mac and Kelly Join the Party,tt2004420 OMHAwJjp-YI,2014.0,3,10,2016,Neighbors,Delta Psi's Epic Party Moments,tt2004420 89qTnQ_TK4c,2014.0,2,10,2016,Neighbors,Welcome to the Neighborhood,tt2004420 jfA6jr-y7_A,2014.0,1,10,2016,Neighbors,Baby's First Rave,tt2004420 uIEr1T_jZlQ,2014.0,10,10,2016,Dumb and Dumber To,Kidney Prank,tt2096672 aWaZMXiimms,2014.0,9,10,2016,Dumb and Dumber To,The Old Stinkeroo,tt2096672 ULCyXL8cTFU,2014.0,7,10,2016,Dumb and Dumber To,Funnel Nuts and Fireworks,tt2096672 VUZBpBTqRJY,2014.0,8,10,2016,Dumb and Dumber To,Dirty Grandma,tt2096672 6v098-aMBj4,2014.0,6,10,2016,Dumb and Dumber To,Lloyd's Daydream,tt2096672 DdGYUf-E48g,2014.0,5,10,2016,Dumb and Dumber To,Fart Games,tt2096672 p6dUf7YRWao,2014.0,3,10,2016,Dumb and Dumber To,Superior Instincts,tt2096672 Qwyo6C87zdE,2014.0,1,10,2016,Dumb and Dumber To,20 Year Prank,tt2096672 EJFm05MPSDQ,2014.0,4,10,2016,Dumb and Dumber To,A Pretty Good Dad,tt2096672 1y20NC1_MGQ,2014.0,2,10,2016,Dumb and Dumber To,It's a Silent B,tt2096672 C5pZipJa09s,2012.0,2,3,2016,This Means War,Fighting Over Lauren,tt1596350 7d7J-rlXWvc,2012.0,3,3,2016,This Means War,"Oh My God, I'm Yoko!",tt1596350 _n3aOgYXQ6o,2012.0,1,3,2016,This Means War,Surveillance Sex Talk,tt1596350 VUv6vjIidho,2011.0,1,3,2016,The Best Exotic Marigold Hotel,The Lover From My Youth,tt1412386 gIdOE4SoDfU,2011.0,3,3,2016,The Best Exotic Marigold Hotel,I Will Not Live Without This Girl,tt1412386 EWQsR8em1BM,2011.0,2,3,2016,The Best Exotic Marigold Hotel,Telemarketer Training,tt1412386 3lgcViU45Fs,2005.0,3,3,2016,The Family Stone,You're the Worst!,tt0356680 MB5PMwcYLqg,2005.0,2,3,2016,The Family Stone,This Isn't Coming Out Right,tt0356680 Mhev_TsgOBw,2005.0,1,3,2016,The Family Stone,I Just Mean the Gay Thing,tt0356680 lWERfZYWdA4,2013.0,10,10,2016,Nymphomaniac: Vol. II,P and Joe,tt2382009 KY7hswfdxI4,2013.0,9,10,2016,Nymphomaniac: Vol. II,The Soul Tree,tt2382009 Yauy9nMQU04,2013.0,5,10,2016,Nymphomaniac: Vol. II,No Safe Word,tt2382009 x2cNjm0VUmY,2013.0,4,10,2016,Nymphomaniac: Vol. II,Removing Words from Language,tt2382009 b_2-97kqlzs,2013.0,6,10,2016,Nymphomaniac: Vol. II,Not a Mother,tt2382009 xQ6yM4Dxpbs,2013.0,8,10,2016,Nymphomaniac: Vol. II,Repressing Desire,tt2382009 zdbOXyz1gpg,2013.0,7,10,2016,Nymphomaniac: Vol. II,I Am a Nymphomaniac,tt2382009 KRyazQjCRD8,2013.0,2,10,2016,Nymphomaniac: Vol. II,The Spoon Trick,tt2382009 _RD0zpFbSmY,2013.0,3,10,2016,Nymphomaniac: Vol. II,Feeding the Tiger,tt2382009 HLpC0bnO5_o,2013.0,1,10,2016,Nymphomaniac: Vol. II,Nothing Sexual About Me,tt2382009 2cRMH4HXfzg,2013.0,10,10,2016,Lone Survivor,Because of My Brothers,tt1091191 3bmDhfEtNh0,2013.0,9,10,2016,Lone Survivor,Thank You,tt1091191 f69ceThb6ec,2013.0,7,10,2016,Lone Survivor,Unexpected Assistance,tt1091191 Q_j14lseORE,2013.0,8,10,2016,Lone Survivor,For an American You Will Die?,tt1091191 Hdmi1UbW4Yk,2013.0,6,10,2016,Lone Survivor,Axe Goes Down,tt1091191 8PzQmtwNeXM,2013.0,4,10,2016,Lone Survivor,Never Out of the Fight,tt1091191 6cxpiPSZHmE,2013.0,5,10,2016,Lone Survivor,A Failed Rescue,tt1091191 QJwdXqGBEPQ,2013.0,2,10,2016,Lone Survivor,A Difficult Decision,tt1091191 iNLZ1J_Gslg,2013.0,1,10,2016,Lone Survivor,There Ain't Nothin' I Can't Do,tt1091191 c_k5BK-ONiE,2013.0,3,10,2016,Lone Survivor,Fall Back,tt1091191 fJpdVdl29Mw,2013.0,10,10,2016,Nymphomaniac,A Caged Animal,tt1937390 ficjws23Qjk,2013.0,9,10,2016,Nymphomaniac,When Death is Come,tt1937390 sKHJuOqcvOg,2013.0,5,10,2016,Nymphomaniac,Jerome,tt1937390 5C7dB-dOS_U,2013.0,7,10,2016,Nymphomaniac,No One Can Be That Cruel,tt1937390 FB1Go2JVVqc,2013.0,8,10,2016,Nymphomaniac,Lust and Loneliness,tt1937390 0mE11Cy_xAo,2013.0,6,10,2016,Nymphomaniac,Mrs. H,tt1937390 Kcv1B1aZIvs,2013.0,4,10,2016,Nymphomaniac,The Little Flock,tt1937390 pxOZAWSn-dc,2013.0,2,10,2016,Nymphomaniac,The Married Man,tt1937390 OJiN41xn8iY,2013.0,10,10,2016,Grace Unplugged,You Never Let Go,tt2349460 GexB78wQ6Qw,2013.0,3,10,2016,Nymphomaniac,A Terrible Human Being,tt1937390 7kGm_xBgi1k,2013.0,9,10,2016,Grace Unplugged,All I've Ever Needed,tt2349460 KsZ3SpIoNos,2013.0,1,10,2016,Nymphomaniac,Nymphs on a Train,tt1937390 8cAlXSNQeUY,2013.0,8,10,2016,Grace Unplugged,Please Forgive Me,tt2349460 H1rttoUCeUg,2013.0,7,10,2016,Grace Unplugged,What Really Matters,tt2349460 GKsKm9KYbaU,2013.0,5,10,2016,Grace Unplugged,This is What I Want,tt2349460 C4UKfmu_m8I,2013.0,4,10,2016,Grace Unplugged,Misunderstood,tt2349460 xpKYkGHWB7E,2013.0,6,10,2016,Grace Unplugged,Behind the Fame,tt2349460 qB78U2aWihU,2013.0,2,10,2016,Grace Unplugged,Grace Leaves Home,tt2349460 5rkVGXHv2Ow,2013.0,1,10,2016,Grace Unplugged,Dishonesty,tt2349460 1YklLet-e8s,2013.0,3,10,2016,Grace Unplugged,The Price of Fame,tt2349460 9nvHAma_Lh0,2013.0,9,10,2016,Red 2,Weapons of Mass Destruction,tt1821694 M2_cj-txN9A,2013.0,10,10,2016,Red 2,Didn't See That One Coming,tt1821694 uf-v_lzbcp0,2013.0,8,10,2016,Red 2,Frank vs. Han,tt1821694 RlPspkeaFrU,2013.0,5,10,2016,Red 2,Han Attacks,tt1821694 2ZpWLuAc7LE,2013.0,7,10,2016,Red 2,Convenience Store Fight,tt1821694 9UNV2c-A4BU,2013.0,6,10,2016,Red 2,Breaking Into the Asylum,tt1821694 rCCCJ2tXF7A,2013.0,3,10,2016,Red 2,Paris Chase,tt1821694 PurkHHO7Gcc,2013.0,1,10,2016,Red 2,Kill Him,tt1821694 xP7ctkX_Nm8,2013.0,2,10,2016,Red 2,Katya and Frank,tt1821694 M9F-ZtKswww,2013.0,4,10,2016,Red 2,Seducing the Frog,tt1821694 UrRDXFXZUhw,2012.0,12,12,2016,Rapturepalooza,God vs. Satan,tt1879032 EV3y3ehKePA,2012.0,11,12,2016,Rapturepalooza,I Want a Sweater!,tt1879032 mEiLmu1IF5E,2012.0,10,12,2016,Rapturepalooza,You Barbecued My Son,tt1879032 obeGwYOdAPc,2012.0,9,12,2016,Rapturepalooza,Shooting the Beast,tt1879032 o3vv1SPEv1c,2012.0,8,12,2016,Rapturepalooza,I Wanna Touch Your Booty,tt1879032 drTH0CDFgx8,2012.0,6,12,2016,Rapturepalooza,"Dude, You're Dead!",tt1879032 dDH3nlKHRQ8,2012.0,4,12,2016,Rapturepalooza,Dad's Morally Lost,tt1879032 -i6m1i3JLaM,2012.0,7,12,2016,Rapturepalooza,Sexy Beast,tt1879032 wDsYB_uRbaE,2012.0,5,12,2016,Rapturepalooza,The Beast,tt1879032 G4OAR22W7Sc,2012.0,1,12,2016,Rapturepalooza,Mom Was Sent Back,tt1879032 KVu2o2fTKlc,2012.0,3,12,2016,Rapturepalooza,The Fiery Rocks,tt1879032 ddQniqjrVdo,2012.0,2,12,2016,Rapturepalooza,Foul-Mouthed Crows,tt1879032 hsxRROsF4D0,2012.0,10,10,2016,Nurse 3D,My Work Here Is Done,tt1913166 x8tbSHuoB9E,2012.0,9,10,2016,Nurse 3D,Forcible Assisted Suicide,tt1913166 CBS7b7HPuCo,2012.0,7,10,2016,Nurse 3D,Playing Doctor,tt1913166 FrGGFHPDN3A,2012.0,8,10,2016,Nurse 3D,Catfight Bloodbath,tt1913166 Rl-Fx-2zzdQ,2012.0,6,10,2016,Nurse 3D,Baby's First Kill,tt1913166 faEbd7LEDOw,2012.0,4,10,2016,Nurse 3D,I'm Not the Smiley Face Type,tt1913166 r1mN6K60148,2012.0,5,10,2016,Nurse 3D,Live Streaming a Murder,tt1913166 9qrDi2o-eEw,2012.0,3,10,2016,Nurse 3D,Your Wife Ever Tie You Up?,tt1913166 i8BG2g9YJAo,2012.0,1,10,2016,Nurse 3D,The Fast Way Down,tt1913166 eKCpwUXh_Qs,2012.0,2,10,2016,Nurse 3D,Sexual Obsession,tt1913166 25CbQ5zMNfU,2011.0,12,12,2016,Bernie,Not as Bad as You Think,tt1704573 6ObWyt4Hfaw,2011.0,9,12,2016,Bernie,The Cover Up,tt1704573 3IklTegWKfw,2011.0,11,12,2016,Bernie,I Shot Her,tt1704573 KQz3KBKMFg4,2011.0,7,12,2016,Bernie,I Know You Hate Me,tt1704573 iSIDCcqERkI,2011.0,10,12,2016,Bernie,The Freezer,tt1704573 GVmIqRcglvE,2011.0,2,12,2016,Bernie,The Five States of Texas,tt1704573 7H_6ZZLNsvc,2011.0,6,12,2016,Bernie,Increasingly Dependent,tt1704573 U1WzINCahpw,2011.0,5,12,2016,Bernie,Was it Romantic?,tt1704573 3GvvMpMUwQc,2011.0,8,12,2016,Bernie,What Have I Done?,tt1704573 oI2bCE3FNZk,2011.0,4,12,2016,Bernie,Mean Marjorie,tt1704573 cr18oXaI02Q,2011.0,3,12,2016,Bernie,Most Qualified Young Man,tt1704573 n2dBpP0yhUs,2011.0,1,12,2016,Bernie,Ready for the Casket,tt1704573 zVBa2vcgozs,2011.0,9,10,2016,Blitz,Chasing a Killer,tt1297919 fbS0gOz76iw,2011.0,10,10,2016,Blitz,Unsolved Murder,tt1297919 t1-maJWU3ag,2011.0,6,10,2016,Blitz,The Killer's Car,tt1297919 oQ39ssiQ-4A,2011.0,7,10,2016,Blitz,Flushed Out,tt1297919 52QPxxtu1-s,2011.0,8,10,2016,Blitz,The Wrong Victim,tt1297919 0Y_kftjPpUc,2011.0,4,10,2016,Blitz,Burnt Out,tt1297919 Z1Zrfm1Ylro,2011.0,1,10,2016,Blitz,The Right Weapon,tt1297919 SoFgHbVPrSk,2011.0,5,10,2016,Blitz,You Are the Bill,tt1297919 JTJKIuXBey0,2011.0,2,10,2016,Blitz,Eight More to Kill,tt1297919 XN0tr43oqjI,2011.0,3,10,2016,Blitz,A Real Ballbuster,tt1297919 Xt2JzDaHiNM,1984.0,9,9,2016,Red Dawn,Vaya Con Dios,tt0087985 a1iQDKCkh6k,1984.0,6,9,2016,Red Dawn,Tank Duel,tt0087985 3xmFjLSU7MA,1984.0,7,9,2016,Red Dawn,Helicopter Ambush,tt0087985 p4JPMo4bMa4,1984.0,8,9,2016,Red Dawn,Robert's Last Stand,tt0087985 a1Bx9nyw35w,1984.0,4,9,2016,Red Dawn,Guerilla Warfare,tt0087985 0f2bU9SzCzs,1984.0,5,9,2016,Red Dawn,Liberating the Prison Camp,tt0087985 S7GMNTJa5zQ,1984.0,3,9,2016,Red Dawn,God Help Me,tt0087985 MVqK6wNkSxA,1984.0,1,9,2016,Red Dawn,Paratrooper Invasion,tt0087985 W6qWnmb_22s,1984.0,2,9,2016,Red Dawn,Avenge Me,tt0087985 tX3qqCP99Tw,1991.0,9,9,2016,Double Impact,Beating the Bad Guys,tt0101764 5ktmcS1L3-A,1991.0,3,9,2016,Double Impact,Massacre at the Warehouse,tt0101764 uat-LZ3t7i4,1991.0,8,9,2016,Double Impact,Killing Kara,tt0101764 cCpDJlAnHsg,1991.0,4,9,2016,Double Impact,Bombing the Klimax Klub,tt0101764 -WbsnXGKkIg,1991.0,6,9,2016,Double Impact,Brother Against Brother,tt0101764 5CgpROI6ivM,1991.0,7,9,2016,Double Impact,Bad Moon Frying,tt0101764 c2HZzrcEbZc,1991.0,2,9,2016,Double Impact,Welcome to Hong Kong,tt0101764 wyRq2S8BTVM,1991.0,5,9,2016,Double Impact,You Can Frisk Me,tt0101764 FwkbHnPwEYc,1991.0,1,9,2016,Double Impact,Flexibility,tt0101764 fLWjUBClszw,2014.0,10,10,2016,Dracula Untold,He's Safe Now,tt0829150 s1nXXro4Aio,2014.0,5,10,2016,Dracula Untold,He's a Monster,tt0829150 -dMBMU9FCQU,2014.0,9,10,2016,Dracula Untold,My Name is Dracula,tt0829150 I6KZlznXyiY,2014.0,8,10,2016,Dracula Untold,Drink My Blood,tt0829150 VIKvQVph07A,2014.0,3,10,2016,Dracula Untold,Vlad Defends His Castle,tt0829150 RxhenI5eUDI,2014.0,7,10,2016,Dracula Untold,Bat Smash,tt0829150 WNZNGn_nkOU,2014.0,6,10,2016,Dracula Untold,I Would Do It All Again,tt0829150 dRz8OjNEtaI,2014.0,4,10,2016,Dracula Untold,Need to Feed,tt0829150 Ge-ilEFgJ34,2014.0,1,10,2016,Dracula Untold,Vlad the Impaler,tt0829150 LeA8ojVy8Fc,2014.0,2,10,2016,Dracula Untold,The Ultimate Game,tt0829150 iASBdbiKSHU,2014.0,9,10,2016,Boyhood,I Just Thought There Would Be More,tt1065073 sh0UuxRgqgk,2014.0,10,10,2016,Boyhood,The Moment Seizes Us,tt1065073 PMmvUWqeS80,2014.0,8,10,2016,Boyhood,You Are Responsible For You,tt1065073 _V0CWwyrJUw,2014.0,6,10,2016,Boyhood,"Birthdays, Bibles and Guns",tt1065073 B86JJELi5Tg,2014.0,3,10,2016,Boyhood,Daddy's Lullaby,tt1065073 PX-PzFNkU50,2014.0,7,10,2016,Boyhood,You're Kinda Weird,tt1065073 Y5oZr-5C1eM,2014.0,4,10,2016,Boyhood,You Think That's Funny?,tt1065073 oDDexxBBWXQ,2014.0,5,10,2016,Boyhood,The Sex Talk,tt1065073 ePaK5-b1oec,2014.0,2,10,2016,Boyhood,I Will Not Be That Guy,tt1065073 9diokRIKGT8,2014.0,1,10,2016,Boyhood,She Hit Me First!,tt1065073 BhWg1G0czSQ,2014.0,10,10,2016,Rob the Mob,You Love Me?,tt2481480 Ua0oqZfJFN8,2014.0,7,10,2016,Rob the Mob,Solidarity,tt2481480 iZqKmtk6Vlc,2014.0,9,10,2016,Rob the Mob,Take the Tickets,tt2481480 hZZG0M8zj_8,2014.0,8,10,2016,Rob the Mob,Found Out,tt2481480 wb8HFGVE218,2014.0,6,10,2016,Rob the Mob,The List,tt2481480 gHr0P3Px91c,2014.0,5,10,2016,Rob the Mob,Everyone Strip!,tt2481480 XTLruQ3tl4U,2014.0,4,10,2016,Rob the Mob,The Escape,tt2481480 avQ9Wvp5wZQ,2014.0,3,10,2016,Rob the Mob,The Robbery,tt2481480 ZwVuw2rvu4s,2014.0,2,10,2016,Rob the Mob,Plan B,tt2481480 ev_UF24O-oM,2014.0,1,10,2016,Rob the Mob,A Second Chance,tt2481480 k-e5rthOQdQ,2013.0,9,10,2016,Bad Milo!,Milo vs. Ralph,tt2274570 fQmbxg6z5ic,2013.0,10,10,2016,Bad Milo!,Milo Attacks Sarah,tt2274570 nuNIO9LLqYY,2013.0,8,10,2016,Bad Milo!,Just You and Me,tt2274570 KGk6xZWTgBQ,2013.0,7,10,2016,Bad Milo!,I'm Pregnant,tt2274570 NPS356u_u08,2013.0,4,10,2016,Bad Milo!,The Myth of our Anus,tt2274570 WJpSAnt7s98,2013.0,6,10,2016,Bad Milo!,Take a Dump on Your Enemy,tt2274570 4gYG7purQPk,2013.0,5,10,2016,Bad Milo!,Milo Comes Home,tt2274570 uvyPBpxL8ZY,2013.0,3,10,2016,Bad Milo!,Milo's First Kill,tt2274570 JY9Iq3-iD7s,2013.0,2,10,2016,Bad Milo!,Ready for Hypnosis?,tt2274570 7iLdxVgHWlM,2013.0,1,10,2016,Bad Milo!,Your New Office,tt2274570 _NQec_YluKU,2013.0,9,10,2016,Drinking Buddies,Jill's Confession,tt2265398 6Uz7wmX_6nY,2013.0,10,10,2016,Drinking Buddies,Buddies Again,tt2265398 mfqzWZW_kkM,2013.0,1,10,2016,Drinking Buddies,Not Messing Around,tt2265398 OGXdRrvCW2E,2013.0,7,10,2016,Drinking Buddies,I Like Your Style,tt2265398 jJ9VFThsqtU,2013.0,8,10,2016,Drinking Buddies,You Made Your Own Bed,tt2265398 NFdvt3FQRoQ,2013.0,6,10,2016,Drinking Buddies,A Good Man,tt2265398 WXVmCSMEpP0,2013.0,5,10,2016,Drinking Buddies,Dave Went Home with Kate,tt2265398 yef2bvCU2Tw,2013.0,4,10,2016,Drinking Buddies,The Marriage Conversation,tt2265398 uO1YBHAbBSQ,2013.0,2,10,2016,Drinking Buddies,Relaxing on the Beach,tt2265398 _6G-jfNOkIc,2013.0,3,10,2016,Drinking Buddies,The Shackles Are Off,tt2265398 fxJ9dLfp9k8,2013.0,10,11,2016,Escape Plan,Boom,tt1211956 udTmoc-i1Q8,2013.0,9,11,2016,Escape Plan,Ship Shootout,tt1211956 q0YOdmVSceU,2013.0,2,11,2016,Escape Plan,Evacuation Code,tt1211956 hVyVNcP83Sw,2013.0,1,10,2016,Alan Partridge,Just Sack Pat,tt0469021 R1f88CiYzes,2013.0,2,10,2016,Alan Partridge,Will You Help Us?,tt0469021 AdjVK4hPaOo,2013.0,6,11,2016,Escape Plan,The Tomb,tt1211956 AInSCWWY14Q,2013.0,11,11,2016,Escape Plan,Mannheim,tt1211956 gjRCN-nrEl4,2013.0,4,11,2016,Escape Plan,You Hit Like a Vegetarian,tt1211956 61ZwsdoEI9U,2013.0,7,11,2016,Escape Plan,The Riot,tt1211956 b8wlb-8zFSQ,2013.0,8,11,2016,Escape Plan,Boiler Room Brawl,tt1211956 Fi4ixdzoA7I,2013.0,5,11,2016,Escape Plan,Draw You A Picture,tt1211956 7g4XFGQutFM,2013.0,1,11,2016,Escape Plan,How to Escape From Prison,tt1211956 ZizMOl5Xllw,2013.0,3,11,2016,Escape Plan,Back Off!,tt1211956 vm29fXJWuOA,2013.0,10,10,2016,Alan Partridge,Armed Standoff,tt0469021 myJttzKxu64,2013.0,9,10,2016,Alan Partridge,The Shitshank Redemption,tt0469021 gwFW3icyEZk,2013.0,7,10,2016,Alan Partridge,A Captive Audience,tt0469021 LPRHiok3nzs,2013.0,6,10,2016,Alan Partridge,Jason and the Argonauts,tt0469021 FTjFM9edoD4,2013.0,8,10,2016,Alan Partridge,Naked Pictures,tt0469021 3DsoxW8AUEE,2013.0,5,10,2016,Alan Partridge,Laying Down a Jingle,tt0469021 VMXUsPGKzfQ,2013.0,4,10,2016,Alan Partridge,Crisis Management,tt0469021 1X1shl06ZPo,2013.0,3,10,2016,Alan Partridge,Prepare to Die,tt0469021 XAw8Qpr0NK0,1995.0,10,11,2016,Species,Up in Flames,tt0114508 l97NtEMUx0M,1995.0,11,11,2016,Species,The Dead Half,tt0114508 db50XeSEtv4,1995.0,8,11,2016,Species,Regenerating Thumb,tt0114508 MFvi1YVig8w,1995.0,9,11,2016,Species,Hunting Sil,tt0114508 0cPT4zspVc0,1995.0,5,11,2016,Species,Xavier's Protocol,tt0114508 NAEDVsrKk5s,1995.0,7,11,2016,Species,Sil Wants a Baby,tt0114508 IerddGM-xO0,1995.0,4,11,2016,Species,More Docile and Controllable,tt0114508 FEAfMv14l5Q,1995.0,6,11,2016,Species,Deadly Kiss,tt0114508 79hXvDohqgI,1995.0,1,11,2016,Species,The End of the Experiment,tt0114508 CNuEPee1qOU,1995.0,3,11,2016,Species,Sil's Cocoon,tt0114508 9FyqTQ9ywnc,1995.0,2,11,2016,Species,Puberty,tt0114508 x2yXtHyhu-k,1985.0,11,11,2016,Ghoulies,Wolfgang's Magical Showdown,tt0089200 3T-wqo8lamY,1985.0,9,11,2016,Ghoulies,in Disguise,tt0089200 Z3yJF1FX9hY,1985.0,5,11,2016,Ghoulies,Dinner Party,tt0089200 0BQZb44R_IY,1985.0,8,11,2016,Ghoulies,Giant Tongue,tt0089200 _zFjP61xNb0,1985.0,10,11,2016,Ghoulies,Ghoulie Clown Attacks,tt0089200 5mAI-v1nfOw,1985.0,6,11,2016,Ghoulies,Jonathan Raises His Father,tt0089200 PnmtF6EqeXU,1985.0,7,11,2016,Ghoulies,in the Pond,tt0089200 LCWzLnaJqBw,1985.0,4,11,2016,Ghoulies,Controlling Rebecca,tt0089200 r7J-Qx2InoU,1985.0,2,11,2016,Ghoulies,Summoning the,tt0089200 Ho-Sv55Yh20,1985.0,3,11,2016,Ghoulies,Testing Grizzel and Greedigut,tt0089200 EdJRbvXr4zs,1985.0,1,11,2016,Ghoulies,Human Sacrifice,tt0089200 i_qI6LOc54w,2012.0,8,10,2016,Ted,Partying with Flash Gordon,tt1637725 Rw-EoS3td0c,2012.0,10,10,2016,Ted,I Think We're Alone Now,tt1637725 GHOgErGvyTE,2012.0,9,10,2016,Ted,The Fight,tt1637725 AgZbPNlvHe0,2012.0,7,10,2016,Ted,'s Girlfriend,tt1637725 04uN57jOg-Q,2012.0,6,10,2016,Ted,White Trash Names,tt1637725 bc84pYZICbk,2012.0,5,10,2016,Ted,The Supermarket,tt1637725 f5e73A39TF4,2012.0,4,10,2016,Ted,Job Interview,tt1637725 IqfczS-tx_4,2012.0,3,10,2016,Ted,"They're Hookers, So It's Fine",tt1637725 foPh0pXXq-A,2012.0,2,10,2016,Ted,Thunder Buddies,tt1637725 s9nYXJweTPU,2012.0,1,10,2016,Ted,A Young Boy's Wish,tt1637725 A_ry95V0zNw,2007.0,12,12,2016,Teeth,Horny Old Man,tt0780622 j2u3UksivgA,2007.0,11,12,2016,Teeth,Step-Sister Seduction,tt0780622 PIAzmZ3FFy0,2007.0,10,12,2016,Teeth,A Bet Goes Bad,tt0780622 gusrRGgXCJg,2007.0,9,12,2016,Teeth,The Hero Conqueror,tt0780622 _ZIpnWucimQ,2007.0,7,12,2016,Teeth,OBGYN,tt0780622 E9paF0XzmtA,2007.0,8,12,2016,Teeth,Champagne Seduction,tt0780622 yTKHZcQlMP0,2007.0,5,12,2016,Teeth,No Means No,tt0780622 6vtpmEd3SNk,2007.0,6,12,2016,Teeth,Vagina Dentata,tt0780622 9WQnbIVJZjs,2007.0,4,12,2016,Teeth,Touched,tt0780622 ghtGcGtVtho,2007.0,1,12,2016,Teeth,The Promise,tt0780622 1GvlSPJ37Hw,2007.0,3,12,2016,Teeth,Back Door Man,tt0780622 FaWvQNVeDag,2007.0,2,12,2016,Teeth,Sex Ed,tt0780622 0oHT-rtiFZk,2013.0,8,10,2016,The World's End,There's Only One Gary King,tt1213663 PJYZAww0pgI,2013.0,10,10,2016,The World's End,To Err Is Human,tt1213663 l9LOKUiY0Dg,2013.0,9,10,2016,The World's End,It's All I've Got,tt1213663 gRBOrpdfsiM,2013.0,7,10,2016,The World's End,I Always Land on My Feet,tt1213663 Fhhbua6ELxo,2013.0,6,10,2016,The World's End,I Hate This Town!,tt1213663 UOsM81pRVWo,2013.0,5,10,2016,The World's End,Fighting the Twins,tt1213663 tYs7uguB_JQ,2013.0,3,10,2016,The World's End,The Bathroom Fight,tt1213663 Gtt2ibEe1NY,2013.0,4,10,2016,The World's End,One of Them or One of Them?,tt1213663 dshmyllg2HE,2013.0,2,10,2016,The World's End,The Five Musketeers,tt1213663 -JERO2LQSKc,2013.0,1,10,2016,The World's End,Unfinished Business,tt1213663 J4ciEVJMzIE,2014.0,10,10,2015,A Million Ways to Die in the West,You Really Do Have a Death Wish,tt2557490 w3sv1-F1JeI,2014.0,9,10,2015,A Million Ways to Die in the West,He Drank the Whole Bowl!,tt2557490 FHL1AJ0wbck,2014.0,8,10,2015,A Million Ways to Die in the West,Eddie's First Time,tt2557490 4diIC2MRjiA,2014.0,7,10,2015,A Million Ways to Die in the West,Sh**ty Showdown,tt2557490 ARTwLLhQZHw,2014.0,5,10,2015,A Million Ways to Die in the West,If You've Only Got a Moustache,tt2557490 DTZ1bgOIaAY,2014.0,6,10,2015,A Million Ways to Die in the West,Great Scott!,tt2557490 oTx_o5B0J1Q,2014.0,4,10,2015,A Million Ways to Die in the West,That's a Dollar Bill!,tt2557490 k-m4QOtv-rQ,2014.0,3,10,2015,A Million Ways to Die in the West,Things Could Be a Lot Worse,tt2557490 vRXk74BCp-Q,2014.0,2,10,2015,A Million Ways to Die in the West,Ways to Die,tt2557490 wlwh5x9eHBM,2014.0,1,10,2015,A Million Ways to Die in the West,Eddie's Girl,tt2557490 jrhB_dBxc-8,2013.0,12,12,2015,Hell Baby,Cometh,tt2318527 Ajc5z4sg-O4,2013.0,11,12,2015,Hell Baby,Now We Wait,tt2318527 GXnlDTh9sCU,2013.0,10,12,2015,Hell Baby,Puking Scene,tt2318527 UAfx1pipLQg,2013.0,9,12,2015,Hell Baby,Stoned Seance,tt2318527 Ah5f0zWgfvQ,2013.0,8,12,2015,Hell Baby,Bullet-Sucking Nurses,tt2318527 mL-M04A1D0g,2013.0,5,12,2015,Hell Baby,Badass Priests,tt2318527 quaACkqyF3M,2013.0,3,12,2015,Hell Baby,Horny Demon,tt2318527 vUTQexv1mzM,2013.0,7,12,2015,Hell Baby,Mmmm! Mmmm! Mmmm!,tt2318527 pbWOEIzQ_r4,2013.0,6,12,2015,Hell Baby,Demon Grandma?,tt2318527 TPlxZPhOsQM,2013.0,1,12,2015,Hell Baby,Haunted New House,tt2318527 Fr-ilDHT3gM,2013.0,4,12,2015,Hell Baby,Tight Shorts,tt2318527 cFjGykszgK0,2013.0,2,12,2015,Hell Baby,Shower Scene,tt2318527 EBPZaYv0_AM,2013.0,10,10,2015,All Is Lost,When All is Lost,tt2017038 ZCphcTQguUY,2013.0,9,10,2015,All Is Lost,Burning the Raft,tt2017038 G4WgfNcZgo4,2013.0,7,10,2015,All Is Lost,Help!,tt2017038 5vecZ4JxUZU,2013.0,8,10,2015,All Is Lost,Sharks,tt2017038 QOb4mg7oXO0,2013.0,6,10,2015,All Is Lost,Doomed,tt2017038 9l_USfDRi2E,2013.0,5,10,2015,All Is Lost,A Sinking Ship,tt2017038 aq45c8eGVoA,2013.0,4,10,2015,All Is Lost,The Life Raft,tt2017038 ElFzH0wPql4,2013.0,2,10,2015,All Is Lost,Capsized,tt2017038 JA9ZcCBGQ-M,2013.0,3,10,2015,All Is Lost,The Wave,tt2017038 R4vRfIL-Cv4,2013.0,1,10,2015,All Is Lost,Knocked Overboard,tt2017038 MUgLPMuwDfU,2009.0,12,12,2015,District 13: Ultimatum,Gangs United,tt1247640 FtykdGuzX-4,2009.0,9,12,2015,District 13: Ultimatum,Breaking In,tt1247640 AUBAs5rWsaY,2009.0,4,12,2015,District 13: Ultimatum,Rooftop Parkour,tt1247640 0OdOZTw1sAo,2009.0,10,12,2015,District 13: Ultimatum,Tao vs. the Soldiers,tt1247640 zqWR21AIFJA,2009.0,8,12,2015,District 13: Ultimatum,Let's Renovate,tt1247640 UixHUUJXcSw,2009.0,11,12,2015,District 13: Ultimatum,By the Rules,tt1247640 TMVem9xHaHY,2009.0,7,12,2015,District 13: Ultimatum,Police Station Fight,tt1247640 S8XR0_wlYUA,2009.0,6,12,2015,District 13: Ultimatum,Prison Break,tt1247640 xk3clsiBnRE,2009.0,5,12,2015,District 13: Ultimatum,Police Hotel,tt1247640 N1GwJt7fEGI,2009.0,3,12,2015,District 13: Ultimatum,A Set-Up,tt1247640 2hZFC6Q8zk0,2009.0,1,12,2015,District 13: Ultimatum,Van Gogh Fight,tt1247640 Jmlx4p_9MfA,2009.0,2,12,2015,District 13: Ultimatum,A Bomb Situation,tt1247640 uCMat1QDt6k,1997.0,12,12,2015,Suicide Kings,Comeuppance,tt0120241 ud421fnpmYs,1997.0,11,12,2015,Suicide Kings,Drop the Gun,tt0120241 -G_I8dQHN5s,1997.0,10,12,2015,Suicide Kings,Confession,tt0120241 QHuTlVI2zgQ,1997.0,9,12,2015,Suicide Kings,Tell 'Em!,tt0120241 gEhB7HuQk7M,1997.0,7,12,2015,Suicide Kings,The Widowmaker,tt0120241 IBjOZQCPPXQ,1997.0,8,12,2015,Suicide Kings,Hounds of Hell,tt0120241 J0SN6An2yCg,1997.0,5,12,2015,Suicide Kings,Nixing Nick the Nose,tt0120241 NHiG4hmxkjQ,1997.0,6,12,2015,Suicide Kings,Poker Face,tt0120241 grEV7MeCTsg,1997.0,3,12,2015,Suicide Kings,I Have to Pee,tt0120241 GI8Vrbnwre4,1997.0,2,12,2015,Suicide Kings,Whose Blood?,tt0120241 guWGxRXZbis,1997.0,4,12,2015,Suicide Kings,I Can't Let You Go,tt0120241 UmpctrXzd1E,1997.0,1,12,2015,Suicide Kings,Botched Kidnapping,tt0120241 SCiMcDcoi3E,2005.0,11,11,2015,Be Cool,Raji on Fire,tt0377471 swo423cXQuE,2005.0,8,11,2015,Be Cool,Bring It On Monologue,tt0377471 9k2nstrtUs0,2005.0,9,11,2015,Be Cool,Racial Epithets,tt0377471 51euUliFZ-w,2005.0,10,11,2015,Be Cool,That's Not Gangsta,tt0377471 HprI62nr3GI,2005.0,7,11,2015,Be Cool,Pawnshop Punch-Out,tt0377471 2_pqFqYME68,2005.0,5,11,2015,Be Cool,"Twinkle, Twinkle, Baby",tt0377471 DcfEOMgI_5o,2005.0,1,11,2015,Be Cool,"The ""F"" Word Once",tt0377471 FwCOP-yKD5w,2005.0,4,11,2015,Be Cool,Plus the Vig,tt0377471 Jqa0bO9PSqI,2005.0,6,11,2015,Be Cool,Raji At Bat,tt0377471 6qqJOQltyTY,2005.0,2,11,2015,Be Cool,The Raised Eyebrow Look,tt0377471 Yfof0ch3R7k,2005.0,3,11,2015,Be Cool,Sin's Spatula,tt0377471 KXldzNF7Y4Q,2011.0,10,10,2015,Bridesmaids,Reckless Driving,tt1478338 s9prJba2vkw,2011.0,9,10,2015,Bridesmaids,Pity Party,tt1478338 ILqwaOR70mU,2011.0,8,10,2015,Bridesmaids,Why Can't You Just Be Happy for Me?,tt1478338 sf9038zMVgo,2011.0,6,10,2015,Bridesmaids,Ready to Partay,tt1478338 PP9l4LP0WPI,2011.0,5,10,2015,Bridesmaids,Food Poisoning,tt1478338 ba5F8G778C0,2011.0,7,10,2015,Bridesmaids,Insulting Behavior,tt1478338 lyQ1m8xbJW0,2011.0,4,10,2015,Bridesmaids,Mean Tennis,tt1478338 qWsC4YHbOlw,2011.0,3,10,2015,Bridesmaids,Pulled Over,tt1478338 7kihC0VFaQE,2011.0,2,10,2015,Bridesmaids,The Engagement Party,tt1478338 g2iWVWVSb6Q,2011.0,1,10,2015,Bridesmaids,I Really Want You to Leave,tt1478338 vOTtCjGqXYo,2012.0,10,10,2015,Pitch Perfect,The Finals,tt1981677 zRFatzj_5do,2012.0,9,10,2015,Pitch Perfect,I've Got the Magic in Me,tt1981677 KfUxknvLpwY,2012.0,7,10,2015,Pitch Perfect,Lesbi Honest,tt1981677 wlFo4ydbP7c,2012.0,5,10,2015,Pitch Perfect,The Riff Off,tt1981677 cKpV6Wb81Ak,2012.0,6,10,2015,Pitch Perfect,Bella Fight,tt1981677 jki2_TXdG_Q,2012.0,8,10,2015,Pitch Perfect,Just the Way You Are,tt1981677 m5-bSlttk18,2012.0,4,10,2015,Pitch Perfect,I Have Nodes,tt1981677 eO1Jm4N4rlA,2012.0,2,10,2015,Pitch Perfect,Singing in the Shower,tt1981677 Ixi9imJZ40M,2012.0,3,10,2015,Pitch Perfect,The Cup Song,tt1981677 sMWnN_9GiX0,2012.0,1,10,2015,Pitch Perfect,Fat Amy,tt1981677 4nEpmBhIy1w,2014.0,10,11,2015,They Came Together,Molly's Wedding,tt2398249 MpiqRi2JW4M,2014.0,11,11,2015,They Came Together,Give Me Another Chance,tt2398249 dUi0j-vedRE,2014.0,9,11,2015,They Came Together,Three Holiday Parties,tt2398249 cFvxjIsjwoc,2014.0,8,11,2015,They Came Together,The Break Up and Make Up,tt2398249 lHNgUHi-WPM,2014.0,7,11,2015,They Came Together,Norah Jones Montage,tt2398249 VkwwtlAGSwk,2014.0,6,11,2015,They Came Together,First Date,tt2398249 sCG88QHentc,2014.0,5,11,2015,They Came Together,Coffee Date,tt2398249 Sqb85Gfj0Fw,2014.0,4,11,2015,They Came Together,Do You Want a Cup of Me?,tt2398249 jVGX-_Iodwc,2014.0,1,11,2015,They Came Together,How'd You Two Meet?,tt2398249 zLKCXUGISSQ,2014.0,3,11,2015,They Came Together,Two Benjamin Franklins,tt2398249 ZEwg4041Q9M,2014.0,2,11,2015,They Came Together,Proposing to Tiffany,tt2398249 QjLYqCsggvg,2004.0,9,10,2015,Walking Tall,Showdown at the Mill,tt0351977 b60vt92AzKQ,2004.0,10,10,2015,Walking Tall,Forest Fight,tt0351977 82dHCGddOSU,2004.0,8,10,2015,Walking Tall,Sheriff Station Shoot Out,tt0351977 tr97dNKSBao,2004.0,7,10,2015,Walking Tall,Under Attack,tt0351977 rqc2lyHj63A,2004.0,4,10,2015,Walking Tall,Trashing the Casino,tt0351977 N_xWF7HBpJk,2004.0,3,10,2015,Walking Tall,A Helluva Homecoming,tt0351977 vSLOINP7w0s,2004.0,6,10,2015,Walking Tall,Get Your Taillights Fixed,tt0351977 613uBNehFWQ,2004.0,1,10,2015,Walking Tall,Loaded Dice,tt0351977 1y1cthozBuc,2004.0,5,10,2015,Walking Tall,I'm Gonna Fix This Town,tt0351977 PJ8v0jwQGXc,2004.0,2,10,2015,Walking Tall,"Special Forces, Special Treatment",tt0351977 fRs243dwWkw,2010.0,4,5,2015,Machete,Motorcycle Gatling Guns,tt0985694 yP5TAs29e0U,2010.0,3,5,2015,Machete,'s Army,tt0985694 bR4b3meiMlw,2010.0,1,5,2015,Machete,A Gutsy Jump,tt0985694 FJv4vY954UU,2010.0,2,5,2015,Machete,"God Has Mercy, I Don't",tt0985694 oMWqB05lpRU,2010.0,3,3,2015,Knight and Day,The Running of the Bulls,tt1013743 xSVasSOEG28,2010.0,2,3,2015,Knight and Day,How Did I Get in the Bikini?,tt1013743 8wUtvaL4G9s,2010.0,1,3,2015,Knight and Day,Factory Shootout,tt1013743 ARoB1nWPsxo,2009.0,2,5,2015,(500) Days of Summer,Playing House,tt1022603 bBLKvPSgQ2A,2009.0,5,5,2015,(500) Days of Summer,All That True Love Nonsense,tt1022603 -fL94BTrFhs,2009.0,4,5,2015,(500) Days of Summer,Expectations vs. Reality,tt1022603 4rGia6hIWmk,2009.0,3,5,2015,(500) Days of Summer,I Love Us,tt1022603 DomJHvbM7qE,2009.0,1,5,2015,(500) Days of Summer,Copy Room Kiss,tt1022603 j-dYZPMpoqI,2003.0,10,10,2015,The Rundown,You Got the Moves,tt0327850 bq_WJS_HlPc,2003.0,9,10,2015,The Rundown,Boom Shakalaka!,tt0327850 WJXF9gcUcNU,2003.0,7,10,2015,The Rundown,Spinning Tarzan Jiu Jitsu,tt0327850 W_Piq1uGGfs,2003.0,8,10,2015,The Rundown,Recovering El Gato,tt0327850 VdYPqVZIB9M,2003.0,6,10,2015,The Rundown,Establish Dominance,tt0327850 25yR3OUlVbI,2003.0,4,10,2015,The Rundown,A Very Unpleasant Individual,tt0327850 jKyhNbLEKxY,2003.0,3,10,2015,The Rundown,Enjoy the Fall,tt0327850 qoxMZtAmAiI,2003.0,5,10,2015,The Rundown,The Tooth Fairy,tt0327850 23v-gPJiaZs,2003.0,2,10,2015,The Rundown,Don't Rock the Boat,tt0327850 DkMA0rGCU3s,2003.0,1,10,2015,The Rundown,Wrong Choice,tt0327850 8qyhhOM76Rg,2010.0,5,5,2015,Black Swan,Dance of the White Swan Scene,tt0947798 iOaD5cZNw0E,2010.0,4,5,2015,Black Swan,She's Trying to Replace Me Scene,tt0947798 dwD4JZsAuew,2010.0,2,5,2015,Black Swan,Attack It! Scene,tt0947798 -XCvw6NPfVM,2010.0,3,5,2015,Black Swan,Let It Go Scene,tt0947798 6KqG8CYcMKk,2010.0,3,3,2015,127 Hours,Radio Show Breakdown,tt1542344 qDFzVZklg1Q,2010.0,2,3,2015,127 Hours,Flash Flood Escape,tt1542344 Kd-81VRVQXw,2010.0,1,5,2015,Black Swan,Nightmarish Dance Scene,tt0947798 MgFF-JBCHUg,2010.0,1,3,2015,Trapped,127 Hours,tt1538819 MoOwbXap6LM,2008.0,5,5,2015,Horton Hears a Who!,We Are Here!,tt0451079 8eC08uGwWiw,2008.0,4,5,2015,Horton Hears a Who!,"A Person Is a Person, No Matter How Small",tt0451079 vP8C80lIRt0,2008.0,3,5,2015,Horton Hears a Who!,The Greatest Hero of Them All,tt0451079 7FkWC2S0MfY,2008.0,1,5,2015,Horton Hears a Who!,The Mayor of Whoville,tt0451079 InIEECDCSYU,2008.0,2,5,2015,Horton Hears a Who!,I'm Holding the Speck,tt0451079 E_RNZFm1mls,1989.0,2,11,2015,Road House,Pain Don't Hurt,tt0098206 uCZStp0Z_xg,1989.0,11,11,2015,Road House,This Is Our Town,tt0098206 c0JxgKT4jZc,1989.0,10,11,2015,Road House,Made for Each Other,tt0098206 NGhqTwxz4eQ,1989.0,8,11,2015,Road House,The Old-Fashioned Way,tt0098206 2KvZqLVSL9c,1989.0,9,11,2015,Road House,Find That Prick!,tt0098206 xuLi1MdUKQw,1989.0,7,11,2015,Road House,Prepare to Die!,tt0098206 jDMfIPRm7jY,1989.0,5,11,2015,Road House,Monster Truck,tt0098206 7aW8QnLYxY4,1989.0,6,11,2015,Road House,"I Love You, Mijo",tt0098206 SeKVwumCmBE,1989.0,3,11,2015,Road House,You're Too Stupid to Have a Good Time,tt0098206 6ZGvkZAP4lY,1989.0,4,11,2015,Road House,The Double Deuce,tt0098206 -QJsljIDKkk,1989.0,1,11,2015,Road House,Three Simple Rules,tt0098206 dGmuICb8a7Y,1957.0,11,11,2015,Paths of Glory,The Faithful Hussar,tt0050825 UHPq25mUJwk,1957.0,9,11,2015,Paths of Glory,Your Men Died Very Well,tt0050825 VICyZk-XSLA,1957.0,10,11,2015,Paths of Glory,I Pity You,tt0050825 75UHGiJjNuw,1957.0,6,11,2015,Paths of Glory,They're Going to Kill Us,tt0050825 G2mYFXmFQPw,1957.0,7,11,2015,Paths of Glory,Maintaining Discipline,tt0050825 0niEZsahtEo,1957.0,8,11,2015,Paths of Glory,The Execution,tt0050825 VkUKAtzE0r0,1957.0,3,11,2015,Paths of Glory,Charging the Ant Hill,tt0050825 UqLq7sMS2sU,1957.0,2,11,2015,Paths of Glory,We'll Take the Ant Hill,tt0050825 AApQkNSViGg,1957.0,5,11,2015,Paths of Glory,Closing Argument,tt0050825 G7Mvs5Ic8us,1957.0,4,11,2015,Paths of Glory,A Controversial Order,tt0050825 PU4PQ3OJn58,1957.0,1,11,2015,Paths of Glory,A Stroll Through the Trenches,tt0050825 YPZqfRINveI,1988.0,10,11,2015,Mystic Pizza,Pizza Connoisseurs,tt0095690 FIyHh9pO464,1988.0,11,11,2015,Mystic Pizza,'s Superb Review,tt0095690 ikqDLmNc678,1988.0,7,11,2015,Mystic Pizza,Porsche Full of Fish,tt0095690 HhFqWgJrtb0,1988.0,8,11,2015,Mystic Pizza,All You Love is my Dick,tt0095690 8mmqyI9CVWI,1988.0,9,11,2015,Mystic Pizza,Wipe Your Conscience,tt0095690 SAWm5lLfGZ0,1988.0,6,11,2015,Mystic Pizza,Caught With His Pants Down,tt0095690 kQI3S3inEXg,1988.0,5,11,2015,Mystic Pizza,Follow the Bread Crumbs,tt0095690 LSlXOh60wk0,1988.0,3,11,2015,Mystic Pizza,Hitching a Ride,tt0095690 JwgvbLF28fE,1988.0,2,11,2015,Mystic Pizza,A Shooting Star,tt0095690 FaLsWjMiIrI,1988.0,4,11,2015,Mystic Pizza,Don't Monkey With Tradition,tt0095690 WLqx522tlYU,1988.0,1,11,2015,Mystic Pizza,Wedding Blackout,tt0095690 TdT_PiRLsaI,1986.0,12,12,2015,Hoosiers,Jimmy's Final Shot,tt0091217 Ao50y1xdfW8,1986.0,11,12,2015,Hoosiers,David and Goliath,tt0091217 _gEt3iNmLyw,1986.0,9,12,2015,Hoosiers,Ollie Sinks His Free Throws,tt0091217 iE9CEAzLPKg,1986.0,10,12,2015,Hoosiers,Measuring the Massive Gym,tt0091217 C2ILSuQOmEg,1986.0,7,12,2015,Hoosiers,Shooter Runs the Picket Fence,tt0091217 X-HeG5tFKUo,1986.0,8,12,2015,Hoosiers,God Wants You on the Floor,tt0091217 zFaEUnrsjL4,1986.0,6,12,2015,Hoosiers,"I Play, Coach Stays",tt0091217 676TpKq_6Ok,1986.0,3,12,2015,Hoosiers,Benching Rade on Principle,tt0091217 z1F9D6LVTkA,1986.0,5,12,2015,Hoosiers,Coach Offers Shooter a Job,tt0091217 WUujUq9VHVs,1986.0,2,12,2015,Hoosiers,Coach Meets His Team,tt0091217 l1jCg_FmQmQ,1986.0,4,12,2015,Hoosiers,Coach's Word Is Law,tt0091217 Do7U7AkA5jA,1986.0,1,12,2015,Hoosiers,Your Coaching Days Are Over,tt0091217 x1-axqBZdNk,1993.0,10,10,2015,Falling Down,Fore!,tt0106856 hlzm7-gvTRg,1993.0,6,10,2015,Falling Down,The Customer is Always Right,tt0106856 9OhIdDNtSv0,1993.0,9,10,2015,Falling Down,Under Construction,tt0106856 0jSVwZ8w3C4,1993.0,8,10,2015,Falling Down,Nazi Surplus Store,tt0106856 yooamJf-T_8,1993.0,7,10,2015,Falling Down,Out of Order,tt0106856 pZfva5xDNLU,1993.0,5,10,2015,Falling Down,You Missed,tt0106856 1iWqn89nvJs,1993.0,4,10,2015,Falling Down,Drive-By Shooting,tt0106856 -UZY16_K3Pw,1993.0,3,10,2015,Falling Down,Mr. Lee,tt0106856 hlKMLkrSrDo,1993.0,2,10,2015,Falling Down,Gangland,tt0106856 Z4tC4qfv92Q,1993.0,1,10,2015,Falling Down,Consumer Rights,tt0106856 dy9fKXNAhA0,1955.0,9,10,2015,East of Eden,Jealous All My Life,tt0048028 Ro_k0jgMvKU,1955.0,10,10,2015,East of Eden,You Stay With Me,tt0048028 VfOrY7CidTA,1955.0,7,10,2015,East of Eden,Give Me a Good Life,tt0048028 f2SskRLd4F4,1955.0,8,10,2015,East of Eden,Say Hello to Your Mother,tt0048028 I3hVaKO5olI,1955.0,6,10,2015,East of Eden,Not Sorry Enough,tt0048028 gw_zwDaiuJs,1955.0,5,10,2015,East of Eden,Ferris Wheel Kiss,tt0048028 dG6C9JuB4YA,1955.0,4,10,2015,East of Eden,Nobody Holds Me,tt0048028 ud1tMFmSp2I,1955.0,3,10,2015,East of Eden,"Spark Up, Gas Down",tt0048028 Z6_Ti4ntV7g,1955.0,2,10,2015,East of Eden,Get Him Out of Here,tt0048028 WpO_eNT9StE,1955.0,1,10,2015,East of Eden,"Talk to Me, Father",tt0048028 2EKDKks9qtA,1965.0,9,10,2015,Doctor Zhivago,Somewhere My Love,tt0059113 zvA-7VuKQCU,1965.0,10,10,2015,Doctor Zhivago,Zhivago's Last Moments,tt0059113 P4kQvkvGi9M,1965.0,3,10,2015,Doctor Zhivago,Stick Together,tt0059113 4ipKK450XwM,1965.0,7,10,2015,Doctor Zhivago,Reunited,tt0059113 TrwIvCFIMZA,1965.0,8,10,2015,Doctor Zhivago,Lovely to Have Met Before,tt0059113 ozpct8zUA_U,1965.0,6,10,2015,Doctor Zhivago,The Private Life is Dead,tt0059113 rzs0681gdf0,1965.0,5,10,2015,Doctor Zhivago,The Train Jumper,tt0059113 eYMbAHC6RxU,1965.0,4,10,2015,Doctor Zhivago,No Lies,tt0059113 j-v6XtJFNQE,1965.0,2,10,2015,Doctor Zhivago,The Christmas Party,tt0059113 xvQLAg16ZD0,1965.0,1,10,2015,Doctor Zhivago,Peaceful Protest,tt0059113 GQmt9W6Ky7U,2001.0,9,11,2015,Legally Blonde,"The ""Bend & Snap""",tt0250494 GSu7BGbyJqc,2001.0,11,11,2015,Legally Blonde,Elle Wins!,tt0250494 8rNVaY7Stt4,2001.0,6,11,2015,Legally Blonde,"I'm Taking the Dog, Dumbass",tt0250494 I6uGId-a758,2001.0,10,11,2015,Legally Blonde,He's Gay!,tt0250494 HZtQl0lF3OE,2001.0,8,11,2015,Legally Blonde,Awarded an Internship,tt0250494 xs3_hNYAVRw,2001.0,7,11,2015,Legally Blonde,Impressing Professor Callahan,tt0250494 gwY85_MC_AY,2001.0,5,11,2015,Legally Blonde,Kicked Out of Class,tt0250494 EVmLV7swH2k,2001.0,2,11,2015,Legally Blonde,I'm Going to Harvard,tt0250494 rLcAQVgMTSY,2001.0,4,11,2015,Legally Blonde,First Day of School,tt0250494 IrDm-HzK2y8,2001.0,3,11,2015,Legally Blonde,Harvard Video Essay,tt0250494 yfy4and2vPg,2001.0,1,11,2015,Legally Blonde,Warner Breaks Up With Elle,tt0250494 5HksV7ZFuhM,2006.0,11,11,2015,Rocky Balboa,The Last Round,tt0479143 TuTOzEYtgzQ,2006.0,8,11,2015,Rocky Balboa,Training Montage,tt0479143 yg6v5Ur4pcM,2006.0,10,11,2015,Rocky Balboa,The Final Fight,tt0479143 QrmQqEg4isU,2006.0,7,11,2015,Rocky Balboa,How Winning is Done,tt0479143 CkqAe9DL56w,2006.0,9,11,2015,Rocky Balboa,It Ain't Over 'Til It's Over,tt0479143 ENRq7P9lAtg,2006.0,6,11,2015,Rocky Balboa,I'm the Champ,tt0479143 ZR2txV7X8sE,2006.0,2,11,2015,Rocky Balboa,The ESPN Simulation,tt0479143 XXk8J83A25A,2006.0,5,11,2015,Rocky Balboa,Fighters Fight,tt0479143 wTk1noW_8Lo,2006.0,1,11,2015,Rocky Balboa,Defending Marie,tt0479143 Et_Bdct1T0U,2006.0,3,11,2015,Rocky Balboa,The Beast Inside,tt0479143 6CxSbcM0vw4,2006.0,4,11,2015,Rocky Balboa,No Right to Deny Happiness,tt0479143 SLn4BL4gP_w,1995.0,12,12,2015,Home for the Holidays,Two Hours With a Beautiful Woman,tt0113321 3iJMdVAsPpc,1995.0,10,12,2015,Home for the Holidays,Leo Loves Claudia,tt0113321 vOaX_Naqxb8,1995.0,8,12,2015,Home for the Holidays,Disastrous Dinner,tt0113321 XVYzO4IEKro,1995.0,9,12,2015,Home for the Holidays,Thanksgiving Torture,tt0113321 5AZ2yDKNEXM,1995.0,11,12,2015,Home for the Holidays,"Par, Par, Bogey, Bogey",tt0113321 Cl-BpGO92Lo,1995.0,7,12,2015,Home for the Holidays,Aunt Gladys' Confession,tt0113321 7rI4qKw_X5g,1995.0,3,12,2015,Home for the Holidays,Ginny Johnson Drewer,tt0113321 RQV-8HxVB44,1995.0,4,12,2015,Home for the Holidays,Kooky Aunt Gladys,tt0113321 JOD_65vh8GI,1995.0,5,12,2015,Home for the Holidays,Sad Russell,tt0113321 kIrQoHQzxnY,1995.0,6,12,2015,Home for the Holidays,Tyrannosaurus Tommy,tt0113321 Hrztxo5t4Ic,1995.0,2,12,2015,Home for the Holidays,Claudia's Pitiful Message,tt0113321 032myLDgIqw,1995.0,1,12,2015,Home for the Holidays,Claudia is Fired,tt0113321 pf1K2ACmGKY,2003.0,9,12,2015,Pieces of April,What Love Does,tt0311648 CE8HyH5ldEY,2003.0,8,12,2015,Pieces of April,Tick-Tock Turkey,tt0311648 9RfC79nFT3U,2003.0,7,12,2015,Pieces of April,Smack Daddy,tt0311648 SCcBom6117E,2003.0,4,12,2015,Pieces of April,White Girl Problems,tt0311648 n7mNY2F938Y,2003.0,5,12,2015,Pieces of April,Mi Casa es Su Casa,tt0311648 -BuN5efFTXA,2003.0,6,12,2015,Pieces of April,Joy's Fake Out,tt0311648 dxMTCKAWIJg,2003.0,3,12,2015,Pieces of April,Braced for Disaster,tt0311648 -_HF-nKeabs,2003.0,2,12,2015,Pieces of April,Salt and Pepper,tt0311648 RuPWLi5ifL0,2003.0,1,12,2015,Pieces of April,Here I Come,tt0311648 ya84jIkf3b4,2003.0,12,12,2015,Pieces of April,They're Here!,tt0311648 5s5GkWkrX5Q,2003.0,10,12,2015,Pieces of April,Nice April Memories,tt0311648 ot3mRlgseio,2003.0,11,12,2015,Pieces of April,Thanksgiving,tt0311648 kfJINAKOgEY,2013.0,8,10,2015,Ender's Game,Game Over,tt1731141 qwMUlFU1Db4,2013.0,9,10,2015,Ender's Game,What Do You Mean We Won?,tt1731141 6RVyL8lNtj4,2013.0,7,10,2015,Ender's Game,The Final Battle,tt1731141 DSmDEMdKauI,2013.0,6,10,2015,Ender's Game,Battle Simulations,tt1731141 M6rf7s7NXnc,2013.0,5,10,2015,Ender's Game,Mazer Rackham's Story,tt1731141 3E9TWmE3dfI,2013.0,2,10,2015,Ender's Game,The Battle Room,tt1731141 2NPSwpdx6iQ,2013.0,3,10,2015,Ender's Game,Ender Battles Two Armies,tt1731141 79kT7fUtLD0,2013.0,4,10,2015,Ender's Game,I Quit,tt1731141 oDRFKZVZwcA,2013.0,1,10,2015,Ender's Game,The Mind Game,tt1731141 XPcqVHZo22M,2013.0,10,10,2015,Ender's Game,The Hive Queen,tt1731141 Qd4hB_s-GzA,2013.0,9,11,2015,Now You See Me,Goodbye New York,tt1670345 Is4mo3dbWvs,2013.0,8,11,2015,Now You See Me,The Car Chase,tt1670345 Vx9EOI4RyBs,2013.0,4,11,2015,Now You See Me,Robbing the Bank,tt1670345 8cLtNUD4Hcw,2013.0,6,11,2015,Now You See Me,Robbing Tressler,tt1670345 kJzOYZNQv6M,2013.0,7,11,2015,Now You See Me,Jack Fights Rhoades,tt1670345 GSQpio_F0Vc,2013.0,3,11,2015,Now You See Me,Nothing is Ever Locked,tt1670345 AQX2Q-V2Uh8,2013.0,5,11,2015,Now You See Me,Mentalist Interrogation,tt1670345 2bpkd6hwH6U,2013.0,2,11,2015,Now You See Me,The Piranha Tank,tt1670345 h4u9pO-98ZM,2013.0,11,11,2015,Now You See Me,Welcome to the Eye,tt1670345 aJ67Fz1Jf6E,2013.0,1,11,2015,Now You See Me,The Closer You Look the Less You See,tt1670345 HraqSpgcdgM,2013.0,10,11,2015,Now You See Me,Someone on the Inside,tt1670345 ib-1a-0LHh0,2014.0,7,10,2015,"I, Frankenstein",A Living Miracle,tt1418377 qNoGZiSKCaY,2013.0,3,10,2015,Texas Chainsaw,Meeting Leatherface,tt1572315 fZNPbMu2Ge0,2013.0,6,9,2015,Warm Bodies,I Came to See You,tt1588173 W_hzD9mTSpc,2014.0,9,10,2015,"I, Frankenstein",God Will Surely Damn You,tt1418377 x2lBq3c3AIY,2013.0,9,9,2015,Warm Bodies,You're Alive,tt1588173 jpIVQIuoX1g,2013.0,8,9,2015,Warm Bodies,Ready for a Fight,tt1588173 rYVsdfE_Wh8,2013.0,7,9,2015,Warm Bodies,You're a Corpse,tt1588173 NdcXHqLPufg,2013.0,3,9,2015,Warm Bodies,We Eat the Living,tt1588173 ZS5K9DzFIco,2013.0,2,9,2015,Warm Bodies,Play Dead,tt1588173 YAcZjKbm2tk,2013.0,4,9,2015,Warm Bodies,I Ate Your Boyfriend,tt1588173 4zT1vWidAJ0,2013.0,5,9,2015,Warm Bodies,We're Changing,tt1588173 ZD5vHtlpl3Q,2013.0,1,9,2015,Warm Bodies,Saved by a Zombie,tt1588173 RTnR82EswKE,2013.0,8,10,2015,The Last Stand,Cornfield Chase,tt1549920 bDm5fnJ1Hg0,2013.0,9,10,2015,The Last Stand,Game On,tt1549920 c2HEnbmtknM,2013.0,5,10,2015,The Last Stand,Welcome to Sommerton,tt1549920 FhnVceTIOTw,2013.0,6,10,2015,The Last Stand,Put the Hurt on Them,tt1549920 _jru7QsVP2Q,2013.0,7,10,2015,The Last Stand,I'm the Sheriff,tt1549920 HxdxfEN2v9s,2013.0,4,10,2015,The Last Stand,Kill the Lights,tt1549920 D9SLyzcYXw8,2013.0,10,10,2015,The Last Stand,You Are Under Arrest,tt1549920 fYb0fQOH11g,2013.0,3,10,2015,The Last Stand,The Roadblock,tt1549920 ryRzxiWudaA,2013.0,2,10,2015,The Last Stand,Cortez Escapes,tt1549920 1Yh8ZXaDY00,2013.0,1,10,2015,The Last Stand,She Has a Little Kick,tt1549920 VEc6d81jgQ0,2013.0,9,10,2015,Texas Chainsaw,Last Kill,tt1572315 rGDHR_rveJc,2013.0,8,10,2015,Texas Chainsaw,I'm Your Cousin!,tt1572315 02uIi7094E8,2013.0,5,10,2015,Texas Chainsaw,Leatherface vs. Van,tt1572315 I2qyEk67i4Y,2013.0,2,10,2015,Texas Chainsaw,What's in the Basement?,tt1572315 v_wQqiFXgkY,2013.0,1,10,2015,Texas Chainsaw,Texas Shootout Massacre,tt1572315 6nTk0X-QW_0,2014.0,2,10,2015,"I, Frankenstein",I Hunted Those Who Hunted Me,tt1418377 cHRpQP_dp8Y,2014.0,4,10,2015,"I, Frankenstein",I Don't See a Soul,tt1418377 rbYJ1-y-sk8,2014.0,3,10,2015,"I, Frankenstein",Naberius' Experiment,tt1418377 H9PhEc4cgVw,2014.0,10,10,2015,"I, Frankenstein",I Am Not Your Son,tt1418377 i7Bx0--TioI,2013.0,4,10,2015,Texas Chainsaw,A Grave Problem,tt1572315 Fm4WFtwxJ9g,2013.0,6,10,2015,Texas Chainsaw,Carnival Chase,tt1572315 0ROOrIJuhJw,2013.0,7,10,2015,Texas Chainsaw,Shocking Discoveries,tt1572315 6F-zsgYCXwQ,2013.0,10,10,2015,Texas Chainsaw,He Will Protect You,tt1572315 FX4J_vERu9I,2014.0,5,10,2015,"I, Frankenstein",The Fight for Adam,tt1418377 eXGYvqetC18,2014.0,1,10,2015,"I, Frankenstein",The Rumor Is True,tt1418377 WJs5SraEnMM,2014.0,6,10,2015,"I, Frankenstein",Rescue of Leonore,tt1418377 K8IgSndDsjs,2014.0,8,10,2015,"I, Frankenstein",This Ends Tonight,tt1418377 hQD_fanPkns,2011.0,5,5,2015,Diary of a Wimpy Kid: Rodrick Rules,Loded Diper Scene,tt1650043 Z5nYySfvSi0,2011.0,3,5,2015,Diary of a Wimpy Kid: Rodrick Rules,In the Ladies' Room Scene,tt1650043 2tVvgJbqH7U,2011.0,2,5,2015,Diary of a Wimpy Kid: Rodrick Rules,Did Somebody Say Dance? Scene,tt1650043 TKkrgiTpj1c,2011.0,1,5,2015,Diary of a Wimpy Kid: Rodrick Rules,Poopy Pants Scene,tt1650043 _kyTyYh6LZ0,2011.0,4,5,2015,Diary of a Wimpy Kid: Rodrick Rules,The Remarkable Rowley Scene,tt1650043 WhWW2IXg_-E,2014.0,10,10,2015,Ride Along,I Got Shot!,tt1408253 bb9m4vvEkHc,2014.0,9,10,2015,Ride Along,This Ain't No Damn Video Game!,tt1408253 J0uhG-I0GZ4,2014.0,8,10,2015,Ride Along,I'm Crazy!,tt1408253 B3ECx3J3LTQ,2014.0,6,10,2015,Ride Along,Crazy Cody,tt1408253 F2Bw4OLZHq8,2014.0,7,10,2015,Ride Along,Save the Strippers,tt1408253 hnCQCX3AHzY,2014.0,4,10,2015,Ride Along,I'm the Definition of Tough,tt1408253 _NVC5g_Yngg,2014.0,5,10,2015,Ride Along,The Shooting Range,tt1408253 35D2hJCrDVw,2014.0,2,10,2015,Ride Along,You Got No Legs,tt1408253 A0R1F_FhwRg,2014.0,3,10,2015,Ride Along,A Hostile Situation,tt1408253 BzEjGy7EPIc,2014.0,1,10,2015,Ride Along,The Future Mrs. Blackhammer,tt1408253 lX4H0NmDMck,2015.0,10,10,2015,Pitch Perfect 2,The Bellas' Final Performance,tt2848292 rSCm0viS2mM,2015.0,9,10,2015,Pitch Perfect 2,I'm Solo-ing Here!,tt2848292 pCQ0k_WvwvQ,2015.0,7,10,2015,Pitch Perfect 2,Death-Defying Team Building,tt2848292 dLXri8sYr6Q,2015.0,8,10,2015,Pitch Perfect 2,When I'm Gone,tt2848292 5EFY3vpKDII,2015.0,6,10,2015,Pitch Perfect 2,The Butts Riff-Off,tt2848292 lssQ4w2V4XM,2015.0,3,10,2015,Pitch Perfect 2,Das Sound Machine,tt2848292 U7xQuGf5QHA,2015.0,1,10,2015,Pitch Perfect 2,We Have a Commando Situation,tt2848292 MCFqMGgv1YY,2015.0,5,10,2015,Pitch Perfect 2,Groovy Like a Drive-In Movie,tt2848292 C_BolURdHXo,2015.0,4,10,2015,Pitch Perfect 2,Your Team is Like a Heated Mess,tt2848292 2wdQcUUgce0,2015.0,2,10,2015,Pitch Perfect 2,Oh Em Aca Gee,tt2848292 sXHsY1eoIzA,2015.0,9,10,2015,Jurassic World,T-Rex vs. Indominus Scene,tt0369610 oPS8-oRvVh4,2015.0,10,10,2015,Jurassic World,Dinosaur Alliance Scene,tt0369610 0FkeGnobtfo,2015.0,8,10,2015,Jurassic World,Raptors vs. Indominus Scene,tt0369610 WqFEn5wQhBI,2015.0,7,10,2015,Jurassic World,The Raptors Are Coming Scene,tt0369610 d0x7-oo9NAk,2015.0,5,10,2015,Jurassic World,Raptor Recon Scene,tt0369610 LBTE3aH5gpw,2015.0,4,10,2015,Jurassic World,Pterosaur Attack Scene,tt0369610 5ywvhn6Y4aE,2015.0,3,10,2015,Jurassic World,Indominus Attacks the Gyrosphere Scene,tt0369610 zGzurjIEhNA,2015.0,6,10,2015,Jurassic World,The New Alpha Scene,tt0369610 OjxcWhQYMKw,2015.0,2,10,2015,Jurassic World,It's In There With You Scene,tt0369610 Q3znhTOUqi8,2015.0,1,10,2015,Jurassic World,Stand Down Scene,tt0369610 5KnFcsSIzbg,2015.0,10,10,2015,Furious 7,The Last Ride,tt2820852 2bWostOI7uo,2015.0,9,10,2015,Furious 7,Don't Miss,tt2820852 bjqsWtO5Xjg,2015.0,7,10,2015,Furious 7,I Am the Cavalry,tt2820852 pQeZSHyCe4Q,2015.0,8,10,2015,Furious 7,The Street Always Wins,tt2820852 Ff_G9EYI1xY,2015.0,6,10,2015,Furious 7,Too Slow!,tt2820852 JVg5X7dUlLM,2015.0,5,10,2015,Furious 7,Cars Don't Fly,tt2820852 UCYjKqnTM_U,2015.0,3,10,2015,Furious 7,On the Edge,tt2820852 2uRRExAY-8g,2015.0,4,10,2015,Furious 7,Letty vs. Kara,tt2820852 0Wt72bHrHFo,2015.0,2,10,2015,Furious 7,Rescuing Ramsey,tt2820852 1XqI8Lyp21A,2015.0,1,10,2015,Furious 7,Hobbs vs. Shaw,tt2820852 Aap_UtTuzYs,2014.0,10,10,2015,The Theory of Everything,Look What We Made,tt2980516 KLp6N46er6Y,2014.0,9,10,2015,The Theory of Everything,"While There is Life, There is Hope",tt2980516 EK9aDAUBBhE,2014.0,8,10,2015,The Theory of Everything,I Have Loved You,tt2980516 28MSXeKCm00,2014.0,7,10,2015,The Theory of Everything,Welcome to the Future,tt2980516 _r-SkfDZphk,2014.0,4,10,2015,The Theory of Everything,"No Boundaries, No Beginning and No God",tt2980516 pU3klLr1CPA,2014.0,6,10,2015,The Theory of Everything,The Spelling Board,tt2980516 q6XF66xysgQ,2014.0,5,10,2015,The Theory of Everything,Stephen Must Live,tt2980516 62tZR_Z_y08,2014.0,2,10,2015,The Theory of Everything,It's Called Motor Neurone Disease,tt2980516 8kaJJGWYXxs,2014.0,1,10,2015,The Theory of Everything,The Black Hole Thesis,tt2980516 xG4b0-DSLrI,2014.0,3,10,2015,The Theory of Everything,An Extraordinary Theory,tt2980516 vCo2uqlAi4s,1971.0,6,7,2015,Diamonds Are Forever,Bambi and Thumper,tt0066995 i2MdefwrjCQ,1971.0,7,7,2015,Diamonds Are Forever,Your Problems Are Behind You,tt0066995 FVqRqUIDG-A,1971.0,4,7,2015,Diamonds Are Forever,Moon Buggy Chase,tt0066995 UyzhnEqtWAc,1971.0,3,7,2015,Diamonds Are Forever,A Winner Every Time,tt0066995 JGyNRQzR_Vg,1983.0,10,10,2015,Never Say Never Again,Never?,tt0086006 qraA12BrzVo,1971.0,5,7,2015,Diamonds Are Forever,Two Blofelds,tt0066995 X33UjqGVc18,1971.0,2,7,2015,Diamonds Are Forever,Slumber Inc.,tt0066995 m1AuOoDw25g,1983.0,9,10,2015,Never Say Never Again,Horse Jump,tt0086006 wLPEeDsZwGs,1971.0,1,7,2015,Diamonds Are Forever,Tiffany Case,tt0066995 JghXTjexZpE,1983.0,8,10,2015,Never Say Never Again,I'm Going to Kiss You,tt0086006 8RlDsORXN7c,1983.0,6,10,2015,Never Say Never Again,Motorcycle Chase,tt0086006 nuVfizTRHZs,1983.0,7,10,2015,Never Say Never Again,A Superior Woman,tt0086006 wUT5CpgYXMM,1983.0,5,10,2015,Never Say Never Again,The Domination Game,tt0086006 CCwUD5fwJwc,1983.0,4,10,2015,Never Say Never Again,Shark Attack,tt0086006 rF2GB1UYxtw,1983.0,3,10,2015,Never Say Never Again,Fatima Blush,tt0086006 qH3jaW3YJ9o,1983.0,2,10,2015,Never Say Never Again,Gratuitous Sex and Violence,tt0086006 F5gztKbIoaY,1983.0,1,10,2015,Never Say Never Again,Weight Room Fight,tt0086006 iKqEJ2xeATo,1967.0,10,10,2015,You Only Live Twice,May I Smoke?,tt0062512 dp5dgNKh77M,1967.0,7,10,2015,You Only Live Twice,Helicopter Dogfight,tt0062512 0ay2sO6tWbE,1967.0,9,10,2015,You Only Live Twice,I Am Blofeld,tt0062512 -Cc7j0yr2BY,1967.0,6,10,2015,You Only Live Twice,Little Nellie,tt0062512 VVLlZy4m23c,1967.0,8,10,2015,You Only Live Twice,Bedroom Assassin,tt0062512 GaGIb91Mi2w,1967.0,3,10,2015,You Only Live Twice,Just a Drop In the Ocean,tt0062512 f5wOz-3L1jQ,1967.0,4,10,2015,You Only Live Twice,Shipyard Skirmish,tt0062512 IBqY6eBSQZw,1967.0,5,10,2015,You Only Live Twice,Sorry to Leave You,tt0062512 PtlmPi0DXws,1967.0,2,10,2015,You Only Live Twice,A Civilized Bath,tt0062512 uIQL79UQG40,1967.0,1,10,2015,You Only Live Twice,Good Evening,tt0062512 yJlbyxOHrdI,2002.0,10,10,2015,Die Another Day,My Dreams Can Kill You,tt0246460 P3CF3QER_h4,2002.0,9,10,2015,Die Another Day,Tsunami Surfing,tt0246460 oNGZFJUThHY,2002.0,7,10,2015,Die Another Day,Laser Fight,tt0246460 DvoPZUYUdEM,2002.0,8,10,2015,Die Another Day,Looks Can Be Deceptive,tt0246460 GhTOt1_Miag,2002.0,6,10,2015,Die Another Day,The Icarus Project,tt0246460 Y6SIARg-j5c,2002.0,1,10,2015,Die Another Day,Hovercraft Chase,tt0246460 fNxA27iQkGw,2002.0,4,10,2015,Die Another Day,Old-Fashioned Sword Fight,tt0246460 lViscSQzK8Q,2002.0,5,10,2015,Die Another Day,Cutting Edge Stuff,tt0246460 LzKWVeX9qQU,2002.0,2,10,2015,Die Another Day,Just Surviving,tt0246460 -4kio7152q4,2002.0,3,10,2015,Die Another Day,Jinx,tt0246460 4Vlw-NzSvoc,1963.0,8,10,2015,From Russia with Love,Helicopter Chase,tt0057076 XlvqgnIkzZU,1963.0,6,10,2015,From Russia with Love,The First One Won't Kill You,tt0057076 jbdRO4BSXSU,1963.0,5,10,2015,From Russia with Love,Russian Clocks Are Always Correct,tt0057076 VshyrsRdoF0,1964.0,6,9,2015,Goldfinger,My Name is Pussy Galore,tt0058150 GvyKxUL0x0M,1964.0,9,9,2015,Goldfinger,'s Last Flight,tt0058150 r449aYwQvE8,1964.0,8,9,2015,Goldfinger,Bond Fights Oddjob,tt0058150 5p8meeqGJbg,1964.0,7,9,2015,Goldfinger,Creative Escape,tt0058150 fZPyHZo5oDE,1964.0,5,9,2015,Goldfinger,I Expect You to Die,tt0058150 AAbtiIrTqCE,1964.0,4,9,2015,Goldfinger,Oddjob,tt0058150 SpSnm6rxTqU,1964.0,2,9,2015,Goldfinger,Gin and Jill,tt0058150 -SXbmeFCnTM,1963.0,10,10,2015,From Russia with Love,A Maid With Evil Kicks,tt0057076 USD2Y7wRNgk,1964.0,3,9,2015,Goldfinger,The Golden Girl,tt0058150 hON2sYpnJoQ,1964.0,1,9,2015,Goldfinger,Positively Shocking,tt0058150 zyTVafoAylI,1963.0,9,10,2015,From Russia with Love,Setting SPECTRE Ablaze,tt0057076 cBiLSCP95Nk,1963.0,7,10,2015,From Russia with Love,A Standard Kit,tt0057076 jaA7_aOD2ig,1963.0,4,10,2015,From Russia with Love,It's the Right Size,tt0057076 xsL7T32XG3M,1963.0,3,10,2015,From Russia with Love,Gypsy Camp Assault,tt0057076 1XEn8W3UA3w,1963.0,2,10,2015,From Russia with Love,Gypsy Catfight,tt0057076 MDJ7Du14G-4,1963.0,1,10,2015,From Russia with Love,A Nasty Briefcase,tt0057076 fAfd4y1IY-U,2008.0,8,10,2015,Quantum of Solace,You Will Burn,tt0830515 EANmB0vOPqo,2008.0,9,10,2015,Quantum of Solace,Deadly Decisions,tt0830515 C6hIucqz4_A,2008.0,7,10,2015,Quantum of Solace,Aerial Pursuit,tt0830515 i0yWgvRAqTU,2008.0,3,10,2015,Quantum of Solace,Blank Slate,tt0830515 _vHFGZXqIis,2008.0,10,10,2015,Quantum of Solace,Unfinished Business,tt0830515 q8sWDRO5C4Q,2008.0,4,10,2015,Quantum of Solace,Kidnapping Camille,tt0830515 lVdSRz3Jsjo,2008.0,5,10,2015,Quantum of Solace,A Night at the Opera,tt0830515 y88S2uDB1ks,2008.0,2,10,2015,Quantum of Solace,The Hunt for Revenge,tt0830515 P056r-oeODU,2008.0,6,10,2015,Quantum of Solace,Forgive Yourself,tt0830515 7TG6R36bkgs,2008.0,1,10,2015,Quantum of Solace,We Have People Everywhere,tt0830515 eTeBFTlR0VI,2012.0,10,10,2015,Skyfall,One Thing Right,tt1074638 9MdivySyCng,1965.0,9,10,2015,Thunderball,Bond Enters the Battle,tt0059800 COqQwiq4uA8,1965.0,10,10,2015,Thunderball,Domino's Revenge,tt0059800 zkTbNH79i9A,1965.0,8,10,2015,Thunderball,Underwater Battle,tt0059800 SR6W8_yd3yM,1965.0,5,10,2015,Thunderball,A Passionate Man,tt0059800 n6rv6RO9ZFY,1965.0,7,10,2015,Thunderball,He Got the Point,tt0059800 JPDhxTbWjuc,1965.0,6,10,2015,Thunderball,The Shark Tank,tt0059800 KzCVggIa4uE,1965.0,3,10,2015,Thunderball,Nice To Have Met You,tt0059800 aQsyA4n7GZI,1965.0,4,10,2015,Thunderball,Use With Special Care,tt0059800 z39yOZpcji0,1965.0,2,10,2015,Thunderball,SPECTRE Meeting,tt0059800 4pUeurfZ5n8,1965.0,1,10,2015,Thunderball,Jet Pack Escape,tt0059800 UfmbUwrXatE,2006.0,8,10,2015,Casino Royale,Straight Flush,tt0381061 uO47LgAVYCc,1969.0,5,9,2015,On Her Majesty's Secret Service,One Ski Escape,tt0064757 MochwVdcaEk,1969.0,8,9,2015,On Her Majesty's Secret Service,The Luge Chase,tt0064757 C09knP1SAyA,1995.0,6,8,2015,GoldenEye,The Exploding Pen,tt0113189 DdktDH98D_g,1995.0,2,8,2015,GoldenEye,Satellite Attack,tt0113189 roaWSb9xc8I,2012.0,9,10,2015,Skyfall,Icy Plunge,tt1074638 p0udEu1z-jg,1995.0,7,8,2015,GoldenEye,Spy vs. Spy,tt0113189 vAJAM1jm2xI,1995.0,4,8,2015,GoldenEye,Train vs. Tank,tt0113189 wGmDAjRRNXs,1995.0,8,8,2015,GoldenEye,"For England, James?",tt0113189 YsQEo4ja5Z8,2006.0,10,10,2015,Casino Royale,Vesper's Last Breath,tt0381061 Of7LHW5cCBQ,1995.0,5,8,2015,GoldenEye,A Good Squeeze,tt0113189 JA4fL1qiQTU,1995.0,3,8,2015,GoldenEye,Back From the Dead,tt0113189 lCCeLue8owM,1995.0,1,8,2015,GoldenEye,Over the Edge,tt0113189 beAc5oqxBHw,2012.0,8,10,2015,Skyfall,Courtroom Shootout,tt1074638 seFIcguvgXk,1997.0,6,7,2015,Tomorrow Never Dies,Banner Escape,tt0120347 -qVNWgbzbS8,1985.0,6,10,2015,A View to a Kill,Death by Propeller,tt0090264 UBPOSCR4el4,1985.0,7,10,2015,A View to a Kill,Mansion Shootout,tt0090264 kG8GuXOjIPA,2012.0,7,10,2015,Skyfall,Here's Your Prize,tt1074638 m4a6jkZiOkM,2012.0,3,10,2015,Skyfall,How Much Do You Know About Fear?,tt1074638 H07vHL7APyU,1974.0,10,10,2015,The Man with the Golden Gun,I'll Kill You,tt0071807 oSo9Wu-jAyY,1969.0,6,9,2015,On Her Majesty's Secret Service,Mr. and Mrs. James Bond,tt0064757 ZVQNsHBi9oA,1974.0,9,10,2015,The Man with the Golden Gun,Dueling Wits,tt0071807 D2HaKTqp4fQ,1974.0,6,10,2015,The Man with the Golden Gun,Ever Heard of Evel Knievel?,tt0071807 SlL11KaxU7w,1974.0,8,10,2015,The Man with the Golden Gun,Solar Power,tt0071807 6B-QUGSCV6c,1974.0,7,10,2015,The Man with the Golden Gun,The Flying Car,tt0071807 LKp3HoZGP2E,1969.0,7,9,2015,On Her Majesty's Secret Service,Attacking Piz Gloria,tt0064757 IVhxiyqp4do,1974.0,3,10,2015,The Man with the Golden Gun,Boat Pursuit,tt0071807 WCKRXHDI9Ro,1974.0,2,10,2015,The Man with the Golden Gun,Ditching the Dojo,tt0071807 f__qWwak6Zg,1974.0,5,10,2015,The Man with the Golden Gun,A Gun and a Bag of Peanuts,tt0071807 hpaXyCsOZUg,1974.0,4,10,2015,The Man with the Golden Gun,"Two Girls, One Bond",tt0071807 b1KjK4fd3ZU,1974.0,1,10,2015,The Man with the Golden Gun,Meeting Andrea,tt0071807 HZEaFYQecn8,1989.0,10,10,2015,Licence to Kill,Franz is Fried,tt0097742 8KFPOKVSi7M,1989.0,9,10,2015,Licence to Kill,Tilted Tanker,tt0097742 RFTI9DnYSpY,1989.0,8,10,2015,Licence to Kill,Dario Gets Shredded,tt0097742 ter7pAZF_nY,1989.0,7,10,2015,Licence to Kill,High Pressure,tt0097742 _CO3CMXf19A,1989.0,5,10,2015,Licence to Kill,Q's New Gadgets,tt0097742 dCCo8xDMsJE,1989.0,6,10,2015,Licence to Kill,Watch the Birdie,tt0097742 84k1F9o1g7k,1989.0,3,10,2015,Licence to Kill,From Sea to Sky,tt0097742 GHZnuSLPSG4,1989.0,4,10,2015,Licence to Kill,Your Luck Has Changed,tt0097742 9F_FhwkKdSw,1989.0,1,10,2015,Licence to Kill,Let's Go Fishing,tt0097742 Zl9yu2xvv78,1989.0,2,10,2015,Licence to Kill,Fed to the Sharks,tt0097742 I_4ZduVVJrc,1969.0,3,9,2015,On Her Majesty's Secret Service,Blofeld's Plan,tt0064757 JzPOYDni_FQ,1969.0,4,9,2015,On Her Majesty's Secret Service,Night Ski Chase,tt0064757 VDWYVgMxBss,1999.0,7,10,2015,The World Is Not Enough,Sawing Helicopters,tt0143145 ZhBCiQ49Iz8,1969.0,1,9,2015,On Her Majesty's Secret Service,This Never Happened to the Other Fella,tt0064757 BG59rpilakA,1969.0,9,9,2015,On Her Majesty's Secret Service,All The Time in the World,tt0064757 QBip3RFko4I,1969.0,2,9,2015,On Her Majesty's Secret Service,Just a Slight Stiffness,tt0064757 YpHAGZoV1ds,2012.0,6,10,2015,Skyfall,A Waste of Good Scotch,tt1074638 -gZPZLSUZZ0,2012.0,5,10,2015,Skyfall,The Two Survivors,tt1074638 m5p1wM1ZHQ0,2012.0,4,10,2015,Skyfall,In the Dragon's Den,tt1074638 yV8-IGY64pE,2012.0,1,10,2015,Skyfall,Motorcycle Chase,tt1074638 9NG5mJgw6Yg,2012.0,2,10,2015,Skyfall,Take the Shot,tt1074638 UQRxN8qagG0,2006.0,9,10,2015,Casino Royale,Bond and Vesper,tt0381061 ifFEIzFztAo,2006.0,5,10,2015,Casino Royale,Vesper Lynd,tt0381061 xAPOeXEUwnk,2006.0,3,10,2015,Casino Royale,The Embassy,tt0381061 38nBkookHsI,2006.0,4,10,2015,Casino Royale,At the Beach,tt0381061 J11TVWwQNvI,2006.0,2,10,2015,Casino Royale,Parkour Chase,tt0381061 IsGdB6a1Evc,2006.0,7,10,2015,Casino Royale,Bond Poisoned,tt0381061 0quEnseH0zo,2006.0,1,10,2015,Casino Royale,Double-O Status,tt0381061 BI_Vx6y7xG8,2006.0,6,10,2015,Casino Royale,All In,tt0381061 3opX0w7T_qo,1999.0,8,10,2015,The World Is Not Enough,One Last Screw,tt0143145 Q1WdlXsvk3U,1999.0,10,10,2015,The World Is Not Enough,She's Waiting For You,tt0143145 7DmN0--tZcE,1999.0,6,10,2015,The World Is Not Enough,Defusing the Bomb,tt0143145 HJV1Cqh8M5M,1999.0,5,10,2015,The World Is Not Enough,Escaping the Silo,tt0143145 XhT1nAzegiE,1999.0,2,10,2015,The World Is Not Enough,Ski Chase,tt0143145 K7p93XsmJ0c,1999.0,9,10,2015,The World Is Not Enough,I Never Miss,tt0143145 m1Q_m9pvy2A,1999.0,4,10,2015,The World Is Not Enough,A Dangerous Game,tt0143145 bQyfZXYp7Mg,1999.0,3,10,2015,The World Is Not Enough,X-Ray Glasses,tt0143145 yk-b5jvZjLM,1999.0,1,10,2015,The World Is Not Enough,London Boat Chase,tt0143145 gappVpWfuCA,1997.0,4,7,2015,Tomorrow Never Dies,The Printing Press,tt0120347 RB_-9bINJCM,1997.0,3,7,2015,Tomorrow Never Dies,Too Close for Comfort,tt0120347 5fAASR7YMDE,1997.0,5,7,2015,Tomorrow Never Dies,The Sunken Ship,tt0120347 Ws4ETwvXFw0,1997.0,1,7,2015,Tomorrow Never Dies,Racing the Missile,tt0120347 7PqjhsPYyy4,1997.0,2,7,2015,Tomorrow Never Dies,Worldwide Domination,tt0120347 NweXJhbk9P0,1997.0,7,7,2015,Tomorrow Never Dies,Some Breaking News for You,tt0120347 X8J0iWSsYV0,1981.0,10,10,2015,For Your Eyes Only,Showdown at the Monastery,tt0082398 5fg1GTRuYHg,1981.0,7,10,2015,For Your Eyes Only,Dune Buggy Attack,tt0082398 yuBFthJcBiA,1981.0,8,10,2015,For Your Eyes Only,Armored Diver Attack,tt0082398 PPwud5IUnYs,1981.0,9,10,2015,For Your Eyes Only,Keel-Hauled,tt0082398 gSN6EodbL1c,1981.0,4,10,2015,For Your Eyes Only,Motorcycle Ski Chase,tt0082398 4z9TimZytDI,1981.0,6,10,2015,For Your Eyes Only,Hockey Assassins,tt0082398 T-KYqRfLg4U,1981.0,3,10,2015,For Your Eyes Only,Stinging in the Rain,tt0082398 YBgsfgkgtqk,1981.0,5,10,2015,For Your Eyes Only,Bobsled Chase,tt0082398 AH25lc44Og0,1981.0,2,10,2015,For Your Eyes Only,Crossbow Assassin,tt0082398 SM-Y8FPMqzg,1981.0,1,10,2015,For Your Eyes Only,A Pleasant Flight,tt0082398 RCzC3ZeMxws,1985.0,5,10,2015,A View to a Kill,Anybody Else Want to Drop Out?,tt0090264 tSZtoveaa0A,1985.0,10,10,2015,A View to a Kill,Showdown Over San Francisco,tt0090264 dezECMjxlCI,1985.0,2,10,2015,A View to a Kill,Paris Chase,tt0090264 do6yVKI5M-o,1985.0,3,10,2015,A View to a Kill,All Wrapped Up,tt0090264 yC4LZXraLBM,1985.0,9,10,2015,A View to a Kill,Hanging on for Dear Life,tt0090264 BbryMMaAUKo,1985.0,8,10,2015,A View to a Kill,May Day's Sacrifice,tt0090264 2j6I87SIfbM,1985.0,4,10,2015,A View to a Kill,Deadly Steeplechase,tt0090264 f4-sMr967Jw,1985.0,1,10,2015,A View to a Kill,Call Me James,tt0090264 PzuBG7VmIlk,1983.0,10,10,2015,Octopussy,Fight on the Plane,tt0086034 pHQsot2suvI,1983.0,8,10,2015,Octopussy,Not Clowning Around,tt0086034 zBeW_hheeGo,1983.0,9,10,2015,Octopussy,Hot Air Balloon Assault,tt0086034 _qVs22tSUnA,1983.0,6,10,2015,Octopussy,Car vs. Train,tt0086034 _v1FiZlF3bU,1983.0,7,10,2015,Octopussy,Boxcar Battle,tt0086034 4gB-5OngLWQ,1983.0,4,10,2015,Octopussy,Jungle Escape,tt0086034 jF5_WqbTmW8,1983.0,5,10,2015,Octopussy,The Buzz Saw Assassin,tt0086034 MK1fYMxkkTA,1983.0,2,10,2015,Octopussy,Get Off My Bed!,tt0086034 M4oJLImqZds,1983.0,3,10,2015,Octopussy,Problems Keeping It Up,tt0086034 dLl5PQg_Hag,1973.0,9,10,2015,Live and Let Die,The Shark Tank,tt0070328 2xLWJOG7dO4,1983.0,1,10,2015,Octopussy,Fill 'Er Up,tt0086034 xQFsE2WoXL0,1973.0,10,10,2015,Live and Let Die,Being Disarming,tt0070328 KTQnnwDN3eU,1973.0,8,10,2015,Live and Let Die,"Baron Samedi, Voodoo Priest",tt0070328 TBRqPFkAQCM,1973.0,7,10,2015,Live and Let Die,Some Kinda Doomsday Machine,tt0070328 vmyGlOoCbp0,1973.0,5,10,2015,Live and Let Die,Feeding Time on the Crocodile Farm,tt0070328 upQ-MXF_ZgI,1973.0,6,10,2015,Live and Let Die,High-Flying Speedboat Chase,tt0070328 sojzO-UWObY,1973.0,3,10,2015,Live and Let Die,Double-Decker Bus Chase,tt0070328 70kZeFs721U,1973.0,4,10,2015,Live and Let Die,Bond's Flying Lesson,tt0070328 IP7jsmECPbs,1973.0,2,10,2015,Live and Let Die,Tarot Card Lovers,tt0070328 3GlfIStWMSY,1973.0,1,10,2015,Live and Let Die,Homemade Snake Slayer,tt0070328 FvEi2U7IKRE,1977.0,10,10,2015,The Spy Who Loved Me,The Escape Pod,tt0076752 3vDe4jJvC_o,1977.0,9,10,2015,The Spy Who Loved Me,Jaws vs. the Shark,tt0076752 cGN5hLGphX4,1977.0,8,10,2015,The Spy Who Loved Me,"Goodbye, Mr. Bond",tt0076752 yFlxYvgV3VQ,1977.0,7,10,2015,The Spy Who Loved Me,The Instruments of Armageddon,tt0076752 sHqb1FwBP2Y,1977.0,5,10,2015,The Spy Who Loved Me,Jaws Attack,tt0076752 DDQzRai6Uao,1977.0,4,10,2015,The Spy Who Loved Me,Agent XXX and Bond vs. Jaws,tt0076752 CDeNNNPzUlg,1977.0,2,10,2015,The Spy Who Loved Me,Atlantis Rises,tt0076752 n1gQ-1zEljg,1977.0,3,10,2015,The Spy Who Loved Me,Showdown at the Pyramids,tt0076752 nR532k8M35g,1977.0,1,10,2015,The Spy Who Loved Me,The Ski Jump,tt0076752 3JySRf9aTPA,1977.0,6,10,2015,The Spy Who Loved Me,Submarine Car,tt0076752 w0ijJ45l-kM,1987.0,8,10,2015,The Living Daylights,Boarding the Plane,tt0093428 l6qtq8aC2Cg,1987.0,10,10,2015,The Living Daylights,Crash Landing,tt0093428 TD8G-aSlweI,1987.0,5,10,2015,The Living Daylights,Whistle Gas,tt0093428 TDhk_Xhxc3c,1987.0,7,10,2015,The Living Daylights,We Have Nothing to Declare!,tt0093428 ITdkeKIFqL8,1987.0,1,10,2015,The Living Daylights,Paintball Massacre,tt0093428 Qo1WkD59F_w,1987.0,9,10,2015,The Living Daylights,He Got the Boot,tt0093428 JvZ5nh7sIzU,1987.0,6,10,2015,The Living Daylights,A Few Extras Installed,tt0093428 J7M8LuEC99k,1987.0,3,10,2015,The Living Daylights,What Kind of Girl Do You Think I Am!,tt0093428 LAmOoIdTjsw,1987.0,2,10,2015,The Living Daylights,If Only I Could Find a Real Man,tt0093428 McIJxpY89Kk,1987.0,4,10,2015,The Living Daylights,The Milk Assassin,tt0093428 S5jj3vqPau8,1962.0,8,8,2015,Dr. No,Love at Sea,tt0055928 0u0SEECyGlM,1962.0,3,8,2015,Dr. No,On the Way to a Funeral,tt0055928 Mh2Tf40llqw,1962.0,7,8,2015,Dr. No,The Death of,tt0055928 Fyo66z0NtHY,1962.0,4,8,2015,Dr. No,The Beautiful Honey Ryder,tt0055928 iedK7wzunWo,1962.0,5,8,2015,Dr. No,The Dragon of Crab Key,tt0055928 rsT1bLR2sfM,1962.0,6,8,2015,Dr. No,A Member of SPECTRE,tt0055928 zF-3wgcDRk4,1962.0,2,8,2015,Dr. No,Eight-Legged Assassin,tt0055928 nLXoZ69ce-I,1962.0,1,8,2015,Dr. No,"Bond, James Bond",tt0055928 xx4t4fBIY88,1979.0,8,10,2015,Moonraker,Drax's Deadly Dream,tt0079574 S4p8_i1lcCc,1979.0,7,10,2015,Moonraker,Boat Battle,tt0079574 FFGAP7FxZKQ,1979.0,4,10,2015,Moonraker,Cooperation,tt0079574 cUX2Mj4SN7o,1979.0,3,10,2015,Moonraker,Gondola Chase,tt0079574 lTiCL83_dR4,1979.0,10,10,2015,Moonraker,Attempting Re-Entry,tt0079574 v5N1Aukm4Bo,1979.0,2,10,2015,Moonraker,The Centrifuge,tt0079574 sXnYoBCJGwI,1979.0,9,10,2015,Moonraker,Drax Had to Fly,tt0079574 2MdAw_f5pAU,1979.0,5,10,2015,Moonraker,Bond vs. Jaws,tt0079574 tdXshjACQx8,1979.0,6,10,2015,Moonraker,Q's Balls,tt0079574 87MO-gtYFT8,1979.0,1,10,2015,Moonraker,Enjoy Your Flight,tt0079574 zTlfN8HuEJA,2011.0,3,5,2015,Rio,I'm Not a Pretty Birdy,tt1436562 Gt4t3ZZsAnQ,2011.0,5,5,2015,Rio,I Wanna Party,tt1436562 gGxrQOUaM_E,2011.0,4,5,2015,Rio,Flying Fail,tt1436562 PZheNUuK8jg,2011.0,1,5,2015,Rio,Real in,tt1436562 oz6wjc6xLFU,2011.0,2,5,2015,Rio,Not Exactly Lovebirds,tt1436562 T_HWlDa9t6o,2011.0,3,5,2015,Rise of the Planet of the Apes,Attack on San Francisco Scene,tt1318514 mKDqrUqOe8Y,2011.0,5,5,2015,Rise of the Planet of the Apes,Gorilla vs. Helicopter Scene,tt1318514 _kz6s5Yi5Ns,2011.0,4,5,2015,Rise of the Planet of the Apes,Battle for the Bridge Scene,tt1318514 o2oR9qYeySU,2006.0,5,5,2015,Night at the Museum,Slapping the Monkey,tt0477347 WeBy3_xqYtM,2006.0,4,5,2015,Night at the Museum,Kill the Giant,tt0477347 JDbwEQG2cqI,2011.0,1,5,2015,Rise of the Planet of the Apes,Caesar Speaks Scene,tt1318514 wS9RtY8dVpo,2011.0,2,5,2015,Rise of the Planet of the Apes,Prison Break Scene,tt1318514 f-DgdMpSo7c,2006.0,3,5,2015,Night at the Museum,Monkey Stole Your Keys,tt0477347 ahP1JZwHSh8,2008.0,5,5,2015,Jumper,Teleporter Duel,tt0489099 nAgSecmB9lM,2006.0,2,5,2015,Night at the Museum,Dum Dum Give Me Gum Gum,tt0477347 JRloSmzWBOg,2006.0,1,5,2015,Night at the Museum,Throw the Bone,tt0477347 M2hhUTxFLWA,2008.0,3,5,2015,Jumper,Teleporting Joyride,tt0489099 aWyYZ3-8oAM,2008.0,4,5,2015,Jumper,"Sooner or Later, You All Go Bad",tt0489099 gwTTsc0zMco,2008.0,2,5,2015,Jumper,Colosseum Ambush,tt0489099 Fm7B7WzAA1M,2008.0,1,5,2015,Jumper,There Are Always Consequences,tt0489099 1u0rQ7J3oS4,2006.0,4,5,2015,Garfield: A Tail of Two Kitties,Royal Copycat,tt0455499 97hoM2qv05s,2006.0,5,5,2015,Garfield: A Tail of Two Kitties,The Animals Fight Back,tt0455499 75PCq-Wcdhw,2006.0,3,5,2015,Garfield: A Tail of Two Kitties,The Lasagna Dance,tt0455499 SswN494Jxr8,2006.0,2,5,2015,Garfield: A Tail of Two Kitties,"Just Call Me ""Your Highness""",tt0455499 2-7Jdip2Pfw,2002.0,5,5,2015,Drumline,The Last Standing,tt0303933 FTV4FUlcIwQ,2006.0,1,5,2015,Garfield: A Tail of Two Kitties,The British Are Coming!,tt0455499 JaGoM25tGVA,2002.0,2,5,2015,Drumline,Fighting for the Field,tt0303933 2fsMce1OvXY,2002.0,3,5,2015,Drumline,Duel,tt0303933 yAhuaFMTSKM,2002.0,4,5,2015,Drumline,I'm the Man!,tt0303933 EQW38-aU5gI,2002.0,1,5,2015,Drumline,Late Night Tryouts,tt0303933 0JnpUYMPEiw,1989.0,1,5,2015,The War of the Roses,Loving Nantucket,tt0098621 21Dc8a8X8qg,1997.0,2,5,2015,Volcano,Homeless Rescue,tt0120461 g9U0df6KJiA,2000.0,2,3,2015,Titan A.E.,Captured by the Drej,tt0120913 fCuS78YHrOY,1989.0,4,5,2015,The War of the Roses,Benny's a Good Dog,tt0098621 oMpgPQbRt8U,1995.0,1,5,2015,Waiting to Exhale,Bernie Burns John's Clothes,tt0114885 LxMYNhlh0Tk,1989.0,5,5,2015,The War of the Roses,Not Good For Him,tt0098621 IaOlL5WMFI8,1995.0,4,5,2015,Waiting to Exhale,Robin Reveals Her Past,tt0114885 1FXO-XToURQ,1995.0,5,5,2015,Waiting to Exhale,Gloria Reconciles With Marvin,tt0114885 0OaFQQaQGRM,1995.0,2,5,2015,Waiting to Exhale,My Body Needs This,tt0114885 4xVAvx5hTic,1998.0,1,5,2015,The X Files,Underground Poison,tt0120902 4Iza5db5Zvk,1989.0,3,5,2015,The War of the Roses,The Gloves Are Off,tt0098621 1MWZ3mZ-tUM,2000.0,3,3,2015,Titan A.E.,Covering Cale,tt0120913 ajBHZKoKYbU,1992.0,3,5,2015,White Men Can't Jump,Screwing is for Carpenters,tt0105812 LkWeBzzBUXY,1997.0,4,5,2015,Volcano,Open Hoses,tt0120461 F2Zm-637bQQ,2007.0,1,3,2015,Waitress,Strange Medicine,tt0473308 yDtGS3G3xtY,1992.0,5,5,2015,White Men Can't Jump,,tt0105812 RfltPijijjA,1998.0,4,5,2015,The X Files,The Embryos Awaken,tt0120902 fgJ2CaTfaxU,1992.0,1,5,2015,White Men Can't Jump,"Slow, White, Geeky Chump",tt0105812 esJNnh-d2E0,1998.0,3,5,2015,The X Files,I Owe You Everything,tt0120902 SEWMcT6bIi8,1988.0,3,5,2015,Working Girl,Mr. and Mrs. Fabulously Happy,tt0096463 JQO8MTlO69U,2000.0,1,3,2015,Titan A.E.,Earth is Destroyed,tt0120913 qjYP7J3oP9Q,1982.0,5,5,2015,The Verdict,Frank's Closing Statement,tt0084855 PE-3JxqiV7M,1988.0,5,5,2015,Working Girl,Tess's New Job,tt0096463 JKD_ZN2VC3g,1988.0,2,5,2015,Working Girl,A Head for Business and a Bod for Sin,tt0096463 JjgKkluHXJM,1988.0,4,5,2015,Working Girl,Katharine Gets the Boot,tt0096463 t7DgbPjFOfY,1992.0,4,5,2015,White Men Can't Jump,I'm in the Zone!,tt0105812 FTHoIehOkK0,1988.0,1,5,2015,Working Girl,A Sleazoid Pimp,tt0096463 0XCqc9fIGJ0,1992.0,2,5,2015,White Men Can't Jump,Hustling Raymond,tt0105812 n5ArS3Got4U,2007.0,3,3,2015,Waitress,Starting Fresh,tt0473308 8EcrxgHLhIg,2007.0,2,3,2015,Waitress,Professional Relationship,tt0473308 pUO9-h182d4,1995.0,3,5,2015,Waiting to Exhale,Ladies Night,tt0114885 CD0k2oB61h0,1997.0,5,5,2015,Volcano,It's Gonna Blow!,tt0120461 R01bex9Ejvg,1997.0,3,5,2015,Volcano,A Hero's Sacrifice,tt0120461 M49PmHt8PEc,1997.0,1,5,2015,Volcano,The Eruption,tt0120461 8iI9iC2OgFY,2002.0,2,3,2015,Unfaithful,Crime of Passion Scene,tt0250797 RH2IK1jcLuY,2002.0,3,3,2015,Unfaithful,Confession Scene,tt0250797 j-V12tL78Mc,2002.0,1,3,2015,Unfaithful,The Other Woman Scene,tt0250797 _QUAEFiNatE,1998.0,5,5,2015,The X Files,The Spacecraft Departs,tt0120902 orhrsjDwamY,1998.0,2,5,2015,The X Files,Swarmed,tt0120902 S_PMSA9fgiI,1989.0,2,5,2015,The War of the Roses,The Dinner Party,tt0098621 u-2jqTXKQyU,1982.0,4,5,2015,The Verdict,A Fair Trial,tt0084855 5lkqZP5rBvg,1982.0,2,5,2015,The Verdict,Frank and Laura,tt0084855 ME2S71b553U,1982.0,3,5,2015,The Verdict,Mistakes,tt0084855 Asm-9UXAOog,1982.0,1,5,2015,The Verdict,What is the Truth?,tt0084855 _BeHUjskbZo,1996.0,3,3,2015,The Truth About Cats & Dogs,Brian Returns,tt0117979 zlfMo6Qe2o8,1996.0,2,3,2015,The Truth About Cats & Dogs,I Love You Because...,tt0117979 zal_hU83ruo,2004.0,3,3,2015,Taxi,Chase to the Airport Scene,tt0316732 QjLwuMqSb7s,1996.0,1,3,2015,The Truth About Cats & Dogs,Phone Sex,tt0117979 NMKgdzm1pWs,2004.0,2,3,2015,Taxi,Vanessa Frisks Marta Scene,tt0316732 OcoatqJqmX0,2004.0,1,3,2015,Taxi,Singing & Driving Scene,tt0316732 De2BarsD4jU,2012.0,5,5,2015,Chronicle,Take Him Out,tt1753584 B5vXrSsvqqs,2012.0,4,5,2015,Chronicle,I'm an Apex Predator,tt1753584 blWBATSOCtA,2012.0,3,5,2015,Chronicle,Telekinetic Robbery,tt1753584 -YV8tJhGojY,2012.0,2,5,2015,Chronicle,The Strongest Animal,tt1753584 sBSibz9xdic,2012.0,1,5,2015,Chronicle,Psychic Pranks,tt1753584 OI2JPJj1d6s,2008.0,5,5,2015,27 Dresses,Get Over Here,tt0988595 0-HM2VCdrC0,2008.0,4,5,2015,27 Dresses,I Think You Deserve More,tt0988595 ts4gt7f_rek,2008.0,3,5,2015,27 Dresses,The Truth About Tess and George,tt0988595 eiLeBJUf1iE,2008.0,2,5,2015,27 Dresses,All,tt0988595 r4K7eNzseCI,2008.0,1,5,2015,27 Dresses,Can't Say No,tt0988595 oDD1tW59Mjg,1987.0,5,5,2015,Wall Street,How Much is Enough?,tt0094291 NDV-ryLLkiU,1987.0,3,5,2015,Wall Street,A Second-Rate Power,tt0094291 VVxYOQS6ggk,1987.0,4,5,2015,Wall Street,Greed Is Good,tt0094291 sLAan2iZs_Y,1987.0,2,5,2015,Wall Street,Money Never Sleeps,tt0094291 -TLCaDbBv_s,1987.0,1,5,2015,Wall Street,The Art of War,tt0094291 dvloIUSHogs,2005.0,5,5,2015,Walk the Line,June Says Yes,tt0358273 Tf7suGi96l0,2005.0,3,5,2015,Walk the Line,Johnny Collapses,tt0358273 g-uc5_QEmuM,2005.0,4,5,2015,Walk the Line,Cocaine Blues,tt0358273 y_fgX9MUfVM,2005.0,2,5,2015,Walk the Line,"It Ain't Me, Babe",tt0358273 qAw0VczZGC8,2002.0,4,5,2015,The Transporter,Skydive onto the Convoy,tt0293662 BeAtRdD4roE,2002.0,5,5,2015,The Transporter,Semi Tough,tt0293662 bjLdEjOL1s8,2002.0,3,5,2015,The Transporter,Greased Fighting,tt0293662 4akqi6YYIJw,2005.0,1,5,2015,Walk the Line,I,tt0358273 bCKgFFmf_iI,2002.0,1,5,2015,The Transporter,A Sick Car Chase,tt0293662 KJZLcsAmLbM,1996.0,5,5,2015,Romeo + Juliet,Together in Death Scene,tt0117509 56djkHojg2g,2002.0,2,5,2015,The Transporter,Don't Axe Me,tt0293662 yClVlc_niac,1996.0,2,5,2015,Romeo + Juliet,Star-crossed Lovers Scene,tt0117509 Oic7kJRg_F0,1996.0,3,5,2015,Romeo + Juliet,"1,000 Times Goodnight Scene",tt0117509 8JoOpx6VwHk,1996.0,1,5,2015,Romeo + Juliet,Love at First Sight Scene,tt0117509 xcSwBHs1uD4,1996.0,4,5,2015,Romeo + Juliet,Romeo Dies Scene,tt0117509 gAmo3FcaovM,2010.0,11,11,2015,Despicable Me,Gru Shrinks the Moon,tt1323594 Z4DDrBjEBHE,2010.0,10,11,2015,Despicable Me,Bedtime Story,tt1323594 tLiM-49DJ7k,2010.0,8,11,2015,Despicable Me,It's So Fluffy!,tt1323594 YgXPN03oxkc,2010.0,9,11,2015,Despicable Me,I Sit on the Toilet,tt1323594 xOYb0ZdJCQs,2010.0,7,11,2015,Despicable Me,Stealing the Shrink Gun,tt1323594 8R1OS5jPh2s,2010.0,5,11,2015,Despicable Me,Gru's Lab,tt1323594 YsMdkGG2b0k,2010.0,6,11,2015,Despicable Me,CookieBots,tt1323594 x8HjCP3LqHo,2010.0,4,11,2015,Despicable Me,No Annoying Sounds,tt1323594 428tr8ixT3Q,2010.0,3,11,2015,Despicable Me,Try This On for Size,tt1323594 ej6dxNrh3Dc,2010.0,2,11,2015,Despicable Me,The Box of Shame,tt1323594 fdrR3NbPARs,2010.0,1,11,2015,Despicable Me,Steal the Moon,tt1323594 pLm07s8fnzM,1965.0,4,5,2015,The Sound of Music,Do-Re-Mi,tt0059742 kxjwb5cXTI0,1965.0,5,5,2015,The Sound of Music,"So Long, Farewell",tt0059742 DGABqdbtQnA,1965.0,3,5,2015,The Sound of Music,My Favorite Things,tt0059742 AePRD1Ud3Lw,1965.0,1,5,2015,The Sound of Music,,tt0059742 pcj4boVT4fc,1965.0,2,5,2015,The Sound of Music,Sixteen Going on Seventeen,tt0059742 fIh6HDeXKGY,1955.0,4,5,2015,The Seven Year Itch,A Delicious Breeze,tt0048605 aqsJPtd8Cis,1955.0,3,5,2015,The Seven Year Itch,Opening the Champagne,tt0048605 ofmssjTsGnE,1955.0,5,5,2015,The Seven Year Itch,What a Girl Wants,tt0048605 pCiwEO_6xS0,1955.0,2,5,2015,The Seven Year Itch,Good Old Rachmaninoff,tt0048605 LxWJ4QT74hA,1955.0,1,5,2015,The Seven Year Itch,New Neighbor,tt0048605 8EdOdfCM1hM,1996.0,2,5,2015,That Thing You Do!,Radio Debut,tt0117887 O10NcrfHaT0,1996.0,5,5,2015,That Thing You Do!,Good and Kissed,tt0117887 FDektpHARj4,1996.0,3,5,2015,That Thing You Do!,Faye Dumps Jimmy,tt0117887 7o40za1wAlI,1996.0,1,5,2015,That Thing You Do!,"The ""Oneders"" Go Up-Tempo",tt0117887 fg-43OlaJtE,1996.0,4,5,2015,That Thing You Do!,A Very Common Tale,tt0117887 10fn13Q4wAA,2005.0,5,5,2015,Thank You for Smoking,Everyone Has a Talent,tt0427944 RK-RPsc0czc,2005.0,4,5,2015,Thank You for Smoking,Doing It for the Mortgage,tt0427944 xuaHRN7UhRo,2005.0,3,5,2015,Thank You for Smoking,Ice Cream Politics,tt0427944 xT7F0eKfctg,2005.0,2,5,2015,Thank You for Smoking,Hollywood Meeting,tt0427944 yrxRCTUt6OY,2005.0,1,5,2015,Thank You for Smoking,The Joan Show,tt0427944 aQHOzbF0qH0,1997.0,5,5,2015,Soul Food,What is All About,tt0120169 IayveLLh-HQ,1997.0,3,5,2015,Soul Food,Teri Pulls a Knife on Miles,tt0120169 dj5zbxA4bEI,1997.0,2,5,2015,Soul Food,Vinegar and Oil,tt0120169 ZHRWbydTGrI,1997.0,1,5,2015,Soul Food,Wedding Day Blues,tt0120169 RRcYHJ1uTro,1997.0,4,5,2015,Soul Food,Y'all Messed Up the Family!,tt0120169 Jt0kFbvL7yg,1998.0,3,3,2015,Hope Floats,Dancing's Just a Conversation,tt0119313 j3d3mrWBTpM,1998.0,2,3,2015,Hope Floats,Justin the Skunk,tt0119313 gQwpd1247J8,2009.0,5,5,2015,Bride Wars,Battle of the Brides,tt0901476 7T9nzAu7orw,1998.0,1,3,2015,Hope Floats,He Doesn't Love You Anymore,tt0119313 hk6Vxhx28bo,2009.0,4,5,2015,Bride Wars,Bachelorette Dance-Off,tt0901476 LVm_DbyklO0,2009.0,1,5,2015,Bride Wars,Will You Just Marry Me Already?,tt0901476 Q16cb-O1kTA,2009.0,3,5,2015,Bride Wars,Bridal Sabotage,tt0901476 d87eHGVaoc8,2009.0,2,5,2015,Bride Wars,Fight for the Date,tt0901476 x7RM1MOhSic,2008.0,5,5,2015,Australia,No One Can Hurt Me,tt0455824 Vz56mS8Zz6A,2008.0,2,5,2015,Australia,Hiding in the Water Tower,tt0455824 hnsP1etZkr4,1995.0,2,3,2015,A Walk in the Clouds,Traditional Grape Stomp,tt0114887 gmedATt5viM,2008.0,3,5,2015,Australia,Stopping the Stampede,tt0455824 4Z5rOXxjRWI,2008.0,4,5,2015,Australia,The Bombing of Darwin,tt0455824 1adrUPgj7QQ,2008.0,1,5,2015,Australia,We Like to Bunk Up Together,tt0455824 sYk8M_ZTNlY,1995.0,1,3,2015,A Walk in the Clouds,Saving the Vineyard,tt0114887 Gyxw8a2hTMg,1995.0,3,3,2015,A Walk in the Clouds,I'm Not Free,tt0114887 4PcxtcrI9_U,1998.0,4,5,2015,There's Something About Mary,Hooked on Mary,tt0129387 fdOrjwuILCE,1998.0,5,5,2015,There's Something About Mary,Mary Chooses Ted,tt0129387 jX09Cesfxo8,1998.0,3,5,2015,There's Something About Mary,Dog Fight,tt0129387 Sj_A7OZz8TI,1998.0,1,5,2015,There's Something About Mary,Frank and Beans,tt0129387 mbFx0CbaIlY,1998.0,2,5,2015,There's Something About Mary,Hair Gel,tt0129387 fohry-3J4dQ,2009.0,9,12,2015,Mother,The Bum Witnessed Everything,tt1216496 Du82ML6YGRE,2009.0,7,12,2015,Mother,You Tried to Kill Me,tt1216496 jTNoDcmRc0g,2009.0,8,12,2015,Mother,Interrogation of the Teenage Murderers,tt1216496 RCEgNkU7flA,2009.0,5,12,2015,Mother,Three Motives for Murder,tt1216496 7Za7WMgQqKY,2009.0,4,12,2015,Mother,The Wake,tt1216496 gi3gqlWetJU,2009.0,6,12,2015,Mother,Hit Back Twice,tt1216496 6a0at61sWkE,2009.0,2,12,2015,Mother,Hit-and-Run Revenge,tt1216496 GhIDZhPP7d4,2009.0,3,12,2015,Mother,Arrested for Murder,tt1216496 YyWG5DAJc6s,2009.0,12,12,2015,Mother,The Point of Forgetfulness,tt1216496 TwgvEloIXVc,2009.0,1,12,2015,Mother,Hit-and-Run,tt1216496 zpdFj0w6Eg8,1991.0,8,8,2015,The Fisher King,Storming the Castle,tt0101889 evCesc80vho,2009.0,10,12,2015,Mother,Not Worth the Dirt on My Son's Toenail,tt1216496 BevEBQsAoPk,1991.0,7,8,2015,The Fisher King,What Did I Get?,tt0101889 l3n95qTa5ko,2009.0,11,12,2015,Mother,We Caught the Killer,tt1216496 0p9yD4E2hQw,1991.0,6,8,2015,The Fisher King,The Greatest Thing Since Spice Racks,tt0101889 nPXMny-9Ntk,1991.0,5,8,2015,The Fisher King,Made for Each Other,tt0101889 NW5u4cCsNUY,1991.0,3,8,2015,The Fisher King,The Red Knight,tt0101889 TyB1CcaiPbQ,1991.0,4,8,2015,The Fisher King,A Moral Traffic Light,tt0101889 jrPvugl_NVA,1991.0,2,8,2015,The Fisher King,"Men, Women, God and the Devil",tt0101889 aW4x-PAnrO8,1991.0,1,8,2015,The Fisher King,The Janitor of God,tt0101889 ro74_tScvSA,2010.0,5,5,2015,Diary of a Wimpy Kid,The Wonderful Wizard of Oz Scene,tt1196141 wW0L86VZScs,2010.0,3,5,2015,Diary of a Wimpy Kid,Wrestling a Girl Scene,tt1196141 Ky5Y99wb_00,2010.0,1,5,2015,Diary of a Wimpy Kid,The Cheese Touch Scene,tt1196141 bAI6N5Uo7SQ,2010.0,4,5,2015,Diary of a Wimpy Kid,The Wonderful Wizard of Oz Audition Scene,tt1196141 YMwZaMNf3L4,2010.0,2,5,2015,Diary of a Wimpy Kid,Really Have to Pee Scene,tt1196141 _ihVsEYQP8E,2011.0,5,5,2015,Harry Potter and the Deathly Hallows: Part 2,Harry vs. Voldemort,tt1201607 VmVWuswEBSk,2011.0,4,5,2015,Harry Potter and the Deathly Hallows: Part 2,King's Cross Station,tt1201607 lJ83ILGA8yI,2011.0,3,5,2015,Harry Potter and the Deathly Hallows: Part 2,Snape's Memories,tt1201607 uk04S-0HOXY,2011.0,1,5,2015,Harry Potter and the Deathly Hallows: Part 2,Ron and Hermione Kiss,tt1201607 NVovWtkGbCc,2011.0,2,5,2015,Harry Potter and the Deathly Hallows: Part 2,Snape's Death,tt1201607 PsWbydM-u8w,2007.0,5,5,2015,Alvin and the Chipmunks,Witch Doctor Scene,tt0952640 XrEpuPzxk9k,2007.0,1,5,2015,Alvin and the Chipmunks,Chipmunk Troubles Scene,tt0952640 delffcg5VZU,2007.0,4,5,2015,Alvin and the Chipmunks,Bow Chicka Wow Wow Scene,tt0952640 p0BpMFTYFpU,2007.0,2,5,2015,Alvin and the Chipmunks,Funky Town Scene,tt0952640 KWK3PRNjZdI,2007.0,3,5,2015,Alvin and the Chipmunks,Christmas Don't Be Late Scene,tt0952640 Z3m-Ht3_tFc,1994.0,3,5,2015,Speed,Jack & Annie Escape,tt0111257 WlS2xnW-LY8,1994.0,5,5,2015,Speed,Intense Relationship,tt0111257 4qLgo75Lfhc,1994.0,4,5,2015,Speed,End of the Line,tt0111257 dKJa-KQNjQU,1994.0,2,5,2015,Speed,Jumping the Gap,tt0111257 1cNBL3OOMRY,1994.0,1,5,2015,Speed,Boarding the Bus,tt0111257 JNPW2wZ4D2s,2001.0,5,5,2015,Super Troopers,Shenanigans,tt0247745 U0s0czlJ4xA,2001.0,3,5,2015,Super Troopers,Horny Germans,tt0247745 1rlSjdnAKY4,2001.0,2,5,2015,Super Troopers,The Cat Game,tt0247745 0zgTcrZ5030,2001.0,4,5,2015,Super Troopers,Dimpus Burger,tt0247745 xPHXfJZpSms,2001.0,1,5,2015,Super Troopers,Chugging Syrup,tt0247745 uUuTz9Hjc34,2014.0,11,12,2015,Divergent,I'm,tt1840309 _snQsFAwjxQ,2014.0,9,12,2015,Divergent,Tris' Final Test,tt1840309 4_hEef258iI,2014.0,12,12,2015,Divergent,I Know Exactly Who You Are,tt1840309 7UhFzTWxzBo,2014.0,10,12,2015,Divergent,It's Me,tt1840309 zrc1us4sDcE,2014.0,7,12,2015,Divergent,Saved by Four,tt1840309 u0fi902X3qo,2014.0,8,12,2015,Divergent,Four and Tris Kiss,tt1840309 5ttoICpH0Vc,2014.0,6,12,2015,Divergent,Human Nature is the Enemy,tt1840309 kOBAOfh46Nk,2014.0,5,12,2015,Divergent,The Zip Line,tt1840309 wIqMqkMIjEE,2014.0,4,12,2015,Divergent,The Ferris Wheel,tt1840309 5FQ7xVuqOJM,2014.0,3,12,2015,Divergent,Four Helps Tris,tt1840309 qU0Y6zo68t4,2014.0,2,12,2015,Divergent,Welcome to Dauntless,tt1840309 Ko0E8tEu7HU,2014.0,1,12,2015,Divergent,Choosing Dauntless,tt1840309 VqTMLtDj83c,2014.0,8,10,2015,The Hunger Games: Mockingjay,Part 1 - Peeta Warns Katniss,tt1951266 lGFrkYzbfoU,2014.0,10,10,2015,The Hunger Games: Mockingjay,Part 1 - Reunited with Peeta,tt1951266 MfHiFaZIc7Q,2014.0,9,10,2015,The Hunger Games: Mockingjay,Part 1 - Did I Lose Them Both?,tt1951266 LJhKwaZEEy4,2014.0,7,10,2015,The Hunger Games: Mockingjay,Part 1 - The Hanging Tree,tt1951266 X236AeHt5RY,2014.0,5,10,2015,The Hunger Games: Mockingjay,"Part 1 - If We Burn, You Burn",tt1951266 AbCowKGckKM,2014.0,6,10,2015,The Hunger Games: Mockingjay,Part 1 - Gale's Story,tt1951266 dLxtD4f_DA4,2014.0,4,10,2015,The Hunger Games: Mockingjay,Part 1 - Battling the Bombers,tt1951266 lUQJN1xzKpc,2014.0,3,10,2015,The Hunger Games: Mockingjay,Part 1 - Fight With Us?,tt1951266 Op_fgLBxUQE,2014.0,2,10,2015,The Hunger Games: Mockingjay,Part 1 - How A Revolution Dies,tt1951266 KrHaRP-Y588,2014.0,1,10,2015,The Hunger Games: Mockingjay,Part 1 - I'll Be Your Mockingjay,tt1951266 tqtqEZqGg5A,2006.0,3,5,2015,X-Men: The Last Stand,I'm the Juggernaut,tt0376994 wXWoyVboDpI,2003.0,5,5,2015,X2,This Is the Only Way,tt0290334 up5GI3Sp7Lo,2003.0,4,5,2015,X2,Deathstrike's End,tt0290334 19fWdIvK9mU,2003.0,3,5,2015,X2,Pyro Gets Hot,tt0290334 StnmzjqMKRo,2003.0,1,5,2015,X2,White House Breach,tt0290334 QL__AjJr688,2003.0,2,5,2015,X2,Bobby Comes Out,tt0290334 8QMRQeYNd7M,2006.0,5,5,2015,X-Men: The Last Stand,Phoenix Falls,tt0376994 U-RYUQZFIhI,2006.0,4,5,2015,X-Men: The Last Stand,One of Them,tt0376994 XeU6SJorcvw,2006.0,1,5,2015,X-Men: The Last Stand,Phoenix Shatters Xavier,tt0376994 ITMren3I3WM,2006.0,2,5,2015,X-Men: The Last Stand,Magneto's Bridgework,tt0376994 VagrTsi5vsw,2000.0,5,5,2015,X-Men,Showdown With Sabretooth,tt0120903 XIcTr-m-R9U,2000.0,3,5,2015,X-Men,Mind Over Metal,tt0120903 MJ_32rbrHdk,2000.0,4,5,2015,X-Men,Toad and Mystique,tt0120903 YVjyXY_mcl4,2000.0,1,5,2015,X-Men,Claws Out,tt0120903 sidn04cetvU,2000.0,2,5,2015,X-Men,Magneto Abducts Rogue,tt0120903 x2vhOIjmS2s,1997.0,5,5,2015,Speed 2: Cruise Control,Tanker Blast,tt0120179 38yH4yeJM2I,1997.0,4,5,2015,Speed 2: Cruise Control,Fishing for a Flight,tt0120179 gBxaGB65TB8,1997.0,3,5,2015,Speed 2: Cruise Control,Land Cruiser,tt0120179 9s84zV2VCgI,1997.0,2,5,2015,Speed 2: Cruise Control,We Have a Miss!,tt0120179 DXA3GJb6V-M,1997.0,1,5,2015,Speed 2: Cruise Control,An Explosive Exit,tt0120179 vG_FLK4K_T8,2001.0,5,5,2015,Shallow Hal,I Have a Tail,tt0256380 2R1lEWNNsV0,2001.0,4,5,2015,Shallow Hal,Dating Rosemary,tt0256380 oARVdCyRT98,2001.0,3,5,2015,Shallow Hal,Lunch With Rosemary,tt0256380 G3BQd2K3maI,2001.0,2,5,2015,Shallow Hal,Hal Meets Rosemary,tt0256380 K4j25DUQLgE,2001.0,1,5,2015,Shallow Hal,Dancing With the Nasties,tt0256380 tQJTJdTM0Wk,2002.0,5,5,2015,Ice Age,Diego's Sacrifice,tt0268380 mu-YLZpB6is,2002.0,4,5,2015,Ice Age,Ice Slide,tt0268380 4RhqR2ZGkc0,2002.0,3,5,2015,Ice Age,Sid and the Dodos,tt0268380 8dXF7y1QUxU,2002.0,2,5,2015,Ice Age,Where's the Baby?,tt0268380 _LKe8V-h7h8,2002.0,1,5,2015,Ice Age,Acorn Troubles,tt0268380 268ZUL4dnn8,1998.0,3,3,2015,The Siege,Arresting the General,tt0133952 szNrOdjjhkw,1998.0,2,3,2015,The Siege,The Last Cell,tt0133952 G_OMV0N_Ls4,2001.0,3,3,2015,Someone Like You...,Dr. Charles Revealed,tt0244970 nM0u8GRt_hU,2001.0,2,3,2015,Someone Like You...,A Late Night Cheer,tt0244970 E6KKYD3eGlE,1998.0,3,3,2015,Slums of Beverly Hills,We're Freaks,tt0120831 hFH6FoRzSpM,2001.0,1,3,2015,Someone Like You...,Joy Rapture Ecstasy,tt0244970 5WGQCJmdEoM,1998.0,2,3,2015,Slums of Beverly Hills,Put On Your Brassiere,tt0120831 9D9RXt18Qq4,1998.0,1,3,2015,Slums of Beverly Hills,Vivian's First Bra,tt0120831 aLDrW2AXClk,2004.0,5,5,2015,Sideways,Stephanie Attacks Jack,tt0375063 PPKdHP8zWuo,2004.0,4,5,2015,Sideways,Miles Makes a Scene,tt0375063 HEMqddRGVBY,2004.0,3,5,2015,Sideways,Golf Rage,tt0375063 YSkZieDG5U4,2004.0,2,5,2015,Sideways,Miles Misses the Moment,tt0375063 QCS1Gnwbtp0,2004.0,1,5,2015,Sideways,Miles on Wine,tt0375063 yqdfje9b9WI,1996.0,3,3,2015,She's the One,Lingerie Test,tt0117628 IlLkXPTm6ig,1996.0,2,3,2015,She's the One,"Not Better, Just Different",tt0117628 E--mNnOvCm0,1996.0,1,3,2015,She's the One,Wake Up That Libido,tt0117628 VZrBzpfh6hM,2000.0,3,3,2015,Sexy Beast,A Violent Rant,tt0203119 sGCjNn2uJr4,2000.0,2,3,2015,No Smoking,Sexy Beast,tt0995740 rfeDWXk1jso,2000.0,1,3,2015,Sexy Beast,Don Wants an Answer,tt0203119 J4LB77duP_0,1998.0,1,3,2015,The Siege,Bus Bombing,tt0133952 t4WP3bODmfo,1975.0,1,5,2015,The Rocky Horror Picture Show,Dammit Janet Scene,tt0073629 G59JnM4JKNQ,1993.0,3,5,2015,Robin Hood: Men in Tights,Men in Tights,tt0107977 ataOtn-F5s4,2006.0,3,3,2015,Assassination Attempt,The Sentinel,tt0081609 CqgTNaplJdg,2006.0,1,3,2015,The Sentinel,Protecting the First Lady,tt0443632 dWQ3B8qTpes,2006.0,2,3,2015,Shots Fired,The Sentinel,tt5093452 wb1HDnYPPoo,1975.0,4,5,2015,The Rocky Horror Picture Show,Hot Patootie Bless My Soul Scene,tt0073629 -w0WPkB3XJ4,1975.0,2,5,2015,The Rocky Horror Picture Show,The Time Warp Scene,tt0073629 ZCZDWZFtyWY,1975.0,3,5,2015,The Rocky Horror Picture Show,Sweet Transvestite Scene,tt0073629 JKMpRikJeLI,1975.0,5,5,2015,The Rocky Horror Picture Show,Creature of the Night Scene,tt0073629 aNOmTuwnGYg,1972.0,5,5,2015,The Poseidon Adventure,Take Me!,tt0069113 r_9PgiNuwDc,1972.0,4,5,2015,The Poseidon Adventure,You Killed Her!,tt0069113 3MKwR7JipEc,1972.0,2,5,2015,The Poseidon Adventure,Ballroom is Flooded,tt0069113 TxuEWb4b_gU,1972.0,3,5,2015,The Poseidon Adventure,Rapidly Rising Water,tt0069113 Q49LEs_bhaU,1998.0,3,3,2015,The Object of My Affection,What Do You Want?,tt0120772 quEBzmchcwc,1998.0,2,3,2015,The Object of My Affection,George Accepts Fatherhood,tt0120772 6kKCbDw7lR4,1972.0,1,5,2015,The Poseidon Adventure,The Tidal Wave Hits,tt0069113 oKYBGq7pt3M,1998.0,1,3,2015,The Object of My Affection,Dancing Into Love,tt0120772 dyqDd8esYdc,1989.0,5,5,2015,Say Anything...,Ding,tt0098258 _Ib_lBGuoUQ,1989.0,4,5,2015,Say Anything...,I Need You,tt0098258 Pvuv2sn5fDQ,1989.0,2,5,2015,Say Anything...,Career Plans,tt0098258 S5Y8tFQ01OY,1989.0,3,5,2015,Say Anything...,Boombox Serenade,tt0098258 UUZsR3rFjEU,1989.0,1,5,2015,Say Anything...,Asking Diane Out,tt0098258 AwLRD7iEEKI,2005.0,3,3,2015,Robots,Victory,tt0343818 hr0hb0gc2eQ,1993.0,5,5,2015,Robin Hood: Men in Tights,It's Good to Be the King,tt0107977 IthAv1JkF-0,2005.0,2,3,2015,Robots,Charge!,tt0343818 tI4RvWvgulc,1993.0,4,5,2015,Robin Hood: Men in Tights,Iron Underwear,tt0107977 hM6ItEXb_Us,2005.0,1,3,2015,Robots,The Cross-Town Express,tt0343818 QNpPmiU7BBs,1993.0,2,5,2015,Robin Hood: Men in Tights,Lend Me Your Ears,tt0107977 ouXz_ETh2eI,1987.0,5,5,2015,Raising Arizona,Child Abandonment,tt0093822 5xIU6_w6ohg,1993.0,1,5,2015,Robin Hood: Men in Tights,Robin Rescues Ahchoo,tt0107977 CQ67ZyZtKjU,1987.0,2,5,2015,Raising Arizona,A Vision From Hell,tt0093822 dWJuJlmcabY,1987.0,3,5,2015,Raising Arizona,Dot & Glen,tt0093822 Ypa0vpmCzdc,1987.0,1,5,2015,Raising Arizona,Broken Arrows,tt0093822 lixII1thTO4,1987.0,4,5,2015,Raising Arizona,Picking up Diapers,tt0093822 bHwiXFc9MOw,1990.0,5,5,2015,Predator 2,The Hunter Becomes the Hunted,tt0100403 Dw5W0T5fV70,1990.0,4,5,2015,Predator 2,It's Your Move,tt0100403 kyGcsRDBJLM,1990.0,3,5,2015,Predator 2,A Cut Above,tt0100403 mDLS12_a-fk,1968.0,5,5,2015,Planet of the Apes,Statue of Liberty,tt0063442 nzz_3bQHyiY,1990.0,2,5,2015,Predator 2,One Ugly Motherf***er,tt0100403 DruCG3LJiiU,1968.0,1,5,2015,Planet of the Apes,The Human Hunt,tt0063442 0_m8AmAm-XE,1968.0,4,5,2015,Planet of the Apes,You Damn Dirty Ape!,tt0063442 eiQD0Wk6Ekg,1990.0,1,5,2015,Predator 2,They're All Dead,tt0100403 3BSdoHadj2w,1968.0,3,5,2015,Planet of the Apes,Writing in the Sand,tt0063442 gzRy-pvwdL0,1968.0,2,5,2015,Planet of the Apes,"Human See, Human Do",tt0063442 9CjMbFa2Oj8,1997.0,3,3,2015,A Second Chance,Picture Perfect,tt3305316 Re5WOfcJg5A,1997.0,1,3,2015,Picture Perfect,Mounting an Offensive,tt0119896 4uaPFQxS6pU,2002.0,4,5,2015,Phone Booth,A Little Tantrum,tt0183649 6xaUD1jKFWg,2002.0,3,5,2015,Phone Booth,Unhappy Childhood,tt0183649 3lkG_MD7T9U,2002.0,5,5,2015,Phone Booth,The Confession,tt0183649 yvC60Y-AqLc,1997.0,2,3,2015,Picture Perfect,"Boxer Shorts, a T-Shirt, and a Smile",tt0119896 JiI91igl180,2002.0,1,5,2015,Phone Booth,Telescopic Sight,tt0183649 88YBTmbAaoY,2002.0,2,5,2015,Phone Booth,Call for Help,tt0183649 PehCORojjtw,1970.0,5,5,2015,Patton,A Weather Prayer,tt0066206 Jipg0KQ4id0,2002.0,4,5,2015,One Hour Photo,Sy Threatens Bill,tt0265459 OdU3vEh3qfs,2002.0,5,5,2015,One Hour Photo,Sy Explains Himself,tt0265459 YrtS2_TfbeY,1970.0,4,5,2015,Patton,I Won't Have Cowards in My Army,tt0066206 dObTXYa-_n4,1970.0,3,5,2015,Patton,"Rommel, You Magnificent Bastard",tt0066206 sv9XNFpRdhg,1970.0,1,5,2015,Patton,Americans Love a Winner,tt0066206 BRccUGaFz2s,2002.0,2,5,2015,One Hour Photo,Uncle Sy,tt0265459 XpEtHWMpiFc,1970.0,2,5,2015,Patton,Complete Air Supremacy,tt0066206 bJNpX5bfXcw,2002.0,3,5,2015,One Hour Photo,The Planted Photo,tt0265459 URquvu9F3jo,2002.0,1,5,2015,One Hour Photo,Sy's Dream,tt0265459 hEY2L9sXjwU,1999.0,5,5,2015,Never Been Kissed,Finally Kissed,tt0151738 Y4g859J_920,1999.0,3,5,2015,Never Been Kissed,Ferris Wheel Ride,tt0151738 47IVX23yRyQ,1999.0,1,5,2015,Never Been Kissed,First Day of High School,tt0151738 SippOkFBMAE,1999.0,2,5,2015,Never Been Kissed,Josie Gets Stoned,tt0151738 WqYtAApeiDA,1999.0,4,5,2015,Never Been Kissed,Josie's Prom Speech,tt0151738 c0P_u-zs5-I,1994.0,1,3,2015,Nell,The Spirit,tt0110638 X8slBBJG-x0,1994.0,2,3,2015,Nell,Making Love,tt0110638 pytH_ezVouk,1994.0,3,3,2015,Nell,Everyone Goes Away,tt0110638 b58fAt0MdgI,2004.0,5,5,2015,Napoleon Dynamite,Girls Only Want Boyfriends Who Have Skills,tt0374900 NZJrGuC92U8,2004.0,2,5,2015,Napoleon Dynamite,I've Been Chatting Online with Babes All Day,tt0374900 xL-VX3WbA9U,2004.0,4,5,2015,Napoleon Dynamite,Uncle Rico Could Have Gone Pro,tt0374900 mJYE0HuKNfI,2004.0,3,5,2015,Napoleon Dynamite,The Bus Shows Up at Exactly the Wrong Time,tt0374900 pO09fucTEuk,2004.0,1,5,2015,Napoleon Dynamite,Napoleon Checks Out Pedro's Bike,tt0374900 _KinUMIS3Yc,1999.0,4,5,2015,Office Space,Copy Machine Beat Down,tt0151804 F7SNEdjftno,1999.0,5,5,2015,Office Space,Joanna Quits With Flair,tt0151804 uiik3zS4y4I,1999.0,2,5,2015,Office Space,Bad Case of the Mondays,tt0151804 cgg9byUy-V4,1999.0,3,5,2015,Office Space,Motivation Problems,tt0151804 jsLUidiYm0w,1999.0,1,5,2015,Office Space,Did You Get the Memo?,tt0151804 xEvb7B4O698,1987.0,5,5,2015,Predator,What the Hell Are You? Scene,tt0093773 80EaBRgGylo,1987.0,4,5,2015,Predator,One Ugly Motherf***er Scene,tt0093773 TU7CDejp6Lw,1987.0,2,5,2015,Predator,Get to the Chopper Scene,tt0093773 mGLXbK2XWMY,1987.0,3,5,2015,Predator,vs. Dutch Scene,tt0093773 wgzxSr6l9Y4,1987.0,1,5,2015,Predator,Old Painless Is Waiting Scene,tt0093773 -kFJKQvCrkY,2006.0,3,3,2015,The Namesake,Making Mothers Happy,tt0433416 bNdddrIe6dQ,1958.0,3,3,2015,"The Long, Hot Summer",I'm Gonna Kiss You,tt0051878 Jgv93j5xcpQ,2006.0,2,3,2015,The Namesake,The Story Behind the Name,tt0433416 wsYNpHaKJIc,2006.0,1,3,2015,The Namesake,Arranging a Marriage,tt0433416 qTa5iKsbAno,1958.0,1,3,2015,"The Long, Hot Summer",You Talk a Lot,tt0051878 7tK-k8UURYk,1958.0,2,3,2015,"The Long, Hot Summer",Get Out of Character,tt0051878 sYVz2G-r01U,1992.0,3,5,2015,The Last of the Mohicans,The Death of Uncas,tt0104691 okGQj644_Ds,1992.0,4,5,2015,The Last of the Mohicans,Alice's Suicide,tt0104691 eRRG_PNOQmA,1992.0,5,5,2015,The Last of the Mohicans,Chingachgook Battles Magua,tt0104691 JRU1SrdXEZc,2006.0,2,3,2015,The Last King of Scotland,Nicholas Shoots a Cow,tt0455590 UyzInzm8gW8,2006.0,3,3,2015,The Last King of Scotland,Hung From Hooks,tt0455590 k2edI8Gu6k8,1992.0,2,5,2015,The Last of the Mohicans,I Will Find You!,tt0104691 F7_aagPOpUU,2006.0,1,3,2015,The Last King of Scotland,Idi Speaks,tt0455590 OeSwSYmipqo,2001.0,3,5,2015,Moulin Rouge!,Silly Love Songs,tt0203009 a1REfTIc5po,2001.0,1,5,2015,Moulin Rouge!,Diamonds Are a Girl's Best Friend,tt0203009 q75FfwmyF4I,1992.0,1,5,2015,The Last of the Mohicans,Hawkeye & Cora,tt0104691 3nGQLQF1b6I,1992.0,5,5,2015,My Cousin Vinny,Automotive Expert,tt0104952 Dh0210A-VZo,1992.0,3,5,2015,My Cousin Vinny,Her Biological Clock,tt0104952 K6qGwmXZtsE,1992.0,4,5,2015,My Cousin Vinny,"Two ""Yutes""",tt0104952 Da7GSy-6mJY,1992.0,2,5,2015,My Cousin Vinny,Deer Hunter,tt0104952 2-FvDteymnM,1992.0,1,5,2015,My Cousin Vinny,The Wrong Idea,tt0104952 AqNEZ_QgvI4,1993.0,5,5,2015,Mrs. Doubtfire,Looks Like a Lady,tt0107614 7m8_QLnRBFo,1993.0,3,5,2015,Mrs. Doubtfire,'s Cake Face,tt0107614 tGxxl7LOe_4,1993.0,4,5,2015,Mrs. Doubtfire,Hot Flashes,tt0107614 UVmSx9Vv5M8,2001.0,5,5,2015,Moulin Rouge!,The Duke Tries to Kill Christian,tt0203009 7hsAbjmNpKU,1993.0,2,5,2015,Mrs. Doubtfire,Could You Make Me a Woman?,tt0107614 6wC2DqFJ7UE,1993.0,1,5,2015,Mrs. Doubtfire,I Do Voices,tt0107614 F8dW1ddAC_4,2001.0,4,5,2015,Moulin Rouge!,Come What May,tt0203009 M2sjRRcONOc,1947.0,5,5,2015,Miracle on 34th Street,Susan Believes,tt0039628 lgRkMyW_J5U,2001.0,2,5,2015,Moulin Rouge!,Your Song,tt0203009 jagJeaLXRRQ,1947.0,4,5,2015,Miracle on 34th Street,The One and Only Santa Claus,tt0039628 --uyzf7X_0c,1947.0,2,5,2015,Miracle on 34th Street,Santa Won't Lie to Susan,tt0039628 OvE_mDtTj20,1947.0,3,5,2015,Miracle on 34th Street,Christmas Is a Frame of Mind,tt0039628 vJCHzRIOOL0,1947.0,1,5,2015,Miracle on 34th Street,The Commercialization of Christmas,tt0039628 GyaIF1iTs-Y,2000.0,5,5,2015,"Me, Myself & Irene",Charlie vs. Hank,tt0183505 gh2apPe9pSI,2000.0,2,3,2015,Men of Honor,Carl Is Injured,tt0203019 QhCISxbO7rg,2000.0,3,3,2015,Men of Honor,12 Steps,tt0203019 FixQE61iSDg,2000.0,1,3,2015,Men of Honor,Til He Stops Moving,tt0203019 lCUBQnsS9go,2000.0,2,5,2015,"Me, Myself & Irene",Cotton Mouth,tt0183505 YWRzPLzHJl0,2000.0,1,5,2015,"Me, Myself & Irene",Hank Comes Out,tt0183505 2UYrsFeBZoI,2000.0,3,5,2015,"Me, Myself & Irene",Survival Mode,tt0183505 JJeNvH2hmPM,2000.0,4,5,2015,"Me, Myself & Irene",What Is Your Problem?,tt0183505 TRHN5vxnZrI,1970.0,3,5,2015,MASH,The Last Supper,tt0066026 LXtVS8SFmJw,1970.0,2,5,2015,MASH,Sayonara to Frank Burns,tt0066026 45X0_m1KYQM,1970.0,5,5,2015,MASH,This Is an Insane Asylum!,tt0066026 HpmdYRs4lEs,1970.0,1,5,2015,MASH,Hot Lips on the Radio,tt0066026 uYTl9G6HoW0,1970.0,4,5,2015,MASH,A Shower With Hot Lips,tt0066026 zHoZ2Ti6xco,1990.0,2,5,2015,Marked for Death,Window Shopping,tt0100114 OANpF6uHmBQ,1990.0,1,5,2015,Marked for Death,A Gift From God,tt0100114 H0BUIYk2irQ,1990.0,3,5,2015,Marked for Death,Mall Madness,tt0100114 ZObnyBWAZSI,1990.0,5,5,2015,Marked for Death,Hatcher Battles Screwface,tt0100114 Hur4Esxuurk,2004.0,1,5,2015,Man on Fire,Pita Is Kidnapped,tt0328107 oHOnldgbjy8,1990.0,4,5,2015,Marked for Death,Bulldozer Sandwich,tt0100114 dtOaXCoryQo,2004.0,2,5,2015,Man on Fire,RPG Meets SUV,tt0328107 5JU326dvQ2g,2004.0,3,5,2015,Man on Fire,Suppository Bomb,tt0328107 crB4KD3p8HU,2004.0,5,5,2015,Man on Fire,Pita Lives,tt0328107 izxkFm060yU,2004.0,4,5,2015,Man on Fire,I Wish You Had More Time,tt0328107 jsz79bztNJI,2007.0,4,5,2015,Live Free or Die Hard,Freeway Fighter,tt0337978 2wXBmSecjDo,2007.0,3,5,2015,Live Free or Die Hard,Spiderboy,tt0337978 rdzVVp7e_0Y,2007.0,2,5,2015,Live Free or Die Hard,Death Plunge,tt0337978 ECfvSmDe_-0,2006.0,5,5,2015,Little Miss Sunshine,A Family Affair,tt0449059 r1gBq45CkgI,2007.0,1,5,2015,Live Free or Die Hard,Helicopter Meets Car,tt0337978 cHT2zdQT3Ps,2007.0,5,5,2015,Live Free or Die Hard,Getting Gabriel,tt0337978 7VbYokM9dY4,2006.0,4,5,2015,Little Miss Sunshine,Remembrance of Things,tt0449059 akMZQpIbTm4,2006.0,3,5,2015,Little Miss Sunshine,Dwayne's Breakdown,tt0449059 -QNxYSDdpig,2006.0,1,5,2015,Little Miss Sunshine,Frankly Speaking,tt0449059 0jTSJ6NK6-4,2006.0,2,5,2015,Little Miss Sunshine,Olive Wants It,tt0449059 LxXjsQbCZR8,2002.0,4,5,2015,Kung Pow: Enter the Fist,Cow Fight,tt0240468 63IwUcBK_Rs,2002.0,3,5,2015,Kung Pow: Enter the Fist,Whoa the One-Boobed,tt0240468 941z56i7QJE,2002.0,1,5,2015,Kung Pow: Enter the Fist,Under Constant Attack,tt0240468 4bAPlP2HX7o,2002.0,2,5,2015,Kung Pow: Enter the Fist,Ready for Trouble,tt0240468 Dz6Pe77tpPg,2002.0,5,5,2015,Kung Pow: Enter the Fist,Master Tang Is Killed,tt0240468 uy_2GCNyzgk,2001.0,1,3,2015,Kissing Jessica Stein,Reaction Time,tt0264761 E25WrYP_1tU,2001.0,3,3,2015,Kissing Jessica Stein,An Affront to Gay People,tt0264761 zzgvxdPlUwA,2005.0,4,5,2015,Kingdom of Heaven,Defending the Walls,tt0320661 sBJ2jguXBes,2005.0,2,5,2015,Kingdom of Heaven,Outnumbered,tt0320661 1nKBe0dzhvg,2001.0,2,3,2015,Kissing Jessica Stein,Lesbian Sex,tt0264761 c8wj-v1Jdyc,2005.0,3,5,2015,Kingdom of Heaven,Ambush,tt0320661 qG8YoqrNMEA,2005.0,5,5,2015,Kingdom of Heaven,No Quarter,tt0320661 HTjeSsgZVW4,2003.0,1,3,2015,Just Married,Mile High Club Scene,tt0305711 TKBQuK1988w,2003.0,2,3,2015,Just Married,Roach Hotel Scene,tt0305711 6p1EuLz9Fes,2005.0,1,5,2015,Kingdom of Heaven,Knight's Oath,tt0320661 gRLpvojaVBM,2003.0,3,3,2015,Just Married,Wicked Wendy Scene,tt0305711 te-hhtqatQk,1986.0,5,5,2015,Jumpin' Jack Flash,Office Shootout,tt0091306 B6-nYQbUteA,1986.0,3,5,2015,Jumpin' Jack Flash,Shredder Fight,tt0091306 4kC1v_wKF7M,1986.0,4,5,2015,Jumpin' Jack Flash,Chocolate Whizway,tt0091306 jKC6UsetwN4,1986.0,2,5,2015,Jumpin' Jack Flash,Tourette's Syndrome,tt0091306 iyHNryKojDY,1986.0,1,5,2015,Jumpin' Jack Flash,Deciphering Mick Jagger,tt0091306 mgSDir-wcGk,2004.0,2,3,2015,Johnson Family Vacation,Chrishelle Blesses the Food,tt0359517 mR4FXksKdKg,2004.0,1,3,2015,Johnson Family Vacation,Butt Naked in 304,tt0359517 iv1eE7qxDXA,2004.0,3,3,2015,Johnson Family Vacation,Alligator in Bed,tt0359517 gP_GbzDWoY0,1944.0,5,10,2015,Arsenic and Old Lace,Low Brows,tt0036613 s8WzJJoKq_4,1944.0,3,10,2015,Arsenic and Old Lace,Your Nephew Jonathan,tt0036613 tg2X2RZsGy4,1944.0,8,10,2015,Arsenic and Old Lace,The Difference Between Plays and Reality,tt0036613 BGyfOMCRBn0,1944.0,7,10,2015,Arsenic and Old Lace,Insanity Runs in My Family,tt0036613 In_UKcRXzHs,1944.0,10,10,2015,Arsenic and Old Lace,The Son of a Sea Cook!,tt0036613 qj0L0g36IXU,1944.0,9,10,2015,Arsenic and Old Lace,He Looks Like Boris Karloff!,tt0036613 KPAnWhVV5dI,1944.0,1,10,2015,Arsenic and Old Lace,The Gentleman in the Window Seat,tt0036613 BDLvzvFFRu8,1944.0,6,10,2015,Arsenic and Old Lace,The Cellar's Crowded Already,tt0036613 KWAQRU2PeeM,1944.0,4,10,2015,Arsenic and Old Lace,What Are You Doing Here?,tt0036613 LVflxqHuw2I,1944.0,2,10,2015,Arsenic and Old Lace,Elderberry Wine,tt0036613 RiaUv2MwZ3E,1993.0,4,5,2015,The Good Son,Over the Edge,tt0107034 o2J59hT1Vto,1993.0,2,5,2015,The Good Son,Meet Mr. Highway,tt0107034 xqsDUwDwdUM,1993.0,5,5,2015,The Good Son,Life and Death Choice,tt0107034 yKguB1M0JFU,1993.0,1,5,2015,The Good Son,Homemade Crossbow,tt0107034 a-h2glY0jyg,1993.0,3,5,2015,The Good Son,Secrets and Lies,tt0107034 hVPSsxFKDLM,2006.0,5,5,2015,The Hills Have Eyes,Ruby Saves Doug,tt0454841 RFjVbXNMsNk,2006.0,4,5,2015,The Hills Have Eyes,Doug Kills Pluto,tt0454841 7SU4vD1T4oI,2006.0,3,5,2015,The Hills Have Eyes,Big Brain,tt0454841 zFxq7CCpzss,2006.0,1,5,2015,The Hills Have Eyes,Burned Alive,tt0454841 bz8JoC9BpV0,2006.0,2,5,2015,The Hills Have Eyes,Lizard Attacks,tt0454841 fRQsuCJ-g4I,1961.0,5,5,2015,The Hustler,Eddie Stands Up to Bert,tt0054997 mUxLZWWRKUI,1961.0,4,5,2015,The Hustler,"You're a Winner, Eddie",tt0054997 bpc3TKhS6MU,1961.0,2,5,2015,The Hustler,"I Gotta Hunch, Fat Man",tt0054997 F8QVrLcmRdA,1961.0,3,5,2015,The Hustler,It's Not Over Until Fats Says So,tt0054997 I5XMnxp2S9Q,1961.0,1,5,2015,The Hustler,Like He's Playing the Violin,tt0054997 0PCcz5_8IEI,1998.0,5,5,2015,How Stella Got Her Groove Back,Ever Consider Stanford?,tt0120703 qS2Np6zxXm0,1998.0,4,5,2015,How Stella Got Her Groove Back,Happy to See Mom,tt0120703 T_SHaqh4NdQ,1998.0,3,5,2015,How Stella Got Her Groove Back,Dance Grooves,tt0120703 ITicydPuKRI,1998.0,1,5,2015,How Stella Got Her Groove Back,Big Old Ho Slut,tt0120703 NH_wHu33CMw,1998.0,2,5,2015,How Stella Got Her Groove Back,Not Even Legal,tt0120703 li2zByHeanQ,2007.0,5,5,2015,Hitman,"Die, Bodyguards",tt0465494 cFVtyYzs48I,2007.0,4,5,2015,Hitman,Barrage of Bullets,tt0465494 XQdE3ydNvCU,2007.0,3,5,2015,Hitman,Sword Fight,tt0465494 6T_cb2U5lro,2007.0,2,5,2015,Hitman,Hotel Shootout,tt0465494 OjIh7FHeH8c,2007.0,1,5,2015,Hitman,A Gut Bomb,tt0465494 P_8O-iDvlmA,1991.0,4,5,2015,Barton Fink,Madman Mundt,tt0101410 yeBM3nwwmlE,1991.0,5,5,2015,Barton Fink,You're a Write-Off!,tt0101410 0CrSOPGvblI,1991.0,3,5,2015,Barton Fink,He's Taken a Interest!,tt0101410 LiN26NHb4ao,1991.0,2,5,2015,Barton Fink,Theater of the Common Man,tt0101410 VN54kkl_nTI,1991.0,1,5,2015,Barton Fink,That Feeling,tt0101410 vO6EKe8gVXk,2004.0,5,5,2015,I Heart Huckabees,Elevator Epiphanies,tt0356721 9EilqfAIudI,2004.0,4,5,2015,I Heart Huckabees,The Ball Thing,tt0356721 fjqjWC3Ycr4,2004.0,3,5,2015,I Heart Huckabees,Cracks & Connections,tt0356721 w2eNQ75wdq8,2004.0,2,5,2015,I Heart Huckabees,Dinner With Steven,tt0356721 hSdrwqLUpD0,2004.0,1,5,2015,I Heart Huckabees,The Blanket Truth,tt0356721 2BNVMvzHvT4,1997.0,2,3,2015,Inventing the Abbotts,Lust in the Library Scene,tt0119381 Yd1Bx8u7Om4,2005.0,3,3,2015,In Her Shoes,Maggie's Surprise,tt0388125 KQt2qAPhUAI,1997.0,3,3,2015,Inventing the Abbotts,Moving Too Fast Scene,tt0119381 YP2dblWITA0,2005.0,1,3,2015,In Her Shoes,The Art of Losing,tt0388125 kgNMy-k2VnA,1997.0,1,3,2015,Inventing the Abbotts,Kissing in the Garage Scene,tt0119381 6sMjSp6yOBY,2005.0,2,3,2015,In Her Shoes,Rose Finds Maggie,tt0388125 RsmcYTQsgIM,2006.0,1,3,2015,John Tucker Must Die,Gym Fight,tt0455967 Lh7bN_qJz8U,2006.0,3,3,2015,John Tucker Must Die,Wrong Room,tt0455967 BHIg0d4KQMc,2006.0,2,3,2015,John Tucker Must Die,Kissing Lesson,tt0455967 188YJIcBUkQ,1996.0,4,5,2015,Jingle All the Way,Christmas Chaos,tt0116705 jWyeugspkUA,1996.0,2,5,2015,Jingle All the Way,Santa Smackdown,tt0116705 blbqbdPFfns,1996.0,5,5,2015,Jingle All the Way,Howard Saves Jamie,tt0116705 VsZ4L4HwUFs,1996.0,3,5,2015,Jingle All the Way,Harmless Package,tt0116705 YTcFsdIJ_Xo,1996.0,1,5,2015,Jingle All the Way,Looking for Turbo Man,tt0116705 BKTyV8Msk8o,1997.0,3,3,2015,The Ice Storm,Key Party,tt0119349 MeRtEy1FVAU,1997.0,2,3,2015,The Ice Storm,Wendy and Sandy,tt0119349 4uDUNAPdYb4,1997.0,1,3,2015,The Ice Storm,Thanksgiving Dinner,tt0119349 QtrJ6ojRtik,2002.0,2,3,2015,In America,Save My Baby,tt0298845 S7rZsWVUAFI,2002.0,3,3,2015,In America,"Goodbye, Frankie",tt0298845 c_TXof1C-OI,1985.0,5,5,2015,The Jewel of the Nile,A Swinging Rescue,tt0089370 ze-aAIzwD_E,2002.0,1,3,2015,In America,Mateo is Dying,tt0298845 JAHLYTVcm5M,1985.0,4,5,2015,The Jewel of the Nile,Nubian Wrestler,tt0089370 dDQ0rUdj0KM,1985.0,2,5,2015,The Jewel of the Nile,Escape by Jet,tt0089370 IFc2QKCnGEg,1985.0,3,5,2015,The Jewel of the Nile,Eat Rock!,tt0089370 w5PGP9-_x5E,1985.0,1,5,2015,The Jewel of the Nile,A Lucky Reunion,tt0089370 EJ5ywAAmiU4,2004.0,5,5,2015,"I, Robot",Spooner Destroys V.I.K.I.,tt0343818 L1UxZJ9owXY,2004.0,3,5,2015,"I, Robot",Freeway Ambush,tt0343818 iz3l5GLSWJk,2004.0,4,5,2015,"I, Robot",Part Robot,tt0343818 rkaXuC5hrCE,2004.0,2,5,2015,"I, Robot",Demolition,tt0343818 Ouht1xip9NQ,2004.0,1,5,2015,"I, Robot",Rogue Robot,tt0343818 bhGfpwfae-k,1996.0,2,5,2015,Independence Day,Close Encounter,tt0116629 ZlawibQ_QKI,1996.0,3,5,2015,Independence Day,Nuke 'Em,tt0116629 vjFG-4Ge668,1996.0,1,5,2015,Independence Day,Time's Up,tt0116629 NyOTaHRBTXc,1996.0,5,5,2015,Independence Day,Russell Becomes a Hero,tt0116629 9t1IK_9apWs,1996.0,4,5,2015,Independence Day,The President's Speech,tt0116629 zsqpY4w2e1Q,2006.0,4,5,2015,Eragon,Dragon Battle,tt0449010 M_bzbtdfaik,2006.0,1,5,2015,Eragon,Feeding a Dragon,tt0449010 shj7YP98Yxs,2006.0,2,5,2015,Eragon,Dragon Rider,tt0449010 51iAljD9Q7Q,2006.0,3,5,2015,Eragon,Fear and Courage,tt0449010 K0xpWKgNCk0,2006.0,5,5,2015,Eragon,Kills Durza,tt0449010 a2872XpfqKY,1992.0,3,5,2015,Home Alone 2: Lost in New York,Staple Gun Doorknob Scene,tt0104431 sqhPvOlgzjo,2005.0,3,3,2015,Hide and Seek,Goodbye Charlie,tt0382077 zbJwjn4p0cQ,2005.0,1,3,2015,Hide and Seek,Elizabeth Finds Charlie,tt0382077 r-ddXOrPiZ0,2005.0,2,3,2015,Hide and Seek,Charlie Attacks the Sheriff,tt0382077 6zFeIaPbJwM,1993.0,2,5,2015,Hot Shots! Part Deux,"Kiss Me, Topper",tt0107144 sAwwDhNJJO0,1993.0,3,5,2015,Hot Shots! Part Deux,Limo Lovin',tt0107144 9aqopEQr7wI,1993.0,4,5,2015,Hot Shots! Part Deux,Bloodiest Movie Ever,tt0107144 zgYGbR8f1PA,1991.0,5,5,2015,Hot Shots!,In for a Landing,tt0102059 ECiut2qgJck,1991.0,4,5,2015,Hot Shots!,Emergency Medical Care,tt0102059 3JkBKGttM_U,1991.0,3,5,2015,Hot Shots!,Dead Meat's Lucky Day,tt0102059 dZwnXa6XHSI,1991.0,1,5,2015,Hot Shots!,Topper Meets His Shrink,tt0102059 5ogVT5mpg6c,1991.0,2,5,2015,Hot Shots!,The Food of Love,tt0102059 q437KEcmwmM,2001.0,5,5,2015,From Hell,Carriage Collapse,tt0120681 ryvvNrcMh-c,2001.0,4,5,2015,From Hell,I Gave Birth to the 20th Century,tt0120681 mphHRcrJfNE,2001.0,3,5,2015,From Hell,Chasing the Dragon,tt0120681 o2xprwwIMXM,2001.0,2,5,2015,From Hell,I'm Still a Woman,tt0120681 fluJSCbNpDM,2001.0,1,5,2015,From Hell,Paying the Ferryman,tt0120681 nhP_9bFQvjg,2004.0,5,5,2015,Flight of the Phoenix,The Phoenix Flies,tt0377062 NEJtJu--hto,2004.0,3,5,2015,Flight of the Phoenix,That Settles That,tt0377062 _KCXk-BhTd8,2004.0,4,5,2015,Flight of the Phoenix,Toy Planes,tt0377062 fWP17t95S2k,2004.0,2,5,2015,Flight of the Phoenix,Electrical Storm,tt0377062 QMJfw8aF90Y,2004.0,1,5,2015,Flight of the Phoenix,The Crash,tt0377062 BP6N_JrLUIM,1993.0,5,5,2015,Hot Shots! Part Deux,A Parting Shot,tt0107144 TNkvLDF7JOY,1993.0,1,5,2015,Hot Shots! Part Deux,Topper's Kickboxing Match,tt0107144 mDUSjBiHYeY,1990.0,5,5,2015,Home Alone,Kevin Escapes Scene,tt0099785 S7OWoc-j8qQ,1990.0,4,5,2015,Home Alone,Thirsty for More? Scene,tt0099785 ddXUQu9RC4U,1990.0,3,5,2015,Home Alone,Booby Traps Scene,tt0099785 _qu4ZBCU6Fc,1990.0,1,5,2015,Home Alone,Kevin Washes Up Scene,tt0099785 tpfOhYRYv80,1990.0,2,5,2015,Home Alone,Scaring Marv Scene,tt0099785 bI9CAfqY3hk,1992.0,5,5,2015,Hoffa,The Assassination,tt0104427 JY6N-tEppkg,1992.0,2,5,2015,Hoffa,Labor Riot,tt0104427 zE2-th0lNbg,1992.0,3,5,2015,Hoffa,The Deer Hunter.,tt0104427 9h9W4c2YLCg,1992.0,4,5,2015,Hoffa,vs. Kennedy,tt0104427 FVg9En9jYSo,1992.0,1,5,2015,Hoffa,Explosive Accident,tt0104427 hwpHOq3Xbks,2004.0,5,5,2015,Garfield,Saved by Lasagna,tt0356634 SgqfufV0AL0,2004.0,4,5,2015,Garfield,Ventilation Shaft Ride,tt0356634 tUuzV9kwSBE,2004.0,3,5,2015,Garfield,Odie Steals the Show,tt0356634 6_5QkJsNCho,2004.0,2,5,2015,Garfield,Odie Saves,tt0356634 Pojd3KNQq68,2004.0,1,5,2015,Garfield,Cat and Mouse,tt0356634 ZvvlFocf6LU,1971.0,1,5,2015,The French Connection,Bad Santa,tt0067116 MYv8K_joa6A,1971.0,2,5,2015,The French Connection,Cleaning Up the Bar,tt0067116 JD-K9Exe8jw,1971.0,3,5,2015,The French Connection,Subway Getaway,tt0067116 wYMJal35N0o,1971.0,5,5,2015,The French Connection,End of the Line,tt0067116 2TVyJ-51jzc,1971.0,4,5,2015,The French Connection,Chasing the Train,tt0067116 E3RQVcNUcTA,1992.0,2,5,2015,Home Alone 2: Lost in New York,Give It to Me Scene,tt0104431 h_bUcNjmuSk,1992.0,1,5,2015,Home Alone 2: Lost in New York,"Merry Christmas, You Filthy Animal Scene",tt0104431 Dh1V8GyyNYE,1992.0,5,5,2015,Home Alone 2: Lost in New York,A Kid vs. Two Idiots Scene,tt0104431 DTPq0mNS0-0,1992.0,4,5,2015,Home Alone 2: Lost in New York,"Marv Electrocuted, Harry Blows Up Scene",tt0104431 ghDDdQxgXRw,2000.0,4,5,2015,"Dude, Where's My Car?",Better Than Fabio,tt0242423 G2Mbj06Ns2Y,2000.0,3,5,2015,"Dude, Where's My Car?",Sweet Tattoos,tt0242423 uL2gxb-TcLM,2000.0,5,5,2015,"Dude, Where's My Car?",Zoltan Meeting,tt0242423 ADRGgyhX4YE,2000.0,1,5,2015,"Dude, Where's My Car?",Stoner Dog,tt0242423 oqwzuiSy9y0,2000.0,2,5,2015,"Dude, Where's My Car?",And Theeennn...,tt0242423 szLCkEBB6xs,1990.0,2,5,2015,Edward Scissorhands,A Thrilling Experience Scene,tt0099487 G1DG6f_6nZ8,1990.0,4,5,2015,Edward Scissorhands,Jim Attacks Edward Scene,tt0099487 d9PlKlirxT4,1990.0,5,5,2015,Edward Scissorhands,Kim Remembers Edward Scene,tt0099487 64IwbhFYuUM,1990.0,3,5,2015,Edward Scissorhands,Edward Makes Snow Scene,tt0099487 pu523TrIMpg,1990.0,1,5,2015,Edward Scissorhands,Edward Frightens Kim Scene,tt0099487 eCKRI2wEw7I,1999.0,5,5,2015,Fight Club,Letting Yourself Become Tyler Durden,tt0137523 6pJC0FLA3Sk,1999.0,4,5,2015,Fight Club,Jack's Smirking Revenge,tt0137523 zvtUrjfnSnA,1999.0,3,5,2015,Fight Club,Chemical Burn,tt0137523 CR5Jp_ag2M8,1999.0,1,5,2015,Fight Club,I Want You to Hit Me,tt0137523 dC1yHLp9bWA,1999.0,2,5,2015,Fight Club,The First Rule of,tt0137523 faX23LNpQGg,2007.0,5,5,2015,The Darjeeling Limited,I Told You Not to Come Here,tt0838221 Wy6ANzdhy1s,2007.0,3,5,2015,The Darjeeling Limited,I'm Gonna Mace You in the Face!,tt0838221 mVybomocIw4,2007.0,4,5,2015,The Darjeeling Limited,Let's Get High,tt0838221 1j8l24hHhgA,2007.0,2,5,2015,The Darjeeling Limited,We Haven't Located Us Yet,tt0838221 Em4igIXJRgw,2007.0,1,5,2015,The Darjeeling Limited,You're Crazy,tt0838221 spbfax8dOTk,2005.0,2,5,2015,Elektra,Ninja Assassin,tt0357277 IYcgbsw7yc4,2005.0,3,5,2015,Elektra,Kiss of Death,tt0357277 Y-zjMdsTYyw,2005.0,4,5,2015,Elektra,Fights Kirigi,tt0357277 mlcBwNHilHE,2005.0,5,5,2015,Elektra,Defeats Kirigi,tt0357277 ebj_l5icPPg,2005.0,4,5,2015,Fever Pitch,She's Late,tt0332047 XqmCa8WjX5Q,2005.0,3,5,2015,Fever Pitch,Really Big Fan,tt0332047 A3WWrwBRH_w,2005.0,1,5,2015,Elektra,Death's Not That Bad,tt0357277 6qIBzPrHoVk,2005.0,2,5,2015,Fever Pitch,Date With Vomit Girl,tt0332047 zPN9c-AIezE,2005.0,5,5,2015,Fever Pitch,A Passionate Commitment,tt0332047 KpOUP8mC9fk,2005.0,1,5,2015,Fever Pitch,Ben Meets Lindsey,tt0332047 J03lpGKZ0xc,1998.0,3,5,2015,Ever After,"Falling for ""Henry""",tt0120631 ZpkIPtYw01k,1998.0,2,5,2015,Ever After,Carrying the Prince,tt0120631 TrxJeKnKaAk,1998.0,4,5,2015,Ever After,Pebble in Her Shoe,tt0120631 chBVj94zYDM,1998.0,1,5,2015,Ever After,Contradictions,tt0120631 ZGFHY5JjTZQ,1998.0,5,5,2015,Ever After,Henry Proposes,tt0120631 -4QqksHXUCc,2004.0,5,5,2015,Dodgeball: A True Underdog Story,Average Joes vs. Purple Cobras,tt0364725 sT47KfDlwI8,2004.0,1,5,2015,Dodgeball: A True Underdog Story,Instructional Video,tt0364725 BXveaReACHs,2004.0,4,5,2015,Dodgeball: A True Underdog Story,White Knight,tt0364725 peUyLXrgYZ0,2004.0,3,5,2015,Dodgeball: A True Underdog Story,Dodgeball Training,tt0364725 E4e_QytNF4I,1999.0,4,5,2015,Drive Me Crazy,The In Crowd,tt0164114 s6DlYFmuJXw,1999.0,5,5,2015,Drive Me Crazy,Keep On Lovin' You,tt0164114 KqQ1UmDPvgA,2004.0,2,5,2015,Dodgeball: A True Underdog Story,The Purple Cobras,tt0364725 SPiSR_YDfXc,1999.0,2,5,2015,Drive Me Crazy,A Walking Punch Line,tt0164114 gRyEkrwnyaI,1999.0,3,5,2015,Drive Me Crazy,Cruising Broad Street,tt0164114 D6DPbztWi8U,1999.0,1,5,2015,Drive Me Crazy,Take Me to Centennial?,tt0164114 P0Tt7VUMLs8,1990.0,5,5,2015,Die Hard 2,Bon Voyage Scene,tt0099423 acnUb2KcgdU,1990.0,4,5,2015,Die Hard 2,Enough Friends Scene,tt0099423 jZiR9MHumCk,1990.0,2,5,2015,Die Hard 2,Military Funeral Scene,tt0099423 3_zKy7ygsHY,1990.0,3,5,2015,Die Hard 2,Snowmobile Chase Scene,tt0099423 g-P53rME1xE,1990.0,1,5,2015,Die Hard 2,Skywalk Shootout Scene,tt0099423 I6wRZCV7naE,1988.0,2,5,2015,Die Hard,"Welcome To The Party, Pal Scene",tt0095016 cnQEo4bazIo,1988.0,5,5,2015,Die Hard,"Happy Trails, Hans Scene",tt0095016 LVpnmOXvBR0,1988.0,4,5,2015,Die Hard,McClane Jumps Scene,tt0095016 2PjZAeiU7uM,2006.0,1,5,2015,The Devil Wears Prada,Gird Your Loins!,tt0458352 BSRrzrQtmto,1988.0,3,5,2015,Die Hard,Yippee-Ki-Yay Scene,tt0095016 L0CL__Tvp-o,1988.0,1,5,2015,Die Hard,Ho Ho Ho Scene,tt0095016 b2f2Kqt_KcE,2006.0,2,5,2015,The Devil Wears Prada,Andy's Interview,tt0458352 -qdHE9-8spU,2006.0,5,5,2015,The Devil Wears Prada,Everyone Wants to Be Us,tt0458352 HQSGHbbDR_Q,1951.0,1,5,2015,The Day the Earth Stood Still,Klaatu Comes in Peace,tt0043456 Ja2fgquYTCg,2006.0,3,5,2015,The Devil Wears Prada,Stuff,tt0458352 K6iF5sINVns,1951.0,2,5,2015,The Day the Earth Stood Still,Gort Appears,tt0043456 ASsNtti1XZs,1951.0,4,5,2015,The Day the Earth Stood Still,Klaatu's Speech,tt0043456 HSPYgwP9R84,2006.0,4,5,2015,The Devil Wears Prada,Andy Gets a Makeover,tt0458352 M9phuyRknPw,1951.0,5,5,2015,The Day the Earth Stood Still,The Choice Is Ours,tt0043456 5NZXmq-E2tM,1951.0,3,5,2015,The Day the Earth Stood Still,Klaatu Barada Nikto,tt0043456 sKNAfihSpnk,1986.0,6,10,2015,Troll,A Visit From the Wicked Witch,tt0092115 1e7FILJsiZA,1986.0,2,10,2015,Troll,Peter Turns Into a Pod,tt0092115 iGhEOyypT2A,1986.0,7,10,2015,Troll,The Birth of Brother Elf,tt0092115 DfW_3qH9G5M,1986.0,1,10,2015,Troll,The Captures Wendy,tt0092115 Loo5BhidY-4,1986.0,9,10,2015,Troll,Sleeping Beauty,tt0092115 pMPJV8sYt7k,1986.0,4,10,2015,Troll,The Music of the Monsters,tt0092115 34c473tq72E,1986.0,5,10,2015,Troll,Jeanette the Nymph,tt0092115 Q6luiTx1pM8,1986.0,10,10,2015,Troll,A Hero,tt0092115 ZS7BASI6gpM,1986.0,8,10,2015,Troll,Facing Evil,tt0092115 nRLP98lG1YA,1986.0,3,10,2015,Troll,What Death Looks Like,tt0092115 kPHbIyDTPHU,1996.0,7,12,2015,Fargo,Morning Sickness Scene,tt0116282 R4lxBhDtvXQ,1996.0,6,12,2015,Fargo,Whoa Daddy Scene,tt0116282 RM2N1w6t1KM,1996.0,4,12,2015,Fargo,A Finder's Fee Scene,tt0116282 bbpQmRxCYUU,1996.0,3,12,2015,Fargo,Total Silence Scene,tt0116282 MY5NspwaVgk,1996.0,1,12,2015,Fargo,Pancakes Scene,tt0116282 0hL-fpCsGR8,1996.0,12,12,2015,Fargo,A Little Bit of Money Scene,tt0116282 WGxTMoDAI7M,1996.0,5,12,2015,Fargo,Fake Phone Call Scene,tt0116282 TqNaJxRC9NM,1996.0,10,12,2015,Fargo,Lundegaard's Dealership Scene,tt0116282 0YzsWVUO-_o,1996.0,11,12,2015,Fargo,The Wood Chipper Scene,tt0116282 MXcxWsdjYHA,1996.0,9,12,2015,Fargo,Carl and the Parking Attendant Scene,tt0116282 8ltYYXhGCBo,1996.0,8,12,2015,Fargo,Officer Lou's Police Work Scene,tt0116282 B2LLB9CGfLs,1996.0,2,12,2015,Fargo,TruCoat Scene,tt0116282 T3nGqPQJqlQ,2002.0,3,5,2015,Bend It Like Beckham,The Winning Goal,tt0286499 MnUGqPzLojs,2002.0,5,5,2015,Bend It Like Beckham,Going to America,tt0286499 Dk5SrjFVQIM,2002.0,1,5,2015,Bend It Like Beckham,Do You Play For Any Side?,tt0286499 uopLUlluf-I,2002.0,4,5,2015,Bend It Like Beckham,I Want Her to Win,tt0286499 oZoXYuatXzI,2002.0,2,5,2015,Bend It Like Beckham,Jess and Joe Almost Kiss,tt0286499 ZZyXtEMFfaw,2004.0,5,5,2015,The Day After Tomorrow,Wolves,tt0319262 GmjAp2eRDH0,2004.0,2,5,2015,The Day After Tomorrow,Super-Sized Tsunami,tt0319262 dkErNkX2HKM,2004.0,1,5,2015,The Day After Tomorrow,Tornadoes Destroy Hollywood,tt0319262 L2PdSg-w5T8,2004.0,3,5,2015,The Day After Tomorrow,Body Heat,tt0319262 MKf_SL_owsY,2004.0,4,5,2015,The Day After Tomorrow,Why He Joined the Team,tt0319262 Dus8r5l5cys,1985.0,5,5,2015,Commando,Let Off Some Steam,tt0088944 HjNQLXXwYfw,1985.0,4,5,2015,Commando,Rampage,tt0088944 zB6pvQt0I8s,1985.0,3,5,2015,Commando,I Let Him Go,tt0088944 YcSXHU0zktM,1985.0,2,5,2015,Commando,Mall Brawl,tt0088944 hopRenk1oaQ,1985.0,1,5,2015,Commando,He's Dead Tired,tt0088944 M3u94uEBq9o,2005.0,5,5,2015,Cheaper by the Dozen 2,Kneeboarding,tt0452598 FccBG82Ocds,2005.0,4,5,2015,Cheaper by the Dozen 2,The Meat Seat,tt0452598 djUYiJu6K48,2005.0,2,5,2015,Cheaper by the Dozen 2,Clam Bake,tt0452598 5e7c30eNNy4,2005.0,3,5,2015,Cheaper by the Dozen 2,Camp out Sing-a-Long,tt0452598 5SrayNqew08,2003.0,5,5,2015,Cheaper by the Dozen,Best Party Ever,tt0349205 LRD16Y5xR9Y,2005.0,1,5,2015,Cheaper by the Dozen 2,The Chisler,tt0452598 ZWLQiviq7SM,2003.0,4,5,2015,Cheaper by the Dozen,Overwhelmed,tt0349205 1ZVwo_elP7Y,2003.0,3,5,2015,Cheaper by the Dozen,Dinner Complications,tt0349205 I-OaeRbZtk8,2003.0,2,5,2015,Cheaper by the Dozen,Hangin' With the Neighbors,tt0349205 oIjgZ-i9v_k,2003.0,1,5,2015,Cheaper by the Dozen,Frog For Breakfast,tt0349205 4Y9X5wDG4Dw,1996.0,2,3,2015,Chain Reaction,It's Over,tt0115857 P4BRIozjuKg,1996.0,3,3,2015,Chain Reaction,Up the Shaft,tt0115857 xCKGA9yDNgQ,1996.0,1,3,2015,Chain Reaction,Outrunning the Explosion,tt0115857 jZtlV8eroS8,1998.0,5,5,2015,Bulworth,Little Brothers,tt0118798 Pwv4avomXYo,1998.0,4,5,2015,Bulworth,The Cop's Apology,tt0118798 Id0cqNWZ50Y,1998.0,2,5,2015,Bulworth,Raps,tt0118798 XA62refAB2w,1998.0,1,5,2015,Bulworth,South Central Speech,tt0118798 f5umSa_YYX0,1998.0,3,5,2015,Bulworth,No More Black Leaders,tt0118798 bdft59iqlKQ,2002.0,5,5,2015,Brown Sugar,On-Air Love Confession,tt0297037 hnfpujruuv4,2002.0,4,5,2015,Brown Sugar,We Made a Huge Mistake,tt0297037 eLdQluY23UI,2002.0,2,5,2015,Brown Sugar,She's About to Marry Your Man!,tt0297037 fa4IKrf2YHI,2002.0,3,5,2015,Brown Sugar,Dre and Sidney Sleep Together,tt0297037 ___OJkS9RK0,2002.0,1,5,2015,Brown Sugar,It's Gonna Be Okay,tt0297037 ITu2LTUPniQ,1999.0,2,3,2015,Brokedown Palace,A Sacred Court,tt0120620 -3KCgSpt3hU,1999.0,3,3,2015,Brokedown Palace,Character,tt0120620 WkjEuV1fTrk,1999.0,1,3,2015,Brokedown Palace,Right To An Attorney,tt0120620 MTEXVT8P354,1987.0,5,5,2015,Broadcast News,Tears on Cue,tt0092699 A5xTu6AMxq4,1987.0,2,5,2015,Broadcast News,Aaron Struggles on Air,tt0092699 2zTqIJeCd3c,1987.0,1,5,2015,Broadcast News,She Is This Good,tt0092699 ZTCtiADVAWs,1987.0,3,5,2015,Broadcast News,Aaron Loves Jane,tt0092699 zPtKevwg7Ko,1987.0,4,5,2015,Broadcast News,Starting the Bad Part,tt0092699 pWYPN21XIEU,1979.0,3,3,2015,Breaking Away,Victory for the Cutters,tt0078902 VTZ0N7VTDtY,1979.0,2,3,2015,Breaking Away,Sabotage Italian Style,tt0078902 6DQTWY9wTO8,1979.0,1,3,2015,Breaking Away,A Fight Breaks Out,tt0078902 a1GeB9y9zzo,2006.0,5,5,2015,Big Momma's House 2,Big Momma Brings It Scene,tt0421729 C3ZMp57PKEA,2006.0,4,5,2015,Big Momma's House 2,On the Beach Scene,tt0421729 HZzHIl9mBsI,2006.0,1,5,2015,Big Momma's House 2,Big Momma's In the House! Scene,tt0421729 u2107BTcDbs,2006.0,2,5,2015,Big Momma's House 2,Spa Day Scene,tt0421729 le6AAhqa_8U,2006.0,3,5,2015,Big Momma's House 2,Hot Rock Massage Scene,tt0421729 wZaCK0PDUMI,2000.0,5,5,2015,Big Momma's House,Not In Scene,tt0208003 kGot2YelCpE,2000.0,4,5,2015,Big Momma's House,Big Momma's Got Game Scene,tt0208003 9W5MiCLa9DU,2000.0,3,5,2015,Big Momma's House,Delivering the Baby Scene,tt0208003 a9biNJwX3OA,2000.0,2,5,2015,Big Momma's House,Mr. Rawley Scene,tt0208003 noT3bA3Ibyk,2000.0,1,5,2015,Big Momma's House,Trapped In the Bathroom Scene,tt0208003 SwtSrzKWoK4,1970.0,5,5,2015,Beyond the Valley of the Dolls,A Murderous Rampage,tt0065466 hpDjzODXpBQ,1970.0,4,5,2015,Beyond the Valley of the Dolls,Harris Attempts Suicide,tt0065466 DvSmeQSDTco,1970.0,3,5,2015,Beyond the Valley of the Dolls,Vehicular Assault,tt0065466 zh4yF8r5uJI,1970.0,2,5,2015,Beyond the Valley of the Dolls,First Time in a Rolls,tt0065466 Y10g9umKQcM,1970.0,1,5,2015,Beyond the Valley of the Dolls,The Kelly Affair Perform,tt0065466 pMx5aSV7qFg,2000.0,4,5,2015,The Beach,Richard's Hallucination,tt0163978 -N2mhlvygq0,2000.0,5,5,2015,The Beach,The Unloaded Gun Backfires,tt0163978 GpQTd7WhT-Q,2000.0,2,5,2015,The Beach,Night Swimming,tt0163978 Yc9vYLgQb4E,2000.0,3,5,2015,The Beach,A Shark Tale,tt0163978 oNmhgpAGlBs,2000.0,1,5,2015,The Beach,Photographing the Night Sky,tt0163978 5KderLI5hEc,2002.0,5,5,2015,The Banger Sisters,Hannah's Speech,tt0280460 Om_HVqAXZYY,2002.0,3,5,2015,The Banger Sisters,The Rock Cock Collection,tt0280460 -Jzi-2lYWEw,2002.0,1,5,2015,The Banger Sisters,Breasts at the DMV,tt0280460 yGUwdRBZ4-8,2002.0,4,5,2015,The Banger Sisters,Heart to Heart,tt0280460 f_sRtGI7Y0g,2002.0,2,5,2015,The Banger Sisters,Spoiled Brats,tt0280460 5tu_42LmfEw,1950.0,2,5,2015,All About Eve,Waves of Love,tt0042192 CBOzczGQh9w,1950.0,5,5,2015,All About Eve,Eve Belongs to Addison,tt0042192 1orN1oGScbk,1950.0,4,5,2015,All About Eve,Eve Blackmails Karen,tt0042192 LPPJdOGshUM,1950.0,1,5,2015,All About Eve,Fasten Your Seatbelts,tt0042192 eWL0obbYYOE,1950.0,3,5,2015,All About Eve,Bill Loves Margo,tt0042192 -5be_UPkLRw,2002.0,2,3,2015,Antwone Fisher,Antwone's Poem,tt0168786 ucQmXLgGIVA,2002.0,1,3,2015,Antwone Fisher,Antwone Makes a Scene,tt0168786 LW8CpOzdT5Q,2002.0,3,3,2015,Antwone Fisher,Antwone Meets His Mother,tt0168786 14Mf_nTyWBc,1997.0,3,5,2015,Alien: Resurrection,Up the Ladder,tt0118583 L4_-rVenLVs,1997.0,5,5,2015,Alien: Resurrection,Alien Ejection,tt0118583 UsJjfS-i2zM,1997.0,4,5,2015,Alien: Resurrection,Mutation,tt0118583 cv7_7dSbaOk,1997.0,2,5,2015,Alien: Resurrection,Swimming Aliens,tt0118583 LFN4NtioY8Q,1997.0,1,5,2015,Alien: Resurrection,Goodbye Doctor,tt0118583 L3vbfkRB6gQ,1992.0,5,5,2015,Alien 3,Ripley's Sacrifice,tt0103644 DZFydcYiOtQ,1992.0,4,5,2015,Alien 3,Molten Lead,tt0103644 DNuzmKc7mq4,1992.0,1,5,2015,Alien 3,Dr. Clemens Killed,tt0103644 hmF_IO6Aiag,1992.0,3,5,2015,Alien 3,Just Do What You Do,tt0103644 dCTd1XHbliU,1992.0,2,5,2015,Alien 3,It's Here!,tt0103644 GmvpP26J-40,2003.0,1,5,2015,Master and Commander,Men Must Be Governed,tt0311113 Vy-simXeFBc,2003.0,5,5,2015,Master and Commander,A Duet,tt0311113 Isx0GBj1fxU,2003.0,4,5,2015,Master and Commander,Hand to Hand Combat,tt0311113 G95g0vzTAKI,2003.0,3,5,2015,Master and Commander,Attack on the Acheron,tt0311113 b7NJkxnU7xI,2000.0,1,5,2015,Where the Heart Is,Sister Husband,tt0198021 ai1wUoboyNM,2002.0,5,5,2015,Swimfan,Paging Jake Donnelly Scene,tt0283026 apo0KrJVXMk,2002.0,4,5,2015,Swimfan,Dead Body Scene,tt0283026 d_FUI6kf1b8,2002.0,3,5,2015,Swimfan,I'm Trying to Drop You Scene,tt0283026 Jj0UuTkXIyA,2002.0,1,5,2015,Swimfan,Swim Lessons Scene,tt0283026 441D9uXF1ac,2002.0,2,5,2015,Swimfan,Almost Busted Scene,tt0283026 5f0cBrCTeis,2003.0,2,5,2015,Master and Commander,Self Surgery,tt0311113 1QvItdreFLk,2007.0,5,5,2015,Juno,and Bleeker Sing,tt0467406 jPF_mENo1Fw,2007.0,3,5,2015,Juno,Vanessa Talks to Her Baby,tt0467406 B2CEGhwMjkQ,2007.0,4,5,2015,Juno,I'm a Planet!,tt0467406 GOqTRPdrXgc,2007.0,2,5,2015,Juno,A Little Viking,tt0467406 NocIDIeLTqA,2007.0,1,5,2015,Juno,Doodle Can't Be Un-did,tt0467406 OwYH_j7c9gE,1998.0,3,3,2015,Waking Ned Devine,Fateful Phone Call,tt0166396 GQJMW4W_278,1998.0,2,3,2015,Waking Ned Devine,Naked Motorcycle Ride,tt0166396 S_yY1PaFEok,1998.0,1,3,2015,Waking Ned Devine,Have We Won?,tt0166396 31t8eDmC1BU,2000.0,5,5,2015,Where the Heart Is,I Lied,tt0198021 CJIECQdjuLU,2000.0,4,5,2015,Where the Heart Is,I Don't Love You,tt0198021 o0Y7v_EbE70,2000.0,3,5,2015,Where the Heart Is,Tornado,tt0198021 i2isplJSa8E,2000.0,2,5,2015,Where the Heart Is,Celebrity Mommy,tt0198021 4ybEyyoBxts,2005.0,3,5,2015,Transporter 2,Auto Acrobatics,tt0388482 DTMVpuLIp18,1999.0,4,5,2015,Lake Placid,Come and Get It,tt0139414 IRZrsNC5jpg,1999.0,5,5,2015,Lake Placid,Hector's Close Call,tt0139414 RDnvXAkMnx8,1995.0,1,5,2015,Die Hard: With a Vengeance,Bad Day in Harlem Scene,tt0112864 dNlMe4kU9TA,1995.0,4,5,2015,Die Hard: With a Vengeance,Escaping the Flood Scene,tt0112864 8RVVJmuoAQ4,1995.0,2,5,2015,Die Hard: With a Vengeance,Joyride Through Central Park Scene,tt0112864 crPJvv2Y3hk,1995.0,5,5,2015,Die Hard: With a Vengeance,Yippee-Ki-Yay Scene,tt0112864 Q0yQbpoQ0hY,1995.0,3,5,2015,Die Hard: With a Vengeance,Suspicious Cops Scene,tt0112864 GMCKHfREAPA,1999.0,1,5,2015,Lake Placid,Don't Let Go!,tt0139414 cONYIjOytm0,1999.0,3,5,2015,Lake Placid,Crocodile Has a Bear Snack,tt0139414 EsFrRaMQMPA,1999.0,2,5,2015,Lake Placid,Crocodile Eats Burke,tt0139414 qr7oBpkkxIQ,2005.0,4,5,2015,Transporter 2,Trashing the Gang,tt0388482 Hpc8yqHTq-I,2005.0,5,5,2015,Transporter 2,Fire-Hose Fray,tt0388482 -HPjEz0u-9Q,2005.0,1,5,2015,Transporter 2,Jacking the Carjackers,tt0388482 RUpKMSWPjZw,2005.0,2,5,2015,Transporter 2,Bullet-Spraying Blonde,tt0388482 D2XKjKc8DKg,2004.0,5,5,2015,Garden State,Fox - Andrew Chooses Sam,tt0333766 GZQMDeQs0-k,2004.0,4,5,2015,Garden State,Fox - Can't Cry,tt0333766 qSGfcCO_h4I,2004.0,3,5,2015,Garden State,Fox - A True Original,tt0333766 cncKzAr-jis,2004.0,2,5,2015,Garden State,Fox - Visiting Jesse,tt0333766 11Kv8mnxdCM,1988.0,4,5,2015,Big,Company Party Scene,tt0094737 3ERuhks3GNk,1988.0,3,5,2015,Big,Josh Doesn't Get It Scene,tt0094737 dME9-07ZvJI,1986.0,3,5,2015,Big Trouble in Little China,Battle Royale,tt0090728 sZTpI9Q71rs,2006.0,5,5,2015,Grandma's Boy,"Drive, Monkey, Drive",tt0456554 HgmE4x7yg3c,2006.0,3,5,2015,Grandma's Boy,Party at Grandma's House,tt0456554 agRBVqecl5Y,2004.0,1,5,2015,Garden State,Meeting Sam,tt0333766 wdWM3tzzH08,2006.0,2,5,2015,Grandma's Boy,The Stupid Idiot Room,tt0456554 a2Th8JGsJuo,2006.0,4,5,2015,Grandma's Boy,I Am a Genius,tt0456554 DuKvU5jh2os,2006.0,1,5,2015,Grandma's Boy,I Can't Stop Coming!,tt0456554 gxeIvClLpKI,1988.0,5,5,2015,Big,Sleepover Scene,tt0094737 CF7-rz9nIn4,1988.0,2,5,2015,Big,Playing the Piano Scene,tt0094737 9pX1hxYW3YY,1988.0,1,5,2015,Big,Josh Is Scene,tt0094737 d-RR_vV7qDU,2001.0,1,5,2015,Behind Enemy Lines,Missile Chase,tt0159273 gS56O-aHEMs,1996.0,1,3,2015,Broken Arrow,Nuclear Boom,tt0115759 De2qscGlWX4,1996.0,3,3,2015,Broken Arrow,Blown Away,tt0115759 zW7btaVY-Lw,1996.0,2,3,2015,Broken Arrow,Fight on the Train,tt0115759 pTvbSVyWP9I,2001.0,4,5,2015,Behind Enemy Lines,Snowman Disguise,tt0159273 5dL4tZZ-Jq8,2001.0,5,5,2015,Behind Enemy Lines,Rescued,tt0159273 tNZKO_68_WI,1969.0,4,5,2015,Butch Cassidy and the Sundance Kid,The Shootout Scene,tt0064115 w9KBOhPXhds,1969.0,1,5,2015,Butch Cassidy and the Sundance Kid,Knife Fight Scene,tt0064115 geOqbM03Hf0,1969.0,5,5,2015,Butch Cassidy and the Sundance Kid,Blaze of Glory Scene,tt0064115 8_JPDEHU1ok,1969.0,2,5,2015,Butch Cassidy and the Sundance Kid,Butch's BikeScene,tt0064115 KyR7XB0VBPM,1969.0,3,5,2015,Butch Cassidy and the Sundance Kid,Off the CliffScene,tt0064115 XBJSfGM5dGY,1986.0,2,5,2015,Big Trouble in Little China,Visiting the Brothel,tt0090728 fWcPwWR4C_w,1986.0,1,5,2015,Big Trouble in Little China,The Three Storms,tt0090728 A65Jq6NKdeI,1986.0,5,5,2015,Big Trouble in Little China,All in the Reflexes,tt0090728 eMURCJgRJYM,1986.0,4,5,2015,Big Trouble in Little China,Rescuing Gracie,tt0090728 m3s7ZwpFCsc,1997.0,3,5,2015,Anastasia,Dances with Dimitri,tt0118617 XFdEntyO6TY,2001.0,3,5,2015,Behind Enemy Lines,Surviving a Minefield,tt0159273 Xh1TwRilcLo,2004.0,2,5,2015,AVP: Alien vs. Predator,Alien vs. Predator Scene,tt0370263 Qxju05tBuLM,1997.0,4,5,2015,Anastasia,Paris Welcomes,tt0118617 lrGIfJdbUHY,1997.0,5,5,2015,Anastasia,Destroys Rasputin,tt0118617 qA7XKmC5QbQ,1997.0,1,5,2015,Anastasia,Once Upon a December,tt0118617 JaeHMEw9KAg,2001.0,2,5,2015,Behind Enemy Lines,New Extraction Point,tt0159273 crZXwRmMq2k,2004.0,1,5,2015,AVP: Alien vs. Predator,Sacrificial Chamber Scene,tt0370263 -64q4HpZyaY,2004.0,3,5,2015,AVP: Alien vs. Predator,Marking the Hunter Scene,tt0370263 1sE-YwK6_PI,2004.0,4,5,2015,AVP: Alien vs. Predator,Battling the Queen Scene,tt0370263 oh4GYHtq2hY,2004.0,5,5,2015,AVP: Alien vs. Predator,A New Predator Scene,tt0370263 XPwdUzG03SQ,1997.0,2,5,2015,Anastasia,In the Dark of the Night,tt0118617 3YTIMGmZUr4,1979.0,3,5,2015,Alien,The Appears Scene,tt0078748 yLz4NXK6jkU,2007.0,5,5,2015,28 Weeks Later,Burning For You,tt0463854 iDrYp0LApwU,2007.0,4,5,2015,28 Weeks Later,Chopper,tt0463854 Xh2kwqss0dQ,2007.0,1,5,2015,28 Weeks Later,Every Man for Himself,tt0463854 AdBu6VAESeI,1979.0,2,5,2015,Alien,Chestburster Scene,tt0078748 gEqHJ1tomnk,1979.0,1,5,2015,Alien,Acid Blood Scene,tt0078748 CRXyWtv-huc,1979.0,4,5,2015,Alien,Dallas Dies Scene,tt0078748 U-mmbStFrAA,1979.0,5,5,2015,Alien,Ripley's Last Stand Scene,tt0078748 xi7nytFOO2k,2007.0,2,5,2015,28 Weeks Later,Kiss of Death,tt0463854 v0i-Th0bvPw,2007.0,3,5,2015,28 Weeks Later,Open Fire,tt0463854 S6bKFjxPbC4,2002.0,4,5,2015,28 Days Later,Blood From a Bird,tt0289043 j9h6JvfCOOs,2002.0,5,5,2015,28 Days Later,Longer Than a Heartbeat,tt0289043 rDbMqG0EObM,2002.0,3,5,2015,28 Days Later,Changing the Tire,tt0289043 j-a68r1d9iQ,2002.0,2,5,2015,28 Days Later,Mark Is Infected,tt0289043 eCdRFMp8Xwo,2002.0,1,5,2015,28 Days Later,Vacant London,tt0289043 ad65spfln8w,1984.0,4,11,2015,Breakin',Electro Rock vs. Turbo & Ozone,tt0086998 s8jfw7FxNqA,1984.0,3,11,2015,Breakin',Street Sweepin' &,tt0086998 Y15DS1LKh4g,1984.0,10,11,2015,Breakin',"That's Dancing, Kelly",tt0086998 x26YFcaLiNk,1984.0,7,11,2015,Breakin',James Comes to the Dance,tt0086998 wdB2lzxIfGg,1984.0,6,11,2015,Breakin',Street Dancing Won't Get You to Broadway,tt0086998 8-q2CNPDfOU,1984.0,5,11,2015,Breakin',Kelly Learns to Break Dance,tt0086998 ZgIp4Y5NoZk,1984.0,8,11,2015,Breakin',Ice-T Raps,tt0086998 bPNkEztLgeo,1984.0,2,11,2015,Breakin',Get My Boogie Down,tt0086998 bt6-F11LZsQ,1984.0,1,11,2015,Breakin',at Venice Beach,tt0086998 N2HtiOaOGx8,1984.0,9,11,2015,Breakin',Turbo Teaches Kids,tt0086998 cqiQmO5frrE,1984.0,11,11,2015,Breakin',There's No Stopping Us,tt0086998 6zquYbMbFNk,1988.0,1,11,2015,A Fish Called Wanda,The Language of Love,tt0095159 MuWwCUXGzWE,1988.0,9,11,2015,A Fish Called Wanda,Fish and Chips,tt0095159 fSu5W0BtXG8,1988.0,10,11,2015,A Fish Called Wanda,Have You Got a Stutter?,tt0095159 02DzpeBF4es,1988.0,4,11,2015,A Fish Called Wanda,Otto Hates the British,tt0095159 2j3adcbEwSM,1988.0,7,11,2015,A Fish Called Wanda,Apes Don't Read Philosophy,tt0095159 YgJvgESR920,1988.0,11,11,2015,A Fish Called Wanda,Ken's Revenge,tt0095159 PoaOwSPJPHw,1988.0,3,11,2015,A Fish Called Wanda,Don't Call Me Stupid,tt0095159 7WdGe1bDiuU,1988.0,5,11,2015,A Fish Called Wanda,He Doesn't Have a Clue,tt0095159 lwfuUyTMpVY,1988.0,6,11,2015,A Fish Called Wanda,Upside-Down Apology,tt0095159 9Z3eCKZ69eM,1988.0,2,11,2015,A Fish Called Wanda,Loosening Ken's Lips,tt0095159 GfHOoFVUk9Y,1988.0,8,11,2015,A Fish Called Wanda,Striptease Surprise,tt0095159 BBkzG9_vrZg,1992.0,4,10,2015,3 Ninjas,Rocky Loves Emily,tt0103596 aHV7IUgaCy8,1992.0,9,10,2015,3 Ninjas,Grandpa Fights Snyder,tt0103596 gRadASOF2m0,1992.0,1,10,2015,3 Ninjas,Attacking Grandpa,tt0103596 OqGUDvVYqlM,1992.0,7,10,2015,3 Ninjas,I Gotta Take a Major Dump,tt0103596 xqcSo_Yb7OQ,1992.0,5,10,2015,3 Ninjas,Ninja Basketball,tt0103596 DMbglmaMzB8,1992.0,6,10,2015,3 Ninjas,vs. 3 Idiots,tt0103596 8Y_Vepe_rVA,1992.0,2,10,2015,3 Ninjas,Ninja Names,tt0103596 ReFW-5bgoCI,1992.0,10,10,2015,3 Ninjas,Pizza for the Heroes,tt0103596 ql5i_tg-wZY,1992.0,3,10,2015,3 Ninjas,Surfer Stick-Up,tt0103596 hcBF8zYH0s0,1992.0,8,10,2015,3 Ninjas,Light Him Up,tt0103596 PruSWq_FycA,1976.0,3,12,2015,The Pink Panther Strikes Again,The Gymnasium Room,tt0075066 qxFHPIFGFmk,1976.0,4,12,2015,The Pink Panther Strikes Again,The Pavlova of the Parallels,tt0075066 vCuU2y6qR2s,1976.0,11,12,2015,The Pink Panther Strikes Again,Laughing Gas,tt0075066 yc-qretrU8Q,1976.0,8,12,2015,The Pink Panther Strikes Again,"Getting a ""Reum""",tt0075066 rKfOjJJ1ql4,1976.0,9,12,2015,The Pink Panther Strikes Again,Clouseau and the Castle,tt0075066 e7Efjj3_uME,1976.0,5,12,2015,The Pink Panther Strikes Again,My Hand Is on Fire,tt0075066 Tu1RZaFnkKs,1976.0,1,12,2015,The Pink Panther Strikes Again,Cato Attacks,tt0075066 dApRtXZRw1Y,1976.0,2,12,2015,The Pink Panther Strikes Again,Hunchback Disguise,tt0075066 9l07Tr1w4Ls,1976.0,10,12,2015,The Pink Panther Strikes Again,The Dentist,tt0075066 dTM13gYxkoQ,1976.0,7,12,2015,The Pink Panther Strikes Again,"Beautiful Woman, Dead Man",tt0075066 5wS_6ok9u2c,1976.0,6,12,2015,The Pink Panther Strikes Again,The Old Closet Ploy,tt0075066 Z4wZt4J3Q5k,1976.0,12,12,2015,The Pink Panther Strikes Again,Erasing Dreyfus,tt0075066 13zrff9V3Tk,1998.0,12,12,2015,Species II,The Species Lives,tt0120841 SwGjsWSn8ak,1998.0,10,12,2015,Species II,Mating Ritual,tt0120841 o7_kf3hUg30,1998.0,11,12,2015,Species II,Killing the Monster,tt0120841 oknpBL5cNOc,1975.0,8,10,2015,The Return of the Pink Panther,Lady Litton's Room,tt0072081 O-LGISfFS4Y,1975.0,9,10,2015,The Return of the Pink Panther,The Open Fly Ploy,tt0072081 G8EUObgUFvc,1975.0,6,10,2015,The Return of the Pink Panther,The Revolving Door,tt0072081 tAbYODvO524,1975.0,10,10,2015,The Return of the Pink Panther,Beware of Japanese Waitress,tt0072081 RcsaFXhuAwc,1975.0,5,10,2015,The Return of the Pink Panther,The Swimming Peul,tt0072081 ryuW22MWnOU,1975.0,3,10,2015,The Return of the Pink Panther,Freezer Ambush,tt0072081 K5eVu2qDISM,1975.0,1,10,2015,The Return of the Pink Panther,Blind to Crime,tt0072081 X_nUklmV_kM,1975.0,7,10,2015,The Return of the Pink Panther,Vacuuming the Suite,tt0072081 m7aDde36EpM,1975.0,4,10,2015,The Return of the Pink Panther,Instinct,tt0072081 BrXDDicE1VE,1975.0,2,10,2015,The Return of the Pink Panther,Suspended,tt0072081 OeA9yeqG91A,1994.0,3,12,2015,Stargate,Stepping Through the,tt0111282 _JuHsTbZKqA,1994.0,10,12,2015,Stargate,Give My Regards to King Tut,tt0111282 RWIS7olVbGE,1994.0,11,12,2015,Stargate,Destroying Ra,tt0111282 x-FLqiu9nTs,1994.0,5,12,2015,Stargate,Mistaken for Gods,tt0111282 3Ds0DRCNXN4,1994.0,2,12,2015,Stargate,Activation of the,tt0111282 HCLQRZmD1EE,1994.0,1,12,2015,Stargate,The Is Discovered,tt0111282 r4vQbzdjQW8,1994.0,4,12,2015,Stargate,I Wouldn't Feed That Thing,tt0111282 tmZiGfLVs8w,1994.0,8,12,2015,Stargate,Only One Ra,tt0111282 _q36_9BaH4g,1994.0,9,12,2015,Stargate,How Ya Doing?,tt0111282 7ALP_3eWKZg,1994.0,12,12,2015,Stargate,Jackson Decides to Stay,tt0111282 Z-hoEoga8no,1994.0,7,12,2015,Stargate,Taken Before Ra,tt0111282 xTebNVZEvT4,1994.0,6,12,2015,Stargate,Ambushed!,tt0111282 AgsxHmawNqU,1998.0,1,12,2015,Species II,Alien Blood,tt0120841 TiSGxWluH-g,1998.0,8,12,2015,Species II,Father's Help,tt0120841 9lCBRKyCsVg,1998.0,9,12,2015,Species II,Eve's Escape,tt0120841 OaZa0tw3Fuw,1998.0,6,12,2015,Species II,Tracking Patrick,tt0120841 FcfsKx3pADI,1998.0,7,12,2015,Species II,Alien Heat,tt0120841 VeghLYlAYxo,1998.0,4,12,2015,Species II,The Autopsy,tt0120841 vxTyxT5z0hs,1998.0,5,12,2015,Species II,When Suicide Fails,tt0120841 yOItNhVYC3I,1998.0,2,12,2015,Species II,Orinsky's Mistake,tt0120841 y03ITmppyMI,1998.0,3,12,2015,Species II,A New Birth,tt0120841 I3LIwgA7Qpk,1988.0,10,11,2015,Killer Klowns from Outer Space,Escaping the Circus,tt0095444 F5GWqOrzQ3g,1988.0,5,11,2015,Killer Klowns from Outer Space,Shadow Puppets,tt0095444 A4iXXQr7tqw,1994.0,4,12,2015,Four Weddings and a Funeral,Our Engagement,tt0109831 mw3M1fIiegc,1994.0,12,12,2015,Four Weddings and a Funeral,Not a Proposal,tt0109831 uh677-ClXCY,1987.0,8,10,2015,Lethal Weapon,Grenade Standoff,tt0093409 -37Mhsak-XI,1987.0,2,10,2015,Lethal Weapon,See You Later,tt0093409 cy2Xj8Pz2Tk,1987.0,9,10,2015,Lethal Weapon,Electric Shock Torture,tt0093409 3aSdLAndoJU,1987.0,7,10,2015,Lethal Weapon,Have a Nice Day,tt0093409 F12X8zh4aCE,1987.0,10,10,2015,Lethal Weapon,Riggs Fights Mr. Joshua,tt0093409 aKojFoPzQoQ,1987.0,6,10,2015,Lethal Weapon,No Killing,tt0093409 cBHvRuBtJqI,1987.0,5,10,2015,Lethal Weapon,You Really Are Crazy,tt0093409 1v38MMDYEMw,1987.0,4,10,2015,Lethal Weapon,Do You Really Wanna Jump?,tt0093409 7dw45dGMGNY,1987.0,1,10,2015,Lethal Weapon,Crazy Cop,tt0093409 vcxEgyiu16Q,1987.0,3,10,2015,Lethal Weapon,I'm Too Old For This Sh**,tt0093409 bdYiJgwzumg,1979.0,8,11,2015,The Black Stallion,Riding the Stallion,tt0078872 01RWw-3AKaE,1979.0,11,11,2015,The Black Stallion,Victory,tt0078872 0O5CcvLk-uE,1979.0,10,11,2015,The Black Stallion,First Time at the Track,tt0078872 i6klSHVWbrk,1979.0,4,11,2015,The Black Stallion,Saved by the Stallion,tt0078872 8TM2yB381fc,1979.0,1,11,2015,The Black Stallion,Alec Meets the Stallion,tt0078872 amtxyPO7At8,1979.0,5,11,2015,The Black Stallion,Freeing the Horse,tt0078872 SDW2CT5neyM,1979.0,7,11,2015,The Black Stallion,Boy and Horse,tt0078872 7GRQKoapDIU,1979.0,9,11,2015,The Black Stallion,Alec Meets Henry,tt0078872 Cty2dqTZSTY,1979.0,6,11,2015,The Black Stallion,The Cobra,tt0078872 KnzWMPHQ7Nk,1979.0,3,11,2015,The Black Stallion,The Sinking Ship,tt0078872 IZcMgDET-fY,1979.0,2,11,2015,The Black Stallion,Sugar Cubes for the Stallion,tt0078872 PC4wbTAa5SI,1988.0,7,11,2015,Killer Klowns from Outer Space,Clown Invasion,tt0095444 KTHJmfCHWc4,1988.0,3,11,2015,Killer Klowns from Outer Space,Deadly Puppet Show,tt0095444 plUXguATsTQ,1988.0,2,11,2015,Killer Klowns from Outer Space,Cotton Candy Cocoons,tt0095444 dIw0nCJpAqE,1988.0,1,11,2015,Killer Klowns from Outer Space,What in Tarnation's Going On Here?,tt0095444 gLD9INIOo00,1988.0,11,11,2015,Killer Klowns from Outer Space,Klownzilla,tt0095444 d9ykU9FkH-g,1988.0,8,11,2015,Killer Klowns from Outer Space,Capturing Debbie,tt0095444 M7Ot2vswJLE,1988.0,9,11,2015,Killer Klowns from Outer Space,Pied to Death,tt0095444 kLovCSv9-Ks,1988.0,6,11,2015,Killer Klowns from Outer Space,Human Puppet,tt0095444 hFoLv3bTLSc,1988.0,4,11,2015,Killer Klowns from Outer Space,Gonna Knock My Block Off?,tt0095444 PJ7W-dz1OvE,1993.0,2,11,2015,Much Ado About Nothing,Forever a Bachelor,tt0107616 Dw_6CTZVb7c,1993.0,8,11,2015,Much Ado About Nothing,She is No Maid!,tt0107616 YkjS7wTVKB4,1993.0,1,11,2015,Much Ado About Nothing,A Mutual Disdain,tt0107616 _z3Pfq49wYA,1993.0,9,11,2015,Much Ado About Nothing,A Strange Love,tt0107616 zmaZsAPGd5U,1993.0,6,11,2015,Much Ado About Nothing,Maiden Pride Adieu,tt0107616 J2gKEelDYpI,1993.0,4,11,2015,Much Ado About Nothing,Fooling Benedick,tt0107616 jOAHxkUMseY,1993.0,5,11,2015,Much Ado About Nothing,It Must Be Requited,tt0107616 _-D3PfhuF5o,1993.0,10,11,2015,Much Ado About Nothing,You Are an Ass!,tt0107616 tXSER8y44do,1993.0,3,11,2015,Much Ado About Nothing,Benedick's Perfect Woman,tt0107616 4xcUJXRCRWI,1993.0,11,11,2015,Much Ado About Nothing,I Will Stop Your Mouth!,tt0107616 sdNtnZbJBRw,1993.0,7,11,2015,Much Ado About Nothing,The Night Watch,tt0107616 INE0g4kvXLc,1990.0,7,11,2015,Lord of the Flies,An Offering,tt0100054 TabNBDP679U,1990.0,6,11,2015,Lord of the Flies,They Broke My Glasses,tt0100054 wB-4zgJ2LLs,1990.0,8,11,2015,Lord of the Flies,Feast,tt0100054 0B0YWUYWHS8,1990.0,1,11,2015,Lord of the Flies,Get the Raft!,tt0100054 2aiVI2zBW3g,1990.0,9,11,2015,Lord of the Flies,"Conquering the ""Monster""",tt0100054 rZsQJGk__DQ,1990.0,3,11,2015,Lord of the Flies,Fire!,tt0100054 ipkF3xkP63M,1990.0,2,11,2015,Lord of the Flies,Whoever Holds the Conch Gets to Speak,tt0100054 Y1vBIQiyh80,1990.0,4,11,2015,Lord of the Flies,First Signs of Trouble,tt0100054 0MHIzgCZcxc,1990.0,5,11,2015,Lord of the Flies,I'm Gonna Make Another Camp,tt0100054 TQCgzi4j3eM,1990.0,10,11,2015,Lord of the Flies,Piggy is Killed,tt0100054 LIIz82ZUCQY,1990.0,11,11,2015,Lord of the Flies,Hunt and Rescue,tt0100054 0XesK2hB_Wk,2003.0,8,11,2015,Legally Blonde 2,Gay Dogs,tt0333780 7ppcbkjmuk4,2003.0,10,11,2015,Legally Blonde 2,Talking to Lincoln,tt0333780 zXmrYueNCC8,2003.0,5,11,2015,Legally Blonde 2,Capitol Barbie,tt0333780 OViadirUIp8,2003.0,6,11,2015,Legally Blonde 2,Snap Cup,tt0333780 _tBJcD9jxvE,2003.0,4,11,2015,Legally Blonde 2,I'm Going to Washington!,tt0333780 uSO45koeLhk,2003.0,9,11,2015,Legally Blonde 2,Bruiser's Bill,tt0333780 uXsQ8IIi6YI,2003.0,3,11,2015,Legally Blonde 2,The Testing Facility,tt0333780 P04IYEOIr38,2003.0,11,11,2015,Legally Blonde 2,Speak Up America,tt0333780 k8Do9tamQSM,2003.0,7,11,2015,Legally Blonde 2,Delta Nu Bond,tt0333780 uZ0YGah7MsE,2003.0,2,11,2015,Legally Blonde 2,Bruiser's Pedigree,tt0333780 G4lzPC22k8A,2003.0,1,11,2015,Legally Blonde 2,Elle's Surprise Party,tt0333780 tgg-Fay2zzs,2001.0,5,10,2015,Hannibal,Killing Pazzi,tt0212985 ih_V1Ns2UFg,2001.0,7,10,2015,Hannibal,Boared to Death,tt0212985 _Zfqh2OxGFg,2001.0,1,10,2015,Hannibal,Meeting Mason Verger,tt0212985 Q-bDppEz23c,2001.0,2,10,2015,Hannibal,It Seemed Like a Good Idea at the Time,tt0212985 -T0PH7Wv3eo,2001.0,4,10,2015,Hannibal,Capturing Pazzi,tt0212985 KEoQM4Q-FFY,2001.0,3,10,2015,Hannibal,'s Escape,tt0212985 IhJbjhlRPSk,2001.0,6,10,2015,Hannibal,Tracking,tt0212985 YWDTyG3z3VA,2001.0,8,10,2015,Hannibal,Paul's Brain,tt0212985 PuCu1XUGntA,2001.0,9,10,2015,Hannibal,This is Really Gonna Hurt,tt0212985 wwQev_zC0y0,2001.0,10,10,2015,Hannibal,Brain on a Plane,tt0212985 0P4h2-R9Rak,1983.0,1,12,2015,Lone Wolf McQuade,Texas Ranger,tt0085862 7enE0xOxDQ8,1983.0,3,12,2015,Lone Wolf McQuade,Forget That Partner Crap,tt0085862 pIPr7nbUCAw,1983.0,5,12,2015,Lone Wolf McQuade,A Lot More to Learn,tt0085862 Ki6bBFE0o88,1983.0,9,12,2015,Lone Wolf McQuade,Fighting Through Pain,tt0085862 Ah8ALKwclVk,1983.0,10,12,2015,Lone Wolf McQuade,Bulldozer Battle,tt0085862 NTJXKGOgN-k,1983.0,4,12,2015,Lone Wolf McQuade,Not My Idea of Fun,tt0085862 ZBRK8rVHVW0,1983.0,6,12,2015,Lone Wolf McQuade,Chasing Snow,tt0085862 pfLTbzU0FXo,1983.0,8,12,2015,Lone Wolf McQuade,Buried Alive,tt0085862 FstG27JuaRg,1983.0,12,12,2015,Lone Wolf McQuade,McQuade Destroys Rawley,tt0085862 hfNvGT9X-7Q,1983.0,11,12,2015,Lone Wolf McQuade,McQuade vs. Rawley,tt0085862 JgqoFj8yVqg,1983.0,7,12,2015,Lone Wolf McQuade,Mine's Bigger,tt0085862 NSOB8nt1Uc8,1983.0,2,12,2015,Lone Wolf McQuade,Trust Is Most Important,tt0085862 hKr4-rNmLFo,1988.0,8,9,2015,Bloodsport,Final Match,tt0092675 Z6vsW2RH8kA,1988.0,4,9,2015,Bloodsport,"No Pain, No Gain",tt0092675 bT6NizTtXug,1988.0,9,9,2015,Bloodsport,Matte! Victory!,tt0092675 ijrCSknWjeI,1988.0,7,9,2015,Bloodsport,Dux vs. Paco,tt0092675 wNibi-NWW4o,1988.0,5,9,2015,Bloodsport,The Touch of Death,tt0092675 fsUKVpvzMHk,1988.0,1,9,2015,Bloodsport,Young Frank Dux,tt0092675 hLbozjgBIE0,1988.0,2,9,2015,Bloodsport,Teach Me,tt0092675 -yG7Wp5-8EI,1988.0,3,9,2015,Bloodsport,Training,tt0092675 2kymD_HxRfA,1988.0,6,9,2015,Bloodsport,A Quarter Trick,tt0092675 _p0nSJeyRcw,1991.0,3,11,2015,Thelma & Louise,Thelma Meets J.D.,tt0103074 SXbUNuTQJds,1991.0,9,11,2015,Thelma & Louise,I Can't Go Back,tt0103074 SwITnQv183g,1991.0,5,11,2015,Thelma & Louise,A Real Outlaw,tt0103074 EQOuGXTYAj8,1991.0,8,11,2015,Thelma & Louise,You're Getting in Deeper,tt0103074 GeqKdTZugxs,1991.0,2,11,2015,Thelma & Louise,Telling Off Darryl,tt0103074 -dUYR2apxdA,1991.0,11,11,2015,Thelma & Louise,Over the Cliff,tt0103074 10r3vyu-zDM,1991.0,4,11,2015,Thelma & Louise,Close Call,tt0103074 WnZWACO4OOc,1991.0,7,11,2015,Thelma & Louise,A Knack For This,tt0103074 0Dc0Oj08S7M,1991.0,1,11,2015,Thelma & Louise,I'm Goin' to Mexico,tt0103074 0JDyXQvCsOM,1991.0,6,11,2015,Thelma & Louise,Thelma Robs a Store,tt0103074 cAIHoTstrTg,1991.0,10,11,2015,Thelma & Louise,Beavers,tt0103074 gXRw45jyIsE,1940.0,2,10,2015,The Philadelphia Story,Human Frailty,tt0032904 htCHOTJBiSc,1940.0,5,10,2015,The Philadelphia Story,Tracy & Mike,tt0032904 I-RrVLbC-q4,1940.0,8,10,2015,The Philadelphia Story,The True Love,tt0032904 NxSdB2L-Ffk,1940.0,3,10,2015,The Philadelphia Story,I Don't Want to Be Worshipped,tt0032904 WCl3EnHnm_c,1940.0,6,10,2015,The Philadelphia Story,You're Lit From Within,tt0032904 sWKTV0ScR9k,1940.0,4,10,2015,The Philadelphia Story,Still in Love,tt0032904 fpE3kI1HOWQ,1940.0,9,10,2015,The Philadelphia Story,The Whole Affair,tt0032904 -Ot948zIr0s,1940.0,1,10,2015,The Philadelphia Story,Generous to a Fault,tt0032904 cNW7dRdPPC8,1940.0,7,10,2015,The Philadelphia Story,How Are the Mighty Fallen,tt0032904 f-vA6GMMKgQ,1940.0,10,10,2015,The Philadelphia Story,A Slight Hitch,tt0032904 6hiEMyCIoQ0,2005.0,11,11,2015,Capote,I Did Everything I Could,tt0379725 WmOiz8rBlmw,2005.0,10,11,2015,Capote,They're Torturing Me,tt0379725 hAiiaFAJ1mY,2005.0,9,11,2015,Capote,Remembering the Murder,tt0379725 oLPTh_DaPa8,2005.0,2,11,2015,Capote,The Way I Am,tt0379725 H8ToqWfFevw,2005.0,1,11,2015,Capote,Paying for Compliments,tt0379725 m-OaVzrf_vc,2005.0,7,11,2015,Capote,This is My Work,tt0379725 zXroRe--2QM,2005.0,3,11,2015,Capote,Charming the Deweys,tt0379725 AFMFZiFr458,2005.0,5,11,2015,Capote,I Want to Take Your Notebooks,tt0379725 fFUR02kaGTQ,2005.0,6,11,2015,Capote,Did You Fall in Love With Him?,tt0379725 5AJvo1pc3sw,2005.0,8,11,2015,Capote,What's the Name of Your Book?,tt0379725 QDdroG4R9hE,2005.0,4,11,2015,Capote,Bribing the Warden,tt0379725 aaGlVyyFOl0,1980.0,8,10,2015,Flash Gordon,Pillow Fight,tt0080745 Y--MuIgwfQ4,1980.0,3,10,2015,Flash Gordon,Telepathy,tt0080745 ILLkD7hTxms,1980.0,1,10,2015,Flash Gordon,Planet Mongo,tt0080745 qjFCVTpsIps,1980.0,2,10,2015,Flash Gordon,Football Fight,tt0080745 x0Ev2qiY08M,1980.0,4,10,2015,Flash Gordon,Whipping Princess Aura,tt0080745 80sCD2p0W1Q,1980.0,5,10,2015,Flash Gordon,The Wood Beast,tt0080745 Y6B9nkrSuMI,1980.0,9,10,2015,Flash Gordon,Hawkmen vs. Ajax,tt0080745 RxFBi3z1i3k,1980.0,7,10,2015,Flash Gordon,Escape from Sky City,tt0080745 1Oq6vztcjgg,1980.0,6,10,2015,Flash Gordon,To the Death!,tt0080745 UfeogSVgTsU,1980.0,10,10,2015,Flash Gordon,Crashing Ming's Wedding,tt0080745 AClQyr2koxc,1996.0,12,12,2015,Kingpin,I'm the Greatest!,tt0116778 WvITkVaOpUs,1989.0,3,10,2015,Weekend at Bernie's,Bernie Throws a Party,tt0098627 Ta2vBD-qOwk,1996.0,6,12,2015,Kingpin,I've Desecrated My Body!,tt0116778 H-xjMjmrdl0,1957.0,4,10,2015,12 Angry Men,This Isn't a Game,tt0050083 W0ThLQIEwxk,1989.0,10,10,2015,Weekend at Bernie's,Trying to Explain,tt0098627 2kDPrNRTuQE,1989.0,8,10,2015,Weekend at Bernie's,Born on a Boat,tt0098627 I0jSE4K2jH8,1989.0,5,10,2015,Weekend at Bernie's,This Can't Be Happening,tt0098627 n3Ubm7iCzuA,1989.0,7,10,2015,Weekend at Bernie's,Bernie is Buried,tt0098627 jzzrFFivBKk,1989.0,9,10,2015,Weekend at Bernie's,Man Overboard,tt0098627 c5aNkzn_8Bc,1989.0,6,10,2015,Weekend at Bernie's,Bernie Gets Laid,tt0098627 CkN1FvtBg2k,1989.0,1,10,2015,Weekend at Bernie's,Richard's Butler,tt0098627 gUuOvBQoaHA,1989.0,2,10,2015,Weekend at Bernie's,Bernie is Dead,tt0098627 xd1f5GeUWpg,1989.0,4,10,2015,Weekend at Bernie's,Over the Edge,tt0098627 gPlxDB94t80,1996.0,5,12,2015,Kingpin,Fistfight with a Girl,tt0116778 eRI0kASoaqI,1996.0,1,12,2015,Kingpin,Hustling a Priest,tt0116778 20IyieiS-TE,1996.0,2,12,2015,Kingpin,Roy Works Off His Rent,tt0116778 E4sgImaJTlA,1996.0,3,12,2015,Kingpin,Milking the Bull,tt0116778 mt5IvL1Uw7g,1996.0,7,12,2015,Kingpin,A Real Munson,tt0116778 P8zlYvk98gE,1996.0,10,12,2015,Kingpin,Roy Bowls His Hand,tt0116778 KTpzQ8vWHTo,1996.0,4,12,2015,Kingpin,Crapping in a Urinal,tt0116778 0R_0E-YNBrY,1996.0,8,12,2015,Kingpin,Big Ern and the Unified Fund,tt0116778 M7V-9UG5Pn0,1996.0,11,12,2015,Kingpin,A Lot of Drinking,tt0116778 9j4v32pp0m4,1996.0,9,12,2015,Kingpin,Welcome to My Church,tt0116778 bnHKWNBCKQk,2001.0,1,12,2015,Y Tu Mamá También,"My Cousin, the Writer",tt0245574 gYMmTK1rFvA,2001.0,2,12,2015,Y Tu Mamá También,Inviting Luisa,tt0245574 WKDoWddM0vg,2001.0,5,12,2015,Y Tu Mamá También,Luisa Leaves,tt0245574 QXUXlzzOl44,2001.0,11,12,2015,Y Tu Mamá También,Your Mother Too,tt0245574 twPFRVuWNjo,2001.0,6,12,2015,Y Tu Mamá También,Luisa's Manifesto,tt0245574 Zypt5adu71Q,2001.0,12,12,2015,Y Tu Mamá También,Life Is Like the Surf,tt0245574 ZptjN0wzIdA,2001.0,10,12,2015,Y Tu Mamá También,The Greatest Pleasure,tt0245574 CsZmsu_-53E,2001.0,9,12,2015,Y Tu Mamá También,Ever Wish You Could Live Forever?,tt0245574 hHsWQA500NU,2001.0,7,12,2015,Y Tu Mamá También,Heaven's Mouth,tt0245574 XcFFaRpPdzs,2001.0,4,12,2015,Y Tu Mamá También,Friendship Betrayed,tt0245574 jaIVHdFwqnQ,2001.0,3,12,2015,Y Tu Mamá También,Cheating on Luisa,tt0245574 GAsqObV4ExM,2001.0,8,12,2015,Y Tu Mamá También,Campos the Goalie,tt0245574 OFPi1vG6A90,1972.0,1,10,2015,Last Tango in Paris,Paul Meets Jeanne,tt0070849 fAenzYV3Cmc,1972.0,2,10,2015,Last Tango in Paris,First Encounter,tt0070849 kTsFXQ2Y_dI,1972.0,3,10,2015,Last Tango in Paris,No Names,tt0070849 QY3RIezZPks,1972.0,4,10,2015,Last Tango in Paris,Inventing Names,tt0070849 DIt0_zQY00w,1972.0,5,10,2015,Last Tango in Paris,Bad Memories,tt0070849 h-r9Q-YItnk,1972.0,6,10,2015,Last Tango in Paris,Go Get the Butter,tt0070849 -n4RtjEtFUE,1972.0,8,10,2015,Last Tango in Paris,Paul & Rosa,tt0070849 HTa0oe5Ntvw,1972.0,7,10,2015,Last Tango in Paris,A Rat,tt0070849 891M2sACu0U,1972.0,10,10,2015,Last Tango in Paris,I Don't Know Him,tt0070849 dQGlAzHgPw8,1972.0,9,10,2015,Last Tango in Paris,Let's Dance,tt0070849 TXlHKTPfLVA,1957.0,8,10,2015,12 Angry Men,These People,tt0050083 5s8dYeDZPAE,1957.0,6,10,2015,12 Angry Men,A Responsibility,tt0050083 RGF6Qyvz2no,1957.0,9,10,2015,12 Angry Men,Nose Marks,tt0050083 46kWbFAMHoc,1957.0,1,10,2015,12 Angry Men,Kids These Days,tt0050083 EqDd06GW76o,1957.0,3,10,2015,12 Angry Men,Who Changed Their Vote?,tt0050083 TUzp2XUhskY,1957.0,2,10,2015,12 Angry Men,It's the Same Knife!,tt0050083 1fsFQ2gF4oE,1957.0,5,10,2015,12 Angry Men,Re-enactment,tt0050083 0jxVnlRdelU,1957.0,10,10,2015,12 Angry Men,Not Guilty,tt0050083 U44_sEUJROI,1957.0,7,10,2015,12 Angry Men,Down & In,tt0050083 Ur3JKxaUvUc,2006.0,2,8,2015,Clerks II,Unnaturally Large,tt0424345 fYKLuSKW4ao,2006.0,1,8,2015,Clerks II,The New and Improved Jay and Silent Bob,tt0424345 ZtrhzVGMWZc,2006.0,3,8,2015,Clerks II,Transformers Sucked,tt0424345 H8zCwVOT1U4,2006.0,4,8,2015,Clerks II,Up for Anything,tt0424345 SX9tVVvLb2I,2006.0,7,8,2015,Clerks II,Pickle F***er,tt0424345 HKDxpkV14IA,2006.0,6,8,2015,Clerks II,Pillow Pants,tt0424345 IYITxGniww4,2006.0,8,8,2015,Clerks II,Porch Monkeys,tt0424345 RPl5MeXIM8E,2006.0,5,8,2015,Clerks II,Lord of the Rings vs. Star Wars,tt0424345 KI-GzP94V8o,1988.0,1,11,2015,Mac and Me,Sucked Away,tt0095560 DDueSsFUqc4,1988.0,2,11,2015,Mac and Me,The Alien Family Escapes,tt0095560 SXeVjXg9BFU,1988.0,4,11,2015,Mac and Me,Mac Saves Eric,tt0095560 UB8wk3MOgVU,1988.0,3,11,2015,Mac and Me,Mac Escapes,tt0095560 c_GNsQnPdi4,1988.0,6,11,2015,Mac and Me,Chased By Dogs,tt0095560 tPgRnFg8ZTU,1988.0,8,11,2015,Mac and Me,McDonald's Dance Party,tt0095560 xuVz2BPLRBY,1988.0,9,11,2015,Mac and Me,Wheelchair Chase,tt0095560 PhKy0fGOJz0,1988.0,5,11,2015,Mac and Me,Capturing Mac,tt0095560 DXdQoyWxHZs,1988.0,7,11,2015,Mac and Me,Disguising Mac,tt0095560 g0yYxO89lQA,1988.0,10,11,2015,Mac and Me,Parking Lot Explosion,tt0095560 lPE1uBdcB8Y,1988.0,11,11,2015,Mac and Me,Back to Life,tt0095560 XvGmOZ5T6_Y,1984.0,1,11,2015,1984,Two Minutes Hate,tt0087803 bvFHRNGYfuo,1989.0,7,10,2015,Henry V,Saint Crispin's Day,tt0097499 rv7NsGCDVDs,1989.0,6,10,2015,Henry V,If His Cause Be Wrong,tt0097499 mNVB-qi0qyY,1989.0,2,10,2015,Henry V,Balls to Gun Stones,tt0097499 F0uwp_eoMW4,1989.0,8,10,2015,Henry V,God Be With You All,tt0097499 eqC9wr776KM,1989.0,9,10,2015,Henry V,The Day is Yours,tt0097499 HS7OG9zcV-M,1989.0,1,10,2015,Henry V,The Prologue,tt0097499 -nFHhXrXWzY,1989.0,3,10,2015,Henry V,Banish Not Him,tt0097499 vIwfwyjbP4g,1989.0,4,10,2015,Henry V,High Treason,tt0097499 ynwah7YV2LY,1989.0,10,10,2015,Henry V,Canst Thou Love Me?,tt0097499 urpXO9VLU0U,1989.0,5,10,2015,Henry V,Once More Unto the Breach,tt0097499 2BuU0LMgxl0,1984.0,2,11,2015,1984,Corrupt to the Core,tt0087803 jmmawolzwCs,1984.0,3,11,2015,1984,Do You Like Me?,tt0087803 pX0LbjUM5Uo,1984.0,5,11,2015,1984,Caught in the Bedroom,tt0087803 UmAVyowgDVE,1984.0,11,11,2015,1984,O'Brien Tortures Winston,tt0087803 RyR51MqOl5I,1984.0,6,11,2015,1984,It Creeps Up on You,tt0087803 cAKtpCo8fPE,1984.0,8,11,2015,1984,Winston is Tested,tt0087803 c0wH6YDfCzg,1984.0,4,11,2015,1984,Victory is Not Possible,tt0087803 v79foBIrar4,1984.0,10,11,2015,1984,Your Kind is Extinct,tt0087803 PoLLgzdPkss,1984.0,9,11,2015,1984,Vision of the Future,tt0087803 0A0VANPUG-g,1984.0,7,11,2015,1984,A Small Effort of Will,tt0087803 i-9K5-x7_so,1985.0,3,10,2015,Teen Wolf,First Wolf-Out Scene,tt0090142 d4Ljj8W1hE8,1985.0,5,10,2015,Teen Wolf,I'm a Werewolf Scene,tt0090142 _6FnlEiyZ08,1985.0,4,10,2015,Teen Wolf,Caught in the Bathroom Scene,tt0090142 QBghpl5FZXk,1985.0,10,10,2015,Teen Wolf,Fight at the Dance Scene,tt0090142 LeVEbbheUck,1985.0,9,10,2015,Teen Wolf,Surfing on a Wolfmobile Scene,tt0090142 YZ11hDE35QQ,1985.0,7,10,2015,Teen Wolf,Getting Worked Up Scene,tt0090142 kiEe33aAucU,1985.0,1,10,2015,Teen Wolf,Scott Growls for the Ball Scene,tt0090142 hWRJQvuhs9w,1985.0,6,10,2015,Teen Wolf,The Wolf Can Dunk Scene,tt0090142 Gt5xBpmHS5Q,1985.0,2,10,2015,Teen Wolf,Give Me a Keg of Beer Scene,tt0090142 fiqJGHbv3ys,1985.0,8,10,2015,Teen Wolf,Bowling With Pamela Scene,tt0090142 E-bYTMU6Dks,1948.0,7,11,2015,Red River,Who'll Stop Me?,tt0040724 Wjc5NqqF-1o,1948.0,8,11,2015,Red River,Every Time You Turn Around,tt0040724 XBPrLU4Zspo,1948.0,2,11,2015,Red River,Don Diego's Land,tt0040724 ww_lUn3jUoA,1948.0,1,11,2015,Red River,Don't Ever Trust Anybody,tt0040724 zBe5T01yBUI,1948.0,4,11,2015,Red River,Comparing Guns,tt0040724 I0EUKDhQ7vk,1959.0,7,11,2015,Some Like It Hot,Sugar Meets the Millionaire,tt0053291 BwnOv84Uaf4,1948.0,11,11,2015,Red River,Showdown,tt0040724 1_BNy6W4sRg,1948.0,9,11,2015,Red River,Indian Raid,tt0040724 AabFChK-X1w,1948.0,3,11,2015,Red River,Mumbling Groot,tt0040724 enLijb7P9tg,1948.0,10,11,2015,Red River,Kissing Tess,tt0040724 aN0alpNLQak,1948.0,5,11,2015,Red River,A Costly Stampede,tt0040724 7s91-5542Zg,1948.0,6,11,2015,Red River,Punishment by Whip,tt0040724 FBi8SGpLTGI,1959.0,5,11,2015,Some Like It Hot,A Thing For Sax Players,tt0053291 1wP9Mu1NKXk,1959.0,1,11,2015,Some Like It Hot,Girl Musicians,tt0053291 qdq07pa6sPA,1959.0,8,11,2015,Some Like It Hot,Just Call Me Junior,tt0053291 xq1QFVrNxfk,1959.0,4,11,2015,Some Like It Hot,Party for Two,tt0053291 UgjzHp4TVtk,1959.0,2,11,2015,Some Like It Hot,Sugar Kane,tt0053291 h55rTtbCy7o,1959.0,6,11,2015,Some Like It Hot,How the Other Half Lives,tt0053291 8-n-ybKQ_X0,1959.0,10,11,2015,Some Like It Hot,Boy Oh Boy Am I a Boy,tt0053291 spAkj5YYnIo,1959.0,3,11,2015,Some Like It Hot,Us Girls Should Stick Together,tt0053291 yD3r8xx3iX8,1959.0,9,11,2015,Some Like It Hot,Learning to Kiss,tt0053291 -mHhr-aaLnI,1959.0,11,11,2015,Some Like It Hot,Nobody's Perfect,tt0053291 TVjIzlCjKcQ,1994.0,1,12,2015,Four Weddings and a Funeral,With This Ring,tt0109831 GSwNuK9xedg,1994.0,3,12,2015,Four Weddings and a Funeral,Going Too Far,tt0109831 eeXePDLKsmU,1994.0,7,12,2015,Four Weddings and a Funeral,Carrie's List of Lovers,tt0109831 xn3J0iYO7sw,1994.0,10,12,2015,Four Weddings and a Funeral,He Was My North,tt0109831 XrZN8Sy-z6M,1994.0,2,12,2015,Four Weddings and a Funeral,To the Adorable Couple,tt0109831 ZYzQFudZ70k,1994.0,5,12,2015,Four Weddings and a Funeral,Flubbing the Ceremony,tt0109831 MBIIKCaK5PM,1994.0,11,12,2015,Four Weddings and a Funeral,David Objects,tt0109831 tvy0nfXbStY,1994.0,6,12,2015,Four Weddings and a Funeral,The Serial Monogamist,tt0109831 8Ut9pZyyS44,1994.0,8,12,2015,Four Weddings and a Funeral,David Meets Carrie,tt0109831 Ogl0mA_15ys,1994.0,9,12,2015,Four Weddings and a Funeral,I Think I Love You,tt0109831 3OLIgEua4PU,1995.0,7,10,2015,The Usual Suspects,Keyser Soze,tt0114814 BQpfa9RZbTk,1995.0,10,10,2015,The Usual Suspects,The Greatest Trick the Devil Ever Pulled,tt0114814 aU3KvhyJk-w,1995.0,9,10,2015,The Usual Suspects,Keaton Was Keyser Soze,tt0114814 Zh1yLx3srtQ,1995.0,8,10,2015,The Usual Suspects,Old MacDonald Shot Some Guys,tt0114814 GIa5OfDBSBE,1995.0,5,10,2015,The Usual Suspects,Bad Day,tt0114814 Dp5YwZCGpm0,1995.0,1,10,2015,The Usual Suspects,The Lineup,tt0114814 keth0g3CMK4,1995.0,3,10,2015,The Usual Suspects,I'm Smarter Than You,tt0114814 eUL9XgE3G4k,1995.0,2,10,2015,The Usual Suspects,Who's the Gimp?,tt0114814 dxNL9-YlUk0,1995.0,4,10,2015,The Usual Suspects,New York's Finest,tt0114814 MneFTo1gRq0,1995.0,6,10,2015,The Usual Suspects,Kobayashi's Proposal,tt0114814 IqX6z6djbD4,1991.0,2,11,2015,City Slickers,It's All Downhill From Here,tt0101587 PunAKEccqyU,1991.0,8,11,2015,City Slickers,The Secret of Life,tt0101587 rClviS6MMvk,1991.0,1,11,2015,City Slickers,Bump on the Rump,tt0101587 IA0v8pCN8cQ,1991.0,9,11,2015,City Slickers,Curly Passes On,tt0101587 2PPNVF1tT6o,1991.0,11,11,2015,City Slickers,I Hate Bullies,tt0101587 1j4ITRCTJL4,1991.0,10,11,2015,City Slickers,Best Day/Worst Day,tt0101587 PCXI31d3vlE,1991.0,6,11,2015,City Slickers,"He's Behind Me, Isn't He?",tt0101587 1PwmcgK9qno,1991.0,4,11,2015,City Slickers,Arriving at the Ranch,tt0101587 -CKzCdneg04,1991.0,3,11,2015,City Slickers,"If Hate Were People, I'd Be China",tt0101587 7s3dzArIVok,1991.0,5,11,2015,City Slickers,The Toughest Man Ever,tt0101587 2ATYV1LOIH4,1991.0,7,11,2015,City Slickers,A Song With Curly,tt0101587 2KOuM_aZ1-A,1990.0,11,12,2015,Misery,We Must Finish the Book,tt0100157 xNGdLsWV0_k,2002.0,10,11,2015,Roger Dodger,Jackrabbits,tt0299117 TxouT-qgqwU,2002.0,2,11,2015,Roger Dodger,Sex and Natural Selection,tt0299117 VhCQj6D3JQY,2002.0,6,11,2015,Roger Dodger,Admiring the Female Form,tt0299117 FgrVh865bX8,2002.0,5,11,2015,Roger Dodger,Champions Refuse to Lose,tt0299117 kFsoiAa-ulY,2002.0,11,11,2015,Roger Dodger,How to Talk to Girls,tt0299117 QwrGZWHTbt0,2002.0,1,11,2015,Roger Dodger,Male Utility,tt0299117 Egb6g_c7Nek,2002.0,4,11,2015,Roger Dodger,A Guide to Girl Watching,tt0299117 9GQZ2hl5oQY,2002.0,3,11,2015,Roger Dodger,A Collection of Vanity Fair Articles,tt0299117 BHQdl3iBhkE,2002.0,8,11,2015,Roger Dodger,First Time,tt0299117 eUELANo1Fic,2002.0,7,11,2015,Roger Dodger,High Verbal Ability,tt0299117 Y3nUE1cWM8o,2002.0,9,11,2015,Roger Dodger,We Need More Men Like You,tt0299117 _v5zFIqjEZg,2001.0,1,10,2015,Frailty,Sometimes Truth Defies Reason,tt0264616 dyaqk3LFlBM,2001.0,4,10,2015,Frailty,The First Demon,tt0264616 CVdZXuc265w,2001.0,10,10,2015,Frailty,God Knew,tt0264616 UeC962qKMrI,2001.0,9,10,2015,Frailty,Killing a Brother,tt0264616 6O9GrKXP46o,2001.0,7,10,2015,Frailty,Fenton's First Victim,tt0264616 dFxzdwS4yE8,2001.0,8,10,2015,Frailty,The Promise,tt0264616 FhtwCGpDs-0,2001.0,6,10,2015,Frailty,You Gotta Believe Me!,tt0264616 TRDdgGdGfbE,2001.0,5,10,2015,Frailty,You Can't Escape God's Wrath,tt0264616 R1k_1p3mitg,2001.0,2,10,2015,Frailty,A Vision From God,tt0264616 1x4SX6FUEUo,2001.0,3,10,2015,Frailty,The List,tt0264616 Br5umHOm3TM,1990.0,8,12,2015,Misery,He Didn't Get Out of the Cockadoodie Car!,tt0100157 ZzBJxdyktNQ,2008.0,1,11,2015,My Best Friend's Girl,A Serial Monogamist,tt1046163 UG215AsHyBg,2008.0,5,11,2015,My Best Friend's Girl,I'll Have What He's Having,tt1046163 km7CMB9s8ok,2008.0,4,11,2015,My Best Friend's Girl,Where's My Eyebrow?,tt1046163 vj3mnCSJq7E,2008.0,10,11,2015,My Best Friend's Girl,It's Time You Knew The Truth,tt1046163 GkTXRgNHzug,2008.0,2,11,2015,My Best Friend's Girl,Coming Up?,tt1046163 4WfCOqrgbSk,2008.0,3,11,2015,My Best Friend's Girl,A Dissatisfied Customer,tt1046163 QvKGF4DN9RE,2008.0,7,11,2015,My Best Friend's Girl,Fatherly Advice,tt1046163 1VGOy2dylYE,2008.0,8,11,2015,My Best Friend's Girl,I'm The Gay Pal?,tt1046163 LwXuIb6j_e8,2008.0,11,11,2015,My Best Friend's Girl,Do You Love Her?,tt1046163 PxsbL4Q0Lmk,2008.0,9,11,2015,My Best Friend's Girl,Wedding Faux-Pas,tt1046163 GOjeFlHlPwU,2008.0,6,11,2015,My Best Friend's Girl,Your BFF Is With Another Guy,tt1046163 4-8adc39DV0,1990.0,12,12,2015,Misery,Paul Attacks Annie,tt0100157 fmZhcaq6QV8,1990.0,3,12,2015,Misery,the Pig,tt0100157 tURhk-5mDpE,1990.0,10,12,2015,Misery,Hobbling,tt0100157 oZ51e9IJjjQ,1990.0,9,12,2015,Misery,Annie's Blues,tt0100157 ZkPfZTLecL8,1990.0,6,12,2015,Misery,Annie Feels Unappreciated,tt0100157 SeOMiErBnks,1990.0,7,12,2015,Misery,What Have You Been Doing?,tt0100157 gKRyD4CSjto,1990.0,5,12,2015,Misery,Book Burning,tt0100157 HrRSo3a1ZYU,1990.0,4,12,2015,Misery,You Murdered My !,tt0100157 SyQSH3XmQCE,1990.0,2,12,2015,Misery,Profanity Bothers Annie,tt0100157 mGGwDmCTha8,1990.0,1,12,2015,Misery,I'm Your Number One Fan,tt0100157 CFQKJOXdXJw,1999.0,6,10,2015,Topsy-Turvy,Vulgar and Obscene,tt0151568 -fQs640Ehfw,1999.0,3,10,2015,Topsy-Turvy,A Trip to the Dentist,tt0151568 unrqBYYTZI0,1999.0,4,10,2015,Topsy-Turvy,Inspiration,tt0151568 GuX7TUIGvRM,1999.0,7,10,2015,Topsy-Turvy,In the Japanese Manner,tt0151568 glkk39pJQQI,1999.0,10,10,2015,Topsy-Turvy,Opening Night Jitters,tt0151568 QFzkyceRlW8,1999.0,9,10,2015,Topsy-Turvy,Cutting a Song,tt0151568 90KNvOsvEiY,1999.0,2,10,2015,Topsy-Turvy,The Telephone,tt0151568 T6Lor5hg5nI,1999.0,5,10,2015,Topsy-Turvy,Not a Corset,tt0151568 0mtMkMvdwBw,1999.0,1,10,2015,Topsy-Turvy,A Bad Review,tt0151568 ljGqb2loshQ,1999.0,8,10,2015,Topsy-Turvy,Three Little Maids From School Are We,tt0151568 Lt-Suz8LGEM,1986.0,8,10,2015,The Big Easy,Shots Fired,tt0092654 ESvZ51pBN14,1986.0,6,10,2015,The Big Easy,A Good Guy,tt0092654 MH6W76ILmEQ,1986.0,3,10,2015,The Big Easy,Conflict of Interest,tt0092654 ZxhqyHBujFc,1986.0,1,10,2015,The Big Easy,Two Minutes of Ass Kissing,tt0092654 xfnmRVym22U,1986.0,4,10,2015,The Big Easy,Business and Pleasure,tt0092654 eVPIMety0MA,1986.0,9,10,2015,The Big Easy,Was It You?,tt0092654 kNrid4Vvxkk,1986.0,7,10,2015,The Big Easy,Only Cops Drive Like That,tt0092654 b7fFwDI39Co,1986.0,5,10,2015,The Big Easy,Cross Examination,tt0092654 G_tk-vS61to,1986.0,10,10,2015,The Big Easy,Shootout on the Dock,tt0092654 EgXDPt3eW3Q,1986.0,2,10,2015,The Big Easy,Cop and Robbers,tt0092654 5KeGGAzEkNE,2009.0,1,11,2015,Baarìa,Teeth of Steel,tt1081935 VP-S-KGKn1k,2009.0,9,11,2015,Baarìa,Blind Voting,tt1081935 3w-MGV1cC78,2009.0,2,11,2015,Baarìa,Four Bites,tt1081935 cZcI8QATy2k,2009.0,5,11,2015,Baarìa,Let's Elope,tt1081935 6cseBu1zBC4,2009.0,4,11,2015,Baarìa,First Dance,tt1081935 QhGtm2E07w0,2009.0,10,11,2015,Baarìa,Three Stones,tt1081935 ls8-S57SGSQ,2009.0,11,11,2015,Baarìa,Transcending Time,tt1081935 1ccZkqYIluU,2009.0,8,11,2015,Baarìa,Slow Death,tt1081935 DcETqjNSB4U,2009.0,3,11,2015,Baarìa,Looters,tt1081935 q5VokxxNaHw,2009.0,7,11,2015,Baarìa,Stealing From The Cripple,tt1081935 qkIEwsirwBU,2009.0,6,11,2015,Baarìa,Unemployed,tt1081935 fq-wBS0z4NQ,2010.0,4,9,2015,Hesher,Stalking That Chick,tt1403177 kGK73er3UdE,2010.0,1,9,2015,Hesher,You Think This Is Funny?,tt1403177 BnPQSD0Pg4E,2010.0,5,9,2015,Hesher,Fender Bender,tt1403177 DKQXxsio-Gs,2010.0,7,9,2015,Hesher,Angry Dinner,tt1403177 xSc5s5MKarM,2010.0,6,9,2015,Hesher,Dirty and Wet,tt1403177 yyrC-l87Sdc,2010.0,9,9,2015,Hesher,I Lost My Nut,tt1403177 BctOA1EbnPg,2010.0,2,9,2015,Hesher,The Granny Killer,tt1403177 1V-vD4bHKR4,2010.0,8,9,2015,Hesher,I'll Smash You in the Face,tt1403177 qYwrQOJ2eAE,2010.0,3,9,2015,Hesher,Car Burning,tt1403177 5CuKjYdDd50,2008.0,7,8,2015,The Stoning of Soraya M.,The Stoning,tt1277737 SVHcUk9WH_s,2008.0,2,8,2015,The Stoning of Soraya M.,Servant,tt1277737 6mdAoQZkrjY,2008.0,6,8,2015,The Stoning of Soraya M.,Last Words,tt1277737 FKY8Wsd3fDM,2008.0,5,8,2015,The Stoning of Soraya M.,Innocence and Guilt,tt1277737 gr_2UA-6hIw,2008.0,8,8,2015,The Stoning of Soraya M.,Soraya's Death,tt1277737 Hc35xCKXOrs,2008.0,3,8,2015,The Stoning of Soraya M.,Intimidation,tt1277737 A6Mwoov-lGc,2008.0,1,8,2015,The Stoning of Soraya M.,Ali's Rage,tt1277737 g1RVgC8Vw0A,2008.0,4,8,2015,The Stoning of Soraya M.,Public Beating,tt1277737 hONljrAJrH0,2010.0,11,12,2015,Alpha and Omega,Howl at the Moon,tt1213012 B1dK_oxzaX0,2010.0,5,12,2015,Alpha and Omega,Friends for Life,tt1213012 zuKBp_n_o14,2010.0,8,12,2015,Alpha and Omega,Grab My Tail,tt1213012 4otU-hfAOO0,2010.0,12,12,2015,Alpha and Omega,A Wolf Wedding,tt1213012 I8xuqClrB3Y,2010.0,10,12,2015,Alpha and Omega,Grizzly Bear Attack,tt1213012 bGWyL-vJAn4,2010.0,6,12,2015,Alpha and Omega,Fit to Lead the Pack,tt1213012 IpW3QbVzNCI,2010.0,1,12,2015,Alpha and Omega,Wolf Pile,tt1213012 k6eXuHmQoiM,2010.0,4,12,2015,Alpha and Omega,Moonlight Howl,tt1213012 z9P5NdzCcJo,2010.0,2,12,2015,Alpha and Omega,The Caribou Are Laughing At Us,tt1213012 4F9i0gj9KKc,2010.0,9,12,2015,Alpha and Omega,Lilly the Hunter,tt1213012 -qSADHn4nqw,2010.0,7,12,2015,Alpha and Omega,The Golfing Goose,tt1213012 kk8MNQHBJkY,2010.0,3,12,2015,Alpha and Omega,One Crazy Wolf,tt1213012 2oGfncb2usc,1999.0,7,8,2015,Stir of Echoes,Make Her Stop!,tt0164181 QqVgAIcPfXo,1999.0,2,8,2015,Stir of Echoes,Don't Be Afraid of It,tt0164181 qeytg9JLx-o,1999.0,3,8,2015,Stir of Echoes,She's Taking Him Away!,tt0164181 jsGX_I6mFvc,1999.0,4,8,2015,Stir of Echoes,Want to See What I've Got?,tt0164181 yZQYClpkJ1M,2001.0,9,9,2015,Lost and Delirious,The Duel,tt0245238 hgAlSQ4Ckz0,2001.0,2,9,2015,Lost and Delirious,Rage More,tt0245238 KaCyEft6EmA,1999.0,5,8,2015,Stir of Echoes,I'm Supposed to Dig,tt0164181 Z46LYLKuros,2001.0,7,9,2015,Lost and Delirious,Sexual Awakening,tt0245238 eN1XH8BQGqI,2001.0,6,9,2015,Lost and Delirious,Love,tt0245238 rWvqkw0_xFA,1999.0,8,8,2015,Stir of Echoes,The Attack,tt0164181 hfKhRRdMrVc,1999.0,1,8,2015,Stir of Echoes,The Horrors of Hypnosis,tt0164181 -HwMH2_-oKA,1999.0,6,8,2015,Stir of Echoes,A Corpse in the Wall,tt0164181 18ogMe0oYvg,2003.0,5,8,2015,Ju-on 2,An Evil Copy Machine,tt0367913 7Mbfa0caPBQ,2003.0,2,8,2015,Ju-on 2,Under the Covers,tt0367913 K7l3r0bdlms,2003.0,1,8,2015,Ju-on 2,Car Trouble,tt0367913 NbT7rgb2QSU,2003.0,6,8,2015,Ju-on 2,A Violent Pregnancy,tt0367913 8uAUNIySn_4,2003.0,7,8,2015,Ju-on 2,Bad Dreams,tt0367913 L1Z7sGSUhaA,2003.0,4,8,2015,Ju-on 2,Killer Wig,tt0367913 D8e5MaEaWJw,2003.0,8,8,2015,Ju-on 2,The Ghost Between Her Legs,tt0367913 mFktba3DL8g,2003.0,3,8,2015,Ju-on 2,Hanging By Hair,tt0367913 QTI8XMmOjE4,2011.0,4,8,2015,Red State,Eye for an Eye,tt0873886 7okueIbuBDE,2011.0,1,8,2015,Red State,The End Is Nigh,tt0873886 2_g-cXgaDhE,2011.0,2,8,2015,Red State,The Wrath of God,tt0873886 yK78AHB5dSs,2011.0,3,8,2015,Red State,Shots Fired,tt0873886 YmbeYlShWZc,2011.0,6,8,2015,Red State,Save the Babies,tt0873886 zOTlBEbI7eM,2011.0,8,8,2015,Red State,Heavenly Trumpets,tt0873886 I1LFslpgsRw,2011.0,7,8,2015,Red State,Raiding the Compound,tt0873886 x5m9etGofg8,2011.0,5,8,2015,Red State,We're Not Terrorists!,tt0873886 7O-kshviycI,1986.0,7,9,2015,Chopping Mall,Giving the Killbots a Target Scene,tt0090837 GV3Rt3A7TAQ,1986.0,8,9,2015,Chopping Mall,Stop Right There Scene,tt0090837 dqG51nM9k9g,1986.0,1,9,2015,Chopping Mall,Introducing the Killbots Scene,tt0090837 8myrr8HPt_I,1986.0,6,9,2015,Chopping Mall,Setting Fire to Suzie Scene,tt0090837 53uT454cHiU,1986.0,4,9,2015,Chopping Mall,Killbots Attack Scene,tt0090837 F9ZeSn27MMY,1986.0,5,9,2015,Chopping Mall,Peckinpah's Sporting Goods Scene,tt0090837 AD3JQD0N_iA,1986.0,2,9,2015,Chopping Mall,Disposing of the Janitor Scene,tt0090837 m2lBtBvgiHQ,1986.0,9,9,2015,Chopping Mall,Have a Nice Day Scene,tt0090837 oeGwe_Y07_k,1986.0,3,9,2015,Chopping Mall,The End of Leslie Todd Scene,tt0090837 hcIZa8FePZk,1989.0,4,10,2015,The Punisher,House of Horrors,tt0098141 SnjxkiSs1Dg,1989.0,8,10,2015,The Punisher,Dojo Massacre,tt0098141 Gqc-VRIHfuk,1989.0,3,10,2015,The Punisher,Casino Bloodbath,tt0098141 UemGzlKVwsk,1989.0,6,10,2015,The Punisher,The Chaser,tt0098141 vR3yb8mNLYo,1989.0,5,10,2015,The Punisher,Have a Nice Day,tt0098141 dFIuG_DTVOw,1989.0,1,10,2015,The Punisher,Mob Punishment,tt0098141 q6HYlg_dJRI,1989.0,10,10,2015,The Punisher,Maximum Punishment,tt0098141 e0lfNxwgszA,1989.0,7,10,2015,The Punisher,Rough Ride,tt0098141 xHd5cUGpJs4,1989.0,9,10,2015,The Punisher,Double the Punishment,tt0098141 F-IumwPd6b4,1989.0,2,10,2015,The Punisher,Ninja Ambush,tt0098141 Qe5bvae8I2k,2000.0,1,9,2015,Cecil B. DeMented,I Am !,tt0173716 mDnYsc5SIJk,2000.0,2,9,2015,Cecil B. DeMented,The Sprocket Holes,tt0173716 Cj71TWcfot4,2001.0,4,9,2015,Lost and Delirious,Mary Brave,tt0245238 yJXZwWi2NdE,2001.0,1,9,2015,Lost and Delirious,The New Girl,tt0245238 j3WOgT1A0XI,2001.0,8,9,2015,Lost and Delirious,"Never, Ever, Forever Be",tt0245238 nwvUihSxHGs,2000.0,7,9,2015,Cecil B. DeMented,Gumped Again,tt0173716 UFcmai6iKzA,2001.0,3,9,2015,Lost and Delirious,Lesbos,tt0245238 0SUcAyNL198,2001.0,5,9,2015,Lost and Delirious,The Eagle,tt0245238 woboXYiH548,2000.0,6,9,2015,Cecil B. DeMented,Film Commission Assault,tt0173716 ujJ8talVp90,2000.0,9,9,2015,Cecil B. DeMented,I Have a Vision!,tt0173716 ERvEZwe88JU,2000.0,8,9,2015,Cecil B. DeMented,Cinema on Fire,tt0173716 FIlBqZ0fksM,2000.0,5,9,2015,Cecil B. DeMented,No Budget,tt0173716 YkBuZCr1O4U,2000.0,4,9,2015,Cecil B. DeMented,Outlaw Cinema,tt0173716 woBSpMcgW4g,2000.0,3,9,2015,Cecil B. DeMented,Take Off Your Clothes,tt0173716 b44FCgewbdc,1986.0,7,9,2015,The Best of Times,White Shoes,tt0090713 184hH4AknlM,1986.0,3,9,2015,The Best of Times,Practice Aerobics,tt0090713 GNCOjiBvwCo,1986.0,4,9,2015,The Best of Times,Talking About the World,tt0090713 ILfjXR8rMgY,1986.0,8,9,2015,The Best of Times,Let's Go Jack,tt0090713 nEcnNSQZpoE,1986.0,9,9,2015,The Best of Times,I Can Get Open,tt0090713 CR462LcwVBU,1986.0,2,9,2015,The Best of Times,"Welcome Aboard, Reno",tt0090713 GHWClE2g3Ew,1986.0,1,9,2015,The Best of Times,Me or the Game,tt0090713 5wxD59EtYks,1986.0,6,9,2015,The Best of Times,The Dance,tt0090713 m-Wccy-Mijg,1986.0,5,9,2015,The Best of Times,Marriage and Football,tt0090713 IhdqG2gOvvg,1990.0,8,8,2015,Mountains of the Moon,Scars of Africa,tt0100196 hXiTQfzucK8,1990.0,7,8,2015,Mountains of the Moon,God Save the Queen,tt0100196 WVqv9kKOfvA,1990.0,1,8,2015,Mountains of the Moon,Night Raid,tt0100196 NbhfbT2aU0k,1990.0,2,8,2015,Mountains of the Moon,Rescue,tt0100196 X967_4L8pmc,1990.0,3,8,2015,Mountains of the Moon,Spit Take,tt0100196 YNaTu-8atDw,1990.0,5,8,2015,Mountains of the Moon,I'll Say Your Name,tt0100196 snpoOWqCy3k,1990.0,4,8,2015,Mountains of the Moon,Dangerous Gifts,tt0100196 S7gyibsEUAI,1990.0,6,8,2015,Mountains of the Moon,The Horrors of Slavery,tt0100196 exsURQ8bUkg,1993.0,10,12,2015,And God Spoke,Soupy Sales as Moses,tt0107492 hge2AkSJSIw,1993.0,1,12,2015,And God Spoke,Casting God,tt0107492 Nae0ywUHE-c,1993.0,7,12,2015,And God Spoke,The Studio Screening,tt0107492 QdDQrp0xXWU,1993.0,12,12,2015,And God Spoke,The Greatest Non-Denominational Bible Story Ever Told,tt0107492 WSxjWLWu1WE,1993.0,8,12,2015,And God Spoke,We'll Fix It in Post,tt0107492 HwYyKEu2_Mg,1993.0,6,12,2015,And God Spoke,Noah's Ark,tt0107492 1_GUmXl_dcg,1993.0,4,12,2015,And God Spoke,The 8 Disciples,tt0107492 F5XztYH-X-o,1993.0,3,12,2015,And God Spoke,Jesus Christ: Method Actor,tt0107492 9Hcl6jzgFu4,1993.0,11,12,2015,And God Spoke,Holy Product Placement,tt0107492 9lCOuDWaGHM,1993.0,9,12,2015,And God Spoke,What Lovely Frankincense,tt0107492 rZRX4JMxQMs,1993.0,5,12,2015,And God Spoke,Cain & Abel,tt0107492 8XREKqJr9mo,1993.0,2,12,2015,And God Spoke,The Lord's Other Prayer,tt0107492 1lBbY5sLWno,1997.0,5,8,2015,Another Nine & a Half Weeks,Total Seduction,tt0119576 0R3pEe2OW6M,1997.0,2,8,2015,Another Nine & a Half Weeks,First Encounter,tt0119576 wbfsRXuNwDY,1997.0,6,8,2015,Another Nine & a Half Weeks,Fashionista Party,tt0119576 QU882zzREY0,1997.0,1,8,2015,Another Nine & a Half Weeks,Mistaken Identity,tt0119576 iMOquId9FGU,1997.0,7,8,2015,Another Nine & a Half Weeks,Three Way,tt0119576 JtFkc9jD5KI,1997.0,8,8,2015,Another Nine & a Half Weeks,I Don't Want to Be Alone,tt0119576 IOK6qpQ1vg0,1997.0,4,8,2015,Another Nine & a Half Weeks,Game of Chance,tt0119576 qb37bdNexuI,1997.0,3,8,2015,Another Nine & a Half Weeks,Clubbing,tt0119576 8YGn0l9zfew,1980.0,6,12,2015,Raging Bull,He Ain't Pretty No More,tt0081398 JXq2nnnhqRw,1980.0,10,12,2015,Raging Bull,That's Entertainment,tt0081398 fdSW39wQL_8,1980.0,5,12,2015,Raging Bull,Sugar Ray Defeats Jake,tt0081398 9yHJcx89XXk,1980.0,2,12,2015,Raging Bull,You Want Your Steak?,tt0081398 9Eo8snaeDJs,1980.0,3,12,2015,Raging Bull,Hit Me in the Face,tt0081398 ybst6CAzXCo,1980.0,4,12,2015,Raging Bull,Jake Defeats Sugar Ray,tt0081398 Z9mMBj-yFuE,1980.0,12,12,2015,Raging Bull,I Could've Been a Contender,tt0081398 lfrC_mA6o8o,1980.0,7,12,2015,Raging Bull,Joey Beats Salvy,tt0081398 cNqstBuw5ZY,1980.0,11,12,2015,Raging Bull,I'm Not An Animal,tt0081398 Tx-kB1KKLJ0,1980.0,9,12,2015,Raging Bull,You Never Got Me Down,tt0081398 NOXp0ABEFC4,1980.0,8,12,2015,Raging Bull,Did You F*** My Brother?,tt0081398 PVMnl4sBl8A,1980.0,1,12,2015,Raging Bull,Jake's First Loss,tt0081398 qkfcZ4zdrfA,1998.0,6,9,2015,Lulu on the Bridge,Roof or Bed?,tt0125879 vB-sBJ_DrGo,1998.0,7,9,2015,Lulu on the Bridge,Hey That's Lou Reed!,tt0125879 o2K5JzEAzcs,1998.0,5,9,2015,Lulu on the Bridge,Ocean or a River?,tt0125879 LkCHcg-UOfM,1998.0,4,9,2015,Lulu on the Bridge,Amazing Blue,tt0125879 kQLYkEvyReQ,1998.0,3,9,2015,Lulu on the Bridge,A Huge Turd,tt0125879 fLjZJgc1nvo,1998.0,2,9,2015,Lulu on the Bridge,Catherine Moore,tt0125879 Ib1awvls274,1998.0,1,9,2015,Lulu on the Bridge,Music Equals Life,tt0125879 TOSUY8Jmjzk,1998.0,8,9,2015,Lulu on the Bridge,Dr. Van Horn,tt0125879 qN7dJ2r3zoc,1998.0,9,9,2015,Lulu on the Bridge,Singin' in the Rain,tt0125879 P1o2faxmQYQ,1999.0,1,8,2015,The Minus Man,Putting Casper to Sleep,tt0151582 sGS5r7NK5ZA,1999.0,2,8,2015,The Minus Man,Giving Gene a Ride,tt0151582 exl6XfbWP0s,1999.0,4,8,2015,The Minus Man,I Got Seven Expressions,tt0151582 BShi3Dn0cRs,1999.0,6,8,2015,The Minus Man,A Killer in a Diner,tt0151582 2EWQ4s0Z5oI,1999.0,7,8,2015,The Minus Man,Flirting Turns Violent,tt0151582 ypEtxZjRJz0,1999.0,8,8,2015,The Minus Man,Leaving Murder Behind,tt0151582 t8DHTGsC528,1999.0,5,8,2015,The Minus Man,You Got Any Friends?,tt0151582 HKUXzME_3ew,1999.0,3,8,2015,The Minus Man,They Never Find the Corpses,tt0151582 PEU2sirKyiA,2000.0,9,9,2015,Dancing at the Blue Iguana,You Ain't Got No Life!,tt0217355 OxKtn3THP58,2000.0,4,9,2015,Dancing at the Blue Iguana,Til the End of Love,tt0217355 QtWhkoqRKqw,2000.0,1,9,2015,Dancing at the Blue Iguana,Stripper Cat Fight,tt0217355 Z0myXa48shI,2000.0,2,9,2015,Dancing at the Blue Iguana,The Celestial Angel,tt0217355 SRJsBidnCV4,2000.0,3,9,2015,Dancing at the Blue Iguana,I Think I'm Pregnant,tt0217355 i7iLNcJKoE4,2000.0,5,9,2015,Dancing at the Blue Iguana,No Smoking,tt0217355 BZjSJ6AVd74,2000.0,6,9,2015,Dancing at the Blue Iguana,Jo Blows Up,tt0217355 RHMKRQocaQ4,2000.0,8,9,2015,Dancing at the Blue Iguana,Maternal Instinct,tt0217355 flWMIVVknEs,2000.0,7,9,2015,Dancing at the Blue Iguana,Kissing the Poet,tt0217355 VdXfnWThrek,2001.0,5,12,2015,Original Sin,A Bonny Castle,tt0218922 f92X44rgum0,2001.0,1,12,2015,Original Sin,Not to Be Trusted,tt0218922 JqoqnJ6VNgE,2001.0,4,12,2015,Original Sin,Whore! Liar! Thief!,tt0218922 mvTjdnz3s_4,2001.0,7,12,2015,Original Sin,I've Killed a Man,tt0218922 0xWOfczSAe4,2001.0,9,12,2015,Original Sin,Have You No Conscience at All?,tt0218922 5Mx0JL_2YKQ,2001.0,10,12,2015,Original Sin,No Other Love But You,tt0218922 uwHPOHdscwM,2001.0,11,12,2015,Original Sin,I Love You,tt0218922 WwrlI3z89Pg,2001.0,12,12,2015,Original Sin,You Cannot Walk Away From Love,tt0218922 gKEaLU9m0Gc,2001.0,6,12,2015,Original Sin,A Private Function,tt0218922 8iQfU3VUrOs,2001.0,8,12,2015,Original Sin,You're a Whore,tt0218922 LcjR2Z2iI-E,2001.0,3,12,2015,Original Sin,Love and Lust,tt0218922 DI_2i5BZcwI,2001.0,2,12,2015,Original Sin,Wedding Dance,tt0218922 0wngG1BlZNI,2001.0,3,8,2015,Novocaine,Actor Lance Phelps,tt0234354 xUMqM8hl6F8,2001.0,6,8,2015,Novocaine,This Is Not a Movie,tt0234354 _32En06MgeU,2001.0,5,8,2015,Novocaine,Feels Like,tt0234354 Fgl7tImKroU,2001.0,7,8,2015,Novocaine,Who's the Idiot!,tt0234354 -rmALJkEprY,2001.0,8,8,2015,Novocaine,Teeth,tt0234354 GO4ExuqatyE,2001.0,1,8,2015,Novocaine,Brother Harlan,tt0234354 NiOPGDo5UJ4,2001.0,2,8,2015,Novocaine,X-Ray Seduction,tt0234354 k6YFnGzHfKk,2001.0,4,8,2015,Novocaine,A Biter,tt0234354 D1TC1n9lhXU,1971.0,4,10,2015,Fiddler on the Roof,If I Were a Rich Man,tt0067093 F9E_PTTHvgI,1971.0,2,10,2015,Fiddler on the Roof,Welcome to Anatevka,tt0067093 kDtabTufxao,1971.0,1,10,2015,Fiddler on the Roof,Tradition!,tt0067093 09oumdE0UFI,1971.0,9,10,2015,Fiddler on the Roof,"Sunrise, Sunset",tt0067093 RH3xL8H8tu4,1971.0,5,10,2015,Fiddler on the Roof,Sabbath Prayer,tt0067093 ZhdlKgAakHw,1971.0,6,10,2015,Fiddler on the Roof,To Life!,tt0067093 _oSK6l24buk,1971.0,7,10,2015,Fiddler on the Roof,On the Other Hand,tt0067093 jVGNdB6iEeA,1971.0,3,10,2015,Fiddler on the Roof,Matchmaker,tt0067093 CvVeJJ-TnK4,1971.0,8,10,2015,Fiddler on the Roof,Miracle of Miracles,tt0067093 kHRe9qdfLsw,1971.0,10,10,2015,Fiddler on the Roof,The Bottle Dance,tt0067093 vbKfMbxFfJo,2001.0,3,8,2015,Chelsea Walls,We Can Help Each Other,tt0226935 wE4I9l7Sc_o,2001.0,1,8,2015,Chelsea Walls,I'm Staying,tt0226935 jWUnIBHVLYQ,2001.0,2,8,2015,Chelsea Walls,Getting Close,tt0226935 KhAs8aaZNok,2001.0,5,8,2015,Chelsea Walls,Confessionals,tt0226935 fUnQuA1z_CE,2001.0,4,8,2015,Chelsea Walls,Lonely One,tt0226935 Tz4liX-da7E,2001.0,6,8,2015,Chelsea Walls,I Want You,tt0226935 4bb7URQIpcA,2001.0,8,8,2015,Chelsea Walls,Parting Voices,tt0226935 VqlqOiOST78,2001.0,7,8,2015,Chelsea Walls,I Need a Friend,tt0226935 BdYd8q4jbqE,2001.0,11,11,2015,All Over the Guy,"Reunited,",tt0250202 qvo_HDqOKww,2001.0,5,11,2015,All Over the Guy,Taking a Break,tt0250202 2OmHGM9zHqU,2001.0,4,11,2015,All Over the Guy,Post-Date Analysis,tt0250202 kui9LWtON_k,2001.0,3,11,2015,All Over the Guy,Attraction,tt0250202 t5zLt-NZrtI,2001.0,7,11,2015,All Over the Guy,Fuzzy Wuzzy,tt0250202 63nDBr_Qavw,2001.0,2,11,2015,All Over the Guy,Killer Eyes,tt0250202 r-xcvVWqny0,2001.0,9,11,2015,All Over the Guy,Break-Up,tt0250202 dxfqu-v68IM,2001.0,10,11,2015,All Over the Guy,Bursting the Bubble,tt0250202 7CmJFYoSgII,2001.0,6,11,2015,All Over the Guy,Shameful Things,tt0250202 9kJBc4o_3k8,2001.0,8,11,2015,All Over the Guy,I Love You,tt0250202 rNmmNleiY_4,2001.0,1,11,2015,All Over the Guy,I'm Not Gay,tt0250202 MAXHXJ2WgrQ,1988.0,11,12,2015,Bull Durham,The No-No Word Scene,tt0094812 LveQLUDjnaw,1988.0,8,12,2015,Bull Durham,Annie Seduces Nuke Scene,tt0094812 pWRCxdh4PTM,1988.0,9,12,2015,Bull Durham,I Want you Scene,tt0094812 SB_LjL0lUJ4,1988.0,7,12,2015,Bull Durham,Winning's Better Than Losing Scene,tt0094812 PlwmOgcEry8,1988.0,2,12,2015,Bull Durham,Get the Broad Out of Your Head Scene,tt0094812 G-guv9Pd_RA,1988.0,3,12,2015,Bull Durham,Strikeouts Are Fascist Scene,tt0094812 RjtmKIWa4tY,1988.0,5,12,2015,Bull Durham,Bunch of Lollygaggers Scene,tt0094812 85RZMIAL7vM,1988.0,4,12,2015,Bull Durham,Nuke Brings the Heat Scene,tt0094812 mn5crhTusSA,1988.0,1,12,2015,Bull Durham,What Crash Believes Scene,tt0094812 EroyjPcw3sg,1988.0,6,12,2015,Bull Durham,Getting Woolly Scene,tt0094812 diX4myfR6vU,1988.0,10,12,2015,Bull Durham,On the Mound Convention Scene,tt0094812 yL3JcykFL40,1988.0,12,12,2015,Bull Durham,Kitchen Love Scene,tt0094812 FPBY03u-5Zg,2004.0,8,8,2015,House of D,Sweet Melissa,tt0372334 BFeySGJ75WM,2004.0,1,8,2015,House of D,My Best Friend Pappass,tt0372334 GY0xXOTwWoA,2004.0,4,8,2015,House of D,Small Balls,tt0372334 ZSL_Z4FFmjo,2004.0,2,8,2015,House of D,Happenis,tt0372334 6z1TOMdI0i4,2004.0,3,8,2015,House of D,The Retarded Mickey Mantle,tt0372334 2QD3ND3XiL4,2004.0,5,8,2015,House of D,Flat Chest,tt0372334 QErELQ48OOk,2004.0,7,8,2015,House of D,Soul Train,tt0372334 GJdCx-hCKsI,2004.0,6,8,2015,House of D,Shaving,tt0372334 W7uOKhmp00g,2004.0,3,10,2015,Beyond the Sea,,tt0363473 XeGQr6g1i9I,2004.0,8,10,2015,Beyond the Sea,I'm Not Your Sister,tt0363473 Ie6YmUGcPYg,2004.0,2,10,2015,Beyond the Sea,Splish Splash,tt0363473 lnN9r-mmKXw,2004.0,5,10,2015,Beyond the Sea,The Copacabana,tt0363473 wFBlmb2beQI,2004.0,1,10,2015,Beyond the Sea,Up a Lazy River,tt0363473 ZXhrgVj--6Q,2004.0,4,10,2015,Beyond the Sea,Dream Lover,tt0363473 thyfYONK0Hs,2004.0,6,10,2015,Beyond the Sea,You Just Got Nominated!,tt0363473 ChcCflTm4-k,2004.0,7,10,2015,Beyond the Sea,Bobby's Rage,tt0363473 xRFVqsmbLWY,2004.0,9,10,2015,Beyond the Sea,Simple Song of Freedom,tt0363473 V0gKBcEoVdg,2004.0,10,10,2015,Beyond the Sea,As Long As I'm Singing,tt0363473 cTVafG4_CaY,1989.0,3,11,2015,When Harry Met Sally...,Just Friends,tt0098635 MQRZuEppgT0,1989.0,4,11,2015,When Harry Met Sally...,Harry's Divorce,tt0098635 lNEX0fbGePg,1989.0,6,11,2015,When Harry Met Sally...,I'll Have What She's Having,tt0098635 iEV_pQIf3Og,1989.0,2,11,2015,When Harry Met Sally...,Men and Women Can't Be Friends,tt0098635 y4Eo2_YMZtE,1989.0,9,11,2015,When Harry Met Sally...,Four-Way Call,tt0098635 jDP0UCV21Ew,1989.0,10,11,2015,When Harry Met Sally...,The Worst Mistake I Ever Made,tt0098635 iNvdewR9znk,1989.0,8,11,2015,When Harry Met Sally...,Feelings of Loss,tt0098635 0zuRe3QwPG8,1989.0,5,11,2015,When Harry Met Sally...,Sex Dreams,tt0098635 mp8chvACVBk,1989.0,1,11,2015,When Harry Met Sally...,A Dark Side,tt0098635 zGw4fC_Dxo4,1989.0,7,11,2015,When Harry Met Sally...,Bad Double Date,tt0098635 ovkiChacfc8,1989.0,11,11,2015,When Harry Met Sally...,Harry Loves Sally,tt0098635 zJNfkO5ujy0,2005.0,10,10,2015,The Best Man,To Be in Love,tt0430919 4cSZVMEi710,2005.0,6,10,2015,The Best Man,These Aren't Mine,tt0430919 z2QvrmvECo8,2005.0,3,10,2015,The Best Man,Sarah's Test Screening,tt0430919 o-0PQaLy0lc,2005.0,1,10,2015,The Best Man,The Engagement Party,tt0430919 G-fyxbtiDDo,2005.0,4,10,2015,The Best Man,Falling In Love,tt0430919 zR7e8cPlhzQ,2005.0,9,10,2015,The Best Man,She Deserves Better,tt0430919 kWjZx3bSDHI,2005.0,8,10,2015,The Best Man,Not My Kind of Film,tt0430919 SxztUnejrvI,2005.0,7,10,2015,The Best Man,Surprise Party,tt0430919 sOPwbePhOXs,2005.0,2,10,2015,The Best Man,Love At First Sight,tt0430919 J7zl9A6-xHY,2005.0,5,10,2015,The Best Man,The Realtor,tt0430919 aCaTMqs_Qsc,2005.0,3,8,2015,In the Mix,We Need a Man's Opinion,tt0426615 9lYe-ez83H8,2005.0,6,8,2015,In the Mix,I Heard Black Men Can Dance,tt0426615 BKR1-S8aRaQ,2005.0,8,8,2015,In the Mix,Friends to the Rescue,tt0426615 WYliK36fyCU,2005.0,7,8,2015,In the Mix,Ever Think About This?,tt0426615 vSBQt-6fDr8,2005.0,1,8,2015,In the Mix,What Happened to Pamela?,tt0426615 UdYapy35qJ8,2005.0,4,8,2015,In the Mix,Ms. Right Now,tt0426615 BT5Z6_xe86k,2005.0,2,8,2015,In the Mix,Assassination Attempt,tt0426615 sFJmNKLW-2A,2005.0,5,8,2015,In the Mix,A Kiss With Dolly,tt0426615 V_tlFZCiIHo,1986.0,6,11,2015,Blue Velvet,Exposed,tt0090756 b-QlCUByMcE,1986.0,3,11,2015,Blue Velvet,Are You Crazy?,tt0090756 Is5sRHNIAwE,1986.0,11,11,2015,Blue Velvet,Frank Returns,tt0090756 senNDipdmPo,1986.0,7,11,2015,Blue Velvet,Baby Wants,tt0090756 BeYx_CBH700,1986.0,1,11,2015,Blue Velvet,That's a Human Ear,tt0090756 2iWKnf3C8ZY,1986.0,5,11,2015,Blue Velvet,Detective or Pervert?,tt0090756 36LnnBNcETk,1986.0,10,11,2015,Blue Velvet,Don't You Look at Me!,tt0090756 z2G1Ht59cpM,1986.0,9,11,2015,Blue Velvet,Joy Ride With Frank,tt0090756 ncnq2pu4PlE,1986.0,8,11,2015,Blue Velvet,Sandy's Dream of Robins,tt0090756 kuVLtcqiPrY,1986.0,2,11,2015,Blue Velvet,It's a Strange World,tt0090756 GacX6Le_uDM,1986.0,4,11,2015,Blue Velvet,The Bug Man,tt0090756 54jjaJTov6s,2005.0,7,8,2015,Boogeyman,Chasing the,tt0357507 GPJNP0RvWHs,2005.0,8,8,2015,Boogeyman,Confronting the,tt0357507 VNBzjYyGcd0,2005.0,1,8,2015,Boogeyman,He's Not Real,tt0357507 EhsfKBbm1f4,2005.0,6,8,2015,Boogeyman,Monster in the Bathtub,tt0357507 p4IUUBVAUJA,2005.0,2,8,2015,Boogeyman,Mother Returns,tt0357507 SauYDhRS8qQ,2005.0,5,8,2015,Boogeyman,The Taker of Children,tt0357507 yth5JoZKnGQ,2005.0,4,8,2015,Boogeyman,Closet of Terror,tt0357507 W98LPZXSzHE,2005.0,3,8,2015,Boogeyman,Bird in the Windshield,tt0357507 w13Y3PHCqVQ,2005.0,8,8,2015,Drop Dead Sexy,Not The Ending You Expected,tt0397401 I8ltv_SROgc,2005.0,7,8,2015,Drop Dead Sexy,Capturing Eddie,tt0397401 OUfJ9E9zfjg,2005.0,5,8,2015,Drop Dead Sexy,She Looks Familiar,tt0397401 G6zOqkX6qTo,2005.0,3,8,2015,Drop Dead Sexy,Grave Robbing,tt0397401 M_y-ZHpKCqs,2005.0,4,8,2015,Drop Dead Sexy,Don't You Like Me?,tt0397401 AbyNlvzydeA,2005.0,2,8,2015,Drop Dead Sexy,An Explosive Screw Up,tt0397401 XhxddKZYvH4,2005.0,1,8,2015,Drop Dead Sexy,Why People Are Afraid of Spiders,tt0397401 ytd6Q9IxEzk,2005.0,6,8,2015,Drop Dead Sexy,Proof of Life,tt0397401 FAOoSmjHsog,1984.0,7,11,2015,Blood Simple,Buried Alive,tt0086979 Fk_NuqIXhtA,1984.0,4,11,2015,Blood Simple,Marty Hires Visser,tt0086979 nLykrziXGyg,1984.0,1,11,2015,Blood Simple,"Down Here, You're on Your Own",tt0086979 p6XV7oYBMG4,1984.0,3,11,2015,Blood Simple,Kicked in the Balls,tt0086979 1pJdFkkeu0U,1984.0,6,11,2015,Blood Simple,Ray Hides Marty,tt0086979 vVfLenSAj8s,1984.0,8,11,2015,Blood Simple,Abby's Nightmare,tt0086979 4mC5CUTwjno,1984.0,10,11,2015,Blood Simple,Hand Impalement,tt0086979 qLwEQ_18_V8,1984.0,2,11,2015,Blood Simple,What's Funny,tt0086979 RpbUeRN_rcQ,1984.0,11,11,2015,Blood Simple,Abby Kills Visser,tt0086979 z2ZqFFFcXmg,1984.0,5,11,2015,Blood Simple,Who Looks Stupid Now?,tt0086979 Cn6TkV9mxmY,1984.0,9,11,2015,Blood Simple,Lights Out,tt0086979 vkj3RBOD3cA,1990.0,2,11,2015,Rocky V,Rocky's Angel,tt0100507 KAEUeqJRxB8,1990.0,7,11,2015,Rocky V,Tommy Challenges Rocky,tt0100507 NjjDcdIAK60,1990.0,5,11,2015,Rocky V,Tommy Wins the Championship,tt0100507 0Tv6PQbWvJA,1990.0,1,11,2015,Rocky V,Broken Inside,tt0100507 hlx-FULnwJs,1990.0,8,11,2015,Rocky V,One More Round,tt0100507 I7nWj8Q_FgI,1990.0,11,11,2015,Rocky V,Rocky & Son,tt0100507 2XV-EU8JlNI,1990.0,3,11,2015,Rocky V,Don't Sell Out,tt0100507 8H9u7P1d87Y,1990.0,10,11,2015,Rocky V,Touch Me and I'll Sue,tt0100507 PUXHIqGfkXs,1990.0,9,11,2015,Rocky V,Rocky Beats Tommy,tt0100507 g7yAbv_u-FA,1990.0,4,11,2015,Rocky V,You're Losing Your Family!,tt0100507 kpS1Pghejt8,1990.0,6,11,2015,Rocky V,A Rocky Balboa He'll Never Be,tt0100507 wWrB-Gbjnik,1985.0,2,12,2015,Rocky IV,Press Conference Clash,tt0089927 fWa-h0maM1w,1985.0,1,12,2015,Rocky IV,"Whatever He Hits, He Destroys",tt0089927 hHC_R7ATGuI,1985.0,6,12,2015,Rocky IV,Reaching the Summit,tt0089927 wICMOVrSal0,1985.0,7,12,2015,Rocky IV,I Must Break You,tt0089927 qZRbStnLn3c,1985.0,8,12,2015,Rocky IV,The Russian's Cut,tt0089927 3cTyY36ENxY,1985.0,9,12,2015,Rocky IV,Moscow is Pro-Rocky,tt0089927 EiTYwecY41c,1985.0,4,12,2015,Rocky IV,"If He Dies, He Dies",tt0089927 5rvk07eB9wk,1985.0,3,12,2015,Rocky IV,Apollo's Bloody First Round,tt0089927 bbVqciFRioA,1985.0,11,12,2015,Rocky IV,Drago Goes Down,tt0089927 1AmiFfP9u5c,1985.0,10,12,2015,Rocky IV,To the End,tt0089927 wVP1wO_E4yk,1985.0,5,12,2015,Rocky IV,Training in Russia,tt0089927 Uc6tQH8yHF8,1985.0,12,12,2015,Rocky IV,Everybody Can Change,tt0089927 ONit4ATZmhw,1982.0,3,13,2015,Rocky III,A Wreckin' Machine,tt0084602 eNnr60_UZtg,1982.0,2,13,2015,Rocky III,Clubber Heckles Rocky,tt0084602 -edZKfoS2V4,1982.0,7,13,2015,Rocky III,Farewell to Mickey,tt0084602 jm73CCe1e4o,1982.0,4,13,2015,Rocky III,Mickey's Heart Attack,tt0084602 8DrsMeY29Kc,1982.0,10,13,2015,Rocky III,I'm Afraid,tt0084602 8KRzqPxR5zs,1982.0,9,13,2015,Rocky III,There Is No Tomorrow!,tt0084602 CJKeL-ziA_A,1982.0,12,13,2015,Rocky III,I Pity the Fool,tt0084602 rxGjeoSRNQU,1982.0,5,13,2015,Rocky III,Dead Meat,tt0084602 kQ65F_pf868,1982.0,6,13,2015,Rocky III,Knocked Out,tt0084602 _3GmO3aiBKY,1982.0,1,13,2015,Rocky III,Rocky Throws Thunderlips,tt0084602 lu2-RuTwlto,1982.0,13,13,2015,Rocky III,Rocky Beats Clubber,tt0084602 4kVGdo53gwY,1982.0,8,13,2015,Rocky III,I'm Gonna Crucify Him,tt0084602 3ESS6HqOuoc,1982.0,11,13,2015,Rocky III,Getting Stronger,tt0084602 UCZNyjhoINE,1979.0,1,12,2015,Rocky II,Rocky Proposes to Adrian,tt0079817 B2g2yYkNegE,1979.0,2,12,2015,Rocky II,Beast Aftershave,tt0079817 U1ngzzlFqgQ,1979.0,3,12,2015,Rocky II,"You Got the Heart, But You Ain't Got the Tools",tt0079817 bchPm7InHcg,1979.0,5,12,2015,Rocky II,Heated Press Conference,tt0079817 eM3CovgD8Bo,1979.0,6,12,2015,Rocky II,Kentucky Fried Idiot,tt0079817 ui3pnIeA_HM,1979.0,8,12,2015,Rocky II,Adrian Comes Back,tt0079817 thhYv6-lz9A,1979.0,12,12,2015,Rocky II,"Yo Adrian, I Did It!",tt0079817 GEDL7dCxWvs,1979.0,4,12,2015,Rocky II,"I Won, But I Didn't Beat Him",tt0079817 z_hfmThW4fs,1979.0,11,12,2015,Rocky II,Heavyweight Champion of the World,tt0079817 JBNOsPP2yhw,1979.0,9,12,2015,Rocky II,Rocky's Run,tt0079817 RGdgqkgcvCs,1979.0,7,12,2015,Rocky II,You're Training Like a Bum,tt0079817 4uRK1MPvUps,1979.0,10,12,2015,Rocky II,200 Pound Italian Tank,tt0079817 THaIWPlHvLY,1990.0,10,11,2015,Dances with Wolves,River Battle,tt0099348 y1kqd_RgNac,1990.0,4,11,2015,Dances with Wolves,I Am Not Afraid of You,tt0099348 uZRTLpXXlds,1990.0,6,11,2015,Dances with Wolves,Tatanka,tt0099348 cH_nhvO8stg,1990.0,11,11,2015,Dances with Wolves,I Am Your Friend,tt0099348 DvcLVg4rz-c,1990.0,8,11,2015,Dances with Wolves,Heroic Shot,tt0099348 g6q_n-SZg-A,1990.0,9,11,2015,Dances with Wolves,I Am Dances With Wolves,tt0099348 Cr4KHgNuxcA,1990.0,2,11,2015,Dances with Wolves,To See the Frontier,tt0099348 Cq_Fag11NRg,1990.0,3,11,2015,Dances with Wolves,This is My Post,tt0099348 uNSSfdkcppw,1990.0,5,11,2015,Dances with Wolves,Stands With A Fist,tt0099348 PnffktauNZw,1990.0,7,11,2015,Dances with Wolves,The Buffalo Hunt,tt0099348 oK_wtjlQcns,1990.0,1,11,2015,Dances with Wolves,Suicide Attempt,tt0099348 npI-xPUygXY,2005.0,3,8,2015,An American Haunting,Ghostly Attack,tt0429573 UpsxCiyuxGM,2005.0,4,8,2015,An American Haunting,Night Terror,tt0429573 Pb3QUVXfKto,2005.0,1,8,2015,An American Haunting,Chased Through a Nightmare,tt0429573 W5_sieIOe88,2005.0,8,8,2015,An American Haunting,A Forest of Ghosts and Wolves,tt0429573 yBsFjC1fVx8,2005.0,5,8,2015,An American Haunting,Do You Want to Play?,tt0429573 t9QcyYlB7Ac,2005.0,7,8,2015,An American Haunting,You're Gonna Die,tt0429573 ET1bH9TqwCE,2005.0,2,8,2015,An American Haunting,The First Haunting,tt0429573 lrViTBpl8_A,2005.0,6,8,2015,An American Haunting,I'm So Afraid,tt0429573 pRyH7gS__WI,2006.0,2,7,2015,The Grudge 2,Chased in the Hospital,tt0433386 On6-ADTS-g8,2006.0,1,7,2015,The Grudge 2,A Brutal Breakfast,tt0433386 RUJeDvZRsps,2006.0,4,7,2015,The Grudge 2,Haunted Phone Booth,tt0433386 78WFIwR9FrY,2006.0,3,7,2015,The Grudge 2,A Ghost in the Bed,tt0433386 t31U3QAkClM,2006.0,5,7,2015,The Grudge 2,Dark Room of Death,tt0433386 VbJgsN5PcyM,2006.0,7,7,2015,The Grudge 2,They Followed Me Here,tt0433386 5poOduTF5pM,2006.0,6,7,2015,The Grudge 2,Creepy Counseling,tt0433386 _DWgvYbpexM,1995.0,4,12,2015,Showgirls,I Hate You Scene,tt0114436 qoVuQxxeAl0,1995.0,1,12,2015,Showgirls,Lap Dancing 101 Scene,tt0114436 XECoJa7AU-c,1995.0,5,12,2015,Showgirls,A Versace Dress Scene,tt0114436 i60a-KYSCno,1995.0,3,12,2015,Showgirls,Tony Moss Is a Prick Scene,tt0114436 3QWd5rCd-R8,1995.0,6,12,2015,Showgirls,Thrust It! Scene,tt0114436 CHyJRCF3sEc,1995.0,8,12,2015,Showgirls,Nomi's Got Heat Scene,tt0114436 VvH6ZeCJNHA,1995.0,11,12,2015,Showgirls,I'm Not a Whore Scene,tt0114436 UKaGbPJZicM,1995.0,2,12,2015,Showgirls,You Burn When You Dance Scene Moveclips,tt0114436 -9T4jMND-4E,1995.0,7,12,2015,Showgirls,Doggy Chow & Champagne Scene,tt0114436 BB_1LSxIC4o,1995.0,12,12,2015,Showgirls,A Kiss for Cristal Scene,tt0114436 fIleQPfCec0,1995.0,9,12,2015,Showgirls,Nomi Gets the Part Scene,tt0114436 hEZKrsmIGyg,1995.0,10,12,2015,Showgirls,Meeting Andrew Carver Scene,tt0114436 ats6Rg3WPbM,2006.0,12,12,2015,Penelope,I'm Still Me,tt0472160 cXjzLXjLBTo,2006.0,11,12,2015,Penelope,I'm Being Her Mother!,tt0472160 arJc5qABgO8,2006.0,10,12,2015,Penelope,I Like Myself The Way I Am,tt0472160 rRWT4FRDq2U,2006.0,9,12,2015,Penelope,Says 'Hi',tt0472160 SxtPzI76s3E,2006.0,8,12,2015,Penelope,Photo Booth Pig,tt0472160 Tzmt5YLzDXQ,2006.0,6,12,2015,Penelope,I'm A Monster,tt0472160 KBbowtlzD88,2006.0,7,12,2015,Penelope,Escapes,tt0472160 4g4fmiFvXmk,2006.0,5,12,2015,Penelope,He'll Be Back,tt0472160 eI4FXLtPBL0,2006.0,4,12,2015,Penelope,One Man Who Didn't Run Away,tt0472160 2-Y-e_9P8ko,2006.0,3,12,2015,Penelope,The One That Got Away,tt0472160 DMUnxdly1zI,2006.0,2,12,2015,Penelope,'s Funeral,tt0472160 tTsOHmaiMq8,2006.0,1,12,2015,Penelope,'s Birth,tt0472160 flOMk-bWIxQ,2007.0,4,10,2015,P2,Bludgeoned,tt0804516 IaAhl7maKhk,2007.0,1,10,2015,P2,Kidnapped,tt0804516 SpZfI5x9PyE,2007.0,9,10,2015,P2,Parking Garage Chicken,tt0804516 QcqrOIxjeOA,2007.0,5,10,2015,P2,Car Crushed,tt0804516 7q5lFxaC2f4,2007.0,3,10,2015,P2,Back Stab,tt0804516 C2s_9Cx4AG4,2007.0,10,10,2015,P2,"Merry Christmas, Thomas",tt0804516 eKmMFRdNCEw,2007.0,2,10,2015,P2,Calling Mom,tt0804516 ggC1uf1QTjw,2007.0,7,10,2015,P2,Blue Christmas,tt0804516 VASm7dDXDcw,2007.0,8,10,2015,P2,Beware of Dog,tt0804516 IFTljGCli5U,2007.0,6,10,2015,P2,The Elevator,tt0804516 b8ZW-98Zn-w,1979.0,8,12,2015,Mad Max,Getting Ice Cream,tt0079501 oh2MX0EftaU,1979.0,2,12,2015,Mad Max,Stay Off the Roads!,tt0079501 JfJVmzthD3Q,1979.0,1,12,2015,Mad Max,I Am the Nightrider,tt0079501 qUi5Lo9SHTY,1979.0,4,12,2015,Mad Max,The Last of the V-8s,tt0079501 lkAYkfIqivc,1979.0,6,12,2015,Mad Max,Terrorizing the Innocent,tt0079501 dHwJ6zB8B-4,1979.0,7,12,2015,Mad Max,Johnny Boy Burns Goose,tt0079501 KGoS1jrmgHg,1979.0,9,12,2015,Mad Max,The Death of Max's Family,tt0079501 K1YndrF8GiU,1979.0,5,12,2015,Mad Max,The Night-Rider,tt0079501 uAHjDGPOQEQ,1979.0,3,12,2015,Mad Max,Max vs. Nightrider,tt0079501 sE0hL32wswo,1979.0,10,12,2015,Mad Max,Ambush on the Road,tt0079501 1UbSL3Bri4E,1979.0,12,12,2015,Mad Max,Hack Through Your Ankle,tt0079501 VUNpJBzAyXk,1979.0,11,12,2015,Mad Max,Taking Out Toecutter,tt0079501 9M_shJ1_q68,1989.0,1,10,2015,Kickboxer,Tong Po Triumphant,tt0097659 Zyl9lO3o9_0,1989.0,5,10,2015,Kickboxer,Disco Dancing,tt0097659 u9gzHfq9RsQ,1989.0,8,10,2015,Kickboxer,The Tao of Tong Po,tt0097659 8IG_Y8BrorA,1989.0,2,10,2015,Kickboxer,Helping Hand,tt0097659 xbhR3UYKLws,1989.0,9,10,2015,Kickboxer,You Bleed Like Mylee,tt0097659 dadFHEMhfxo,1989.0,7,10,2015,Kickboxer,Round One,tt0097659 u4bLh7SN53U,1989.0,6,10,2015,Kickboxer,Mylee Is the Way,tt0097659 WHFy_iSnR4M,1989.0,10,10,2015,Kickboxer,Nok Su Kow!,tt0097659 NBJhQqGxJBE,1989.0,4,10,2015,Kickboxer,Kick the Tree,tt0097659 IicsG0Br1q4,1989.0,3,10,2015,Kickboxer,Stone City,tt0097659 ZHS4xXmL87I,2007.0,6,10,2015,Hostel: Part 2,Heads in a Closet,tt0498353 5OZPyf-QseQ,2007.0,1,10,2015,Hostel: Part 2,Bad Dream,tt0498353 PvwjtOewYu8,2007.0,4,10,2015,Hostel: Part 2,Smints,tt0498353 dcIVsX1-Aio,2007.0,8,10,2015,Hostel: Part 2,The Italian Cannibal,tt0498353 upGmHcSsGmc,2007.0,7,10,2015,Hostel: Part 2,Sawed,tt0498353 88qGMm1AoGQ,2007.0,5,10,2015,Hostel: Part 2,Nose Bite,tt0498353 d90YEOlhtRk,2007.0,2,10,2015,Hostel: Part 2,A Heady Breakfast,tt0498353 DDlHzP-SYFw,2007.0,3,10,2015,Hostel: Part 2,Bidding,tt0498353 Rs28rq81pGo,2007.0,10,10,2015,Hostel: Part 2,Nostrovia,tt0498353 -ip57avHn8E,2007.0,9,10,2015,Hostel: Part 2,Needle in the Head,tt0498353 kpjWox_c9Ig,1966.0,2,12,2015,"The Good, the Bad and the Ugly",Angel Eyes is Bad,tt0060196 p9shpHAh8uc,1966.0,6,12,2015,"The Good, the Bad and the Ugly",Two Kinds of Spurs,tt0060196 nouLQZCXW4A,1966.0,8,12,2015,"The Good, the Bad and the Ugly",Blue or Gray?,tt0060196 rXs41JvueZY,1966.0,4,12,2015,"The Good, the Bad and the Ugly",Our Partnership Is Untied,tt0060196 E303pbjYRdo,1966.0,1,12,2015,"The Good, the Bad and the Ugly",Angel Eyes Finishes the Job,tt0060196 o36m-2TPwck,1966.0,12,12,2015,"The Good, the Bad and the Ugly",Tuco's Final Insult,tt0060196 D7Ax5jr6mDM,1966.0,3,12,2015,"The Good, the Bad and the Ugly",Blondie Does the Cutting,tt0060196 thSPQDFYyiE,1966.0,7,12,2015,"The Good, the Bad and the Ugly",The Name on the Grave,tt0060196 Xsa_dy0w84Y,1966.0,5,12,2015,"The Good, the Bad and the Ugly",Tuco Gets a Gun,tt0060196 _yMeXMRn9KU,1966.0,9,12,2015,"The Good, the Bad and the Ugly",Tuco is Tortured,tt0060196 5PgAKzmWmuk,1966.0,11,12,2015,"The Good, the Bad and the Ugly",Three-Way Standoff,tt0060196 JrYtD7gSWsI,1966.0,10,12,2015,"The Good, the Bad and the Ugly","When You Have to Shoot, Shoot",tt0060196 PO8fJeJP8AU,2000.0,6,8,2015,Leprechaun in the Hood,An Eye For Pie,tt3602442 hEzyoeRuxYk,2000.0,1,8,2015,Leprechaun in the Hood,Afro Arsenal,tt3602442 Fz9Y72jbsxU,2000.0,4,8,2015,Leprechaun in the Hood,Just The Right Size,tt3602442 jhz2fVM1rMA,2000.0,2,8,2015,Leprechaun in the Hood,A Friend With Weed,tt3602442 jMAy36cl6w8,2000.0,5,8,2015,Leprechaun in the Hood,Sinful Creature,tt3602442 XzWlhLSitJ8,2000.0,8,8,2015,Leprechaun in the Hood,The Leprechaun Rap,tt3602442 rU3GNIhA7fk,2000.0,3,8,2015,Leprechaun in the Hood,Love Me,tt3602442 Ol5eFltyhLE,2000.0,7,8,2015,Leprechaun in the Hood,Cross-Dressing Impostor,tt3602442 1hiv8o-SRZ0,1997.0,7,9,2015,Leprechaun 4: In Space,Flattening Harold,tt0116861 1m3y_pIJ304,1997.0,9,9,2015,Leprechaun 4: In Space,A Leprechaun In Space,tt0116861 FKwYBGdhUpc,1997.0,6,9,2015,Leprechaun 4: In Space,This Little Piggy,tt0116861 --aqjaJyZLk,1997.0,5,9,2015,Leprechaun 4: In Space,Workplace Safety,tt0116861 XrnUNfRvAho,1997.0,4,9,2015,Leprechaun 4: In Space,The Man Behind the Curtain,tt0116861 NsjUpOTLrr0,1997.0,2,9,2015,Leprechaun 4: In Space,Always Wear a Prophylactic,tt0116861 epBGWHCrfr4,1997.0,3,9,2015,Leprechaun 4: In Space,Flesh-Eating Bacteria,tt0116861 IHVBdcgvTaM,1997.0,1,9,2015,Leprechaun 4: In Space,The Leprechaun's Treasures,tt0116861 JtW17JUoeUs,1997.0,8,9,2015,Leprechaun 4: In Space,Big Is Good,tt0116861 jM8cy3uB5N8,1964.0,4,9,2015,A Fistful of Dollars,Rescuing Marisol,tt0058461 2mbvrOmirQg,1964.0,6,9,2015,A Fistful of Dollars,Barrelled Over,tt0058461 G-50M2Wex20,1964.0,5,9,2015,A Fistful of Dollars,A Serious Beating,tt0058461 ABUroSunjEY,1964.0,3,9,2015,A Fistful of Dollars,Shoot for the Heart,tt0058461 vsPVyvwwVns,1964.0,2,9,2015,A Fistful of Dollars,Double Cross by the River,tt0058461 Sv_GcxkmW4Y,1964.0,1,9,2015,A Fistful of Dollars,Get Three Coffins Ready,tt0058461 CbB6CosDNV4,1964.0,7,9,2015,A Fistful of Dollars,Making Armor,tt0058461 Y9nW4w5tHVM,1964.0,8,9,2015,A Fistful of Dollars,Aim for the Heart,tt0058461 jQPhLeyzkLY,1964.0,9,9,2015,A Fistful of Dollars,Pistol vs. Rifle,tt0058461 wreBOqv-y3Y,2008.0,8,8,2015,The Midnight Meat Train,To Keep the Worlds Separate,tt0805570 R6oNHDPMOKQ,2008.0,7,8,2015,The Midnight Meat Train,Final Fight,tt0805570 6GAilUIUtpw,2008.0,6,8,2015,The Midnight Meat Train,Hide and Seek,tt0805570 0IyGdSEdk3g,2008.0,4,8,2015,The Midnight Meat Train,The Meat Locker,tt0805570 tOpPh1MQ9sM,2008.0,3,8,2015,The Midnight Meat Train,Brutal Brawl,tt0805570 KoDrm4b6SH8,2008.0,1,8,2015,The Midnight Meat Train,Caught on Camera,tt0805570 2oMW26rEZUk,2008.0,2,8,2015,The Midnight Meat Train,Subway Slaughter,tt0805570 ZIOGfLuHu3Y,2008.0,5,8,2015,The Midnight Meat Train,Field Dressing a Human,tt0805570 rETUKp1A-xo,1995.0,7,8,2015,Leprechaun 3,Managed Care,tt0113636 aQq3mHLZ-X0,1995.0,6,8,2015,Leprechaun 3,A Load to Explode,tt0113636 HTbSaYy2Bhk,1995.0,5,8,2015,Leprechaun 3,Robo Sex,tt0113636 RFpNZ_n9rcI,1995.0,4,8,2015,Leprechaun 3,Room Service,tt0113636 xMOzBw0mrcc,1995.0,8,8,2015,Leprechaun 3,Flame Broiled,tt0113636 9iPH8MXkPEE,1995.0,2,8,2015,Leprechaun 3,Winning Streak,tt0113636 i-2EJ-HDYg8,1995.0,1,8,2015,Leprechaun 3,Leprechaun Reborn,tt0113636 e2Odq49gEbs,1995.0,3,8,2015,Leprechaun 3,Leprechaun in Vegas,tt0113636 N3qEvEGFdKE,1986.0,1,12,2015,Three Amigos,Look Up Here!,tt0092086 GPdEP_fFQhk,1986.0,4,12,2015,Three Amigos,A Male Plane,tt0092086 iB89FIStq7Y,1986.0,7,12,2015,Three Amigos,Blue Shadows (On the Trail),tt0092086 e9vPvHO8Kp4,1986.0,9,12,2015,Three Amigos,The Singing Bush and the Invisible Swordsman,tt0092086 okiMnLyCMbA,1986.0,2,12,2015,Three Amigos,What's Tequila?,tt0092086 T6wetejGqh0,1986.0,3,12,2015,Three Amigos,My Little Buttercup,tt0092086 fw7p7tAdVuE,1986.0,5,12,2015,Three Amigos,Three Amigo Salute,tt0092086 pUWlaORsqw4,1986.0,6,12,2015,Three Amigos,Kiss on the Veranda,tt0092086 L08fJmbHcPo,1986.0,8,12,2015,Three Amigos,Lip Balm?,tt0092086 P8ROhP_3-Qk,1986.0,10,12,2015,Three Amigos,A Plethora of Pinatas,tt0092086 1l7e9BD_gos,1986.0,11,12,2015,Three Amigos,Gringos Falling From the Sky,tt0092086 ZoZ_4nNNn9M,1986.0,12,12,2015,Three Amigos,Lucky's El Guapo Speech,tt0092086 18QXG4aUP60,1965.0,10,10,2015,For a Few Dollars More,Corpse Math,tt0059578 GkkdbPYW5QU,1965.0,9,10,2015,For a Few Dollars More,Final Duel,tt0059578 I2E8wW-YGBA,1965.0,7,10,2015,For a Few Dollars More,You'll Be Smoking in Hell,tt0059578 3ucBVz_IFGk,1965.0,5,10,2015,For a Few Dollars More,Hat Blasting,tt0059578 k7Awv1n438I,1965.0,4,10,2015,For a Few Dollars More,Mortimer Strikes a Match,tt0059578 XsiXAckgh6I,1965.0,1,10,2015,For a Few Dollars More,Mortimer's Rifles,tt0059578 _GsQYT-btPA,1965.0,2,10,2015,For a Few Dollars More,Bet Your Life,tt0059578 xpkA68e5HN4,1965.0,3,10,2015,For a Few Dollars More,The Musical Pocket Watch,tt0059578 p5Lzdntomy4,1965.0,6,10,2015,For a Few Dollars More,Shooting Fruit,tt0059578 d66vE__YWME,1965.0,8,10,2015,For a Few Dollars More,Monco Chimes In,tt0059578 FPZ4yah3ROU,1987.0,1,11,2015,Spaceballs,Pizza the Hutt,tt0094012 aeWbTffMq-A,1987.0,10,11,2015,Spaceballs,Rescuing the Princess,tt0094012 nRGCZh5A8T4,1987.0,5,11,2015,Spaceballs,We're in Now Now,tt0094012 B-NhD15ocwA,1987.0,9,11,2015,Spaceballs,Giving Up the Combination,tt0094012 wHNB8IHfHdU,1987.0,2,11,2015,Spaceballs,Surrounded by A**holes,tt0094012 NAWL8ejf2nM,1987.0,4,11,2015,Spaceballs,Ludicrous Speed,tt0094012 rGvblGCD7qM,1987.0,3,11,2015,Spaceballs,The Radar Is Jammed,tt0094012 fgRFQJCHcPw,1987.0,6,11,2015,Spaceballs,Merchandising! Merchandising!,tt0094012 hD5eqBDPMDg,1987.0,7,11,2015,Spaceballs,Combing the Desert,tt0094012 eGoXyXiwOBg,1987.0,8,11,2015,Spaceballs,Dark Helmet Plays With Dolls,tt0094012 pPkWZdluoUg,1987.0,11,11,2015,Spaceballs,Your Schwartz Is as Big as Mine,tt0094012 DvS1BdiVC7o,2007.0,9,9,2015,Highlander: The Source,Face the Guardian,tt0299981 Rb5mk6TfzoM,2007.0,7,9,2015,Highlander: The Source,You Can't Save Me,tt0299981 RZCFh9yDIOs,2007.0,6,9,2015,Highlander: The Source,It Calls to You,tt0299981 uOPuo29uzFk,2007.0,5,9,2015,Highlander: The Source,I Want the Impossible,tt0299981 ze-GArhI0iM,2007.0,4,9,2015,Highlander: The Source,You Pissed It Away,tt0299981 mj-34Q3fCHs,2007.0,3,9,2015,Highlander: The Source,There Can Be Only Me,tt0299981 7j9gs7xZ-9M,2007.0,2,9,2015,Highlander: The Source,The Guardian Rises,tt0299981 RAFmFyb1siI,2007.0,1,9,2015,Highlander: The Source,Mistaken Identity,tt0299981 ZEliNNDLyUg,2007.0,8,9,2015,Highlander: The Source,Burning Man Fight,tt0299981 njyllF8b_W4,2008.0,8,9,2015,The Hurt Locker,Stuff That Almost Killed Me,tt0887912 rviQWy48B_w,2008.0,7,9,2015,The Hurt Locker,Insurgent Sniper,tt0887912 lA1bgUYjJ0I,2008.0,9,9,2015,The Hurt Locker,Not Enough Time,tt0887912 LxmnOxCk3dM,2008.0,6,9,2015,The Hurt Locker,What Are We Shooting At?,tt0887912 Bnmo8X2kwpk,2008.0,5,9,2015,The Hurt Locker,Wild Man,tt0887912 nuNQY06FEOc,2008.0,4,9,2015,The Hurt Locker,We're Done,tt0887912 WiXoeYPz1LY,2008.0,3,9,2015,The Hurt Locker,Die Comfortable,tt0887912 IsgHQHIeiBk,2008.0,2,9,2015,The Hurt Locker,Got a Wire,tt0887912 Jc_h1ufAXYs,2008.0,1,9,2015,The Hurt Locker,You Wanna Back Up?,tt0887912 y5oIDeR0YjA,2008.0,5,11,2015,Never Back Down,Intimidation,tt1023111 yPAPYhU_zsQ,2008.0,10,11,2015,Never Back Down,You Can Do This,tt1023111 Ekl021fmWGc,2008.0,6,11,2015,Never Back Down,Jake's Apology,tt1023111 QQq6L1Sw4Ck,2008.0,4,11,2015,Never Back Down,Road Rage,tt1023111 -mjnbKL7fHQ,2008.0,3,11,2015,Never Back Down,Learning to Breathe,tt1023111 ghpYpbgtLIs,2008.0,1,11,2015,Never Back Down,Party Beatdown,tt1023111 F656vZAFGdM,2008.0,2,11,2015,Never Back Down,First Lesson,tt1023111 9LiQ5MZKYUY,2008.0,9,11,2015,Never Back Down,Tyler vs. Dak-Ho,tt1023111 aJ7NA4hNNc0,2008.0,8,11,2015,Never Back Down,Show Me What You Got,tt1023111 M3byaFhO18Q,2008.0,11,11,2015,Never Back Down,The Final Fight,tt1023111 5OZbydb0FdY,2008.0,7,11,2015,Never Back Down,Training With Roqua,tt1023111 KdkEzfozXss,2006.0,10,11,2015,Basic Instinct 2,Hot Tub Assault,tt0430912 bDT3nUjN2fs,2006.0,9,11,2015,Basic Instinct 2,Dicky Pap,tt0430912 dzw9h7GnERM,2006.0,6,11,2015,Basic Instinct 2,Scene of the Murder,tt0430912 FGSmKV6K__o,2006.0,5,11,2015,Basic Instinct 2,Sex & Death,tt0430912 LTS4bKTgyik,2006.0,11,11,2015,Basic Instinct 2,"Michael's ""Happy Ending""",tt0430912 cf_0FH_2934,2006.0,7,11,2015,Basic Instinct 2,Dirty Talk,tt0430912 SfQAxD8v6Mc,2006.0,3,11,2015,Basic Instinct 2,Being In Control,tt0430912 _ZrJXN_vrBs,2006.0,2,11,2015,Basic Instinct 2,Come Again?,tt0430912 PXEuRW2cOqE,2006.0,1,11,2015,Basic Instinct 2,Sex Drive,tt0430912 pWhT-4m-4ro,2006.0,8,11,2015,Basic Instinct 2,Catherine Seduces Glass,tt0430912 B96DjgGIxv4,2006.0,4,11,2015,Basic Instinct 2,Risk Addiction,tt0430912 xEOHMxA4C-E,2008.0,6,11,2015,Fly Me to the Moon,We Gotta Do Something,tt0486321 wM-OyBwhuOk,2008.0,4,11,2015,Fly Me to the Moon,Blast Off,tt0486321 UuRb2YYEYfc,2008.0,2,11,2015,Fly Me to the Moon,Adventure Forever,tt0486321 UhRriAA2Kf0,2008.0,3,11,2015,Fly Me to the Moon,Your TIme Will Come,tt0486321 q2rT8XyVHhA,2008.0,9,11,2015,Fly Me to the Moon,Scooter Gets Stuck,tt0486321 Pz1OFqEVi3c,2008.0,5,11,2015,Fly Me to the Moon,Space Odyssey,tt0486321 maWca5IRGt8,2008.0,1,11,2015,Fly Me to the Moon,Grandpa Saves Amelia Earhart,tt0486321 UuuyzaRWiA0,2008.0,10,11,2015,Fly Me to the Moon,I Get Smart,tt0486321 qFiFKP6Jxoo,2008.0,7,11,2015,Fly Me to the Moon,We're On The Moon,tt0486321 _E84Vp8Rnfo,2008.0,8,11,2015,Fly Me to the Moon,One Small Step For Man,tt0486321 GRjqtMFumZk,2008.0,11,11,2015,Fly Me to the Moon,Buzz Aldrin,tt0486321 HnyvaqsAcVQ,2009.0,1,5,2015,The Last Resort,Are You Ready?,tt1124048 tLadr2v8AAA,2009.0,5,5,2015,The Last Resort,Don't Make Me Do This,tt1124048 WEJZDUTGV8s,2009.0,4,5,2015,The Last Resort,Friends Eating Friends,tt1124048 rCmp3o84w6A,2009.0,2,5,2015,The Last Resort,A Tour Gone Bad,tt1124048 5USau0NMAxU,2009.0,3,5,2015,The Last Resort,These Are the Guys,tt1124048 6mQAgXT_lVM,2009.0,9,9,2015,The Grudge 3,A Final Confrontation,tt1053859 RdU8F4C9oDw,2009.0,7,9,2015,The Grudge 3,Car Trouble,tt1053859 tab4Nxd8GlY,2009.0,6,9,2015,The Grudge 3,The Ghost Gets the Doctor,tt1053859 YMA_1YDqjYc,2009.0,4,9,2015,The Grudge 3,Paintings of Blood,tt1053859 IsG-tXSQRX4,2009.0,1,9,2015,The Grudge 3,She's Here!,tt1053859 4dm-ZfP3fbs,2009.0,5,9,2015,The Grudge 3,The Ghost Boy is Here,tt1053859 3jNEs5M1Sik,2009.0,8,9,2015,The Grudge 3,Possessed and Psychotic,tt1053859 7tg6TqW7u-A,2009.0,3,9,2015,The Grudge 3,The Ghost in the Bathtub,tt1053859 Up1eNda6Rt0,2009.0,2,9,2015,The Grudge 3,The Wrong Make-Out Spot,tt1053859 9cySKHPqIjw,1987.0,3,11,2015,RoboCop,"Your Move, Creep",tt0093870 QjUkgodriIo,2009.0,4,11,2015,Push,Put the Gun in Your Mouth,tt0465580 6OEA4J0sobo,2009.0,11,11,2015,Push,Kill Him,tt0465580 KAOlo7Ijo5k,2009.0,10,11,2015,Push,Look At Me,tt0465580 NNfMLLVwiN0,2009.0,9,11,2015,Push,Psychic Showdown,tt0465580 bYUJuCsymVM,2009.0,8,11,2015,Push,The Suitcase,tt0465580 tjRYZON0o9w,2009.0,6,11,2015,Push,Memory Erased,tt0465580 nhm5xXXqzqE,2009.0,5,11,2015,Push,Restaurant Shootout,tt0465580 fU-ICxohwSc,2009.0,3,11,2015,Push,Brother,tt0465580 gpCFk7jK810,2009.0,2,11,2015,Push,The Stitch,tt0465580 Ki5TEx2nIHQ,2009.0,1,11,2015,Push,Fish Tanks,tt0465580 0Ba6y1Y8JjU,2009.0,7,11,2015,Push,A Crappy Artist,tt0465580 rMz7JBRbmNo,1987.0,5,12,2015,The Princess Bride,The Battle of Wits,tt0093779 rUczpTPATyU,1987.0,3,12,2015,The Princess Bride,I Am Not Left-Handed,tt0093779 lISBP_fPg1s,1987.0,4,12,2015,The Princess Bride,Dream of Large Women,tt0093779 XeO3jMZphhs,1987.0,9,12,2015,The Princess Bride,If We Only Had a Wheelbarrow,tt0093779 3odMTPuzLwY,1987.0,10,12,2015,The Princess Bride,Mawage,tt0093779 niul8Hy-3wk,1987.0,6,12,2015,The Princess Bride,As You Wish,tt0093779 d4ftmOI5NnI,1987.0,8,12,2015,The Princess Bride,Miracle Max,tt0093779 XCHKYNFH9Lk,1987.0,1,12,2015,The Princess Bride,Anybody Want a Peanut?,tt0093779 wUJccK4lV74,1987.0,12,12,2015,The Princess Bride,To the Pain!,tt0093779 JFo6iLDNzX0,1987.0,7,12,2015,The Princess Bride,The Torture Machine,tt0093779 D9MS2y2YU_o,1987.0,2,12,2015,The Princess Bride,Inconceivable!,tt0093779 I73sP93-0xA,1987.0,11,12,2015,The Princess Bride,My Name Is Inigo Montoya,tt0093779 DyYuDAmUqRk,2009.0,10,12,2015,Sorority Row,Come to Mama,tt1232783 0PIbNyzb5YM,2009.0,7,12,2015,Sorority Row,You Made Me Do This,tt1232783 el6nzbxrsD0,2009.0,12,12,2015,Sorority Row,Sisters Till the End,tt1232783 IThWCij8W0k,2009.0,11,12,2015,Sorority Row,The Killer is Revealed,tt1232783 70gIBwjO49M,2009.0,8,12,2015,Sorority Row,Theta Pi Must Die,tt1232783 shehrh353Oo,2009.0,5,12,2015,Sorority Row,Ellie Freaks Out,tt1232783 ChPLYyubXiE,2009.0,4,12,2015,Sorority Row,Deadly Drink,tt1232783 nCzYHB_8hXU,2009.0,3,12,2015,Sorority Row,Prank Gone Wrong,tt1232783 ZoJqs349ahs,2009.0,9,12,2015,Sorority Row,Payback's Such a Bitch,tt1232783 TJmgMmjx2eU,2009.0,6,12,2015,Sorority Row,Party Kill,tt1232783 yPg84oVPnE0,2009.0,1,12,2015,Sorority Row,Sorority Shout Outs,tt1232783 e72atw7hctA,2009.0,2,12,2015,Sorority Row,Best Prank Ever,tt1232783 qcdR-kyqqHs,2013.0,2,10,2015,Promised Land,You'd Be a Millionaire,tt2091473 LX8mxeGuqi4,2013.0,10,10,2015,Promised Land,"One Day, You're Gonna Lose",tt2091473 6ZSsIZ40GAQ,2013.0,9,10,2015,Promised Land,You're a Good Man,tt2091473 uW7Pev3qG1k,2013.0,8,10,2015,Promised Land,You're Gonna Remember This Conversation,tt2091473 THPVDNnsVT4,2013.0,7,10,2015,Promised Land,You're Only Here Because We're Poor,tt2091473 aU6KHvuvxBw,2013.0,6,10,2015,Promised Land,We're Fighting for People,tt2091473 ih0GAi4HWwA,2013.0,5,10,2015,Promised Land,I Appreciate What You Are Doing,tt2091473 vbbHaMTLrbg,2013.0,4,10,2015,Promised Land,Not In The Town's Best Interest,tt2091473 LMQd7xw1Wf4,2013.0,3,10,2015,Promised Land,Let Some Other Guy Be Last,tt2091473 5pLpIsdg50c,2013.0,1,10,2015,Promised Land,How Do You Do It?,tt2091473 TTUvtnPvN8k,1990.0,7,11,2015,RoboCop 2,Motorcycle vs. Truck,tt0100502 IoavfE6TCbw,1990.0,4,11,2015,RoboCop 2,One of Us Must Die,tt0100502 -9DrPi3ki0g,1990.0,6,11,2015,RoboCop 2,Demolition Ride,tt0100502 _m90Rm0RX-8,1990.0,8,11,2015,RoboCop 2,Cain's Brain,tt0100502 moYXL6hX8vI,1990.0,1,11,2015,RoboCop 2,Magnavolt and the ED-209,tt0100502 Yr1lgfqygio,1990.0,5,11,2015,RoboCop 2,Thank You for Not Smoking,tt0100502 msaelEZ_eEs,1990.0,9,11,2015,RoboCop 2,RoboCop vs.,tt0100502 xrJkcV4DGZ4,1990.0,2,11,2015,RoboCop 2,RoboCop Returns,tt0100502 xRkZAfoaEw8,1990.0,11,11,2015,RoboCop 2,Goodbye,tt0100502 7ke8XUZSYLw,1990.0,10,11,2015,RoboCop 2,Robo Rampage,tt0100502 NJIjNs_s2NI,1990.0,3,11,2015,RoboCop 2,Robo Flops,tt0100502 UXK7kf1wmqI,2012.0,4,10,2015,Hyde Park on Hudson,It's Going to Be a Big Success,tt1477855 UvJ8UDYipAg,2012.0,5,10,2015,Hyde Park on Hudson,Are They Trying to Make Fun of Us?,tt1477855 _5p4QdtkbC8,2012.0,3,10,2015,Hyde Park on Hudson,I Want to Meet an American,tt1477855 2I5V3zd1J8M,2012.0,9,10,2015,Hyde Park on Hudson,Don't Ever Compare Me To My Brother,tt1477855 i5ogNBaY2BY,2012.0,10,10,2015,Hyde Park on Hudson,A Special Relationship,tt1477855 N18AtSAxJ1I,2012.0,6,10,2015,Hyde Park on Hudson,Let Me Confess Something to You,tt1477855 H4PpclIJZHA,2012.0,7,10,2015,Hyde Park on Hudson,I Don't Accept You,tt1477855 ioCaBQBjEBU,2012.0,2,10,2015,Hyde Park on Hudson,Very Good Friends,tt1477855 KuMy7-yMXO8,2012.0,1,10,2015,Hyde Park on Hudson,What a Rare Treat,tt1477855 1fxRMQLYRWs,2012.0,8,10,2015,Hyde Park on Hudson,Am I Like a Whore?,tt1477855 jnN4PnoJ1vw,2013.0,9,10,2015,Admission,I'm Your Mother,tt1814621 gawe9W5HYtQ,2013.0,2,10,2015,Admission,I Had a Mastectomy,tt1814621 O6Obigg85oo,2013.0,1,10,2015,Admission,Students That Will Change The World,tt1814621 kcONgsdSLq8,2013.0,5,10,2015,Admission,Nothing Improper Going On,tt1814621 OVXpH5cKWf0,2013.0,7,10,2015,Admission,Are You Johnny's Girlfriend?,tt1814621 8jN4i-6ikWY,2013.0,3,10,2015,Admission,I Have Something to Ask You,tt1814621 MHpGJ-jtGy4,2013.0,10,10,2015,Admission,The Disappointments of My Life,tt1814621 f4vVtsfEMRI,2013.0,6,10,2015,Admission,To Not Feel So Alone,tt1814621 KFASQKT9JSs,2013.0,8,10,2015,Admission,You Are a Kid,tt1814621 Wi41GDMQxr0,2013.0,4,10,2015,Admission,I'm Leaving You,tt1814621 0eQBa4JQzDI,1981.0,3,10,2015,On Golden Pond,We Cruise Chicks,tt0082846 JHACE2LTz_s,1981.0,2,10,2015,On Golden Pond,We'd Like to Sleep Together,tt0082846 ocyplDqvhuo,1981.0,1,10,2015,On Golden Pond,My Knight in Shining Armor,tt0082846 kHTAJHod8-g,1981.0,8,10,2015,On Golden Pond,A Father or a Friend,tt0082846 irkGAhW7wlQ,1981.0,6,10,2015,On Golden Pond,A Rainbow Trout,tt0082846 f20aUH5IG9s,1981.0,4,10,2015,On Golden Pond,You're a Big Girl Now,tt0082846 MIjkFrmSCYU,1981.0,9,10,2015,On Golden Pond,Mad for So Long,tt0082846 Jkk2ai88ED0,1981.0,10,10,2015,On Golden Pond,I Was Showing Off,tt0082846 Vyrr1vSRYjs,1981.0,7,10,2015,On Golden Pond,Boating Accident,tt0082846 ARLZaZd3fAg,1981.0,5,10,2015,On Golden Pond,We're Going Fishing,tt0082846 _SVAzrGlEmc,2013.0,4,10,2015,2 Guns,Today They Want to Kill Me,tt1272878 5wRnpjDfEz8,2013.0,7,10,2015,2 Guns,Pleasure to Meet You,tt1272878 7Vhxv6URu5I,2013.0,1,10,2015,2 Guns,It's a Bank Robbery,tt1272878 3lqYg7jpjfI,2013.0,2,10,2015,2 Guns,Is That a Badge?,tt1272878 m_KtsgEoK4Q,2013.0,3,10,2015,2 Guns,Doesn't Matter If You Run,tt1272878 Um-Nj5FvfE4,2013.0,5,10,2015,2 Guns,Home Invasion,tt1272878 EeYI0V2j12g,2013.0,6,10,2015,2 Guns,"Damn, You're Good",tt1272878 DcwhTBEcbBw,2013.0,8,10,2015,2 Guns,What the Hell is Going On?,tt1272878 BLFU01WKeBs,2013.0,10,10,2015,2 Guns,Make It Rain,tt1272878 jbeyKcGqxyI,2013.0,9,10,2015,2 Guns,Where's the Money?,tt1272878 vuJrsCBt0rQ,2010.0,1,12,2015,Hot Tub Time Machine,'Sup Dawg,tt1231587 Xwmvrx1wq4s,2010.0,2,12,2015,Hot Tub Time Machine,It's Only Pee,tt1231587 nVRCznRsCgY,2010.0,8,12,2015,Hot Tub Time Machine,Gary Coleman's Forearm,tt1231587 ic7F0sCFcZ4,2010.0,12,12,2015,Hot Tub Time Machine,Severed Arm,tt1231587 T3iSphEl9WI,2010.0,5,12,2015,Hot Tub Time Machine,We Are Ourselves,tt1231587 jVS8e7I6Co4,2010.0,3,12,2015,Hot Tub Time Machine,A Lot of Vomit,tt1231587 clP9p1ipHEw,2010.0,10,12,2015,Hot Tub Time Machine,Dropping Loads,tt1231587 CQuB7dB-elg,2010.0,4,12,2015,Hot Tub Time Machine,Feeling Fantastic,tt1231587 m9pdH02FxPY,2010.0,6,12,2015,Hot Tub Time Machine,The Butterfly Effect,tt1231587 eSDTJ1sE29E,2010.0,9,12,2015,Hot Tub Time Machine,Stick By Your Friends,tt1231587 qU93Cguv4W0,2010.0,7,12,2015,Hot Tub Time Machine,Embrace the Chaos,tt1231587 pqzMo6SfXX4,2010.0,11,12,2015,Hot Tub Time Machine,The Violator,tt1231587 1BimnTWx1b8,2013.0,7,10,2015,The Best Man Holiday,I Need You to Forgive Him,tt2083355 ntsuIs20RW0,2013.0,10,10,2015,The Best Man Holiday,You're Not a Doctor,tt2083355 KKOR6WC_fUg,2013.0,8,10,2015,The Best Man Holiday,What I Want For Christmas,tt2083355 aPeZmPcpiu8,2013.0,6,10,2015,The Best Man Holiday,Stay Away From My Family,tt2083355 Cqc48kDMG0Q,2013.0,5,10,2015,The Best Man Holiday,You Married a Stripper,tt2083355 J_L4nLBweuQ,2013.0,4,10,2015,The Best Man Holiday,Christmas Catfight,tt2083355 ESSsStp3pFU,2013.0,3,10,2015,The Best Man Holiday,Can You Stand The Rain,tt2083355 cG0ZIxenJY8,2013.0,2,10,2015,The Best Man Holiday,Can I Use Your Phone?,tt2083355 tXNMNMLQzwg,2013.0,1,10,2015,The Best Man Holiday,Jordan's New Boyfriend,tt2083355 0U-kaLEaThU,2013.0,9,10,2015,The Best Man Holiday,Mourning Death and Celebrating Life,tt2083355 QR4x2_6qzXg,2008.0,6,10,2015,Two Lovers,Please Don't Go,tt1103275 Lf93YLs4004,2008.0,8,10,2015,Two Lovers,I'll Do Anything for You,tt1103275 JcWawUzwoL0,2008.0,4,10,2015,Two Lovers,I Do Like You,tt1103275 IvagCOQJuYg,2008.0,1,10,2015,Two Lovers,I Wanted Us to Meet,tt1103275 q1ogthNk040,2008.0,9,10,2015,Two Lovers,A Bittersweet Goodbye,tt1103275 tdvq6Usjydg,2008.0,7,10,2015,Two Lovers,More Than a Crush,tt1103275 FOYr5wApG3k,2008.0,2,10,2015,Two Lovers,Meeting Michelle,tt1103275 V_qYvdPSRto,2008.0,10,10,2015,Two Lovers,Shattered Dreams,tt1103275 8Fgz5cARQZo,2008.0,5,10,2015,Two Lovers,Like a Brother,tt1103275 mqJxvhBThw0,2008.0,3,10,2015,Two Lovers,Michelle's Meltdown,tt1103275 fEpjHtkttYg,1987.0,4,11,2015,RoboCop,You're Coming with Me,tt0093870 LMT8UN9bSiA,1987.0,7,11,2015,RoboCop,You Are Under Arrest,tt0093870 2J8mkHUsiXY,1987.0,9,11,2015,RoboCop,Toxic Waste,tt0093870 I2JSXKFWqGI,1987.0,5,11,2015,RoboCop,Bitches Leave,tt0093870 IvDNfFVpvZI,1987.0,6,11,2015,RoboCop,Cocaine Factory Shootout,tt0093870 GLQiskRb02o,1987.0,8,11,2015,RoboCop,vs. ED 209,tt0093870 Ip7GGf2_b6Y,1987.0,11,11,2015,RoboCop,"Dick, You're Fired!",tt0093870 UY89o4QFvQM,1987.0,10,11,2015,RoboCop,"Sayonara, !",tt0093870 5FcTzH6A4a4,1987.0,2,11,2015,RoboCop,Officer Murphy Is Killed,tt0093870 TstteJ1eIZg,1987.0,1,11,2015,RoboCop,It's Only a Glitch,tt0093870 aofM4j2teCw,2009.0,9,10,2015,The House of the Devil,Escaping the Satanic Ritual,tt1172994 KNby2wixjzg,2009.0,6,10,2015,The House of the Devil,Pizza Delivery,tt1172994 tCFb_FossHk,2009.0,3,10,2015,The House of the Devil,Only One Babysitter,tt1172994 -8CnljMrH3k,2009.0,2,10,2015,The House of the Devil,Come Inside,tt1172994 QimMZHQFaXk,2009.0,7,10,2015,The House of the Devil,Mother's Room,tt1172994 421eYc8zCtk,2009.0,8,10,2015,The House of the Devil,Satanic Ritual,tt1172994 kS9NLX0pFVs,2009.0,10,10,2015,The House of the Devil,Mother of the Devil,tt1172994 lsOQqbPYVHY,2009.0,5,10,2015,The House of the Devil,I Love The Heat,tt1172994 Aac0krsfzSQ,2009.0,4,10,2015,The House of the Devil,A Deal is Made,tt1172994 PnbVXrBlmJ4,2009.0,1,10,2015,The House of the Devil,Babysitter Needed,tt1172994 DMyBC0gLSgg,2010.0,9,10,2015,Rubber,Killing Spree,tt1612774 nAp6q0q84vc,2010.0,6,10,2015,Rubber,This Tire Is Alive,tt1612774 OtXieOlT7SA,2010.0,5,10,2015,Rubber,Tire Voyeur,tt1612774 vldYVG_5cZY,2010.0,4,10,2015,Rubber,Pain at the Pump,tt1612774 WV12BpbBrro,2010.0,1,10,2015,Rubber,No Reason,tt1612774 HEYktlQpnGE,2010.0,10,10,2015,Rubber,Provoking the Tire,tt1612774 rrzV0FvYypE,2010.0,8,10,2015,Rubber,The Kid Was Right,tt1612774 ae6HngmeUq0,2010.0,7,10,2015,Rubber,Everything Is Fake,tt1612774 uB4qHneHB1E,2010.0,3,10,2015,Rubber,Boom Goes the Bunny,tt1612774 Ats9HUDVBxE,2010.0,2,10,2015,Rubber,Psychokinetic Tire,tt1612774 ej_hfok3bEc,2011.0,6,11,2015,Hobo with a Shotgun,One Shell at a Time,tt1640459 1k1r2zFnwQc,2011.0,9,11,2015,Hobo with a Shotgun,You Are the Future,tt1640459 mp_oRA5-HLM,2011.0,8,11,2015,Hobo with a Shotgun,Fix This Girl,tt1640459 LNqOTIBKycE,2011.0,11,11,2015,Hobo with a Shotgun,The Hobo's Last Stand,tt1640459 0vXx2vS4iC0,2011.0,10,11,2015,Hobo with a Shotgun,You Gotta Get a Shotgun,tt1640459 cZZJMc6QPR4,2011.0,7,11,2015,Hobo with a Shotgun,Gonna Wash This Blood Off With Your Blood,tt1640459 4WizLeIdckw,2011.0,5,11,2015,Hobo with a Shotgun,I'm Gonna Sleep in Your Bloody Carcasses!,tt1640459 hRBkyOT8ZPk,2011.0,4,11,2015,Hobo with a Shotgun,You Earned Your Money Today,tt1640459 07rlBwvlBDk,2011.0,2,11,2015,Hobo with a Shotgun,Every Day Is Garbage Day,tt1640459 cKe4qiOYFyM,2011.0,1,11,2015,Hobo with a Shotgun,Mercy Ain't My Style,tt1640459 rtQQwsPJeBY,2011.0,3,11,2015,Hobo with a Shotgun,The Bear Is a Solitary Animal,tt1640459 fxYkJbBKxZE,1976.0,1,12,2015,Carrie,Gets Her Period,tt0074285 12wHDwNXBL0,1976.0,2,12,2015,Carrie,You're a Woman Now,tt0074285 v-WZINgHnFQ,1976.0,3,12,2015,Carrie,Billy Slaughters a Pig,tt0074285 ZpX0rril7QA,1976.0,4,12,2015,Carrie,Pleads for Prom,tt0074285 IIBg9UQ_mMU,1976.0,10,12,2015,Carrie,Prom in Flames,tt0074285 XgBvOoE5uG0,1976.0,11,12,2015,Carrie,The Car Wreck,tt0074285 I7XHygPKbYI,1976.0,12,12,2015,Carrie,'s Mom,tt0074285 YOhPdUMzXjY,1976.0,9,12,2015,Carrie,Gets Angry,tt0074285 DJcTG-VnLrI,1976.0,8,12,2015,Carrie,Bucket of Blood,tt0074285 oDA4sUtM9B8,1976.0,7,12,2015,Carrie,Prom Queen,tt0074285 ImZ2LrvQcCY,1976.0,6,12,2015,Carrie,Dirty Pillows,tt0074285 I68rpTRe8CE,1976.0,5,12,2015,Carrie,'s Powers,tt0074285 8kssysjyPl0,2011.0,10,10,2015,God Bless America,American Superstarz,tt1912398 p1tcs_fTz8k,2011.0,8,10,2015,God Bless America,Fair and Balanced,tt1912398 wKbZcaU-83E,2011.0,9,10,2015,God Bless America,Firepower,tt1912398 rjsre1tcGWU,2011.0,7,10,2015,God Bless America,Alice Cooper,tt1912398 yaxDM67F72o,2011.0,6,10,2015,God Bless America,Target Practice.,tt1912398 V2NGM0LYqss,2011.0,5,10,2015,God Bless America,You Seem Gay,tt1912398 1ZA2qfP3oPc,2011.0,4,10,2015,God Bless America,Deserve to Die,tt1912398 yg0yDvEqfw4,2011.0,2,10,2015,God Bless America,TV Wasteland,tt1912398 Ix8Gxp7XlDs,2011.0,1,10,2015,God Bless America,I Hate My Neighbors,tt1912398 viSCkcVXoR4,2011.0,3,10,2015,God Bless America,Frank's Rant,tt1912398 uSYD6YSaKgQ,2008.0,10,10,2015,Bronson,the Artist,tt1172570 19qTZoeOEZg,2008.0,7,10,2015,Bronson,Captive Love,tt1172570 oEPNSzLHZ2w,2008.0,4,10,2015,Bronson,It's Huge,tt1172570 e9LJG1JcXDE,2008.0,3,10,2015,Bronson,When Murder Goes Wrong,tt1172570 1l30kkPQfJM,2008.0,9,10,2015,Bronson,Cup of Tea,tt1172570 7JOey0CIgMM,2008.0,8,10,2015,Bronson,Artwork,tt1172570 1idxZC0VSxE,2008.0,5,10,2015,Bronson,Hottest Ticket in Town,tt1172570 AYWEjOf5pBM,2008.0,2,10,2015,Bronson,Britain's Most Violent Prisoner,tt1172570 S_FAk6ykdvw,2008.0,1,10,2015,Bronson,History of Violence,tt1172570 afifn22_IR0,2008.0,6,10,2015,Bronson,A Ring for Alison,tt1172570 MLZ4KzVPlHM,2010.0,7,12,2015,All Good Things,I'm Not That Person,tt1175709 fWallK7KgrY,2010.0,9,12,2015,All Good Things,I Don't Know You at All,tt1175709 XF-736UPy0k,2010.0,10,12,2015,All Good Things,Your Card Was Declined,tt1175709 lOwjq5Cuo-w,2010.0,12,12,2015,All Good Things,I Am Mute,tt1175709 WCDmhXz9Gsc,2010.0,8,12,2015,All Good Things,Party Pooper,tt1175709 sTWdAdhTfYw,2010.0,6,12,2015,All Good Things,Not Now or Not Ever?,tt1175709 09-K2ec8lyc,2010.0,11,12,2015,All Good Things,Searching the Office,tt1175709 xV-Sj_rjJjE,2010.0,5,12,2015,All Good Things,The New Apartment,tt1175709 srJAamXGepU,2010.0,4,12,2015,All Good Things,A Father's Disapproval,tt1175709 I7NtDM6eJq0,2010.0,3,12,2015,All Good Things,Two Different Families,tt1175709 dw9seHSkfw8,2010.0,2,12,2015,All Good Things,She's Never Going to Be One of Us,tt1175709 TLhaRe7Wvww,2010.0,1,12,2015,All Good Things,You Smell Good,tt1175709 nAZi4yusqlk,2005.0,10,12,2015,The Matador,Burnt Out,tt0365485 kpzlCDIwzEk,2005.0,2,12,2015,The Matador,Still Horny?,tt0365485 V2j_JLlNU-I,2005.0,11,12,2015,The Matador,One More Job,tt0365485 RY_kXET2cyc,2005.0,9,12,2015,The Matador,Do You Think He's Dangerous?,tt0365485 gbbnGtoH37o,2005.0,8,12,2015,The Matador,Freezing on the Job,tt0365485 qCG-yxYUgJU,2005.0,7,12,2015,The Matador,The Real Deal,tt0365485 Ks2OUiW2_QI,2005.0,6,12,2015,The Matador,The Gotta Pee Theory,tt0365485 aTJiK1i4iEQ,2005.0,5,12,2015,The Matador,A Facilitator of Fatalities,tt0365485 tyoB7bjdzgE,2005.0,3,12,2015,The Matador,Margaritas Always Taste Better in Mexico,tt0365485 8pvAI1uDW9U,2005.0,1,12,2015,The Matador,Denver Hit,tt0365485 OBuai_Vg6BQ,2005.0,12,12,2015,The Matador,A Day at the Races,tt0365485 MeY7MlJJOdo,2005.0,4,12,2015,The Matador,Garbageman,tt0365485 EEF7cXH7BWo,2013.0,9,10,2015,R.I.P.D.,Staff of Jericho Shootout,tt0790736 Bl6eouVUsCI,2013.0,5,10,2015,R.I.P.D.,Let's Do This,tt0790736 bNg1XX5ofhw,2013.0,2,10,2015,R.I.P.D.,Join the,tt0790736 MhMqjcT7frc,2013.0,7,10,2015,R.I.P.D.,Old West Fighting,tt0790736 YXQ11lY6v7E,2013.0,6,10,2015,R.I.P.D.,Robbing the,tt0790736 czU3M9Ye268,2013.0,3,10,2015,R.I.P.D.,Meet Your New Partner,tt0790736 fEocj1eLsmg,2013.0,4,10,2015,R.I.P.D.,That's a Deado,tt0790736 a_i-mCZH5bo,2013.0,10,10,2015,R.I.P.D.,I Have a New Partner,tt0790736 rZlzxsrv4ow,2013.0,1,10,2015,R.I.P.D.,Nick Walker's Worst Day,tt0790736 5evtdZtPixQ,2013.0,8,10,2015,R.I.P.D.,Deados On Wheels,tt0790736 6UKeesKIuZA,2005.0,9,12,2015,Hoodwinked!,The Goody Bandit,tt0443536 uiuioAkuDro,2005.0,11,12,2015,Hoodwinked!,A Bad Bunny,tt0443536 zVw5a4OjcIE,2005.0,10,12,2015,Hoodwinked!,Twitchy on Coffee,tt0443536 gGmzT-Km9-4,2005.0,7,12,2015,Hoodwinked!,Xtreme Granny,tt0443536 tzybulrxn3g,2005.0,5,12,2015,Hoodwinked!,Dynamite Candles,tt0443536 WT1ae3uyKmI,2005.0,3,12,2015,Hoodwinked!,The Big Bad Wolf,tt0443536 yclP414CLEM,2005.0,1,12,2015,Hoodwinked!,Red Riding Hood,tt0443536 mmOGHo7MYK0,2005.0,2,12,2015,Hoodwinked!,Great Big World,tt0443536 HUIP208nZZs,2005.0,4,12,2015,Hoodwinked!,Be Prepared,tt0443536 -rHnyOJuB0w,2005.0,6,12,2015,Hoodwinked!,Schnitzel Song,tt0443536 V9hO8rmmaXc,2005.0,8,12,2015,Hoodwinked!,Red Is Blue,tt0443536 JG7S1-DC_KY,2005.0,12,12,2015,Hoodwinked!,Top of the Woods,tt0443536 HFWG8MMnr3Q,2005.0,10,10,2015,Feast,Monster Mash,tt0426459 qv-kBgAcyUA,2005.0,9,10,2015,Feast,Barrel Escape,tt0426459 z2y29L0uG-U,2005.0,8,10,2015,Feast,Heroine 2,tt0426459 9sngqjpu920,2005.0,7,10,2015,Feast,Bozo's Mistake,tt0426459 z_gsKwtCy4I,2005.0,6,10,2015,Feast,Human Bomb,tt0426459 CkgFvisOr_o,2005.0,5,10,2015,Feast,My Eye!,tt0426459 FEEIJNnfoVI,2005.0,4,10,2015,Feast,Roadkill Revenge,tt0426459 gt3ntYidpvs,2005.0,3,10,2015,Feast,Monster Sex,tt0426459 VtW2yWZHaO4,2005.0,2,10,2015,Feast,Vomit Attack,tt0426459 OF-1RqeBf7w,2005.0,1,10,2015,Feast,Run Amok,tt0426459 frFwwg5GJ4A,2006.0,10,11,2015,School for Scoundrels,Love Letter,tt0462519 8V18ashYdDM,2006.0,9,11,2015,School for Scoundrels,Tennis with Dennis,tt0462519 gJGMeacAmec,2006.0,11,11,2015,School for Scoundrels,Lonnie,tt0462519 A0mUARG3EzE,2006.0,6,11,2015,School for Scoundrels,Paintball,tt0462519 VvcANYZCseI,2006.0,3,11,2015,School for Scoundrels,Dr. P,tt0462519 ZTo-aIIxihc,2006.0,2,11,2015,School for Scoundrels,Are You a Loser?,tt0462519 NnxqVjeZzZw,2006.0,1,11,2015,School for Scoundrels,Amanda & Becky,tt0462519 FAaogkawcOk,2006.0,5,11,2015,School for Scoundrels,Swirly,tt0462519 5BkF6NzmHTQ,2006.0,8,11,2015,School for Scoundrels,From the Bar to the Bed,tt0462519 2PdWkXbnArk,2006.0,4,11,2015,School for Scoundrels,Initiate Confrontation,tt0462519 fqDTy6JWcqE,2006.0,7,11,2015,School for Scoundrels,No More Mister Nice Guy,tt0462519 ih2vstLiKps,2007.0,11,11,2015,The Nanny Diaries,Nanny Cam,tt0489237 xsnWRnOdpS4,2007.0,7,11,2015,The Nanny Diaries,Pizza Date,tt0489237 MSIKLnc1CSQ,2007.0,5,11,2015,The Nanny Diaries,Museum of Natural History,tt0489237 Pr6lspmWBQs,2007.0,4,11,2015,The Nanny Diaries,Harvard Hottie,tt0489237 rMlkN-7GRDw,2007.0,3,11,2015,The Nanny Diaries,The Nanny Rules,tt0489237 CpdolY2GNYI,2007.0,2,11,2015,The Nanny Diaries,Mrs. X,tt0489237 QznOO8Oo0Aw,2007.0,10,11,2015,The Nanny Diaries,Nanny Don't Go!,tt0489237 42YiyEjitsI,2007.0,1,11,2015,The Nanny Diaries,Who is Annie Braddock?,tt0489237 9sAv5P29YIY,2007.0,8,11,2015,The Nanny Diaries,A Kiss to End the Night,tt0489237 QkL9783wNOE,2007.0,9,11,2015,The Nanny Diaries,Wish Upon a Star,tt0489237 hBXcQhkyRE4,2007.0,6,11,2015,The Nanny Diaries,Type A Pigs,tt0489237 v8pFeR0jO38,2013.0,5,10,2015,Rush,The Formula One Season Begins,tt1979320 3smxtEacf40,2013.0,3,10,2015,Rush,Lauda's First Victory,tt1979320 FDDEVXimR2I,2013.0,10,10,2015,Rush,Lauda's Return,tt1979320 o0lDxz0-Ukg,2013.0,9,10,2015,Rush,You Don't Need a Face to Drive,tt1979320 iH0GlpUQYJY,2013.0,8,10,2015,Rush,Lauda's Crash,tt1979320 KrIUn0qTaCE,2013.0,7,10,2015,Rush,The Risk is More,tt1979320 6f24cpQ_Q3k,2013.0,6,10,2015,Rush,You're Just Who You Are,tt1979320 vXrH5Nk8r0U,2013.0,4,10,2015,Rush,To Be a Champion,tt1979320 DdG74P7j6h8,2013.0,2,10,2015,Rush,Why Would I Drive Fast?,tt1979320 EBu1PyU04FE,2013.0,1,10,2015,Rush,The Start of a Rivalry,tt1979320 BgfcwELYxUA,2007.0,2,9,2015,The Mist,Tentacle Attack,tt0884328 OH1mI4-LqHs,2007.0,6,9,2015,The Mist,Human Sacrifice,tt0884328 858FWgtLMZU,2007.0,4,9,2015,The Mist,The Birds and the Bugs,tt0884328 AhaulXxlqCQ,2007.0,9,9,2015,The Mist,The Colossal Beast,tt0884328 kjJUffVZtDs,2007.0,3,9,2015,The Mist,I Believe in God Too,tt0884328 GsbHL_lQy44,2007.0,7,9,2015,The Mist,I Killed Her,tt0884328 EEPTRC2OP4w,2007.0,5,9,2015,The Mist,Spiders,tt0884328 fy9XNAkyfoc,2007.0,8,9,2015,The Mist,Making the Escape,tt0884328 CRnadHP5JOo,2007.0,1,9,2015,The Mist,Arrives,tt0884328 yIj06I32Gao,2007.0,2,11,2015,The Great Debaters,The Hot Spot,tt0427309 k95b72QHu60,2007.0,3,11,2015,The Great Debaters,Chosen for the Team,tt0427309 xsrkNeInaiw,2007.0,11,11,2015,The Great Debaters,Who's the Judge?,tt0427309 aVv3r2pUtFo,2007.0,10,11,2015,The Great Debaters,Empty Debate Hall,tt0427309 YmoTJu2iOfc,2007.0,7,11,2015,The Great Debaters,The Time for Justice,tt0427309 XhrT25xehqs,2007.0,6,11,2015,The Great Debaters,Quinn Debate,tt0427309 HEB1OaFSaRg,2007.0,4,11,2015,The Great Debaters,Who's Your Opponent?,tt0427309 _yotZXdH09k,2007.0,8,11,2015,The Great Debaters,Jesus Was a Radical,tt0427309 z0MOAFFBXEM,2007.0,9,11,2015,The Great Debaters,Midnight Lynching,tt0427309 fNNMKJ1f9JM,2007.0,1,11,2015,The Great Debaters,Revolution,tt0427309 YaSPWpKQzKE,2007.0,5,11,2015,The Great Debaters,Tell Us About Your Father,tt0427309 iKn6FEEToy4,2007.0,7,8,2015,Sicko,Going to Guantanamo Bay,tt0386032 dLgbWZYjYfU,2007.0,6,8,2015,Sicko,Dumping Patients,tt0386032 ifPpI0fXMlw,2007.0,5,8,2015,Sicko,Power and Control,tt0386032 PWjl2vignic,2007.0,4,8,2015,Sicko,Healthcare in Canada,tt0386032 QtJwMKMz6-M,2007.0,1,8,2015,Sicko,Pre-Existing Conditions,tt0386032 PA3kETvUXJg,2007.0,2,8,2015,Sicko,The Finest Healthcare in the World,tt0386032 2GSGR3yaFss,2007.0,3,8,2015,Sicko,Socialized Medicine,tt0386032 irNr2fMIvTQ,2007.0,8,8,2015,Sicko,Cuban Healthcare,tt0386032 iX5_-FORI1I,2007.0,4,9,2015,I'm Not There,Press Conference,tt0368794 7NjHdqTSahU,2007.0,6,9,2015,I'm Not There,Seven Simple Rules for Life in Hiding,tt0368794 0H0br7XdsYY,2007.0,5,9,2015,I'm Not There,Allen Ginsberg,tt0368794 F_NkBmFzs4s,2007.0,1,9,2015,I'm Not There,Jack Rollins Troubadour of Conscience,tt0368794 c4S5JKBUYHs,2007.0,3,9,2015,I'm Not There,Newport '65,tt0368794 3HtWFx3oHTo,2007.0,7,9,2015,I'm Not There,Goin' to Acapulco,tt0368794 pNo2v1jE8R4,2007.0,8,9,2015,I'm Not There,Pressing On,tt0368794 F2r8a3juyr0,2007.0,9,9,2015,I'm Not There,Mr. Tambourine Man,tt0368794 j9JfUXYQY2s,2007.0,2,9,2015,I'm Not There,I Want You,tt0368794 jbXNiAQHn_A,2007.0,3,10,2015,Hannibal Rising,The Student and the Master,tt0367959 WVE-c9ghcww,2007.0,10,10,2015,Hannibal Rising,Look at the Children,tt0367959 sKnZBUh-Lx4,2007.0,9,10,2015,Hannibal Rising,Vladis Grutas,tt0367959 iMIWQRhrAmU,2007.0,8,10,2015,Hannibal Rising,Cadaver Tank,tt0367959 5Ji_OS5Q17s,2007.0,7,10,2015,Hannibal Rising,Lecter's Laboratory,tt0367959 Z8GFmshpZ0I,2007.0,6,10,2015,Hannibal Rising,Where Are the Others?,tt0367959 uMp_5iP13r0,2007.0,5,10,2015,Hannibal Rising,A Crime of Passion,tt0367959 N7FKW_RLs3c,2007.0,4,10,2015,Hannibal Rising,Slicing the Butcher,tt0367959 D-NH8NiKb54,2007.0,1,10,2015,Hannibal Rising,Casualties of War,tt0367959 rKfcW5cTU6o,2007.0,2,10,2015,Hannibal Rising,We Eat or Die,tt0367959 FCMMjNlNSuc,2012.0,9,10,2015,The Place Beyond the Pines,Leave That Boy Alone,tt1817273 Uv4Wpz-N9Gc,2012.0,10,10,2015,The Place Beyond the Pines,His Father's Killer,tt1817273 bHMka69DJZ4,2012.0,8,10,2015,The Place Beyond the Pines,They're Gonna Tear You in Half,tt1817273 rry383W_mJU,2012.0,7,10,2015,The Place Beyond the Pines,Do You Think About the Shooting?,tt1817273 zS6OX5d-ZYM,2012.0,5,10,2015,The Place Beyond the Pines,Suspect on Motorcycle,tt1817273 qs0Fyp2bqsA,2012.0,6,10,2015,The Place Beyond the Pines,Shots Fired,tt1817273 EF2WHYOjGhE,2012.0,4,10,2015,The Place Beyond the Pines,You're Crazy,tt1817273 tCLO2N6IqJc,2012.0,3,10,2015,The Place Beyond the Pines,His First Ice Cream,tt1817273 90vUFwUp6mw,2012.0,2,10,2015,The Place Beyond the Pines,The First Bank Robbery,tt1817273 qc1k6uf-Mbg,2012.0,1,10,2015,The Place Beyond the Pines,Anything You Want to Tell Me?,tt1817273 w9WoH1MlgvE,2007.0,8,10,2015,Halloween,Big Joe Grizzly,tt0373883 20gzgK-Z5Yw,2007.0,1,10,2015,Halloween,Bathroom Bully,tt0373883 YLID2odh-WA,2007.0,4,10,2015,Halloween,Late Night Snack,tt0373883 lpgQU4piAYw,2007.0,2,10,2015,Halloween,First Kill,tt0373883 BRHFpsNB1PI,2007.0,3,10,2015,Halloween,Happy,tt0373883 GnRb5AHOcuc,2007.0,5,10,2015,Halloween,Michael Kills Judith,tt0373883 hwN_h9eiy_0,2007.0,6,10,2015,Halloween,Look at My Mask,tt0373883 gJDosSrvlJ8,2007.0,7,10,2015,Halloween,Considering Shock Treatment,tt0373883 5yCSPi05MyA,2007.0,10,10,2015,Halloween,Leave my Baby Alone!,tt0373883 ys16MvJ2XVU,2007.0,9,10,2015,Halloween,Get Me Another Beer,tt0373883 QfS7XUWUgL0,2007.0,2,12,2015,Diary of the Dead,The Mummy Shambles,tt0848557 dEgTjVHmjdc,2007.0,7,12,2015,Diary of the Dead,Too Easy to Use,tt0848557 AUDCrt3eXyc,2007.0,11,12,2015,Diary of the Dead,Family Reunion,tt0848557 Jb0_V7JCbbk,2007.0,12,12,2015,Diary of the Dead,All That's Left Is to Record,tt0848557 eurjNgZtg-g,2007.0,10,12,2015,Diary of the Dead,Warehouse Showdown,tt0848557 boaKhP_0KwA,2007.0,9,12,2015,Diary of the Dead,Scythe Sacrifice,tt0848557 q3CTxWUxHUg,2007.0,8,12,2015,Diary of the Dead,Amish Zombie Killer,tt0848557 3-16Bov2JfQ,2007.0,6,12,2015,Diary of the Dead,See How It Feels?,tt0848557 -s0ov88pD0s,2007.0,5,12,2015,Diary of the Dead,"Dead Doctor, Dead Nurse",tt0848557 FuzefcAKLmY,2007.0,4,12,2015,Diary of the Dead,Zombie State Trooper,tt0848557 iL1JlXnbnt0,2007.0,3,12,2015,Diary of the Dead,The Women's Dorm,tt0848557 elng_KRvuqY,2007.0,1,12,2015,Diary of the Dead,I Thought They Were Dead,tt0848557 ani6MlnXj2g,2007.0,1,12,2015,Control,No Love Lost,tt0421082 nBnICWrKboM,2007.0,3,12,2015,Control,Telling Off Tony,tt0421082 WbsZeLsYgGI,2007.0,4,12,2015,Control,Television Transmission,tt0421082 Nus1mepMrDc,2007.0,5,12,2015,Control,She's Lost,tt0421082 RP941IJJEx4,2007.0,9,12,2015,Control,Isolation,tt0421082 qFbjSxE1xzU,2007.0,10,12,2015,Control,Epileptic Seizure,tt0421082 JDC1IK7TWZA,2007.0,11,12,2015,Control,No,tt0421082 IK5-KZnzxwA,2007.0,6,12,2015,Control,Candidate,tt0421082 IixTpVt9Enw,2007.0,7,12,2015,Control,Pure Sex,tt0421082 s6WV534Sfss,2007.0,8,12,2015,Control,Love Will Tear Us Apart,tt0421082 yM7iQ_plcpA,2007.0,12,12,2015,Control,Disorder,tt0421082 0dsEkpDiwBQ,2007.0,2,12,2015,Control,Warsaw Performance,tt0421082 nXmtkGrPEuU,2013.0,10,10,2015,Dallas Buyers Club,You're the Drug Dealer,tt0790636 1p8KG7IdzPM,2013.0,9,10,2015,Dallas Buyers Club,I Sold My Life Insurance Policy,tt0790636 jKGudyrV0v4,2013.0,8,10,2015,Dallas Buyers Club,I Say What Goes in My Body,tt0790636 SqpBUHMR99M,2013.0,7,10,2015,Dallas Buyers Club,Shake His Hand,tt0790636 Vt-VF8GzQvU,2013.0,6,10,2015,Dallas Buyers Club,"I've Been Looking for You, Lone Star",tt0790636 SrbO1c8QBSg,2013.0,5,10,2015,Dallas Buyers Club,You Could Be Thrown in Jail,tt0790636 Aqo9z6lp4GY,2013.0,4,10,2015,Dallas Buyers Club,I'm Rayon,tt0790636 73b7dIqGdUg,2013.0,3,10,2015,Dallas Buyers Club,I Don't Want No Trouble,tt0790636 WpZ4kY3AJWU,2013.0,2,10,2015,Dallas Buyers Club,Screw the FDA,tt0790636 X32pSJrgF3Q,2013.0,1,10,2015,Dallas Buyers Club,You Tested Positive for HIV,tt0790636 e6E5v6jLGpM,2007.0,10,10,2015,Cassandra's Dream,We Broke God's Law,tt0795493 STKWsvhZSjc,2007.0,8,10,2015,Cassandra's Dream,Committing Murder,tt0795493 haN_gCgewXQ,2007.0,7,10,2015,Cassandra's Dream,Close Call,tt0795493 PXetdfRsmwk,2007.0,6,10,2015,Cassandra's Dream,Would You Sleep With a Director?,tt0795493 EfT-5v5YIt4,2007.0,5,10,2015,Cassandra's Dream,Blood Is Blood,tt0795493 YwqlCZ5mCdg,2007.0,4,10,2015,Cassandra's Dream,Real Trouble,tt0795493 dlhTO_Pqq9s,2007.0,2,10,2015,Cassandra's Dream,Roadside Assistance,tt0795493 qAZcl9BFd38,2007.0,1,10,2015,Cassandra's Dream,She's a Beauty,tt0795493 AQUEnmFhk7s,2007.0,3,10,2015,Cassandra's Dream,Erotic Tension,tt0795493 -CyRDSP_b5U,2007.0,9,10,2015,Cassandra's Dream,Worried About Terry,tt0795493 CR8tgmpmgIk,2007.0,11,12,2015,1408,Trapped,tt0450385 HuSM3bZf0R4,2007.0,10,12,2015,1408,Swept Away,tt0450385 RL6JZfQq_qI,2007.0,9,12,2015,1408,Frozen With Fear,tt0450385 -IZLCY2_esQ,2007.0,8,12,2015,1408,No Escape,tt0450385 8BNvCu2iqmM,2007.0,7,12,2015,1408,On the Ledge,tt0450385 yeMemdNO_2Y,2007.0,6,12,2015,1408,Call for Help,tt0450385 dEHht_iK6qY,2007.0,5,12,2015,1408,Nobody Lasts More Than an Hour,tt0450385 xK_P_l75a7Y,2007.0,4,12,2015,1408,Just a Room,tt0450385 lM8xJqeAEGI,2007.0,3,12,2015,1408,Don't Do This,tt0450385 4MyVJn56UFY,2007.0,1,12,2015,1408,Book Signing,tt0450385 CaGEzKJKMTs,2007.0,12,12,2015,1408,Go to Hell,tt0450385 --b-8xt2PeE,2007.0,2,12,2015,1408,56 Deaths,tt0450385 9knEvoHQfEw,2009.0,7,10,2015,Nowhere Boy,Meet George,tt1266029 9FqZ2BMv_RU,2009.0,9,10,2015,Nowhere Boy,In Spite of All the Danger,tt1266029 N5L2PXUdQg0,2009.0,8,10,2015,Nowhere Boy,"Where's Daddy, Mommy?",tt1266029 a1YFvMDu0M8,2009.0,4,10,2015,Nowhere Boy,The Quarrymen,tt1266029 x_9lcdX85Pg,2009.0,5,10,2015,Nowhere Boy,Paul's Audition,tt1266029 NTGOA6lPP5w,2009.0,6,10,2015,Nowhere Boy,Buddy Holly Look,tt1266029 N6CNJBPPVyk,2009.0,3,10,2015,Nowhere Boy,Banjo Lesson,tt1266029 7Zx5tpFmv9M,2009.0,10,10,2015,Nowhere Boy,Off to Hamburg,tt1266029 -34RUyP-DH8,2009.0,2,10,2015,Nowhere Boy,I Put a Spell on You,tt1266029 G6tC5Mp9NVA,2009.0,1,10,2015,Nowhere Boy,Sex & Rock 'n' Roll,tt1266029 Gqbrt_dz_TQ,2008.0,9,11,2015,Zack and Miri Make a Porno,Swallow My Cappuccino!,tt1007028 uq4bRVYBdts,2008.0,7,11,2015,Zack and Miri Make a Porno,Bubbles,tt1007028 Cg5dSosn_fk,2008.0,6,11,2015,Zack and Miri Make a Porno,Auditions Today,tt1007028 zZab0Lq7_vU,2008.0,1,11,2015,Zack and Miri Make a Porno,Black Friday,tt1007028 QKq7tIL9aOQ,2008.0,8,11,2015,Zack and Miri Make a Porno,Star Whores,tt1007028 4iNd-1IPrGI,2008.0,11,11,2015,Zack and Miri Make a Porno,White Boy!,tt1007028 0zfQoHORIFc,2008.0,3,11,2015,Zack and Miri Make a Porno,Bobby Long,tt1007028 _IdlZCqJ8kk,2008.0,5,11,2015,Zack and Miri Make a Porno,Granny Panties,tt1007028 CpFUyd_7XIM,2008.0,4,11,2015,Zack and Miri Make a Porno,Glen Gary Ross,tt1007028 TPESLZ0sGak,2008.0,10,11,2015,Zack and Miri Make a Porno,Zack and Miri Do It,tt1007028 N-MWa0s5iFQ,2008.0,2,11,2015,Zack and Miri Make a Porno,Ten Year Reunion,tt1007028 6vjDZQtAKuc,2008.0,2,10,2015,The Reader,Reading,tt0976051 NzbdfpYUxNM,2008.0,3,10,2015,The Reader,The Odyssey,tt0976051 lVZNAyNWcgs,2008.0,4,10,2015,The Reader,Hanna on Trial,tt0976051 t3XiTgsmyZc,2008.0,7,10,2015,The Reader,I Wrote the Report,tt0976051 IjtqQ-ojgcU,2008.0,5,10,2015,The Reader,Morality and Law,tt0976051 RHasf1LEG3Y,2008.0,8,10,2015,The Reader,Books on Tape,tt0976051 wrRkC8RYqMI,2008.0,1,10,2015,The Reader,Watching Hanna,tt0976051 FmOvzaWdpXI,2008.0,6,10,2015,The Reader,Auschwitz Choices,tt0976051 1UOLqmhi3AE,2008.0,9,10,2015,The Reader,"You've Grown Up, Kid",tt0976051 ESkmmFHikgg,2008.0,10,10,2015,The Reader,An Organization for Literacy,tt0976051 GaNKOew-TLE,2008.0,11,11,2015,Killshot,Just Like Everybody Else,tt0443559 1nmWEA68h6U,2008.0,10,11,2015,Killshot,A Bullet for Carmen,tt0443559 I-wCCN3yowU,2008.0,9,11,2015,Killshot,The Chicken Man,tt0443559 jxID8oHnCW0,2008.0,8,11,2015,Killshot,Home Invasion,tt0443559 xHCQd9zv3ak,2008.0,7,11,2015,Killshot,No Loose Ends,tt0443559 oZnFQrIavwc,2008.0,5,11,2015,Killshot,A Double Feature,tt0443559 aTUTnjUBitc,2008.0,3,11,2015,Killshot,The Wrong Man,tt0443559 RKui0n6Z7cU,2008.0,2,11,2015,Killshot,I Shoot People,tt0443559 F1hMkfopHfc,2008.0,6,11,2015,Killshot,Jealous of Elvis,tt0443559 huCdZLvSyBI,2008.0,4,11,2015,Killshot,Ducks Don't Land in Trees,tt0443559 -HI25-gfvxE,2008.0,1,11,2015,Killshot,Blackbird,tt0443559 F4dOAIo0rrM,2009.0,6,12,2015,Youth in Revolt,Burning Down Berkeley,tt0403702 TAX4AOdqFD0,2009.0,9,12,2015,Youth in Revolt,I Want to Tickle Your Belly Button,tt0403702 wCHqch4ILBU,2009.0,12,12,2015,Youth in Revolt,You're My Francois,tt0403702 gBjC4SgMKDA,2009.0,11,12,2015,Youth in Revolt,Lake Mistake,tt0403702 xf3htc2iZ9Y,2009.0,8,12,2015,Youth in Revolt,Sleep Over,tt0403702 mEPcdSaEXEo,2009.0,5,12,2015,Youth in Revolt,Francois Dillinger,tt0403702 qmzYvuFtlM8,2009.0,2,12,2015,Youth in Revolt,Turned On Easily,tt0403702 h5Qri9_giqQ,2009.0,1,12,2015,Youth in Revolt,Life in Oakland,tt0403702 MfBr9ylnuX0,2009.0,10,12,2015,Youth in Revolt,Solidarity,tt0403702 y9d6Tblt1kE,2009.0,3,12,2015,Youth in Revolt,"Kiss Me, You Weenie",tt0403702 TUw1XgBLILA,2009.0,7,12,2015,Youth in Revolt,Sneaking In,tt0403702 hAnmYHMCkRQ,2009.0,4,12,2015,Youth in Revolt,Where's the Nova?,tt0403702 _j_ufc9wHmY,2013.0,7,10,2015,The Purge,Home Invasion,tt2184339 RyotYUKsVyw,2013.0,6,10,2015,The Purge,The Freaks Are Coming In,tt2184339 ZEfbID-2TlQ,2013.0,10,10,2015,The Purge,No More Killing Tonight,tt2184339 _qfIfbYkBUk,2013.0,9,10,2015,The Purge,Thank You for Your Sacrifice,tt2184339 l51fnzJxYUE,2013.0,8,10,2015,The Purge,James Fights Back,tt2184339 Zo70vB9nubo,2013.0,5,10,2015,The Purge,You Are Going to Die Tonight,tt2184339 QBMv724lzZI,2013.0,4,10,2015,The Purge,I'd Like to Have a Word,tt2184339 e3mwmwPhr08,2013.0,3,10,2015,The Purge,Please Just Let Us Purge,tt2184339 5tSi-wyuccs,2013.0,2,10,2015,The Purge,No One Was Helping,tt2184339 vbUTbqwKtEE,2013.0,1,10,2015,The Purge,Time for Lockdown,tt2184339 oHeh8nSghcE,2009.0,8,9,2015,The Road,The Coast,tt0898367 aDCXE4Np1OI,2009.0,6,9,2015,The Road,The Last Man Alive,tt0898367 OoSOmcTZ1ok,2009.0,3,9,2015,The Road,Her Final Gift,tt0898367 BgUQldQC440,2009.0,2,9,2015,The Road,First Kill,tt0898367 ByLhxX3WUxY,2009.0,9,9,2015,The Road,The Thief,tt0898367 WEP25kPtQCQ,2009.0,1,9,2015,The Road,God Never Spoke,tt0898367 qf2p-tkn7cE,2009.0,4,9,2015,The Road,Human Livestock,tt0898367 5EEMxJOxXr8,2009.0,5,9,2015,The Road,From Another World,tt0898367 0yKd37DXIVQ,2009.0,7,9,2015,The Road,Earthquake,tt0898367 heeS8J_KFt4,2011.0,10,10,2015,I Don't Know How She Does It,Things Have To Change,tt1742650 ccyYHEuCHKE,2011.0,9,10,2015,I Don't Know How She Does It,The Fight,tt1742650 As70qOtE3Cg,2011.0,8,10,2015,I Don't Know How She Does It,Jack And I Are Just Friend-ly,tt1742650 fcnYQxHinu0,2011.0,4,10,2015,I Don't Know How She Does It,Equality Between The Sexes,tt1742650 DX3oTDhDOXE,2011.0,6,10,2015,I Don't Know How She Does It,Juggling,tt1742650 jawZFND4Bfc,2011.0,5,10,2015,I Don't Know How She Does It,Lice,tt1742650 vfutImUbN7M,2011.0,7,10,2015,I Don't Know How She Does It,Momo Is Pregnant,tt1742650 97wa5FUtuG4,2011.0,2,10,2015,I Don't Know How She Does It,The List,tt1742650 ue_EAEC12X0,2011.0,1,10,2015,I Don't Know How She Does It,The Bake Sale,tt1742650 Xh-8LVuPArw,2011.0,3,10,2015,I Don't Know How She Does It,The Momsters,tt1742650 RlOcas4K61c,2008.0,1,12,2015,Vicky Cristina Barcelona,A Chance for Something Special,tt0497465 E5aXYsk787U,2008.0,2,12,2015,Vicky Cristina Barcelona,You Have to Seduce Me,tt0497465 Rd87CKvUHjU,2008.0,5,12,2015,Vicky Cristina Barcelona,Bedding Cristina,tt0497465 pTqtWm_DTKk,2008.0,6,12,2015,Vicky Cristina Barcelona,I Don't Trust Her,tt0497465 ga5qeKd7oxM,2008.0,7,12,2015,Vicky Cristina Barcelona,Speak English,tt0497465 nOpwufXdkIk,2008.0,8,12,2015,Vicky Cristina Barcelona,You Went Through My Luggage?,tt0497465 BtTX4ExS5sk,2008.0,9,12,2015,Vicky Cristina Barcelona,Photography,tt0497465 gNSs_gF1T_Q,2008.0,11,12,2015,Vicky Cristina Barcelona,Chronic Dissatisfaction,tt0497465 ElD6Vos6Jbk,2008.0,12,12,2015,Vicky Cristina Barcelona,I Can't Live Like This,tt0497465 bO7iMQGQjhY,2008.0,10,12,2015,Vicky Cristina Barcelona,Lust in the Darkroom,tt0497465 NnrweogniK0,2008.0,4,12,2015,Vicky Cristina Barcelona,Spanish Guitar,tt0497465 ntNMz754DEg,2008.0,3,12,2015,Vicky Cristina Barcelona,Hard to Please,tt0497465 -QOahlrO8Yo,2013.0,8,10,2015,Oblivion,The Drones Attack,tt1483013 --Jiv5iYqT8,2013.0,9,10,2015,Oblivion,Dream of Us,tt1483013 k2QekuUhgIM,2013.0,7,10,2015,Oblivion,Jack vs. Jack,tt1483013 Boq7rlWzVRI,2013.0,3,10,2015,Oblivion,I've Been Watching You,tt1483013 lxKvt5Z9Bok,2013.0,1,10,2015,Oblivion,Scav Attack,tt1483013 vUuAbRVVZwA,2013.0,4,10,2015,Oblivion,I'm Your Wife,tt1483013 GHKtN9jPK1w,2013.0,10,10,2015,Oblivion,How Can a Man Die Better?,tt1483013 nDBs6ywP9ZE,2013.0,2,10,2015,Oblivion,They're Firing on Survivors,tt1483013 7mGr4Uc7ebA,2013.0,5,10,2015,Oblivion,We Are Not An Effective Team,tt1483013 o1_U-Iem8fA,2013.0,6,10,2015,Oblivion,Are We Going to Die?,tt1483013 kk14nhuvBIM,2008.0,3,11,2015,Superhero Movie,Some Kind of Hero,tt0426592 SyNzTdVQIno,2008.0,2,11,2015,Superhero Movie,Science Fair Fracas,tt0426592 T2Qc-56h_J0,2008.0,1,11,2015,Superhero Movie,Animal Magnetism,tt0426592 vMUONm4ihP0,2008.0,5,11,2015,Superhero Movie,Superhero School,tt0426592 tw6zV9CtczA,2008.0,4,11,2015,Superhero Movie,I Believe in You,tt0426592 95SKqMz1Wdg,2008.0,6,11,2015,Superhero Movie,Flame On!,tt0426592 Xob7w4hR5Rw,2008.0,7,11,2015,Superhero Movie,The Hourglass,tt0426592 MpFrgOc9KLU,2008.0,8,11,2015,Superhero Movie,Be a Hero,tt0426592 gFb8e3uaeIg,2008.0,9,11,2015,Superhero Movie,"Hide, Seek, Piss",tt0426592 OhO7kPNJJn0,2008.0,11,11,2015,Superhero Movie,Crotch Bomb,tt0426592 R84dKkPAVpg,2008.0,10,11,2015,Superhero Movie,Romance and Farts,tt0426592 ZcD75L4QLrM,2006.0,5,10,2015,Scary Movie 4,Your Japanese Is Awful,tt0362120 STrE338cTBk,2006.0,10,10,2015,Scary Movie 4,Jumping the Couch,tt0362120 fzRk8ovZ06s,2006.0,9,10,2015,Scary Movie 4,See What Cindy Saw,tt0362120 iFm-KZgioX8,2006.0,8,10,2015,Scary Movie 4,Speech at the UN,tt0362120 L3VyRESBqek,2006.0,7,10,2015,Scary Movie 4,This Village Isn't What It Used to Be,tt0362120 1YmOfCZ3ZIM,2006.0,6,10,2015,Scary Movie 4,My Pet Duck,tt0362120 EzLXmzcs1Ho,2006.0,4,10,2015,Scary Movie 4,Million Dollar Cindy,tt0362120 vuR9pDhXPqk,2006.0,2,10,2015,Scary Movie 4,Viagra Overdose,tt0362120 HLnNY2KiQEQ,2006.0,1,10,2015,Scary Movie 4,Let the Game Begin,tt0362120 94cC4uVE_HI,2006.0,3,10,2015,Scary Movie 4,Brokeblack Mountain,tt0362120 S58poUaNwiw,2007.0,1,12,2015,Planet Terror,By the Balls,tt1077258 A1p4HnyG3Rs,2007.0,2,12,2015,Planet Terror,These Are My Friends,tt1077258 rgVm_KasYQc,2007.0,3,12,2015,Planet Terror,Road Kill,tt1077258 VuVAsd9jMjo,2007.0,4,12,2015,Planet Terror,I Have No Leg!,tt1077258 bMg6mfghJHw,2007.0,5,12,2015,Planet Terror,You'll Blow Your Own Face Off,tt1077258 6WGP7utz8uA,2007.0,6,12,2015,Planet Terror,Passion So Hot It Burned the Film,tt1077258 ILbPhe1Wg9U,2007.0,8,12,2015,Planet Terror,"Don't Taunt Me, Tramp",tt1077258 z7Zevt3riNc,2007.0,9,12,2015,Planet Terror,You Killed Bin Laden?,tt1077258 8fRq0mDBzi4,2007.0,12,12,2015,Planet Terror,Cherry Darling,tt1077258 YC-2vmyKkV4,2007.0,10,12,2015,Planet Terror,A One-Legged Stripper,tt1077258 XYiiAHc3CXQ,2007.0,11,12,2015,Planet Terror,Fully Loaded,tt1077258 TsyLQX9NH18,2007.0,7,12,2015,Planet Terror,Give Him All the Guns,tt1077258 _YfbSVO6nz4,2013.0,6,10,2015,Riddick,Made Any Last Wishes?,tt1411250 tuq5JMwWRSg,2013.0,10,10,2015,Riddick,Men vs. Monsters,tt1411250 dt38_iS6u64,2013.0,9,10,2015,Riddick,Takes On Diaz,tt1411250 hV9ArqfKqw0,2013.0,8,10,2015,Riddick,The Five Second Kill,tt1411250 jZYr6ALcDy4,2013.0,7,10,2015,Riddick,Not Me You Got to Worry About,tt1411250 cTOlg3u_fZk,2013.0,5,10,2015,Riddick,A Deal Gone Bad,tt1411250 mnEpL-H7pms,2013.0,4,10,2015,Riddick,Fair Trade,tt1411250 tjrB1BtTnB8,2013.0,3,10,2015,Riddick,Night Attack,tt1411250 f15ob_n_tfM,2013.0,2,10,2015,Riddick,Mud Demons,tt1411250 ifkFfWmEc_Q,2013.0,1,10,2015,Riddick,The Assassination,tt1411250 mILfbvj0xtk,2007.0,3,10,2015,Death Proof,Stuntman Mike,tt1028528 F37WD6OCu7s,2007.0,1,10,2015,Death Proof,The Thing,tt1028528 kWz4LQXH6bE,2007.0,5,10,2015,Death Proof,100%,tt1028528 tNGuXckF_sc,2007.0,6,10,2015,Death Proof,The Car Crash,tt1028528 xvOaMA9l4Sg,2007.0,8,10,2015,Death Proof,Ship's Mast,tt1028528 Mq0xthZjW-s,2007.0,9,10,2015,Death Proof,High-Speed Chase,tt1028528 ee6jqUkxkZs,2007.0,7,10,2015,Death Proof,Licking Her Feet,tt1028528 QBps5R-4JrY,2007.0,2,10,2015,Death Proof,Shots with Warren,tt1028528 aSZoCaL7HIo,2007.0,10,10,2015,Death Proof,Revenge,tt1028528 TIP0eokPc5c,2007.0,4,10,2015,Death Proof,Lap Dance,tt1028528 NUOag7luIOE,2002.0,4,12,2015,Undisputed,Aint' No Champ in Here But Me!,tt0281322 mv3qeSxmp68,2002.0,5,12,2015,Undisputed,You Wanna Hit Me?,tt0281322 _Nz64htsk9I,2002.0,6,12,2015,Undisputed,Everybody Gets Beaten,tt0281322 MmIk10arVaI,2002.0,7,12,2015,Undisputed,Everybody Wants a Piece of You,tt0281322 7xSB_efH2N0,2002.0,9,12,2015,Undisputed,The Prison Riot,tt0281322 5kopF-bCBC8,2002.0,10,12,2015,Undisputed,How Things Get Done,tt0281322 EqDntjV9GIY,2002.0,11,12,2015,Undisputed,R-E-S-P-E-C-K! RESPECK!,tt0281322 01tx72R0gP8,2002.0,2,12,2015,Undisputed,I'll Be the Champ 'Til I Quit,tt0281322 z67zZuCIL-s,2002.0,8,12,2015,Undisputed,What's In It For Me?,tt0281322 j85FRIQigrg,2002.0,12,12,2015,Undisputed,Final Fight,tt0281322 Z1N_U1c-fUo,2002.0,1,12,2015,Undisputed,Monroe vs. the Neo Nazi,tt0281322 fkC99C2w4-o,2002.0,3,12,2015,Undisputed,Iceman's Last Fight,tt0281322 coWFeBI9XoQ,1998.0,1,8,2015,The Prophecy II,Crawling Out of Hell,tt0118643 nZWo6dP2zVw,1998.0,2,8,2015,The Prophecy II,Killing the Prophet,tt0118643 KKiVFZcwx6g,1998.0,4,8,2015,The Prophecy II,Angels Hate Computers,tt0118643 SxCUyc_brKA,1998.0,5,8,2015,The Prophecy II,Suicidal Help,tt0118643 KvAVAKE_pRQ,1998.0,6,8,2015,The Prophecy II,Run Down by an Angel,tt0118643 QOWkXpnwlek,1998.0,7,8,2015,The Prophecy II,How Does This Work?,tt0118643 aumRE2Eq88o,1998.0,8,8,2015,The Prophecy II,Shooting an Angel,tt0118643 EMpPWRLRQZY,1998.0,3,8,2015,The Prophecy II,How Many Worlds Must Burn?,tt0118643 ESmtdvc5zk4,2000.0,1,8,2015,The Prophecy 3: The Ascent,God is Dead,tt0183678 WwzmDbzboQM,2000.0,2,8,2015,The Prophecy 3: The Ascent,Always Take The Heart,tt0183678 a51EYR5AeNk,2000.0,3,8,2015,The Prophecy 3: The Ascent,You're Not So Special,tt0183678 XL4aLIj7q9M,2000.0,4,8,2015,The Prophecy 3: The Ascent,The Next God,tt0183678 zMFxbMh7JYY,2000.0,5,8,2015,The Prophecy 3: The Ascent,Angels are Bulletproof,tt0183678 VRTb5eck250,2000.0,6,8,2015,The Prophecy 3: The Ascent,Ripping Out an Angel's Heart,tt0183678 Yk84fGy3q-8,2000.0,7,8,2015,The Prophecy 3: The Ascent,Genocide Happens,tt0183678 zdSMdOcyfOU,2000.0,8,8,2015,The Prophecy 3: The Ascent,God Kills,tt0183678 lOmeZW0N10k,2003.0,1,11,2015,Spy Kids 3D: Game Over,Private Detective Juni,tt5711820 grn62a_8fZ4,2003.0,2,11,2015,Spy Kids 3D: Game Over,Your Sister's Missing,tt5711820 QWepLWTflW8,2003.0,3,11,2015,Spy Kids 3D: Game Over,Are You With Us?,tt5711820 xGugDtX55CQ,2003.0,4,11,2015,Spy Kids 3D: Game Over,Battle in the Arena,tt5711820 eS47L5yU2k8,2003.0,5,11,2015,Spy Kids 3D: Game Over,Who Are You People?,tt5711820 UpiqcjnWZB8,2003.0,6,11,2015,Spy Kids 3D: Game Over,The Mega-Race,tt5711820 L4PPqiuDNK0,2003.0,7,11,2015,Spy Kids 3D: Game Over,Battle for Survival,tt5711820 aF_Ijr621tM,2003.0,8,11,2015,Spy Kids 3D: Game Over,The Guy,tt5711820 Rj9fUYRr81A,2003.0,9,11,2015,Spy Kids 3D: Game Over,The Deceiver,tt5711820 mFoZz6PG72k,2003.0,10,11,2015,Spy Kids 3D: Game Over,Game Over,tt5711820 oCHEAaCGj7k,2003.0,11,11,2015,Spy Kids 3D: Game Over,To Family,tt5711820 -9UJGi_b2UI,2001.0,1,11,2015,Iris,The Importance of Education,tt0280778 q-hS7nZ1Ok0,2001.0,2,11,2015,Iris,We Could Do This All the Time,tt0280778 TIQP5uv3D3Q,2001.0,3,11,2015,Iris,We All Worry About Going Mad,tt0280778 H02B31zvSKQ,2001.0,4,11,2015,Iris,A First-Class Mind,tt0280778 6NmCTA1AK54,2001.0,6,11,2015,Iris,It's Time We Made Love,tt0280778 usyxBVGLU74,2001.0,7,11,2015,Iris,I Wrote,tt0280778 q6nz3GR5Ano,2001.0,8,11,2015,Iris,Pages in the Wind,tt0280778 Y-4pm9C-jeE,2001.0,9,11,2015,Iris,A Lark in the Clear Air,tt0280778 -QiOCO5-ZPA,2001.0,11,11,2015,Iris,You Little Mouse,tt0280778 VSnBrgm2PM4,2001.0,5,11,2015,Iris,She Uses Them,tt0280778 9UZ8XOTp19c,2001.0,10,11,2015,Iris,You Are My World,tt0280778 Vz6AlIZAe2s,2000.0,1,8,2015,Hellraiser: Inferno,A Detective in Hell,tt0229440 nsyud-sEm-w,2000.0,2,8,2015,Hellraiser: Inferno,The Videotape of Suffering,tt0229440 8O06gqOG3fE,2000.0,3,8,2015,Hellraiser: Inferno,Cowboys and Demons,tt0229440 ePhMSnfYanI,2000.0,4,8,2015,Hellraiser: Inferno,A Hospital of Madness,tt0229440 IYmiSXEQ7ys,2000.0,5,8,2015,Hellraiser: Inferno,Pinhead Meets the Family,tt0229440 7lbPHodrgC4,2000.0,6,8,2015,Hellraiser: Inferno,Killer Parents,tt0229440 lI8p0rzq2R4,2000.0,7,8,2015,Hellraiser: Inferno,Dead Friends,tt0229440 2ad7SgwLNXo,2000.0,8,8,2015,Hellraiser: Inferno,Welcome to Hell,tt0229440 BHJ5KGh-Xnw,2013.0,10,10,2015,Kick-Ass 2,Heroes vs. Villains,tt1650554 cBzuWSSTTs0,2013.0,9,10,2015,Kick-Ass 2,Hit-Girl to the Rescue,tt1650554 PrzgybNYBs8,2013.0,8,10,2015,Kick-Ass 2,Mother Russia vs. Cops,tt1650554 OA-SQ7lCV2I,2013.0,7,10,2015,Kick-Ass 2,Colonel Stars and Stripes vs. Mother Russia,tt1650554 rny3UdYPDn0,2013.0,6,10,2015,Kick-Ass 2,The Sick Stick,tt1650554 w78NFd5q_0k,2013.0,5,10,2015,Kick-Ass 2,Try to Have Fun,tt1650554 H44YauhtGPU,2013.0,4,10,2015,Kick-Ass 2,Dance Audition,tt1650554 oAJYONuey_8,2013.0,3,10,2015,Kick-Ass 2,Justice Forever,tt1650554 dd_IWBNSKY0,2013.0,2,10,2015,Kick-Ass 2,Don't You Want to Belong?,tt1650554 b6X5bVMoCJc,2013.0,1,10,2015,Kick-Ass 2,We Should Be Partners,tt1650554 8OWCY47wOAI,1996.0,2,8,2015,Hellraiser IV: Bloodline,A Demon to Command,tt0116514 oLLfx_GN73I,1996.0,1,8,2015,Hellraiser IV: Bloodline,Unleashing Pinhead in Space,tt0116514 hF4ErLUEW9E,1996.0,6,8,2015,Hellraiser IV: Bloodline,I Am Pain,tt0116514 uzcyJ9sN98c,1996.0,7,8,2015,Hellraiser IV: Bloodline,Back to Hell,tt0116514 xN0R2xFmcYU,1996.0,4,8,2015,Hellraiser IV: Bloodline,You Like It Rough,tt0116514 S3HubCxt0hM,1996.0,8,8,2015,Hellraiser IV: Bloodline,The Death of Pinhead,tt0116514 Y-szf9FRi8M,1996.0,3,8,2015,Hellraiser IV: Bloodline,Demons Walk the Earth,tt0116514 qzkFTptrfbw,1996.0,5,8,2015,Hellraiser IV: Bloodline,The Return of Pinhead,tt0116514 6Wk1Sob8Quo,2000.0,1,11,2015,Hamlet,What a Piece of Work is a Man,tt0171359 BZjqqKqaw60,2000.0,2,11,2015,Hamlet,Frailty Thy Name is Woman,tt0171359 n13FhFrtu_8,2000.0,3,11,2015,Hamlet,To Thine Own Self Be True,tt0171359 D_84bHFra4s,2000.0,4,11,2015,Hamlet,Murder Most Foul,tt0171359 1Up-oGfiosE,2000.0,6,11,2015,Hamlet,To Be or Not To Be,tt0171359 EzxET3KpvSM,2000.0,7,11,2015,Hamlet,Get Thee to a Nunnery,tt0171359 oBfLI1WWrAI,2000.0,8,11,2015,Hamlet,The Mousetrap,tt0171359 pMrk3l8El24,2000.0,9,11,2015,Hamlet,What Hast Thou Done?,tt0171359 BOwOiWDD_SM,2000.0,10,11,2015,Hamlet,Where is Polonius?,tt0171359 0XjLzDVi03c,2000.0,11,11,2015,Hamlet,The Rest is Silence,tt0171359 kR8Xje2x0sA,2000.0,5,11,2015,Hamlet,Never Doubt My Love,tt0171359 b854qv-Z-ZQ,2005.0,1,9,2015,Cursed,The Beast Gets Becky,tt0312004 VH6D36VQ_uo,2005.0,2,9,2015,Cursed,A Midnight Snack,tt0312004 wRM5Flw2nXY,2005.0,3,9,2015,Cursed,Wolf in a Parking Garage,tt0312004 7AjmrbE-NTM,2005.0,4,9,2015,Cursed,From Dog to Werewolf,tt0312004 YG_z4RpxKWA,2005.0,7,9,2015,Cursed,A Ferocious Female,tt0312004 8Qklz6BqVxU,2005.0,5,9,2015,Cursed,Trapped in the Club,tt0312004 Mgf5jaQO9sQ,2005.0,8,9,2015,Cursed,The Werewolf With a Bony Ass,tt0312004 wqMPRiWvJEs,2005.0,6,9,2015,Cursed,The Werewolf Ex,tt0312004 -QyAhZv-o_U,2005.0,9,9,2015,Cursed,A Beast of a Boyfriend,tt0312004 i_FoR7ZV2EU,1986.0,2,8,2015,Operation Condor 2,A Violent Kidnapping,tt0091431 CatwTirgWZg,1986.0,3,8,2015,Operation Condor 2,Meeting the Kidnappers,tt0091431 lNla5rf4idU,1986.0,7,8,2015,Operation Condor 2,Playing With Dynamite,tt0091431 7WXKfXCiWW8,1986.0,4,8,2015,Operation Condor 2,An Explosive Chase,tt0091431 sXPBgnBxTFM,1986.0,5,8,2015,Operation Condor 2,A Room Full of Deadly Monks,tt0091431 G5qPGKpTzXU,1986.0,1,8,2015,Operation Condor 2,Stealing a Sword,tt0091431 Vhc7iBAAawA,1986.0,6,8,2015,Operation Condor 2,Four Female Assassins,tt0091431 qVzfIUAzda4,1986.0,8,8,2015,Operation Condor 2,Outtakes,tt0091431 gN1BjYlhKvc,2011.0,6,10,2015,Fast Five,Million Dollar Race,tt1596343 eFnw_27t9-o,2011.0,1,10,2015,Fast Five,Train Robbery,tt1596343 S8Vu6A9LW20,2011.0,2,10,2015,Fast Five,Over the Cliff,tt1596343 k2PsfXZ3wyY,2011.0,7,10,2015,Fast Five,Hobbs vs. Toretto,tt1596343 TIbZNmvyLBI,2011.0,5,10,2015,Fast Five,You're Under Arrest,tt1596343 xEAsC8A1Ins,2011.0,10,10,2015,Fast Five,The Bridge Showdown,tt1596343 vmm8P0V1W4g,2011.0,3,10,2015,Fast Five,Favela Chase,tt1596343 9aldDI2WF7g,2011.0,8,10,2015,Fast Five,Street Ambush,tt1596343 6w0F9xVXn_E,2011.0,4,10,2015,Fast Five,A Woman's Job,tt1596343 OurCnuyC8zo,2011.0,9,10,2015,Fast Five,Taking the Vault,tt1596343 8l7lDn2hUTw,1992.0,1,10,2015,Hellraiser III: Hell on Earth,Hellacious Power,tt0104409 b_FQEg7ScU0,1992.0,2,10,2015,Hellraiser III: Hell on Earth,Demonic Sacrifice,tt0104409 F0KcFyR2uAc,1992.0,3,10,2015,Hellraiser III: Hell on Earth,Pinhead Unchained,tt0104409 G21su-YdW5k,1992.0,4,10,2015,Hellraiser III: Hell on Earth,Pinhead's Origin,tt0104409 PPNHvoOU1kE,1992.0,5,10,2015,Hellraiser III: Hell on Earth,Club Dead,tt0104409 HehUdDtSt1U,1992.0,6,10,2015,Hellraiser III: Hell on Earth,Box of Lament,tt0104409 0W9jZQetuB0,1992.0,9,10,2015,Hellraiser III: Hell on Earth,Play With This,tt0104409 kmigfm9ZONk,1992.0,8,10,2015,Hellraiser III: Hell on Earth,Sacrilege,tt0104409 87YM78J6ebQ,1992.0,7,10,2015,Hellraiser III: Hell on Earth,Ready For Your Closeup,tt0104409 88UgHHl7W7A,1992.0,10,10,2015,Hellraiser III: Hell on Earth,Go to Hell!,tt0104409 YADVuSMFS2M,1972.0,8,8,2015,The Way of the Dragon,The Final Showdown,tt0068935 85WDSyWnTZg,1999.0,8,8,2015,Beowulf,The Demon Has a Mother,tt0120604 sUxkumq9UJY,1999.0,1,8,2015,Beowulf,vs. Everybody,tt0120604 -PWyO04IJYQ,1999.0,2,8,2015,Beowulf,Sleep When You're Dead,tt0120604 CCGpFb4lNgI,1999.0,6,8,2015,Beowulf,Taking the Devil's Arm,tt0120604 m8CkFFna7Ew,1999.0,4,8,2015,Beowulf,With All the Cool Ways to Die,tt0120604 BFaNTh5aqls,1999.0,3,8,2015,Beowulf,The Beast in the Darkness,tt0120604 0iwVPWstvGo,1999.0,5,8,2015,Beowulf,A Demon Named Grendel,tt0120604 tPkmKcc-LAM,1999.0,7,8,2015,Beowulf,Kill for Pleasure,tt0120604 N6mFvYxmiM8,1999.0,1,12,2015,An Ideal Husband,See You Tonight,tt0122541 aAMVebfAZ7I,1999.0,6,12,2015,An Ideal Husband,It is Not True,tt0122541 zD5BdMcO4yo,1999.0,11,12,2015,An Ideal Husband,I Love You,tt0122541 ZxcUzbEJx98,1999.0,2,12,2015,An Ideal Husband,The Game of Life,tt0122541 w4RGgEi7T8E,1999.0,3,12,2015,An Ideal Husband,You Should Go to Bed,tt0122541 -3upqhXz0nE,1999.0,4,12,2015,An Ideal Husband,Business or Pleasure?,tt0122541 zpFlShhUcIo,1999.0,5,12,2015,An Ideal Husband,Be as Trivial as You Can,tt0122541 XadVTfPZ6yc,1999.0,7,12,2015,An Ideal Husband,Love Cannot Be Bought,tt0122541 EYh8GOoyv-M,1999.0,9,12,2015,An Ideal Husband,Looking and Seeing,tt0122541 rVjV3FNsMtk,1999.0,12,12,2015,An Ideal Husband,The Truth is I Lied,tt0122541 t78EgRBYIh0,1999.0,10,12,2015,An Ideal Husband,The Usual Palm Tree,tt0122541 HMUnEpn0n9U,1999.0,8,12,2015,An Ideal Husband,Commerce Without Conscience,tt0122541 1ZpqDhQJhFA,1972.0,1,8,2015,The Way of the Dragon,Chinese Boxing,tt0068935 TEpJFWUw2ts,1972.0,2,8,2015,The Way of the Dragon,"Watch, You'll Learn Something",tt0068935 O5TE0yg-mEA,1972.0,3,8,2015,The Way of the Dragon,Tang Lung Fights Back,tt0068935 HysSQiXYjdE,1972.0,4,8,2015,The Way of the Dragon,A Master of Nunchucks,tt0068935 dp_aLWPZY8I,1972.0,5,8,2015,The Way of the Dragon,Friends and Enemies,tt0068935 sEycv_wZaIA,1972.0,6,8,2015,The Way of the Dragon,A Kung Fu Trap,tt0068935 0VJnFDz4VP0,1972.0,7,8,2015,The Way of the Dragon,The Masters of Martial Arts,tt0068935 5vvtNVnzxaA,2013.0,10,10,2015,Despicable Me 2,Battling the Minions,tt1690953 CZZEp8EaO6g,2013.0,9,10,2015,Despicable Me 2,The Purple Minion Attacks,tt1690953 JjSpGeBqJR8,2013.0,4,10,2015,Despicable Me 2,A Minion in Love,tt1690953 -kYzHmPDZwo,2013.0,1,10,2015,Despicable Me 2,The Most Magical Fairy Princess,tt1690953 93lz5IE7Z0c,1991.0,3,8,2015,Madonna: Truth or Dare,"He Loves Me, He Loves Me Not",tt0102370 scDWdIV7Fes,1991.0,7,8,2015,Madonna: Truth or Dare,Vogue,tt0102370 toT3JGFEwmw,1991.0,4,8,2015,Madonna: Truth or Dare,Like a Virgin,tt0102370 ujJJyIKIAjg,1991.0,5,8,2015,Madonna: Truth or Dare,Sandra Bernhard,tt0102370 KAVqLKDwSOo,1991.0,6,8,2015,Madonna: Truth or Dare,Antonio Banderas,tt0102370 t-JFogFsPHQ,1991.0,1,8,2015,Madonna: Truth or Dare,Express Yourself,tt0102370 s1Qz6N4-tEY,1991.0,2,8,2015,Madonna: Truth or Dare,Warren Beatty,tt0102370 cNKYmHmy9OQ,1991.0,8,8,2015,Madonna: Truth or Dare,Truth or Dare,tt0102370 2tzvi3Xp6sw,2013.0,8,10,2015,Despicable Me 2,Worst Date Ever,tt1690953 4H1Lc_JHF7I,2013.0,6,10,2015,Despicable Me 2,The Wig Shop,tt1690953 UsKSjKrIEq8,2013.0,3,10,2015,Despicable Me 2,Dr. Nefario Quits,tt1690953 QCJ_a5AYVEY,2013.0,7,10,2015,Despicable Me 2,Margo In Love,tt1690953 _uRGjnG3G3o,2013.0,2,10,2015,Despicable Me 2,Goodnight Girls,tt1690953 4lNoSUurdKc,2013.0,5,10,2015,Despicable Me 2,That Pollo is Loco,tt1690953 LpOc7D4G1TM,1994.0,3,8,2015,Highlander III,Releasing the Immortals,tt0110027 ifl_AGVJee8,1994.0,4,8,2015,Highlander III,You've Already Lost,tt0110027 LJq_hnR6CHc,1994.0,8,8,2015,Highlander III,The Death of Kane,tt0110027 _s5fgacYzjA,1994.0,1,8,2015,Highlander III,Burning the Village,tt0110027 kMRM-0GvaQk,1994.0,2,8,2015,Highlander III,Killing the Sorcerer,tt0110027 Tsi-yH9juC8,1994.0,7,8,2015,Highlander III,Confronting the Master of Illusion,tt0110027 CglQW97hCe0,1994.0,5,8,2015,Highlander III,The End of the Highlander's Sword,tt0110027 QxK_EsMjCQE,1994.0,6,8,2015,Highlander III,"Kidnap a Son, Arrest an Immortal",tt0110027 kCb1R69h92Q,1999.0,9,9,2015,Teaching Mrs. Tingle,Irony,tt0133046 EKdQ1jASEmw,1999.0,8,9,2015,Teaching Mrs. Tingle,A Fate Worse Than Death,tt0133046 hq-vTEalnj0,1999.0,5,9,2015,Teaching Mrs. Tingle,Under His Skin,tt0133046 YczVaT_czPE,1999.0,2,9,2015,Teaching Mrs. Tingle,Caught Cheating,tt0133046 2Y41IMoi1TU,1999.0,1,9,2015,Teaching Mrs. Tingle,The Terror of Mrs. Tingle,tt0133046 G1x0zmX-PEw,1999.0,3,9,2015,Teaching Mrs. Tingle,After School Lesson,tt0133046 prLok_8YD8w,1999.0,4,9,2015,Teaching Mrs. Tingle,Exorcism,tt0133046 -it68CFJkNg,1999.0,6,9,2015,Teaching Mrs. Tingle,Scandalous,tt0133046 P4fFh-wHWl0,1999.0,7,9,2015,Teaching Mrs. Tingle,Carnal Conquest,tt0133046 yHf9QshbQeE,2013.0,6,10,2015,Fast & Furious 6,Every Man Has a Code,tt1905041 -DF-MgSuhQ0,2013.0,5,10,2015,Fast & Furious 6,You Got a Death Wish?,tt1905041 4rwJ3BnGrl0,2013.0,3,10,2015,Fast & Furious 6,Anything Else You Need,tt1905041 nxWj-7FF4CI,2013.0,4,10,2015,Fast & Furious 6,Subway Fight,tt1905041 uzHwlt3dmmo,2013.0,7,10,2015,Fast & Furious 6,They Got a Tank,tt1905041 NGeFA2fWzX8,2013.0,8,10,2015,Fast & Furious 6,Dom Saves Letty,tt1905041 km3VtR6mqmg,2013.0,9,10,2015,Fast & Furious 6,Boarding the Plane,tt1905041 iz2ro0h_TmQ,2013.0,2,10,2015,Fast & Furious 6,Letty Returns,tt1905041 Atb5LNPuxyU,2013.0,10,10,2015,Fast & Furious 6,The End of Owen Shaw,tt1905041 Y92N7SFJ0Fo,2013.0,1,10,2015,Fast & Furious 6,Shaw's Escape,tt1905041 2Pkky-Dncw8,1998.0,7,7,2015,Phantoms,Killing the Evil,tt0120915 JYp5uIodwEE,1998.0,5,7,2015,Phantoms,Drawing Out the Creature,tt0120915 H843vNJgIaQ,1998.0,4,7,2015,Phantoms,Getting the Dart Gun,tt0120915 _vNaSVn6qSk,1998.0,3,7,2015,Phantoms,It's a Good Dog,tt0120915 RKn6FWvaVBM,1998.0,2,7,2015,Phantoms,Get Out of There!,tt0120915 2pVPaPFm5iI,1998.0,1,7,2015,Phantoms,What is That?,tt0120915 9I1aM1EQZ7o,1998.0,6,7,2015,Phantoms,Shotgun to the Head,tt0120915 Z0iCcI1Owys,2000.0,1,7,2015,Highlander: Endgame,Attacking the Sanctuary,tt0144964 AmAklov1ewQ,2000.0,2,7,2015,Highlander: Endgame,Paying the Toll,tt0144964 U89NOSQdgqo,2000.0,3,7,2015,Highlander: Endgame,Man of Honor,tt0144964 -iuSE7NVc8c,2000.0,4,7,2015,Highlander: Endgame,Take My Vengeance,tt0144964 DegHehO_nfc,2000.0,5,7,2015,Highlander: Endgame,The End of Connor MacLeod,tt0144964 16hnbNPCFBo,2000.0,6,7,2015,Highlander: Endgame,The Final Battle,tt0144964 _tYTcz52ZB8,2000.0,7,7,2015,Highlander: Endgame,There Can Be Only One,tt0144964 PGU_sBj_q5g,2001.0,6,7,2015,The Musketeer,Climbing the Tower,tt0246544 b5whTkIQ32c,2001.0,7,7,2015,The Musketeer,Confronting the Man in Black,tt0246544 5QGrgYkudfo,2001.0,5,7,2015,The Musketeer,Attacking the Castle,tt0246544 A1mYM5yA6oI,2001.0,4,7,2015,The Musketeer,Defending the Carriage,tt0246544 -e_vbnd9bV8,2001.0,3,7,2015,The Musketeer,Banquet Invasion,tt0246544 5eC6VCiJYq8,2001.0,2,7,2015,The Musketeer,Jail Rescue,tt0246544 0Ihq2_hNnX8,2001.0,1,7,2015,The Musketeer,Sword Fight in the Bar,tt0246544 XG-c6CmPo4k,2001.0,5,9,2015,Texas Rangers,I'm a Damn Blasted Shooter,tt0193560 nxvXYa6n0pY,2001.0,3,9,2015,Texas Rangers,Joining the,tt0193560 VGGxaRYEfO4,2001.0,1,9,2015,Texas Rangers,Town Massacre,tt0193560 qG-B9IzugQM,2001.0,2,9,2015,Texas Rangers,I Ain't No Preacher,tt0193560 rcjujixxfdY,2001.0,4,9,2015,Texas Rangers,The Betrayal,tt0193560 ALsbjcqNdRo,2001.0,6,9,2015,Texas Rangers,"No Prisoners, Rangers",tt0193560 6rAcjVEXvSg,2001.0,7,9,2015,Texas Rangers,She Was Eyeing Me,tt0193560 8jkM1zBTJIA,2001.0,8,9,2015,Texas Rangers,The Rangers vs. The Bandits,tt0193560 KYQELfxxAck,2001.0,9,9,2015,Texas Rangers,Lincoln Gets His Revenge,tt0193560 NrLSAjP5Ibw,2001.0,5,8,2015,Buffalo Soldiers,Wanna Go Out Friday Night?,tt0252299 jOf4crp-WVs,2001.0,7,8,2015,Buffalo Soldiers,Ready Aim Fire,tt0252299 UTEUIdcqSfo,2001.0,4,8,2015,Buffalo Soldiers,Makin' Nice,tt0252299 qlJ2951IShM,2001.0,2,8,2015,Buffalo Soldiers,Resplendent,tt0252299 tXDoydLr3YQ,2001.0,1,8,2015,Buffalo Soldiers,Fallin',tt0252299 _Q9JnjhXRyA,2001.0,3,8,2015,Buffalo Soldiers,Squashed a Beetle,tt0252299 pzeu5peH2n0,2001.0,6,8,2015,Buffalo Soldiers,Ecstasy,tt0252299 GBXYXp04Los,2001.0,8,8,2015,Buffalo Soldiers,High Dive,tt0252299 AWmHgNv0xUc,2002.0,9,10,2015,Halloween: Resurrection,Still Alive,tt0220506 T4Z1mnjLwiA,2002.0,5,10,2015,Halloween: Resurrection,Imposter,tt0220506 g-bxs_daoCI,2002.0,8,10,2015,Halloween: Resurrection,Stab and Deliver,tt0220506 I64nwvRliGY,2002.0,6,10,2015,Halloween: Resurrection,Impalement,tt0220506 TEq446woKOo,2002.0,7,10,2015,Halloween: Resurrection,Double Kill,tt0220506 VxwsEqiptwo,2002.0,10,10,2015,Halloween: Resurrection,Trick or Treat,tt0220506 oL8QGyo50_M,2002.0,1,10,2015,Halloween: Resurrection,I'll See You in Hell,tt0220506 qJkMktF_QUE,2002.0,2,10,2015,Halloween: Resurrection,First-Person Killer,tt0220506 bTrFBrULLmM,2002.0,3,10,2015,Halloween: Resurrection,Gotcha!,tt0220506 v-8bLcH0iD4,2002.0,4,10,2015,Halloween: Resurrection,Shattered Glass,tt0220506 MJBoXI6pVQ8,2002.0,1,8,2015,Full Frontal,You Are Hitler,tt0290212 dZt3TeTClV8,2002.0,2,8,2015,Full Frontal,Goebbels the A-Hole,tt0290212 Jg7LxmHGNd4,2002.0,3,8,2015,Full Frontal,The Limey,tt0290212 Ha-aaENx0Fg,2002.0,4,8,2015,Full Frontal,Love Letter,tt0290212 Euld6YN5liw,2002.0,5,8,2015,Full Frontal,40th Birthday Gift,tt0290212 bfzJMOBenVA,2002.0,6,8,2015,Full Frontal,On Set with David Fincher,tt0290212 S5-Beq8JVsw,2002.0,7,8,2015,Full Frontal,Happy Ending,tt0290212 GWL0Cj7bAf4,2002.0,8,8,2015,Full Frontal,Out of a Movie,tt0290212 bTx918Kpg30,2002.0,6,8,2015,Darkness,A Father's Rage,tt0282209 BXLhK4ra6tQ,2002.0,5,8,2015,Darkness,Grandfather is Evil,tt0282209 M8gGpyKPAFQ,2002.0,4,8,2015,Darkness,Ghosts On a Train,tt0282209 XGCcothBtRs,2002.0,8,8,2015,Darkness,Escaping the House,tt0282209 mIpX6PnT9UY,2002.0,3,8,2015,Darkness,Ghost Children,tt0282209 ytCAMgdi9sw,2002.0,2,8,2015,Darkness,You're Scaring Him,tt0282209 oLO_o48BejY,2002.0,7,8,2015,Darkness,Sacrificing the Father,tt0282209 Y3Y3HySArOU,2002.0,1,8,2015,Darkness,Panic Attack in the Car,tt0282209 79tBbaqvbjM,2010.0,9,9,2015,The Ghost Writer,Prime Minister Down,tt1139328 LmxUk-KxjoI,2010.0,5,9,2015,The Ghost Writer,Deeper Into the Woods,tt1139328 yCIgtidXAnQ,2010.0,7,9,2015,The Ghost Writer,In the Beginning,tt1139328 g6Hf6Wbk6B4,2010.0,4,9,2015,The Ghost Writer,A Formal Investigation,tt1139328 zD_yR7ixRmo,2010.0,3,9,2015,The Ghost Writer,For a Woman,tt1139328 HzLYedqOPIY,2010.0,2,9,2015,The Ghost Writer,The Triangle,tt1139328 jFEvKqbayIQ,2010.0,1,9,2015,The Ghost Writer,Selling Autobiographies,tt1139328 -x8fqJDLsu8,2010.0,6,9,2015,The Ghost Writer,Escaping The Ferry,tt1139328 ax59TmvzCEg,2010.0,8,9,2015,The Ghost Writer,A C.I.A. Handler,tt1139328 3GiWce_xXzA,2007.0,7,7,2015,The Lookout,Shotgun Blast,tt0427470 x2W8BqPt7mI,2007.0,6,7,2015,The Lookout,I Have the Power,tt0427470 xKffjQ-iU9E,2007.0,5,7,2015,The Lookout,Save Lewis,tt0427470 n3BgbwW6PXc,2007.0,1,7,2015,The Lookout,Luvlee,tt0427470 1tclZvb40QA,2007.0,2,7,2015,The Lookout,I Want to See You Naked,tt0427470 _nmYaR_ZllQ,2007.0,3,7,2015,The Lookout,A Simple Question,tt0427470 9AmyJhS8WWc,2007.0,4,7,2015,The Lookout,Deputy Donut,tt0427470 at0yN2HBrt8,1959.0,6,10,2015,Ben-Hur,The Valley of the Lepers,tt0052618 frE9rXnaHpE,1959.0,3,10,2015,Ben-Hur,The Chariot Race,tt0052618 k6TUgccyzNs,1959.0,1,10,2015,Ben-Hur,Parade of the Charioteers,tt0052618 AjmbgZ2wZvk,1959.0,10,10,2015,Ben-Hur,Ramming Speed!,tt0052618 lPr_GBMu4O4,1959.0,9,10,2015,Ben-Hur,Row Well and Live,tt0052618 ytTSb8302aI,1959.0,4,10,2015,Ben-Hur,I Am Against You,tt0052618 5Bv5yv0n9Tc,1959.0,2,10,2015,Ben-Hur,The Loyalty of Old Friends,tt0052618 Fbt2UUthWg0,1959.0,8,10,2015,Ben-Hur,Water For Jesus,tt0052618 DPl05d5mi54,1959.0,5,10,2015,Ben-Hur,The Race Is Not Over,tt0052618 cDoyywKt1_0,1959.0,7,10,2015,Ben-Hur,Meets Jesus,tt0052618 Xsa1B-RyyXQ,2009.0,1,5,2015,Harry Potter and the Half-Blood Prince,Harry vs. Draco,tt0417741 KmdBHOUCDnM,2009.0,3,5,2015,Harry Potter and the Half-Blood Prince,The Dark Lake,tt0417741 lmlX39gM9-c,2009.0,4,5,2015,Harry Potter and the Half-Blood Prince,Dumbledore's Death,tt0417741 UwTKqqfS8FQ,2009.0,2,5,2015,Harry Potter and the Half-Blood Prince,Harry and Ginny Kiss,tt0417741 8DbzvqOPUIk,2009.0,5,5,2015,Harry Potter and the Half-Blood Prince,I'm the Half-Blood Prince,tt0417741 bJuDofIoW34,2005.0,1,10,2015,The Dukes of Hazzard,Blowing the Safe,tt0377818 meEN8tfT7b4,2005.0,4,10,2015,The Dukes of Hazzard,Appalachian Americans,tt0377818 5HoL98HNOr8,2005.0,5,10,2015,The Dukes of Hazzard,Boss Hogg Visits the Jail,tt0377818 sAtsZPmjExo,2005.0,6,10,2015,The Dukes of Hazzard,Check My Undercarriage,tt0377818 6R__cRZAVCA,2005.0,7,10,2015,The Dukes of Hazzard,Car Chase,tt0377818 8Kfr7BvVmlU,2005.0,8,10,2015,The Dukes of Hazzard,Daisy Duke and Enos,tt0377818 pGZtlbYLpck,2005.0,9,10,2015,The Dukes of Hazzard,Fire in the Hole,tt0377818 BvjorMEnuUI,2005.0,10,10,2015,The Dukes of Hazzard,Shoot the Moon,tt0377818 EIzFKMtPjH0,2005.0,2,10,2015,The Dukes of Hazzard,Another Shrimp on the Barbie,tt0377818 RbMtPUPVZ_s,2005.0,3,10,2015,The Dukes of Hazzard,Japanese Scientists,tt0377818 1w4rZE1A-fc,2003.0,1,10,2015,Gothika,Are You Scared?,tt0348836 9O0D63xWNLE,2003.0,6,10,2015,Gothika,Dreaming of Murder,tt0348836 reKMIuxFqzY,2003.0,2,10,2015,Gothika,Not Alone,tt0348836 -RuK7XKbefY,2003.0,5,10,2015,Gothika,You Said No Shock Treatment!,tt0348836 _3w-4zC9FHU,2003.0,8,10,2015,Gothika,The Murder,tt0348836 92YrRetDlCg,2003.0,7,10,2015,Gothika,What Do You Want From Me!,tt0348836 uYWlWG9d4LE,2003.0,10,10,2015,Gothika,You're Already Dead!,tt0348836 TAZulrjrEDo,2003.0,9,10,2015,Gothika,I Don't Believe in Ghosts!,tt0348836 CTVWHGj92Xo,2003.0,4,10,2015,Gothika,Did We Have an Affair?,tt0348836 m99cHo5NBZ8,2003.0,3,10,2015,Gothika,Cutting in the Shower,tt0348836 wW0WRqnLYMw,1995.0,4,10,2015,Batman Forever,What a Rush!,tt0112462 pGhBFh0cXRU,1995.0,9,10,2015,Batman Forever,Batman and Robin Partner Up,tt0112462 Zc3wIAs3coU,1995.0,2,10,2015,Batman Forever,Dr. Edward Nygma,tt0112462 2FxpNCvBV_s,1995.0,3,10,2015,Batman Forever,Chicks Dig the Car,tt0112462 YGQZwZadSfI,1995.0,5,10,2015,Batman Forever,Superhero Gig,tt0112462 SMuET3l5cbc,1995.0,6,10,2015,Batman Forever,Your New Partner,tt0112462 E5vZWrsaYWU,1995.0,10,10,2015,Batman Forever,I Have a Riddle for You,tt0112462 CY2ruk5Vkq8,1995.0,1,10,2015,Batman Forever,Batman Goes Out,tt0112462 11tbL8l5Av8,1995.0,7,10,2015,Batman Forever,Batman's Origin,tt0112462 wG5Lt-pineg,1995.0,8,10,2015,Batman Forever,The Riddler's Destruction,tt0112462 GqECd_A7qhY,2010.0,5,12,2015,Blue Valentine,Love at First Sight,tt1120985 LDC0ii3Rwww,1999.0,2,10,2015,Wild Wild West,Touch My Breast,tt0120891 zV3AZFuaJVQ,1999.0,3,10,2015,Wild Wild West,Loveless Comes Out,tt0120891 yQ0FgE-WKi8,1999.0,1,10,2015,Wild Wild West,Hot Water,tt0120891 EPJGFrntGfU,1999.0,10,10,2015,Wild Wild West,Getting a Whoopin',tt0120891 HvIGrLYKRh8,1999.0,6,10,2015,Wild Wild West,Magnetic Collars,tt0120891 gmbInMp4ioU,1999.0,7,10,2015,Wild Wild West,Leave This Part Out,tt0120891 SrJEWL6QHzo,1999.0,5,10,2015,Wild Wild West,A Breast of Fresh Air,tt0120891 _ItWcGtaJro,1999.0,9,10,2015,Wild Wild West,A New Girl,tt0120891 Uc21Z4ffSns,1999.0,4,10,2015,Wild Wild West,East Meets West,tt0120891 NHRtlXDOqOU,1999.0,8,10,2015,Wild Wild West,80 Foot Tarantula,tt0120891 zgQsfeosMf0,2004.0,1,10,2015,The Butterfly Effect,You Deserve a Better Brother,tt0289879 cNiuEFffzf4,2004.0,3,10,2015,The Butterfly Effect,Nothing's All Better,tt0289879 Jf8OtaR_9MM,2004.0,9,10,2015,The Butterfly Effect,No One Could Ever Love You As Much,tt0289879 EkptyQec_LM,2004.0,2,10,2015,The Butterfly Effect,You Were Never Meant to Be,tt0289879 1TqRcAl_928,2004.0,7,10,2015,The Butterfly Effect,You Were Happy Once,tt0289879 ixYWkDAPPzA,2004.0,10,10,2015,The Butterfly Effect,Director's Cut Ending,tt0289879 2L2dyDpd7LA,2004.0,4,10,2015,The Butterfly Effect,Healing the Scars,tt0289879 LimvO4zrETM,2004.0,5,10,2015,The Butterfly Effect,Fighting Tommy,tt0289879 1zWf02vGl3M,2004.0,8,10,2015,The Butterfly Effect,No Arms,tt0289879 z-3ETV74ygs,2004.0,6,10,2015,The Butterfly Effect,You Can't Play God,tt0289879 2gzMbWXWIA4,2003.0,4,10,2015,Freddy vs. Jason,Freddy's Back,tt0329101 bAjGVN4f6wM,2003.0,7,10,2015,Freddy vs. Jason,,tt0329101 WRF2fIzwT6k,2003.0,9,10,2015,Freddy vs. Jason,Go to Hell!,tt0329101 7SZs2Qr0zvE,2003.0,1,10,2015,Freddy vs. Jason,Jason Kills Trey,tt0329101 NQhm9xmVHdU,2003.0,8,10,2015,Freddy vs. Jason,Construction Site Fight,tt0329101 at6F59Zfqlw,2003.0,10,10,2015,Freddy vs. Jason,Welcome to My World,tt0329101 0NRYcIcHfV4,2003.0,3,10,2015,Freddy vs. Jason,Jason Crashes the Party,tt0329101 Qa_hiWmXFUA,2003.0,6,10,2015,Freddy vs. Jason,Welcome to My Nightmare,tt0329101 FlaH13fnXk0,2003.0,2,10,2015,Freddy vs. Jason,Not Strong Enough Yet,tt0329101 t-Ojbv20L80,2003.0,5,10,2015,Freddy vs. Jason,Under the Influence,tt0329101 ORQgPS4lxmg,2002.0,3,10,2015,John Q,Under New Management,tt0251160 edgiUq5ymRE,2002.0,5,10,2015,John Q,Am I Going to Die?,tt0251160 AYS6V3rDT6c,2002.0,6,10,2015,John Q,Sick. Help.,tt0251160 oceYG6ogT_E,2002.0,4,10,2015,John Q,Hypocritical Oath,tt0251160 IGVwlBTTqYM,2002.0,2,10,2015,John Q,Your Son May Not Live Much Longer,tt0251160 6sQWxbE2RAk,2002.0,10,10,2015,John Q,It's Not Goodbye,tt0251160 dIu418Y0TGY,2002.0,1,10,2015,John Q,Heart Failure,tt0251160 QxcCdLaKhd8,2002.0,9,10,2015,John Q,They Found a Heart!,tt0251160 LjiRvVUmets,2002.0,8,10,2015,John Q,I'm Always With You,tt0251160 1WnfdpZYp_s,2002.0,7,10,2015,John Q,Take My Heart,tt0251160 ulGMlIZNr6M,2004.0,9,10,2015,Scooby Doo 2: Monsters Unleashed,The Cotton Candy Glob,tt0331632 9rj02jWyo94,2004.0,3,10,2015,Scooby Doo 2: Monsters Unleashed,The Return of the Black Knight Ghost,tt0331632 bLsnl_fdBoI,2004.0,8,10,2015,Scooby Doo 2: Monsters Unleashed,"Monsters, Monsters, Everywhere",tt0331632 yz8GjHOA2xo,2004.0,10,10,2015,Scooby Doo 2: Monsters Unleashed,I'm Scooby-Dooby-Doo,tt0331632 kHk2-mOOYQg,2004.0,4,10,2015,Scooby Doo 2: Monsters Unleashed,Velma Gets Hot,tt0331632 Md12rwlpeFU,2004.0,6,10,2015,Scooby Doo 2: Monsters Unleashed,We'll Never Be Anything,tt0331632 0oxx_2M6Ctw,2004.0,2,10,2015,Scooby Doo 2: Monsters Unleashed,Doorbell Trap,tt0331632 ylvCOlF5RLI,2004.0,5,10,2015,Scooby Doo 2: Monsters Unleashed,Drinking the Potions,tt0331632 vZyIBlDO-E8,2004.0,1,10,2015,Scooby Doo 2: Monsters Unleashed,The Pterodactyl Ghost,tt0331632 uen_1bL_TXc,2004.0,7,10,2015,Scooby Doo 2: Monsters Unleashed,Fred and Daphne Fight Back,tt0331632 _qjEm2ll0qc,2002.0,10,10,2015,Scooby-Doo,Damsel in Distress,tt0267913 xby81m1GtH8,2002.0,7,10,2015,Scooby-Doo,"What Up, Dawg?",tt0267913 WC60ALoX_Nk,2002.0,2,10,2015,Scooby-Doo,Pamela Anderson,tt0267913 u455yxBv35A,2002.0,1,10,2015,Scooby-Doo,The Case of the Luna Ghost,tt0267913 Pf4RjsdJE0I,2002.0,8,10,2015,Scooby-Doo,Switching Bodies,tt0267913 JC2TvxRIR4Y,2002.0,9,10,2015,Scooby-Doo,Unmasked,tt0267913 mEzXLJL48nA,2002.0,4,10,2015,Scooby-Doo,The Dinner Show,tt0267913 Ia8LqyDsdbo,2002.0,6,10,2015,Scooby-Doo,Scrappy-Doo,tt0267913 iEattbpjGG4,2002.0,3,10,2015,Scooby-Doo,All You Can Eat,tt0267913 FgYr00Scelc,2002.0,5,10,2015,Scooby-Doo,Burping and Farting,tt0267913 Jr9tBcUO68M,2000.0,8,10,2015,Space Cowboys,No Other Option,tt0186566 uu4tB54Uw5I,2000.0,9,10,2015,Space Cowboys,Let's Shoot This Baby To The Moon,tt0186566 -Pf1f0pZdnQ,2000.0,6,10,2015,Space Cowboys,Welcome to Space,tt0186566 LruyfJJT7qY,2000.0,5,10,2015,Space Cowboys,Flying Brick,tt0186566 BLbh7T1mPZ4,2000.0,7,10,2015,Space Cowboys,It's Arming Itself,tt0186566 xpXxwJNaZDY,2000.0,4,10,2015,Space Cowboys,First One To Pass Out,tt0186566 zQTDoxrgBeU,2000.0,2,10,2015,Space Cowboys,A Scary Ride,tt0186566 rKHW39mShF4,2000.0,10,10,2015,Space Cowboys,Landing the Shuttle,tt0186566 Dh__Anjhn6M,2000.0,3,10,2015,Space Cowboys,The Eye Test,tt0186566 xIMi15Erjvo,2000.0,1,10,2015,Space Cowboys,The First American in Space,tt0186566 FDwpGLz3Mr8,2001.0,7,10,2015,Swordfish,You've Sold Out America,tt0244244 qkHSTpTqlug,2001.0,3,10,2015,Swordfish,I'm Ginger,tt0244244 mYS3zyHIxqA,2001.0,10,10,2015,Swordfish,Aerial Pursuit,tt0244244 QAMDKK5sfd0,2001.0,9,10,2015,Swordfish,You're No Different From a Terrorist,tt0244244 L8Ig4HbgA0c,2001.0,8,10,2015,Swordfish,No Deal,tt0244244 k6_TBuGcwzA,2001.0,5,10,2015,Swordfish,Who Are You?,tt0244244 WjDLin6Egyw,2001.0,1,10,2015,Swordfish,The Problem With Hollywood,tt0244244 Rtf8uPmgq0A,1990.0,5,10,2015,The Witches,Hello Little Bruno,tt0100944 TrjLNpfDTi0,1990.0,4,10,2015,The Witches,Maximum Results!,tt0100944 P-GgTCUYjhw,1990.0,8,10,2015,The Witches,Good Lord,tt0100944 QsuIp03FENc,1990.0,10,10,2015,The Witches,Pest Control,tt0100944 VsLUFKIRr1s,2001.0,6,10,2015,Swordfish,We've Got a Tail,tt0244244 hiHZWeeoEUg,2001.0,2,10,2015,Swordfish,Street Explosion,tt0244244 mWqGJ613M5Y,2001.0,4,10,2015,Swordfish,The Test,tt0244244 pbzjsBcOuB8,1992.0,4,10,2015,Unforgiven,Little Bill Meets William Munny,tt0105695 7_uvEuNwUj4,1992.0,9,10,2015,Unforgiven,I'm Here to Kill You,tt0105695 PmFEdtB8eNw,1992.0,6,10,2015,Unforgiven,Hurting Ned Gentle,tt0105695 GnWalWAmryk,1992.0,1,10,2015,Unforgiven,I Ain't Like That No More,tt0105695 HdcT33sKbn8,1992.0,3,10,2015,Unforgiven,The Duck of Death,tt0105695 X5Vb_FUuRDE,1992.0,5,10,2015,Unforgiven,Shooting Davey,tt0105695 4x_MfkJvgbU,1992.0,8,10,2015,Unforgiven,The Only Friend I Got,tt0105695 cAYVS8aRQ1U,1992.0,7,10,2015,Unforgiven,We All Have It Coming,tt0105695 Mjkt4UgcTmg,1992.0,10,10,2015,Unforgiven,I'll See You in Hell,tt0105695 rsyw13yrRoo,1992.0,2,10,2015,Unforgiven,English Bob,tt0105695 xO7O6zwFZ1k,1985.0,1,10,2015,Pee-wee's Big Adventure,Pee-wee's Breakfast,tt0089791 xfeLsPRl3so,1985.0,2,10,2015,Pee-wee's Big Adventure,"I Know You Are, But What Am I?",tt0089791 urnRVr1P2bc,1985.0,3,10,2015,Pee-wee's Big Adventure,I Meant to Do That,tt0089791 XC3yGH4nETQ,1985.0,7,10,2015,Pee-wee's Big Adventure,Why Don't You Take a Picture?,tt0089791 lPMSGTfK4Aw,1985.0,8,10,2015,Pee-wee's Big Adventure,Large Marge,tt0089791 cJOqz6CPxLY,1985.0,10,10,2015,Pee-wee's Big Adventure,Paging Mr. Herman,tt0089791 7eTl05KHwFI,1985.0,4,10,2015,Pee-wee's Big Adventure,"I'm a Loner, Dottie",tt0089791 0PdeHy_87OM,1985.0,9,10,2015,Pee-wee's Big Adventure,The Alamo Tour,tt0089791 QoJrjjy0WeU,1985.0,6,10,2015,Pee-wee's Big Adventure,The Big Meeting,tt0089791 gwjAFSu_VKM,1985.0,5,10,2015,Pee-wee's Big Adventure,Trick Gum,tt0089791 D0Gxk6zCSFQ,2000.0,1,10,2015,Next Friday,Mrs. Ho-Kym Scene,tt0195945 z_Bx500h-DQ,2000.0,9,10,2015,Next Friday,Time to Party Scene,tt0195945 yVlOitZ19Wc,2000.0,7,10,2015,Next Friday,I Can't Get Jiggy With This Scene,tt0195945 3wft012b2tk,2000.0,3,10,2015,Next Friday,Day-Day's Problems Scene,tt0195945 5Mb6xTtmtuA,2000.0,5,10,2015,Next Friday,Improving Black & Brown Relations Scene,tt0195945 kQrU0KRsCNo,2000.0,6,10,2015,Next Friday,"Puff, Puff, Give Scene",tt0195945 sL1b7ZnItoI,2000.0,10,10,2015,Next Friday,No Locked Doors Scene,tt0195945 gVseixK20cM,2000.0,4,10,2015,Next Friday,Urgent Message Scene,tt0195945 Aok-54MlYFk,2000.0,2,10,2015,Next Friday,Auntie Suga Scene,tt0195945 KU8y7u-xqHg,2000.0,8,10,2015,Next Friday,Shut Up! Scene,tt0195945 yr-HmSz421c,1971.0,6,10,2014,Dirty Harry,I'm Going to Let Her Die,tt0066999 IKFthgUbCdY,1971.0,1,10,2014,Dirty Harry,That's My Policy,tt0066999 RitnM9n0jTY,1971.0,3,10,2014,Dirty Harry,Why Do They Call You ?,tt0066999 38mE6ba3qj8,1971.0,2,10,2014,Dirty Harry,"Do You Feel Lucky, Punk?",tt0066999 0wAtjDAyv4M,1971.0,9,10,2014,Dirty Harry,Scorpio Frames Harry,tt0066999 8WQG1IHkv4k,1971.0,5,10,2014,Dirty Harry,Rooftop Shootout,tt0066999 buNwwAximcE,1971.0,7,10,2014,Dirty Harry,Where is the Girl?,tt0066999 dKC2CPS9AFI,1971.0,4,10,2014,Dirty Harry,The Jumper,tt0066999 kh62SjGdI0s,1971.0,8,10,2014,Dirty Harry,The Law's Crazy,tt0066999 Ky7rHZmk9Yw,1971.0,10,10,2014,Dirty Harry,Do l Feel Lucky?,tt0066999 zm2fF6nj6W8,2003.0,10,10,2014,Mystic River,Daddy is a King,tt0327056 in5f7RMtnoU,1990.0,9,10,2014,The Witches,"Hello, Dad!",tt0100944 gTgm44dkSCY,2003.0,4,10,2014,Mystic River,I Can't Even Cry For Her,tt0327056 13_ffd4CiG4,2003.0,5,10,2014,Mystic River,Dave is Dead,tt0327056 -yvnWPZy1FQ,2003.0,8,10,2014,Mystic River,Say You Love Me,tt0327056 RYlKhpi--QQ,2003.0,2,10,2014,Mystic River,Is That My Daughter?,tt0327056 rbFIs5-Rn_Y,2003.0,6,10,2014,Mystic River,Blood in the Trunk,tt0327056 pkylHxUSxLM,2003.0,1,10,2014,Mystic River,I Might've Killed Him,tt0327056 W_URoElm3Ts,2003.0,3,10,2014,Mystic River,One Little Choice Can Change Your Life,tt0327056 s9k-uO50300,2003.0,9,10,2014,Mystic River,The Last Time I Saw Dave,tt0327056 IGlBlA7Vr0M,2003.0,7,10,2014,Mystic River,Admit What You Did,tt0327056 TYC_FD2YXro,2008.0,6,10,2014,Fool's Gold,How Much Do You Owe Him?,tt0770752 ygU2QenlIvU,2008.0,5,10,2014,Fool's Gold,Ten Percent,tt0770752 aK1r7tBWnro,2007.0,8,10,2014,I Am Legend,They Followed Us Home,tt0480249 LEDYzJazfw0,2007.0,4,10,2014,I Am Legend,Trapped,tt0480249 ueR0lJzIxWo,2007.0,6,10,2014,I Am Legend,"Goodbye, Sam",tt0480249 lO8EJQzkYxg,2007.0,7,10,2014,I Am Legend,SUV Attack,tt0480249 er6wSXJC57U,2007.0,5,10,2014,I Am Legend,Infected Dogs,tt0480249 MbbKc8GJtFA,2007.0,3,10,2014,I Am Legend,Catching An Infected,tt0480249 sWEvLBzMpYE,2007.0,2,10,2014,I Am Legend,Infected Encounter,tt0480249 kPSk30qzgFs,2007.0,10,10,2014,I Am Legend,Alternate Ending,tt0480249 -YykCz0f3Vk,2007.0,9,10,2014,I Am Legend,Let Me Save You,tt0480249 BHZKSYLAecQ,2007.0,1,10,2014,I Am Legend,Hunting in the City,tt0480249 b1jqSRnqLMw,2006.0,10,10,2014,Happy Feet,Dancing for the Aliens,tt0366548 ymA7OFZ9lF0,2006.0,4,10,2014,Happy Feet,Sliding Down the Ice,tt0366548 qVNAGVSKEBQ,2006.0,2,10,2014,Happy Feet,Take the Fish,tt0366548 xGj_wbPl-6w,2006.0,9,10,2014,Happy Feet,Mumble Makes Contact,tt0366548 PFbxA5HjwyQ,2006.0,8,10,2014,Happy Feet,Mumble Takes a Leap,tt0366548 NkaJFlr5Fhk,2006.0,5,10,2014,Happy Feet,You Must Go,tt0366548 -0f67QE-HP8,2006.0,3,10,2014,Happy Feet,Leopard Seal Chase,tt0366548 x1H6pD3vNwQ,1990.0,7,10,2014,The Witches,Chase the Baby,tt0100944 nkQAhpLBok8,1971.0,5,10,2014,THX 1138,White Void Torture,tt0066434 ik_WAfUpVKQ,1971.0,2,10,2014,THX 1138,Prevent Accidents,tt0066434 U0YkPnwoYyE,1971.0,3,10,2014,THX 1138,The Confession,tt0066434 4bY-bFqj97k,1971.0,10,10,2014,THX 1138,The Sun,tt0066434 J5nmxHjPuvY,1971.0,9,10,2014,THX 1138,Autojet Chase,tt0066434 Ysdz8bIuyWY,1971.0,4,10,2014,THX 1138,Mind Lock,tt0066434 0MUWDGcRCOQ,1971.0,8,10,2014,THX 1138,Doorway to Chaos,tt0066434 a-SnsqKFHLY,1971.0,1,10,2014,THX 1138,What's Wrong?,tt0066434 XmGKlWjQHic,1971.0,7,10,2014,THX 1138,Under Control,tt0066434 DfSToqJxCSI,1971.0,6,10,2014,THX 1138,Medical Tests,tt0066434 WTMcikRZcBk,2006.0,7,10,2014,Happy Feet,Killer Whale Attack,tt0366548 kMkxtj-mu14,2006.0,6,10,2014,Happy Feet,Hippity Hoppity Fool,tt0366548 q-H62GgHjeg,2006.0,1,10,2014,Happy Feet,Mumble Has No Heartsong,tt0366548 ngeORuhnajc,1990.0,6,10,2014,The Witches,It Must Be Exterminated!,tt0100944 jTHFCMuIrzQ,1990.0,2,10,2014,The Witches,Little Boys Love Snakes,tt0100944 2AeJ2VHssPI,1990.0,1,10,2014,The Witches,Ordinary Witches,tt0100944 ZEshWoP9if0,1990.0,3,10,2014,The Witches,I Cannot Permit Mice,tt0100944 tCtZfBVS1Tg,1990.0,1,10,2014,Memphis Belle,Poetry,tt0100133 GNdpxi9F1AA,1990.0,8,10,2014,Memphis Belle,Bombs Away,tt0100133 Q3LcGb0DGM8,1990.0,10,10,2014,Memphis Belle,Landing the Belle,tt0100133 rj7e6WvyClY,1982.0,3,10,2014,The World According to Garp,Do You Want Her?,tt0084917 xVT46mh22iw,1982.0,6,10,2014,The World According to Garp,Raging Hormones,tt0084917 hRoE2HRnpkk,1982.0,2,10,2014,The World According to Garp,How Garp Was Conceived,tt0084917 bUWnZAFfxYc,1982.0,8,10,2014,The World According to Garp,The Accident,tt0084917 GTqz4duPdYQ,1982.0,4,10,2014,The World According to Garp,Pre-Disastered Home,tt0084917 p7bpv3zs8Dk,1982.0,7,10,2014,The World According to Garp,Hopeless Romantic,tt0084917 ypw7AA7tf-4,1982.0,1,10,2014,The World According to Garp,Flying with Dad,tt0084917 hdhW0bChQwg,1982.0,9,10,2014,The World According to Garp,Jenny's Memorial,tt0084917 YUSxYNj_kM0,1982.0,10,10,2014,The World According to Garp,I'm Flying,tt0084917 XlZUBUSKbFk,1982.0,5,10,2014,The World According to Garp,Roberta Muldoon,tt0084917 aKnvOP-1U00,1945.0,7,10,2014,Mildred Pierce,Stay Away From Veda,tt0037913 gI1_6ob3hio,1945.0,6,10,2014,Mildred Pierce,An Extravagant Birthday Gift,tt0037913 ozf32hrXGiY,1945.0,4,10,2014,Mildred Pierce,"My Mother, a Waitress!",tt0037913 kjzRZCxQ1EE,1945.0,3,10,2014,Mildred Pierce,A Selfish Request,tt0037913 JSmcnUcLVHA,1945.0,1,10,2014,Mildred Pierce,"Pack Up, Bert",tt0037913 -ASYRiRflDM,1945.0,2,10,2014,Mildred Pierce,On a Leash,tt0037913 Il1NzkQ3rYs,1945.0,5,10,2014,Mildred Pierce,"Warm, Wanted and Beautiful",tt0037913 x4CEkYJNir0,1945.0,8,10,2014,Mildred Pierce,Cheap and Horrible,tt0037913 70NH2okaBY4,1945.0,9,10,2014,Mildred Pierce,I Want My Daughter Back,tt0037913 GPuCrJujOkk,1945.0,10,10,2014,Mildred Pierce,Veda's Secret,tt0037913 YER_g7jph94,1990.0,2,10,2014,Memphis Belle,After the War,tt0100133 RmhSgZ106Wg,1990.0,4,10,2014,Memphis Belle,Letters from Loved Ones,tt0100133 6MrxdKGZaWI,1990.0,6,10,2014,Memphis Belle,It's Tomato Soup,tt0100133 djIvmaYI9LQ,1990.0,7,10,2014,Memphis Belle,Mother and Country Goes Down,tt0100133 ypvzo6iiM7M,1990.0,3,10,2014,Memphis Belle,Hit & Run,tt0100133 59Ntwoot4_s,1990.0,5,10,2014,Memphis Belle,We're in the Lead Now,tt0100133 85CcD6t5cx4,1990.0,9,10,2014,Memphis Belle,Dive,tt0100133 jVsXMF9sbVQ,1943.0,6,10,2014,Lassie Come Home,Dally & Dan'l to the Rescue,tt0036098 P6PLrI4R4x4,1943.0,9,10,2014,Lassie Come Home,A Daring Leap,tt0036098 voYRf2GVXbc,1943.0,2,10,2014,Lassie Come Home,The First Escape,tt0036098 2H7XknY3PMA,1943.0,4,10,2014,Lassie Come Home,Going for a Walk,tt0036098 NBRHljOdrh0,1943.0,8,10,2014,Lassie Come Home,Sticks and Sacrifices,tt0036098 P7JKRDjM_Vk,1943.0,7,10,2014,Lassie Come Home,The Tootsie & Lassie Show,tt0036098 VRxRsbDfLaw,1943.0,3,10,2014,Lassie Come Home,Jumping the Fence,tt0036098 BV1Nyf_u1AA,1943.0,1,10,2014,Lassie Come Home,Morning Routine,tt0036098 O2VkpNsOM4o,1943.0,10,10,2014,Lassie Come Home,My,tt0036098 TvSS_-BohSc,1943.0,5,10,2014,Lassie Come Home,Dog Fight,tt0036098 gX57uKMrxp4,2008.0,2,10,2014,Fool's Gold,You're Not Gonna Hit Me,tt0770752 VY4Bo_Mcws4,2008.0,9,10,2014,Fool's Gold,Catching the Plane,tt0770752 IMF8PvqFN-c,2008.0,3,10,2014,Fool's Gold,Hey Babe!,tt0770752 hHibPPRQB40,2008.0,7,10,2014,Fool's Gold,Wish We Were Still Married,tt0770752 0vlBQqEc5YA,2008.0,10,10,2014,Fool's Gold,Tell Me After We Crash,tt0770752 XUwybDr5HlQ,2008.0,8,10,2014,Fool's Gold,Are You Shot?,tt0770752 LCsNRcdlAkw,2008.0,4,10,2014,Fool's Gold,We Think You're Hot,tt0770752 h8E3sSTc11E,2008.0,1,10,2014,Fool's Gold,Thrown Off The Boat,tt0770752 vAd0QlUaIBY,2001.0,2,10,2014,Cats & Dogs,Mr. Tinkles,tt0239395 XQUKOgrir0A,2001.0,9,10,2014,Cats & Dogs,Mr. Tinkles' Ransom Video,tt0239395 gknobwKAStE,2001.0,4,10,2014,Cats & Dogs,Send in the Russian,tt0239395 nC-it_V8df0,2001.0,3,10,2014,Cats & Dogs,Ninja Cats,tt0239395 45RmWBZsU1Y,2001.0,8,10,2014,Cats & Dogs,Mr. Tinkles Fires Everyone,tt0239395 DBa4fJc9rE0,2001.0,10,10,2014,Cats & Dogs,Bad Talking Cat,tt0239395 aIZsVuaUWB4,2001.0,1,10,2014,Cats & Dogs,Catnapped,tt0239395 MuFfh15AMLU,2001.0,6,10,2014,Cats & Dogs,Stopping the Bomb,tt0239395 AQa015gBmro,2001.0,7,10,2014,Cats & Dogs,Our Day Has Come!,tt0239395 aeF3Q6eTU5k,2001.0,5,10,2014,Cats & Dogs,The Russian Attacks,tt0239395 UcaPMGGla4o,1992.0,10,10,2014,Batman Returns,The Penguin Dies Scene,tt0103776 eIo_S0aHyfI,1992.0,6,10,2014,Batman Returns,A Deadly Kiss Scene,tt0103776 wNWy3YmM3Kw,1992.0,4,10,2014,Batman Returns,Penguin for Mayor Scene,tt0103776 aokJADOVMC0,1992.0,3,10,2014,Batman Returns,I Am Catwoman Scene,tt0103776 UqStvc107-M,1992.0,1,10,2014,Batman Returns,What Did Curiosity Do to the Cat? Scene,tt0103776 A08XpT2q4Xc,1992.0,2,10,2014,Batman Returns,So Much Yummier Scene,tt0103776 c4ux2NclHoE,1992.0,8,10,2014,Batman Returns,My Babies! Scene,tt0103776 kWrOmEtXk0k,1992.0,5,10,2014,Batman Returns,Meow Scene,tt0103776 2aN2OU0pk-Q,1992.0,9,10,2014,Batman Returns,Shocking Schreck Scene,tt0103776 R66c0UiUCZ8,1992.0,7,10,2014,Batman Returns,The Penguin's Plan Scene,tt0103776 lYxVM8oNxRM,2008.0,6,10,2014,"10,000 BC",Take the Spear,tt0443649 c-NDI-HvYd4,2008.0,10,10,2014,"10,000 BC",You Will Not Have Her,tt0443649 mVzdHEhC8YI,2008.0,8,10,2014,"10,000 BC",Mammoth Stampede,tt0443649 4NKk7BYl0Rk,2008.0,4,10,2014,"10,000 BC",The Sabretooth Tiger,tt0443649 DoKxkx0bYRk,2008.0,1,10,2014,"10,000 BC",The Mammoth Hunt,tt0443649 k3yUlJtCkJg,2008.0,3,10,2014,"10,000 BC",Terror Bird Attack,tt0443649 EzqRc-RLJfU,2008.0,5,10,2014,"10,000 BC",Sacrifice One,tt0443649 wJJDM675Ypw,2008.0,2,10,2014,"10,000 BC",Killing the Mammoth,tt0443649 SRlmBs7EwMk,2008.0,9,10,2014,"10,000 BC",He is Not a God,tt0443649 zGrIGZifpwg,2008.0,7,10,2014,"10,000 BC",We Hunt Together,tt0443649 RDdc0-JD8Dk,2009.0,10,10,2014,Knowing,At Earth's End,tt0448011 mb63Ds-XWQE,2009.0,9,10,2014,Knowing,A New Beginning,tt0448011 1YrG1iLwEWk,2009.0,8,10,2014,Knowing,Kidnapping,tt0448011 iojZt-Ht4Nc,2009.0,7,10,2014,Knowing,Solar Flare,tt0448011 kq-GLDVKqMU,2009.0,6,10,2014,Knowing,The Whisper People,tt0448011 yw7tuJeWXlA,2009.0,5,10,2014,Knowing,I Need to Know,tt0448011 E6gWFTv3xE8,2009.0,2,10,2014,Knowing,Aerial Cataclysm,tt0448011 _pWW7Xmat6o,2009.0,1,10,2014,Knowing,Disaster Codes,tt0448011 LS4oNHk0tlk,2009.0,2,9,2014,Nine,Overture,tt1136608 R-chvFgDLnM,2009.0,3,9,2014,Nine,Guido's Song,tt1136608 ymZFsUBiKJA,2009.0,1,9,2014,Nine,Film is a Dream,tt1136608 W1KhvPZmTgc,2009.0,5,9,2014,Nine,Folies Bergeres,tt1136608 it_WqpOBfWI,2009.0,9,9,2014,Nine,Take It All,tt1136608 KNO5Mhxm8G4,2009.0,8,9,2014,Nine,Unusual Way,tt1136608 bmmxeZEnsL0,2009.0,7,9,2014,Nine,Cinema Italiano,tt1136608 nfC8sEnM_5A,2009.0,6,9,2014,Nine,Be Italian,tt1136608 3_dOw0UilDY,2009.0,4,9,2014,Nine,The Mistress Carla,tt1136608 w8txE148NNI,2009.0,6,9,2014,Next Day Air,The Wrong Man,tt1097013 oIEtwZK04wM,2009.0,1,9,2014,Next Day Air,Bungled Heist,tt1097013 fO8-yVmcQCo,2009.0,9,9,2014,Next Day Air,Shootout,tt1097013 I2gqWarrj-Q,2009.0,5,9,2014,Next Day Air,Jesus H. Crazy,tt1097013 xdQyp5ewyew,2009.0,2,9,2014,Next Day Air,Don't Fire Me!,tt1097013 cWMP0aAueQY,2009.0,3,9,2014,Next Day Air,God Sent That!,tt1097013 l1OgTkhFJn8,2009.0,4,9,2014,Next Day Air,Let's Make a Deal,tt1097013 1-rmOabireo,2009.0,7,9,2014,Next Day Air,Big Boss Bodega,tt1097013 qAdNnZqKGiQ,2009.0,8,9,2014,Next Day Air,Where Is It?,tt1097013 EzocwDE3VK4,2009.0,4,10,2014,Knowing,Subway Hell,tt0448011 wrO6W6vTjV0,2009.0,3,10,2014,Knowing,The Stranger,tt0448011 FPDAxknJFW8,2010.0,9,9,2014,Piranha 3D,Hold on Tight,tt0464154 XUxsLiSEi9w,2010.0,8,9,2014,Piranha 3D,They Took My Penis!,tt0464154 71GRwoL1tdA,2010.0,7,9,2014,Piranha 3D,Crimson Tide,tt0464154 ITN9541Gd8Y,2010.0,6,9,2014,Piranha 3D,Feeding Frenzy,tt0464154 AFBqbhNngJo,2010.0,5,9,2014,Piranha 3D,Pissed Piranha,tt0464154 LUe27-RMDX4,2010.0,1,9,2014,Piranha 3D,Piranhas Unleashed,tt0464154 FHSwbggymEU,2010.0,3,9,2014,Piranha 3D,Fish Food,tt0464154 ifDBVFHT1DU,2010.0,2,9,2014,Piranha 3D,Spring Break,tt0464154 4vOQu8rERuo,2010.0,4,9,2014,Piranha 3D,Tequila Body Shots,tt0464154 tUZYyuHIbJw,2010.0,3,11,2014,Letters to Juliet,Lost Letter,tt0892318 Qp4Vo2bMgJk,2011.0,12,12,2014,My Week with Marilyn,Taking a Bath,tt1655420 tANIXMqv77U,2011.0,11,12,2014,My Week with Marilyn,Do You Love Me?,tt1655420 nfoIqJWYqX4,2011.0,10,12,2014,My Week with Marilyn,Skinny Dipping,tt1655420 cErG8_neSa4,2011.0,8,12,2014,My Week with Marilyn,The Right Man,tt1655420 zx0PxIdo_pw,2011.0,5,12,2014,My Week with Marilyn,Rely on Your Natural Talents,tt1655420 aJY0vUsHL9Y,2011.0,4,12,2014,My Week with Marilyn,First Day of Shooting,tt1655420 mD7NPkG9kwg,2011.0,3,12,2014,My Week with Marilyn,Table Read,tt1655420 MoJqPqmjxUM,2011.0,2,12,2014,My Week with Marilyn,Press Conference,tt1655420 Lf1ORGBLKtc,2011.0,7,12,2014,My Week with Marilyn,Wild With Jealousy,tt1655420 MRTCRVf4ppc,2011.0,6,12,2014,My Week with Marilyn,Call Me Marilyn,tt1655420 NwZlSjkXWnk,2011.0,9,12,2014,My Week with Marilyn,Shall I Be Her?,tt1655420 cGgPJKE_jSs,2011.0,1,12,2014,My Week with Marilyn,Heat Wave,tt1655420 M-_XQTwadHg,2011.0,6,10,2014,Our Idiot Brother,You're Wearing Food,tt1637706 tc4zPfUtP8A,2011.0,9,10,2014,Our Idiot Brother,Need to Unload,tt1637706 euffalJGKn4,2011.0,3,10,2014,Our Idiot Brother,Work Interrupted,tt1637706 H63L0VBnCDA,2011.0,1,10,2014,Our Idiot Brother,Busted,tt1637706 4oJk7-aMiNY,2011.0,10,10,2014,Our Idiot Brother,Charades,tt1637706 LdHfwFIuXtw,2011.0,8,10,2014,Our Idiot Brother,Operation Free Willie,tt1637706 7kikXTi4fFs,2011.0,2,10,2014,Our Idiot Brother,Win Room,tt1637706 58C7ep68GMw,2011.0,7,10,2014,Our Idiot Brother,Do You Have Tourette's?,tt1637706 GgtGlyKIMh8,2011.0,4,10,2014,Our Idiot Brother,I'm the Man,tt1637706 VQnDBor2tWg,2011.0,5,10,2014,Our Idiot Brother,Coffee Shop Pick-Up,tt1637706 JEcfknHqMyc,2011.0,9,9,2014,Scream 4,Horror Movie Quiz,tt1262416 p5n3koQZVDY,2011.0,8,9,2014,Scream 4,Rule Breaker,tt1262416 UG7lwsjxwz0,2011.0,7,9,2014,Scream 4,Movie Cops,tt1262416 Urj46blH8vo,2011.0,6,9,2014,Scream 4,Kill Cam,tt1262416 BdOG2-Gn044,2011.0,5,9,2014,Scream 4,The New Rules of Horror,tt1262416 QhZ86T_nh3Y,2011.0,4,9,2014,Scream 4,Car Trouble,tt1262416 GTRAmbo04JA,2011.0,3,9,2014,Scream 4,Out of the Closet,tt1262416 4gehr6BLqRU,2011.0,2,9,2014,Scream 4,The Return of Ghostface,tt1262416 XRxL8KW7dbo,2011.0,1,9,2014,Scream 4,Post-Modern Murder,tt1262416 mbj-OpDla5A,2011.0,7,10,2014,The Artist,Drunk and Surly,tt1655442 EC20KdIDiEY,2011.0,10,10,2014,The Artist,Tap Dancing to the Top,tt1655442 tSWhP2gwhms,2011.0,9,10,2014,The Artist,Wonder Dog,tt1655442 HAqKJv1ndXo,2011.0,8,10,2014,The Artist,Up in Flames,tt1655442 _58I2YrkKdk,2011.0,6,10,2014,The Artist,Nightmare of Sound,tt1655442 TC_3tiLJC8E,2011.0,5,10,2014,The Artist,Something to Set You Apart,tt1655442 Vsx0zX06F_c,2011.0,4,10,2014,The Artist,"Lights, Camera, Attraction",tt1655442 qWlS0TrvHXE,2011.0,3,10,2014,The Artist,Dancing on Set,tt1655442 gUjOiNR6HWo,2011.0,2,10,2014,The Artist,The Name's Peppy Miller,tt1655442 7_WoelQbZyM,2011.0,1,10,2014,The Artist,Who's That Girl?,tt1655442 eCyr2_QTNVc,2010.0,7,7,2014,Don't Be Afraid of the Dark,Saving Sally,tt1270761 v_R9dxNFKWY,2010.0,6,7,2014,Don't Be Afraid of the Dark,Hunting the Parents,tt1270761 4Zb-n9MXbPE,2010.0,5,7,2014,Don't Be Afraid of the Dark,We Want You,tt1270761 iReLGcSZtwI,2010.0,4,7,2014,Don't Be Afraid of the Dark,A Bath in the Dark,tt1270761 IKrh9Q6RU8M,2010.0,2,7,2014,Don't Be Afraid of the Dark,You Said You Were Hungry,tt1270761 yrUXPvP3Gk0,2010.0,3,7,2014,Don't Be Afraid of the Dark,Monster Under the Covers,tt1270761 HSJRevnIGww,2010.0,1,7,2014,Don't Be Afraid of the Dark,Little Visitors in the Night,tt1270761 sRPTqsO_SoM,2010.0,12,12,2014,The King's Speech,I Can't Speak,tt1504320 ToDDs9twuno,2010.0,8,12,2014,The King's Speech,I'm Not a King,tt1504320 l65KNW2ZGV8,2010.0,1,12,2014,The King's Speech,Indentured Servitude,tt1504320 _gwHTYw2ThM,2010.0,5,12,2014,The King's Speech,Kinging Is a Precarious Business,tt1504320 KIqqvICYqUg,2010.0,7,12,2014,The King's Speech,Bordering on Treason,tt1504320 nVpfljH55TQ,2010.0,6,12,2014,The King's Speech,You Don't Stammer When You Swear,tt1504320 ZcjvH_shI5I,2010.0,4,12,2014,The King's Speech,Night Cap,tt1504320 SQj4HtDOjkg,2010.0,3,12,2014,The King's Speech,Simple Mechanics,tt1504320 yjMXMAKF-Rg,2010.0,2,12,2014,The King's Speech,Timing Isn't My Strong Suit,tt1504320 8djvfSfVPO4,2010.0,9,12,2014,The King's Speech,Your Own Man,tt1504320 Tp84-New5aA,2010.0,10,12,2014,The King's Speech,I Don't Think You Know King George VI,tt1504320 f7131IkiSCg,2010.0,11,12,2014,The King's Speech,I Have a Voice!,tt1504320 6m5KyzSNu3s,2009.0,6,9,2014,Inglourious Basterds,Ready for Revenge,tt0361748 uIBDomdpK7Y,2009.0,4,9,2014,Inglourious Basterds,I Must Be King Kong,tt0361748 a3uqv0eP7Tg,2009.0,3,9,2014,Inglourious Basterds,The Bear Jew,tt0361748 O5s3Oj2cPgc,2009.0,8,9,2014,Inglourious Basterds,That's a Bingo!,tt0361748 BN4GI97RoSw,2009.0,7,9,2014,Inglourious Basterds,Buongiorno,tt0361748 qLGjjHXyiOQ,2009.0,9,9,2014,Inglourious Basterds,The Face of Vengeance,tt0361748 7LFtoz9sERo,2009.0,5,9,2014,Inglourious Basterds,Go Out Speaking the King's,tt0361748 QfSjs_6MZOQ,2009.0,1,9,2014,Inglourious Basterds,The Jew Hunter,tt0361748 eOcimzsviFA,2009.0,2,9,2014,Inglourious Basterds,One Hundred Nazi Scalps,tt0361748 6cwTpQj9E4U,2009.0,11,11,2014,Halloween 2,Call for Help,tt1311067 MOEy-Da4ra8,2009.0,10,11,2014,Halloween 2,Wolfie's Van,tt1311067 LqDoPnJn9vg,2009.0,9,11,2014,Halloween 2,Don't Talk to Strangers,tt1311067 0vklrunpo7c,2009.0,7,11,2014,Halloween 2,Taking Out the Trash,tt1311067 BPWhOdRSQ6U,2009.0,6,11,2014,Halloween 2,Crazy Laurie,tt1311067 DYOqsNNCOLQ,2009.0,5,11,2014,Halloween 2,Rebirth,tt1311067 zgXQFwcTJsY,2009.0,8,11,2014,Halloween 2,The Devil Walks Among Us,tt1311067 ctdY2KcX-lM,2009.0,3,11,2014,Halloween 2,Night Nurse,tt1311067 kzGR27NzXKA,2009.0,1,11,2014,Halloween 2,Aftermath,tt1311067 ujwZug46-tc,2009.0,2,11,2014,Halloween 2,Cow Crash,tt1311067 WTaUYNnX91g,2009.0,4,11,2014,Halloween 2,Buddy the Night Watchman,tt1311067 06OkoPlUGm4,2009.0,10,10,2014,Fanboys,Fanboy Quiz,tt0489049 jj0765rFtxQ,2009.0,9,10,2014,Fanboys,Never Tell Me the Odds,tt0489049 EcRdEs_Vxtk,2009.0,7,10,2014,Fanboys,Shatner Can Score Anything,tt0489049 R4cgP1_M8ts,2009.0,6,10,2014,Fanboys,Judge Reinhold,tt0489049 buVMAoBMl34,2009.0,5,10,2014,Fanboys,Hyperspace,tt0489049 IfNhqLwtuA0,2009.0,4,10,2014,Fanboys,Harry Knowles,tt0489049 X0FxwPfYz0Q,2009.0,3,10,2014,Fanboys,The Chief's Guacamole,tt0489049 Os49ky9Aiqg,2009.0,2,10,2014,Fanboys,Han Solo's a Bitch,tt0489049 0_aAMNEqylU,2009.0,1,10,2014,Fanboys,I Like Sweater Yams!,tt0489049 b4CDHFMO1R8,2009.0,8,10,2014,Fanboys,This Is Our Death Star,tt0489049 EYoO_t1M-Sg,2009.0,1,9,2014,Bandslam,Putting the Band Together,tt0976222 UkObc3-RKYg,2009.0,2,9,2014,Bandslam,Band Names,tt0976222 HO6yGAV4G0A,2009.0,6,9,2014,Bandslam,First Kiss,tt0976222 THFVJBcv7W4,2009.0,4,9,2014,Bandslam,CBGB,tt0976222 xsNboBgmN38,2009.0,3,9,2014,Bandslam,Rehearsing,tt0976222 v96ND45Aqmo,2009.0,5,9,2014,Bandslam,Kissing Practice,tt0976222 DXT4GZfUONw,2009.0,7,9,2014,Bandslam,"I'm Sorry, Sam",tt0976222 qEJNox8TCOw,2009.0,8,9,2014,Bandslam,Someone to Fall Back On,tt0976222 7EHVvWxKKro,2009.0,9,9,2014,Bandslam,"I Can't Go On, I'll Go On",tt0976222 1afEpntCGXk,2009.0,2,10,2014,Astro Boy,Da Vinci's Flyers,tt0375568 Ls4Ua-QtHYE,2009.0,6,10,2014,Astro Boy,Waking Zog,tt0375568 ijnfTK6LgMA,2009.0,4,10,2014,Astro Boy,Chasing,tt0375568 RB2mOFx7jfY,2009.0,7,10,2014,Astro Boy,Robot Wars,tt0375568 DLf5iJ2jOZ4,2009.0,3,10,2014,Astro Boy,Rocket Boots,tt0375568 UXjZbdc79dU,2009.0,9,10,2014,Astro Boy,Machine Guns In My Butt?,tt0375568 At6Q3fUFU1o,2009.0,10,10,2014,Astro Boy,Heart of a Lion,tt0375568 zi7HyTbmVe4,2009.0,8,10,2014,Astro Boy,I'm Old School,tt0375568 qF5BMKYv94Q,2009.0,1,10,2014,Astro Boy,A Perfect Replica,tt0375568 KZHIVNGrtLM,2009.0,5,10,2014,Astro Boy,Robot Revolutionary Front,tt0375568 ew5-ui5CvJI,2009.0,11,11,2014,A Single Man,The Way It Was Meant to Be,tt1315981 JMmp4T6mbkw,2009.0,10,11,2014,A Single Man,Skinny Dipping,tt1315981 bTuSlICST0Q,2009.0,9,11,2014,A Single Man,Look Closely,tt1315981 sfVRk14aLtE,2009.0,8,11,2014,A Single Man,A Substitute for Real Love,tt1315981 TDCa_16CiCU,2009.0,7,11,2014,A Single Man,A Natural Blonde,tt1315981 ukTcTd6wUD0,2009.0,6,11,2014,A Single Man,Live in the Moment,tt1315981 0HjAT5lo4Ts,2009.0,5,11,2014,A Single Man,Never Seen a Sky Like This,tt1315981 kXBTh2sv4Lg,2009.0,4,11,2014,A Single Man,Light in Your Loafers,tt1315981 KoxDD5gYIYk,2009.0,3,11,2014,A Single Man,People Like Us,tt1315981 8_iFDOIkRFk,2009.0,2,11,2014,A Single Man,Some Bad News,tt1315981 BL-d6jqZ858,2009.0,1,11,2014,A Single Man,Waking Up,tt1315981 8b0SHCBsDRM,2010.0,5,11,2014,Letters to Juliet,Love at First Sight,tt0892318 b9KIXCf4U48,2010.0,9,11,2014,Letters to Juliet,Too Late,tt0892318 mNcyNmX9B_A,2010.0,2,11,2014,Letters to Juliet,Juliet's Secretaries,tt0892318 a75Ywerim8M,2010.0,1,11,2014,Letters to Juliet,Dear Juliet,tt0892318 vZ2jwhdnmw4,2010.0,4,11,2014,Letters to Juliet,Meeting Claire,tt0892318 ACh4ghU9eok,2010.0,6,11,2014,Letters to Juliet,I'm Not a Chicken,tt0892318 tSJ3DYrCdNk,2010.0,7,11,2014,Letters to Juliet,Never Doubt I Love,tt0892318 UeIxzCUMEsg,2010.0,8,11,2014,Letters to Juliet,"Reunited,",tt0892318 a0n9iFb4i70,2010.0,10,11,2014,Letters to Juliet,Sophie's Letter,tt0892318 sZI5ebqgfaw,2010.0,11,11,2014,Letters to Juliet,Romeo & Juliet,tt0892318 wcenhpP37sg,2013.0,1,12,2014,The Hunger Games: Catching Fire,The Victory Tour,tt1951264 2V6d3f8W-oc,2013.0,3,12,2014,The Hunger Games: Catching Fire,The Tributes are Taken,tt1951264 4_zn64bRf6Q,2013.0,2,12,2014,The Hunger Games: Catching Fire,The Peacekeepers,tt1951264 Lma2LDjYf5k,2013.0,8,12,2014,The Hunger Games: Catching Fire,Peeta Hits the Forcefield,tt1951264 JPbkeLf4zU0,2013.0,12,12,2014,The Hunger Games: Catching Fire,The Ending,tt1951264 D6_ZC6BywXs,2013.0,11,12,2014,The Hunger Games: Catching Fire,Destroying the Arena,tt1951264 I44NZgYW6_4,2013.0,10,12,2014,The Hunger Games: Catching Fire,Katniss and Peeta,tt1951264 OC82kTAQZew,2013.0,6,12,2014,The Hunger Games: Catching Fire,The Mockingjay Appears,tt1951264 RsnwTCPo9RI,2013.0,5,12,2014,The Hunger Games: Catching Fire,Johanna in the Elevator,tt1951264 RrDdgbo_NaE,2013.0,4,12,2014,The Hunger Games: Catching Fire,Tribute Parade,tt1951264 E9v4TSOvOIc,2013.0,7,12,2014,The Hunger Games: Catching Fire,The Games Begin,tt1951264 AhH1Yqw-gmA,2013.0,9,12,2014,The Hunger Games: Catching Fire,Tick Tock,tt1951264 Mnw2rmLB4_I,2010.0,7,10,2014,Fair Game,Defend Us,tt0977855 4-Ml8OEXLbE,2010.0,3,10,2014,Fair Game,Not Everyone Agrees,tt0977855 zyIccO0lXiQ,2010.0,10,10,2014,Fair Game,Demand the Truth,tt0977855 L0yOTA3Wq_E,2010.0,5,10,2014,Fair Game,Exposed,tt0977855 SpMvmtj35y8,2010.0,2,10,2014,Fair Game,Aluminum Tubes,tt0977855 wmlNvVvfXNA,2010.0,4,10,2014,Fair Game,Newspaper Leak,tt0977855 opxtApiyARs,2010.0,8,10,2014,Fair Game,Shame On You!,tt0977855 RyObt_1eT8M,2010.0,6,10,2014,Fair Game,They'll Bury Us,tt0977855 cv36jml_lAE,2010.0,9,10,2014,Fair Game,My Marriage Is Over,tt0977855 HFZSTBmWyd8,2010.0,1,10,2014,Fair Game,Quasi-Racist Conundra,tt0977855 cBvFsIF5GNE,2010.0,12,12,2014,Blue Valentine,I Can't Do This Anymore,tt1120985 4D20x3Pfg6E,2010.0,10,12,2014,Blue Valentine,So Out of Love,tt1120985 XjjZyyzdOvs,2010.0,9,12,2014,Blue Valentine,Over the Edge,tt1120985 rGqSj0MA4eM,2010.0,8,12,2014,Blue Valentine,Somebody's Husband,tt1120985 _AdhEPNDxeg,2010.0,6,12,2014,Blue Valentine,Nutty Cuckoo Crazy,tt1120985 NgcEbuMsrS4,2010.0,4,12,2014,Blue Valentine,Inside a Robot's Vagina,tt1120985 s-te8zRj4WY,2010.0,3,12,2014,Blue Valentine,Busted,tt1120985 tDVlpRBhtWQ,2010.0,2,12,2014,Blue Valentine,What Did It Feel Like?,tt1120985 26cjR330Ceo,2010.0,1,12,2014,Blue Valentine,Said the Wrong Thing,tt1120985 p9BRNz08eUs,2010.0,7,12,2014,Blue Valentine,You Always Hurt the One You Love,tt1120985 aHw-fJZ7mD8,2010.0,11,12,2014,Blue Valentine,You and Me,tt1120985 ySpuo4tFo20,2011.0,1,6,2014,Undefeated,First Day of Practice,tt1860355 De-dBcPZlIM,2011.0,2,6,2014,Undefeated,Team Comes First,tt1860355 ABW5RN51NqA,2011.0,4,6,2014,Undefeated,O.C.'s Tutor,tt1860355 q40Kh2-q6X0,2011.0,5,6,2014,Undefeated,How to Measure Character,tt1860355 B4ppeyE6UyU,2011.0,6,6,2014,Undefeated,Uncommon Man,tt1860355 oJJM7GnED2E,2011.0,3,6,2014,Undefeated,Comin' Back,tt1860355 hTOzxqecG7o,2011.0,5,9,2014,The Three Musketeers,Blind Venetians,tt1509767 x-HRlq5Oldw,2011.0,8,9,2014,The Three Musketeers,Round Two,tt1509767 lDWXlJG-FDI,2011.0,9,9,2014,The Three Musketeers,Rooftop Duel,tt1509767 sHTtCAH7l6Y,2011.0,7,9,2014,The Three Musketeers,Airship Battle,tt1509767 QB4WFBsaeus,2011.0,3,9,2014,The Three Musketeers,What Happens to Any Man,tt1509767 n2eSLdqwSYY,2011.0,6,9,2014,The Three Musketeers,The Real Decoy,tt1509767 GM0rZv1Lii0,2011.0,1,9,2014,The Three Musketeers,Insult to Buttercup,tt1509767 Paut4zNx-3c,2011.0,2,9,2014,The Three Musketeers,Four Against Forty,tt1509767 yqCFtEZRFPE,2011.0,4,9,2014,The Three Musketeers,It Was an Off-Day,tt1509767 UqnjC1YM5pk,2011.0,8,12,2014,The Iron Lady,The Medicine Is Harsh,tt1007029 FgF-RJYNzzY,2011.0,7,12,2014,The Iron Lady,Thoughts and Ideas,tt1007029 FdVyibVMumc,2011.0,4,12,2014,The Iron Lady,I'm Going to Run,tt1007029 Wx7IOoX7l8Y,2011.0,3,12,2014,The Iron Lady,Methinks the Lady Doth Screech Too Much,tt1007029 EubG9_KSoGo,2011.0,2,12,2014,The Iron Lady,One's Life Must Matter,tt1007029 H-cxAVTmQ0I,2011.0,1,12,2014,The Iron Lady,An Inspiration to Women,tt1007029 fJjBf7yY1P8,2011.0,10,12,2014,The Iron Lady,"Unity, Strength and Courage",tt1007029 5-afmnViCr4,2011.0,9,12,2014,The Iron Lady,Shall I Be Mother?,tt1007029 _qqw8iHQASs,2011.0,5,12,2014,The Iron Lady,The Voice of a Leader,tt1007029 OOGcesOHlDs,2011.0,12,12,2014,The Iron Lady,End of an Era,tt1007029 XF7QaSY-8lY,2011.0,11,12,2014,The Iron Lady,Shameful,tt1007029 TFrdPPdwY2I,2011.0,9,10,2014,The Darkest Hour,Shoot It,tt1093357 2p-FeYouCx4,2011.0,6,12,2014,The Iron Lady,Put the 'Great' Back into Great Britain,tt1007029 4Q8CqPioUFA,2011.0,10,10,2014,The Darkest Hour,Bus Ride,tt1093357 GukkVxrTLaM,2011.0,8,10,2014,The Darkest Hour,This is Why They Came,tt1093357 mxgE7XEbc48,2011.0,7,10,2014,The Darkest Hour,Going Home,tt1093357 2b3mwmOTR3s,2011.0,5,10,2014,The Darkest Hour,Microwave Gun,tt1093357 JuKhaVdSGms,2011.0,4,10,2014,The Darkest Hour,Shark Week,tt1093357 oTTfW63fY6A,2011.0,3,10,2014,The Darkest Hour,Under the Cop Car,tt1093357 abyFD6LO05w,2011.0,6,10,2014,The Darkest Hour,"Welcome to Russia, Sucka",tt1093357 Z5Hmi5x6JA8,2011.0,2,10,2014,The Darkest Hour,First Contact,tt1093357 TETjB2zHhAE,2011.0,1,10,2014,The Darkest Hour,The Americans,tt1093357 og36vWGn5CU,2012.0,8,9,2014,Silver Linings Playbook,I Did My Research,tt1045658 Vyq3eN0DUU0,2012.0,1,9,2014,Silver Linings Playbook,A Farewell to Arms,tt1045658 DicBrlK4pEU,2012.0,7,9,2014,Silver Linings Playbook,It's About Us,tt1045658 4EYZfAO5ZWs,2012.0,2,9,2014,Silver Linings Playbook,Poor Social Skills,tt1045658 2ceG37UZvzQ,2012.0,3,9,2014,Silver Linings Playbook,Where's My Wedding Video?,tt1045658 3I0AP-HwDnU,2012.0,4,9,2014,Silver Linings Playbook,I Like to Run Alone,tt1045658 8p0YBrmfLyA,2012.0,5,9,2014,Silver Linings Playbook,Sort of Like Me,tt1045658 z__IAJ1Q9lk,2012.0,6,9,2014,Silver Linings Playbook,First Dance Lesson,tt1045658 y1lzIInBQOs,2012.0,9,9,2014,Silver Linings Playbook,The Dance,tt1045658 t4fqGbC2mQM,2012.0,4,10,2014,Twilight: Breaking Dawn Part 2,Love Scene,tt1673434 d4MZPbERTFs,2012.0,3,10,2014,Twilight: Breaking Dawn Part 2,A Wolf Thing,tt1673434 FEWZFq14JiU,2012.0,5,10,2014,Twilight: Breaking Dawn Part 2,Jacob Reveals Himself,tt1673434 2P3uaREypD4,2012.0,8,10,2014,Twilight: Breaking Dawn Part 2,The Battle Rages On,tt1673434 Ls2be_G7bHc,2012.0,10,10,2014,Twilight: Breaking Dawn Part 2,Forever,tt1673434 cP7WEGuVwig,2012.0,9,10,2014,Twilight: Breaking Dawn Part 2,The End of the Volturi,tt1673434 C7qekGisCs4,2012.0,1,10,2014,Twilight: Breaking Dawn Part 2,You're So Beautiful,tt1673434 CB-a6fmj21U,2012.0,2,10,2014,Twilight: Breaking Dawn Part 2,Bella's First Hunt,tt1673434 5u5ixEyjZng,2012.0,6,10,2014,Twilight: Breaking Dawn Part 2,Something to Fight For,tt1673434 3qp3AeWmt38,2012.0,7,10,2014,Twilight: Breaking Dawn Part 2,The Battle Begins,tt1673434 ZiGf0aDV688,2011.0,11,11,2014,The Beaver,You Made This For Me,tt1321860 KLYlTxCTu20,2011.0,9,11,2014,The Beaver,Can Your Mother Stitch?,tt1321860 OEiioh2L3jQ,2011.0,8,11,2014,The Beaver,Starting Over Isn't Crazy,tt1321860 k87Hk4JNqGY,2011.0,6,11,2014,The Beaver,This Man Is A Dead End,tt1321860 1QJXKLwmN14,2011.0,5,11,2014,The Beaver,Mr. Beaver's Woodchopper Kit,tt1321860 fEZuzz0KmN0,2011.0,4,11,2014,The Beaver,"You May Simply Call Me,",tt1321860 LjKZiPNHRUU,2011.0,3,11,2014,The Beaver,A Prescription Puppet,tt1321860 AHw_6AOK7bg,2011.0,2,11,2014,The Beaver,I'm the Beaver,tt1321860 -zXmGloh-P8,2011.0,1,11,2014,The Beaver,Dumpster Beaver,tt1321860 yV0IgLYLoC0,2011.0,10,11,2014,The Beaver,You're Nothing Without Me,tt1321860 4SPwmO5wHjM,2011.0,7,11,2014,The Beaver,I'm Not A Puppet,tt1321860 DwbFUmWjd3g,2011.0,9,11,2014,Spy Kids 4,Family Reunion,tt1517489 6CwHxJUF8DQ,2011.0,10,11,2014,Spy Kids 4,You Have Been Activated,tt1517489 KCbte6Zhaqc,2011.0,11,11,2014,Spy Kids 4,Hammer Hands and Jet Packs,tt1517489 zRYmoB7ayDU,2011.0,7,11,2014,Spy Kids 4,A Giant Clock,tt1517489 spI-9R3B6zk,2011.0,6,11,2014,Spy Kids 4,The Coolest Dog Ever,tt1517489 d7ye5zFyuso,2011.0,5,11,2014,Spy Kids 4,Baby Sidekick,tt1517489 cniwN1YsUW8,2011.0,4,11,2014,Spy Kids 4,The Power of Puke,tt1517489 CmPZjdlK3Qw,2011.0,3,11,2014,Spy Kids 4,To the Panic Room,tt1517489 7uvW1U9UXKQ,2011.0,8,11,2014,Spy Kids 4,Attack Mode,tt1517489 USLznFhxNF4,2011.0,1,11,2014,Spy Kids 4,Spy Mom,tt1517489 GvRD2YqBi74,2011.0,2,11,2014,Spy Kids 4,Blue Cheese Dressing Bomb,tt1517489 CVs-LAC1zrQ,2011.0,6,10,2014,Source Code,Killed in Action,tt0945513 LcWRSHD3cAE,2011.0,2,10,2014,Source Code,Did You Find the Bomb?,tt0945513 rZAnSJl6VKA,2011.0,8,10,2014,Source Code,Send Me Back In,tt0945513 ay1pxLNtdxE,2011.0,1,10,2014,Source Code,Classified Security Breach,tt0945513 SPSP9BHo1_c,2011.0,9,10,2014,Source Code,Calling Home,tt0945513 V07Z_XYMnmM,2011.0,5,10,2014,Source Code,Everything's Going to Be Okay,tt0945513 GcSfbaac9eg,2011.0,4,10,2014,Source Code,The,tt0945513 BjJxoKtYj_w,2011.0,3,10,2014,Source Code,Dead Wrong,tt0945513 oKWpZTQisew,2011.0,7,10,2014,Source Code,The World Is Hell,tt0945513 _TkhbfmrmD0,2011.0,2,10,2014,Drive Angry,Boyfriend Beat-Down,tt1502404 L-3Kx6xAUTM,2011.0,10,10,2014,Source Code,A Whole New World,tt0945513 oQotF_oLWTU,2011.0,5,10,2014,Drive Angry,Undead and Angry,tt1502404 7A8pZX7GjR4,2011.0,9,10,2014,Drive Angry,The Next Five Seconds,tt1502404 9B7Y2tMDlEA,2011.0,6,10,2014,Drive Angry,Ima F*** You Up!,tt1502404 AwUpqAQNZCY,2011.0,4,10,2014,Drive Angry,Give Me the Child,tt1502404 L3eM2_0KE2A,2011.0,7,10,2014,Drive Angry,Road Rage Rescue,tt1502404 RVM5hFMx2Kk,2011.0,10,10,2014,Drive Angry,I'm Going to Kill You,tt1502404 vT3kQdSXrMw,2011.0,3,10,2014,Drive Angry,High Speed Banter,tt1502404 cr-rgM1-wXs,2011.0,1,10,2014,Drive Angry,Hell Walks the Earth,tt1502404 a_nd6odxaHI,2011.0,8,10,2014,Drive Angry,Hydrogen Truck Bomb,tt1502404 sPZ2Ukl7EPU,2011.0,1,9,2014,Bully,Enough Was Enough,tt1682181 -TuZo-mugDw,2011.0,3,9,2014,Bully,Isolated and Hated,tt1682181 -iM3hKlLS5E,2011.0,2,9,2014,Bully,Bus Stop Bullies,tt1682181 xRT4EyI63jw,2011.0,4,9,2014,Bully,Target On His Back,tt1682181 lyrv1rNWg0o,2011.0,5,9,2014,Bully,I Want to Become the,tt1682181 YbABtps7aY0,2011.0,8,9,2014,Bully,Most Devoted Friend,tt1682181 TVMg2iM-XQg,2011.0,9,9,2014,Bully,Stand for the Silent,tt1682181 l3vcMU002rk,2011.0,7,9,2014,Bully,Numb,tt1682181 7y8pbljhMQs,2011.0,6,9,2014,Bully,Brink of Violence,tt1682181 iK6cDwd3yH4,2012.0,10,10,2014,What to Expect When You're Expecting,One Baby Out,tt1586265 GhisL6dCqV8,2012.0,9,10,2014,What to Expect When You're Expecting,Baby Lady Meltdown,tt1586265 yNkcLZ0BPuc,2012.0,7,10,2014,What to Expect When You're Expecting,Drop The Pig,tt1586265 mokXxWsIsWg,2012.0,5,10,2014,What to Expect When You're Expecting,No Blanks in This Pistol,tt1586265 F_3zkj4QVvA,2012.0,4,10,2014,What to Expect When You're Expecting,Do You Have a Wedding Photo?,tt1586265 9d8VhjIG6No,2012.0,3,10,2014,What to Expect When You're Expecting,I'm Gonna Kiss You,tt1586265 Jx401J_oG2I,2012.0,2,10,2014,What to Expect When You're Expecting,The Great Big Pig Truck,tt1586265 M5IO69jDb2M,2012.0,1,10,2014,What to Expect When You're Expecting,Celebrity Dance Factor,tt1586265 AEhitq9yTss,2012.0,6,10,2014,What to Expect When You're Expecting,Man Play Date,tt1586265 EPCFcnp0R3M,2012.0,8,10,2014,What to Expect When You're Expecting,Golf Carting,tt1586265 uztZUqKrHVo,2012.0,9,10,2014,The Possession,Jewish Exorcism,tt0431021 aJHRyOrRnQk,2012.0,10,10,2014,The Possession,Demonic Expulsion,tt0431021 oY0IQEEQ35g,2012.0,8,10,2014,The Possession,The Demon Within,tt0431021 LZhbH4pHMQ8,2012.0,7,10,2014,The Possession,Toothless,tt0431021 qGf3--y_rcQ,2012.0,6,10,2014,The Possession,Em's Not Here!,tt0431021 4SD245xSSVk,2012.0,5,10,2014,The Possession,Who Are You?,tt0431021 CuAXqRNpFdo,2012.0,4,10,2014,The Possession,The Power of the Box,tt0431021 Mmcr5WLNtZA,2012.0,1,10,2014,The Possession,Fork You,tt0431021 D-QqctD6nCw,2012.0,3,10,2014,The Possession,Hand to Mouth,tt0431021 d5MJBYofzhs,2012.0,2,10,2014,The Possession,Moths,tt0431021 qYxJ5YvIJX4,2012.0,8,8,2014,The Expendables 2,Ross vs. Vilain,tt1764651 _gb6yX-Uiqk,2012.0,7,8,2014,The Expendables 2,Shooting Gallery,tt1764651 fpqwsexDM0I,2012.0,3,8,2014,The Expendables 2,The Lone Wolf,tt1764651 8X26PR7abAU,2012.0,2,8,2014,The Expendables 2,The Pet of Satan,tt1764651 _P6ywXKM8kc,2012.0,6,8,2014,The Expendables 2,I'm Back!,tt1764651 rlXL9FlYW8k,2012.0,5,8,2014,The Expendables 2,Boom Time,tt1764651 et7jz9CSPqo,2012.0,1,8,2014,The Expendables 2,Trench Warfare,tt1764651 VXobEyKCykQ,2012.0,4,8,2014,The Expendables 2,Rest in Pieces,tt1764651 rL1VrbSK0IA,2012.0,11,11,2014,The Cabin in the Woods,Giant Evil Gods Scene,tt1259521 43DN-b_k4ZU,2012.0,4,11,2014,The Cabin in the Woods,Sex in the Woods Scene,tt1259521 tdMQZ0g9ykE,2012.0,10,11,2014,The Cabin in the Woods,Killer Klown and the Merman Scene,tt1259521 a0dkF8CZxks,2012.0,9,11,2014,The Cabin in the Woods,Let's Get This Party Started Scene,tt1259521 ufF5p8VBsVk,2012.0,8,11,2014,The Cabin in the Woods,Down the Elevator Scene,tt1259521 qb4e_GJzmrI,2012.0,7,11,2014,The Cabin in the Woods,Tequila is My Lady Scene,tt1259521 S-xuQp2fW7I,2012.0,6,11,2014,The Cabin in the Woods,Stay Calm! Scene,tt1259521 ZGcMRCaBh_s,2012.0,5,11,2014,The Cabin in the Woods,A Reality T.V. Show Scene,tt1259521 Io8nlxyMTd8,2012.0,2,11,2014,The Cabin in the Woods,Speaker Phone Scene,tt1259521 xwN0ZIe-cG8,2012.0,1,11,2014,The Cabin in the Woods,Marty the Stoner Scene,tt1259521 bjqjgoiV6BQ,2012.0,3,11,2014,The Cabin in the Woods,Truth or Dare Scene,tt1259521 jE5w-Jl5BSE,2012.0,7,7,2014,Step Up Revolution,Mob Power,tt1800741 b3lLWO2d7b0,2012.0,5,7,2014,Step Up Revolution,Corporate Flashmob,tt1800741 5RMx6st2-js,2012.0,6,7,2014,Step Up Revolution,The Mob Revealed,tt1800741 ElyptgRxg0M,2012.0,2,7,2014,Step Up Revolution,Sexy Dance-Off,tt1800741 HbWxE7l4F3g,2012.0,4,7,2014,Step Up Revolution,Break the Rules,tt1800741 SJZ_LT4GwQE,2012.0,3,7,2014,Step Up Revolution,Art Show,tt1800741 vtxo451I_Qk,2012.0,1,7,2014,Step Up Revolution,Let's Go,tt1800741 2myyH9c7mYM,2012.0,9,10,2014,Lawless,I Gotta Watch You Die Again,tt1212450 Xvs1TPM9g2s,2012.0,10,10,2014,Killing Them Softly,American Dream,tt1764234 DogM3vTZsuo,2012.0,3,9,2014,Safe,Suicide Prevention,tt1599348 KmlUAuGhy24,2012.0,2,9,2014,Safe,Kidnapping and Corruption,tt1599348 cxFXMll7PWI,2012.0,1,9,2014,Safe,Eyes On You,tt1599348 5D7JRwROZ0E,2012.0,9,9,2014,Safe,We Save Each Other,tt1599348 YI02lc3SxXs,2012.0,7,9,2014,Safe,Pray,tt1599348 eCu_yXPkwGc,2012.0,6,9,2014,Safe,Hotel Shootout,tt1599348 CQlI4zJnxho,2012.0,5,9,2014,Safe,Car Chase Chaos,tt1599348 5-MjWWLPdqE,2012.0,4,9,2014,Safe,The Garbage Collector,tt1599348 nEFAuOF_8YQ,2012.0,8,9,2014,Safe,Casino Raid,tt1599348 jgOMHLuBup4,2012.0,9,9,2014,Man on a Ledge,Leap of Faith,tt1568338 m6eVFDJA9EM,2012.0,8,9,2014,Man on a Ledge,You Lose,tt1568338 pyvthgZdQhc,2012.0,7,9,2014,Man on a Ledge,High Tension,tt1568338 6krgl6GpIbM,2012.0,6,9,2014,Man on a Ledge,I'm Stealing the Diamond,tt1568338 BYh-iVr55EA,2012.0,5,9,2014,Man on a Ledge,The Red Wire,tt1568338 5tMAe05kTXo,2012.0,3,9,2014,Man on a Ledge,Cash Grab,tt1568338 RZ9Od4LBqDg,2012.0,2,9,2014,Man on a Ledge,Action News,tt1568338 HrK6dbGxq-E,2012.0,1,9,2014,Man on a Ledge,High Rise Decoy,tt1568338 S85RSn20wJ0,2012.0,4,9,2014,Man on a Ledge,Sex and Suspicion,tt1568338 9cR2Rh00ndA,2012.0,2,10,2014,Lawless,Floyd Banner,tt1212450 NKaENwBlGFQ,2012.0,8,10,2014,Lawless,Moonshine Raid,tt1212450 59ZImWWRR50,2012.0,3,10,2014,Lawless,Special Deputy Rakes,tt1212450 OS8NUnMpllc,2012.0,5,10,2014,Lawless,Did You Put Gas In The Truck?,tt1212450 5-Al98JQSUM,2012.0,4,10,2014,Lawless,Church Hymn,tt1212450 FkoI5jde2es,2012.0,7,10,2014,Lawless,Going for a Ride,tt1212450 -PAIOy41SjQ,2012.0,6,10,2014,Lawless,White Lightning,tt1212450 Vkrb_0DiD4E,2012.0,1,10,2014,Lawless,Maggie Beauford,tt1212450 XnEKbUbww9s,2012.0,10,10,2014,Lawless,Bridge Shootout,tt1212450 qX0rYjUdFik,2012.0,6,10,2014,Killing Them Softly,Kill Them Softly,tt1764234 h1q5X5asH7c,2012.0,4,10,2014,Killing Them Softly,The Man Comes Around,tt1764234 C7Y3b732UVw,2012.0,2,10,2014,Killing Them Softly,Frankie & Russell,tt1764234 XX8y_mQIewU,2012.0,1,10,2014,Killing Them Softly,Dillon Interrogates Markie,tt1764234 YBmz0YGT2kI,2012.0,7,10,2014,Killing Them Softly,Mickey,tt1764234 ve1Brtly9Y4,2012.0,5,10,2014,Killing Them Softly,Heroin,tt1764234 pbd1pcdHRVE,2012.0,3,10,2014,Killing Them Softly,Poker Heist,tt1764234 WTtAAYgzMjo,2012.0,9,10,2014,Killing Them Softly,Killing Johnny Amato,tt1764234 c6TNgqIAYyE,2012.0,8,10,2014,Killing Them Softly,Mickey Can't Do It,tt1764234 Ux4y_2RNi_E,2012.0,9,12,2014,Gone,Don't You Come Back Here,tt1838544 HUcO7rqSLEw,2012.0,12,12,2014,Gone,All in My Head,tt1838544 Bt_VjoF2lGo,2012.0,11,12,2014,Gone,The Hole,tt1838544 GWrQ2H3LhI4,2012.0,10,12,2014,Gone,How Did You Escape?,tt1838544 ocVeenCXGaM,2012.0,7,12,2014,Gone,Wanna Make Some Money?,tt1838544 QW1kAlnQLd4,2012.0,6,12,2014,Gone,Shots Fired,tt1838544 8PDbRr_7bI8,2012.0,4,12,2014,Gone,The Locksmith,tt1838544 wbrTwrgyOrg,2012.0,3,12,2014,Gone,I'll Sleep When He's Dead,tt1838544 Yh7Qz4fiKxw,2012.0,5,12,2014,Gone,I Want to Help You,tt1838544 OkrJTqGkSWI,2012.0,2,12,2014,Gone,The Only One Who Got Away,tt1838544 -ayGBx5Igyo,2012.0,8,12,2014,Gone,Chased by the Cops,tt1838544 clslrqHA26U,2012.0,1,12,2014,Gone,Without a Trace,tt1838544 eApCe2z67Gk,2012.0,9,11,2014,Dredd,Wait,tt1343727 UlT2oHT2RGY,2012.0,7,11,2014,Dredd,I Am the Law,tt1343727 26mzWqdJnis,2012.0,3,11,2014,Dredd,Raid,tt1343727 dv_26E-a_mA,2012.0,2,11,2014,Dredd,Hot Shot,tt1343727 d5bK1xSr2dY,2012.0,11,11,2014,Dredd,"Judge, Jury, and Executioner",tt1343727 uNqwzdw5uKE,2012.0,10,11,2014,Dredd,Ma-Ma's Last Stand,tt1343727 yK3DX2F0JWQ,2012.0,8,11,2014,Dredd,Corrupt Judge,tt1343727 3mN85wFz_Vk,2012.0,4,11,2014,Dredd,Slum Shootout,tt1343727 O2U0qOzibf4,2012.0,6,11,2014,Dredd,Mind Games,tt1343727 SG7voVeJRC0,2012.0,1,11,2014,Dredd,Take Down,tt1343727 OLkKMHRUB9A,2012.0,5,11,2014,Dredd,Firepower,tt1343727 iVojYtEpstY,2012.0,8,9,2014,Bachelorette,500 Miles to Hook-Up,tt1920849 n39lwOfvb2E,2012.0,6,9,2014,Bachelorette,The Wedding Dress,tt1920849 FdMEJqe55dc,2012.0,5,9,2014,Bachelorette,Male Stripper,tt1920849 lqbzUCMEK0o,2012.0,2,9,2014,Bachelorette,Oral Theory,tt1920849 p4t0OpJJ0MI,2012.0,7,9,2014,Bachelorette,Harder,tt1920849 5Gmliz8GsG4,2012.0,9,9,2014,Bachelorette,A Perfect Wedding,tt1920849 WlwLa7Jh3HY,2012.0,3,9,2014,Bachelorette,Low-Key Girls,tt1920849 hML3kvOUVZU,2012.0,4,9,2014,Bachelorette,Rehearsal Dinner Speeches,tt1920849 4ln7gkWQXys,2012.0,1,9,2014,Bachelorette,Becky's Getting Married,tt1920849 cQHAH3t5oJI,2013.0,1,9,2014,Scary Movie 5,Charlie Sheen and Lindsay Lohan Scene,tt0795461 YwzGw_SMwAc,2013.0,7,9,2014,Scary Movie 5,Girl on Teddy Experience Scene,tt0795461 9NKu_Kyi1qY,2013.0,2,9,2014,Scary Movie 5,Freaky Crab Children Scene,tt0795461 HM1U0PSGMn0,2013.0,3,9,2014,Scary Movie 5,Apes and Real Housewives Scene,tt0795461 CkNjOs-7Sv8,2013.0,5,9,2014,Scary Movie 5,The Psychic Scene,tt0795461 CkW8xFVXPqI,2013.0,9,9,2014,Scary Movie 5,Mama Is Back Scene,tt0795461 B5D_aDaMqkk,2013.0,4,9,2014,Scary Movie 5,Black Swan Stripper Scene,tt0795461 7rTb-n96yS8,2013.0,8,9,2014,Scary Movie 5,Cabin in the Woods Scene,tt0795461 hnXqavr1ZMQ,2013.0,6,9,2014,Scary Movie 5,Rise of the Apes Scene,tt0795461 WBuXu-20LZs,2013.0,1,10,2014,Lee Daniels' The Butler,"It's Their World, We Just Live In It",tt1327773 Q92raMBaQ4o,2013.0,8,10,2014,Lee Daniels' The Butler,The Importance of the Black Butler,tt1327773 rkD3FLsiUiU,2013.0,7,10,2014,Lee Daniels' The Butler,They Killed Our Man,tt1327773 UtS2awRAf5E,2013.0,5,10,2014,Lee Daniels' The Butler,I Need My Husband,tt1327773 7_AiHZa026w,2013.0,4,10,2014,Lee Daniels' The Butler,We're Fighting for Our Rights,tt1327773 rft59wPnoqk,2013.0,3,10,2014,Lee Daniels' The Butler,What Are Your Biggest Concerns?,tt1327773 lj66AQ2uzug,2013.0,2,10,2014,Lee Daniels' The Butler,I'm Cecil Gaines,tt1327773 yYCW5Eo72VU,2013.0,10,10,2014,Lee Daniels' The Butler,Asking for a Raise,tt1327773 buOVuDwsbOM,2013.0,9,10,2014,Lee Daniels' The Butler,Everything You Have,tt1327773 8FX2FZ0fFlo,2013.0,6,10,2014,Lee Daniels' The Butler,Change of Heart,tt1327773 CHV9FhjbFLQ,2013.0,10,10,2014,Fruitvale Station,Fight on the Subway,tt2334649 sytZ2amRbpk,2013.0,1,10,2014,Fruitvale Station,Helping Katie,tt2334649 A6ZOCb2gaqs,2013.0,3,10,2014,Fruitvale Station,Stray Dog,tt2334649 SIwi5PRNTfg,2013.0,6,10,2014,Fruitvale Station,Just Trying to Not Screw Up,tt2334649 PwuTr5z4Bec,2013.0,5,10,2014,Fruitvale Station,Day Care Center,tt2334649 QRACf_ehgis,2013.0,4,10,2014,Fruitvale Station,The Last Time I Visit You,tt2334649 KhAtVQuAjVc,2013.0,8,10,2014,Fruitvale Station,You Got a Bathroom?,tt2334649 26ISV0QFWPU,2013.0,2,10,2014,Fruitvale Station,I Need This Job,tt2334649 2tcG49k5vdw,2013.0,9,10,2014,Fruitvale Station,We Had Nothing,tt2334649 BXa-BfF9qGc,2013.0,7,10,2014,Fruitvale Station,"Baby, I'm Gonna Be Fine",tt2334649 RSUmB80GqDM,1976.0,9,10,2014,Rocky,Creed Gets Knocked Down,tt0075148 _YYmfM2TfUA,1976.0,8,10,2014,Rocky,Training Montage,tt0075148 jK4lxjvrhHs,1976.0,1,10,2014,Rocky,Date at the Ice Rink,tt0075148 fxriLTLhyyY,1976.0,7,10,2014,Rocky,Paulie Breaks Down,tt0075148 pjX20gL-rnc,1976.0,6,10,2014,Rocky,The Meat Locker,tt0075148 Tc7H9s4PdSI,1976.0,10,10,2014,Rocky,Adrian!,tt0075148 4NLUpuo3HGo,1976.0,5,10,2014,Rocky,Women Weaken Legs,tt0075148 Lxfe0cKOx3g,1976.0,3,10,2014,Rocky,Pain and Experience,tt0075148 g6mF_yokyiA,1976.0,2,10,2014,Rocky,'s Wasted Talent,tt0075148 snqs566G_Zg,1976.0,4,10,2014,Rocky,Breakfast of Champions,tt0075148 bRilciIycJQ,2010.0,11,11,2014,Red,Mad Bomber,tt1245526 3rFMyjGI4cg,2010.0,8,11,2014,Red,Who Fired the Shot?,tt1245526 buH0CUEx-_Q,2010.0,6,11,2014,Red,"Bad Move, Grandpa",tt1245526 qyMVXU7qMGw,2010.0,5,11,2014,Red,KGB and CIA,tt1245526 6HXgPGZcXe4,2010.0,3,11,2014,Red,Why Are You Trying to Kill Me?,tt1245526 iiMNb99KaYk,2010.0,9,11,2014,Red,Chaos in the Parking Garage,tt1245526 5ijEAMP_zW4,2010.0,7,11,2014,Red,I'm the Bad Guy,tt1245526 eXHdqulNiBs,2010.0,4,11,2014,Red,Old Man My Ass,tt1245526 M96f_K13joo,2010.0,1,11,2014,Red,Moses and Mayhem,tt1245526 JDxlbYa_THM,2010.0,2,11,2014,Red,You Really Are CIA,tt1245526 FpKhobkTOyY,2010.0,10,11,2014,Red,Secret Service Shootout,tt1245526 cV0Db20loyg,1991.0,11,11,2014,Rambling Rose,Over My Dead Body,tt0102753 VjdgqT_xtEo,1991.0,2,11,2014,Rambling Rose,Rose Arrives,tt0102753 2WGvnOdTfGw,1991.0,4,11,2014,Rambling Rose,Two Orphans,tt0102753 Y-YsM2a_N5Y,1991.0,9,11,2014,Rambling Rose,Get the Hell Outta Here,tt0102753 nuUuXO8D9mo,1991.0,10,11,2014,Rambling Rose,A Human Girl Person,tt0102753 Fjl9b_vVVnk,1991.0,7,11,2014,Rambling Rose,You're Looking... Pretty,tt0102753 qHD4H60rCfA,1991.0,6,11,2014,Rambling Rose,Curiosity Killed the Cat,tt0102753 iaIYk3DZKwE,1991.0,1,11,2014,Rambling Rose,Nostalgia for the Old South,tt0102753 SeqT3GyDb2k,1960.0,8,12,2014,The Apartment,"That's the Way It Crumbles, Cookie-Wise",tt0053604 4L62b92Prk0,2004.0,8,12,2014,Soul Plane,Racial Profile,tt0367085 34_4OMd4I2I,1991.0,8,11,2014,Rambling Rose,Dixie Dame,tt0102753 3sr3yQ4mGbs,1991.0,3,11,2014,Rambling Rose,Graceful as a Capital Letter 'S',tt0102753 rZsLiY_Yyhk,1991.0,5,11,2014,Rambling Rose,Just Once,tt0102753 cDI9o67o7bo,1971.0,6,8,2014,McCabe & Mrs. Miller,Kid Kills Cowboy,tt0067411 Orwz44-_XSg,2005.0,3,7,2014,Leonard Cohen: I'm Your Man,Winter Lady,tt0478197 3iZIOZrzbYo,1996.0,1,8,2014,Multiplicity,Doug is Cloned,tt0117108 7X47UIYChis,2000.0,7,11,2014,Jailbait,Dream Sequence,tt0226009 NzzSr5StuCE,2000.0,6,11,2014,Jailbait,He Knocked Up My Baby,tt0226009 yzSfVpQ-1ns,2000.0,2,11,2014,Jailbait,A Moment of Weakness,tt0226009 0uYmyOuu5xs,2000.0,4,11,2014,Jailbait,Blue Means I'm Pregnant,tt0226009 oMvMqeThVPk,2000.0,9,11,2014,Jailbait,Meet Chuck Clopperman,tt0226009 EYO__x8qn2w,2000.0,1,11,2014,Jailbait,Waiting Until We're Married,tt0226009 CrFsSJPnHj4,2000.0,3,11,2014,Jailbait,Lustful Abyss,tt0226009 7qfgWGJpbgA,2000.0,8,11,2014,Jailbait,Feels Like Dead Man Walking,tt0226009 vNgB9PxOAdI,2000.0,11,11,2014,Jailbait,Guilty!,tt0226009 m5Qn-tIKwD8,2000.0,10,11,2014,Jailbait,It's All About Perception,tt0226009 RNMZD_WiAvU,2010.0,8,11,2014,Four Lions,Squat Jogs,tt1341167 Hg_aGQjwjmo,2000.0,5,11,2014,Jailbait,A Baby Is a Gift from God,tt0226009 kSKnJn8gksc,2010.0,4,11,2014,Four Lions,"Would You Kill Me, Brother?",tt1341167 awHrfxqEofc,2010.0,3,11,2014,Four Lions,Islam Is Finished,tt1341167 FqJJfBeuxUE,2010.0,6,11,2014,Four Lions,Twelve Bottles of Bleach,tt1341167 ou4WG7HhFZM,2010.0,1,11,2014,Four Lions,Waj's Terrorist Video,tt1341167 zWzRkf2uwQk,2010.0,11,11,2014,Four Lions,Is a Wookie a Bear?,tt1341167 uVNCyp4Verc,2010.0,7,11,2014,Four Lions,Drone Strike,tt1341167 5WnobKuNaO4,2010.0,9,11,2014,Four Lions,Fessal Takes Out a Sheep,tt1341167 1NfrTfIPl9Q,2010.0,5,11,2014,Four Lions,Rapping Suicide Bomber,tt1341167 NEcaoimX3qY,2010.0,2,11,2014,Four Lions,Eat Your SIM Cards,tt1341167 wEvrmiK_WlY,2010.0,10,11,2014,Four Lions,You Killed the Special Needs Donkey!,tt1341167 PdmE-Ga0f5s,2005.0,11,11,2014,Waiting...,Mitch Loses It,tt0348333 M3j9drozqlM,2005.0,6,11,2014,Waiting...,Amazing Sexual Prowess,tt0348333 6Cz2mIx0y5k,2005.0,8,11,2014,Waiting...,Words of Wisdom,tt0348333 Ul0qToCSdfQ,2005.0,10,11,2014,Waiting...,Calvin Takes a Piss,tt0348333 jvAZ0bjChvk,2005.0,5,11,2014,Waiting...,Whipped,tt0348333 UMjzEWOWXk0,2005.0,4,11,2014,Waiting...,Seasoning the Food,tt0348333 2JHbw-BXN5s,2005.0,9,11,2014,Waiting...,Shenaniganz,tt0348333 3dzw4t_dB5M,2005.0,1,11,2014,Waiting...,This Little Game We Play,tt0348333 ckremwNAupg,2005.0,3,11,2014,Waiting...,Hornball Advice,tt0348333 U1usNHIi-L8,2005.0,2,11,2014,Waiting...,Monty's Mom,tt0348333 QVw-cRLFWOI,2005.0,7,11,2014,Waiting...,Naomi's Rage,tt0348333 i1hu0ErzPc8,2003.0,9,11,2014,High Tension,Barbed Wire Club,tt0338095 qUwfcycK5X0,2003.0,4,11,2014,High Tension,Hide and Seek,tt0338095 KSOhzWTWuxA,2003.0,3,11,2014,High Tension,Home Invasion,tt0338095 UPnwEYjEMP8,2003.0,5,11,2014,High Tension,Escape,tt0338095 h6nVYkTWTZw,2003.0,7,11,2014,High Tension,Into the Woods,tt0338095 1nIPSxCzfVY,2003.0,2,11,2014,High Tension,Someone's at the Door,tt0338095 r8759Q-oR3E,2003.0,8,11,2014,High Tension,Marie vs. Le Tueur,tt0338095 0E4d_pXA7dI,2003.0,1,11,2014,High Tension,Severed Head,tt0338095 Z97maI23aNg,2003.0,10,11,2014,High Tension,We Got Ourselves a Homicide,tt0338095 vVzx25uDVaM,2003.0,6,11,2014,High Tension,Dissatisfied Customer,tt0338095 bzRIeXSIS_w,2004.0,5,10,2014,A Very Long Engagement,Manech and Mathilde,tt0344510 ymWU7EuLXNc,2003.0,11,11,2014,High Tension,Concrete Saw,tt0338095 YGenu4ZFnmQ,2004.0,9,10,2014,A Very Long Engagement,Vengeance Is Pointless,tt0344510 MIxtdrML0rE,2004.0,4,10,2014,A Very Long Engagement,Elodie's Story,tt0344510 o3sj7nGzC64,2004.0,10,10,2014,A Very Long Engagement,She Looks At Him,tt0344510 AuF1AN-ugM0,2004.0,8,10,2014,A Very Long Engagement,The Battlefield,tt0344510 DYfo3nt-O_U,2004.0,2,10,2014,A Very Long Engagement,Mathilde's Story,tt0344510 r3Owzt1HZkY,2004.0,7,10,2014,A Very Long Engagement,Tina Lombardi's Revenge,tt0344510 2N73a3SRqyE,2004.0,6,10,2014,A Very Long Engagement,Race to the Bend,tt0344510 sjPnuqcrL70,2004.0,1,10,2014,A Very Long Engagement,Her Heart In His Hand,tt0344510 jnuQMlB2uyw,2009.0,5,12,2014,I Am Love,Pursuing Antonio,tt1226236 gacB8xCQ09s,2004.0,3,10,2014,A Very Long Engagement,Careful With That,tt0344510 BaccIrZHkno,2009.0,3,12,2014,I Am Love,An Excellent Meal,tt1226236 dqbddxpASRk,2009.0,4,12,2014,I Am Love,Betta's Lover,tt1226236 tojv7SZkBOc,2009.0,12,12,2014,I Am Love,The Next Recchi,tt1226236 ZjC0F-xFL5s,2009.0,8,12,2014,I Am Love,Wordless Seduction,tt1226236 SYM7Js4_I_4,2009.0,2,12,2014,I Am Love,I Have Been With a Girl,tt1226236 0tyZ_m6t2Qs,2009.0,7,12,2014,I Am Love,Antonio's Daydream,tt1226236 96T06Ema-Fc,2009.0,10,12,2014,I Am Love,You're Nothing to Me,tt1226236 Gtg2d74VHH4,2009.0,1,12,2014,I Am Love,It Will Take Two Men to Replace Me,tt1226236 CdMDIBgp638,2009.0,11,12,2014,I Am Love,You Don't Exist,tt1226236 y1O2kicdfzo,2009.0,9,12,2014,I Am Love,Emma and Antonio,tt1226236 ktXm7CRXbsE,1955.0,3,10,2014,Marty,A Big Night of Heartache,tt0048356 QUVXO7h3-mQ,2009.0,6,12,2014,I Am Love,The Affair Begins,tt1226236 ns_HTpxc-g4,1955.0,7,10,2014,Marty,Money in the Bank,tt0048356 O3bTMw3bb5o,1955.0,2,10,2014,Marty,A Little Late for a Date,tt0048356 l6e1M2d4BJ0,1955.0,6,10,2014,Marty,I Have a Feeling About You,tt0048356 TzAnOnVKwzk,1955.0,4,10,2014,Marty,We Ain't Such Dogs,tt0048356 lQbw0_5O8CQ,1955.0,9,10,2014,Marty,College Girls Are One Step From the Street,tt0048356 LyszyKhpc88,1955.0,1,10,2014,Marty,What Do You Feel Like Doin' Tonight?,tt0048356 1fNnMtn7BiU,1955.0,8,10,2014,Marty,All I Wanted Was a Lousy Kiss,tt0048356 zGa7K2HO1-Y,1955.0,10,10,2014,Marty,I Got Something Good Here,tt0048356 ecmRksfy--I,1955.0,5,10,2014,Marty,I Got Five Bulls Eyes,tt0048356 3D2hC2C_Wpw,2006.0,8,12,2014,Man About Town,Tom Cruise's Retarded Cousin,tt0420757 hwu3LxjW22o,2006.0,9,12,2014,Man About Town,Where's My Journal?,tt0420757 weqGiMyn8AU,2006.0,12,12,2014,Man About Town,Not Wearing Any Underwear,tt0420757 tCDZOw9BoPU,2006.0,3,12,2014,Man About Town,Smooth Talker,tt0420757 tjSf6v-dztQ,2006.0,2,12,2014,Man About Town,Dig for the Truth,tt0420757 IQ4Yt16z2PY,2006.0,1,12,2014,Man About Town,Self-Exploration Technique,tt0420757 PWeRWbuEN7Q,2006.0,10,12,2014,Man About Town,Chinatown Showdown,tt0420757 -w4bcJF68u8,2006.0,5,12,2014,Man About Town,We Grew Up Together,tt0420757 z4QNCQD7LvU,2006.0,11,12,2014,Man About Town,Fish Tank Scuba Dive,tt0420757 waOQ8ECkEcQ,2006.0,6,12,2014,Man About Town,Anthony's Death,tt0420757 cuMmCpE7-pg,2006.0,7,12,2014,Man About Town,A Mailroom Coup,tt0420757 uki4lrLzRaU,1973.0,10,10,2014,Magnum Force,A Man's Got to Know His Limitations,tt0070355 WQnv22Qnp8s,1973.0,2,10,2014,Magnum Force,Never Had a Lesson,tt0070355 Blz6dosZ5oc,2006.0,4,12,2014,Man About Town,Confession,tt0420757 8kmCFBwTmGY,1973.0,8,10,2014,Magnum Force,Mail Bomb,tt0070355 -oRm-YxsEH8,1973.0,5,10,2014,Magnum Force,Shooting Competition,tt0070355 sEWuVNk2TKA,1973.0,1,10,2014,Magnum Force,A Good Man,tt0070355 TCrV8NUSTsc,1973.0,3,10,2014,Magnum Force,Stakeout Shootout,tt0070355 C8l7cD_YI4Y,1973.0,9,10,2014,Magnum Force,Motorcycle Escape,tt0070355 CQtbqB7NcXc,1973.0,4,10,2014,Magnum Force,A Friendly Neighbor,tt0070355 CgHWwYQ3XSg,1973.0,7,10,2014,Magnum Force,For Us or Against Us,tt0070355 TAkyNyQBnyo,1973.0,6,10,2014,Magnum Force,Guilty Until Proven Innocent,tt0070355 vAalnLmiZrc,2010.0,6,11,2014,Monsters,The Trees Are Infected,tt0892782 YeNQ5WEKggc,2010.0,11,11,2014,Monsters,Gentle Giants,tt0892782 _KpfRDVjsKI,2010.0,1,11,2014,Monsters,The Boss's Daughter,tt0892782 1ISntRHuJ4Y,2010.0,8,11,2014,Monsters,America From the Outside,tt0892782 w9SWbpW5bNo,2010.0,7,11,2014,Monsters,Convoy Attack,tt0892782 eF77Id3wbZQ,2010.0,5,11,2014,Monsters,The Infected Zone,tt0892782 JZsF7-7VBYs,2010.0,9,11,2014,Monsters,Crossing the Border,tt0892782 NCh2VGy8AR0,2010.0,10,11,2014,Monsters,Tentacles,tt0892782 BbYPFSGnPZs,2010.0,4,11,2014,Monsters,A Sacrifice,tt0892782 q3LxjwTz-b8,2010.0,2,11,2014,Monsters,On the Road,tt0892782 hq-jlSdx5Ck,2010.0,3,11,2014,Monsters,I Had a Really Good Time,tt0892782 tQlujXWP-5c,1996.0,8,8,2014,Multiplicity,Refreshing Cola,tt0117108 JpdTx3k0VoQ,1996.0,7,8,2014,Multiplicity,Tuck Tuck Fold,tt0117108 hm9ZzMSoPB4,1996.0,4,8,2014,Multiplicity,Picture Day,tt0117108 VAh7ZGHEp-c,1996.0,5,8,2014,Multiplicity,Rule #1,tt0117108 hSAx87qd-fs,1996.0,3,8,2014,Multiplicity,New York Time,tt0117108 NwqIdPSNr6E,1996.0,6,8,2014,Multiplicity,Meeting Number Four,tt0117108 oyYuYNnSq9E,1996.0,2,8,2014,Multiplicity,Little League Parents,tt0117108 D0rFBU7pVL4,1969.0,11,11,2014,Midnight Cowboy,Ratso Dies on the Bus to Miami,tt0064665 uKZQEDh_KAA,1969.0,4,11,2014,Midnight Cowboy,Ratso and Joe Trade Insults,tt0064665 _Z-tCU-sULA,1969.0,2,11,2014,Midnight Cowboy,I'm Walkin' Here,tt0064665 xd7SESj-nfA,1969.0,3,11,2014,Midnight Cowboy,Come on Now Don't Hit Me,tt0064665 afnlOjES53Y,1969.0,5,11,2014,Midnight Cowboy,Ratso Gets Joe a Real Job,tt0064665 3izxrCNCbUQ,1969.0,8,11,2014,Midnight Cowboy,Ratso's Dying Wish,tt0064665 X6UG7H2dcos,1969.0,1,11,2014,Midnight Cowboy,That's a Funny Thing You Mentioning Money,tt0064665 gjliVll3Uyw,1969.0,10,11,2014,Midnight Cowboy,I'm Fallin' Apart Here,tt0064665 IC2crLlclNA,1969.0,6,11,2014,Midnight Cowboy,Miami Dreaming,tt0064665 AO_944kf0RA,1969.0,9,11,2014,Midnight Cowboy,Joe and Ratso on the Bus to Florida,tt0064665 bwTe_vZ_2dg,1969.0,7,11,2014,Midnight Cowboy,Ratso and Joe Lose Their Home,tt0064665 x1dA_SM1vxE,2006.0,4,11,2014,Midnight Clear,Stealing Supplies,tt0795426 _Fw6TuACCKY,2006.0,6,11,2014,Midnight Clear,Taking Care of Someone,tt0795426 R4ODWXEmvKQ,2006.0,9,11,2014,Midnight Clear,I Got a Car,tt0795426 alvAo3qQRQE,2006.0,11,11,2014,Midnight Clear,Christmas Eve Service,tt0795426 BUAUwc7g_gY,2006.0,3,11,2014,Midnight Clear,Business Call,tt0795426 06gTnB_5-Tg,2006.0,8,11,2014,Midnight Clear,Wish Me a Merry Christmas,tt0795426 igD13c0l8Sc,2006.0,10,11,2014,Midnight Clear,Sorry About Before,tt0795426 bmIx71yf944,2006.0,1,11,2014,Midnight Clear,You're Fired,tt0795426 SiLFLIp8I14,2006.0,7,11,2014,Midnight Clear,Doing the Right Thing,tt0795426 kjx9LAJ6Wu4,2006.0,2,11,2014,Midnight Clear,Meeting with the Lawyers,tt0795426 5-kyVZ5swXE,2006.0,5,11,2014,Midnight Clear,Carolers Visit Ms. Boyle,tt0795426 cKw1b2-4aeU,1988.0,6,11,2014,Rain Man,Underwear is Underwear!,tt0095953 G4Hwsz1sQmc,1988.0,5,11,2014,Rain Man,Flying's Very Dangerous,tt0095953 DH6S0wKKGBM,1988.0,8,11,2014,Rain Man,Hot Water Burn Baby,tt0095953 kthFUFBwbZg,1988.0,4,11,2014,Rain Man,246 Toothpicks,tt0095953 wAadouGkwMQ,1988.0,9,11,2014,Rain Man,Let's Play Some Cards,tt0095953 Bp9AClR8qCY,1988.0,7,11,2014,Rain Man,One Minute to Wapner!,tt0095953 tDpyGID-qHI,1988.0,10,11,2014,Rain Man,This is Dancing,tt0095953 7zDmlkn1gbQ,1988.0,11,11,2014,Rain Man,"One for Bad, Two for Good",tt0095953 Lz-ihW8RXSM,1988.0,2,11,2014,Rain Man,Who's on First?,tt0095953 LU1A0sHWYQg,1988.0,1,11,2014,Rain Man,I'm An Excellent Driver,tt0095953 gN2ZP-q_qpc,1988.0,3,11,2014,Rain Man,You Memorized the Whole Book?,tt0095953 Xw2cUrd_Zt0,2010.0,6,11,2014,Rabbit Hole,Bad Case of the Giggles,tt0935075 O7LsLRMEg1Y,2010.0,3,11,2014,Rabbit Hole,What if There is a God?,tt0935075 qDYuDtyvVVQ,2010.0,1,11,2014,Rabbit Hole,Another Angel,tt0935075 Cbijjb5aLYo,2010.0,2,11,2014,Rabbit Hole,Not Ready,tt0935075 RgofngIgfsY,2010.0,9,11,2014,Rabbit Hole,Cinnamon Buns,tt0935075 zKWgTSNMESI,2010.0,5,11,2014,Rabbit Hole,I'm Sorry,tt0935075 RAG1b0H8nv4,2010.0,4,11,2014,Rabbit Hole,Bowling Party,tt0935075 zn9pjQIMQVQ,2010.0,11,11,2014,Rabbit Hole,Parallel Universe,tt0935075 sDB0bxWhS4A,2010.0,10,11,2014,Rabbit Hole,Carrying a Brick,tt0935075 i1jS0AMWtgg,2010.0,8,11,2014,Rabbit Hole,,tt0935075 KK2MOKkkp4M,2010.0,7,11,2014,Rabbit Hole,Something's Gotta Change,tt0935075 s_zget0Z7Xc,2004.0,4,11,2014,Pusher 2,Flesh Wound,tt0396184 fU3enCcXY80,2004.0,3,11,2014,Pusher 2,Kurt,tt0396184 lPJzoxKtSxY,2004.0,8,11,2014,Pusher 2,Domestic Violence,tt0396184 8svIExZz6Dw,2004.0,7,11,2014,Pusher 2,Wedding Toast,tt0396184 gtHCnru414Q,2004.0,5,11,2014,Pusher 2,Child Support,tt0396184 iWFpqo0_43o,2004.0,9,11,2014,Pusher 2,Ransack,tt0396184 AIHlnQOkZiU,2004.0,6,11,2014,Pusher 2,Diapers,tt0396184 RnWxwJxpDig,2004.0,10,11,2014,Pusher 2,You Make Me Sick,tt0396184 FSbcZ85iPvU,2004.0,11,11,2014,Pusher 2,Respect,tt0396184 CBP-t2AJ8M8,2004.0,2,11,2014,Pusher 2,Car Heist,tt0396184 ks2GU3XYXvM,2004.0,1,11,2014,Pusher 2,Conquer Your Fear,tt0396184 vMrWJki0r8g,2003.0,8,12,2014,Prey for Rock & Roll,Music Saved Me,tt0307351 EdDMvB9Y20o,2003.0,3,12,2014,Prey for Rock & Roll,Jacki's Birthday Dinner,tt0307351 GUclZ3JhJoM,2003.0,10,12,2014,Prey for Rock & Roll,Rock Bottom,tt0307351 dPfKQTaEcEA,2003.0,1,12,2014,Prey for Rock & Roll,Almost Forty and Still No Rock Star,tt0307351 fhGy66B0CIU,2003.0,12,12,2014,Prey for Rock & Roll,Rock & Roll Intervention,tt0307351 NJz68D8NcE0,2003.0,6,12,2014,Prey for Rock & Roll,Where's My Girlfriend?,tt0307351 6GC872xb5dI,2003.0,4,12,2014,Prey for Rock & Roll,You Ever Think About Quitting?,tt0307351 IBRvIQdd6UE,2003.0,11,12,2014,Prey for Rock & Roll,Opening the Envelope,tt0307351 fjnGwAftnDE,2003.0,5,12,2014,Prey for Rock & Roll,Animal Comes Clean,tt0307351 UwslgPscal8,2003.0,2,12,2014,Prey for Rock & Roll,What's Your Problem?,tt0307351 EVPxub5VJMg,2003.0,7,12,2014,Prey for Rock & Roll,Tattooed Revenge,tt0307351 rKjMBYlak2M,2003.0,9,12,2014,Prey for Rock & Roll,Every Six Minutes,tt0307351 V1dPrmENIVg,2009.0,8,10,2014,World's Greatest Dad,Kyle Was Kinda Dumb,tt1262981 ccyTJYkiGqE,2009.0,5,10,2014,World's Greatest Dad,Poetry Class,tt1262981 WOLfIBsXq4s,2009.0,2,10,2014,World's Greatest Dad,I Hate Music,tt1262981 pwlgVnituhw,2009.0,7,10,2014,World's Greatest Dad,A Big Spaz,tt1262981 kNOz8Bcb9v0,2009.0,3,10,2014,World's Greatest Dad,Kissing in the Stairwell,tt1262981 Nx0Qte8Wfgg,2009.0,10,10,2014,World's Greatest Dad,He Was Also a Douche Bag,tt1262981 hpfufHZI0yQ,2009.0,1,10,2014,World's Greatest Dad,Do You Knock?,tt1262981 QaKCmtbKf8g,2009.0,6,10,2014,World's Greatest Dad,Are You Stoned?,tt1262981 dEfBtVYzWks,2009.0,4,10,2014,World's Greatest Dad,Europeans Are Much More Broad-Minded,tt1262981 W1N-a0SDw0k,2009.0,9,10,2014,World's Greatest Dad,Keep Your Pants On,tt1262981 8ExIPKUEZ-4,2008.0,2,9,2014,Witless Protection,Men in Black,tt1001562 A7iVMwpaYmk,2008.0,7,9,2014,Witless Protection,Airport Security,tt1001562 edDfsrTAI1k,2008.0,9,9,2014,Witless Protection,Dead Enough,tt1001562 k4WEx4-yh-g,2008.0,1,9,2014,Witless Protection,Quick-Witted,tt1001562 f3mAVsy7WbM,2008.0,5,9,2014,Witless Protection,No Credit Card,tt1001562 jSbmgZG-0Ng,2008.0,3,9,2014,Witless Protection,Stop this Truck!,tt1001562 poQL9Yw2kNI,2008.0,8,9,2014,Witless Protection,Body Cavity Search,tt1001562 OywTdKpHE8M,2002.0,2,10,2014,Windtalkers,Hold The Position,tt0245562 NWO-iP_Sbtk,2008.0,4,9,2014,Witless Protection,Nice Beaver,tt1001562 ajj5MxJEJ1Q,2008.0,6,9,2014,Witless Protection,It's a Dud,tt1001562 UniUFSan3Bg,2002.0,8,10,2014,Windtalkers,I Blew Him Up,tt0245562 IwC3OUA8_s0,2002.0,1,10,2014,Windtalkers,"Farewell, Home",tt0245562 H3h2opMD6rM,2002.0,9,10,2014,Windtalkers,The Death of Sgt. Enders,tt0245562 ZsL0rDZPGb8,2002.0,7,10,2014,Windtalkers,Yazhee Fights Chick,tt0245562 qsdgNxuhPgc,2002.0,3,10,2014,Windtalkers,Yahzee Meets Ender,tt0245562 hQogMjsahWU,2002.0,4,10,2014,Windtalkers,Camp Poker Game,tt0245562 ah-M2AYI4Ac,2002.0,10,10,2014,Windtalkers,Navajo Ceremony,tt0245562 zQHhbhtpJ3M,2002.0,6,10,2014,Windtalkers,Call in the Code,tt0245562 hrZxBMTQO0c,2002.0,5,10,2014,Windtalkers,"Saipan, June '44",tt0245562 fSOh-vTjWk4,1995.0,6,10,2014,Wild Bill,This Ain't About No Time Piece,tt0114938 nZy7fW9IO0s,1995.0,1,10,2014,Wild Bill,Saloon Brawl,tt0114938 zCfnEpand6k,1995.0,8,10,2014,Wild Bill,Forgive Him,tt0114938 XAORGJKfEcU,1995.0,3,10,2014,Wild Bill,Wheelchair Showdown,tt0114938 y4nFzow4tLQ,1995.0,7,10,2014,Wild Bill,"Make Your Move, Jack",tt0114938 7iWEk7k_kio,1995.0,9,10,2014,Wild Bill,"Goodbye, Jack",tt0114938 gm2PdV3UPfc,1995.0,4,10,2014,Wild Bill,Threatening to Kill Bill,tt0114938 hdt5QAIC81Q,1995.0,5,10,2014,Wild Bill,McCall's Mother,tt0114938 8MnF5ok8llg,1995.0,2,10,2014,Wild Bill,Friendly Fire,tt0114938 mb2bzOdITdU,1995.0,10,10,2014,Wild Bill,A Sentimental Gesture,tt0114938 1eQh2-2W_1Q,2008.0,5,11,2014,What Just Happened,Stomach Disorder,tt0486674 yQAICCf1oug,2008.0,9,11,2014,What Just Happened,Bruce's Eulogy,tt0486674 ZCYbGGfwbfk,2008.0,2,11,2014,What Just Happened,Final Cut,tt0486674 QslzL-DhXDY,2008.0,11,11,2014,What Just Happened,Life's Not Bad,tt0486674 8bAvbwlCsHU,2008.0,1,11,2014,What Just Happened,Test Screening,tt0486674 QgYPzXlF1xM,2008.0,8,11,2014,What Just Happened,He Touched Me,tt0486674 IyT1ogi3fE0,2008.0,4,11,2014,What Just Happened,Beard Tantrum,tt0486674 1US29KtfPrQ,2008.0,10,11,2014,What Just Happened,Funeral Fight,tt0486674 obbz_0P1wVs,2008.0,6,11,2014,What Just Happened,Happy Ending,tt0486674 iGAwKHHaRAA,2008.0,3,11,2014,What Just Happened,In the Cutting Room,tt0486674 G92KKZEiWy8,2008.0,7,11,2014,What Just Happened,Therapy Session,tt0486674 GJgKIC581V0,2010.0,11,12,2014,Tucker and Dale vs Evil,Best Friends Forever,tt1465522 bXq9Pa9Txg8,2010.0,7,12,2014,Tucker and Dale vs Evil,Walk it Off,tt1465522 WSoMlpQ6yz8,2010.0,5,12,2014,Tucker and Dale vs Evil,The Wood Chipper,tt1465522 poZubOWaras,2010.0,10,12,2014,Tucker and Dale vs Evil,Making Progress,tt1465522 zKSDHbVKY7Q,2010.0,12,12,2014,Tucker and Dale vs Evil,Killer Hillbilly,tt1465522 IX3hYYzIyoY,2010.0,8,12,2014,Tucker and Dale vs Evil,Pure Evil,tt1465522 gYTKHHhPk08,2010.0,2,12,2014,Tucker and Dale vs Evil,Vacation Home,tt1465522 JJ0PocoUWVI,2010.0,1,12,2014,Tucker and Dale vs Evil,Just Smile and Laugh,tt1465522 TdOMp1LuvJg,2010.0,9,12,2014,Tucker and Dale vs Evil,This Vacation Sucks,tt1465522 AdGVl3AP7fw,2010.0,4,12,2014,Tucker and Dale vs Evil,Run For Your Lives!,tt1465522 MjC0kVIUGYU,2010.0,3,12,2014,Tucker and Dale vs Evil,We Got Your Friend!,tt1465522 Y4yQoJ-LBVE,2010.0,6,12,2014,Tucker and Dale vs Evil,Sheriff Stops By,tt1465522 nODBN75vrH0,1982.0,10,11,2014,Trail of the Pink Panther,Gorillas Driving,tt0084814 Cpxs390x5N4,1982.0,6,11,2014,Trail of the Pink Panther,"The ""Massage""",tt0084814 zvry_GtQIeU,1982.0,11,11,2014,Trail of the Pink Panther,Clouseau vs. the Nazis,tt0084814 IRMNacEVuT4,1982.0,1,11,2014,Trail of the Pink Panther,A Nose for Noses,tt0084814 JnXCZbZipJg,1982.0,4,11,2014,Trail of the Pink Panther,Pop-Out Lighter,tt0084814 7fOYHqR2Gyo,1982.0,5,11,2014,Trail of the Pink Panther,Off the Plane,tt0084814 uq1JHKlUtOU,1982.0,2,11,2014,Trail of the Pink Panther,Marta's Nose,tt0084814 uF_721BvdJE,1982.0,8,11,2014,Trail of the Pink Panther,Cato Attacks,tt0084814 gL3mN-UpSyQ,1982.0,7,11,2014,Trail of the Pink Panther,Out the Window,tt0084814 oaqTzvd4aq8,1982.0,9,11,2014,Trail of the Pink Panther,Clouseau Burns His Hand,tt0084814 zE0vrRRohs0,1982.0,3,11,2014,Trail of the Pink Panther,Office Fire,tt0084814 ydYaph8BQkE,1973.0,9,12,2014,Tom Sawyer,If'n I Was God,tt0070814 aBgs1Kxh9nM,1973.0,1,12,2014,Tom Sawyer,A String of Fibs,tt0070814 BahgFrLFgpk,1973.0,12,12,2014,Tom Sawyer,Responsibility,tt0070814 Jah71XURbIg,1973.0,2,12,2014,Tom Sawyer,Whitewashin',tt0070814 4KX9Ojp-yic,1973.0,6,12,2014,Tom Sawyer,Whipped for Becky,tt0070814 yZLkEOM1CQ0,1973.0,8,12,2014,Tom Sawyer,Getting Engaged,tt0070814 pKdszbbvQGc,1973.0,5,12,2014,Tom Sawyer,A Man's Gotta Be What He's Born to Be,tt0070814 2yXz1r5kn_k,1973.0,10,12,2014,Tom Sawyer,Freebootin',tt0070814 u8TwN5M1fEY,1973.0,4,12,2014,Tom Sawyer,Becky Thatcher,tt0070814 wRbKDoyN5oc,1973.0,11,12,2014,Tom Sawyer,Tom and Huck's Funeral,tt0070814 lVg2pm0YdQ0,1973.0,3,12,2014,Tom Sawyer,Gratifaction,tt0070814 i5mSHPKEbas,1973.0,7,12,2014,Tom Sawyer,Tom's Testimony,tt0070814 3jBfvv_lBEU,2009.0,9,12,2014,The Winning Season,Waitress Rejection,tt1293842 WDq967Y_e3U,2009.0,3,12,2014,The Winning Season,Pep Talk,tt1293842 gMBkkaB0pp0,2009.0,7,12,2014,The Winning Season,What's Your Type?,tt1293842 7jO1tzRBFFw,2009.0,1,12,2014,The Winning Season,Is This a Joke?,tt1293842 hbki4pbNi10,2009.0,5,12,2014,The Winning Season,Defending Kathy's Honor,tt1293842 tfsPfimgjFU,2009.0,12,12,2014,The Winning Season,You've Come a Long Way,tt1293842 laWUdsC-3Pk,2009.0,8,12,2014,The Winning Season,The Big Picture,tt1293842 QCTgWRNnfZM,2009.0,6,12,2014,The Winning Season,Bill's Past,tt1293842 jXqcrXqphIo,2009.0,11,12,2014,The Winning Season,Coaching Incognito,tt1293842 3IAUIQJXHUM,2009.0,4,12,2014,The Winning Season,Molly's Gone,tt1293842 FPyap6DbfHw,2009.0,2,12,2014,The Winning Season,The Wrong Side of the Line,tt1293842 92h5_0bE8Nk,2009.0,10,12,2014,The Winning Season,You Broke Their Hearts,tt1293842 gfF5C7j-2jk,1997.0,2,11,2014,The Wings of the Dove,Drenched,tt0120520 GBGdp2p0T30,1997.0,3,11,2014,The Wings of the Dove,A Visit With Father,tt0120520 _OzammfDblc,1997.0,9,11,2014,The Wings of the Dove,The Palazzo Barbaro,tt0120520 tvaROfCgPPE,1997.0,7,11,2014,The Wings of the Dove,Dance With Me,tt0120520 6J4faUNOGuI,1997.0,1,11,2014,The Wings of the Dove,Illicit Encounter,tt0120520 pu0pYw6lG_c,1997.0,4,11,2014,The Wings of the Dove,Did It Hurt?,tt0120520 gUccqktilDU,1997.0,6,11,2014,The Wings of the Dove,The Canals of Venice,tt0120520 mjPh_oYqKPM,1997.0,10,11,2014,The Wings of the Dove,A Letter From Millie,tt0120520 A8PVoyIiqrw,1997.0,11,11,2014,The Wings of the Dove,In Love With Her Memory,tt0120520 YRi3-AbHXbU,1997.0,5,11,2014,The Wings of the Dove,You Set Me Up,tt0120520 55gq831fmzE,1957.0,8,11,2014,Sweet Smell of Success,A Prisoner of Your Own Fears,tt0051036 qw34BbyVK7c,1997.0,8,11,2014,The Wings of the Dove,How Do You Love?,tt0120520 9uA8c4XGVxk,1957.0,10,11,2014,Sweet Smell of Success,Susan Keeps Quiet,tt0051036 U0FBVju7fVI,1957.0,2,11,2014,Sweet Smell of Success,J.J.'s Table,tt0051036 OhH4bYnAdzk,1957.0,11,11,2014,Sweet Smell of Success,I Pity You,tt0051036 Wh4U2TtNn-g,1957.0,3,11,2014,Sweet Smell of Success,A Press Agent's Life,tt0051036 8xsYjrLw-Qk,1957.0,1,11,2014,Sweet Smell of Success,Sunday Piece on Cigarette Girls,tt0051036 VIVMDMDxnQY,1957.0,9,11,2014,Sweet Smell of Success,Susan Attempts Suicide,tt0051036 oCq7TUmVmt8,1957.0,5,11,2014,Sweet Smell of Success,Don't Do Anything I Wouldn't Do,tt0051036 3CeKpU2WaBQ,1957.0,4,11,2014,Sweet Smell of Success,The Clean Columnist,tt0051036 Xv_qHFUItVo,1957.0,7,11,2014,Sweet Smell of Success,"If Looks Could Kill, I'd Be Dead",tt0051036 iZx1W6cHw-g,1989.0,8,8,2014,Steel Magnolias,I Wanna Know Why,tt0098384 e1bMBM_rgwQ,1957.0,6,11,2014,Sweet Smell of Success,A Cookie Full of Arsenic,tt0051036 juw328OfWnM,1989.0,7,8,2014,Steel Magnolias,A Guardian Angel,tt0098384 ybbS5_qlkaQ,1989.0,1,8,2014,Steel Magnolias,Too Much Insulin,tt0098384 hn09SKCZgtI,1989.0,5,8,2014,Steel Magnolias,Life Support,tt0098384 cWuFfrettMY,1989.0,6,8,2014,Steel Magnolias,The Lord Works in Mysterious Ways,tt0098384 TlB_1W-qc14,1989.0,2,8,2014,Steel Magnolias,30 Minutes of Wonderful,tt0098384 eTVHMQb2OyU,1989.0,4,8,2014,Steel Magnolias,Not Exactly Great News,tt0098384 BXloUAxs2wI,1989.0,3,8,2014,Steel Magnolias,A Very Bad Mood for 40 Years,tt0098384 DLFB0sj-xkc,2004.0,5,12,2014,Soul Plane,The Only White People,tt0367085 Lva7xOJRRCA,2004.0,10,12,2014,Soul Plane,We Ready to Roll,tt0367085 frgfTkjkcxo,2004.0,3,12,2014,Soul Plane,Terminal Malcolm X,tt0367085 cCoD237oWtg,2004.0,12,12,2014,Soul Plane,Landing Positions,tt0367085 9XVy6vDxQDk,2004.0,6,12,2014,Soul Plane,We Feds Now,tt0367085 YfUodLRuU-A,2004.0,9,12,2014,Soul Plane,You're A Survivor,tt0367085 Geneo4_3VbE,2004.0,2,12,2014,Soul Plane,Airport Sex Rant,tt0367085 cLc_O-kQOoc,2004.0,1,12,2014,Soul Plane,Stroganoff,tt0367085 FvsbTxZZgxM,2004.0,11,12,2014,Soul Plane,Afraid of Heights,tt0367085 n5PnSNCFBYs,2004.0,4,12,2014,Soul Plane,Airport Security,tt0367085 LFc-p5H9AJI,2004.0,7,12,2014,Soul Plane,Captain Mack,tt0367085 MRCXvZjeOx8,1998.0,8,11,2014,Permanent Midnight,Rock Bottom,tt0120788 HB7ienz0_IA,1998.0,10,11,2014,Permanent Midnight,We Get Under Each Other's Skin,tt0120788 PSNqibKHIys,1998.0,4,11,2014,Permanent Midnight,A Rich Civilian Life,tt0120788 NrXQSp7Uz0A,1998.0,3,11,2014,Permanent Midnight,A Typical Day,tt0120788 yThTYeRr5BM,1998.0,5,11,2014,Permanent Midnight,Getting High,tt0120788 h0z4HetQWME,1998.0,2,11,2014,Permanent Midnight,Moving In?,tt0120788 OWXlfOnU6tc,1998.0,6,11,2014,Permanent Midnight,Realism is Dead,tt0120788 EI_QlYraNl8,1998.0,7,11,2014,Permanent Midnight,Baby on Board,tt0120788 lmDII7sMIF8,1998.0,11,11,2014,Permanent Midnight,Showing Up on Maury,tt0120788 1HfdZj-RzI0,1998.0,9,11,2014,Permanent Midnight,Visiting Nina,tt0120788 rsmsMeT8EYs,1998.0,1,11,2014,Permanent Midnight,Mr. Chompers,tt0120788 m8oSm88EIhM,2007.0,5,12,2014,Lake Dead,Trampy Tanya,tt0839880 0p1OYPs14T4,2007.0,2,12,2014,Lake Dead,He Left Us a Motel,tt0839880 Ay4MOACH9tQ,2007.0,7,12,2014,Lake Dead,I Dropped My Wallet,tt0839880 2F64BSpClag,2007.0,12,12,2014,Lake Dead,Blood's Thicker Than Water,tt0839880 tx8GFMF8Pd8,2007.0,4,12,2014,Lake Dead,It's Occupied,tt0839880 jthkBksMaXY,2007.0,11,12,2014,Lake Dead,Where's My Kiss?,tt0839880 2wctAnLU_cE,2007.0,9,12,2014,Lake Dead,Get in the RV,tt0839880 vsSTRzIow2c,2007.0,1,12,2014,Lake Dead,An Abomination,tt0839880 TfeZeRIdyNM,2007.0,6,12,2014,Lake Dead,You're Never Gonna Wanna Leave,tt0839880 kBgO6ctmq8M,2007.0,3,12,2014,Lake Dead,Do Not Go There,tt0839880 HFUCwBt4pK0,2007.0,8,12,2014,Lake Dead,It's Just Sex,tt0839880 7kAoU7bwDFM,2007.0,10,12,2014,Lake Dead,Part of Our Family,tt0839880 IziNmIErmWw,2004.0,1,11,2014,Madhouse,There Is No Place Like Home,tt0363276 yga9OU5yuKE,2004.0,8,11,2014,Madhouse,The Kitchen's Closed,tt0363276 SHvBT5RXeeA,2004.0,6,11,2014,Madhouse,Crazy Chicks Are Wild,tt0363276 JVfMbJjbIpw,2004.0,9,11,2014,Madhouse,Never Trust a Schizo,tt0363276 TbgusehY_sQ,2004.0,5,11,2014,Madhouse,The First Casualty,tt0363276 rFPCkGmuUO4,2004.0,3,11,2014,Madhouse,You're Not Here to Think,tt0363276 yFX-95l18ng,2004.0,11,11,2014,Madhouse,Clark's Not Here Anymore,tt0363276 LkLvZZiL3Vo,2004.0,10,11,2014,Madhouse,Cell 44,tt0363276 ZC2SlM2Eqa4,2004.0,4,11,2014,Madhouse,Welcome to the,tt0363276 Boi5obDmX-g,2004.0,2,11,2014,Madhouse,Really the Crazy Ones,tt0363276 QpoiFakmREc,2001.0,4,11,2014,Made,First Class,tt0227005 yJUGxCV5OiQ,2004.0,7,11,2014,Madhouse,Face to Face,tt0363276 urN3pAtiXdg,2001.0,10,11,2014,Made,Starter Pistol,tt0227005 tPJ_rBWLOxA,2001.0,8,11,2014,Made,A Surprise Built for One,tt0227005 -WBeglzkZNQ,2001.0,9,11,2014,Made,We Need Guns,tt0227005 F4d_PYyHSOM,2001.0,1,11,2014,Made,What's Your Name?,tt0227005 FaH-7N7iRjI,2001.0,11,11,2014,Made,Chuck E. Cheese's,tt0227005 GeqbeBDtYkE,2001.0,5,11,2014,Made,Checking In,tt0227005 jTFSVXpq1Fg,2001.0,2,11,2014,Made,Color Me That,tt0227005 iImMlbzg5Qc,2001.0,7,11,2014,Made,One Way to Deal With People,tt0227005 y3wTKua41bk,2001.0,6,11,2014,Made,Screech Is on the List,tt0227005 fXcIZFeYivQ,2001.0,3,11,2014,Made,Per Diem,tt0227005 opyCsftx7D0,2000.0,12,12,2014,Love & Sex,DeNiro,tt0234137 ettu4zJOh3M,2000.0,11,12,2014,Love & Sex,MIdget Message,tt0234137 Vn5ilm1jMgA,2000.0,9,12,2014,Love & Sex,Peaches,tt0234137 mXwYp2IwFFw,2000.0,2,12,2014,Love & Sex,The Art Exhibit,tt0234137 uuAGxjrG_gs,2000.0,8,12,2014,Love & Sex,Ninjeta,tt0234137 F5U5PKWgHQo,2000.0,1,12,2014,Love & Sex,Blow by Blow,tt0234137 3daIUo8UtM4,2000.0,4,12,2014,Love & Sex,French Teacher Love,tt0234137 v75c0QugkBI,2000.0,6,12,2014,Love & Sex,Sunday Morning Routine,tt0234137 M09CkmDfntY,2000.0,5,12,2014,Love & Sex,Daddy Phase,tt0234137 4nGA9zBslBg,2000.0,3,12,2014,Love & Sex,How Many Women Have You Slept With?,tt0234137 cR7GV9Fdkuk,2005.0,7,7,2014,Leonard Cohen: I'm Your Man,Tower of Song,tt0478197 dZushQttfzY,2000.0,10,12,2014,Love & Sex,White Bread Kinky,tt0234137 QU2qTjAFWKQ,2000.0,7,12,2014,Love & Sex,Don't Poke the Bear,tt0234137 BHx0kYdl9Nw,2005.0,4,7,2014,Leonard Cohen: I'm Your Man,Chelsea Hotel No. 2,tt0478197 tlhxBAhYnS8,2005.0,1,7,2014,Leonard Cohen: I'm Your Man,I'm Your Man,tt0478197 JQAyLEhEoQw,2005.0,5,7,2014,Leonard Cohen: I'm Your Man,Suzanne,tt0478197 QTHImytcib0,2005.0,6,7,2014,Leonard Cohen: I'm Your Man,Hallelujah,tt0478197 eqQtfjs7YGg,2005.0,2,7,2014,Leonard Cohen: I'm Your Man,Everybody Knows,tt0478197 4xBY09_9H6g,2000.0,8,9,2014,The Way of the Gun,Bullets and Broken Glass,tt0202677 5XWG3eNY298,2000.0,4,9,2014,The Way of the Gun,I'm Joe Sarno,tt0202677 AV5hAxICHsc,2000.0,9,9,2014,The Way of the Gun,Stopped by Sarno,tt0202677 tteCp4cbON4,2000.0,3,9,2014,The Way of the Gun,Pregnant Pause,tt0202677 NdDOmuWz92I,2000.0,2,9,2014,The Way of the Gun,Sperm Donors,tt0202677 ZIjuiq25Lzk,2000.0,6,9,2014,The Way of the Gun,Longshot for Mr. Longbaugh,tt0202677 90li7tw4CCM,2000.0,1,9,2014,The Way of the Gun,Raving Bitch Knock-Out,tt0202677 5rKn9BNhQ0Y,2000.0,7,9,2014,The Way of the Gun,Shootout at the Whorehouse,tt0202677 AGCDh4gBj8U,2000.0,5,9,2014,The Way of the Gun,Second Thoughts,tt0202677 RAapNGRfaBI,1948.0,10,10,2014,The Treasure of the Sierra Madre,A Great Joke,tt0040897 8_phNWJu9BY,1948.0,5,10,2014,The Treasure of the Sierra Madre,The Stranger's Proposition,tt0040897 dkcsqI6hZz8,1948.0,9,10,2014,The Treasure of the Sierra Madre,You Can Only Shoot One of Us,tt0040897 TArcc_WduhE,1948.0,1,10,2014,The Treasure of the Sierra Madre,Give Us Our Money,tt0040897 Wy3IoFyvWOs,1948.0,8,10,2014,The Treasure of the Sierra Madre,A Burning Conscience,tt0040897 _pWx7N8gSoY,1948.0,3,10,2014,The Treasure of the Sierra Madre,Dumber Than the Dumbest Jackass,tt0040897 rpdnpip1X4A,1948.0,2,10,2014,The Treasure of the Sierra Madre,Fool's Gold,tt0040897 rEAbZTpV47E,1948.0,4,10,2014,The Treasure of the Sierra Madre,Gila Monster,tt0040897 vKEWdfB8yo8,1948.0,7,10,2014,The Treasure of the Sierra Madre,A Bonehead Play,tt0040897 4OcM23Hbs5U,1948.0,6,10,2014,The Treasure of the Sierra Madre,No Stinking Badges,tt0040897 dcKdr89ngtI,1996.0,8,10,2014,The Substitute,Jai alai,tt0117774 mW3KEJNsT2Y,1996.0,5,10,2014,The Substitute,The Warrior Chief,tt0117774 1L-4-XQYxrs,1996.0,3,10,2014,The Substitute,Power Perceived is Power Achieved,tt0117774 Y6uj9ZZl2LI,1996.0,10,10,2014,The Substitute,Some Things Can't be Taught,tt0117774 6E26ye_66xE,1996.0,9,10,2014,The Substitute,"Smile, You're on Candid Camera",tt0117774 OCV4kaP_0-k,1996.0,6,10,2014,The Substitute,No Talking in the Library,tt0117774 peRHtqEZMLk,1996.0,2,10,2014,The Substitute,I'm the Substitute,tt0117774 b1s-ewwrpQY,1996.0,1,10,2014,The Substitute,Fiber & Flushing,tt0117774 JMpTeDvOnLA,1996.0,7,10,2014,The Substitute,I Can't Get Higher,tt0117774 VSiiYMgJ3h8,1996.0,4,10,2014,The Substitute,Too Small Balls,tt0117774 BFkcX4Qi11g,1998.0,5,12,2014,The Red Violin,Gypsies,tt0120802 VBgDKUVxAyI,1998.0,1,12,2014,The Red Violin,This Is My Masterpiece,tt0120802 -cvGAF7LbqE,1998.0,6,12,2014,The Red Violin,Pope's Concert,tt0120802 YKce1fkBRrc,1998.0,2,12,2014,The Red Violin,Kaspar Weiss,tt0120802 5oe8grtUxI8,1998.0,4,12,2014,The Red Violin,The Audition,tt0120802 a4DTqmln40c,1998.0,3,12,2014,The Red Violin,Playing by Metronome,tt0120802 Ckem1kbmJdQ,1998.0,12,12,2014,The Red Violin,The Theft,tt0120802 BR2Bcczm9EI,1998.0,11,12,2014,The Red Violin,Do You Get It?,tt0120802 mGpalRiltP8,1998.0,8,12,2014,The Red Violin,Our Secret,tt0120802 AUqVNqZdqRw,1998.0,7,12,2014,The Red Violin,You're Leaving Me,tt0120802 cqZVc6GtV8A,1998.0,9,12,2014,The Red Violin,A Beautiful Specimen,tt0120802 jW9D4lY0TUU,1998.0,10,12,2014,The Red Violin,The Perfect Marriage of Science and Beauty,tt0120802 Us7XgnZ5OHE,2008.0,3,12,2014,The Lucky Ones,Bar Fight,tt0981072 -scWJO2h1ak,2008.0,12,12,2014,The Lucky Ones,Tornado,tt0981072 ynZqnGTUHcM,2008.0,7,12,2014,The Lucky Ones,Lucky Guy,tt0981072 8TlVDn0j98E,2008.0,8,12,2014,The Lucky Ones,Good Liar,tt0981072 bluBJ-eeBBs,2008.0,1,12,2014,The Lucky Ones,Port-O-John,tt0981072 KXo_Enhm-xM,2008.0,9,12,2014,The Lucky Ones,Spiritual Healing,tt0981072 gQRANiw4JLw,2008.0,10,12,2014,The Lucky Ones,Staying Alive,tt0981072 Bzd07cbr3y8,2008.0,5,12,2014,The Lucky Ones,I'm Happy Alone,tt0981072 i0KnbzRHwaM,2008.0,6,12,2014,The Lucky Ones,What's Your Plan?,tt0981072 GVuaTdn9TnY,2008.0,11,12,2014,The Lucky Ones,I Found Cheaver,tt0981072 LtkstS3KlIA,2008.0,4,12,2014,The Lucky Ones,Mysteries of Life,tt0981072 HKNo8yzXxyM,1973.0,1,10,2014,The Long Goodbye,Interrogation,tt0070334 r6dLxmPng8o,1973.0,10,10,2014,The Long Goodbye,A Born Loser,tt0070334 tM4qhFW0FPA,2008.0,2,12,2014,The Lucky Ones,Hummers,tt0981072 ObAOGLArxGA,1973.0,3,10,2014,The Long Goodbye,Freedom From Verringer's,tt0070334 CwBH6g7UEI4,1973.0,6,10,2014,The Long Goodbye,The Albino Turd,tt0070334 c3zRfKmcqv8,1973.0,2,10,2014,The Long Goodbye,Dr. Verringer's Clinic,tt0070334 A6zqLx8tii4,1973.0,8,10,2014,The Long Goodbye,Take Off Your Clothes,tt0070334 P9fOKOsEX8A,1973.0,5,10,2014,The Long Goodbye,Walter Brennan,tt0070334 7t7gG3XVqW0,1973.0,4,10,2014,The Long Goodbye,"Broken Bottle, Broken Face",tt0070334 847dUNGFwsM,1973.0,7,10,2014,The Long Goodbye,Wade's Suicide,tt0070334 2G-BNvZvz8I,1999.0,4,11,2014,The Limey,The Sixties,tt0165854 CU0lA1M1_3I,1973.0,9,10,2014,The Long Goodbye,Chasing Eileen Wade,tt0070334 T7uncpUQ4GE,1999.0,3,11,2014,The Limey,Valets,tt0165854 0UrClwjpNA8,1999.0,10,11,2014,The Limey,Tell Me About Jenny,tt0165854 E9yuGEux_OI,1999.0,1,11,2014,The Limey,Tell Him I'm Coming!,tt0165854 qPbOVPtdaZs,1999.0,7,11,2014,The Limey,Hollywood Hills Chase,tt0165854 5hete-GzD9I,1999.0,2,11,2014,The Limey,Terry Valentine,tt0165854 tJLdaKUBGzo,1999.0,11,11,2014,The Limey,Colours,tt0165854 VKcpoyC6RMA,1999.0,9,11,2014,The Limey,Bide Your Time,tt0165854 euvUARojiiI,1999.0,5,11,2014,The Limey,Shooting Valentine,tt0165854 S76IuL89zVY,1999.0,8,11,2014,The Limey,Stacy the Hitman,tt0165854 sPgl1DyIn3U,1999.0,6,11,2014,The Limey,Over the Ledge,tt0165854 _2EQFo-vIH0,1989.0,3,11,2014,The January Man,Cheap Wine,tt0097613 Vtpo8d2mME0,1989.0,10,11,2014,The January Man,How Am I Doing?,tt0097613 TsGOIi6JI1c,1989.0,9,11,2014,The January Man,Nick vs. Door,tt0097613 v5qwMeiEF0M,1989.0,8,11,2014,The January Man,Calendar Girl,tt0097613 vTy2bx3jmrs,1989.0,4,11,2014,The January Man,Still Mad About You,tt0097613 lVMviKEztGw,1989.0,11,11,2014,The January Man,I Loved an Idea,tt0097613 01ovMSvDohw,1989.0,5,11,2014,The January Man,Nick on Ice,tt0097613 BZVmJdnVVBw,1989.0,6,11,2014,The January Man,A Real Conversation,tt0097613 E_UyAj2V4pI,1989.0,7,11,2014,The January Man,Prime Numbers,tt0097613 AridlIyM9ak,1989.0,2,11,2014,The January Man,Take Off Your Clothes,tt0097613 s9IqypZYH6A,1989.0,1,11,2014,The January Man,Don't Mess With Me,tt0097613 r1NHFfwmJZQ,2011.0,7,11,2014,The Innkeepers,"Show Yourself, Spirit",tt1594562 DLyLE2LUpOo,2011.0,10,11,2014,The Innkeepers,Room 353,tt1594562 yUXdDmn9wP4,2011.0,9,11,2014,The Innkeepers,The Spirit of Madeline,tt1594562 JIfu8g9EUzo,2011.0,2,11,2014,The Innkeepers,Ms. Leanne Rease-Jones,tt1594562 HFbgT-GSYhk,2011.0,8,11,2014,The Innkeepers,Drunk Talk,tt1594562 g_tQ__pEoPs,2011.0,11,11,2014,The Innkeepers,Trapped in the Basement,tt1594562 RxogsPx7JwQ,2011.0,6,11,2014,The Innkeepers,A Ghost in Bed,tt1594562 mHA7T9yOI3A,2011.0,5,11,2014,The Innkeepers,The Piano,tt1594562 LWRuMnDhCy4,2011.0,3,11,2014,The Innkeepers,Getting Coffee,tt1594562 7uO7VSK2XMo,2011.0,1,11,2014,The Innkeepers,Paranormal Activity,tt1594562 2gKXgAzFV8Q,2011.0,5,12,2014,The Hunter,Setting Traps,tt1038919 S0_2LuMWicY,2011.0,4,12,2014,The Hunter,I Heard One Once,tt1038919 bvuDpEE2MQM,2011.0,4,11,2014,The Innkeepers,A Late Night Noise,tt1594562 B8rq--5MbZ8,2011.0,7,12,2014,The Hunter,The Tiger's Cave,tt1038919 1AZuIPGAQ_s,2011.0,11,12,2014,The Hunter,Where Are They Now?,tt1038919 _epn5foR_Ts,2011.0,1,12,2014,The Hunter,The Most Elusive Creature,tt1038919 V-PNT54Z2ig,2011.0,10,12,2014,The Hunter,Martin's Replacement,tt1038919 aIekhk4NDA4,2011.0,12,12,2014,The Hunter,The Tasmanian Tiger,tt1038919 7JICPsjLMis,2011.0,9,12,2014,The Hunter,Lucy's Husband,tt1038919 kGXKWSmXrEk,2011.0,3,12,2014,The Hunter,Meeting the Locals,tt1038919 oISBveQNkzA,2012.0,8,12,2014,The Hunger Games,Cornucopia Bloodbath,tt1392170 -R2UHh9T0ck,2011.0,6,12,2014,The Hunter,Bike's Drawing,tt1038919 gbPolHxofuo,2011.0,2,12,2014,The Hunter,Sass and Bike,tt1038919 gaoMc6MgvNA,2012.0,9,12,2014,The Hunger Games,Tracker Jackers,tt1392170 TtWqejfxiVU,2011.0,8,12,2014,The Hunter,Campfire Gathering,tt1038919 mtuBqolFOVs,2012.0,5,12,2014,The Hunger Games,Hope,tt1392170 KAal6-tvckw,2012.0,2,12,2014,The Hunger Games,Saying Goodbye,tt1392170 WCbXSTBBueU,2012.0,7,12,2014,The Hunger Games,They Don't Own Me,tt1392170 mgr2tLYYha4,2012.0,12,12,2014,The Hunger Games,Rule Change,tt1392170 Ed5xIjGdqb4,2012.0,10,12,2014,The Hunger Games,Rue's Death,tt1392170 v98Rh9qzmPs,2012.0,1,12,2014,The Hunger Games,I Volunteer as Tribute!,tt1392170 G9VI6SExDms,2012.0,4,12,2014,The Hunger Games,Shooting the Apple,tt1392170 7ikLl_nUM2A,2012.0,11,12,2014,The Hunger Games,The Kiss,tt1392170 Z92aHy9-fkk,2012.0,3,12,2014,The Hunger Games,Get People to Like You,tt1392170 vVTASz4W2hA,2011.0,7,12,2014,The Future,We're Both Facing East,tt1615091 dzO8DzLZAuU,2011.0,9,12,2014,The Future,I Have to Tell You Something,tt1615091 XrvB53IDIqM,2012.0,6,12,2014,The Hunger Games,Star-Crossed Lovers,tt1392170 QCXgvx0vPZk,2011.0,12,12,2014,The Future,The T-Shirt Dance,tt1615091 L4x1S9WYV9k,2011.0,3,12,2014,The Future,Dancing for YouTube,tt1615091 7nHXSTzcVX4,2011.0,5,12,2014,The Future,The Internet Is Being Turned Off,tt1615091 m4MdMCS5EeE,2011.0,11,12,2014,The Future,"It's a Drag, But It's Amazing",tt1615091 J4Mq0xr4gwU,2011.0,6,12,2014,The Future,Used Hair Dryer,tt1615091 xcYzjbIVlX8,2011.0,2,12,2014,The Future,The Signal,tt1615091 8GtyX55FtTs,2011.0,8,12,2014,The Future,Paw-Paw's Patience,tt1615091 anQHZRrZHYc,2011.0,10,12,2014,The Future,The Way You Look,tt1615091 gMIvHGdpQpE,2011.0,1,12,2014,The Future,Loose Change,tt1615091 m0gUcNGsGYU,2011.0,4,12,2014,The Future,No Soliciting,tt1615091 F63pia00pLM,1993.0,11,11,2014,The Dark Half,Sparrow Annihilation,tt0106664 4SCJoMT1FCY,1993.0,9,11,2014,The Dark Half,One in the Same,tt0106664 x5bONeuC6BY,1993.0,5,11,2014,The Dark Half,Revealing Nightmares,tt0106664 aAg3LPuwfJM,1993.0,7,11,2014,The Dark Half,"Mikey, Mikey, Mikey",tt0106664 xoRXgE6j9po,1993.0,6,11,2014,The Dark Half,There's a Man Here,tt0106664 QhYydmeQ2Yw,1993.0,2,11,2014,The Dark Half,A Tale of Two Authors,tt0106664 wdrhl_I3-E8,1993.0,4,11,2014,The Dark Half,Suspected for Murder,tt0106664 k0XGlpR6iLc,1993.0,8,11,2014,The Dark Half,A Cut & Go Business,tt0106664 0p1fLn6_ExE,1993.0,3,11,2014,The Dark Half,George Stark Strikes,tt0106664 jr8BKtgMJA0,1993.0,1,11,2014,The Dark Half,Startling Discovery,tt0106664 PioVmXuOv7c,1993.0,10,11,2014,The Dark Half,Showdown,tt0106664 z-0rKpuvnT4,1996.0,5,10,2014,The Birdcage,"Val's ""Mother"" Comes to Dinner",tt0115685 TZjB7MW9Q-E,1996.0,9,10,2014,The Birdcage,This is My Mother,tt0115685 1_7FYr4JsF0,1996.0,7,10,2014,The Birdcage,Naked Greek Bowls,tt0115685 LEQNosAHrD4,1996.0,10,10,2014,The Birdcage,Family Values,tt0115685 Akr33uOKP8M,1996.0,6,10,2014,The Birdcage,Gays in the Military,tt0115685 kO0kWTR_7tQ,1996.0,3,10,2014,The Birdcage,Act Like a Man,tt0115685 Q5o7eYFRp_U,1996.0,8,10,2014,The Birdcage,Wigging Out,tt0115685 TmO1R-GqD50,1996.0,4,10,2014,The Birdcage,Walking Like John Wayne,tt0115685 rU8cUBCZn9c,1996.0,1,10,2014,The Birdcage,Albert Will Not Dance,tt0115685 YlAmk5w3qZw,1996.0,2,10,2014,The Birdcage,Val's Getting Married,tt0115685 s4KQbOrnRYs,1999.0,2,8,2014,The Big Kahuna,Big Shots,tt0189584 DwyqcEjMMI8,1999.0,8,8,2014,The Big Kahuna,An Honest Man,tt0189584 9dnvta78Oc8,1999.0,6,8,2014,The Big Kahuna,We Talked About Christ,tt0189584 F8RkAzAX2-g,1999.0,7,8,2014,The Big Kahuna,Bigger Than God,tt0189584 Xr4ZDbix55Q,1999.0,5,8,2014,The Big Kahuna,Dreams of God,tt0189584 2S8FhT1CLOQ,1999.0,1,8,2014,The Big Kahuna,B.S. Detector,tt0189584 XbuSTq9TZSI,1999.0,3,8,2014,The Big Kahuna,Why God Created Wives,tt0189584 VtnxXJy01ag,2008.0,7,11,2014,The Bank Job,Coppers on Your Doorstep,tt0200465 0WY4XiwS8Lc,2008.0,10,11,2014,The Bank Job,The Red Ledger,tt0200465 b_W5rtfzadQ,1999.0,4,8,2014,The Big Kahuna,In Search of the Grand Kahuna,tt0189584 mTNkmMUcQfc,2008.0,4,11,2014,The Bank Job,Somebody at the Door,tt0200465 64Kac5hYLBM,2008.0,5,11,2014,The Bank Job,Passionate Affair,tt0200465 BcCzxUMcrVc,2008.0,2,11,2014,The Bank Job,Green With Envy,tt0200465 q14F8WFr7EY,2008.0,11,11,2014,The Bank Job,This One's for Dave,tt0200465 k3sfGEvPoHs,2008.0,8,11,2014,The Bank Job,Martine's Confession,tt0200465 aMwqijj857s,2008.0,3,11,2014,The Bank Job,The Thermic Lance,tt0200465 nCLxHi2oZVM,2008.0,6,11,2014,The Bank Job,Let's Make Some Money,tt0200465 8G84xAalZiY,2008.0,9,11,2014,The Bank Job,You Stole From Me,tt0200465 eIvl2bRW9S8,2008.0,1,11,2014,The Bank Job,Where's the Money?,tt0200465 Mlv16s4DxwI,1950.0,8,10,2014,The Asphalt Jungle,The Truth,tt0042208 3SYMh5owQcA,1950.0,9,10,2014,The Asphalt Jungle,Play Me a Tune,tt0042208 p2fHtpp_umI,1950.0,10,10,2014,The Asphalt Jungle,The Most Dangerous of Them All,tt0042208 2RA-7QUYrHA,1950.0,7,10,2014,The Asphalt Jungle,Out for Blood,tt0042208 48kV7uKAzEU,1950.0,2,10,2014,The Asphalt Jungle,The Job,tt0042208 GllksI139DM,1950.0,6,10,2014,The Asphalt Jungle,Hoodlums,tt0042208 -nboVp_nTkg,1950.0,3,10,2014,The Asphalt Jungle,Coppers,tt0042208 cUEc9ZF3G3M,1950.0,4,10,2014,The Asphalt Jungle,A Double Cross,tt0042208 EkRzpc98bwc,1950.0,5,10,2014,The Asphalt Jungle,A Left-Handed Form of Human Endeavor,tt0042208 SQGwcLUuQUs,1979.0,9,12,2014,The Amityville Horror,Carolyn is Possessed,tt0078767 lJuxU-aVeT4,1979.0,4,12,2014,The Amityville Horror,Trapped in the Closet,tt0078767 ewEreSjPyC4,1950.0,1,10,2014,The Asphalt Jungle,Some Sweet Kid,tt0042208 ptBGusJjkTU,1979.0,11,12,2014,The Amityville Horror,I'm Coming Apart!,tt0078767 C1zseVrJQLk,1979.0,3,12,2014,The Amityville Horror,Aunt Helena Freaks Out,tt0078767 3rrfqXl52tc,1979.0,7,12,2014,The Amityville Horror,Father Delaney is Speechless,tt0078767 9LpOzLU5k70,1979.0,12,12,2014,The Amityville Horror,Bleeding House,tt0078767 adFRKm9ezw4,1979.0,1,12,2014,The Amityville Horror,Flies Attack Father Delaney,tt0078767 2CM_ZbYvMDI,1979.0,6,12,2014,The Amityville Horror,"Amy's Friend, Jody",tt0078767 DVAIrYCyB1w,1979.0,10,12,2014,The Amityville Horror,Father Delany's Prayer,tt0078767 944Xo94Owx4,1979.0,2,12,2014,The Amityville Horror,Axe Man,tt0078767 6l60PJOMu3U,1979.0,5,12,2014,The Amityville Horror,Window Pain,tt0078767 WqyvGyBJbcQ,1997.0,9,11,2014,Open Your Eyes,Living a Dream,tt0125659 IANjTUtZimk,1997.0,7,11,2014,Open Your Eyes,Where's Sofia?,tt0125659 pDEJr2Sqhxc,1979.0,8,12,2014,The Amityville Horror,Kathy Sees Jody,tt0078767 GU0BYEZb-Xo,1997.0,5,11,2014,Open Your Eyes,Deja Vu,tt0125659 fgp77jbQkW0,1997.0,3,11,2014,Open Your Eyes,Killer Smile,tt0125659 vli6rJX8Xac,1997.0,8,11,2014,Open Your Eyes,You're All Mad,tt0125659 w2T2xsIYH0I,1997.0,4,11,2014,Open Your Eyes,The Car Crash,tt0125659 rJ9zBV97d5M,1997.0,11,11,2014,Open Your Eyes,All in Your Head,tt0125659 3zW1STojfq4,1997.0,10,11,2014,Open Your Eyes,I Want to See You,tt0125659 E6W4v8DYh4c,1997.0,2,11,2014,Open Your Eyes,"Happy Birthday, Darling",tt0125659 r1UKhlSdV-M,1997.0,6,11,2014,Open Your Eyes,Face Off,tt0125659 iBptW_7wlwQ,1997.0,1,11,2014,Open Your Eyes,,tt0125659 QsveFtQaP7c,2003.0,5,10,2014,Ong Bak,You Disappoint Me,tt0368909 MNBd97oTtq8,2003.0,2,10,2014,Ong Bak,Knives for Sale,tt0368909 Vjo0hn0kAvY,2003.0,4,10,2014,Ong Bak,Big Bear,tt0368909 Jd86VeZU89A,2003.0,3,10,2014,Ong Bak,Parkour Chase,tt0368909 GVjV1SKLJ9E,2003.0,1,10,2014,Ong Bak,A Quick Fight,tt0368909 ZVHIsLK07ak,2003.0,6,10,2014,Ong Bak,Three Wheeled Taxi,tt0368909 wZAxWIJZmo4,2003.0,8,10,2014,Ong Bak,On Fire,tt0368909 04tTXJeE8Gg,2003.0,9,10,2014,Ong Bak,Ting's Revenge,tt0368909 oYDde0u4TT4,2003.0,7,10,2014,Ong Bak,Saming Beat Down,tt0368909 hU0v5lzJzXo,2003.0,10,10,2014,Ong Bak,Rescuing Ong-Bak,tt0368909 tp_djeJB9sQ,2012.0,3,11,2014,One for the Money,Rescued from Ramirez,tt1598828 Ic5tk6Afu0g,2012.0,11,11,2014,One for the Money,Alpha Dog,tt1598828 6bECCbRJ_UM,2012.0,4,11,2014,One for the Money,Just Got a Gun,tt1598828 xhhfBsq7qao,2012.0,1,11,2014,One for the Money,Sexy as Hell,tt1598828 ykdrEYrEaZE,2012.0,10,11,2014,One for the Money,Spray Away,tt1598828 xXTuhmtvXNg,2012.0,9,11,2014,One for the Money,Morty Beyers Goes Bye-Bye,tt1598828 DkIr_I_E1dE,2012.0,2,11,2014,One for the Money,Target Practice,tt1598828 Q3gK7Oe5gbM,2012.0,8,11,2014,One for the Money,Strictly Professional,tt1598828 9UtRH9enIUE,2012.0,7,11,2014,One for the Money,Scumbag Takedown,tt1598828 TLNhcMerK-U,2012.0,6,11,2014,One for the Money,Eyewitness Story,tt1598828 dBal-Rb366c,1942.0,9,10,2014,"Now, Voyager",A Light That Shines From Within,tt0035140 XI12czsGYRc,2012.0,5,11,2014,One for the Money,Naked and Handcuffed,tt1598828 nDKhoXEpIq8,1942.0,6,10,2014,"Now, Voyager",Complete Freedom,tt0035140 E90s7ZR3HNw,1942.0,2,10,2014,"Now, Voyager",,tt0035140 aWLRULhIyCE,1942.0,8,10,2014,"Now, Voyager",A Mother's Love,tt0035140 iYetsX9JdIU,1942.0,1,10,2014,"Now, Voyager",Nervous Breakdown,tt0035140 vf6PZfksmfg,1942.0,7,10,2014,"Now, Voyager",What You've Given Me,tt0035140 D1hNiK3YZ2A,1942.0,3,10,2014,"Now, Voyager",I Wish I Understood You,tt0035140 DesiCKdiCDo,1942.0,4,10,2014,"Now, Voyager",Romantic Survival,tt0035140 d9K2p6NtV40,1942.0,5,10,2014,"Now, Voyager",Immune to Happiness,tt0035140 f08pzusjWTQ,1942.0,10,10,2014,"Now, Voyager",We Have the Stars,tt0035140 BBdShysGs4Y,2005.0,9,10,2014,North Country,Josey's Painful Past,tt0395972 eSeYw5yaU9A,2005.0,7,10,2014,North Country,A Class Action,tt0395972 YJLeJG_bG1M,2005.0,10,10,2014,North Country,What Was I Supposed to Do?,tt0395972 9oRspg2ktcI,2005.0,2,10,2014,North Country,You Gotta Get a Gator Skin,tt0395972 ry88dGpJKZk,2005.0,8,10,2014,North Country,She's Still My Daughter,tt0395972 yPHYjeHk1YM,2005.0,5,10,2014,North Country,Resignation Effective Immediately,tt0395972 fGiaJDWSWKE,2005.0,3,10,2014,North Country,Stay the Hell Away From My Husband,tt0395972 XLk_91MKjgs,2005.0,6,10,2014,North Country,Learn the Rules,tt0395972 IhTgiNhfF7k,1939.0,7,10,2014,Ninotchka,No One Can Be So Happy,tt0031725 pjmRcGHqKZ0,2005.0,4,10,2014,North Country,Port-O-Potty,tt0395972 0k8XW2V2dCg,2005.0,1,10,2014,North Country,Take it Like a Man,tt0395972 2A60QcsJtlE,1939.0,2,10,2014,Ninotchka,Must You Flirt?,tt0031725 qFOp7gSiC0I,1939.0,3,10,2014,Ninotchka,Your General Appearance is Not Distasteful,tt0031725 aJoVRUNmqIY,1939.0,4,10,2014,Ninotchka,Midnight in Paris,tt0031725 JIHGn-BwZMM,1939.0,6,10,2014,Ninotchka,I Can't Say It,tt0031725 dzkjnPSbxJw,1939.0,1,10,2014,Ninotchka,Don't Make An Issue of My Womanhood,tt0031725 BNxai8Y9IXg,1939.0,9,10,2014,Ninotchka,Endangered By Underwear,tt0031725 AH9_BGpsNCo,1939.0,10,10,2014,Ninotchka,Missing Paris,tt0031725 jU6nB-uJh68,1939.0,5,10,2014,Ninotchka,Laughs,tt0031725 bXzp-98u468,1939.0,8,10,2014,Ninotchka,No Visa,tt0031725 jF78Fs72X4Q,2002.0,1,11,2014,Nine Lives,Scottish Mansion,tt0247786 Rn2__xGApzQ,2002.0,6,11,2014,Nine Lives,"Emma, Calm Down",tt0247786 xGGRJg-EzoI,2002.0,7,11,2014,Nine Lives,In the Basement,tt0247786 Cr-WWckkejQ,2002.0,11,11,2014,Nine Lives,The Ultimate Sacrifice,tt0247786 h3QK9udRbWg,2002.0,8,11,2014,Nine Lives,The Demon in the Closet,tt0247786 utJWIjtBBvo,2002.0,10,11,2014,Nine Lives,Laura vs. the Demon,tt0247786 9_ouUNFC5AI,2002.0,3,11,2014,Nine Lives,Give Me One Digit,tt0247786 371S-YWcKFU,2002.0,4,11,2014,Nine Lives,I Have Returned,tt0247786 phWjHc6hsRo,2002.0,2,11,2014,Nine Lives,Real Men Don't Wash,tt0247786 vqgb0X4uuEw,2002.0,5,11,2014,Nine Lives,The First Victim,tt0247786 AQaOCIrb9Fs,2002.0,9,12,2014,Nicholas Nickleby,Rescuing Smike,tt0309912 X_KqKO48vwY,2002.0,9,11,2014,Nine Lives,Surprise Attack,tt0247786 bXtvpRR4VbA,2002.0,6,12,2014,Nicholas Nickleby,The Theatrical Profession,tt0309912 e0d5svC0xQU,2002.0,4,12,2014,Nicholas Nickleby,Fainting is Romantic,tt0309912 4ot1Y-WYGCU,2002.0,12,12,2014,Nicholas Nickleby,Save Ourselves Together,tt0309912 ky1semsHhAY,2002.0,11,12,2014,Nicholas Nickleby,One Great Crash,tt0309912 DX8o_ql6f-E,2002.0,1,12,2014,Nicholas Nickleby,A Brother's Dying Wish,tt0309912 GBDUy8au-_E,2002.0,10,12,2014,Nicholas Nickleby,Smike's Broken Heart,tt0309912 d_t77ai5GEk,2002.0,5,12,2014,Nicholas Nickleby,Challenging Squeers,tt0309912 _zxlffOr1GA,2002.0,8,12,2014,Nicholas Nickleby,A New Salary,tt0309912 NgSS_lMllOw,2002.0,2,12,2014,Nicholas Nickleby,Squeers' School for Boys,tt0309912 hGuXSd2s0jI,2002.0,7,12,2014,Nicholas Nickleby,Debut Performance,tt0309912 1VzqryDpBfM,2002.0,3,12,2014,Nicholas Nickleby,Humble Mrs. Squeers,tt0309912 EgsFR3Y5XB4,1996.0,5,12,2014,Kama Sutra: A Tale of Love,We Can't Be Together,tt0116743 QCrKGjDt00c,1996.0,3,12,2014,Kama Sutra: A Tale of Love,You're Welcome to Live With Us,tt0116743 Z-Hyq9A4vXo,1996.0,7,12,2014,Kama Sutra: A Tale of Love,Sculpt Her,tt0116743 mvWdOSJ7l2c,1996.0,2,12,2014,Kama Sutra: A Tale of Love,I Work With My Hands,tt0116743 v14aCycvoYI,1996.0,9,12,2014,Kama Sutra: A Tale of Love,It's Just You and I,tt0116743 qDAFxENuoCU,1996.0,12,12,2014,Kama Sutra: A Tale of Love,Free Him,tt0116743 t9do_YtNsnM,1996.0,6,12,2014,Kama Sutra: A Tale of Love,Exhilaration is My Department,tt0116743 3pdDB7-UcKM,1996.0,11,12,2014,Kama Sutra: A Tale of Love,You Will Die,tt0116743 gEw3FHiTb1Y,1996.0,8,12,2014,Kama Sutra: A Tale of Love,I Belong to Him Now,tt0116743 XFoGxUA8btQ,1996.0,10,12,2014,Kama Sutra: A Tale of Love,Fight Me,tt0116743 BgWOqRD9RPs,1996.0,1,12,2014,Kama Sutra: A Tale of Love,The Dance of Enticement,tt0116743 EgIkHYVwNrM,1996.0,4,12,2014,Kama Sutra: A Tale of Love,Seductive Position Lesson,tt0116743 0Z9Pl7oF9dI,2008.0,1,9,2014,W.,The Axis of Evil,tt1175491 EWvPNbC9KfQ,2008.0,8,9,2014,W.,George and Karl,tt1175491 cYlCe0SYmWI,2008.0,6,9,2014,W.,Born Again,tt1175491 yDgZEL9-ITE,2008.0,3,9,2014,W.,Lost in Planning,tt1175491 YDuDd4tmZps,2008.0,2,9,2014,W.,"You're Not a Kennedy, You're a Bush",tt1175491 _33snCsG6nY,2008.0,4,9,2014,W.,Mano-a-Mano,tt1175491 VmwM9EXyczw,2008.0,7,9,2014,W.,Dick's Future,tt1175491 WriOEr0A1tQ,2008.0,5,9,2014,W.,George and Laura,tt1175491 8Ad8rMLFcRo,2008.0,9,9,2014,W.,Legacy,tt1175491 DAlyvQ1hNag,2012.0,9,11,2014,Tim and Eric's Billion Dollar Movie,Tim and Eric Fight,tt1855401 vs6V8EILM0M,2012.0,8,11,2014,Tim and Eric's Billion Dollar Movie,Eric Experiences Shrim,tt1855401 _nEWjcGHLJk,2012.0,4,11,2014,Tim and Eric's Billion Dollar Movie,We're Dobis P.R.,tt1855401 TmNPJTt2ZsE,2012.0,7,11,2014,Tim and Eric's Billion Dollar Movie,Katie's Celebrity Balloons,tt1855401 LLrfSeyGCls,2012.0,10,11,2014,Tim and Eric's Billion Dollar Movie,Taquito and the Wolf,tt1855401 fhsngAtICiY,2012.0,11,11,2014,Tim and Eric's Billion Dollar Movie,Battling Schlaaang,tt1855401 V5U2yhrsXv8,2012.0,5,11,2014,Tim and Eric's Billion Dollar Movie,Reggie's Used Toilet Paper,tt1855401 VB9pptEqFl4,2012.0,3,11,2014,Tim and Eric's Billion Dollar Movie,E-Z Swords,tt1855401 lu3fmlUJQsE,2012.0,2,11,2014,Tim and Eric's Billion Dollar Movie,Wanna Make a Billion Dollars?,tt1855401 2G4Vfuk1dJM,2012.0,6,11,2014,Tim and Eric's Billion Dollar Movie,Shrim Alternative Healing Center,tt1855401 bFWMtZmjwR4,2011.0,1,12,2014,Goon,My Brother's Gay!,tt1456635 T0StyKPJrNY,2012.0,1,11,2014,Tim and Eric's Billion Dollar Movie,Schlaaang Super Seat,tt1855401 8QLB_CGDDPY,2011.0,12,12,2014,Goon,Glatt vs. Rhea,tt1456635 ViXH47OcqYA,2011.0,2,12,2014,Goon,Hot Ice,tt1456635 BGWe0FvWW54,2011.0,7,12,2014,Goon,Glatt Is Promoted,tt1456635 bVAiU6Jp4FI,2011.0,11,12,2014,Goon,Taking One for the Team,tt1456635 PFajeb2k24U,2011.0,8,12,2014,Goon,"I'm Stupid, He's Gay",tt1456635 WJOL4xoamoQ,2011.0,5,12,2014,Goon,Gay Porn Hard,tt1456635 ekwnp5L8shM,2011.0,4,12,2014,Goon,Meeting the Team,tt1456635 TMspI78Dptg,2011.0,9,12,2014,Goon,Brutal Beating,tt1456635 tgiPVB4iLMQ,2011.0,10,12,2014,Goon,You're a,tt1456635 cKQf7jAt6xM,2011.0,6,12,2014,Goon,Asking Eva Out,tt1456635 EmYyxwO2IJI,2011.0,3,12,2014,Goon,You Wanna Be An Assassin?,tt1456635 FVoOLRhnkYE,1996.0,3,8,2014,The Cable Guy,Roundball Warm-Up,tt0115798 TVtvBoELA-g,1996.0,5,8,2014,The Cable Guy,Prison Visit,tt0115798 5ZjdYG61Wpc,1996.0,1,8,2014,The Cable Guy,Cable Install Time,tt0115798 65yzqqmXs-Q,1996.0,7,8,2014,The Cable Guy,Cable Nightmare,tt0115798 k1WKpdhcJSo,1996.0,6,8,2014,The Cable Guy,Porno Password,tt0115798 DtgKqQkglyY,1996.0,2,8,2014,The Cable Guy,Illegal Cable,tt0115798 TdPu6sQ9l4g,1996.0,4,8,2014,The Cable Guy,Welcome to Medieval Times,tt0115798 BLz2rixwPpA,1995.0,3,8,2014,Sense and Sensibility,Marianne Falls,tt0114388 zH8ZeRDlyb4,1996.0,8,8,2014,The Cable Guy,Satellite Fight,tt0115798 clTG6sYtJig,1995.0,7,8,2014,Sense and Sensibility,A Far More Pleasing Countenance,tt0114388 WofqydeWMJI,1995.0,4,8,2014,Sense and Sensibility,John Willoughby at Your Service,tt0114388 nEJKLKKO0uY,1995.0,5,8,2014,Sense and Sensibility,Willoughby!,tt0114388 IiMacKBYPZg,1995.0,6,8,2014,Sense and Sensibility,"Yes, No, Never Absolutely",tt0114388 IIGAL77OuM0,1995.0,1,8,2014,Sense and Sensibility,A Way With Kids,tt0114388 t_NZNgm66xI,1995.0,8,8,2014,Sense and Sensibility,Happy Tears,tt0114388 9lORsaux9Lo,1995.0,2,8,2014,Sense and Sensibility,Edward and Elinor,tt0114388 Z7VT-r3RB-4,2009.0,4,9,2014,Saw VI,The Choice of Two Lives,tt1233227 lTWY11J9Z3o,2009.0,9,9,2014,Saw VI,Voice Recognition,tt1233227 al5NvjTtyTI,2009.0,7,9,2014,Saw VI,The Maze,tt1233227 n0Fz-ACCMHk,2009.0,2,9,2014,Saw VI,He Did This to Me,tt1233227 7pk5PLxQXJI,2009.0,6,9,2014,Saw VI,Piranha,tt1233227 xwMMpJ9EWmE,2009.0,3,9,2014,Saw VI,Breathing Room,tt1233227 OEw-cBg0lJY,2009.0,1,9,2014,Saw VI,A Pound of Flesh,tt1233227 3agyeKATELQ,2009.0,8,9,2014,Saw VI,Six Ride the Carousel,tt1233227 stoxd02ubG4,2009.0,5,9,2014,Saw VI,Do You Like How Brutality Feels?,tt1233227 R7f2TkxM_rk,1998.0,7,12,2014,The Man in the Iron Mask,Phillipe Replaces Louis,tt0120744 6cjNvLAvIFs,1998.0,10,12,2014,The Man in the Iron Mask,King Louis Sentences Philippe,tt0120744 h8c0Q6aqZG8,1998.0,1,12,2014,The Man in the Iron Mask,There Are Riots in Paris,tt0120744 ZqZZftydH0I,1998.0,5,12,2014,The Man in the Iron Mask,I Will Burn in Hell,tt0120744 OL0I-Tf0QRU,1998.0,4,12,2014,The Man in the Iron Mask,Porthos Tries to Hang Himself,tt0120744 WrQdlQo-E5Q,1998.0,3,12,2014,The Man in the Iron Mask,You Have the Chance to be a King,tt0120744 In9QzIAgiFE,1998.0,8,12,2014,The Man in the Iron Mask,Philippe Takes Over as King,tt0120744 Tv08VahBEBg,1998.0,12,12,2014,The Man in the Iron Mask,D'Artagnan's Sacrifice,tt0120744 qyj1tT-vqSQ,1998.0,2,12,2014,The Man in the Iron Mask,Philippe Is Freed From the Iron Mask,tt0120744 hc51ExPQJcQ,1998.0,11,12,2014,The Man in the Iron Mask,All For One,tt0120744 -tXr3ask1fo,1998.0,6,12,2014,The Man in the Iron Mask,Judgment Day,tt0120744 hsIdl6x2Lck,1998.0,9,12,2014,The Man in the Iron Mask,Philippe Is Recaptured,tt0120744 7k9bFzgXeXE,2008.0,9,11,2014,Valkyrie,A Phone Call,tt0985699 kFa1DI_4vEs,2008.0,2,11,2014,Valkyrie,Retrieving the Liquor Bomb,tt0985699 AiqgMdj316M,2008.0,11,11,2014,Valkyrie,Fates of the Conspirators,tt0985699 Fyd8tAhnKig,2008.0,10,11,2014,Valkyrie,No One Will Be Spared,tt0985699 mt0zR2uOAB8,2008.0,7,11,2014,Valkyrie,The Bomb Explodes,tt0985699 1OUMXpkRHNA,2008.0,5,11,2014,Valkyrie,The Plot to Kill Hitler,tt0985699 TMvi9NJlv_s,2008.0,3,11,2014,Valkyrie,It Only Matters That We Act Now,tt0985699 G2SpqqxJiig,2008.0,8,11,2014,Valkyrie,Operation Is in Effect,tt0985699 CAYHD5mAsfo,2008.0,1,11,2014,Valkyrie,Death From Above,tt0985699 uMug9lL1Sgg,2008.0,6,11,2014,Valkyrie,"No Handed ""Heil""",tt0985699 FsWEzJJlyi0,2008.0,4,11,2014,Valkyrie,We Have to Kill Hitler,tt0985699 eh4jLrZ2IK4,1990.0,1,12,2014,Men at Work,Golf Clap,tt0100135 tjJPFWAtG4I,1990.0,6,12,2014,Men at Work,Dead Councilman,tt0100135 w1iNrckWufI,1990.0,9,12,2014,Men at Work,I Thrive on Misery,tt0100135 7GDnbK8lTYg,1990.0,4,12,2014,Men at Work,The Pellet Gun,tt0100135 fNeCsZY7I9o,1990.0,11,12,2014,Men at Work,Kicking Trash,tt0100135 cpdt1EljZp0,1990.0,2,12,2014,Men at Work,Fun With Trash,tt0100135 BNWF_QsuetA,1990.0,5,12,2014,Men at Work,Another Man's Fries,tt0100135 kM781iUqdrI,1990.0,7,12,2014,Men at Work,The Drunk Texan,tt0100135 vMyTIoLhoZY,1990.0,3,12,2014,Men at Work,Exploding Bags,tt0100135 DsGsRazwHNc,1990.0,10,12,2014,Men at Work,Cuffed to a Carousel,tt0100135 uVXQWXpXmvc,1990.0,12,12,2014,Men at Work,Throwing out the Trash,tt0100135 M7Bao8cJqWw,1990.0,8,12,2014,Men at Work,The Pizza Man Sees Too Much,tt0100135 RqAmUMayBk4,2006.0,5,8,2014,Saw 3,Don't Become What He Is,tt0489270 xZw3A072F30,2006.0,7,8,2014,Saw 3,Vengeance Only Makes the Pain Greater,tt0489270 LGRbJ610dkc,2006.0,2,8,2014,Saw 3,Dead on the Inside,tt0489270 mwa7-cCuwCI,2006.0,6,8,2014,Saw 3,Skull Surgery,tt0489270 -UuYTHwZbOQ,2006.0,8,8,2014,Saw 3,The Rack,tt0489270 R5YZoDFeQlM,2006.0,4,8,2014,Saw 3,Your Life Has Just Begun,tt0489270 ACdEiMqOVvs,2006.0,1,8,2014,Saw 3,Release the Chains,tt0489270 3UjujuY8fbU,2006.0,3,8,2014,Saw 3,A Shell of Your Former Self,tt0489270 PNRScegrA_E,2008.0,12,12,2014,Goodbye Solo,Blowing Rock,tt1095442 KWWQP82Gqt8,2008.0,2,12,2014,Goodbye Solo,Roc,tt1095442 nIAzIbEBdeM,2008.0,9,12,2014,Goodbye Solo,Stay Out of My Life,tt1095442 pVzqfF-qwlY,2008.0,10,12,2014,Goodbye Solo,My Way,tt1095442 fqteEi-ypuQ,2008.0,11,12,2014,Goodbye Solo,Mamadou,tt1095442 b3uEOvtuMyc,2008.0,8,12,2014,Goodbye Solo,Good Times,tt1095442 W91ITNEiEF4,2008.0,3,12,2014,Goodbye Solo,Childish Dream,tt1095442 VYZmHG6_7Rg,2008.0,1,12,2014,Goodbye Solo,"You're Not Gonna Jump, Right?",tt1095442 bMemNwITgjA,2008.0,5,12,2014,Goodbye Solo,New Roommate,tt1095442 VFPAH3uEo_A,2008.0,4,12,2014,Goodbye Solo,Tattoo,tt1095442 I3GuNWUhXDY,2008.0,6,12,2014,Goodbye Solo,Cell Phone,tt1095442 ZreKuv4qWY8,1979.0,2,11,2014,Gas Pump Girls,The Art of Pumping Gas,tt0077597 RiOhh4AG0rc,2008.0,7,12,2014,Goodbye Solo,Quiz,tt1095442 I2ci4vKm_cI,1979.0,9,11,2014,Gas Pump Girls,Grand Theft Auto,tt0077597 zTV295EGtOk,1979.0,8,11,2014,Gas Pump Girls,Sweet Sensations,tt0077597 AHV2k4t593E,1979.0,5,11,2014,Gas Pump Girls,Public Nuisance,tt0077597 4VFhBMwArqs,1979.0,7,11,2014,Gas Pump Girls,Dating a Vulture,tt0077597 gif34AkAFIg,1979.0,10,11,2014,Gas Pump Girls,Gas Pump Pep Talk,tt0077597 IQQDJahY-Eg,1979.0,6,11,2014,Gas Pump Girls,Oil Fight,tt0077597 _INsYrEpEFo,1979.0,11,11,2014,Gas Pump Girls,The Sheik's Entourage,tt0077597 QoSE9w3o068,1979.0,4,11,2014,Gas Pump Girls,Calling All Motorists,tt0077597 JLWaJTCL_V4,1979.0,3,11,2014,Gas Pump Girls,First Customer,tt0077597 KvVR17L6j0E,1979.0,1,11,2014,Gas Pump Girls,June's Lonely,tt0077597 3FG9eGmAPeY,2010.0,10,11,2014,Furry Vengeance,Bear Attack,tt0492389 8xBrQp4oZs0,2010.0,2,11,2014,Furry Vengeance,Phase Two,tt0492389 sdea5Iq5D_U,2010.0,4,11,2014,Furry Vengeance,The Tapping Crow,tt0492389 EMta7CcNgGs,2010.0,8,11,2014,Furry Vengeance,Crazy Pills,tt0492389 _ZHytX1097U,2010.0,6,11,2014,Furry Vengeance,Skunked,tt0492389 o8A2gIt799I,2010.0,1,11,2014,Furry Vengeance,"Give a Hoot, Don't Pollute",tt0492389 tVBVeXfbo6k,2010.0,11,11,2014,Furry Vengeance,Raccoon Fight,tt0492389 jmFpZsBB53s,2010.0,9,11,2014,Furry Vengeance,Out For Revenge,tt0492389 KcLVm5KkTjk,2010.0,7,11,2014,Furry Vengeance,Party Animals,tt0492389 S3dCv5aTB2c,2010.0,5,11,2014,Furry Vengeance,Nature Fights Back,tt0492389 lRzsGDSofxo,2010.0,3,11,2014,Furry Vengeance,Let's Play Games,tt0492389 MmKjw9UGi78,1988.0,5,10,2014,Earth Girls Are Easy,Musical Discoveries,tt0097257 tp-eANZcnVQ,1988.0,8,10,2014,Earth Girls Are Easy,The Dance-Off,tt0097257 YhYn-b84MvE,1988.0,3,10,2014,Earth Girls Are Easy,Splash Landing,tt0097257 _3wnaxan4qw,1988.0,9,10,2014,Earth Girls Are Easy,,tt0097257 yE0aTqijR3o,1988.0,4,10,2014,Earth Girls Are Easy,Aliens for Lunch,tt0097257 S9Wi3A3skb0,1988.0,10,10,2014,Earth Girls Are Easy,Cause I'm a Blonde,tt0097257 8DYT3ysI2UY,1988.0,2,10,2014,Earth Girls Are Easy,Here Comes Dr. Love,tt0097257 wavVceonMJg,1988.0,7,10,2014,Earth Girls Are Easy,Lost in Space With No Conditioner,tt0097257 emda_fIsz2o,1988.0,1,10,2014,Earth Girls Are Easy,Brand New Girl,tt0097257 JEjsNsrZuHI,1965.0,3,12,2014,Dr. Goldfoot and the Bikini Machine,Completely Flat,tt0059124 BUKTDsI9Rbc,1988.0,6,10,2014,Earth Girls Are Easy,A Zillion Gallons of Nair,tt0097257 Q1f_3XxcqKc,1965.0,12,12,2014,Dr. Goldfoot and the Bikini Machine,Goodbye Dr. Goldfoot,tt0059124 mCu3uKNGuZw,1965.0,9,12,2014,Dr. Goldfoot and the Bikini Machine,What Street Was That?,tt0059124 AB7mSGjpn8c,1965.0,1,12,2014,Dr. Goldfoot and the Bikini Machine,Diane Under Fire,tt0059124 2JA3UQCYkQs,1965.0,6,12,2014,Dr. Goldfoot and the Bikini Machine,Reject #12,tt0059124 rHwc3Jc9rD8,1965.0,10,12,2014,Dr. Goldfoot and the Bikini Machine,Cable Car Chase,tt0059124 BRV1CDa5_Z4,1965.0,4,12,2014,Dr. Goldfoot and the Bikini Machine,Robot Dance Party,tt0059124 _dm0Oj_fF14,1965.0,5,12,2014,Dr. Goldfoot and the Bikini Machine,Proposing to a Robot,tt0059124 W2o3KcKAldE,1965.0,2,12,2014,Dr. Goldfoot and the Bikini Machine,A Rotten Girl Like You,tt0059124 u0wNMcfOIXM,1965.0,8,12,2014,Dr. Goldfoot and the Bikini Machine,The Dungeon,tt0059124 tCjohxqJ-0c,1965.0,11,12,2014,Dr. Goldfoot and the Bikini Machine,Golden Gate Pursuit,tt0059124 lVsH8dttw4I,1965.0,7,12,2014,Dr. Goldfoot and the Bikini Machine,Laser Lipstick,tt0059124 fv34SxLog3o,1985.0,2,11,2014,Creator,A New Assistant,tt0088960 N204ncRytIE,1985.0,5,11,2014,Creator,Involuntary Workout,tt0088960 LVYMePfXin8,1985.0,11,11,2014,Creator,Letting Go of Lucy,tt0088960 PB5bvrhHFIw,1985.0,10,11,2014,Creator,Begging for Barbara's Life,tt0088960 CmKzzu5ELHU,1985.0,9,11,2014,Creator,Taking a Shower,tt0088960 CLAepDJtUJU,1985.0,8,11,2014,Creator,The Love Formula,tt0088960 q6LqVs7P-pI,1985.0,7,11,2014,Creator,The Dinner Party,tt0088960 5XuaulOD0ZE,1985.0,3,11,2014,Creator,I Want to Be Like You,tt0088960 almVKV4ywQQ,1985.0,1,11,2014,Creator,Robot Wake-Up,tt0088960 LI0o8Nhig1Q,1985.0,6,11,2014,Creator,Meeting Meli,tt0088960 _NhQKmjXz7c,2008.0,7,10,2014,Copycat,Looking for Someone Special,tt0112722 ic_89aGltSg,2008.0,1,10,2014,Copycat,Hanging with a Killer,tt0112722 qPVAxNvS1YQ,2008.0,6,10,2014,Copycat,Dahmer Entertains a Victim,tt0112722 GUoa3MFLEO8,2008.0,9,10,2014,Copycat,Ed Kills Again,tt0112722 xcgOzHorYag,2008.0,2,10,2014,Copycat,Ramirez Witnesses a Murder,tt0112722 _1A33xDs0lI,2008.0,4,10,2014,Copycat,We've Got Nothing,tt0112722 vMwPmm9UmtI,2008.0,8,10,2014,Copycat,Startling Discovery,tt0112722 XYVKWFL9irA,2008.0,3,10,2014,Copycat,Say You Love Satan,tt0112722 oJuU7gvcwdQ,2008.0,5,10,2014,Copycat,The Oven,tt0112722 2nhZzcQBkp0,2008.0,10,10,2014,Copycat,To Be Alive,tt0112722 qDkEnNVpn0g,2007.0,12,12,2014,Bratz,Bratitude,tt0804452 bc6k19YKBN4,2007.0,10,12,2014,Bratz,Yasmin Quits,tt0804452 sx_oR6WXO0I,2007.0,8,12,2014,Bratz,Stage Fright,tt0804452 _JtPO8an9xY,2007.0,5,12,2014,Bratz,Fashion's Like Your Super Power,tt0804452 ggEPIKZuPn4,2007.0,1,12,2014,Bratz,Cheerleader Auditions,tt0804452 MXM6Hz_ItMw,2007.0,9,12,2014,Bratz,We Don't Have a Name,tt0804452 L4TIQxyJEcs,2007.0,3,12,2014,Bratz,Detention,tt0804452 K5xM1SxgD6M,2007.0,11,12,2014,Bratz,It's All About Me,tt0804452 mKQYPa9Onac,2007.0,6,12,2014,Bratz,Math for Jocks,tt0804452 l063S2tqZSg,2007.0,2,12,2014,Bratz,Food Fight,tt0804452 6p6tevRcEXY,2007.0,7,12,2014,Bratz,Fabulous,tt0804452 r9ma_9tM48k,2007.0,4,12,2014,Bratz,La Cucaracha,tt0804452 RotJK471KDg,1999.0,1,10,2014,A Slipping-Down Life,You Can Hop Right Out of Here,tt0162662 plGWKSHrzCk,1999.0,4,10,2014,A Slipping-Down Life,You Know It's Backwards,tt0162662 4pUPYVW5GWI,1999.0,3,10,2014,A Slipping-Down Life,Just Stood Up and Did It,tt0162662 LWnHl2_xh4M,1999.0,8,10,2014,A Slipping-Down Life,Family Dinner,tt0162662 fgDsOV1YKpE,1999.0,6,10,2014,A Slipping-Down Life,Your Face Is So Soft,tt0162662 Ovp4lQhkIGY,1999.0,2,10,2014,A Slipping-Down Life,I Want to Answer Him,tt0162662 QJOXvLGYEwo,1999.0,10,10,2014,A Slipping-Down Life,Evie Don't Go,tt0162662 8NSR7Pod8O8,1999.0,5,10,2014,A Slipping-Down Life,I Don't Have That Big a Forehead,tt0162662 tfqqS90iYKY,1999.0,9,10,2014,A Slipping-Down Life,He's Dying,tt0162662 r9w5dIeVamA,1999.0,7,10,2014,A Slipping-Down Life,To the Chapel,tt0162662 dAxijzivjlc,2000.0,3,10,2014,Amores perros,Dog Fight,tt0245712 yIGiGtjHUS0,2000.0,8,10,2014,Amores perros,Who Paid You to Kill Me?,tt0245712 5AAni-jpFaU,2000.0,10,10,2014,Amores perros,"I Love You, My Little Girl",tt0245712 f48wH7l3c5I,2000.0,1,10,2014,Amores perros,The Crash,tt0245712 LzXKQvdRZQU,2000.0,5,10,2014,Amores perros,The Aftermath,tt0245712 09MjH5hbF5Y,2000.0,2,10,2014,Amores perros,You Don't Scare Me,tt0245712 zCu2iserep4,2000.0,4,10,2014,Amores perros,Thousands of Rats,tt0245712 lLepw8cs6eQ,2000.0,7,10,2014,Amores perros,What Happened?,tt0245712 KGf_Z5s891U,2000.0,6,10,2014,Amores perros,Come Away With Me,tt0245712 Hzv74uI9Cr4,2000.0,9,10,2014,Amores perros,Do I Kill Him?,tt0245712 C_L23E0FwCs,2011.0,1,12,2014,Albert Nobbs,"Rich, Young and Handsome",tt1602098 ViRs8qaB5YQ,2011.0,3,12,2014,Albert Nobbs,Hubert's Story,tt1602098 yfYKkvq5dow,2011.0,8,12,2014,Albert Nobbs,Chocolates,tt1602098 BI5u7jAxIjo,2011.0,11,12,2014,Albert Nobbs,Freedom,tt1602098 1q15xQhI6Lg,2011.0,7,12,2014,Albert Nobbs,Not the Jealous Type,tt1602098 AiaIf4aJgfE,2011.0,2,12,2014,Albert Nobbs,You're a Woman,tt1602098 Chy1Cu5WOgc,2011.0,5,12,2014,Albert Nobbs,Albert's Story,tt1602098 pnzYOL2o_To,2011.0,10,12,2014,Albert Nobbs,She Was My World,tt1602098 8ypUiGzOsOs,2011.0,4,12,2014,Albert Nobbs,Who's the Lucky Lady?,tt1602098 9WpVeYgwugo,2011.0,12,12,2014,Albert Nobbs,You Call That Kissing?,tt1602098 7m3Mv9f_P1U,2011.0,9,12,2014,Albert Nobbs,This Is Good Stuff,tt1602098 OCDouPR9v9E,2011.0,6,12,2014,Albert Nobbs,Dreams of America,tt1602098 fHiIfSLjJE4,2010.0,4,9,2014,Winter's Bone,Cattle Auction,tt1399683 _83-1qzRNpo,2010.0,1,9,2014,Winter's Bone,Teardrop,tt1399683 ZM3mRir3-LE,2010.0,5,9,2014,Winter's Bone,Roughed Up,tt1399683 O7wmAaT-TBk,2010.0,9,9,2014,Winter's Bone,A Banjo,tt1399683 8T2dOyo64Pk,2010.0,3,9,2014,Winter's Bone,Skinning a Squirrel,tt1399683 QK1Xnd7cPJw,2010.0,2,9,2014,Winter's Bone,Thump's Place,tt1399683 ay13eiuH54U,2010.0,6,9,2014,Winter's Bone,Standing for Family,tt1399683 1YXJuW9MNGc,2010.0,8,9,2014,Winter's Bone,Daddy's Bones,tt1399683 5QFPjo1DGE8,2010.0,7,9,2014,Winter's Bone,Pulled Over,tt1399683 0Qkk8a1IVxQ,2011.0,10,10,2014,Warrior,Brotherly Love,tt1291584 sy7Lx7jY2SU,2011.0,8,10,2014,Warrior,"No Win, No Home",tt1291584 LkimMjwfjrQ,2011.0,7,10,2014,Warrior,Stop This Ship,tt1291584 P9clz3jnMVo,2011.0,9,10,2014,Warrior,The Boys Are at it Again,tt1291584 kKHr9gSW7HM,2011.0,4,10,2014,Warrior,Forgiveness,tt1291584 PXn6o5uTfEU,2011.0,5,10,2014,Warrior,You Got It,tt1291584 XVePWDEck4w,2011.0,6,10,2014,Warrior,You're Trying?,tt1291584 9NErcOfza10,2011.0,2,10,2014,Warrior,Taking Home the Bacon,tt1291584 f6DDYCf80hw,2011.0,1,10,2014,Warrior,Beating Mad Dog,tt1291584 EUC3JOXJBYw,2011.0,3,10,2014,Warrior,Mr. Inside Man,tt1291584 l9k9_K8Tea0,1969.0,5,10,2014,The Wild Bunch,When You Side With a Man,tt0065214 CYP38A-nwLY,1969.0,7,10,2014,The Wild Bunch,Let's Go,tt0065214 _ysVoV3x5Zo,1969.0,9,10,2014,The Wild Bunch,Battle of Bloody Porch,tt0065214 7NReUd2_0u0,1969.0,4,10,2014,The Wild Bunch,Washers,tt0065214 St16P31BURU,1969.0,1,10,2014,The Wild Bunch,"If They Move, Kill 'Em",tt0065214 gOJJm_cSRds,1969.0,2,10,2014,The Wild Bunch,Bank Shootout,tt0065214 R6-LDKl3FOs,1969.0,10,10,2014,The Wild Bunch,Ain't Like It Used to Be,tt0065214 zT639dQIhck,1969.0,6,10,2014,The Wild Bunch,The Bridge,tt0065214 yDo7fA8sAlM,1969.0,3,10,2014,The Wild Bunch,He's Mine,tt0065214 mx15l4L4Zlk,1969.0,8,10,2014,The Wild Bunch,We Want Angel,tt0065214 c--eNhRG5B4,1960.0,11,12,2014,The Apartment,Ring in the New,tt0053604 _gOQq1ygJgY,1960.0,12,12,2014,The Apartment,Shut Up and Deal,tt0053604 sh7lb9j3k5s,1960.0,6,12,2014,The Apartment,The Floating Key,tt0053604 73BHmDv4qYc,1960.0,5,12,2014,The Apartment,A Flower From Miss Kubelik,tt0053604 Rf7NrtrHs1U,1960.0,1,12,2014,The Apartment,You're on Your Way Up,tt0053604 AFXFoDiTtmA,1960.0,10,12,2014,The Apartment,All Washed Up,tt0053604 jWt7wiLImmU,1960.0,3,12,2014,The Apartment,We Never Close at Buddy Boy's,tt0053604 MeQCLsUrCXo,1960.0,9,12,2014,The Apartment,Fruitcake Every Christmas,tt0053604 iFpB2_WOk0Q,1960.0,7,12,2014,The Apartment,Sheldrake Wants the Apartment,tt0053604 8gGPt8Eg5lw,1960.0,2,12,2014,The Apartment,"Slow Down, Kid!",tt0053604 VKE_B4jMF5Q,1976.0,1,8,2014,Taxi Driver,Travis Visits Betsy,tt0075314 UneHDzMhbbw,1976.0,6,8,2014,Taxi Driver,Travis Wants to Help Iris,tt0075314 aKUcMTQgl5E,1960.0,4,12,2014,The Apartment,The Best Operator in the Building,tt0053604 -QWL-FwX4t4,1976.0,5,8,2014,Taxi Driver,You Talkin' to Me?,tt0075314 FGwRe_5L1WM,1976.0,7,8,2014,Taxi Driver,Suck On This!,tt0075314 1ve57l3c19g,1976.0,2,8,2014,Taxi Driver,I Gotta Get Organized,tt0075314 X6frLQWOSlQ,1976.0,4,8,2014,Taxi Driver,A Sick Passenger (Martin Scorsese Cameo),tt0075314 Rq4ucbgrV6U,1976.0,8,8,2014,Taxi Driver,Travis Is a Hero,tt0075314 LvtFcK8BaY8,1976.0,3,8,2014,Taxi Driver,Travis Supports Palantine,tt0075314 XVNNkjY2YDQ,2002.0,1,8,2014,Panic Room,I'm Raoul,tt0258000 pdYYAu24yVQ,2002.0,8,8,2014,Panic Room,Unsung Hero,tt0258000 8XTt2uGxh9E,2002.0,4,8,2014,Panic Room,Get Out of My House!,tt0258000 HieAi6H3Gxs,2002.0,3,8,2014,Panic Room,The,tt0258000 v8KA0GieSoE,2002.0,2,8,2014,Panic Room,Discovering the Burglars,tt0258000 P2p410SndXM,2002.0,7,8,2014,Panic Room,"Thanks, Burnham",tt0258000 F7bAUwj2HEs,2002.0,5,8,2014,Panic Room,Turn the Gas Off!,tt0258000 SLgV3ynglzg,1987.0,3,11,2014,Moonstruck,Bad Luck,tt0093565 T8X4r5X9c-Y,1987.0,1,11,2014,Moonstruck,Johnny Proposes,tt0093565 hYNYTcpIDSs,2002.0,6,8,2014,Panic Room,Hand in the Door,tt0258000 O66m3X5mYpU,1987.0,2,11,2014,Moonstruck,Bad Blood and Curses,tt0093565 ji9C_R6HLvg,1987.0,5,11,2014,Moonstruck,Ronny Lost His Hand and Bride,tt0093565 wUPc7frUlD8,1987.0,4,11,2014,Moonstruck,Bring Me the Big Knife!,tt0093565 k7WkN_gPNaM,1987.0,9,11,2014,Moonstruck,Get In My Bed,tt0093565 -n3qpOM31Pc,1987.0,6,11,2014,Moonstruck,A Wolf Without a Foot,tt0093565 AXgHBzoymaQ,1987.0,8,11,2014,Moonstruck,Pop and Mona,tt0093565 nuVzF_r0kHQ,1987.0,10,11,2014,Moonstruck,Have I Been a Good Wife?,tt0093565 iLgMFwStTHc,1987.0,7,11,2014,Moonstruck,Snap Out of It,tt0093565 lVmwqKY9BX0,1987.0,11,11,2014,Moonstruck,"Wedding Off, Wedding On",tt0093565 8LbCb592C0g,2011.0,1,12,2014,Melancholia,Armageddon,tt1527186 2oWgJ75kqxg,2011.0,4,12,2014,Melancholia,Stark Raving Mad,tt1527186 V53g8B7Ljqg,2011.0,6,12,2014,Melancholia,The Red Star Is Missing,tt1527186 LYbU_99u22o,2011.0,7,12,2014,Melancholia,That Wonderful Planet,tt1527186 gd2-0TMNqZw,2011.0,3,12,2014,Melancholia,I Don't Believe in Marriage,tt1527186 F4-pp1JORFc,2011.0,11,12,2014,Melancholia,Know What I Think of Your Plan?,tt1527186 xU61FGJ5aHA,2011.0,9,12,2014,Melancholia,It Looks Friendly,tt1527186 0Q4cKXYFIxU,2011.0,5,12,2014,Melancholia,Sky Lanterns,tt1527186 vKsWNzKjVEk,2011.0,12,12,2014,Melancholia,At World's End,tt1527186 eQBlcP9ENk8,2011.0,8,12,2014,Melancholia,The Earth Is Evil,tt1527186 3SIsMAk_Yhw,2011.0,10,12,2014,Melancholia,Hail Storm,tt1527186 MxlTo0BbQlE,1971.0,2,8,2014,McCabe & Mrs. Miller,A Good Proposition,tt0067411 4GraEwTsqFs,2011.0,2,12,2014,Melancholia,Wedded Bliss,tt1527186 cb4dxubPYEs,1971.0,4,8,2014,McCabe & Mrs. Miller,Butler the Bounty Hunter,tt0067411 AbRlLFpC34s,1971.0,3,8,2014,McCabe & Mrs. Miller,A Stranger Comes to Town,tt0067411 SU6tW2cZQeI,1971.0,8,8,2014,McCabe & Mrs. Miller,Butler Hunts McCabe,tt0067411 PBAzBWYoR9U,1971.0,1,8,2014,McCabe & Mrs. Miller,The Arrival of Mrs. Miller,tt0067411 guK3fiVFU98,1971.0,5,8,2014,McCabe & Mrs. Miller,The Lawyer,tt0067411 UOYi4NzxlhE,2011.0,3,9,2014,Margin Call,The Music Stops,tt1615147 LtFyP0qy9XU,2011.0,9,9,2014,Margin Call,It's Just Money,tt1615147 7LBM8BX4UfU,1971.0,7,8,2014,McCabe & Mrs. Miller,Under the Covers,tt0067411 e6WyN4z0VGc,2011.0,1,9,2014,Margin Call,Your Opportunity,tt1615147 xW1CrQu_H6E,2011.0,2,9,2014,Margin Call,"Hookers, Booze and Dancers",tt1615147 m8Mc-38C88g,2011.0,5,9,2014,Margin Call,A Bridge,tt1615147 ag14Ao_xO4c,2011.0,4,9,2014,Margin Call,"Be First, Be Smarter or Cheat",tt1615147 v4P4cS5jKmQ,2011.0,8,9,2014,Margin Call,A Fire Sale,tt1615147 DDwsfoudwuc,2011.0,7,9,2014,Margin Call,A Mercy Killing,tt1615147 QNWXsYZWiiA,2011.0,6,9,2014,Margin Call,I'm With the Firm,tt1615147 j_UtDuZaeZo,-1.0,8,8,2014,Mad Max 2: The Road Warrior,The Final Crash Scene,tt0082694 BXmMRlQtnP8,-1.0,4,8,2014,Mad Max 2: The Road Warrior,Return of the Rig Scene,tt0082694 zdr-f3MZgqo,-1.0,1,8,2014,Mad Max 2: The Road Warrior,Meet The Road Warrior Scene,tt0082694 i2gVXd7FzhQ,-1.0,2,8,2014,Mad Max 2: The Road Warrior,Greetings from the Humungus Scene,tt0082694 vpir9eGi8Mk,-1.0,5,8,2014,Mad Max 2: The Road Warrior,The Crash of the Interceptor Scene,tt0082694 bOEcxxyOC-s,-1.0,3,8,2014,Mad Max 2: The Road Warrior,You Talk to Me Scene,tt0082694 3P4LUt0qcX8,-1.0,7,8,2014,Mad Max 2: the Road Warrior,Tanker Under Attack Scene,tt0082694 YFWDhaI6BqY,-1.0,6,8,2014,Mad Max 2: The Road Warrior,The Escape Scene,tt0082694 iD3pUnlGJxU,2010.0,7,10,2014,I Saw the Devil,Real Pain,tt1588170 _nrXdj11-MA,2010.0,6,10,2014,I Saw the Devil,Psycho Killer,tt1588170 TgaoKPuLtpg,2010.0,1,10,2014,I Saw the Devil,The Devil Attacks,tt1588170 gKmsNU2CWo0,2010.0,8,10,2014,I Saw the Devil,Drive By,tt1588170 cJEE1-5uQXI,2010.0,10,10,2014,I Saw the Devil,Revenge,tt1588170 jE5qCSOAsXU,2010.0,5,10,2014,I Saw the Devil,"Hands, Then Feet",tt1588170 wRNOxvIxMpk,2010.0,9,10,2014,I Saw the Devil,You Already Lost,tt1588170 cMWSTAEs-TA,2010.0,3,10,2014,I Saw the Devil,Captured Killer,tt1588170 bK3dyRu67A8,2010.0,2,10,2014,I Saw the Devil,Ball Buster,tt1588170 LJAUOJDM88o,2010.0,4,10,2014,I Saw the Devil,Damn Unlucky,tt1588170 R2zNRrOXbPY,2010.0,4,5,2014,Harry Potter and the Deathly Hallows: Part 1,Escape From Malfoy Manor,tt0926084 nlOF6YhAoJQ,2010.0,5,5,2014,Harry Potter and the Deathly Hallows: Part 1,Dobby's Death,tt0926084 GM5WI4MTXzc,2010.0,1,5,2014,Harry Potter and the Deathly Hallows: Part 1,Dance O Children,tt0926084 AdaRb_fg8dg,2010.0,2,5,2014,Harry Potter and the Deathly Hallows: Part 1,Harry and Hermione Kiss,tt0926084 ltY3ZLA6dA8,2000.0,2,8,2014,"Crouching Tiger, Hidden Dragon",My Name Is Li Mu Bai,tt0190332 KXIJv1NoXmo,2000.0,7,8,2014,"Crouching Tiger, Hidden Dragon",Bamboo Forest Fight,tt0190332 s1hs62Is67s,2000.0,6,8,2014,"Crouching Tiger, Hidden Dragon",The Friendship is Over,tt0190332 X5SaZ8EmSpw,2000.0,5,8,2014,"Crouching Tiger, Hidden Dragon",Invincible Sword Goddess,tt0190332 svBPXPXgpqc,2000.0,3,8,2014,"Crouching Tiger, Hidden Dragon",Give Me My Comb!,tt0190332 noLAdkr7WzY,2000.0,4,8,2014,"Crouching Tiger, Hidden Dragon",Some Tea,tt0190332 rxJiE5EKnD0,2000.0,1,8,2014,"Crouching Tiger, Hidden Dragon",The Sword Thief,tt0190332 x0D4unitqpE,2000.0,8,8,2014,"Crouching Tiger, Hidden Dragon",Enlightenment,tt0190332 3bqc-TIPv4c,2010.0,7,11,2014,13 Assassins,Total Massacre,tt1436045 dtVoa1vg8qk,2010.0,5,11,2014,13 Assassins,Ready To Die,tt1436045 tvON7JZAqzY,2010.0,6,11,2014,13 Assassins,Death by Arrows,tt1436045 NcmpDcaWa3c,2010.0,4,11,2014,13 Assassins,The Foolish Path,tt1436045 vEfhLwt-8wg,2010.0,1,11,2014,13 Assassins,No Samurai Code,tt1436045 dNwHQsv3tgE,2010.0,2,11,2014,13 Assassins,Akashi Henchmen,tt1436045 zhGOkVH91z8,2010.0,3,11,2014,13 Assassins,Forest Guide,tt1436045 0HSDU71_U-Q,2010.0,11,11,2014,13 Assassins,Death Comes for Us All,tt1436045 BaSoze4fhGA,2010.0,10,11,2014,13 Assassins,Duel,tt1436045 njPq0Ld041k,2010.0,9,11,2014,13 Assassins,The Age of War,tt1436045 6HwzVqcNaSU,2010.0,8,11,2014,13 Assassins,Kill the Men That Get Past Me,tt1436045 EwC2ZHxoDu4,1989.0,12,12,2014,Teen Witch,Finest Hour,tt0098453 5XU9Sz69aKA,1989.0,4,12,2014,Teen Witch,Sex Education,tt0098453 lZ885HzflVc,1989.0,1,12,2014,Teen Witch,"Mr. Miller Teaches ""Romance""",tt0098453 oxxBXpnn2Jw,1989.0,10,12,2014,Teen Witch,Top That!,tt0098453 3GcQp2JJvv0,1989.0,3,12,2014,Teen Witch,Louise's Palm Reading,tt0098453 lLX3wpgs32Y,1989.0,7,12,2014,Teen Witch,The Anti-Friendship Spell,tt0098453 vgGb9tSOKbs,1989.0,11,12,2014,Teen Witch,The Most Popular Girl,tt0098453 HcD7driLtCQ,1989.0,9,12,2014,Teen Witch,A Little Voodoo,tt0098453 HPeiybjTy3E,1989.0,5,12,2014,Teen Witch,Disappearing David,tt0098453 9ogtJYnjD1I,1989.0,2,12,2014,Teen Witch,I Like Boys,tt0098453 W26hbGkeEWo,1989.0,6,12,2014,Teen Witch,Richie the Dog,tt0098453 0FNk4sNdPtQ,1989.0,8,12,2014,Teen Witch,Manhood!,tt0098453 goyoOGbDjNM,1988.0,11,12,2013,Child's Play,Charred Chucky Scene,tt0094862 4GUk-1i2_Zo,1988.0,8,12,2013,Child's Play,Frying the Doctor Scene,tt0094862 MM42NkUhSnM,1988.0,3,12,2013,Child's Play,Chucky Doesn't Need Batteries Scene,tt0094862 8NOmVkx7fWQ,1988.0,2,12,2013,Child's Play,Chucky Blows up Eddie Scene,tt0094862 oXcDMKOD0O0,1994.0,9,12,2013,Wagons East,Big Snake That Makes Women Faint,tt0111653 sTu7aCTkp9g,2003.0,7,10,2013,I Am David,What Do You See?,tt0327919 u1Dxy8jBmYE,2003.0,3,10,2013,I Am David,You Have to Smile,tt0327919 u-oetP_iX_I,2003.0,5,10,2013,I Am David,Let's Eat!,tt0327919 WRJWb6SViK4,2003.0,6,10,2013,I Am David,The Protest,tt0327919 E0TmjA1X2N4,2003.0,9,10,2013,I Am David,I've Seen This Book Before,tt0327919 Do4Z-aFeJMs,2003.0,1,10,2013,I Am David,David Escapes,tt0327919 p-dnhwIY2G0,2003.0,10,10,2013,I Am David,Going Home,tt0327919 J-8l4bdfL9g,2003.0,8,10,2013,I Am David,Most People Are Good,tt0327919 9CSMoJr51IQ,2003.0,2,10,2013,I Am David,This is Your Journey,tt0327919 cs6MZqTBBC0,1994.0,3,12,2013,Wagons East,That's a Sign,tt0111653 SehEKk2gcSc,1988.0,2,11,2013,The Couch Trip,Burns Jumps,tt0094910 jSabMn5UXKo,1989.0,7,10,2013,Red Riding Hood,Man Without a Heart,tt0385988 Lz3XcjwKGmQ,1988.0,9,11,2013,The Couch Trip,Bus Therapy,tt0094910 b2gz0vSh0J4,1980.0,5,11,2013,The Long Riders,You're a Whore,tt0081071 8oDxIAKnWx4,1974.0,6,12,2013,Truck Turner,Funeral for a Pimp,tt0072325 BZH32FuXeF4,1994.0,12,12,2013,Wagons East,Ambiguously Gay Duel,tt0111653 lVQgRd34Dlk,1994.0,7,12,2013,Wagons East,Sharing Feelings with Men,tt0111653 cqwrFYjHahk,1994.0,10,12,2013,Wagons East,"Belle, Not Just a Whore",tt0111653 kUkbUoZ__X0,1994.0,5,12,2013,Wagons East,My Doll,tt0111653 liH8CRkWl3Q,1994.0,2,12,2013,Wagons East,Phil's Cow,tt0111653 aVEtuBwgly0,1994.0,1,12,2013,Wagons East,Pride & Prejudice,tt0111653 OaZ30IajJ2w,1994.0,6,12,2013,Wagons East,Lighting Farts on Fire,tt0111653 iaQdh-Hbp3I,1974.0,7,12,2013,Truck Turner,Your Ass Belongs to Me,tt0072325 5938LUU-UAY,1994.0,4,12,2013,Wagons East,James Harlow Wagon Master,tt0111653 6Mwtt_EKIQk,1994.0,8,12,2013,Wagons East,Indian Country,tt0111653 jArxL-3-j94,1994.0,11,12,2013,Wagons East,Explosive Booby Trap,tt0111653 VqtAA8dO7Ww,1984.0,3,10,2013,Missing in Action,"If You Move, I'll Kill You",tt0087727 jWJqzIUntho,1958.0,7,10,2013,The Big Country,Fighting Words,tt0051411 zpQFjWoRhGc,1984.0,8,10,2013,Missing in Action,Braddock Bombs the Camp,tt0087727 3lyx7UsMqmc,1988.0,4,12,2013,Child's Play,Chucky Escapes Scene,tt0094862 ikfmhFpbWJk,1991.0,6,12,2013,Not Without My Daughter,I Won't Leave Her,tt0102555 OeUbPposwAo,1987.0,4,12,2013,No Way Out,Tell Me Who It Is!,tt0093640 WIZ0J4rWO88,1982.0,7,12,2013,The Beast Within,I Warned You,tt0083629 3fIng0TRjXI,1992.0,9,12,2013,Love Field,He Never Touched Me,tt0104765 w0l1ukaxeBg,1956.0,7,11,2013,The Killing,Dead at 4:24,tt0049406 C94ag0ondig,1959.0,9,10,2013,The Angry Red Planet,The Cure,tt0052564 i-bRuSNSvcU,1980.0,3,10,2013,Motel Hell,Farmer Vincent Fritters!,tt0081184 mAeceNqeNtQ,1982.0,12,12,2013,The Beast Within,So Much Blood,tt0083629 AguptuYeDRU,1959.0,7,8,2013,The Fugitive Kind,Lady Needs Val,tt0052832 CiOFGnNgnnc,1982.0,5,12,2013,Still of the Night,Park Pursuit,tt0084732 UPaTwmDXLWE,1978.0,5,12,2013,The Great Train Robbery,Prison Break,tt0079240 QDNELnksfnw,2002.0,3,10,2013,The Crocodile Hunter: Collision Course,Fun With a Snake,tt0305396 GMiD6PU8SKI,1958.0,4,10,2013,The Big Country,Rufus Crashes the Party,tt0051411 a_aZ01raOoI,2002.0,4,10,2013,The Crocodile Hunter: Collision Course,Saving the Joey,tt0305396 MlD51EzRE7c,1990.0,5,11,2013,Stanley & Iris,He Can't Read and He Can't Write,tt0100680 0pVwRO2dFVs,1985.0,3,10,2013,The Mean Season,The Killer Calls Again,tt0089572 jcTv-BEwabk,1955.0,3,11,2013,The Night of the Hunter,Love and Hate,tt0048424 yx2giHzJ4-I,1981.0,9,11,2013,The French Lieutenant's Woman,There Was Madness in Me,tt0082416 MBfp_LuEfqA,1959.0,4,8,2013,The Fugitive Kind,Dead People Don't Talk,tt0052832 DKwC6X7_JU0,1968.0,2,11,2013,The Party,Hrundi Blows It,tt0063415 5485fd0CtKw,1963.0,8,10,2013,The Pink Panther,Two Monkeys,tt0057413 3gDvO7H5iEA,1990.0,9,10,2013,The Russia House,Grown-Up Love,tt0100530 4SzQZn8xGnA,1981.0,8,11,2013,The French Lieutenant's Woman,A Proper Talk,tt0082416 q3a5wxfm13Q,1963.0,6,10,2013,The Pink Panther,Clouseau Visits the Princess,tt0057413 W2Et5nGF5C4,1959.0,2,8,2013,The Fugitive Kind,Carol Knows Val,tt0052832 G5sYuuD7ixA,1963.0,9,10,2013,The Pink Panther,Porridge With the Lyttons,tt0057413 kEsfYG_bF-E,1963.0,7,10,2013,The Pink Panther,I'll Have Your Stripes,tt0057413 77KnithfRRk,1961.0,2,10,2013,West Side Story,Love At First Sight,tt0055614 L0rNCGRjvtU,1987.0,3,11,2013,Throw Momma from the Train,Dreams of Stabbing Momma,tt0094142 oepaVuuBAtA,1960.0,3,12,2013,The Magnificent Seven,We Need Help,tt0054047 SwI_ITgsSks,1999.0,8,12,2013,The Mod Squad,Officer Pete,tt0120757 tLzcAofC4WA,1999.0,2,12,2013,The Mod Squad,I Was Blending,tt0120757 OuEmfmfgw2Y,1955.0,4,11,2013,The Night of the Hunter,Harry Murders Willa,tt0048424 siHzbnn1Bxw,2003.0,11,11,2013,Uptown Girls,Slaps and Hugs,tt0263757 JyxSm91eun4,1955.0,10,11,2013,The Night of the Hunter,Leaning on the Everlasting Arms,tt0048424 lQ8JIa98kAw,1980.0,2,11,2013,The Long Riders,Good Ol' Rebel,tt0081071 meZXqa_CE_o,1973.0,5,11,2013,White Lightning,Sheriff J.C. Connors,tt0070915 LDxOZ6cv-DU,1989.0,2,12,2013,UHF,Meeting Pamela,tt0098546 S4s8LTNnufA,1989.0,2,10,2013,The Phantom of the Opera,You're Suspended,tt0098090 QFQ4izzxtec,1974.0,2,12,2013,Truck Turner,Follow the Bouncing Ball,tt0072325 aikBhgSFE2A,2003.0,8,11,2013,Uptown Girls,Molly Opens Up,tt0263757 sbJ89LFheTs,1991.0,12,12,2013,The Silence of the Lambs,Having an Old Friend for Dinner,tt0102926 fSNdh-3k6-g,1974.0,11,12,2013,Truck Turner,vs. Harvard Blue,tt0072325 jWQ1ITS94cA,1983.0,8,11,2013,WarGames,It's a Bluff,tt0086567 _cmX1kEbl4g,1999.0,1,12,2013,The Mod Squad,Not Real Cops,tt0120757 Btdp-sC8MJI,1989.0,8,12,2013,UHF,Teaching Poodles How to Fly,tt0098546 a5WAyc-EaNc,2003.0,7,11,2013,Uptown Girls,It's a Harsh World,tt0263757 LfxeHobEC9g,1987.0,7,11,2013,Throw Momma from the Train,Larry Warns Momma,tt0094142 33KUnZf841c,2003.0,4,11,2013,Uptown Girls,Oh... My... God...,tt0263757 faRFVdrRpws,1983.0,7,7,2013,Yentl,Piece of Sky,tt0086619 iWGL8PRdM7E,1974.0,10,12,2013,Truck Turner,Rooftop Kills,tt0072325 WCES5LXQn9M,1983.0,2,7,2013,Yentl,"Papa, Can You Hear Me?",tt0086619 RzGyyYgXffQ,1973.0,10,11,2013,White Lightning,Sister Linda's Home of Unwed Mothers,tt0070915 6bxEuaulT4k,1986.0,2,11,2013,Stagecoach,Manifest Destiny,tt0092003 b6xbga06ApQ,1991.0,3,12,2013,Not Without My Daughter,Will You Translate for Me?,tt0102555 b9KCMBBn0EI,1984.0,9,9,2013,Breakin' 2: Electric Boogaloo,Dancing for a Miracle,tt0086999 bsaA903oxvc,1984.0,2,9,2013,Breakin' 2: Electric Boogaloo,Dance Combat,tt0086999 OF-QIOuucVk,1974.0,10,12,2013,The Taking of Pelham One Two Three,Runaway Train,tt0072251 0A9ppII7eVA,1974.0,8,11,2013,Lenny,Dirty But Not Obscene,tt0071746 2_iIEQ-hlKc,1984.0,4,10,2013,Missing in Action,Bulletproof Raft,tt0087727 sua9tcQ14hs,1984.0,10,10,2013,Missing in Action,Chopper to Saigon,tt0087727 PlGtHAZOWbo,1997.0,8,11,2013,Gang Related,Suspicions,tt0118900 IW7worFAFlU,1984.0,5,10,2013,Missing in Action,Wardrobe Attack,tt0087727 1zOmRBOYLpc,1984.0,1,10,2013,Missing in Action,Double Grenade Jump,tt0087727 FlB2v8LQHDM,1984.0,6,10,2013,Missing in Action,Destruction Derby,tt0087727 lSzT54HTpeY,1984.0,9,10,2013,Missing in Action,Watery Vengeance,tt0087727 ccU8NJFeBSA,1984.0,7,10,2013,Missing in Action,Fortunes of War,tt0087727 Ce0zSR2ParE,1984.0,2,10,2013,Missing in Action,Braddock Kills a TV,tt0087727 vlZQj4OrTUM,2002.0,9,11,2013,Hart's War,We Served Our Country,tt0251114 0xJcu3vc9tI,1973.0,11,11,2013,Scorpio,The Object Is Not to Win,tt0070653 E5VOPMr7SKg,1989.0,5,10,2013,Red Riding Hood,The,tt0385988 K2Lt0Ek64eM,1980.0,7,10,2013,Motel Hell,I've Got a Treat For Ya,tt0081184 Ax1Vgvp5Cls,1980.0,5,10,2013,Motel Hell,Fake Cows,tt0081184 dso8WOrSRSQ,1959.0,6,10,2013,The Angry Red Planet,It's Alive!,tt0052564 r6fpS6P16NI,1980.0,6,10,2013,Motel Hell,Gassing the Swingers,tt0081184 844ONMSqRWU,1959.0,1,10,2013,The Angry Red Planet,Return to Earth,tt0052564 e89qDsf6Q3g,1959.0,4,10,2013,The Angry Red Planet,Remembering the Horror,tt0052564 kTXppLCyuOk,1991.0,12,12,2013,Not Without My Daughter,We're Home,tt0102555 WvQTrzonQAs,1959.0,3,10,2013,The Angry Red Planet,Flirting All the Way to Mars,tt0052564 XYrGVKzAJjQ,1987.0,5,12,2013,No Way Out,National Security,tt0093640 0zLL_XdqxmQ,1987.0,9,12,2013,No Way Out,I'm the One in the Picture,tt0093640 lD7Xo_FhL4s,1987.0,2,12,2013,No Way Out,Secret Affair,tt0093640 GZJ6sC4nKNc,1991.0,8,12,2013,Not Without My Daughter,I Want My Baby!,tt0102555 A4E1rEzhnz8,1985.0,4,12,2013,Once Bitten,Laundromat Ladies,tt0089730 sRwqd3eCNUY,1991.0,4,12,2013,Not Without My Daughter,An Iranian Citizen,tt0102555 tDWQvA6IhG8,1985.0,6,12,2013,Once Bitten,Vampire's Dream,tt0089730 lhGtoYnSdl8,1985.0,10,12,2013,Once Bitten,I'm a Day Person,tt0089730 EdN4MiVmI74,1987.0,6,12,2013,No Way Out,The Job,tt0093640 -kkP1Pvzvgs,1980.0,1,10,2013,Motel Hell,Buried Heads,tt0081184 8riyzFyGdVo,1991.0,7,12,2013,Not Without My Daughter,Where Have You Been?,tt0102555 dm3xv5sosng,1991.0,1,12,2013,Not Without My Daughter,Violating Sharia Dress Code,tt0102555 daoD1UtU5XI,1987.0,7,12,2013,No Way Out,The Magnitude of the Scandal,tt0093640 yh17pzVY6BE,1980.0,8,10,2013,Motel Hell,Ida is Attacked,tt0081184 Y_lgyJtcb2A,1987.0,10,12,2013,No Way Out,Sam's Confession,tt0093640 DCUGRi_FlNE,1985.0,11,12,2013,Once Bitten,After That Virgin!,tt0089730 PrjcxNpxOos,1991.0,9,12,2013,Not Without My Daughter,Paradise,tt0102555 5BL7Fj5SUhU,1985.0,8,12,2013,Once Bitten,Vampire Research,tt0089730 Mvu47rYJ1Y4,1986.0,4,11,2013,Otello,Planting the Seeds,tt0091699 _uHTonkUqW4,1985.0,1,12,2013,Once Bitten,Countess Seduces Mark,tt0089730 b9EAfTyu5_I,1980.0,10,10,2013,Motel Hell,You Take Care of My Animals...,tt0081184 t3c_a9M1E7s,1985.0,9,12,2013,Once Bitten,Rescuing Robin,tt0089730 cEPa4RFLJ-0,1987.0,12,12,2013,No Way Out,A Hero of the Soviet Union,tt0093640 XRGOhLyLS9Q,1992.0,4,10,2013,Of Mice and Men,Candy's Old Dog,tt0105046 zJQujcyncBk,1959.0,7,10,2013,The Angry Red Planet,Leviathan & The City,tt0052564 AXsbWJC8VM4,1987.0,11,12,2013,No Way Out,Men of Power,tt0093640 _kKO_1Dr4Go,1985.0,5,12,2013,Once Bitten,Mark Hisses at Kids,tt0089730 JMlpAPKDm2s,1985.0,2,12,2013,Once Bitten,Did I Enjoy It?,tt0089730 6lYiLycAQSo,1987.0,8,12,2013,No Way Out,They'll Kill You,tt0093640 7WQTYb36Cew,1959.0,10,10,2013,The Angry Red Planet,Parting Martian Warning,tt0052564 wz29yiGSrB0,1959.0,8,10,2013,The Angry Red Planet,Expunging Radiation,tt0052564 x6fpplPaxG0,1985.0,3,12,2013,Once Bitten,Mark's Sexual Failures,tt0089730 c6ik-AA87Uo,1980.0,4,10,2013,Motel Hell,Feeding the Heads,tt0081184 2xRlAbbcG0Y,1992.0,9,10,2013,Of Mice and Men,Where We Gonna Go Now?,tt0105046 NT_hyjakJEI,1991.0,5,12,2013,Not Without My Daughter,A Fellow American,tt0102555 jZyhfkpsGGI,1980.0,9,10,2013,Motel Hell,Chainsaw Fight!,tt0081184 DCM-sEpyh1Q,1992.0,1,10,2013,Of Mice and Men,Lennie's Dead Mouse,tt0105046 bR2Uon5BWC0,1992.0,6,10,2013,Of Mice and Men,Lennie Fights Back,tt0105046 65XtOM1UUGw,1959.0,2,10,2013,The Angry Red Planet,Memoirs of a Radioactive Meteor,tt0052564 5Ddap2Pyhtw,1992.0,10,10,2013,Of Mice and Men,George Shoots Lennie,tt0105046 5GyAcr1BrNA,1987.0,1,12,2013,No Way Out,The Inaugural Ball,tt0093640 16bGLMEtAww,1992.0,2,10,2013,Of Mice and Men,The Loneliest Guys in the World,tt0105046 mpDnD5Pp90I,1991.0,10,12,2013,Not Without My Daughter,You Can't Leave Her Here,tt0102555 D7MotG6VP4I,1985.0,5,10,2013,The Mean Season,Leaving is Just a Formality,tt0089572 d1lql0Z0e-E,1985.0,7,12,2013,Once Bitten,No Reflection,tt0089730 6UwcLeAV31Q,1986.0,10,11,2013,Otello,Kills Desdemona,tt0091699 _wLWdDRIkis,1980.0,2,10,2013,Motel Hell,Ida Helps Bob Get Ahead.,tt0081184 N69MOeO5bi0,1987.0,3,12,2013,No Way Out,Leaving by the Back Door,tt0093640 lyu3QUjAFtw,1986.0,2,11,2013,Otello,A Song of Love,tt0091699 03L12Mqkzg8,1985.0,12,12,2013,Once Bitten,Mark Finally Scores,tt0089730 Z-Hye1zg5IU,1959.0,5,10,2013,The Angry Red Planet,Hysterical Female vs. Carnivorous Plant,tt0052564 gLB9F9QftwM,1986.0,11,11,2013,Otello,Dies,tt0091699 LS6oxPMMdas,1986.0,8,11,2013,Otello,Accuses Desdemona,tt0091699 81fH2bYF59g,1985.0,9,10,2013,The Mean Season,A Tape for Malcolm,tt0089572 k6_nTAS1M4M,1992.0,7,10,2013,Of Mice and Men,A Natural,tt0105046 CxkpSGI8L8o,1986.0,3,11,2013,Otello,You Loved Me For My Misfortunes,tt0091699 KggovdPWfpk,1985.0,1,10,2013,The Mean Season,News Gets Made Somewhere Else,tt0089572 Keejr4iFv5A,1986.0,6,11,2013,Otello,Cassio's Dream,tt0091699 XHGWTDHchVQ,1992.0,8,10,2013,Of Mice and Men,I Done a Bad Thing,tt0105046 LfKPfJmfGgU,1985.0,4,10,2013,The Mean Season,Reporting or Participating?,tt0089572 JPtEnl6MpHU,1986.0,9,11,2013,Otello,Preparing for Death,tt0091699 8-ECgs93q1A,1986.0,5,11,2013,Otello,The Green-Eyed Monster,tt0091699 bWm1GC01kGo,1985.0,6,10,2013,The Mean Season,Meeting in Person,tt0089572 yEYUc9oIVD8,1991.0,2,12,2013,Not Without My Daughter,I Want Us to Live in Iran,tt0102555 sO2RBLeWYyg,1992.0,3,10,2013,Of Mice and Men,Curley's Wife Seduces George,tt0105046 LL2LvzUVsZw,1991.0,11,12,2013,Not Without My Daughter,I Forgot Toby Bunny,tt0102555 hJUtiOm9dLY,1992.0,5,10,2013,Of Mice and Men,The Plan Is Set,tt0105046 Ur3uTKbrqIQ,1986.0,1,11,2013,Otello,Long Live !,tt0091699 _f_1Or6RhiQ,1985.0,2,10,2013,The Mean Season,The Killer Calls,tt0089572 zDRmwZxOJ4o,1986.0,7,11,2013,Otello,Vengeance,tt0091699 __3ylv_JWqw,1985.0,10,10,2013,The Mean Season,Shoot Him!,tt0089572 XwS5WsjPg9U,1988.0,10,11,2013,The Boost,Lenny Ruins the Deal,tt0094783 7jtGp6xaVPU,1985.0,8,10,2013,The Mean Season,Nothing Is Important,tt0089572 hy0b9Rz31Zs,1982.0,3,12,2013,Still of the Night,Glad He's Dead,tt0084732 pwqOYWnLxBo,1958.0,3,10,2013,The Big Country,Riding Old Thunder,tt0051411 4vmjX0sQrIc,1988.0,11,11,2013,The Boost,Junkie,tt0094783 tYGiUUnoZhk,1958.0,6,10,2013,The Big Country,Shall I Go On?,tt0051411 9ioRMsPEf8o,1958.0,9,10,2013,The Big Country,Jim Duels Buck,tt0051411 iltOTKedsM0,1958.0,1,10,2013,The Big Country,Harassing Jim and Pat,tt0051411 eFd0VyfLf1M,1988.0,8,11,2013,The Boost,I'm Pregnant,tt0094783 nQIfRCUlfz4,1958.0,10,10,2013,The Big Country,A Cowardly End,tt0051411 c2tWZFAL5t4,1985.0,7,10,2013,The Mean Season,Jumping the Bridge,tt0089572 Y52_WuvyKoo,1988.0,5,11,2013,The Boost,Killing the Old Fireball,tt0094783 lh6Y9EU0wPQ,1988.0,1,11,2013,The Boost,Till I Fall Off the Earth,tt0094783 2KfWymDaTmA,1958.0,5,10,2013,The Big Country,Steve Manhandles Pat,tt0051411 OvaNgegisKU,1988.0,3,11,2013,The Boost,Leap Through Life,tt0094783 Kujzb5PT5ns,1988.0,9,11,2013,The Boost,Relapse,tt0094783 eZp6EmVqq5o,1958.0,2,10,2013,The Big Country,Hunting the Hannasseys,tt0051411 pIvTIG3tWok,1980.0,3,8,2013,The Apple,,tt0078790 2xujTq-ueyo,1988.0,4,11,2013,The Boost,Hollywood Party,tt0094783 ZnsLPtYvqj8,1988.0,7,11,2013,The Boost,Bad Reaction,tt0094783 IC5DpSRkHps,1988.0,6,11,2013,The Boost,The First Taste,tt0094783 AZIlLRwCn08,1984.0,6,11,2013,The Bounty,The Loyalists Are Castaway,tt0086993 Pj4y9M7cPy0,1980.0,2,8,2013,The Apple,Showbizness,tt0078790 LPxNka5Ll5U,1988.0,2,11,2013,The Boost,Will It Sell? Will It Soar?,tt0094783 oYx2teRxnvw,1984.0,7,11,2013,The Bounty,Lost At Sea,tt0086993 ZFM-OxDGrkg,1984.0,5,11,2013,The Bounty,Mutiny,tt0086993 iFnPpSNqKYU,1982.0,5,12,2013,The Beast Within,I Came Back,tt0083629 bEA-o4IJAic,1958.0,8,10,2013,The Big Country,A Rare Man,tt0051411 r1jgKSXPL84,1984.0,1,11,2013,The Bounty,Gag Them Both,tt0086993 gqRIBKn09_M,1980.0,4,8,2013,The Apple,How to Be a Master,tt0078790 -O3_WO63fhU,1980.0,6,8,2013,The Apple,Cry For Me,tt0078790 LVKODpCrCpw,1980.0,5,8,2013,The Apple,Speed,tt0078790 RoP15HrFNu4,1984.0,8,11,2013,The Bounty,Divvying Up the Spoils,tt0086993 1XUHPC3s3rM,1972.0,7,10,2013,The Mechanic,Motorcycle Chase,tt0068931 9bVHNqrqvjI,1982.0,3,12,2013,The Beast Within,The Dog Finds a Hand,tt0083629 y_P5zX0ejXI,1980.0,7,8,2013,The Apple,Coming for You,tt0078790 lKJ8pyN8Cm4,1982.0,10,12,2013,The Beast Within,The Judge Confesses,tt0083629 RdL23CR9K5w,1982.0,11,12,2013,The Beast Within,The Judge Loses His Head,tt0083629 z4edIxzhU80,1984.0,9,11,2013,The Bounty,"Civilized Men, Not Savages",tt0086993 5DYK9Xq-aF0,1984.0,10,11,2013,The Bounty,"Land, Ho!",tt0086993 KDc6dZxh0Cs,1984.0,2,11,2013,The Bounty,Second in Command,tt0086993 snKDmQJqQ1E,1982.0,2,12,2013,The Beast Within,Fresh Meat,tt0083629 NSuYLeI3d1U,1982.0,8,12,2013,The Beast Within,Kill Me!,tt0083629 AlIvRiDePlY,1982.0,6,12,2013,The Beast Within,A Taste for Blood,tt0083629 FVEiScxUQyY,1984.0,3,11,2013,The Bounty,Mixing With the Natives,tt0086993 R5UsZ1yoTO8,1972.0,5,10,2013,The Mechanic,Skeet Practice,tt0068931 KIE436-2xcE,1982.0,1,12,2013,The Beast Within,The Beast Awakens,tt0083629 YDCHojBWEhg,1982.0,4,12,2013,The Beast Within,A Murderer Running Loose,tt0083629 3Lf57-rBck8,1972.0,10,10,2013,The Mechanic,See Naples and Die,tt0068931 WdD2JN10zpY,1982.0,9,12,2013,The Beast Within,The Beast Emerges,tt0083629 k-WrZcFJo2k,1984.0,4,11,2013,The Bounty,Stolen Coconuts,tt0086993 IaoE6JAGhh8,1962.0,3,10,2013,The Miracle Worker,Helen's First Lesson,tt0056241 JrGE2knBQsM,1972.0,6,10,2013,The Mechanic,Killer Heroes,tt0068931 Nk4JsPf8xX4,1962.0,5,10,2013,The Miracle Worker,Annie Is Reminded of Her Past,tt0056241 zm7wCb8IXx4,1972.0,2,10,2013,The Mechanic,Killing Big Harry,tt0068931 C2YKcU5rfm0,1980.0,8,8,2013,The Apple,Child of Love,tt0078790 Nt9wqkbXyyU,1962.0,10,10,2013,The Miracle Worker,Helen Kisses Annie Goodnight,tt0056241 FD9lsX7gyeo,1985.0,10,10,2013,The Falcon and the Snowman,Predatory Behavior,tt0087231 4Spw9eH9GBk,1985.0,6,10,2013,The Falcon and the Snowman,It's Not Over,tt0087231 bCk9vtlnr34,1972.0,9,10,2013,The Mechanic,Bulldozing!,tt0068931 Q067OuCUl7o,1984.0,11,11,2013,The Bounty,Exonerated,tt0086993 rxwADdYa0YM,1995.0,10,10,2013,The Fantasticks,They Were You,tt0113026 y7rxncDh6io,1985.0,5,10,2013,The Falcon and the Snowman,We Were Altar Boys Together,tt0087231 e0cR6R3SccI,1972.0,1,10,2013,The Mechanic,"Ready, Aim, Fire!",tt0068931 _W1NRq6DekY,1962.0,4,10,2013,The Miracle Worker,Helen's Table Manners,tt0056241 PXBBHe_SwSs,1972.0,4,10,2013,The Mechanic,An Associate,tt0068931 WoDvOu6PqLk,1972.0,3,10,2013,The Mechanic,Slow Sleepy Suicide,tt0068931 LIugIUixU_0,1980.0,1,8,2013,The Apple,Do the BIM!,tt0078790 NZqeFQasslA,1995.0,5,10,2013,The Fantasticks,El Gallo,tt0113026 ealJoNJuKnY,1985.0,4,10,2013,The Falcon and the Snowman,Time to Diversify,tt0087231 YBqruLJZAcg,1972.0,8,10,2013,The Mechanic,Shotgun Attack,tt0068931 X115jd2e6e8,1995.0,4,10,2013,The Fantasticks,Romeo & Juliet,tt0113026 X03tbD886IQ,1988.0,6,11,2013,The Couch Trip,Teensy Tadpoles of Concern,tt0094910 tfGpUcIEIf0,2002.0,1,10,2013,The Crocodile Hunter: Collision Course,What a Steamer!,tt0305396 BEkjNAsakzA,1962.0,1,10,2013,The Miracle Worker,She Can't See or Hear,tt0056241 g3jImb6V4wI,1995.0,2,10,2013,The Fantasticks,Fighting Neighbors,tt0113026 yY6EgYygsAg,1985.0,2,10,2013,The Falcon and the Snowman,Courier Undependable,tt0087231 Ze8Yt5V7T6A,1962.0,2,10,2013,The Miracle Worker,She Wants to Talk Like You and Me,tt0056241 yUgQNj5-PaY,1985.0,8,10,2013,The Falcon and the Snowman,I Am a Tourist,tt0087231 _mVT_JmJ2Bo,2002.0,10,10,2013,The Crocodile Hunter: Collision Course,Croc on Board,tt0305396 zMNUcNokvkU,1978.0,11,12,2013,The Great Train Robbery,The Trial,tt0079240 uSvAfRaxSu4,1995.0,8,10,2013,The Fantasticks,Sword Defeat,tt0113026 gbEDjhLuPAs,1985.0,3,10,2013,The Falcon and the Snowman,Surprise Inspection,tt0087231 AwMjkeZbRZ0,1988.0,8,11,2013,The Couch Trip,Cease & Desist,tt0094910 JmcifAkvDn4,1988.0,11,11,2013,The Couch Trip,I'm Dr. Baird,tt0094910 P06IeXkgRNA,2002.0,8,10,2013,The Crocodile Hunter: Collision Course,The Ride of Our Lives,tt0305396 VklQQrb9-4c,1988.0,4,11,2013,The Couch Trip,Puffed-Up Smidgen of Blowfish Sh**,tt0094910 nfGKHa_mn20,2002.0,7,10,2013,The Crocodile Hunter: Collision Course,King Brown Snake,tt0305396 PFDnRg0lxUE,1985.0,9,10,2013,The Falcon and the Snowman,The Falcon is Free,tt0087231 usWA4j2ED_Q,1988.0,5,11,2013,The Couch Trip,How Does it Feel to Be Uprooted?,tt0094910 82sgwc-34Cg,1985.0,7,10,2013,The Falcon and the Snowman,Paranoid Meltdown,tt0087231 nvFln5J-6uY,1988.0,3,11,2013,The Couch Trip,One of Your Worst Depressions,tt0094910 yqy6z3kxWdI,1978.0,1,12,2013,The Great Train Robbery,Transporting Gold,tt0079240 tYmvgGjSiN8,1995.0,1,10,2013,The Fantasticks,Much More,tt0113026 fXBsUOysL3c,1988.0,7,11,2013,The Couch Trip,Premature Ejaculator,tt0094910 pHu6mCqzpyw,1978.0,3,12,2013,The Great Train Robbery,The Seduction of Fowler,tt0079240 kV36CHsDZ_c,1978.0,9,12,2013,The Great Train Robbery,Riding the Train,tt0079240 -GSZwG_s-8A,1980.0,7,11,2013,The Long Riders,Knife Fight,tt0081071 d3ZUSI1_lOc,1995.0,3,10,2013,The Fantasticks,Never Say No,tt0113026 BWYNt1N6xWQ,1962.0,7,10,2013,The Miracle Worker,Let's Play a Game,tt0056241 5FQFrCgi8d8,1988.0,1,11,2013,The Couch Trip,Up Yours,tt0094910 OK77tkb6D0c,1985.0,1,10,2013,The Falcon and the Snowman,A Partnership,tt0087231 qa2Ng4a5yk0,1978.0,7,12,2013,The Great Train Robbery,Strangling Willy,tt0079240 m-YWYdwcexU,2002.0,5,10,2013,The Crocodile Hunter: Collision Course,Steve Flirts With a Spider,tt0305396 Qr9F2ij1jfI,2002.0,2,10,2013,The Crocodile Hunter: Collision Course,Crocodile Hunting at Night,tt0305396 CFCnY49pyII,1995.0,7,10,2013,The Fantasticks,This Plum Is Too Ripe,tt0113026 zSCukxfXdAQ,1980.0,4,11,2013,The Long Riders,Highway Robbery,tt0081071 NsMwPIy4Ax4,1980.0,8,11,2013,The Long Riders,Shootout in Northfield,tt0081071 NMOjCohQbXY,1962.0,8,10,2013,The Miracle Worker,It Has a Name,tt0056241 Lgmzj8eWK8M,1978.0,2,12,2013,The Great Train Robbery,A Sharp Businessman,tt0079240 -rebHHoZJSM,1988.0,10,11,2013,The Couch Trip,Therapy Time in the Southland,tt0094910 QlKuJBiw1ac,1962.0,9,10,2013,The Miracle Worker,She Knows!,tt0056241 aErChTKF6u4,1980.0,11,11,2013,The Long Riders,I Shot Jesse James,tt0081071 dDtFWw1mZuw,1995.0,9,10,2013,The Fantasticks,Take Me With You!,tt0113026 sJGWczuXzT8,2002.0,9,10,2013,The Crocodile Hunter: Collision Course,Smart Croc,tt0305396 0t1xR1LX5Kg,1978.0,10,12,2013,The Great Train Robbery,Throwing Gold From the Train,tt0079240 iWJTDTs9ymk,2002.0,6,10,2013,The Crocodile Hunter: Collision Course,Exploring a Spider Hole,tt0305396 vIaVITC62Cs,1977.0,1,12,2013,The Island of Dr. Moreau,What Were They?,tt0076210 0JBU9hgQ_T0,1978.0,4,12,2013,The Great Train Robbery,Stop That Boy!,tt0079240 H3KbLBwQFW4,1963.0,1,11,2013,The Great Escape,To Cross the Wire Is Death,tt0057115 jKVDdMG37ig,1963.0,7,11,2013,The Great Escape,The Tunnel Keeps Collapsing,tt0057115 opoVbcNO48o,1995.0,6,10,2013,The Fantasticks,The Fake Abduction,tt0113026 jtQcr7lJXB0,1962.0,6,10,2013,The Miracle Worker,I Want Complete Charge,tt0056241 JNuiAZP2dtM,1960.0,7,12,2013,The Magnificent Seven,Squeeze the Trigger,tt0054047 Kk6l301jwOk,1960.0,5,12,2013,The Magnificent Seven,Vin Is In,tt0054047 ugm8RMqRSxs,1978.0,6,12,2013,The Great Train Robbery,75 Seconds,tt0079240 L9-FR2MUfrU,1960.0,12,12,2013,The Magnificent Seven,Killing Calvera,tt0054047 9yh3GgjFpxw,1960.0,4,12,2013,The Magnificent Seven,Testing Chico,tt0054047 w3-djlpw4iw,1978.0,12,12,2013,The Great Train Robbery,The Great Escape,tt0079240 RZa79QGDeo8,1963.0,2,11,2013,The Great Escape,The Cooler,tt0057115 yjEcOkwV2MU,1960.0,2,12,2013,The Magnificent Seven,Standoff at the Cemetery,tt0054047 V39FjO5t9BY,1959.0,8,8,2013,The Fugitive Kind,Fire at the Store,tt0052832 gKpPQ6SqHvQ,1960.0,1,12,2013,The Magnificent Seven,I Want Him Buried,tt0054047 JAz7hBbOoc0,1978.0,8,12,2013,The Great Train Robbery,Cholera Coffin,tt0079240 vtxPupFohQA,1960.0,9,12,2013,The Magnificent Seven,Village Shootout,tt0054047 _yY3iR3yuT0,1981.0,3,11,2013,The French Lieutenant's Woman,The French Lieutenant's Whore,tt0082416 nyMtN_aHC_8,1960.0,10,12,2013,The Magnificent Seven,Gunfighter Arithmetic,tt0054047 eSYNuO9GTU4,1963.0,3,11,2013,The Great Escape,Danny's 17th Tunnel,tt0057115 w4i_ZwMT3H0,1960.0,11,12,2013,The Magnificent Seven,Surrendering to Calvera,tt0054047 7WCR4dZt7Uw,1963.0,5,11,2013,The Great Escape,Blitz Out,tt0057115 LQhfDQoYERY,1981.0,1,11,2013,The French Lieutenant's Woman,On the Sea Wall,tt0082416 j5Fd6TqePnk,1959.0,6,8,2013,The Fugitive Kind,The Kind That Don't Belong,tt0052832 RhMsnnZ-0qM,1981.0,7,11,2013,The French Lieutenant's Woman,Gone to London,tt0082416 AU-paVv6zTk,1960.0,6,12,2013,The Magnificent Seven,Fastest Knife in Town,tt0054047 qPXny_mZ0iE,1977.0,9,12,2013,The Island of Dr. Moreau,I Remember It All!,tt0076210 zLhfa5tKJyY,1981.0,4,11,2013,The French Lieutenant's Woman,A Fireplace Romance,tt0082416 hfufT3MZQm8,1959.0,3,8,2013,The Fugitive Kind,Jukin',tt0052832 hh5iOitreQ8,1977.0,11,12,2013,The Island of Dr. Moreau,Opening the Cages,tt0076210 nDGZMXNYfF4,1977.0,12,12,2013,The Island of Dr. Moreau,Escaping the Island,tt0076210 coOguh0UhcY,1977.0,3,12,2013,The Island of Dr. Moreau,Cave of the Mutants,tt0076210 jVjq_m-PWSQ,1977.0,4,12,2013,The Island of Dr. Moreau,His Is the House of Pain,tt0076210 6PvYbL69oyE,1981.0,5,11,2013,The French Lieutenant's Woman,I Was the First,tt0082416 cFZWNfXzFLU,1959.0,1,8,2013,The Fugitive Kind,Snakeskin in Court,tt0052832 BJ1tNYfDZa4,1977.0,2,12,2013,The Island of Dr. Moreau,The Possibilities Are Endless,tt0076210 DcmzHtokiMw,1960.0,8,12,2013,The Magnificent Seven,Confronting Calvera,tt0054047 JpvqpzU7eEc,1963.0,8,11,2013,The Great Escape,Ives Crosses the Wire,tt0057115 XI5o939LHrE,1989.0,4,12,2013,UHF,Only a Mop?,tt0098546 9zugv1NdMj4,1963.0,6,11,2013,The Great Escape,How to Get Rid of the Dirt,tt0057115 -YGxccN_j6o,1977.0,8,12,2013,The Island of Dr. Moreau,You're the Animal!,tt0076210 K0uzT9bWryU,1981.0,11,11,2013,The French Lieutenant's Woman,Anna Leaves,tt0082416 kp2UhFQQb_k,1981.0,6,11,2013,The French Lieutenant's Woman,A Free Woman,tt0082416 BaFBFmJG-LI,1963.0,10,11,2013,The Great Escape,Motorcycle Escape,tt0057115 tyazEYlueAw,1963.0,9,11,2013,The Great Escape,Danny Gets Claustrophobic,tt0057115 37zZ1ULVBa4,1981.0,10,11,2013,The French Lieutenant's Woman,A Mockery of Love,tt0082416 dgGvAQ3kcs4,1959.0,5,8,2013,The Fugitive Kind,Looking for Work,tt0052832 KwDvrv9byqM,1981.0,2,11,2013,The French Lieutenant's Woman,Scene Rehearsal,tt0082416 HRrbt00Abv0,1977.0,10,12,2013,The Island of Dr. Moreau,No More Law,tt0076210 frTBOhJ0XHU,1963.0,4,11,2013,The Great Escape,Surprise Inspection,tt0057115 s4veow_qEDk,1956.0,3,11,2013,The Killing,Going Over the Plan,tt0049406 HSc1i2XKjCo,1977.0,7,12,2013,The Island of Dr. Moreau,Let Him Up,tt0076210 WK29KgQKP8s,1977.0,5,12,2013,The Island of Dr. Moreau,Tiger vs. Tigerman,tt0076210 hhGWxqj_bC0,1963.0,11,11,2013,The Great Escape,The Cooler King Returns,tt0057115 e5Tb2YSkGh0,1956.0,11,11,2013,The Killing,Blowin' in the Wind,tt0049406 jIyn1q4Ilpw,1956.0,2,11,2013,The Killing,Sherry Baby,tt0049406 ogkh8GaUkBE,1977.0,6,12,2013,The Island of Dr. Moreau,What Are You Doing to Me?,tt0076210 IfwHIwPbHaI,1956.0,8,11,2013,The Killing,Holding Up the Racetrack Bank,tt0049406 FHUpEG_qdVc,1956.0,4,11,2013,The Killing,Caught Snooping,tt0049406 Tg3A7u83stA,1956.0,9,11,2013,The Killing,Robbing the Robbers,tt0049406 gsWHt9OIofc,1956.0,1,11,2013,The Killing,Worth the Risk,tt0049406 9IuMUzCJ5m8,1961.0,5,11,2013,The Misfits,Paddle Ball,tt0055184 gXHhy4c4UZw,1961.0,8,11,2013,The Misfits,Three Dead Men,tt0055184 D7H61Y1yUr4,1956.0,6,11,2013,The Killing,Maurice Creates the Distraction,tt0049406 U4se5hr9O84,1955.0,5,11,2013,The Night of the Hunter,The Devil Wins Sometimes,tt0048424 77Uk4kkFEnA,1956.0,5,11,2013,The Killing,I Know You Like a Book,tt0049406 q3JlGPF4Ko8,1955.0,1,11,2013,The Night of the Hunter,Harry Speaks to the Lord,tt0048424 C1QZn415vh4,1999.0,12,12,2013,The Mod Squad,Gets Mad,tt0120757 mIIZqCaHUFI,1956.0,10,11,2013,The Killing,"I'm Sick, Sherry",tt0049406 dTSXhhHDOk0,1961.0,6,11,2013,The Misfits,The Rodeo,tt0055184 ax0943uaZUk,1961.0,11,11,2013,The Misfits,Ropin' a Dream,tt0055184 LwdMHOiN6ko,1983.0,5,7,2013,Yentl,The Way He Makes Me Feel,tt0086619 5rlFiEe6S24,1955.0,11,11,2013,The Night of the Hunter,They Abide and They Endure,tt0048424 au9pGQ9AuUs,1983.0,6,7,2013,Yentl,Tomorrow Night,tt0086619 0vOulnDhH8A,1961.0,9,11,2013,The Misfits,Perce Frees the Horses,tt0055184 dEnoofPhBtE,1980.0,9,11,2013,The Long Riders,Parting Ways,tt0081071 k8oFMkg7icg,1961.0,10,11,2013,The Misfits,Lone Wrangler,tt0055184 8hG-F24aroc,1955.0,6,11,2013,The Night of the Hunter,It's in the Doll!,tt0048424 MlSzWgyNsAI,1955.0,7,11,2013,The Night of the Hunter,Two Pretty Children,tt0048424 2KwdvymU_ao,1999.0,6,12,2013,The Mod Squad,No Guns,tt0120757 auccmqO45a8,1955.0,9,11,2013,The Night of the Hunter,He Ain't My Dad,tt0048424 efqBAU-lT5Q,1974.0,2,12,2013,The Taking of Pelham One Two Three,Terrorism on the Train,tt0072251 qUqtwCfbjVw,1961.0,4,11,2013,The Misfits,Everything Keeps Changing,tt0055184 fWBAKMYKPSc,1968.0,5,11,2013,The Party,Wyoming Bill,tt0063415 _e917WJMzl4,1961.0,7,11,2013,The Misfits,Sad Words,tt0055184 GGkg5ytaXlA,1968.0,1,11,2013,The Party,The Bugler Who Wouldn't Die,tt0063415 0J_lTFS0ouM,1980.0,1,11,2013,The Long Riders,Ain't Gonna Ride With Me,tt0081071 lDetwrOZPZg,1955.0,2,11,2013,The Night of the Hunter,Making a Promise,tt0048424 BHEe0PqpvNw,1999.0,3,12,2013,The Mod Squad,A Police Matter,tt0120757 undTPa_iq1Y,1980.0,10,11,2013,The Long Riders,For Dixie and Nothin' Else,tt0081071 9PyNL2ahKwc,1955.0,8,11,2013,The Night of the Hunter,The Sleepless Hunter,tt0048424 czBTbtS1YpE,1999.0,11,12,2013,The Mod Squad,The Abandoned Warehouse,tt0120757 kCsm28_ULw4,1980.0,6,11,2013,The Long Riders,On Your Way to Hell,tt0081071 LcHtYOV0bVo,1980.0,3,11,2013,The Long Riders,Cut the Cards,tt0081071 l2g7v4DYYik,1999.0,4,12,2013,The Mod Squad,Foot Chase,tt0120757 3JL2XIwueEA,1989.0,6,10,2013,The Phantom of the Opera,The Legend of the Phantom,tt0098090 yKxkjtLBq6I,1961.0,3,11,2013,The Misfits,The Saddest Girl,tt0055184 MBYRmSeYB4A,1999.0,10,12,2013,The Mod Squad,Gathering Evidence,tt0120757 6ISHd9kAsTw,1961.0,2,11,2013,The Misfits,The Leave-It State,tt0055184 eOdZMwIh1I8,1999.0,9,12,2013,The Mod Squad,One of Those Dirty Cop Drug Things,tt0120757 IXi_VrFakL0,1974.0,5,12,2013,The Taking of Pelham One Two Three,The Mayor and His Wife,tt0072251 7dqjg1TwbXs,1999.0,7,12,2013,The Mod Squad,Double Murder,tt0120757 aA_j4KpP0W0,1968.0,3,11,2013,The Party,If the Shoe Floats,tt0063415 dzbazAbjk8w,1961.0,1,11,2013,The Misfits,How Gay Lives,tt0055184 GYYuyvyr2HY,1989.0,5,12,2013,UHF,Saw Demonstration,tt0098546 JFblxacw_CA,1999.0,5,12,2013,The Mod Squad,Interrogation,tt0120757 c93bejkDIuU,1989.0,4,10,2013,The Phantom of the Opera,Killer Review,tt0098090 080g4Ylkv2M,1989.0,1,10,2013,The Phantom of the Opera,Traveling Through Time,tt0098090 sR176VaCLXg,1968.0,10,11,2013,The Party,A Small Seat at the Table,tt0063415 4BUDwj_mXKE,1989.0,6,12,2013,UHF,Spatula City Commercial,tt0098546 mvAkLCKYvwU,1960.0,4,10,2013,The Unforgiven,Charlie Is Ambushed,tt0054428 9RRGvAB4HF8,1983.0,7,11,2013,WarGames,DEFCON 1,tt0086567 ex_KPw6bVwQ,1960.0,3,10,2013,The Unforgiven,Sealed With a Kiss,tt0054428 6d37Zy95yDI,1960.0,5,10,2013,The Unforgiven,A Gallows Tale,tt0054428 tHe6ar-X2cQ,1989.0,7,12,2013,UHF,Stanley Spadowski's Clubhouse,tt0098546 qTpB6q-YJwM,1960.0,1,10,2013,The Unforgiven,Ben's a Mite Touchy About Rachel,tt0054428 ioXW5Fg_q_g,1989.0,3,10,2013,The Phantom of the Opera,Captive Audience,tt0098090 DCzA_11fJZE,1968.0,6,11,2013,The Party,Awkward Dance,tt0063415 lGlvNt-N140,1960.0,9,10,2013,The Unforgiven,Rooftop Stampede,tt0054428 _j0KhXH6xLE,1987.0,9,11,2013,Throw Momma from the Train,He's Trying to Kill Me!,tt0094142 w7ngnhj4snE,1968.0,9,11,2013,The Party,Injun Grip,tt0063415 bh2ShAQ4lw0,1983.0,4,11,2013,WarGames,He's Gonna Start a War!,tt0086567 gIGtDdiHlA8,1968.0,11,11,2013,The Party,Toilet Trouble,tt0063415 TlQ_qOWPTnE,1968.0,7,11,2013,The Party,The Intercom,tt0063415 03QHVB_n6N8,1968.0,4,11,2013,The Party,A Good Laugh,tt0063415 1vmnp7ghGPk,1983.0,5,11,2013,WarGames,A Lesson in Futility,tt0086567 LKpLGai9GxA,1968.0,8,11,2013,The Party,Telephone Call,tt0063415 C2PhwDzcQJY,1989.0,9,10,2013,The Phantom of the Opera,Christine Gets the Part,tt0098090 jH2OKc8HPw8,1960.0,6,10,2013,The Unforgiven,I Hanged Him!,tt0054428 9fQG9Zhv2_I,1974.0,8,12,2013,The Taking of Pelham One Two Three,"You're a Sick Man, Rico",tt0072251 e-5SVm2NUe8,1974.0,6,12,2013,The Taking of Pelham One Two Three,Meeting the Demands,tt0072251 xOCBpMs-9hY,1989.0,10,12,2013,UHF,Stanley Is Kidnapped,tt0098546 pOQv_Ng3CaU,1989.0,5,10,2013,The Phantom of the Opera,Our Souls Are One,tt0098090 DGtD5QAaAGY,1961.0,10,10,2013,West Side Story,Killed By Hate,tt0055614 LwDbgE54QYE,1983.0,1,11,2013,WarGames,Asexual Reproduction,tt0086567 XHbdoO7uCkk,1989.0,9,12,2013,UHF,Conan the Librarian,tt0098546 VI9lWn1dpzg,1989.0,10,10,2013,The Phantom of the Opera,Not Forever!,tt0098090 ZU1CFYBhGT8,1989.0,7,10,2013,The Phantom of the Opera,Dinner Is Served,tt0098090 9K_4ZaMc1-4,1961.0,1,10,2013,West Side Story,The Jets Own the Streets,tt0055614 MpmGXeAtWUw,1983.0,11,11,2013,WarGames,The Only Winning Move,tt0086567 m5bPIty4Dww,2006.0,10,12,2013,The Pink Panther,Pillow Talk,tt0383216 h44egWnbrrg,2003.0,10,11,2013,Uptown Girls,All You Do is Take,tt0263757 DE71sZbjvbs,1991.0,4,12,2013,The Silence of the Lambs,All Good Things to Those Who Wait,tt0102926 sXtlR_7l6xQ,1974.0,3,12,2013,The Taking of Pelham One Two Three,The Man Who Stole Your Train,tt0072251 RZAkOfxlW6g,1991.0,7,12,2013,The Silence of the Lambs,Love Your Suit,tt0102926 m7xTvb-FAhQ,1961.0,5,10,2013,West Side Story,Tonight,tt0055614 pKJOqt7BtB8,1990.0,3,10,2013,The Russia House,You Remember '68?,tt0100530 naKm_rLxRCs,1989.0,8,10,2013,The Phantom of the Opera,Everyone Dies,tt0098090 Uqn_pbUUfKg,1990.0,2,10,2013,The Russia House,Spy Training,tt0100530 4qFxfRN75HQ,2006.0,2,12,2013,The Pink Panther,Debugging the Office,tt0383216 J2yzM2nkylI,1990.0,7,10,2013,The Russia House,A Picasso Metaphor,tt0100530 3pON6S9aDy4,2006.0,3,12,2013,The Pink Panther,Keep Vigilant,tt0383216 nBRPKaHMFn4,1990.0,6,10,2013,The Russia House,And Yet Here I Am,tt0100530 WAwbrOJMKEc,1974.0,9,12,2013,The Taking of Pelham One Two Three,Mr. Blue Electrocutes Himself,tt0072251 ti42vZVtgvY,2006.0,8,12,2013,The Pink Panther,The Case Is Going Quite Well,tt0383216 99Ptctl5_qQ,1991.0,3,12,2013,The Silence of the Lambs,Fava Beans and a Nice Chianti,tt0102926 UhDZPYu8piQ,1991.0,8,12,2013,The Silence of the Lambs,"What Does He Do, This Man You Seek?",tt0102926 k9WhxTOA19s,1983.0,6,11,2013,WarGames,David & Jennifer Kiss,tt0086567 BWDYUMTmHjU,1991.0,2,12,2013,The Silence of the Lambs,You Ate Yours,tt0102926 OLBotH5Bki8,1991.0,9,12,2013,The Silence of the Lambs,Screaming Lambs,tt0102926 hIoCskqjp9c,1974.0,7,12,2013,The Taking of Pelham One Two Three,The Money Has Arrived,tt0072251 eo6MfN5Lcws,1987.0,10,11,2013,Throw Momma from the Train,"She's Not a Woman, She's the Terminator",tt0094142 x87nnioiLP8,2006.0,11,12,2013,The Pink Panther,Down the Drain,tt0383216 RQk7-GqzZCc,1987.0,5,11,2013,Throw Momma from the Train,Larry Meets Momma,tt0094142 rfdF7LBQ8Ic,2003.0,6,11,2013,Uptown Girls,Yard Sale Freak-Out,tt0263757 hMMAB3MNCKw,1961.0,9,10,2013,West Side Story,Cool,tt0055614 bkpuLB3ftow,1974.0,11,12,2013,The Taking of Pelham One Two Three,Rolling in Dough,tt0072251 YlRLfbONYgM,1991.0,5,12,2013,The Silence of the Lambs,Quid Pro Quo,tt0102926 RiBRrKC_6pE,2006.0,7,12,2013,The Pink Panther,Big Brass Balls,tt0383216 aClqNJOXy-w,1973.0,1,11,2013,White Lightning,Prison Break,tt0070915 cdFiubg8UnQ,1990.0,10,10,2013,The Russia House,My First Good Contract,tt0100530 G-tFJHYBqjo,1973.0,4,11,2013,White Lightning,Rebel Roy,tt0070915 eZtQn-GAemQ,1961.0,6,10,2013,West Side Story,Challenge to a Rumble,tt0055614 _SQ4ogstDVE,1961.0,8,10,2013,West Side Story,Somewhere,tt0055614 6Dyph0wJBcA,1973.0,6,11,2013,White Lightning,Big Bear,tt0070915 yNeQm5aqrHo,1991.0,10,12,2013,The Silence of the Lambs,Buffalo Bill,tt0102926 qqaFGM-AyNA,1973.0,2,11,2013,White Lightning,Driving Free,tt0070915 nDlEcFRZUYI,1974.0,12,12,2013,The Taking of Pelham One Two Three,Gesundheit!,tt0072251 gpW3ywIoyr0,1987.0,8,11,2013,Throw Momma from the Train,You're Alive!,tt0094142 89uZslA-efY,1973.0,8,11,2013,White Lightning,My Horny Little Soul,tt0070915 W6udsqodIzo,1973.0,3,11,2013,White Lightning,Sherry Lynne & Kip,tt0070915 ZXfw1y8Mbfo,2006.0,4,12,2013,The Pink Panther,Soundproof Room,tt0383216 fgEjlKNllEU,1973.0,7,11,2013,White Lightning,Sexy Lou's Seduction,tt0070915 boCpijI2k5I,1974.0,8,12,2013,Truck Turner,Finger-Licking Good,tt0072325 v3dCP69-IFU,1987.0,2,11,2013,Throw Momma from the Train,Poisoned Pepsi,tt0094142 YhSKk-cvblc,1961.0,4,10,2013,West Side Story,America,tt0055614 g-2hB5Kd5aM,1973.0,11,11,2013,White Lightning,Car Chase,tt0070915 CtTjc4nJlDM,2003.0,5,11,2013,Uptown Girls,You're Workin' For Me!,tt0263757 V5dA92wqmME,1991.0,1,12,2013,The Silence of the Lambs,Closer!,tt0102926 cRsKzW5Fszc,1973.0,9,11,2013,White Lightning,Gator's Escape,tt0070915 Z6oeAdemFZw,2006.0,9,12,2013,The Pink Panther,I Would Like to Buy a Hamburger,tt0383216 Ii5azc-GzXg,1990.0,8,10,2013,The Russia House,Anarchist Tendencies,tt0100530 QRqXBsgnYok,1991.0,6,12,2013,The Silence of the Lambs,It Rubs the Lotion,tt0102926 OHHn-_aJQ7s,1974.0,9,12,2013,Truck Turner,That's,tt0072325 lu9yr0xefYQ,2003.0,3,11,2013,Uptown Girls,Neal Feels Suffocated,tt0263757 eu-afVml4MM,2006.0,6,12,2013,The Pink Panther,How Fatal?,tt0383216 KXzNo0vR_dU,1983.0,3,11,2013,WarGames,Shall We Play a Game?,tt0086567 DDb0S3nIfNA,2003.0,1,11,2013,Uptown Girls,Bad First Impression,tt0263757 NG4z6W4Zp_0,2003.0,9,11,2013,Uptown Girls,You Don't Know Your Own Daughter,tt0263757 ZgBPFyzsqFg,2006.0,12,12,2013,The Pink Panther,Airport Security,tt0383216 s-Sx_dMw8oA,1974.0,1,12,2013,The Taking of Pelham One Two Three,I'm Taking Your Train,tt0072251 L8_G6h_pK1o,1986.0,5,11,2013,Stagecoach,Ever Known an Apache?,tt0092003 7EXefCHq6OQ,1987.0,4,11,2013,Throw Momma from the Train,You Killed My Wife!,tt0094142 tGNBdjVO04Y,1983.0,9,11,2013,WarGames,Joshua Searches for Launch Codes,tt0086567 cMnkhxzCLyA,1974.0,1,12,2013,Truck Turner,Ain't You Beat Him Enough?,tt0072325 Om2UW4c_vqU,1960.0,7,10,2013,The Unforgiven,Reclaiming Rachel,tt0054428 9anDqvXfdu4,1960.0,2,10,2013,The Unforgiven,How Much Woman Worth?,tt0054428 nCgg5XIxxjY,1974.0,4,12,2013,Truck Turner,You Been Hit by a Truck,tt0072325 RgHtBxOs4qw,1961.0,7,10,2013,West Side Story,I Feel Pretty,tt0055614 6jS65g5UnWM,1990.0,4,10,2013,The Russia House,The Great Lie,tt0100530 4ega5Rcct2s,1989.0,11,12,2013,UHF,Gandhi II,tt0098546 uaDgwjVu8ik,1974.0,3,12,2013,Truck Turner,Chasing Gator,tt0072325 YTnxiXd0qwA,1974.0,12,12,2013,Truck Turner,You Ain't Gonna Kill No Woman,tt0072325 nwQ5zHdDFng,1963.0,4,10,2013,The Pink Panther,My Stradivarius!,tt0057413 1cTY-JnvfYI,1987.0,6,11,2013,Throw Momma from the Train,Owen's Coin Collection,tt0094142 cv62uysSvQE,1960.0,10,10,2013,The Unforgiven,Cash to the Rescue,tt0054428 pcyg0H7EU3c,1974.0,4,12,2013,The Taking of Pelham One Two Three,Trying to Negotiate,tt0072251 gwEeqSGSL3g,1960.0,8,10,2013,The Unforgiven,Defending the Homestead,tt0054428 9ecF-Go9lt8,1987.0,11,11,2013,Throw Momma from the Train,Saving Momma,tt0094142 SOnb-cyRdAg,1963.0,5,10,2013,The Pink Panther,Champagne Surprise,tt0057413 cvy2tRH7HNE,1989.0,1,12,2013,UHF,Indiana Jones Parody,tt0098546 ZYLekT6cYwY,1963.0,1,10,2013,The Pink Panther,A Real Woman,tt0057413 Wh4oSUvSQTQ,1963.0,2,10,2013,The Pink Panther,Simone Juggles Suitors,tt0057413 uvXwt5HNFLU,1963.0,10,10,2013,The Pink Panther,Clouseau Is the Phantom,tt0057413 U2_h-EFlztY,1983.0,2,11,2013,WarGames,Hacking the School,tt0086567 31usxLUiuhs,1990.0,5,10,2013,The Russia House,The Next Revolution,tt0100530 ulMNuwN1C-8,1990.0,1,10,2013,The Russia House,A Virtuoso Comb Player,tt0100530 z3YKH7m0P4c,1963.0,3,10,2013,The Pink Panther,Under Beds and Bubbles,tt0057413 DyofWTw0bqY,1961.0,3,10,2013,West Side Story,Maria,tt0055614 lTd2m2J2XmU,1974.0,5,12,2013,Truck Turner,I'm Indestructible,tt0072325 1daKtciMLiE,2006.0,5,12,2013,The Pink Panther,Clouseau Hears High Heels,tt0383216 HHFbltJSRxo,1983.0,3,7,2013,Yentl,One of Those Moments,tt0086619 ovQk7fd4_Co,1991.0,11,12,2013,The Silence of the Lambs,Pitch Black,tt0102926 i_9C6d3VVHM,1989.0,3,12,2013,UHF,Stanley Gets Fired,tt0098546 uDqSQGOtixE,2006.0,1,12,2013,The Pink Panther,Clouseau's Press Conference,tt0383216 raVKed5rdgM,2003.0,2,11,2013,Uptown Girls,Molly Wants Neal,tt0263757 F7qOV8xonfY,1983.0,10,11,2013,WarGames,Tic Tac Toe With Joshua,tt0086567 -ui9TwNrNEw,1989.0,12,12,2013,UHF,Rambo Parody,tt0098546 7FgWn6jQuTQ,1987.0,1,11,2013,Throw Momma from the Train,Larry's Wife on Oprah,tt0094142 tk2vET4aFW8,1986.0,10,11,2013,Stagecoach,Standoff,tt0092003 TO01P7dpKV4,1986.0,6,11,2013,Stagecoach,The Woman My Momma Warned Me About,tt0092003 UdT8lSEVHZU,1986.0,9,11,2013,Stagecoach,Apache Attack,tt0092003 z5s04znNyMM,1986.0,7,11,2013,Stagecoach,I Don't Drink,tt0092003 wPO6KyIYst4,1983.0,1,7,2013,Yentl,Where Is It Written?,tt0086619 yAgMoKBGjT8,1983.0,4,7,2013,Yentl,No Wonder,tt0086619 2TITAbyObTw,1986.0,3,11,2013,Stagecoach,I Didn't Figure on You at All,tt0092003 q8CXKTH5950,1986.0,8,11,2013,Stagecoach,Introducing the Newest Member of the Gang,tt0092003 3t1YQOfYndM,1986.0,4,11,2013,Stagecoach,Part of Her Machinery,tt0092003 zRsPSJWe5sY,1986.0,1,11,2013,Stagecoach,Sneaking Liquor,tt0092003 bLmYWtqC8pc,1986.0,11,11,2013,Stagecoach,Travelin' Light and Comin' Well-Balanced,tt0092003 5FMiM08gFtQ,1982.0,12,12,2013,Still of the Night,Jump,tt0084732 DeYew_zLc_c,1993.0,9,12,2013,Posse,White Sheets,tt0107863 6CxOSOVI76c,1986.0,12,12,2013,Running Scared,I Got Him!,tt0091875 H6fBnHvdZeI,1993.0,5,10,2013,Son of the Pink Panther,Playing Doctor,tt0108187 aUdbjoT_DPQ,1989.0,3,10,2013,Out Cold,Meatheads,tt0098042 sCJ_SlkCT_o,1993.0,8,10,2013,Son of the Pink Panther,An Autograph,tt0108187 jd3KM4imjr4,1993.0,7,10,2013,Son of the Pink Panther,Cato Returns,tt0108187 XVGIvc6G6yg,1989.0,6,10,2013,Out Cold,Lester Questions Dave,tt0098042 p0Ov897MYiw,1993.0,2,10,2013,Son of the Pink Panther,Chasing the Inspector,tt0108187 kCtsoBRr1Z0,1989.0,2,10,2013,Out Cold,Bourbon and Legal Advice,tt0098042 zZlbperC3ns,1993.0,10,10,2013,Son of the Pink Panther,Dreyfus' Wedding,tt0108187 dPk7S_LiI1I,1993.0,4,10,2013,Son of the Pink Panther,A Day at the Hospital,tt0108187 s2xKn06X9cQ,1989.0,8,10,2013,Out Cold,Lucky Accident,tt0098042 goOhv_1FYsE,1989.0,7,10,2013,Out Cold,Getting Away With Murder,tt0098042 S-hMzdxcOD0,1989.0,1,10,2013,Out Cold,Close Call,tt0098042 jZXHcvhr2p8,1993.0,1,10,2013,Son of the Pink Panther,Bumpkin Cop,tt0108187 0NSgeb0dBLY,1989.0,4,10,2013,Out Cold,Locked In,tt0098042 RFAfyPXisjQ,1993.0,3,10,2013,Son of the Pink Panther,"Like Father, Like Son",tt0108187 8ygfQ6oSNiU,1993.0,6,10,2013,Son of the Pink Panther,Professor Balls,tt0108187 mjo4d488_yE,1993.0,2,12,2013,Posse,Enemy Gold,tt0107863 l3t1ZSuwLzg,1993.0,9,10,2013,Son of the Pink Panther,A Bumbling Rescue,tt0108187 wy1eWsC2sL8,1989.0,5,10,2013,Out Cold,Frozen Surprise,tt0098042 iGJCWeK7YCA,1989.0,10,10,2013,Out Cold,Sunny Traps Dave,tt0098042 YhdrJfDiIkM,1993.0,3,12,2013,Posse,A.W.O.L.,tt0107863 Ip-dPqtyXRs,1973.0,5,11,2013,Scorpio,I Want Cross,tt0070653 QNrM2ICShJ4,1989.0,9,10,2013,Out Cold,Dumping Lester's Car,tt0098042 9u_76dg61ns,1995.0,10,10,2013,Rob Roy,The Fight Ends,tt0114287 o_yIykgKbeQ,1995.0,7,10,2013,Rob Roy,He Must Pay For it,tt0114287 vjKoaNcefSU,1986.0,6,12,2013,Running Scared,Flipped Off,tt0091875 Rc8ybU83qHU,1982.0,4,12,2013,Still of the Night,I've Got to Do It,tt0084732 CeYoUJYqAQc,1995.0,2,10,2013,Rob Roy,Archibald Defeats Will,tt0114287 hghczTVgav0,1998.0,1,9,2013,Ronin,Everybody Has a Limit,tt0122690 mCVwWrfOT3s,1993.0,8,12,2013,Posse,Turn the Other Cheek,tt0107863 FypqAWaSTFU,1989.0,2,10,2013,Red Riding Hood,The Power of the Wolf,tt0385988 6G8ExBEJEMQ,1989.0,9,10,2013,Red Riding Hood,"The Better to Eat You With, My Dear",tt0385988 Rt8Bfir3A4Y,1998.0,8,9,2013,Ronin,Paris Chase,tt0122690 a2gMY3TRx8s,1995.0,3,10,2013,Rob Roy,Explaining Honor,tt0114287 MYuEOOe0xSE,1993.0,1,12,2013,Posse,Walker Is Discharged,tt0107863 aYbNb8eaTCY,1995.0,6,10,2013,Rob Roy,Mary's Honor,tt0114287 bMDdjhWe9NQ,1998.0,7,9,2013,Ronin,Sam's Surgery,tt0122690 XnD8FsykE08,1998.0,6,9,2013,Ronin,Nice Chase (Conclusion),tt0122690 fR0Sh0C6jFE,1998.0,9,9,2013,Ronin,Paris Chase (Conclusion),tt0122690 OrZB5n0tNAI,1998.0,3,9,2013,Ronin,Amateur Night,tt0122690 69aok-u1esc,1993.0,7,12,2013,Posse,Target Practice,tt0107863 -Luy502C920,1986.0,1,12,2013,Running Scared,You're Mugging Us?,tt0091875 NG1KirPJLSQ,1989.0,4,10,2013,Red Riding Hood,You Won't Be Here in the Morning,tt0385988 P_GbbXL9E78,1995.0,9,10,2013,Rob Roy,The Fight Begins,tt0114287 hkFSMV93VeA,1986.0,8,12,2013,Running Scared,Pants Drop,tt0091875 1D-v8EcGV2Q,1993.0,5,12,2013,Posse,Jesse's Retribution,tt0107863 sA0SngAZcdA,1986.0,4,12,2013,Running Scared,Miranda Rights,tt0091875 ToK_9NLtr7M,1986.0,3,12,2013,Running Scared,Entrapping the Cops,tt0091875 jusrkQ2Zg8o,1993.0,12,12,2013,Posse,Graham's Demise,tt0107863 MJ0qQkcBNPs,1993.0,4,12,2013,Posse,Father Time,tt0107863 hgFClV33aH0,1986.0,7,12,2013,Running Scared,Hablo Smith & Wesson?,tt0091875 tm6qzug9AS8,1989.0,6,10,2013,Red Riding Hood,Green in the Blue,tt0385988 5F6pso8VBhc,1982.0,7,12,2013,Still of the Night,Massage Talk,tt0084732 KE0awhgSLmE,1973.0,9,11,2013,Scorpio,Getting the Drop on the Opposition,tt0070653 xR1YEOrYOdw,1995.0,1,10,2013,Rob Roy,Robert Teaches a Lesson,tt0114287 aJhtBJETQF8,1986.0,2,12,2013,Running Scared,Police Line-Up,tt0091875 5TbuwxXBfoA,1976.0,1,11,2013,Stay Hungry,Batman and the Grease Man,tt0075268 nn-nEk5kpz0,1986.0,10,12,2013,Running Scared,Cops vs. Trash Compactor,tt0091875 v1dTnLPL9gU,1989.0,8,10,2013,Red Riding Hood,Never Talk to Strangers,tt0385988 2PVdztmMSzI,1989.0,1,10,2013,Red Riding Hood,Lost in the Woods,tt0385988 4GLcbZQoPNk,1973.0,10,11,2013,Scorpio,Hit and Run,tt0070653 blDYzZvYAak,1989.0,3,10,2013,Red Riding Hood,Good at Being Bad,tt0385988 OQVIkVIf_BE,1990.0,3,11,2013,Stanley & Iris,Just Give Me the Shoes,tt0100680 mUzu93AhMuE,1990.0,2,11,2013,Stanley & Iris,Financial Troubles,tt0100680 456l6TpeE1E,1986.0,5,12,2013,Running Scared,Forced Vacation,tt0091875 dJFR7xbOIuw,1998.0,2,9,2013,Ronin,Tunnel Trap,tt0122690 stelirVdNdI,1976.0,9,11,2013,Stay Hungry,No Pain No Gain,tt0075268 _dtNz4Te0Gw,1995.0,5,10,2013,Rob Roy,Robert Refuses Montrose,tt0114287 F3f7Li9T4n4,1986.0,9,12,2013,Running Scared,Must Be the Vest,tt0091875 opseGWIdLd4,1986.0,11,12,2013,Running Scared,State Building Shootout,tt0091875 lqdyZpgCnXQ,1993.0,6,12,2013,Posse,Can I Get a Witness?,tt0107863 -oeFJvhvMik,1982.0,10,12,2013,Still of the Night,Sam Solves the Mystery,tt0084732 F10EFVISERQ,1990.0,6,11,2013,Stanley & Iris,You're Pregnant?,tt0100680 9hCHM2Oj1wQ,1982.0,8,12,2013,Still of the Night,Snooping in Brooke's Office,tt0084732 SQ_rMhKlNFE,1976.0,4,11,2013,Stay Hungry,Pimping,tt0075268 V-eoS6kEyeg,1990.0,1,11,2013,Stanley & Iris,Iris Meets Stanley,tt0100680 2Z5WH83Vhs8,1990.0,10,11,2013,Stanley & Iris,It's My Library,tt0100680 KDQqlRIFcAQ,1976.0,3,11,2013,Stay Hungry,Homosexuals?,tt0075268 JOqFKM-dt5Y,1990.0,7,11,2013,Stanley & Iris,Iris Interviews Stanley,tt0100680 QUTDoPuCUcg,1982.0,6,12,2013,Still of the Night,Who's There?,tt0084732 dKoFTEK7O_o,1998.0,4,9,2013,Ronin,Kissing in the Car,tt0122690 3iD4rM9utqc,1976.0,7,11,2013,Stay Hungry,One Tough Lady,tt0075268 qpLovLQoJ6c,1973.0,4,11,2013,Scorpio,Compromising,tt0070653 3eA0tlN-WMY,1973.0,1,11,2013,Scorpio,Cross Came Back,tt0070653 1NBRkyfy4lA,1982.0,2,12,2013,Still of the Night,George's Nightmare,tt0084732 2ohNiVtAwJY,1989.0,10,10,2013,Red Riding Hood,I Knew You'd Come Back,tt0385988 2SnugUXqVJc,1990.0,4,11,2013,Stanley & Iris,Stanley Notices Iris' Sweaters,tt0100680 O6frj4BOJJU,1982.0,11,12,2013,Still of the Night,The Murderess Reveals Herself,tt0084732 Xk7IjHYLVH4,1976.0,5,11,2013,Stay Hungry,Making Out with Mary Tate,tt0075268 N-VlQuj49a4,1990.0,8,11,2013,Stanley & Iris,Motherly Advice,tt0100680 9GagOWlFd-U,1973.0,2,11,2013,Scorpio,Crashing His Tail,tt0070653 DdZNLekEcIQ,1993.0,11,12,2013,Posse,Carver's Dream,tt0107863 9fnjkSES3VM,1976.0,2,11,2013,Stay Hungry,Workout With Joe,tt0075268 2315p7LJusg,1982.0,9,12,2013,Still of the Night,Bidding to Save Brooke,tt0084732 rfix60WuBxs,1973.0,3,11,2013,Scorpio,Let Me Get My Bag,tt0070653 df-YzAnQJpU,1973.0,8,11,2013,Scorpio,Construction Shoot Out,tt0070653 Oum7mEtv05g,1995.0,8,10,2013,Rob Roy,Robert Escapes,tt0114287 kA_BtqogJNk,1990.0,11,11,2013,Stanley & Iris,Stanley Proposes,tt0100680 SzUPAc8HTOI,1993.0,10,12,2013,Posse,Taking out the Gun,tt0107863 Pbr6HpxJYm4,1976.0,6,11,2013,Stay Hungry,Moonshine & Music,tt0075268 i6ymVjU5hno,1973.0,6,11,2013,Scorpio,Can We Talk?,tt0070653 IVZd3YBqxEc,1973.0,7,11,2013,Scorpio,I'm Still a Communist,tt0070653 7gc1EIrxjws,1998.0,5,9,2013,Ronin,Nice Chase,tt0122690 dw2jrtR9Px4,1990.0,9,11,2013,Stanley & Iris,Stanley Offers to Iron,tt0100680 wosztGGnWt4,1995.0,4,10,2013,Rob Roy,Robert Makes a Deal,tt0114287 Mr8aBk7ub2g,1976.0,10,11,2013,Stay Hungry,Mr. Universe,tt0075268 EshEWL1ZhCc,1976.0,8,11,2013,Stay Hungry,,tt0075268 rfeKwl7Dyg0,1982.0,1,12,2013,Still of the Night,Laundry Room Scare,tt0084732 eJWSp6A1Ks0,1976.0,11,11,2013,Stay Hungry,Bodybuilders Unleashed!,tt0075268 PZ93GNHBHsE,1984.0,4,9,2013,Breakin' 2: Electric Boogaloo,Dancing on the Ceiling,tt0086999 89g2af1Qw0I,1984.0,1,9,2013,Breakin' 2: Electric Boogaloo,Electric Boogaloo,tt0086999 kjd3eUIBSj0,1984.0,6,9,2013,Breakin' 2: Electric Boogaloo,You Don't Belong,tt0086999 l53Q1UXk2DE,1984.0,7,9,2013,Breakin' 2: Electric Boogaloo,Hospital Dancing,tt0086999 KzVgbCFwn0U,1984.0,3,9,2013,Breakin' 2: Electric Boogaloo,How to Get the Girl,tt0086999 a-Z66uN97Ds,1984.0,8,9,2013,Breakin' 2: Electric Boogaloo,Turbo Takes a Stand,tt0086999 p0CKoz0u6Eo,1974.0,2,11,2013,Lenny,We're All the Same Schmuck,tt0071746 QL4mGMAjHBg,1997.0,3,11,2013,Gang Related,He Didn't Do It,tt0118900 Fk17A1jyjKo,1991.0,10,11,2013,Impromptu,Kissing Chopin,tt0102103 petKvkHfPJo,1991.0,5,11,2013,Impromptu,A Duel at Dinner,tt0102103 ZkCH653K2cc,1965.0,3,9,2013,How to Stuff a Wild Bikini,Mad Men,tt0059287 4PcE-gNqFfU,1985.0,6,12,2013,Invasion U.S.A.,Mall Shootout,tt0089348 8YCMjAOgFpo,1991.0,12,12,2013,Harley Davidson and the Marlboro Man,Guns Are Made to Be Shot,tt0102005 SMYJOm56YvY,1991.0,11,12,2013,Harley Davidson and the Marlboro Man,A Good Day For Dying,tt0102005 1_vxyocjxg0,2002.0,11,11,2013,Hart's War,Full Responsibility,tt0251114 MvYuTdiMcRk,1987.0,2,12,2013,Hollywood Shuffle,Black Acting School,tt0093200 tr3ORGLT_W8,1965.0,1,9,2013,How to Stuff a Wild Bikini,,tt0059287 IL_B1fmfl_c,1987.0,3,12,2013,Hollywood Shuffle,Sneakin' In The Movies,tt0093200 LDsysmP_8yo,1991.0,6,11,2013,Impromptu,The Horse Is a Critic,tt0102103 KmCgqSJnzrc,1980.0,5,12,2013,How to Beat the High Cost,Little League Meltdown,tt0080895 54SNIVms9vo,1991.0,8,12,2013,Harley Davidson and the Marlboro Man,Bar Escape,tt0102005 _WzzevY4_Ys,1980.0,12,12,2013,How to Beat the High Cost,Counting the Loot,tt0080895 oKmBIC6X6Fs,1991.0,9,11,2013,Impromptu,"I Love, That Is All",tt0102103 ktFZq_8XXOg,1991.0,2,12,2013,Harley Davidson and the Marlboro Man,Five Rules of Shooting Pool,tt0102005 Uw98q-YIFec,1991.0,4,11,2013,Impromptu,A Game of Sabotage,tt0102103 pE5pl9UG93I,1987.0,10,12,2013,Hollywood Shuffle,I Can't Do This,tt0093200 _8N1uJZUyaY,1980.0,10,12,2013,How to Beat the High Cost,Cash Grab,tt0080895 OcNjc5lfvpM,1991.0,11,11,2013,Impromptu,Fainting at a Duel,tt0102103 tVfrMp_MWw4,1991.0,3,12,2013,Harley Davidson and the Marlboro Man,No Excuses,tt0102005 VEgR-CiTK2E,1965.0,6,9,2013,How to Stuff a Wild Bikini,If It's Gonna Happen,tt0059287 AGUMsaszNKM,1991.0,8,11,2013,Impromptu,How Does a Man Pursue a Woman?,tt0102103 x21gkEu5lKc,1980.0,11,12,2013,How to Beat the High Cost,"No Money, No Glory",tt0080895 pmC3rsgHD9E,1991.0,3,11,2013,Impromptu,Don't Stop!,tt0102103 g2dAymk715E,1991.0,7,11,2013,Impromptu,Art Does Not Apologize!,tt0102103 61_aprVh2FQ,1965.0,4,9,2013,How to Stuff a Wild Bikini,Gave Himself the Finger,tt0059287 iG4GVhx6oGc,1987.0,1,12,2013,Hollywood Shuffle,Auditions,tt0093200 Wo3qdzlpPdg,1987.0,12,12,2013,Hollywood Shuffle,There's Always Work at the Post Office,tt0093200 5RzSW0dc9dE,1987.0,8,12,2013,Hollywood Shuffle,Negative Images,tt0093200 pt-Ir7xS29Y,1987.0,9,12,2013,Hollywood Shuffle,Picketed by NAACP,tt0093200 khg8XoyKzs4,1965.0,2,9,2013,How to Stuff a Wild Bikini,How About Us?,tt0059287 PJQ2AiURctI,1965.0,7,9,2013,How to Stuff a Wild Bikini,Fight Fair,tt0059287 PBHZhxrhO4E,1965.0,8,9,2013,How to Stuff a Wild Bikini,The Girl Next Door,tt0059287 sIB8AdUqEqg,1983.0,4,12,2013,Hercules,vs. the Chariots,tt0085672 qfIzHlWOiuE,1965.0,5,9,2013,How to Stuff a Wild Bikini,They're All Beasts!,tt0059287 7w2iVXAHiPk,1991.0,1,11,2013,Impromptu,Liszt Performs,tt0102103 qkjpTwOa0GY,1983.0,10,12,2013,Hercules,Unchained,tt0085672 d_jEVMQc0ig,1991.0,2,11,2013,Impromptu,A Gang of Parasites,tt0102103 PSmJNK9zhR0,1987.0,5,12,2013,Hollywood Shuffle,Attack of the Street Pimps,tt0093200 z9MEhN5rjmg,1965.0,9,9,2013,How to Stuff a Wild Bikini,Frankie Reunites with Dee Dee,tt0059287 I1CjDw569ss,1983.0,7,12,2013,Hercules,Separating the Continents,tt0085672 5UKpz6Gsyu4,1980.0,7,12,2013,How to Beat the High Cost,Kissing a Cop,tt0080895 NvPYToFoU2M,1983.0,9,12,2013,Hercules,Thera Monster,tt0085672 koX0RDUQHFs,1983.0,8,12,2013,Hercules,Space Chariot,tt0085672 65ltaw4SF38,1987.0,7,12,2013,Hollywood Shuffle,Ace Gets Jheri Curl to Talk,tt0093200 YBQ90wbJ7MY,1980.0,6,12,2013,How to Beat the High Cost,Safeway Stick-Up,tt0080895 GxMoPTqev8g,1987.0,11,12,2013,Hollywood Shuffle,The Greatest Actor Ever,tt0093200 6i3eC2gzxXA,1983.0,1,12,2013,Hercules,The Power of Zeus,tt0085672 VwE2USOqfNg,1983.0,3,12,2013,Hercules,The Exterminator,tt0085672 D_5kpc0cUWk,1983.0,11,12,2013,Hercules,vs. Minos,tt0085672 WrYDmyHlxqY,1972.0,11,12,2013,Hammer,Wins,tt0068673 2NLGmRYLvsY,1987.0,6,12,2013,Hollywood Shuffle,Bobby Daydreams of Fame,tt0093200 lRVUsY_rcCo,1980.0,9,12,2013,How to Beat the High Cost,Impromptu Striptease,tt0080895 3_NMhC6GR04,1994.0,11,12,2013,Go Fish,Max & Ely,tt0109913 vyN2oD5tI80,1994.0,6,12,2013,Go Fish,Is That How I Raised You?,tt0109913 otQ_oCvSq6E,1997.0,7,11,2013,Gang Related,Cynthia Cracks on the Stand,tt0118900 qUMSld6BwC0,1994.0,10,12,2013,Go Fish,I'm Sticking With Honey Pot,tt0109913 7DhLw2aNu_Y,1983.0,12,12,2013,Hercules,Ariadne's End,tt0085672 yXeBhFzqzfY,1983.0,2,12,2013,Hercules,Fights a Bear,tt0085672 BUAPTnpOdVM,1987.0,4,12,2013,Hollywood Shuffle,Dirty Larry,tt0093200 lbIbVWmpcCg,1994.0,8,12,2013,Go Fish,Never Have I Ever,tt0109913 worFlbNJG_w,1972.0,10,12,2013,Hammer,Everybody's Controlled by Something,tt0068673 lwo1GnbKOW8,1980.0,8,12,2013,How to Beat the High Cost,The Electric Company,tt0080895 wrYcEEv737c,1983.0,6,12,2013,Hercules,Circe the Sorceress,tt0085672 QC4b5Aoff1I,1997.0,5,11,2013,Gang Related,I'm Not Going Down for It,tt0118900 Ubr_vvAzvtA,1980.0,1,12,2013,How to Beat the High Cost,I Need a Thousand Dollars,tt0080895 k1fiQFCN2Zs,1972.0,12,12,2013,Hammer,Showdown with Brenner,tt0068673 E_tzgBTGxEM,1994.0,7,12,2013,Go Fish,Evy's New Family,tt0109913 ytQv31xRLGo,1994.0,2,12,2013,Go Fish,U-G-L-Y,tt0109913 i4GeD9FWdG4,1997.0,6,11,2013,Gang Related,You Picked a Saint,tt0118900 nSEGOd89xWw,1994.0,12,12,2013,Go Fish,Nail-Cutting Foreplay,tt0109913 O0twX6iB62U,1980.0,3,12,2013,How to Beat the High Cost,Picking Up the Check,tt0080895 Yg7ulcF39e8,1980.0,4,12,2013,How to Beat the High Cost,Suing Your Wife,tt0080895 hdaAD9fxKXA,1994.0,1,12,2013,Go Fish,My Name is Max,tt0109913 FzOGfMXmfF0,1980.0,2,12,2013,How to Beat the High Cost,Divorce by Answering Machine,tt0080895 S8WazHAxJLM,1972.0,1,12,2013,Hammer,They Call Him the,tt0068673 xvVqMR_f6IY,1994.0,9,12,2013,Go Fish,Getting Personal,tt0109913 6JTplpmC6AA,1972.0,2,12,2013,Hammer,Roughhouse Gets Slammed,tt0068673 cpO3ALFscmQ,1997.0,2,11,2013,Gang Related,Brainwashing Joe,tt0118900 UvpLAMfYgJ8,1985.0,2,12,2013,Invasion U.S.A.,A Tough Armadillo,tt0089348 2Rlao83KneM,1997.0,4,11,2013,Gang Related,Missing Gun,tt0118900 e0fFbNV1ySY,1997.0,9,11,2013,Gang Related,You F***ing Rat!,tt0118900 5iyXb_jNvgc,1972.0,9,12,2013,Hammer,Rescue Mission,tt0068673 S01OvbVQhGc,1972.0,7,12,2013,Hammer,"Peace, My Brothers",tt0068673 kWPc7z2IMkA,1997.0,11,11,2013,Gang Related,Going After Cynthia,tt0118900 p12YiRom_Kw,1997.0,1,11,2013,Gang Related,The Cover-Up,tt0118900 6HH44dvOLJw,1955.0,8,11,2013,Killer's Kiss,Don't Kill Me,tt0048254 nH40NtYdL-U,1955.0,9,11,2013,Killer's Kiss,Rooftop Chase,tt0048254 E5zvQmTrzVU,1985.0,10,12,2013,Invasion U.S.A.,It's a Trap!,tt0089348 KzSRd6xpR04,1955.0,11,11,2013,Killer's Kiss,Lovers Reunite,tt0048254 wzJObNk-flo,1972.0,4,12,2013,Hammer,Police Chase,tt0068673 6bn4rdEiqg0,1974.0,3,12,2013,Juggernaut,Ransom Instructions,tt0071706 0WuMU0zi02w,1997.0,10,11,2013,Gang Related,Rodriguez Gets Killed,tt0118900 jfYvV2tBEz0,1955.0,7,11,2013,Killer's Kiss,Outnumbered,tt0048254 QdIw0bzY3oc,1985.0,11,12,2013,Invasion U.S.A.,Double Shot,tt0089348 grlDMsiQ2Yc,1955.0,10,11,2013,Killer's Kiss,Fight at the Mannequin Factory,tt0048254 f1Nh9DlkZ1w,1955.0,3,11,2013,Killer's Kiss,Nightmare,tt0048254 GxcZL7EM5Zo,1985.0,12,12,2013,Invasion U.S.A.,It's Time,tt0089348 bBeHRwjwKk8,1972.0,8,12,2013,Hammer,Waste Him,tt0068673 HrFmuAN50BA,1985.0,4,12,2013,Invasion U.S.A.,You're Beginning to Irritate Me,tt0089348 wZheb1gbe58,1974.0,4,12,2013,Juggernaut,Corrigan Confronted,tt0071706 ghNPXViyQoU,1974.0,5,12,2013,Juggernaut,We're Not Paying,tt0071706 SN39w-Bnlgg,1985.0,7,12,2013,Invasion U.S.A.,Didn't Work Huh?,tt0089348 w1pIFZb7480,1972.0,3,12,2013,Hammer,Ready,tt0068673 ITEod2_WHoU,1985.0,3,12,2013,Invasion U.S.A.,They Make it So Easy,tt0089348 C-7X5i_EQPE,1974.0,6,12,2013,Juggernaut,I Don't Really Care That Much,tt0071706 jTRa22j4OUk,1972.0,5,12,2013,Hammer,Soar to the Moon,tt0068673 d8Ff_W4-4VE,1994.0,4,12,2013,Go Fish,First Kiss,tt0109913 kuQQoH9skXc,1994.0,3,12,2013,Go Fish,Going to the Movies,tt0109913 vozS5ppNzAM,1974.0,7,12,2013,Juggernaut,Sealed In,tt0071706 VWWchm35s-Y,1974.0,8,12,2013,Juggernaut,Porter Decides to Pay,tt0071706 KVncpZkleFc,1994.0,5,12,2013,Go Fish,Lesbian Identity,tt0109913 whUo8sI5OuY,1985.0,8,12,2013,Invasion U.S.A.,"Row, Row, Row Your Bomb",tt0089348 BTVWvOpPkIo,1985.0,9,12,2013,Invasion U.S.A.,Time to Die,tt0089348 7L0xuL1thp4,1974.0,2,12,2013,Juggernaut,Fallon Disarms a Bomb,tt0071706 xpSqCE8wCOU,1974.0,9,12,2013,Juggernaut,Charlie's Bomb,tt0071706 w610fTL5O-A,2002.0,1,11,2013,Hart's War,Checkpoint,tt0251114 qA73y2w3WUc,2002.0,8,11,2013,Hart's War,A Blackened Face,tt0251114 FwHnNe_ItOY,1974.0,10,12,2013,Juggernaut,Negotiations Have Broken Down,tt0071706 Tzt-axwwOUY,1972.0,6,12,2013,Hammer,A Soul Brother,tt0068673 Ih-_ZmPZ1x8,2002.0,10,11,2013,Hart's War,We're Not in the War Anymore,tt0251114 qh1KCsqqHFY,1974.0,11,12,2013,Juggernaut,The Counter Wire,tt0071706 jPSjDk0CM68,1983.0,5,12,2013,Hercules,One Against Eight,tt0085672 _F4WjvMnL6Y,1991.0,7,12,2013,Harley Davidson and the Marlboro Man,Blowin' Off Steam,tt0102005 _hX3fkzGrxk,2002.0,2,11,2013,Hart's War,P.O.W.,tt0251114 iRmtQ5DlvuQ,1985.0,5,12,2013,Invasion U.S.A.,Drive-Thru,tt0089348 nXoPEmh39ls,1974.0,12,12,2013,Juggernaut,Cut the Blue Wire,tt0071706 tLiJueTgu44,1985.0,1,12,2013,Invasion U.S.A.,Welcome to the United States!,tt0089348 HLxJLrrC5mE,2002.0,5,11,2013,Hart's War,Bread Football,tt0251114 mTYwZEhFwu0,1974.0,1,12,2013,Juggernaut,The 's First Call,tt0071706 gNEB3vRczjA,1991.0,6,12,2013,Harley Davidson and the Marlboro Man,The Bank Robbery,tt0102005 44-8o-jEDB0,1991.0,9,12,2013,Harley Davidson and the Marlboro Man,The Devil's a-Knockin',tt0102005 ohnhJ6gyLhk,2002.0,4,11,2013,Hart's War,You See These Bars?,tt0251114 kItLDGtPMMI,1991.0,4,12,2013,Harley Davidson and the Marlboro Man,Marlboro's Birthday Present,tt0102005 8I_QMs_Mjb0,2002.0,6,11,2013,Hart's War,They Had Fathers Too,tt0251114 OK_v02xShhs,1991.0,1,12,2013,Harley Davidson and the Marlboro Man,Convenience Store Robbery,tt0102005 cpQQpn89mEs,1991.0,5,12,2013,Harley Davidson and the Marlboro Man,Talk is Cheap,tt0102005 8dPqVrwBp7s,1955.0,6,11,2013,Killer's Kiss,Watch Your Step,tt0048254 QgdvS-09ygk,1955.0,5,11,2013,Killer's Kiss,Pity or Love?,tt0048254 OZNLJj4pJsw,2002.0,7,11,2013,Hart's War,The Sound of Propaganda,tt0251114 oub2YWXPV6g,2002.0,3,11,2013,Hart's War,Those Kind of Distinctions,tt0251114 60PDxhI6y4g,1955.0,1,11,2013,Killer's Kiss,Chance Encounter,tt0048254 AesICMoanS0,1991.0,10,12,2013,Harley Davidson and the Marlboro Man,Making Things Right,tt0102005 SyXqFhSPWBg,1974.0,4,11,2013,Lenny,Deny It,tt0071746 LWkbKaDHXbw,1974.0,1,11,2013,Lenny,Doing It,tt0071746 URvrDySPc4U,1955.0,2,11,2013,Killer's Kiss,The Fight,tt0048254 0XzQX-i3y_I,1955.0,4,11,2013,Killer's Kiss,Mad About You,tt0048254 vH8nss4M93g,1992.0,10,12,2013,Love Field,Road Block,tt0104765 xLIEyHRfbv4,1992.0,3,12,2013,Love Field,You Are Not Going Anywhere!,tt0104765 a2lb_3-fYFc,1974.0,7,11,2013,Lenny,Arrested for Obscenity,tt0071746 6kdms5umbhA,1992.0,6,12,2013,Love Field,You Owe Me!,tt0104765 4QsATC7VdUk,1974.0,11,11,2013,Lenny,Contempt of Court,tt0071746 zvgXyU1STYI,1992.0,5,12,2013,Love Field,What Else Have You Seen?,tt0104765 XGkwMwwlTLQ,1992.0,8,12,2013,Love Field,Forbidden Kiss,tt0104765 DSoLhO7jVzk,1992.0,4,12,2013,Love Field,Making Conversation,tt0104765 2J4gviivSJU,1974.0,5,11,2013,Lenny,A Word About Dykes,tt0071746 vK7tEsNZtFs,1992.0,1,12,2013,Love Field,Missing Jackie,tt0104765 o_6VSJ_RjkE,1974.0,6,11,2013,Lenny,Are There Any N****** Here?,tt0071746 fXcQVdBqtaY,1974.0,3,11,2013,Lenny,Stag Movies,tt0071746 2fkfpdMG-KQ,1992.0,2,12,2013,Love Field,Something's Wrong,tt0104765 vBhBkvkofjk,1974.0,10,11,2013,Lenny,Strung Out,tt0071746 2i-3w7WnPiU,1974.0,9,11,2013,Lenny,To Come,tt0071746 YjwB9d1tpJE,1992.0,12,12,2013,Love Field,I've Never Been Sorry,tt0104765 OopV0xphrrA,1973.0,3,10,2013,Mean Streets,Which One Do You Want?,tt0070379 HdaBcsWogXE,1992.0,7,12,2013,Love Field,Lurene Phones Home,tt0104765 d-2r0wMjfrY,1992.0,11,12,2013,Love Field,A Glimpse of Jackie,tt0104765 F6Y4Vd970zw,2002.0,8,9,2013,Assassination Tango,The Gift,tt0283897 MPDs_ZJMc90,2005.0,6,10,2013,Kiss Kiss Bang Bang,The Finger Scene,tt0373469 qkGDaroLl_M,1973.0,8,10,2013,Mean Streets,Rubber Biscuit,tt0070379 EpD-Hu37w5k,1973.0,10,10,2013,Mean Streets,Now's the Time,tt0070379 rba9NiqG9PI,1992.0,7,9,2013,Under Siege,Hand-to-Hand Combat,tt0105690 HkDkImVLQGc,1984.0,5,9,2013,Breakin' 2: Electric Boogaloo,Calling a Truce,tt0086999 t69ZfcWPZFY,1992.0,6,9,2013,Under Siege,Disobeying Orders,tt0105690 2zGJ_oOECv4,2009.0,7,10,2013,Terminator Salvation,Land Mine,tt0438488 XQdxHzDK12o,2005.0,2,10,2013,Kiss Kiss Bang Bang,Harmony Faith Lane Scene,tt0373469 jF9GE50ioFo,2005.0,5,10,2013,Kiss Kiss Bang Bang,Moving the Corpse Scene,tt0373469 KQcLnNoYMWU,1964.0,8,10,2013,The Train,Train Painting,tt0059825 21GAl13VImg,1986.0,12,12,2013,Firewalker,Hidden Treasure,tt0091055 yBxr5ACMH5U,1986.0,4,12,2013,Firewalker,I Am No Sissy!,tt0091055 SV73jXKrQ80,1986.0,7,12,2013,Firewalker,Last Rites,tt0091055 yXcVX57I2JU,2003.0,3,12,2013,A Guy Thing,Paul Has Crabs,tt0295289 MyINcc8SDd4,1959.0,3,9,2013,A Hole in the Head,Tony's a Kiwi,tt0052896 6-L8WG51noY,2003.0,12,12,2013,A Guy Thing,Cuddle Monkey,tt0295289 p8t_xV4Lf0A,2003.0,8,12,2013,A Guy Thing,Paul Meets Ray,tt0295289 LKVcX3959I0,2003.0,2,12,2013,A Guy Thing,Hiding the Underwear,tt0295289 2fWpPZaxmM8,2003.0,7,12,2013,A Guy Thing,Paul and Pete Discuss Becky,tt0295289 p92CKGAeQUY,1973.0,9,10,2013,Mean Streets,Where's the Rest?,tt0070379 MIGDyLqwY7Y,1973.0,4,10,2013,Mean Streets,Busted,tt0070379 Si5R7-KZWFY,1973.0,7,10,2013,Mean Streets,What Do You Like?,tt0070379 E0wfFdGnwx0,1973.0,1,10,2013,Mean Streets,Tony and Michael,tt0070379 _DbFZkXD8WA,1973.0,6,10,2013,Mean Streets,Give Us a Ride,tt0070379 BS-6KavRfww,1973.0,5,10,2013,Mean Streets,Bathroom Hit,tt0070379 7xt32rq7iD8,1973.0,2,10,2013,Mean Streets,Johnny Boy and Charlie,tt0070379 reQPn8oDC2c,1989.0,3,10,2013,After Midnight,Kevin Beheads Joan,tt0096769 kHRSh7JOKxo,1956.0,9,11,2013,A Kiss Before Dying,The Killer Is Still Free,tt0049414 TPQeRElxu2o,1989.0,9,10,2013,After Midnight,Revenge Backfires,tt0096769 me7nuXZfXVM,1989.0,5,10,2013,After Midnight,Wild Dog Attack,tt0096769 skMchQx_U_k,1989.0,6,10,2013,After Midnight,Don't Play Games With Me,tt0096769 chlwxs2dfVA,1956.0,4,11,2013,A Kiss Before Dying,A Kiss Before Murder,tt0049414 EimQSagV_8k,1956.0,2,11,2013,A Kiss Before Dying,Poison Pills,tt0049414 irglCpn_Hs8,1989.0,8,10,2013,After Midnight,You Want to Be Scared?,tt0096769 fiziIJ6zTU8,1989.0,4,10,2013,After Midnight,You Wanna Play?,tt0096769 XRUO2E9UQro,1989.0,7,10,2013,After Midnight,Alex Flees Richard,tt0096769 dKleqAHv-Zw,1956.0,11,11,2013,A Kiss Before Dying,Death and Consequences,tt0049414 roxNsu1YELE,1989.0,10,10,2013,After Midnight,All a Dream,tt0096769 vSjkkQ6Bfc4,1989.0,1,10,2013,After Midnight,Real Fear,tt0096769 MCtE3Y28IR0,2002.0,5,11,2013,Barbershop,That's My Car!,tt0303714 tTrgUKsKetY,1973.0,7,9,2013,Coffy,King's Last Ride,tt0069897 g0HwVyKSC_8,1984.0,3,9,2013,Beat Street,You're a Biter,tt0086946 LHVll_0Hmh4,1956.0,5,11,2013,A Kiss Before Dying,"Something Borrowed, Something Blue",tt0049414 3SessG74yMk,1956.0,10,11,2013,A Kiss Before Dying,A Murderer Revealed,tt0049414 kNMc5CKw4G0,2002.0,6,9,2013,Assassination Tango,Welcome to Argentina,tt0283897 Ejp4AjvBuGw,1956.0,7,11,2013,A Kiss Before Dying,Please Forgive Me for Everything,tt0049414 8BY36nM4_HI,1956.0,8,11,2013,A Kiss Before Dying,A Simple Matter of Chemistry,tt0049414 nWRelGmpmxQ,1956.0,6,11,2013,A Kiss Before Dying,Caught in the Alley,tt0049414 ZYOhqPzYRjs,1956.0,3,11,2013,A Kiss Before Dying,Seeing a Ghost,tt0049414 80htzZ3-XwA,1956.0,1,11,2013,A Kiss Before Dying,Love Conquers All,tt0049414 tJHkiRzd05M,2002.0,5,9,2013,Assassination Tango,Symbol of Elegance,tt0283897 2nacHERVnsY,1989.0,2,10,2013,After Midnight,Pranking the Class,tt0096769 kVXAITzqSgc,2002.0,3,9,2013,Assassination Tango,A Tango Performance,tt0283897 M9rOG76v0qY,2002.0,4,9,2013,Assassination Tango,Tango Lessons Tomorrow,tt0283897 oPOqdtLP8XM,2002.0,11,11,2013,Barbershop,I Lost the Shop,tt0303714 H9TUkZR66o4,2002.0,1,9,2013,Assassination Tango,Wrinkles On My Face?,tt0283897 YJhs9wqT7qE,2002.0,2,11,2013,Barbershop,Seniority,tt0303714 U_5JpJYsufQ,2002.0,2,9,2013,Assassination Tango,The Job Done Right,tt0283897 Sms4grRcCck,2002.0,9,9,2013,Assassination Tango,Last Tango with Manuela,tt0283897 BL9xCIeznI8,2002.0,7,9,2013,Assassination Tango,The Assassination Job,tt0283897 n7W0yxKnuvs,2002.0,3,11,2013,Barbershop,Calvin Sells the,tt0303714 GNsD8EVetbU,2002.0,8,11,2013,Barbershop,Stealing the ATM,tt0303714 N_tNwz5Bxwk,2002.0,4,11,2013,Barbershop,Ya'll Don't Know Nothin',tt0303714 oSpMQ0WtrSs,2002.0,1,11,2013,Barbershop,Your Sister's a Demon Child,tt0303714 ZtE1j9UnzC4,2002.0,9,11,2013,Barbershop,You're Breaking Up With Me?,tt0303714 7U-et8qOXLs,2002.0,6,11,2013,Barbershop,"Rosa Parks, Rodney King and Jesse Jackson",tt0303714 RczW1gIRBjY,2002.0,10,11,2013,Barbershop,Reparations,tt0303714 1MUi4ZiJUsA,2002.0,7,11,2013,Barbershop,Take This Money,tt0303714 Ph6hXpPbl0s,1984.0,5,9,2013,Beat Street,The Santa Claus Rap,tt0086946 frqy8o30rv8,1984.0,8,9,2013,Beat Street,Melle Mel and the Furious Five,tt0086946 SiJQJiUZ5Jw,1984.0,6,9,2013,Beat Street,Caught By the Cops,tt0086946 cigrbhwjTnI,1984.0,2,9,2013,Beat Street,The Bronx Rockers vs.,tt0086946 8aQFiCfxz6M,1984.0,9,9,2013,Beat Street,Believe,tt0086946 fpnoVKmulZM,1984.0,1,9,2013,Beat Street,"Us Girls Can Boogie, Too",tt0086946 hyXCJXsHX3A,1984.0,4,9,2013,Beat Street,Tagging the Train Station,tt0086946 d7he8f2L_BE,1984.0,7,9,2013,Beat Street,Painting a Virgin Train,tt0086946 _lnD3Fh-kYg,1972.0,12,12,2013,Blacula,Heads Into the Sunlight,tt0068284 9gdhd-EerNw,1972.0,10,12,2013,Blacula,Not One Man Shall Escape My Vengeance,tt0068284 3SAElnJHcNc,1962.0,4,11,2013,Birdman of Alcatraz,Learning to Fly,tt0055798 FRVB-HBxR98,1962.0,7,11,2013,Birdman of Alcatraz,Going Into Business,tt0055798 XY3urIUUizU,1988.0,5,12,2013,Child's Play,Chucky Attacks Mike Scene,tt0094862 4a71NDQWOMM,1972.0,8,12,2013,Blacula,An Urgent Appointment Elsewhere,tt0068284 BOYsnywXTu8,1973.0,5,9,2013,Coffy,Have Some Salad,tt0069897 c9_46Iv_GGM,1962.0,3,11,2013,Birdman of Alcatraz,Solitary for Life,tt0055798 luhE1BFZN9U,1972.0,9,11,2013,Boxcar Bertha,Captured Again,tt0068309 Tt9v8E7Owxo,1973.0,6,9,2013,Coffy,Arturo Craves,tt0069897 5xl30KAt6-w,1988.0,6,12,2013,Child's Play,You Can't Hurt Me Scene,tt0094862 n92XBsqbSF4,1972.0,7,12,2013,Blacula,Warehouse of the Dead,tt0068284 Xp_xKQZigM0,1972.0,1,11,2013,Boxcar Bertha,Big Bill,tt0068309 QbRnDoXuwkQ,1962.0,6,11,2013,Birdman of Alcatraz,Death of a Canary,tt0055798 iTXqcn1qyCk,1972.0,7,11,2013,Boxcar Bertha,Holding Up the Party,tt0068309 RE6QfwhDMhw,1973.0,3,9,2013,Coffy,C'mon Bitch,tt0069897 2uQeLmDx98o,1973.0,9,9,2013,Coffy,'s Final Revenge,tt0069897 oow41RrqpHE,1962.0,5,11,2013,Birdman of Alcatraz,Stupid Bird Tricks,tt0055798 Fnvug-nXPYg,1972.0,3,11,2013,Boxcar Bertha,Train Robbers,tt0068309 yJjnYpZCH8A,1972.0,6,11,2013,Boxcar Bertha,Up & Down,tt0068309 wmG3O9RvEaU,1972.0,2,11,2013,Boxcar Bertha,Breaking Out,tt0068309 SATdGPY78z0,1972.0,5,12,2013,Blacula,Digging Up the Grave,tt0068284 g_mjMjs_eFY,1973.0,8,9,2013,Coffy,Revenge on Arturo,tt0069897 wO1s5eRplKs,1962.0,9,11,2013,Birdman of Alcatraz,Prison Riot,tt0055798 sXatQewZKRw,1972.0,5,11,2013,Boxcar Bertha,Crime Spree,tt0068309 Moq-NmqnZR0,1962.0,2,11,2013,Birdman of Alcatraz,Prison Fight,tt0055798 B22vWcjNR9I,1972.0,11,12,2013,Blacula,Tina Dies Again,tt0068284 yJlwArJRkmE,1962.0,11,11,2013,Birdman of Alcatraz,Leaving Alcatraz,tt0055798 crBqPflvzyQ,1988.0,1,12,2013,Child's Play,Chucky's First Victim Scene,tt0094862 45d4aoDJnhw,1962.0,10,11,2013,Birdman of Alcatraz,I Give You My Word,tt0055798 lh3qxTgaa1Y,1972.0,2,12,2013,Blacula,Free!,tt0068284 AIeKpxgasMQ,1973.0,2,9,2013,Coffy,I Helped Sew Up Your Face,tt0069897 X4_8ByCyrUA,1962.0,1,11,2013,Birdman of Alcatraz,A Convict's Rights,tt0055798 2uSOBDMv_S0,1962.0,8,11,2013,Birdman of Alcatraz,Give Her Up,tt0055798 CSuwuvVcRHU,1988.0,7,12,2013,Child's Play,Dr. Death's Voodoo Scene,tt0094862 Lt01tXTT0Ak,1989.0,2,10,2013,Cyborg,The Wasteland,tt0097138 4uVC-cDpdpg,1972.0,1,12,2013,Blacula,The Curse of Dracula,tt0068284 wJJ2RLLVzcU,1972.0,4,11,2013,Boxcar Bertha,A Union Man,tt0068309 jRRY7zgE4K8,1973.0,1,9,2013,Coffy,You Better Believe It's Comin'!,tt0069897 WcSLuxBdYJ8,1988.0,9,12,2013,Child's Play,Batter up! Scene,tt0094862 HSH9SG55kBU,1988.0,10,12,2013,Child's Play,"This Is the End, Friend Scene",tt0094862 8tteR5k1l-A,1989.0,3,10,2013,Cyborg,Factory Fight,tt0097138 _LAoGdcXG3Q,1989.0,5,10,2013,Cyborg,Ship Mast Crucifixion,tt0097138 nkUx3zstpbU,1972.0,8,11,2013,Boxcar Bertha,Rake Gets Killed,tt0068309 Js0YTLpY9bY,1988.0,12,12,2013,Child's Play,Chucky Dies Scene,tt0094862 9R0If3RWk5M,1972.0,11,11,2013,Boxcar Bertha,Von's Vengeance,tt0068309 5E3TSzke-Fg,1973.0,4,9,2013,Coffy,King George,tt0069897 P4PPhm_fJug,1983.0,6,10,2013,Curse of the Pink Panther,A Date With Shirley,tt0085384 4QL9q2mwZXI,1972.0,10,11,2013,Boxcar Bertha,Crucified,tt0068309 SJ671CSV2-M,1972.0,4,12,2013,Blacula,You Must Come to Me Freely,tt0068284 Wd7iSbGIDqs,1972.0,3,12,2013,Blacula,The Only Imbecile on the Street,tt0068284 gboXDP4L4b0,1972.0,9,12,2013,Blacula,The Only Way to Save Tina,tt0068284 J_OsoyDByWo,1972.0,6,12,2013,Blacula,Juanita Wakes Up!,tt0068284 B62wGNHDYHA,1989.0,1,10,2013,Cyborg,I'm a,tt0097138 4dS7rsMy1-Y,1983.0,9,10,2013,Curse of the Pink Panther,Looks Like Suicide,tt0085384 PK1aYqQgn-k,1983.0,7,10,2013,Curse of the Pink Panther,Getting a Room,tt0085384 XITc_tguH2o,1989.0,6,10,2013,Cyborg,Gibson's Salvation,tt0097138 j638xTM36I8,1973.0,10,12,2013,Dillinger,Pretty Boy Floyd,tt0069976 vU1_EJh6Atc,1989.0,9,10,2013,Cyborg,Fender Bender,tt0097138 i812ZsyyeLg,1983.0,8,10,2013,Curse of the Pink Panther,It Must be the Gas,tt0085384 Bzqkq2LwnOQ,1989.0,10,10,2013,Cyborg,On the Hook,tt0097138 mWqZWXSj-s0,1983.0,1,10,2013,Curse of the Pink Panther,Detective Sleigh Has Arrived,tt0085384 e-oTHFL5_ec,1983.0,4,10,2013,Curse of the Pink Panther,I Can't Tell You How Sorry I Am,tt0085384 Rtv_BhYXLh8,1983.0,3,10,2013,Curse of the Pink Panther,Balls' Disguises,tt0085384 Eghn9oMlSy0,1989.0,8,10,2013,Cyborg,Showdown in the Rain,tt0097138 vY04JLQa1MQ,1983.0,5,10,2013,Curse of the Pink Panther,Meeting with the Littons,tt0085384 qKYRwuoqETc,1989.0,4,10,2013,Cyborg,Overmatched and Outnumbered,tt0097138 1C_7b05Rlvo,1973.0,2,12,2013,Dillinger,Remember This Face,tt0069976 p7rtU_AM1bE,1989.0,7,10,2013,Cyborg,Against All Odds,tt0097138 pSzusQmqyxE,1983.0,10,10,2013,Curse of the Pink Panther,Hit the Water!,tt0085384 XpdrOUgweIA,1983.0,2,10,2013,Curse of the Pink Panther,The Wax Museum,tt0085384 FeecJ5bAGHA,1973.0,12,12,2013,Dillinger,Biograph Theater,tt0069976 c-jOeDA-X0k,1973.0,8,12,2013,Dillinger,"Break Out, Baby!",tt0069976 fBB_lJ3Axqk,1973.0,7,12,2013,Dillinger,Number 36,tt0069976 Sp1xdUY8R14,1973.0,3,12,2013,Dillinger,Fool for Love,tt0069976 w8O0iiBrIzM,1973.0,6,12,2013,Dillinger,G-Man,tt0069976 dUCUs8EtHoM,1973.0,5,12,2013,Dillinger,Bank Robbery Gone Wrong,tt0069976 Wlrq_lGAn78,1973.0,4,12,2013,Dillinger,Sheer Guts,tt0069976 U4DZWsXvRUA,1973.0,1,12,2013,Dillinger,This is a Robbery!,tt0069976 osfdb5BrLPI,1973.0,11,12,2013,Dillinger,Madame Sage,tt0069976 0en0UJ180yc,1973.0,9,12,2013,Dillinger,Mason City Mistake,tt0069976 SVGc5KwWRtM,1980.0,3,9,2013,Dressed to Kill,You're Not a Psycho,tt0080661 GiNKTYoCWG4,1980.0,9,9,2013,Dressed to Kill,Shower Nightmare,tt0080661 4qHuiCLkYHc,1980.0,6,9,2013,Dressed to Kill,Seducing Dr. Elliott,tt0080661 2Et6MGSeXOU,1980.0,1,9,2013,Dressed to Kill,Museum Encounter,tt0080661 Pys1zBR5jX8,1980.0,7,9,2013,Dressed to Kill,Behind You!,tt0080661 iyCfFXxNtp8,1980.0,4,9,2013,Dressed to Kill,Watching Phil Donahue,tt0080661 aUCNlDzsDH0,1993.0,1,12,2013,Fatal Instinct,Who Can Say No to a Wiener?,tt0106873 R8_HfT2ndyg,1980.0,2,9,2013,Dressed to Kill,Murder on an Elevator,tt0080661 KI97hqN52Ik,1980.0,8,9,2013,Dressed to Kill,Transsexuality,tt0080661 0-81bpcuz44,1980.0,5,9,2013,Dressed to Kill,Subway Chase,tt0080661 kYQkkpRXgP4,1993.0,3,12,2013,Fatal Instinct,You're Screwing My Wife,tt0106873 9lU01uvS3Nk,1993.0,5,12,2013,Fatal Instinct,Three's Company,tt0106873 4OW7CMS8PBQ,1993.0,12,12,2013,Fatal Instinct,Got 'Em,tt0106873 kDFwUhn_1Ao,1993.0,2,12,2013,Fatal Instinct,Bumper Cars and Cue Cards,tt0106873 wrmwJx6kYKc,1993.0,11,12,2013,Fatal Instinct,Courtroom Battle of the Century,tt0106873 S3GG_HRE-D4,1993.0,9,12,2013,Fatal Instinct,Max Shady,tt0106873 OBPgy6HGL44,1993.0,4,12,2013,Fatal Instinct,I Hear You Go Both Ways,tt0106873 vPs5yv77m9Y,1993.0,6,12,2013,Fatal Instinct,You Smoke Too Much,tt0106873 70_b9ZEcxp0,1993.0,10,12,2013,Fatal Instinct,The Death of Max Shady,tt0106873 Y3vhSZJthJM,1993.0,8,12,2013,Fatal Instinct,"You Bond With It, You Buy It",tt0106873 Tv6tdiEMGaY,1986.0,5,12,2013,Firewalker,Bar Brawl,tt0091055 672m88mMLZ8,1986.0,10,12,2013,Firewalker,The Treasure or Your Friend?,tt0091055 yKFEKBIXPxY,1993.0,7,12,2013,Fatal Instinct,A Kinky Affair,tt0106873 eZWHAM2EG3o,1986.0,2,12,2013,Firewalker,A Business Proposition,tt0091055 Dvze9_LZmC0,1986.0,1,12,2013,Firewalker,Desert Chase,tt0091055 lxQj06LN31A,1986.0,11,12,2013,Firewalker,Human Sacrifice,tt0091055 hLNZCf1nuRo,1986.0,6,12,2013,Firewalker,I Thought Nuns Were Supposed to Be Virgins,tt0091055 xKvmGfNhbF0,1986.0,3,12,2013,Firewalker,Attack of the Natives,tt0091055 YCuSsetzzg8,1986.0,9,12,2013,Firewalker,Knife Throwing Contest,tt0091055 caypUMEoKf8,1986.0,8,12,2013,Firewalker,We Need a New Plan,tt0091055 IhDAJ1Tug4M,1959.0,8,9,2013,A Hole in the Head,I Don't Want Handouts,tt0052896 Bi_YR5xkRx4,1963.0,5,11,2013,The Raven,Driving Under the Influence,tt0057449 9VkmshlGEvE,1963.0,7,11,2013,The Raven,A Ghost?,tt0057449 uSuoZcrKq0I,1964.0,3,10,2013,The Train,The Execution of Papa Boule,tt0059825 xHunA6CYHvo,1963.0,10,11,2013,The Raven,A Duel to the Death,tt0057449 F2Y7FnlkuCg,1963.0,6,11,2013,The Raven,Bedlo vs. Scarabus,tt0057449 jUcER281BOg,1970.0,12,12,2013,Ned Kelly,Sentenced to Death,tt0066130 qrTBSBYpzg0,1963.0,9,11,2013,The Raven,Dr. Craven's Choice,tt0057449 KxlEI-kTY2I,1970.0,11,12,2013,Ned Kelly,Ned's Last Stand,tt0066130 evo1frlMjHQ,1963.0,3,11,2013,The Raven,Dead Man's Hair,tt0057449 2_kQHIUwJMQ,2003.0,11,12,2013,A Guy Thing,In a Bathtub With a Girl,tt0295289 PpbNn6gMTUE,1959.0,4,9,2013,A Hole in the Head,You're a Bum,tt0052896 0IP7ihJrrqw,2003.0,4,12,2013,A Guy Thing,Crab Medicine,tt0295289 i3xjZomB1s0,1959.0,7,9,2013,A Hole in the Head,Tony Loses the Race and the Deal,tt0052896 1p8rDhTaegs,1959.0,5,9,2013,A Hole in the Head,Tired of Buying One Lamb Chop,tt0052896 SyGAQwggjTw,1959.0,6,9,2013,A Hole in the Head,How Am I Gonna Help the Kid?,tt0052896 79HayHaaXDE,1959.0,2,9,2013,A Hole in the Head,Broke Again,tt0052896 YY-l3FmgXKw,1959.0,1,9,2013,A Hole in the Head,Ally Worries About His Dad,tt0052896 uPqgue3xfPI,1959.0,9,9,2013,A Hole in the Head,High Hopes,tt0052896 Hhep61HLkIA,2003.0,9,12,2013,A Guy Thing,Did You Have a Girl in This Apartment?,tt0295289 bmJ4doOPxd8,2003.0,1,12,2013,A Guy Thing,Paul Wakes Up With Becky,tt0295289 1VwF6VuVhkc,2003.0,5,12,2013,A Guy Thing,These Are Going to Be Our In-Laws...,tt0295289 _07OFEHs0iE,2003.0,6,12,2013,A Guy Thing,Window Escape,tt0295289 -bzOzD2QShQ,2003.0,10,12,2013,A Guy Thing,Dirty Underwear Bins,tt0295289 poAxbGphYmA,1963.0,11,11,2013,The Raven,The Castle Burns,tt0057449 O_NBFJ4pow8,1963.0,1,11,2013,The Raven,Speaks,tt0057449 OinNCchV-xk,1963.0,8,11,2013,The Raven,You're Alive!,tt0057449 nuVY83HU5Mw,1963.0,4,11,2013,The Raven,Axe Man,tt0057449 y-AJwogMrAU,1970.0,1,12,2013,Ned Kelly,Die Like a Kelly,tt0066130 mksJyq7Z-mQ,1970.0,4,12,2013,Ned Kelly,Wild Colonial Boy,tt0066130 xAMy0g4w_ME,1970.0,3,12,2013,Ned Kelly,Sunday Afternoon Boxing,tt0066130 F1cWO821sR4,1970.0,7,12,2013,Ned Kelly,Blame It on the Kellys,tt0066130 DHJDwY4xoEc,1970.0,6,12,2013,Ned Kelly,Finish It Off,tt0066130 YTadpFs7QAI,1970.0,2,12,2013,Ned Kelly,We're the Kellys!,tt0066130 Q8rhm3wBFE0,1970.0,10,12,2013,Ned Kelly,Train Ambush,tt0066130 ei1tTWCrHqc,1970.0,9,12,2013,Ned Kelly,Homemade Armor,tt0066130 EEVcrvlYO-w,1970.0,5,12,2013,Ned Kelly,Long Jumping Contest,tt0066130 W9fV8EusSWE,1970.0,8,12,2013,Ned Kelly,To the Republic of Victoria,tt0066130 BQ5nPyRi6l8,1964.0,1,10,2013,The Train,Risking Lives for Art,tt0059825 CPRh4gw_GmQ,1964.0,9,10,2013,The Train,A Defeated Army,tt0059825 k1Xv18Vy-q0,1964.0,7,10,2013,The Train,Men Want to Be Heroes,tt0059825 OC_NauqyoSg,1964.0,10,10,2013,The Train,A Lump of Flesh,tt0059825 y5wsjMSXolU,1964.0,2,10,2013,The Train,Allied Bombing Raid,tt0059825 Z3yR0aNriPM,1964.0,4,10,2013,The Train,Spitfire Attack,tt0059825 Y1IEtzj23ws,1964.0,5,10,2013,The Train,Train Wreck,tt0059825 hAxEEf5p3Bw,1964.0,6,10,2013,The Train,Get Labiche,tt0059825 iiUiiK9dMPg,2003.0,1,10,2013,Agent Cody Banks,Cody Saves a Toddler,tt0313911 pN7yX45G6WA,2003.0,3,10,2013,Agent Cody Banks,The New Kid,tt0313911 ENjz0-Ut-nQ,2003.0,4,10,2013,Agent Cody Banks,How to Talk to Girls,tt0313911 iWW0Tk58kXM,2003.0,6,10,2013,Agent Cody Banks,Walking on the Ceiling,tt0313911 XWXmnyflZtw,2003.0,2,10,2013,Agent Cody Banks,Spy Gadgets,tt0313911 L45abB8vyEo,2003.0,5,10,2013,Agent Cody Banks,A Good Third Impression,tt0313911 mJbFV5i5ay8,2003.0,10,10,2013,Agent Cody Banks,Last Stand,tt0313911 Zj3ggkkj2Pg,2003.0,8,10,2013,Agent Cody Banks,Diner Brawl,tt0313911 pFm8RKAyU_Q,2003.0,9,10,2013,Agent Cody Banks,Bomb Da Base,tt0313911 tz6dNnahwCI,2003.0,7,10,2013,Agent Cody Banks,Cody Kicks Butt,tt0313911 DlBuWaGDP0M,2010.0,3,5,2013,Iron Man 2,Get a Quote Scene,tt1228705 VCxGD8VH-TM,2010.0,2,5,2013,Iron Man 2,Meet Natasha Scene,tt1228705 zwQRQ6SbyMk,2010.0,5,5,2013,Iron Man 2,Prison Cell Scene,tt1228705 89hCOgVa5LI,2010.0,4,5,2013,Iron Man 2,Suitcase Suit Scene,tt1228705 yocBQlw_mCA,2010.0,1,5,2013,Iron Man 2,Stark Expo Scene,tt1228705 PM9t2KSOfK8,1983.0,4,8,2013,Krull,Battle in the Swamps,tt0085811 DToj3xM2b1E,1999.0,8,8,2013,Cruel Intentions,Sebastians' Journal,tt0139134 iYG8WCULpNM,1999.0,1,8,2013,Cruel Intentions,The Bet,tt0139134 hpliHwPiYYU,1999.0,5,8,2013,Cruel Intentions,Practice Makes Perfect,tt0139134 _4lDASeWsFg,1999.0,4,8,2013,Cruel Intentions,Funny Faces,tt0139134 rwwMn3Y6rUA,1999.0,2,8,2013,Cruel Intentions,Getting to First Base,tt0139134 CgBeBag4ir0,1999.0,7,8,2013,Cruel Intentions,Kathryn's Triumph,tt0139134 PSofqNSuVy8,1964.0,1,8,2013,Dr. Strangelove,Ripper's Motivations,tt0057012 Bb2XlqE9OUg,1999.0,3,8,2013,Cruel Intentions,The Black Man is Gone,tt0139134 xEqdoVnIFug,1999.0,6,8,2013,Cruel Intentions,"It's Not You, It's Me",tt0139134 WI5B7jLWZUc,1964.0,2,8,2013,Dr. Strangelove,No Fighting in the War Room,tt0057012 Ymze0Je2Tm0,1964.0,5,8,2013,Dr. Strangelove,Mandrake Calls the President,tt0057012 snTaSJk0n_Y,1964.0,7,8,2013,Dr. Strangelove,Kong Rides the Bomb,tt0057012 J67wKhddWu4,1964.0,4,8,2013,Dr. Strangelove,Water and Commies,tt0057012 VEB-OoUrNuk,1964.0,3,8,2013,Dr. Strangelove,Hello Dimitri,tt0057012 mzddAYYDZkk,1964.0,8,8,2013,Dr. Strangelove,Living Underground,tt0057012 Cc1VTko8xJM,1983.0,7,8,2013,Krull,Breaking in the Fire Mares,tt0085811 231TmvIPzQQ,1964.0,6,8,2013,Dr. Strangelove,No Point in Getting Hysterical,tt0057012 EDdsxJLhp-E,1983.0,5,8,2013,Krull,A Changeling,tt0085811 9O1-5MNRbKE,1983.0,2,8,2013,Krull,Ergo The Magnificent!,tt0085811 3wJY4bd_M-w,1983.0,8,8,2013,Krull,Burning Tracks,tt0085811 WGGlUlvJffY,1983.0,3,8,2013,Krull,Safe Passage,tt0085811 173I36m3rr8,1983.0,1,8,2013,Krull,Wedding Intrusion,tt0085811 RlnrFh_APX0,1983.0,6,8,2013,Krull,How Many Wives Does He Have?,tt0085811 wfbqJpn8fN8,1985.0,2,8,2013,Real Genius,"File Under ""H"" for ""Toy""",tt0089886 SN7sOR35KCg,1985.0,1,8,2013,Real Genius,"All Brain, No Penis",tt0089886 Qa8kCQQUjHM,1985.0,4,8,2013,Real Genius,Lazlo's Lair,tt0089886 2ATVtP3BK64,1984.0,1,8,2013,Starman,I Send Greetings,tt0088172 rthHSISkM7A,1985.0,8,8,2013,Real Genius,Jerry's House of Popcorn,tt0089886 YyZ4gGCCqss,1985.0,7,8,2013,Real Genius,Stop Playing With Yourself,tt0089886 XPEWBEa8pqg,1985.0,5,8,2013,Real Genius,A Moral Imperative,tt0089886 teZ52l28tys,1984.0,2,8,2013,Starman,Arizona Maybe,tt0088172 G6i3bDGOLB8,1984.0,4,8,2013,Starman,The Deer Hunters,tt0088172 1IctSkdJICI,1984.0,5,8,2013,Starman,Road Block,tt0088172 E0aNsWbWr1s,1985.0,3,8,2013,Real Genius,Jordan Never Sleeps,tt0089886 g3WtvzmKCQQ,1984.0,3,8,2013,Starman,"Yellow Light, Go Very Fast",tt0088172 05-e-YTw4r8,1984.0,6,8,2013,Starman,Not From Around Here,tt0088172 TLsRWN6G77I,1984.0,7,8,2013,Starman,I Gave You a Baby,tt0088172 aPPMHA65HIg,1984.0,8,8,2013,Starman,How to Say Goodbye,tt0088172 JOkwDeIX1jg,1997.0,3,8,2013,Beverly Hills Ninja,Haru Says Goodbye,tt0118708 ChQG9RAkBiE,1997.0,2,8,2013,Anaconda,River Style,tt0118615 rAEv7dJC5Iw,1997.0,4,8,2013,Beverly Hills Ninja,I Will Be Watching Your Every Move,tt0118708 MfIvSh-tko8,1997.0,3,8,2013,Anaconda,The Deadly Wasp,tt0118615 rzG2L4Nbm3E,1997.0,1,8,2013,Anaconda,Jungle Fever,tt0118615 JWqaTJbxbW0,1997.0,8,8,2013,Anaconda,Swallowed Whole,tt0118615 k-WW7ULn8RA,1997.0,4,8,2013,Anaconda,Babies,tt0118615 wwoxXiyWf7A,1997.0,1,8,2013,Beverly Hills Ninja,The Great White Ninja,tt0118708 raIdZiSZ970,1997.0,5,8,2013,Beverly Hills Ninja,Haru the Hibachi Chef,tt0118708 PbgLbYd2zYI,1997.0,2,8,2013,Beverly Hills Ninja,A Trained Master,tt0118708 ijXLPE7SB3c,1997.0,7,8,2013,Anaconda,at the Waterfall,tt0118615 K7iGuEr-u0s,1997.0,7,8,2013,Beverly Hills Ninja,No One Messes With My Brother,tt0118708 Bk2dqynryeY,1997.0,6,8,2013,Anaconda,There's a Devil Inside Everyone,tt0118615 d79o09D8cuo,1997.0,5,8,2013,Anaconda,Change of Plans,tt0118615 qbdg6o8Z11I,1997.0,6,8,2013,Beverly Hills Ninja,Hibachi Brawl,tt0118708 lAcZxn1DeHs,1997.0,8,8,2013,Beverly Hills Ninja,Haru Battles Tanley,tt0118708 Kye_x3QOSU0,2007.0,8,11,2013,3:10 to Yuma,Not the Black Hat,tt0381849 owM4is78C0o,2007.0,6,11,2013,3:10 to Yuma,Failed Negotiation,tt0381849 M9WaDhm3bE0,2007.0,3,11,2013,3:10 to Yuma,I Ain't Gonna Kill You,tt0381849 ijueTjJrMQ0,2007.0,9,11,2013,3:10 to Yuma,I Ain't Never Been No Hero,tt0381849 oUxsU2oZ27s,2003.0,11,11,2013,Open Water,Feeding Frenzy,tt0374102 gV4WFBjc01I,2007.0,11,11,2013,3:10 to Yuma,One Tough Son of a Bitch,tt0381849 9BB9JHog-mg,2007.0,7,11,2013,3:10 to Yuma,Get Him on the Train,tt0381849 amGJwP2p7D8,2007.0,2,11,2013,3:10 to Yuma,Stagecoach Robbery,tt0381849 UwnVloaPX5Y,2007.0,10,11,2013,3:10 to Yuma,Where's the ?,tt0381849 8lnEGuCcmXs,2007.0,5,11,2013,3:10 to Yuma,Even Bad Men Love Their Mommas,tt0381849 H2_tkNGWYKs,2008.0,5,10,2013,Bangkok Dangerous,Boat Chase,tt0814022 H4dh0EmCQLg,2007.0,1,11,2013,3:10 to Yuma,You Have a Week,tt0381849 jAR5DtTUdHM,2007.0,4,11,2013,3:10 to Yuma,"Ben Wade, Captured in Bisbee",tt0381849 4XG4OPjDKJY,2008.0,6,10,2013,Bangkok Dangerous,Happy Together,tt0814022 i1nbM1Gg5OI,2008.0,3,10,2013,Bangkok Dangerous,Motorcycle Assassin,tt0814022 lAAxpdk0Swo,2008.0,4,10,2013,Bangkok Dangerous,That Was Your First Lesson,tt0814022 ddwe3cp5dt0,2008.0,1,10,2013,Bangkok Dangerous,Silent Kill,tt0814022 j1CcIP0upoU,2008.0,8,10,2013,Bangkok Dangerous,Seeing Red,tt0814022 LagYNt1QpT4,2008.0,2,10,2013,Bangkok Dangerous,Four Rules,tt0814022 B3g8p7_d8r8,2008.0,10,10,2013,Bangkok Dangerous,The Last Job,tt0814022 rSturS8MP9o,2008.0,7,10,2013,Bangkok Dangerous,When the Nightmare Becomes Real,tt0814022 QuIQ_S_WH7M,2008.0,9,10,2013,Bangkok Dangerous,One More Job,tt0814022 pyDG32yotmk,1999.0,7,11,2013,The Ninth Gate,You Should Be More Careful,tt0142688 n7AIwvbyT5c,1999.0,8,11,2013,The Ninth Gate,Blood Baptism,tt0142688 2_WO15gq88k,1999.0,9,11,2013,The Ninth Gate,The Enigma Is Solved,tt0142688 gcM1pFxO464,1999.0,10,11,2013,The Ninth Gate,Boris Enters the Ninth Gate,tt0142688 BcRXmoGWHtQ,1999.0,4,11,2013,The Ninth Gate,Even Hell Has Its Heroes,tt0142688 kKk9o476WM8,1999.0,3,11,2013,The Ninth Gate,Raise the Devil,tt0142688 4ekcTVeV-1w,1999.0,2,11,2013,The Ninth Gate,A Man Whose Loyalty Can Be Bought,tt0142688 OuLL5R3sb-w,1999.0,1,11,2013,The Ninth Gate,An Unscrupulous Bookdealer,tt0142688 LzJEXl2ie4E,2007.0,10,11,2013,Good Luck Chuck,Got Me Looking So Crazy,tt0452625 6xNFwkWJug8,1999.0,5,11,2013,The Ninth Gate,Some Books Are Dangerous,tt0142688 z0-rv13DDk8,1999.0,11,11,2013,The Ninth Gate,The Last Engraving,tt0142688 YAjVUJ5RB3E,1999.0,6,11,2013,The Ninth Gate,Why the Devil?,tt0142688 hBsnb6M-lr0,2007.0,9,11,2013,Good Luck Chuck,You're In the Clear,tt0452625 MeAMVy0ybYA,2000.0,8,11,2013,Best in Show,,tt0218839 CCF5MCx5Tes,2000.0,9,11,2013,Best in Show,Terrier Style,tt0218839 wirXvuRATiE,2000.0,5,11,2013,Best in Show,Where's Winky?,tt0218839 xVWpHTafYuA,2000.0,3,11,2013,Best in Show,We Met at Starbucks,tt0218839 W7xrlkbp0Hs,2000.0,10,11,2013,Best in Show,American Bitch,tt0218839 3uAh-opNpDg,2000.0,2,11,2013,Best in Show,We Both Love Soup,tt0218839 -GaJPgI3jh4,2000.0,7,11,2013,Best in Show,Judging the Hounds,tt0218839 3COpxKYnjPY,2000.0,4,11,2013,Best in Show,Naming Nuts,tt0218839 xhlW1DSEAiw,2003.0,3,11,2013,Open Water,Left Behind,tt0374102 JdeH3lqGvgY,2003.0,4,11,2013,Open Water,Was That a Shark?,tt0374102 DO_uVdE-KtE,2003.0,5,11,2013,Open Water,Stung by Jellyfish,tt0374102 fVv7WOgDC0o,2003.0,6,11,2013,Open Water,Asleep and Drifting,tt0374102 Z08HN_2m24o,2003.0,1,11,2013,Open Water,Not in the Mood,tt0374102 l1DMfq2zSks,2003.0,2,11,2013,Open Water,Under the Sea,tt0374102 S6QH4oWys_Y,2003.0,7,11,2013,Open Water,Just a Little Cut,tt0374102 Imyqnop6grY,2000.0,1,11,2013,Best in Show,Two Left Feet,tt0218839 m89SmMCynWM,2007.0,7,11,2013,Good Luck Chuck,The Best Night of Your Life,tt0452625 abM-sq8s2_E,2003.0,9,11,2013,Open Water,Bitten,tt0374102 qJ9YL7qMG80,2003.0,8,11,2013,Open Water,Big Ones,tt0374102 CoDnI1qW8ys,2007.0,2,11,2013,Good Luck Chuck,Tits and Teeth,tt0452625 4x1dHdc5fD0,2007.0,11,11,2013,Good Luck Chuck,I Want to Be That Next Guy,tt0452625 FcFtBqXUud0,2007.0,4,11,2013,Good Luck Chuck,You Got it Made!,tt0452625 tu0NflL0_9c,2007.0,5,11,2013,Good Luck Chuck,Mate Selection,tt0452625 lWopMAZt-sw,2003.0,10,11,2013,Open Water,Night Storm,tt0374102 W2OKX-PIpco,2007.0,3,11,2013,Good Luck Chuck,I Know About the Charm,tt0452625 E4D7FEZx150,2007.0,8,11,2013,Good Luck Chuck,Seducing Eleanor,tt0452625 xkzNVP-tQ-0,2007.0,1,11,2013,Good Luck Chuck,Charlie Gets Hexed,tt0452625 FjrKzRGUXWA,2007.0,6,11,2013,Good Luck Chuck,A Really Good Kisser,tt0452625 2DkHvEZSBOg,2007.0,4,9,2013,Delta Farce,Eastbound and Down,tt0800003 BITmqWGegUE,2007.0,6,9,2013,Delta Farce,Carlos Santana,tt0800003 9_AMztckp6k,2007.0,3,9,2013,Delta Farce,Butcher of Baghdad,tt0800003 Pi392aPIVHc,2007.0,2,9,2013,Delta Farce,Basic Training,tt0800003 rOoBvxdO0Ac,2007.0,7,9,2013,Delta Farce,Mexican Standoff,tt0800003 DcZgodKg9OQ,2007.0,5,9,2013,Delta Farce,Camel Ass Tacos,tt0800003 H7GwaAh6G4o,2007.0,8,9,2013,Delta Farce,Lucha Libre Liberation,tt0800003 x7mnUeDZWRI,2007.0,1,9,2013,Delta Farce,Sgt. Kilgore,tt0800003 -xSV3MoacUw,2007.0,9,9,2013,Delta Farce,Larry Lays Out Santana,tt0800003 JhX_d4BCzhk,2005.0,5,9,2013,Grizzly Man,Bear Fight,tt0427312 ArMePKKjiSw,2005.0,8,9,2013,Grizzly Man,Rest Peacefully,tt0427312 yUsoVGj1Ta0,2005.0,9,9,2013,Grizzly Man,And Treadwell Is Gone,tt0427312 yySvdJeBcEg,2005.0,2,9,2013,Grizzly Man,Sly Fox,tt0427312 yo6AWtLxoG4,2005.0,7,9,2013,Grizzly Man,Animals Rule!,tt0427312 J181xxxzqyg,2005.0,6,9,2013,Grizzly Man,The Lord's Humble Servant,tt0427312 UVj_fFGA1Vw,2005.0,1,9,2013,Grizzly Man,The Kind Warrior,tt0427312 wUf0QFFi2Mk,2005.0,4,9,2013,Grizzly Man,You Must Never Listen to This,tt0427312 Ao-ipKN7iQE,2005.0,3,9,2013,Grizzly Man,That's My Story,tt0427312 B3UhbtdxYak,2000.0,11,11,2013,Best in Show,Shih Tzu Calendar,tt0218839 rARKAStGRy8,2000.0,6,11,2013,Best in Show,Busy Bee,tt0218839 ouPU0xazha4,1989.0,5,9,2013,Bride of Re-Animator,There Is My Creation!,tt0099180 fNcnudXLN2g,1989.0,2,9,2013,Bride of Re-Animator,Revenge of the Re-Animated,tt0099180 2CFBewOReY8,1989.0,1,9,2013,Bride of Re-Animator,Reviving Chapman,tt0099180 vE3T2n8wX4k,1989.0,9,9,2014,Bride of Re-Animator,Hands and Feet,tt0099180 30xxXgTH4OE,1989.0,4,9,2013,Bride of Re-Animator,Just Dead Tissue,tt0099180 8x6RDkjZj8Y,1989.0,8,9,2013,Bride of Re-Animator,Doggie Hand,tt0099180 QL9sZG6f5rQ,1989.0,6,9,2013,Bride of Re-Animator,The Head of Dr. Hill,tt0099180 txKlsWFlkcs,1989.0,3,9,2013,Bride of Re-Animator,They're Coming!,tt0099180 wUul0bIkS6g,1989.0,7,9,2013,Bride of Re-Animator,You're A Nobody,tt0099180 xQi7ABaeCx0,2008.0,1,8,2013,Step Brothers,Sleep Walkers,tt0838283 WVxz2j4_skI,2008.0,6,8,2013,Step Brothers,Licking Dogsh**,tt0838283 ulwUkaKjgY0,2008.0,3,8,2013,Step Brothers,Bunk Beds,tt0838283 ENAuQIAgXIg,2008.0,7,8,2013,Step Brothers,Buried Alive,tt0838283 IF-3dxM0df8,2008.0,4,8,2013,Step Brothers,Are You Awake?,tt0838283 _PvuoEb4yeQ,2008.0,8,8,2013,Step Brothers,We Are Getting a Divorce,tt0838283 KSheZC9C__s,2008.0,5,8,2013,Step Brothers,Punch Me In The Face,tt0838283 7FOk4bCAQhc,2008.0,2,8,2013,Step Brothers,Job Interview,tt0838283 Kw5qjJslyNU,1996.0,6,10,2013,Pusher,Torturing Frank,tt0117407 EzR4I2hJyxo,1996.0,10,10,2013,Pusher,In Debt to Milo,tt0117407 RhirMa1wvPc,1996.0,8,10,2013,Pusher,Girl Talk,tt0117407 mZpiKdps530,1996.0,9,10,2013,Pusher,Frankie's Friend,tt0117407 JL9SnJbeZQw,1996.0,7,10,2013,Pusher,Threats and Intimidation,tt0117407 k6UQZv_ElZE,1996.0,5,10,2013,Pusher,Spain,tt0117407 ZBc_xWnmHRk,1996.0,4,10,2013,Pusher,Frankie's Worth,tt0117407 85dpTb6PRNw,1996.0,3,10,2013,Pusher,Lactose and Baking Soda,tt0117407 Qo91sVEacq0,1996.0,2,10,2013,Pusher,The Deal,tt0117407 tgOwPRAbRdo,1996.0,1,10,2013,Pusher,Mom,tt0117407 ZF4nYBty_FU,1999.0,12,12,2013,Stigmata,The Secret Sayings,tt0145531 bjaJxs12l44,1999.0,11,12,2013,Stigmata,The Messenger is Not Important,tt0145531 cG0GDlP4oH0,1999.0,10,12,2013,Stigmata,The First,tt0145531 PLNOftwFMCA,1999.0,9,12,2013,Stigmata,Tears of the Mother,tt0145531 2T8HUyL7zyA,1999.0,8,12,2013,Stigmata,Subway Flagellation,tt0145531 hJYfFD_MNoY,1999.0,7,12,2013,Stigmata,Stigmatics,tt0145531 0NNaypyly_o,1999.0,6,12,2013,Stigmata,Pretty Presents,tt0145531 iJcH2hCMNiY,1999.0,5,12,2013,Stigmata,Kingdom of God,tt0145531 T2WbeZlfB9U,1999.0,4,12,2013,Stigmata,In the Emergency Room,tt0145531 nNkIWyfowzA,1999.0,3,12,2013,Stigmata,Frankie's Transfixion,tt0145531 HcP-chk0FwY,1999.0,2,12,2013,Stigmata,Frankie's Exorcism,tt0145531 kcDEHkSgpuw,1999.0,1,12,2013,Stigmata,A Messenger Has Faith,tt0145531 luEg5bWRsmA,2010.0,3,-1,2012,Ceremony,Tall Tales,tt1341341 IelhpK-eDh0,2011.0,1,9,2012,Twilight: Breaking Dawn Part 1,The Wedding,tt1324999 YfualY_RvlA,2011.0,9,9,2012,Twilight: Breaking Dawn Part 1,Bella's Transformation,tt1324999 PwmNvgd5kNI,2010.0,1,11,2012,Twilight: Eclipse,A Heartfelt Proposal,tt1325004 buoodeEt_hM,2011.0,8,9,2012,Twilight: Breaking Dawn Part 1,Jacob Imprints,tt1324999 _3-cN9Bhxls,2011.0,2,9,2012,Twilight: Breaking Dawn Part 1,Jacob & Bella Dance,tt1324999 dvT333RoCrw,2011.0,4,9,2012,Twilight: Breaking Dawn Part 1,I'm Late,tt1324999 hEXsOOVWuGA,2009.0,12,12,2012,Twilight: New Moon,Volturi Fight,tt1259571 yjdZhknwl2E,2011.0,5,9,2012,Twilight: Breaking Dawn Part 1,He's Thirsty,tt1324999 -c9-2KcnLXI,2009.0,11,12,2012,Twilight: New Moon,Bella Saves Edward,tt1259571 -Kd5zqw24S4,2009.0,10,12,2012,Twilight: New Moon,You Can Count on Me,tt1259571 QKRPgJYHblo,2011.0,6,9,2012,Twilight: Breaking Dawn Part 1,Childbirth,tt1324999 0klA5lTNwyY,2009.0,9,12,2012,Twilight: New Moon,Marry Me Bella,tt1259571 GQlizbovQAg,2009.0,8,12,2012,Twilight: New Moon,We Can't Be Friends Anymore,tt1259571 lhAQ43EIZ-g,2008.0,10,11,2012,Twilight,I'm Strong Enough To Kill You,tt1099212 vOnWEmbW3OQ,2009.0,7,12,2012,Twilight: New Moon,Jacob's Transformation,tt1259571 RNRZxWxgQlg,2011.0,7,9,2012,Twilight: Breaking Dawn Part 1,You're Not Dead,tt1324999 JOidGUY4Dm0,2011.0,3,9,2012,Twilight: Breaking Dawn Part 1,The Honeymoon,tt1324999 JhE3o7EwmEI,2009.0,6,12,2012,Twilight: New Moon,Bella's Bedroom,tt1259571 pPDz5TWc0Zw,2009.0,5,12,2012,Twilight: New Moon,Motorcycle Lesson,tt1259571 daUvbGlC3CY,2009.0,4,12,2012,Twilight: New Moon,Kiss Me,tt1259571 V2r-pCAO4rw,2009.0,3,12,2012,Twilight: New Moon,I Will Never Fail You,tt1259571 luylsO8UlhE,2009.0,2,12,2012,Twilight: New Moon,Happy Birthday,tt1259571 lkMilWJJR_U,2009.0,1,12,2012,Twilight: New Moon,Paper Cut,tt1259571 eDblDj6BISo,2008.0,11,11,2012,Twilight,I Want You Always,tt1099212 mSd_B5ZTP3s,2010.0,11,11,2012,Twilight: Eclipse,You'll Always Be My Bella,tt1325004 -bG0iKaxQYM,2010.0,10,11,2012,Twilight: Eclipse,Unrequited Love,tt1325004 7ghEs2R68XE,2010.0,9,11,2012,Twilight: Eclipse,She Has a Right to Know,tt1325004 0AUpWC9Whfs,2010.0,8,11,2012,Twilight: Eclipse,Jacob Kiss Me,tt1325004 LnuqPEIHL9I,2010.0,6,11,2012,Twilight: Eclipse,I'll Always Be Waiting,tt1325004 Vs2DOfnZ2vg,2010.0,7,11,2012,Twilight: Eclipse,I Am Hotter Than You,tt1325004 fWxKQF17YHk,2010.0,5,11,2012,Twilight: Eclipse,He's Got His Hooks In You,tt1325004 NMrgITIzg2o,2010.0,4,11,2012,Twilight: Eclipse,Graduation Day Speech,tt1325004 QsQAo97BaBA,2010.0,3,11,2012,Twilight: Eclipse,Doesn't He Own a Shirt?,tt1325004 AZIk5wIq2Qw,2008.0,9,11,2012,Twilight,Vampire Baseball,tt1099212 HQK5uM8tokE,2010.0,2,11,2012,Twilight: Eclipse,An Unlikely Alliance,tt1325004 cE71I4X9hWQ,2008.0,8,11,2012,Twilight,I Can Never Lose Control With You,tt1099212 bpcwhWgWfCc,2008.0,3,11,2012,Twilight,The Crash,tt1099212 SnJzOrHZwk8,2008.0,6,11,2012,Twilight,World's Most Dangerous Predator,tt1099212 ujFUQwcAQ7w,2008.0,5,11,2012,Twilight,I Know What You Are,tt1099212 FY2kKLvUL2c,2008.0,4,11,2012,Twilight,I Feel Very Protective Of You,tt1099212 9lX00rAetvU,2008.0,2,11,2012,Twilight,Don't Touch Me,tt1099212 kELmSLtEiiI,2008.0,7,11,2012,Twilight,Hold On Tight,tt1099212 oXMUkgWoMlQ,2008.0,1,11,2012,Twilight,Bella's Scent,tt1099212 D5E23GxcVHA,2006.0,8,8,2012,Talladega Nights,Cross Over the Anger Bridge,tt0415306 A27nH_TtN3k,2006.0,7,8,2012,Talladega Nights,Dinner at Applebee's,tt0415306 IzkrKfk4kYE,2006.0,6,8,2012,Talladega Nights,Susan Lays It on the Table,tt0415306 QN5dfOs4TMY,2006.0,5,8,2012,Talladega Nights,My Husband Gregory,tt0415306 YXmD6qdDCDE,2006.0,4,8,2012,Talladega Nights,Shake and Bake Is Dead,tt0415306 6Dye05tvSoo,2006.0,3,8,2012,Talladega Nights,Knife in the Leg,tt0415306 RkxAAilnLEI,2006.0,2,8,2012,Talladega Nights,That Just Happened!,tt0415306 i1Nh_3JCFj8,2006.0,1,8,2012,Talladega Nights,Dear Lord Baby Jesus,tt0415306 G9puHtVcU5o,1997.0,8,8,2012,Men in Black,Was That Your Auntie? Scene,tt0119654 UONfi1pwQzI,1997.0,7,8,2012,Men in Black,Shooting Down the Bug Scene,tt0119654 TNsEK_IIs9U,1997.0,6,8,2012,Men in Black,Edgar Takes a Hostage Scene,tt0119654 aJCCUdK7PiU,1997.0,5,8,2012,Men in Black,The Galaxy Is on Orion's Belt Scene,tt0119654 8LhpYfjGZvw,1992.0,2,8,2012,A League of Their Own,Dottie Catches a Fast Ball,tt0104694 -7krYJUfFv4,1992.0,1,8,2012,A League of Their Own,Dottie Gets Recruited,tt0104694 8z7YDo44-xE,1997.0,1,8,2012,As Good as It Gets,We're All Gonna Die Soon,tt0119822 Z7KYTavLTBo,2008.0,5,10,2012,Red Cliff,Protect the Refugees!,tt0425637 MM0kq3y2AMk,2008.0,2,10,2012,Red Cliff,Southern Invasion,tt0425637 aJSh1zkPEvc,2010.0,3,5,2014,Harry Potter and the Deathly Hallows: Part 1,The Three Brothers,tt0926084 PvtJeQ322eY,2001.0,7,8,2012,Joe Dirt,Pelted by Hot Dogs,tt0245686 8HZ56REwh3o,1979.0,5,8,2012,Kramer vs. Kramer,I'm His Mother,tt0079417 NiAbqHXwclo,2005.0,3,10,2013,Kiss Kiss Bang Bang,The Definition of an Idiot Scene,tt0373469 E2U5HXLiy90,2004.0,2,8,2012,50 First Dates,Nympho is the State Bird of Ohio,tt0343660 S__SZwFn0Rw,2004.0,1,8,2012,50 First Dates,Secret Agent Henry Roth,tt0343660 T-m_67AX5Ms,2004.0,3,8,2012,50 First Dates,Vomiting Walrus,tt0343660 iYU7ltkHYXM,2004.0,8,8,2012,50 First Dates,Lucy's Studio,tt0343660 v-fwHV86PgY,2004.0,4,8,2012,50 First Dates,Ula Takes a Beating,tt0343660 xHrOaF4Dq5U,2004.0,5,8,2012,50 First Dates,Nothing Beats a First Kiss,tt0343660 lQoMIGl_NTU,2004.0,7,8,2012,50 First Dates,Bon Voyage Henry,tt0343660 tmwSUyoEItk,2004.0,6,8,2012,50 First Dates,Stranger in Bed,tt0343660 iRdTetA_Dqo,1992.0,8,8,2012,A Few Good Men,Jessup Is Arrested,tt0104257 9FnO3igOkOk,1992.0,7,8,2012,A Few Good Men,You Can't Handle the Truth!,tt0104257 nyKJeXDoqnw,1992.0,6,8,2012,A Few Good Men,We Follow Orders or People Die,tt0104257 PjJzOpe9xEg,1992.0,5,8,2012,A Few Good Men,I Didn't Dismiss You,tt0104257 kSyIRLpdmlA,1995.0,2,10,2012,A Little Princess,Alone in the World,tt0113670 CevDWRn-3-s,1992.0,4,8,2012,A Few Good Men,Kaffee Melts Down,tt0104257 vyMggFe9WRQ,1992.0,3,8,2012,A Few Good Men,Ask Me Nicely,tt0104257 WXsTZ7eUpBE,1992.0,2,8,2012,A Few Good Men,A Woman to Salute,tt0104257 ljzkCBZuHM4,1992.0,1,8,2012,A Few Good Men,Galloway Confronts Kaffee,tt0104257 NaKBQWLRJqw,1992.0,3,8,2012,A League of Their Own,"Jimmy Pees, Dottie Does the Line-Up",tt0104694 XS1DdZzYIik,1992.0,8,8,2012,A League of Their Own,Dottie Says Goodbye,tt0104694 a46FsHMRPkc,1992.0,7,8,2012,A League of Their Own,Racine Belles Win the Game,tt0104694 mmuJb30cigQ,1992.0,6,8,2012,A League of Their Own,Jimmy's Prayer,tt0104694 6M8szlSa-8o,1992.0,5,8,2012,A League of Their Own,There's No Crying in Baseball,tt0104694 KVyRBCk_V1s,1992.0,4,8,2012,A League of Their Own,Jimmy and Dottie's Sign-Off,tt0104694 v1ordVEmJQQ,1995.0,6,10,2012,A Little Princess,Getting Sara's Locket,tt0113670 va_wuPBP5kA,1995.0,4,10,2012,A Little Princess,Tell Me About India,tt0113670 fWPRhRM1V7I,1995.0,7,10,2012,A Little Princess,All Girls Are Princesses,tt0113670 trLRP0-zvtU,1995.0,3,10,2012,A Little Princess,Not a Princess Any Longer,tt0113670 -WOw8ePUCEo,1995.0,1,10,2012,A Little Princess,Our Mothers Are Angels,tt0113670 FZ1f-u8RqBU,1995.0,8,10,2012,A Little Princess,Touched By An Angel,tt0113670 LpBQ2Q6GMlM,1995.0,5,10,2012,A Little Princess,Just a Little Curse,tt0113670 G3iPKcMjGlM,1995.0,9,10,2012,A Little Princess,Sara's Escape,tt0113670 mszANpbvdM8,1995.0,10,10,2012,A Little Princess,Reunited with Papa,tt0113670 IeMmE7HvO40,2003.0,8,10,2012,A Mighty Wind,Never Did No Wanderin',tt0310281 kXvfBvua7GY,2003.0,7,10,2012,A Mighty Wind,Stagecraft 101,tt0310281 2idVkpn0YAU,2003.0,4,10,2012,A Mighty Wind,Hitting That Sixth,tt0310281 Izr-5yitrb0,2003.0,1,10,2012,A Mighty Wind,The Record Had No Hole,tt0310281 ojiHA64n6iw,2003.0,5,10,2012,A Mighty Wind,Witches in Nature's Colors,tt0310281 sa2TE--j394,2003.0,6,10,2012,A Mighty Wind,Big Time Stuff,tt0310281 5gN8YA_xeY8,2003.0,10,10,2012,A Mighty Wind,A Time of Changes,tt0310281 YOkboxqOKBA,2003.0,9,10,2012,A Mighty Wind,Supreme Folk,tt0310281 Of8JOVXYU0Q,2003.0,3,10,2012,A Mighty Wind,Wha' Happened?,tt0310281 uu-RxCqop98,1992.0,4,8,2012,A River Runs Through It,Fishing with Father,tt0105265 7vRhOdf-6co,1992.0,1,8,2012,A River Runs Through It,Learning to Fish and Write,tt0105265 BI0lsk0EjfE,2003.0,2,10,2012,A Mighty Wind,The Bohners,tt0310281 AP3GWf3p4fQ,1992.0,5,8,2012,A River Runs Through It,I'll Never Leave Montana,tt0105265 gnz7BQ7lxJQ,1992.0,6,8,2012,A River Runs Through It,Witnessing Perfection,tt0105265 TfGmV-el44k,1992.0,7,8,2012,A River Runs Through It,We Can Love Completely,tt0105265 NJF70sHMFN8,1992.0,8,8,2012,A River Runs Through It,Haunted by Waters,tt0105265 WA3_SfMxtN8,1992.0,3,8,2012,A River Runs Through It,The Maclean Brothers Fight,tt0105265 nLTcdOr66lA,1992.0,2,8,2012,A River Runs Through It,Shooting the Chutes,tt0105265 mSD3SFHaqwg,2002.0,4,8,2012,Adaptation,The Deconstructionist,tt0268126 8391icf7iLk,2002.0,6,8,2012,Adaptation,Technology vs. Horse,tt0268126 ap9g2vR32Vg,2002.0,3,8,2012,Adaptation,Donald's Script Pitch,tt0268126 MyvEWQL7veg,2002.0,5,8,2012,Adaptation,Charlie Can't Adapt,tt0268126 7_HpQA3rLWw,2002.0,1,8,2012,Adaptation,Sweating at the Meeting,tt0268126 x90GleSXqIg,2002.0,8,8,2012,Adaptation,You Are What You Love,tt0268126 nr037owyBqM,2002.0,7,8,2012,Adaptation,Wasting McKee's Time,tt0268126 SuJOuQ9PJ_o,1997.0,8,8,2012,Air Force One,The New,tt0118571 mdYIqSZblv0,2002.0,2,8,2012,Adaptation,Done with Fish,tt0268126 yehCJ076_zI,1997.0,7,8,2012,Air Force One,It Was You?,tt0118571 nHpuQMB2pVU,1997.0,4,8,2012,Air Force One,The Commander-In-Chief,tt0118571 yJS6icRaOq8,1997.0,6,8,2012,Air Force One,A Pilot's Sacrifice,tt0118571 YdaeVone5qA,1997.0,5,8,2012,Air Force One,Get Off My Plane!,tt0118571 AoAK1JNNKR0,1997.0,3,8,2012,Air Force One,Ivan Counts to Ten,tt0118571 ZRkiBDXDT5Q,1997.0,2,8,2012,Air Force One,The President Is Armed,tt0118571 zj4oU-cUE9E,1997.0,1,8,2012,Air Force One,Hijacking,tt0118571 CXacLvKGrQ0,1976.0,2,9,2012,All the President's Men,You're Both on the Story,tt0074119 gvKBHCBBdf0,1976.0,7,9,2012,All the President's Men,Count to 10,tt0074119 O4itfvSP7-c,1976.0,3,9,2012,All the President's Men,Somebody Got to Her,tt0074119 Tg4_lfm5VrQ,1976.0,6,9,2012,All the President's Men,I Hate Trusting Anybody,tt0074119 FEdL1_zOyz4,1976.0,9,9,2012,All the President's Men,People's Lives Are in Danger,tt0074119 zZi8n49RMGE,1976.0,8,9,2012,All the President's Men,Deep Throat,tt0074119 vETxuL7Ij3Q,1976.0,4,9,2012,All the President's Men,Follow the Money,tt0074119 42sANL2ap9A,1976.0,1,9,2012,All the President's Men,Watergate Burglary,tt0074119 u0ttQ8Dn7LM,1976.0,5,9,2012,All the President's Men,People Sure Are Worried,tt0074119 XZWz-YlVw5c,2003.0,8,8,2012,Anger Management,Crashing Yankee Stadium,tt0305224 1cekfpK8mZQ,2003.0,5,8,2012,Anger Management,Monk Fight,tt0305224 zEYkLkJs5g0,2003.0,7,8,2012,Anger Management,Buddy Steals Linda,tt0305224 bQzh5ugYzPg,2003.0,6,8,2012,Anger Management,Dating Other People,tt0305224 PGy7bpf9ibo,2003.0,3,8,2012,Anger Management,Dave's Anger Ally,tt0305224 Vs2Nq6isib4,2003.0,4,8,2012,Anger Management,The Porker,tt0305224 lAgPsmTxBfc,2003.0,2,8,2012,Anger Management,Goosfraba,tt0305224 l59t24vh3QI,1997.0,8,8,2012,As Good as It Gets,The Greatest Woman Alive,tt0119822 DzUc3Eqzzos,2003.0,1,8,2012,Anger Management,Rage on a Plane,tt0305224 Jly4dXapR9c,1997.0,6,8,2012,As Good as It Gets,"Good Times, Noodle Salad",tt0119822 A75AgrH5eqc,1997.0,7,8,2012,As Good as It Gets,You Make Me Want to Be a Better Man,tt0119822 MI0gOipkexk,1997.0,5,8,2012,As Good as It Gets,Who Needs These Thoughts?,tt0119822 pbI6qTih2TI,1997.0,4,8,2012,As Good as It Gets,Sell Crazy Someplace Else,tt0119822 itIDxKxfGJI,1997.0,2,8,2012,As Good as It Gets,Verdell the Dog,tt0119822 c-ecbGNxEHM,1997.0,3,8,2012,As Good as It Gets,How Do You Write Women So Well?,tt0119822 v5wBisDJJ5A,1995.0,5,8,2012,Bad Boys,Don't Ever Say I Wasn't There For You,tt0112442 pqDU_EJrb2g,1995.0,2,8,2012,Bad Boys,Bathroom Brawl,tt0112442 ujhXgFBjcZA,1995.0,8,8,2012,Bad Boys,He Ain't Even Worth Killing,tt0112442 hAUbdHw8QG4,1995.0,7,8,2012,Bad Boys,That's How You're Supposed to Drive!,tt0112442 im1ZK1WNBZs,1995.0,6,8,2012,Bad Boys,Hangar Shootout,tt0112442 MoPFAlf393g,1995.0,1,8,2012,Bad Boys,This Is a Limited Edition,tt0112442 AYZZV6qazes,1995.0,4,8,2012,Bad Boys,Bad Cop,tt0112442 Jet1_E4O1MU,2004.0,10,10,2012,District B13,Leito Fights Damien,tt0414852 Cmhinct9OGE,2004.0,9,10,2012,District B13,A Present From Taha,tt0414852 i4h9xcdtyrE,1995.0,3,8,2012,Bad Boys,Freeze Mother Bitches!,tt0112442 Z9BefcGEB10,2004.0,7,10,2012,District B13,Turning on Taha,tt0414852 qb0Vd5ac82Q,2004.0,8,10,2012,District B13,Chased By Cars,tt0414852 jvCmoJHIm-A,2004.0,6,10,2012,District B13,Improvised Escape,tt0414852 21q8w_kAtkU,2004.0,2,10,2012,District B13,Saving His Sister,tt0414852 FIo18XdSuLs,2004.0,5,10,2012,District B13,How Did You Know I Was a Cop?,tt0414852 jrH2FZC1Z_U,2004.0,4,10,2012,District B13,Breaking into B13,tt0414852 VHSoPTJNfPE,2004.0,1,10,2012,District B13,Parkour Chase,tt0414852 g8nPKVElb88,2008.0,2,8,2012,Nick and Norah's Infinite Playlist,A Yugo is Not a Cab,tt0981227 fbmyMs5HAR4,2004.0,3,10,2012,District B13,Casino Escape,tt0414852 MVy9DFwT-4o,1993.0,6,10,2012,Batman: Mask of the Phantasm,Your Hands Are Just as Dirty,tt0106364 yJ5tQQhl8wc,1993.0,2,10,2012,Batman: Mask of the Phantasm,Vigilante in a Ski Mask,tt0106364 GvYsdMFsHuE,1993.0,4,10,2012,Batman: Mask of the Phantasm,Refusing to Stand By,tt0106364 -_YHQheqKxE,1993.0,9,10,2012,Batman: Mask of the Phantasm,Model Mayhem,tt0106364 -4Q-MS_oFkw,1993.0,5,10,2012,Batman: Mask of the Phantasm,Batman Begins,tt0106364 o_vwPlWTrgo,1993.0,7,10,2012,Batman: Mask of the Phantasm,Batman Hunted,tt0106364 SAYvv7GeSSE,1988.0,6,9,2012,Beetlejuice,Never Trust the Living,tt0094721 DK7-VL8Uxxo,1993.0,8,10,2012,Batman: Mask of the Phantasm,Spoiling the Mood,tt0106364 ZEOI34R4iw0,1993.0,10,10,2012,Batman: Mask of the Phantasm,"Goodbye, My Love",tt0106364 OeEa3gTsVDo,1988.0,3,9,2012,Beetlejuice,You Guys Really Are Dead,tt0094721 vE0nmQGO4Hk,1993.0,1,10,2012,Batman: Mask of the Phantasm,Your Angel of Death Awaits,tt0106364 _3CJHN6bBzk,1993.0,3,10,2012,Batman: Mask of the Phantasm,The Plan Is Working,tt0106364 Io0PZTAcBes,1988.0,4,9,2012,Beetlejuice,We're Simpatico,tt0094721 RYlj-btwi6o,1988.0,1,9,2012,Beetlejuice,Free Demon Possession with Every Exorcism!,tt0094721 Lcf227lWEek,1988.0,5,9,2012,Beetlejuice,Scary Snake,tt0094721 cZwdCa0ynEw,1988.0,2,9,2012,Beetlejuice,Netherworld Waiting Room,tt0094721 vHmyJqXxmL8,1988.0,9,9,2012,Beetlejuice,Til Death Do Us Part,tt0094721 Nz15PudXkXM,1988.0,7,9,2012,Beetlejuice,The Ghost with the Most,tt0094721 aDm4L7gjYNs,1988.0,8,9,2012,Beetlejuice,It's Showtime!,tt0094721 VhRkUhY8MlQ,2004.0,10,10,2012,Before Sunset,A Waltz for a Night,tt0381681 3WscLkiiCts,2004.0,1,10,2012,Before Sunset,What Is Your Next Book?,tt0381681 eGJqzSFW9Zg,2004.0,9,10,2012,Before Sunset,Still Here,tt0381681 pEa07GOtQs4,2004.0,5,10,2012,Before Sunset,Relationships,tt0381681 TUbgKkn9qFw,2004.0,7,10,2012,Before Sunset,Stop the Car,tt0381681 60ldo3xGfGY,2004.0,4,10,2012,Before Sunset,If Today Was Our Last Day,tt0381681 z_eg2OjO6uM,2004.0,8,10,2012,Before Sunset,I Have These Dreams...,tt0381681 Gk3MgTTHdLs,2004.0,2,10,2012,Before Sunset,Did You Show Up in Vienna?,tt0381681 WPPUUvcO43A,2004.0,6,10,2012,Before Sunset,We Were Young and Stupid,tt0381681 dcsByxGdYO0,2004.0,3,10,2012,Before Sunset,We Didn't Even Have Sex,tt0381681 vTeY6H581pg,2008.0,7,10,2012,Body of Lies,Lunch with Aisha,tt0758774 acs2qgkCHvw,1999.0,4,8,2012,Big Daddy,New School of Child Raising,tt0142342 nDw_DOEdai8,1999.0,3,8,2012,Big Daddy,Old Man Sid,tt0142342 vWyPfvAbUOQ,1999.0,1,8,2012,Big Daddy,You're Not Proposing Are You?,tt0142342 TvetwclCFq4,1999.0,5,8,2012,Big Daddy,Picking-Up Girls in the Park,tt0142342 orGDoXo7xKA,1999.0,7,8,2012,Big Daddy,Saying Goodbye,tt0142342 UFlhVGogIRg,1999.0,8,8,2012,Big Daddy,Ready to Be a Father,tt0142342 UMlZ90ZNGJI,1999.0,6,8,2012,Big Daddy,Scuba Scam,tt0142342 IdEekLJJc0o,2003.0,6,8,2012,Big Fish,Always Been a Fool,tt0319061 5WIwlJP6XhU,2003.0,2,8,2012,Big Fish,Gigantificationism,tt0319061 RAvoR20o9s4,2003.0,8,8,2012,Big Fish,The Story of My Life,tt0319061 K2JtNouF2rQ,1999.0,2,8,2012,Big Daddy,To Pee or Not To Pee,tt0142342 35LPE5SjhiI,2003.0,4,8,2012,Big Fish,Leaving Spectre,tt0319061 ZRdLFB-SJpA,2003.0,7,8,2012,Big Fish,Field of Daffodils,tt0319061 cfDwQbxRoEo,2003.0,5,8,2012,Big Fish,Time Stands Still,tt0319061 V5qEU07yVnI,2003.0,1,8,2012,Big Fish,The Witch's Eye,tt0319061 gvJLNa16cdo,2003.0,3,8,2012,Big Fish,Giant Ambition,tt0319061 paCyf1IAKug,2008.0,10,10,2012,Body of Lies,Fight the Infidels,tt0758774 WkFdij3Wr9M,2008.0,8,10,2012,Body of Lies,The Brothers of Awareness,tt0758774 NeciZ5_hFTY,2008.0,9,10,2012,Body of Lies,Desert Pick-up,tt0758774 tskuP_9J2RY,2008.0,5,10,2012,Body of Lies,Be a Good Muslim,tt0758774 ySu6q4ydPZQ,2008.0,6,10,2012,Body of Lies,Reciprocity,tt0758774 4cZQOWaWYj0,2008.0,3,10,2012,Body of Lies,Serious Trouble,tt0758774 HK4eFj52f1o,2008.0,4,10,2012,Body of Lies,Bad Station Asset,tt0758774 McBW00qkAlY,2008.0,2,10,2012,Body of Lies,Safe House Shootout,tt0758774 QihI3ORsFn0,1996.0,8,8,2012,Bottle Rocket,They'll Never Catch Me,tt0115734 GJz6eFgwgkA,2008.0,1,10,2012,Body of Lies,You Milked Him,tt0758774 -swpG7VRhpQ,1996.0,2,8,2012,Bottle Rocket,"Bob Mapplethorpe, Potential Getaway Driver",tt0115734 5BKMV5PyjDg,1996.0,7,8,2012,Bottle Rocket,The Job Falls Apart,tt0115734 OAZo5VJVZCY,1996.0,5,8,2012,Bottle Rocket,Dignan Blows Up,tt0115734 21mtTvR21Ts,1996.0,6,8,2012,Bottle Rocket,Little Banana,tt0115734 SmFDafzmklA,1996.0,4,8,2012,Bottle Rocket,Keep the Gun on the Table!,tt0115734 BQdE0_Hy10M,1991.0,8,8,2012,Boyz n the Hood,"Don't Know, Don't Show",tt0101507 vLXjWGI8sfw,1996.0,3,8,2012,Bottle Rocket,Future Man and Stacy,tt0115734 UkYl0Qxgkpw,1996.0,1,8,2012,Bottle Rocket,It Was for Exhaustion,tt0115734 vN_HrPvTVIk,1991.0,5,8,2012,Boyz n the Hood,Doughboy vs. Mama's Boy,tt0101507 C--iuM8NcQc,1991.0,6,8,2012,Boyz n the Hood,Ricky Gets Shot,tt0101507 W1fv8bPOwGk,1991.0,7,8,2012,Boyz n the Hood,Give Me the Gun,tt0101507 5p9rqqJmDaQ,1991.0,3,8,2012,Boyz n the Hood,Gentrification,tt0101507 aCEjVC3Dtn8,1991.0,4,8,2012,Boyz n the Hood,We Got a Problem Here?,tt0101507 SPrK-BvZA9E,1991.0,1,8,2012,Boyz n the Hood,Home Invasion,tt0101507 SXeiM5hAWvA,1991.0,2,8,2012,Boyz n the Hood,Dominoes,tt0101507 qhzCkJXZVJg,1998.0,8,8,2012,Can't Hardly Wait,Preston Kisses Amanda,tt0127723 eqdLKw173WI,1998.0,1,8,2012,Can't Hardly Wait,A Second Chance,tt0127723 _RUjbQGPytY,1998.0,3,8,2012,Can't Hardly Wait,It Was Fate,tt0127723 asySRpuqnTM,1998.0,4,8,2012,Can't Hardly Wait,Paradise City,tt0127723 K8nX2uH-h-M,1998.0,7,8,2012,Can't Hardly Wait,First Kiss,tt0127723 9SomT1Cop8A,1998.0,2,8,2012,Can't Hardly Wait,I Can't Believe She Came,tt0127723 T0cNy3l6Zek,1998.0,5,8,2012,Can't Hardly Wait,Take Me Back?,tt0127723 nxRZisFQdTE,1998.0,6,8,2012,Can't Hardly Wait,Amanda's Single,tt0127723 vG8-BVdJ9_U,2008.0,8,10,2012,Red Cliff,The Maiden Decoy,tt0425637 feHbFy5zPNQ,2008.0,10,10,2012,Red Cliff,A Fine Match,tt0425637 iC-oZZbET3I,2008.0,9,10,2012,Red Cliff,Spears and Strength,tt0425637 PZalnJDYFDk,2008.0,7,10,2012,Red Cliff,Time to Unite,tt0425637 NAZYmJ_bVkw,2008.0,6,10,2012,Red Cliff,Assembling the Team,tt0425637 VHLbq6oeSyw,2008.0,4,10,2012,Red Cliff,Three Warriors,tt0425637 gA9Z-Irh_Y4,2008.0,3,10,2012,Red Cliff,Army of the Sun,tt0425637 Wj-RYFPvje4,2008.0,1,10,2012,Red Cliff,The First Sacrifice of War,tt0425637 Q7spsnpuZQ4,2009.0,4,7,2012,"Red Cliff, Part 2",Attacking the Gates,tt1326972 rojN1eCJgiA,2009.0,6,7,2012,"Red Cliff, Part 2","It's Me, Piggy",tt1326972 iptTDWFBsGQ,2009.0,5,7,2012,"Red Cliff, Part 2",Phalanx,tt1326972 GETldyxkTEI,2009.0,3,7,2012,"Red Cliff, Part 2",Engulfed in Flames,tt1326972 r-briQqhGZY,2009.0,1,7,2012,"Red Cliff, Part 2","100,000 Arrows",tt1326972 zyTCACwFsgw,2009.0,7,7,2012,"Red Cliff, Part 2",Two Lives at Stake,tt1326972 laQz2eLj1-0,2009.0,2,7,2012,"Red Cliff, Part 2",Lighting the Fires,tt1326972 JeeZA4B1qyI,1977.0,8,8,2012,Close Encounters of the Third Kind,Contact,tt0075860 dUYCIwyMZTQ,1977.0,5,8,2012,Close Encounters of the Third Kind,Who Are You People?,tt0075860 LYtSsBCYByk,1977.0,7,8,2012,Close Encounters of the Third Kind,Roy Leaves,tt0075860 S4PYI6TzqYk,1977.0,6,8,2012,Close Encounters of the Third Kind,Communicating with the Mothership,tt0075860 cdkS0TgEG30,1977.0,4,8,2012,Close Encounters of the Third Kind,Roy's Mashed Potatoes,tt0075860 HYtuw0c3dJ4,1977.0,1,8,2012,Close Encounters of the Third Kind,Roy's First UFO Encounter,tt0075860 OuH_qx192js,1977.0,3,8,2012,Close Encounters of the Third Kind,The UFOs Surround the House,tt0075860 7ycl6niFTsM,2004.0,1,8,2012,Closer,I'm Not a Thief,tt0376541 -eocP3-Ifag,2004.0,2,8,2012,Closer,Anna's Photo Exhibition,tt0376541 8MW3KJUa8FQ,1977.0,2,8,2012,Close Encounters of the Third Kind,Chasing the UFOs,tt0075860 ceTBcVLeUtI,2004.0,6,8,2012,Closer,Tell Me Something True,tt0376541 fnF1_aVlIio,2004.0,3,8,2012,Closer,Why Isn't Love Enough?,tt0376541 ZbeXU9FIFw8,2004.0,4,8,2012,Closer,Why Are You Doing This?,tt0376541 iCfBiIzWG9g,2004.0,5,8,2012,Closer,Are You Flirting With Me?,tt0376541 qgmcXs02URY,2004.0,7,8,2012,Closer,I Lied to You,tt0376541 USGs4XhdI6I,2004.0,8,8,2012,Closer,Who Are You?,tt0376541 pOgf3IaWlgU,1993.0,9,10,2012,Dave,The Whole Truth,tt0106673 ZARAldXlSyA,1993.0,6,10,2012,Dave,Balancing the Budget,tt0106673 rWvIBJO8T_Y,1993.0,10,10,2012,Dave,I Would've Taken a Bullet for You,tt0106673 njHGa4f1LwY,1993.0,7,10,2012,Dave,I Don't Think You Were Pretending,tt0106673 7_wMbTKsnvQ,1993.0,2,10,2012,Dave,Hands on the Podium,tt0106673 0xjYQiEDbj4,1993.0,3,10,2012,Dave,"Thank You for Doing This, Ellen",tt0106673 xTdNSA_CWvc,1993.0,8,10,2012,Dave,You're Fired,tt0106673 M2V8jSFKVw0,1993.0,1,10,2012,Dave,Extending the Gig,tt0106673 CftR-xOfXsc,1993.0,4,10,2012,Dave,I Can't Say,tt0106673 iBSRk-DbhRw,1972.0,5,9,2012,Deliverance,"Anywhere, Everywhere, Nowhere",tt0068473 Ej9siBXzHzY,1972.0,7,9,2012,Deliverance,Play the Game,tt0068473 dFwt1vL1JOg,1972.0,6,9,2012,Deliverance,The Burial,tt0068473 WQnFe6vuWq4,1993.0,5,10,2012,Dave,Power in the Shower,tt0106673 y7Ynxoqo8gw,1972.0,1,9,2012,Deliverance,You Don't Beat This River,tt0068473 ntC0xJo2bSU,1972.0,4,9,2012,Deliverance,Arrow Through the Heart,tt0068473 4gh5B_Uezmk,1972.0,9,9,2012,Deliverance,Don't Come Back Here,tt0068473 WqNMjZpSbnU,1972.0,3,9,2012,Deliverance,Squeal Like a Pig,tt0068473 AYQA7kCTPN8,1972.0,8,9,2012,Deliverance,Shot for Shot,tt0068473 LVkOD1Uy_9k,1972.0,2,9,2012,Deliverance,We're Lost,tt0068473 srDyToPqozI,1995.0,7,8,2012,Desperado,Guitar Army,tt0112851 doVYFjIJcfU,1995.0,2,8,2012,Desperado,Throwing Knives,tt0112851 uxhJ_E3LuNA,1995.0,3,8,2012,Desperado,We Can Improvise,tt0112851 S7h60nfyg3M,1995.0,5,8,2012,Desperado,Rooftop Escape,tt0112851 KfprSGvOgpI,1995.0,8,8,2012,Desperado,"Two Brothers, One Woman",tt0112851 5nIwJTUMlE4,1995.0,6,8,2012,Desperado,Let's Play,tt0112851 AEEf_00tNos,1995.0,1,8,2012,Desperado,Is That Going On Right Now?,tt0112851 579nK0yB22I,1995.0,4,8,2012,Desperado,Serenade to an Ambush,tt0112851 rCn7orvs0Ws,1984.0,3,10,2012,The Neverending Story,Shell Mountain,tt0088323 5sEZmMeH96Q,1984.0,7,10,2012,The Neverending Story,"Come for Me, G'mork!",tt0088323 NgUGViWp3tg,1984.0,8,10,2012,The Neverending Story,The Power of The Nothing,tt0088323 IBUOACCdZi8,1984.0,4,10,2012,The Neverending Story,Falkor the Luck Dragon,tt0088323 vD8p7k2-_zA,2008.0,10,10,2012,Disaster Movie,I'm F***ing Matt Damon,tt1213644 QQyorpxZ8rs,1984.0,1,10,2012,The Neverending Story,A Hungry Rockbiter,tt0088323 xaILTs-_1z4,1984.0,9,10,2012,The Neverending Story,Call My Name,tt0088323 aj-OpTHixpU,1984.0,6,10,2012,The Neverending Story,Big Good Strong Hands,tt0088323 I_vzG5nYk1I,1984.0,5,10,2012,The Neverending Story,Through the Sphinxes' Gate,tt0088323 mPxTwqzr1sw,1984.0,10,10,2012,The Neverending Story,Flying Falkor,tt0088323 vE8mFDabqD0,1984.0,2,10,2012,The Neverending Story,Artax and the Swamp of Sadness,tt0088323 Bg5ll84eQTw,2008.0,9,10,2012,Disaster Movie,Chlamydia Jones,tt1213644 v59kIbs3gDY,2008.0,7,10,2012,Disaster Movie,Batman's Leaving,tt1213644 LcX1BSUZVpg,2008.0,5,10,2012,Disaster Movie,Juno vs. Sex and the City,tt1213644 I2jetO_ky7U,2008.0,6,10,2012,Disaster Movie,Demonic Chipmunks,tt1213644 zmqhj8EOLBI,2008.0,1,10,2012,Disaster Movie,"10,001 B.C.",tt1213644 MjsSG8pPTy0,2008.0,8,10,2012,Disaster Movie,Beowulf and Kung Fu Panda,tt1213644 AQC83SamleQ,2008.0,3,10,2012,Disaster Movie,High School Musical,tt1213644 jVLk2tqreto,2008.0,4,10,2012,Disaster Movie,Hannah Montana's Dead!,tt1213644 nvdBfpA8r4o,1975.0,1,10,2012,Dog Day Afternoon,Robbing the Bank,tt0072890 KLieNRvLmd0,2008.0,2,10,2012,Disaster Movie,Superbad Girls,tt1213644 4ca0T6jbhHo,1975.0,5,10,2012,Dog Day Afternoon,Wyoming,tt0072890 XEsZK8pvveU,1975.0,10,10,2012,Dog Day Afternoon,The Jet Arrives,tt0072890 _SR4O2gcXYA,1975.0,8,10,2012,Dog Day Afternoon,I'm Not a Homosexual,tt0072890 JkJmzgDiUtw,1975.0,9,10,2012,Dog Day Afternoon,"Goodbye, Leon",tt0072890 W-OzWbkk5lE,1975.0,6,10,2012,Dog Day Afternoon,They're Coming in the Back!,tt0072890 rFuhmG2wUXw,1975.0,7,10,2012,Dog Day Afternoon,Tossing Money,tt0072890 A1Tgrq5wLAw,1975.0,2,10,2012,Dog Day Afternoon,Telephone For You,tt0072890 NSXcYEFY_ao,1975.0,4,10,2012,Dog Day Afternoon,On the Air,tt0072890 lB6Gk5EtunI,1975.0,3,10,2012,Dog Day Afternoon,Attica!,tt0072890 tPJ9WsQhpMw,1997.0,5,8,2012,Donnie Brasco,Ambush and Overthrow,tt0119008 dbE2-VU-4SM,1997.0,3,8,2012,Donnie Brasco,I Know You Know!,tt0119008 TT8o1fvTB5Q,1997.0,7,8,2012,Donnie Brasco,If You're a Rat...,tt0119008 z54CDMBPKu8,1997.0,4,8,2012,Donnie Brasco,A Close Call,tt0119008 twkjN0xQsWw,1997.0,6,8,2012,Donnie Brasco,I Am Them,tt0119008 e2xiwiWd_sM,1997.0,8,8,2012,Donnie Brasco,I'm Glad It Was Him,tt0119008 NqYAnj6YcLk,1997.0,1,8,2012,Donnie Brasco,Lefty Gets a Lion,tt0119008 BPrF_0Bg6iY,1997.0,2,8,2012,Donnie Brasco,This is Life and Death,tt0119008 9CIAkk-YENU,1992.0,8,8,2012,Bram Stoker's Dracula,Dracula's Brides,tt0103874 _OFfuZY_Pvk,1992.0,6,8,2012,Bram Stoker's Dracula,Take Me Away From All This Death,tt0103874 X1rnBQJxfdk,1992.0,7,8,2012,Bram Stoker's Dracula,Rats,tt0103874 8rlohOLUi9k,1992.0,4,8,2012,Bram Stoker's Dracula,Lucy the Vampyr,tt0103874 V67ozonzKRQ,1992.0,5,8,2012,Bram Stoker's Dracula,Vampires Do Exist,tt0103874 jrLVuKks6lE,1992.0,3,8,2012,Bram Stoker's Dracula,Oceans of Time to Find You,tt0103874 SDAdzb9IeGU,1969.0,6,8,2012,Easy Rider,Cemetery Acid Trip,tt0064276 QLAYw0vM-bw,1969.0,8,8,2012,Easy Rider,The End of the Road,tt0064276 onbiOVpX0_w,1992.0,1,8,2012,Bram Stoker's Dracula,Renunciation of God,tt0103874 ojgy7kyNp5g,1992.0,2,8,2012,Bram Stoker's Dracula,I Never Drink Wine,tt0103874 iamsdf-VSQI,1969.0,5,8,2012,Easy Rider,House of Blue Lights,tt0064276 lQWvCntonxE,1969.0,7,8,2012,Easy Rider,We Blew It,tt0064276 4j7zD5ydpUo,1969.0,2,8,2012,Easy Rider,You Got a Helmet?,tt0064276 8Gu2ouJNmXc,1969.0,4,8,2012,Easy Rider,You Represent Freedom,tt0064276 r763LgcxCyM,1969.0,1,8,2012,Easy Rider,Cellmates,tt0064276 L7GJ018Avgw,1969.0,3,8,2012,Easy Rider,Unidentified Flying Object,tt0064276 F6y4B_BFrJ4,2000.0,8,8,2012,Finding Forrester,A Friend of Integrity,tt0181536 t5KEbS5soMA,2000.0,7,8,2012,Finding Forrester,My Name is William Forrester,tt0181536 yF0WIBF4lBw,2000.0,5,8,2012,Finding Forrester,Yankee Stadium,tt0181536 Gc8MuT6L4Nw,1970.0,4,8,2012,Five Easy Pieces,The Easiest Piece,tt0065724 xSnraJOeOyM,2000.0,6,8,2012,Finding Forrester,Are You Challenging Me?,tt0181536 FIaxR4Z1jVY,2000.0,3,8,2012,Finding Forrester,Free Throw Shootout,tt0181536 0nfoP3bmd1c,1970.0,6,8,2012,Five Easy Pieces,You Pompous Celibate!,tt0065724 1hMMUJ2Gn7Y,2000.0,2,8,2012,Finding Forrester,"You the Man Now, Dawg!",tt0181536 A_lu5jmaUbU,2000.0,4,8,2012,Finding Forrester,The Pulitzer Prize,tt0181536 zLBEFvMkQCo,2000.0,1,8,2012,Finding Forrester,The Key to Writing,tt0181536 QZq0zhzgres,1970.0,5,8,2012,Five Easy Pieces,No Inner Feeling,tt0065724 XNfCPe5SGbw,1970.0,1,8,2012,Five Easy Pieces,Betty & Twinky,tt0065724 5JLr0XUrEF0,1970.0,2,8,2012,Five Easy Pieces,Freeway Performance,tt0065724 vLAQiwEGGKs,1970.0,8,8,2012,Five Easy Pieces,I'm Fine,tt0065724 Y7y8tLgvpCY,1970.0,7,8,2012,Five Easy Pieces,Father and Son,tt0065724 hdIXrF34Bz0,1970.0,3,8,2012,Five Easy Pieces,Hold the Chicken,tt0065724 pAs8uvKNkcU,1982.0,7,8,2012,Gandhi,The Father of the Nation,tt0083987 0adv8zQsa9I,1982.0,8,8,2012,Gandhi,A Way Out of Hell,tt0083987 3GG_4UaCD8E,1982.0,5,8,2012,Gandhi,Not My Obedience,tt0083987 CZVsWzIb6Vk,1982.0,6,8,2012,Gandhi,It Is Time You Left,tt0083987 pi6SInyE0sw,1982.0,4,8,2012,Gandhi,The Truth Is the Truth,tt0083987 S8mfOyCySKg,1982.0,3,8,2012,Gandhi,Room For Us All,tt0083987 -Y3tZpAdWTc,1982.0,2,8,2012,Gandhi,Thrown Off the Train,tt0083987 d7c4TXqkMso,1982.0,1,8,2012,Gandhi,The Conscience of All Mankind,tt0083987 MEOPA4dzK2s,1997.0,6,8,2012,Gattaca,Vincent & Irene,tt0119177 7gYbpM0GWTs,1997.0,2,8,2012,Gattaca,Vincent Saves Anton,tt0119177 06lJhEc7zIo,1997.0,3,8,2012,Gattaca,A De-gene-erate,tt0119177 1Z-MzwPzpBk,1997.0,4,8,2012,Gattaca,You Are Jerome Morrow,tt0119177 1Q67bMYOm7E,1997.0,1,8,2012,Gattaca,I Am Not Jerome Morrow,tt0119177 MjOXPVmOBSg,1997.0,5,8,2012,Gattaca,Escaping the Club,tt0119177 ll5qiWa6YDk,1997.0,8,8,2012,Gattaca,The Final Swim,tt0119177 UQDSN9a_Zgs,1997.0,7,8,2012,Gattaca,It is Possible,tt0119177 LmiHjcCiYwQ,1989.0,7,8,2012,Ghostbusters 2,Snatching Oscar,tt0097428 t1gkRAWvxOs,1989.0,6,8,2012,Ghostbusters 2,Slime Square,tt0097428 lCs7qjJzoDg,1989.0,8,8,2012,Ghostbusters 2,Facing Vigo,tt0097428 _th4Xe6Dsm4,1989.0,2,8,2012,Ghostbusters 2,Short But Pointless,tt0097428 _Nd7VxsQIGo,1989.0,4,8,2012,Ghostbusters 2,Routine Spook Check,tt0097428 Tb6tz6ohprw,1989.0,5,8,2012,Ghostbusters 2,Tunnel Terror,tt0097428 oRh8qQyIngg,1989.0,3,8,2012,Ghostbusters 2,Back to Busting,tt0097428 J511q05SReQ,1989.0,1,8,2012,Ghostbusters 2,World of the Psychic,tt0097428 EXTklH_oTI0,2004.0,5,10,2012,Ginger Snaps Back: The Beginning,Family Reunion,tt0365265 ne4ZgnPn9Ck,2004.0,6,10,2012,Ginger Snaps Back: The Beginning,I'll Kill You,tt0365265 5rrDUgMfVuo,2004.0,9,10,2012,Ginger Snaps Back: The Beginning,Werewolf Massacre,tt0365265 xEtptEM2_mg,2004.0,8,10,2012,Ginger Snaps Back: The Beginning,"Come Closer, It's a Secret",tt0365265 qAteApi_4IE,2004.0,10,10,2012,Ginger Snaps Back: The Beginning,Together Forever,tt0365265 zQLLIxNky50,2004.0,7,10,2012,Ginger Snaps Back: The Beginning,A Sister's Dream,tt0365265 Uy5uLy_cpwc,2004.0,2,10,2012,Ginger Snaps Back: The Beginning,Trapped,tt0365265 WkfpLz3XMOI,2004.0,4,10,2012,Ginger Snaps Back: The Beginning,Waking Up to a Nightmare,tt0365265 oN-Ck_140ko,2004.0,1,10,2012,Ginger Snaps Back: The Beginning,A Bleak Prophecy,tt0365265 ESjSqiHhL0A,2004.0,3,10,2012,Ginger Snaps Back: The Beginning,The Bite,tt0365265 lJiMlgvygvc,1989.0,1,8,2012,Glory,The Battle of Antietam,tt0097441 gmo_PhSftuc,1989.0,2,8,2012,Glory,The Worst Soldier in this Whole Company,tt0097441 KD5DVxqmjRo,1989.0,3,8,2012,Glory,Trip Gets Flogged,tt0097441 8Nbbi16tvYA,1989.0,4,8,2012,Glory,Shaw vs. the Quartermaster,tt0097441 FFWLkCnT50s,1989.0,5,8,2012,Glory,Rawlins Confronts Trip,tt0097441 GrMoki4-weM,1989.0,6,8,2012,Glory,Prayers of the 54th,tt0097441 q7qwqVbZSqE,1989.0,8,8,2012,Glory,Breaching Fort Wagner,tt0097441 Fjr5MSmxKJ0,1989.0,7,8,2012,Glory,Shaw and Trip Fall Together,tt0097441 NEg6faTj_co,1999.0,8,8,2012,Go,It's a Miata,tt0139239 4SWqNoW_zI0,1999.0,7,8,2012,Go,"Even If She's Alive, She's Dead",tt0139239 OkdLWuCRe0c,1999.0,6,8,2012,Go,Confederated Products,tt0139239 YonDo9SCqII,1999.0,5,8,2012,Go,What Happens in Vegas,tt0139239 WzBS3IIb-vg,1999.0,4,8,2012,Go,30 Seconds to Get Outta Here,tt0139239 sPZUh1YRnDg,1999.0,3,8,2012,Go,Hit and Run,tt0139239 PLtPPtaCZQA,1999.0,1,8,2012,Go,Collateral,tt0139239 SxgfSDgHGYw,1999.0,2,8,2012,Go,Answer the Question,tt0139239 ufaAnz9XmsE,1998.0,10,10,2012,Gods and Monsters,I Want You to Kill Me,tt0120684 HgTsJ7hBQ-4,1998.0,9,10,2012,Gods and Monsters,Barnett on the Wire,tt0120684 D6XLyg5wBHU,1998.0,8,10,2012,Gods and Monsters,David at the Party,tt0120684 41h9uoNt6F4,1998.0,7,10,2012,Gods and Monsters,Memories of the War,tt0120684 wwe_yos_-ew,1998.0,6,10,2012,Gods and Monsters,Turn Towards the Uncomfortable,tt0120684 r8XE2-HpGuk,1998.0,5,10,2012,Gods and Monsters,Men Who Bugger Each Other,tt0120684 BuRr2uMsGTM,1998.0,4,10,2012,Gods and Monsters,Aberrant Childhood,tt0120684 AJ4edZsgJAk,1998.0,3,10,2012,Gods and Monsters,An Architectural Skull,tt0120684 0s_EWjNNgWg,1998.0,2,10,2012,Gods and Monsters,Vice and Indulgence,tt0120684 gKGOG-Pr81E,1993.0,7,8,2012,Groundhog Day,Phil's Errands,tt0107048 KuoC25LQrdM,1998.0,1,10,2012,Gods and Monsters,"Love Dead, Hate Living",tt0120684 gvGNWLszAQA,1993.0,6,8,2012,Groundhog Day,Phil: New and Improved,tt0107048 ZNn6J56J5HE,1993.0,8,8,2012,Groundhog Day,Happy in Love,tt0107048 uw63_YyNsF4,1993.0,5,8,2012,Groundhog Day,Phil's a God,tt0107048 zVeJ5F26uiM,1993.0,4,8,2012,Groundhog Day,French Poetry,tt0107048 iClIIg_YtAk,1993.0,3,8,2012,Groundhog Day,What Rita Wants,tt0107048 XqSYC_vwhDg,1993.0,1,8,2012,Groundhog Day,Ned Ryerson!,tt0107048 hQCG2AwzTxA,1993.0,2,8,2012,Groundhog Day,... Again,tt0107048 2wTJfcaezu0,1967.0,8,8,2012,Guess Who's Coming to Dinner,Two People Who Fell In Love,tt0061735 LTgahyvBMk4,1967.0,7,8,2012,Guess Who's Coming to Dinner,You Don't Own Me,tt0061735 cGTn7aRFttk,1967.0,6,8,2012,Guess Who's Coming to Dinner,Get Permanently Lost,tt0061735 -9P7Ge1KmTY,1967.0,5,8,2012,Guess Who's Coming to Dinner,,tt0061735 AhPCRPmHcxE,1967.0,4,8,2012,Guess Who's Coming to Dinner,Presidential Ambitions,tt0061735 ejUWeYTslb0,1967.0,3,8,2012,Guess Who's Coming to Dinner,Parental Approval,tt0061735 BoNAEfrI2oQ,1990.0,9,10,2012,Hamlet,The Poisoned Cup,tt0099726 ASnNWCK3kiQ,1967.0,2,8,2012,Guess Who's Coming to Dinner,What the Hell Is Going On Here?,tt0061735 8BI5jFyAdZ8,1967.0,1,8,2012,Guess Who's Coming to Dinner,Pleased to Meet You,tt0061735 DNWODAIBs7s,1990.0,10,10,2012,Hamlet,The Rest Is Silence,tt0099726 a38HZFbhB-M,1990.0,7,10,2012,Hamlet,A Bloody Deed,tt0099726 UbxMhvcxJJc,1990.0,8,10,2012,Hamlet,"Alas, Poor Yorick",tt0099726 HqS7VyuD_Mg,1990.0,6,10,2012,Hamlet,My Offense Is Rank,tt0099726 KOGjVUa_iIE,1990.0,5,10,2012,Hamlet,Frightened with False Fire,tt0099726 I5iG5NitBgI,1990.0,4,10,2012,Hamlet,What a Piece of Work Is Man?,tt0099726 Vf2TpWsPvgI,1990.0,3,10,2012,Hamlet,To Be or Not To Be,tt0099726 LKR2bN9V2Bc,2006.0,10,10,2012,Happily N'Ever After,Ella Fights Frieda,tt0308353 8JyxfJo-iiA,1990.0,2,10,2012,Hamlet,To Thine Own Self Be True,tt0099726 KJmWpR-4AIg,1990.0,1,10,2012,Hamlet,"Frailty, Thy Name Is Woman",tt0099726 QKP-AZKNl9k,2006.0,7,10,2012,Happily N'Ever After,The Seven Dwarves,tt0308353 fO8nqGKrtDI,2006.0,8,10,2012,Happily N'Ever After,We Got Witches!,tt0308353 XYZ_oLTFzSA,2006.0,5,10,2012,Happily N'Ever After,At Last a Damsel in Distress!,tt0308353 0I84IUKomh4,2006.0,9,10,2012,Happily N'Ever After,Annoying Little Optimist,tt0308353 ZXgyS34Zpto,2006.0,2,10,2012,Happily N'Ever After,The Wise Wizard,tt0308353 NnWIRGdMR44,2006.0,4,10,2012,Happily N'Ever After,The Staff of Power,tt0308353 CO6yUpPvY7s,2006.0,6,10,2012,Happily N'Ever After,Nocturnal Villains,tt0308353 8CCo0EI6zIM,2006.0,3,10,2012,Happily N'Ever After,Fairy Godmother,tt0308353 YY4kKO6wfyg,2006.0,1,10,2012,Happily N'Ever After,The Dragon Lady,tt0308353 2z4o-jBlqq0,1995.0,5,5,2012,Heat,Look at Me,tt0113277 s3rv0BdxWfM,1995.0,3,5,2012,Heat,The Sun Rises and Sets With Her,tt0113277 GpNzlh5ALRA,1995.0,1,5,2012,Heat,Armored Van Heist,tt0113277 JqDoUCcJHPU,1995.0,2,5,2012,Heat,Neil and Eady,tt0113277 DdDl6mbcGtc,1995.0,4,5,2012,Heat,Drive-In Shoot Out,tt0113277 mGf4oL6RLGs,2005.0,7,8,2012,Hitch,Morning Person,tt0386588 0JmETteiVzo,2005.0,4,8,2012,Hitch,Professional Help,tt0386588 j2e41FeccuA,2005.0,8,8,2012,Hitch,I'm Just As Scared As You Are,tt0386588 QnyzZbrrh9M,2005.0,2,8,2012,Hitch,Allegra Reaches Out,tt0386588 uU59kXuJHhI,2005.0,3,8,2012,Hitch,Chip,tt0386588 eKKd33QEB3I,2005.0,5,8,2012,Hitch,Jet Ski Mishap,tt0386588 50YQeugOMOw,2005.0,6,8,2012,Hitch,Dance Lessons,tt0386588 ur0U4xN0d_A,2005.0,1,8,2012,Hitch,Shock and Awe,tt0386588 qZubhGcnsHk,1991.0,7,8,2012,Hook,I Wish I Had a Dad Like You,tt0102057 H6DqWP733F4,1991.0,6,8,2012,Hook,Battling the Pirates,tt0102057 -wX6_qCCnPc,1991.0,8,8,2012,Hook,The End of,tt0102057 6ohgHjQvK5g,1991.0,5,8,2012,Hook,Peter Confronts,tt0102057 C6hmQwfEmzc,1991.0,4,8,2012,Hook,Peter Becomes Pan,tt0102057 JsJxIoFu2wo,1991.0,2,8,2012,Hook,Insults at Dinner,tt0102057 6s8ZEFUSYAI,1991.0,1,8,2012,Hook,"There You Are, Peter!",tt0102057 YCSbEzI7Nz0,1991.0,3,8,2012,Hook,Food Fight!,tt0102057 wvPmP4xTruI,1985.0,1,8,2012,St. Elmo's Fire,What's the Meaning of Life?,tt0090060 eQ9HJXZI_qU,1967.0,6,8,2012,In Cold Blood,The Prosecutor's Statement,tt0061809 oLIwz9gn00g,1985.0,2,8,2012,St. Elmo's Fire,Very Pink,tt0090060 qU0H2mmgsjM,1967.0,1,8,2012,In Cold Blood,A Sharp Con,tt0061809 HD8tSGHYaGA,1967.0,2,8,2012,In Cold Blood,Buried Treasure,tt0061809 cPYdLs7RRRc,1967.0,4,8,2012,In Cold Blood,Silver Dollar,tt0061809 gHAJY34g-LY,1967.0,5,8,2012,In Cold Blood,The Last Living Thing You're Ever Gonna See,tt0061809 JQXj8pF6Rx4,1967.0,3,8,2012,In Cold Blood,Plotting the Score,tt0061809 k4YuBxpQwqA,1967.0,7,8,2012,In Cold Blood,Hopeless Dreams,tt0061809 yxVC4lfxHGs,1967.0,8,8,2012,In Cold Blood,The Valley of the Shadow of Death,tt0061809 0EKDRD2sHI4,1993.0,8,8,2012,In the Line of Fire,Fatal Fall,tt0107206 p8wvEC_cBU4,1993.0,7,8,2012,In the Line of Fire,Aim High,tt0107206 JAiuiipD6Wo,1993.0,5,8,2012,In the Line of Fire,If Only I Reacted,tt0107206 tff_EEQt79s,1993.0,6,8,2012,In the Line of Fire,Blocking the Bullet,tt0107206 FQfb9ayuY3A,1993.0,4,8,2012,In the Line of Fire,The Irony's So Thick,tt0107206 THLll7d7Dfo,1993.0,3,8,2012,In the Line of Fire,"Are You Going to Shoot Me, Frank?",tt0107206 jbCyTUSQ6fY,1993.0,2,8,2012,In the Line of Fire,Rendezvous With My Ass,tt0107206 abhF5CFFW4s,1993.0,1,8,2012,In the Line of Fire,"You're Under Arrest, Too",tt0107206 vEt5MqYD_3s,1934.0,5,8,2012,It Happened One Night,A Perfectly Nice Married Couple,tt0025316 qFWptPtHG78,1934.0,6,8,2012,It Happened One Night,This Isn't Piggyback!,tt0025316 Lhc_xw9cQ6I,1934.0,8,8,2012,It Happened One Night,Go Back to Your Bed,tt0025316 aHJKwOGb7MI,1934.0,4,8,2012,It Happened One Night,The Pleasure Was All Mine,tt0025316 9zUaNKBQ04c,1934.0,3,8,2012,It Happened One Night,The Walls of Jericho,tt0025316 1kAtlL7cZOg,1934.0,2,8,2012,It Happened One Night,Dropping In,tt0025316 Ar-hnj5Zsk4,1934.0,7,8,2012,It Happened One Night,Lessons in Hitchhiking,tt0025316 KF-wcaGD2UE,1934.0,1,8,2012,It Happened One Night,Make Way for the King,tt0025316 Of73UiXUvjA,1996.0,8,8,2012,Jerry Maguire,Not Gonna Cry,tt0116695 AyrP-pwDayE,1996.0,7,8,2012,Jerry Maguire,You Had Me at Hello,tt0116695 QhVuXKypPs0,1996.0,6,8,2012,Jerry Maguire,In Rod We Trust,tt0116695 l1B1_jQnlFk,1996.0,4,8,2012,Jerry Maguire,Help Me Help You,tt0116695 niZKrt4XAZE,1996.0,3,8,2012,Jerry Maguire,Jerry Dumps Avery,tt0116695 ASVUj89hyg0,1996.0,5,8,2012,Jerry Maguire,Play With Heart,tt0116695 6ZZI6-zh0GM,1996.0,2,8,2012,Jerry Maguire,Who's Coming With Me?,tt0116695 BckPa2_A8gI,1991.0,7,7,2012,JFK,The Truth,tt0102138 3ema7lfEAMk,1991.0,3,7,2012,JFK,A Mystery Wrapped in a Riddle Inside an Enigma,tt0102138 FhBm4kprCkk,1991.0,1,7,2012,JFK,Through the Looking Glass,tt0102138 GSw9sjqYK_I,1991.0,4,7,2012,JFK,A Meeting with X,tt0102138 xuUtu2xRGgY,1991.0,5,7,2012,JFK,Coup d'État,tt0102138 2nmGS8rVuIM,1991.0,6,7,2012,JFK,The Zapruder Film,tt0102138 I_X0TKL3bqk,2001.0,8,8,2012,Joe Dirt,The Gator Show,tt0245686 x4utH5uWK6c,2001.0,5,8,2012,Joe Dirt,You're My Sister!,tt0245686 2gaEkPaykJo,1991.0,2,7,2012,JFK,Crossfire in Daley Plaza,tt0102138 jXGV-MT-TmU,2001.0,1,8,2012,Joe Dirt,My Lucky Meteor,tt0245686 I5TzyLhwKKY,2001.0,2,8,2012,Joe Dirt,Buddies With Brandy,tt0245686 suvJai5IC6c,2001.0,3,8,2012,Joe Dirt,Snakes and Sparklers,tt0245686 X-S296ENSIo,2001.0,4,8,2012,Joe Dirt,Crapper Tank,tt0245686 ZAMQGIx3JKk,2001.0,6,8,2012,Joe Dirt,It Puts the in the Hole,tt0245686 M0TjT53qpFY,1995.0,8,8,2012,Jumanji,,tt0113497 SiUT8u1LckQ,1995.0,7,8,2012,Jumanji,Earthquake,tt0113497 yjF_gSu6xCQ,1995.0,6,8,2012,Jumanji,Quicksand and Spiders,tt0113497 ibeJlYiMz9w,1995.0,5,8,2012,Jumanji,Crocodile Attack,tt0113497 RWwhA2v9UFQ,1995.0,4,8,2012,Jumanji,Stampede!,tt0113497 dTllG2KdPMQ,1995.0,2,8,2012,Jumanji,What Year is It?,tt0113497 969gXtFAcZU,1995.0,3,8,2012,Jumanji,Sarah's Turn,tt0113497 javEwwHaNa4,1995.0,1,8,2012,Jumanji,Wasps and Monkeys,tt0113497 qbYyYYHysqM,2005.0,7,10,2013,Kiss Kiss Bang Bang,The Dream Girl Scene,tt0373469 R2MxWZTrgxw,2005.0,10,10,2013,Kiss Kiss Bang Bang,Hopeless Plight Scene,tt0373469 6svL10xXulQ,2005.0,8,10,2013,Kiss Kiss Bang Bang,Who Taught You Math? Scene,tt0373469 15i99XcYpc8,2005.0,9,10,2013,Kiss Kiss Bang Bang,Stop Helping! Scene,tt0373469 7ux7Dd18Rw4,2005.0,1,10,2013,Kiss Kiss Bang Bang,Audition Scene,tt0373469 uGg9-5_0On4,2005.0,4,10,2013,Kiss Kiss Bang Bang,No Biggie Scene,tt0373469 OFZS03hWtlE,1979.0,6,8,2012,Kramer vs. Kramer,Were You A Failure?,tt0079417 sCiErOySQtA,1979.0,8,8,2012,Kramer vs. Kramer,Change of Heart,tt0079417 re0xt6hDdqE,1979.0,7,8,2012,Kramer vs. Kramer,Ted's Plea,tt0079417 M_ejjr2-4WE,1979.0,4,8,2012,Kramer vs. Kramer,I Want My Son,tt0079417 Cw1YwZlfijg,1979.0,2,8,2012,Kramer vs. Kramer,Making French Toast,tt0079417 8kIsYLV8bE8,1979.0,3,8,2012,Kramer vs. Kramer,Billy Acts Out,tt0079417 80UzhoD-RBs,1979.0,1,8,2012,Kramer vs. Kramer,I'm Leaving You,tt0079417 cjFIi3PC2cI,1997.0,9,10,2012,L.A. Confidential,Victory Motel Shootout,tt0119488 -opqUSOUDQY,1997.0,3,10,2012,L.A. Confidential,The Interrogation,tt0119488 1ubs6iUMdyo,1997.0,6,10,2012,L.A. Confidential,Rollo Tomasi,tt0119488 MeypYa863r4,1997.0,1,10,2012,L.A. Confidential,Bloody Christmas,tt0119488 _VIWqtzAHQ0,1997.0,2,10,2012,L.A. Confidential,Better Than Veronica Lake,tt0119488 G3N_ELEBvH0,1997.0,7,10,2012,L.A. Confidential,He Wants You To Kill Me,tt0119488 BVwLpNGBqqY,1997.0,4,10,2012,L.A. Confidential,Justice,tt0119488 dO_D5ilNoZA,1997.0,10,10,2012,L.A. Confidential,Hold Up Your Badge,tt0119488 _MLgnDZguM0,1997.0,5,10,2012,L.A. Confidential,Shotgun Ed,tt0119488 47ptIuV4NLo,1997.0,8,10,2012,L.A. Confidential,"Good Cop, Bad Cop",tt0119488 5_npi1WISDk,1985.0,4,10,2012,Ladyhawke,Navarre's Quest,tt0089457 H_SgDfv61O8,1985.0,3,10,2012,Ladyhawke,Maybe I'm Dreaming,tt0089457 uIl9IFcIXlg,1985.0,9,10,2012,Ladyhawke,Church Duel,tt0089457 rS3VUoThFBw,1985.0,7,10,2012,Ladyhawke,Thin Ice,tt0089457 kglWIEtKSXY,1985.0,6,10,2012,Ladyhawke,Into the Wild,tt0089457 CztbQ4Fgv_w,1985.0,5,10,2012,Ladyhawke,Hold On,tt0089457 cudAGo1nSKI,1985.0,10,10,2012,Ladyhawke,Breaking the Curse,tt0089457 LmZV7WtCRi4,1985.0,2,10,2012,Ladyhawke,Captain Navarre,tt0089457 1ODVyWqW4ps,1985.0,8,10,2012,Ladyhawke,The Transformation,tt0089457 a72FDTElH9g,1985.0,1,10,2012,Ladyhawke,Encounter at the Inn,tt0089457 _EZCG2Ex8Q0,1962.0,4,8,2012,Lawrence of Arabia,Nothing is Written,tt0056172 aARaYjgm_rA,1962.0,8,8,2012,Lawrence of Arabia,No Prisoners,tt0056172 IBeMUoMTeZo,1962.0,7,8,2012,Lawrence of Arabia,A Prophet's Shadow,tt0056172 vR3FPplcJGg,1962.0,6,8,2012,Lawrence of Arabia,Come On Men!,tt0056172 lChJz2DSpsE,1962.0,5,8,2012,Lawrence of Arabia,Attack on Aqaba,tt0056172 -tuNR-uD_mE,1962.0,3,8,2012,Lawrence of Arabia,The Nefud Desert,tt0056172 ud1zpHW3ito,1962.0,2,8,2012,Lawrence of Arabia,Ali's Well,tt0056172 OdlFHPM3A2U,1994.0,4,8,2012,Legends of the Fall,Gravesite Visit,tt0110322 lpwrDEfCESg,1994.0,1,8,2012,Legends of the Fall,Meeting the Bride,tt0110322 uE0DBpw09SU,1962.0,1,8,2012,Lawrence of Arabia,A Funny Sense of Fun,tt0056172 0_pN-X7Gew8,1994.0,8,8,2012,Legends of the Fall,Alfred is Reconciled,tt0110322 DB5H2QGFFwU,1994.0,5,8,2012,Legends of the Fall,Four Beers,tt0110322 Dpz8L-thRmc,1994.0,7,8,2012,Legends of the Fall,Isabel Dies,tt0110322 qCq0IXXi_2U,1994.0,6,8,2012,Legends of the Fall,Tristan Returns,tt0110322 aWinsyIVC3E,1994.0,2,8,2012,Legends of the Fall,Susannah at the Ranch,tt0110322 Ha4SHiHf8Vw,1994.0,3,8,2012,Legends of the Fall,Samuel Dies,tt0110322 ysIsqzXZyN0,1989.0,6,10,2012,Lethal Weapon 2,Sometimes I Just Go Nuts,tt0097733 rDIF3XhXTT8,1989.0,10,10,2012,Lethal Weapon 2,Diplomatic Immunity,tt0097733 7WqzJvhR9Fo,1989.0,9,10,2012,Lethal Weapon 2,Bringing Down the House,tt0097733 FM26ZXjPL_4,1989.0,8,10,2012,Lethal Weapon 2,Nailed Em' Both,tt0097733 vKePn-57zAA,1989.0,5,10,2012,Lethal Weapon 2,Toilet Bomb,tt0097733 j19-hpjJ4ok,1989.0,7,10,2012,Lethal Weapon 2,Rika van Haagen Dazs,tt0097733 HnZw65gsesw,1989.0,3,10,2012,Lethal Weapon 2,Tow Truck Chase,tt0097733 AMtKsDnOw_0,1989.0,1,10,2012,Lethal Weapon 2,You're Not Gonna Make It,tt0097733 Zz1Lypwfwug,1989.0,2,10,2012,Lethal Weapon 2,Leo Getz,tt0097733 i9upvWNN3P8,1989.0,4,10,2012,Lethal Weapon 2,At the Drive-Thru,tt0097733 eRBI1VSO7hc,1994.0,2,8,2012,The Professional,One Minute Past,tt0110413 -gD05qjgKN4,1994.0,3,8,2012,The Professional,Sniper Lessons,tt0110413 Ce6jdrqyW0U,1994.0,7,8,2012,The Professional,I Love You,tt0110413 JqDOosChydc,1994.0,4,8,2012,The Professional,"Do You Like Life, Sweetheart?",tt0110413 mX-qK4qG2EY,1994.0,5,8,2012,The Professional,Everyone!,tt0110413 4R-cTX0i2hQ,1994.0,6,8,2012,The Professional,Hostage Exchange,tt0110413 fa1DuNjhWOk,1994.0,1,8,2012,The Professional,Bodyguard Takedown,tt0110413 9bvxJlLfzGw,1994.0,8,8,2012,The Professional,From Mathilda,tt0110413 1W4y_8Eu38Y,2003.0,5,10,2012,Matchstick Men,Shame on You!,tt0325805 TOrEE5NeZ9w,2003.0,8,10,2012,Matchstick Men,Lottery Ticket Scam,tt0325805 04xSMg03sZ0,2003.0,9,10,2012,Matchstick Men,The Queen Before Ben Franklin,tt0325805 pMTlNUKE7yg,2003.0,10,10,2012,Matchstick Men,Remain Calm,tt0325805 ftst7XzK21Q,2003.0,6,10,2012,Matchstick Men,Not as Innocent as You Think,tt0325805 g6sSw9vrO0s,2003.0,7,10,2012,Matchstick Men,I Was Born Ready,tt0325805 Ib8uNldNd-0,2003.0,4,10,2012,Matchstick Men,That Was a Good Day,tt0325805 My4ojpQzoWY,2003.0,2,10,2012,Matchstick Men,Open Window,tt0325805 GwQdBsTpmOM,2003.0,1,10,2012,Matchstick Men,Guaranteed Prizes,tt0325805 6f2-XlVHGcc,2003.0,3,10,2012,Matchstick Men,Panic Attack,tt0325805 1XBwwSzLqWA,2002.0,9,9,2012,May,See Me!,tt0303361 VNJehwzHpe4,2002.0,2,9,2012,May,Do You Like Pussycats?,tt0303361 pMSrolUBGRc,2002.0,7,9,2012,May,Touch My Face,tt0303361 PEnOSwKyrb4,2002.0,8,9,2012,May,Doll Maker,tt0303361 QikcO8tlmOI,2002.0,5,9,2012,May,Cracking Under Pressure,tt0303361 FnRp0n0RhDM,2002.0,6,9,2012,May,Kills,tt0303361 EETi6NJFRjA,2002.0,3,9,2012,May,Bloody Kiss,tt0303361 X9mTMZF-CTs,2002.0,4,9,2012,May,I Love Weird,tt0303361 SmmKg3VG2jI,2002.0,1,9,2012,May,I Love Gross,tt0303361 SMQ6aga9mI0,1951.0,2,10,2012,A Perfect Murder,Strangers on a Train,tt0120787 1EnGKC9Lk_Y,2007.0,2,8,2012,Superbad,Seth Buys Vodka,tt0829482 Wg89Bj_9Wg4,2002.0,7,8,2012,Mr. Deeds,Tennis with Deeds,tt0280590 oEtIf_2mzJc,2002.0,8,8,2012,Mr. Deeds,That Is My Birthday!,tt0280590 ZKIiHz62TR0,2002.0,6,8,2012,Mr. Deeds,I Like Feet,tt0280590 qUKBDcMN7tg,2002.0,5,8,2012,Mr. Deeds,I Think I Just Shat Myself,tt0280590 9KwuLlQrkVI,2002.0,4,8,2012,Mr. Deeds,A Lady in Distress,tt0280590 DHVyayHXOdY,2002.0,3,8,2012,Mr. Deeds,Whacking the Foot,tt0280590 Tlfd0Y0SjgA,2002.0,2,8,2012,Mr. Deeds,"Very, Very Sneaky",tt0280590 _T7T-0iR2Sw,2002.0,1,8,2012,Mr. Deeds,Ground Control to Major Tom,tt0280590 zPv0S1-ETdI,1939.0,7,8,2012,Mr. Smith Goes to Washington,I Will Not Yield!,tt0031679 i7hk-TupE5g,1939.0,6,8,2012,Mr. Smith Goes to Washington,What Are You Going to Believe In?,tt0031679 dbH4Amzn-Rk,1939.0,5,8,2012,Mr. Smith Goes to Washington,No Place in a Man's World,tt0031679 17MyPrAEQ28,1939.0,4,8,2012,Mr. Smith Goes to Washington,Liberty is Too Precious a Thing,tt0031679 0v7Ea7kg2gA,1939.0,3,8,2012,Mr. Smith Goes to Washington,Don't You Think I Better Hold This For,tt0031679 NRjWEE0hmjQ,1939.0,2,8,2012,Mr. Smith Goes to Washington,"The Truth, For a Change",tt0031679 BL-Jg7CyqLQ,1939.0,8,8,2012,Mr. Smith Goes to Washington,Lost Causes,tt0031679 qYf35nBq8Oo,1939.0,1,8,2012,Mr. Smith Goes to Washington,A Fine Young Patriot,tt0031679 zTueXqC-xfI,2008.0,7,8,2012,Nick and Norah's Infinite Playlist,Electric Lady Studios,tt0981227 AyodiwWneu8,2008.0,6,8,2012,Nick and Norah's Infinite Playlist,A Message for Norah,tt0981227 o2wVetrydrY,2008.0,8,8,2012,Nick and Norah's Infinite Playlist,Where's Fluffy,tt0981227 GofDgoM13BA,2008.0,5,8,2012,Nick and Norah's Infinite Playlist,Dance by the River,tt0981227 LoZtHl2YXAo,2008.0,4,8,2012,Nick and Norah's Infinite Playlist,Nice Meeting You,tt0981227 PRKag5krnfU,2008.0,3,8,2012,Nick and Norah's Infinite Playlist,Caroline's Not Fine,tt0981227 sR4iKRfUwOs,2008.0,1,8,2012,Nick and Norah's Infinite Playlist,A Five Minute Boyfriend,tt0981227 af_J2e4r328,2001.0,8,8,2012,Not Another Teen Movie,The Wise Janitor,tt0277371 8F8MBp-GBKA,2001.0,7,8,2012,Not Another Teen Movie,Still a Loser,tt0277371 nuPd4L7_0uQ,2001.0,5,8,2012,Not Another Teen Movie,Marty,tt0277371 z6GmZrBKW98,2001.0,2,8,2012,Not Another Teen Movie,Ricky's Poem,tt0277371 G9u3Lbli8Uc,2001.0,6,8,2012,Not Another Teen Movie,Detention,tt0277371 Buutvk0mHXY,2001.0,3,8,2012,Not Another Teen Movie,Potty Humor,tt0277371 CXYlv-z_xHQ,2001.0,1,8,2012,Not Another Teen Movie,Anyone Can Be Prom Queen,tt0277371 Vc7HzKwZ55Q,2001.0,4,8,2012,Not Another Teen Movie,Cheerleading Tryouts,tt0277371 IYBAPVjJykY,1954.0,8,8,2012,On the Waterfront,Let's Go to Work!,tt0047296 uBiewQrpBBA,1954.0,6,8,2012,On the Waterfront,I Coulda Been a Contender,tt0047296 geh_Mu622SY,1954.0,5,8,2012,On the Waterfront,Terry's Conscience,tt0047296 -hl0hUWyqoU,1954.0,7,8,2012,On the Waterfront,They Got Charley,tt0047296 2u1RrWj4RDk,1954.0,4,8,2012,On the Waterfront,This Is My Church,tt0047296 VfXFbuW47kA,1954.0,1,8,2012,On the Waterfront,Present from Uncle Johnny,tt0047296 5PPQutDwpmw,1954.0,3,8,2012,On the Waterfront,Terry Asks Edie Out,tt0047296 UZqpweWv5_0,1954.0,2,8,2012,On the Waterfront,Am I Gonna See You Again?,tt0047296 LBP8QDlm6OA,1993.0,3,8,2012,Philadelphia,The Essence of Discrimination,tt0107818 fHYuhwnlTZs,1993.0,8,8,2012,Philadelphia,"Goodnight, My Angel",tt0107818 mIqXkwxzUB4,1993.0,5,8,2012,Philadelphia,A Case About Homosexuality,tt0107818 eYJYW_9mFVg,1993.0,7,8,2012,Philadelphia,Lesions,tt0107818 Tr90d0ZcrCU,1993.0,6,8,2012,Philadelphia,An Excellent Lawyer,tt0107818 mjbxL_v2DPk,1993.0,4,8,2012,Philadelphia,A Pharmacy Pick-Up,tt0107818 YkpHalgTqpw,1993.0,2,8,2012,Philadelphia,More Comfortable,tt0107818 wHSH-NpCQOw,1993.0,1,8,2012,Philadelphia,I Have A Case,tt0107818 08NGebwIr8Q,2005.0,9,10,2012,Pusher 3,Radovan,tt0425379 qE9eKngduGM,2005.0,6,10,2012,Pusher 3,A Toast for Milena,tt0425379 D8V0rLDKZL8,2005.0,10,10,2012,Pusher 3,Preparing the Corpses,tt0425379 SJeCtS4D2HQ,2005.0,7,10,2012,Pusher 3,The Girl,tt0425379 icGkuwUzbGI,2005.0,8,10,2012,Pusher 3,Killing the Pole,tt0425379 9Hn60TQSyTQ,2005.0,5,10,2012,Pusher 3,Relapse,tt0425379 v8_v3EaYE6A,2005.0,4,10,2012,Pusher 3,Kurt,tt0425379 wK0m72Rf7tk,2005.0,3,10,2012,Pusher 3,Family Business,tt0425379 l0n2Od6zG58,2005.0,1,10,2012,Pusher 3,Language Barrier,tt0425379 ewGC9K-7NXg,2005.0,2,10,2012,Pusher 3,Bad Sarma,tt0425379 bnitvEUDaBE,1987.0,2,8,2012,Roxanne,Naked in the Bush,tt0093886 urdf4g-LXk4,1987.0,4,8,2012,Roxanne,Insults to a Nose,tt0093886 pw5Y_7wtJmk,1987.0,8,8,2012,Roxanne,Suckers on His Palms,tt0093886 VR78Ss7yoio,1987.0,6,8,2012,Roxanne,The Nose Cards,tt0093886 o9zfxe4JVlQ,1987.0,1,8,2012,Roxanne,I Really Admire Your Shoes,tt0093886 _PZ_LyJfYe8,1987.0,7,8,2012,Roxanne,Hunting for Words,tt0093886 h3VZ6IRrVlI,1987.0,5,8,2012,Roxanne,Hypnotic Nose,tt0093886 tpyZHmGRPuE,1993.0,7,8,2012,Rudy,I've Been Ready for This My Whole Life,tt0108002 bRzQBGwfMkM,1987.0,3,8,2012,Roxanne,Wine With Your Nose?,tt0093886 FXcu4V-8-j0,1993.0,6,8,2012,Rudy,Last Game of the Season,tt0108002 TY0LUIIwo8k,1993.0,5,8,2012,Rudy,"This Is for , Coach",tt0108002 ZI63g64kDgY,1993.0,8,8,2012,Rudy,'s Victory,tt0108002 Qoh3YkxuwVo,1993.0,4,8,2012,Rudy,Fortune's Truth,tt0108002 wur5ljnTCzQ,1993.0,1,8,2012,Rudy,Football Tryouts,tt0108002 G8c6j-LS-ZI,1993.0,3,8,2012,Rudy,Sacks O'Hara,tt0108002 pBq_lpX9LTw,1993.0,2,8,2012,Rudy,First Practice,tt0108002 VBeTTZ4QBoA,2003.0,9,10,2012,Shattered Glass,You're Fired,tt0323944 Amd6hjScF58,2003.0,2,10,2012,Shattered Glass,The Great Comma Debate,tt0323944 OeE1spoom58,2003.0,10,10,2012,Shattered Glass,We Blew It,tt0323944 oJHp0GrlX6M,2003.0,4,10,2012,Shattered Glass,You Don't Write Funny,tt0323944 4qW3YcXJeyg,2003.0,7,10,2012,Shattered Glass,I Didn't Do Anything Wrong,tt0323944 EHmjP1BExPs,2003.0,8,10,2012,Shattered Glass,I'm Not a Criminal,tt0323944 i8oGdak7vN4,2003.0,6,10,2012,Shattered Glass,Conference Call,tt0323944 ajcVgbrSIWk,2003.0,5,10,2012,Shattered Glass,The Number for Juxt Micronics,tt0323944 9frZAZs1Cqo,2003.0,3,10,2012,Shattered Glass,Hack Heaven,tt0323944 z3GNhBE2yhM,2003.0,1,10,2012,Shattered Glass,The Art of Capturing Behavior,tt0323944 iNgDtwHreZM,2004.0,6,8,2012,House of Flying Daggers,Bamboo Forest Battle,tt0385004 AiJP0M-5Mjc,2004.0,8,8,2012,House of Flying Daggers,Blood and Snow,tt0385004 2ObQm0XBmgI,2004.0,7,8,2012,House of Flying Daggers,The Flying Daggers,tt0385004 7X3WSQtviJU,2004.0,5,8,2012,House of Flying Daggers,Field Attack,tt0385004 WgLyqfSdbDg,2004.0,4,8,2012,House of Flying Daggers,Watching Her Bathe,tt0385004 IP-NM6Qdrl4,2004.0,2,8,2012,House of Flying Daggers,Fighting Blind,tt0385004 YetxvEnpKh8,2004.0,1,8,2012,House of Flying Daggers,The Drum Dance,tt0385004 kROlgEPoSVA,2004.0,3,8,2012,House of Flying Daggers,Forest Fight,tt0385004 0xPu59_MHQ0,1986.0,8,8,2012,Short Circuit,Number 5 Is Still Alive,tt0091949 y7wj3bB6OU4,1986.0,7,8,2012,Short Circuit,Spontaneous Emotional Response,tt0091949 hW0V7kZHRSA,1986.0,5,8,2012,Short Circuit,Disassembling Frank's Car,tt0091949 BJHzyg9AOsY,1986.0,6,8,2012,Short Circuit,Your Mama Was a Snowblower,tt0091949 9h_-TIM3kdE,1986.0,4,8,2012,Short Circuit,It's Gone Berserk,tt0091949 mJFvqNOorTs,1986.0,3,8,2012,Short Circuit,It Just Runs Programs,tt0091949 Dgd6gV5Z53U,1971.0,6,8,2012,The Last Picture Show,Jacy the Virgin,tt0067328 vWokC4nx7PA,1986.0,1,8,2012,Short Circuit,NOVA Demonstration,tt0091949 Q9AIDn-w3EM,1986.0,2,8,2012,Short Circuit,Struck By Lightning,tt0091949 Dv6rmmAk_Es,1985.0,4,8,2012,Silverado,You're Wearing My Hat,tt0090022 6JynBr-1sSA,1985.0,6,8,2012,Silverado,He Can't Hurt Me If He's Dead,tt0090022 eug4wbPSykc,1985.0,8,8,2012,Silverado,Final Showdown,tt0090022 iBaUUJOO6V8,1985.0,5,8,2012,Silverado,An Understanding Boss,tt0090022 QxXbtzn-6PE,1985.0,7,8,2012,Silverado,Ready for Revenge,tt0090022 wiA6bjzz-CM,1985.0,3,8,2012,Silverado,Jake's Going to Hang,tt0090022 SGbvYkCLZ9U,1985.0,2,8,2012,Silverado,Whiskey and a Bed,tt0090022 5mAO3eeRP84,1985.0,1,8,2012,Silverado,Underwear Showdown,tt0090022 onxbHFyNqGw,1992.0,7,8,2012,Single White Female,I'm Like You Now,tt0105414 PJo7WdHSxoI,1992.0,8,8,2012,Single White Female,Don't Make Me Come Get You,tt0105414 yosiG9eEEHA,1992.0,6,8,2012,Single White Female,Don't Make Me Leave You,tt0105414 KISK76nF-XE,1992.0,4,8,2012,Single White Female,Death by Stiletto,tt0105414 5pzJ6qzeXlw,1992.0,5,8,2012,Single White Female,Killer Heels,tt0105414 mFcz_U62r6s,1992.0,3,8,2012,Single White Female,Hedy's Makeover,tt0105414 qSbI8KRB74M,1992.0,2,8,2012,Single White Female,I've Been Worried Sick,tt0105414 MEYAoMSfCQY,1992.0,1,8,2012,Single White Female,Bad Timing,tt0105414 c77JrXbqqV0,1993.0,6,8,2012,Sleepless in Seattle,That's a Chick's Movie,tt0108160 3cZIoQWyBCI,1993.0,2,8,2012,Sleepless in Seattle,Wife Prospects,tt0108160 qeY1mkXqKgk,1993.0,8,8,2012,Sleepless in Seattle,Finally Meeting,tt0108160 LyfG5cnkuEI,1993.0,7,8,2012,Sleepless in Seattle,Sam Argues With Jonah,tt0108160 yy7H306nKaY,1993.0,5,8,2012,Sleepless in Seattle,Closet Radio Listening,tt0108160 WdehPsCJab8,1993.0,1,8,2012,Sleepless in Seattle,Sam is,tt0108160 JCLLZQFyGGM,1993.0,3,8,2012,Sleepless in Seattle,H and G,tt0108160 VCRyYN8DfUU,1993.0,4,8,2012,Sleepless in Seattle,Jonah Interrupts Sam's Date,tt0108160 g7QBS0O7gT0,2000.0,2,8,2012,Snatch,I'll Fight Ya For It,tt0208092 1crhwQPKr7w,2000.0,7,8,2012,Snatch,Shrinking Balls,tt0208092 RD6BaHKMTXk,2000.0,8,8,2012,Snatch,Look in the Dog,tt0208092 2xUynRdzzsM,2000.0,5,8,2012,Snatch,"Six Pieces, Sixteen Pigs",tt0208092 xu0p6CtioZk,2000.0,6,8,2012,Snatch,The Definition of Nemesis,tt0208092 isyFunAeYnQ,2000.0,4,8,2012,Snatch,One-Punch Mickey,tt0208092 6NbgGhD4tdk,2000.0,3,8,2012,Snatch,Squeaky Dog,tt0208092 tGDO-9hfaiI,2000.0,1,8,2012,Snatch,The Pikey Caravan,tt0208092 Qae03boj7lU,1993.0,1,8,2012,So I Married an Axe Murderer,"Woman, Whoaaa Man",tt0108174 L_QCioSGgwU,1993.0,7,8,2012,So I Married an Axe Murderer,The Captain Gets Mad,tt0108174 z6QWyZYi8ZU,1993.0,8,8,2012,So I Married an Axe Murderer,Axe Fight,tt0108174 RJACPfUU3nk,1993.0,6,8,2012,So I Married an Axe Murderer,Rod Stewart With Bagpipes,tt0108174 smVge5w077g,1993.0,5,8,2012,So I Married an Axe Murderer,Charlie Has an Ear Thing,tt0108174 ah7mS9H_TOM,1993.0,4,8,2012,So I Married an Axe Murderer,Alcatraz Through Vicky's Eyes,tt0108174 YKRFlNryaWw,1993.0,2,8,2012,So I Married an Axe Murderer,I Hated the Colonel,tt0108174 IqycJpRdVaY,1993.0,3,8,2012,So I Married an Axe Murderer,An Orange on a Toothpick,tt0108174 TvFwTMU0vyY,1985.0,8,8,2012,St. Elmo's Fire,Our Time at the Edge,tt0090060 Dq6jS6uazUI,1985.0,7,8,2012,St. Elmo's Fire,Jules Freaks Out,tt0090060 7iMvnj_UBqc,1985.0,6,8,2012,St. Elmo's Fire,Not the Fat Chick,tt0090060 4ZOT0aLogWU,1985.0,5,8,2012,St. Elmo's Fire,It Is Tomorrow,tt0090060 TB8q78FEwE8,1985.0,4,8,2012,St. Elmo's Fire,Still a Virgin,tt0090060 GCEBqhWnUDo,1985.0,3,8,2012,St. Elmo's Fire,Marriage Is Obsolete,tt0090060 4aI9-g_n_OE,1986.0,7,8,2012,Stand by Me,You're Not Taking Him,tt0092005 WS93LMcRGRk,1997.0,2,8,2012,Men in Black,The Worm Guys Scene,tt0119654 q3OTEdZkBaQ,1997.0,3,8,2012,Men in Black,Men In Black Headquarters Scene,tt0119654 UqbTLJ0U84M,1997.0,4,8,2012,Men in Black,It's a Squid Scene,tt0119654 1FkVXCCfg2A,1997.0,1,8,2012,Men in Black,Jeebs Loses His Head Scene,tt0119654 ecsPydUbYGM,1986.0,6,8,2012,Stand by Me,The Kid Was Dead,tt0092005 tX74H9IuYdM,1986.0,8,8,2012,Stand by Me,Goodbye to Childhood,tt0092005 V4jg8o9wXys,1986.0,5,8,2012,Stand by Me,Leeches,tt0092005 -4_rMqeyOJY,1986.0,4,8,2012,Milk Money,Stand by Me,tt0110516 zK0JaEde4VI,1986.0,3,8,2012,Stand by Me,The Pie-Eating Contest,tt0092005 gozRrRCtj6E,1986.0,2,8,2014,Stand by Me,Train!,tt0092005 soEFK6PSKEY,1986.0,1,8,2012,Stand by Me,The Body,tt0092005 _lSzhjggxjI,1997.0,3,8,2012,Starship Troopers,Welcome to the Rough Necks Scene,tt0120201 fgq0ecMHfzc,1997.0,5,8,2012,Starship Troopers,Bugs! Bugs! We've Got Bugs! Scene,tt0120201 cACQ2548i0o,1997.0,8,8,2012,Starship Troopers,Probing for Secrets! Scene,tt0120201 1DANEtz59KA,1997.0,6,8,2012,Starship Troopers,Ripped Apart Scene,tt0120201 EmUIfX9TSJs,1997.0,2,8,2012,Starship Troopers,A Knife Lesson Scene,tt0120201 eAJLWSg5PIY,1997.0,4,8,2012,Starship Troopers,Flesh-Burning Tanker Bug Scene,tt0120201 DtTgHuGgW-c,1997.0,7,8,2012,Starship Troopers,The Brain Bug Scene,tt0120201 DhGaY0L1lLY,1997.0,1,8,2012,Starship Troopers,Anatomy of a Sand Beetle Scene,tt0120201 U3lA1kS-XKA,2000.0,8,8,2012,Charlie's Angels,Charlie,tt0160127 jVxyX7FcS4Q,1951.0,10,10,2012,Strangers on a Train,The Missing Lighter,tt0044079 _tVFwhoeQVM,1951.0,7,10,2012,Strangers on a Train,A Face in the Crowd,tt0044079 uykR8csyO-w,1951.0,9,10,2012,Strangers on a Train,Deadly Carousel Ride,tt0044079 FL1acMVcHGo,1951.0,8,10,2012,Strangers on a Train,Borrow Your Neck,tt0044079 jd4tpvAcKYA,1951.0,6,10,2012,Strangers on a Train,Guy's Alibi,tt0044079 44RYxAPH78A,1951.0,5,10,2012,Strangers on a Train,Framed,tt0044079 S04ArwiZwjE,1951.0,4,10,2012,Strangers on a Train,Miriam's Last Breath,tt0044079 2hlDkSg-Ycc,1951.0,3,10,2012,Strangers on a Train,Mother Boy,tt0044079 mjdgDECpWr4,1951.0,1,10,2012,Strangers on a Train,Meeting on the Train,tt0044079 eLLzlb1SN2M,2007.0,3,8,2012,Superbad,McLovin Buys Booze,tt0829482 tvCjr63AgtM,1981.0,1,8,2012,Stripes,"You're Going Nowhere, John",tt0083131 FOzub_ghAbM,1981.0,8,8,2012,Stripes,Razzle-Dazzle at Graduation,tt0083131 YXjqTyQuq4w,1981.0,7,8,2012,Stripes,We're Mutants,tt0083131 Fjj4a3zB1ag,1981.0,5,8,2012,Stripes,Hulka Blows Up,tt0083131 xR9HuRUUTbs,1981.0,2,8,2012,Stripes,Willing to Learn,tt0083131 mUtHkSw9nEY,1981.0,3,8,2012,Stripes,Psycho and Ox,tt0083131 iTwIwfvNJLk,1981.0,4,8,2012,Stripes,Chicks Dig Me,tt0083131 hYq75Gm4UdI,1981.0,6,8,2012,Stripes,The Aunt Jemima Treatment,tt0083131 9Dv0rOjEVIw,2007.0,8,8,2012,Superbad,The Morning After,tt0829482 23ZWuWe2riY,2007.0,7,8,2012,Superbad,"I Love You, Man",tt0829482 fls3z7Me2Dc,2007.0,6,8,2012,Superbad,Cockblocking McLovin,tt0829482 Po1GiAYyjIc,2007.0,5,8,2012,Superbad,A Drunken Kiss,tt0829482 XARAo5zXJsQ,2007.0,4,8,2012,Superbad,Pussies on the Pavement,tt0829482 2HTHPtoNJLk,2007.0,1,8,2012,Superbad,McLovin,tt0829482 bLPMGLsf1c0,2009.0,9,10,2013,Terminator Salvation,Who Are You?,tt0438488 Nl0BGD-SxS0,2009.0,8,10,2013,Terminator Salvation,Real Flesh and Blood,tt0438488 8r354VUktU8,2009.0,10,10,2013,Terminator Salvation,T-800 Factory,tt0438488 gOy7KDtN3mc,2009.0,6,10,2013,Terminator Salvation,Machines Are The Enemy,tt0438488 Qq8BlVT4KtY,2009.0,5,10,2013,Terminator Salvation,Highway Assault,tt0438488 3VeXn9KEvSA,2009.0,4,10,2013,Terminator Salvation,Blown Cover,tt0438488 dPKG3WMkMxQ,2009.0,3,10,2013,Terminator Salvation,Come With Me If You Want To Live,tt0438488 v3aqGRzL0BY,2009.0,2,10,2013,Terminator Salvation,John Connor vs. T-600,tt0438488 xLU_GvlaTtI,1988.0,1,8,2012,The Adventures of Baron Munchausen,Berthold Runs to Austria,tt0096764 AdyWIiYQv7E,2009.0,1,10,2013,Terminator Salvation,Attack on Skynet,tt0438488 5oOK3e53elo,1988.0,3,8,2012,The Adventures of Baron Munchausen,The Cannonball Ride,tt0096764 _9JONJG6KSU,1988.0,2,8,2012,The Adventures of Baron Munchausen,Taking the Sultan's Treasure,tt0096764 ixbStXcVqW4,1988.0,4,8,2012,The Adventures of Baron Munchausen,Launch of the Underwear Balloon,tt0096764 JvVSTmfQJyk,1988.0,5,8,2012,The Adventures of Baron Munchausen,The Sky Waltz,tt0096764 GH3WNYCuRks,1988.0,6,8,2012,The Adventures of Baron Munchausen,Sea Monster Attack,tt0096764 bZ0jZaH48b8,1988.0,7,8,2012,The Adventures of Baron Munchausen,The Execution,tt0096764 lJVIu_wNm4g,1988.0,8,8,2012,The Adventures of Baron Munchausen,Victory!,tt0096764 uvbOvG1gCj4,1980.0,5,8,2012,The Blue Lagoon,Lovers,tt0080453 x1gEy9LSa4A,1980.0,8,8,2012,The Blue Lagoon,Saved,tt0080453 KNmmwUDi4I8,1980.0,2,8,2012,The Blue Lagoon,You're Bleeding!,tt0080453 78VWWyPDmss,1980.0,7,8,2012,The Blue Lagoon,Trouble,tt0080453 _FyezVyMFJ8,1980.0,4,8,2012,The Blue Lagoon,Sticky Kiss,tt0080453 AQ_Boszvgg4,1980.0,6,8,2012,The Blue Lagoon,Not in the Mood,tt0080453 e6omnFC9jC4,1980.0,1,8,2012,The Blue Lagoon,Funny Thoughts,tt0080453 M9yS_RvQ5AY,1980.0,3,8,2012,The Blue Lagoon,Hootchie Cootchie,tt0080453 bbTgmSIDyn8,1957.0,5,8,2012,The Bridge on the River Kwai,Live Like a Human Being,tt0050212 nkwyt0ytVJI,1957.0,7,8,2012,The Bridge on the River Kwai,Kill Him! Kill Him!,tt0050212 lSTkEHpkMf8,1957.0,6,8,2012,The Bridge on the River Kwai,A Good Life,tt0050212 bWJkPbBOXL4,1957.0,4,8,2012,The Bridge on the River Kwai,A Lot to Learn About the Army,tt0050212 tRHVMi3LxZE,1957.0,8,8,2012,The Bridge on the River Kwai,What Have I Done?,tt0050212 J1rrdlXZ-pQ,1957.0,3,8,2012,The Bridge on the River Kwai,He's Done It!,tt0050212 t9f5FmSQeB4,1957.0,1,8,2012,The Bridge on the River Kwai,The Coward's Code,tt0050212 IXdycEK_38Y,1957.0,2,8,2012,The Bridge on the River Kwai,Dinner with Saito,tt0050212 tfL5f6cZlk8,2006.0,6,8,2012,The Da Vinci Code,The Original Old Wives Tale,tt0382625 d7pioagkX5k,2006.0,2,8,2012,The Da Vinci Code,Silas,tt0382625 HhbADfa8rmY,2006.0,4,8,2012,The Da Vinci Code,Priory of Sion,tt0382625 _8LrZ4NhPmk,2006.0,7,8,2012,The Da Vinci Code,Fugitives,tt0382625 PIwZVG5wMi8,2006.0,5,8,2012,The Da Vinci Code,The Secret of The Last Supper,tt0382625 B7zXxCAZjK4,2006.0,8,8,2012,The Da Vinci Code,Maybe Human Is Divine,tt0382625 F_HKGZRUroE,2006.0,3,8,2012,The Da Vinci Code,So Dark the Con of Man,tt0382625 ZFt3xJ6DvVE,2006.0,1,8,2012,The Da Vinci Code,Symbols,tt0382625 AcuaoDtYcUY,1997.0,8,8,2012,The Fifth Element,Leeloo Fights the Mangalores,tt0119116 poxW5pFQVEw,1997.0,7,8,2012,The Fifth Element,Ruby Rhod's Evening Show,tt0119116 OsJKdxPwZdk,1997.0,6,8,2012,The Fifth Element,Korben Meets Ruby Rhod,tt0119116 lR6vy0i_rRU,1973.0,10,10,2012,Westworld,Damsel In Distress,tt0070909 7VTsFtwO0u0,1997.0,5,8,2012,The Fifth Element,Choking on a Cherry,tt0119116 7jVsQToSfag,1997.0,4,8,2012,The Fifth Element,Zorg Presents the ZF1,tt0119116 3bdQlGt3cEA,1997.0,3,8,2012,The Fifth Element,Is a She,tt0119116 ujC4W8hJ4mg,1997.0,1,8,2012,The Fifth Element,Korben Outwits a Mugger,tt0119116 6u14pLHV3Vw,1997.0,2,8,2012,The Fifth Element,Leeloo Escapes,tt0119116 BfHSald-ypM,2008.0,4,10,2012,The Forbidden Kingdom,Protect Yourself!,tt0865556 pS2a76BS_bA,2008.0,10,10,2012,The Forbidden Kingdom,Return of the Monkey King,tt0865556 gQAZdGaMHu0,2008.0,2,10,2012,The Forbidden Kingdom,Drunken Master,tt0865556 e5uhElLMLbA,2008.0,8,10,2012,The Forbidden Kingdom,Seeker vs. Witch,tt0865556 Z5DlqH0klZU,2008.0,6,10,2012,The Forbidden Kingdom,"Two Tigers, One Mountain",tt0865556 qu1F98-YEz4,2008.0,5,10,2012,The Forbidden Kingdom,The Silent Monk,tt0865556 x1DLLAqLiAM,2008.0,7,10,2012,The Forbidden Kingdom,Make It Rain,tt0865556 foyloa1KiVI,2008.0,9,10,2012,The Forbidden Kingdom,Fight to the Death,tt0865556 Su6H2_SrpOk,2008.0,1,10,2012,The Forbidden Kingdom,Journey Through Time,tt0865556 zhH9GJ7lpGs,2008.0,3,10,2012,The Forbidden Kingdom,The Battle of Immortals,tt0865556 fzXK1hDkqYc,1984.0,6,8,2012,The Karate Kid,Daniel's Training,tt0087538 AOKzlx8p6yM,1984.0,7,8,2012,The Karate Kid,Daniel Wants Balance,tt0087538 zJfuNE2rsPY,1984.0,3,8,2012,The Karate Kid,Daniel and Ali's First Date,tt0087538 WCenGKkj3YQ,1984.0,8,8,2012,The Karate Kid,The Crane Kick,tt0087538 DsLk6hVBE6Y,1984.0,5,8,2012,The Karate Kid,The Lessons Come Together,tt0087538 wAuzCjipF00,1984.0,4,8,2012,The Karate Kid,Catching a Fly With Chopsticks,tt0087538 SMCsXl9SGgY,1984.0,2,8,2012,The Karate Kid,"Wax On, Wax Off",tt0087538 tPgwaQKNKRk,1984.0,1,8,2012,The Karate Kid,Daniel Defends Ali,tt0087538 nejXDl9BPbY,1971.0,8,8,2012,The Last Picture Show,"Never You Mind, Honey",tt0067328 FQunyqgIksc,1971.0,1,8,2012,The Last Picture Show,School Spirit,tt0067328 QeydehWrRu0,1971.0,4,8,2012,The Last Picture Show,Going to Mexico,tt0067328 H3E2nY0djIQ,1971.0,2,8,2012,The Last Picture Show,Billy's Bloody Nose,tt0067328 _56dNRLXn8Y,1971.0,7,8,2012,The Last Picture Show,Broken Bottle,tt0067328 1kk3Xvw7jn0,1941.0,10,10,2012,The Maltese Falcon,The Stuff That Dreams Are Made Of,tt0033870 bvjLvggrYUo,1971.0,5,8,2012,The Last Picture Show,The Death of Sam the Lion,tt0067328 mvgKGY5m71w,1971.0,3,8,2012,The Last Picture Show,Sam the Lion,tt0067328 wPT49WXC0Zo,1941.0,9,10,2012,The Maltese Falcon,I Won't Play The Sap For You,tt0033870 7Xuw-XKP1sI,1941.0,8,10,2012,The Maltese Falcon,,tt0033870 e4RGh5iAykY,1941.0,7,10,2012,The Maltese Falcon,There's Only One Maltese Falcon,tt0033870 aogWdNKef2o,1941.0,4,10,2012,The Maltese Falcon,Kasper Gutman,tt0033870 Sgbe_owOvEI,1941.0,5,10,2012,The Maltese Falcon,Mighty Funny,tt0033870 sGuNGXmQZSE,1941.0,2,10,2012,The Maltese Falcon,Joel Cairo,tt0033870 vqOByzMoS_A,1941.0,6,10,2012,The Maltese Falcon,There's Our Fall Guy,tt0033870 0I1Vh-Ru1z0,1941.0,3,10,2012,The Maltese Falcon,"When You're Slapped, You'll Take It & Like It",tt0033870 gG5kz32ot20,1941.0,1,10,2012,The Maltese Falcon,"Help Me, Mr. Spade",tt0033870 rcgygxfcywM,1998.0,8,8,2012,The Mask of Zorro,Zorro's Revenge,tt0120746 pz0R9XJciO0,1998.0,5,8,2012,The Mask of Zorro,Kill Him,tt0120746 qRGre50eHbQ,1998.0,7,8,2012,The Mask of Zorro,The Horse Thief,tt0120746 bw7GnKjkThQ,1998.0,6,8,2012,The Mask of Zorro,The Duel,tt0120746 WLSQERsdER8,1998.0,2,8,2012,The Mask of Zorro,The Legend Has Returned,tt0120746 kaJv6L8vF-Y,1998.0,4,8,2012,The Mask of Zorro,A Very Spirited Dancer,tt0120746 J2ZnJvnPgRY,1998.0,3,8,2012,The Mask of Zorro,Impure Thoughts,tt0120746 qdtCFKVtSls,1984.0,1,8,2012,The Natural,Striking Out The Whammer,tt0087781 2QGYIM-8y38,1984.0,7,8,2012,The Natural,Savoy Special,tt0087781 i94ldGNNSQ0,1984.0,8,8,2012,The Natural,The Final Homerun,tt0087781 Du8HRf6pRVY,1998.0,1,8,2012,The Mask of Zorro,Master and Pupil,tt0120746 oyaud2-X1QM,1984.0,6,8,2012,The Natural,Let it Ride,tt0087781 J0lof7tFKtE,1984.0,5,8,2012,The Natural,The Lady in White,tt0087781 tlNLhuxeDJQ,1984.0,4,8,2012,The Natural,Knock the Cover Off the Ball,tt0087781 H8Ancd0WztU,1984.0,3,8,2012,The Natural,Batting Practice With Wonderboy,tt0087781 TgIB5Yl4sBQ,1984.0,2,8,2012,The Natural,A New Right Fielder,tt0087781 46-oS8F8_c8,1998.0,6,10,2012,The Negotiator,Taking Command,tt0120768 MZhNDpll2Vg,1998.0,10,10,2012,The Negotiator,Do You Like Westerns?,tt0120768 ZiO-hWU7IZI,1998.0,9,10,2012,The Negotiator,Close Call,tt0120768 LVC2uynUn8c,1998.0,8,10,2012,The Negotiator,You Were Wrong About Me,tt0120768 4FsDFOIWiHo,1998.0,7,10,2012,The Negotiator,Things Are Not What They Seem,tt0120768 DA2JIQh96iI,1998.0,5,10,2012,The Negotiator,Take the Subject Out,tt0120768 Q0xqrvefO7Q,1998.0,4,10,2012,The Negotiator,The Eyes Can't Lie,tt0120768 Yd1ndA1_G_A,1998.0,1,10,2012,The Negotiator,No Surprises,tt0120768 GtARiQO8ljE,1998.0,3,10,2012,The Negotiator,Never Say No,tt0120768 nxTEOyfchP8,1998.0,2,10,2012,The Negotiator,I'm Not Going to Jail Today,tt0120768 ZQzBHnXdPY4,2000.0,4,8,2012,The Patriot,Papa Don't Go,tt0187393 N9uT3yyoaGY,2000.0,8,8,2012,The Patriot,My Sons Were Better Men,tt0187393 oCE8jHLJe3g,2000.0,6,8,2012,The Patriot,No Retreat!,tt0187393 CYgJjicx0yI,2000.0,5,8,2012,The Patriot,The War Ends Today,tt0187393 njFOIvoN9pc,2000.0,3,8,2012,The Patriot,Before This War is Over,tt0187393 4YdP5YLuJDc,2000.0,2,8,2012,The Patriot,A Call for Militia,tt0187393 8kBKeCR4xiU,2000.0,1,8,2012,The Patriot,Tomahawk Massacre,tt0187393 iD4lY0brr60,2000.0,7,8,2012,The Patriot,Benjamin Fights Tavington,tt0187393 MeTuNES82O0,1996.0,7,8,2012,The People vs. Larry Flynt,The Supreme Court,tt0117318 2XuJzaDhV50,1996.0,8,8,2012,The People vs. Larry Flynt,"We Won, Baby",tt0117318 yie3IIh0HiQ,1996.0,5,8,2012,The People vs. Larry Flynt,The Pervert is Back!,tt0117318 JqoH6dDyZmk,1996.0,6,8,2012,The People vs. Larry Flynt,A Dream Client,tt0117318 FyCJ-hUXQ7o,1996.0,3,8,2012,The People vs. Larry Flynt,Jackie O Nude,tt0117318 OSc1_gfVfCc,1996.0,4,8,2012,The People vs. Larry Flynt,The Price of Freedom,tt0117318 QttI1akIG_4,1996.0,2,8,2012,The People vs. Larry Flynt,God Created Woman,tt0117318 VFDN2EOGyDI,1996.0,1,8,2012,The People vs. Larry Flynt,Meet Calamity Jane,tt0117318 JZZnBoruCik,2006.0,2,8,2012,The Pursuit of Happyness,Running,tt0454921 _-jXE-VvZqw,2006.0,1,8,2012,The Pursuit of Happyness,No Y in Happiness,tt0454921 xPBBnS4br9w,2006.0,6,8,2012,The Pursuit of Happyness,Cold Calling,tt0454921 ep-ieEG06qg,2006.0,4,8,2012,The Pursuit of Happyness,First Impression,tt0454921 t1TC-pegncQ,2006.0,7,8,2012,The Pursuit of Happyness,The Time Machine,tt0454921 56fngopihOo,2006.0,8,8,2012,The Pursuit of Happyness,Final Scene: Chris is Hired,tt0454921 UZb2NOHPA2A,2006.0,5,8,2012,The Pursuit of Happyness,Basketball and Dreams,tt0454921 V8Dm3OfSn4w,2006.0,3,8,2012,The Pursuit of Happyness,Rubik's Cube,tt0454921 2Jq7xgVqPYA,1993.0,3,8,2012,The Remains of the Day,Room of Amateurs,tt0107943 G2un8xvArsU,1993.0,1,8,2012,The Remains of the Day,The Rules of the Manor,tt0107943 b7lV6-iKiwQ,1993.0,7,8,2012,The Remains of the Day,"I'll See To It, Mister Stevens",tt0107943 5nyJNNk1jCY,1993.0,6,8,2012,The Remains of the Day,My Warmest Congratulations,tt0107943 -vCVptWV5UE,1993.0,4,8,2012,The Remains of the Day,Guilty Smile,tt0107943 34bCs92ACpk,1993.0,8,8,2012,The Remains of the Day,Goodbye,tt0107943 JtqEy9DW91U,1993.0,5,8,2012,The Remains of the Day,A Racy Book,tt0107943 WIrebinrQH0,1993.0,2,8,2012,The Remains of the Day,No Longer Needed,tt0107943 KLJ4xbE_j94,2002.0,8,10,2012,The Rules of Attraction,I Want to Know You,tt0292644 IuFESp6a8hM,2002.0,5,10,2012,The Rules of Attraction,Suicide Attempt,tt0292644 pw46kpxHbls,2002.0,1,10,2012,The Rules of Attraction,Attraction,tt0292644 k-mbJhVl2Xc,2000.0,7,8,2012,Charlie's Angels,Bosley in Captivity,tt0160127 GKh4VG9YQ1Q,2002.0,10,10,2012,The Rules of Attraction,People Like Us,tt0292644 LozIIWJG9Fs,2002.0,9,10,2012,The Rules of Attraction,Not Ever Gonna Know Me,tt0292644 -sJezi3j7O8,2002.0,7,10,2012,The Rules of Attraction,Where's My Money?,tt0292644 Btn6OKhfHHk,2002.0,4,10,2012,The Rules of Attraction,Sex Fantasy,tt0292644 20tvG54uZLg,2002.0,3,10,2012,The Rules of Attraction,Dick,tt0292644 cWYIlga8sas,2002.0,6,10,2012,The Rules of Attraction,Euro-Trip Montage,tt0292644 KJCvbFLtRB0,1993.0,9,9,2012,The Secret Garden,The Whole World Is a Garden,tt0108071 Aedxe7JThh8,2002.0,2,10,2012,The Rules of Attraction,Am I Dead?,tt0292644 hHZs6i30Xr4,1993.0,6,9,2012,The Secret Garden,I've Been to the Secret Garden,tt0108071 U2g825zrVA4,1993.0,7,9,2012,The Secret Garden,Walking in the Garden,tt0108071 OyH39BhKP2g,1993.0,4,9,2012,The Secret Garden,Cousins,tt0108071 ZFwI8ujpT0Y,1993.0,5,9,2012,The Secret Garden,The World Outside,tt0108071 XkGVykfJIts,1993.0,8,9,2012,The Secret Garden,Lord Craven's Discovery,tt0108071 vVRPMleD1SI,1993.0,3,9,2012,The Secret Garden,Searching for the Garden,tt0108071 _kqyM33kijU,2010.0,10,10,2012,The Spy Next Door,The Russians Are Coming,tt1273678 YGlqg2jC3R4,1993.0,1,9,2012,The Secret Garden,There's Someone Crying,tt0108071 1ESVngpn1aA,1993.0,2,9,2012,The Secret Garden,Martha the Servant,tt0108071 nwBlOt3WDUQ,2010.0,9,10,2012,The Spy Next Door,Bike Fight,tt1273678 RairI_NdWQA,2010.0,7,10,2012,The Spy Next Door,Russian Spy,tt1273678 DknDCyfSe8Q,2010.0,8,10,2012,The Spy Next Door,Bob the Spy,tt1273678 _kocDBoWDcU,2010.0,6,10,2012,The Spy Next Door,"Go, Bob, Go!",tt1273678 Z6bU-bOkm2Y,2010.0,5,10,2012,The Spy Next Door,Spy Tactics,tt1273678 w_BL6gnrtDg,2010.0,2,10,2012,The Spy Next Door,Bedtime,tt1273678 Dkj-8VuWNJk,2010.0,4,10,2012,The Spy Next Door,Hungry Bacteria,tt1273678 -dkz4Sk6UuA,2010.0,1,10,2012,The Spy Next Door,Rush and Attack,tt1273678 ix0_IOPyX2g,2010.0,3,10,2012,The Spy Next Door,Missing Princess,tt1273678 2VKpd3XEbD8,2005.0,8,8,2012,The Squid and the Whale,Seeing the Squid and the Whale,tt0367089 m5rfQ59cc0o,2005.0,7,8,2012,The Squid and the Whale,You're Calling Me a Bitch?,tt0367089 lS1KFyakAPE,2005.0,4,8,2012,The Squid and the Whale,Then I'm a Philistine,tt0367089 VcVDBbEpQx8,2005.0,5,8,2012,The Squid and the Whale,I Did Try Everything,tt0367089 yoFS6X0RKkA,2005.0,6,8,2012,The Squid and the Whale,Breaking Up With Sophie,tt0367089 gZ9nPV_stFA,2005.0,3,8,2012,The Squid and the Whale,It's Our House,tt0367089 a4wb-xmYM50,2005.0,1,8,2012,The Squid and the Whale,Mom and Me Vs. You and Dad,tt0367089 03Rl5exupSo,2005.0,2,8,2012,The Squid and the Whale,A Family Meeting,tt0367089 7aW8oyTgA60,1984.0,8,8,2012,Ghostbusters,The Stay Puft Marshmallow Man,tt0087332 dN9rfJvFHgw,1992.0,9,9,2013,Under Siege,Blame It on the Cook,tt0105690 XBz6d2VPgZw,1992.0,1,9,2013,Under Siege,Striking an Officer,tt0105690 aYBTp7dH_XE,1992.0,8,9,2013,Under Siege,Cornered,tt0105690 _uw-hnKrV80,1992.0,5,9,2013,Under Siege,Counterattack,tt0105690 A0gGIMaQZJs,1992.0,3,9,2013,Under Siege,I'm Just a Cook,tt0105690 sQC7OzU_d18,1992.0,4,9,2013,Under Siege,Morse Code,tt0105690 FwnnarFw_T8,1992.0,2,9,2013,Under Siege,Fighting Back,tt0105690 QA029M9LIVU,2003.0,5,8,2012,Underworld,Whip vs. Werewolf,tt0320691 2QGI0KdwW8Y,2003.0,2,8,2012,Underworld,Reawakening an Elder,tt0320691 BWWfy9YSQmw,2003.0,4,8,2012,Underworld,Bearing Witness,tt0320691 naUJM6Dp7qk,2003.0,8,8,2012,Underworld,Splitting Headache,tt0320691 Eb3oEMSXPnc,2003.0,3,8,2012,Underworld,Selene Rescues Michael,tt0320691 pexcH4Ffi8I,2003.0,6,8,2012,Underworld,Bite Him!,tt0320691 lTc8TxNTh6I,2003.0,7,8,2012,Underworld,It Was You,tt0320691 tAH5PR2SvXM,2003.0,1,8,2012,Underworld,Why Are They After You?,tt0320691 XU8Xdt7tSyo,2004.0,9,10,2012,Vera Drake,The Best Christmas,tt0383694 EPtxN1YoQ3k,2004.0,8,10,2012,Vera Drake,You Lied to Us!,tt0383694 Vo5ycPggsGY,2004.0,10,10,2012,Vera Drake,Vera's Sentence,tt0383694 k7OWfTv3Xr0,2004.0,7,10,2012,Vera Drake,Shameful Secret,tt0383694 fuAo0q0a_Ww,2004.0,6,10,2012,Vera Drake,I Help Them Out,tt0383694 ysFpoWSlo7g,2004.0,5,10,2012,Vera Drake,A Serious Matter,tt0383694 ltMrjNiI340,2004.0,4,10,2012,Vera Drake,You Wanna?,tt0383694 6Vj6Up8OaFo,2004.0,3,10,2012,Vera Drake,I Can't Have It,tt0383694 4XhNhG_zq-A,2004.0,1,10,2012,Vera Drake,A Lovely Spread,tt0383694 bBBV7uUGER8,2004.0,2,10,2012,Vera Drake,Black Market Goods,tt0383694 W7Dq7vqpGCM,1973.0,4,10,2012,Westworld,Behind the Scenes,tt0070909 40CUuyOxUZs,1973.0,3,10,2012,Westworld,Robo Love,tt0070909 9Okpnw0Ktt8,1973.0,6,10,2012,Westworld,Snake Bite,tt0070909 nq382fby2yU,1973.0,9,10,2012,Westworld,Face Full of Acid,tt0070909 Mg7YM02K5ek,1973.0,7,10,2012,Westworld,The Black Knight,tt0070909 fsMC6d8DeMo,1973.0,8,10,2012,Westworld,Draw,tt0070909 lHodSSB_YpM,1973.0,1,10,2012,Westworld,Delos Commercial,tt0070909 4M1mi7Ommbg,1973.0,2,10,2012,Westworld,Your Move,tt0070909 1KCTiqj_-tg,1973.0,5,10,2012,Westworld,Was He Bothering You?,tt0070909 yqtmypCco-I,1998.0,6,8,2012,Wild Things,Peeping in People's Windows,tt0120890 -heLeiCeD58,1998.0,3,8,2012,Wild Things,Discussing the Case,tt0120890 DWa1IsbsiY4,1998.0,8,8,2012,Wild Things,Good Guess!,tt0120890 uNsFppO-q3g,1998.0,2,8,2012,Wild Things,I Was Raped,tt0120890 lDDtJ_J_hhw,1998.0,1,8,2012,Wild Things,Seducing Lombardo,tt0120890 9lro80T1eV8,1998.0,7,8,2012,Wild Things,First Rule of Sailing,tt0120890 Tx59CHKUgjs,1998.0,5,8,2012,Wild Things,Three's a Crowd,tt0120890 vW4TOsL7e3M,1998.0,4,8,2012,Wild Things,The Pool Scene,tt0120890 VDm_Pg2Cdsk,2009.0,7,8,2012,Zombieland,Pacific Playland,tt1156398 OK7Hm5IztPc,2009.0,8,8,2012,Zombieland,Clown Zombie,tt1156398 1tdZ_k0eaHo,2009.0,5,8,2012,Zombieland,Zombie Kill of the Week,tt1156398 Awh5WP9BbGQ,2009.0,6,8,2012,Zombieland,Blast Off,tt1156398 cwprGyncs0A,2009.0,4,8,2012,Zombieland,Nut Up or Shut Up,tt1156398 sSvxvpY7PZM,2009.0,2,8,2012,Zombieland,Limber Up,tt1156398 RW4ADt4YSy0,2009.0,1,8,2012,Zombieland,The United States of,tt1156398 kp3HaaTqYP0,2009.0,3,8,2012,Zombieland,The Zombie Next Door,tt1156398 x2wH5RS58lo,2011.0,9,9,2012,A Better Life,A Reason to Live,tt1554091 LXM383MIFYY,2011.0,4,9,2012,A Better Life,Charreada,tt1554091 f3XcExCD3HM,2011.0,1,9,2012,A Better Life,Ready to Get Jumped In,tt1554091 du22ttQhRhA,2011.0,8,9,2012,A Better Life,"License, Registration, and Prison",tt1554091 z5S3e6sCBV0,2011.0,7,9,2012,A Better Life,Taking it Back,tt1554091 LwgcvZ0z430,2011.0,6,9,2012,A Better Life,Searching for Santiago,tt1554091 mhaxNZs5MGc,2011.0,3,9,2012,A Better Life,Grand Theft Truck,tt1554091 w57ga2Yiic4,2011.0,5,9,2012,A Better Life,Why Did You Have Me?,tt1554091 PiJ5Ef63OwY,2011.0,2,9,2012,A Better Life,Buy the Truck,tt1554091 nRSaxtoy7fo,2010.0,9,10,2012,Trollhunter,Wearing Down the Troll,tt1740707 7tFLFMyA0EI,2010.0,10,10,2012,Trollhunter,The Finishing Blow,tt1740707 HSh63MNfwbE,2010.0,7,10,2012,Trollhunter,There's a Christian in the Cave,tt1740707 yly_wF8DyE8,2010.0,8,10,2012,Trollhunter,Definitely Rabies,tt1740707 Io7wUtei6BA,2010.0,3,10,2012,Trollhunter,From Troll to Stone,tt1740707 WhGFwk58h34,2010.0,5,10,2012,Trollhunter,The Troll Under the Bridge,tt1740707 kRCO31JfDck,2010.0,6,10,2012,Trollhunter,Trolls Also Explode,tt1740707 CjIU-zqxJEA,2010.0,4,10,2012,Trollhunter,Types of Trolls,tt1740707 angyfkPmHMo,2010.0,2,10,2012,Trollhunter,"Run, Dammit!",tt1740707 KgqzMdBg7ig,2010.0,1,10,2012,Trollhunter,Troll!,tt1740707 nukRk0WMspo,2011.0,5,10,2012,50/50,You're Disgusting,tt1306980 Cj-H4ZcfVU8,2011.0,1,10,2012,50/50,is Not That Bad,tt1306980 2tI3Dz2Ic2o,2011.0,7,10,2012,50/50,Messy Car,tt1306980 5aLrRe3K_6I,2011.0,6,10,2012,50/50,It's Just Cancer,tt1306980 oZEJTJSZQQs,2011.0,3,10,2012,50/50,Doogie Howser,tt1306980 CwLcHWwjkV4,2011.0,10,10,2012,50/50,The Surgery,tt1306980 oviA5ncbmc8,2011.0,2,10,2012,50/50,I Have Cancer,tt1306980 OGpGO7K3aBo,2011.0,4,10,2012,50/50,You're Gonna Look Weird,tt1306980 jmjcKSMwC1Y,2011.0,9,10,2012,50/50,I Wish You Were My Girlfriend,tt1306980 0RWk0XTaEX4,2011.0,8,10,2012,50/50,Adam's First Drive,tt1306980 0999Zftz6-w,2009.0,9,9,2012,Mystery Team,work,tt1237838 i-6UVTMiDm8,2009.0,8,9,2012,Mystery Team,Bad Deal,tt1237838 VSjHX4LO35c,2009.0,4,9,2012,Mystery Team,High School Students,tt1237838 o2jtBk4B-hE,2009.0,3,9,2012,Mystery Team,Looking for Leroy,tt1237838 OQrJfULly20,2009.0,5,9,2012,Mystery Team,You're Not a Real Detective,tt1237838 rHPTGJpgtFU,2009.0,1,9,2012,Mystery Team,Bowling Belligerence,tt1237838 xDvdVxr48UU,2009.0,2,9,2012,Mystery Team,Get the Ring,tt1237838 -cOOPGQGqh8,2009.0,7,9,2012,Mystery Team,Jim and Frank,tt1237838 b0dtzloyP6k,2009.0,6,9,2012,Mystery Team,The Bread Squeezer,tt1237838 89OOSFlcy98,1984.0,7,8,2012,Ghostbusters,This Chick is Toast!,tt0087332 9-tYZkJ2p54,1984.0,6,8,2012,Ghostbusters,This Man Has No Dick,tt0087332 xSp5QwKRwqM,1984.0,5,8,2012,Ghostbusters,The Keymaster,tt0087332 ZGNoXIhKTLw,1984.0,4,8,2012,Ghostbusters,I Want You Inside Me,tt0087332 VWb1z6ZwUoY,1984.0,3,8,2012,Ghostbusters,"We Came, We Saw, We Kicked Its Ass!",tt0087332 EN0JaJN_fwU,2000.0,6,8,2012,Charlie's Angels,Really Bad Day,tt0160127 FHB3oMNWk1g,2000.0,5,8,2012,Charlie's Angels,Ambushed,tt0160127 7_pR6mUYtOo,1984.0,2,8,2012,Ghostbusters,He Slimed Me,tt0087332 jj7BRKHml8g,2000.0,4,8,2012,Charlie's Angels,Access Granted,tt0160127 cjyqWsrpQAA,2000.0,3,8,2012,Charlie's Angels,Stimulating Innovation,tt0160127 5ohlA__xABw,1984.0,1,8,2012,Ghostbusters,Venkman's ESP Test,tt0087332 2LWGe28axmg,2000.0,2,8,2012,Charlie's Angels,The Thin Man,tt0160127 xvf--4i6NA0,2000.0,1,8,2012,Charlie's Angels,Chinese Fighting Muffin,tt0160127 lBSi1KKCRQY,2000.0,5,10,2012,Shriek If You Know What I Did,Watch Your Backs,tt0212235 eh_vTiBMvpo,2000.0,1,10,2012,Shriek If You Know What I Did,The Killer Calls,tt0212235 X1JIzLmbkA4,2000.0,4,10,2012,Shriek If You Know What I Did,Barbara's Last Period,tt0212235 dz6QtPfCmrU,2000.0,6,10,2012,Shriek If You Know What I Did,Killer Car Chase,tt0212235 EVGsdxjfeO0,2000.0,10,10,2012,Shriek If You Know What I Did,Unmasking the Killer,tt0212235 OdaMqivNKZ0,2000.0,9,10,2012,Shriek If You Know What I Did,Chop-Up Video,tt0212235 -k34FungG-Q,2000.0,2,10,2012,Shriek If You Know What I Did,Meeting the Cast,tt0212235 YC65XWrNn4s,2000.0,3,10,2012,Shriek If You Know What I Did,Hag and Doughy,tt0212235 oQAqWa_86vg,2000.0,8,10,2012,Shriek If You Know What I Did,Weed Whacker,tt0212235 1dqc9SW9OFI,2000.0,7,10,2012,Shriek If You Know What I Did,The Rules of Parodies,tt0212235 FnmbPDYmz0E,2008.0,9,10,2012,Saw 5,Bridge the Gap,tt1132626 8BgcozieWuE,2008.0,7,10,2012,Saw 5,Survival of the Fittest,tt1132626 jcp5lTiZEUY,2008.0,6,10,2012,Saw 5,Head Game,tt1132626 9N9BwAElBiA,2008.0,10,10,2012,Saw 5,A Sacrifice of Blood,tt1132626 QE78itp1Jn0,2008.0,8,10,2012,Saw 5,Vengeance Can Change a Person,tt1132626 IrptxQD55zY,2008.0,5,10,2012,Saw 5,A Common Goal of Survival,tt1132626 3y4KK8Bd5l8,2008.0,3,10,2012,Saw 5,Water Box,tt1132626 BYwC-WJQKd4,2008.0,4,10,2012,Saw 5,Jigsaw Doesn't Make Mistakes,tt1132626 lh9z3hPGqgM,2008.0,2,10,2012,Saw 5,Do Not Proceed,tt1132626 LHpto8gCOso,2008.0,1,10,2012,Saw 5,The Pendulum,tt1132626 x6oaXdPsiN0,2004.0,1,10,2012,Spartan,Why Aren't You Ready?,tt0360009 imyD8loUM-g,2004.0,10,10,2012,Spartan,Heroic Rescue,tt0360009 z8fwAxhgA-A,2004.0,9,10,2012,Spartan,One Man,tt0360009 ktrHO9uETjk,2004.0,8,10,2012,Spartan,I'm Her Mother,tt0360009 aKgha2AsDNc,2004.0,7,10,2012,Spartan,Through the Looking Glass,tt0360009 hKoYPfcWpcU,2004.0,6,10,2012,Spartan,A Hitch in the Plan,tt0360009 BWWTObc0KDQ,2004.0,5,10,2012,Spartan,A Stone Cold Whore Master,tt0360009 YOcfHxXt_aA,2004.0,4,10,2012,Spartan,Gas Station Shootout,tt0360009 aTsjwO97Aow,2004.0,3,10,2012,Spartan,"Where's the Girl, Jerry?",tt0360009 TaOTPhkNkbw,2004.0,2,10,2012,Spartan,Rules of War,tt0360009 dYvCGjka2-s,2003.0,9,10,2012,Step Into Liquid,"Always a Surfer, Forever",tt0308508 6whKr0DDbdY,2003.0,3,10,2012,Step Into Liquid,Dale Webster's Mission,tt0308508 cUknJlnzdLo,2003.0,5,10,2012,Step Into Liquid,Surf Like a Girl,tt0308508 8Jd-gAm1wMU,2003.0,10,10,2012,Step Into Liquid,100 Miles Out,tt0308508 wACyqCoTTno,2003.0,8,10,2012,Step Into Liquid,Riding Sand Dunes,tt0308508 Y3WWNavHXSA,2003.0,7,10,2012,Step Into Liquid,The Foilboard,tt0308508 fQJzgovGkSQ,2003.0,2,10,2012,Step Into Liquid,The Pipeline of Oahu,tt0308508 OwzlxG2_8hA,2003.0,1,10,2012,Step Into Liquid,It's All About the Wave,tt0308508 4sJi6VExXuA,2003.0,4,10,2012,Step Into Liquid,Surfing Brings People Together,tt0308508 zJ3ZcmivZhI,2003.0,6,10,2012,Step Into Liquid,Surfing Paralyzed,tt0308508 PnFxS6a2aPU,1997.0,2,5,2012,The Devil's Advocate,Moving on Up,tt0118971 DEX-5gM0P8I,1997.0,5,5,2012,The Devil's Advocate,I Don't Like Him,tt0118971 3teArKtt1PQ,1997.0,4,5,2012,The Devil's Advocate,Where's Your Mommy?,tt0118971 L38yiP7vLwM,1997.0,3,5,2012,The Devil's Advocate,I Hate This Stupid Place,tt0118971 9enPC37mHrM,1997.0,1,5,2012,The Devil's Advocate,Jury Selection,tt0118971 W3HDdYjGDzg,1999.0,2,10,2012,The Iron Giant,Rock and Tree,tt0129167 5Ipcnz96hE8,1999.0,8,10,2012,The Iron Giant,You Can Fly?,tt0129167 yhaoJxQpRg0,1999.0,10,10,2012,The Iron Giant,Resurrection,tt0129167 D4dT2eBWI2M,1999.0,9,10,2012,The Iron Giant,Superman,tt0129167 SF24fZvfoHs,1999.0,6,10,2012,The Iron Giant,Coco-Lax,tt0129167 9t2_DjGU_Qk,1999.0,7,10,2012,The Iron Giant,Cannon Ball,tt0129167 QjCxoikhxSE,1999.0,5,10,2012,The Iron Giant,Giant Problems,tt0129167 MiPH7hknJ8k,1999.0,4,10,2012,The Iron Giant,Hungry For Scraps,tt0129167 ydMwnnhLnLU,1999.0,3,10,2012,The Iron Giant,Saying Grace,tt0129167 PW-RHrX7Fnc,1999.0,1,10,2012,The Iron Giant,Something Big,tt0129167 9o8gzua-K_E,1987.0,4,10,2012,The Lost Boys,One of Us,tt0093437 0A80j2BuMaU,1987.0,3,10,2012,The Lost Boys,"Maggots, Worms and Blood",tt0093437 ZynRcyXIGKM,1987.0,2,10,2012,The Lost Boys,Destroy All Vampires,tt0093437 TgLe98ts0QU,1987.0,10,10,2012,The Lost Boys,The Bloodsucking Brady Bunch,tt0093437 F5g7u8WRwqQ,1987.0,9,10,2012,The Lost Boys,My Blood Is in Your Veins,tt0093437 XObhhoFp6G8,1987.0,8,10,2012,The Lost Boys,"Garlic Don't Work, Boys!",tt0093437 5EN8IHljaaE,1987.0,7,10,2012,The Lost Boys,One Big Coffin,tt0093437 Kq3nRBxVD3k,1987.0,6,10,2012,The Lost Boys,Dinner With the Frogs,tt0093437 iYsOzr1hPl8,1987.0,5,10,2012,The Lost Boys,Creature of the Night,tt0093437 wmbt1RjPn4M,1987.0,1,10,2012,The Lost Boys,I Still Believe,tt0093437 Ss7i62FguNY,1997.0,7,9,2012,The Relic,The Creature Attacks,tt0120004 QJYrz4jET9M,1997.0,5,9,2012,The Relic,Encounter at the Door,tt0120004 tQkepXxAGq4,1997.0,2,9,2012,The Relic,Something's Missing from the Brain,tt0120004 fUxg-0j1Ijw,1997.0,9,9,2012,The Relic,Torching the Creature,tt0120004 0UBym5z6rgM,1997.0,1,9,2012,The Relic,Bathroom Break,tt0120004 KldCgijNQyg,1997.0,3,9,2012,The Relic,The Callisto Effect,tt0120004 HC9BNtZrnIc,1997.0,4,9,2012,The Relic,A Very Dangerous Situation,tt0120004 7SU_ZshgGro,1997.0,8,9,2012,The Relic,The Rescue Team,tt0120004 HaG2Mm5K6TE,1997.0,6,9,2012,The Relic,Lucky Bullet,tt0120004 sx-obtKU1jM,1983.0,10,10,2012,Uncommon Valor,Sailor's Sacrifice,tt0086508 J4yrUjXQJdQ,1983.0,9,10,2012,Uncommon Valor,Blaster's Last Stand,tt0086508 f4wQCy4xIyY,1983.0,8,10,2012,Uncommon Valor,Stealing the Choppers,tt0086508 m_C2cbqPkx0,1983.0,7,10,2012,Uncommon Valor,This Parting Was Well Made,tt0086508 qXTTXNZucIU,1983.0,5,10,2012,Uncommon Valor,The Whole Can of Whup-Ass,tt0086508 IYuknBe73ik,1983.0,4,10,2012,Uncommon Valor,Wilkes vs. Everyone Else,tt0086508 oWr69u4tLoc,1983.0,6,10,2012,Uncommon Valor,Buy It or Borrow It?,tt0086508 wj0aH_PiAnI,1983.0,3,10,2012,Uncommon Valor,A Lesson in Explosives,tt0086508 Xwl5DKs5HL0,1983.0,1,10,2012,Uncommon Valor,You Gotta Give Me a Shot,tt0086508 39-n35p2juk,1983.0,2,10,2012,Uncommon Valor,"You Don't Ever Quit, Boy",tt0086508 QEkSX1S4kwg,2010.0,6,9,2012,Saw: The Final Chapter,Speak No Evil,tt1477076 1khqylEN_48,2010.0,8,9,2012,Saw: The Final Chapter,Game Over,tt1477076 -JeKHhnEcw0,2010.0,9,9,2012,Saw: The Final Chapter,My Greatest Asset,tt1477076 01qhgR0WsnA,2010.0,7,9,2012,Saw: The Final Chapter,The Fear of Not Knowing,tt1477076 KdfwchgYp-U,2010.0,5,9,2012,Saw: The Final Chapter,You Are a Liar,tt1477076 xZOMiFk2ThE,2010.0,3,9,2012,Saw: The Final Chapter,Garage Trap,tt1477076 6XFzJ3WtYPo,2010.0,4,9,2012,Saw: The Final Chapter,These Are My Scars,tt1477076 FTgzyx6931A,2010.0,2,9,2012,Saw: The Final Chapter,Kill Jill,tt1477076 IvPewzBKqYU,2010.0,1,9,2012,Saw: The Final Chapter,Bizarre Love Triangle,tt1477076 NFwg1siPn3A,2011.0,9,9,2012,Conan the Barbarian,The Serpent Pit,tt0816462 fXwVoMcZa90,2011.0,7,9,2012,Conan the Barbarian,Conan Fights Khalar,tt0816462 iGk8yvyixvY,2011.0,6,9,2012,Conan the Barbarian,Battling the Sand Creatures,tt0816462 2vL7DtW6wGM,2011.0,4,9,2012,Conan the Barbarian,Where is the Pure Blood?,tt0816462 bU6V_rkvECA,2011.0,8,9,2012,Conan the Barbarian,Attack on the Ship,tt0816462 wRLLMDtKPvc,2011.0,5,9,2012,Conan the Barbarian,Human Catapult,tt0816462 G1IQQRRhI5M,2011.0,3,9,2012,Conan the Barbarian,Horseback Chase,tt0816462 QHUcubYTt0o,2011.0,2,9,2012,Conan the Barbarian,Interrogating Lucius,tt0816462 CTCkd8aEpZ8,2011.0,1,9,2012,Conan the Barbarian,Young Conan,tt0816462 wsvdvNRcUVA,2006.0,10,10,2012,Dark Fields,Call for Help,tt1212023 QUYNJvRn4jw,2006.0,9,10,2012,Dark Fields,Calm Down!,tt1212023 FRLcggpffDk,2006.0,7,10,2012,Dark Fields,Bloody Stump,tt1212023 ShCVyu04OCc,2006.0,8,10,2012,Dark Fields,Bloody Boots,tt1212023 93uAmv9qwNs,2006.0,3,10,2012,Dark Fields,Tease,tt1212023 yrZ7CsXcTrI,2006.0,5,10,2012,Dark Fields,Killer Hay,tt1212023 8YkX-DZDB4o,2006.0,6,10,2012,Dark Fields,Tool Shed Terror,tt1212023 9ZM4N1bdm4g,2006.0,1,10,2012,Dark Fields,Early Morning Slaughter,tt1212023 5ai_pW6LPpE,2006.0,4,10,2012,Dark Fields,Lending a Hand,tt1212023 dw4cZQicaVo,2006.0,2,10,2012,Dark Fields,Gas Stop,tt1212023 Bn0-7zClnWA,2001.0,8,9,2012,Save the Last Dance,Let's Just Walk Away,tt0206275 zMEjTw82zDc,2001.0,1,9,2012,Save the Last Dance,Truman Capote Debate,tt0206275 KRCwsXtAeKQ,2001.0,9,9,2012,Save the Last Dance,The Big Audition,tt0206275 _oBX12cEu-w,2001.0,6,9,2012,Save the Last Dance,Maybe We Should Cool It,tt0206275 Ts4u--T-fDc,2001.0,7,9,2012,Save the Last Dance,"I Don't Hate You, I Miss Her",tt0206275 jgcD-DHpPR0,2001.0,5,9,2012,Save the Last Dance,It Ain't Over,tt0206275 cvEJy_9hy4o,2001.0,4,9,2012,Save the Last Dance,I Was Dancing While She Was Dying,tt0206275 NyxW1SxFqzk,2001.0,2,9,2012,Save the Last Dance,Brady Bunch in the Club,tt0206275 lPrOstRqB1o,2001.0,3,9,2012,Save the Last Dance,Lesson One,tt0206275 eI8o5C5l9J8,1984.0,11,12,2012,All of Me,Back in Bowl,tt0086873 aQ6ZzIC7OZk,1984.0,10,12,2012,All of Me,A Quick Little Merge,tt0086873 3VVxzAw0hzk,1984.0,8,12,2012,All of Me,Same Old Sourpuss,tt0086873 BpV5wTbvq8M,1984.0,5,12,2012,All of Me,The Little Fireman,tt0086873 ICC99mWSW1s,1984.0,7,12,2012,All of Me,A Good Spanking,tt0086873 LpPNvHq9rKQ,1984.0,12,12,2012,All of Me,A Deal,tt0086873 nE58ZtIpNSo,1984.0,4,12,2012,All of Me,It's My Body!,tt0086873 Vz0R6lgYJb4,1984.0,1,12,2012,All of Me,"The ""M"" Word",tt0086873 u14YNz-Ym2c,1984.0,9,12,2012,All of Me,Contempt of Court,tt0086873 iZ1_8kpRnW8,1984.0,6,12,2012,All of Me,Either Me or Your Balls,tt0086873 9e-6wOwlHmM,1984.0,2,12,2012,All of Me,Good Plan!,tt0086873 kHFzcXAU8hg,1984.0,3,12,2012,All of Me,What the Hell Is Happening to Me?,tt0086873 rOTyj0-PRRY,1996.0,5,11,2012,Box of Moonlight,Life is a Tomato,tt0115738 ok-pfhEHoE8,1996.0,9,11,2012,Box of Moonlight,You Help Me,tt0115738 bENL5AzvP4w,1996.0,8,11,2012,Box of Moonlight,Factory Fun,tt0115738 7sQ6ktZxmYY,1996.0,10,11,2012,Box of Moonlight,Backwards Phenomenon,tt0115738 s3TkMEuXaqs,1996.0,11,11,2012,Box of Moonlight,Kid's Gift,tt0115738 1VkkHqm3q14,1996.0,7,11,2012,Box of Moonlight,Fake Wrestling,tt0115738 4zhGIlO2Lx8,1996.0,4,11,2012,Box of Moonlight,Off the Grid,tt0115738 cMbUCMRhH9M,1996.0,6,11,2012,Box of Moonlight,Kid's Joke,tt0115738 vtXNIF662BU,1996.0,2,11,2012,Box of Moonlight,Found Jesus?,tt0115738 Bo47QGYq-LI,1996.0,3,11,2012,Box of Moonlight,Car Trouble,tt0115738 7v6zdWNRtLI,1996.0,1,11,2012,Box of Moonlight,Love Phone,tt0115738 OmBxRiaJzFg,2007.0,9,12,2012,Captivity,"Me, Not Her",tt0374563 DTpEhN9pzbs,2007.0,8,12,2012,Captivity,30 Seconds to Live,tt0374563 giegMz7BBPQ,2007.0,3,12,2012,Captivity,Acid Shower,tt0374563 iRrAI8tl8d8,2007.0,10,12,2012,Captivity,Missing Person,tt0374563 aisjDMTWr2w,2007.0,6,12,2012,Captivity,Who Are You?,tt0374563 TyPhgetzMfY,2007.0,12,12,2012,Captivity,Shooting Lessons,tt0374563 _MeA5EW8FdI,2007.0,2,12,2012,Captivity,A Lovely View,tt0374563 RUvQEHa_lZQ,2007.0,11,12,2012,Captivity,Precious Memories,tt0374563 3aCT8ZhNBrA,2007.0,5,12,2012,Captivity,Body Parts in a Blender,tt0374563 ULp3vJ6Dme8,2000.0,8,12,2012,Chuck & Buck,Sam's Audition,tt0200530 h-a0Kx3RlIg,2007.0,7,12,2012,Captivity,Sand in the Hourglass,tt0374563 b8SJezYEQHA,2007.0,1,12,2012,Captivity,Battery Acid,tt0374563 UchtzdG8HdM,2000.0,9,12,2012,Chuck & Buck,Stay Away,tt0200530 wOzRG7N8_Ic,2000.0,11,12,2012,Chuck & Buck,You Look Like This Friend of Mine,tt0200530 R7cqvLTR0vA,2007.0,4,12,2012,Captivity,Duct Escape,tt0374563 Nq1D205cXss,2000.0,6,12,2012,Chuck & Buck,I Made This,tt0200530 30shqA196uw,2000.0,10,12,2012,Chuck & Buck,"A Homoerotic, Misogynistic Love Story",tt0200530 f39I-UCl9Qo,2000.0,7,12,2012,Chuck & Buck,We Should Play a Game,tt0200530 _U8k98LPpjg,2006.0,12,12,2012,Employee of the Month,Check Stand Ring Off,tt0424993 sp4A_jU3oD0,2000.0,5,12,2012,Chuck & Buck,Chuck's Friends,tt0200530 24kOoUWjz5Q,2000.0,3,12,2012,Chuck & Buck,Buck Moves to L.A.,tt0200530 0QbMWpwr7FM,2000.0,2,12,2012,Chuck & Buck,You Should Stay,tt0200530 32OtN3z_DNs,2000.0,12,12,2012,Chuck & Buck,He Made Me This Way,tt0200530 tv25UVPcgxY,2000.0,1,12,2012,Chuck & Buck,Wanna Go See My Room?,tt0200530 UJ36_9oVTO8,2000.0,4,12,2012,Chuck & Buck,Do You Put on Plays Here?,tt0200530 d3-AXjkz3Pk,2006.0,10,12,2012,Employee of the Month,We Are All Pink,tt0424993 RywZwxSQcvo,2006.0,11,12,2012,Employee of the Month,Good to Have You Back,tt0424993 vn9awsg8BjA,2006.0,9,12,2012,Employee of the Month,Clocking In,tt0424993 049R_wOazQI,2006.0,8,12,2012,Employee of the Month,Turning Back Time,tt0424993 0eC9f13FIJ0,2006.0,6,12,2012,Employee of the Month,Big Brother,tt0424993 P63QUmBOP08,2006.0,4,12,2012,Employee of the Month,Missing Child,tt0424993 gHf9n0jhBdk,2006.0,3,12,2012,Employee of the Month,Glasses In About an Hour,tt0424993 EKd7hAoXDPU,2006.0,5,12,2012,Employee of the Month,First Date,tt0424993 dKFZ4T_Y9Pw,2006.0,7,12,2012,Employee of the Month,Break with Amy,tt0424993 PuFTYd0b6n0,2006.0,2,12,2012,Employee of the Month,The New Cashier,tt0424993 AVEnTcDIo0A,2006.0,1,12,2012,Employee of the Month,Box Boy,tt0424993 EqzhYb-Ey4c,2003.0,10,11,2012,House of the Dead,Simon's Sacrifice,tt0317676 kmGvvAof2Ww,2003.0,8,11,2012,House of the Dead,Shoot It!,tt0317676 9nqpOwh4N_Q,2003.0,11,11,2012,House of the Dead,Game Over,tt0317676 1kh5X5CJAOU,2003.0,9,11,2012,House of the Dead,Zombie Slaughter,tt0317676 CxCjXAy6HQE,2003.0,5,11,2012,House of the Dead,Zombie Cynthia,tt0317676 ye-S7zxbv9o,2003.0,7,11,2012,House of the Dead,Zombie Bridge,tt0317676 YmIShBpwLPk,2003.0,1,11,2012,House of the Dead,Captain Kirk and Mr. Salish,tt0317676 bWyLG7CWLjA,2003.0,3,11,2012,House of the Dead,Not a Good Idea,tt0317676 QSVX6S1zbjQ,2003.0,6,11,2012,House of the Dead,Defending the Boat,tt0317676 3TeYtmJXgQE,2003.0,2,11,2012,House of the Dead,,tt0317676 39zzDqksCHc,2003.0,4,11,2012,House of the Dead,A Romero Movie,tt0317676 oNI9u5Q4TLQ,1999.0,12,12,2012,Joe the King,Boarding the Bus,tt0160672 lvyRzKr6Bkk,1999.0,9,12,2012,Joe the King,Big Rat,tt0160672 BSuaYQdLqV0,1999.0,10,12,2012,Joe the King,Last Meal,tt0160672 rM3mP-39_is,1999.0,11,12,2012,Joe the King,Wrong Side of the Equation,tt0160672 gINx5_Hs8C4,1999.0,7,12,2012,Joe the King,Payback Prank,tt0160672 OjHsjB_foZI,1999.0,8,12,2012,Joe the King,Stealing From Roy,tt0160672 SDS5UH9Nnus,1999.0,4,12,2012,Joe the King,Wishing to Disappear,tt0160672 PaYl9YVeXhc,1999.0,6,12,2012,Joe the King,"Big Man, Working Man",tt0160672 UJhTR5FTd2I,1999.0,5,12,2012,Joe the King,Broken Records,tt0160672 RZziZRbaCPc,1999.0,1,12,2012,Joe the King,Career Goals,tt0160672 6e59qLPJxgI,1999.0,2,12,2012,Joe the King,Talking to Girls,tt0160672 oOFNIMMfTUg,1999.0,3,12,2012,Joe the King,Harsh Discipline,tt0160672 KJnIgY7l_nk,1997.0,7,10,2012,Joyride,Interrogation,tt0119426 OboAFE4Tr8Q,1997.0,1,10,2012,Joyride,Daydream,tt0119426 M6gOHxwffBg,1997.0,10,10,2012,Joyride,Kill the Things You Love,tt0119426 QaNag38SNno,1997.0,5,10,2012,Joyride,Dumping the Body,tt0119426 oP43IvevmjY,1997.0,2,10,2012,Joyride,Skinny Dipping,tt0119426 cHEoEuY_mTk,1997.0,4,10,2012,Joyride,What's in the Trunk?,tt0119426 _RVQuAICxc0,1997.0,9,10,2012,Joyride,Are You Dead?,tt0119426 5otacrrli04,1997.0,3,10,2012,Joyride,Stranded on a Friday Night,tt0119426 ERw4l461lhU,1997.0,6,10,2012,Joyride,Say Hello to Mr. Wiggles,tt0119426 eQMofmwnt6s,2005.0,9,10,2012,Lord of War,Evil Prevails,tt0399295 T7-sw9PhQec,1997.0,8,10,2012,Joyride,A Deal's a Deal,tt0119426 RVDyoCWz0vM,2005.0,1,10,2012,Lord of War,Title Sequence: Life of a Bullet,tt0399295 JITv11rctGg,2005.0,10,10,2012,Lord of War,A Necessary Evil,tt0399295 3rnomffKi0I,2005.0,7,10,2012,Lord of War,Emergency Landing,tt0399295 6FJfcqLCkIc,2005.0,8,10,2012,Lord of War,Free Samples!,tt0399295 45wce6oSr0M,2005.0,3,10,2012,Lord of War,The Arms Bazaar,tt0399295 EcffcR-lgtc,2005.0,6,10,2012,Lord of War,Meet President Andre,tt0399295 H99XlWQ9KsA,2005.0,4,10,2012,Lord of War,The AK-47,tt0399295 HJjBZoopPXw,2005.0,2,10,2012,Lord of War,A Good Brother,tt0399295 ISTPRoBW2sc,2005.0,5,10,2012,Lord of War,Rule of Law,tt0399295 7xWlr8_R5YY,2009.0,5,9,2012,My Bloody Valentine,Aiming at Shadows,tt1179891 cGbTf-FgG-M,2009.0,8,9,2012,My Bloody Valentine,Be Mine 4 Ever,tt1179891 BZwbVffx49M,2009.0,9,9,2012,My Bloody Valentine,I'm Retired,tt1179891 o-Hcz6we0mk,2009.0,7,9,2012,My Bloody Valentine,Something's Not Right,tt1179891 Isof3ww1UPs,2009.0,6,9,2012,My Bloody Valentine,Did You Lock Up?,tt1179891 Tpp5oqIzQL4,2009.0,4,9,2012,My Bloody Valentine,Locked Up,tt1179891 e2FdM0YQSHk,2009.0,3,9,2012,My Bloody Valentine,A Gift for Sheriff Palmer,tt1179891 7E8rxZMCldI,2009.0,2,9,2012,My Bloody Valentine,Escape from the Mine,tt1179891 8_2fitdIp4c,2009.0,1,9,2012,My Bloody Valentine,Pickaxe Through the Eye,tt1179891 XobjkWljkXw,1998.0,10,12,2012,Pi,We Got the Gun,tt0138704 1UWy_6S-ZfY,1998.0,3,12,2012,Pi,I Only Have Eyes for You,tt0138704 6_CtgelI6xU,1998.0,1,12,2012,Pi,My First Headache,tt0138704 Yv6L4DunPDE,1998.0,11,12,2012,Pi,Rabbi Cohen,tt0138704 XGZ0K5Rpacw,1998.0,12,12,2012,Pi,Max Drills His Head,tt0138704 DhhKbHpvGwk,1998.0,9,12,2012,Pi,Iodine,tt0138704 7-C1cpG6TLc,1998.0,6,12,2012,Pi,Go Board,tt0138704 ShdmErv5jvs,1998.0,2,12,2012,Pi,Restate My Assumptions,tt0138704 SzfQ2Bwhkcc,1998.0,8,12,2012,Pi,Coney Island Beach,tt0138704 P9e_I-fkJ6c,1998.0,7,12,2012,Pi,The Brain,tt0138704 OGKPmBtBpBo,1998.0,5,12,2012,Pi,Archimedes,tt0138704 3vi7043z6tI,1998.0,4,12,2012,Pi,Torah Math,tt0138704 fuCEfNfuoiM,2005.0,2,9,2012,Saw 2,The Problem,tt0432348 cIRL7jMVh8Q,2005.0,8,9,2012,Saw 2,We're in the Wrong House!,tt0432348 bYVsnJR_f80,2005.0,9,9,2012,Saw 2,Game Over,tt0432348 rm2NO3Nr3hA,2005.0,6,9,2012,Saw 2,The Razor Box,tt0432348 K2vOPpJFstM,2005.0,7,9,2012,Saw 2,Your Own Number,tt0432348 94mvgpMi-rQ,2005.0,4,9,2012,Saw 2,The Furnace,tt0432348 3CAQ0iZKP08,2005.0,5,9,2012,Saw 2,The Needle Pit,tt0432348 DX5KZHeK3bw,2005.0,3,9,2012,Saw 2,Let the Game Begin,tt0432348 Nn6y3CUpIfA,2005.0,1,9,2012,Saw 2,Venus Fly Trap,tt0432348 1DnnWl0Qkts,1994.0,11,11,2012,Swimming with Sharks,Let's Finish It,tt0114594 sW-ddNOh1hk,1994.0,10,11,2012,Swimming with Sharks,What Do You Really Want?,tt0114594 8WrFOPPepCk,1994.0,9,11,2012,Swimming with Sharks,Bathroom Break Denied,tt0114594 -I5e_GXU4Zo,1994.0,8,11,2012,Swimming with Sharks,Paper Cuts,tt0114594 NDW6AQjK3Q0,1994.0,6,11,2012,Swimming with Sharks,Destroy Time Magazine,tt0114594 _eruoEC4LsA,1994.0,7,11,2012,Swimming with Sharks,Saw This in a Movie Once,tt0114594 QtoKDVTZfSE,1994.0,5,11,2012,Swimming with Sharks,You Gotta Be A Man!,tt0114594 _qit_nq-jUk,1994.0,3,11,2012,Swimming with Sharks,Unreachable,tt0114594 nTBBQQRE0Z8,1994.0,4,11,2012,Swimming with Sharks,"Shut Up, Listen, Learn!",tt0114594 L6IPj5zl9oQ,1994.0,2,11,2012,Swimming with Sharks,I Get What I Want,tt0114594 50j2eckQ1to,1994.0,1,11,2012,Swimming with Sharks,A Pump or a Loafer,tt0114594 oXouSM2JOZk,2002.0,11,12,2012,Van Wilder,Colon Blow Protein Shake,tt0283111 8D2TivUo_zU,2002.0,4,12,2012,Van Wilder,Strip Club,tt0283111 t8yv6xn2HhQ,2002.0,12,12,2012,Van Wilder,You Fooled Around With my Daughter,tt0283111 ZWeqx9VP2zE,2002.0,10,12,2012,Van Wilder,Release Your Own Pressure,tt0283111 5GWj9H4JId0,2002.0,9,12,2012,Van Wilder,Underage Drinking,tt0283111 H44ZLiOlN0A,2002.0,8,12,2012,Van Wilder,They're So Creamy,tt0283111 h4wnyCRRi0o,2002.0,7,12,2012,Van Wilder,Special Dog Treats,tt0283111 V5xN-xNvwsw,2002.0,6,12,2012,Van Wilder,It's Kind of Hard in 15 Seconds,tt0283111 TIvNRHR6GbU,2002.0,3,12,2012,Van Wilder,Seducing Ms. Haver,tt0283111 V0BHKgbef9E,2002.0,1,12,2012,Van Wilder,Assistant Interviews,tt0283111 gZaagSRp8F4,2002.0,5,12,2012,Van Wilder,That's Not a Bong,tt0283111 2B4dnGQc9wM,2002.0,2,12,2012,Van Wilder,I Am Taj Mahal,tt0283111 -vE1JNGKvxQ,2002.0,11,11,2012,29 Palms,Put the Bag Down,tt0283090 YgqgSaDCgC4,2000.0,5,10,2012,Shadow of the Vampire,It Made Me Sad,tt0189998 7lKWPxDej7s,2002.0,9,11,2012,29 Palms,I'll Kill You,tt0283090 nDTVpRRoqcw,2002.0,10,11,2012,29 Palms,Limo Confrontation,tt0283090 FE8xpnLMZlU,2002.0,8,11,2012,29 Palms,The Contents of the Bag,tt0283090 mAtSvxJe6Yw,2002.0,5,11,2012,29 Palms,The Cop and The Hitman,tt0283090 4Qrs43i_S50,2002.0,7,11,2012,29 Palms,You Wanna Die?,tt0283090 6G7J6lZDW3E,2002.0,6,11,2012,29 Palms,Standoff,tt0283090 JZtErr7VLKE,2002.0,4,11,2012,29 Palms,Why Am I the Way I Am?,tt0283090 NG3ru8QGwl0,2002.0,3,11,2012,29 Palms,Sounds Like Fun,tt0283090 XPUqjed6k4s,2002.0,2,11,2012,29 Palms,No Smoking,tt0283090 VYQoxBs5N2A,2002.0,1,11,2012,29 Palms,Disgruntled Cop,tt0283090 aFqlaPLvkw8,2006.0,9,9,2012,Akeelah and the Bee,Winning Words,tt0437800 4t94x0N3AoU,2006.0,8,9,2012,Akeelah and the Bee,Altruistic Error,tt0437800 uQ84SYJmHYI,2006.0,7,9,2012,Akeelah and the Bee,Argillaceous,tt0437800 mgSQQjO5pwI,2006.0,6,9,2012,Akeelah and the Bee,You'll Be a Champion,tt0437800 r_3r5f1W1Oo,2006.0,4,9,2012,Akeelah and the Bee,Scrabble Showdown,tt0437800 _UZxXUwQX84,2006.0,5,9,2012,Akeelah and the Bee,Big Words Come From Little Words,tt0437800 WdDUhHl-BzM,2006.0,2,9,2012,Akeelah and the Bee,Intelligent & Insolent,tt0437800 DwKBxabn4QY,2006.0,3,9,2012,Akeelah and the Bee,Our Deepest Fear,tt0437800 jyerVX4GpBs,2007.0,10,10,2012,Before the Rains,You Must Go,tt0870195 xHlaIIyiRSw,2007.0,9,10,2012,Before the Rains,The Tribulation of T.K.,tt0870195 UCehCmHzBzw,2006.0,1,9,2012,Akeelah and the Bee,Natural Talent,tt0437800 C7_7Wco4SWY,2007.0,2,10,2012,Before the Rains,Ruthless Comeuppance,tt0870195 PmvZQglWfJM,2007.0,7,10,2012,Before the Rains,Go Back to Bed,tt0870195 IinUDFR7Sr4,2007.0,8,10,2012,Before the Rains,Presumed Guilty,tt0870195 mTHQ0fQXf-0,2007.0,6,10,2012,Before the Rains,A Tribal Matter,tt0870195 vXmHNYtFll8,2007.0,5,10,2012,Before the Rains,God Rest Your Soul,tt0870195 7Ro8QybNKu8,2007.0,1,10,2012,Before the Rains,Caught in the Act,tt0870195 _v-_KbjVPxg,2007.0,4,10,2012,Before the Rains,Without Love,tt0870195 Il1j-dS5dBs,2007.0,3,10,2012,Before the Rains,A Wounded Woman,tt0870195 rnlyf0wk0ic,2009.0,10,10,2012,Bled,Free My Soul,tt0997143 8c88JWPmDrA,2009.0,8,10,2012,Bled,Feasting on Kerra,tt0997143 XGQpnngBL_g,2009.0,9,10,2012,Bled,Choking the Vampires,tt0997143 MUFqS9iKzHw,2009.0,7,10,2012,Bled,Under the Influence,tt0997143 GUyIWu59kig,2009.0,5,10,2012,Bled,Wake Me Up!,tt0997143 8osn-0mHqC8,2009.0,6,10,2012,Bled,Forever Yours,tt0997143 GlXLG_rF9lg,2009.0,4,10,2012,Bled,So Uncool,tt0997143 X-w-beB9r3M,2009.0,3,10,2012,Bled,Come With Me,tt0997143 wweMxbvl86Q,2009.0,1,10,2012,Bled,Beast,tt0997143 jfbbUufb7jM,2009.0,2,10,2012,Bled,The Pleasure and Corruption of Spirit,tt0997143 XtTVNCZEcAs,2005.0,5,11,2012,Hostel,Death By Chainsaw,tt0450278 qSmjZYAZQp0,2005.0,4,11,2012,Hostel,Hall of Horrors,tt0450278 vgZL3KUbu8I,2005.0,3,11,2012,Hostel,I Always Wanted To Be a Surgeon,tt0450278 shIHmOihazQ,2005.0,2,11,2012,Hostel,I Go Home,tt0450278 UBMs3lfRim4,2002.0,7,10,2012,Ju-on,Empty Eyes,tt0364385 h1KasQ7pdL4,2002.0,4,10,2012,Ju-on,Under the Covers,tt0364385 tvRH4kLj-Dk,2002.0,3,10,2012,Ju-on,Bad Hair Day,tt0364385 D8aAHxbYCCs,2002.0,9,10,2012,Ju-on,Strange Reflections,tt0364385 Af6v6H6gvcQ,2002.0,10,10,2012,Ju-on,Family Curse,tt0364385 MUeixjmY950,2002.0,6,10,2012,Ju-on,Fleeing the Scene,tt0364385 7-59dVoKmik,2002.0,1,10,2012,Ju-on,Over and Over,tt0364385 UDqKtqsOwBs,2002.0,5,10,2012,Ju-on,A Mysterious Shadow,tt0364385 NELtiWqsHY8,2002.0,8,10,2012,Ju-on,Long Lost Friends,tt0364385 0oDBrYgawmI,2002.0,2,10,2012,Ju-on,Hide and Seek,tt0364385 EP6Qb7rzBmA,2002.0,6,11,2012,Men with Brooms,Beavers,tt0263734 YYlvedJn5W0,2002.0,8,11,2012,Men with Brooms,A Woman Scorned,tt0263734 AmACeERgRA4,2002.0,9,11,2012,Men with Brooms,Father and Son,tt0263734 0VRTOfZePkM,2002.0,1,11,2012,Men with Brooms,Meet the Team,tt0263734 R1ejcTtTPTY,2002.0,10,11,2012,Men with Brooms,The Final Shot,tt0263734 edVZXNgaYbE,2002.0,11,11,2012,Men with Brooms,Stuckmore Returns,tt0263734 w-jFuEpRFOM,2002.0,7,11,2012,Men with Brooms,Coach Me,tt0263734 06yqAuIbuVw,2002.0,4,11,2012,Men with Brooms,"Burning Question, Burning Stone",tt0263734 jJ-o9HHw-_s,2002.0,5,11,2012,Men with Brooms,Young vs. Old,tt0263734 ZN9EtTazTl0,2002.0,3,11,2012,Men with Brooms,400 Pounds of Defecating Menace,tt0263734 BNCwxQQcXv8,2002.0,2,11,2012,Men with Brooms,Peculiar Wish,tt0263734 uWalH3hnCyY,2002.0,6,9,2012,Secretary,Lights Out,tt0274812 POEUgs1Shqw,2002.0,5,9,2012,Secretary,I'm Your,tt0274812 Iqenc7PJze4,2002.0,9,9,2012,Secretary,"Thank You, Daddy",tt0274812 4Ufv8hcJZ_A,2002.0,8,9,2012,Secretary,I Love You,tt0274812 L5Yu-IGx0-4,2002.0,4,9,2012,Secretary,Bend Over,tt0274812 wX2AeW_M-xc,2002.0,2,9,2012,Secretary,Typos,tt0274812 ie7XVOuzf2U,2002.0,3,9,2012,Secretary,Never Cut Yourself Again,tt0274812 QflHaPOXcA4,2002.0,1,9,2012,Secretary,There's Something About You,tt0274812 rypwboimK5k,2008.0,10,10,2012,The Spirit,It Ends Tonight,tt0831887 U0get4DzXqA,2008.0,1,10,2012,The Spirit,My City Screams,tt0831887 jxIm__RPZuw,2008.0,4,10,2012,The Spirit,What Other Box?,tt0831887 WgFa1bVTQEs,2008.0,7,10,2012,The Spirit,Dental and Nazi,tt0831887 alziIIbUN9o,2008.0,6,10,2012,The Spirit,Femme Fatale,tt0831887 YnpV0k673Ug,2008.0,9,10,2012,The Spirit,A Fabulous Swap,tt0831887 OPQbpZwpLtE,2008.0,2,10,2012,The Spirit,Shut Up and Bleed,tt0831887 ITSOiqkDzrI,2008.0,3,10,2012,The Spirit,vs. The Octopus,tt0831887 AIkEAcjhQOA,2008.0,8,10,2012,The Spirit,Give Up the Ghost,tt0831887 fGV1kmATl0E,2008.0,5,10,2012,The Spirit,Plain Damn Weird,tt0831887 n1rhiQzW30k,2002.0,4,8,2012,Defiance,It's Your Brother,tt0337972 wJRb5MKvouw,2002.0,7,8,2012,Defiance,I Think You Killed Him,tt0337972 CrKUXT6JZ7M,2002.0,1,8,2012,Defiance,Randall's Out!,tt0337972 mXXucVAQdf4,2002.0,2,8,2012,Defiance,He Killed the Jonas Brothers,tt0337972 RlPaVTRPVLI,2002.0,5,8,2012,Defiance,Hit Him Again,tt0337972 27gWbiG9w5A,2002.0,6,8,2012,Defiance,A Good Way to Get Killed,tt0337972 r8cegnOVDjo,2006.0,10,10,2012,Bug,Contaminated,tt0470705 fb8Xk2_yqps,2002.0,3,8,2012,Defiance,Tommy Cross,tt0337972 2Q9h-B9OVVA,2002.0,8,8,2012,Defiance,Final Shootout,tt0337972 oR_XFDHk0Kk,2006.0,8,10,2012,Bug,Machine,tt0470705 NQdNfhG-s8k,2006.0,7,10,2012,Bug,You're Being Watched,tt0470705 TgOGj14T0M4,2006.0,6,10,2012,Bug,Pliers,tt0470705 9hbBpOHXAkc,2006.0,5,10,2012,Bug,Dr. Sweet,tt0470705 n-G24ROD5g0,2006.0,3,10,2012,Bug,Trouble with the Army,tt0470705 YShA_c8OUl4,2006.0,4,10,2012,Bug,I Don't Want Any Trouble,tt0470705 6J3zkkpEkWg,2006.0,2,10,2012,Bug,The Ex-Husband,tt0470705 NcYbRZdgLik,2006.0,1,10,2012,Bug,I'm Not an Axe Murderer,tt0470705 jqdKv0Vz0sU,2006.0,9,10,2012,Bug,I Am the Super Mother !,tt0470705 MG_o8Id_UCU,2006.0,6,8,2012,Deliver Us from Evil,Monsignor Cain's Deposition,tt0814075 SEM1DDRM5r4,2006.0,8,8,2012,Deliver Us from Evil,The Church Betrayed Me,tt0814075 JOQoxkx9uS0,2006.0,7,8,2012,Deliver Us from Evil,The Wolf and the Gatekeeper,tt0814075 aUIjcrHyvHU,2006.0,4,8,2012,Deliver Us from Evil,Power Trip,tt0814075 5nilVcDLNYs,2006.0,5,8,2012,Deliver Us from Evil,Being Catholic,tt0814075 uvQFoM1fj0E,2006.0,2,8,2012,Deliver Us from Evil,The Letter,tt0814075 ZpDnHh_JmQE,2006.0,3,8,2012,Deliver Us from Evil,The Cover Up,tt0814075 1qamIJWkKi0,2006.0,1,8,2012,Deliver Us from Evil,Oliver O'Grady,tt0814075 PypxQNMzAHM,2004.0,9,11,2012,Ginger Snaps: Unleashed,Ghost's Secrets,tt0353489 -9Cf6w28dc4,2004.0,8,11,2012,Ginger Snaps: Unleashed,The Sound of Nature,tt0353489 o3fUAorIxss,2004.0,10,11,2012,Ginger Snaps: Unleashed,Wolf vs. Wolf,tt0353489 zCpJ5qcmPnY,2004.0,11,11,2012,Ginger Snaps: Unleashed,Something's Still Alive Down There,tt0353489 OB4ppp4EAAw,2004.0,7,11,2012,Ginger Snaps: Unleashed,The Forest Creatures Wept,tt0353489 k6v2NnHxYPk,2004.0,6,11,2012,Ginger Snaps: Unleashed,Sleepover,tt0353489 AYfAyTEVnVI,2004.0,5,11,2012,Ginger Snaps: Unleashed,The Beast Attacks,tt0353489 QXqBylUsyzM,2004.0,3,11,2012,Ginger Snaps: Unleashed,Vicious Yet Constrained,tt0353489 Ke7vTfbeH0w,2004.0,2,11,2012,Ginger Snaps: Unleashed,Best-Case Scenario,tt0353489 WRslUrt2NBg,2004.0,1,11,2012,Ginger Snaps: Unleashed,He's Found You Again,tt0353489 renIgi40w5s,2004.0,4,11,2012,Ginger Snaps: Unleashed,Eulogy for Beth-Ann,tt0353489 1TeoyEPmuzA,2005.0,11,11,2012,Hostel,Director's Cut Ending,tt0450278 NVB5kj4k6O4,2005.0,10,11,2012,Hostel,Catching a Train,tt0450278 wQ6wc8oc_E8,2005.0,8,11,2012,Hostel,Eye Scream,tt0450278 _5qVrmBANTE,2005.0,6,11,2012,Hostel,The Butcher,tt0450278 VAC6RfndhMQ,2005.0,7,11,2012,Hostel,The American Client,tt0450278 Akl5BAnhh_M,2005.0,9,11,2012,Hostel,Have Gum Will Travel,tt0450278 7HHCL1eRdVo,2008.0,3,9,2012,The Love Guru,Smuggling a Schnauzer,tt0811138 xwRlSxS2azA,1996.0,8,8,2012,2 Days in the Valley,Motel Cat Fight,tt0115438 p_UeWtpIW08,1996.0,7,8,2012,2 Days in the Valley,Come Out From Behind That Tree,tt0115438 TXZ9nnOteV8,1996.0,6,8,2012,2 Days in the Valley,That Won't Fit You,tt0115438 mcWrZOrafnA,1996.0,5,8,2012,2 Days in the Valley,We Are the Police,tt0115438 KGKqdRDo-N8,1996.0,3,8,2012,2 Days in the Valley,It's Crooked,tt0115438 OXcI5qu76jY,1996.0,4,8,2012,2 Days in the Valley,I Don't Need a Nose Job?,tt0115438 8FysZvGGiz8,1996.0,2,8,2012,2 Days in the Valley,This is Where You Get Out,tt0115438 IxWEtRxzzhI,2007.0,5,10,2012,Arctic Tale,Starving in the Blizzard,tt0488508 a7K1xgoi_c4,2007.0,7,10,2012,Arctic Tale,Melting Ice,tt0488508 v-OP9DnMN-w,1996.0,1,8,2012,2 Days in the Valley,A Painful Flat Tire,tt0115438 dwecZ5D3tFY,2007.0,9,10,2012,Arctic Tale,Guarding the Food,tt0488508 OIXDhgqDYV0,2007.0,8,10,2012,Arctic Tale,Walrus Island,tt0488508 89c3RqTIxws,2007.0,3,10,2012,Arctic Tale,Arctic Wildlife,tt0488508 fhO2QtGb8tY,2007.0,10,10,2012,Arctic Tale,Newborn Polar Bear,tt0488508 7SQWhD6OeRk,2007.0,4,10,2012,Arctic Tale,Stealing Walrus Meat,tt0488508 ktGwZKWClZg,2007.0,6,10,2012,Arctic Tale,The Narwhals,tt0488508 nic5WxX4BCo,2007.0,1,10,2012,Arctic Tale,Hunting Walrus,tt0488508 -YTLGLeKoJQ,1994.0,9,9,2012,Beverly Hills Cop 3,"So Long, Foley",tt0109254 m4VP7c5UCdE,2007.0,2,10,2012,Arctic Tale,Farting Walrus,tt0488508 2vjWxyJtUdo,1994.0,2,9,2012,Beverly Hills Cop 3,Billy's Green Lines,tt0109254 RfKKArjmRHI,1994.0,7,9,2012,Beverly Hills Cop 3,The Awards Dinner,tt0109254 6u79wLUXGPQ,1994.0,8,9,2012,Beverly Hills Cop 3,Alien Attack,tt0109254 Cf3RfidFKBw,1994.0,6,9,2012,Beverly Hills Cop 3,The Annihilator 2000,tt0109254 WF724QBowDo,1994.0,5,9,2012,Beverly Hills Cop 3,Serge's Survival Boutique,tt0109254 ZhMpx9aeefY,1994.0,4,9,2012,Beverly Hills Cop 3,The Spider Rescue,tt0109254 fnH1ZtugoqU,2005.0,8,9,2012,Coach Carter,The Final Shot,tt0393162 WEnGy2hTHgA,1994.0,3,9,2012,Beverly Hills Cop 3,George Lucas at Wonderworld,tt0109254 J97F53CAA1I,2005.0,7,9,2012,Coach Carter,Timeout Pep Talk,tt0393162 eSBnFu1YnrU,2005.0,9,9,2012,Coach Carter,Not Your Storybook Ending,tt0393162 1JDAa0BvD68,1994.0,1,9,2012,Beverly Hills Cop 3,Axel in Pursuit,tt0109254 2FKPDOpKzDo,2005.0,5,9,2012,Coach Carter,A Better Life,tt0393162 2_fDhqRk_Ro,2005.0,6,9,2012,Coach Carter,Our Deepest Fear,tt0393162 1g82D68N-ys,2005.0,3,9,2012,Coach Carter,Push-Ups and Suicides,tt0393162 qUiptlAJcyQ,2005.0,2,9,2012,Coach Carter,Come-from-Behind Win,tt0393162 JomrLxDiT5g,2005.0,4,9,2012,Coach Carter,Richmond vs. Bay Hill,tt0393162 V1wAemvxNaM,2005.0,1,9,2012,Coach Carter,First Practice,tt0393162 1niI0J4kdI4,2005.0,1,9,2012,Hustle & Flow,Man Ain't Like a Dog,tt0410097 1pq96OQlUWs,2005.0,7,9,2012,Hustle & Flow,Standing Up To Skinny,tt0410097 _RsQsYJ_oWE,2005.0,9,9,2012,Hustle & Flow,On the Radio,tt0410097 7r_DI5X5ROs,2005.0,8,9,2012,Hustle & Flow,A Mix Tape for Skinny,tt0410097 _Cr0nP3k_p4,2005.0,5,9,2012,Hustle & Flow,Hard Out Here for a Pimp,tt0410097 q-y6JBpCFtI,2005.0,6,9,2012,Hustle & Flow,What Do You Want?,tt0410097 Ye-GPGstKFc,2005.0,3,9,2012,Hustle & Flow,Shake It Real Fast,tt0410097 -TzrPYcpPvY,2005.0,2,9,2012,Hustle & Flow,Spiritual Experience,tt0410097 q-StMfE8NrA,2005.0,4,9,2012,Hustle & Flow,Whoop That Trick,tt0410097 T5d-R7FDG7s,1990.0,10,10,2012,Tales from the Darkside,A Happy Ending,tt0100740 EniROJmSS8U,1990.0,9,10,2012,Tales from the Darkside,You Broke Your Vow,tt0100740 1G9ED_K_IAQ,1990.0,8,10,2012,Tales from the Darkside,A Promise,tt0100740 fvVBKWMTSRM,1990.0,4,10,2012,Tales from the Darkside,Post-Alexandrian Pictogram Porn,tt0100740 -SJAzpHg4s8,1990.0,7,10,2012,Tales from the Darkside,Cat Mouth,tt0100740 KhfsAokR-D4,1990.0,6,10,2012,Tales from the Darkside,Cat's Got Your Tongue,tt0100740 YMb-AODYc6g,1990.0,5,10,2012,Tales from the Darkside,The Cat Killed Them,tt0100740 yUd_E5dnVx0,1990.0,3,10,2012,Tales from the Darkside,Open His Eyes,tt0100740 FRogQQGQn1g,1990.0,2,10,2012,Tales from the Darkside,These Stupid Chrysanthemums,tt0100740 KRhnyD4ZLkI,1945.0,8,8,2012,The Bells of St. Mary's,,tt0037536 wzYht_EEf0U,1990.0,1,10,2012,Tales from the Darkside,Mummy Break-In,tt0100740 mSeeLOr1GKI,1945.0,6,8,2012,The Bells of St. Mary's,Better Than Breaking Their Hearts,tt0037536 re8jdVlrltA,1945.0,7,8,2012,The Bells of St. Mary's,A Special Gift,tt0037536 oxjeihyxCnY,1945.0,5,8,2012,The Bells of St. Mary's,O Sanctissima,tt0037536 9d4Zddhcqbc,1945.0,4,8,2012,The Bells of St. Mary's,A Fair Fight,tt0037536 0AspXDFcGlw,1945.0,2,8,2012,The Bells of St. Mary's,Boxing With a Nun,tt0037536 LN1WX6JkYaI,1945.0,3,8,2012,The Bells of St. Mary's,Aren't You Glad You're You?,tt0037536 CqXatBg5LtE,2007.0,4,9,2012,The Heartbreak Kid,Singing in the Car,tt0408839 V4aBCK2UWpQ,1945.0,1,8,2012,The Bells of St. Mary's,It's a Man's World,tt0037536 cH8W_cTQQvw,2007.0,8,9,2012,The Heartbreak Kid,Mariachi Meltdown,tt0408839 9mE6UqKoe5Y,2007.0,9,9,2012,The Heartbreak Kid,Love Love Love,tt0408839 zHzbei3YeFs,2007.0,7,9,2012,The Heartbreak Kid,World's Greatest Husband,tt0408839 vrCmp9js4YI,2007.0,5,9,2012,The Heartbreak Kid,Uncle Tito,tt0408839 FMcQ9qdYBUI,2007.0,6,9,2012,The Heartbreak Kid,Savage Sunburn,tt0408839 vsBwRV2b3LY,2007.0,3,9,2012,The Heartbreak Kid,Taking the Plunge,tt0408839 eMFxQti1xHU,2007.0,2,9,2012,The Heartbreak Kid,Bicycle Mugger,tt0408839 7fYY9Fk5vg0,2007.0,1,9,2012,The Heartbreak Kid,The Kids' Table,tt0408839 _qJp9DwYgck,2006.0,9,9,2012,The Last Kiss,I Miss You,tt0434139 FkDrbUQLuHY,2006.0,8,9,2012,The Last Kiss,Whatever It Takes,tt0434139 jbh5Q-eHULU,2006.0,7,9,2012,The Last Kiss,Lying About Cheating,tt0434139 fpLdP56W3do,2006.0,6,9,2012,The Last Kiss,Is He Seeing Somebody?,tt0434139 BIPpar64F5o,2006.0,4,9,2012,The Last Kiss,Strange Reunion,tt0434139 mIJdrHpr3_Q,2006.0,5,9,2012,The Last Kiss,Flesh and Blood,tt0434139 FHs_-lvHG4E,2006.0,2,9,2012,The Last Kiss,Permanent Crisis,tt0434139 GeYJEkN4fao,2006.0,1,9,2012,The Last Kiss,A Very Big Thing,tt0434139 qckVPZkmiNU,2006.0,3,9,2012,The Last Kiss,Editing My Life,tt0434139 qDTmyJdVAF0,2008.0,9,9,2012,The Love Guru,The Joker,tt0811138 t5qkPMvpDfg,2008.0,8,9,2012,The Love Guru,What is it You Can't Face?,tt0811138 JU189rHBIIQ,2008.0,2,9,2012,The Love Guru,Thicker Than a Snicker,tt0811138 OgEr2VRg6n0,2008.0,6,9,2012,The Love Guru,I Miss Prudence,tt0811138 32XOkSNoXdE,2008.0,7,9,2012,The Love Guru,More Than Words,tt0811138 Gmza139ypxw,2008.0,5,9,2012,The Love Guru,You Got A Problem?,tt0811138 il4NFf0V_HQ,2008.0,4,9,2012,The Love Guru,Bench Clearing Brawl,tt0811138 tYPUzX8KTXw,2008.0,1,9,2012,The Love Guru,"When Love Goes Wrong, Nothing Goes Right",tt0811138 8TIqqUbWUTI,2005.0,3,12,2012,2001 Maniacs,Guts and Glory Jubilee,tt0264323 1OcqJdBrRpw,2006.0,7,9,2012,Ask the Dust,Some Forgotten Dream,tt0384814 1G3a0mUEz5I,1999.0,7,10,2012,200 Cigarettes,The Worst Lover I Ever Had,tt0137338 -Ml2V9Mos-4,1999.0,10,10,2012,200 Cigarettes,Jack's Curse,tt0137338 d6Jy5tMv0GA,1999.0,9,10,2012,200 Cigarettes,A Strong Woman,tt0137338 k7koR5o-fUM,1999.0,8,10,2012,200 Cigarettes,Caught in the Act,tt0137338 EinsfcAsUoQ,2005.0,12,12,2012,2001 Maniacs,Mayor Buckman's Eye,tt0264323 Mlb3avSMD_Y,1999.0,6,10,2012,200 Cigarettes,The Desperation of Finding Someone,tt0137338 hol98WRZtz4,2005.0,7,12,2012,2001 Maniacs,Bestest Festival Ever,tt0264323 0QTBwHx-Wuw,2005.0,9,12,2012,2001 Maniacs,A Lot of Guts,tt0264323 5UnFOqWJ5SI,1999.0,4,10,2012,200 Cigarettes,Only Nine O'Clock,tt0137338 zS9ZrFqMchM,2005.0,11,12,2012,2001 Maniacs,The South Will Rise Again,tt0264323 xw5Iyx5ejO0,2005.0,10,12,2012,2001 Maniacs,Ricky On A Sticky,tt0264323 6bRqnek7R6E,1999.0,1,10,2012,200 Cigarettes,Cabbie Advice,tt0137338 pxHoR9Cc6Rg,1999.0,5,10,2012,200 Cigarettes,Crossing Onto Avenue B,tt0137338 cqlk4EfEDJQ,1999.0,3,10,2012,200 Cigarettes,Say Yes to Your Destiny,tt0137338 UvMusa65chI,1999.0,2,10,2012,200 Cigarettes,Obligation to Enjoy Yourself,tt0137338 MTJzGzdA3c8,2005.0,8,12,2012,2001 Maniacs,Horseshoes,tt0264323 qcP3rt5etd8,2005.0,4,12,2012,2001 Maniacs,Horse Rack Kill,tt0264323 jFKbSAjlJY0,2005.0,5,12,2012,2001 Maniacs,60 Second Romance,tt0264323 eP2aBRb6geI,2005.0,6,12,2012,2001 Maniacs,Suck It!,tt0264323 J_uWB_m7ML8,2004.0,8,8,2012,Alfie,What Have I Got?,tt0375173 qC7yIu-ZQZE,2005.0,1,12,2012,2001 Maniacs,It's About Respect,tt0264323 s109ZEZXQJE,2005.0,2,12,2012,2001 Maniacs,My Armadillo!,tt0264323 u7tSASIBz4Y,2004.0,8,8,2012,Against the Ropes,Thanking Jackie,tt0312329 DfNfg963uEA,2004.0,4,8,2012,Alfie,Joe,tt0375173 -HTF_tAUtkQ,2004.0,7,8,2012,Against the Ropes,You Are a Champion,tt0312329 m7_LwdyNsIQ,2004.0,7,8,2012,Alfie,What's He Got?,tt0375173 4oY9E3_6jlY,2004.0,3,8,2012,Alfie,Lift-Off,tt0375173 rBZQHST6BQQ,2004.0,2,8,2012,Alfie,Playing with Lonette,tt0375173 eLFf1LzuM1Q,2004.0,6,8,2012,Alfie,Running Into Julie,tt0375173 5jAVjQh9S8A,1991.0,9,9,2012,All I Want for Christmas,I Tried to Help Things Along,tt0101301 1fscFQfphvE,2004.0,5,8,2012,Alfie,Plenty of Experience,tt0375173 zQydroqGFbA,2004.0,1,8,2012,Alfie,I'm,tt0375173 UYOH5SCstlI,1991.0,8,9,2012,All I Want for Christmas,We Did It!,tt0101301 UEndkOUG9M4,1991.0,6,9,2012,All I Want for Christmas,I Have To Go,tt0101301 PTG0z3VWa8g,1991.0,5,9,2012,All I Want for Christmas,It's Either Me or Santa Claus,tt0101301 AKpSGtlsBws,1991.0,2,9,2012,All I Want for Christmas,That's A Pretty Tall Order,tt0101301 TuQLFcJ8Eyw,1991.0,7,9,2012,All I Want for Christmas,I Wasn't Expecting an Adventure This Christmas,tt0101301 IlLYqvnCs0o,1991.0,4,9,2012,All I Want for Christmas,Can I Use the Lap?,tt0101301 IXgeL39PXAE,1991.0,1,9,2012,All I Want for Christmas,You Can't Ask Santa Claus For That,tt0101301 DvTSWj2tgnI,1991.0,3,9,2012,All I Want for Christmas,"Better Get A Move On, Slick",tt0101301 vNrNofWBcas,1980.0,8,8,2012,American Gigolo,"I Had No Choice, I Love You",tt0080365 sWs843kQxaM,1980.0,3,8,2012,American Gigolo,Was It What You Expected?,tt0080365 Ya4RBKamUqU,1980.0,7,8,2012,American Gigolo,Why Did You Pick Me?,tt0080365 dRwiGgbaM84,1980.0,2,8,2012,American Gigolo,You Walk an Awful Thin Line,tt0080365 np_HgtPXDXE,1980.0,5,8,2012,American Gigolo,Maybe You're What I'm Looking For,tt0080365 gec4_X9J2K0,1980.0,6,8,2012,American Gigolo,Searching the Apartment,tt0080365 eoSPKSIxeek,1980.0,4,8,2012,American Gigolo,I Made You,tt0080365 Y55tkTIy5sc,2008.0,8,9,2012,American Teen,Colin Wins the Game,tt0486259 3Vimb_RuN7c,1980.0,1,8,2012,American Gigolo,I Know What I See,tt0080365 aDUZ8IC6wco,2008.0,7,9,2012,American Teen,Vandalism,tt0486259 q15Yv0rZXqs,2008.0,9,9,2012,American Teen,Jake Gets Drunk,tt0486259 WASIZITWvZs,2008.0,3,9,2012,American Teen,Hannah Won't Go To School,tt0486259 CGzMqCfxpPs,2008.0,6,9,2012,American Teen,Ganging Up on Erica,tt0486259 wYMfDxQdnUc,2008.0,4,9,2012,American Teen,Spin the Bottle,tt0486259 sdNPmpfgOMw,2008.0,1,9,2012,American Teen,Meet Megan,tt0486259 inAlpz8a0aU,2008.0,5,9,2012,American Teen,Going Viral,tt0486259 msKXGrgvzP0,2001.0,9,9,2012,An American Rhapsody,Through Different Eyes,tt0221799 iGU6Zqxfw5s,2001.0,7,9,2012,An American Rhapsody,Shooting Holes in the Door,tt0221799 wXYRFo4rrrw,2008.0,2,9,2012,American Teen,Hannah's Dreams,tt0486259 hQDDQV-oCsE,2001.0,6,9,2012,An American Rhapsody,Bad Behavior,tt0221799 SSgDunmuSAA,2001.0,4,9,2012,An American Rhapsody,Suzanne Gets Lost,tt0221799 OnYQyspzLEc,2001.0,8,9,2012,An American Rhapsody,Tragic Past,tt0221799 6Bk2AsTcdbE,2001.0,5,9,2012,An American Rhapsody,Father and Daughter,tt0221799 JSHPdnYixNo,2001.0,2,9,2012,An American Rhapsody,Bad News,tt0221799 P578OPOe02E,2001.0,3,9,2012,An American Rhapsody,"Reunited,",tt0221799 8VI6vvaZxbE,2006.0,6,9,2012,Ask the Dust,"Loud, Angry, and Poor",tt0384814 QNv1frrhj4s,2006.0,8,9,2012,Ask the Dust,Would You Say Please?,tt0384814 xfxhI_l9UYQ,2001.0,1,9,2012,An American Rhapsody,Leaving Baby Behind,tt0221799 X3aJZU6rInc,2006.0,5,9,2012,Ask the Dust,The Hard Stuff,tt0384814 Ut_lRQbeQcU,2006.0,4,9,2012,Ask the Dust,Take Off Those Shoes,tt0384814 9aaVOicCVcY,2006.0,2,9,2012,Ask the Dust,Bad Coffee,tt0384814 cETZjbXsUog,2006.0,9,9,2012,Ask the Dust,Too Ashamed to Marry,tt0384814 2baUXj3vrEs,2006.0,3,9,2012,Ask the Dust,The Land of Somewhere Else,tt0384814 36WAEsNsfng,2006.0,11,11,2012,Away from Her,Forsaken Me,tt0491747 AHudLuix7As,2006.0,1,9,2012,Ask the Dust,The Milk Heist,tt0384814 2hWZyDGHNxI,2006.0,8,11,2012,Away from Her,End of Things,tt0491747 CrMlZldzxSg,2006.0,10,11,2012,Away from Her,Pretend a Little,tt0491747 x3SUKG6l6FQ,2006.0,7,11,2012,Away from Her,Everything Reminds Me of Him,tt0491747 EdxnFXQId-0,2006.0,4,11,2012,Away from Her,A Kiss,tt0491747 AqKpGR4EocU,2006.0,5,11,2012,Away from Her,I'm Your Husband,tt0491747 TfWrCqaIAtE,2006.0,9,11,2012,Away from Her,Man With a Broken Heart,tt0491747 TbdjQ6LLFsU,2006.0,1,11,2012,Away from Her,Wine,tt0491747 TJj7YqhNxiw,2006.0,6,11,2012,Away from Her,A Depressing Visit,tt0491747 HLIVYHitYPw,2006.0,2,11,2012,Away from Her,Things I Wish Would Go Away,tt0491747 Is9bN_cdTMo,2006.0,3,11,2012,Away from Her,Goodbye,tt0491747 8fIL99qy9HU,2006.0,5,10,2012,Barnyard,Let's Boogie!,tt0414853 FWx6IsqPUKk,1992.0,5,9,2012,Bad Lieutenant,Routine Traffic Stop,tt0103759 cQA8oY5pwJQ,1992.0,8,9,2012,Bad Lieutenant,I'm Sorry!,tt0103759 ycKGXmtM6hk,1992.0,9,9,2012,Bad Lieutenant,She Forgives You,tt0103759 0aMQUngLy1Y,1992.0,7,9,2012,Bad Lieutenant,Forgiveness,tt0103759 BiO01_Fe6To,1992.0,2,9,2012,Bad Lieutenant,Corner Store Altercation,tt0103759 ukvZvl0GElQ,1992.0,3,9,2012,Bad Lieutenant,Fine Brown Stuff,tt0103759 FmiBHWtxHLA,1992.0,4,9,2012,Bad Lieutenant,Evidence,tt0103759 JQRV5_auS_Q,1992.0,6,9,2012,Bad Lieutenant,Baseball Gambling,tt0103759 hSUo-HJ01kY,2006.0,8,10,2012,Barnyard,A Cow In Our Car!,tt0414853 Wo2ZCh7vc2E,1992.0,1,9,2012,Bad Lieutenant,Drug Counselor or Drug Dealer,tt0103759 2sY8MYUTfiQ,2006.0,10,10,2012,Barnyard,Daisy Gives Birth,tt0414853 LQFM8e6gQRg,2006.0,7,10,2012,Barnyard,Cow Tips Boy,tt0414853 76ftznPZmgk,2006.0,9,10,2012,Barnyard,I Smell Fear,tt0414853 3J2Hm85PD2E,2006.0,1,10,2012,Barnyard,Farm Surfing,tt0414853 ue0MJQmrIlg,2006.0,6,10,2012,Barnyard,Fooling the Farmer,tt0414853 -Nr56-RD_g8,2006.0,2,10,2012,Barnyard,Wrong Number,tt0414853 LrSA5tw_KSc,2007.0,11,11,2012,Before the Devil Knows You're Dead,Robbing the Dealer,tt0292963 C2db3UusdPc,2006.0,4,10,2012,Barnyard,Coyote Attack!,tt0414853 90rIOemL6Xg,2006.0,3,10,2012,Barnyard,The Pizza Guy,tt0414853 7kTGVJ5OKDA,2007.0,4,11,2012,Before the Devil Knows You're Dead,No Shooting,tt0292963 ziF1CU69IEA,2007.0,8,11,2012,Before the Devil Knows You're Dead,A Settlement,tt0292963 39gtT7pdMwE,2007.0,10,11,2012,Before the Devil Knows You're Dead,I've Been Having an Affair,tt0292963 V_i1yhjzdgI,2007.0,9,11,2012,Before the Devil Knows You're Dead,Beautiful Birds of a Feather,tt0292963 qwsrKRo5gdA,2007.0,5,11,2012,Before the Devil Knows You're Dead,Nothing Connects to Anything Else,tt0292963 88fxqiFGNXY,2007.0,6,11,2012,Before the Devil Knows You're Dead,What Are You Thinking?,tt0292963 m5aE6rnmIwg,2007.0,1,11,2012,Before the Devil Knows You're Dead,The Robbery,tt0292963 aZtlkGEwfSA,2007.0,3,11,2012,Before the Devil Knows You're Dead,Mom and Pop Operation,tt0292963 4a55PnIKoz0,2007.0,7,11,2012,Before the Devil Knows You're Dead,Try to Look Normal,tt0292963 MlhH_sjxXaA,2006.0,8,8,2012,Bella,Playing at the Beach,tt0482463 O4di7-6b7eY,2007.0,2,11,2012,Before the Devil Knows You're Dead,Victimless Crime,tt0292963 EG_6BpNd0Vw,2006.0,5,8,2012,Bella,Have You Thought About Adoption?,tt0482463 uECrYxTF-pU,2006.0,2,8,2012,Bella,Nina's Pregnant,tt0482463 2OOUlE9F190,2006.0,6,8,2012,Bella,A Terrible Accident,tt0482463 ZGF2551BMIc,2006.0,7,8,2012,Bella,That's My Family,tt0482463 DDfuaxazcc4,2001.0,1,8,2012,Mostly Martha,My Mother's Recipe,tt0246772 V2E341Ilexw,2001.0,2,8,2012,Mostly Martha,Two Chefs In the Kitchen,tt0246772 D93lQnQlJcg,2006.0,4,8,2012,Bella,An Argument With the Boss,tt0482463 w7VbNRVbRQY,2006.0,3,8,2012,Bella,Not Ready to Have a Kid,tt0482463 -BOt25-zf8Q,2001.0,3,8,2012,Mostly Martha,Getting Lina to Eat,tt0246772 meDRW5WV1R8,2006.0,1,8,2012,Bella,Fired for Being Late,tt0482463 TsBMOksruxA,2001.0,5,8,2012,Mostly Martha,An Argument With Lina,tt0246772 ZqTzBhLdJO4,2001.0,6,8,2012,Mostly Martha,I'm Starting to Forget Her,tt0246772 DZ2_coKUWcc,2001.0,4,8,2012,Mostly Martha,Mario Comes to Cook,tt0246772 AdJe8nZ8crs,2001.0,7,8,2012,Mostly Martha,A Sophisticated Palate,tt0246772 3CR_U8066OY,2001.0,8,8,2012,Mostly Martha,Rare Enough?,tt0246772 wMZ5UJRpxfk,2003.0,2,8,2012,Beyond Borders,Stop the Truck,tt0294357 JvFNTD3NhH8,2003.0,7,8,2012,Beyond Borders,She Needs You,tt0294357 LbMpSo9yvZo,2003.0,5,8,2012,Beyond Borders,He's Just a Baby,tt0294357 8uHpWrtDfAU,2003.0,4,8,2012,Beyond Borders,Tampered Cargo,tt0294357 8RRzvri051s,2003.0,6,8,2012,Beyond Borders,A Plea for Those in Need,tt0294357 02064E1SHtQ,2003.0,1,8,2012,Beyond Borders,Cruel Joke,tt0294357 dMJolQgBp38,2003.0,8,8,2012,Beyond Borders,Go Get Help,tt0294357 pYXkfLVbLIQ,1994.0,8,9,2012,Blue Chips,Western Vs. Indiana,tt0109305 ptgpK6nH-5g,1994.0,9,9,2012,Blue Chips,"Neon Jams, Winning!",tt0109305 wAE0vlaKvkM,1994.0,6,9,2012,Blue Chips,Neon Goes to College,tt0109305 v4Zjie4qH04,2003.0,3,8,2012,Beyond Borders,She's in Pain,tt0294357 KUnaFhIJ17Q,1994.0,5,9,2012,Blue Chips,The S.A.T. Bet,tt0109305 iNxUsONmig8,1994.0,7,9,2012,Blue Chips,Coach Bell's Pep Talk,tt0109305 Jv_AlRfm998,1994.0,3,9,2012,Blue Chips,Meet Neon,tt0109305 ghn35eUPiIc,1994.0,4,9,2012,Blue Chips,Please Don't Step on the Kids,tt0109305 5oAIVuFPUdQ,1994.0,2,9,2012,Blue Chips,Ejected,tt0109305 zTX_mBbobME,2000.0,10,12,2012,Blair Witch 2,News at Eleven,tt0229260 WA-A3QhXx30,1992.0,7,9,2012,Dead Alive,Party Crashers,tt0103873 -5RW2xQ9pNs,2000.0,7,12,2012,Blair Witch 2,Beer Run,tt0229260 weTmdGoN_SQ,1994.0,1,9,2012,Blue Chips,How Bad Can it Get?,tt0109305 vILYE9lG3Aw,2000.0,6,12,2012,Blair Witch 2,I Have Them Too,tt0229260 4gbvjHb0ZUA,2000.0,9,12,2012,Blair Witch 2,Where Is Erica?,tt0229260 d5lyojjyMl0,2000.0,8,12,2012,Blair Witch 2,From Another Time,tt0229260 kEKqDuIl8Wo,2000.0,11,12,2012,Blair Witch 2,Who Are You?,tt0229260 dkB5SsVVlOI,2000.0,5,12,2012,Blair Witch 2,The Next Morning,tt0229260 DZpfEy3OsrI,2000.0,3,12,2012,Blair Witch 2,I Thought the Movie Was Cool,tt0229260 V9aRvKzTOc4,2000.0,12,12,2012,Blair Witch 2,Breaking News,tt0229260 Viai9bgo5KM,1992.0,9,9,2012,Boomerang,You Got to Coordinate,tt0103859 7rDK27McgEg,2000.0,1,12,2012,Blair Witch 2,Burkittsville Residents,tt0229260 UD_gJShgozE,1992.0,2,9,2012,Boomerang,Lady Eloise Seduces Marcus,tt0103859 O7VH8LKDnr0,1992.0,7,9,2012,Boomerang,No Man Can Turn This Down,tt0103859 iMzGaN5Sg3w,1992.0,4,9,2012,Boomerang,The Essence of Sex,tt0103859 NP7_SIRfo-c,1992.0,1,9,2012,Boomerang,Hammertime Feet,tt0103859 qYgpnWoRbXg,1992.0,8,9,2012,Boomerang,Strangé It Stinks So Good!,tt0103859 sdfDF8OuPPc,2000.0,4,12,2012,Blair Witch 2,Communing With Ellie,tt0229260 u1_fdJ0f2iQ,2000.0,2,12,2012,Blair Witch 2,Introductions,tt0229260 HmGeJVIfb1U,1992.0,5,9,2012,Boomerang,Racist Store Clerk,tt0103859 CaCW78inauI,1992.0,9,9,2012,Dead Alive,"You Don't Scare Me, Mum",tt0103873 v4kXrblmBE8,1992.0,6,9,2012,Boomerang,Does This Mean You Forgive Me?,tt0103859 IZGhNReGZTs,1992.0,3,9,2012,Boomerang,My Mack Daddy Vibe,tt0103859 _fap4qRqTlk,1992.0,4,9,2012,Dead Alive,"Your Mother's Dead, Lionel",tt0103873 rC6WAAlNHt4,1992.0,5,9,2012,Dead Alive,I Kick Ass for the Lord,tt0103873 _ASByCtlV_o,1992.0,8,9,2012,Dead Alive,Baby Face,tt0103873 ebNbXsFdz9w,1992.0,6,9,2012,Dead Alive,Hyperactive Baby,tt0103873 O_GMXI7Pp6c,1992.0,1,9,2012,Dead Alive,You've Got the Bite,tt0103873 _frVHCLECNQ,1992.0,2,9,2012,Dead Alive,Rat Monkey Attacks,tt0103873 8wDlH8jWxYk,1992.0,3,9,2012,Dead Alive,You're Not Well,tt0103873 XnJvHpxr1Lw,1999.0,9,9,2012,Bringing Out the Dead,Saving Cy,tt0163988 dcO8blFBl8g,1999.0,8,9,2012,Bringing Out the Dead,The City's Burning,tt0163988 lQCPntZhPPk,1999.0,7,9,2012,Bringing Out the Dead,Worst Suicide Attempt Ever,tt0163988 SfQk_TF9KJ8,1999.0,6,9,2012,Bringing Out the Dead,Ambulance Crash,tt0163988 CXJ8c0rWJsk,1999.0,4,9,2012,Bringing Out the Dead,I Be Bangin'!,tt0163988 sBpNA3HWj6Y,1999.0,2,9,2012,Bringing Out the Dead,Mr. O the Drunk,tt0163988 -NeY5tqk1N8,2009.0,3,10,2012,Brothers,Give Me the Keys,tt0838283 JrlQ3NAcPf0,1999.0,5,9,2012,Bringing Out the Dead,A Virgin Miracle,tt0163988 _h2BB1vo27s,1999.0,1,9,2012,Bringing Out the Dead,First Call of the Night,tt0163988 x1brwiNhp6Q,1999.0,3,9,2012,Bringing Out the Dead,Sick Time,tt0163988 Yo3qKhfO_V4,2009.0,9,10,2012,Brothers,Sam Loses It,tt0838283 FYh2_trJNiA,2009.0,7,10,2012,Brothers,The Truth Comes Out,tt0838283 K_jwfCn9X6E,2009.0,1,10,2012,Brothers,Family Dinner,tt0838283 c1nmARXTuvE,2009.0,2,10,2012,Brothers,"He's Dead, Tommy",tt0838283 029Mdp9jYiY,2009.0,4,10,2012,Brothers,Making the First Move,tt0838283 oN2S394WfuU,2009.0,10,10,2012,Brothers,A Family Matter,tt0838283 c3nJu9SBkis,2009.0,8,10,2012,Brothers,I Wish You Stayed Dead!,tt0838283 KVy9rgFD5js,2009.0,5,10,2012,Brothers,Kill or Be Killed,tt0838283 RnTG-5XU49o,2009.0,6,10,2012,Brothers,Did You Sleep With My Wife?,tt0838283 CMcqNCzUlGw,1999.0,11,12,2012,But I'm a Cheerleader,Simulated Sexual Lifestyle,tt0179116 y-4yAOPVjZA,1999.0,12,12,2012,But I'm a Cheerleader,Graduation,tt0179116 IBN5GruNnME,1999.0,9,12,2012,But I'm a Cheerleader,The Final Test,tt0179116 5k5l5PQJFrE,1999.0,10,12,2012,But I'm a Cheerleader,Never Felt That Way Before,tt0179116 JoNeXThhiqs,1999.0,1,12,2012,But I'm a Cheerleader,Kissing and Dreaming,tt0179116 oFEEoG2s_04,1999.0,7,12,2012,But I'm a Cheerleader,Family Therapy,tt0179116 ghaZWnGSgMI,1999.0,4,12,2012,But I'm a Cheerleader,Rediscovering Your Gender Identity,tt0179116 WQyUUpQzdto,1999.0,6,12,2012,But I'm a Cheerleader,Playing Football and Changing Diapers,tt0179116 HxyKbR3GmsY,2002.0,11,11,2012,Cabin Fever,I Made It!,tt0303816 nINkPmHZfRc,1999.0,3,12,2012,But I'm a Cheerleader,True Directions,tt0179116 8NFxckpb-CY,1999.0,8,12,2012,But I'm a Cheerleader,I'm a Heterosexual,tt0179116 F6AdQghTUis,1999.0,5,12,2012,But I'm a Cheerleader,Reporting Roots,tt0179116 9AyPzu3JmSE,2002.0,10,11,2012,Cabin Fever,Screwdrivered,tt0303816 smtDfh1TXe8,2002.0,8,11,2012,Cabin Fever,Poke it With a Stick,tt0303816 qBGFAnbZS_M,1999.0,2,12,2012,But I'm a Cheerleader,The Intervention,tt0179116 FK2rc4NbKco,2002.0,7,11,2012,Cabin Fever,Pancakes!,tt0303816 qrCkASenz7I,2002.0,4,11,2012,Cabin Fever,The Bowling Alley Story,tt0303816 jCatADs_uW8,2002.0,5,11,2012,Cabin Fever,Help Me,tt0303816 Cjg8Hj75FPQ,2002.0,2,11,2012,Cabin Fever,What's the Rifle For?,tt0303816 5d0GYRAD_aI,2002.0,9,11,2012,Cabin Fever,Very Bad Dog,tt0303816 MJJ8AJUn-p4,2002.0,6,11,2012,Cabin Fever,She's Got It,tt0303816 BxFaosg1mV4,2002.0,3,11,2012,Cabin Fever,I'm Sick,tt0303816 mFj1lf3ECK8,2002.0,1,11,2012,Cabin Fever,Cute Kid,tt0303816 B3oSlrpSf8k,2009.0,7,12,2012,Cabin Fever 2: Spring Fever,Government Takeover,tt0961722 LnDG46BruE4,2009.0,5,12,2012,Cabin Fever 2: Spring Fever,Unsafe Sex,tt0961722 PUo-B7AEAWY,2009.0,12,12,2012,Cabin Fever 2: Spring Fever,Escape from High School,tt0961722 moJvW1-7_Cw,2009.0,6,12,2012,Cabin Fever 2: Spring Fever,Bullsh** Water,tt0961722 HnqkmLTgv78,2009.0,11,12,2012,Cabin Fever 2: Spring Fever,"Giving a Hand, Losing an Eye",tt0961722 rlX19RmlimM,2009.0,8,12,2012,Cabin Fever 2: Spring Fever,What's Going On Out There?,tt0961722 UC2zyr54O2w,2009.0,1,12,2012,Cabin Fever 2: Spring Fever,Paul Takes the Bus,tt0961722 UgjmE8BWps8,2009.0,2,12,2012,Cabin Fever 2: Spring Fever,Just a Moose,tt0961722 I-xbToSaaPU,2009.0,4,12,2012,Cabin Fever 2: Spring Fever,Spiking the Punch,tt0961722 axqYHL-KPRk,2009.0,9,12,2012,Cabin Fever 2: Spring Fever,Blood on the Dance Floor,tt0961722 EYKwSLZPwV4,2005.0,4,12,2012,Cake,Hot Photographer,tt0375912 RxjCZxfPA3U,2009.0,10,12,2012,Cabin Fever 2: Spring Fever,No Help,tt0961722 egC34ixXtos,2005.0,1,12,2012,Cake,A Subtle Sheen of Desperation,tt0375912 YYc1h1Pymto,2005.0,12,12,2012,Cake,"I Like You, Too",tt0375912 DTJii7bLit0,2009.0,3,12,2012,Cabin Fever 2: Spring Fever,Choking,tt0961722 _AA7Q5bWirM,2005.0,8,12,2012,Cake,"Pippa McGee, the Romantic",tt0375912 MiyfHiRy_tI,2005.0,6,12,2012,Cake,Mysterious Mystery,tt0375912 oHpI2u95uUk,2005.0,10,12,2012,Cake,I Planned This Whole Thing,tt0375912 mLcwaMW919Q,2005.0,5,12,2012,Cake,Bridal Focus Group,tt0375912 JbRDwutWOng,2005.0,11,12,2012,Cake,Pippa and Ian Make Love,tt0375912 G-_QYRggMwM,2005.0,2,12,2012,Cake,Bra Fishing,tt0375912 FdvsQb7f7uM,2005.0,9,12,2012,Cake,Truth or Dare,tt0375912 5tpVvZo9hus,2005.0,7,12,2012,Cake,I Don't Do Relationships,tt0375912 dL2_nbhJaTs,2002.0,9,9,2012,Clockstoppers,Blowing It Up,tt0157472 OPmVkpUsbz4,2005.0,3,12,2012,Cake,Pippa's First Meeting,tt0375912 4pmBvrehyTk,2002.0,6,9,2012,Clockstoppers,Stealing Science Supplies,tt0157472 2AHC98YRBKA,2002.0,8,9,2012,Clockstoppers,Hyper-Hypertime,tt0157472 o1JgvBy3_cA,2002.0,7,9,2012,Clockstoppers,Bike Chase,tt0157472 c9vl9Rurcc8,2002.0,5,9,2012,Clockstoppers,Kicked in the Head,tt0157472 T60vdoUUk_E,2002.0,4,9,2012,Clockstoppers,Car Chase in Hypertime,tt0157472 FmG9SZNVpmk,2002.0,3,9,2012,Clockstoppers,DJ Battle,tt0157472 1uIPM6h1gDg,2009.0,10,12,2012,Crank 2: High Voltage,"Chevzilla, King of the Monsters!",tt1121931 1cFyFvO56Sw,2002.0,2,9,2012,Clockstoppers,Hypertime,tt0157472 GwkD7itIsCM,2002.0,1,9,2012,Clockstoppers,Possum Trouble,tt0157472 tqjyFalTkw0,2009.0,12,12,2012,Crank 2: High Voltage,Burning Desire,tt1121931 Wwoxu41UkNw,2009.0,11,12,2012,Crank 2: High Voltage,Young Chev Chelios,tt1121931 gU8Ksz47C54,2009.0,9,12,2012,Crank 2: High Voltage,Paranoid Fears,tt1121931 bVZ_-0df7XE,2009.0,8,12,2012,Crank 2: High Voltage,This is How It Is,tt1121931 VyS-apNPxUI,2009.0,6,12,2012,Crank 2: High Voltage,Creating Friction,tt1121931 ys3a4yA-5Eg,2009.0,7,12,2012,Crank 2: High Voltage,Catching a Ride,tt1121931 5GL9pbYS_D8,2009.0,5,12,2012,Crank 2: High Voltage,The Electric Dog Collar,tt1121931 kBJD6iSkqxw,2009.0,1,12,2012,Crank 2: High Voltage,Who's Got My Strawberry Tart?,tt1121931 VGQWULimSCg,2009.0,4,12,2012,Crank 2: High Voltage,Police Brutality,tt1121931 0GH64kmHZvs,2009.0,3,12,2012,Crank 2: High Voltage,My Kevin Costner,tt1121931 yPbgAbAimoA,2009.0,2,12,2012,Crank 2: High Voltage,The Jump Start,tt1121931 huE8fA3Ln18,2009.0,3,9,2012,Dance Flick,Acting Class,tt1153706 QQ6SadUAXWQ,2009.0,9,9,2012,Dance Flick,Prom Night,tt1153706 I54GtHWXwpc,2009.0,8,9,2012,Dance Flick,Final Dance Battle,tt1153706 pv7Y9z9ZvR8,2009.0,6,9,2012,Dance Flick,Let's Warm Up,tt1153706 k3rxddIltIA,2009.0,1,9,2012,Dance Flick,Face Off,tt1153706 VtVq2S8qp1k,2009.0,7,9,2012,Dance Flick,We Need A Break,tt1153706 CmCNWoo1TD4,2009.0,4,9,2012,Dance Flick,Gonna Have To Step It Up,tt1153706 M9MvIL2FDaM,2009.0,5,9,2012,Dance Flick,We're Ready To Battle,tt1153706 Ks2IFhAqBSE,2010.0,8,11,2012,Daybreakers,Back to Life,tt0433362 BMVmbqSR668,2010.0,11,11,2012,Daybreakers,Frankie's Sacrifice,tt0433362 JxZHAMfuwsA,2010.0,9,11,2012,Daybreakers,Burning the Subsiders,tt0433362 2RXSVTFM3hQ,2010.0,10,11,2012,Daybreakers,Truth is Like the Sun,tt0433362 04RW0CPquaE,2009.0,2,9,2012,Dance Flick,D's Final Move,tt1153706 NCm1lI1L4LQ,2010.0,5,11,2012,Daybreakers,Because of the Sun,tt0433362 ANZUU_ev5HU,2010.0,6,11,2012,Daybreakers,More Blood in My Coffee,tt0433362 lfXtePMdNMk,2010.0,7,11,2012,Daybreakers,Roadside Attack,tt0433362 SELIbxPbbh0,2010.0,2,11,2012,Daybreakers,I Can Help You,tt0433362 ZDYLUH3BImk,2010.0,4,11,2012,Daybreakers,Dodging Daylight,tt0433362 aVCOzbRPapo,2010.0,1,11,2012,Daybreakers,Test Subject,tt0433362 GCOXBnHRdmc,2010.0,3,11,2012,Daybreakers,Home Invasion,tt0433362 vz2RAznAy9Q,2008.0,4,10,2012,Drillbit Taylor,I'm,tt0817538 t1x6i73klIs,1996.0,9,10,2012,Harriet the Spy,The Child Psychologist,tt0116493 Jxk0QX01quo,2003.0,10,10,2012,Dogville,"Goodbye, Tom",tt0276919 nYoAZo7L2w4,2003.0,7,10,2012,Dogville,Chained,tt0276919 ZryPGAMBuF4,2003.0,8,10,2012,Dogville,"A Low, Tough Gear",tt0276919 NUAs-J9HatA,2003.0,6,10,2012,Dogville,The Doctrine of Stoicism,tt0276919 CApovMdNxw8,2003.0,4,10,2012,Dogville,Grace at Work,tt0276919 Ud5-cq0a1sU,2003.0,9,10,2012,Dogville,Judgment is Passed,tt0276919 wlhtHcN0wo8,2003.0,5,10,2012,Dogville,I Deserve a Spanking,tt0276919 72R97Mzaey4,1999.0,9,9,2012,Double Jeopardy,"Reunited,",tt0150377 JhGjwr3rLtc,2003.0,3,10,2012,Dogville,Willing to Learn,tt0276919 MDdgxMEIYFI,2008.0,9,10,2012,Drillbit Taylor,This Fight Is Over,tt0817538 aJl8UJ7-JiI,2003.0,2,10,2012,Dogville,A Beautiful Little Town,tt0276919 5WaI5NdGVw4,1994.0,8,9,2012,Drop Zone,He's Bluffing,tt0109676 uDr8qT3BlHM,1999.0,4,9,2012,Double Jeopardy,Library Pick-Up,tt0150377 23x_B3MpUH4,2003.0,1,10,2012,Dogville,The Beautiful Fugitive,tt0276919 rAULcuSAZeo,1999.0,8,9,2012,Double Jeopardy,Shot In The Nick of Time,tt0150377 v5-gQQunvJw,1999.0,6,9,2012,Double Jeopardy,Just Give Me Matty,tt0150377 _i9YzGZS0I8,2008.0,2,10,2012,Drillbit Taylor,Bumming to Canada,tt0817538 H-5mWBsCOaw,2008.0,10,10,2012,Drillbit Taylor,Captain Crunch in Prison,tt0817538 N72sZx-UMlg,2008.0,3,10,2012,Drillbit Taylor,Bullies on the Loose,tt0817538 HGdt0QR55Ko,1999.0,3,9,2012,Double Jeopardy,,tt0150377 XFoP9Dy1jNc,2008.0,7,10,2012,Drillbit Taylor,Phase Two: Direct Contact,tt0817538 m2REqMDEXNU,1999.0,7,9,2012,Double Jeopardy,The Prosecution Rests,tt0150377 sJusqH8NxP4,1999.0,5,9,2012,Double Jeopardy,Wet Escape,tt0150377 RslDexUKDB4,2008.0,8,10,2012,Drillbit Taylor,Mind Over Pain,tt0817538 q7DHkw_5Wzw,1989.0,8,8,2012,Drugstore Cowboy,Dianne Comes Back,tt0097240 CW_yC7l6PO4,1994.0,9,9,2012,Drop Zone,"Way to Go, Swoop!",tt0109676 dFIsw8XfF30,1999.0,2,9,2012,Double Jeopardy,Daddy,tt0150377 BpnXXI34rSs,2008.0,5,10,2012,Drillbit Taylor,They Don't Need All This Crap,tt0817538 g0CFQF54ePo,2008.0,6,10,2012,Drillbit Taylor,Hit That Beat,tt0817538 s1Y023ZS4Ms,2008.0,1,10,2012,Drillbit Taylor,Matching Shirt Geeks,tt0817538 rFXajFXNWQw,2004.0,7,8,2012,Envy,A Little Man Who Didn't Like Flan,tt0326856 sQolThygoGk,1994.0,4,9,2012,Drop Zone,Give Me A Hand,tt0109676 3qMNxVVQhzM,1994.0,7,9,2012,Drop Zone,Cut Away!,tt0109676 puXEHhZgXaY,1989.0,1,8,2012,Drugstore Cowboy,At the Pharmacy,tt0097240 bSW_sW_A8pg,1989.0,4,8,2012,Drugstore Cowboy,No Dogs,tt0097240 TksvZdrx9_A,1989.0,2,8,2012,Drugstore Cowboy,9 X 10 is 75,tt0097240 OUo2Klpa8AU,1994.0,5,9,2012,Drop Zone,There's Only One Kind of Jump,tt0109676 Cx7ip9cWKJg,1999.0,1,9,2012,Double Jeopardy,I Don't Know Where My Husband Is,tt0150377 RSvx75Md5l0,1989.0,6,8,2012,Drugstore Cowboy,Hat on the Bed Hex,tt0097240 -WN4uZXOltk,1989.0,5,8,2012,Drugstore Cowboy,Hospital Robbery,tt0097240 zJZiy6BuuLY,1989.0,3,8,2012,Drugstore Cowboy,Break-In,tt0097240 MqQ9-AP36z4,1994.0,6,9,2012,Drop Zone,"How Ya Doing Now, Sport?",tt0109676 FGcla1_O220,1994.0,2,9,2012,Drop Zone,"You Fell, You Lived, I'm Gone",tt0109676 ei2dYpiS-Us,1994.0,3,9,2012,Drop Zone,It's All Over!,tt0109676 3gCyObtqSEo,1994.0,1,9,2012,Drop Zone,Mayday!,tt0109676 YGFrKow2KfA,1989.0,7,8,2012,Drugstore Cowboy,Tom the Priest,tt0097240 Giom5_byviI,2001.0,9,9,2012,Enemy at the Gates,Endgame,tt0215750 wMvTR012Dmg,2001.0,3,9,2012,Enemy at the Gates,Do You Know How to Shoot?,tt0215750 93tR96egox4,2001.0,8,9,2012,Enemy at the Gates,Danilov's Sacrifice,tt0215750 BF-sTHMVoOc,2001.0,6,9,2012,Enemy at the Gates,Koulikov Jumps First,tt0215750 381Di8Cw0-I,2001.0,4,9,2012,Enemy at the Gates,Nikita Khrushchev,tt0215750 rRUuycF5FTU,2001.0,7,9,2012,Enemy at the Gates,Trapped,tt0215750 8yOBCGwMpeo,2001.0,1,9,2012,Enemy at the Gates,Crossing the Volga,tt0215750 0pxJFZ8HRV8,2004.0,8,8,2012,Envy,Pocket Flan,tt0326856 v91LBP6w4aI,2004.0,3,8,2012,Envy,Ernie Nice Kid,tt0326856 WTi7v77XZYs,2001.0,5,9,2012,Enemy at the Gates,Soup Time,tt0215750 eW4DpZkOe1g,2004.0,4,8,2012,Envy,Tim Kills Corky,tt0326856 bW3ur5td00I,2004.0,1,8,2012,Envy,We Are Going to Be So Rich,tt0326856 oJ3bzg-Tvt4,2001.0,2,9,2012,Enemy at the Gates,Battle of Stalingrad,tt0215750 YOxfSSv14CM,2004.0,6,8,2012,Envy,Travel Size Va-Poo-rize,tt0326856 qjbkmhtAsJo,2004.0,2,8,2012,Envy,I Believe in All Environments,tt0326856 kZGlMOfzhC4,2004.0,5,8,2012,Envy,Hide,tt0326856 yIF3Vr_at5I,2004.0,8,8,2012,Fade to Black,Second to None,tt0428518 4Sl4t9JNnuk,1997.0,6,10,2012,FairyTale: A True Story,The Burden of Proof,tt0119095 NsNN1eHv7MU,2004.0,6,8,2012,Fade to Black,They Scared to Be They Self,tt0428518 JpE65kS0aIo,1997.0,7,10,2012,FairyTale: A True Story,Finishing the Fairy House,tt0119095 9CKyWqb5-sw,2004.0,3,8,2012,Fade to Black,Dirt Off Your Shoulder,tt0428518 -fMCqLBMPPo,2004.0,7,8,2012,Fade to Black,Kanye Did His Job,tt0428518 A-BrlQ3h1i4,2004.0,4,8,2012,Fade to Black,99 Problems,tt0428518 2lavod63XMI,2004.0,5,8,2012,Fade to Black,Crazy in Love,tt0428518 LR6C2oVQr_I,1997.0,9,10,2012,FairyTale: A True Story,A Visit from the Fairies,tt0119095 PhBZ50d6Btw,1997.0,8,10,2012,FairyTale: A True Story,Do You Ever Tell Anyone?,tt0119095 MRmFis1ZxUE,2004.0,1,8,2012,Fade to Black,Champion of the World of Hip Hop,tt0428518 lAIJ6Twk8aQ,1997.0,5,10,2012,FairyTale: A True Story,Sir Arthur Meets the Girls,tt0119095 DHDOgbfwSlY,1997.0,4,10,2012,FairyTale: A True Story,Do You Believe in Fairies?,tt0119095 WjY6_V2EM04,1997.0,10,10,2012,FairyTale: A True Story,It's My Daddy,tt0119095 _r4a-vgIqgM,1997.0,1,10,2012,FairyTale: A True Story,The New Girl in Class,tt0119095 BSy7Wzj4OCY,2004.0,2,8,2012,Fade to Black,Everybody Has to Be Focused,tt0428518 6wa4qfLmyoE,2003.0,10,11,2012,Fear X,Meeting in Room 503,tt0289944 SvVYUW8r_Dk,2003.0,8,11,2012,Fear X,Are You Alone?,tt0289944 B_CRLQ8VXAg,2003.0,11,11,2012,Fear X,Into the Psyche,tt0289944 rVEFouzc6LI,2003.0,9,11,2012,Fear X,I Killed an Innocent Woman,tt0289944 XFmCXGXAZ5A,1997.0,2,10,2012,FairyTale: A True Story,I Can See Them!,tt0119095 w8td2mMGYjo,1997.0,3,10,2012,FairyTale: A True Story,Chalk Trick,tt0119095 BdgWnY2SCq4,2003.0,6,11,2012,Fear X,The Woman in the Photograph,tt0289944 NoiLYCUpS5A,2003.0,3,11,2012,Fear X,Deadly Footage,tt0289944 a_7a2sP4WMw,2003.0,1,11,2012,Fear X,Shoplifter,tt0289944 gAN-yHGtbY8,2003.0,7,11,2012,Fear X,Who's Harry Caine?,tt0289944 jKu10hihpkg,1993.0,6,8,2012,Fire in the Sky,Travis Escapes,tt0106912 mO2W96NCiRc,1993.0,8,8,2012,Fire in the Sky,Alien Experiments,tt0106912 PKr0pj8Dw6A,2003.0,2,11,2012,Fear X,That Man Murdered Your Wife,tt0289944 OaFB9lMthfU,2003.0,4,11,2012,Fear X,Sneaking Around,tt0289944 nDbBWcwu1jM,1993.0,2,8,2012,Fire in the Sky,Beamed,tt0106912 8tp5RSId2g4,2003.0,5,11,2012,Fear X,I'm Not a Murderer,tt0289944 BSBKmD2TRow,1993.0,7,8,2012,Fire in the Sky,The Space Suit Room,tt0106912 ViUbA_O3N5M,1993.0,4,8,2012,Fire in the Sky,The Lie Detector Test,tt0106912 mM2Tc_tYYKk,1993.0,5,8,2012,Fire in the Sky,Travis Returns,tt0106912 on6B12rsn9Q,1993.0,3,8,2012,Fire in the Sky,We Gotta Go Back,tt0106912 ZczgtOsK7WU,1993.0,1,8,2012,Fire in the Sky,,tt0106912 9dcybKF8Pjo,1957.0,8,9,2012,Funny Face,The Quality Woman,tt0050419 cFzsm8tKWU0,1957.0,1,9,2012,Funny Face,How Long Has This Been Going On?,tt0050419 9dCHSNdHZQs,1991.0,1,8,2012,Frankie and Johnny,Johnny's Got a Job,tt0101912 uD2mdsAwJBA,1957.0,9,9,2012,Funny Face,Clap Yo' Hands,tt0050419 s5jDTz07buw,1991.0,4,8,2012,Frankie and Johnny,I Have a Cousin Who's Gay,tt0101912 KwnTYy2p0AE,1991.0,5,8,2012,Frankie and Johnny,Does It Have To Be Tonight?,tt0101912 LOxqK6o4NN0,1991.0,3,8,2012,Frankie and Johnny,She Was Just Asking Me Out,tt0101912 HnnBvemHrWA,1991.0,2,8,2012,Frankie and Johnny,He Just Asked Her Out,tt0101912 ch6zVPr6lWM,1991.0,6,8,2012,Frankie and Johnny,Talk About a Load Off,tt0101912 6ygujqr_JWc,1991.0,8,8,2012,Frankie and Johnny,When the Bad Comes Again,tt0101912 HOr8EwpHNwY,1991.0,7,8,2012,Frankie and Johnny,Open Your Robe,tt0101912 Hp7zxA4BsKg,1957.0,3,9,2012,Funny Face,,tt0050419 RH4cgOQjITc,1957.0,7,9,2012,Funny Face,He Loves and She Loves,tt0050419 aPElaYUCTmA,1957.0,6,9,2012,Funny Face,The Big Reveal,tt0050419 ljK_2ZT44jA,1957.0,5,9,2012,Funny Face,Let's Kiss and Make Up,tt0050419 q4G5hUvL-wI,1957.0,4,9,2012,Funny Face,Bohemian Dance,tt0050419 nKCIuHUFJnY,2009.0,11,11,2012,Gamer,Mental Strength,tt1034032 cvakyq_EaWY,1957.0,2,9,2012,Funny Face,Her Face Is Perfectly Funny,tt0050419 sogf5QgMqJs,2009.0,9,11,2012,Gamer,Controlled Execution,tt1034032 JNLW2R5dYOM,2009.0,5,11,2012,Gamer,You're My Psycho,tt1034032 QnaTtsClgc4,2009.0,10,11,2012,Gamer,I Will Control Everything,tt1034032 54kfWG3V-IE,2009.0,7,11,2012,Gamer,We're All Slaves,tt1034032 lU2FHV2lr04,2009.0,8,11,2012,Gamer,I'm Getting You Out,tt1034032 EqoU4-wHxDU,2009.0,4,11,2012,Gamer,Upgrades,tt1034032 SHdKVf4jA0c,2009.0,2,11,2012,Gamer,Slayers,tt1034032 LEdvMVoFgro,2008.0,1,12,2012,Garden Party,I Know a Job You Can Get,tt0828393 x9U9Xi1yQMo,2009.0,6,11,2012,Gamer,Grand Theft Auto,tt1034032 c7StgLYxbPU,2009.0,1,11,2012,Gamer,Save Point,tt1034032 gpO1qCdOHGc,2008.0,12,12,2012,Garden Party,You Can't Quit,tt0828393 Gp22ZHf0_a0,2009.0,3,11,2012,Gamer,Trying to Stay Alive,tt1034032 zCz-i5sPrBo,2008.0,9,12,2012,Garden Party,Sally Wants Her Pictures,tt0828393 EHeR5XCO3uA,2008.0,10,12,2012,Garden Party,We Should Go Dancing,tt0828393 b_BJbecP-Xc,2008.0,7,12,2012,Garden Party,A Walk on the Wild Side,tt0828393 8SqhsheKNqg,2008.0,11,12,2012,Garden Party,Bound and Gagged,tt0828393 rqWU2zS3rJg,2008.0,5,12,2012,Garden Party,I Can't Wait to Take Your Picture,tt0828393 jlwA_X5iyBA,2008.0,8,12,2012,Garden Party,Straight to the Top,tt0828393 qPpMWDyyHy4,2005.0,5,9,2012,Get Rich or Die Tryin',Marcus Meets Bama,tt0430308 Oel3rZOooFc,2008.0,4,12,2012,Garden Party,We'll Take Care of You,tt0828393 AQAQUyNnXms,2008.0,6,12,2012,Garden Party,Davey's Date,tt0828393 MKVy1bpJCi0,2008.0,2,12,2012,Garden Party,The Best in the Neighborhood,tt0828393 6JHAWVBOq3M,2008.0,3,12,2012,Garden Party,Do You Work Out?,tt0828393 Z9GVG_9yN7M,1999.0,11,12,2012,Ghost Dog: The Way of the Samurai,Cold Lampin' with Flavor,tt0165798 fZAksSuI1R4,2005.0,7,9,2012,Get Rich or Die Tryin',"I Could Be Wrong, But I'm Right",tt0430308 ujH4hnVthhM,2005.0,4,9,2012,Get Rich or Die Tryin',Are You My Best Friend?,tt0430308 pgk_j6ehCEA,2005.0,9,9,2012,Get Rich or Die Tryin',Love Will Get You Killed,tt0430308 F4vBy7g5vpo,2005.0,2,9,2012,Get Rich or Die Tryin',I'll Never Let Her Go,tt0430308 2sROc10VoBA,2005.0,6,9,2012,Get Rich or Die Tryin',I'm Pregnant,tt0430308 MxtB_Ri0q_w,2005.0,8,9,2012,Get Rich or Die Tryin',I'd Rather Die Like a Man Than Live Like a,tt0430308 q-5e6U4CdbU,1999.0,12,12,2012,Ghost Dog: The Way of the Samurai,Final Shootout,tt0165798 -TAp26oPrvE,1999.0,5,12,2012,Ghost Dog: The Way of the Samurai,Ice Cream Freestyle,tt0165798 Qz1-NSdsqNE,1999.0,2,12,2012,Ghost Dog: The Way of the Samurai,Self Defense,tt0165798 Cgfw3cjfO6A,2005.0,3,9,2012,Get Rich or Die Tryin',Rules to Selling Crack,tt0430308 e4IJ2LyK9cs,1999.0,8,12,2012,Ghost Dog: The Way of the Samurai,I'm Your Retainer,tt0165798 -pVDJkIp5sc,2005.0,1,9,2012,Get Rich or Die Tryin',Where's the Money?,tt0430308 omYsWxT4Mbs,1999.0,7,12,2012,Ghost Dog: The Way of the Samurai,I Follow a Code,tt0165798 nAq5GhiMdSA,1999.0,10,12,2012,Ghost Dog: The Way of the Samurai,Bear Hunters,tt0165798 fIZiQDCK_Ng,1999.0,6,12,2012,Ghost Dog: The Way of the Samurai,Should I Shoot Him?,tt0165798 PgeCL2KdU_I,1999.0,3,12,2012,Ghost Dog: The Way of the Samurai,He Calls Himself Ghost Dog,tt0165798 JoPPsr14gRk,1999.0,9,12,2012,Ghost Dog: The Way of the Samurai,The Bird Man,tt0165798 rb7z1bFt79k,2004.0,8,9,2012,The Eye 2,Under the Table,tt0405061 SzzO21mg8yA,1999.0,4,12,2012,Ghost Dog: The Way of the Samurai,The Way of the Samurai,tt0165798 vjplEkEo_H8,2004.0,5,9,2012,The Eye 2,Labor Pains,tt0405061 puwOGUjUKz8,1999.0,1,12,2012,Ghost Dog: The Way of the Samurai,You Want My Rolex?,tt0165798 9hEYOiPK79g,2004.0,9,9,2012,The Eye 2,I Won't Let You Stop Me,tt0405061 c2TTFWzBuE8,2004.0,7,9,2012,The Eye 2,What Time is It?,tt0405061 xy2zgeQ7ECg,2004.0,4,9,2012,The Eye 2,Don't Hurt My Baby!,tt0405061 Nd8HPu7y8qk,2004.0,6,9,2012,The Eye 2,Accept This Reality,tt0405061 xoqU0B7BGQI,2003.0,11,12,2012,Girl with a Pearl Earring,Girl With a Pearl Earring,tt0335119 9leTC1Rk2bc,2004.0,2,9,2012,The Eye 2,Ghost in the Water,tt0405061 215DJ7KbNsY,2004.0,3,9,2012,The Eye 2,The Train Station,tt0405061 4zT8gk15yrY,2004.0,1,9,2012,The Eye 2,What Are You People Doing Here?,tt0405061 55wIwwmrHxk,1992.0,10,10,2012,Glengarry Glen Ross,I Don't Like You,tt0104348 Z8E9FEaEm8A,2003.0,7,12,2012,Girl with a Pearl Earring,Master and Maid,tt0335119 imtYtoHzPJc,2003.0,2,12,2012,Girl with a Pearl Earring,A New Masterpiece,tt0335119 8aYUJSDZHKw,2003.0,8,12,2012,Girl with a Pearl Earring,I Need to See Your Face,tt0335119 9M7i6Uaf_f4,2003.0,12,12,2012,Girl with a Pearl Earring,Catharina Sees the Painting,tt0335119 HzCGd_bsWns,2003.0,3,12,2012,Girl with a Pearl Earring,A Camera Obscura,tt0335119 rkuhTjnuQZ0,2003.0,10,12,2012,Girl with a Pearl Earring,Painting You at My Pleasure,tt0335119 YE0WStB-1cc,2003.0,5,12,2012,Girl with a Pearl Earring,Tools of the Trade,tt0335119 rtVhMrgtcq0,2003.0,4,12,2012,Girl with a Pearl Earring,The Colors of the Clouds,tt0335119 ROYuupoGarQ,1992.0,5,10,2012,Glengarry Glen Ross,So You're Here to Sell Me Land?,tt0104348 OLhu6bw5EYc,2003.0,9,12,2012,Girl with a Pearl Earring,Artistic Affection,tt0335119 RCptP8ItWmw,2003.0,6,12,2012,Girl with a Pearl Earring,Faithful to One Mistress,tt0335119 r6Lf8GtMe4M,1992.0,1,10,2012,Glengarry Glen Ross,Put That Coffee Down!,tt0104348 rW7WlT6OJxE,1992.0,9,10,2012,Glengarry Glen Ross,Where Did You Learn Your Trade?,tt0104348 kdj7BqZQfaQ,1992.0,6,10,2012,Glengarry Glen Ross,Looking Forward or Looking Back,tt0104348 P5Mn2YHVg0s,1992.0,8,10,2012,Glengarry Glen Ross,Deadbeat Leads,tt0104348 MievQTukqMM,1969.0,8,10,2012,"Goodbye, Columbus",All It Takes is Once,tt0064381 AO_t7GtXO6w,1992.0,2,10,2012,Glengarry Glen Ross,Always Be Closing,tt0104348 ZYq7Q_UW0Vo,2003.0,1,12,2012,Girl with a Pearl Earring,In Front of His Paintings,tt0335119 B2I2s9rEOCA,1969.0,10,10,2012,"Goodbye, Columbus",Brenda's Diaphragm,tt0064381 sgzxcBufwS8,1992.0,7,10,2012,Glengarry Glen Ross,Thieves,tt0104348 bzRUc3Zrvfw,1987.0,9,10,2012,Hamburger Hill,That's Why I'm Here,tt0093137 u9R34QNUy1g,1992.0,3,10,2012,Glengarry Glen Ross,I Need Those Leads,tt0104348 HapeoGg80EA,1969.0,2,10,2012,"Goodbye, Columbus","I Was Pretty, Now I'm Prettier",tt0064381 iMJnr5bhQUI,1987.0,10,10,2012,Hamburger Hill,Final Push,tt0093137 1LYn1my4jbc,1992.0,4,10,2012,Glengarry Glen Ross,Times Are Tight,tt0104348 R06Ujp-UBx0,1969.0,3,10,2012,"Goodbye, Columbus",Meet the Parents,tt0064381 RtabrwMvAuY,1969.0,1,10,2012,"Goodbye, Columbus",I'll Be Sweaty,tt0064381 enY9iKZ8mDQ,1987.0,7,10,2012,Hamburger Hill,Break-Up Letter,tt0093137 KE6dEjZ8qmg,1969.0,6,10,2012,"Goodbye, Columbus",Do You Love Me?,tt0064381 buGiJK-dXss,1987.0,5,10,2012,Hamburger Hill,Friendly Fire,tt0093137 HIf2wdbacpU,1969.0,7,10,2012,"Goodbye, Columbus",Brenda's Awkward Brother,tt0064381 oEODtP56lBc,1987.0,6,10,2012,Hamburger Hill,My Darling,tt0093137 cQhgVl3V1Rw,2009.0,1,9,2012,Happily N'Ever After 2,Once Upon a Time,tt1235837 c_69KA0PKYI,1969.0,9,10,2012,"Goodbye, Columbus",You're Next!,tt0064381 fyIATgssVJw,1987.0,3,10,2012,Hamburger Hill,This Is Han,tt0093137 iB8YcYRzDdE,1969.0,4,10,2012,"Goodbye, Columbus",Body or Mind?,tt0064381 IEfj3lH-scU,2009.0,4,9,2012,Happily N'Ever After 2,Fairy Godmother's Dating Service,tt1235837 BLHc07GYSVE,1969.0,5,10,2012,"Goodbye, Columbus",The Closet Call,tt0064381 -jiHKFt981Y,1987.0,1,10,2012,Hamburger Hill,"We Don't Start Fights, We Finish Them",tt0093137 RMRT3_djqqw,1987.0,8,10,2012,Hamburger Hill,You Haven't Earned the Right,tt0093137 jyzhfamiaQc,1987.0,2,10,2012,Hamburger Hill,Proper Dental Hygiene,tt0093137 sOpJs8Licp8,2009.0,9,9,2012,Happily N'Ever After 2,Kill the Fairest of Them All,tt1235837 50ZwjmYsIcY,2009.0,7,9,2012,Happily N'Ever After 2,Mockingbird,tt1235837 xPulA49aBZU,2009.0,5,9,2012,Happily N'Ever After 2,Poison Apple,tt1235837 _z5tcqcVgvA,2009.0,8,9,2012,Happily N'Ever After 2,Crashing the Wedding,tt1235837 885EiuL9GKg,1987.0,4,10,2012,Hamburger Hill,"It Don't Mean Nothing, Not a Thing",tt0093137 p-zGZTYN9nQ,2009.0,3,9,2012,Happily N'Ever After 2,Don't Wake the Castle,tt1235837 jG2FwGoAPNY,2009.0,2,9,2012,Happily N'Ever After 2,Like at First Sight,tt1235837 dNK-wsUHMvw,2009.0,6,9,2012,Happily N'Ever After 2,A Wolf in Sheep's Clothing,tt1235837 m9vRMtJDEVU,2005.0,10,12,2012,Happy Endings,,tt0361693 WlHZBcuKDb8,2005.0,2,12,2012,Happy Endings,Honesty,tt0361693 aM4Gyz0kd3Q,2005.0,12,12,2012,Happy Endings,Gold Digger,tt0361693 XGmHx9PAaeE,2005.0,7,12,2012,Happy Endings,We're Breaking Up,tt0361693 76S0ukfD8YU,2005.0,9,12,2012,Happy Endings,The Truth,tt0361693 T_igwYlgnZ8,2005.0,11,12,2012,Happy Endings,The Biggest Decision,tt0361693 uFzV6DktOzg,2005.0,6,12,2012,Happy Endings,Making a Movie,tt0361693 HKrJ0cZ4nDE,2005.0,8,12,2012,Happy Endings,First Session,tt0361693 vEnbBgByg98,2005.0,5,12,2012,Happy Endings,Max Is Your Kid,tt0361693 OILU3oEYu8I,2005.0,4,12,2012,Happy Endings,If It's Necessary to the Story,tt0361693 wFSW1l-Am_I,2005.0,1,12,2012,Happy Endings,It Was a Gift Certificate,tt0361693 n137CIxjKTA,2005.0,3,12,2012,Happy Endings,Why Do You Think He's a Drummer?,tt0361693 yWZtEE8C1x4,2010.0,5,9,2012,She's Out of My League,Slap Shot Regatta,tt0815236 qNCFZLQOj_M,2010.0,2,9,2012,She's Out of My League,Marni Moves On,tt0815236 b0SfZ4LMV98,2010.0,3,9,2012,She's Out of My League,Not Wearing Underwear,tt0815236 2nFh-kxiEng,2010.0,1,9,2012,She's Out of My League,Time Off,tt0815236 YwrX990kW9k,2010.0,9,9,2012,She's Out of My League,"I Do, I Will",tt0815236 LiNFLOs3BfE,2010.0,8,9,2012,She's Out of My League,A Long Flight,tt0815236 DPksJcC1e_c,2010.0,4,9,2012,She's Out of My League,Meeting the Family,tt0815236 9FIHPZrHVGs,2010.0,7,9,2012,She's Out of My League,Self-Esteem,tt0815236 2Ji7Coh4O7E,2001.0,4,9,2012,Hardball,Seeing Sammy,tt0180734 HL_VmoAOZtY,2001.0,9,9,2012,Hardball,You Showed Up,tt0180734 Wxo_5gNakBA,2010.0,6,9,2012,She's Out of My League,Honesty,tt0815236 e0qpJCNLViQ,2001.0,1,9,2012,Hardball,G-Baby Breaks It Down,tt0180734 5CrufNJ4A_Q,2001.0,8,9,2012,Hardball,G-Baby's Hit,tt0180734 dwMoiBGmH_4,2001.0,6,9,2012,Hardball,Big Poppa,tt0180734 uOmPHEVoSa4,2001.0,2,9,2012,Hardball,Those Kids Trust You,tt0180734 MM01XhEgcF0,2001.0,5,9,2012,Hardball,New Uniforms,tt0180734 NOphOh3EqKI,2001.0,3,9,2012,Hardball,Covering the Spread,tt0180734 xrgGccehkKY,2001.0,7,9,2012,Hardball,Losing G-Baby,tt0180734 o_49_kbx9yA,1996.0,3,10,2012,Harriet the Spy,Tiny Hole Inside Me,tt0116493 Lf6fX3bsCxA,1996.0,4,10,2012,Harriet the Spy,Paying for Groceries,tt0116493 E49Wkrqw_DQ,1996.0,6,10,2012,Harriet the Spy,A Good Spy Never Gets Caught,tt0116493 Hre4nTAQcIA,1996.0,8,10,2012,Harriet the Spy,Blue Paint,tt0116493 3rtbO9uOirI,1996.0,10,10,2012,Harriet the Spy,Big Slice of Heaven,tt0116493 xSTf5WyBUQ0,1996.0,7,10,2012,Harriet the Spy,The Private Notebook Revealed,tt0116493 XGgVzfEptX0,1996.0,2,10,2012,Harriet the Spy,Golly Says Goodbye,tt0116493 o2VM3B_izXw,1996.0,5,10,2012,Harriet the Spy,Experiment With Mold,tt0116493 ccX1d19hmc8,1996.0,1,10,2012,Harriet the Spy,Windchime Garden,tt0116493 -dzyuUNTwUo,1991.0,2,10,2012,"He Said, She Said",Typical Guy,tt0102011 LCxS9lUlCmE,1991.0,6,10,2012,"He Said, She Said",Family Dinner,tt0102011 qKj2c67Ht98,1991.0,9,10,2012,"He Said, She Said",Meeting the Ex,tt0102011 esXVSyflpDU,1991.0,10,10,2012,"He Said, She Said",Two Can Play That Game,tt0102011 JrPj-b18Lt4,1991.0,4,10,2012,"He Said, She Said",Only You,tt0102011 lYGDkN8xPt8,1991.0,7,10,2012,"He Said, She Said",I Have This Dance,tt0102011 fOv_N9k5im4,1991.0,8,10,2012,"He Said, She Said",With You Tonight,tt0102011 lAhQbCN-Zvg,1991.0,5,10,2012,"He Said, She Said",I Need More from You,tt0102011 ukmrk8JdGxk,1991.0,3,10,2012,"He Said, She Said",Hold the Monogamy,tt0102011 MC2MLmGhc1M,1991.0,1,10,2012,"He Said, She Said","Why Fix It, If It Ain't Broken?",tt0102011 0sdIO3lVTWE,2003.0,10,10,2012,House of 1000 Corpses,The Legend of Doctor Satan,tt0251736 HiuPgdW3E9g,2003.0,4,10,2012,House of 1000 Corpses,Showtime!,tt0251736 CLZUz1TwsDs,2007.0,9,9,2012,How She Move,JSJ Crew,tt0770810 ks32K99a1RU,2005.0,1,11,2012,Hostel,No Dutch in Amsterdam,tt0450278 BkGbYdSwFCU,2003.0,9,10,2012,House of 1000 Corpses,Run Rabbit,tt0251736 4cbfnH5APuE,2003.0,5,10,2012,House of 1000 Corpses,Getaway,tt0251736 Yg95nS9poCw,2003.0,2,10,2012,House of 1000 Corpses,Murder Ride,tt0251736 BWm1l21hBb8,2003.0,7,10,2012,House of 1000 Corpses,Agatha Crispies,tt0251736 yd13zj2PC1g,2003.0,3,10,2012,House of 1000 Corpses,Tiny,tt0251736 V82hFRJcrj0,2003.0,1,10,2012,House of 1000 Corpses,I Hate Clowns,tt0251736 2WZCKiDOQ9Q,2003.0,6,10,2012,House of 1000 Corpses,Bill AKA Fishboy,tt0251736 i3EF63p3v-I,2003.0,8,10,2012,House of 1000 Corpses,Baby Firefly's Guessing Game,tt0251736 QV6em4mxnE8,2007.0,7,9,2012,How She Move,Kin Dreadz,tt0770810 GAEBkpl1cIQ,2007.0,5,9,2012,How She Move,Do Some Damage,tt0770810 9Jwm_LHAwVo,2007.0,2,9,2012,How She Move,Think Your Step is Better Than Mine?,tt0770810 XIQbAhdlZt8,2007.0,6,9,2012,How She Move,Detroit Step Show,tt0770810 -J_tiDK1tEA,2007.0,8,9,2012,How She Move,I Want to Perform with My Team,tt0770810 9lTKjTuPGEc,2007.0,4,9,2012,How She Move,"It's a Chance, Not a Guarantee",tt0770810 aW_qXKNDWtU,2007.0,3,9,2012,How She Move,I Need This,tt0770810 uAtcsqDjOr8,1994.0,4,9,2012,Intersection,You Do Not Fit in!,tt0110146 W3WRCxy2ZaE,1994.0,9,9,2012,Intersection,He's Going Flat,tt0110146 O1fxGIiCt1E,1994.0,3,9,2012,Intersection,Would You Like to Sit Down?,tt0110146 l_7z4h0soHg,1994.0,8,9,2012,Intersection,The Crash,tt0110146 uc0l3djxQ5Y,2007.0,1,9,2012,How She Move,My Boots,tt0770810 eqk4fOK2VU8,1994.0,6,9,2012,Intersection,I Love Another Woman,tt0110146 Lgwj8KoDshs,1994.0,5,9,2012,Intersection,Are You Getting Out?,tt0110146 Kek4f12wu3o,1994.0,1,9,2012,Intersection,You're a Knock Out,tt0110146 ld9ehvuVu-8,1994.0,7,9,2012,Intersection,"By the Way, This is Vincent",tt0110146 z67cBIaUOzw,1994.0,2,9,2012,Intersection,I Don't Think This is Such a Good Idea,tt0110146 kTZLHA6zbnM,1999.0,11,11,2012,Jesus' Son,Dead Husbands,tt0186253 0xo0KxL_21U,1999.0,10,11,2012,Jesus' Son,Alive In a Deeper Sense,tt0186253 -FGNt71n2oA,1999.0,8,11,2012,Jesus' Son,The Bunnies are Dead,tt0186253 GP5MbvcXb0E,1999.0,9,11,2012,Jesus' Son,The Biggest Pill I've Ever Seen,tt0186253 Y99ODe7GzfM,1999.0,6,11,2012,Jesus' Son,First Time,tt0186253 xZYfE-65U3Y,1999.0,7,11,2012,Jesus' Son,The Cemetery Drive-In,tt0186253 ZMHEIVKg_iQ,1999.0,5,11,2012,Jesus' Son,A Stabbing Headache,tt0186253 n_Zor8p_ZsA,1999.0,1,11,2012,Jesus' Son,Meeting Michelle,tt0186253 iqH7W6dLTZY,1999.0,4,11,2012,Jesus' Son,You Stiffed Me,tt0186253 0BozXvlwFCk,1999.0,3,11,2012,Jesus' Son,Stealing Cars,tt0186253 7keYfMMBIws,1999.0,2,11,2012,Jesus' Son,Dundun,tt0186253 Kf5iT31fZN8,2005.0,9,9,2012,Just Like Heaven,It Wasn't a Dream,tt0425123 gQ3YdU0WlPw,2005.0,8,9,2012,Just Like Heaven,Stay With Me,tt0425123 27CB8wWJt94,2005.0,5,9,2012,Just Like Heaven,I Can See Your Sister's Spirit,tt0425123 jJHNJjwNUWM,2005.0,7,9,2012,Just Like Heaven,"Omigod, It's Her",tt0425123 udHPeemZ8zE,2005.0,6,9,2012,Just Like Heaven, I Love You.,tt0425123 IOmR8ZCYhzc,2005.0,4,9,2012,Just Like Heaven,Coming on Too Strong,tt0425123 TpXABjbV9cc,2005.0,3,9,2012,Just Like Heaven,She's Not Dead,tt0425123 qcMHKqF91tM,2005.0,1,9,2012,Just Like Heaven,What's Happening to Me?,tt0425123 MoInDyDrLKk,2005.0,2,9,2012,Just Like Heaven,Exorcising Elizabeth's Spirit,tt0425123 Wxy1loV9jqc,2000.0,8,9,2012,Road Trip,Mitch Unleashes the Fury,tt0215129 TsCTF8rAkqk,2010.0,9,11,2012,Kick-Ass,Show's Over,tt1250777 Va6oQ_2-jh8,2010.0,11,11,2012,Kick-Ass,Play Time's Over,tt1250777 jTGak1m5o6U,2010.0,3,11,2012,Kick-Ass,Sharp Present,tt1250777 V7yhBe0E85E,2010.0,10,11,2012,Kick-Ass,Just a Little Kid,tt1250777 h-Y7v9WyBug,2010.0,8,11,2012,Kick-Ass,Teddy Bear Surveillance,tt1250777 zZaA_9hN1Lo,2010.0,7,11,2012,Kick-Ass,The Origins of Big Daddy & Hit-Girl,tt1250777 Paei6bi8XBo,2010.0,6,11,2012,Kick-Ass,Hit-Girl Saves the Day,tt1250777 7PcolFECV_k,2010.0,5,11,2012,Kick-Ass,I'm,tt1250777 jj5CG9kzDYY,2010.0,4,11,2012,Kick-Ass,Human Microwave,tt1250777 8zUemCOntvo,2010.0,2,11,2012,Kick-Ass,'s First Day,tt1250777 -uQOkA8zuMk,2010.0,1,11,2012,Kick-Ass,Learning to Take a Bullet,tt1250777 DTXU2pMEZeA,1995.0,3,12,2012,Kicking and Screaming,I'm Too Nostalgic,tt0113537 oRMqBipT26M,1995.0,12,12,2012,Kicking and Screaming,If We Were an Old Couple,tt0113537 -qs8tLNcMVY,1995.0,11,12,2012,Kicking and Screaming,I Like a Bartender Who Drinks,tt0113537 tXmgYy1D5MA,1995.0,10,12,2012,Kicking and Screaming,Video Planet,tt0113537 XoW9HJEDk5E,1995.0,7,12,2012,Kicking and Screaming,A Visit from Dad,tt0113537 cLmDqUnUEE0,1995.0,9,12,2012,Kicking and Screaming,I've Inherited a Tragedy,tt0113537 mhPPLQqVP0c,1995.0,8,12,2012,Kicking and Screaming,"Ding That, Skippy",tt0113537 DTkzFvyvzkk,1995.0,5,12,2012,Kicking and Screaming,Book Club,tt0113537 C-qXt_tIUJY,1995.0,6,12,2012,Kicking and Screaming,Potato Is an Entree?,tt0113537 6QYrOTw1Y4w,1995.0,2,12,2012,Kicking and Screaming,Broken Glass,tt0113537 h4OULP90F0c,1995.0,4,12,2012,Kicking and Screaming,There's Food in the Beer,tt0113537 uCXHj1i42KA,1995.0,1,12,2012,Kicking and Screaming,"Oh, I've Been to Prague",tt0113537 wk34RXMFgM0,1976.0,3,9,2012,King Kong,Showering Dwan,tt0074751 P749Vnd3WSw,1976.0,8,9,2012,King Kong,An Escape-Proof Cage,tt0074751 v6Xbfyz0aXM,1976.0,9,9,2012,King Kong,Don't Kill Him!,tt0074751 5znSACsZMa0,1976.0,6,9,2012,King Kong,Trapping the Beast,tt0074751 7H_MQ4OSwPM,1976.0,7,9,2012,King Kong,The Ape Had the Right Idea,tt0074751 eopKHS8iM5Y,1976.0,4,9,2012,King Kong,A Violent Encounter,tt0074751 cNkof76o8P8,1976.0,5,9,2012,King Kong,Snake vs. Kong,tt0074751 V2wuTBrkBpU,1976.0,2,9,2012,King Kong,Put Me Down!,tt0074751 zzt_urtTkG4,1976.0,1,9,2012,King Kong,An Offering,tt0074751 cbzkmMaYSNg,2003.0,5,9,2012,Lara Croft Tomb Raider 2,Shoot Her Between the Eyes,tt0325703 1IZtDOuubT4,2003.0,9,9,2012,Lara Croft Tomb Raider 2,Lara's Choice,tt0325703 mTx6_XT9Hns,2003.0,8,9,2012,Lara Croft Tomb Raider 2,Forest Ambush,tt0325703 0awcEOEug5c,2003.0,7,9,2012,Lara Croft Tomb Raider 2,Old Feelings,tt0325703 MVSH6eiGvSM,2003.0,6,9,2012,Lara Croft Tomb Raider 2,Wingsuit Escape,tt0325703 RrrQxZ4j7t8,2003.0,3,9,2012,Lara Croft Tomb Raider 2,Lara vs. Chen,tt0325703 yOMv5lJpHwY,2003.0,4,9,2012,Lara Croft Tomb Raider 2,Rope Descent Shootout,tt0325703 ypKY-4583qM,2003.0,2,9,2012,Lara Croft Tomb Raider 2,Riding the Great Wall,tt0325703 -sq1AYZOWz0,1994.0,9,9,2012,Lassie,!,tt0110305 9z6_GAPIkTU,2003.0,1,9,2012,Lara Croft Tomb Raider 2,Shark Punch,tt0325703 q_d_fgqJna8,1994.0,6,9,2012,Lassie,Scare Them Sheep,tt0110305 Ld2g77JckSk,1994.0,8,9,2012,Lassie,They Are Not Your Sheep,tt0110305 a6uHu-9c23c,1994.0,7,9,2012,Lassie,That's My Girl,tt0110305 UOdl87tD-58,1994.0,5,9,2012,Lassie,Building a Farm,tt0110305 pUNArJgkB2U,1994.0,2,9,2012,Lassie,That Was Awesome,tt0110305 J0MXhoaoPy8,1994.0,4,9,2012,Lassie,I've Got a Sheep Dog,tt0110305 Zqp8_F9EXbw,1994.0,1,9,2012,Lassie,Can We Keep Her?,tt0110305 vBVkz1xSKFc,1994.0,3,9,2012,Lassie,vs. Wolf,tt0110305 ipc4KfTrRZs,1994.0,11,11,2012,Leprechaun 2,He's Gonna Blow!,tt0110329 b9oREoCw3ew,2004.0,2,12,2012,3 Extremes,The Secret Ingredient,tt0420251 qcFM5Xhg8W8,1994.0,9,11,2012,Leprechaun 2,Three Wishes,tt0110329 AgZGoFX8xWY,1994.0,8,11,2012,Leprechaun 2,You Kill Me!,tt0110329 Og_AVlwo94I,1994.0,10,11,2012,Leprechaun 2,Going for the Gold,tt0110329 _y5i94TfOxw,1979.0,2,10,2012,North Dallas Forty,Boy Meets Boy,tt0079640 riJRHpcshE0,1996.0,4,9,2012,Night Falls on Manhattan,Nail the Son of a Bitch,tt0119783 qlwQsJOKoIo,1979.0,3,10,2012,North Dallas Forty,Breakfast of Champions,tt0079640 1bZ_L0GOaYw,1996.0,2,9,2012,Night Falls on Manhattan,Do You Hear Me?!,tt0119783 kgSDN6_VyR0,1994.0,7,11,2012,Leprechaun 2,One of Us!,tt0110329 D4rlczOezQ8,1994.0,6,11,2012,Leprechaun 2,Welching on a Leprechaun,tt0110329 QOCLLi8inz4,1996.0,8,9,2012,Night Falls on Manhattan,Everybody's Innocent,tt0119783 fjsZJkL1lB4,1994.0,2,11,2012,Leprechaun 2,The Only Whiskey Is Irish Whiskey!,tt0110329 c17KWinVFss,1994.0,5,11,2012,Leprechaun 2,"It Ain't Much, But It's Home!",tt0110329 izxDdUcC3Ag,1994.0,4,11,2012,Leprechaun 2,A Proper Leprechaun Wedding,tt0110329 s0bxFcZV40A,1994.0,1,11,2012,Leprechaun 2,Three Sneezes,tt0110329 vEv9tQL3b-A,1995.0,9,9,2012,Losing Isaiah,I Love Him Too,tt0113691 LwNWzSruov8,1994.0,3,11,2012,Leprechaun 2,Finger-Licking Good,tt0110329 DEDWjeRGMks,1995.0,8,9,2012,Losing Isaiah,We're Always Together,tt0113691 dxsVIClobT4,1995.0,1,9,2012,Losing Isaiah,You Ain't Leaving That Baby Here,tt0113691 6GfFdTJiRmo,2001.0,11,11,2012,Lovely & Amazing,McDonald's,tt0258273 nLcCOlgev3k,1995.0,5,9,2012,Losing Isaiah,She Wants Him Back,tt0113691 V6I4cJ1kJVc,1995.0,3,9,2012,Losing Isaiah,Isaiah Grows Up,tt0113691 WSbK1kJvTkg,1995.0,6,9,2012,Losing Isaiah,I'm His Mother,tt0113691 r9z4qCu9sTw,2001.0,7,11,2012,Lovely & Amazing,You're Lovely and Amazing,tt0258273 lOaaPz6E6ms,1995.0,7,9,2012,Losing Isaiah,What About Love?,tt0113691 TtLvNyDGUg8,1995.0,4,9,2012,Losing Isaiah,I Threw Him Away,tt0113691 MNWmA8mmbH4,1995.0,2,9,2012,Losing Isaiah,Stop the Blade,tt0113691 yfrnQMbd64w,2001.0,8,11,2012,Lovely & Amazing,First Dates,tt0258273 fJ0myLkUGjk,2001.0,10,11,2012,Lovely & Amazing,We're in a Relationship,tt0258273 R0k1CGlHAtY,2001.0,6,11,2012,Lovely & Amazing,I'm Jewish,tt0258273 bIcPNZlEW8w,2001.0,3,11,2012,Lovely & Amazing,Elizabeth's Audition,tt0258273 gLEioQymzKc,2001.0,9,11,2012,Lovely & Amazing,She is Dying,tt0258273 NjN_jPTXHys,2001.0,4,11,2012,Lovely & Amazing,Stepping on Michelle's Art,tt0258273 hFON-hiGW8g,2001.0,5,11,2012,Lovely & Amazing,Michelle Gets a Job,tt0258273 9j0tqkW7Bd8,2001.0,1,11,2012,Lovely & Amazing,These Won't Sell,tt0258273 l0-EYjaAurE,2001.0,2,11,2012,Lovely & Amazing,What is Reality?,tt0258273 1RTpXJVozSY,2005.0,8,9,2012,Mad Hot Ballroom,A Dramatic Improvement,tt0438205 _K6U3FyJBv4,2005.0,9,9,2012,Mad Hot Ballroom,Dancing the Swing,tt0438205 pUtdFHAAGhE,2005.0,2,9,2012,Mad Hot Ballroom,Not in the Mood For Boys,tt0438205 9oDHw4wwTQI,2005.0,7,9,2012,Mad Hot Ballroom,The Crowd Goes Wild!,tt0438205 _deZCO2ojAo,2005.0,6,9,2012,Mad Hot Ballroom,What I Want For These Kids,tt0438205 zhXaZ2a1NcU,2005.0,1,9,2012,Mad Hot Ballroom,Boys vs. Girls,tt0438205 xehwopjgKGU,2005.0,3,9,2012,Mad Hot Ballroom,Surprise Partner,tt0438205 LtCy6T9d6-s,2005.0,5,9,2012,Mad Hot Ballroom,Dealing With Losing,tt0438205 C-DCupYm66Q,2005.0,4,9,2012,Mad Hot Ballroom,Quarter Finals Competition,tt0438205 ajvCMC8Na3M,2003.0,8,8,2012,Marci X,Vote for Spinkle,tt0266747 WB9uluVLP9g,2003.0,7,8,2012,Marci X,"No, We Do NOT Know What You're Saying!",tt0266747 _fPBDSFxGq4,2003.0,6,8,2012,Marci X,In the Butt,tt0266747 YzPOjXIwbu8,2003.0,3,8,2012,Marci X,Auction for the Doctor of Love,tt0266747 IqefatGKx68,2003.0,5,8,2012,Marci X,Cuff Me?,tt0266747 bN3U1IwMvhI,2003.0,2,8,2012,Marci X,"Hey Guy, Let's Date!",tt0266747 OFmxUUOxZl8,2003.0,4,8,2012,Marci X,We Are in Kenya,tt0266747 r-Pl3TQJqhE,2007.0,6,10,2012,Margot at the Wedding,Bookstore Q&A,tt0757361 zriRtxv9jf0,2006.0,2,9,2012,Neil Young: Heart of Gold,Far From Home,tt0473692 uxvN1tNASYo,2003.0,1,8,2012,Marci X,Power in My Purse,tt0266747 lyCbXVV-PAY,2007.0,3,10,2012,Margot at the Wedding,Swimming at the Koosman's,tt0757361 0PcN_4_J6b8,2007.0,1,10,2012,Margot at the Wedding,A Game of Croquet,tt0757361 AbI_r4kXbcQ,2007.0,2,10,2012,Margot at the Wedding,Margot Climbs the Tree,tt0757361 pe1z-Tdk36M,2007.0,5,10,2012,Margot at the Wedding,I'll Punch Your Sister,tt0757361 jQ903giVNAg,2005.0,1,8,2012,Match Point,Scoring a Date,tt0416320 bnIEGNhW3ZY,2007.0,10,10,2012,Margot at the Wedding,I Miss You So Much,tt0757361 SEaGeyLjBUU,2007.0,7,10,2012,Margot at the Wedding,Have You Ever Cheated On Me?,tt0757361 OCXvMchSYX4,2005.0,7,8,2012,Match Point,Are You Having an Affair?,tt0416320 vVjfW-P5yZY,2005.0,5,8,2012,Match Point,Kiss in the Rain,tt0416320 HaTAZMTwVoM,2007.0,4,10,2012,Margot at the Wedding,I'm Pregnant,tt0757361 Fj7KNHxzYjc,2007.0,8,10,2012,Margot at the Wedding,You're an A**hole,tt0757361 eqYhouRLYis,2000.0,7,7,2012,Memento,"When My Eyes Are Closed, The World's Still Here",tt0209144 8N6q0Yprfwk,2007.0,9,10,2012,Margot at the Wedding,She Pooped Her Pants,tt0757361 W3-UIdApbyw,2000.0,6,7,2012,Memento,You Make Up Your Own Truth,tt0209144 qTIc6y5mojw,2005.0,6,8,2012,Match Point,Reconnecting,tt0416320 Hj9WsioJbJw,2005.0,2,8,2012,Match Point,An Aggressive Game,tt0416320 SJHWGDkIxNM,2001.0,9,9,2012,Mean Machine,The Game Winner,tt0291341 IvWyoUACISc,2001.0,5,9,2012,Mean Machine,Danny's Story,tt0291341 EFgCZDRkacU,2005.0,8,8,2012,Match Point,In for Questioning,tt0416320 u_Bfpbz3owc,2005.0,3,8,2012,Match Point,Believing in Luck,tt0416320 KduMYNqIGBA,2005.0,4,8,2012,Match Point,Something Very Special,tt0416320 KDyJYLDyBzc,2001.0,8,9,2012,Mean Machine,Monk to Save the Day,tt0291341 mbPEuV3NJIg,2001.0,6,9,2012,Mean Machine,Lightning Can Strike Twice,tt0291341 QJ3Z0TSIpE0,2000.0,5,7,2012,Memento,Can You Get Angry?,tt0209144 G9wDgZk1s6E,2001.0,7,9,2012,Mean Machine,Goal!!!,tt0291341 R5409gLbXuw,2000.0,2,7,2012,Memento,My Wife Deserves Vengeance,tt0209144 zBjq9UbpCtQ,2001.0,3,9,2012,Mean Machine,Doc's Story,tt0291341 c__26Uyp5eU,2001.0,2,9,2012,Mean Machine,Try-Outs,tt0291341 hgGf5X8-j1s,2000.0,3,7,2012,Memento,Will You Remember Me?,tt0209144 Zzuc4RiUjJs,2001.0,4,9,2012,Mean Machine,It's Showtime!,tt0291341 Rh-nBzPUoOk,2001.0,1,9,2012,Mean Machine,Solitary Confinement,tt0291341 UyVSJcL-7BA,2000.0,4,7,2012,Memento,I Know I Can't Have Her Back,tt0209144 i_Y5UB3xxW8,2000.0,1,7,2012,Memento,I Finally Found Him,tt0209144 OXvNnV-cwFQ,1996.0,8,10,2012,Mother,Oedipus Complex,tt0117091 Z7C6L3yRYGM,1996.0,6,10,2012,Mother,Shopping,tt0117091 H46x8fD7WzE,1996.0,10,10,2012,Mother,Follow Me,tt0117091 3MK7O6w2Mz8,1996.0,9,10,2012,Mother,We Know Why She Hates Me,tt0117091 Lg69Gwv4tOM,1996.0,7,10,2012,Mother,A Trip to the Mall,tt0117091 Z8vCm7TUK8c,1996.0,1,10,2012,Mother,Does That Look a Little Green to You?,tt0117091 RcqR5cnQyUo,1996.0,3,10,2012,Mother,Mrs. Henderson,tt0117091 8iqKSKK9_uQ,1996.0,2,10,2012,Mother,I'm Gonna Move Back in With,tt0117091 1cCEE8-jhus,1996.0,4,10,2012,Mother,That's a Lot of Cheese,tt0117091 3SGIHbvcTRc,1996.0,5,10,2012,Mother,Sweet Tooth,tt0117091 Z-GoRxX2exA,1997.0,8,10,2012,Mousehunt,Auction Awkwardness,tt0119715 TVAhhVrpkwM,1997.0,3,10,2012,Mousehunt,Mouse Traps,tt0119715 I0YUjv1u-Gw,1997.0,10,10,2012,Mousehunt,String Cheese,tt0119715 19WT40D513Q,1997.0,9,10,2012,Mousehunt,The House Floods,tt0119715 8I5_zsRI4Zo,1997.0,6,10,2012,Mousehunt,The Bug Bomb Goes Off,tt0119715 ji4pvRXDMOY,1997.0,7,10,2012,Mousehunt,Find a Blunt Object!,tt0119715 WrnyKH7u6DQ,1997.0,4,10,2012,Mr. Jealousy,What Lester Does in Therapy,tt0119717 LwioGjicbRw,1997.0,9,10,2012,Mr. Jealousy,Eternally Grateful and Terminally Smitten,tt0119717 irQ89Ny0HkI,1997.0,5,10,2012,Mousehunt,Smells Like Gas,tt0119715 cku1N8eCUlo,1997.0,2,10,2012,Mousehunt,Sleeping Mouse,tt0119715 DDv-GQjcZDA,1997.0,8,10,2012,Mr. Jealousy,Secrets Revealed,tt0119717 ziPAPWBYU5A,1997.0,4,10,2012,Mousehunt,Caesar the Exterminator,tt0119715 e-KbcJI8Rl4,1997.0,7,10,2012,Mr. Jealousy,Rekindling an Old Flame,tt0119717 cidI_7BQUJE,1997.0,10,10,2012,Mr. Jealousy,"How Does Your Story End, Lester?",tt0119717 Pu5OjNuJl30,1997.0,1,10,2012,Mr. Jealousy,Spying on Dashiell,tt0119717 fnl5_3zT1d4,1997.0,6,10,2012,Mr. Jealousy,Ramona's Confession,tt0119717 hXg2LXOwsoA,1997.0,5,10,2012,Mr. Jealousy,Guys' Night Out,tt0119717 cktXSK7io8U,1987.0,7,11,2012,Near Dark,Check-Out Time,tt0093605 fTEPaF5TjWU,1987.0,4,11,2012,Near Dark,The Drink's on Me,tt0093605 xfwm9CY5dao,1997.0,1,10,2012,Mousehunt,Cockroach Dinner,tt0119715 ufcsS9E-JVs,1987.0,6,11,2012,Near Dark,Finger-Lickin' Good!,tt0093605 2QLbTjd693M,1987.0,10,11,2012,Near Dark,Bull's Eye!,tt0093605 SKEvjOq6L6o,1997.0,2,10,2012,Mr. Jealousy,Unfaithful Relationships,tt0119717 ic5tRp5nKOE,1997.0,3,10,2012,Mr. Jealousy,Where Were You?,tt0119717 qHm2lHzV7tM,1987.0,5,11,2012,Near Dark,This Isn't Gonna Hurt,tt0093605 ClrfnLtqXYo,1987.0,9,11,2012,Near Dark,She's Mine,tt0093605 1iiGGpwLdQc,1987.0,11,11,2012,Near Dark,Sunrise Burns,tt0093605 BSEx_EMtQW8,2006.0,8,9,2012,Neil Young: Heart of Gold,Comes a Time,tt0473692 c_BMbnWPWnU,2006.0,9,9,2012,Neil Young: Heart of Gold,One of These Days,tt0473692 U_0oVOS3LC4,2006.0,6,9,2012,Neil Young: Heart of Gold,Heart of Gold,tt0473692 Y-N5lfNPLnY,2006.0,5,9,2012,Neil Young: Heart of Gold,Harvest Moon,tt0473692 ddm0aMIKiqY,2006.0,3,9,2012,Neil Young: Heart of Gold,It's a Dream,tt0473692 SZDFWDc58TE,2006.0,7,9,2012,Neil Young: Heart of Gold,Old Man,tt0473692 4Xvu9fzPGhA,2006.0,4,9,2012,Neil Young: Heart of Gold,This Old Guitar,tt0473692 10GtbJs6GEw,1987.0,2,11,2012,Near Dark,Capturing Caleb,tt0093605 ZfCZwP2Qe60,1987.0,3,11,2012,Near Dark,You Could Kill Me If You Drink Too Much,tt0093605 odWPv33yKAk,1987.0,8,11,2012,Near Dark,We Keep Odd Hours,tt0093605 QsXsfrk06-I,1987.0,1,11,2012,Near Dark,Horses Just Don't Like Me,tt0093605 eR_BcTP8HOM,1996.0,5,9,2012,Night Falls on Manhattan,Washington Surrenders Unscathed,tt0119783 PPMM8VRgEUk,1996.0,9,9,2012,Night Falls on Manhattan,You're Garbage! You're Nothing!,tt0119783 AWLkXfNg6ek,1979.0,7,10,2012,North Dallas Forty,You the Best,tt0079640 f5f86alm7jk,1996.0,6,9,2012,Night Falls on Manhattan,They're Coming On After You,tt0119783 6f5ggdRQuB8,1996.0,3,9,2012,Night Falls on Manhattan,Case Closed,tt0119783 D3XYhRv-rBU,1979.0,9,10,2012,North Dallas Forty,Final Play of the Game,tt0079640 DCT__l4_m4g,1979.0,8,10,2012,North Dallas Forty,Pre-Game Final Words,tt0079640 HYvwDxWCSwM,1996.0,7,9,2012,Night Falls on Manhattan,Tiny White Sneakers,tt0119783 TWqf3iE2Gk8,1979.0,4,10,2012,North Dallas Forty,Ice Bath & Beers,tt0079640 Q3kOA_8ws6A,1996.0,1,9,2012,Night Falls on Manhattan,"Send Back-Up, Come Heavy",tt0119783 wOp2t0IKnUo,1979.0,6,10,2012,North Dallas Forty,Full-Speed Scrimmage,tt0079640 I6mpHW3SMcc,1979.0,10,10,2012,North Dallas Forty,It's a Sport Not a Business,tt0079640 xtz6dAjWz3g,2006.0,7,8,2012,Perfume,An Angel,tt0396171 I4hc-GcHCsE,1979.0,1,10,2012,North Dallas Forty,A Quarterback Sandwich,tt0079640 EwdFmqEvG7M,2003.0,10,10,2012,Northfork,Window Shopping,tt0322659 WEszqunyV0M,1979.0,5,10,2012,North Dallas Forty,Serious Training,tt0079640 MjFgD2yLBI4,2003.0,5,10,2012,Northfork,A Thousand Miles,tt0322659 JWUrJ-zH7fw,2003.0,6,10,2012,Northfork,The Bottom Feeders,tt0322659 te366vMoW0E,1975.0,7,10,2012,Once Is Not Enough,Daddy Issues,tt0073190 kRWvfBinmWw,2003.0,3,10,2012,Northfork,The Evacuation Committee,tt0322659 YCN_nis2E84,2003.0,9,10,2012,Northfork,I'm Happy,tt0322659 BF4-iXXZE-s,1975.0,9,10,2012,Once Is Not Enough,Busted,tt0073190 OYuE4tFH7lc,2003.0,8,10,2012,Northfork,Your Boat Doesn't Float,tt0322659 fp86WZ7Jn5g,1975.0,3,10,2012,Once Is Not Enough,I'd Kill for Ya,tt0073190 VlGVLpW7Dsw,2003.0,2,10,2012,Northfork,I Gave You an Angel,tt0322659 -_HlyIgHUa0,2003.0,7,10,2012,Northfork,Two Types of People,tt0322659 wQhcRCuORak,2003.0,1,10,2012,Northfork,The Dam Opening Ceremony,tt0322659 PiyaX2sq_wk,1975.0,10,10,2012,Once Is Not Enough,It's Over,tt0073190 x8kclPvcsTI,1999.0,8,8,2012,Payback,The Train Station,tt0120784 Lc1MmNI8jLc,2003.0,4,10,2012,Northfork,Ever Smell Death?,tt0322659 Er3iFTlMpmc,1975.0,4,10,2012,Once Is Not Enough,Catching Up,tt0073190 xaOERHG7Qr8,2006.0,5,8,2012,Perfume,Excommunicated,tt0396171 IpQkAn4FnkY,1975.0,2,10,2012,Once Is Not Enough,Go Faster,tt0073190 bLjFBMuBc68,1975.0,5,10,2012,Once Is Not Enough,"Frankly, I'd Love to Sleep with You",tt0073190 HHlf5HhqdOs,1975.0,6,10,2012,Once Is Not Enough,Why Him?,tt0073190 MTRBtcsZwjw,1975.0,8,10,2012,Once Is Not Enough,Lovestruck,tt0073190 ki8KblCCOuA,1999.0,6,8,2012,Payback,Fairfax,tt0120784 SFHSKaQESeI,2006.0,8,8,2012,Perfume,Purely Out of Love,tt0396171 0r4uUQBLokk,1999.0,3,8,2012,Payback,Let Her Work,tt0120784 qkTP21NTcgM,1999.0,5,8,2012,Payback,Kill Carter,tt0120784 vqlURGjq4AM,1975.0,1,10,2012,Once Is Not Enough,Washed Up,tt0073190 Ku9rtTERy1A,1999.0,7,8,2012,Payback,Hubba-Hubba-Hubba,tt0120784 WTs3TbtIwUA,1999.0,4,8,2012,Payback,Forgot My Cigarettes,tt0120784 WyjaZFv4lgI,1999.0,2,8,2012,Payback,Wrong Answer,tt0120784 ePUgjJofgq8,1999.0,1,8,2012,Payback,The Hit,tt0120784 xUAn-hrMa0A,1992.0,5,9,2012,Pet Sematary 2,Bully Treatment,tt0105128 ilZqZaSUC0Y,2006.0,6,8,2012,Perfume,Water Dunking,tt0396171 hrcFkSMZBng,2006.0,2,8,2012,Perfume,Distilling Scent,tt0396171 -o8b7tsVH64,2006.0,4,8,2012,Perfume,Human,tt0396171 8wTnBC7doPk,2006.0,3,8,2012,Perfume,No Smell of His Own,tt0396171 4F5sPA5E27o,2006.0,1,8,2012,Perfume,The Plum Girl,tt0396171 Q9szFqOlDJc,1992.0,9,9,2012,Pet Sematary 2,I'm Melting,tt0105128 OwCO4rmsct0,1992.0,8,9,2012,Pet Sematary 2,Eat This!,tt0105128 TKVyyEsA-so,1971.0,7,8,2012,Plaza Suite,Promise You Won't Get Hysterical,tt0067589 RMd-tHAtdoY,1992.0,7,9,2012,Pet Sematary 2,"No Brain, No Pain",tt0105128 i--0u4m_zZg,1992.0,6,9,2012,Pet Sematary 2,Road Rage,tt0105128 urWMTYuDxME,1971.0,6,8,2012,Plaza Suite,He'll Kill Himself,tt0067589 MuBwxePS-s0,1971.0,8,8,2012,Plaza Suite,Cool It,tt0067589 pXIcjMT1SUg,1992.0,3,9,2012,Pet Sematary 2,Gus Gets Mauled,tt0105128 03NoI9KiZOk,1971.0,3,8,2012,Plaza Suite,My Last Salvation,tt0067589 BvwCwDf6J3w,1978.0,7,8,2012,Pretty Baby,The Girls at the Lake,tt0078111 QXB9qatHDSU,1978.0,6,8,2012,Pretty Baby,Violet Gets Married,tt0078111 6BDzGP6HuGE,1971.0,2,8,2012,Plaza Suite,You're Adorable,tt0067589 Z18eK57wD3k,1992.0,2,9,2012,Pet Sematary 2,Zowie Returns,tt0105128 3cqeNsSZYh4,1978.0,8,8,2012,Pretty Baby,Hattie Takes Violet Away,tt0078111 dv0-EuBX490,1992.0,1,9,2012,Pet Sematary 2,Electrocution on Set,tt0105128 SZKLpJzv5JY,1992.0,4,9,2012,Pet Sematary 2,Table Manners,tt0105128 pKN_6Javjnc,1978.0,5,8,2012,Pretty Baby,Can I Stay Here?,tt0078111 nTz_lWcgDhA,1971.0,5,8,2012,Plaza Suite,She's in There!,tt0067589 PBF9pOAjXt0,1971.0,1,8,2012,Plaza Suite,That's a Sweet Girl,tt0067589 cNLFuTms4go,1978.0,1,8,2012,Pretty Baby,I Want to Be Respectable,tt0078111 U6uNt6h3_bM,2008.0,7,12,2012,Rambo,Live for Nothing or Die for Something,tt0462499 iJMYIXoFGcQ,1978.0,3,8,2012,Pretty Baby,Bidding on Violet,tt0078111 VKaGKi9OHQI,1978.0,4,8,2012,Pretty Baby,"Violet, You Alright?",tt0078111 tTbqVFrvn0E,1971.0,4,8,2012,Plaza Suite,We'll Just Talk,tt0067589 0S5lIhsh2Rc,2008.0,11,12,2012,Rambo,Mopping Up,tt0462499 JSyZq8Eg5eg,1978.0,2,8,2012,Pretty Baby,Prepping Violet,tt0078111 0zVmdCICQok,2008.0,9,12,2012,Rambo,Explosive Chase,tt0462499 1ZeDq4Yo6Jk,2008.0,10,12,2012,Rambo,50 Caliber Rescue,tt0462499 h_N5IH-bWNE,2008.0,3,12,2012,Rambo,River Pirates,tt0462499 IYju9ObPTTw,2008.0,1,12,2012,Rambo,Going Up River,tt0462499 BKDnwX9P7vo,2000.0,12,12,2012,Requiem for a Dream,Fetal Position,tt0180093 Ofifxt45nfg,2008.0,2,12,2012,Rambo,Changing What Is,tt0462499 XF0e2BjTDh8,2008.0,12,12,2012,Rambo,Goes Home,tt0462499 0njU7LPADwY,2008.0,4,12,2012,Rambo,You're Not Gonna Change Anything,tt0462499 f_BcfyJea_M,2008.0,8,12,2012,Rambo,Rescuing Sarah,tt0462499 iONYYY7lHo4,2008.0,6,12,2012,Rambo,War's in Your Blood,tt0462499 TlcxW8KUzks,2000.0,11,12,2012,Requiem for a Dream,Wait for Me,tt0180093 1Mx_jHNEBtA,2008.0,5,12,2012,Rambo,Nightmares,tt0462499 bkxVMf2ozrs,2000.0,8,12,2012,Requiem for a Dream,I Have a Favor to Ask,tt0180093 eqIkFkmb054,2000.0,10,12,2012,Requiem for a Dream,I Know it's Pretty,tt0180093 _d4WkQci7zw,2000.0,9,12,2012,Requiem for a Dream,"Feed Me, Sara",tt0180093 ncOY7vtsY8I,2000.0,2,12,2012,Requiem for a Dream,Meaningless,tt0180093 6H72hXsLZ8k,2000.0,3,12,2012,Requiem for a Dream,I'm Thinking Thin,tt0180093 oYcKftzUS_Y,2000.0,6,12,2012,Requiem for a Dream,The Red Dress,tt0180093 6XWpPwp8p_0,2000.0,2,9,2012,Road Trip,I Could Spit Across This Gap,tt0215129 mkYNhZvlHv0,2000.0,1,12,2012,Requiem for a Dream,Boss Skag,tt0180093 2BtZY3z72jY,2000.0,7,12,2012,Requiem for a Dream,"Smart, Loyal and Not a Junkie",tt0180093 2mSiP5Bbdxw,2000.0,5,9,2012,Road Trip,Dinner at the Xi Chi House,tt0215129 U-JAuw8FsrA,2000.0,4,12,2012,Requiem for a Dream,We're on Our Way,tt0180093 7TBwFfjXd3s,2000.0,5,12,2012,Requiem for a Dream,"There's My Three Meals, Mr. Smartypants",tt0180093 HNfciDzZTNM,2000.0,4,9,2012,Road Trip,"French Toast, No Sugar",tt0215129 qokWn0jfbM4,2003.0,8,8,2012,Rugrats Go Wild,We're Saved,tt0337711 A6CTejBh5QU,2000.0,9,9,2012,Road Trip,Having a Smoke,tt0215129 QKKrwhcVEJA,2003.0,6,8,2012,Rugrats Go Wild,Chuckie vs. Donnie,tt0337711 bNbi_KLd_Uk,2003.0,7,8,2012,Rugrats Go Wild,Donnie Saves the Rugrats,tt0337711 R1JHZFJyWds,2000.0,3,9,2012,Road Trip,An Unusual Question,tt0215129 -rtUvlR1pZE,2000.0,7,9,2012,Road Trip,Milking the Prostate,tt0215129 gpytphKy7a0,2003.0,4,8,2012,Rugrats Go Wild,Uninhabited Island,tt0337711 pl2HDVRj_4o,2000.0,1,9,2012,Road Trip,You Mailed the Beth Tape to Tiffany?,tt0215129 Pz3SOdEw0LY,2000.0,6,9,2012,Road Trip,Kyle's the Man,tt0215129 HtxIqa2mXaA,2007.0,8,10,2012,Saw 4,Save as I Save,tt0890870 zXBPTIjfZgA,2003.0,5,8,2012,Rugrats Go Wild,Spike,tt0337711 wz4HLeURVOQ,2003.0,2,8,2012,Rugrats Go Wild,Captain Stu,tt0337711 6UvEeQC0Odc,2003.0,1,8,2012,Rugrats Go Wild,I'm Nigel Strawberry,tt0337711 5wUu-cKYMgI,2004.0,8,12,2012,3 Extremes,Kill Her!,tt0420251 3AD_sQbn9EY,2004.0,7,12,2012,3 Extremes,Psychopath Dance,tt0420251 ajBK8B_kYO0,2003.0,3,8,2012,Rugrats Go Wild,Abandon Ship,tt0337711 sqjS__9_Irk,2004.0,11,12,2012,3 Extremes,Shoko's Death,tt0420251 ak4mtSDwxV4,2004.0,9,12,2012,3 Extremes,The Dream,tt0420251 DLasTex8Vnk,2003.0,6,7,2012,Schultze Gets the Blues,Hello in a Hot Tub,tt0388395 FYo6dKubr-Q,2007.0,7,10,2012,Saw 4,Your Eyes or Your Body,tt0890870 hp3inTPISwQ,2004.0,5,12,2012,3 Extremes,A Strange Stranger,tt0420251 lMy-kxTpXKA,2007.0,10,10,2012,Saw 4,Final Test,tt0890870 sLlQvz0y7QM,2003.0,1,7,2012,Schultze Gets the Blues,This Is the Wilder West!,tt0388395 CwowG9t4bPU,2004.0,4,12,2012,3 Extremes,Blood Bath,tt0420251 URHjEpowEcw,2004.0,10,12,2012,3 Extremes,Long Lost Sister,tt0420251 BLVhog_zX68,2004.0,1,12,2012,3 Extremes,You Are What You Eat,tt0420251 lhhxZt-oU38,2004.0,12,12,2012,3 Extremes,What's in the Box?,tt0420251 RZ-__QD99DA,2003.0,4,7,2012,Schultze Gets the Blues,Olé,tt0388395 lA2ubmfr6Dw,2007.0,9,10,2012,Saw 4,I'm Not the One You Gotta Worry About,tt0890870 i3jmM-Fc5Nk,2007.0,5,10,2012,Saw 4,On Thin Ice,tt0890870 qOeMwWgruZw,2004.0,3,12,2012,3 Extremes,Still Birth,tt0420251 QDeWmH3M9-M,2004.0,6,12,2012,3 Extremes,One Finger Every Five Minutes,tt0420251 qZPjRshIz4s,2007.0,1,10,2012,Saw 4,The Games Have Just Begun,tt0890870 PykWxPq9JEE,2003.0,5,7,2012,Schultze Gets the Blues,Schultze Plays the Blues,tt0388395 LCEr8N9zXy8,2003.0,3,7,2012,Schultze Gets the Blues,Think of It as a Gift,tt0388395 qpZBUlqRoeA,2003.0,7,7,2012,Schultze Gets the Blues,Captain Kirk,tt0388395 oOl1Kvh2Zwg,2007.0,2,10,2012,Saw 4,Finding Detective Kerry,tt0890870 uyfrK4LrXaQ,2003.0,2,7,2012,Schultze Gets the Blues,Schultze Meets the Blues,tt0388395 3VfuSHP-57o,2007.0,3,10,2012,Saw 4,Constructed for Her Execution,tt0890870 oHyebwN9XXU,2007.0,6,10,2012,Saw 4,Feel What I Feel,tt0890870 IwcQ6LDdW9Q,2007.0,4,10,2012,Saw 4,Two Officers in Danger,tt0890870 ohgN4PexEv4,2000.0,4,10,2012,Shadow of the Vampire,I'll Eat Her Later,tt0189998 nALXcRjbVzs,2000.0,7,10,2012,Shadow of the Vampire,This Is Hardly Your Picture Any Longer,tt0189998 -lAXOMpPqYM,2000.0,10,10,2012,Shadow of the Vampire,Finally Born,tt0189998 JuvJl9iwKb4,2000.0,8,10,2012,Shadow of the Vampire,No Reflection,tt0189998 SLNBos63EkY,2000.0,9,10,2012,Shadow of the Vampire,"If It's Not in Frame, It Doesn't Exist",tt0189998 Ternps0JFwo,1953.0,5,8,2012,Shane,A Gun Is a Tool,tt0046303 cEafT-GQfv4,2000.0,6,10,2012,Shadow of the Vampire,Are You Loaded?,tt0189998 2nChsqAPyHw,2000.0,3,10,2012,Shadow of the Vampire,Blood!,tt0189998 kVPIOjjbIpY,2000.0,2,10,2012,Shadow of the Vampire,I Feed Erratically,tt0189998 Ua3NXljreQ4,2006.0,7,8,2012,She's the Man,I'm a Boy,tt0454945 CWnDVW07_1c,1953.0,6,8,2012,Shane,Where Do You Think You're Going,tt0046303 h5jZBcDev1s,2000.0,1,10,2012,Shadow of the Vampire,Meet Count Orlok,tt0189998 V1l3TboL5MI,1953.0,7,8,2012,Shane,Low Down Yankee Liar,tt0046303 DtoCw2iOTSc,1953.0,8,8,2012,Shane,", Come Back!",tt0046303 YklwFCfEEMM,1953.0,4,8,2012,Shane,You've Won,tt0046303 0TjrNjcFv_A,1953.0,2,8,2012,Shane,Keep the Smell of Pigs Out,tt0046303 f3z_ene1G6c,1953.0,1,8,2012,Shane,Comes to Town,tt0046303 opCf3mp24dE,2006.0,8,8,2012,She's the Man,I'm Viola,tt0454945 9LvdctnZeWE,2000.0,8,9,2012,Snow Day,Anything Can Happen,tt0184907 FxjONf9AXEs,2006.0,5,8,2012,She's the Man,Make Him Jealous,tt0454945 4aRryzzZLTI,1953.0,3,8,2012,Shane,Let Me Buy You a Drink,tt0046303 yNs0hmNinA0,2006.0,6,8,2012,She's the Man,Bad Timing,tt0454945 ntQrC5iclmI,2006.0,3,8,2012,She's the Man,Flow Is Flow,tt0454945 ofIzQbTGQ2E,2006.0,1,8,2012,She's the Man,I Get Really Bad Nose Bleeds,tt0454945 HOoHh7wHtvQ,2006.0,4,8,2012,She's the Man,What Does Your Heart Tell You?,tt0454945 NY8m6lManpQ,2006.0,2,8,2012,She's the Man,Welcome To Illyria,tt0454945 e2-VnrdN_Ng,2000.0,9,9,2012,Snow Day,Charge!,tt0184907 MlRFw1CvPd4,2000.0,6,9,2012,Snow Day,Taking the Mic,tt0184907 nr7ui14-O_Q,2000.0,7,9,2012,Snow Day,Destiny,tt0184907 sKrqOTg_FJY,2000.0,5,9,2012,Snow Day,Clairestock,tt0184907 t0Yf_fvD-lY,2000.0,3,9,2012,Snow Day,Snowplowman,tt0184907 7sUwnda1FUs,2000.0,2,9,2012,Snow Day,Snow!,tt0184907 G4BGtSvviS0,2000.0,1,9,2012,Snow Day,Claire Bonner,tt0184907 vg6-AbLe5nM,2000.0,4,9,2012,Snow Day,The Perfect Snow Angel,tt0184907 1DkaN1nDQoY,1948.0,6,9,2012,"Sorry, Wrong Number",More Important Than Me?,tt0040823 XAWdzV2Bafw,2008.0,8,8,2012,Stop-Loss,That Box Inside Your Head,tt0489281 ZSKSNo2z8AM,1948.0,7,9,2012,"Sorry, Wrong Number",A Controlling Father-in-Law,tt0040823 6MbOPK4TCB4,1948.0,8,9,2012,"Sorry, Wrong Number",There's Someone in This House,tt0040823 XLSkfVJxbwo,1948.0,3,9,2012,"Sorry, Wrong Number","I, Leona, Take Thee, Henry",tt0040823 s4AzrUO3D1w,1948.0,9,9,2012,"Sorry, Wrong Number",I Want You to Scream,tt0040823 J0IxGD8-6Cc,1948.0,2,9,2012,"Sorry, Wrong Number",What Does a Dame Like You Want with a Guy Like Me?,tt0040823 Ma6SDu0V98Y,1948.0,1,9,2012,"Sorry, Wrong Number",Overhearing the Murder Plot,tt0040823 zdyBsGHbs4k,1948.0,5,9,2012,"Sorry, Wrong Number",The Telegram,tt0040823 s3RNsZvdYZQ,1996.0,6,9,2012,Star Trek: First Contact,The Line Must Be Drawn Here,tt0117731 u3A8DoRXiSI,2008.0,5,8,2012,Stop-Loss,King Visits Rico,tt0489281 sMt3SzAH_i0,1996.0,4,9,2012,Star Trek: First Contact,I Am the Borg,tt0117731 gzQt5VctFfI,2008.0,7,8,2012,Stop-Loss,I'm Done With Killing,tt0489281 EaPpa-eoxi4,1996.0,9,9,2012,Star Trek: First Contact,From Another World,tt0117731 78RKzUAQD40,1948.0,4,9,2012,"Sorry, Wrong Number",Someone at the Door,tt0040823 8fvhchY0UmY,1987.0,10,10,2012,Summer School,Now That's Teaching,tt0094072 QL412_xWtT8,1987.0,5,10,2012,Summer School,Driving Lessons,tt0094072 J6JcrLIvKUA,2008.0,2,8,2012,Stop-Loss,F*** The President,tt0489281 DYE3nm9voUk,1996.0,7,9,2012,Star Trek: First Contact,Blast Off!,tt0117731 lDa6qc93nNs,1996.0,2,9,2012,Star Trek: First Contact,They've Adapted,tt0117731 CttvEq-ypno,2008.0,6,8,2012,Stop-Loss,We Got Out Just In TIme,tt0489281 D4QyCdRvXr4,1996.0,5,9,2012,Star Trek: First Contact,Assimilate This!,tt0117731 JnN-SR_2ovA,1996.0,8,9,2012,Star Trek: First Contact,Resistance is Futile,tt0117731 5Z8LHf9J6PQ,1996.0,3,9,2012,Star Trek: First Contact,First Contact with Earth,tt0117731 -5Pku48YPFo,1987.0,9,10,2012,Summer School,We're Psychopaths!,tt0094072 t4DCOpG1oNE,1996.0,1,9,2012,Star Trek: First Contact,It's the Enterprise,tt0117731 MA6g7AEH_kA,2004.0,3,9,2012,Suspect Zero,He Can See,tt0324127 B7ZTNm5o780,1987.0,8,10,2012,Summer School,"Tall, Dark, and Tidy",tt0094072 GB7Cq_W4-U4,2008.0,3,8,2012,Stop-Loss,"I Ain't Scared, I'm Pissed Off",tt0489281 CYF7eLv3hMw,2008.0,4,8,2012,Stop-Loss,Soldier In the Pool,tt0489281 RVevBZFMkys,2004.0,9,9,2012,Suspect Zero,Shut It Off For Me,tt0324127 u0kF24ceZMI,1987.0,7,10,2012,Summer School,Ladies Night,tt0094072 jJiKYmmWiCA,1987.0,1,10,2012,Summer School,Ain't No English Teacher,tt0094072 x5Nu0PPrI-E,2008.0,1,8,2012,Stop-Loss,Shriver's Dug In,tt0489281 farC0cWkpvc,1987.0,6,10,2012,Summer School,Hot For Teacher,tt0094072 LzdoMQL_jR8,1987.0,4,10,2012,Summer School,Negotiations,tt0094072 njlI82MV0gk,2004.0,5,9,2012,Suspect Zero,A String of Serial Killers,tt0324127 rroHhssQbok,2004.0,4,9,2012,Suspect Zero,"It Was There, And We Found It",tt0324127 sTI1U2BiTNk,1996.0,5,11,2012,The Arrival,Underground Secrets,tt0115571 0ROplAtLJvo,2004.0,8,9,2012,Suspect Zero,We Saw Things Men Shouldn't See,tt0324127 KkLV3MzJM_8,1987.0,2,10,2012,Summer School,First Day of Class,tt0094072 s4nMGnlbq9I,1996.0,10,11,2012,The Arrival,Right Behind You,tt0115571 9OFoTABYnY0,1987.0,3,10,2012,Summer School,Let's Start Over,tt0094072 WO-1MybFFvI,1996.0,3,11,2012,The Arrival,Portable Black Hole,tt0115571 rs1V8Sxp3ZY,1996.0,7,11,2012,The Arrival,Human Disguise,tt0115571 akYf73cUU6U,1996.0,11,11,2012,The Arrival,Tell Them That I Know,tt0115571 YFUCezoyzyk,2004.0,7,9,2012,Suspect Zero,O'Ryan's Not the Guy,tt0324127 zAc3K7mjlxs,2004.0,6,9,2012,Suspect Zero,Project Icarus,tt0324127 VwP_-8SCu5s,2004.0,1,9,2012,Suspect Zero,Locating Mackelway,tt0324127 FCcdMEItd-U,1996.0,4,11,2012,The Arrival,The Creeping Enemy,tt0115571 lL2AwD_4G8w,1996.0,2,11,2012,The Arrival,Foot Chase in Mexico,tt0115571 TnwtTQlfaQo,1996.0,8,11,2012,The Arrival,You Don't Deserve to Live Here,tt0115571 ZG4DMIhSIZY,2004.0,2,9,2012,Suspect Zero,Circle With a Slash,tt0324127 e0wRbbzTdhQ,1996.0,6,11,2012,The Arrival,Alien Secrets,tt0115571 NmNveyfhpBg,1996.0,9,11,2012,The Arrival,What Do They Look Like?,tt0115571 GNQ2LOxMi9Q,1996.0,1,11,2012,The Arrival,Problems Here on Earth,tt0115571 8TJk9N4RrNM,1999.0,6,8,2012,The Blair Witch Project,We're Still Alive 'Cause We're Smoking,tt0185937 ETqX2DZqAN8,1969.0,7,8,2012,The Assassination Bureau,Ivan Rescues Sonya,tt0064045 ArSEv2hjwzE,1969.0,6,8,2012,The Assassination Bureau,I've Nearly Been Killed,tt0064045 CKJcpp8ff44,1969.0,8,8,2012,The Assassination Bureau,We Only Kill to Destroy Evil,tt0064045 6_Onrl4g6H4,1999.0,5,8,2012,The Blair Witch Project,It's the Same Log,tt0185937 3Dit-yAwTgY,1969.0,5,8,2012,The Assassination Bureau,Sausage Bomb,tt0064045 s0_sBamhlIs,1969.0,2,8,2012,The Assassination Bureau,"Quick, Break Open the Door",tt0064045 IypE3rPP4sc,1969.0,3,8,2012,The Assassination Bureau,Merit of Surprise,tt0064045 WRtOCCfKEvQ,1969.0,4,8,2012,The Assassination Bureau,What Was in That Case?,tt0064045 tIB4z4uMeNs,1969.0,1,8,2012,The Assassination Bureau,You Want My Life,tt0064045 j2lG-WtrrsA,2003.0,4,9,2012,The Big Empty,Candy 4 U,tt0321442 d8FIxfJaAYM,2003.0,2,9,2012,The Big Empty,Dan the Conspiracy Theory Man,tt0321442 cmYsRcLMvO8,1999.0,8,8,2012,The Blair Witch Project,The House,tt0185937 ep7wuwsdgqA,2003.0,1,9,2012,The Big Empty,The Blue Suitcase,tt0321442 E6jJUN52anM,2003.0,9,9,2012,The Big Empty,I'm Just a Cowboy,tt0321442 1c15w3kCHkw,2003.0,7,9,2012,The Big Empty,Quiet Desperation,tt0321442 DKMzt447niI,2003.0,8,9,2012,The Big Empty,A Tough Old Road,tt0321442 2m_lqGnLtWA,1999.0,7,8,2012,The Blair Witch Project,Apology,tt0185937 n4hHWb2UUQI,2003.0,3,9,2012,The Big Empty,Whip Cream and Jack Daniels,tt0321442 n3F7_uaZUzU,2003.0,6,9,2012,The Big Empty,The Man in Black,tt0321442 D8e-_q_iG6Q,2003.0,5,9,2012,The Big Empty,Pistol vs. Chainsaw,tt0321442 bKy6BtAbTU8,1999.0,3,8,2012,The Blair Witch Project,I Don't Have the Map,tt0185937 nLKymV5rwAU,1999.0,4,8,2012,The Blair Witch Project,Please Help Us!,tt0185937 ntgrRUML2ic,1999.0,1,8,2012,The Blair Witch Project,Blair Witch Interviews,tt0185937 5ZHYDynRjV4,1999.0,2,8,2012,The Blair Witch Project,Looks Like an Indian Burial Ground,tt0185937 w7ZY9tqDsEc,1994.0,9,9,2012,The Browning Version,I Am Sorry,tt0109340 L4fJ1ht5TJM,1994.0,8,9,2012,The Browning Version,A Special Meaning,tt0109340 CcPqBfuXdCo,1994.0,7,9,2012,The Browning Version,Cunning Little Brat,tt0109340 92qwWy1aKH4,1994.0,6,9,2012,The Browning Version,It's for You,tt0109340 sQFqzFD78Ck,1994.0,5,9,2012,The Browning Version,Soul Destroying,tt0109340 9H1gvvzRk9o,1994.0,4,9,2012,The Browning Version,Aren't You Going to Say Hello?,tt0109340 JlbIb4XdF4M,1994.0,3,9,2012,The Browning Version,Looking Forward to Change,tt0109340 u74DpEZeHbg,1994.0,2,9,2012,The Browning Version,I Feel Sorry For Him,tt0109340 qDJg1qnedF4,1958.0,7,7,2012,The Buccaneer,Taking the Fall,tt0051436 2Yu7LGZcPus,1958.0,4,7,2012,The Buccaneer,Only One Throat I'd Like to Slice,tt0051436 fSqvtspQonw,1994.0,1,9,2012,The Browning Version,You Must Unfix It,tt0109340 SkEOY1s78e4,1958.0,6,7,2012,The Buccaneer,Proposition,tt0051436 gqU37m6uoFw,1958.0,5,7,2012,The Buccaneer,No Surrender,tt0051436 jBYxPuIGu_o,1958.0,2,7,2012,The Buccaneer,An Honorable Man,tt0051436 vfW0mLeRXe8,1958.0,3,7,2012,The Buccaneer,Hanging Captain Brown,tt0051436 -uhpev-dp2M,1991.0,3,8,2012,The Butcher's Wife,Marina Reads Alex,tt0101523 FEddJ-WcZfU,1958.0,1,7,2012,The Buccaneer,A Pirate's Market,tt0051436 oWuYilt9hX8,1991.0,8,8,2012,The Butcher's Wife,Life is Messy!,tt0101523 2CcanSjYzlM,1991.0,7,8,2012,The Butcher's Wife,Commit to This Affair!,tt0101523 -i9mrpATCms,1991.0,6,8,2012,The Butcher's Wife,Countertransference,tt0101523 7Qe11Thhwvs,1991.0,5,8,2012,The Butcher's Wife,The Split-Apart Story,tt0101523 sOesH75ggbQ,1991.0,2,8,2012,The Butcher's Wife,Leo Falls in Love,tt0101523 nhKgGtFIqXY,1991.0,1,8,2012,The Butcher's Wife,Dowdy and Plain,tt0101523 IomS4eaONdg,1991.0,4,8,2012,The Butcher's Wife,I Got This Feeling for You,tt0101523 R-PAimSAL08,2003.0,7,9,2012,The Core,Crystal Grand Canyon,tt0298814 jr7HNZg0ljU,2003.0,2,9,2012,The Core,The Earth Will Be Cooked,tt0298814 jK0s7zfdDOc,2003.0,8,9,2012,The Core,The Golden Gate Bridge Melts,tt0298814 ZkynnGqL7QM,2003.0,5,9,2012,The Core,Drilling In,tt0298814 6BGmQ21EekY,2003.0,6,9,2012,The Core,Empty Space,tt0298814 Qz836czauEk,2003.0,4,9,2012,The Core,Rome Destroyed,tt0298814 MAu2e0VbvY4,2003.0,1,9,2012,The Core,The Birds,tt0298814 0x05PrIasjk,2003.0,9,9,2012,The Core,Braz Burns Alive,tt0298814 b_HhiU1mOwU,2003.0,3,9,2012,The Core,Unobtainium,tt0298814 tenCir3A3cE,2005.0,10,10,2012,The Descent,The Killing Floor,tt0435625 lRjxk7z0kOQ,2005.0,8,10,2012,The Descent,Blood Bath,tt0435625 RkH6Q6d8ihA,2005.0,9,10,2012,The Descent,Sudden Death,tt0435625 01X3KxC5GfM,2005.0,7,10,2012,The Descent,Words of Warning,tt0435625 YiD9zhs0Lt8,2005.0,6,10,2012,The Descent,The Creature Looks Human,tt0435625 Gq3WJ-sJj7I,2005.0,5,10,2012,The Descent,Fighting Back,tt0435625 EOSJ6vijGyo,2005.0,4,10,2012,The Descent,Holly's Death,tt0435625 V7-kCVemvVI,2005.0,3,10,2012,The Descent,Juno's Descent,tt0435625 HbdxvncHvCs,2005.0,1,10,2012,The Descent,A Rock and a Hard Place,tt0435625 faZ88f6Gfzc,2005.0,2,10,2012,The Descent,"If We Stay Here, We'll Die",tt0435625 UnSxnVp8FzM,1996.0,7,8,2012,The Evening Star,Make A Wish,tt0116240 cJeYngoI1oA,1996.0,8,8,2012,The Evening Star,I Was Loved,tt0116240 0mwMM8VrYmw,1996.0,5,8,2012,The Evening Star,A Call to Granny,tt0116240 vq8OmtyOsR8,1996.0,6,8,2012,The Evening Star,It's Important to Have Enemies,tt0116240 s5XdRd5SQIw,1996.0,3,8,2012,The Evening Star,Tommy Takes the Brownies,tt0116240 Hv-n7C1EU3U,1996.0,2,8,2012,The Evening Star,Do You Want to Sleep With Me?,tt0116240 lp0FOpFdWi8,1996.0,4,8,2012,The Evening Star,Lola Meet Aurora,tt0116240 bAyb9cEDh2E,1996.0,1,8,2012,The Evening Star,Once Upon a Time We Were a Family,tt0116240 jFP9_AxrurA,2010.0,9,12,2012,The Expendables,Beating an Army,tt1320253 z0j4sVZHUdo,2010.0,12,12,2012,The Expendables,Knife Throwing Poetry,tt1320253 xEIhAu0v-kU,2010.0,11,12,2012,The Expendables,Saving Sandra,tt1320253 tQkTtnCV1n4,2010.0,10,12,2012,The Expendables,Toll Road vs. Paine,tt1320253 z8lDbb_76Ug,2010.0,7,12,2012,The Expendables,Yin vs. Gunner,tt1320253 ac6FZ59tna4,2010.0,4,12,2012,The Expendables,Blowing Up the Dock,tt1320253 6SyjoKS9CXM,2010.0,6,12,2012,The Expendables,Truck Bed Chase,tt1320253 sVbhGDytHk4,2010.0,5,12,2012,The Expendables,Basketball Brawl,tt1320253 2TWpil1VJ8I,2010.0,8,12,2012,The Expendables,Omya Kaboom,tt1320253 ShB8ZLISubA,2010.0,2,12,2012,The Expendables,Old Friends,tt1320253 q9n96my-QzI,2010.0,1,12,2012,The Expendables,Greedy Pirates,tt1320253 uAO727Dw9hg,2010.0,3,12,2012,The Expendables,Catching a Flight,tt1320253 25_Kvrl7agM,1987.0,9,9,2012,The Gate,Destroying the Demon Lord,tt0093075 UOOGD4DLy-0,1987.0,8,9,2012,The Gate,Eye Hand,tt0093075 CKGHiP4bs84,1987.0,7,9,2012,The Gate,Go Get Dad's Gun!,tt0093075 2mXAB3HO160,1987.0,4,9,2012,The Gate,The Old Gods!,tt0093075 YOtz3kdBKW8,1987.0,5,9,2012,The Gate,You've Been Bad!,tt0093075 Z8leMw24Nbc,1987.0,6,9,2012,The Gate,The Gods Attack,tt0093075 0SMMbr2kXc8,1987.0,3,9,2012,The Gate,I Looooove You...,tt0093075 VOVOizcl4Gc,1987.0,1,9,2012,The Gate,Treehouse of Horror,tt0093075 EmeHbU_s7Cg,1987.0,2,9,2012,The Gate,Levitating Glen,tt0093075 8ZYQejxdHdc,2000.0,6,8,2012,The Gift,Donnie Gets Cross-Examined,tt0219699 r8zjtGUA6tU,2000.0,5,8,2012,The Gift,,tt0219699 uY9VcYt2bKE,2000.0,8,8,2012,The Gift,Buddy Cole is Dead,tt0219699 daPR5OjY6bI,2000.0,7,8,2012,The Gift,Returning to the Crime Scene,tt0219699 8TG4sr_y-Ys,2000.0,4,8,2012,The Gift,Why Didn't You Help Me?,tt0219699 nQunClrM4co,2000.0,1,8,2012,The Gift,Happily Ever After,tt0219699 zgEYrXfWhWs,2000.0,3,8,2012,The Gift,Annie's Vision,tt0219699 fMI2u6Jp1FE,2000.0,2,8,2012,The Gift,Buddy's Breakdown,tt0219699 bW0aNTB523c,1969.0,9,10,2012,The Italian Job,Dumping the Mini-Coopers,tt0064505 V3s3OXOzoH4,1969.0,1,10,2012,The Italian Job,Lamborghini Destroyed,tt0064505 5ntVWRhfqo0,1969.0,2,10,2012,The Italian Job,Shooting Tigers,tt0064505 RtWkewqIFDM,1969.0,6,10,2012,The Italian Job,Mini-Cooper Chase,tt0064505 3hcmGG6VUsU,1969.0,4,10,2012,The Italian Job,Wrecking the Aston Martin,tt0064505 sOGhuhC4AF0,1969.0,8,10,2012,The Italian Job,Get The Wheels In Line,tt0064505 HZCaSyid4m0,1969.0,10,10,2012,The Italian Job,Cliffhanger,tt0064505 GHRFqRbAx1o,1969.0,5,10,2012,The Italian Job,Gold Heist,tt0064505 T_ZImfAxOu0,1969.0,7,10,2012,The Italian Job,Look For The Bloody Exit,tt0064505 7_PX1cVuaVA,1969.0,3,10,2012,The Italian Job,You Were Only Supposed To Blow The Bloody Doors Off!,tt0064505 df1mSOyvsXU,1976.0,8,8,2012,The Last Tycoon,I Don't Want To Lose You,tt0074777 _8GB76HyNNU,1976.0,7,8,2012,The Last Tycoon,Hitting Ten Million Dollars,tt0074777 isgx4Srs9t8,1976.0,6,8,2012,The Last Tycoon,I'm Gonna Tell Ya What I Really Think,tt0074777 eC2O1zsfn2c,1976.0,5,8,2012,The Last Tycoon,Nor I You,tt0074777 TqL70V8rn9I,1976.0,4,8,2012,The Last Tycoon,Making Pictures,tt0074777 FIGm0YdXotI,1976.0,3,8,2012,The Last Tycoon,Undertake Me,tt0074777 CSwnlwsBAFU,1976.0,1,8,2012,The Last Tycoon,I Want To Do It Again,tt0074777 6lw33XpYhGs,1976.0,2,8,2012,The Last Tycoon,Earthquake!,tt0074777 prGnVwLgxPc,2005.0,1,12,2012,The Long Weekend,We Can Work It Out,tt0385057 HwHADsTOVMs,2005.0,12,12,2012,The Long Weekend,Shakespeare's Hamlet,tt0385057 Fqeo-bUOueA,2005.0,9,12,2012,The Long Weekend,A Hell of a 48 Hours,tt0385057 OgU8mEFGcfA,2005.0,8,12,2012,The Long Weekend,How'd You Know Her Name?,tt0385057 f-zgBlWksMc,2005.0,7,12,2012,The Long Weekend,Release My Brother,tt0385057 rILBK11XLA0,2005.0,6,12,2012,The Long Weekend,Here's to Bad Dates,tt0385057 Cg6X7ukYzTo,2005.0,10,12,2012,The Long Weekend,Cooper Prays,tt0385057 I0jMv9vF9MI,2005.0,3,12,2012,The Long Weekend,I'm a Nurse,tt0385057 TnUS6tDANfc,2005.0,11,12,2012,The Long Weekend,The Big Pitch,tt0385057 pbSX1diNIlY,2005.0,5,12,2012,The Long Weekend,The Laundromat and the Gym,tt0385057 tJimPUh3vmQ,2009.0,9,9,2012,The Lovely Bones,You Wrote Me A Poem Once,tt0380510 8d6AniF_vxg,2005.0,2,12,2012,The Long Weekend,Dead Animals,tt0385057 q0DZLuG2FiI,2005.0,4,12,2012,The Long Weekend,Pretending to Be Priests,tt0385057 _k8uSp3-900,2009.0,2,9,2012,The Lovely Bones,"You Are Beautiful, Susie Salmon",tt0380510 5y719xX1I5U,2009.0,8,9,2012,The Lovely Bones,Lindsey Finds Evidence,tt0380510 SfL4U_bOGvc,2009.0,6,9,2012,The Lovely Bones,Jack Realizes the Truth,tt0380510 rGR6aO4JsH0,2009.0,7,9,2012,The Lovely Bones,I Willed Him To Stop,tt0380510 FKj1vfHB2i0,2009.0,5,9,2012,The Lovely Bones,She's Gone,tt0380510 M-APah17AQA,2009.0,3,9,2012,The Lovely Bones,"I'm Not Gonna Hurt You, Susie",tt0380510 Nc_b69ag6Eo,2009.0,4,9,2012,The Lovely Bones,Last Wednesday,tt0380510 xam8pRUej7A,2009.0,1,9,2012,The Lovely Bones,A Thing of Beauty,tt0380510 wXnYmZhdm04,1998.0,7,8,2012,The Odd Couple 2,The Man is Dead,tt3595776 jepTSaMF2ZM,1998.0,8,8,2012,The Odd Couple 2,Déjà Vu,tt3595776 0q3BH18BmZI,1998.0,6,8,2012,The Odd Couple 2,New Underwear,tt3595776 j6_umKYN_JU,1998.0,4,8,2012,The Odd Couple 2,Why Don't We Call Budget?,tt3595776 hsE1N5mfvmA,1998.0,5,8,2012,The Odd Couple 2,A Couple of Pillsbury Doughboys,tt3595776 lJIPM69YQNY,1998.0,3,8,2012,The Odd Couple 2,Open the Window,tt3595776 A4ktp_9Q5Es,1998.0,1,8,2012,The Odd Couple 2,My Kid is Getting Married,tt3595776 Pv4M77BcywE,1998.0,2,8,2012,The Odd Couple 2,When Oscar Meets Felix,tt3595776 k4DsinIrAjQ,1974.0,2,10,2012,The Parallax View,"Reporting the News, Not Creating It",tt0071970 WcZSEqj45Ws,1974.0,10,10,2012,The Parallax View,One Way Out,tt0071970 I1OmcMDFR0Y,1974.0,9,10,2012,The Parallax View,Hammond's Assassination,tt0071970 0iSD31ToSC8,1974.0,7,10,2012,The Parallax View,Boating Accident,tt0071970 hN952f_jn8E,1974.0,8,10,2012,The Parallax View,Recruitment Test,tt0071970 V9jD7kLAmPM,1974.0,5,10,2012,The Parallax View,Warning Sign,tt0071970 raLZ6l174_k,1974.0,6,10,2012,The Parallax View,Cop Car Chase,tt0071970 2RQNDXuAIJI,1974.0,4,10,2012,The Parallax View,Don't Touch Me Unless You Love Me,tt0071970 cfILhtwu9S0,2004.0,1,8,2012,The Perfect Score,Standardized Testing Is Taking Over,tt0314498 VF609NvGcCM,2008.0,5,10,2012,Transporter 3,Car Wheelie,tt1129442 WwHpeDtSMmc,2001.0,2,9,2012,The Score,The Negotiation,tt0227445 LfDjQe0B7Tw,2008.0,1,10,2012,Transporter 3,Piano Brawl,tt1129442 ygOrLkyfHsw,2005.0,2,9,2012,"Yours, Mine and Ours",How Many Kids Do You Have?,tt0443295 WEScYukcD1Y,1974.0,3,10,2012,The Parallax View,Somebody's Trying to Kill Me,tt0071970 TrxSTI517Iw,2004.0,8,8,2012,The Perfect Score,Desmond's Mom,tt0314498 KoNukbGYfFY,1974.0,1,10,2012,The Parallax View,Space Needle Assassination,tt0071970 arfamPuUOek,2004.0,5,8,2012,The Perfect Score,Planning the Heist,tt0314498 shO2tSVK0IU,2004.0,6,8,2012,The Perfect Score,Masks,tt0314498 _ewnZCc0imw,2004.0,7,8,2012,The Perfect Score,Trust Each Other's Talent,tt0314498 I-xX6foX9zw,2004.0,4,8,2012,The Perfect Score,That Scene In The Breakfast Club,tt0314498 hdVQlYgFRuM,2004.0,2,8,2012,The Perfect Score,I Have an Idea,tt0314498 LTqaoTSCTc0,2004.0,3,8,2012,The Perfect Score,Copy It,tt0314498 rz41nM47q7Y,1988.0,9,9,2012,The Presidio,Making Things Right,tt0095897 vXsKVaJTQCA,1988.0,6,9,2012,The Presidio,"Like Whoa, Man",tt0095897 bQInfO7fE-s,1988.0,8,9,2012,The Presidio,Factory Pursuit,tt0095897 _BMYVDOOQ0E,1988.0,3,9,2012,The Presidio,Car Love,tt0095897 GpEhxhSoFAU,1988.0,5,9,2012,The Presidio,"I'd Like You to Resist Arrest, Just a Little",tt0095897 M9CkGS1O5WM,1988.0,2,9,2012,The Presidio,"You Wanna Die, Cop?",tt0095897 9Dka54jH9po,1988.0,4,9,2012,The Presidio,My Right Thumb,tt0095897 7_OHC_nqFQ8,1988.0,7,9,2012,The Presidio,Drunk Old Guard Dogs,tt0095897 I_xrNryhq1Y,1988.0,1,9,2012,The Presidio,San Francisco Chase,tt0095897 Wrs-qNpKvbE,2004.0,7,8,2012,The Prince & Me,A Royal Horse Ride,tt0337697 7rN0Kk3eUSo,2004.0,8,8,2012,The Prince & Me,Goodbye,tt0337697 UBbsHeltzEE,2004.0,6,8,2012,The Prince & Me,Paige Is in Love,tt0337697 0AslM2bC5DY,2004.0,4,8,2012,The Prince & Me,A First Kiss,tt0337697 g2atr8aQ0zg,2004.0,3,8,2012,The Prince & Me,A Shakespeare Lesson,tt0337697 -L9EZRMgmXM,2004.0,5,8,2012,The Prince & Me,The Truth About Eddie,tt0337697 rYjtudWe7O0,2001.0,8,9,2012,The Score,Heist Confrontation,tt0227445 bOKID-aX3z8,2004.0,2,8,2012,The Prince & Me,Put a Shirt On,tt0337697 iv2j0CJkzbM,2004.0,1,8,2012,The Prince & Me,Take Your Top Off for Me,tt0337697 9aPhLF7yfU8,2001.0,9,9,2012,The Score,Switching Sceptres,tt0227445 YALDmRKFYSk,2001.0,6,9,2012,The Score,Old Loyalties,tt0227445 4IOwJNyILNI,2001.0,7,9,2012,The Score,I Got Company,tt0227445 odEociFdDN4,2001.0,5,9,2012,The Score,Cousins in the Park,tt0227445 ABpeiNlMOHU,2001.0,4,9,2012,The Score,Mother!,tt0227445 ph2dq-pPBnA,2001.0,3,9,2012,The Score,A Toast to Changes,tt0227445 OkVJ0KvOV60,2001.0,1,9,2012,The Score,Brian,tt0227445 nd3MVcbnfAc,2002.0,8,8,2012,The Time Machine,What If?,tt0268695 61xq5Kja1Uo,2002.0,5,8,2012,The Time Machine,All the Years of Remembering,tt0268695 Jwaw24W2bW0,2002.0,7,8,2012,The Time Machine,"800,000 Years of Evolution",tt0268695 Rkc09sTiS7g,2002.0,3,8,2012,The Time Machine,"Time Travel, Practical Application",tt0268695 KHPPeGoWDEU,2002.0,6,8,2012,The Time Machine,The Morlocks' Diet,tt0268695 2KGv86GLvXo,2002.0,4,8,2012,The Time Machine,The Morlocks,tt0268695 D6uIONVMTxE,2002.0,1,8,2012,The Time Machine,The First Attempt,tt0268695 W9SemYK9HEw,2002.0,2,8,2012,The Time Machine,Going Forward,tt0268695 jMv808xIuwg,2002.0,9,9,2012,The Tuxedo,Don't Move!,tt0290095 6oUQEh-Xji0,2002.0,8,9,2012,The Tuxedo,Tux vs. Tux,tt0290095 QUVhbRmhn_w,2002.0,6,9,2012,The Tuxedo,The Last Emperor of Soul,tt0290095 Jc0r-WTEnzc,2002.0,4,9,2012,The Tuxedo,Confidence,tt0290095 V7u623DEJD4,2002.0,7,9,2012,The Tuxedo,Pants Only Defense,tt0290095 c94JyVrcWwE,2002.0,2,9,2012,The Tuxedo,Skateboard Bomb,tt0290095 pxy0q9dp1GA,2002.0,5,9,2012,The Tuxedo,You Killed James Brown,tt0290095 9GF-YNA-iTM,2002.0,3,9,2012,The Tuxedo,Suit Demonstration,tt0290095 3XK3y_S1kP8,2002.0,1,9,2012,The Tuxedo,Just Not My Day,tt0290095 6BS2yXD9Ggo,2003.0,10,10,2012,The United States of Leland,Getting Clean,tt0301976 as_lXF3HqCY,2003.0,9,10,2012,The United States of Leland,None of Your Concern,tt0301976 ioznxKkY_IE,2003.0,7,10,2012,The United States of Leland,Only Human,tt0301976 58qDZgvh3jk,2003.0,8,10,2012,The United States of Leland,All of Their Sadness,tt0301976 fARjlj6q1uU,2003.0,4,10,2012,The United States of Leland,Earl the Pearl,tt0301976 ljdH53Ro0xQ,2003.0,5,10,2012,The United States of Leland,Lazy Angels,tt0301976 50cIB7qKfnk,2003.0,6,10,2012,The United States of Leland,Something That Happened,tt0301976 9ac3upRnOl8,2003.0,3,10,2012,The United States of Leland,First Day of Class,tt0301976 i1n8bNgTUTw,2003.0,1,10,2012,The United States of Leland,The Most Important Stuff,tt0301976 NAH_6By9C7g,2003.0,2,10,2012,The United States of Leland,Aren't You an Actor?,tt0301976 A4Sywg8Yw4Q,1999.0,5,9,2012,The Virgin Suicides,Crazy On You,tt0159097 uLkxV_gyYbI,1999.0,1,9,2012,The Virgin Suicides,The Five Lisbon Sisters,tt0159097 idKzxvXO9_8,1999.0,7,9,2012,The Virgin Suicides,Impossible Excursions,tt0159097 X2YdsIm2Pj8,1999.0,8,9,2012,The Virgin Suicides,Call Us,tt0159097 gaoBscEDdzM,1999.0,6,9,2012,The Virgin Suicides,Homecoming Dance,tt0159097 9qEoK4PYN5I,1999.0,9,9,2012,The Virgin Suicides,These Girls Make Me Crazy,tt0159097 LwvvOrYPcuM,1999.0,2,9,2012,The Virgin Suicides,Cecilia's Fall,tt0159097 Qq2TXAE-Ih8,1999.0,3,9,2012,The Virgin Suicides,We Started to Learn About Their Lives,tt0159097 glz-J_geNNI,1999.0,4,9,2012,The Virgin Suicides,Magic Man,tt0159097 gW3KZsBwQzw,2002.0,6,8,2012,The Wild Thornberrys Movie,Debbie's New Friend,tt0282120 WlaQZKko8bk,2002.0,8,8,2012,The Wild Thornberrys Movie,Let's Dance,tt0282120 OzCu7Cvdsjc,2002.0,5,8,2012,The Wild Thornberrys Movie,Food Fight,tt0282120 nHyK6uFdDWY,2002.0,7,8,2012,The Wild Thornberrys Movie,I Can Talk To Animals,tt0282120 2KuNMLOKUXE,2002.0,3,8,2012,The Wild Thornberrys Movie,Preparing for Boarding School,tt0282120 M8LDQ6M_CBs,2002.0,4,8,2012,The Wild Thornberrys Movie,New Roommate,tt0282120 Em8I02rqbhw,1999.0,9,9,2012,The Wood,A Toast to,tt0161100 QKEMn5rTRL4,2002.0,2,8,2012,The Wild Thornberrys Movie,Debbie Tattles on Eliza,tt0282120 Kuwa9UzfMGg,2002.0,1,8,2012,The Wild Thornberrys Movie,Stampede!,tt0282120 sfHaTenaRBI,1999.0,6,9,2012,The Wood,I Love Lisa ?,tt0161100 n16wkJDq2VQ,1999.0,8,9,2012,The Wood,The Wedding Is On,tt0161100 KVt9YlotsuY,1999.0,7,9,2012,The Wood,The Things Men Do for Sex,tt0161100 d-nJUGK8ABk,1999.0,3,9,2012,The Wood,Learning to Dance,tt0161100 2LeVu2F6s4g,1999.0,5,9,2012,The Wood,Dancing with Alicia,tt0161100 -e6lEsIUf3U,1999.0,4,9,2012,The Wood,Hold-Up,tt0161100 KzWronMcXR8,1999.0,2,9,2012,The Wood,This is My Fight,tt0161100 LBU5Yu6RFBY,1999.0,1,9,2012,The Wood,The Bet,tt0161100 ex65__9m7f0,2007.0,8,10,2012,Things We Lost in the Fire,Reaching Out,tt0469623 6IPcEITrktA,2007.0,7,10,2012,Things We Lost in the Fire,Playing Hooky,tt0469623 pe8vv-fGpWk,2007.0,4,10,2012,Things We Lost in the Fire,It Should Have Been You,tt0469623 4dp5Q3B20aE,2007.0,10,10,2012,Things We Lost in the Fire,He's Gone,tt0469623 qaQUmqNJTO8,2007.0,2,10,2012,Things We Lost in the Fire,Raincheck,tt0469623 p6LXVK9rPbw,2007.0,9,10,2012,Things We Lost in the Fire,You Are Beautiful,tt0469623 K44KlE3sSMM,2007.0,5,10,2012,Things We Lost in the Fire,What's Heroin Like?,tt0469623 VpOmvE4sLUY,2007.0,3,10,2012,Things We Lost in the Fire,Breathe and Count to Ten,tt0469623 Ug0QqktJ5tc,2007.0,6,10,2012,Things We Lost in the Fire,That Wasn't Your Moment,tt0469623 VwfXJVjptt0,2007.0,1,10,2012,Things We Lost in the Fire,I Hated You,tt0469623 o3uf4YSwY9I,2003.0,1,8,2012,Timeline,You Make Your Own History,tt0300556 hcUVOlbNb30,2003.0,8,8,2012,Timeline,A Little Surprise for the French,tt0300556 VEwLgrpyamQ,2003.0,6,8,2012,Timeline,I Thought You Were Dead,tt0300556 RdIAtsbwb00,2003.0,5,8,2012,Timeline,Trapped in the Past,tt0300556 3H9TofuarsE,2003.0,7,8,2012,Timeline,Greek Fire,tt0300556 Hsi4X9MxtkY,2003.0,4,8,2012,Timeline,The Journey to 1357 AD,tt0300556 OdL9R0ZODYs,2003.0,3,8,2012,Timeline,We Discovered a Worm Hole,tt0300556 3kfnzu3RrFM,2003.0,2,8,2012,Timeline,Weird Findings,tt0300556 1U9wqQ9a8GU,2008.0,7,10,2012,Transporter 3,Valentina's Story,tt1129442 YlwAVV3dC2o,2008.0,8,10,2012,Transporter 3,"He Leaves, He Blows, He Stays, He Drowns",tt1129442 k8QQCwXyVbI,2008.0,6,10,2012,Transporter 3,Striptease for the Keys,tt1129442 B3nAwyocJs0,2008.0,10,10,2012,Transporter 3,Not a Good Fit,tt1129442 FOAj7BE1VEg,2008.0,9,10,2012,Transporter 3,Catching the Train,tt1129442 Vz04LQ7GGzc,2008.0,4,10,2012,Transporter 3,Bike Chase,tt1129442 gknxRGof8Pc,2008.0,2,10,2012,Transporter 3,Garage Royale,tt1129442 9a3z1lvLLng,2008.0,3,10,2012,Transporter 3,The Big One,tt1129442 Aqqc9H83ECk,1999.0,9,9,2012,Varsity Blues,Billy Bob's Touchdown,tt0139699 eKbXO0f-mvw,1999.0,8,9,2012,Varsity Blues,No Huddle Offense,tt0139699 RjdPAElUs9E,1999.0,2,9,2012,Varsity Blues,Beer Can Challenge,tt0139699 UtRR6sLexR8,1999.0,6,9,2012,Varsity Blues,One for Wendell,tt0139699 qbIEepu8Z4w,1999.0,7,9,2012,Varsity Blues,Coach Kilmer's Final Game,tt0139699 LoT3AimKXmk,1999.0,4,9,2012,Varsity Blues,The Whipped Cream Bikini,tt0139699 LHrkO46ERP8,1999.0,5,9,2012,Varsity Blues,Playing Hungover,tt0139699 XFOoJ3gwplQ,1999.0,3,9,2012,Varsity Blues,Harbor Goes Down,tt0139699 ANYJbKdMHk8,1999.0,1,9,2012,Varsity Blues,Second String,tt0139699 r_a34DBcwCE,1973.0,6,9,2012,Walking Tall,Traitor,tt0070895 DLuROR8kLy8,1973.0,9,9,2012,Walking Tall,We'll Get the Rest of Them Buford!,tt0070895 ZkpC7VsyqaE,1973.0,2,9,2012,Walking Tall,I Thought You Walked Tall!,tt0070895 WhZEKkpf3CU,1973.0,8,9,2012,Walking Tall,Crashing The Lucky Spot,tt0070895 3l7-8yvdTLE,1973.0,4,9,2012,Walking Tall,The Verdict,tt0070895 KVDtV-uVRq0,1973.0,5,9,2012,Walking Tall,Chased by the Sheriff,tt0070895 o-e8eejeHLA,1973.0,7,9,2012,Walking Tall,Road Ambush,tt0070895 KNip2ZamrMc,1973.0,1,9,2012,Walking Tall,Buford Catches A Cheater,tt0070895 q9iIgRYUyA0,1973.0,3,9,2012,Walking Tall,"3,630 Dollars You Owe Me",tt0070895 L6YJkhVYUXs,1956.0,5,9,2012,War and Peace,Think of Me,tt0049934 Xm6JHSUoLpY,1956.0,7,9,2012,War and Peace,The Invasion,tt0049934 -KOG8edoC00,1956.0,9,9,2012,War and Peace,You've Come Back,tt0049934 ZWSHjks0ESI,1956.0,8,9,2012,War and Peace,The Hardest Thing is to Keep Alive at Sunset,tt0049934 jihDFIqNz1s,1956.0,6,9,2012,War and Peace,War is the Most Horrible Thing in Life,tt0049934 4XpFpGcTh1s,1956.0,4,9,2012,War and Peace,The Dance,tt0049934 aTTbCJmc3Cg,1956.0,3,9,2012,War and Peace,A Moonlight Night,tt0049934 EV5W98Ql4vQ,1956.0,1,9,2012,War and Peace,The Greatest Pleasures,tt0049934 YJbQz3bTn6I,1956.0,2,9,2012,War and Peace,The Duel,tt0049934 yvcIugB8yt4,1955.0,8,9,2012,We're No Angels,Lovesick Isabelle,tt0048801 Q-xBDej7O6M,1955.0,9,9,2012,We're No Angels,I Love Only You Three,tt0048801 WgBb0YoMp1g,1955.0,6,9,2012,We're No Angels,The Only Mistake I Ever Made Was Getting Caught,tt0048801 xQOZMIbnpMc,1955.0,7,9,2012,We're No Angels,A Change of Heart,tt0048801 P3QI8hTpxl8,1955.0,4,9,2012,We're No Angels,A Gifted Salesman,tt0048801 EL9EJL3O7bU,1955.0,5,9,2012,We're No Angels,Don't Hurt the People You Love,tt0048801 I2UTg_bYu68,1955.0,3,9,2012,We're No Angels,A Disappointing Letter,tt0048801 tcCo38aP8qc,1955.0,1,9,2012,We're No Angels,An Extremely Handsome Woman,tt0048801 ckAD2sg5SxQ,1955.0,2,9,2012,We're No Angels,A Talk About Marriage,tt0048801 NvuCGs9iYSk,1997.0,5,10,2012,Wishmaster,You'd Have to Go Through Me,tt0120524 NWfz4zLi640,1997.0,9,10,2012,Wishmaster,Houdini Did It,tt0120524 tqfFZYur4sM,1997.0,10,10,2012,Wishmaster,Wish You Were Dead,tt0120524 DW3d5hYgV_Q,1997.0,7,10,2012,Wishmaster,Face to Face,tt0120524 wpA9m3t6bNY,1997.0,8,10,2012,Wishmaster,I Am Despair,tt0120524 F6RpbWC4-L0,1997.0,4,10,2012,Wishmaster,The Face of Fear Itself,tt0120524 lqA3TgVtN-Q,1997.0,6,10,2012,Wishmaster,What's My Limit?,tt0120524 oa1LGWv3zkA,1997.0,2,10,2012,Wishmaster,Get Cancer and Die,tt0120524 LWP0KujKOKY,1997.0,3,10,2012,Wishmaster,The Djinn's New Face,tt0120524 5Rp-dpnsqUo,2006.0,5,11,2012,Wristcutters: A Love Story,The Guy in the Back Seat,tt0477139 8Z60zTp6Izo,1997.0,1,10,2012,Wishmaster,You Awoke Me,tt0120524 4TSoSMLHTi0,2006.0,3,11,2012,Wristcutters: A Love Story,Meeting Mikal,tt0477139 FXZ3JnwIph0,2006.0,7,11,2012,Wristcutters: A Love Story,Call Me Kneller,tt0477139 3OHisdS9LXs,2006.0,10,11,2012,Wristcutters: A Love Story,"Reunited,",tt0477139 WeVMy5j7ykc,2006.0,11,11,2012,Wristcutters: A Love Story,Desiree's Story,tt0477139 i5znTCoKLPI,2006.0,8,11,2012,Wristcutters: A Love Story,Crooked Tree,tt0477139 k0tc08W_t-Y,2006.0,4,11,2012,Wristcutters: A Love Story,Here By Mistake,tt0477139 qkvQOEJKHNk,2006.0,9,11,2012,Wristcutters: A Love Story,Midnight Beach,tt0477139 Op9k4MLjKSQ,2006.0,1,11,2012,Wristcutters: A Love Story,Dead and Lovely,tt0477139 jaSs0dUv0zQ,2006.0,2,11,2012,Wristcutters: A Love Story,Cottage Cheese,tt0477139 Gg3woGs9ZGY,2006.0,6,11,2012,Wristcutters: A Love Story,No Exit,tt0477139 WGBw3zwzqwI,1988.0,9,10,2012,Young Guns,I'm Gonna Kill Billy the Kid,tt0096487 -Zr-B5aIEvE,1988.0,10,10,2012,Young Guns,Reap It!,tt0096487 iX1ha-hADlU,1988.0,8,10,2012,Young Guns,Chavez's Vision,tt0096487 UqvuJLOCSxc,1988.0,7,10,2012,Young Guns,Let's Dance,tt0096487 PII5jcf950Q,1988.0,6,10,2012,Young Guns,The Peyote Trip,tt0096487 H2iK5QHr3Is,1988.0,4,10,2012,Young Guns,He's a Spy!,tt0096487 F5ZP1m4J0H4,1988.0,5,10,2012,Young Guns,The Peyote Ritual,tt0096487 OhtKiOEZBJY,1988.0,3,10,2012,Young Guns,Bathroom Arrest,tt0096487 3FPsMeQ6Ra4,1988.0,1,10,2012,Young Guns,Get Ready for Hell,tt0096487 cxgg3KTdRcM,1988.0,2,10,2012,Young Guns,You and I,tt0096487 E8LQ1SmVO2M,2005.0,4,9,2012,"Yours, Mine and Ours",The Shower Trick,tt0443295 x3jT6tQ_gJk,2005.0,6,9,2012,"Yours, Mine and Ours",The Beautiful Lighthouse Keeper,tt0443295 v3IyV96FX74,2005.0,9,9,2012,"Yours, Mine and Ours",Our Kids,tt0443295 NxnXB1ViFEk,2005.0,8,9,2012,"Yours, Mine and Ours",Party at the Lighthouse,tt0443295 t0R7IRtvvFA,2005.0,7,9,2012,"Yours, Mine and Ours",A Greater Enemy,tt0443295 k2C9QOtoreY,2005.0,5,9,2012,"Yours, Mine and Ours",Forklift Ride,tt0443295 vFSAQ1Nj7fg,2005.0,3,9,2012,"Yours, Mine and Ours",Standard Nautical Procedure,tt0443295 rTCpK6ONu9M,2005.0,1,9,2012,"Yours, Mine and Ours",Frantic Business Meeting,tt0443295 w7mr-fVLqis,2005.0,10,10,2012,Zodiac Killer,Simon Kills Michael,tt0469999 wVTFBeiqCSE,2005.0,9,10,2012,Zodiac Killer,The Murder of Donald Fisk,tt0469999 rmqvWkh45gs,2005.0,8,10,2012,Zodiac Killer,Pizza Delivery Victim,tt0469999 kjRTvd8QRJI,2005.0,7,10,2012,Zodiac Killer,Gas Mask,tt0469999 USKy5QYNY70,2005.0,6,10,2012,Zodiac Killer,I Like Killing People,tt0469999 PjBQfqlstnw,2005.0,5,10,2012,Zodiac Killer,Vampire,tt0469999 2Qfa77SRZkc,2009.0,2,9,2012,Agora,Earth is the Center of the Cosmos,tt1186830 cOe_8-IWvmY,2005.0,4,10,2012,Zodiac Killer,Zodiac Cult,tt0469999 SY3nCdfnsCQ,2005.0,3,10,2012,Zodiac Killer,Buying a Car,tt0469999 hg27lxt2IFw,2005.0,2,10,2012,Zodiac Killer,Young Zodiac,tt0469999 lWflJvuYww8,2005.0,1,10,2012,Zodiac Killer,Laundry,tt0469999 sLECDbDoXaQ,2010.0,10,11,2012,Killers,A Great Time for a Trust Circle,tt1448755 gZbzZaYK3Zo,2010.0,9,11,2012,Killers,Never Going Back,tt1448755 S-PPQ9aewqo,2010.0,11,11,2012,Killers,You Copied Me,tt1448755 Od2dajJAbEE,2010.0,4,11,2012,Killers,Surprise Party,tt1448755 Y_bIzO41o2c,2010.0,8,11,2012,Killers,Deadly Secretary,tt1448755 3r2JiHZVEk4,2010.0,2,11,2012,Killers,This Dress Is Tight,tt1448755 6uaqkS1AiS4,2010.0,6,11,2012,Killers,A License to Blah,tt1448755 1Jaq36snpLo,2010.0,5,11,2012,Killers,"Killing You, Buddy",tt1448755 1-lFBwn6bKg,2010.0,1,11,2012,Killers,To the Beach,tt1448755 8rF5KWQw6YE,2010.0,3,11,2012,Killers,Sport Shooting,tt1448755 e3siZO79KrM,2010.0,7,11,2012,Killers,Pregnancy Test,tt1448755 f5lTRa_ZJn8,2009.0,5,9,2012,Agora,Overtaking the Library of the Serapeum,tt1186830 FGqPDYzAXdI,2009.0,7,9,2012,Agora,We Do Not Move in a Circle,tt1186830 2IVX_4BG7m4,2009.0,9,9,2012,Agora,The Stoning of Hypatia,tt1186830 _lykwQIS_3w,2009.0,8,9,2012,Agora,Kneel Before God,tt1186830 hZqVpO3_MP4,2009.0,3,9,2012,Agora,I Am a Christian,tt1186830 5AujBlOtU88,2009.0,6,9,2012,Agora,The Earth is Flat,tt1186830 gqxV6mOE2L4,2009.0,4,9,2012,Agora,Heliocentric Model,tt1186830 s2U0dL0k9s8,2009.0,1,9,2012,Agora,I Shall Walk Across the Fire,tt1186830 yO4oRzCAc4k,2011.0,8,12,2012,From Prada to Nada,Why Are You Here?,tt0893412 ksFNCZ951Oc,2011.0,11,12,2012,From Prada to Nada,I Really Love Your World,tt0893412 -AlKOlUgzaI,2011.0,12,12,2012,From Prada to Nada,"My Heart is, and Always Has Been, Yours",tt0893412 LlWcSO9ok9g,2011.0,10,12,2012,From Prada to Nada,The Accident,tt0893412 zXnWUj1a8Ss,2011.0,9,12,2012,From Prada to Nada,I Thought You Were in Mexico,tt0893412 oFon0yFgldk,2011.0,6,12,2012,From Prada to Nada,I'm Falling For You,tt0893412 thOz5eO74hE,2011.0,7,12,2012,From Prada to Nada,Tell Him How You Feel,tt0893412 Bi2CHeMhNyM,2011.0,4,12,2012,From Prada to Nada,I Dream About a House,tt0893412 EodapLIzTnk,2011.0,3,12,2012,From Prada to Nada,Sexy T.A.,tt0893412 k2VevzNW4AY,2011.0,5,12,2012,From Prada to Nada,You've Won!,tt0893412 0R1F6r2-ngk,2011.0,2,12,2012,From Prada to Nada,Leaving the House,tt0893412 E-dMy3oJGT0,2011.0,1,12,2012,From Prada to Nada,Dad's Final Dance,tt0893412 NCqhkbAkzug,2011.0,10,11,2012,The Lincoln Lawyer,Whose Side are You on Anyway?,tt1189340 0SYBBmzZPOA,2011.0,11,11,2012,The Lincoln Lawyer,"Hospital, Not the Morgue",tt1189340 mPoxI4PmAl8,2011.0,8,11,2012,The Lincoln Lawyer,When Do You Retire?,tt1189340 X7KoVUspHys,2011.0,9,11,2012,The Lincoln Lawyer,Cross-Examination,tt1189340 lfCVS3HWdjg,2011.0,7,11,2012,The Lincoln Lawyer,Attorney-Client Privilege,tt1189340 8qQg4bvTlho,2011.0,6,11,2012,The Lincoln Lawyer,I'm Trying to Make it Right!,tt1189340 7W78nWDG95s,2011.0,5,11,2012,The Lincoln Lawyer,They Want the Death Penalty,tt1189340 h6M2ZbuGfYc,2011.0,3,11,2012,The Lincoln Lawyer,It's Called the Justice System,tt1189340 CcKPNcDGDLs,2011.0,4,11,2012,The Lincoln Lawyer,Can You Give Me a Lift?,tt1189340 i2uV68pKreU,2011.0,1,11,2012,The Lincoln Lawyer,It's Time to Refill the Tank,tt1189340 HDUHC--wGt4,2011.0,2,11,2012,The Lincoln Lawyer,This Whole Thing is a Set-Up,tt1189340 YRG4Q2gIWjo,2011.0,5,11,2012,Abduction,I Hate Balloons,tt1600195 5eSrShL8dt8,2011.0,6,11,2012,Abduction,Who Are My Real Parents?,tt1600195 Af2wrig588c,2011.0,11,11,2012,Abduction,Watching From a Distance,tt1600195 kQUXf8oO73I,2011.0,10,11,2012,Abduction,The Stadium Chase,tt1600195 IP0UFkE-Nng,2011.0,3,11,2012,Abduction,The Website Got a Hit,tt1600195 ohwhcMgHUKs,2011.0,9,11,2012,Abduction,Diner Attack,tt1600195 6nvQySlxSWY,2011.0,8,11,2012,Abduction,The Train Fight,tt1600195 lDksLpsqHwQ,2011.0,4,11,2012,Abduction,There's a Bomb in the Oven!,tt1600195 dwMz7K0kr-M,2011.0,1,11,2012,Abduction,Hit Me!,tt1600195 3fjlQw23hd0,2011.0,7,11,2012,Abduction,I Know What I'm Doing Now,tt1600195 yQi_ZJp9_jM,2011.0,2,11,2012,Abduction,That Doesn't Look Like Me,tt1600195 hkHrNtJHbRQ,2007.0,7,11,2012,Stir of Echoes: The Homecoming,Meeting Alice,tt0805619 lsgl848rea8,2007.0,11,11,2012,Stir of Echoes: The Homecoming,Kill Me!,tt0805619 9MyynB2RnZQ,2007.0,6,11,2012,Stir of Echoes: The Homecoming,A Hard Year,tt0805619 I2yuo_5AkCs,2007.0,8,11,2012,Stir of Echoes: The Homecoming,Welcome the Fear,tt0805619 e1NkoFF-13U,2007.0,10,11,2012,Stir of Echoes: The Homecoming,Scene of the Crime,tt0805619 sCUSUl7-4Qg,2007.0,4,11,2012,Stir of Echoes: The Homecoming,A Helpful Stranger,tt0805619 nZSxvozKoeE,2007.0,5,11,2012,Stir of Echoes: The Homecoming,Elevator Hell,tt0805619 sOgO4lPPK1U,2007.0,2,11,2012,Stir of Echoes: The Homecoming,Surprise Party,tt0805619 D83XRiOVARQ,2007.0,1,11,2012,Stir of Echoes: The Homecoming,Horrors of War,tt0805619 Id3vqOPHk-4,2007.0,3,11,2012,Stir of Echoes: The Homecoming,Consoling the Inconsolable,tt0805619 gvoBpSAb-vM,2007.0,9,11,2012,Stir of Echoes: The Homecoming,Killer,tt0805619 BAqabMWnAmk,2003.0,11,11,2012,Leprechaun: Back 2 tha Hood,You Hit Like a Wee Lass,tt0339294 j67MZXY33c0,2003.0,10,11,2012,Leprechaun: Back 2 tha Hood,Police Brutality!,tt0339294 Y6CMcllU8J0,2003.0,8,11,2012,Leprechaun: Back 2 tha Hood,Bathroom Trouble,tt0339294 kCqEADYRg8g,2003.0,5,11,2012,Leprechaun: Back 2 tha Hood,Leprebong,tt0339294 i5Y6BTlx37s,2003.0,9,11,2012,Leprechaun: Back 2 tha Hood,A Gold Tooth,tt0339294 6JSqeViZRU0,2003.0,7,11,2012,Leprechaun: Back 2 tha Hood,A Little Massage,tt0339294 PyHK6QRniQ0,2003.0,6,11,2012,Leprechaun: Back 2 tha Hood,Munchies,tt0339294 _U_s1OKHnlU,2003.0,2,11,2012,Leprechaun: Back 2 tha Hood,I Banish Thee!,tt0339294 vrujU3pc7-U,2003.0,1,11,2012,Leprechaun: Back 2 tha Hood,Origin,tt0339294 tifUOGFTOBM,2003.0,4,11,2012,Leprechaun: Back 2 tha Hood,Dog!,tt0339294 YOO8a-wBTy0,2003.0,3,11,2012,Leprechaun: Back 2 tha Hood,All Will Be Revealed!,tt0339294 S_PvnzDlqmI,2009.0,5,8,2012,Precious,Baby Abdul,tt0929632 PlkdsidJA38,2009.0,6,8,2012,Precious,Nothing To Write Today,tt0929632 CekWztEL504,2009.0,8,8,2012,Precious,You Ain't Gonna See Me No More,tt0929632 Fh1ZUliQDFg,2009.0,3,8,2012,Precious,A Visit From a Social Worker,tt0929632 _-xCcoG6Wlc,2009.0,1,8,2012,Precious,I'm a Kill You!,tt0929632 GUw4Qqh5Th0,2009.0,4,8,2012,Precious,Straight-Up Lesbians,tt0929632 3ZQFpUxopm4,2009.0,7,8,2012,Precious,Mary's Confession,tt0929632 hFqDZ3vzyRw,2009.0,2,8,2012,Precious,Southern Fried Chicken,tt0929632 V-SMOiDv5pA,1981.0,1,9,2012,First Monday in October,You Don't Have to Agree with a Man in Order to,tt0082382 TJ9f2rnjB84,1956.0,7,9,2012,The Court Jester,The Pellet with the Poison's in the Vessel with the Pestle,tt0049096 VKu1354bPug,2003.0,1,9,2012,Après vous...,A Surprise in the Park,tt0344604 MPQvVBaOx2E,1984.0,3,8,2012,Star Trek 3: The Search for Spock,Be Careful What You Wish For,tt0088170 jsL4-BxsZjA,2003.0,8,9,2012,Après vous...,Making Excuses,tt0344604 hvvTxyks7L8,2003.0,9,9,2012,Après vous...,Antoine Gets the Girl,tt0344604 bbqRezPHMDQ,2003.0,7,9,2012,Après vous...,An Unexpected Kiss,tt0344604 9GYgmwMfGXU,2003.0,6,9,2012,Après vous...,An Awkward Job Interview,tt0344604 kW7IPAaL7I4,2003.0,4,9,2012,Après vous...,Meeting Blanche,tt0344604 fvYD-2ggmcc,2003.0,5,9,2012,Après vous...,An Accidental Proposal,tt0344604 qO1-at2DUGU,2003.0,2,9,2012,Après vous...,Suicide Letter,tt0344604 jBajVRGElXY,2003.0,3,9,2012,Après vous...,A Revealing Car Ride,tt0344604 ZTGK6ChH494,2004.0,11,11,2012,Saw,Game Over,tt0387564 HHxezNV6ntY,2004.0,10,11,2012,Saw,Revenge,tt0387564 YegA1WNRKnU,2004.0,8,11,2012,Saw,It Was Tapp,tt0387564 7bmB4RhsYgQ,2004.0,9,11,2012,Saw,Lawrence s Off His Foot,tt0387564 717gDCZQsdc,2004.0,6,11,2012,Saw,Jigsaw Calls Their Bluff,tt0387564 qqWVQuCaB6Y,2004.0,7,11,2012,Saw,Who Is That?,tt0387564 ZEqt7tr41Mk,2004.0,2,11,2012,Saw,The Game,tt0387564 WzlAPD4Ttc0,2004.0,3,11,2012,Saw,Razor Wire,tt0387564 PLBt2zwq_vU,2004.0,4,11,2012,Saw,Head Trap,tt0387564 5LZfv0tLZKE,2004.0,5,11,2012,Saw,Booby Traps,tt0387564 iNSN6QhIWeA,2004.0,1,11,2012,Saw,Waking Up,tt0387564 a6oC5iQB4u8,2001.0,3,11,2012,Monster's Ball,Takes a Human Being to See a Human Being Scene,tt0285742 JMWhU1FfqP8,2001.0,5,11,2012,Monster's Ball,Electric Chair Scene,tt0285742 0tRSAQUheo0,2001.0,6,11,2012,Monster's Ball,I Always Loved You Scene,tt0285742 p_-Zm_G8cBI,2001.0,4,11,2012,Monster's Ball,You Ain't Lost No Weight Scene,tt0285742 OxqTSDSxRwg,2001.0,2,11,2012,Monster's Ball,Death Row Goodbye Scene,tt0285742 NOadx4ZICaQ,2005.0,10,10,2012,The Devil's Rejects,Free Bird,tt0395584 ujEbejephNM,2005.0,9,10,2012,The Devil's Rejects,Chicken F***er,tt0395584 arQDNf6cjaw,2005.0,7,10,2012,The Devil's Rejects,Tutti Frutti Ice Cream,tt0395584 tfvptl5VS08,2005.0,8,10,2012,The Devil's Rejects,Arm of Justice,tt0395584 JXnNKqu3N3w,2005.0,6,10,2012,The Devil's Rejects,Housekeeping,tt0395584 yl0jujA2jLw,2005.0,5,10,2012,The Devil's Rejects,Elvis Aaron Presley,tt0395584 7FN-chIhcNM,2005.0,4,10,2012,The Devil's Rejects,Bathroom Break Entertainment,tt0395584 0N9Fzv7bYCM,2005.0,3,10,2012,The Devil's Rejects,Clown Business,tt0395584 j42TrAVceCI,2005.0,1,10,2012,The Devil's Rejects,Midnight Rider,tt0395584 VjlGwSBvL6g,2005.0,2,10,2012,The Devil's Rejects,Send in the Clown,tt0395584 1H0J9VhDCno,1993.0,4,11,2012,Leprechaun,A Nice Leg Caress,tt0107387 QfrPUNMOS6E,2007.0,2,8,2012,Sweeney Todd,My Friends,tt0408236 xamDprXBtBg,2007.0,1,8,2012,Sweeney Todd,No Place Like London,tt0408236 MG9L-S6J_18,1997.0,2,12,2012,Cube,How Did We Get Here?,tt0123755 P6fVrC-RQLg,1987.0,8,12,2012,Dirty Dancing,Johnny Didn't Do It,tt0092890 7lShqpv3i24,1987.0,5,12,2012,Dirty Dancing,Dance With Me,tt0092890 LFhlnBzdOtk,1987.0,6,12,2012,Dirty Dancing,Have You Had Many Women?,tt0092890 XINddkzfTzM,1987.0,12,12,2012,Dirty Dancing,The Time of My Life,tt0092890 ypKSbnYOrwE,1987.0,11,12,2012,Dirty Dancing,Nobody Puts Baby in a Corner,tt0092890 f8Cjlv6nBTg,1993.0,6,11,2012,Leprechaun,Bear Trap,tt0107387 x9L9S7jEv_M,1993.0,5,11,2012,Leprechaun,Pogo on His Lung,tt0107387 ev7an6-CYpc,1993.0,2,11,2012,Leprechaun,I'm Back,tt0107387 B_DMSu-NVZ8,1997.0,9,12,2012,Cube,There's Nothing Down Here,tt0123755 h__j2aPe63w,1997.0,12,12,2012,Cube,The Return of Quentin,tt0123755 8AZk-d0z3ws,1997.0,10,12,2012,Cube,Moving in Circles,tt0123755 3_dGBLwXBIE,1997.0,8,12,2012,Cube,Sound Activated,tt0123755 tvIE50OJfxM,1997.0,7,12,2012,Cube,No Way Out,tt0123755 n9-Wk6ulBuA,1997.0,11,12,2012,Cube,Is He Dead?,tt0123755 gv1nYk_OJjs,1997.0,6,12,2012,Cube,Razor Wire,tt0123755 X7U_RxbkaIg,1997.0,5,12,2012,Cube,This Room Is Green,tt0123755 QiVfqVQ5t9A,1997.0,4,12,2012,Cube,Prime Numbers,tt0123755 K7Dd88h25kU,1997.0,3,12,2012,Cube,Acid Trap,tt0123755 y3zcF3YvK-o,2001.0,11,11,2012,Monster's Ball,Can I Touch You? Scene,tt0285742 k8Tw4JhzORM,1997.0,1,12,2012,Cube,Slice and Dice,tt0123755 f2ugRkVMOuE,1987.0,3,12,2012,Dirty Dancing,Log Dancing,tt0092890 x6FDJAu5yMc,2001.0,9,11,2012,Monster's Ball,Make Me Feel Good Scene,tt0285742 MtWRq5FXCbo,2001.0,8,11,2012,Monster's Ball,That's My Baby Scene,tt0285742 MR93FRxKjTQ,2001.0,7,11,2012,Monster's Ball,I Quit the Team Scene,tt0285742 8XkrkBt-8LQ,2001.0,10,11,2012,Monster's Ball,Hank Just Like His Daddy Scene,tt0285742 siTZSTZwJ0E,1987.0,10,12,2012,Dirty Dancing,"I'm Out, Baby",tt0092890 iMA4bMMh44w,1987.0,9,12,2012,Dirty Dancing,I'm Sorry I Lied,tt0092890 ZiXcZtfAbf8,2001.0,1,11,2012,Monster's Ball,"Like Father, Like Son Scene",tt0285742 LnqAE4Rjdqk,1987.0,4,12,2012,Dirty Dancing,Dirty Knife and a Folding Table,tt0092890 aiilV691CzY,1987.0,7,12,2012,Dirty Dancing,Love Is Strange,tt0092890 -sYKI4A3uhc,1987.0,2,12,2012,Dirty Dancing,Hungry Eyes,tt0092890 WRdy4CcRchU,1987.0,1,12,2012,Dirty Dancing,I Carried a Watermelon,tt0092890 VAp9p0U1r4g,2004.0,9,9,2012,Crash,Snow Falls on Los Angeles,tt0375679 MsSPAEtYaZE,2004.0,5,9,2012,Crash,An LAPD Racist,tt0375679 EbarO9zF81Y,2004.0,2,9,2012,Crash,I Want the Locks Changed Again,tt0375679 _QXyyj1RiCE,2004.0,1,9,2012,Crash,Car Jacking,tt0375679 GDrnSzfL-aI,2004.0,7,9,2012,Crash,I'm Not Sitting On No Curb for Nobody,tt0375679 EtvbEtPIGiA,2004.0,3,9,2012,Crash,Pat Down by the Police,tt0375679 oUTQFpVOWGE,2004.0,6,9,2014,Crash,I'm Gonna Get You Out,tt0375679 m6NeY3rTpJU,2004.0,4,9,2012,Crash,How Far Can Bullets Go?,tt0375679 LlQXhEOzLW0,1998.0,4,11,2012,Belly,The Jamaican,tt0158493 L-iyxIincCI,2004.0,8,9,2012,Crash,An Invisible Cloak,tt0375679 B3v1kEzT4bA,1993.0,11,11,2012,Leprechaun,Four-Leaf Clover,tt0107387 W8Iw5W2_bbM,1993.0,10,11,2012,Leprechaun,Eye for an Eye,tt0107387 IAYQUTYc_tA,1993.0,7,11,2012,Leprechaun,Ring Around the Rosey,tt0107387 aNUs1A_sUCc,1993.0,8,11,2012,Leprechaun,I'm a,tt0107387 IhZrBku_eCA,1993.0,9,11,2012,Leprechaun,Wheelchair Chase,tt0107387 Jrvr-VIymgo,1993.0,3,11,2012,Leprechaun,End of the Rainbow,tt0107387 jr_bZ2gzRIY,1993.0,1,11,2012,Leprechaun,This is the Nineties,tt0107387 yp6SO-tZpJw,1998.0,3,11,2012,Belly,The Basement,tt0158493 r0Iq2_euH44,1998.0,1,11,2012,Belly,Nightclub Robbery,tt0158493 k26hmRbDQFw,1979.0,4,8,2012,Apocalypse Now,The Smell of Napalm In the Morning,tt0078788 WFsMguGrUVo,1979.0,1,8,2012,Apocalypse Now,Saigon,tt0078788 30QzJKCUekQ,1979.0,3,8,2012,Apocalypse Now,Ride of the Valkyries,tt0078788 8upFfAQcfEM,1998.0,11,11,2012,Belly,It's Time,tt0158493 xi5rxsY_Nsw,1998.0,10,11,2012,Belly,Rise Above All This Madness,tt0158493 Wo3XrThPZzo,1998.0,8,11,2012,Belly,Shameek Kills Big Head Rico,tt0158493 HGCOxt0M7cE,1998.0,9,11,2012,Belly,You Were Scared,tt0158493 f8znwPYsuFE,1998.0,5,11,2012,Belly,Might Have to Drop a Dime,tt0158493 TGyqMjtaZiw,1998.0,7,11,2012,Belly,Tommy Panics,tt0158493 JnFHE_crn0o,1998.0,6,11,2012,Belly,Jamaican Assassination,tt0158493 bxegamvM8ME,1998.0,2,11,2012,Belly,Tommy's Crib,tt0158493 gUrSHyV7Opg,2007.0,8,8,2012,Sweeney Todd,Bloody Vengeance,tt0408236 qZmteh2hT9A,2007.0,5,8,2012,Sweeney Todd,Johanna,tt0408236 Pn_XD7jDwFQ,2007.0,6,8,2012,Sweeney Todd,"God, That's Good!",tt0408236 O1-lkTgl-ws,2007.0,7,8,2012,Sweeney Todd,By the Sea,tt0408236 srR56T9-j5M,2007.0,3,8,2012,Sweeney Todd,Shaving Contest,tt0408236 hTzqKlFConk,2007.0,4,8,2012,Sweeney Todd,Epiphany,tt0408236 PpUWjff_OcM,2000.0,7,12,2012,American Psycho,Dinner Reservations,tt0144084 MCo6TtUkCWc,2000.0,6,12,2012,American Psycho,I Gotta Return Some Videotapes,tt0144084 XMmlJnxP7Y4,2000.0,4,12,2012,American Psycho,Sussudio,tt0144084 nRTjNEP6v2U,2000.0,12,12,2012,American Psycho,No More Barriers,tt0144084 0S7olzuojGY,2000.0,8,12,2012,American Psycho,The Greatest Love of All,tt0144084 qizUajHk7r0,2000.0,9,12,2012,American Psycho,Die Yuppie Scum,tt0144084 Ruw9fsh3PNY,2000.0,3,12,2012,American Psycho,Hip to be Square,tt0144084 7OARf8dNLBc,2000.0,11,12,2012,American Psycho,A Pretty Sick Guy,tt0144084 _OtcwxERu50,2000.0,10,12,2012,American Psycho,Feed Me a Stray Cat,tt0144084 HSWtc01BlqM,1979.0,8,8,2012,Apocalypse Now,The Horror,tt0078788 GjB8z0Bvi14,1979.0,2,8,2012,Apocalypse Now,Terminate With Extreme Prejudice,tt0078788 B1kQLmi0q5U,2004.0,2,8,2012,Against the Ropes,Let Me See Your Stance,tt0312329 JInEj95yoUQ,1979.0,5,8,2012,Apocalypse Now,Do Lung Bridge,tt0078788 _C672_Fkzms,1979.0,7,8,2012,Apocalypse Now,The Photojournalist,tt0078788 RjKNbfA64EE,2000.0,1,12,2012,American Psycho,Morning Routine,tt0144084 AD5N-le_1es,2000.0,2,12,2012,American Psycho,Business Cards,tt0144084 3T-VAi2Xqq8,1979.0,6,8,2012,Apocalypse Now,Colonel Kurtz,tt0078788 3-Q6PbschQI,2000.0,5,12,2012,American Psycho,Ed Gein's Philosophy of Women,tt0144084 _r-R-b72rL0,1997.0,6,10,2012,A Smile Like Yours,I'll Give You One of My Kids,tt0120151 1i8l526qhzY,1997.0,7,10,2012,A Smile Like Yours,,tt0120151 EMOE8Ub7-zs,2002.0,1,10,2012,Serving Sara,A Savant,tt0261289 bBzNPO001NU,2004.0,5,8,2012,Against the Ropes,A New Start,tt0312329 0BF9MkmTBjk,2002.0,9,10,2012,Serving Sara,Talking Breasts,tt0261289 L-sb2Xeqn14,1985.0,6,9,2012,Rustlers' Rhapsody,Learning to Be a Sidekick,tt0089945 BPUpzQ4vX_o,1985.0,7,9,2012,Rustlers' Rhapsody,High-Stepping Horse,tt0089945 rAKR-BBQY2M,2002.0,3,10,2012,Serving Sara,I'm Happily Married,tt0261289 sqmzvduQ-JY,1972.0,4,9,2012,Bad Company,Clean Them Out,tt0068245 HuzpoTGja5M,1972.0,9,9,2012,Bad Company,I Want to See a Man Drop for Every Shot,tt0068245 KZrcqIvvB_0,1972.0,3,9,2012,Bad Company,Cleaning a Rabbit,tt0068245 cHQcdgc_Whk,1972.0,2,9,2012,Bad Company,Frog Prank,tt0068245 oN832LNaq4w,1972.0,1,9,2012,Bad Company,Give Me Back My Money,tt0068245 nXIu-RlvPJM,2005.0,9,10,2012,Asylum,Continued Treatment,tt0348505 wbMLxj0lKAU,2005.0,10,10,2012,Asylum,Leave Me Alone,tt0348505 rllKhsQXZXI,2005.0,7,10,2012,Asylum,In the Past,tt0348505 bXRv0TjJQZ0,2005.0,8,10,2012,Asylum,She's Here,tt0348505 rtqgJvhrswY,2005.0,5,10,2012,Asylum,Edgar's Arrest,tt0348505 D3tnuA1OazI,2005.0,6,10,2012,Asylum,Devastating Grief,tt0348505 xSyvjgWMsKc,2005.0,4,10,2012,Asylum,In Love With a Tortured Genius,tt0348505 B7FkLh0uqdc,2005.0,2,10,2012,Asylum,Escape,tt0348505 7khCMEgY5wc,2005.0,3,10,2012,Asylum,The Integrity of the Hospital,tt0348505 rhNty595BeI,2005.0,1,10,2012,Asylum,An Adventurer,tt0348505 PTg0wFv6dZ4,2000.0,9,9,2012,An Everlasting Piece,A Gesture,tt0218182 xxfZmz7TxSo,2000.0,8,9,2012,An Everlasting Piece,Trying to Survive,tt0218182 3RgRVQqUhhM,2000.0,6,9,2012,An Everlasting Piece,On the Side of the Road,tt0218182 1fdta94pfxc,2000.0,7,9,2012,An Everlasting Piece,Interrogation,tt0218182 MrL_uWnwPq0,2000.0,5,9,2012,An Everlasting Piece,Who's That?,tt0218182 rhQ5dWLFLPM,2000.0,4,9,2012,An Everlasting Piece,I Thought You Said Herpes,tt0218182 uEJ_Ak34ias,2000.0,3,9,2012,An Everlasting Piece,The Scalper,tt0218182 qZIIx-X5Bbc,2000.0,2,9,2012,An Everlasting Piece,In An Escort?,tt0218182 YieQdHA9uIA,2000.0,1,9,2012,An Everlasting Piece,Poetry,tt0218182 05nRqVJlunA,1996.0,5,9,2012,A Very Brady Sequel,A Very Brady Shopping Trip,tt0118073 DEHpRuG-P94,1996.0,4,9,2012,A Very Brady Sequel,We're Not Brother and Sister!,tt0118073 gj-Rl-cgKxM,1988.0,7,9,2012,Tucker: The Man and His Dream,Police Chase,tt0096316 CZaS2CCnFYs,1988.0,9,9,2012,Tucker: The Man and His Dream,The Idea and the Dream,tt0096316 djMYTM1p318,1988.0,8,9,2012,Tucker: The Man and His Dream,Tucker's Defense,tt0096316 eL9aiYpAyI0,1988.0,5,9,2012,Tucker: The Man and His Dream,Christening the Tucker Sedan,tt0096316 iwXsuJXUau4,1988.0,6,9,2012,Tucker: The Man and His Dream,Catching Dreams,tt0096316 Cfcaik7bDyg,1988.0,3,9,2012,Tucker: The Man and His Dream,Tucker's Presentation,tt0096316 K-Tad1Lgw7k,1988.0,4,9,2012,Tucker: The Man and His Dream,Factory Accident,tt0096316 bIHeoOh2F7o,1988.0,1,9,2012,Tucker: The Man and His Dream,The Car of Tomorrow Today,tt0096316 l-vk0fgFGd4,1988.0,2,9,2012,Tucker: The Man and His Dream,The Design Department,tt0096316 7vp7Lpjl_vk,2005.0,7,9,2012,Prize Winner of Defiance Ohio,The Affadaisies,tt0406158 oXRixZ82ZqU,2005.0,1,9,2012,Prize Winner of Defiance Ohio,A Happy Cry,tt0406158 FVJX6ODlvFY,2005.0,9,9,2012,Prize Winner of Defiance Ohio,The Real Ryan Kids Grown Up,tt0406158 OOBt6EktEVg,2005.0,8,9,2012,Prize Winner of Defiance Ohio,I'm Not a Saint,tt0406158 x9u_a8eEPlM,2005.0,6,9,2012,Prize Winner of Defiance Ohio,Enjoy this Moment to the Fullest,tt0406158 SqISCN4gNNA,2005.0,5,9,2012,Prize Winner of Defiance Ohio,I Don't Need You to Make Me Happy,tt0406158 A_6e5AilC6k,2005.0,4,9,2012,Prize Winner of Defiance Ohio,Shopping Spree,tt0406158 NGceQLxvFNE,2005.0,3,9,2012,Prize Winner of Defiance Ohio,I Want This Thing Out of the House,tt0406158 yn_iiD8lxZQ,2005.0,2,9,2012,Prize Winner of Defiance Ohio,Only if You'll Do the Ironing,tt0406158 OMEv7FPE7CQ,1958.0,9,9,2012,"Another Time, Another Place",I Want You to Know Who it Was,tt0051364 pV2y0et0TT4,1958.0,6,9,2012,"Another Time, Another Place",Remembering Mark,tt0051364 KRMxuHWOcTI,1958.0,7,9,2012,"Another Time, Another Place",You Think I Don't Feel Guilty Enough?,tt0051364 RXC48uE7UzM,1958.0,8,9,2012,"Another Time, Another Place",Was There Someone Else?,tt0051364 Upww38-2fyo,1958.0,5,9,2012,"Another Time, Another Place",The Feeling of Things Half Said,tt0051364 2QCUgqD37fk,1958.0,4,9,2012,"Another Time, Another Place",It's A Mistake!,tt0051364 8O97aGzvU3g,1958.0,2,9,2012,"Another Time, Another Place",There's Something I Haven't Told You,tt0051364 24QQqGjDEKM,1958.0,3,9,2012,"Another Time, Another Place",I Can't Come Back Tonight,tt0051364 Nfah2Cy_mwU,1999.0,7,8,2012,Angela's Ashes,"Thank You, Saint Francis",tt0145653 WQ71crXovIk,1999.0,6,8,2012,Angela's Ashes,Aunt Aggie,tt0145653 84ybwb86tKs,1958.0,1,9,2012,"Another Time, Another Place",Cutting the Wires,tt0051364 P9aAc9ibVWM,1999.0,3,8,2012,Angela's Ashes,I Could Have Floated Out of the Bed,tt0145653 8XglzsFYAJU,1999.0,5,8,2012,Angela's Ashes,You're Not Our Father,tt0145653 EPBcADfQoJY,1999.0,4,8,2012,Angela's Ashes,Jesus and the Weather,tt0145653 dQ0sgbvSQAk,1999.0,2,8,2012,Angela's Ashes,I Don't Want This,tt0145653 yq2t7SjUSoI,1999.0,1,8,2012,Angela's Ashes,Hanging on the Cross Sporting Shoes,tt0145653 C4dkYaeNLuc,1966.0,4,9,2012,Alfie,Shadows On Me Lungs?,tt0060086 AWJPmyL5uHI,1966.0,2,9,2012,Alfie,Why Did I Get Involved?,tt0060086 AF9cqjNt9uc,1966.0,3,9,2012,Alfie,A Father's Voice,tt0060086 YSQ_eohNRrM,2002.0,10,10,2012,Abandon,There is No One There,tt0267248 vAyq-3z1SYo,2002.0,5,10,2012,Abandon,"I Love You, But You Can't Come",tt0267248 i1lkrSFlpss,2002.0,6,10,2012,Abandon,I'm In Love With You,tt0267248 70yAXCvid4k,2002.0,9,10,2012,Abandon,You're Irrational,tt0267248 I1xQMJjTMLQ,2002.0,7,10,2012,Abandon,Where Have You Been?,tt0267248 Gx7y8ecslp4,2002.0,8,10,2012,Abandon,You Can Always Call Me,tt0267248 Nf1uvt0zKFU,1997.0,8,10,2012,A Smile Like Yours,Jennifer Turns Down the Offer,tt0120151 E0NZlvha-KQ,2002.0,2,10,2012,Abandon,Sing to God,tt0267248 XAm-zfxcktE,2002.0,4,10,2012,Abandon,You're A Virgin,tt0267248 e8J56HbIyvc,2002.0,1,10,2012,Abandon,Tell Us About Yourself,tt0267248 S4YcLymVzXw,1997.0,10,10,2012,A Smile Like Yours,Wonderful Liars,tt0120151 b2WuWXRVdfk,2002.0,3,10,2012,Abandon,"Drink, Drink, Drink!",tt0267248 8kiNT3_17i8,1997.0,9,10,2012,A Smile Like Yours,Business Scents,tt0120151 DTXWi9iR2F0,1997.0,5,10,2012,A Smile Like Yours,Lazy Swimmers,tt0120151 x0yNzsNUoK4,2004.0,3,8,2012,Against the Ropes,Fighting Dirty,tt0312329 ffR1X6gndvo,1997.0,1,10,2012,A Smile Like Yours,The Baby Clinic,tt0120151 XXVbPZX6qz8,1997.0,4,10,2012,A Smile Like Yours,The Cold Steel,tt0120151 LntFGGP92xQ,1997.0,2,10,2012,A Smile Like Yours,Fertility Physical,tt0120151 3JLDAyAEaqI,2004.0,6,8,2012,Against the Ropes,You Fight for Me,tt0312329 1YGyKYK1HuY,1997.0,3,10,2012,A Smile Like Yours,Occupied,tt0120151 w3HklXic1eY,2004.0,1,8,2012,Against the Ropes,Drugs and Thugs,tt0312329 75A7PFuBqFk,2004.0,4,8,2012,Against the Ropes,The First Fight,tt0312329 gtHSeq99_l8,1996.0,1,9,2012,A Very Brady Sequel,House of Cards,tt0118073 AA_yIRZNg1s,1996.0,3,9,2012,A Very Brady Sequel,There's Always Room For One More,tt0118073 _hMtM3QndW8,1996.0,8,9,2012,A Very Brady Sequel,Mr. Brady Saves the Day!,tt0118073 gz-Uv494KFk,1996.0,2,9,2012,A Very Brady Sequel,Daddy's Back!,tt0118073 JR_bnlkaEss,1996.0,6,9,2012,A Very Brady Sequel,Marcia and Greg on a Date,tt0118073 yBwa0z0kCrg,1996.0,9,9,2012,A Very Brady Sequel,Marcia and Greg Kiss,tt0118073 6Tjcx6B5lbA,1996.0,7,9,2012,A Very Brady Sequel,Good Time Music,tt0118073 nSJxx_KUEes,1966.0,5,9,2012,Alfie,Live For Yourself,tt0060086 FyS7kFIZJ6k,1966.0,9,9,2012,Alfie,He's Younger Than You,tt0060086 7O6j3eHsueM,1966.0,7,9,2012,Alfie,She Ain't So Ugly After All,tt0060086 9Vve6PAxRpk,1966.0,6,9,2012,Alfie,Street Photographer,tt0060086 mQAlpiB3_FQ,1966.0,8,9,2012,Alfie,Bar Fight,tt0060086 B0FZhLeHy7A,1966.0,1,9,2012,Alfie,A Married Woman,tt0060086 v-UIgJgiPJs,1979.0,3,8,2012,An Almost Perfect Affair,A Bath is More Relaxing,tt0078757 GlHL_ippO8k,1979.0,2,8,2012,An Almost Perfect Affair,My Lucky Number,tt0078757 y587UlBV9jg,2001.0,8,10,2012,Pootie Tang,I'm Gonna Sine Yo Pitty on the Runny Kine,tt0258038 WSIS3ZUDzzY,2001.0,7,10,2012,Pootie Tang,Pootie's Bad Time Burgers,tt0258038 ZW66_8a4rqY,1979.0,8,8,2012,An Almost Perfect Affair,You Threw Away Nothing,tt0078757 VzZJ9-El-a4,1979.0,7,8,2012,An Almost Perfect Affair,Car Chase,tt0078757 RemcXMCCQVk,2005.0,5,10,2012,The Honeymooners,Breakdancing for Cash,tt0373908 pFxOuE_0wqc,1979.0,4,8,2012,An Almost Perfect Affair,Something Better to Worry About,tt0078757 qdy5TZDOwm0,1979.0,6,8,2012,An Almost Perfect Affair,Seen Any Good Films Lately?,tt0078757 wNqqn5NPJ8k,2001.0,10,10,2012,Jimmy Neutron: Boy Genius,Burping Soda,tt0268397 fPWCnwZEOqE,1979.0,1,8,2012,An Almost Perfect Affair,Very Sophisticated,tt0078757 j3k3xWKZIn8,1979.0,5,8,2012,An Almost Perfect Affair,I Could Lose You,tt0078757 Qns26Wdvph8,2009.0,6,8,2012,Case 39,Let Me In!,tt0795351 FXPNIj7q0lU,1991.0,3,10,2012,Flight of the Intruder,Commander Camparelli,tt0099587 9J0DZojg6-g,2009.0,1,8,2012,Case 39,In The Oven,tt0795351 xCI_stZgRHc,2009.0,5,8,2012,Case 39,Why Emily?,tt0795351 HEnmNkRRmHs,2009.0,4,8,2012,Case 39,Hornet Problem,tt0795351 sxtENaaaPpQ,2009.0,3,8,2012,Case 39,What Scares You?,tt0795351 hgCr8TOxcCo,2009.0,8,8,2012,Case 39,Just Die!,tt0795351 -NW-w5Z_vpk,2009.0,2,8,2012,Case 39,I Killed My Mom and Dad,tt0795351 vJFN-ZPqCiQ,1989.0,8,9,2012,We're No Angels,Put My Name on That List!,tt0098625 ZvMDRj9jFaE,1989.0,5,9,2012,We're No Angels,"Help Me, I'm Such a Sinner",tt0098625 a861J6gxqmg,2009.0,7,8,2012,Case 39,You Silly Pumpkin Head,tt0795351 w71n9tHYuIw,1989.0,6,9,2012,We're No Angels,Five Dollar Molly,tt0098625 qGrKwxglKJ0,1989.0,1,9,2012,We're No Angels,Prison Break,tt0098625 mMyrxQNItpY,1989.0,2,9,2012,We're No Angels,You Don't Know What That Is?,tt0098625 mFBIlYRQBLI,1989.0,7,9,2012,We're No Angels,The Weeping Madonna,tt0098625 xiNxK0Xiv2E,1989.0,3,9,2012,We're No Angels,Chanting Along,tt0098625 sehGLkGe-iI,1989.0,4,9,2012,We're No Angels,Saying Grace Under Pressure,tt0098625 9lInNK2jtx8,1989.0,9,9,2012,We're No Angels,Jim's Sermon,tt0098625 S7ZhqwAzKTQ,2003.0,2,9,2012,The Singing Detective,Reassemble Yourself,tt0314676 wwwhtUdGOVM,2003.0,9,9,2012,The Singing Detective,Dealing with the Devil,tt0314676 fk2MU617-Bc,2003.0,8,9,2012,The Singing Detective,What Are We Looking For?,tt0314676 vj6kMfad_2E,2003.0,7,9,2012,The Singing Detective,Word Association,tt0314676 HBrzlqErO_E,2003.0,6,9,2012,The Singing Detective,I'll Figure It Out,tt0314676 kKlihXmSqPE,2003.0,3,9,2012,The Singing Detective,Come to Grease Me?,tt0314676 IrDrwaot490,2003.0,5,9,2012,The Singing Detective,Poison Ivy,tt0314676 5ud6mZ5SULk,2003.0,1,9,2012,The Singing Detective,At the Hop,tt0314676 sheRsZ2HOYI,1998.0,7,10,2012,The Rugrats Movie,Poopy Pants,tt0134067 -A-fBbIXbPo,2003.0,4,9,2012,The Singing Detective,"Let Go, Kitty",tt0314676 SYHN3rt-R5Y,1998.0,2,10,2012,The Rugrats Movie,Baby Shower,tt0134067 PbwgDqZazAU,1998.0,10,10,2012,The Rugrats Movie,The Wolf,tt0134067 2fEZc4acGC0,1998.0,9,10,2012,The Rugrats Movie,Monkey Invasion,tt0134067 tlSZa51g_rc,1998.0,4,10,2012,The Rugrats Movie,Lullaby,tt0134067 WzDlb8zf7gQ,1998.0,8,10,2012,The Rugrats Movie,Learning to Share,tt0134067 nOFfrd6bOh0,1998.0,5,10,2012,The Rugrats Movie,Problems With Brothers,tt0134067 Wpen_d9INlw,1998.0,1,10,2012,The Rugrats Movie,The Reptar Wagon,tt0134067 MOKKPloglVE,1998.0,3,10,2012,The Rugrats Movie,Dil Pickles,tt0134067 ZCz2Ob5_-bg,1998.0,6,10,2012,The Rugrats Movie,Reptar on the Loose,tt0134067 Xbf61_Fgldo,1967.0,2,9,2012,The President's Analyst,You Can Actually Legally Kill Someone?,tt0062153 AL2Qj_h_d-o,1967.0,4,9,2012,The President's Analyst,I'm All Right... Or Am I?,tt0062153 BuwF3dRJiS8,1967.0,9,9,2012,The President's Analyst,The Science of Microelectronics,tt0062153 bXZFFinWVYw,1967.0,6,9,2012,The President's Analyst,"Don't Say Lousy, It's Impolite",tt0062153 BFpoIHexhKQ,1966.0,1,9,2012,The Naked Prey,Elephant Hunting,tt0060736 3PHLmv4Zzu0,1967.0,7,9,2012,The President's Analyst,"Please, No Russian - I'm Spying!",tt0062153 VgKqo3TvZoI,1967.0,5,9,2012,The President's Analyst,Meet the Quantrills,tt0062153 JmElZmlYkHU,1967.0,8,9,2012,The President's Analyst,Changes,tt0062153 gRxu0ooBrPE,1967.0,1,9,2012,The President's Analyst,A Childhood Memory,tt0062153 5XINVbpWRmw,1967.0,3,9,2012,The President's Analyst,On Call,tt0062153 kdbGqJtHWQg,1966.0,6,9,2012,The Naked Prey,Snakes in the Desert,tt0060736 nNLk8GMdFd8,1966.0,9,9,2012,The Naked Prey,Flight to the Fortress,tt0060736 lk1As4QnaCc,1966.0,7,9,2012,The Naked Prey,Foreign Intruders,tt0060736 0SHMCN-6-IM,1966.0,4,9,2012,The Naked Prey,Deadly Defense,tt0060736 mydc8K7yaZI,1966.0,3,9,2012,The Naked Prey,Run for Your Life,tt0060736 lNHheEljm5s,1966.0,5,9,2012,The Naked Prey,Fighting With Fire,tt0060736 ZpJvQAs3_98,1966.0,8,9,2012,The Naked Prey,Waterfall Escape,tt0060736 ZHNyG9ykGDA,2007.0,7,10,2012,The Kite Runner,The Rest of My Life,tt0419887 DPPoZpw3NOg,1966.0,2,9,2012,The Naked Prey,Ambush,tt0060736 ky1W2n5RilM,2007.0,1,10,2012,The Kite Runner,Kite Running,tt0419887 Jhvq7EGVtUg,2007.0,9,10,2012,The Kite Runner,Welcome to Afghanistan,tt0419887 7BEpbVXCbvo,2007.0,6,10,2012,The Kite Runner,The Russian Doctor,tt0419887 gbbbs1uWxvo,2007.0,8,10,2012,The Kite Runner,Hassan's Letter,tt0419887 3jEZ_y7_kfs,2007.0,4,10,2012,The Kite Runner,Birthday Party,tt0419887 20zF8Ug0MjM,2007.0,2,10,2012,The Kite Runner,Tears Into Pearls,tt0419887 1TroueqxAtM,2007.0,3,10,2012,The Kite Runner,Kite Fighting,tt0419887 ypf6WHYpeRU,2007.0,10,10,2012,The Kite Runner,Teaching Kite Flying,tt0419887 BZ1KEaetIwM,2003.0,3,8,2012,The Hunted,Hunters Become Hunted,tt0366174 2HgE2gZhovI,2003.0,2,8,2012,The Hunted,No More Snares on Wolves,tt0366174 4amekKHX28Q,2007.0,5,10,2012,The Kite Runner,Meeting Soraya,tt0419887 p7zF3vZL-4s,2003.0,4,8,2012,The Hunted,Showdown in the Woods,tt0366174 F7UEddgJxrE,2003.0,1,8,2012,The Hunted,Silent Kill,tt0366174 Fy_utfWemC4,2003.0,8,8,2012,The Hunted,Knife Fight,tt0366174 QSQTYxhlIog,2003.0,7,8,2012,The Hunted,War on my Boy,tt0366174 vdq609Xci-g,2003.0,5,8,2012,The Hunted,Learning How to Turn it Off,tt0366174 V0MF8uNW_gc,2005.0,8,10,2012,The Honeymooners,Dog Training,tt0373908 xVpk12wYQ5g,2003.0,6,8,2012,The Hunted,You Better Be Ready to Kill Me,tt0366174 7UhOWJw9eys,2005.0,10,10,2012,The Honeymooners,The Big Race,tt0373908 g5lJIy5IcWc,2005.0,7,10,2012,The Honeymooners,Cayenne Pepper,tt0373908 LhbHp9ey_sU,2005.0,2,10,2012,The Honeymooners,I Can't Take It Anymore!,tt0373908 G5nY_snMhic,2005.0,3,10,2012,The Honeymooners,Bad Investments,tt0373908 hUAGX1IOMr0,2005.0,9,10,2012,The Honeymooners,Iggy the Survivor,tt0373908 2Bml42cWPpo,2005.0,4,10,2012,The Honeymooners,Ralph's New Opportunity,tt0373908 xVc_GWABEFk,2005.0,1,10,2012,The Honeymooners,I'm Gonna Own This Town!,tt0373908 oIu0P3gXxsI,2005.0,6,10,2012,The Honeymooners,Meet Dodge,tt0373908 aQRjyav-x8o,1952.0,6,9,2012,The Greatest Show on Earth,Be a Jumping Jack,tt0044672 vykvU-52g6w,1952.0,7,9,2012,The Greatest Show on Earth,You're a Jealous Fool,tt0044672 jDjZ_Dh6HSM,1952.0,2,9,2012,The Greatest Show on Earth,Clowns Only Love Once,tt0044672 0Nn_t_RfYS8,1952.0,9,9,2012,The Greatest Show on Earth,They Made It,tt0044672 K9ITp_xSaxE,1952.0,8,9,2012,The Greatest Show on Earth,Train Wreck,tt0044672 XEQJU3VPjHU,1952.0,3,9,2012,The Greatest Show on Earth,The Great Sebastian Arrives,tt0044672 BeRTEiGRbw8,1952.0,1,9,2012,The Greatest Show on Earth,The Circus,tt0044672 nIhrGSxslzQ,1952.0,4,9,2012,The Greatest Show on Earth,Holly vs. The Great Sebastian,tt0044672 7qPmEvrv3HQ,1952.0,5,9,2012,The Greatest Show on Earth,The Great Sebastian Falls,tt0044672 xWpMF_EFqyc,2003.0,2,10,2012,The Fighting Temptations,Welcome Home,tt0191133 dMOQv0rb6DY,2003.0,9,10,2012,The Fighting Temptations,Singing for the Inmates,tt0191133 w6n3WpRNWTs,2003.0,10,10,2012,The Fighting Temptations,Fighting Temptation,tt0191133 8UMJAkQqhcM,2003.0,6,10,2012,The Fighting Temptations,Choir Auditions,tt0191133 b7Dxy34dFyY,2003.0,1,10,2012,The Fighting Temptations,You're Fired,tt0191133 WI00FLWTRrY,2003.0,4,10,2012,The Fighting Temptations,Sally's Dying Wish,tt0191133 gjWdFgV-Vz8,2003.0,5,10,2012,The Fighting Temptations,Fever,tt0191133 rWGj8MCBBnc,2003.0,3,10,2012,The Fighting Temptations,Aunt Sally's Funeral,tt0191133 UEr47WrS7Ys,2003.0,7,10,2012,The Fighting Temptations,Barbershop Quartet,tt0191133 FAWPEOWyWN4,2008.0,4,8,2012,The Eye,Chinese Restaurant Fire,tt1305806 aJh1RC2Z474,2003.0,8,10,2012,The Fighting Temptations,No Sinners in the Choir,tt0191133 gJCMd15eaW8,2008.0,3,8,2012,The Eye,Flashback to the Factory,tt1305806 2xRNmBGvfSk,2008.0,8,8,2012,The Eye,Rescue at the Border,tt1305806 Il5lC0E0nqM,2008.0,2,8,2012,The Eye,Coffee Shop Scare,tt1305806 KtBMZ6VAZyI,2008.0,6,8,2012,The Eye,A Message From the Eye,tt1305806 JRQJyeZ0wkY,2008.0,1,8,2012,The Eye,Tell Me What You See,tt1305806 Q1WdHuNv1uo,2008.0,5,8,2012,The Eye,Have You Seen My Report Card?,tt1305806 RvQ1y_CPuDw,2008.0,7,8,2012,The Eye,Ana's Suicide,tt1305806 6-RSVTLojGU,1983.0,3,10,2012,The Dead Zone,The Wolf Is Loose,tt0085407 HG3e03wWQu0,1983.0,5,10,2012,The Dead Zone,Gazebo,tt0085407 -NgmhVRFApQ,1983.0,4,10,2012,The Dead Zone,The Power of Second Sight,tt0085407 1Pcd6RZexJI,1983.0,7,10,2012,The Dead Zone,Greg Stillson Needs Your Money!,tt0085407 zcZJF81jt4w,1983.0,10,10,2012,The Dead Zone,Thwarted Assassination,tt0085407 Tj9M34DzAKo,1983.0,9,10,2012,The Dead Zone,The Missiles Are Flying,tt0085407 MoRaxm7lK8g,1983.0,2,10,2012,The Dead Zone,First Premonition,tt0085407 fltSq_QHbbk,1983.0,6,10,2012,The Dead Zone,Bloody Scissors,tt0085407 y-TUmx2Ow74,1983.0,8,10,2012,The Dead Zone,The Ice Is Gonna Break!,tt0085407 n1pSObsJ_hk,1975.0,7,9,2012,The Day of the Locust,Cockfight,tt0072848 wFSWmfqMp7o,1975.0,8,9,2012,The Day of the Locust,Angry Mob,tt0072848 jJ_p_xhMEvU,1975.0,6,9,2012,The Day of the Locust,The Stage Collapses,tt0072848 P0ePytsVcpI,1983.0,1,10,2012,The Dead Zone,The Accident,tt0085407 hfW-fzTbpRg,1975.0,2,9,2012,The Day of the Locust,The Movie Theater,tt0072848 cuK7JbG06ho,1975.0,3,9,2012,The Day of the Locust,Tod Hits Hollywood,tt0072848 ajE9h1zUbMs,1975.0,1,9,2012,The Day of the Locust,Tod Meets Faye,tt0072848 BQO5Xy2ebhs,1975.0,9,9,2012,The Day of the Locust,The Burning of Los Angeles,tt0072848 UlsRjhvfKJY,1962.0,3,9,2012,The Counterfeit Traitor,I Don't Do Business with Jews,tt0055871 cmtXA6x6Jm4,1975.0,5,9,2012,The Day of the Locust,Ice Cream Meltdown,tt0072848 fjzcBqz2Cpk,1962.0,8,9,2012,The Counterfeit Traitor,The Confession,tt0055871 xLMzMKlv_Ao,1975.0,4,9,2012,The Day of the Locust,Door to Door,tt0072848 _mwKm8tpz-M,1962.0,1,9,2012,The Counterfeit Traitor,"Hurt One Jew, Save a Thousand",tt0055871 PRximULrt4g,1962.0,2,9,2012,The Counterfeit Traitor,Hans,tt0055871 bqxDIHYcp9g,1962.0,9,9,2012,The Counterfeit Traitor,Let Him Die in Sweden,tt0055871 4k9WHvF1QsE,1962.0,6,9,2012,The Counterfeit Traitor,Marianne's Motives,tt0055871 iHllnWESLvY,1962.0,7,9,2012,The Counterfeit Traitor,One Atrocity,tt0055871 sPS0cKOGZO0,1977.0,8,10,2012,Bad News Bears 2,Bears on the News,tt0408524 ORy5ULEbQ48,1962.0,5,9,2012,The Counterfeit Traitor,Precautionary Measures,tt0055871 cPooLABE6Js,1977.0,4,10,2012,Bad News Bears 2,Playboy Magazine,tt0408524 qq4gK8PkKNM,1977.0,9,10,2012,Bad News Bears 2,Let Them Play!,tt0408524 Z6E9SQ_ZLkw,1962.0,4,9,2012,The Counterfeit Traitor,The Incompetents,tt0055871 DM7JBXzCP1k,1977.0,6,10,2012,Bad News Bears 2,Beanball,tt0408524 jv2MsLBMi9U,1977.0,3,10,2012,Bad News Bears 2,The Motel,tt0408524 sloo9PMVoRE,1977.0,2,10,2012,Bad News Bears 2,Hello! How Are You?,tt0408524 c2TcT9JairA,1977.0,7,10,2012,Bad News Bears 2,Pitching Troubles,tt0408524 6Qhj03nCJn0,1977.0,1,10,2012,Bad News Bears 2,You Been Fired,tt0408524 BhbazIuvUCY,1977.0,10,10,2012,Bad News Bears 2,Winning Run,tt0408524 9BHXzftnFGA,1991.0,7,10,2012,Soapdish,Ego-Maniac,tt0102951 PlTz6i4z6xU,1991.0,3,10,2012,Soapdish,Death of a Salesman,tt0102951 8GbzfsvSY7I,1977.0,5,10,2012,Bad News Bears 2,Hot Hitchhiker,tt0408524 4B0FFnkSCuM,1991.0,5,10,2012,Soapdish,One More Time,tt0102951 dLLkOjKNanY,1991.0,4,10,2012,Soapdish,Script Changes,tt0102951 IVxzLITK1YM,1991.0,2,10,2012,Soapdish,Let's Do It,tt0102951 bANgFADltvw,1991.0,10,10,2012,Soapdish,This is Soap Opera,tt0102951 OkphsYRRJ_0,1991.0,1,10,2012,Soapdish,When Can You Start?,tt0102951 gmYSTObayoY,1998.0,6,10,2012,Small Soldiers,Bombshells,tt0122718 0I7GjbhDYtM,1991.0,9,10,2012,Soapdish,Teleprompter Trouble,tt0102951 LC1Sb6tRr4E,1991.0,8,10,2012,Soapdish,America's Sweetheart,tt0102951 fX4XAbCTdYs,1991.0,6,10,2012,Soapdish,Jeffrey Help Me!,tt0102951 n7KKfjFRw8w,1998.0,7,10,2012,Small Soldiers,I Always Hated These Things,tt0122718 TgZwFvKRqK4,1998.0,3,10,2012,Small Soldiers,Keeper of Encarta,tt0122718 H7XEyuPBE48,1998.0,9,10,2012,Small Soldiers,The Gorgonites Fight Back,tt0122718 ul_HuCZxxNU,1998.0,4,10,2012,Small Soldiers,Speech of Speeches,tt0122718 Ls5834hbssM,1998.0,2,10,2012,Small Soldiers,Activating the Troops,tt0122718 0bbWQy30oc8,1998.0,10,10,2012,Small Soldiers,Have I Got a Shock for You,tt0122718 pMoxr-jgd58,1998.0,8,10,2012,Small Soldiers,Phil Surrenders,tt0122718 kQoFdaWI4h8,1998.0,5,10,2012,Small Soldiers,Bicycle Chase,tt0122718 rFHh8MTXs5M,1998.0,1,10,2012,Small Soldiers,Pitching the Real Thing,tt0122718 DebtnaQFX7M,1993.0,6,9,2012,Sliver,Bra and Panties,tt0108162 T6QGAOSIE-o,1993.0,3,9,2012,Sliver,Working Out,tt0108162 pKWLGY2fwZg,1993.0,7,9,2012,Sliver,Love in an Elevator,tt0108162 lDFltuNEfts,1993.0,8,9,2012,Sliver,Hearing a Scream,tt0108162 njP__lsFwE4,1993.0,2,9,2012,Sliver,A Friendly Jog,tt0108162 Ya7Qs1NHepQ,1993.0,1,9,2012,Sliver,Long Fall,tt0108162 ZMb-qj1X1do,1993.0,9,9,2012,Sliver,Get A Life,tt0108162 6QcrQ_TIoKw,1993.0,5,9,2012,Sliver,A Loaded Lead Pencil,tt0108162 hEiI72hLQX4,1993.0,4,9,2012,Sliver,I Want to See You,tt0108162 jowNLHQCAAY,2001.0,5,9,2012,Sidewalks of New York,Cologne,tt0239986 f3tseBsU248,2001.0,9,9,2012,Sidewalks of New York,Love and Relationships,tt0239986 Za9pPzJJcYg,2001.0,8,9,2012,Sidewalks of New York,Are You Having An Affair?,tt0239986 _4jtkw-qFms,1967.0,6,9,2012,Barefoot in the Park,Proper and Dignified,tt0061385 M9m4XUd6x98,2001.0,4,9,2012,Sidewalks of New York,Dinner With Friends,tt0239986 _vxVcxYCyE4,2001.0,3,9,2012,Sidewalks of New York,You're Very Beautiful,tt0239986 6ylO7RAbApc,2001.0,2,9,2012,Sidewalks of New York,Coming On Too Strong,tt0239986 2wEjsHggyII,2001.0,7,9,2012,Sidewalks of New York,The Sweet Side,tt0239986 a6mkbps0BmY,2001.0,1,9,2012,Sidewalks of New York,Virginity,tt0239986 Z_0TQHoV_2I,2010.0,8,8,2012,Shutter Island,Live as a Monster or Die as a Good Man,tt1130884 erILyrdpSqs,2001.0,6,9,2012,Sidewalks of New York,The Real New York,tt0239986 rku6u5PmiZ4,2010.0,7,8,2012,Shutter Island,Set Me Free,tt1130884 eveUzWmTxl4,2010.0,6,8,2012,Shutter Island,My Name is Edward Daniels,tt1130884 HWe802TQAG0,2010.0,4,8,2012,Shutter Island,I Buried You,tt1130884 9DlWhZ45k5w,2010.0,5,8,2012,Shutter Island,A Rat in a Maze,tt1130884 9WY5gDBR0gM,2010.0,3,8,2012,Shutter Island,What If They Wanted You Here?,tt1130884 KihpUEKi4TA,2010.0,2,8,2012,Shutter Island,Could You Stop That?,tt1130884 -F1-sTyGvwA,2010.0,1,8,2012,Shutter Island,You Have to Let Me Go,tt1130884 ghwBg2RgBJM,1988.0,6,9,2012,She's Having a Baby,The Fertility Clinic,tt0096094 TyeZy_UPYKM,1988.0,9,9,2012,She's Having a Baby,This Woman's Work,tt0096094 _W5MVZjoNwc,1988.0,8,9,2012,She's Having a Baby,I Envy Jake,tt0096094 5uVVWV4FnVU,1988.0,1,9,2012,She's Having a Baby,The Scariest Vows in the World,tt0096094 DsKfkkrTLMg,1988.0,3,9,2012,She's Having a Baby,You Never Get What You Want,tt0096094 RfqBp4LFuIQ,1988.0,2,9,2012,She's Having a Baby,How Do You Feel About Slave Wages?,tt0096094 LDnFpgimHH4,1988.0,4,9,2012,She's Having a Baby,Lawnmower: The Musical,tt0096094 5_B-hXtddxw,2002.0,7,10,2012,Serving Sara,An Impudent Bull,tt0261289 ViPVPgUJUgM,1988.0,5,9,2012,She's Having a Baby,Promise You Won't Get Mad,tt0096094 dPXGowa6p3Y,1988.0,7,9,2012,She's Having a Baby,You Can Watch TV If You Get Bored,tt0096094 nkelgV49oGQ,2002.0,8,10,2012,Serving Sara,First Kiss,tt0261289 -7-C6lSAfOs,2002.0,10,10,2012,Serving Sara,The Monster Truck,tt0261289 t5xpX6krGmE,2002.0,5,10,2012,Serving Sara,Stripped by a Conveyer Belt,tt0261289 cgogH0SylMc,2002.0,6,10,2012,Serving Sara,The Price of a Free Motel Room,tt0261289 lEiwqEMhS9E,1985.0,4,9,2012,Rustlers' Rhapsody,Spaghetti Western,tt0089945 DG5ZouipJNs,2002.0,4,10,2012,Serving Sara,Never Hit a Girl,tt0261289 cIE1fT395HM,1985.0,2,9,2012,Rustlers' Rhapsody,Western Towns Are All Identical,tt0089945 NARUgQRZhL8,1985.0,5,9,2012,Rustlers' Rhapsody,"Just Shoot, Okay?",tt0089945 R_shARjqjLA,2002.0,2,10,2012,Serving Sara,Why Are You Calling Me Sara?,tt0261289 sNcBUOlGBcg,2008.0,6,8,2012,Revolutionary Road,What's So Obvious About it?,tt0959337 ewVwSrVSKS4,1985.0,3,9,2012,Rustlers' Rhapsody,Take Care of Him,tt0089945 BPvZa789l5o,1985.0,9,9,2012,Rustlers' Rhapsody,"I'm Back, Bob",tt0089945 Vdhhi9nYLTI,1985.0,1,9,2012,Rustlers' Rhapsody,The Bad Guys,tt0089945 inDZp80Sq6U,2008.0,3,8,2012,Revolutionary Road,The Nice Young Wheelers Are Taking Off,tt0959337 vYafR-6wNGE,1985.0,8,9,2012,Rustlers' Rhapsody,Good Guy Duel,tt0089945 m_7Bm1gyq2c,2008.0,4,8,2012,Revolutionary Road,"I Love My Children, Frank",tt0959337 RVGyvDhPE3k,2008.0,5,8,2012,Revolutionary Road,I've Been With a Girl a Few Times,tt0959337 lPfrzsQ2-Qo,2008.0,8,8,2012,Revolutionary Road,A Swell Breakfast,tt0959337 n2lTpPptOWA,2008.0,7,8,2012,Revolutionary Road,Shell of a Woman,tt0959337 RSEMLDUOqe4,2008.0,2,8,2012,Revolutionary Road,Paris!,tt0959337 1BUBVkpQQGA,2008.0,1,8,2012,Revolutionary Road,You're Sick!,tt0959337 FhDi_WF5uOI,2005.0,7,10,2012,Red Eye,Keefe is a Target,tt0421239 ZcvlWuqqv48,2005.0,4,10,2012,Red Eye,18F Has Bomb,tt0421239 SJB5InL3g7I,2005.0,6,10,2012,Red Eye,Airport Pursuit,tt0421239 kq0YESApfvs,2005.0,9,10,2012,Red Eye,Trying to Kill Me,tt0421239 G6EPGcF9mW0,2005.0,10,10,2012,Red Eye,Fill Out a Comment Card,tt0421239 6Wmzed6d0Jo,2005.0,8,10,2012,Red Eye,The Assassin,tt0421239 x7CXlwS73iI,2005.0,3,10,2012,Red Eye,Don't Get Cute,tt0421239 1MnPXQSWAJo,2005.0,2,10,2012,Red Eye,If You Want Your Dad to Live,tt0421239 YaLewAfBoU0,2005.0,5,10,2012,Red Eye,Pen Stabbing,tt0421239 AIPb1OMTZ0Q,2001.0,6,9,2012,Rat Race,I Love Lucy,tt0250687 OXpqA3BvLLg,2001.0,2,9,2012,Rat Race,The Radar Tower,tt0250687 uJMPom6-xmA,2001.0,3,9,2012,Rat Race,The Barbie Museum,tt0250687 MdMVzxis5vs,2001.0,5,9,2012,Rat Race,Our New Driver,tt0250687 TuiyN5O4Q5k,2005.0,1,10,2012,Red Eye,Reservation Emergency,tt0421239 Wj2sfYCpHOo,2001.0,9,9,2012,Rat Race,Lightning II: The Landspeeder,tt0250687 CuscvBChOqM,2001.0,4,9,2012,Rat Race,A Little Detour,tt0250687 XSVzRBiiTxA,2001.0,1,9,2012,Rat Race,There Are No Rules,tt0250687 4dsgQb3jkk4,2001.0,8,9,2012,Rat Race,Hitler's Car,tt0250687 UJbqnbXI0Po,2001.0,7,9,2012,Rat Race,Balloon Chase,tt0250687 BFanCVteXfw,1981.0,3,10,2012,Ragtime,Pay The Toll,tt0082970 3b00UbIxbCc,1981.0,4,10,2012,Ragtime,Clean This Up,tt0082970 lClRzGmpFrs,1981.0,6,10,2012,Ragtime,Attack on Emerald Isle Firehouse,tt0082970 9wQHMLWpVLk,1981.0,5,10,2012,Ragtime,I Spent My Whole Life Forgetting,tt0082970 wVpIChmQ7dQ,1981.0,9,10,2012,Ragtime,Rhinelander Waldo,tt0082970 _U82hhWfDFY,1981.0,1,10,2012,Ragtime,Baby in the Garden,tt0082970 cLYCKmqJApw,1981.0,8,10,2012,Ragtime,Atlantic City,tt0082970 40cOkf5fT7A,2001.0,2,10,2012,Pootie Tang,Wa-Da-Tah!,tt0258038 EPDoc6alrlE,1981.0,10,10,2012,Ragtime,Such a Rage In My Heart,tt0082970 B1Q2f338TJU,1981.0,7,10,2012,Ragtime,Taking Over Morgan Library,tt0082970 TJf7vDKfuFQ,1981.0,2,10,2012,Ragtime,Why Is She Tied Up?,tt0082970 g0mHVE8ebqA,2001.0,10,10,2012,Pootie Tang,"It's Hot, Too",tt0258038 NLIbv_J5E0M,2001.0,9,10,2012,Pootie Tang,"Clap It Up, My Hammies",tt0258038 dOTGLArtfrQ,2001.0,6,10,2012,Pootie Tang,I Am Not Your Damie!,tt0258038 aESwFtEWnpM,2001.0,5,10,2012,Pootie Tang,Just Cause a Girl Likes to Dress Fancy,tt0258038 89lwQxQm5co,2001.0,1,10,2012,Pootie Tang,Pootie and Bob,tt0258038 yu_9eQXlsVQ,2001.0,4,10,2012,Pootie Tang,Pootie Too Good!,tt0258038 TBS2UeiR7Mc,1970.0,5,8,2012,On A Clear Day...,He'll Never Be You,tt0066181 8Wg3WYlR2M8,2001.0,3,10,2012,Pootie Tang,Mauled By a Gorilla,tt0258038 2K-ihnb5kho,1970.0,4,8,2012,On A Clear Day...,Go To Sleep,tt0066181 x1BpKIb7Ces,1970.0,8,8,2012,On A Clear Day...,On a Clear Day You Can See Forever,tt0066181 uE_EjcgtiVI,1970.0,7,8,2012,On A Clear Day...,Come Back To Me,tt0066181 _8s4_Nabo4E,1970.0,6,8,2012,On A Clear Day...,What Did I Have That I Don't Have,tt0066181 4EfmKXE-Li4,1978.0,3,8,2012,Oliver's Story,Don't Forget To Bring Your Ass,tt0078024 u7kInn-7hcA,1970.0,2,8,2012,On A Clear Day...,Love With All the Trimmings,tt0066181 u73HoUZD7tc,1978.0,7,8,2012,Oliver's Story,A Business Magnet or a Woman?,tt0078024 SESbcd2bp80,1970.0,1,8,2012,On A Clear Day...,I Make Flowers Grow,tt0066181 TV9GpnvWxgQ,1978.0,8,8,2012,Oliver's Story,Something Feels Dead Here,tt0078024 G_2PNOH_j6A,1978.0,2,8,2012,Oliver's Story,Just a Single Guest,tt0078024 Fsqymfl2Q_A,1970.0,3,8,2012,On A Clear Day...,Meet Tad Pringle,tt0066181 jlYY8xkTXOQ,1978.0,4,8,2012,Oliver's Story,Hardly a Hot Topic,tt0078024 a-KQ5h6WmJg,1978.0,6,8,2012,Oliver's Story,You and I Are Upperclass WASPs,tt0078024 E6SfKJ0TmXs,1978.0,1,8,2012,Oliver's Story,I Wanna See It,tt0078024 51pdEOruyWY,1978.0,5,8,2012,Oliver's Story,An Official Go Ahead,tt0078024 7dHg_hYZDCw,1968.0,6,8,2012,No Way to Treat a Lady,You're A Midget,tt0063356 UGKRVSevWnA,1968.0,1,8,2012,No Way to Treat a Lady,A Little Delicate Spot,tt0063356 jiP6PiKJLUs,1968.0,8,8,2012,No Way to Treat a Lady,Don't Answer It,tt0063356 0QeOXuuFo4g,1968.0,7,8,2012,No Way to Treat a Lady,That Girl Is A Gem,tt0063356 QbfEULz4z98,1968.0,4,8,2012,No Way to Treat a Lady,You Wanted to See Me Again,tt0063356 WBHjaRXCINg,1968.0,3,8,2012,No Way to Treat a Lady,Goodbye Mrs. Himmel,tt0063356 gKGmO34XgMU,1968.0,5,8,2012,No Way to Treat a Lady,Who Is She?,tt0063356 7UsWapAIMGo,1968.0,2,8,2012,No Way to Treat a Lady,No Way To Treat A Lady,tt0063356 KOV2C0jVS4M,1962.0,4,8,2012,My Geisha,Weak Connection,tt0056267 rMdZw9aBmnY,1962.0,3,8,2012,My Geisha,Have I Got a Lot To Learn,tt0056267 vnQ9yD_IIwo,1962.0,8,8,2012,My Geisha,"Keep Bowing, You Little Ham",tt0056267 3FDh8EtZETg,1962.0,2,8,2012,My Geisha,Kissing Is Most Interesting,tt0056267 cCNhONF1lHI,1962.0,1,8,2012,My Geisha,Lucy In Disguise,tt0056267 1lCWhKWBjbc,1962.0,7,8,2012,My Geisha,You're Dishonoring Me,tt0056267 YBRg2qsJ94Y,1962.0,6,8,2012,My Geisha,Community Bath With the Girls,tt0056267 y47SwwfaTBk,1962.0,5,8,2012,My Geisha,Bluffing Japanese,tt0056267 Q7-BibZkYxY,1994.0,6,10,2012,Milk Money,"Very, Very Bad",tt0110516 Q-_d7CI08qc,1994.0,5,10,2012,Milk Money,You Should Never Have to Practice,tt0110516 WFOM58iTTJQ,1994.0,7,10,2012,Milk Money,And Don't Take Your Clothes Off For Money,tt0110516 mq2cz9Xvzcw,1994.0,1,10,2012,Milk Money,Sex Ed: In a Tree,tt0110516 B1WG5mK06fA,1994.0,10,10,2012,Milk Money,I'm a Hooker,tt0110516 aNR8SIVnHTY,1994.0,8,10,2012,Milk Money,Sex Ed: Live and in Person,tt0110516 _AUvAyx_fwc,1994.0,4,10,2012,Milk Money,Frank and Friends Get a Show,tt0110516 y603mzYAcas,1994.0,2,10,2012,Milk Money,A Spot on a Woman,tt0110516 g4v51XeJnkw,1994.0,3,10,2012,Milk Money,Frank's Business Proposition,tt0110516 LOb8UYWDz-0,1994.0,9,10,2012,Milk Money,"You Know This Woman, Son?",tt0110516 TiCSS1zLCCI,1972.0,2,10,2012,Last of the Red Hot Lovers,You Smelled Your Fingers,tt0068835 I-kLvrKYP4w,1972.0,4,10,2012,Last of the Red Hot Lovers,Bleeding Lip,tt0068835 Fc7bVIA-b1k,1972.0,8,10,2012,Last of the Red Hot Lovers,I Married An Ape,tt0068835 Rw8cPAmrrbU,1972.0,6,10,2012,Last of the Red Hot Lovers,The $20 Loan,tt0068835 FiAJpDiz6Kw,1972.0,3,10,2012,Last of the Red Hot Lovers,Am I Appealing To You?,tt0068835 i7vKbmKF9VI,1972.0,5,10,2012,Last of the Red Hot Lovers,I Think About Dying,tt0068835 GIiXwau_5iw,1972.0,10,10,2012,Last of the Red Hot Lovers,I'm In My Underwear!,tt0068835 j3MZdcbv-ew,1972.0,7,10,2012,Last of the Red Hot Lovers,I'm Goofy Today,tt0068835 P38cMPv-Nag,1972.0,9,10,2012,Last of the Red Hot Lovers,Melancholia,tt0068835 U2Eff0vnE6s,1972.0,1,10,2012,Last of the Red Hot Lovers,Say Something,tt0068835 MMiicN9p8a8,2006.0,4,9,2012,Last Holiday,Table for One,tt0408985 jqyhGCHT-v0,2006.0,8,9,2012,Last Holiday,The Secret of Life,tt0408985 V81lVBQ8TCs,2006.0,9,9,2012,Last Holiday,That Is a Long Drop,tt0408985 OinSJLNXgA0,2006.0,6,9,2012,Last Holiday,First Time Snowboarding,tt0408985 Wg3iwI32C5Q,2006.0,5,9,2012,Last Holiday,Strange Spa Treatments,tt0408985 hweZTM7VPbk,2006.0,7,9,2012,Last Holiday,Ladies First,tt0408985 gK06H6EpKP4,2006.0,2,9,2012,Last Holiday,Enough Is Enough,tt0408985 reIyMTBfEwQ,2006.0,1,9,2012,Last Holiday,Three Weeks to Live,tt0408985 Yorm8_AGu10,2006.0,3,9,2012,Last Holiday,Why Me?,tt0408985 zPa3qf25T3s,1997.0,5,8,2012,Kiss the Girls,Breaking the Rules,tt0119468 T6QO7UyB5tI,1997.0,3,8,2012,Kiss the Girls,Why Am I Here?,tt0119468 5AwBYVybnY0,1997.0,4,8,2012,Kiss the Girls,Who's Out There?,tt0119468 081zoKkdEYA,1997.0,2,8,2012,Kiss the Girls,What Do You Want From Me?,tt0119468 QpxdbtnTXXY,1997.0,8,8,2012,Kiss the Girls,What Do You Hear?,tt0119468 uXyvjZa6x2o,1997.0,7,8,2012,Kiss the Girls,Blame Me,tt0119468 KiOiYYsMcM4,1997.0,1,8,2012,Kiss the Girls,Just Me and You,tt0119468 IWe5PTNQ6ko,1997.0,6,8,2012,Kiss the Girls,Kate Escapes,tt0119468 VYMQZsZUxeA,2001.0,6,10,2012,Jimmy Neutron: Boy Genius,"Buck Up, Mister",tt0268397 hA1BikUzBKc,2001.0,4,10,2012,Jimmy Neutron: Boy Genius,No Parents,tt0268397 S_fzdjP3jKg,2001.0,9,10,2012,Jimmy Neutron: Boy Genius,Not Tiny!,tt0268397 QBvJoXAu2zM,2001.0,7,10,2012,Jimmy Neutron: Boy Genius,That's a Big Chicken!,tt0268397 nIJQOFSGKks,2001.0,1,10,2012,Jimmy Neutron: Boy Genius,Getting Ready For School,tt0268397 a7qRJ9T9TPg,2001.0,8,10,2012,Jimmy Neutron: Boy Genius,Who Wants Fried Chicken?,tt0268397 r7k9mkm0TKU,2001.0,5,10,2012,Jimmy Neutron: Boy Genius,Blast Off,tt0268397 Ea5k9eZg7rk,2001.0,2,10,2012,Jimmy Neutron: Boy Genius,Greetings from Planet Earth!,tt0268397 SYOiDFKwCsA,2001.0,3,10,2012,Jimmy Neutron: Boy Genius,Shrink Ray,tt0268397 PZPOGfNlJyo,1990.0,8,8,2012,Internal Affairs,Put the Knife Down,tt0099850 otQNGe5sWaQ,1990.0,7,8,2012,Internal Affairs,Who Did You Have Lunch With?,tt0099850 JQ8nLSXGWWE,1990.0,3,8,2012,Internal Affairs,Officer Down,tt0099850 5R7pGpChUVw,1990.0,6,8,2012,Internal Affairs,Elevator Beating,tt0099850 hRRvrXxGJjg,1990.0,2,8,2012,Internal Affairs,"You Can Trust Me, I'm a Cop",tt0099850 r0-vDDcDUMo,1990.0,1,8,2012,Internal Affairs,You Call Your Boyfriend?,tt0099850 ZtahDAhvvSc,1990.0,5,8,2012,Internal Affairs,The Game's Over,tt0099850 MTX0Ig39Nws,1997.0,5,9,2012,In & Out,A Barbra Streisand Bachelor Party,tt0119360 Rh4ap8LIbtw,1997.0,4,9,2012,In & Out,In the Out Hole,tt0119360 gvbI2bHohQ4,1990.0,4,8,2012,Internal Affairs,The Ugly One,tt0099850 mD83kao4Q60,1997.0,3,9,2012,In & Out,Of Course He Thinks You're Gay,tt0119360 oZQ95ON2X-s,1997.0,9,9,2012,In & Out,I'm a Mess and I'm Starving!,tt0119360 UJ9Q1b1FwKM,1997.0,1,9,2012,In & Out,...And He's Gay,tt0119360 fhUXu7x66BA,1997.0,6,9,2012,In & Out,Know What You Need?,tt0119360 0yYUlLFlw1I,1997.0,8,9,2012,In & Out,F*** Barbra Streisand!,tt0119360 xa-P9llTLM4,1997.0,7,9,2012,In & Out,Guide to Being a Manly Man,tt0119360 ZPP70vRDmzM,1997.0,2,9,2012,In & Out,Is There Something You Want to Tell Us?,tt0119360 LKpCK8OtA1s,1994.0,1,9,2012,I.Q.,Premature Ignition,tt0110099 OFlIZu9exco,1994.0,2,9,2012,I.Q.,You're Albert Einstein,tt0110099 jD4Fh0LsvjM,1994.0,8,9,2012,I.Q.,I Love You.,tt0110099 R7stiKJsGjY,1994.0,6,9,2012,I.Q.,Are You Thinking What I'm Thinking?,tt0110099 AkEnbYvJGg0,1994.0,9,9,2012,I.Q.,Wahoo,tt0110099 w6kumXHaOeI,1994.0,5,9,2012,I.Q.,An Unmistakable Chemical Reaction,tt0110099 qb00B8U8UBw,1994.0,7,9,2012,I.Q.,"A, B, C, D, or E",tt0110099 U3qhoY13AkM,1994.0,3,9,2012,I.Q.,Do You Think Time Exists?,tt0110099 3NCw83LVWFo,1994.0,4,9,2012,I.Q.,Time Deprivation,tt0110099 ZI1jKmWANP0,2003.0,6,8,2012,I'll Sleep When I'm Dead,The Pathologist,tt0319531 nZq8AiBXhiI,2003.0,7,8,2012,I'll Sleep When I'm Dead,Getting Out,tt0319531 8lTcU_MuQGg,2003.0,5,8,2012,I'll Sleep When I'm Dead,Coroner's Report,tt0319531 -gkBCCbycmQ,2003.0,4,8,2012,I'll Sleep When I'm Dead,Grief,tt0319531 Fvka6JcREsY,2003.0,8,8,2012,I'll Sleep When I'm Dead,I Am Going To Kill You,tt0319531 OXaqam1ZdZs,2003.0,3,8,2012,I'll Sleep When I'm Dead,Will Returns,tt0319531 tBeJkq_by_8,2003.0,2,8,2012,I'll Sleep When I'm Dead,Mickser Finds Davey,tt0319531 VrMWnHwh0z0,1958.0,2,9,2012,Houseboat,"A Parent, Not a Policeman",tt0051745 t-T4RYRUNWk,1958.0,1,9,2012,Houseboat,Cheating the Ring Toss,tt0051745 BBWQchYpjqQ,2003.0,1,8,2012,I'll Sleep When I'm Dead,Assaulting Davey,tt0319531 7ynMrmloUVA,1958.0,7,9,2012,Houseboat,You Can't Lose Anything,tt0051745 Wkm_Bp6pG9k,1958.0,8,9,2012,Houseboat,Angelo Gets Cold Feet,tt0051745 JcO_Cs2WZLU,1958.0,5,9,2012,Houseboat,Home Wreck,tt0051745 eMuBBjnM4yo,1958.0,9,9,2012,Houseboat,Goodnight Ladies and Gentlemen,tt0051745 h4eOGlJpLYg,1958.0,6,9,2012,Houseboat,The,tt0051745 uy8_ARH8yyM,1958.0,4,9,2012,Houseboat,Cinzia Stays,tt0051745 YMhAvAFZ8js,1980.0,3,9,2012,Hangar 18,Exploring the Spacecraft,tt0080836 Ka-SEhfCAUY,1980.0,2,9,2012,Hangar 18,Planning a Cover-Up,tt0080836 fPk-Dms1rJc,1980.0,4,9,2012,Hangar 18,Well... Be Careful,tt0080836 aqa74uEbtDE,1980.0,8,9,2012,Hangar 18,Gas Truck Getaway,tt0080836 JQwmeTKQLo8,1958.0,3,9,2012,Houseboat,Perhaps I Will Get a Job,tt0051745 k0aqHfvHcsc,1980.0,9,9,2012,Hangar 18,Hangar Destruction,tt0080836 OJiaifxaWCY,1980.0,6,9,2012,Hangar 18,The Origin of Mankind,tt0080836 wYSIce1SzFU,1980.0,5,9,2012,Hangar 18,Losing the Feds,tt0080836 zstIMA6K-Ws,1980.0,7,9,2012,Hangar 18,The Brakes Are Gone,tt0080836 wa5asCQrdPE,1957.0,9,9,2012,Gunfight at the O.K. Corral,The Clanton Family Goes Down,tt0050468 fCQb93-RrZo,1957.0,1,9,2012,Gunfight at the O.K. Corral,You Want to Get Killed,tt0050468 _nngOtRHAK0,1980.0,1,9,2012,Hangar 18,The U.F.O. Incident,tt0080836 BIt9IYPOY2g,1957.0,2,9,2012,Gunfight at the O.K. Corral,You're Getting Out of Here,tt0050468 aE4h5rX9u3U,1957.0,8,9,2012,Gunfight at the O.K. Corral,The Gunfight Begins,tt0050468 6VUfXGlADjU,1957.0,4,9,2012,Gunfight at the O.K. Corral,I'm Not Fighting,tt0050468 YJnneXfx_q8,1957.0,7,9,2012,Gunfight at the O.K. Corral,All Gunfighters Are Lonely,tt0050468 UNlo03HucLM,1957.0,5,9,2012,Gunfight at the O.K. Corral,In a Charitable Mood,tt0050468 Lj7OCHi8x7c,1957.0,6,9,2012,Gunfight at the O.K. Corral,Check in Your Sidearms,tt0050468 -xX0mOMuxyI,1981.0,6,8,2012,Gallipoli,Bad News,tt0082432 1yLt0kzJIUQ,1957.0,3,9,2012,Gunfight at the O.K. Corral,Pretty Much Alike,tt0050468 GLZXGflTTjA,1981.0,1,8,2012,Gallipoli,Meeting Frank,tt0082432 0VIefkYf2Rs,1981.0,2,8,2012,Gallipoli,"Reunited,",tt0082432 RGuY5r-7ta4,1981.0,3,8,2012,Gallipoli,Friendly Race,tt0082432 elvtIj_sPwU,1985.0,1,9,2012,Friday the 13th 5,Reawakening Jason,tt0758746 aoZDSctyBE0,1985.0,2,9,2012,Friday the 13th 5,I've Never Really Chopped Wood Before,tt0758746 HONa-BdZMA4,1985.0,5,9,2012,Friday the 13th 5,I Know Who It Is,tt0758746 ryKepaMME_U,1985.0,8,9,2012,Friday the 13th 5,Plowing Time,tt0758746 ltdgreWmnSY,1985.0,9,9,2012,Friday the 13th 5,He's Back,tt0758746 YIw-r1yjxMU,1985.0,7,9,2012,Friday the 13th 5,Come Here and Eat My Stew!,tt0758746 OGEmY8RCF40,1985.0,6,9,2012,Friday the 13th 5,Killer Crapper,tt0758746 F9fEIstp82g,1985.0,4,9,2012,Friday the 13th 5,Coke Head & Dead,tt0758746 qlwxaCiNZzo,1985.0,3,9,2012,Friday the 13th 5,Eat My Flare,tt0758746 lnf-VO8gIGg,2005.0,7,9,2012,Four Brothers,I Hate Dirty Cops,tt0430105 FZJK7bi2mWU,2005.0,9,9,2012,Four Brothers,Police Interrogations,tt0430105 Cf3YdE-vMyE,2005.0,8,9,2012,Four Brothers,Ice Boxing,tt0430105 ZCYBYZDrmWk,2005.0,6,9,2012,Four Brothers,Mercer House Shootout,tt0430105 bIbxR_KN2TM,2005.0,3,9,2012,Four Brothers,Basketball Interrupted,tt0430105 bdm9LVNbuNg,2005.0,2,9,2012,Four Brothers,These White Cops Are Crazy,tt0430105 BcW6m0Rg1-8,2005.0,1,9,2012,Four Brothers,Evelyn's Murder,tt0430105 qSnUywWS9xs,2005.0,5,9,2012,Four Brothers,Blizzard Car Chase,tt0430105 JPofeRImxv8,1991.0,1,10,2012,Flight of the Intruder,Shot in the Neck,tt0099587 lDduI2NkIsQ,2005.0,4,9,2012,Four Brothers,You Goin' Down,tt0430105 vXLLH1eSOZE,1991.0,9,10,2012,Flight of the Intruder,Gunned Down,tt0099587 tBNjWDkNbms,1991.0,6,10,2012,Flight of the Intruder,You Want to Bomb Hanoi?,tt0099587 rZuHQ94ES6U,1991.0,4,10,2012,Flight of the Intruder,Rowdy Drunken Fun,tt0099587 g2h8xRzMxtA,1991.0,5,10,2012,Flight of the Intruder,You're All We Got,tt0099587 pZXuol2q1Yg,1991.0,2,10,2012,Flight of the Intruder,Memorial Service,tt0099587 2wOJBjpLTBA,1991.0,7,10,2012,Flight of the Intruder,Let's Go Downtown,tt0099587 g8YFtf6tfRg,1991.0,10,10,2012,Flight of the Intruder,I Wouldn't Have It Any Other Way,tt0099587 Xwob-vrMkz0,1991.0,8,10,2012,Flight of the Intruder,That's an Order,tt0099587 _XriL3ARav8,1981.0,8,9,2012,First Monday in October,Let There Be Light,tt0082382 eZ64IFqMQuQ,1981.0,7,9,2012,First Monday in October,"If We Don't Hear It, Who Will?",tt0082382 dZ-teGgl2tw,1981.0,4,9,2012,First Monday in October,Nebraska vs. Maloney,tt0082382 r0N4KlcTSUQ,1981.0,2,9,2012,First Monday in October,Another Man's Poetry,tt0082382 f9vhFEweovc,1981.0,6,9,2012,First Monday in October,A Snapshot of Our Convictions,tt0082382 i-f0M5TqmsY,1981.0,5,9,2012,First Monday in October,Censorship Is an Outrage,tt0082382 -Ixi48TxkaA,1981.0,3,9,2012,First Monday in October,A Woman on the Court,tt0082382 X1DvoMiJ6n0,1981.0,9,9,2012,First Monday in October,"Extremely Noble, But Wrong",tt0082382 DN3iIszMnI0,1989.0,4,9,2012,Fat Man and Little Boy,Kick It or Lick It,tt0097336 2djG7snKS8w,1989.0,5,9,2012,Fat Man and Little Boy,Optimism vs. Realism,tt0097336 K8qQO5DvYhE,1989.0,2,9,2012,Fat Man and Little Boy,Beyond the Theoretical,tt0097336 zB-hQWVCwwU,1989.0,7,9,2012,Fat Man and Little Boy,Stop Playing God,tt0097336 AQ0P7R9CfCY,1989.0,6,9,2012,Fat Man and Little Boy,I'm Dead,tt0097336 ZQ-8RqS16uU,1989.0,1,9,2012,Fat Man and Little Boy,Is It Possible?,tt0097336 emVaK5MoPBg,1989.0,9,9,2012,Fat Man and Little Boy,Testing the Bomb,tt0097336 n3_noySdJVs,2005.0,2,9,2012,Dreamer,Soñador Likes Popsicles,tt0418647 JPoZcvcPtIA,1989.0,8,9,2012,Fat Man and Little Boy,It's Your Baby,tt0097336 78xJ5ZYPQnc,2005.0,1,9,2012,Dreamer,Broken Leg,tt0418647 pVZtw0LrIX4,2005.0,9,9,2012,Dreamer,A Great Champion,tt0418647 YuuMHvaxXFY,1989.0,3,9,2012,Fat Man and Little Boy,A Good Wife,tt0097336 h0i97SWIdLU,2005.0,6,9,2012,Dreamer,Once Upon a Time,tt0418647 Njpz7jWgB04,2005.0,8,9,2012,Dreamer,The Breeders' Cup,tt0418647 BjKq059eG6E,2005.0,7,9,2012,Dreamer,You Came Home!,tt0418647 SRNxRvPSscQ,2005.0,5,9,2012,Dreamer,She Was Our Horse,tt0418647 RLcngJeCHtg,2005.0,3,9,2012,Dreamer,We're Going to Run Away,tt0418647 0M6PP32wggM,2005.0,4,9,2012,Dreamer,You Just Sold Soñador,tt0418647 OuE_YH1pzC0,1952.0,4,9,2012,"Come Back, Little Sheba",Gotta Keep Living,tt0044509 5IFvZMLDqXA,1952.0,7,9,2012,"Come Back, Little Sheba",Relapse,tt0044509 z7vdutawe8g,1952.0,6,9,2012,"Come Back, Little Sheba",Doc's Struggle,tt0044509 59E_IDXFWuY,1952.0,5,9,2012,"Come Back, Little Sheba",Turk and Marie,tt0044509 LNFINZN0KXY,1952.0,2,9,2012,"Come Back, Little Sheba",A.A. Meeting,tt0044509 OGbya9Fm_Ns,1952.0,1,9,2012,"Come Back, Little Sheba",Marie Rents the Spare Room,tt0044509 8csRJcVDQdc,1952.0,8,9,2012,"Come Back, Little Sheba",He's Got a Knife!,tt0044509 SLkR7mzysAs,1952.0,3,9,2012,"Come Back, Little Sheba",Little Sheba,tt0044509 xPLtxTJnVOY,2000.0,8,9,2012,Bless the Child,A Rude Awakening,tt0163983 7hrG-FtbWsw,1952.0,9,9,2012,"Come Back, Little Sheba",Lola's Dream,tt0044509 E2syhaH4Qgk,2000.0,6,9,2012,Bless the Child,Subway Chase,tt0163983 IuCIhvIAn44,2000.0,4,9,2012,Bless the Child,Divine Communication,tt0163983 yV5JUYhnJQk,2000.0,2,9,2012,Bless the Child,She's Special,tt0163983 MAzasda1GUA,2000.0,5,9,2012,Bless the Child,Do You Believe in The Devil?,tt0163983 r2xpAXMPRHc,2000.0,3,9,2012,Bless the Child,Rat Problem,tt0163983 CeMiILVlZgo,2000.0,1,9,2012,Bless the Child,"Do You Know Any Tricks, Martin?",tt0163983 VyMHLfAg9bI,2000.0,7,9,2012,Bless the Child,"Thou Shalt Not Kill, Especially Without Bullets",tt0163983 D5a4_a3dIK4,2000.0,9,9,2012,Bless the Child,Divine Intervention,tt0163983 nLeZGuvX7D8,1977.0,2,8,2012,Black Sunday,Sometimes It's Better to Let This Out,tt0075765 SWjCrhbuvCM,1977.0,6,8,2012,Black Sunday,The Shadow in the Picture,tt0075765 xknWZIAzBCc,1977.0,8,8,2012,Black Sunday,Crashing the Super Bowl,tt0075765 VWJfmCFQjAk,1977.0,4,8,2012,Black Sunday,Testing the Weapon,tt0075765 awYi2rXf1Ws,1977.0,3,8,2012,Black Sunday,Poison Nurse Assassin,tt0075765 7ZnhCcj4sXg,1977.0,5,8,2012,Black Sunday,What Exactly Is This Super Bowl?,tt0075765 exE414Mp-gA,1977.0,7,8,2012,Black Sunday,Stealing the Blimp,tt0075765 eensusNo-jE,2003.0,7,10,2012,Biker Boyz,No More Racing,tt0326769 9R_jeIGgaa4,2003.0,5,10,2012,Biker Boyz,That's Messed Up,tt0326769 UEemdeEfw-Y,1977.0,1,8,2012,Black Sunday,Mossad Commando Raid,tt0075765 Dt3n2LVD4q4,2003.0,8,10,2012,Biker Boyz,He's Your Son,tt0326769 xLz4trRoHeM,2003.0,3,10,2012,Biker Boyz,You Want a Piece of Me?,tt0326769 hMW3GQ2x79Q,2003.0,2,10,2012,Biker Boyz,You Proved Yourself,tt0326769 317Fhd1UwzQ,2003.0,1,10,2012,Biker Boyz,Will is Dead,tt0326769 nF2xGs2J6Gk,2003.0,6,10,2012,Biker Boyz,It's On,tt0326769 DERds8rPSi0,2003.0,4,10,2012,Biker Boyz,Joy Ride,tt0326769 xaBIju-chWA,2003.0,10,10,2012,Biker Boyz,Motorcycle Malfunction,tt0326769 gdJC7j6maRs,1967.0,9,9,2012,Barefoot in the Park,On the Roof,tt0061385 BjbnFg5KBwI,1967.0,8,9,2012,Barefoot in the Park,You Get Out,tt0061385 QD1FH9vC-q0,1967.0,1,9,2012,Barefoot in the Park,Arriving at the Plaza,tt0061385 JJAByeqjimo,2003.0,9,10,2012,Biker Boyz,Get Off the Bike,tt0326769 djAkVv3P_pQ,1967.0,7,9,2012,Barefoot in the Park,One of the Two,tt0061385 cJYwpfA3HWY,1972.0,7,9,2012,Bad Company,Shootout,tt0068245 WvgG6VNS2J0,1967.0,5,9,2012,Barefoot in the Park,Cold First Night,tt0061385 T3dPGXTusv4,1967.0,4,9,2012,Barefoot in the Park,New Apartment,tt0061385 7euiG3tT2R8,1967.0,2,9,2012,Barefoot in the Park,A Real Kiss,tt0061385 AgJE212GTcs,1972.0,8,9,2012,Bad Company,Hanging a Criminal,tt0068245 22aRiNlHhaI,1972.0,5,9,2012,Bad Company,Trading a Gun for a Meal,tt0068245 pCQuhXDlfL8,1972.0,6,9,2012,Bad Company,Stealing Food,tt0068245 oqyRFXXwB48,1967.0,3,9,2012,Barefoot in the Park,Delivery Men,tt0061385 752JlGiyHow,2003.0,11,11,2012,Master and Commander,A Duet,tt0311113 XeERYS-0Tnw,2003.0,3,11,2012,Master and Commander,Man Overboard,tt0311113 OhWMVue9ai8,2003.0,10,11,2012,Master and Commander,The Battle Is Won,tt0311113 NMG1EMAgrDk,2003.0,9,11,2012,Master and Commander,Hand to Hand Combat,tt0311113 576luHgBG64,2003.0,8,11,2012,Master and Commander,Attack on the Acheron,tt0311113 KlfCBX2CwMM,2003.0,7,11,2012,Master and Commander,This Ship Is England,tt0311113 dsMSPwyYBbI,2003.0,6,11,2012,Master and Commander,Self Surgery,tt0311113 w_82krI5UQ4,2003.0,5,11,2012,Master and Commander,Hollom Jumps,tt0311113 M_pk0lW3oJ8,2003.0,4,11,2012,Master and Commander,Men Must Be Governed,tt0311113 tIbuhbGhJxk,2003.0,2,11,2012,Master and Commander,My God That's Seamanship!,tt0311113 XNL0KfD0nts,2003.0,1,11,2012,Master and Commander,The Lesser of Two Weevils,tt0311113 N-PI5nIwciE,1994.0,9,9,2012,Andre,Goes to the Aquarium,tt0109120 _c7cV5_jU5Q,1994.0,8,9,2012,Andre,Saved by,tt0109120 cjS-Y6WsWMg,1994.0,6,9,2012,Andre,Runs Away,tt0109120 b_jYYdrSYBg,1994.0,7,9,2012,Andre,This is the Only Way,tt0109120 PJot4Pv7dFI,1994.0,5,9,2012,Andre,in Danger,tt0109120 RhUPit82Gm0,1994.0,3,9,2012,Andre,My Best Friend,tt0109120 T7eWdvyCHyI,1994.0,4,9,2012,Andre,'s a Celebrity,tt0109120 AI9AcMtuqsU,1994.0,2,9,2012,Andre,Convincing He's a Seal,tt0109120 39vZZiM3kIA,1994.0,1,9,2012,Andre,Bonding with,tt0109120 r4SF22qFxbE,2010.0,5,9,2012,True Grit,Shooting Contest,tt1403865 oK4FZ3ks17M,2010.0,1,9,2012,True Grit,A Man with,tt1403865 gMPr9rchJMs,2010.0,2,9,2012,True Grit,I'm a Texas Ranger,tt1403865 mbkWniWSpR0,2010.0,7,9,2012,True Grit,Facing Tom Chaney,tt1403865 ovy6F76ip3M,2010.0,8,9,2012,True Grit,I Will Kill This Girl!,tt1403865 wdAXjMj6mfU,2010.0,9,9,2012,True Grit,Bold Talk for a One-Eyed Fat Man,tt1403865 MHfk4edzvnI,2010.0,6,9,2012,True Grit,I Bow Out,tt1403865 MEU2EJBkJcs,2010.0,3,9,2012,True Grit,This Ain't No Coon Hunt,tt1403865 _Rnaa9qtGgs,2010.0,4,9,2012,True Grit,Killing at the Cabin,tt1403865 fY-Aprk4mtY,2005.0,9,9,2012,The Weather Man,Spritz Nipper,tt0384680 mQ3tgtzkz_U,2005.0,8,9,2012,The Weather Man,Aiming at Russ,tt0384680 qvFduxMK7zo,2005.0,7,9,2012,The Weather Man,Pie Breakdown,tt0384680 vRaCv5oNQ3w,2005.0,6,9,2012,The Weather Man,Tartar Sauce,tt0384680 oCjXFnr826Y,2005.0,5,9,2012,The Weather Man,A Lack of Enthusiasm,tt0384680 FDGyKHeU2Es,2005.0,4,9,2012,The Weather Man,Trust Counseling,tt0384680 cSUVLAM8jx0,2005.0,3,9,2012,The Weather Man,Camel Toe,tt0384680 VB3awTlgRFk,1990.0,8,8,2012,The Two Jakes,One Last Smoke,tt0100828 -5Rohhkg-7k,2005.0,2,9,2012,The Weather Man,Hit With A Frosty,tt0384680 b3Aq5Vc0Ics,2005.0,1,9,2012,The Weather Man,Waiting In Line,tt0384680 wrrxHvC1J7I,1990.0,7,8,2012,The Two Jakes,Who is Kitty Berman?,tt0100828 N4fylYYIrUc,1990.0,6,8,2012,The Two Jakes,Suck It,tt0100828 2cExWs8VUN8,1990.0,5,8,2012,The Two Jakes,The Name of the Game is Oil,tt0100828 _7Y_OCGOKTk,1990.0,4,8,2012,The Two Jakes,Don't Make Me Do It,tt0100828 ZErJ-R9PLFA,2008.0,8,8,2012,The Ruins,Her Name Is Amy,tt0963794 wCDAFiLrHE0,1990.0,3,8,2012,The Two Jakes,The Wife of the Guy that Jake Berman Shot,tt0100828 oqCHL75LG3Q,1990.0,2,8,2012,The Two Jakes,"How Could You, Kitty?",tt0100828 3zPrtRFOZQY,1990.0,1,8,2012,The Two Jakes,,tt0100828 phzJ2Iam214,2008.0,6,8,2012,The Ruins,It's In My Head,tt0963794 VtEOGd7tD9o,2008.0,7,8,2012,The Ruins,What Are You Doing?,tt0963794 JBLwuC2gHVQ,2008.0,5,8,2012,The Ruins,Cut Them Out,tt0963794 3i76M1f3nB4,2008.0,3,8,2012,The Ruins,Hold Him Down,tt0963794 ar72efkbkSo,2008.0,4,8,2012,The Ruins,A Jealous Rage,tt0963794 ajMVBGbsL_E,2008.0,2,8,2012,The Ruins,It's Not a Phone,tt0963794 MpGCnuiCSuU,2008.0,1,8,2012,The Ruins,Get It Off,tt0963794 Zh_r3u2RK1Q,1996.0,9,9,2012,The Phantom,Turning Down the Phantom Scene,tt0117331 2ZiKO3NtZiI,1996.0,4,9,2012,The Phantom,The Ghost Who Walks Scene,tt0117331 hLUSwJuMjWo,1996.0,8,9,2012,The Phantom,The Fourth Skull Scene,tt0117331 9lj3ebVWDUw,1996.0,7,9,2012,The Phantom,The Brotherhood Scene,tt0117331 C_QYZUjx7rs,1996.0,6,9,2012,The Phantom,Show Me The Power Scene,tt0117331 VNQP-pvNK9A,1996.0,5,9,2012,The Phantom,Opportunity In Chaos Scene,tt0117331 CvK9ZJVsiPM,1996.0,3,9,2012,The Phantom,A Ship Full of Women,tt0117331 LkBmLiDPbxQ,1996.0,2,9,2012,The Phantom,The Bladed Microscope Scene,tt0117331 rYXDky5UYks,1996.0,1,9,2012,The Phantom,Death to Tomb Raiders Scene,tt0117331 DXRDZkTNEuM,1964.0,7,8,2012,The Pawnbroker,No Shooting,tt0059575 Qn336Lxy1TQ,1964.0,8,8,2012,The Pawnbroker,No To Hurt You,tt0059575 moYhss9sP94,1964.0,6,8,2012,The Pawnbroker,Subway to the Camps,tt0059575 oJ_2e3gdfNQ,1964.0,4,8,2012,The Pawnbroker,Money Is the Whole Thing,tt0059575 gzTzSOHP_HM,1964.0,5,8,2012,The Pawnbroker,Are You That Kind of Man?,tt0059575 5clBF38sqqw,1964.0,3,8,2012,The Pawnbroker,You People,tt0059575 XSUU-_0cWn4,1964.0,2,8,2012,The Pawnbroker,It's Glass,tt0059575 OLtnOGTdLO4,1964.0,1,8,2012,The Pawnbroker,Internment Barking,tt0059575 wx2g7H8UvrQ,1986.0,2,8,2012,The Golden Child,Dancing Pepsi Can,tt0091129 NtkLxegTLPU,1986.0,8,8,2012,The Golden Child,Let's Get Outta Here,tt0091129 o50HHf9f_SQ,1986.0,7,8,2012,The Golden Child,Brother Numpsay!,tt0091129 V1bgBW9xx40,1986.0,6,8,2012,The Golden Child,Viva Nepal!,tt0091129 7zwPRGbmrow,1986.0,5,8,2012,The Golden Child,There's No Ground Here,tt0091129 jr0JXSM_0Nk,1986.0,4,8,2012,The Golden Child,I Want the Knife,tt0091129 ETkJs0Mhnmo,1986.0,3,8,2012,The Golden Child,Chandler's Dream,tt0091129 a4WffLH9UMs,1956.0,4,9,2012,The Court Jester,Bewitched by Griselda,tt0049096 4hgt2hCDgr4,1956.0,6,9,2012,The Court Jester,They Say It Isn't Catching,tt0049096 aGMCd4SoXk0,1986.0,1,8,2012,The Golden Child,It's Your Destiny,tt0091129 3SNcyADMY8k,1956.0,1,9,2012,The Court Jester,The Wine Merchant and the Mute,tt0049096 TdRbjlsp7uM,1956.0,2,9,2012,The Court Jester,Master of Many Tongues,tt0049096 cysxO5Z-0L8,1956.0,3,9,2012,The Court Jester,Get It? Got It. Good.,tt0049096 AfyZ1bWv7Ls,1956.0,9,9,2012,The Court Jester,Crossing Blades with the Snap of a Finger,tt0049096 G9GWMbrEu_g,1956.0,5,9,2012,The Court Jester,The Maladjusted Jester,tt0049096 6zIWcCvQNqQ,1956.0,8,9,2012,The Court Jester,The Flagon with the Dragon,tt0049096 FM_KxbSOjJk,2004.0,7,8,2012,Surviving Christmas,There Was No Real Family,tt0252028 LmCGd9zuFTs,2004.0,8,8,2012,Surviving Christmas,Who Are You Renting For New Year's?,tt0252028 uFHReMA18_c,2004.0,6,8,2012,Surviving Christmas,Worst Christmas Ever,tt0252028 jq2tARSds7M,2004.0,5,8,2012,Surviving Christmas,Fiji Time,tt0252028 2-oMhYVEk8w,2004.0,4,8,2012,Surviving Christmas,A Lifetime of Lonely Christmases,tt0252028 k1_OK7cug8I,2004.0,3,8,2012,Surviving Christmas,Role Playing,tt0252028 cM2U8v8OuLo,2004.0,2,8,2012,Surviving Christmas,Contractually Obliged,tt0252028 Fekzb5yWBZk,2004.0,1,8,2012,Surviving Christmas,Burning My Grievances,tt0252028 78IG1HROeoc,2001.0,7,9,2012,Evolution,Science Project's Over,tt0251075 d6E6Pu3a5qM,2001.0,8,9,2012,Evolution,Fire Is the Catalyst,tt0251075 9-Kvo3-7OZo,2001.0,6,9,2012,Evolution,"Liar, Liar, Pants on Fire",tt0251075 maWXwv9cBS4,2001.0,9,9,2012,Evolution,It's Payback Time,tt0251075 f9_1eujdVpI,2001.0,5,9,2012,Evolution,"Here Birdie, Birdie, Birdie",tt0251075 -nkxnc1C6rc,2001.0,4,9,2012,Evolution,It's In Me!,tt0251075 aV2eCTRFJbY,2001.0,3,9,2012,Evolution,The Kane Madness,tt0251075 xAV_XfpHSr4,2001.0,2,9,2012,Evolution,They're Aliens,tt0251075 YldUEtdvBZU,2001.0,6,8,2012,Domestic Disturbance,What Kind of Man You Really Are,tt0249478 DZfq30VdBqU,2001.0,1,9,2012,Evolution,Meteor Crashes into Earth,tt0251075 K7vOjKOdMNE,2001.0,8,8,2012,Domestic Disturbance,Frank Fights Rick,tt0249478 mTr1vpzU00Q,2001.0,7,8,2012,Domestic Disturbance,"Where's Your Wallet, Danny?",tt0249478 XSa0_MGO8bA,2001.0,5,8,2012,Domestic Disturbance,A Dream About A Murder,tt0249478 OIl2sEhU24I,2001.0,4,8,2012,Domestic Disturbance,After the Murder,tt0249478 iTlkXQH-sdg,2001.0,3,8,2012,Domestic Disturbance,Back Seat Witness,tt0249478 mvkHPUZnww0,2009.0,3,9,2012,The Soloist,A New Cello,tt0821642 hVZ9AGQL_oo,2001.0,1,8,2012,Domestic Disturbance,A Surprise at the Wedding,tt0249478 aYuatR0B8Uc,2001.0,2,8,2012,Domestic Disturbance,A Game of Catch,tt0249478 rn4Ff3MpiRc,2009.0,2,9,2012,The Soloist,It's a Dream Out Here,tt0821642 Gv_SuIRPPyQ,2009.0,9,9,2012,The Soloist,I'm Honored to be Your Friend,tt0821642 dAc1rDS3YhQ,2009.0,7,9,2012,The Soloist,I Don't Have Schizophrenia,tt0821642 V4rNLT7N_VA,2009.0,8,9,2012,The Soloist,You're Never Gonna Cure Nathaniel,tt0821642 R2n0ZDq1N2c,2009.0,6,9,2012,The Soloist,Don't Ever Put Your Hands On Me,tt0821642 ymzHr_Uvp7w,2009.0,1,9,2012,The Soloist,Meeting Nathaniel,tt0821642 4tTTXKxHcKY,1992.0,8,8,2012,School Ties,I Saw Dillon Cheat,tt0105327 kXuzMpA9MaA,2009.0,5,9,2012,The Soloist,Partial Responsibility,tt0821642 d3P2O-Up78Q,2009.0,4,9,2012,The Soloist,You Are My God,tt0821642 U2iJ1VmhksI,1992.0,7,8,2012,School Ties,I Saw You Cheat,tt0105327 fTb9XrbAMRs,1992.0,5,8,2012,School Ties,Anti-Semitism,tt0105327 DPRsafiw4vQ,1992.0,6,8,2012,School Ties,I'm the Same Guy,tt0105327 R5SlDq1oRYA,1992.0,3,8,2012,School Ties,St. Matthews Wins,tt0105327 cyEwqVnXGU0,1992.0,4,8,2012,School Ties,The Joke is on Us,tt0105327 LVt8wEpPgPQ,1992.0,2,8,2012,School Ties,Nervous Breakdowns,tt0105327 nuLPRAvxkDo,1992.0,1,8,2012,School Ties,Take it to the Alley,tt0105327 kF-KLIi97Uc,1972.0,6,10,2012,"Play It Again, Sam",Bogart at the Supermarket,tt0069097 B8CGtuR9FnY,1972.0,2,10,2012,"Play It Again, Sam",Getting Ready for a Date,tt0069097 au5XE48PEeU,1972.0,7,10,2012,"Play It Again, Sam",A Platonic Kiss,tt0069097 Z-Vnk_VTtzk,1972.0,1,10,2012,"Play It Again, Sam",Depressed,tt0069097 fniTZP_4V1M,1972.0,5,10,2012,"Play It Again, Sam",A Three Foot Band-Aid,tt0069097 WdfgoDKArzM,1972.0,3,10,2012,"Play It Again, Sam",She Digs Me,tt0069097 DS1YYtQ_LLY,1972.0,4,10,2012,"Play It Again, Sam",Museum Girl,tt0069097 QlNXJ4pAoZc,1972.0,8,10,2012,"Play It Again, Sam",Thinking About Willie Mays,tt0069097 7iBFIlHDZx0,1985.0,6,9,2012,Young Sherlock Holmes,This is Not Real,tt0090357 qIV6K8OOvYM,1985.0,4,9,2012,Young Sherlock Holmes,Attack on Waxflatter,tt0090357 8JkLimZnZAs,1972.0,9,10,2012,"Play It Again, Sam",Italian Movie,tt0069097 MTGOnbJkILg,1985.0,5,9,2012,Young Sherlock Holmes,Holmes' New Hat,tt0090357 pyyquXhcSk8,1985.0,8,9,2012,Young Sherlock Holmes,The Cult of Eh-tar,tt0090357 ye_E3_ik9gQ,1985.0,7,9,2012,Young Sherlock Holmes,The Adventure of a Lifetime,tt0090357 -33sUQVbQ24,1985.0,9,9,2012,Young Sherlock Holmes,Cold Revenge,tt0090357 -kRGB8yBnrA,1985.0,2,9,2012,Young Sherlock Holmes,Fencing Lessons,tt0090357 uOsxXi-tu_U,1985.0,3,9,2012,Young Sherlock Holmes,The Stained Glass Knight,tt0090357 FdgyK4SErpU,2007.0,3,9,2012,Year of the Dog,Newt and Peggy,tt0756729 4NES9LMRqAc,1985.0,1,9,2012,Young Sherlock Holmes,Watson Meets Holmes,tt0090357 OSfjh0d3RkA,2007.0,5,9,2012,Year of the Dog,Paradise Farm,tt0756729 cUnb4UuUS8E,2007.0,4,9,2012,Year of the Dog,PETA Petition,tt0756729 RupELElQj6E,2007.0,2,9,2012,Year of the Dog,How Did She Die?,tt0756729 A1MEIKVyYPk,2007.0,6,9,2012,Year of the Dog,Valentine Killed Buttons,tt0756729 HJU9-MJ4oEc,2007.0,7,9,2012,Year of the Dog,Too Many Dogs,tt0756729 BVs5TFKigUw,2007.0,8,9,2012,Year of the Dog,I Think We've Been Robbed,tt0756729 ffPTYWq1YAY,2007.0,9,9,2012,Year of the Dog,Love for Animals,tt0756729 W1p7SP59Vkk,2007.0,1,9,2012,Year of the Dog,Benadryl Baby,tt0756729 BZejgesCJhE,2004.0,9,9,2012,Without a Paddle,City Slickers vs. Hillbillies,tt0364751 BLNQrlY4HMY,2004.0,8,9,2012,Without a Paddle,I Love This Part!,tt0364751 J97c0nWkJT4,2004.0,2,9,2012,Without a Paddle,Shine the Fish,tt0364751 xG6V0I6_ZP8,2004.0,5,9,2012,Without a Paddle,Flower and Butterfly,tt0364751 kU5tlt5wTcc,2004.0,4,9,2012,Without a Paddle,I'm In Over My Head,tt0364751 jN_ftt-J7S8,2004.0,7,9,2012,Without a Paddle,You Gotta Go Out and Get It,tt0364751 iIeyS_5sJHE,2004.0,6,9,2012,Without a Paddle,ATV Speeder Chase,tt0364751 Uu77LGPAlPA,2002.0,4,9,2012,We Were Soldiers,Moving Into the Valley of the Shadow of Death,tt0277434 um3tlxmK7Cg,2004.0,3,9,2012,Without a Paddle,Dan the Bear Cub,tt0364751 8T6_bpLwTrc,2002.0,7,9,2012,We Were Soldiers,Napalm Air Strike,tt0277434 c5ZiiE8fyGk,2004.0,1,9,2012,Without a Paddle,D.B. Cooper's Treasure Chest,tt0364751 eZe4RbiIBpM,2002.0,2,9,2012,We Were Soldiers,Army Housewives,tt0277434 6M6cpjP7GIo,2002.0,5,9,2012,We Were Soldiers,Arriving in North Vietnam,tt0277434 3bo6h-7ryfE,2002.0,1,9,2012,We Were Soldiers,The French Foreign Legion,tt0277434 3e-DXYUvxys,2002.0,8,9,2012,We Were Soldiers,Valley of Death,tt0277434 VglR1HaNlV8,2002.0,6,9,2012,We Were Soldiers,The Telegram,tt0277434 UFXtRWVYQV8,2002.0,3,9,2012,We Were Soldiers,Fathers and Soldiers,tt0277434 EePcWVFtRCU,2009.0,2,9,2012,Up in the Air,Cheap Is Our Starting Point,tt1193138 KMsryQSdT_k,2002.0,9,9,2012,We Were Soldiers,They Will Think This Was Their Victory,tt0277434 MIexe6aa14w,2009.0,7,9,2012,Up in the Air,Video Chat Firing,tt1193138 TkX-TPaodoM,2009.0,3,9,2012,Up in the Air,How Much Did They Pay You to Give Up on Your Dreams?,tt1193138 ZDgFAFQGZbI,2009.0,4,9,2012,Up in the Air,The Miles Are the Goal,tt1193138 Wje5oR4NqYI,2009.0,9,9,2012,Up in the Air,You Are a Parenthesis,tt1193138 vEDyFvKFcoQ,2009.0,5,9,2012,Up in the Air,Sell Me Marriage,tt1193138 DsVUFXVx2pQ,2009.0,6,9,2012,Up in the Air,A Cocoon of Self-Banishment,tt1193138 fjVyrWdUy0c,2009.0,1,9,2012,Up in the Air,People Do Crazy Sh** When They Get Fired,tt1193138 TsT0ExNMK3I,2009.0,8,9,2012,Up in the Air,What Is the Point?,tt1193138 VUsdbeBqeeo,1975.0,3,9,2012,The Stepford Wives,"You're the Best, Frank",tt0073747 hVGcbaoRtqk,1975.0,9,9,2012,The Stepford Wives,The Supermarket,tt0073747 NQobuzmBNXo,1975.0,2,9,2012,The Stepford Wives,You Don't Have to Apologize,tt0073747 F5mTt2atvVk,1975.0,5,9,2012,The Stepford Wives,Ed Hated Tennis,tt0073747 VG7JAM6DQnM,1975.0,7,9,2012,The Stepford Wives,I Thought We Were Friends,tt0073747 JbNo_tlgYfs,1975.0,1,9,2012,The Stepford Wives,Ringdings and Scotch,tt0073747 t0Hr0YA9_H0,2004.0,3,10,2012,The SpongeBob SquarePants Movie,Plankton's Plan Z,tt0345950 6_0y_BGIZSU,1975.0,8,9,2012,The Stepford Wives,The Replacement,tt0073747 GjtM8XhcA-M,1975.0,4,9,2012,The Stepford Wives,Easy On Spray Starch,tt0073747 8fbZvje4A58,1975.0,6,9,2012,The Stepford Wives,It's Gotten to You Now,tt0073747 brTGAgUYnIc,2004.0,8,10,2012,The SpongeBob SquarePants Movie,David Hasselhoff,tt0345950 r3eNr-xxA7s,2004.0,7,10,2012,The SpongeBob SquarePants Movie,Shell City Comes Alive,tt0345950 YCPDVVLUw-4,2004.0,10,10,2012,The SpongeBob SquarePants Movie,I'm a Goofy Goober,tt0345950 0vVy9NBehoc,2004.0,9,10,2012,The SpongeBob SquarePants Movie,Dennis Always Gets His Man,tt0345950 NpI0s0ky53I,2004.0,6,10,2012,The SpongeBob SquarePants Movie,Becoming Men,tt0345950 qcFVUGNUWuk,2004.0,2,10,2012,The SpongeBob SquarePants Movie,Morning Routine,tt0345950 7nUDA-4vD9g,2004.0,4,10,2012,The SpongeBob SquarePants Movie,You're Hot,tt0345950 ohMzC_1W0ZY,2004.0,1,10,2012,The SpongeBob SquarePants Movie,Musical Pirates,tt0345950 j8yAjWvAqyM,2004.0,5,10,2012,The SpongeBob SquarePants Movie,Bubble Party,tt0345950 1xI_CHaHWmw,2008.0,9,9,2012,The Spiderwick Chronicles,Hogsqueal to the Rescue,tt0416236 3qZAvmpNfaw,2008.0,8,9,2012,The Spiderwick Chronicles,A Father and Son Moment,tt0416236 3V-kJbW3b54,2008.0,5,9,2012,The Spiderwick Chronicles,Escape,tt0416236 acO1g9PEIBM,2008.0,4,9,2012,The Spiderwick Chronicles,The Griffin's Flight,tt0416236 g0TZztZJGRo,2008.0,7,9,2012,The Spiderwick Chronicles,Oven Bomb,tt0416236 q254XDNZ2Ao,2008.0,6,9,2012,The Spiderwick Chronicles,Under Attack,tt0416236 plovZLxlpGk,2008.0,2,9,2012,The Spiderwick Chronicles,Hogsqueal,tt0416236 xWTQN9bqbws,1997.0,1,9,2012,The Saint,Microchip Heist,tt0120053 fZzxZa0k7II,2008.0,3,9,2012,The Spiderwick Chronicles,The Tunnels,tt0416236 387KRtYq2mE,2008.0,1,9,2012,The Spiderwick Chronicles,The Field Guide,tt0416236 zmxWCJ8iM_8,1997.0,7,9,2012,The Saint,I'm an American!,tt0120053 wnosQPQgvTs,1997.0,6,9,2012,The Saint,Hiding in Ice Water,tt0120053 qYufeLaIggU,1997.0,5,9,2012,The Saint,Thomas the Artist,tt0120053 O1p6omIzsuY,1997.0,3,9,2012,The Saint,Bruno the German,tt0120053 yAXioyO-acA,1997.0,9,9,2012,The Saint,Fooling the Detectives,tt0120053 atpbdTo9nno,1997.0,4,9,2012,The Saint,Cold Fusion,tt0120053 QDYx2BOuAGo,1997.0,8,9,2012,The Saint,August the American,tt0120053 NaFy_SWmRlI,1997.0,2,9,2012,The Saint,Martin the Spaniard,tt0120053 og1c8h2UyE8,1998.0,10,10,2012,Star Trek: Insurrection,Too Old For This,tt0120844 i7KcAEPxDwQ,1998.0,9,10,2012,Star Trek: Insurrection,This Mission is Not Over,tt0120844 9bHnSNlLZh4,1998.0,6,10,2012,Star Trek: Insurrection,Take Cover,tt0120844 mha0N1Cx1Ck,1998.0,8,10,2012,Star Trek: Insurrection,Don't Let Go of This Moment,tt0120844 -1gCG8m1SHU,1998.0,4,10,2012,Star Trek: Insurrection,Holographic Ship,tt0120844 xdgjUPMiiEc,1998.0,5,10,2012,Star Trek: Insurrection,The Perfect Moment,tt0120844 N4x1K97JZG0,1998.0,7,10,2012,Star Trek: Insurrection,The Riker Maneuver,tt0120844 jw41pJtU6eY,1998.0,1,10,2012,Star Trek: Insurrection,"Commander Data, Stand Down!",tt0120844 0UlzQ-bao3Q,1998.0,3,10,2012,Star Trek: Insurrection,Yuck!,tt0120844 vm8sOhr-0lA,1998.0,2,10,2012,Star Trek: Insurrection,"Come Out, Come Out Wherever You Are",tt0120844 TBBN6WvPavY,1995.0,9,9,2012,Nick of Time,In the,tt0113972 tcfI_6ZMZQo,1995.0,8,9,2012,Nick of Time,Shooting the Governor,tt0113972 nFYtmrhEBZc,1995.0,2,9,2012,Nick of Time,Taxi Ride Problems,tt0113972 Z2ixl9gb0uk,1995.0,1,9,2012,Nick of Time,You're Out of Your Mind,tt0113972 HZJ7Y5JooZM,1995.0,6,9,2012,Nick of Time,Deaf Shoe Shine Man,tt0113972 bHPmA9JEEQs,1995.0,7,9,2012,Nick of Time,Quick Change,tt0113972 z1bpjIkTie8,1995.0,5,9,2012,Nick of Time,Shoot Out in the Governor's Suite,tt0113972 4vOHfYUUCJk,2004.0,6,10,2012,Mean Creek,I Wanna Call It Off,tt0377091 XmGOiqQm9B0,1995.0,4,9,2012,Nick of Time,I'll Make Gravy Out of Your Little Girl,tt0113972 meN82_c9J_U,1995.0,3,9,2012,Nick of Time,What's Behind the Seat?,tt0113972 M6mnrzwTxVU,2004.0,1,10,2012,Mean Creek,What Do You Think You're Doing?,tt0377091 a5PoLM_QBuo,2004.0,2,10,2012,Mean Creek,Target Practice,tt0377091 KvWWoKcefWo,2004.0,10,10,2012,Mean Creek,No One Has To Know,tt0377091 IESky9kgqi8,2004.0,3,10,2012,Mean Creek,Our Date,tt0377091 Q8HMk-QX5hg,2004.0,9,10,2012,Mean Creek,Wake Up,tt0377091 nhwtMOjWerg,2004.0,8,10,2012,Mean Creek,"Shut Up, George!",tt0377091 -2LmKW3TtuI,2004.0,7,10,2012,Mean Creek,The Truth,tt0377091 CmpDJs0Mjj0,2004.0,5,10,2012,Mean Creek,He's Not Such a Bad Guy,tt0377091 H4zYhsldk8M,2004.0,4,10,2012,Mean Creek,It's Just a Joke,tt0377091 dC1bJ1qmOCo,1996.0,2,9,2012,Big Night,It's About Money,tt0115678 nCK7A5Zp9I4,1998.0,7,9,2012,Hard Rain,Ever Think About Taking the Money?,tt0120696 LCt7YtB6P7g,1998.0,4,9,2012,Hard Rain,Trust Me,tt0120696 cYdScH3BmBk,2010.0,9,10,2012,Morning Glory,Put Me In Coach,tt1126618 h52UYfkLhXg,2010.0,10,10,2012,Morning Glory,It's Tough to Get Between You and a Sausage,tt1126618 _RYBglsS0tg,2010.0,6,10,2012,Morning Glory,Taking it Slowly,tt1126618 UpHWJ6959yo,2010.0,7,10,2012,Morning Glory,Jimmy Carter: Sex Offender,tt1126618 VrRhpEc9Ivk,2010.0,8,10,2012,Morning Glory,I Won't Say Fluffy,tt1126618 8TIPGj4-f-M,2010.0,4,10,2012,Morning Glory,Meeting in the Middle,tt1126618 9jI5AN2KZJ0,2010.0,5,10,2012,Morning Glory,I Look Like a Jackass,tt1126618 gHfTsIMdlPg,2010.0,2,10,2012,Morning Glory,Get a Puppet,tt1126618 I4ktnP8eOOY,2010.0,3,10,2012,Morning Glory,I Had Lunch With Dick Cheney,tt1126618 GU6US0VlAio,2010.0,1,10,2012,Morning Glory,Are You Gonna Sing?,tt1126618 rxKp6tH2AKU,1995.0,8,9,2012,Virtuosity,SID 6.7 Disabled,tt0114857 hM33ekZw3yQ,1995.0,7,9,2012,Virtuosity,Death TV,tt0114857 FYcrFQ5boyA,1995.0,9,9,2012,Virtuosity,Bombshop 6.7,tt0114857 47jfeR1H65g,1995.0,6,9,2012,Virtuosity,This One's for You,tt0114857 GJ1KcXeNstM,1995.0,4,9,2012,Virtuosity,Multiple Personality Disorder,tt0114857 Fs1k0EMYydY,1995.0,3,9,2012,Virtuosity,I Will Not Be Shut Down,tt0114857 E3LODyZSXT8,1995.0,5,9,2012,Virtuosity,SID's Symphony,tt0114857 rm6i_YfioZU,1995.0,2,9,2012,Virtuosity,I Ain't Going Nowhere,tt0114857 IV40w-OYo0A,1995.0,1,9,2012,Virtuosity,I Love To Play,tt0114857 j0sbjGj7ONo,2001.0,9,9,2012,The Last Castle,It's Over Now,tt0272020 Jh1ujB4gFv8,2001.0,5,9,2012,The Last Castle,I Just Want to Survive,tt0272020 U318Nwim78E,2001.0,6,9,2012,The Last Castle,Uprising,tt0272020 Tp2V6oAgYbw,2001.0,8,9,2012,The Last Castle,It's Not Your Flag,tt0272020 cfM9_PduF3M,2001.0,7,9,2012,The Last Castle,Now Is the Time,tt0272020 Ux1Er4tflxI,2001.0,4,9,2012,The Last Castle,You're a Disgrace,tt0272020 VX5XAwBfy1w,2005.0,9,9,2012,The Chumscrubber,Knowing Troy,tt0406650 bH5GtRBsss0,2001.0,2,9,2012,The Last Castle,Put Your Hand Down,tt0272020 1iFQ6IvEQXg,2001.0,3,9,2012,The Last Castle,The Burden of Command,tt0272020 1F-LMCJ2n4M,2001.0,1,9,2012,The Last Castle,You Weren't a Father At All,tt0272020 zzjFcjSFoqs,2005.0,6,9,2012,The Chumscrubber,Officer Lou Bratley,tt0406650 t8Ql94ApRSI,2005.0,8,9,2012,The Chumscrubber,Helping Charlie,tt0406650 5dxhOkrjfuA,2005.0,7,9,2012,The Chumscrubber,Troy Becomes the Chumscrubber,tt0406650 cUQZVnerwI0,2005.0,5,9,2012,The Chumscrubber,An Entirely New Life System,tt0406650 _OpCOSHbqiM,2005.0,4,9,2012,The Chumscrubber,Across Driveways,tt0406650 KJpaul2yTOU,2005.0,3,9,2012,The Chumscrubber,Casserole Dish,tt0406650 B_PvKCOXdiw,2005.0,2,9,2012,The Chumscrubber,Spilling Wine,tt0406650 RC5ZiK6o7uQ,2007.0,9,9,2012,Next,I Made a Mistake,tt0830558 MGy5sF8PhRQ,2005.0,1,9,2012,The Chumscrubber,Feel-Good Pills,tt0406650 lufECeWtN34,2007.0,8,9,2012,Next,An Army of Cris,tt0830558 Yj-a2zT-r88,2007.0,7,9,2012,Next,Can I Get a Light?,tt0830558 zDmvCNfvt5w,2007.0,5,9,2012,Next,Down the Mountain,tt0830558 9fuapCaufd0,2007.0,6,9,2012,Next,Signals Over the Air,tt0830558 aUWOzyo-Kec,2007.0,3,9,2012,Next,I'm Her Future,tt0830558 TW8ZML5OvXs,2007.0,4,9,2012,Next,Summation of the Parts,tt0830558 MpXp07KfSFI,2007.0,2,9,2012,Next,Beating the House,tt0830558 us54vk5--jM,2007.0,1,9,2012,Next,The Thing About the Future,tt0830558 TzMC8kgib3c,1989.0,6,8,2012,Harlem Nights,This is Personal,tt0097481 UXCzmFHm3EE,1989.0,7,8,2012,Harlem Nights,She's a Sweet Old Woman,tt0097481 OjHAZWyckMc,1989.0,3,8,2012,Harlem Nights,Are You Sayin' I'm Stealin'?,tt0097481 5RPUchAlppA,1989.0,8,8,2012,Harlem Nights,I Aint Ever Comin Home,tt0097481 nNXxlYCU0aY,1989.0,5,8,2012,Harlem Nights,Shooting Up Quick,tt0097481 yMiGHGsdikU,1989.0,4,8,2012,Harlem Nights,"Come on Sucka, Let's Get It On",tt0097481 538H6EYp_ZU,1989.0,2,8,2012,Harlem Nights,"Bennie ""Snake Eyes"" Wilson",tt0097481 JBOq0nY1rQE,1989.0,1,8,2012,Harlem Nights,Bad Luck With Kids,tt0097481 pcMXFYqwPGI,1982.0,8,8,2012,Grease 2,We'll Be Together Scene,tt0084021 yPQQzJGKOvk,1982.0,7,8,2012,Grease 2,Love Will Turn Back the Hands of Time Scene,tt0084021 HiNWDfHz8Io,1982.0,6,8,2012,Grease 2,Let's Do It For Our Country Scene,tt0084021 CcrrepikVtI,1982.0,5,8,2012,Grease 2,Who's That Guy? Scene,tt0084021 oJGQgAniyho,1982.0,4,8,2012,Grease 2,Reproduction Scene,tt0084021 dJQGkx5LpuA,1982.0,1,8,2012,Grease 2,Back to School Again Scene,tt0084021 KWKu1BbZhkQ,1982.0,2,8,2012,Grease 2,We're Gonna Score Tonight Scene,tt0084021 Hk3IpNbltyw,1982.0,3,8,2012,Grease 2,Cool Rider Scene,tt0084021 t209ljjmTqg,1978.0,8,8,2012,Goin' South,You Ain't Taking My Gold!,tt0077621 _B9xQeIvdHM,1978.0,5,8,2012,Goin' South,You Were Spying On Me!,tt0077621 yLPFWQ0NcZo,1978.0,7,8,2012,Goin' South,Keepin' Gold From Us!,tt0077621 CVyeyli6gzg,1978.0,6,8,2012,Goin' South,Kiss Me... I'm Rich!,tt0077621 ylDhWZKbCrc,1978.0,4,8,2012,Goin' South,Like Eggs Rolled in Sand,tt0077621 d51N1kUa4lw,1978.0,1,8,2012,Goin' South,I'll Take Him,tt0077621 SoQzCG8nTbg,1978.0,3,8,2012,Goin' South,Canned Apricots,tt0077621 ENkEuLrzmnc,1978.0,2,8,2012,Goin' South,How's About A Little Dessert?,tt0077621 25D3SlGLFKg,2004.0,11,11,2012,Garden State,Andrew Chooses Sam,tt0333766 URt8hBsrHFI,2004.0,8,11,2012,Garden State,Six-Hour Scavenger Hunt,tt0333766 w13ky72PcKI,2004.0,10,11,2012,Garden State,Leaving Sam,tt0333766 S-0prbWRAUk,2004.0,9,11,2012,Garden State,The Infinite Abyss,tt0333766 08iCLTmybXM,2004.0,7,11,2012,Garden State,Krazy Karl,tt0333766 3Bm1V7eZBR4,2004.0,6,11,2012,Garden State,Can't Cry,tt0333766 MBopFmu3yAg,2004.0,5,11,2012,Garden State,A True Original,tt0333766 4ImW1F6LyHE,2004.0,4,11,2012,Garden State,Visiting Jesse,tt0333766 g46IxT3MGP8,2004.0,3,11,2012,Garden State,Meeting Sam,tt0333766 oh8pzfm5QF8,2004.0,1,11,2012,Garden State,Kenny the Cop,tt0333766 BCHi6DrWgjI,2004.0,2,11,2012,Garden State,Sir Tim,tt0333766 pDcPRvZ9sDU,1996.0,9,9,2012,Big Night,Brotherly Fight,tt0115678 Yd8gK6EgpLM,1996.0,6,9,2012,Big Night,I Should Kill You,tt0115678 fz19xrc_99o,1996.0,8,9,2012,Big Night,Can We Talk About It?,tt0115678 KAPU1-0hGRE,1996.0,7,9,2012,Big Night,I Have Nothing,tt0115678 d3hs2M_0vLE,1996.0,3,9,2012,Big Night,I Make Fun,tt0115678 rpUPWSqadTo,1996.0,1,9,2012,Big Night,We Will Foreclose,tt0115678 24qcFHAk1Cw,1996.0,4,9,2012,Big Night,I Want a Cowboy,tt0115678 1UeNQlmxEkQ,1996.0,5,9,2012,Big Night,Let's Eat,tt0115678 eEUulOnl-n8,1998.0,8,9,2012,Hard Rain,Shoot Out in the Flooded Church,tt0120696 BT2RBCEH54M,1998.0,3,9,2012,Hard Rain,Locked In,tt0120696 5aXmi3hKJrY,2004.0,7,10,2012,Win a Date with Tad Hamilton!,Farm Chores,tt0335559 P_mbrROQcME,2004.0,10,10,2012,Win a Date with Tad Hamilton!,What's In Your Heart?,tt0335559 gOb8HH2oKcE,2004.0,9,10,2012,Win a Date with Tad Hamilton!,I Love You For Your Details,tt0335559 YXzryi4HrVs,2004.0,8,10,2012,Win a Date with Tad Hamilton!,Rosalee's Six Smiles,tt0335559 kh1sYuFgUAM,2004.0,4,10,2012,Win a Date with Tad Hamilton!,A Kiss Goodbye,tt0335559 YdiAV1mo4ck,2004.0,6,10,2012,Win a Date with Tad Hamilton!,He's An Actor,tt0335559 -zoOpeF5Yzc,2004.0,5,10,2012,Win a Date with Tad Hamilton!,Tad's Back,tt0335559 HYkSzS4v_sI,2004.0,2,10,2012,Win a Date with Tad Hamilton!,"It's Roseanne, Right?",tt0335559 hWRG6Oar-aM,1989.0,6,9,2012,Star Trek 5: The Final Frontier,A Faster Way,tt0098382 DuvGxB60xCQ,2004.0,1,10,2012,Win a Date with Tad Hamilton!,Guard Your Carnal Treasure,tt0335559 f3u4j0hVy8c,1989.0,8,9,2012,Star Trek 5: The Final Frontier,"One Voice, Many Faces",tt0098382 2DM0pOmClOg,1989.0,9,9,2012,Star Trek 5: The Final Frontier,Aboard the Bird-of-Prey,tt0098382 0wMU9XDIm4g,1989.0,7,9,2012,Star Trek 5: The Final Frontier,Approach to Sha Ka Ree,tt0098382 PK0i_dyx230,1989.0,5,9,2012,Star Trek 5: The Final Frontier,Stand Back!,tt0098382 xvi62S5Ou_E,1989.0,4,9,2012,Star Trek 5: The Final Frontier,Spock's Brother,tt0098382 -L3D0BL9ieA,1989.0,3,9,2012,Star Trek 5: The Final Frontier,The Lookout Party,tt0098382 qL1WqN1XKK0,1989.0,1,9,2012,Star Trek 5: The Final Frontier,Drop In for Dinner,tt0098382 V7N7EZ79mvM,1989.0,2,9,2012,Star Trek 5: The Final Frontier,Camping Out,tt0098382 aZe77wShCbE,1984.0,7,8,2012,Star Trek 3: The Search for Spock,I'll Kill You Later,tt0088170 XS4s3XXNLiE,1984.0,6,8,2012,Star Trek 3: The Search for Spock,I Have Had Enough of You,tt0088170 OlqErSr6Rjw,1984.0,2,8,2012,Star Trek 3: The Search for Spock,Don't Call Me Tiny,tt0088170 W3c9wtbQTZ4,1984.0,1,8,2012,Star Trek 3: The Search for Spock,A Damn Illegal Thing,tt0088170 Lk9wSrZ0fWA,1984.0,4,8,2012,Star Trek 3: The Search for Spock,A Klingon Bird of Prey,tt0088170 Yc81Un8ltS4,1984.0,8,8,2012,Star Trek 3: The Search for Spock,Ever Shall Be Your Friend,tt0088170 P1xdGCvNMEY,1984.0,5,8,2012,Star Trek 3: The Search for Spock,The Enterprise Self Destructs,tt0088170 xj04uvQx9l8,2002.0,4,9,2012,Narc,Shotgun Bong,tt0272207 nkcLf1CH_MY,2002.0,9,9,2012,Narc,Oak's Final Moments,tt0272207 7wLSkQOkAGY,2002.0,3,9,2012,Narc,You Know Jimmy Fredericks?,tt0272207 vmnZ_-Mqb-c,2002.0,8,9,2012,Narc,Cold Blood Shootout,tt0272207 xQGzDvZq6v0,2002.0,2,9,2012,Narc,I Want a Paycheck,tt0272207 o4U1GZcMmn0,2002.0,8,9,2012,Infernal Affairs,I Just Want My Life Back,tt0338564 -tlRw45_Ftk,2002.0,7,9,2012,Narc,Hit the Wall,tt0272207 mTr6qV4PiMc,2002.0,6,9,2012,Narc,Bagels and Guns,tt0272207 2xfrmlcIQf4,2002.0,1,9,2012,Narc,Playground Hostage,tt0272207 LUQGBGUI64E,2002.0,5,9,2012,Narc,Right & Wrong,tt0272207 sN7zJBjZgHU,2002.0,4,9,2012,Infernal Affairs,Trapped Upstairs,tt0338564 cCtn7_K1GZM,2002.0,3,9,2012,Infernal Affairs,Tailing the Mole,tt0338564 UgU1ALnQTFA,2002.0,2,9,2012,Infernal Affairs,The Game's Loser Dies,tt0338564 QWMVhLtFtNI,2002.0,1,9,2012,Infernal Affairs,The Bust Goes Bad,tt0338564 GfX0WTR-kNI,2002.0,9,9,2012,Infernal Affairs,I'm a Cop,tt0338564 C1ZrzzP6tSQ,2002.0,7,9,2012,Infernal Affairs,I've Chosen,tt0338564 o2joReiVA1A,2002.0,6,9,2012,Infernal Affairs,Phone Call from a Dead Man,tt0338564 XWI8ugmXnwM,1995.0,6,9,2012,Jade,Chinatown Parade,tt0113451 YJBNE7F49Aw,2002.0,5,9,2012,Infernal Affairs,I Didn't Tell,tt0338564 2mezAYW6Qiw,1995.0,9,9,2012,Jade,Seduced,tt0113451 GSR6orbPFjo,1995.0,8,9,2012,Jade,Katrina's Confession,tt0113451 XClRjF_xBj8,1995.0,7,9,2012,Jade,Corelli Gets Wet,tt0113451 D8yY16GX9t0,1995.0,5,9,2012,Jade,San Francisco Chase,tt0113451 0MU_p9wU5kQ,1995.0,2,9,2012,Jade,They Called Her,tt0113451 3Cp_-nl5jEs,1995.0,4,9,2012,Jade,The Hit and Run,tt0113451 rNOZMZHDVB8,2009.0,7,9,2012,Imagine That,Really Burnt Pancakes,tt0780567 cJti4-26uFE,1995.0,3,9,2012,Jade,No Brakes,tt0113451 OT-cPtnytxo,2009.0,5,9,2012,Imagine That,Imaginary Playtime,tt0780567 DdZlmK8Xxsk,1995.0,1,9,2012,Jade,It Means,tt0113451 wRUXdHtHe8U,2009.0,9,9,2012,Imagine That,I Need You to Caw With Me,tt0780567 ZCoJgCHXXK8,2009.0,8,9,2012,Imagine That,You've Got the Eyes of a Salamander,tt0780567 ifM0qy83_-A,2009.0,6,9,2012,Imagine That,Can't You Hear the Music?,tt0780567 cB0p96nOXjo,2009.0,4,9,2012,Imagine That,Their Underwear was Filled With Poop,tt0780567 rBgn0IhMEBk,2009.0,1,9,2012,Imagine That,"Rip it Off, Like a Band-Aid",tt0780567 zVIDGJxo238,2009.0,3,9,2012,Imagine That,The Dream Sparrow,tt0780567 q7QxVddVEW0,1998.0,1,9,2012,Hard Rain,We Just Want the Money!,tt0120696 6zlY2XVDl0E,2009.0,2,9,2012,Imagine That,The Man Whisperer,tt0780567 rXqRZvG5LAQ,1998.0,6,9,2012,Hard Rain,Changing the Menu,tt0120696 Rv1LUObd720,1998.0,9,9,2012,Hard Rain,Handcuffed in the Flood,tt0120696 ZKTMxF2PrHM,1998.0,2,9,2012,Hard Rain,Jet Ski Chase Through the School,tt0120696 RineREyWP-4,1998.0,5,9,2012,Hard Rain,And Into the River We'd Dive,tt0120696 RKBZx9XsCuE,2004.0,3,10,2012,Win a Date with Tad Hamilton!,First Date Jitters,tt0335559 WXDIkldSPqI,2003.0,10,10,2012,Tupac: Resurrection,The World Loves Tupac,tt0343121 mWquYel6AI4,2003.0,8,10,2012,Tupac: Resurrection,West Coast vs. East Coast,tt0343121 -yx9JK_HeQc,2003.0,9,10,2012,Tupac: Resurrection,Tupac Dies,tt0343121 hC6jyc9reW0,2003.0,7,10,2012,Tupac: Resurrection,Double Standard: Men & Women,tt0343121 Yg1izGf8EFQ,2003.0,6,10,2012,Tupac: Resurrection,What Do You Think We're Gonna Do? Ask?,tt0343121 w9yRZoY0stg,2003.0,4,10,2012,Tupac: Resurrection,I Love Women,tt0343121 ejJIihkZTGU,2003.0,5,10,2012,Tupac: Resurrection,Thug Life,tt0343121 1tZ2EZXxU6w,2003.0,3,10,2012,Tupac: Resurrection,From Unknown to Platinum,tt0343121 hSLj5cQaXM8,2009.0,9,9,2012,The Uninvited,I Finished What I Started,tt0815245 ScMlNpnLI3U,2003.0,1,10,2012,Tupac: Resurrection,This is My Story,tt0343121 L-HEnOelh-k,2009.0,8,9,2012,The Uninvited,They Can Burn in Hell,tt0815245 TQebazOCP4M,2003.0,2,10,2012,Tupac: Resurrection,I Could Act Like Those Characters,tt0343121 Ga9YztTUYaU,2009.0,6,9,2012,The Uninvited,This Was The Only Way,tt0815245 750pEcgJqGg,2009.0,5,9,2012,The Uninvited,Don't Believe Her,tt0815245 IYqE3JfSbzA,2009.0,7,9,2012,The Uninvited,What Have You Done?,tt0815245 UU8yY3gkZZ0,2009.0,4,9,2012,The Uninvited,I Don't Want To Hurt You,tt0815245 ETrY43GsoHY,2009.0,3,9,2012,The Uninvited,Take Out the Garbage,tt0815245 wbccgEaJudM,2009.0,2,9,2012,The Uninvited,What I Saw That Night,tt0815245 Pd8RaVEZlyU,2009.0,1,9,2012,The Uninvited,I Saw Mom,tt0815245 wf02wZ_Okw8,2004.0,6,8,2012,The Stepford Wives,It's a Whole New Me,tt0327162 yZvx9PF3NAU,2004.0,3,8,2012,The Stepford Wives,Remote Control Wife,tt0327162 Op0qrTGRcxk,2004.0,5,8,2012,The Stepford Wives,She Gives Singles,tt0327162 R57cfRscNyM,2004.0,8,8,2012,The Stepford Wives,The Supermarket,tt0327162 C-Ad2a7UD0A,2004.0,1,8,2012,The Stepford Wives,I Can Do Better,tt0327162 HkfaRh__E6U,2004.0,7,8,2012,The Stepford Wives,The Female Improvement System,tt0327162 mW42lBPbuTc,2004.0,4,8,2012,The Stepford Wives,Stepford Book Club,tt0327162 sEaSAJgaLtQ,2004.0,2,8,2012,The Stepford Wives,Clairobics,tt0327162 xfIJV6C9-fM,1997.0,3,9,2012,The Peacemaker,We May Have a Problem,tt0119874 IwzcDydxQyM,1997.0,1,9,2012,The Peacemaker,Other Motivations,tt0119874 d5jxXkpstv4,1997.0,9,9,2012,The Peacemaker,Blowing Up the Bomb,tt0119874 TSaB7Oltgwg,1997.0,8,9,2012,The Peacemaker,Foot Pursuit,tt0119874 QecVEAGoQ4A,1997.0,7,9,2012,The Peacemaker,Warhead Retrieval,tt0119874 C2NxwHIDTUA,1997.0,6,9,2012,The Peacemaker,Russian Airspace,tt0119874 gHfRl_ZjHj8,1997.0,2,9,2012,The Peacemaker,This is My Plan,tt0119874 avXk2EamFs4,1997.0,4,9,2012,The Peacemaker,Rear-Ended,tt0119874 MXYUFlvaGpk,1997.0,5,9,2012,The Peacemaker,I Don't Think You're Stupid,tt0119874 DdqQsOC-A2w,1999.0,1,8,2012,The Haunting,No One Will Come,tt0171363 upwUN92OAQU,1999.0,2,8,2012,The Haunting,Ghost Hair,tt0171363 bKOW66PVjvA,1999.0,3,8,2012,The Haunting,Beneath the Fireplace,tt0171363 UgxCAQEI16o,1999.0,8,8,2012,The Haunting,Go to Hell,tt0171363 NyPF-BmNQjQ,1999.0,4,8,2012,The Haunting,The Mirror Has Two Faces,tt0171363 xSmmiAl9ZWE,1999.0,5,8,2012,The Haunting,The Spiral Staircase,tt0171363 PVuB1pBFA5k,1999.0,6,8,2012,The Haunting,The Haunted Bedroom,tt0171363 N6ffGVe63c0,1999.0,7,8,2012,The Haunting,Magic Carpet Ride of Death,tt0171363 aTPdWYo9zhQ,2002.0,4,8,2012,Star Trek: Nemesis,Teaming Up With the Romulans,tt0253754 FVfoce-wfgI,2002.0,2,8,2012,Star Trek: Nemesis,I Aspire to Be Better Than I Am,tt0253754 nYkD6bPe9Ho,2002.0,6,8,2012,Star Trek: Nemesis,Reman Boarding Party,tt0253754 S02T1j9qzwg,2002.0,8,8,2012,Star Trek: Nemesis,Blue Skies,tt0253754 bXq3dytL6ZA,2002.0,7,8,2012,Star Trek: Nemesis,Brace for Impact,tt0253754 DHUSpAtemfg,2002.0,5,8,2012,Star Trek: Nemesis,A Battle of the Mind,tt0253754 Bl0c_aXJtUc,2002.0,3,8,2012,Star Trek: Nemesis,I Can't Fight What I Am,tt0253754 Jl4L_RREcpQ,2009.0,10,10,2012,Hotel for Dogs,Dog Catapult,tt0785006 5djUDJaY7Ig,2009.0,9,10,2012,Hotel for Dogs,You Can't Date Them Both,tt0785006 NJJDRmtivWI,2002.0,1,8,2012,Star Trek: Nemesis,A Shadow and an Echo,tt0253754 DSBU1YgGyt0,2009.0,8,10,2012,Hotel for Dogs,The Golden Hydrant,tt0785006 w4o45-EnPrU,2009.0,3,10,2012,Hotel for Dogs,Needs More Cinnamon,tt0785006 T_0IN7mMXZI,2009.0,7,10,2012,Hotel for Dogs,Watch Where You Step,tt0785006 rTCi5UsRudE,2009.0,6,10,2012,Hotel for Dogs,Fetch Machine,tt0785006 1i2_WXJB6wI,2009.0,5,10,2012,Hotel for Dogs,All That for a Look Out the Window?,tt0785006 4xcqyJwEdd0,2009.0,4,10,2012,Hotel for Dogs,Better Here Than the Pound,tt0785006 kzUfGDKepCA,2009.0,2,10,2012,Hotel for Dogs,Rock Manifesto,tt0785006 n86CV7VKvfE,2008.0,6,10,2012,Ghost Town,Pepe's Organ,tt0995039 JYKlYHwUiac,2009.0,1,10,2012,Hotel for Dogs,How to Steal Food,tt0785006 JeT0XHFyAU4,2008.0,10,10,2012,Ghost Town,He Found His Way Home,tt0995039 qlUmBE6uGu8,2008.0,8,10,2012,Ghost Town,You're Sick,tt0995039 TdQkBU9p6Y0,2008.0,4,10,2012,Ghost Town,Leave Me Alone!,tt0995039 nshLAILEN4w,2008.0,2,10,2012,Ghost Town,He Can See Us!,tt0995039 7qVgjGI6Lsw,2008.0,9,10,2012,Ghost Town,The Ultimate Question,tt0995039 aOAgGeW7abs,2008.0,1,10,2012,Ghost Town,Gross Invasion of My Privacy,tt0995039 5kmgUtppQP0,2008.0,7,10,2012,Ghost Town,A Sensitive Gag Reflex,tt0995039 hcvAwHA7usc,2008.0,3,10,2012,Ghost Town,You Died,tt0995039 qIOC-6zluBQ,2008.0,5,10,2012,Ghost Town,He Was No Flosser,tt0995039 NGtMNsci-zk,2007.0,8,9,2012,Disturbia,Home Invasion,tt0486822 QH8uHNGEvbg,2007.0,9,9,2012,Disturbia,Bad Neighbor,tt0486822 x883mrwYjDM,2007.0,5,9,2012,Disturbia,Breakfast Surprise,tt0486822 toAOUXtlXXc,2007.0,7,9,2012,Disturbia,Living in Peace,tt0486822 VCghHER3cOU,2007.0,6,9,2012,Disturbia,Paranoia,tt0486822 Rv6_mS8l48U,2007.0,3,9,2012,Disturbia,Dog Sh**,tt0486822 NH5fod3mC7c,2007.0,4,9,2012,Disturbia,Caught in the Act,tt0486822 b9qMqGTi1uc,2007.0,1,9,2012,Disturbia,Car Accident,tt0486822 BWw0KCLcKHc,2007.0,2,9,2012,Disturbia,Punching Señor Gutierrez,tt0486822 jgdFx9Epf78,1990.0,9,9,2012,Another 48 Hrs.,"Shoot Me, Jack!",tt0099044 67cxJ9EynG4,1990.0,8,9,2012,Another 48 Hrs.,Nightclub Shootout,tt0099044 nS-l7xvs5ew,1990.0,5,9,2012,Another 48 Hrs.,I Always Wanted a Chauffeur,tt0099044 U6xq6u7vv0U,1990.0,7,9,2012,Another 48 Hrs.,Hotel Shootout,tt0099044 C_uIIZdNVwk,1990.0,6,9,2012,Another 48 Hrs.,Anyone Else Want a Limp?,tt0099044 l4bCchzGpkQ,1990.0,4,9,2012,Another 48 Hrs.,The Traffic Cop,tt0099044 uEchpjUjGPA,1990.0,2,9,2012,Another 48 Hrs.,Prison Bus Attack,tt0099044 uiWL3bxDifQ,1990.0,1,9,2012,Another 48 Hrs.,Unfinished Business,tt0099044 hks2iXeaxsk,1990.0,3,9,2012,Another 48 Hrs.,"No Car, No Money",tt0099044 OeLnS8O08ng,1982.0,9,10,2012,Airplane 2: The Sequel,A Bobby Pin,tt0083530 1UybDydQpNY,1982.0,10,10,2012,Airplane 2: The Sequel,She's Beginning to Crack Up,tt0083530 q8_R4AG2o1w,1982.0,6,10,2012,Airplane 2: The Sequel,It's Very Likely That We're All Going to Die,tt0083530 JGnxWlhfrrM,1982.0,7,10,2012,Airplane 2: The Sequel,"Not A Buh, A Bomb",tt0083530 OE8Tc1cvSYM,1982.0,8,10,2012,Airplane 2: The Sequel,Irony Can Be Pretty Ironic Sometimes,tt0083530 Gd6aLnPHqeE,1982.0,5,10,2012,Airplane 2: The Sequel,Don't Panic,tt0083530 _6AGOfGHzeg,1982.0,4,10,2012,Airplane 2: The Sequel,We've Run Out of Coffee,tt0083530 JMa1f4jyBa0,1982.0,3,10,2012,Airplane 2: The Sequel,Will You Please Control Yourself?,tt0083530 bE0mQSaYaNY,1982.0,2,10,2012,Airplane 2: The Sequel,Maybe He's Just an A**hole,tt0083530 BrRdy4BAYp0,1982.0,1,10,2012,Airplane 2: The Sequel,"Under Oveur, Oveur Dunn",tt0083530 gNtGI_D85mQ,1998.0,8,8,2012,A Simple Plan,"I'm Tired, Hank",tt0120324 EGX-t_U6vkg,1998.0,7,8,2012,A Simple Plan,Where's My Money?,tt0120324 SWEbahhZEyA,1998.0,6,8,2012,A Simple Plan,Like It Used To Be,tt0120324 tjYSxlqLOew,1998.0,5,8,2012,A Simple Plan,Happiness,tt0120324 mflonVbY9gw,1998.0,1,8,2012,A Simple Plan,You Want To Keep It?,tt0120324 Qn6tLR3RGgE,1998.0,3,8,2012,A Simple Plan,The Farm,tt0120324 tAp2Z3-zx9k,1998.0,4,8,2012,A Simple Plan,Self-Defense,tt0120324 3I6s_-Q_2kI,1998.0,2,8,2012,A Simple Plan,Killing Dwight,tt0120324 uYV11ZwpaSQ,2010.0,6,7,2012,The Fighter,Dickie Takes the Cake,tt0964517 rKV-U-HcGVk,2010.0,7,7,2012,The Fighter,Making Things Right,tt0964517 YP-rmIcxn1g,2010.0,5,7,2012,The Fighter,I Thought You Were My Mother Too,tt0964517 s2pqELFTepw,2010.0,4,7,2012,The Fighter,The Fighting Family,tt0964517 iCp3nEO3ttU,2010.0,3,7,2012,The Fighter,Don't Call Me Skank,tt0964517 OELFAF76DEU,2010.0,1,7,2012,The Fighter,There Wasn't Even Any Good Sex in It,tt0964517 hKvpF7ACDBo,2010.0,2,7,2012,The Fighter,That's My Life,tt0964517 0zhatVdxShE,2009.0,8,8,2012,Middle Men,Backdating,tt1251757 yX5LfZK1wTw,2009.0,7,8,2012,Middle Men,The Wrong Boy,tt1251757 pXe74ckEnME,2009.0,6,8,2012,Middle Men,A Part of Ourselves,tt1251757 6w6aNHXW93o,2009.0,5,8,2012,Middle Men,District Attorney,tt1251757 DwOTJvwKKeU,2009.0,4,8,2012,Middle Men,That Ain't Right,tt1251757 l0VX6h8lP08,2009.0,3,8,2012,Middle Men,Where's Ivan?,tt1251757 qPZWb3abC9I,2009.0,2,8,2012,Middle Men,Russian at the Door,tt1251757 Zmnzw-Dxym4,1974.0,6,7,2012,The Longest Yard,,tt0071771 qBWbxMv6v_s,1974.0,7,7,2012,The Longest Yard,Game Ball,tt0071771 HWAQ8rTBLUk,1974.0,5,7,2012,The Longest Yard,Ball Breaker,tt0071771 KuXeOs4oOBw,2009.0,1,8,2012,Middle Men,First Sale,tt1251757 84VVZEw9vBs,1974.0,3,7,2012,The Longest Yard,A Broken Nose,tt0071771 NhpvvobULYA,1974.0,2,7,2012,The Longest Yard,Team Recruitment,tt0071771 EPmNA1vLOH4,1974.0,1,7,2012,The Longest Yard,An All-American Son of a Bitch,tt0071771 sZ0nA_2qOWc,1974.0,4,7,2012,The Longest Yard,A 15 Minute Romp,tt0071771 ZRJ_tgwyLUM,2007.0,4,10,2012,Reno 911!: Miami,Alligator Attack,tt0499554 MALjtjcdmt8,2000.0,6,9,2012,You Can Count on Me,I Think You Should Leave,tt0203230 XdMuekkeCeU,2008.0,2,12,2011,Death Race,Prison Cafeteria Fight,tt0452608 GxhXJGA32YI,1995.0,2,9,2011,Congo,Amy Want Green Drop Drink,tt0112715 6oPn0DwJOZA,1995.0,8,9,2011,Congo,Killa Gorilla,tt0112715 EvQmjnk86zA,2002.0,3,12,2011,40 Days and 40 Nights,"Meeting Erica, Officially",tt0243736 ViUAWLUF74Q,1995.0,4,9,2011,Congo,Push Me Please,tt0112715 8fbGbPwKbQA,1995.0,3,9,2011,Congo,Stop Eating My Sesame Cake!,tt0112715 jfgWw43Fcuw,1995.0,9,9,2011,Congo,Put 'Em on the Endangered Species List,tt0112715 458GisQyQLg,1995.0,1,9,2011,Congo,The First Attack,tt0112715 Aa4bjQGD6oY,1995.0,7,9,2011,Congo,That's an Unusual Name,tt0112715 vKEqdQhX4lo,1995.0,5,9,2011,Congo,There's Something on My...,tt0112715 45mmWoSzIAY,1995.0,6,9,2011,Congo,Hippo Attack,tt0112715 CNH4A1sI_oE,1997.0,3,11,2011,Children of Heaven,One Of The Most Important Things,tt0118849 WmeaAGe4uMo,2002.0,11,12,2011,40 Days and 40 Nights,Sexual Hallucinations,tt0243736 WK682NdLvS4,2002.0,9,12,2011,40 Days and 40 Nights,Little Matty Says Hello,tt0243736 ZI827BuJgx8,2006.0,5,10,2011,Johnny Was,The Vice Always Follows,tt0426501 gRGbGI2-kPs,1991.0,1,9,2011,Operation Condor,Runaway Groom,tt0099558 oUQ9ZKUt2XQ,1997.0,10,11,2011,Cop Land,You People Are All the Same,tt0118887 wD8pQ5eDneo,1997.0,7,11,2011,Cop Land,Something To Do,tt0118887 CWxkPQXZo6Q,1997.0,4,11,2011,Cop Land,It's Okay to Be Jealous,tt0118887 CG88PCHKwOk,1997.0,2,11,2011,Cop Land,I Found Their Piece,tt0118887 ToxlyJ4-zBM,1997.0,9,11,2011,Cop Land,Rooftop Fight,tt0118887 dKAvAAT2q_U,1997.0,6,11,2011,Cop Land,Deaf In One Ear,tt0118887 eUNWIKp6nR4,2006.0,9,10,2011,Charlotte's Web,He Really is Some Pig,tt0413895 TBURp00dftA,1997.0,1,11,2011,Cop Land,Road Incident,tt0118887 H-h_xgdM8FI,2002.0,6,9,2011,The Sum of All Fears,Baltimore!,tt0164184 20dudgZjeaY,2006.0,7,10,2011,Charlotte's Web,The Rat Rules!,tt0413895 l-uqZJwOieA,2002.0,7,9,2011,The Sum of All Fears,Terrorist Attack,tt0164184 9BNJuZn72tg,2006.0,5,10,2011,Charlotte's Web,,tt0413895 Q0UDJuPozw8,2006.0,6,10,2011,Charlotte's Web,Think About That Corn,tt0413895 DYFQ9vVqiMA,2006.0,4,10,2011,Charlotte's Web,The Yolks On Me,tt0413895 zdX69cWtu6w,2006.0,1,10,2011,Charlotte's Web,Fern Saves Wilbur,tt0413895 _7dr6PCeW4c,2007.0,10,10,2011,Blades of Glory,The Iron Lotus,tt0445934 jaRbZJBLIQo,2007.0,8,10,2011,Blades of Glory,"I Miss You, Jimmy",tt0445934 sDsoiCkKuZY,2007.0,9,10,2011,Blades of Glory,Let's Kick Some Ice,tt0445934 nekzfohNwuY,2007.0,7,10,2011,Blades of Glory,I'm a Sex Addict,tt0445934 0LzZVYshI7s,2007.0,6,10,2011,Blades of Glory,Ice Blows,tt0445934 aqvTaYLP8yc,2007.0,5,10,2011,Blades of Glory,The Mac Attack,tt0445934 0DFBoLZC3Bw,2007.0,2,10,2011,Blades of Glory,Team Van Waldenberg,tt0445934 JwGZDfu-PZI,2007.0,4,10,2011,Blades of Glory,What a Skater's Body Looks Like,tt0445934 KKW4wRDTI6Q,1989.0,9,9,2011,Black Rain,Motorcycle Chase,tt0096933 sh0IBg7GBeY,2007.0,3,10,2011,Blades of Glory,Lady Humps,tt0445934 MQZES2Vkcws,2007.0,1,10,2011,Blades of Glory,Brawl on Ice,tt0445934 eWmiv9uIXQk,2007.0,1,10,2011,Beowulf,The Demon Grendel,tt0442933 -RhmDUj_GJs,2007.0,8,10,2011,Beowulf,Dragon Attack,tt0442933 gAVNayJY7Tc,2002.0,2,12,2011,40 Days and 40 Nights,The Layout Problem,tt0243736 KZzmopXXE2k,2002.0,6,12,2011,40 Days and 40 Nights,The Machine's Still Running Hot,tt0243736 gPamy0ygNs8,2002.0,7,12,2011,40 Days and 40 Nights,Spiked Juice,tt0243736 I2rWcnXUllw,2002.0,8,12,2011,40 Days and 40 Nights,All That Matters is the Kiss,tt0243736 Cr04KncHozI,2002.0,5,12,2011,40 Days and 40 Nights,Regaining the Power,tt0243736 jpY79a30azQ,2002.0,10,12,2011,40 Days and 40 Nights,You've Never Made Me So Hot,tt0243736 97QNsiDKamk,2002.0,4,12,2011,40 Days and 40 Nights,Bus Date,tt0243736 OB8uD8FaPXU,1994.0,8,12,2011,The Crow,How Awful Goodness Is,tt0109506 3Lq9NGTN8Pc,1994.0,3,12,2011,The Crow,"Victims, Aren't We All?",tt0109506 kgxhkCKXyRs,2002.0,8,10,2011,City of God,All-Out War,tt0317248 dPpj1KEhwpo,2002.0,4,10,2011,City of God,Flirting With Crime,tt0317248 KDqz--u8NYY,1994.0,2,12,2011,The Crow,Re-Born,tt0109506 TCQQtdtZmv0,1999.0,5,10,2011,The Cider House Rules,Fuzzy Dies,tt0124315 hdlfKy3AXDI,2002.0,9,10,2011,City of God,Shooting Photos,tt0317248 ru6jbod6hHI,2002.0,6,10,2011,City of God,Want a Gun?,tt0317248 qvDxgXX9lww,2002.0,1,10,2011,City of God,Shaggy Takes Off,tt0317248 Fa1zCdRj3MY,2002.0,7,10,2011,City of God,The Exception Becomes the Rule,tt0317248 HaCRdT6wcyE,1997.0,7,11,2011,Children of Heaven,Why Are You Late This Time?,tt0118849 InDLvz0bN4k,1997.0,10,11,2011,Children of Heaven,Good News,tt0118849 PCID_Jg1Djo,1997.0,2,11,2011,Children of Heaven,You Can Wear My Sneakers,tt0118849 Sa6o9ovlX7E,2006.0,10,10,2011,Johnny Was,End of the Line,tt0426501 JUuQ3MggHbw,2002.0,1,12,2011,40 Days and 40 Nights,No Sex for Lent!,tt0243736 FcvCuyT-zWs,2002.0,12,12,2011,40 Days and 40 Nights,Laundromat Tryst,tt0243736 0l5h8k9N9pI,1951.0,1,8,2011,Ace in the Hole,"I Know Newspapers Backward, Forward and Sideways",tt0043338 1eWz6aeGexk,2000.0,5,12,2011,Chocolat,Not That Kind of Poetry,tt0241303 C0mHRQn_YrI,2006.0,10,10,2011,Charlotte's Web,Magnum Opus,tt0413895 dcmwPYCUysw,1970.0,6,10,2011,Catch-22,Bomb the Ocean,tt0065528 btRNa3CItMc,1997.0,8,10,2011,Life is Beautiful,Buongiorno Principessa!,tt0118799 4VWgFJUjmHc,2002.0,6,10,2011,Changing Lanes,The Damaged Tire,tt0264472 zS3qOr0zAJg,2006.0,3,10,2011,Charlotte's Web,Wilbur Meets Charlotte,tt0413895 jKCpGDv8vuY,2006.0,8,10,2011,Charlotte's Web,Fun at The Fair,tt0413895 cNqSc_WsRJ4,1997.0,3,11,2011,Cop Land,I'm One of the Good Guys,tt0118887 JoEU1L2kueo,2006.0,2,10,2011,Charlotte's Web,Wilbur Plays in the Mud,tt0413895 L9x9zuoAEl0,2002.0,10,10,2011,City of God,I Want to Get My Father's Murderer,tt0317248 ALImNM6jWZw,2000.0,2,12,2011,Chocolat,Something Special,tt0241303 XeN0t2sZaP4,2002.0,2,10,2011,City of God,Thirst to Kill,tt0317248 V26Pogm8ktk,2002.0,3,10,2011,City of God,Shall I Shoot You in the Hand or Foot?,tt0317248 jPf2y2QGoJw,1985.0,9,9,2011,Clue,They All Did It,tt0088930 BnrKndkqLaY,2002.0,5,10,2011,City of God,Benny's Farewell Party,tt0317248 Y-9QUziXV1w,1997.0,11,11,2011,Cop Land,Deaf Shoot Out,tt0118887 K8HgAzIL-iA,1997.0,8,11,2011,Cop Land,Taking Out Superboy,tt0118887 y7m2AWevwoI,1997.0,5,11,2011,Cop Land,Don't Shut Me Out,tt0118887 VrJMgYRC_ys,2007.0,6,9,2011,Freedom Writers,Paco Did It,tt0463998 A63kIf5CfgE,1981.0,7,9,2011,Friday the 13th Part 2,A Surprise for Vicky,tt0082418 kcYN8phvjSY,1981.0,1,9,2011,Friday the 13th Part 2,"Look Out, Alice!",tt0082418 sOqvTLXZsMs,1981.0,5,9,2011,Friday the 13th Part 2,"Vicky, Is That You?",tt0082418 17gLdc5k_XU,2007.0,9,10,2011,Hot Rod,Let's Jump This Jump,tt0787475 QaDy4LHwyec,2006.0,2,10,2011,Failure to Launch,Vicious Chipmunk,tt0427229 6YbTy5AvRP4,1981.0,3,9,2011,Friday the 13th Part 2,Mystery Cabin,tt0082418 yxoE9td3Hko,1981.0,2,9,2011,Friday the 13th Part 2,Jason's Out There,tt0082418 -CzO7z1dZ1A,1981.0,8,9,2011,Friday the 13th Part 2,Hiding Under the Bed,tt0082418 Upj9_vP0WxY,2000.0,3,12,2011,Everybody's Famous!,Kidnappers,tt0209037 VY6PAkLG2p4,2007.0,8,10,2011,Hot Rod,The King of AM Radio,tt0787475 OCT_61zKMJU,2000.0,10,12,2011,Everybody's Famous!,Surrounded,tt0209037 FePVICEsBZY,2000.0,11,12,2011,Everybody's Famous!,Lonesome Zora's Father,tt0209037 GjOcw8d8yn8,2000.0,1,12,2011,Everybody's Famous!,Debbie,tt0209037 v2sqjebFODg,1997.0,7,10,2011,Life is Beautiful,I Don't Want to Take a Shower,tt0118799 dMt-XLWY8-g,2006.0,7,10,2011,Johnny Was,Julius' Stash,tt0426501 AEucDLp8RdQ,2006.0,4,10,2011,Johnny Was,Warehouse Shootout,tt0426501 XlfvWdF-g_E,2006.0,6,10,2011,Johnny Was,A Spare Head,tt0426501 yoeV1e8dTTI,2006.0,8,10,2011,Johnny Was,Back Where We Started,tt0426501 Wd4DobcYu30,2006.0,3,10,2011,Johnny Was,Standoff,tt0426501 XkFE98rP1eo,1997.0,4,10,2011,Life is Beautiful,Into the Greenhouse,tt0118799 9lTSqc1UnLU,1997.0,6,10,2011,Life is Beautiful,Creative Translation,tt0118799 ZHGLbVKq9T0,1995.0,6,12,2011,The Crossing Guard,She Was Apologizing to Me,tt0112744 LdcIe3gGQHY,2006.0,2,10,2011,Johnny Was,Are You Irish?,tt0426501 o4E-yb-1_FA,1997.0,1,10,2011,Life is Beautiful,A Night at the Opera,tt0118799 l60Xedjvw-Q,2006.0,1,10,2011,Johnny Was,Hiding the White Fish,tt0426501 KaUEDYWofJQ,1997.0,5,10,2011,Life is Beautiful,Let Me on That Train!,tt0118799 ccAWioDHgQM,1997.0,10,10,2011,Life is Beautiful,We Won!,tt0118799 h7CBrN19OY4,1997.0,3,10,2011,Life is Beautiful,Take Me Away,tt0118799 Am-uvoQN72E,1997.0,2,10,2011,Life is Beautiful,A Date Blessed by the Virgin Mary,tt0118799 -13ScnosXAk,1997.0,9,10,2011,Life is Beautiful,The Final Game,tt0118799 AuWjXrFh1qQ,1979.0,5,9,2011,Meatballs,Campfire Story,tt0079540 DONkgw00QSE,1979.0,4,9,2011,Meatballs,Losing With Self-Respect,tt0079540 85-2A0PHLIc,2007.0,6,10,2011,Reno 911!: Miami,Weed Wacker Threat,tt0499554 2pud_rEsxMs,2007.0,8,10,2011,Reno 911!: Miami,Ethan the Drug Lord,tt0499554 Gd6ruQcgu9w,2007.0,2,10,2011,Reno 911!: Miami,"Stop, Chicken, Stop!",tt0499554 gAKiWvjfCiQ,2009.0,9,9,2011,Star Trek,To Boldly Go Where No Man Has Gone Before,tt0796366 k9vHopyEtzs,2009.0,6,9,2011,Star Trek,Emotionally Compromised,tt0796366 etyH2OUxVuQ,2007.0,7,10,2011,Reno 911!: Miami,Terry's Lewd Behavior,tt0499554 8Ppo5YIYwTM,2009.0,8,9,2011,Star Trek,Spock Meets Spock,tt0796366 5ECsW0x8svw,2009.0,5,9,2011,Star Trek,The Ice Creature,tt0796366 qs0J2F3ErMc,2009.0,2,9,2011,Star Trek,A Pointy-Eared Bastard,tt0796366 QGNfrNJZin4,2009.0,4,9,2011,Star Trek,Beam Us Up!,tt0796366 -ArVBL8EgKU,2009.0,3,9,2011,Star Trek,Drill Fight,tt0796366 sDKUL1YRZZs,1997.0,2,10,2011,The Big One,Paydays in the Coffin,tt0124295 lFiX7y8KFoU,2005.0,12,12,2011,Sharkboy and Lavagirl 3D,Defeating Mr. Electric,tt0424774 RlphfLO3MYA,2009.0,1,9,2011,Star Trek,Kirk Meets Bones,tt0796366 FXy_DO6IZOA,2009.0,7,9,2011,Star Trek,Fire Everything!,tt0796366 vXNr2xtv09Y,1994.0,2,8,2011,Star Trek: Generations,Time Is a Predator,tt0111280 -tUodP_Wus4,2005.0,4,12,2011,Sharkboy and Lavagirl 3D,Glasses On,tt0424774 IQp7gtX4w0U,1994.0,11,12,2011,The Crow,"Kaw, Kaw, Bang, F*** I'm Dead!",tt0109506 5uJV71s0r5Q,1994.0,4,12,2011,The Crow,Gideon's,tt0109506 WwDJZhI5IRM,1999.0,1,10,2011,The Cider House Rules,Adopting Homer,tt0124315 cXbzJ7xAVn4,1994.0,6,12,2011,The Crow,"Here, Funboy",tt0109506 Mwo-Wd__tTI,1994.0,10,12,2011,The Crow,You're All Going to Die,tt0109506 TGqcz-Xtd6E,1990.0,10,11,2011,The Grifters,Grifter's Dodge,tt0099703 8gc-RSAJpH4,2007.0,4,10,2011,Beowulf,The Royal Dragon Horn,tt0442933 TEodx0CTTgE,2002.0,9,10,2011,Changing Lanes,You're Addicted to Chaos,tt0264472 JyjlwpXupvI,2002.0,10,10,2011,Changing Lanes,I Found the Edge,tt0264472 UdZuHyttXbw,1970.0,10,10,2011,Catch-22,I Can Do It,tt0065528 NWsc8gC3nSw,2002.0,7,10,2011,Changing Lanes,Searching for Meaning,tt0264472 gDwlbuyDPfk,1994.0,12,12,2011,The Crow,Rooftop Showdown,tt0109506 1edv56TCvxk,1994.0,7,12,2011,The Crow,Mother is the Name For God,tt0109506 6f1jYUTo7AU,1995.0,11,12,2011,The Crossing Guard,At Close Range,tt0112744 67jgvKFBCsY,2008.0,8,9,2011,The Duchess,Her Name Is Eliza,tt0864761 nZE2tGoC0H4,2001.0,4,10,2011,Along Came a Spider,I Happen to Like Spiders,tt0164334 kGVQE0m_V3A,2007.0,3,9,2011,A Mighty Heart,Interrogating a Jihadi,tt0829459 LiYdMadk89Q,2001.0,3,10,2011,Along Came a Spider,The Missing Picture,tt0164334 bmdgHN34hnk,2007.0,8,9,2011,A Mighty Heart,Mariane's Message,tt0829459 FEioKHlkczY,2007.0,5,9,2011,A Mighty Heart,Veiled Threats,tt0829459 kgdr5vmYZLw,2007.0,9,9,2011,A Mighty Heart,The Courage to Endure,tt0829459 NTd3y71iKqE,2007.0,7,9,2011,A Mighty Heart,Learning the Truth,tt0829459 DfcpuhTr8R0,2007.0,6,9,2011,A Mighty Heart,Danny Didn't Make It,tt0829459 Id3Lr9GyGh0,2007.0,4,9,2011,A Mighty Heart,Daniel and Mariane,tt0829459 x_H8vusyzN0,2007.0,2,9,2011,A Mighty Heart,I Love You,tt0829459 dH1SeHOpEO8,2007.0,1,9,2011,A Mighty Heart,Captured,tt0829459 Y4_1X9cpFWI,1951.0,8,8,2011,Ace in the Hole,A Big Human Interest Ending,tt0043338 LLjiVwzeDb0,1951.0,5,8,2011,Ace in the Hole,You Like Those Rocks Just as Much as I Do,tt0043338 7hY_dAeX9hw,1951.0,7,8,2011,Ace in the Hole,Below-the-Belt Journalism,tt0043338 42xTE_bzg18,1951.0,6,8,2011,Ace in the Hole,We've Got an,tt0043338 dShmoHD7PdM,1951.0,2,8,2011,Ace in the Hole,Small Town Blues,tt0043338 doLHipw196I,2001.0,6,10,2011,Along Came a Spider,It's Him,tt0164334 4D6bHTh4-tE,1951.0,4,8,2011,Ace in the Hole,Finding Leo,tt0043338 BvPVgwp_M18,1951.0,3,8,2011,Ace in the Hole,Rattlesnake Hunt,tt0043338 FPbDFxXU_74,2001.0,1,10,2011,Along Came a Spider,Bridge Crash,tt0164334 iH9hjyoAugw,2001.0,8,10,2011,Along Came a Spider,Brutally Honest,tt0164334 5sRrCX-pLPM,2001.0,5,10,2011,Along Came a Spider,Escape Attempt,tt0164334 bYQjcjDeGF4,2001.0,10,10,2011,Along Came a Spider,You're Not My Partner,tt0164334 3OYeaLGRfug,2001.0,7,10,2011,Along Came a Spider,You Do What You Are,tt0164334 TXs4RCJasOM,1980.0,4,8,2011,Atlantic City,I Didn't Protect You,tt0080388 ExYO7B26kkw,2001.0,2,10,2011,Along Came a Spider,Partner or Stalker,tt0164334 7UZpRynpUac,1980.0,5,8,2011,Atlantic City,I Want My Money!,tt0080388 xMpgI4DCKyk,2001.0,9,10,2011,Along Came a Spider,Good at What I Do,tt0164334 AZ042bsOWTs,1980.0,6,8,2011,Atlantic City,Gunned Down Gangsters,tt0080388 gL17bwbFDAI,1980.0,3,8,2011,Atlantic City,I Watch You,tt0080388 zlaLlT-5Lf4,1980.0,8,8,2011,Atlantic City,Don't Forget to Ditch the Car,tt0080388 Dyme80H188w,1980.0,2,8,2011,Atlantic City,Teach Me Stuff,tt0080388 adOO9YXZ9Ys,1997.0,11,11,2011,Children of Heaven,The Race,tt0118849 olxqe0CQ7W0,1980.0,1,8,2011,Atlantic City,"Hard Ten, Soft Three",tt0080388 1XkC9it8OPs,1997.0,1,11,2011,Children of Heaven,My Sister's Shoes,tt0118849 oSvVjh93suI,1997.0,8,11,2011,Children of Heaven,Gardening Job,tt0118849 bd0ZO7Ewiq0,1980.0,7,8,2011,Atlantic City,I've Never Been to Florida,tt0080388 bhGFCS11OR8,1997.0,9,11,2011,Children of Heaven,A Better Life,tt0118849 JxTMuhVED0w,1997.0,4,11,2011,Children of Heaven,We'll Wash Them,tt0118849 uqeGxkIdBiY,1997.0,5,11,2011,Children of Heaven,"What Is It, Little Girl?",tt0118849 rgQjzIVzoh4,1997.0,6,11,2011,Children of Heaven,Zahra Spots Her Shoes,tt0118849 dJS8Umi2b0Q,2007.0,7,10,2011,Beowulf,Shall Be King,tt0442933 YWmwAdK48vg,2007.0,10,10,2011,Beowulf,Slaying the Dragon,tt0442933 KNaj7uCVPCI,2007.0,5,10,2011,Beowulf,I Am,tt0442933 0KA8Qkw3nks,2007.0,9,10,2011,Beowulf,Dragon Flight,tt0442933 cs7CW6xDbL8,2007.0,3,10,2011,Beowulf,Sea Monsters,tt0442933 -A9rFt7ITy4,2007.0,2,10,2011,Beowulf,They Say You Have A Monster Here,tt0442933 v9qbXZZD-b0,1989.0,4,9,2011,Black Rain,Yakuza Police Raid,tt0096933 C-dzbTNdd04,1989.0,3,9,2011,Black Rain,Airport Trickery,tt0096933 W5ATR6lZw4o,1989.0,2,9,2011,Black Rain,Arresting Sato,tt0096933 3UALmd0PV6o,1989.0,5,9,2011,Black Rain,Kendo Confrontation,tt0096933 R7CbMBUNC6I,1989.0,1,9,2011,Black Rain,New York Motorcycle Race,tt0096933 ngThTIjgCMw,1989.0,8,9,2011,Black Rain,Yakuza Hideout Gunfight,tt0096933 aYzPUa-6BLE,1989.0,6,9,2011,Black Rain,Motorcycle Decapitation,tt0096933 4nJl2BZ6obg,1989.0,7,9,2011,Black Rain,Did You Take Money?,tt0096933 tvGHSvfnlsQ,2000.0,8,8,2011,Cast Away,Stuck at a Crossroads,tt0162222 ri44Zx810p0,2000.0,7,8,2011,Cast Away,You're the Love of My Life,tt0162222 lv_LfXcjWew,2000.0,5,8,2011,Cast Away,Escape to Sea,tt0162222 LHtgKIFoQfE,2000.0,6,8,2011,Cast Away,"I'm Sorry, Wilson!",tt0162222 LUDEjulbqzk,2000.0,3,8,2011,Cast Away,I Have Made Fire!,tt0162222 Z-365iujWk8,2000.0,4,8,2011,Cast Away,"Never Again, Never Again",tt0162222 MLnzF5NcAc4,2000.0,1,8,2011,Cast Away,I'll Be Right Back!,tt0162222 IyOu9xCNMK0,2000.0,2,8,2011,Cast Away,Plane Crash,tt0162222 RrQppEXvRcM,1970.0,5,10,2011,Catch-22,A Chair for the Lady,tt0065528 E9wcK6qvCqI,1970.0,3,10,2011,Catch-22,Where's My Parachute?,tt0065528 g0UV6ug96c0,1970.0,2,10,2011,Catch-22,It's an Egg,tt0065528 j-OcaLECz1k,1970.0,9,10,2011,Catch-22,Shameful Opportunist,tt0065528 0cHePp1_EMg,1970.0,4,10,2011,Catch-22,I'm Desperate,tt0065528 LwELqrqsf_o,1970.0,8,10,2011,Catch-22,Poor Hungry Joe,tt0065528 0bkaFNVY2UQ,1970.0,7,10,2011,Catch-22,No Clothes,tt0065528 -eXI4uy3Mlg,1970.0,1,10,2011,Catch-22,That's Catch -22,tt0065528 Z89Q2fkgbRo,2002.0,5,10,2011,Changing Lanes,Living on the Edge,tt0264472 FCYA84FwbC0,2002.0,4,10,2011,Changing Lanes,Forge the Document,tt0264472 B1QVeR_p7WQ,2002.0,8,10,2011,Changing Lanes,Job Interview,tt0264472 d9-DFXwcmFI,2002.0,3,10,2011,Changing Lanes,Tiger Woods Commercial,tt0264472 KtekLRYl3q8,2002.0,2,10,2011,Changing Lanes,I Want My Time Back,tt0264472 0foXV1hWrx4,1986.0,2,7,2011,Children of a Lesser God,A Dark Place,tt0090830 su64KIPecuo,2002.0,1,10,2011,Changing Lanes,The Accident,tt0264472 BSFgVoDNlG8,1986.0,3,7,2011,Children of a Lesser God,Falling Into The Pool With You,tt0090830 1Pb1vdt-SnQ,1986.0,1,7,2011,Children of a Lesser God,Picking Up Hearing Girls,tt0090830 EZ7HxkZKDuk,1986.0,4,7,2011,Children of a Lesser God,I Don't Hurt From Other People,tt0090830 KQrBeGqz1W0,1986.0,7,7,2011,Children of a Lesser God,Not in Silence...And Not In Sound,tt0090830 1qO81pgfRVA,1986.0,6,7,2011,Children of a Lesser God,Forgive Me,tt0090830 1pJywLQLzcA,1986.0,5,7,2011,Children of a Lesser God,Never Come Inside My Silence,tt0090830 GNUP-so0ndQ,1985.0,1,9,2011,Clue,Over His Dead Body,tt0088930 nrqxmQr-uto,1985.0,8,9,2011,Clue,Flames on the Side of My Face,tt0088930 n3PGfjyctSQ,1985.0,7,9,2011,Clue,For She's a Jolly Good Fellow,tt0088930 uIUCcORbMvg,1985.0,4,9,2011,Clue,"Let Us In, Let Us In!",tt0088930 O5ROhf5Soqs,1985.0,6,9,2011,Clue,One Plus Two Plus Two Plus One,tt0088930 MRSTpj2Z5cU,1985.0,5,9,2011,Clue,I Am Your Singing Telegram,tt0088930 aKOmGhBOJZI,1985.0,3,9,2011,Clue,I'm Not Shouting!,tt0088930 7CEYqIjhTHs,2008.0,5,8,2011,Defiance,Welcome to Our Community,tt1034303 fbwsXqUpZRU,1985.0,2,9,2011,Clue,I Didn't Do It!,tt0088930 ntGBzcfpKYg,2008.0,7,8,2011,Defiance,Crossing the Marsh,tt1034303 CZrA-i6kOdc,2008.0,8,8,2011,Defiance,To the Rescue,tt1034303 q8RTGMsDTiw,2008.0,6,8,2011,Defiance,Mazel Tov,tt1034303 cdVMT44nWzk,2008.0,1,8,2011,Defiance,For My Parents,tt1034303 S9LRWazyNC0,2008.0,4,8,2011,Defiance,Sibling Rivalry,tt1034303 SooANfD9sWc,2008.0,3,8,2011,Defiance,An Act of Faith,tt1034303 DvOrBPJGAnc,2000.0,8,12,2011,Everybody's Famous!,True Identity,tt0209037 WzeXsjGmkjI,2006.0,4,10,2011,Failure to Launch,When Dolphins Attack,tt0427229 Vw8BozG_LVA,2008.0,2,8,2011,Defiance,The Bielski Otriad,tt1034303 lXtrwkdSkow,1996.0,1,12,2011,Don't Be a Menace,Ashtray's Father,tt0116126 MwAV8x0J6DA,1996.0,12,12,2011,Don't Be a Menace,Drive-By,tt0116126 I_yF6-3pXdw,1996.0,6,12,2011,Don't Be a Menace,Old Lady Dance-Off,tt0116126 F1Bhl3yjzsQ,1996.0,4,12,2011,Don't Be a Menace,Do We Have a Problem?,tt0116126 WS94fK4djqg,1996.0,11,12,2011,Don't Be a Menace,Dreams are for Suckas,tt0116126 phKe4peWFG8,1996.0,10,12,2011,Don't Be a Menace,Old School,tt0116126 ng9LMtcmqNs,1996.0,5,12,2011,Don't Be a Menace,The Man,tt0116126 N3U5ed3dRAE,1996.0,8,12,2011,Don't Be a Menace,You Got Yourself a Job,tt0116126 ZRJgexzNOMo,1996.0,3,12,2011,Don't Be a Menace,Are You My Daddy?,tt0116126 Gh3AZit48Uc,1996.0,2,12,2011,Don't Be a Menace,Bet You I Could Get Her Number,tt0116126 9f8liieRepk,2007.0,4,9,2011,Freedom Writers,I Am Home,tt0463998 1kj111rBzoo,1996.0,9,12,2011,Don't Be a Menace,Dashiki's Poem,tt0116126 fbNz1vlRSyM,2006.0,4,9,2011,Dreamgirls,We're Your,tt0443489 qPtAocA3m2Y,1996.0,7,12,2011,Don't Be a Menace,Driving Test,tt0116126 O3CGLSyIwNo,2006.0,2,9,2011,Dreamgirls,Cadillac Car,tt0443489 uZgo9g8v76U,2006.0,1,9,2011,Dreamgirls,Introducing: The Dreamettes,tt0443489 1mJ49BcUM3E,2006.0,3,9,2011,Dreamgirls,Deena's Gonna Sing Lead,tt0443489 zZK_bkxhJes,2006.0,9,9,2011,Dreamgirls,The Final Song,tt0443489 79LzBvBRPx0,2006.0,8,9,2011,Dreamgirls,Second Chance,tt0443489 PAcLQ7fRJlo,2006.0,5,9,2011,Dreamgirls,Stop Bringing Us Down,tt0443489 53o7_NqrTQA,2006.0,7,9,2011,Dreamgirls,Jimmy Got Soul,tt0443489 hzV5qSWRfKY,2006.0,3,10,2011,Failure to Launch,Emotional Crisis Stage,tt0427229 QZO_QFM5j_I,2006.0,6,9,2011,Dreamgirls,I'm Not Going,tt0443489 OJVDP7FaiqI,2006.0,7,10,2011,Failure to Launch,Tripp Exposes the Plan,tt0427229 3c5pbePUc2g,2007.0,3,9,2011,Freedom Writers,When Will I Be Free?,tt0463998 DjANcJEduN0,2006.0,1,10,2011,Failure to Launch,Paula's Pitch,tt0427229 Apv7l4b68MQ,2006.0,10,10,2011,Failure to Launch,Real Feelings,tt0427229 39OHlSguIy0,2006.0,9,10,2011,Failure to Launch,Kit's Apology,tt0427229 ZCjO50QLDhA,2006.0,5,10,2011,Failure to Launch,Paula Stays Over,tt0427229 9B7tjXbhnog,2006.0,8,10,2011,Failure to Launch,Fall Guy,tt0427229 UPkb66KjZc0,1991.0,6,9,2011,Operation Condor,Platform Brawl,tt0099558 UPu0PU6sLxo,2006.0,6,10,2011,Failure to Launch,To Kill A Mockingbird,tt0427229 Uii-wMha6mE,2007.0,2,10,2011,Hot Rod,Fighting Frank,tt0787475 Dz9YWjkw2BA,1991.0,5,9,2011,Operation Condor,Warehouse Escape,tt0099558 qOy1ncO2t8c,1991.0,8,9,2011,Operation Condor,The Wind Tunnel,tt0099558 3EIgmj6gp1I,2007.0,1,10,2011,Hot Rod,Mail Truck Jump,tt0787475 UrIcAAryafo,1991.0,9,9,2011,Operation Condor,Lift Off,tt0099558 6oijcajbnM0,1991.0,7,9,2011,Operation Condor,Opening the Vault,tt0099558 1bvaqpSmBLQ,1991.0,4,9,2011,Operation Condor,Condor's Rescue,tt0099558 XgZihg6-VZQ,1991.0,2,9,2011,Operation Condor,Bumpy Ride,tt0099558 aeavPOh2Wws,1991.0,3,9,2011,Operation Condor,You Shoot!,tt0099558 AjGIJPE8B8I,2007.0,5,9,2011,Freedom Writers,You Are The Heroes,tt0463998 jA-BCSOaa4Q,2007.0,7,9,2011,Freedom Writers,You Don't Even Like Them,tt0463998 1JauH_EKpaY,2007.0,8,9,2011,Freedom Writers,You Are Not Failing,tt0463998 G0rXUr-msX0,2007.0,9,9,2011,Freedom Writers,We Mattered,tt0463998 PahVp7p3XHg,2007.0,2,9,2011,Freedom Writers,Not So Different,tt0463998 qzayNPEmoK0,2007.0,1,9,2011,Freedom Writers,I Saw the War for the First Time,tt0463998 KJciGsgcYN0,1981.0,6,9,2011,Friday the 13th Part 2,Sex and Death,tt0082418 eBU1T2DdLsk,1981.0,4,9,2011,Friday the 13th Part 2,Left Hanging,tt0082418 g5Y-PN_duno,1986.0,5,8,2011,Heartburn,Missing Socks,tt0091188 zEIqJ4321TE,1981.0,9,9,2011,Friday the 13th Part 2,Mommie Dearest,tt0082418 m-1vkYcqRRw,1986.0,4,8,2011,Heartburn,Can't We Get Someone Else to Do It?,tt0091188 RuC2eNMtAHA,1986.0,7,8,2011,Heartburn,Imagining Things,tt0091188 wUP31hGC1A0,1986.0,3,8,2011,Heartburn,Baby Songs,tt0091188 5soOhh80bK0,1986.0,6,8,2011,Heartburn,You Just Threw it in the Drawer,tt0091188 9c0szHKahlQ,1986.0,2,8,2011,Heartburn,Apparently They Don't Have Doors Either,tt0091188 gnaDj74UMqs,1986.0,1,8,2011,Heartburn,I Don't Believe in Marriage,tt0091188 iY68ovrzfXc,1986.0,8,8,2011,Heartburn,Living in a Dream World,tt0091188 ELpItLsTKgY,2007.0,10,10,2011,Hot Rod,Rod Defeats Frank,tt0787475 Nrs-lyhcXmA,2007.0,6,10,2011,Hot Rod,Trippin' Balls,tt0787475 TOUrLn1FFCA,2007.0,7,10,2011,Hot Rod,Cool Beans,tt0787475 wxb_X12HZWQ,2007.0,4,10,2011,Hot Rod,I Like to Party,tt0787475 tHNjy3BH4qE,2000.0,12,12,2011,Everybody's Famous!,Lucky Mañuelo,tt0209037 gbu88CKkEzI,2007.0,5,10,2011,Hot Rod,Whiskey,tt0787475 QAztYUCEhzk,2007.0,3,10,2011,Hot Rod,Jumping the Pool,tt0787475 TumSHtCzjAw,2000.0,7,12,2011,Everybody's Famous!,Mother Knows All,tt0209037 HNrYPzxrG7I,2000.0,9,12,2011,Everybody's Famous!,See You Tonight Sweetheart,tt0209037 lBvrfWqCjYE,2000.0,5,12,2011,Everybody's Famous!,That Stupid Dog,tt0209037 SBLMTDMdTIU,2000.0,4,12,2011,Everybody's Famous!,Madonna,tt0209037 KocHmCmLwro,2000.0,2,12,2011,Everybody's Famous!,Kisses and Hugs,tt0209037 FiAndeAR9wQ,2000.0,6,12,2011,Everybody's Famous!,Tied Up,tt0209037 rCHGzxSBn-c,1979.0,2,9,2011,Meatballs,The Swiss Trained Me to Kill,tt0079540 -BYVM9TrKzg,2006.0,9,10,2011,Johnny Was,Julius Goes Down,tt0426501 8-UdwBkXJBI,1979.0,1,9,2011,Meatballs,King of Sexual Awareness Week,tt0079540 pWPn-C5l3Sk,1979.0,7,9,2011,Meatballs,Fink vs. The Stomach,tt0079540 WaF5AMiC4xU,1979.0,9,9,2011,Meatballs,We Are the North Star C.I.T.s,tt0079540 jdZ6RA_c6oE,1979.0,8,9,2011,Meatballs,Rudy the Rabbit,tt0079540 -TogGxzlfhM,1979.0,6,9,2011,Meatballs,It Just Doesn't Matter!,tt0079540 rqVI2DmLI2Q,1980.0,2,8,2011,Popeye,I'm Mean,tt0081353 ma_XNn1bwOM,1973.0,2,8,2011,Paper Moon,Too Young to Smoke,tt0070510 BGZZ7s7FJlM,1973.0,8,8,2011,Paper Moon,Together Again,tt0070510 q85fsxWYG6A,1979.0,3,9,2011,Meatballs,Let's Wrestle,tt0079540 2jTjWGNMo4E,1973.0,7,8,2011,Paper Moon,Parting Ways,tt0070510 R0zmkkcEdKc,2006.0,1,10,2011,Mr. Fix It,Different Dick,tt0416051 IK1HlBRMGwk,1973.0,6,8,2011,Paper Moon,Escaping the Cops,tt0070510 CKJJbZe4TWM,1973.0,5,8,2011,Paper Moon,$20 Bill,tt0070510 VBA_fhQoArA,1973.0,1,8,2011,Paper Moon,200 Dollars,tt0070510 ATGMbNOmAYs,1973.0,3,8,2011,Paper Moon,Bible Salesmen,tt0070510 phJJFbxyino,1973.0,4,8,2011,Paper Moon,Calling the Shots,tt0070510 qAFgj8mqPk0,1980.0,7,8,2011,Popeye,He Needs Me,tt0081353 mFwAm6oIPtk,1980.0,5,8,2011,Popeye,Stay With Me,tt0081353 f_G1oYcHFsk,1980.0,4,8,2011,Popeye,Oxblood Oxheart,tt0081353 UmwLKU5DIGk,1980.0,1,8,2011,Popeye,He's Large,tt0081353 1-HbIkCjDbk,1980.0,3,8,2011,Popeye,Bluto Blows!,tt0081353 qhxDQ1g964U,1980.0,6,8,2011,Popeye,I Yam What I Yam,tt0081353 -ncFDuKdgNE,1980.0,8,8,2011,Popeye,I'm the Sailor Man,tt0081353 Dq6dW6XbeLI,2001.0,4,12,2011,Prozac Nation,Don't Suggest Therapy,tt0236640 kdTfLDIbwow,2007.0,10,10,2011,Reno 911!: Miami,Super Terry Airlines,tt0499554 9G4TzgRUKGI,2007.0,9,10,2011,Reno 911!: Miami,Showdown with Spoder,tt0499554 kicjYh3v1FI,2007.0,5,10,2011,Reno 911!: Miami,"What Up, Yo?",tt0499554 H53kBYo1Jx8,2007.0,3,10,2011,Reno 911!: Miami,"Rick Smith, S.W.A.T.",tt0499554 huOZPQ6Hl2c,2007.0,3,8,2011,Shooter,Savior with a Sniper Rifle,tt0822854 MYge4RghcNQ,2007.0,1,10,2011,Reno 911!: Miami,Asleep at the Wheel,tt0499554 5cKRTdQtq5w,2007.0,1,8,2011,Shooter,The Assassins Strike,tt0822854 a_6tguZWgmU,2007.0,2,8,2011,Shooter,Losing That Swagger,tt0822854 mn60YWO218k,2007.0,4,8,2011,Shooter,Mister Rate's Advice,tt0822854 lKEihcQaa_g,2007.0,7,8,2011,Shooter,Sniper at the Summit,tt0822854 AoSA32zQ754,2007.0,6,8,2011,Shooter,Flyswatter,tt0822854 RIN6AtTxFgE,2007.0,8,8,2011,Shooter,"I Won, You Lost",tt0822854 pAZOyJPs5bo,2007.0,5,8,2011,Shooter,"Shoot, Kill, Blast",tt0822854 ouDfr9Jh0s8,1960.0,9,10,2011,Spartacus,Crassus Identifies,tt0054331 C1NgX-w54RY,1991.0,6,8,2011,Star Trek: The Undiscovered Country,A Painful Mind Meld,tt0102975 nrizm2gnQBo,1991.0,8,8,2011,Star Trek: The Undiscovered Country,Second Star to the Right,tt0102975 BS-f_KwM81I,1991.0,3,8,2011,Star Trek: The Undiscovered Country,Those Were Not His Knees,tt0102975 l_a2GN0Ix4o,1991.0,2,8,2011,Star Trek: The Undiscovered Country,He's Planning His Escape,tt0102975 s2wBtcmE5W8,1991.0,5,8,2011,Star Trek: The Undiscovered Country,Two Kirks,tt0102975 fg58hVEY5Og,1991.0,7,8,2011,Star Trek: The Undiscovered Country,Cry Havoc,tt0102975 Bf4YINfjQaQ,1991.0,1,8,2011,Star Trek: The Undiscovered Country,A Klingon Trial,tt0102975 U15kcueM3Og,1994.0,7,8,2011,Star Trek: Generations,Kirk and Picard vs. Soran,tt0111280 y8_oqgPwHfI,1994.0,8,8,2011,Star Trek: Generations,Kirk's Death,tt0111280 dKSAKBEI4w0,2007.0,3,8,2011,Stardust,"Honey, You're Wearing a Bathrobe",tt0486655 avH2K1iR8Oo,1991.0,4,8,2011,Star Trek: The Undiscovered Country,Speaking Klingon,tt0102975 xz3CYcjdSaI,1994.0,1,8,2011,Star Trek: Generations,Courage Is an Emotion,tt0111280 VrJiU9BOEBI,1994.0,6,8,2011,Star Trek: Generations,Make a Difference Again,tt0111280 NY0e-PQeJbQ,1990.0,7,11,2011,The Grifters,Scamming Sailors,tt0099703 fmIaHAtabSU,1994.0,5,8,2011,Star Trek: Generations,The Nexus,tt0111280 FpgyrIlhoyw,1994.0,4,8,2011,Star Trek: Generations,The Enterprise Crashes,tt0111280 JTu1R4b1yZQ,2007.0,8,8,2011,Stardust,What Stars Do,tt0486655 dkdrbg4EwGA,2007.0,7,8,2011,Stardust,Undead Sword Fight,tt0486655 DSCWB4GqcFE,1994.0,3,8,2011,Star Trek: Generations,The Bird of Prey's Cloaking Device,tt0111280 5FZ7jNq8A00,2007.0,6,8,2011,Stardust,Voodoo Drowning,tt0486655 uopoXtR0Kjk,2007.0,1,8,2011,Stardust,The Matter of Succession,tt0486655 7ZkmgFpKdxQ,2007.0,2,8,2011,Stardust,Deciphering the Runes,tt0486655 pTCTgL7_9gY,2007.0,5,8,2011,Stardust,I Know a Lot About Love,tt0486655 _NrqftLip64,2007.0,4,8,2011,Stardust,Twinkle Toes Shakespeare,tt0486655 0CZAYJ_sotw,2005.0,9,12,2011,Sharkboy and Lavagirl 3D,Melting Bridge,tt0424774 hhGSeFrYSyo,2005.0,1,12,2011,Sharkboy and Lavagirl 3D,The Birth of Sharkboy,tt0424774 0EeL2FeI7NA,2005.0,6,12,2011,Sharkboy and Lavagirl 3D,The Land of Milk & Cookies,tt0424774 4ZaIb1kBnX8,2005.0,7,12,2011,Sharkboy and Lavagirl 3D,Sharkboy's Lullaby,tt0424774 K1AMs3IPQJQ,2005.0,10,12,2011,Sharkboy and Lavagirl 3D,May the Best Dream Win,tt0424774 n8hmCcXvpz8,2005.0,11,12,2011,Sharkboy and Lavagirl 3D,A Better Dream Than This,tt0424774 yKwIEIVAMfE,2005.0,8,12,2011,Sharkboy and Lavagirl 3D,Plug Hounds,tt0424774 _P3bnWz5GL4,2005.0,3,12,2011,Sharkboy and Lavagirl 3D,Come With Us,tt0424774 2GvL2DyMfGU,2005.0,5,12,2011,Sharkboy and Lavagirl 3D,Feel the Burn,tt0424774 SmCSJ3akPIs,2005.0,2,12,2011,Sharkboy and Lavagirl 3D,Get the Book!,tt0424774 kOS8g1D6MXk,1997.0,6,10,2011,The Big One,TWA Phone Reservations,tt0124295 9PM9tDtmaaI,1997.0,3,10,2011,The Big One,Steve Forbes Never Blinks,tt0124295 WeZiTVev7vA,1997.0,4,10,2011,The Big One,80 Cent Check,tt0124295 PW2Wr4-2oyM,1997.0,7,10,2011,The Big One,Pillsbury Headquarters,tt0124295 yPBDhqwT8VQ,1997.0,1,10,2011,The Big One,Satan Worshipers for Dole,tt0124295 b3z4_gJ5hGU,1997.0,8,10,2011,The Big One,We've Been Hoodwinked,tt0124295 28B_sZZ6km4,1997.0,9,10,2011,The Big One,Tickets to Indonesia for Phil Knight,tt0124295 ymjvQZ6nSd8,1997.0,10,10,2011,The Big One,Video Message to Nike,tt0124295 Nd5_lg9Ea0E,1997.0,5,10,2011,The Big One,Human Resources,tt0124295 tGs4xAZJkps,1999.0,7,10,2011,The Cider House Rules,Ain't Nobody Having Sex With My Daughter,tt0124315 SzJ6RfcDato,1999.0,8,10,2011,The Cider House Rules,Performing the Operation,tt0124315 BoTt0juJio4,1995.0,10,12,2011,The Crossing Guard,I'm Gonna Try and Shoot You,tt0112744 JES2fQLPoGU,1999.0,6,10,2011,The Cider House Rules,You Are My Work of Art,tt0124315 NM_5sUMyd0I,1999.0,10,10,2011,The Cider House Rules,Homer Returns,tt0124315 umK3KRcg1V8,1999.0,4,10,2011,The Cider House Rules,Homer Leaves the Orphanage,tt0124315 azvRjKHhpfA,1999.0,3,10,2011,The Cider House Rules,Happy to Be Alive,tt0124315 LK4c5TIKY0w,1999.0,9,10,2011,The Cider House Rules,The Rules,tt0124315 TKKzI-DKhuQ,2005.0,9,10,2011,Aeon Flux,Shootout in the Garden,tt0402022 8aRwEJvaPiY,1999.0,2,10,2011,The Cider House Rules,Nobody Ever Wants Me,tt0124315 Bw-Y1sEUlSk,1995.0,12,12,2011,The Crossing Guard,"Tender Child, Rest in Heaven",tt0112744 yGy0XuoyTvE,1995.0,8,12,2011,The Crossing Guard,,tt0112744 scrKz6PN92g,1995.0,5,12,2011,The Crossing Guard,Love Hurts,tt0112744 hKNSpQwCIdA,1995.0,9,12,2011,The Crossing Guard,I Hope You Die,tt0112744 jszED6T4Gik,1995.0,1,12,2011,The Crossing Guard,That's My Job in Life,tt0112744 ZpuHoppfsN0,1995.0,2,12,2011,The Crossing Guard,Pride and Relief,tt0112744 8xf7Ee4KLiE,1995.0,4,12,2011,The Crossing Guard,A Perfect Seven,tt0112744 6teHF2I4UuY,1995.0,7,12,2011,The Crossing Guard,Dancing With a Stripper,tt0112744 uqLr5PR6sbM,1994.0,1,12,2011,The Crow,Murder Flashes,tt0109506 US6tvODNVu4,1994.0,9,12,2011,The Crow,I Just Want Him,tt0109506 YNTpnxwyEg4,1995.0,3,12,2011,The Crossing Guard,Three Days,tt0112744 rvjVIwMPxqA,2008.0,9,9,2011,The Duchess,A Calm Normality,tt0864761 T2R4z7O4kg0,1994.0,5,12,2011,The Crow,Is That Gasoline I Smell?,tt0109506 XquwlFI-Ygc,2008.0,7,9,2011,The Duchess,The Mistake Of Your Life,tt0864761 ZlITgn8FjDw,2008.0,5,9,2011,The Duchess,One Single Thing Of My Own,tt0864761 eWgOjuLg5oY,1996.0,8,9,2011,The English Patient,Always Loved You,tt0116209 9V2nsuzAzb8,2008.0,6,9,2011,The Duchess,A Trip To Bath,tt0864761 7h14GBiAZxo,2008.0,4,9,2011,The Duchess,Close Your Eyes,tt0864761 aW4tjKzDEDU,1996.0,4,9,2011,The English Patient,The Major Who Takes Thumbs,tt0116209 2NfTq7LPnXk,2008.0,2,9,2011,The Duchess,Only A Girl,tt0864761 BjCjlMXLVtw,2008.0,3,9,2011,The Duchess,Lady Elizabeth,tt0864761 JMJAl7PfSlk,2008.0,1,9,2011,The Duchess,I Have Heard A Rumor,tt0864761 ppjyB2MpxBU,1972.0,3,9,2011,The Godfather,Killing Sollozzo and McCluskey,tt0068646 voNs3aHZmQM,1972.0,6,9,2011,The Godfather,Working for My Father,tt0068646 OkSIAlL4f-0,1996.0,3,9,2011,The English Patient,Happy Christmas,tt0116209 8DlxO2frMPE,1996.0,6,9,2011,The English Patient,Cathedral Paintings,tt0116209 yU5kwdXhSzY,1996.0,7,9,2011,The English Patient,Defusing a Bomb,tt0116209 x11OTizHwfE,1996.0,5,9,2011,The English Patient,Why Were You Holding His Collar?,tt0116209 tK49SBXBK_U,1996.0,1,9,2011,The English Patient,May I Have This Dance,tt0116209 6SEp2FQYS84,1996.0,2,9,2011,The English Patient,In Love with Ghosts,tt0116209 z40Tipkm4IA,1996.0,9,9,2011,The English Patient,I Promise I'll Never Leave You,tt0116209 SWAJPB_5rSs,1972.0,5,9,2011,The Godfather,Michael Loses Apollonia,tt0068646 DvD9OryD6mY,1972.0,9,9,2011,The Godfather,The New Godfather,tt0068646 jYnRBX2Trtk,1972.0,7,9,2011,The Godfather,Don't Ever Take Sides Against the Family,tt0068646 0qvpcfYFHcw,1972.0,2,9,2011,The Godfather,It's Strictly Business,tt0068646 1CDlBLvc3YE,1972.0,8,9,2011,The Godfather,The Baptism Murders,tt0068646 PJpGMrH7RWs,2002.0,4,9,2011,The Sum of All Fears,I Don't Think He Did It,tt0164184 sJU2cz9ytPQ,1972.0,4,9,2011,The Godfather,Sonny is Killed,tt0068646 VC1_tdnZq1A,1972.0,1,9,2011,The Godfather,The Horse Head,tt0068646 435mkg6_eGQ,1974.0,8,8,2011,The Godfather: Part 2,Corleone Family Flashback,tt0071562 wPmTp9up26w,1974.0,1,8,2011,The Godfather: Part 2,My Offer is Nothing,tt0071562 gCdXiOssbM0,1974.0,5,8,2011,The Godfather: Part 2,Sicilian Revenge,tt0071562 AO-VFDYy9Rk,1974.0,7,8,2011,The Godfather: Part 2,Fredo's Death,tt0071562 4dWE_ag9W6o,1974.0,6,8,2011,The Godfather: Part 2,If History Has Taught Us Anything,tt0071562 _g9RI0GgRIQ,1974.0,4,8,2011,The Godfather: Part 2,It Was an Abortion,tt0071562 em7EcaXPJF8,1974.0,2,8,2011,The Godfather: Part 2,The Murder of Don Fanucci,tt0071562 5Weaop_aiTg,1974.0,3,8,2011,The Godfather: Part 2,You're Nothing to Me Now,tt0071562 DiNE5iYBuHA,1974.0,7,9,2011,The Great Gatsby,Rich Girls Don't Marry Poor Boys,tt0071577 KlPjJx6pMNA,1974.0,4,9,2011,The Great Gatsby,New Neighbors,tt0071577 EwYjmMjwF_M,1974.0,6,9,2011,The Great Gatsby,Reuniting,tt0071577 Z8zeMXCxlmE,1974.0,1,9,2011,The Great Gatsby,What Gatsby?,tt0071577 lE4UQ5gh5Zo,1974.0,9,9,2011,The Great Gatsby,Gatsby is Murdered,tt0071577 -W93ly0pQGI,1974.0,8,9,2011,The Great Gatsby,Loved You Both,tt0071577 Drr7dxV6I64,1990.0,11,11,2011,The Grifters,A Mother's Love,tt0099703 dhRABm5GgHc,1974.0,3,9,2011,The Great Gatsby,How Tom and Myrtle Met,tt0071577 QxL3vcwOL8E,1974.0,5,9,2011,The Great Gatsby,Meyer Wolfsheim,tt0071577 vgZ-MV0YbMU,1974.0,2,9,2011,The Great Gatsby,Tom and Myrtle,tt0071577 sdUbhlY-RP8,1990.0,9,11,2011,The Grifters,We Don't Do Partners,tt0099703 Rlwhv7m3CSI,1990.0,8,11,2011,The Grifters,The Long Con,tt0099703 QauBYsssnl4,1990.0,5,11,2011,The Grifters,Get Off the Grift,tt0099703 jvhap1vcLDw,1990.0,6,11,2011,The Grifters,Bobo's Oranges,tt0099703 Z96Hz_Hio8k,1990.0,4,11,2011,The Grifters,Play Nice,tt0099703 FJU-pWka9lY,1990.0,2,11,2011,The Grifters,Myra's Seduction,tt0099703 6lOPeGgf9C4,1990.0,3,11,2011,The Grifters,You Wanna Be a Grifter?,tt0099703 AMibptRTFdo,1990.0,1,11,2011,The Grifters,Dime for Every Quarter,tt0099703 SUu7hWUv7f8,2004.0,7,7,2011,The Manchurian Candidate,Decisions,tt0368008 uEYm9Zm5zI8,2004.0,2,7,2011,The Manchurian Candidate,A Big Bite of Shaw,tt0368008 rRaHWuWTtG8,2004.0,6,7,2011,The Manchurian Candidate,Help Me or Shoot Me,tt0368008 3cDavZFKopc,2004.0,1,7,2011,The Manchurian Candidate,Dreams,tt0368008 ac7D9kcETUg,2004.0,5,7,2011,The Manchurian Candidate,Father and Daughter,tt0368008 WR_LpHsIp7Q,2004.0,4,7,2011,The Manchurian Candidate,Private Eddie Ingram,tt0368008 Qub35DMB63E,2004.0,3,7,2011,The Manchurian Candidate,Interrogation,tt0368008 BU6A7rn15oA,2002.0,8,9,2011,The Sum of All Fears,Back Down,tt0164184 ja4l7-L7n6M,2006.0,5,9,2011,World Trade Center,Kids Just Happen,tt0469641 IeFdeC6ukDY,2006.0,2,9,2011,World Trade Center,Arriving at the Scene,tt0469641 BziL_wBTw6A,2000.0,3,9,2011,You Can Count on Me,Can I Ask You A Personal Question?,tt0203230 FhODkuXIda4,2005.0,3,10,2011,Aeon Flux,She Will See You Now,tt0402022 ow9U0uWCfDY,2005.0,6,10,2011,Aeon Flux,Found You,tt0402022 1iFLiN6E1qE,2005.0,1,10,2011,Aeon Flux,Fly Trap,tt0402022 5zInmil5iT4,2005.0,4,10,2011,Aeon Flux,Jailbreak,tt0402022 Y0p3egpGwAI,2002.0,3,9,2011,The Sum of All Fears,I Like Him,tt0164184 glMgSCdK1xU,2002.0,9,9,2011,The Sum of All Fears,Keep The Back Channels Open,tt0164184 XcNYS8j9Qkg,2002.0,2,9,2011,The Sum of All Fears,I Can't Tell You That,tt0164184 8GPu-oZ4p64,2002.0,1,9,2011,The Sum of All Fears,Everyone Has Opinions,tt0164184 Wzp2rpe06j8,2002.0,5,9,2011,The Sum of All Fears,This Virus Is Airborne,tt0164184 VDU2I4kxPY8,2006.0,8,9,2011,World Trade Center,Will Gets Out,tt0469641 oG58-Vs838M,2006.0,1,9,2011,World Trade Center,First Attack,tt0469641 lPCt2BBqR2k,2006.0,3,9,2011,World Trade Center,Collapse,tt0469641 2CEYOnJqPE4,2006.0,7,9,2011,World Trade Center,Good News,tt0469641 wEnaRGQc8Ls,2006.0,6,9,2011,World Trade Center,Found,tt0469641 cagsLW2dKTI,2006.0,9,9,2011,World Trade Center,You Kept Me Alive,tt0469641 eHx-v7Xto7E,2006.0,4,9,2011,World Trade Center,I Can't Believe This Is Happening,tt0469641 XP71dJlnLJQ,2000.0,1,9,2011,You Can Count on Me,Serving Some Time,tt0203230 Ad4VvlLYJ9o,2000.0,2,9,2011,You Can Count on Me,Meeting Uncle Terry,tt0203230 QX1qfAa0np8,2000.0,8,9,2011,You Can Count on Me,Your Future at the Bank,tt0203230 i1ZUVkU_XK4,2000.0,5,9,2011,You Can Count on Me,Rudy Meets His Father,tt0203230 MPp_UJZTU78,2000.0,9,9,2011,You Can Count on Me,"Goodbye, Uncle Terry",tt0203230 exIGslwFcMI,2000.0,7,9,2011,You Can Count on Me,Terry Leaves,tt0203230 hc0o1zXNHAg,2000.0,4,9,2011,You Can Count on Me,I F***ed My Boss,tt0203230 TiHM7F5EUaI,2005.0,5,10,2011,Aeon Flux,Why Do I Feel This Way?,tt0402022 rwk6Obqrj9M,2005.0,2,10,2011,Aeon Flux,Welcome to Bregna,tt0402022 jgvj0XwxagY,2005.0,10,10,2011,Aeon Flux,Pose and Shoot,tt0402022 KPz_yW2gjmI,2005.0,8,10,2011,Aeon Flux,Leap of Faith,tt0402022 JbyemdsSfI0,2005.0,7,10,2011,Aeon Flux,Aeon vs. Sithandra,tt0402022 Z9m4hRQkVSA,1996.0,2,12,2011,From Dusk Till Dawn,Convenience Store Massacre,tt0116367 fEEj6d3GTOU,1994.0,6,12,2011,Clerks,I Don't Watch Movies,tt0109445 YTkSNIvrueA,2000.0,12,12,2011,Dracula 2000,This is How You Die,tt0219653 WmD1a_N83ZM,1972.0,2,7,2011,Fist of Fury,The Dojo Fight,tt0068767 UJUWDZ9JUEI,1995.0,6,9,2011,The American President,White House Sleepover,tt0112346 NBS7J3KHWhQ,2005.0,5,8,2011,War of the Worlds,Not on the Same Page,tt0407304 vj_NmzJ0mMA,2000.0,11,12,2011,Dracula 2000,Bitch is Faking it,tt0219653 KS6f1MKpLGM,1986.0,1,3,2011,Ferris Bueller's Day Off,Bueller?,tt0091042 4tnHIQmcSHY,1995.0,7,9,2011,The American President,House of Flowers,tt0112346 OORXuVmd9YQ,1995.0,5,9,2011,The American President,Virginia Ham,tt0112346 aIm1ZGm03WA,1995.0,1,9,2011,The American President,Chief Executive of Fantasy Land,tt0112346 8sUWwozOFww,2003.0,1,12,2011,Duplex,The Animated Housing Adventures of Alex & Nancy,tt0266489 m3TAK8ty_cg,2002.0,7,10,2011,Pinocchio,Swallowed by a Shark,tt0255477 DKCGcHQSvHw,1954.0,3,10,2011,Rear Window,Which One of You Killed my Dog?,tt0047396 xLq2eTiqbww,1994.0,8,11,2011,Heavenly Creatures,Make a Wish,tt0110005 kzu2Gwn-sPA,2009.0,9,10,2011,Midgets Vs. Mascots,Jail Time,tt1253596 YtDqlEcfr9w,1986.0,6,10,2011,Star Trek 4: The Voyage Home,Hard Luck Cases,tt0092007 oozQe2Bk2cA,1985.0,9,13,2011,Brewster's Millions,"10 Million, 10 Million, 10 Million Dollars",tt0088850 CbMYk-lCKOw,2000.0,9,12,2011,Dracula 2000,Never F*** With an Antiques Dealer,tt0219653 1jiv5JxmUww,1998.0,5,11,2011,The Faculty,Eye Sore,tt0133751 H19uKs99vIw,1986.0,3,3,2011,Ferris Bueller's Day Off,"Oh, You Know Him?",tt0091042 uBB3Cvxq5f8,2000.0,6,12,2011,Dracula 2000,Creature and the Eternal Keeper,tt0219653 excK59qpaOA,2000.0,1,12,2011,Dracula 2000,Booby Traps,tt0219653 WYzUtZMt5A8,2000.0,3,12,2011,Dracula 2000,Massacre on the Plane,tt0219653 MicQ48AuWhw,2000.0,7,12,2011,Dracula 2000,"Dignity, Doctor",tt0219653 dejp7HK8Owc,2000.0,2,12,2011,Dracula 2000,Resurrection,tt0219653 Ao5TqA-l2cg,2000.0,4,12,2011,Dracula 2000,They Are the Undead,tt0219653 rOaNhtHWULw,2000.0,5,12,2011,Dracula 2000,All I Want to do is Suck,tt0219653 Y9NVQr1r9nw,2000.0,8,12,2011,Dracula 2000,I Don't Drink Coffee,tt0219653 qwMmxh3r8YM,2000.0,10,12,2011,Dracula 2000,Judas Iscariot,tt0219653 Kd9_2TRib3k,1978.0,6,8,2011,The Deer Hunter,,tt0077416 mcUWG23hqvw,1985.0,6,12,2011,Weird Science,Meet Chet,tt0090305 mHa1zTLrXO8,1986.0,2,3,2011,Ferris Bueller's Day Off,He's a Righteous Dude,tt0091042 gA8z3Yk3wWc,2005.0,3,10,2011,Kicking & Screaming,New to Coffee,tt0384642 GrlUWh2ZlHo,1993.0,4,9,2011,Hard Target,Motorcycle Chase,tt0107076 UkdFtNyvsBM,1993.0,3,10,2011,Farewell My Concubine,Announcing the Engagement,tt0106332 y-HKigPxUi0,1995.0,2,9,2011,The American President,Billiards and Dating,tt0112346 SRWyQELLODg,1985.0,7,13,2011,Brewster's Millions,Monty Mails a Rare Stamp,tt0088850 gmpBzm5RknI,1982.0,6,9,2011,Conan the Barbarian,Resurrection,tt0082198 PgOO8Z-FoKY,2007.0,5,11,2011,American Gangster,Drive-By Shooting,tt0765429 dGFrhVeMm6U,1978.0,5,8,2011,The Deer Hunter,Rescued in Vain,tt0077416 Ozpkzjl-oCU,2005.0,5,10,2011,Kicking & Screaming,Kicked Out,tt0384642 5I-k7fSMhg8,1993.0,2,9,2011,Hard Target,He's All Ears,tt0107076 bXEglx-or6k,1985.0,10,13,2011,Brewster's Millions,None of the Above,tt0088850 rxM8oCm4TnM,2005.0,4,10,2011,Kicking & Screaming,Backyard Camping,tt0384642 9Najox-g4zE,1985.0,8,13,2011,Brewster's Millions,Fender-Bender Payoff,tt0088850 Z0JXPVm_Ohg,1993.0,1,10,2011,Farewell My Concubine,What Does it Take to Become a Star?,tt0106332 X8gUgmkzHjs,1993.0,6,10,2011,Farewell My Concubine,Even the Communists Need Opera,tt0106332 kC44tlr_KsU,1993.0,1,9,2011,Hard Target,Chance Rescues Natasha,tt0107076 Td8eEM9KDig,1990.0,5,10,2011,The Godfather: Part 3,Helicopter Hit,tt0099674 -6fuDrAmhNc,1954.0,5,10,2011,Rear Window,Did You Get My Note?,tt0047396 6bDAYP4kpGk,1985.0,7,12,2011,Weird Science,Wyatt's Panties,tt0090305 R6Vbxei-TQc,1993.0,8,9,2011,Hard Target,Chance Hurts van Cleef,tt0107076 c35RsjYzAhY,1985.0,4,13,2011,Brewster's Millions,What a Country!,tt0088850 -e3HqC2rbQc,1954.0,1,10,2011,Rear Window,When Am I Going to See You Again?,tt0047396 JsFO0ZY7whQ,1994.0,6,11,2011,Heavenly Creatures,Two Such,tt0110005 lhQRz_BP1v8,1993.0,9,10,2011,Farewell My Concubine,Duan Xiaolou's Interrogation,tt0106332 PAHFNiNl9JM,1982.0,5,9,2011,Conan the Barbarian,Crucifixion,tt0082198 GvZLaCfU4PA,1985.0,8,12,2011,Weird Science,Slush From Above,tt0090305 k9gcqiIfw8E,1985.0,11,13,2011,Brewster's Millions,Who's Buying the Booze?,tt0088850 RVFpy5UwsAU,1982.0,7,9,2011,Conan the Barbarian,To Hell With You!,tt0082198 L_b55QpXdsg,1985.0,2,13,2011,Brewster's Millions,"Guilty, With A Real Good Excuse",tt0088850 7xOOk5w5dDA,1980.0,7,10,2011,Friday the 13th,Fighting Mrs. Voorhees,tt0080761 -UJ9K8lMxPA,1985.0,3,12,2011,Weird Science,And Gary Created Woman,tt0090305 8wh62mxbLy8,1994.0,2,11,2011,Heavenly Creatures,Fast Friends,tt0110005 F3hX-mdx80w,1994.0,10,11,2011,Heavenly Creatures,Against All Obstacles,tt0110005 BsTrRttExpA,1978.0,3,8,2011,The Deer Hunter,Killing a Deer,tt0077416 HbYMkY74ikA,1998.0,7,12,2011,Halloween H20: 20 Years Later,The Garbage Disposal,tt0120694 8COIJaMQGc0,2000.0,4,10,2011,The Taste of Others,Different for Men and Women,tt0216787 y5RFBLZV-B4,2007.0,1,11,2011,American Gangster,Nobody Owns Me,tt0765429 pMQxW1t8guI,2008.0,1,12,2011,Death Race,Jensen is Framed,tt0452608 qvFBGYjAXW8,2005.0,2,10,2011,Kicking & Screaming,Hard Knocks,tt0384642 00pBYZ1yofs,1993.0,5,10,2011,Farewell My Concubine,Riot at the Opera,tt0106332 YnKV34oNXiw,1995.0,8,9,2011,The American President,People Want Leadership,tt0112346 1Ez6dw3ywcc,1954.0,7,10,2011,Rear Window,Caught Snooping,tt0047396 YIYJpbAK6MY,1985.0,12,12,2011,Weird Science,Chet Apologizes,tt0090305 oOZ7KbI0Phw,1994.0,5,11,2011,Heavenly Creatures,Sexual Reprieve,tt0110005 Re5jTn8Cv4M,1954.0,10,10,2011,Rear Window,Dream Forever in Your Arms,tt0047396 _b3_-pPzDVk,2002.0,4,12,2011,Equilibrium,Ludwig van Beethoven,tt0238380 GyJGnNFU5dc,1999.0,2,10,2011,American Beauty,Could He Be Any More Pathetic?,tt0169547 q3NI5sE3KeY,1995.0,9,9,2011,The American President,Character and American Values,tt0112346 3GoXAgg7rgM,1998.0,6,12,2011,Halloween H20: 20 Years Later,Something is Wrong,tt0120694 xQvyGwbVWHk,2009.0,10,10,2011,Midgets Vs. Mascots,Back from the Dead,tt1253596 RObb2QfBnUs,1980.0,10,10,2011,Friday the 13th,He's Still There,tt0080761 6QFgsy9R4uc,2001.0,2,11,2011,The Others,The Children's Limbo,tt0230600 Vt0rz5iPuaA,1999.0,1,10,2011,American Beauty,Carolyn's Private Meltdown,tt0169547 8ZgKfSqsN80,1994.0,11,11,2011,Heavenly Creatures,Murderers,tt0110005 VyEM6uxoo7o,1994.0,3,11,2011,Heavenly Creatures,The Fourth World,tt0110005 oLnrsZa4EqQ,1993.0,5,9,2011,Hard Target,Rattlesnake Trap,tt0107076 yO3eVly1GSI,1980.0,1,10,2011,Friday the 13th,I Think We Better Stop,tt0080761 slGnGr6kHIA,1994.0,9,11,2011,Heavenly Creatures,Running From Orson Welles,tt0110005 330mxTrSMLI,2000.0,5,10,2011,The Taste of Others,Teasing Castella,tt0216787 rDXBM22wbrg,-1.0,5,8,2011,Anchorman: The Legend of Ron Burgundy,In a Glass Case of Emotion Scene,tt0357413 atzQpAlaojg,1980.0,6,10,2011,Friday the 13th,"Kill Her, Mommy",tt0080761 l6zm1uCb30w,1986.0,5,10,2011,Star Trek 4: The Voyage Home,Colorful Metaphors,tt0092007 DBZUhOSY6g0,1990.0,1,10,2011,The Godfather: Part 3,I Dread You,tt0099674 sf8rDpu1vCk,1986.0,3,10,2011,Star Trek 4: The Voyage Home,Nuclear Wessels,tt0092007 efNMnSL6Wlg,1998.0,5,12,2011,Halloween H20: 20 Years Later,I'm Not Who You Think I Am,tt0120694 XYjynyKDAdY,1998.0,1,12,2011,Halloween H20: 20 Years Later,Miss Whittington's End,tt0120694 jyqr-hGGpQg,1978.0,1,8,2011,The Deer Hunter,F*** It!,tt0077416 PuVXyMNeXOk,1994.0,7,11,2011,Heavenly Creatures,Bloody Fool!,tt0110005 bBbLZ6m_9MA,1998.0,9,12,2011,Halloween H20: 20 Years Later,Family Reunion,tt0120694 36FJgdiYYs4,1980.0,9,10,2011,Friday the 13th,Killing Mrs. Voorhees,tt0080761 hJVXg1AHQTY,1999.0,5,10,2011,American Beauty,Lester Blackmails Brad,tt0169547 F0-Ke_gCCNg,1994.0,1,11,2011,Heavenly Creatures,Teacher's Pet,tt0110005 gxAaVqdz_Vk,1979.0,7,9,2011,Star Trek: The Motion Picture,VGER is Voyager 6,tt0079945 mS-uVaGMOtw,1980.0,8,10,2011,Friday the 13th,Trapped in the Closet,tt0080761 Oio9JPB1GzI,2001.0,10,11,2011,The Others,They're Dead,tt0230600 v2pWzqZqTyk,2005.0,9,10,2011,Kicking & Screaming,Making Up With Ditka,tt0384642 kk2HQ0hCGTE,1980.0,5,10,2011,Friday the 13th,His Name Was Jason,tt0080761 09idDzvkxZ0,1980.0,4,10,2011,Friday the 13th,They're All Dead,tt0080761 Mvs2nUuXWLo,1980.0,2,10,2011,Friday the 13th,Don't Smoke in Bed,tt0080761 5DJehPkkRSQ,2009.0,2,10,2011,Midgets Vs. Mascots,Auditions,tt1253596 G3xSISRjDR4,2005.0,1,10,2011,Kicking & Screaming,Ditka,tt0384642 HBxcalnSzIk,1986.0,10,10,2011,Star Trek 4: The Voyage Home,Not In His Nature,tt0092007 f9_akBxA4mU,1993.0,6,9,2011,The Firm,Tricking a Federal Agent,tt0106918 TVBx0r_xPCo,2005.0,8,10,2011,Kicking & Screaming,Tigers Win!,tt0384642 PoS1eAVNXWU,1986.0,4,10,2011,Star Trek 4: The Voyage Home,Swimming with the Whales,tt0092007 _s4J6vN1t9Q,2007.0,8,11,2011,American Gangster,Heroin House Raid,tt0765429 E16S5BAkzQ8,1980.0,3,10,2011,Friday the 13th,Must Be My Imagination,tt0080761 cXCMz340CRg,2007.0,2,11,2011,American Gangster,Somebody Or Nobody,tt0765429 94AnEUa_z8U,1998.0,10,12,2011,Halloween H20: 20 Years Later,Chase Through the Halls,tt0120694 nIGy0Jw96PY,2001.0,9,11,2011,The Others,Where Are the Curtains?,tt0230600 _LvUmxUqPTo,2001.0,7,11,2011,The Others,I Am Your Daughter,tt0230600 t4U-Q2nd6u4,1985.0,1,12,2011,Weird Science,Check Us Out!,tt0090305 aCW9NsrV6VM,1978.0,4,8,2011,The Deer Hunter,Russian Roulette,tt0077416 Nwl4xV6wuRI,1978.0,8,8,2011,God Bless America,The Deer Hunter,tt1912398 qrCKDRFj-A8,2001.0,5,11,2011,The Others,Book of the Dead,tt0230600 VlmanKoPLyo,1978.0,2,8,2011,The Deer Hunter,This Is This,tt0077416 ZtuLM666bLo,1990.0,9,10,2011,The Godfather: Part 3,I Always Loved You,tt0099674 M-cO3MLYOy8,1995.0,4,9,2011,The American President,Sending Some Flowers,tt0112346 -meMCDrOmpo,2009.0,7,10,2011,Midgets Vs. Mascots,Gator Wrestling,tt1253596 hcWo8KXmhLs,1995.0,3,9,2011,The American President,First Date,tt0112346 fpxPstb2DAU,2005.0,6,10,2011,Kicking & Screaming,Crazed Coach,tt0384642 aAF6B3USip0,2005.0,7,10,2011,Kicking & Screaming,Talking Smack,tt0384642 OuGSXflBoWU,1978.0,7,8,2011,The Deer Hunter,One Last Shot,tt0077416 IKiSPUc2Jck,-1.0,6,8,2011,Anchorman,"60% of the Time, It Works Every Time Scene",tt0357413 c5WfxwnLlLU,1990.0,3,9,2011,The Hunt for Red October,Turbulence,tt0099810 qCpDKjDMo6Y,2005.0,10,10,2011,Kicking & Screaming,We've Got Balls,tt0384642 Le9uGkbtxHk,1998.0,2,7,2011,Saving Private Ryan,Sniper in the Tower,tt0120815 C3hCT5jijpw,1993.0,3,9,2011,Hard Target,Missed the Party,tt0107076 Lk5QIK3_Cjo,1993.0,6,9,2011,Hard Target,Uncle Douvee,tt0107076 ltO8_FJbRUw,1982.0,3,9,2011,Conan the Barbarian,Crazy Witch Sex,tt0082198 IAqy_BtCqM4,1993.0,7,9,2011,Hard Target,Hey Pigeon,tt0107076 v7FL42Fon3g,1954.0,4,10,2011,Rear Window,A Note to Thorwald,tt0047396 pu2ArBfwZcA,1993.0,9,9,2011,Hard Target,Hunting Season Is Over,tt0107076 QQvcg1NNqWQ,1997.0,4,9,2011,Mimic,A Bug Problem,tt0119675 c5Re3lGYUA0,1998.0,4,12,2011,Halloween H20: 20 Years Later,Sneaking Into Campus,tt0120694 zxeNP1dHgXQ,2001.0,8,11,2011,The Others,You Can't Go,tt0230600 t8eNpwLPwog,1954.0,8,10,2011,Rear Window,Up the Stairs,tt0047396 EFollUtH108,1954.0,6,10,2011,Rear Window,Sneaking into the Apartment,tt0047396 B8dldLG_ZhI,1985.0,2,12,2011,Weird Science,Making a Girl,tt0090305 oowcsynjIwc,1954.0,9,10,2011,Rear Window,Out the Window,tt0047396 g9GBuciv20A,1985.0,5,12,2011,Weird Science,Gary's Blues,tt0090305 Daz5Pc5rXPA,1982.0,1,9,2011,Conan the Barbarian,A Village Massacre,tt0082198 w5pn48wzBuw,1954.0,2,10,2011,Rear Window,A Closer Look at the Salesman,tt0047396 IfggccwQrcY,1985.0,11,12,2011,Weird Science,Lisa Transforms Chet,tt0090305 fERCwTTOU3M,1982.0,4,9,2011,Conan the Barbarian,Knocking Out a Camel,tt0082198 MNV86VFd4Zw,1982.0,8,9,2011,Conan the Barbarian,Battle On the Ruins,tt0082198 _42qmKBSC3g,1982.0,2,9,2011,Conan the Barbarian,Conan the Gladiator,tt0082198 bj2JORdzs1g,1982.0,9,9,2011,Conan the Barbarian,Beheading Thulsa Doom,tt0082198 FosFEzsLKiI,1985.0,3,13,2011,Brewster's Millions,Thirty Million in Thirty Days,tt0088850 A-KN6ZbpIDE,1985.0,1,13,2011,Brewster's Millions,Nude Massage,tt0088850 9y-f9F8Hl0I,1985.0,9,12,2011,Weird Science,"You're Dead Meat, Pilgrim",tt0090305 nip7ztfMngk,1985.0,4,12,2011,Weird Science,Showering Is Real Fun,tt0090305 lFHKj8M1maI,2006.0,4,10,2011,Babel,Chieko's High,tt0449467 VqLghmct2i4,2000.0,1,10,2011,The Taste of Others,You Don't Remember Me?,tt0216787 fgPFXXhzBCE,1985.0,10,12,2011,Weird Science,Chet Wants Answers ASAFP,tt0090305 lHqpwH6rqOY,2006.0,6,10,2011,Babel,Border Getaway,tt0449467 Vw_QOIebFpw,1985.0,5,13,2011,Brewster's Millions,Lowlife No More,tt0088850 22VmzX35pvM,1999.0,9,10,2011,American Beauty,The Colonel's Kiss,tt0169547 jLPtdXAVuwo,1985.0,6,13,2011,Brewster's Millions,"Morty King, King of the Mimics",tt0088850 DVPGcQ1Ljgc,2001.0,3,11,2011,The Others,A Visit from Victor,tt0230600 wPJE21U518M,1999.0,4,10,2011,American Beauty,"I'm Very, Very Dirty",tt0169547 5P7bIH5iC7M,1999.0,8,10,2011,American Beauty,It's Just a Couch!,tt0169547 FFJo3KhcZw4,2007.0,4,11,2011,American Gangster,Diluting the Brand,tt0765429 zd0FCDiFapo,2001.0,6,11,2011,The Others,Lost in the Fog,tt0230600 NpOTp73r0Cw,2006.0,7,10,2011,Babel,"You Leave, I'll Kill You",tt0449467 kytDzjuBGJI,2005.0,4,8,2011,War of the Worlds,Probing the Basement,tt0407304 qw0kuEG7NR8,1999.0,7,10,2011,American Beauty,I Rule!,tt0169547 m3QyTiNVwWA,2007.0,9,11,2011,American Gangster,The End For Frank,tt0765429 e7X01_j_oDA,1982.0,2,8,2011,Star Trek: The Wrath of Khan,"Khan, You Bloodsucker",tt0084726 H38XiM2EOnQ,2007.0,10,11,2011,American Gangster,The Right Thing To Do,tt0765429 Dtou1hnP_Zo,2006.0,5,10,2011,Babel,Open Fire,tt0449467 c1gSDo9bO2g,1999.0,3,10,2011,American Beauty,Spectacular,tt0169547 tB0th8vNLxo,1999.0,6,10,2011,American Beauty,The Dancing Bag,tt0169547 JZbJcEKVBqk,1985.0,12,13,2011,Brewster's Millions,Spike Talks Trash,tt0088850 RJsnx3Fqk6w,2006.0,2,10,2011,Babel,Sewing Up the Wound,tt0449467 3LYT1O8DuR0,2000.0,6,10,2011,The Taste of Others,Dealing Drugs,tt0216787 p29GuFPbzsg,1985.0,13,13,2011,Brewster's Millions,Brewster Becomes a Millionaire,tt0088850 2V5LfF6uxT0,2006.0,10,10,2011,Babel,Deportation,tt0449467 pK_ffLZIOb4,1993.0,2,10,2011,Farewell My Concubine,Juxian Jumps,tt0106332 0m3w2NeEPY4,2006.0,8,10,2011,Babel,Surrender,tt0449467 j4ujHOSbQB0,2007.0,7,11,2011,American Gangster,Don't Lie to Your Mother,tt0765429 YgcSs9Qt2vU,2001.0,1,11,2011,The Others,Mummy Went Mad,tt0230600 Ju4vhscaYII,1990.0,3,10,2011,The Godfather: Part 3,"Two Assassins, One Gun",tt0099674 v8OMHtUg9sU,2007.0,3,11,2011,American Gangster,Fed Up,tt0765429 -qmkhAXmBNc,2007.0,6,11,2011,American Gangster,Above the Mafia,tt0765429 TeGaTTIBv1Y,2007.0,11,11,2011,American Gangster,Progress,tt0765429 dYQpJJySnwU,2000.0,10,10,2011,The Taste of Others,You're Being Taken Advantage Of,tt0216787 AaHqtd4dUWs,2000.0,3,10,2011,The Taste of Others,Depressed,tt0216787 k4-CQXg0Z88,1997.0,7,9,2011,Mimic,Bug Food,tt0119675 LDsw5Fx76jI,2000.0,7,10,2011,The Taste of Others,Party Crashing,tt0216787 GKT1gsoVouo,2000.0,9,10,2011,The Taste of Others,I Made a Fool of Myself,tt0216787 y-79cpg2VC8,2000.0,2,10,2011,The Taste of Others,Counting Sex Partners,tt0216787 lYa7NsegwsY,1993.0,10,10,2011,Farewell My Concubine,Final Performance,tt0106332 vnHkr84as-4,1993.0,7,10,2011,Farewell My Concubine,Down with the Counter-Revolutionary!,tt0106332 -_XIgfmDa1s,1990.0,2,10,2011,The Godfather: Part 3,All Bastards Are Liars,tt0099674 N5EYRBPqrgs,1990.0,8,10,2011,The Godfather: Part 3,Michael Apologizes to Kay,tt0099674 ZWly042cYCo,1998.0,10,11,2011,The Faculty,Deadly Distrust,tt0133751 iN4yYrCgb0o,2006.0,9,10,2011,Babel,Those Kids Will Die,tt0449467 U6M-YT5kkio,1990.0,4,10,2011,The Godfather: Part 3,Joey Zasa Gets No Respect,tt0099674 EZFLsjeeVmo,1993.0,8,10,2011,Farewell My Concubine,Modern Opera,tt0106332 JVjlqTOPdls,1997.0,8,9,2011,Mimic,Leonard's Last Stand,tt0119675 f_lRMCPHbuY,1993.0,3,9,2011,The Firm,No Lawyer's Ever Left the Firm Alive,tt0106918 7tNEvCdVtk0,1993.0,5,9,2011,The Firm,Blackmail,tt0106918 4unk6siO-tI,1990.0,4,9,2011,The Hunt for Red October,Escaping Torpedoes,tt0099810 _c_ufaxeSTs,-1.0,3,8,2011,Anchorman: The Legend of Ron Burgundy,Jazz Flute Scene,tt0357413 5dVpXj--7kY,2009.0,8,10,2011,Midgets Vs. Mascots,Assaulting Scottie Pippen,tt1253596 Qt1cF93u-6A,1986.0,2,10,2011,Star Trek 4: The Voyage Home,Saving the World,tt0092007 Rn2-wALgmMk,1979.0,2,9,2011,Star Trek: The Motion Picture,Kirk Needs Bones,tt0079945 vE_xjjCJWng,1998.0,8,11,2011,The Faculty,Head Case,tt0133751 2ikHoBKVlCA,1979.0,8,9,2011,Star Trek: The Motion Picture,VGER's Journey,tt0079945 PUvS_htXD34,1990.0,1,9,2011,The Hunt for Red October,Another Possibility,tt0099810 BGnZognK3Oc,1990.0,2,9,2011,The Hunt for Red October,Ryan's Plan,tt0099810 rNoHdt36C7o,1979.0,1,9,2011,Star Trek: The Motion Picture,Kirk Takes Over,tt0079945 B2qVxDAonD8,1979.0,4,9,2011,Star Trek: The Motion Picture,Attempting to Communicate,tt0079945 zR7Zj6ZFyUY,1979.0,3,9,2011,Star Trek: The Motion Picture,Spock Reports for Duty,tt0079945 JzH1Z17c4yc,1993.0,1,9,2011,The Firm,No Associate Has Ever Failed the Bar Exam,tt0106918 LkqiDu1BQXY,1986.0,7,10,2011,Star Trek 4: The Voyage Home,The Miracle Worker,tt0092007 DWjJlErBPX4,1990.0,6,9,2011,The Hunt for Red October,You Speak Russian,tt0099810 5kaBIMuW74Q,1990.0,8,9,2011,The Hunt for Red October,You've Killed Us,tt0099810 P8JW75Lv25k,1990.0,5,9,2011,The Hunt for Red October,Living in America,tt0099810 PWU9g1Fce3U,1990.0,7,9,2011,The Hunt for Red October,Wrong Conclusions,tt0099810 HCqR0_a6_so,1990.0,9,9,2011,The Hunt for Red October,A Little Revolution,tt0099810 OofMJ6cwzLM,1982.0,1,8,2011,Star Trek: The Wrath of Khan,Khan's Worms,tt0084726 04s96zDt1RE,1993.0,7,9,2011,The Firm,Escape from the Firm,tt0106918 iPQfwmfRq2s,1982.0,4,8,2011,Star Trek: The Wrath of Khan,Kirk Beats Khan,tt0084726 WlhyiskKER8,1982.0,3,8,2011,Star Trek: The Wrath of Khan,Old and Worn Out,tt0084726 xrUEjpHbUMM,1982.0,5,8,2011,Star Trek: The Wrath of Khan,Khan's Last Breath,tt0084726 9_8nY_LQL3w,1982.0,7,8,2011,Star Trek: The Wrath of Khan,Spock's Funeral,tt0084726 KqpcmQhnl48,1982.0,6,8,2011,Star Trek: The Wrath of Khan,Spock Dies,tt0084726 aeneVqyoBTo,1979.0,5,9,2011,Star Trek: The Motion Picture,The Light Probe,tt0079945 5Ei_2wS0U-w,1979.0,6,9,2011,Star Trek: The Motion Picture,VGER is a Child,tt0079945 CR08UnlmGKc,1982.0,8,8,2011,Star Trek: The Wrath of Khan,Father & Son,tt0084726 1tYwDHxg60g,1993.0,2,9,2011,The Firm,Dead Lawyers,tt0106918 BPNUN_aCFAc,1979.0,9,9,2011,Star Trek: The Motion Picture,Thattaway,tt0079945 _QE6prpcauw,1993.0,4,9,2011,The Firm,"If We Run, They'd Find Us",tt0106918 0-0MyjmphsA,1990.0,10,10,2011,The Godfather: Part 3,Mary is Hit,tt0099674 Wu7xiJ_HD6c,-1.0,8,8,2011,Anchorman: The Legend of Ron Burgundy,The News Team Battle Scene,tt0357413 D0vCzkK_AJ0,1993.0,8,9,2011,The Firm,The Chase.,tt0106918 zCB7RR3RaYg,1993.0,9,9,2011,The Firm,Outwitting the Hit,tt0106918 MhWCHfeHWJE,2006.0,1,10,2011,Babel,Shot in Morocco,tt0449467 rYGWG2_PB_Q,2005.0,1,8,2011,War of the Worlds,The War Begins,tt0407304 qN-_cZNDy0w,-1.0,2,8,2011,Anchorman: The Legend of Ron Burgundy,I'm Going to Punch You in the Ovary Scene,tt0357413 lscdNc0qTnI,1999.0,10,10,2011,American Beauty,Gratitude for a Stupid Little Life,tt0169547 _kopi8gT9KE,2005.0,6,8,2011,War of the Worlds,Abduction,tt0407304 X7rfWPbEufo,2005.0,3,8,2011,War of the Worlds,Fight on the Hill,tt0407304 tMw_xOuU9DA,2005.0,2,8,2011,War of the Worlds,Ferry Disaster,tt0407304 pCHHv7ojfiw,2005.0,8,8,2011,War of the Worlds,No Shield,tt0407304 S2fxN2JZ81A,2005.0,7,8,2011,War of the Worlds,Taking Down a Tripod,tt0407304 WzCgOrQn0GM,1997.0,4,8,2011,Amistad,The Verdict,tt0118607 iMliaXlKxow,1997.0,2,8,2011,Amistad,The Middle Passage,tt0118607 ena0xfW0_Lo,1997.0,1,8,2011,Amistad,Mutiny Aboard La,tt0118607 Pb3txlrBZaE,1997.0,6,8,2011,Amistad,The Natural State of Mankind,tt0118607 3rpHa7RLvc8,1997.0,7,8,2011,Amistad,The Declaration of Independence,tt0118607 y8Jkls3xgvg,1997.0,5,8,2011,Amistad,A Call to the Ancestors,tt0118607 EYu1SK9XyP8,1997.0,2,9,2011,Mimic,Subway Slaying,tt0119675 Ee8NvgURCZs,1997.0,3,8,2011,Amistad,Give Us Free!,tt0118607 hKqQSFaX4NQ,1998.0,3,12,2011,Halloween H20: 20 Years Later,Maternal Advice,tt0120694 B_YYf8Z4b3Q,1997.0,8,8,2011,Amistad,The Last Battle of the American Revolution,tt0118607 XHHg1C8LGnk,1993.0,4,10,2011,Farewell My Concubine,Disbanding the Troupe,tt0106332 cDfQo1ANeLM,-1.0,4,8,2011,Anchorman: The Legend of Ron Burgundy,This is How I Roll Scene,tt0357413 ZP0mhGmUbr0,-1.0,1,8,2011,Anchorman: The Legend of Ron Burgundy,Insulting the Evening News Team Scene,tt0357413 1Zro4CfP9wY,-1.0,7,8,2011,Anchorman: The Legend of Ron Burgundy,Wanna Dance? Scene,tt0357413 LvAIBDGIYE0,1998.0,3,7,2011,Saving Private Ryan,That's My Mission,tt0120815 OqSg7WO4tT4,1998.0,1,7,2011,Saving Private Ryan,Omaha Beach,tt0120815 u3_3EUKbY00,1998.0,4,7,2011,Saving Private Ryan,It Doesn't Make Any Sense,tt0120815 wgHRj2-vvs8,1998.0,5,7,2011,Saving Private Ryan,Private Jackson,tt0120815 QnX_mQ9apu8,1998.0,7,7,2011,Saving Private Ryan,Capt. Miller's Last Stand,tt0120815 uW9Q1cm_Tnw,1998.0,6,7,2011,Saving Private Ryan,Upham Fails Mellish,tt0120815 Y_WiVEBST6I,2001.0,11,11,2011,The Others,The Seance,tt0230600 s66zFW3nogU,2000.0,6,8,2011,Gladiator,Maximus the Merciful,tt0172495 X1UmHfWCw-4,2000.0,5,8,2011,Gladiator,My Name is Maximus,tt0172495 Bb5tMhOeg5I,2000.0,8,8,2011,Gladiator,Maximus Kills Commodus,tt0172495 FI1ylg4GKv8,2000.0,4,8,2011,Gladiator,Are You Not Entertained?,tt0172495 r2jbK6dGLGc,2000.0,2,8,2011,Gladiator,Commodus Murders His Father,tt0172495 k71x-TmobGo,2000.0,3,8,2011,Gladiator,Maximus Escapes Execution,tt0172495 spvSw-wR6qg,2000.0,1,8,2011,Gladiator,Maximus Leads His Troops to Victory,tt0172495 ZrF5rZ3FTbg,2010.0,1,-1,2011,The Fighter,MTV Girl,tt0964517 xfoGEGTl-sg,2010.0,2,-1,2011,The Fighter,You Can't Be Me,tt0964517 wWswgKOqkZM,2010.0,4,-1,2011,The Fighter,Look At You,tt0964517 ivmjSqQ_7aw,2010.0,6,-1,2011,The Fighter,Not Hiding,tt0964517 3uUlGkrzPWo,2010.0,3,-1,2011,The Fighter,I'm the One Fighting,tt0964517 2hs_qcU6410,1994.0,4,11,2011,Heavenly Creatures,Pen Pals,tt0110005 HEKPhSJ0PjA,2010.0,5,-1,2011,The Fighter,Mickey's Corner,tt0964517 DoJaIZ2Sajk,2009.0,1,10,2011,Midgets Vs. Mascots,Last Will and Testament of Big Red Bush,tt1253596 51y64KtGGRI,2009.0,4,10,2011,Midgets Vs. Mascots,Milk Chug,tt1253596 sSx4IDKK6sg,2009.0,3,10,2011,Midgets Vs. Mascots,Rodeo Poker,tt1253596 YOrZHY_-ap8,2009.0,6,10,2011,Midgets Vs. Mascots,Door-to-Door Sales,tt1253596 WiMw3ttzVMs,1997.0,1,9,2011,Mimic,Entomology 101,tt0119675 1LvSSeZfWmI,2009.0,5,10,2011,Midgets Vs. Mascots,Amateur Porn,tt1253596 SaWCkQzKopo,1997.0,5,9,2011,Mimic,No Escape,tt0119675 Jjv5GQtJTEw,1997.0,9,9,2011,Mimic,Lighting a Spark,tt0119675 134ua7rOS4g,1997.0,3,9,2011,Mimic,Some Weird Sh** Here,tt0119675 IHbIf3K5pdc,1997.0,6,9,2011,Mimic,These Things Can Imitate Us,tt0119675 mFxrm9Q6E4M,2007.0,6,11,2011,The Diving Bell and the Butterfly,The Butterfly Escapes,tt0401383 eP7cLId4ocM,1998.0,6,11,2011,The Faculty,Drug Test,tt0133751 i77quMJ5ihE,1998.0,11,11,2011,The Faculty,Deposing the Queen,tt0133751 H5woQdVbaC0,1998.0,4,11,2011,The Faculty,Science and Fiction,tt0133751 l_OJuYjvKrM,2007.0,2,11,2011,The Diving Bell and the Butterfly,Sewing Up the Eye,tt0401383 LekZbZ0ksyA,1998.0,9,11,2011,The Faculty,The Queen Revealed,tt0133751 PUH2nHjBYsA,2007.0,8,11,2011,The Diving Bell and the Butterfly,Motionless Travel Notes,tt0401383 l6StIaMaRsg,1998.0,2,11,2011,The Faculty,They Want Everyone!,tt0133751 NOZMlcY9MC8,2007.0,11,11,2011,The Diving Bell and the Butterfly,A Phone Call from Father,tt0401383 mtuuOV4FtKY,1998.0,7,11,2011,The Faculty,Sniff This!,tt0133751 ayjftbSDeVA,2004.0,9,12,2011,Ella Enchanted,Kiss Me,tt0327679 FEAmUOrMd3o,1998.0,3,11,2011,The Faculty,Hostile Takeover,tt0133751 BNWvtfCdBcA,1998.0,1,11,2011,The Faculty,A New Species,tt0133751 rD3kI-nioGA,2004.0,4,12,2011,Ella Enchanted,Freeze!,tt0327679 8BOU3JhcXIU,2002.0,5,10,2011,Pinocchio,Cricket in Playland,tt0255477 QHYccOE4h4c,2003.0,12,12,2011,Duplex,Gunshot to Mr. Peabody,tt0266489 _6up-uz7Q9k,2007.0,1,11,2011,The Diving Bell and the Butterfly,Am I in Heaven?,tt0401383 Y2DV9PUx15s,2007.0,4,11,2011,The Diving Bell and the Butterfly,Near Misses,tt0401383 vjkkbQy9fLA,2007.0,3,11,2011,The Diving Bell and the Butterfly,Good for a Wheelchair,tt0401383 df0j-m8xV58,2007.0,9,11,2011,The Diving Bell and the Butterfly,A Father's Approval,tt0401383 zNkZr44VLFY,2007.0,7,11,2011,The Diving Bell and the Butterfly,I Can Imagine Anything I Want,tt0401383 XwJGqNQapO8,2007.0,5,11,2011,The Diving Bell and the Butterfly,Women Aren't Complicated,tt0401383 IeqXtCC8Osk,2007.0,10,11,2011,The Diving Bell and the Butterfly,It Was Only a Dream!,tt0401383 8ReMLVUwKmA,2004.0,12,12,2011,Ella Enchanted,Don't Go Breaking My Heart,tt0327679 SN8hW7AeoQI,2004.0,8,12,2011,Ella Enchanted,Somebody to Love,tt0327679 x7dGXb7jrHw,2004.0,11,12,2011,Ella Enchanted,Marry Me,tt0327679 9AQGhFGi1dM,2004.0,2,12,2011,Ella Enchanted,Hold Your Tongue,tt0327679 mNtK6UvRjO8,2004.0,5,12,2011,Ella Enchanted,Benny the Boyfriend Book,tt0327679 l24yOwR9saU,2004.0,10,12,2011,Ella Enchanted,I'm Free,tt0327679 gPadm1Ql1Is,2004.0,3,12,2011,Ella Enchanted,Meeting the Prince,tt0327679 cw1dB9PxWzM,2004.0,1,12,2011,Ella Enchanted,Gift of Obedience,tt0327679 q0yFqlPrLyE,2004.0,7,12,2011,Ella Enchanted,The Elf Singing Village,tt0327679 IBPc_SnNPzo,2004.0,6,12,2011,Ella Enchanted,Kick Some Butt,tt0327679 H2UF-eI_dj8,2003.0,4,12,2011,Duplex,Bath Time,tt0266489 J_VTn3SAV20,2003.0,9,12,2011,Duplex,A Clogged Sink,tt0266489 vR_L-yH_3jY,2003.0,6,12,2011,Duplex,A Raisin or a Mouse Dropping,tt0266489 BHWGn9p_p4s,2002.0,2,10,2011,Pinocchio,Becomes Rich,tt0255477 b0xYU8jHaH4,2002.0,1,10,2011,Pinocchio,I'll Call You,tt0255477 os1gnR5k3S8,2002.0,3,10,2011,Pinocchio,Take Your Medicine,tt0255477 28JhyDR8-5M,2002.0,4,10,2011,Pinocchio,Growing Nose,tt0255477 N_20oqY8E2c,2002.0,6,10,2011,Pinocchio,Turning Into Donkeys,tt0255477 J8pmj6RkiQk,2002.0,9,10,2011,Pinocchio,Goodbye,tt0255477 FRC8Nn6PREI,1972.0,5,7,2011,Fist of Fury,Raging Fury,tt0068767 HvFU1MFkLm4,1972.0,4,7,2011,Fist of Fury,Yoshida Becomes a Scabbard,tt0068767 UCd_bEZa6k4,2002.0,8,10,2011,Pinocchio,Father and Son Reunite,tt0255477 0hau_p3N-MI,2002.0,10,10,2011,Pinocchio,A Real Boy,tt0255477 8t7NUEm0mMM,1972.0,6,7,2011,Fist of Fury,Avenging the Master,tt0068767 IMjO-38v2cs,1972.0,3,7,2011,Fist of Fury,No Dogs Allowed,tt0068767 FtZb1Kbh2qY,1972.0,1,7,2011,Fist of Fury,Sick Men of Asia,tt0068767 PH8Gh-5lQNE,1972.0,7,7,2011,Fist of Fury,An Act of Defiance,tt0068767 rnnt0KYtwFc,2003.0,2,12,2011,Duplex,Little Dick the Parrot,tt0266489 4uuvZl95Cyc,2003.0,7,12,2011,Duplex,Choking on Chocolate,tt0266489 -cBGthOZ-Ls,2003.0,3,12,2011,Duplex,Sex Interrupted,tt0266489 RVbEs5DBPlY,2003.0,5,12,2011,Duplex,The Clapper,tt0266489 sdb8G26294A,2003.0,8,12,2011,Duplex,Murdering the Old Hag,tt0266489 rrejfviNpqE,2003.0,11,12,2011,Duplex,Riverdance,tt0266489 EBkacU72QM4,2003.0,10,12,2011,Duplex,Booby Trap Backfire,tt0266489 qq38b_oRYr0,1988.0,4,10,2011,Cinema Paradiso,Movies in the Square,tt0095765 rrDG0rQCc28,1988.0,10,10,2011,Cinema Paradiso,The Best Parts,tt0095765 lRd5iD73g2s,2005.0,9,12,2011,Tsotsi,Butcher's Final Job,tt0468565 GPCN0TioP4A,2005.0,11,12,2011,Tsotsi,Give Back the Baby,tt0468565 JELOhEjLgmU,2005.0,7,12,2011,Tsotsi,'s Old Home,tt0468565 r99wnIibUQY,1988.0,9,10,2011,Cinema Paradiso,Life Isn't Like in the Movies,tt0095765 xr3TcE009HY,1988.0,1,10,2011,Cinema Paradiso,Censoring the Kisses,tt0095765 mE53H-ZbD7c,1988.0,3,10,2011,Cinema Paradiso,Milk Money,tt0095765 l1GXJBIkb74,1988.0,5,10,2011,Cinema Paradiso,The Fire,tt0095765 mDXU3KxBpCM,1988.0,7,10,2011,Cinema Paradiso,Waiting Outside Her Window,tt0095765 cAEth6FATZk,1988.0,2,10,2011,Cinema Paradiso,Double Feature,tt0095765 PlO7gaalX68,1988.0,8,10,2011,Cinema Paradiso,Kissing in the Rain,tt0095765 dJOMfmVs9Ag,1988.0,6,10,2011,Cinema Paradiso,Knowing the Movie by Heart,tt0095765 x5f6nNMdbgU,2005.0,3,12,2011,Tsotsi,An Unexpected Passenger,tt0468565 t4k-USM30aU,2005.0,1,12,2011,Tsotsi,The Train Robbery,tt0468565 As5-06N6Rko,2005.0,6,12,2011,Tsotsi,'s Past,tt0468565 zZB1N4IMjlA,2005.0,2,12,2011,Tsotsi,Boston's Blood,tt0468565 dMhT03nH_HA,2005.0,12,12,2011,Tsotsi,Surrender,tt0468565 nfJqMoCXVho,2005.0,10,12,2011,Tsotsi,We're Finished,tt0468565 -FyVSeNTqJM,2005.0,4,12,2011,Tsotsi,The Sun on My Hands,tt0468565 3F1uAggQmYI,2005.0,5,12,2011,Tsotsi,A Mother's Love,tt0468565 GgYOGHU_IOY,2005.0,8,12,2011,Tsotsi,He Can Stay at My Place,tt0468565 a5WKH6TNlDw,2000.0,8,10,2011,The Taste of Others,A Love Poem,tt0216787 qUcMohewjvI,2000.0,7,8,2011,Gladiator,Busy Little Bees,tt0172495 HpISLkb5L5E,2000.0,2,9,2011,Almost Famous,Lester Bangs,tt0181875 fgMlyvq2oNo,2000.0,1,9,2011,Almost Famous,Drugs & Promiscuous Sex,tt0181875 v7b0_Z9dzoM,2002.0,9,9,2011,Road to Perdition,Give Me the Gun,tt0257044 mCqrIptSd9k,2009.0,9,10,2011,Direct Contact,Bazooka Time,tt1182609 uPzTQvSPsqY,2009.0,8,10,2011,Direct Contact,Running the Gauntlet,tt1182609 x2DospZTmUg,2009.0,7,10,2011,Direct Contact,Get Some!,tt1182609 GEp_uGRMbFM,2009.0,6,10,2011,Direct Contact,One Man Army,tt1182609 eCR4DIi8SzU,2009.0,3,10,2011,Direct Contact,Public Square Chase,tt1182609 D15UY1FXJpI,2009.0,4,10,2011,Direct Contact,Restaurant Rampage,tt1182609 kBifgLJF5og,2009.0,2,10,2011,Direct Contact,The Gun Dealer,tt1182609 QAxmwbQ_7sI,2009.0,10,10,2011,Direct Contact,You'll Never Live Long Enough,tt1182609 o504Z9dWRqs,2009.0,5,10,2011,Direct Contact,Show Me The Money,tt1182609 mvc_bbaLhSg,2009.0,1,10,2011,Direct Contact,Kafeteria Kick-Ass,tt1182609 7LhZupa1Bng,2007.0,7,9,2011,Paranormal Activity,How Did She Die?,tt1179904 o5l0Bw2jMO8,2007.0,9,9,2011,Paranormal Activity,Paranormal Ending,tt1179904 uvgBCv4v71s,2007.0,8,9,2011,Paranormal Activity,Dragged Out of Bed,tt1179904 4jcflB38DNo,2007.0,5,9,2011,Paranormal Activity,We Need Your Help,tt1179904 3bgPH3rOWVk,2007.0,4,9,2011,Paranormal Activity,I Feel it Breathing on Me,tt1179904 hV2om9YBADI,2003.0,6,9,2011,Old School,A Waitresses' Panties,tt0302886 Bogko_zvcaY,2007.0,6,9,2011,Paranormal Activity,The Sheets Move,tt1179904 4Ky2p76AKSs,2007.0,3,9,2011,Paranormal Activity,Slamming the Door,tt1179904 S1s9cXYpxNo,2007.0,2,9,2011,Paranormal Activity,Powder Footsteps,tt1179904 XRz0pSQXTQ4,2003.0,4,9,2011,Old School,The Morning After,tt0302886 va6nRaZ9eRg,2003.0,2,9,2011,Old School,Earmuff It For Me,tt0302886 _yYDzLUH1NE,2003.0,9,9,2011,Old School,That's the Way You Debate,tt0302886 sFW-yxe13lo,2003.0,8,9,2011,Old School,Tranquilizer to the Jugular,tt0302886 jJMXxv-hYPo,2003.0,7,9,2011,Old School,The Cinder Block Test,tt0302886 NnxcN2umAOk,2003.0,5,9,2011,Old School,Cheeeese!,tt0302886 20g3QIUnOgY,2003.0,3,9,2011,Old School,We're Going Streaking!,tt0302886 _yy4qamWAmk,2007.0,9,10,2011,Transformers,"No Sacrifice, No Victory",tt0418279 NUJVU87Qb7A,2003.0,1,9,2011,Old School,A Wedding Toast,tt0302886 bmHLulbWm74,2007.0,2,10,2011,Transformers,Desert Surprise,tt0418279 kWmntegbxMc,2007.0,6,10,2011,Transformers,My Name Is Optimus Prime,tt0418279 5t8Utwa_YYQ,2007.0,5,10,2011,Transformers,That Car Is Sensitive,tt0418279 IMo_Jx35SZw,2007.0,10,10,2011,Transformers,Taking Down Blackout,tt0418279 m1ef1Y2x8NY,2007.0,8,10,2011,Transformers,Megatron Gets the Upper Hand,tt0418279 Cs-L3psiK2Y,2007.0,3,10,2011,Transformers,Bumblebee to the Rescue,tt0418279 5QYQS9SYa6A,2007.0,7,10,2011,Transformers,Optimus Prime Battles Bonecrusher,tt0418279 f6L3Ef1JCC8,2007.0,1,10,2011,Transformers,Eyes On Mikaela,tt0418279 CcfN7q8rN58,2007.0,4,10,2011,Transformers,Not So Tough Without a Head,tt0418279 LqneoJRRqbg,2005.0,5,8,2011,The Ring Two,I Have To Show You Something,tt0377109 rroMPRc4flw,2005.0,8,8,2011,The Ring Two,I'm Not Your Mommy,tt0377109 EiVRkqi02a0,2005.0,7,8,2011,The Ring Two,Her Only Way Out,tt0377109 a8xs3O-NwsY,2005.0,6,8,2011,The Ring Two,You're Not My Son,tt0377109 yl_CgAqNvKc,2005.0,1,8,2011,The Ring Two,Now It's Her Problem,tt0377109 e7dbge0Zk5A,2005.0,4,8,2011,The Ring Two,It Wasn't Him,tt0377109 iBRhat_CcQM,2005.0,3,8,2011,The Ring Two,Don't Stop,tt0377109 hpb2-ZOzc_o,2002.0,8,8,2011,The Ring,Samara Comes to You,tt0120737 398qkvR92GU,2002.0,6,8,2011,The Ring,What Did You Do To Her?,tt0120737 u4T5X47MKm4,2002.0,5,8,2011,The Ring,Ferry Accident,tt0120737 bxAiioYl1bw,2005.0,2,8,2011,The Ring Two,I Found You,tt0377109 igEO_oyUs6U,2002.0,3,8,2011,The Ring,Nose Bleed,tt0120737 b9abCIgGxT4,2002.0,4,8,2011,The Ring,Nightmare,tt0120737 OA6wpEFU-uw,2002.0,7,8,2011,The Ring,Into the Well,tt0120737 VyiCDq6Y0c8,2002.0,2,8,2011,The Ring,The Tape,tt0120737 PFsl1cGHzp4,2002.0,1,8,2011,The Ring,You Will Die in Seven Days,tt0120737 LUr7o6R4u8U,2001.0,5,9,2011,The Mexican,The Past Doesn't Matter,tt0236493 PEo3OnoPBI4,2001.0,2,9,2011,The Mexican,I Have to Shoot You,tt0236493 9zYrXFG6zSs,2001.0,4,9,2011,The Mexican,Frank the Postman,tt0236493 FUbC8WBChng,2001.0,9,9,2011,The Mexican,"When is Enough, Enough?",tt0236493 NUdeuIj-yKk,2001.0,7,9,2011,The Mexican,One More Word...Naugahyde,tt0236493 GanDtOcF0M0,2001.0,6,9,2011,The Mexican,The Point When Enough is Enough,tt0236493 AgLQ3qTL-t0,2001.0,1,9,2011,The Mexican,The Last Job,tt0236493 Jjfj3SkBkpg,2000.0,6,8,2011,What Lies Beneath,Setting up a Suicide,tt0161081 SnvRdPwoMRQ,2000.0,3,8,2011,What Lies Beneath,Channeling the Dead,tt0161081 WNnxjpBMF7U,2000.0,5,8,2011,What Lies Beneath,"You Killed Her, Didn't You?",tt0161081 M4NDR6zyzkw,2000.0,4,8,2011,What Lies Beneath,I Think She's Starting to Suspect Something,tt0161081 vPTTP3gSLJc,2000.0,1,8,2011,What Lies Beneath,What Do You Want?,tt0161081 I2AjeXpxmI4,2001.0,3,9,2011,The Mexican,Are You Gay?,tt0236493 irr4b40Ok7E,2000.0,7,8,2011,What Lies Beneath,Drowning in the Bathtub,tt0161081 WUApETooc_g,2001.0,8,9,2011,The Mexican,Killing Winston,tt0236493 F1adM9oDbbw,2000.0,2,8,2011,What Lies Beneath,I Know You Killed Her,tt0161081 14t1taTBtmc,2000.0,8,8,2011,What Lies Beneath,The Woman That Lies Beneath,tt0161081 xtXdKETotbc,2002.0,8,9,2011,Minority Report,Run,tt0181689 hu2AlkyvIe0,2003.0,10,10,2011,Head of State,The First Black President,tt0325537 3tXDymBcnJY,2003.0,7,10,2011,Head of State,Mays Rocks the Debate,tt0325537 hRa-69uBmIw,2003.0,9,10,2011,Head of State,"Yes, I'm an Amateur",tt0325537 lCiravgbbJk,2003.0,8,10,2011,Head of State,A Childish Debate,tt0325537 tPy34tjLOyk,2003.0,4,10,2011,Head of State,Brotherly Advice,tt0325537 r9bfL4Jz-M8,2003.0,6,10,2011,Head of State,Dress for the Job You Want,tt0325537 fMTn4M2qfNI,2003.0,5,10,2011,Head of State,That Ain't Right,tt0325537 hvZiZFDE3A8,2003.0,1,10,2011,Head of State,Save the Cat,tt0325537 SXjiv_w2i3Y,2003.0,3,10,2011,Head of State,Security!,tt0325537 Pha96r6s_g4,2003.0,2,10,2011,Head of State,Meat Man,tt0325537 Ow8mG8qutkw,2002.0,2,10,2011,Catch Me If You Can,Are You My Deadhead?,tt0264464 DCOm4osfWn8,2002.0,3,10,2011,Catch Me If You Can,Bank Teller Seduction,tt0264464 HYOjY7JJDBI,2002.0,9,10,2011,Catch Me If You Can,Caught in France,tt0264464 sFW15hEqZQk,2002.0,10,10,2011,Catch Me If You Can,Nobody's Chasing You,tt0264464 O71paEZERHg,2002.0,6,10,2011,Catch Me If You Can,No One Else to Call,tt0264464 i5j1wWY-qus,2002.0,8,10,2011,Catch Me If You Can,Do You Concur?,tt0264464 R5WC60UwB_Y,2002.0,7,10,2011,Catch Me If You Can,You Got Your Braces Off,tt0264464 31lZFoSS-VQ,2002.0,5,10,2011,Catch Me If You Can,Go Fish,tt0264464 PNOuZUHKneY,2002.0,4,10,2011,Catch Me If You Can,Secret Service Agent,tt0264464 KAeAqaA0Llg,2002.0,1,10,2011,Catch Me If You Can,Substitute Teacher,tt0264464 DvS7X6Zik1c,2002.0,7,9,2011,Minority Report,Lamar Murders Danny,tt0181689 IHLzITVRlCo,2002.0,9,9,2011,Minority Report,One More Murder,tt0181689 5M4QWD0U8-A,2002.0,6,9,2011,Minority Report,You're Supposed to Kill Me,tt0181689 8MuZATnrE3Y,2002.0,5,9,2011,Minority Report,Anderton Chooses Not to Kill,tt0181689 9S44kVrFB24,2002.0,2,9,2011,Minority Report,Anderton Runs,tt0181689 901lYbPmqu4,2002.0,4,9,2011,Minority Report,Spider Robots,tt0181689 GurNiNV5XvY,2002.0,3,9,2011,Minority Report,Spoiled Lunch,tt0181689 2l_IUAcvfv8,2002.0,1,9,2011,Minority Report,Anderton Sees Himself Kill,tt0181689 TZQWu0gDpO4,2004.0,3,9,2011,Collateral,Pulled Over,tt0369339 CxzCn3OZfeA,2004.0,8,9,2011,Collateral,Sins of the Father,tt0369339 6mreIgrIXQ8,2004.0,6,9,2011,Collateral,Max's New Friend,tt0369339 wDZyu8jYw90,2004.0,5,9,2011,Collateral,One Question Away,tt0369339 lBS9AHilxg0,2004.0,2,9,2011,Collateral,Bullets and the Fall,tt0369339 _syPeFclyN8,2004.0,1,9,2011,Collateral,Nobody Notices,tt0369339 EMS4lYA-hEo,2004.0,9,9,2011,Collateral,Think Anybody Will Notice?,tt0369339 oEFPcljAXgs,2004.0,4,9,2011,Collateral,That My Briefcase?,tt0369339 C0SqH_PRfGU,1998.0,10,10,2011,Deep Impact,Let Us Begin,tt0120647 _xJ1KmjXSYc,1998.0,4,10,2011,Deep Impact,Leo Makes a Sweet Proposal,tt0120647 -nIwFGmgYMs,1998.0,3,10,2011,Deep Impact,Detonating the First Nuke,tt0120647 5s6vEQzHOcM,1998.0,2,10,2011,Deep Impact,A Crew Member is Lost,tt0120647 VNtsVP42bOE,1998.0,8,10,2011,Deep Impact,The Comet Hits Earth,tt0120647 vQWmd8REdaE,1998.0,9,10,2011,Deep Impact,The Ultimate Sacrifice,tt0120647 TzMGDdUyHkQ,1998.0,7,10,2011,Deep Impact,Jenny Reconciles With Her Father,tt0120647 Au47y23N-QM,1998.0,6,10,2011,Deep Impact,A One-Way Mission,tt0120647 gM4-jiKNuIs,1998.0,5,10,2011,Deep Impact,Be the Best,tt0120647 j0silSyYFPM,1998.0,1,10,2011,Deep Impact,An Order From the President,tt0120647 dQTwbSY0z_Q,2005.0,6,9,2011,The Island,Jet Bike Chase,tt0399201 pTbelq2dtKg,2005.0,4,9,2011,The Island,What Are We?,tt0399201 yHBT_3vRbq8,2002.0,2,9,2011,Road to Perdition,Sons Are Put on this Earth,tt0257044 xPxs0Qh72kY,2008.0,6,10,2011,Tropic Thunder,"What Do You Mean, You People?",tt0942385 9dyhBVEQi9U,2002.0,5,9,2011,Road to Perdition,A Share of the Money,tt0257044 KA2ziAAXoqE,2008.0,4,10,2011,Tropic Thunder,"Rick Peck, Hollywood Agent",tt0942385 7YdgPy21hBM,2008.0,10,10,2011,Tropic Thunder,You're My Really Cool Brother,tt0942385 LQNKhY7ws48,2008.0,7,10,2011,Tropic Thunder,I Killed a Panda,tt0942385 QZocvme6cYc,2008.0,1,10,2011,Tropic Thunder,"Tugg Speedman, Action Hero",tt0942385 Mhu2Ij0rWCQ,2008.0,3,10,2011,Tropic Thunder,Epic Explosion,tt0942385 mgyypjEpK6U,2008.0,9,10,2011,Tropic Thunder,I'm Not Gay,tt0942385 X6WHBO_Qc-Q,2008.0,5,10,2011,Tropic Thunder,Never Go Full Retard,tt0942385 zGIIiQyyuYM,2008.0,2,10,2011,Tropic Thunder,Most Dramatic War Movie,tt0942385 qIxHb7cA6tg,2008.0,8,10,2011,Tropic Thunder,Simple Jack,tt0942385 nF_6OfgbF7c,1999.0,9,9,2011,Galaxy Quest,Fanboy's Dream Come True,tt0177789 EQG3I5efwWo,1999.0,8,9,2011,Galaxy Quest,The Rock Monster,tt0177789 JJ83r886Kyg,1999.0,6,9,2011,Galaxy Quest,Cute But Deadly Aliens,tt0177789 nW-NiGp1gys,1999.0,7,9,2011,Galaxy Quest,Beaming Up a Pig Lizard,tt0177789 qopdYE3_QoU,1999.0,5,9,2011,Galaxy Quest,I'm Gonna Die!,tt0177789 _zSpueUqvcs,1999.0,4,9,2011,Galaxy Quest,When Aliens Attack,tt0177789 uDJsCE01LYI,1999.0,1,9,2011,Galaxy Quest,How Did I Come to This?,tt0177789 FEdyNyQCjwE,1999.0,2,9,2011,Galaxy Quest,Signing Autographs and Meeting Aliens,tt0177789 -hDPK865N9I,2000.0,8,9,2011,Almost Famous,What Kind of Beer?,tt0181875 n8mK-A_0viA,1999.0,3,9,2011,Galaxy Quest,Probed By Aliens,tt0177789 3VIKJMifm7k,2000.0,3,9,2011,Almost Famous,Penny Lane & the Band-Aides,tt0181875 A3WUhMCsZds,2000.0,4,9,2011,Almost Famous,It's All Happening,tt0181875 6OPp0MyQfoM,2000.0,6,9,2011,Almost Famous,The T-Shirt is Everything,tt0181875 eXAvTZlmYF0,2000.0,5,9,2011,Almost Famous,Do You Wanna Buy a Gate?,tt0181875 VCfFCFkVSss,2000.0,7,9,2011,Almost Famous,I Am a Golden God!,tt0181875 TEAIVXJ1Qds,2000.0,9,9,2011,Almost Famous,I'm Gay!,tt0181875 O_4Sx5NtOPM,2002.0,8,9,2011,Road to Perdition,I'm Glad It's You,tt0257044 U5418CiBukw,2002.0,7,9,2011,Road to Perdition,None of Us Will See Heaven,tt0257044 7-VAbEyf9V4,2002.0,6,9,2011,Road to Perdition,Hotel Shootout,tt0257044 nPWRoCkmaQU,2002.0,4,9,2011,Road to Perdition,Kill Sullivan and All Debts are Paid,tt0257044 UfmdBPl48uw,2002.0,3,9,2011,Road to Perdition,You Would Like to Apologize?,tt0257044 MhGl83Qsi4Q,2002.0,1,9,2011,Road to Perdition,You Saw Everything,tt0257044 sOxspReyzOI,2005.0,8,9,2011,The Island,He's My Clone,tt0399201 5paBdZiLhqQ,2005.0,9,9,2011,The Island,My Name Is Lincoln,tt0399201 xCQ2qh3Tu9o,2005.0,7,9,2011,The Island,Riding the Logo,tt0399201 CHPnFgyg064,2005.0,5,9,2011,The Island,Good Job,tt0399201 Ihd-NwI030c,2005.0,2,9,2011,The Island,I Wanna Live,tt0399201 IdEsGZhAO7A,2005.0,3,9,2011,The Island,Freedom,tt0399201 UuVuFO1cCFE,2007.0,1,5,2011,Norbit,Mr. Wong's Toast,tt0477051 139c6HgY7jA,2005.0,1,9,2011,The Island,Awaits You,tt0399201 IakgSRSZZ0I,2007.0,3,5,2011,Norbit,Little Red Riding Goose,tt0477051 E3WlOWMP9KA,2007.0,2,5,2011,Norbit,It's Science,tt0477051 JUQS0Q_0aQg,2007.0,5,5,2011,Norbit,Splash Down,tt0477051 yKfQ_-lnMJw,2007.0,4,5,2011,Norbit,Kate's Hospital Visit,tt0477051 TMUJpec6Bdc,1950.0,2,8,2011,Sunset Blvd.,"I Am Big, It's the Pictures That Got Small",tt0043014 Nn4pMI2q_PM,1950.0,4,8,2011,Sunset Blvd.,"The ""Waxworks"" Play Bridge",tt0043014 _3hajwRww6I,1950.0,7,8,2011,Sunset Blvd.,No One Ever Leaves a Star,tt0043014 AupQ8Vm51OQ,1984.0,2,9,2011,Top Secret!,The Resistance,tt0088286 XM3BsAAO8JI,2002.0,5,12,2011,Equilibrium,Puppy Shootout,tt0238380 ixljWVyPby0,1980.0,9,10,2011,Airplane!,Don't Call Me Shirley,tt0080339 7trB7i2xpfc,1986.0,1,10,2011,Gung Ho,Japanese Board Meeting,tt0091159 kk0vH1qJPHk,1996.0,12,12,2011,The Crow: City of Angels,Does He Not Bleed?,tt0115986 nS8tqsjySaI,2008.0,9,10,2011,Doubt,I Will Do What Needs to Be Done,tt0918927 3ZpmjPc9Vcc,2004.0,7,9,2011,Collateral,Max Takes Action,tt0369339 V4705kE44Jc,1983.0,7,10,2011,Trading Places,Very Bad Santa,tt0086465 iU0CuPH7akM,1987.0,8,10,2011,"Planes, Trains & Automobiles",Chatty Cathy,tt0093748 evoa_UWUobI,2007.0,1,9,2011,Paranormal Activity,Ouija Board on Fire,tt1179904 WSlojAguwGE,1991.0,7,10,2011,The Addams Family,Lust in the Graveyard,tt0101272 fnTckzsYgg0,1997.0,1,12,2011,Scream 2,Killer Opening,tt0120082 ba4niP3IwLQ,1997.0,3,12,2011,Scream 2,Omega Beta Killer,tt0120082 oDeQU3l-JSg,1993.0,4,10,2011,Coneheads,The Birth Spasm Has Begun,tt0106598 xdPtumdfg9c,1997.0,4,12,2011,Scream 2,It's Showtime!,tt0120082 J2_tJIgfnDA,1988.0,1,10,2011,The Naked Gun: From the Files of Police Squad!,Nordberg's Bad Luck,tt0095705 EA-9nqoIXs8,1997.0,6,12,2011,Scream 2,The Play's the Thing!,tt0120082 r9aUxfTTLfk,1997.0,10,12,2011,Scream 2,I'm Gonna Blame the Movies,tt0120082 XFrerPgK0kk,1995.0,8,10,2011,The Brady Bunch Movie,Brady Emergency Meeting,tt0112572 y8SLxD3ATw0,1997.0,12,12,2011,Scream 2,That... Was Intense,tt0120082 O7dHybpZ7Mc,2010.0,3,-1,2011,Saint,Shooting Down St. Niklas,tt1300851 ZPk3nEFRuZg,1970.0,5,10,2011,Love Story,Our Two Souls,tt0066011 cGP9TwLnG78,1983.0,2,9,2011,Terms of Endearment,Asking Out Aurora,tt0086425 cEjo0ajod1M,1991.0,8,10,2011,The Naked Gun 2½: The Smell of Fear,Boxing Knowledge,tt0102510 C5LuP6tDw3w,1995.0,1,10,2011,The Brady Bunch Movie,I Don't Understand You,tt0112572 8hJlwQwwCGk,2002.0,7,10,2011,Orange County,The Dean Trips Out,tt0273923 IBjrQR_1ef8,2002.0,9,12,2011,Equilibrium,Sense Offender,tt0238380 9EBnUERX_cU,1986.0,9,10,2011,Gung Ho,This is Looney Tunes,tt0091159 8iQKnefUJNg,2002.0,7,12,2011,Equilibrium,Joining the Resistance,tt0238380 p-echNQGbug,1994.0,2,10,2011,Naked Gun 33 1/3: The Final Insult,Prison Riot,tt0110622 59ZcTCijizI,2002.0,3,12,2011,Equilibrium,Why Are You Alive?,tt0238380 IEOqAlmq2NU,2003.0,1,10,2011,Dickie Roberts: Former Child Star,Big Bully,tt0325258 uZWDke-bpmc,2002.0,8,12,2011,Equilibrium,The Incineration,tt0238380 pPuAKVnqJdk,2002.0,1,12,2011,Equilibrium,Lights Out,tt0238380 aHM8kYwl1R4,1968.0,1,8,2011,Rosemary's Baby,Baby Night,tt0063522 gNGmuLYwd3o,1991.0,2,10,2011,The Addams Family,The Hot Seat,tt0101272 _ZfmXzIbHI8,1978.0,9,10,2011,Grease,Sandy Scene,tt0077631 uuYTVl0iOkk,1984.0,6,9,2011,Top Secret!,Backwards Bookstore,tt0088286 TJf9Pf9rjO4,2002.0,2,12,2011,Equilibrium,Killed for Reading,tt0238380 qXJF21RuqlM,1970.0,7,10,2011,Love Story,Jenny Is Dying,tt0066011 2jvtU-_WDUw,1991.0,10,10,2011,The Naked Gun 2½: The Smell of Fear,What Are You Trying To Tell Me?,tt0102510 ZzOzVT2o2BU,2000.0,5,9,2011,Shaft,New York Car Chase,tt0162650 Yq5csaHc_GE,1992.0,1,10,2011,Leap of Faith,Scamming a Cop,tt0104695 SbTWLdT_tgk,1993.0,6,10,2011,Coneheads,Good Neighbors,tt0106598 mVqKHUtKh8Y,1995.0,6,10,2011,The Brady Bunch Movie,Marsha's Date,tt0112572 OUHFpvPxmRI,2003.0,8,10,2011,Dickie Roberts: Former Child Star,Auditioning for Reiner,tt0325258 foll8sDGq4M,1988.0,5,10,2011,The Naked Gun: From the Files of Police Squad!,Taking Down Terrorists,tt0095705 gTTHW0Hynbc,1984.0,3,7,2011,Footloose,We Could Have A Dance,tt0087277 y-qFqfSjN1U,2003.0,9,10,2011,Dickie Roberts: Former Child Star,Big for a Stroller,tt0325258 Fyuo3Z5ZTX4,1984.0,2,7,2011,Footloose,Playing Chicken,tt0087277 GQDLVpNKFhw,2003.0,3,10,2011,Dickie Roberts: Former Child Star,Schmoozing at AA,tt0325258 4EdkUt4f5wg,1984.0,4,7,2011,Footloose,Defending Dancing,tt0087277 N8f-APll5f8,2003.0,4,10,2011,Dickie Roberts: Former Child Star,Farm-A-Long,tt0325258 Qf9xTFEhRS0,2003.0,10,10,2011,Dickie Roberts: Former Child Star,Devil Rabbit,tt0325258 BkVDaT2FTM8,2003.0,6,10,2011,Dickie Roberts: Former Child Star,Root-Beer Party,tt0325258 I6_C4fK94-c,1984.0,6,7,2011,Footloose,Forgive Me Father,tt0087277 LX_cW_dLweA,2003.0,5,10,2011,Dickie Roberts: Former Child Star,The Day the Sitcom Got Canceled,tt0325258 rr6eufh4DA4,1981.0,9,9,2011,Mommie Dearest,Christina Play Acts,tt0082766 f0MBL-DyXaE,1981.0,4,9,2011,Mommie Dearest,Racing A Child,tt0082766 qRAQivSrtm0,1981.0,1,9,2011,Mommie Dearest,Mad At Dirt,tt0082766 5NOmw_kzrJQ,1981.0,3,9,2011,Mommie Dearest,Reasons For Adoption,tt0082766 PtwRKtvezd8,1981.0,5,9,2011,Mommie Dearest,Pruning the Garden,tt0082766 tUkE9qaVgmo,1981.0,6,9,2011,Mommie Dearest,No Wire Hangers,tt0082766 fqM1ttqNA9k,1981.0,7,9,2011,Mommie Dearest,Christina's Not A Fan,tt0082766 km-nbIRZJYk,1968.0,7,9,2011,Romeo and Juliet,Art Thou a Man?,tt0063518 VToA3hOd3tM,1986.0,1,8,2011,Crocodile Dundee,Death Roll,tt0090555 kikLy1L-keE,1968.0,6,9,2011,Romeo and Juliet,Romeo Kills Tybalt,tt0063518 KQ6EyoqFWQM,1986.0,3,8,2011,Crocodile Dundee,Outback Meal,tt0090555 GvwHxn_ziD4,1986.0,5,8,2011,Crocodile Dundee,Mind Over Matter,tt0090555 bd165_YTXZQ,1986.0,2,8,2011,Crocodile Dundee,Skippy Gets Even,tt0090555 uw9V_NayRVY,1986.0,6,8,2011,Crocodile Dundee,Man's Country,tt0090555 _vW54lAtldI,1986.0,4,8,2011,Crocodile Dundee,That's A Knife,tt0090555 Ti9VcWX0vEs,1986.0,8,8,2011,Crocodile Dundee,Telephone Game,tt0090555 PuvONUFArdI,1983.0,9,9,2011,Terms of Endearment,Emma's Goodbyes,tt0086425 uYIe9o2jMSE,1986.0,7,8,2011,Crocodile Dundee,Bidet Mate,tt0090555 4jsUIgchHXU,1961.0,1,9,2011,Breakfast at Tiffany's,The Mean Reds,tt0054698 8G0BVEIjGyo,1974.0,2,9,2011,Chinatown,Jake Likes His Nose,tt0071315 7SZMEImptPQ,1974.0,1,9,2011,Chinatown,Screwing Like a Chinaman,tt0071315 kh0exWqvxeI,1974.0,4,9,2011,Chinatown,A Respectable Man,tt0071315 9y2y-Tkn7eg,1974.0,5,9,2011,Chinatown,Nosy Fella,tt0071315 3BB-PdHTQHg,1974.0,3,9,2011,Chinatown,Find the Girl,tt0071315 X6CEEc9g9vk,1974.0,8,9,2011,Chinatown,Evelyn's Last Stand,tt0071315 wnrdetFAo1o,1974.0,6,9,2011,Chinatown,"My Sister, My Daughter",tt0071315 bkH0i7fGo6E,1978.0,1,8,2011,Heaven Can Wait,Picking a New Body,tt0077663 35fEjN5m4ds,1978.0,4,8,2011,Heaven Can Wait,An Airplane Dream,tt0077663 NMi4ONkFym8,1978.0,2,8,2011,Heaven Can Wait,I Don't Frighten Anybody,tt0077663 KejnRkhhY14,1978.0,3,8,2011,Heaven Can Wait,He's Not There,tt0077663 SzVAyGry2Ic,1978.0,7,8,2011,Heaven Can Wait,How Heaven Works,tt0077663 nfcci0C95tA,1978.0,6,8,2011,Heaven Can Wait,Anxious Conspirators,tt0077663 EHJoH9IFboo,1978.0,5,8,2011,Heaven Can Wait,,tt0077663 EnIL4KXQI2g,1978.0,8,8,2011,Heaven Can Wait,Deja Vu,tt0077663 QvfJieP0KVA,1991.0,1,10,2011,Necessary Roughness,Andre's a Vegetarian,tt0102517 kvbYXGOZHnQ,1983.0,4,5,2011,Flashdance,Who's the Blonde?,tt0085549 2u8cHrJvlHQ,1983.0,3,5,2011,Flashdance,Alex Gets Comfortable,tt0085549 f4M5MT96FwY,1983.0,2,5,2011,Flashdance,Alex Doesn't Want Nick's Help,tt0085549 7eI5BfzRCY4,1983.0,1,5,2011,Flashdance,Nick Gets Turned Down,tt0085549 hP77V2X1Biw,1962.0,7,7,2011,The Man Who Shot Liberty Valance,Showdown with Liberty Valance,tt0056217 OQrzt7JI_DM,1991.0,1,8,2011,Regarding Henry,Henry Wants Ritz Crackers,tt0102768 P0GZAeKVtfg,1983.0,5,5,2011,Flashdance,You're Scared,tt0085549 MTs-HKiOQj8,1994.0,8,10,2011,Naked Gun 33 1/3: The Final Insult,"Come Here, Sexy",tt0110622 UUcH7wBp3G4,1991.0,3,8,2011,Regarding Henry,Messing Around in the Library,tt0102768 3lGZmV8_XxU,1991.0,4,8,2011,Regarding Henry,Teaching Dad to Read,tt0102768 vSt6OezOAwg,1999.0,2,10,2011,Superstar,Tree Lover,tt0167427 TbiSXYT1-SY,1962.0,5,7,2011,The Man Who Shot Liberty Valance,I Hate Tricks,tt0056217 IeRLdVndLpM,1999.0,1,10,2011,Superstar,I'm Not A Slut!,tt0167427 7I7OErGVS68,1961.0,2,9,2011,Breakfast at Tiffany's,Hot Party,tt0054698 Ts5FbF_2Wus,1995.0,10,10,2011,The Brady Bunch Movie,This Family is Our Home,tt0112572 ZKtFIgmoqoI,1987.0,3,10,2011,"Planes, Trains & Automobiles",Melted Speedometer,tt0093748 FuZNswuwAxM,1987.0,7,10,2011,"Planes, Trains & Automobiles",The Same Underwear,tt0093748 TZYf96eyE94,1991.0,9,10,2011,The Addams Family,Morticia Gets a Job,tt0101272 nl8PQAfhi28,1987.0,1,10,2011,"Planes, Trains & Automobiles",I Knew I Knew You,tt0093748 x12Dai43I8Y,1996.0,7,9,2011,The First Wives Club,The Club Comes to Order,tt0116313 U3sOMWjM7aU,2005.0,9,10,2011,Elizabethtown,See the Sunrise,tt0368709 Lp3r6mBRUXI,1991.0,1,10,2011,The Addams Family,Wednesday's Hero,tt0101272 qAhaYHHcYyk,1991.0,10,10,2011,The Addams Family,The Tortoise and the Hare,tt0101272 ppGd-2nEOVQ,1974.0,7,9,2011,Chinatown,Capable of Anything,tt0071315 BEG66-Lro7U,1995.0,7,9,2011,Clueless,Not a Mexican,tt0112697 xM2mL0y9i5M,1995.0,6,9,2011,Clueless,Violence in the Media,tt0112697 7uSz0mEtEsQ,1974.0,9,9,2011,Chinatown,It's,tt0071315 VgiH-x1eRpw,1987.0,6,6,2011,Some Kind of Wonderful,I Always Knew You Were Stupid,tt0094006 IzYmyWR3pJs,2003.0,7,10,2011,Dickie Roberts: Former Child Star,Running Into Leif,tt0325258 YzpjrMci980,2003.0,2,10,2011,Dickie Roberts: Former Child Star,Tell All Book,tt0325258 Clr9NbvwbhA,2005.0,2,10,2011,Elizabethtown,Last Goodbye,tt0368709 0rgfZzE6Ulg,2005.0,3,10,2011,Elizabethtown,Opening For Skynyrd,tt0368709 tcR7LgBVTNE,1993.0,1,10,2011,Coneheads,We Will Blend In,tt0106598 BnjXFpoLJfk,1984.0,7,7,2011,Footloose,Letting Go,tt0087277 2lVRcI0zsvw,1984.0,5,7,2011,Footloose,A Time to Dance,tt0087277 3eJ8A1W3jqM,2005.0,10,10,2011,Elizabethtown,"What ""They"" Say",tt0368709 402xHwQGVsE,1993.0,3,10,2011,Coneheads,At the Dentist's,tt0106598 XkvIlrLiy9o,1993.0,10,10,2011,Coneheads,Jehovah's Witnesses,tt0106598 2rCTuXAbyTI,1993.0,5,10,2011,Coneheads,Connie's Tattoo,tt0106598 jPsXJlylRvs,1993.0,2,10,2011,Coneheads,Illegal Aliens,tt0106598 mMRQdL_xvME,1993.0,9,10,2011,Coneheads,Stability & Contentment,tt0106598 MXkFgmQ2O-Q,1993.0,8,10,2011,Coneheads,Beldar's Fireworks,tt0106598 reJAzTE980s,1971.0,2,8,2011,Harold and Maude,Dating Questionnaire,tt0067185 7q-lFxf9-p8,1993.0,7,10,2011,Coneheads,Connie's Diving Meet,tt0106598 WuHkE1eU2AY,1971.0,1,8,2011,Harold and Maude,Harold Meets Maude,tt0067185 RU3F4QPUVQw,1971.0,4,8,2011,Harold and Maude,He Seems Very Nice,tt0067185 QVGOUxQrISc,1971.0,3,8,2011,Harold and Maude,Can I Give You a Lift?,tt0067185 ADl0wC_cAbk,1950.0,3,8,2011,Sunset Blvd.,Have They Forgotten What a Star Looks Like?,tt0043014 mzuVsHCLSOg,1971.0,6,8,2011,Harold and Maude,Backing Away From Life,tt0067185 6ooboieA_eE,1971.0,5,8,2011,Harold and Maude,It's Rather Hard to Find a Truck,tt0067185 0ZzNlA9uZ0g,1971.0,8,8,2011,Harold and Maude,Maude's 80th Birthday,tt0067185 LYppdp_2GCk,1971.0,7,8,2011,Harold and Maude,The Last Date,tt0067185 MvajGqWodvM,1950.0,6,8,2011,Sunset Blvd.,Meeting with Cecil B. DeMille,tt0043014 JWMjQEyfaQ8,1976.0,2,8,2011,Marathon Man,Incompetent with Women,tt0074860 cKADfQQILN8,1999.0,5,8,2011,Runaway Bride,What Maggie Wants,tt0163187 kzw1_2b-I7A,1976.0,4,8,2011,Marathon Man,Is It Safe?,tt0074860 lbaWyJwff-U,1968.0,9,9,2011,Romeo and Juliet,Juliet Joins Romeo,tt0063518 WziC9cSTCWc,1976.0,1,8,2011,Marathon Man,Hotel Room Attack,tt0074860 GZeehXqOYVI,1976.0,6,8,2011,Marathon Man,I'll Give You Szell,tt0074860 lC-DSaxzDzs,1976.0,5,8,2011,Marathon Man,I'm Not Going Into That Cavity,tt0074860 6nWWM8tTn84,1976.0,7,8,2011,Marathon Man,I Know Who You Are,tt0074860 SNruq88Dlpg,1976.0,3,8,2011,Marathon Man,Apartment Intruders,tt0074860 q5BzDVDotzI,2002.0,1,10,2011,Orange County,Shakespeare Movies,tt0273923 HDq2KcdmVU8,2002.0,6,10,2011,Orange County,Lance Starts the Revolution,tt0273923 2Tjoz_0I4Gk,1986.0,8,10,2011,Gung Ho,Hunt Fights Oishi,tt0091159 SdNqYGbc0tU,1992.0,4,10,2011,Leap of Faith,All That Boy Has is Faith,tt0104695 MkMqRDBKUwM,1992.0,3,10,2011,Leap of Faith,Got Trouble?,tt0104695 PZGS6N3zG4o,1976.0,8,8,2011,Marathon Man,Swallowing the Diamonds,tt0074860 B6iOniIX5eA,1992.0,7,10,2011,Leap of Faith,Butterflies,tt0104695 VSo45ZD29oo,1986.0,6,10,2011,Gung Ho,Morning Swim,tt0091159 Q1vQUG6GFNE,1992.0,8,10,2011,Leap of Faith,Boyd Walks,tt0104695 e6kJsyysbSM,1992.0,10,10,2011,Leap of Faith,The Rain Comes,tt0104695 NgEOTc2qgVg,1992.0,6,10,2011,Leap of Faith,You Need a Real Sinner,tt0104695 P-4jKZ3X1zQ,1970.0,6,10,2011,Love Story,Love Means Never Having to Say You're Sorry,tt0066011 hKNeFHBPgRo,1986.0,5,10,2011,Gung Ho,Superior Quality Workers,tt0091159 faaBOJDQ_Lc,2002.0,3,8,2011,Crossroads,On a Road Trip with a Killer,tt0275022 z0ogqhF4ems,2002.0,1,8,2011,Crossroads,Two Virgins,tt0275022 nYb42fv8pMU,1986.0,2,10,2011,Gung Ho,Is a Frog's Ass Watertight?,tt0091159 uvtLHXUjt_o,1970.0,4,10,2011,Love Story,You Want to Marry Me?,tt0066011 qb4Rfj1wp0Q,1970.0,1,10,2011,Love Story,I Like Your Body,tt0066011 nOLCO4_AKiE,1970.0,3,10,2011,Love Story,Deeper in Love,tt0066011 7e6DCyXotE0,1970.0,8,10,2011,Love Story,Be Strong and Merry,tt0066011 ee6yIS-0NrI,2002.0,7,8,2011,Crossroads,"I'm Not a Girl, Not Yet a Woman",tt0275022 Tsz_tamjpmc,1970.0,9,10,2011,Love Story,Screw Paris,tt0066011 hZzQx9cEjhQ,1970.0,2,10,2011,Love Story,The Courage to Care,tt0066011 2fwZfyxiMFY,2002.0,8,8,2011,Crossroads,Let Me Go,tt0275022 i75piQgUKa0,1970.0,10,10,2011,Love Story,Oliver and His Father,tt0066011 euxVy9j6TTU,2002.0,4,8,2011,Crossroads,Trailer Trash Sleaze,tt0275022 WMIho_dolCA,2002.0,6,8,2011,Crossroads,Sunset Camping,tt0275022 8j5sn2UyTp4,2007.0,1,9,2011,Into the Wild,Two Years He Walks the Earth,tt0758758 37oJqWp4rJM,2003.0,3,10,2011,The School of Rock,The Man,tt0332379 jEHoNJLqbnk,2002.0,5,8,2011,Crossroads,Fat Camp,tt0275022 FhPUGeCMKCE,2003.0,1,10,2011,The School of Rock,Dewey's Code of Conduct,tt0332379 Ed2KRddgv-4,2003.0,6,10,2011,The School of Rock,Creating Musical Fusion,tt0332379 zIC2aMlqEZk,1991.0,6,10,2011,The Addams Family,Gomez Loves Morticia,tt0101272 kdkVnZsOgJA,2003.0,7,10,2011,The School of Rock,Telling Off Schneebly,tt0332379 fq_QSi29iGQ,1991.0,5,10,2011,The Addams Family,Calling Fester,tt0101272 AnPDhq6O8jo,1996.0,3,9,2011,The First Wives Club,Elise Liquidates,tt0116313 EnrWZiqgv1E,1991.0,4,10,2011,The Addams Family,The Addams Credo,tt0101272 uDimGOcZ24U,1987.0,2,6,2011,Some Kind of Wonderful,Duncan Crashes the Party,tt0094006 l-PmluGC2wk,1953.0,1,10,2011,Roman Holiday,Take a Holiday,tt0046250 MgtXKQbmYRM,1987.0,1,6,2011,Some Kind of Wonderful,Radiating Sexual Vibes,tt0094006 fF12SZcPQ1s,2000.0,1,6,2011,The Ladies Man,Blooping Bloopie,tt0213790 exObFY-sHQw,1962.0,1,7,2011,The Man Who Shot Liberty Valance,"Ransom Stoddard, Attorney at Law",tt0056217 3H0V4XiAyv8,1983.0,1,9,2011,Terms of Endearment,Emma's Pregnant,tt0086425 akrTlYc40XE,1994.0,6,10,2011,Naked Gun 33 1/3: The Final Insult,Mommy Court,tt0110622 YL19Rvtea4k,1953.0,4,10,2011,Roman Holiday,I Don't Know How to Say Goodbye,tt0046250 oWBYpwZ5-AM,1991.0,7,8,2011,Regarding Henry,Always Working,tt0102768 dAMqMErPIIY,1994.0,1,10,2011,Naked Gun 33 1/3: The Final Insult,Self-Defense,tt0110622 8r_dXbWf2Aw,1994.0,5,10,2011,Naked Gun 33 1/3: The Final Insult,Sperm Bank,tt0110622 JBA3q4S1LE8,1968.0,7,8,2011,Rosemary's Baby,It's Alive,tt0063522 10fKN4nHNd0,1991.0,2,8,2011,Regarding Henry,The Hospital is My Home,tt0102768 l1NB8NQc7wU,1962.0,2,7,2011,The Man Who Shot Liberty Valance,Burning Down Dreams,tt0056217 Co2dpNsHMKo,1991.0,6,8,2011,Regarding Henry,Henry is Shot,tt0102768 koPEnaz0Qm8,1988.0,8,10,2011,The Naked Gun: From the Files of Police Squad!,Runaway Car,tt0095705 rngwd6ExGmc,1991.0,8,8,2011,Regarding Henry,Public Affection,tt0102768 ctrJ0-TLUHQ,1968.0,6,8,2011,Rosemary's Baby,They Want My Baby,tt0063522 63lE3AOBgeA,1994.0,4,10,2011,Naked Gun 33 1/3: The Final Insult,Mastermind,tt0110622 PsqrgV2RCCM,2005.0,3,9,2011,The Longest Yard,He Broked-ed My Nose,tt0398165 b02H0dW2xf8,1980.0,1,7,2011,Ordinary People,Conrad's Breakdown,tt0081283 IZS7zpXftHA,1980.0,2,7,2011,Ordinary People,Conrad's Breakthrough,tt0081283 lKTGkLcn3yY,1968.0,5,9,2011,Romeo and Juliet,A Plague on Both Your Houses,tt0063518 xSQxtMWJzGQ,1976.0,9,9,2011,The Bad News Bears,Wait 'Til Next Year!,tt0074174 OKn00A40uWE,1981.0,8,9,2011,Mommie Dearest,Rodeo Queen,tt0082766 OZLVlajiihI,1968.0,3,9,2011,Romeo and Juliet,"Wherefore Art Thou, Romeo?",tt0063518 O6KVfajjyGs,1968.0,8,9,2011,Romeo and Juliet,"Thus With a Kiss, I Die",tt0063518 ZMplnAKdBsA,1980.0,1,9,2011,Urban Cowboy,Hitching a Ride,tt0081696 kflvHGnIkoA,1996.0,4,9,2011,The First Wives Club,Thrilling Escape,tt0116313 4SNTodFS0h4,2002.0,10,10,2011,Orange County,An Expert at Excaping,tt0273923 0SbVnjlPhjY,1953.0,6,10,2011,Roman Holiday,Princess Ann's Breakdown,tt0046250 ZEbN6Vnr1g8,1991.0,2,10,2011,Necessary Roughness,Wally's Pep Talk,tt0102517 S6UlqI_pZr4,1997.0,1,7,2011,The Rainmaker,He'll Kill Me,tt0119978 7CkTYPnJS0E,1991.0,1,10,2011,The Naked Gun 2½: The Smell of Fear,Pulling The Plug,tt0102510 14Fq0FgsKfw,1997.0,5,7,2011,The Rainmaker,Cliff Comes Home,tt0119978 lI-ty9MfICM,1991.0,6,10,2011,The Naked Gun 2½: The Smell of Fear,What A Drag,tt0102510 PHcwHxzDQDs,2000.0,6,8,2011,Wonder Boys,Fit as a Fiddle,tt0185014 fsWhDcon8aQ,1994.0,9,10,2011,Naked Gun 33 1/3: The Final Insult,Prison Break,tt0110622 R9WGPRckS1s,1968.0,3,8,2011,Rosemary's Baby,No Coincidence,tt0063522 NP5IK_pn1eY,1988.0,7,10,2011,The Naked Gun: From the Files of Police Squad!,Apartment Acrobatics,tt0095705 1BkNaaNscqU,1980.0,6,7,2011,Ordinary People,Mothers Don't Hate Their Sons,tt0081283 36T5BEpn3dA,1988.0,6,10,2011,The Naked Gun: From the Files of Police Squad!,Priceless Damage,tt0095705 hVxEoBe1UVg,1985.0,6,9,2011,Witness,I'm Not a Child,tt0090329 1KBWO9Js23k,1980.0,3,7,2011,Ordinary People,We Never Had a Pet,tt0081283 d2zY1WRtG94,1993.0,4,7,2011,What's Eating Gilbert Grape,Because He's Gilbert,tt0108550 nWRxPDhd3d0,1987.0,6,10,2011,"Planes, Trains & Automobiles",A F***ing Car,tt0093748 dbgOACJpZg0,1987.0,2,10,2011,"Planes, Trains & Automobiles",Owen,tt0093748 YwM7NgPE5lw,1994.0,7,10,2011,Naked Gun 33 1/3: The Final Insult,The Untouchables,tt0110622 Rd5dYQHoZS0,1987.0,9,10,2011,"Planes, Trains & Automobiles",My Dogs Are Barking,tt0093748 zhWJUB-Sub8,2001.0,7,9,2011,Vanilla Sky,Bros,tt0259711 sGh6m5Ilw_Y,2001.0,4,9,2011,Vanilla Sky,Every Passing Minute,tt0259711 nhomGXOMYmc,1996.0,6,9,2011,The First Wives Club,Sweet Revenge,tt0116313 Qg4NBOIbwXc,2002.0,2,10,2011,Orange County,I Didn't Get In?,tt0273923 ONRLZIY7gbs,1976.0,8,9,2011,The Bad News Bears,Lupus Makes the Catch,tt0074174 CWN1xWdKbHY,1976.0,1,9,2011,The Bad News Bears,There's Chocolate on the Ball,tt0074174 dm61r3qnPKQ,1976.0,2,9,2011,The Bad News Bears,A Girl Ballplayer,tt0074174 KeX9BXnD6D4,2001.0,6,10,2011,Zoolander,I'm Not Your Brah,tt0196229 Adh_8pva10k,1976.0,7,9,2011,The Bad News Bears,"Throw the Ball, Joey!",tt0074174 jMTT0LW0M_Y,1950.0,8,8,2011,Sunset Blvd.,"Mr. DeMille, I'm Ready for My Close-Up",tt0043014 4OgldRzYvD4,2007.0,7,9,2011,Zodiac,Paul Avery's Houseboat,tt0443706 wM2NQimHkTY,1995.0,2,10,2011,The Brady Bunch Movie,Breakfast with the Bradys,tt0112572 HduXGYkoc_w,1950.0,1,8,2011,Sunset Blvd.,Floating in a Pool,tt0043014 bb_uXwPiNxc,1950.0,5,8,2011,Sunset Blvd.,There Are No Other Guests,tt0043014 vpHEQqApoAY,2000.0,4,6,2011,The Ladies Man,The First V.S.A. Meeting,tt0213790 rGS4bE0G3yY,1987.0,4,6,2011,Some Kind of Wonderful,Getting Into Amanda Jones,tt0094006 A3xuABrdKis,1988.0,9,10,2011,Scrooged,Death in an Elevator,tt0096061 5LApVevs2II,2000.0,9,9,2011,Shaft,Shoot Him,tt0162650 mNQx3KPxifQ,2000.0,5,6,2011,The Ladies Man,I Will Crush You,tt0213790 H2uHBhKTSe0,2001.0,9,10,2011,Zoolander,Computer Experts,tt0196229 plqzeUB9B-w,1983.0,4,9,2011,Terms of Endearment,Emma's Pain Shot,tt0086425 QbSFxlfuf9s,1995.0,4,10,2011,Tommy Boy,The Deer Wakes Up,tt0114694 S2XvxDaIwCw,1995.0,2,10,2011,Tommy Boy,Desktop Demo,tt0114694 cjkkKO5Gsno,1990.0,6,10,2011,Ghost,Get Off My Train,tt0099653 Rs0tk-z4b2c,2004.0,4,10,2011,Bride and Prejudice,A Visit From Mr. Kohli,tt0361411 Xm-UligdIrQ,1997.0,7,12,2011,Scream 2,One of the Big Boys,tt0120082 odrqxoaNPC0,1997.0,9,12,2011,Scream 2,Reckless Driving,tt0120082 rWeaYCoh1qk,1997.0,5,12,2011,Scream 2,The Rules for Sequels,tt0120082 kaXM8DMSm-g,1997.0,11,12,2011,Scream 2,A Mother's Love,tt0120082 Mi3s2DWKiUo,1997.0,8,12,2011,Scream 2,Stabbed in the Back,tt0120082 XzKYNZY9Hpk,1997.0,2,12,2011,Scream 2,Sequels Suck!,tt0120082 2z8XAo4Lpuw,2010.0,2,-1,2011,Saint,A Ghostly Gang,tt1300851 b_uKO3N_JJQ,2010.0,1,-1,2011,Saint,The Return of St. Niklas,tt1300851 ZtUB8XCrqPg,1995.0,1,10,2011,Dead Man,On the Train to Hell,tt0112817 bcs2En6tGRw,2002.0,11,12,2011,Equilibrium,Face Off,tt0238380 W-T51n6etp8,1995.0,4,10,2011,Dead Man,The Hunt is On,tt0112817 LqQJOr4Rx5k,2002.0,12,12,2011,Equilibrium,Final Fight,tt0238380 COhtZbBhOYU,2002.0,6,12,2011,Equilibrium,Cleric Practice,tt0238380 2mmq2hx0tl0,1995.0,6,10,2011,Dead Man,Philistine Shootout,tt0112817 cglY-gszmNI,1995.0,3,10,2011,Dead Man,This Is America,tt0112817 GJkn0wEMc4w,2009.0,10,10,2011,G.I. Joe: The Rise of Cobra,You Will Call Me Commander,tt1046173 vBH4Hv39SEo,1995.0,5,10,2011,Dead Man,"Big George, Sally, & Benmont",tt0112817 t2RUtqJGxlw,1995.0,8,10,2011,Dead Man,You Know My Poetry,tt0112817 wAZPdmo7LVA,1995.0,7,10,2011,Dead Man,A Quest For Vision,tt0112817 4weEXyoXZKs,2002.0,10,12,2011,Equilibrium,Not Without Incident,tt0238380 lh0yfYUCkIw,1995.0,9,10,2011,Dead Man,Tobacco & An Autograph,tt0112817 tO1oeKVFlPk,1995.0,10,10,2011,Dead Man,A Burial Voyage,tt0112817 DH80L45zXJw,1995.0,2,10,2011,Dead Man,Mr. Dickinson,tt0112817 Tb-PscLsY9I,2011.0,1,-1,2011,The Thing,Escapes,tt0905372 pobSophb2UE,2011.0,2,-1,2011,The Thing,Has Replicated a Person,tt0905372 fy-Ocaxlk1Y,1999.0,2,9,2011,South Park: Bigger Longer & Uncut,Killing Kenny,tt0158983 roA5fvzJsho,2011.0,3,-1,2011,The Thing,You Could Be One of Those Things,tt0905372 u6GTs78NHzQ,2011.0,4,-1,2011,The Thing,They're Inside,tt0905372 W-qUR8qovy8,2011.0,1,-1,2011,Dream House,It's Just Your Reflection,tt1462041 x0ce_01UW_Q,2011.0,2,-1,2011,Dream House,Who is Peter Ward?,tt1462041 WpCGV48yiNQ,2011.0,3,-1,2011,Dream House,What is That Out There?,tt1462041 DXSoxAHjqRg,2003.0,8,10,2011,How to Lose a Guy in 10 Days,He'll Do Anything,tt0251127 EGa3R9VvDVs,1993.0,6,10,2011,Wayne's World 2,The Leprechaun,tt0108525 TsIQj8gZeo0,1983.0,10,10,2011,Trading Places,It Was the Dukes,tt0086465 MQEwJdhfddk,1992.0,4,10,2011,Wayne's World,Exciting Delaware,tt0105793 oxLuG0BYYwE,2003.0,1,10,2011,How to Lose a Guy in 10 Days,How It's Done,tt0251127 IAsBghop-hw,1987.0,5,8,2011,Fatal Attraction,Alex Comes Over,tt0093010 Ev0Dm5qX0bU,1993.0,7,10,2011,Wayne's World 2,Fighting Cassandra's Dad,tt0108525 6eWsFFQP0gA,1993.0,10,10,2011,Wayne's World 2,A Real Actor,tt0108525 NfcmrwPNn7A,1989.0,6,10,2011,Major League,The Thrill of Defeat,tt0097815 nPH9cWTJgdU,1989.0,10,10,2011,Major League,The Indians Win It,tt0097815 P0t4ruBVxSA,2002.0,8,10,2011,Jackass: The Movie,Yellow Snow Cone,tt0322802 QhDRkf_XGVw,2001.0,3,9,2011,Lara Croft: Tomb Raider,Defending the Manor,tt0146316 5pJOdrchPlo,1980.0,5,10,2011,The Elephant Man,I've Tried So Hard to be Good,tt0080678 AqWLMW73b6Y,1980.0,3,10,2011,The Elephant Man,I Want Him Back,tt0080678 Id6oS3L-D9A,1956.0,7,10,2011,The Ten Commandments,Moses Presents the Ten Commandments,tt0049833 DXjOOS4zAq4,1956.0,4,10,2011,The Ten Commandments,You Will Be My Wife,tt0049833 5Gc9pviBlJA,2001.0,1,9,2011,Lara Croft: Tomb Raider,The Training Robot,tt0146316 Ui8Y0Pqlg_4,2007.0,9,9,2011,Into the Wild,Final Moments,tt0758758 SY_94CSMlyE,2007.0,5,9,2011,Into the Wild,Family Happiness,tt0758758 kHq3y20HhRk,2009.0,1,10,2011,G.I. Joe: The Rise of Cobra,Cobra Strikes First,tt1046173 TReOE4LKcT8,2009.0,4,10,2011,G.I. Joe: The Rise of Cobra,Paris Pursuit,tt1046173 5ps3fGNzpd0,2009.0,6,10,2011,G.I. Joe: The Rise of Cobra,The Eiffel Tower Falls,tt1046173 cg7wSv4ALRo,2009.0,7,10,2011,G.I. Joe: The Rise of Cobra,Snake Eyes vs. Storm Shadow,tt1046173 XYumOva6Xr0,2009.0,9,10,2011,G.I. Joe: The Rise of Cobra,Yo Joe!,tt1046173 rQbj9uvYL8I,1980.0,2,10,2011,Airplane!,Automatic Pilot,tt0080339 y_7o1pAwhDA,1980.0,4,10,2011,Airplane!,Girl Scout Tussle,tt0080339 FNkpIDBtC2c,1980.0,6,10,2011,Airplane!,Get a Hold of Yourself!,tt0080339 3SLoG8B0HTg,1987.0,10,10,2011,Beverly Hills Cop 2,Lutz Gets Fired,tt0092644 Qse_uMLvdwI,1987.0,4,10,2011,Beverly Hills Cop 2,Final Confrontation,tt0092644 36IxAWko46A,1987.0,5,10,2011,Beverly Hills Cop 2,F*** Rambo,tt0092644 EbxlqGXQeEM,1996.0,10,10,2011,Beavis and Butt-Head Do America,Never Gonna Score,tt0115641 yDq42VIYVnc,1996.0,3,10,2011,Beavis and Butt-Head Do America,Trunk Jumping,tt0115641 Y_SP86WfXZ0,1996.0,6,10,2011,Beavis and Butt-Head Do America,Do My Wife,tt0115641 YQdnuL6YRBc,1961.0,7,9,2011,Breakfast at Tiffany's,Stealing for the Thrill,tt0054698 UBU2McO7-GY,1987.0,2,10,2011,Beverly Hills Cop 2,Shooting Gallery,tt0092644 1KkrlhoFbBM,2006.0,9,10,2011,An Inconvenient Truth,Greenland,tt0497116 SykyfXBJgNg,1961.0,5,9,2011,Breakfast at Tiffany's,Ten Dollars at Tiffany's,tt0054698 9tkDK2mZlOo,2006.0,5,10,2011,An Inconvenient Truth,Drastic Rise in CO2 Concentration,tt0497116 OqVyRa1iuMc,2006.0,2,10,2011,An Inconvenient Truth,None Like it Hot,tt0497116 NH6x4IDEGKU,1996.0,6,10,2011,Emma,Done with Mr. Elton,tt0116191 p43EnAUd3-w,2006.0,8,10,2011,Nacho Libre,Nacho is Revealed,tt0457510 lc0UIhNuudQ,2006.0,7,10,2011,Nacho Libre,I Hate Orphans!,tt0457510 tkRvLFdrbTU,2006.0,2,10,2011,Nacho Libre,Meeting Esqueleto,tt0457510 r96GiSht1uQ,1996.0,8,12,2011,Walking and Talking,Flirting and Reminiscing,tt0118113 tTc26ZemSGY,1996.0,6,12,2011,Walking and Talking,A Mole Problem,tt0118113 nTOUiTegqrA,2006.0,10,10,2011,Nacho Libre,Encarnación,tt0457510 hHWcoaM_59E,2006.0,1,10,2011,Nacho Libre,Buttload of Favorites,tt0457510 AMQgbNK7fGs,2006.0,6,10,2011,Nacho Libre,Party for Ramses,tt0457510 ME2mnzfCdug,2006.0,4,10,2011,Nacho Libre,Tag Team Terrors,tt0457510 EPweJNJOQz8,2006.0,9,10,2011,Nacho Libre,"Big Kiss, Little Hug",tt0457510 aoXg7SSmGyk,2006.0,5,10,2011,Nacho Libre,Listen to Ignacio,tt0457510 h7wEE6Yx7IQ,2006.0,3,10,2011,Nacho Libre,Stretchy Pants,tt0457510 JHkM4OUkF8E,1990.0,2,9,2011,Days of Thunder,Go to the Outside,tt0099371 HOldh4ePgnA,1990.0,4,9,2011,Days of Thunder,Cole's Crash,tt0099371 ISs3m1aHZxY,1990.0,3,9,2011,Days of Thunder,Concealed Weapon,tt0099371 Z9mzzABiQUo,1990.0,7,9,2011,Days of Thunder,Wheeler's Lowdown Racing,tt0099371 0SSgv8t0QbM,1990.0,6,9,2011,Days of Thunder,A Very Thorough Physical,tt0099371 guQnnPJgtUo,1990.0,5,9,2011,Days of Thunder,Not My Specialty,tt0099371 0MoJuaS5x14,1999.0,7,9,2011,Election,McCallister Must Stop Tracy Now,tt0126886 e77ybggTHHg,1990.0,8,9,2011,Days of Thunder,Drive Through It,tt0099371 lKE3zh_Hxqw,1984.0,4,10,2011,Beverly Hills Cop,Foul-Mouthed?,tt0086960 G45X6fSk1do,1990.0,9,9,2011,Days of Thunder,This Guy's Going Down,tt0099371 JVZwoLZgrRs,1984.0,3,10,2011,Beverly Hills Cop,Thrown Out of a Window,tt0086960 Ad5ZJcmYc_k,1984.0,9,10,2011,Beverly Hills Cop,Shootout at Maitland's,tt0086960 2dYyyQdjgLI,1984.0,10,10,2011,Beverly Hills Cop,Axel Gets His Man,tt0086960 HmNJ03s2ZuM,1984.0,8,10,2011,Beverly Hills Cop,A Message for Victor,tt0086960 UTIjIC00VwI,1984.0,1,10,2011,Beverly Hills Cop,Axel Gets a Room,tt0086960 GHZWWFmaFcI,1984.0,2,10,2011,Beverly Hills Cop,Serge & Achmed,tt0086960 ycoe7us5bbM,1984.0,6,10,2011,Beverly Hills Cop,Customs Inspector,tt0086960 8w_naC0saGI,1984.0,7,10,2011,Beverly Hills Cop,Letting It Flow,tt0086960 6y-pdLyZPJ8,1984.0,5,10,2011,Beverly Hills Cop,A Couple of Bananas,tt0086960 KnhDO1G0ieY,1992.0,1,9,2011,Patriot Games,London Ambush,tt0105112 tB9_C5zQLZw,1992.0,2,9,2011,Patriot Games,Ryan's Shadow,tt0105112 QiuXl1cPfrU,1992.0,5,9,2011,Patriot Games,"Sorry, Dennis",tt0105112 t8loKEw-wlA,1992.0,6,9,2011,Patriot Games,Primary Target,tt0105112 krqNvqvhvp0,1992.0,7,9,2011,Patriot Games,Night Vision,tt0105112 yisFmY4OAbs,1999.0,1,9,2011,Election,"Apples, Oranges and Democracy",tt0126886 6u3GAQgZpww,1999.0,2,9,2011,Election,Tracy Flick Isn't Upset,tt0126886 Nj7HiMh778M,1992.0,8,9,2011,Patriot Games,Out of the Cellar,tt0105112 eh3TXsx8B40,1999.0,4,9,2011,Election,Who Cares About This Stupid ?,tt0126886 0eJpmeoLXLg,1999.0,6,9,2011,Election,Pre- Prayers,tt0126886 kvAByCIqoOM,1992.0,9,9,2011,Patriot Games,Speedboat Battle,tt0105112 OYt6asKb5bw,1999.0,9,9,2011,Election,Seeing Tracy Again,tt0126886 nV9U23YXgiY,1992.0,2,10,2011,Wayne's World,Wayne Speaks Cantonese,tt0105793 FPc4QZqz4ek,1992.0,10,10,2011,Wayne's World,You Kiss Your Mother With That Mouth?,tt0105793 CW0Yfk66UxE,1992.0,1,10,2011,Wayne's World,Wayne Has a Dream,tt0105793 KjB6r-HDDI0,1992.0,6,10,2011,Wayne's World,I Will Not Bow to Any Sponsor,tt0105793 KPxDoFbsvWA,1986.0,1,8,2011,Top Gun,Watch the Birdie,tt0092099 vdHBsWXaHN8,1986.0,4,8,2011,Top Gun,Buzzing the Tower,tt0092099 wUZxSf_P2r0,1986.0,3,8,2011,Top Gun,I Was Inverted,tt0092099 WK--S8kuxOI,1992.0,9,10,2011,Wayne's World,Sphincter Boy,tt0105793 o1nS19OOD-U,1986.0,6,8,2011,Top Gun,A Confidence Problem,tt0092099 fC976fuQm4E,1986.0,5,8,2011,Top Gun,Maverick vs. Viper,tt0092099 uvFc0EPRSI4,1986.0,7,8,2011,Top Gun,Final Dogfight,tt0092099 GSSXEGoO53Y,1997.0,5,9,2011,Event Horizon,Save Yourself from Hell,tt0119081 rF6a1GG1taY,1997.0,7,9,2011,Event Horizon,Sucked Out,tt0119081 rAchA32z2zM,1997.0,6,9,2011,Event Horizon,Pure Evil,tt0119081 9JHi4K9XfzM,1997.0,1,9,2011,Event Horizon,Stasis Nightmare,tt0119081 EHKfoWh8t6o,1997.0,2,9,2011,Event Horizon,The Core,tt0119081 -nzW1T89qH4,1997.0,9,9,2011,Event Horizon,The is Destroyed,tt0119081 W8AmENQ7_ik,1997.0,3,9,2011,Event Horizon,Strange Manifestations,tt0119081 giiuqTdBSTc,1997.0,8,9,2011,Event Horizon,To Hell,tt0119081 3LEa0FN1bf8,1997.0,4,9,2011,Event Horizon,Rescuing Baby Bear,tt0119081 Mg7RrLU3Uq8,2003.0,4,10,2011,How to Lose a Guy in 10 Days,Princess Sophia,tt0251127 HcHdy_Vc1DY,2003.0,6,10,2011,How to Lose a Guy in 10 Days,Our Family Album,tt0251127 z3dwJ734jbE,2003.0,2,10,2011,How to Lose a Guy in 10 Days,Mary Had a Little Lamb,tt0251127 cHUML0EZ1BQ,1988.0,6,10,2011,Coming to America,Akeem Goes to the Barber,tt0094898 a_Txm9dQuhM,1988.0,3,10,2011,Coming to America,New Digs,tt0094898 dI7M4Om2ITw,1988.0,7,10,2011,Coming to America,Akeem Talks Football,tt0094898 m7z0sOBPx3g,1988.0,5,10,2011,Coming to America,Akeem Meets Lisa,tt0094898 Md0LvQ9gANc,1988.0,9,10,2011,Coming to America,Semmi Writes Home,tt0094898 zHjeOiB-cxY,1993.0,3,10,2011,Wayne's World 2,Scouting the Location,tt0108525 9vvMKxDvAt8,1993.0,4,10,2011,Wayne's World 2,The Partial Ocular Albino,tt0108525 ExG7Ut6DJ1E,1988.0,4,10,2011,Coming to America,Miss Black Awareness Pageant,tt0094898 f2ygGoHSuPQ,1988.0,1,10,2011,Coming to America,Sparring Session,tt0094898 sZywE0AT1qY,1988.0,2,10,2011,Coming to America,The Old Men Discuss Boxing,tt0094898 bOR38552MJA,1999.0,3,9,2011,South Park: Bigger Longer & Uncut,Blame Canada,tt0158983 _E62a_RCtX4,1993.0,2,10,2011,Wayne's World 2,The Same Dream,tt0108525 g9vPtCW9pJ8,1999.0,1,10,2011,Sleepy Hollow,Death of the Hessian Horseman,tt0162661 rhtLoA3X21s,1993.0,8,10,2011,Wayne's World 2,Del's Plan for Waynestock,tt0108525 6wJXBUfcIOE,1999.0,1,9,2011,South Park: Bigger Longer & Uncut,"It's Easy, M'Kay",tt0158983 4WcOcgc3WN4,1999.0,5,9,2011,South Park: Bigger Longer & Uncut,Aboot Canadians,tt0158983 xbga181nm84,1982.0,2,9,2011,48 Hrs.,Interrogating Luther,tt0083511 1DNyLD2SRjA,1999.0,4,9,2011,South Park: Bigger Longer & Uncut,Terrance and Phillip on Conan,tt0158983 kTk2jXiuo9s,1999.0,9,9,2011,South Park: Bigger Longer & Uncut,Dumping Saddam,tt0158983 HrvHeKH9kLg,1982.0,3,9,2011,48 Hrs.,Dinner for Reggie,tt0083511 IZQFJ6hZNJc,1988.0,8,10,2011,Coming to America,Unhappy Meal,tt0094898 Yg3w_8_fwIc,1987.0,1,8,2011,Fatal Attraction,Lying in the Park,tt0093010 ACV4Krf8JTQ,1988.0,10,10,2011,Coming to America,The King Has Entered the Building,tt0094898 7msu2ugXGW8,1982.0,4,9,2011,48 Hrs.,Making A Bet,tt0083511 s_CwatXdxUA,1946.0,4,9,2011,It's a Wonderful Life,Careful What You Wish For,tt0038650 sJ9nOmRn6fg,1987.0,3,8,2011,Fatal Attraction,Bloody Farewell,tt0093010 fBaXUdPo_2g,1987.0,2,8,2011,Fatal Attraction,A Married Man,tt0093010 kvzIRuIg288,1982.0,6,9,2011,48 Hrs.,I Hate Rednecks,tt0083511 SZ5YPfWeYzA,1987.0,4,8,2011,Fatal Attraction,Alex Is Pregnant,tt0093010 wsSlB31dwiE,1982.0,7,9,2011,48 Hrs.,Fighting Dirty,tt0083511 ALGW3PA12XE,1982.0,8,9,2011,48 Hrs.,A Bus To Catch,tt0083511 JS6Gw6NVgRg,1987.0,6,8,2011,Fatal Attraction,Not Going to Be Ignored,tt0093010 FWEQfN39sTo,1982.0,9,9,2011,48 Hrs.,End of Story,tt0083511 28C0A4CEUsc,1982.0,5,9,2011,48 Hrs.,Black Russian,tt0083511 ecWhXP2jM28,1987.0,7,8,2011,Fatal Attraction,Boiled Bunny,tt0093010 hd521kE7f0A,1987.0,8,8,2011,Fatal Attraction,Bathroom Brawl,tt0093010 pKEwvDFqMGw,1995.0,2,9,2011,Braveheart,Rescuing Murron,tt0112573 gr_OpFxCx-A,1995.0,3,9,2011,Braveheart,They Will Never Take Our Freedom,tt0112573 ETcMNeJTfOs,1995.0,1,9,2011,Braveheart,Beautiful In Any Language,tt0112573 PD5Imb7vWSc,1995.0,4,9,2011,Braveheart,Withstanding the Charge,tt0112573 QJVsS-vIDdc,1995.0,5,9,2011,Braveheart,The Battle of Stirling,tt0112573 RN7YPq8i4w0,1999.0,6,10,2011,Sleepy Hollow,The Horseman Emerges,tt0162661 1KdjUNIcP8k,1995.0,6,9,2011,Braveheart,Revenge in the Night,tt0112573 sa8E_rZcXho,1995.0,7,9,2011,Braveheart,The Love of a Princess,tt0112573 X3mBsrFYwjk,1999.0,8,10,2011,Sleepy Hollow,Van Brunt's Last Battle,tt0162661 2rha-6qG4OQ,1946.0,1,9,2011,It's a Wonderful Life,Pool Party,tt0038650 2k0mUKGYUQE,1999.0,2,10,2011,Sleepy Hollow,The Devil's Fire,tt0162661 31Q9JbHAzjA,1999.0,4,10,2011,Sleepy Hollow,Beheading the Magistrate,tt0162661 kTXlnI1XaSY,1995.0,8,9,2011,Braveheart,To Really Live,tt0112573 EcOENbnXxQ4,1999.0,5,10,2011,Sleepy Hollow,The Tree of the Dead,tt0162661 i6zGEBhJMHA,1995.0,9,9,2011,Braveheart,Freedom!,tt0112573 9fIrXo0raaU,1946.0,3,9,2011,It's a Wonderful Life,Angel Second Class,tt0038650 SI1K-_VTFrQ,1999.0,3,10,2011,Sleepy Hollow,First Encounter on the Bridge,tt0162661 TNQ76UyurLA,1946.0,5,9,2011,It's a Wonderful Life,A Great Gift,tt0038650 ShQp2Qp6o7s,1999.0,7,10,2011,Sleepy Hollow,Beheading the Killians,tt0162661 ttIN2nLcy6s,1993.0,1,8,2011,Indecent Proposal,Kiss the Dice,tt0107211 X4xJLbsa4PQ,1946.0,6,9,2011,It's a Wonderful Life,Vanishing Act,tt0038650 6SLDMMGzkyI,1946.0,7,9,2011,It's a Wonderful Life,Mary The Old Maid,tt0038650 u56OqFjs1dg,1946.0,8,9,2011,It's a Wonderful Life,"Back To Life, Back To Reality",tt0038650 dIUK_wn5If4,1999.0,10,10,2011,Sleepy Hollow,Carriage Battle,tt0162661 4WNfrd5hsdI,1993.0,5,8,2011,Indecent Proposal,I Don't Trust You,tt0107211 TSaU7qATRHM,1999.0,9,10,2011,Sleepy Hollow,Safe in the Church,tt0162661 wJCqOhdzatA,1993.0,3,8,2011,Indecent Proposal,Never Negotiate Without Your Lawyer,tt0107211 OfUV-F9jFro,1946.0,9,9,2011,It's a Wonderful Life,Every Time a Bell Rings an Angel Gets His Wings,tt0038650 5rivvvWeYh4,1993.0,7,8,2011,Indecent Proposal,David Talks About the Past,tt0107211 ehdAEyAGBEc,1993.0,2,8,2011,Indecent Proposal,John's,tt0107211 mklRbf1JoGY,1993.0,6,8,2011,Indecent Proposal,The Girl Who Got Away,tt0107211 j6gLJ4_sfG8,1968.0,6,8,2011,Once Upon a Time in the West,What You're After,tt0064116 gQubL9r0qAQ,1993.0,4,8,2011,Indecent Proposal,John Places a Bet,tt0107211 pHxvNgorTQA,1993.0,8,8,2011,Indecent Proposal,Always,tt0107211 zZH3OD9d9Sc,1986.0,1,10,2011,Star Trek 4: The Voyage Home,The General Idea,tt0092007 l7-rpI0RrQU,1975.0,2,10,2011,Three Days of the Condor,I Just Read Books,tt0073802 sNJmfuEWR8w,1999.0,7,9,2011,South Park: Bigger Longer & Uncut,What Would Brian Boitano Do?,tt0158983 Jo4XXm8OUP4,1999.0,8,9,2011,South Park: Bigger Longer & Uncut,Up There,tt0158983 26oRZCLHR1M,1999.0,6,9,2011,South Park: Bigger Longer & Uncut,The V-Chip,tt0158983 LaIsEAR_R5Y,1975.0,5,10,2011,Three Days of the Condor,You Never Complained,tt0073802 0u0P8j4vLyw,1975.0,6,10,2011,Three Days of the Condor,You're Sorry?,tt0073802 RRJ1EPuYkZQ,1975.0,9,10,2011,Three Days of the Condor,Advice From An Assassin,tt0073802 KJ4q3cWQPsM,1975.0,3,10,2011,Three Days of the Condor,Getting to Know Her Well,tt0073802 Iaqusi3cAAc,1975.0,4,10,2011,Three Days of the Condor,A Dangerous Package,tt0073802 9w3E3eFMsLg,1975.0,10,10,2011,Three Days of the Condor,We Play Games,tt0073802 8yDjtE3wmFs,1975.0,7,10,2011,Three Days of the Condor,Fine Qualities,tt0073802 QQJDkZZaA00,1975.0,1,10,2011,Three Days of the Condor,Turner Calls For Help,tt0073802 vkkM9YAJ-Ts,1983.0,2,10,2011,Trading Places,You Want Me to Break Something Else?,tt0086465 KKzWTwJwrGc,1983.0,3,10,2011,Trading Places,Those Men Wanted to Have Sex with Me,tt0086465 WUuTs5CXP3U,1977.0,3,9,2011,Saturday Night Fever,Rejected By Stephanie,tt0076666 uI4fVgVVpiw,1983.0,4,10,2011,Trading Places,Pork Bellies Going Down,tt0086465 Wl_vyjME-ug,1977.0,2,9,2011,Saturday Night Fever,Tony Gets a Raise,tt0076666 9B3TN2rEckQ,1983.0,6,10,2011,Trading Places,The S-Car Go,tt0086465 V5ej5BJ55us,1980.0,2,10,2011,The Elephant Man,The Greatest Freak in the World,tt0080678 Cvl0iKbdV6A,1977.0,8,9,2011,Saturday Night Fever,Disco Dancing,tt0076666 DKtjBqJ4NxA,1983.0,1,10,2011,Trading Places,I Can See!,tt0086465 se9hqOIp810,1977.0,9,9,2011,Saturday Night Fever,Slipping Away,tt0076666 gADayU4DP9U,1980.0,1,10,2011,The Elephant Man,The Terrible Elephant Man,tt0080678 wjkdynBFHuQ,1983.0,8,10,2011,Trading Places,The One Dollar Bet,tt0086465 PT-2kB0dajE,1980.0,7,10,2011,The Elephant Man,Loving Kindness,tt0080678 ZdN6HbD0paY,1982.0,1,9,2011,48 Hrs.,We Ain't Partners,tt0083511 W2Q27LruEnA,2003.0,7,10,2011,How to Lose a Guy in 10 Days,Mental Person,tt0251127 9PpBLxJLihI,2003.0,3,10,2011,How to Lose a Guy in 10 Days,He Thinks I'm Fat,tt0251127 AkOcZ0S8vDg,2003.0,5,10,2011,How to Lose a Guy in 10 Days,Work Visit,tt0251127 nVhrWyZtYFk,2003.0,10,10,2011,How to Lose a Guy in 10 Days,Calling Her Bluff,tt0251127 BiQ0NRRraIc,2003.0,9,10,2011,How to Lose a Guy in 10 Days,Losing Andie,tt0251127 uAERYfeiYBc,1946.0,2,9,2011,It's a Wonderful Life,Lasso the Moon,tt0038650 AKOtvcIssZk,1992.0,3,9,2011,Patriot Games,Road Rage,tt0105112 7mtTvR0Rg_8,1992.0,4,9,2011,Patriot Games,Jack's Mission,tt0105112 9s-a1vp4LLk,1986.0,8,8,2011,Top Gun,You Can Be My Wingman Anytime,tt0092099 jLo7tHDHgOc,1983.0,5,10,2011,Trading Places,Haggling at the Pawnshop,tt0086465 TVOIig2xLq8,1986.0,8,10,2011,Star Trek 4: The Voyage Home,Interrogating Chekov,tt0092007 Od4nSd9AVH8,1983.0,9,10,2011,Trading Places,Down & Out Santa,tt0086465 02Or-Hx3yqc,1986.0,9,10,2011,Star Trek 4: The Voyage Home,Operation Chekov,tt0092007 p890hIa1w9k,1986.0,2,8,2011,Top Gun,Arrogant Pilot,tt0092099 8aXqgoiVb8E,1993.0,9,10,2011,Wayne's World 2,Handsome Dan,tt0108525 52FdiECWnhQ,1993.0,5,10,2011,Wayne's World 2,Tighty Whiteys,tt0108525 gXQhdB1y674,1993.0,1,10,2011,Wayne's World 2,Fast Food Order,tt0108525 4m2WutlqBk0,1992.0,3,10,2011,Wayne's World,Baberaham Lincoln,tt0105793 W4xO0k9LcIU,1994.0,1,9,2011,Clear and Present Danger,Sniper Training,tt0109444 8Qi3JERmk9E,1992.0,5,10,2011,Wayne's World,Garth Likes to Play,tt0105793 74M0hPAeFHs,1992.0,7,10,2011,Wayne's World,The Phases of Fame,tt0105793 o5FT3IGXtAk,1992.0,8,10,2011,Wayne's World,Alice's History Lesson,tt0105793 AGk2Hr3GcS8,1990.0,1,9,2011,Days of Thunder,Dropping the Hammer,tt0099371 dKsDjpKr2Mk,1994.0,7,9,2011,Clear and Present Danger,If I Go Down You're Going With Me!,tt0109444 i7tGEEWQIhQ,1994.0,9,9,2011,Clear and Present Danger,Presidential Cover-up,tt0109444 HppKwvQMZ4M,1994.0,5,9,2011,Clear and Present Danger,You Gave Your Word,tt0109444 ZJlmYy-mAZY,1994.0,3,9,2011,Clear and Present Danger,Motorcade Ambush,tt0109444 61AWnIZrT5g,1984.0,5,9,2011,Top Secret!,Compact Car,tt0088286 jA0RnDQiFbQ,1999.0,5,9,2011,Election,Slanderous Accusations,tt0126886 5XP3MonWebI,1994.0,4,9,2011,Clear and Present Danger,Bombing the Cartel,tt0109444 T7pci4SIGCo,1994.0,2,9,2011,Clear and Present Danger,Blowing Up the Bunker,tt0109444 PqtjbWJPIgQ,1994.0,8,9,2011,Clear and Present Danger,Two Million Dollar Helicopter,tt0109444 J07_XVy9Hns,1999.0,3,9,2011,Election,Tammy Runs for President,tt0126886 0668UNhYjXg,1994.0,6,9,2011,Clear and Present Danger,Computer Theft is a Crime,tt0109444 wPSEC3PpLuM,1999.0,8,9,2011,Election,All Over for McAllister,tt0126886 RH3I-IE0Xhw,1989.0,1,10,2011,Major League,I've Been Cut Already?,tt0097815 bBaNdHqC_Yo,1989.0,2,10,2011,Major League,Nice Velocity,tt0097815 g_wc9JvTXGc,1989.0,7,10,2011,Major League,Just a Bit Outside,tt0097815 rBsvuoQMmuo,1989.0,4,10,2011,Major League,Spring Training Highlights,tt0097815 XDZ_lSJjgvk,1989.0,9,10,2011,Major League,We're Contenders Now,tt0097815 yBBKcecvEcM,1989.0,8,10,2011,Major League,The Cleveland Wave,tt0097815 kL4cEH2JdQQ,1989.0,5,10,2011,Major League,Picked to Finish Last,tt0097815 jMaeuWl4qHM,2002.0,2,10,2011,Jackass: The Movie,The Shoplifter,tt0322802 hGOHE1zqEmY,2002.0,10,10,2011,Jackass: The Movie,Toy Car Up the Butt,tt0322802 Pdjgdb-OxY8,1989.0,3,10,2011,Major League,You Put Snot on the Ball?,tt0097815 LWWG1eKmylY,2002.0,1,10,2011,Jackass: The Movie,Alligator Tightrope,tt0322802 7C1Pr4AU2wc,2002.0,9,10,2011,Jackass: The Movie,Golf Course Airhorn,tt0322802 Drva4gp66lc,2002.0,6,10,2011,Jackass: The Movie,April's Alligator,tt0322802 t_lvc5iBnNg,2002.0,7,10,2011,Jackass: The Movie,Grinding the Rail,tt0322802 sSHxFSaOV-o,2002.0,5,10,2011,Jackass: The Movie,Wasabi Snooters,tt0322802 ezj13E-cX9I,2002.0,4,10,2011,Jackass: The Movie,Rocket Skates,tt0322802 JxRj80eLkMc,1980.0,4,10,2011,The Elephant Man,The Lord is My Shepherd,tt0080678 f783E8Zi8Q4,1980.0,6,10,2011,The Elephant Man,People Are Frightened By What They Don't Understand,tt0080678 uqg7Ow4SNk8,1980.0,10,10,2011,The Elephant Man,I Am a Human Being!,tt0080678 qj_NSmG9m5E,1980.0,8,10,2011,The Elephant Man,Why Did I Do It?,tt0080678 pBNKarJukms,2001.0,2,9,2011,Lara Croft: Tomb Raider,A Lady Should Be Modest,tt0146316 niFndjwElIY,1980.0,9,10,2011,The Elephant Man,This is My Home,tt0080678 h1-T9LYq1hI,2001.0,6,9,2011,Lara Croft: Tomb Raider,Escaping the Temple,tt0146316 nzjEYhUtRGc,2001.0,4,9,2011,Lara Croft: Tomb Raider,Garage Fight,tt0146316 _fJArvSVqEo,2001.0,8,9,2011,Lara Croft: Tomb Raider,Father Daughter Reunion,tt0146316 2Wlur8mxYP0,2001.0,5,9,2011,Lara Croft: Tomb Raider,Army of Statues,tt0146316 fGkSjNHEecA,2001.0,7,9,2011,Lara Croft: Tomb Raider,Race to the Sun,tt0146316 4cJs-f3NC6s,1956.0,8,10,2011,The Ten Commandments,Moses is Arrested,tt0049833 tnhW2iYL25k,2001.0,9,9,2011,Lara Croft: Tomb Raider,No Guns,tt0146316 92ygYJw9CSE,1956.0,2,10,2011,The Ten Commandments,Baby Moses Sent Down the River,tt0049833 zUm6rC0o7Po,1956.0,10,10,2011,The Ten Commandments,The Burning Bush,tt0049833 MnBarCQ9BE4,1956.0,5,10,2011,The Ten Commandments,Moses Meets His Real Mother,tt0049833 QrRTUOebEpU,1956.0,9,10,2011,The Ten Commandments,Moses is Banished,tt0049833 ahkwQhQZWG8,1956.0,1,10,2011,The Ten Commandments,Let My People Go,tt0049833 xRtjf4AE2-4,2007.0,4,9,2011,Into the Wild,Do Your Folks Know Where You Are?,tt0758758 OqCTq3EeDcY,1956.0,6,10,2011,The Ten Commandments,Moses Parts the Sea,tt0049833 OYeox3LLQ08,1956.0,3,10,2011,The Ten Commandments,Moses Turns Water Into Blood,tt0049833 I70sIrfz0_c,2007.0,7,9,2011,Into the Wild,Weakest Condition of Life,tt0758758 NL4WWmwdV6g,2007.0,3,9,2011,Into the Wild,Tracy T.,tt0758758 dZbWmnVOhbA,2007.0,2,9,2011,Into the Wild,On the Beach,tt0758758 VdlxHA_WLn4,1977.0,4,9,2011,Saturday Night Fever,Brother Frankie,tt0076666 AhAHDaOGHFI,2007.0,6,9,2011,Into the Wild,Sitting On My Butt,tt0758758 1U_GoiFy6kw,2007.0,8,9,2011,Into the Wild,Let Me Adopt You?,tt0758758 GSruhwZsc9c,1977.0,1,9,2011,Saturday Night Fever,Watch the Hair,tt0076666 mzZgTmwmkfo,1977.0,5,9,2011,Saturday Night Fever,Nothing Personal,tt0076666 lyuwBW9lNa8,1968.0,1,8,2011,Once Upon a Time in the West,Two Horses Too Many,tt0064116 vyQHWSbBCcQ,1977.0,7,9,2011,Saturday Night Fever,Settling the Score,tt0076666 _ptjc9Vono4,1968.0,2,8,2011,Once Upon a Time in the West,McBain Family Slaughter,tt0064116 vrf1MjmWFRY,1977.0,6,9,2011,Saturday Night Fever,Don't Worry 'Bout Nothin',tt0076666 _kD54-q1uFM,1968.0,7,8,2011,Once Upon a Time in the West,Harmonica's Flashback,tt0064116 VtPoKS5cCL8,1968.0,3,8,2011,Once Upon a Time in the West,"He Not Only Plays, He Can Shoot Too",tt0064116 9vUcfymkjNY,1968.0,5,8,2011,Once Upon a Time in the West,That Strange Sound Right Now,tt0064116 ftmRf0AY8Co,1968.0,4,8,2011,Once Upon a Time in the West,A Man's Hands All Over You,tt0064116 _JZ7U3FsOJ4,2009.0,3,10,2011,G.I. Joe: The Rise of Cobra,The Baroness Escapes,tt1046173 98wG4OA6iLw,1968.0,8,8,2011,Once Upon a Time in the West,Frank's Death,tt0064116 iNUv6pnKd5s,2009.0,5,10,2011,G.I. Joe: The Rise of Cobra,He Never Gives Up,tt1046173 SW2HRaFUXV4,2009.0,2,10,2011,G.I. Joe: The Rise of Cobra,G.I. Joe to the Rescue!,tt1046173 k-Rg51azVlg,2009.0,8,10,2011,G.I. Joe: The Rise of Cobra,Into the Ionosphere,tt1046173 g0j2dVuhr6s,1980.0,5,10,2011,Airplane!,I Speak Jive,tt0080339 vkdH0nuDWX4,1980.0,10,10,2011,Airplane!,S**t Hits the Fan,tt0080339 a5QBuJla5do,1980.0,7,10,2011,Airplane!,Crash Positions,tt0080339 Bpw7M2Heuk0,1998.0,1,7,2011,A Night at the Roxbury,Living with Mom & Dad,tt0120770 AZ2EPeq1TK0,1980.0,1,10,2011,Airplane!,Red Zone vs. White Zone,tt0080339 6LOwktvZlCc,1998.0,2,7,2011,A Night at the Roxbury,Life in the Fast Lane,tt0120770 n2A194yTWoQ,1980.0,3,10,2011,Airplane!,Have You Ever Seen a Grown Man Naked?,tt0080339 NfDUkR3DOFw,1980.0,8,10,2011,Airplane!,Roger Roger,tt0080339 gMBEqbV0mw4,1998.0,3,7,2011,A Night at the Roxbury,Doug is Like a Fax Machine,tt0120770 1nLc8ZZUKCg,1998.0,7,7,2011,A Night at the Roxbury,Steve & Emily's Wedding,tt0120770 ncDQvy5GoK8,1998.0,5,7,2011,A Night at the Roxbury,Moving Way Too Fast,tt0120770 Ls9p2CEVQMo,1998.0,4,7,2011,A Night at the Roxbury,Ugly Pathetic Losers,tt0120770 s6pAWtuEIR8,1998.0,6,7,2011,A Night at the Roxbury,Perfectly Normal Feelings,tt0120770 nGSrqmJr1Y0,1997.0,3,8,2011,Breakdown,Jeff Breaks Free,tt0118771 Oq3cGgqbWG8,1987.0,7,10,2011,Beverly Hills Cop 2,Deep Deep Undercover,tt0092644 5AsYaSut428,1987.0,8,10,2011,Beverly Hills Cop 2,You Calling Me a Cop?,tt0092644 wXf_eaQcSdM,1987.0,6,10,2011,Beverly Hills Cop 2,Conning Sidney Bernstein,tt0092644 MdQC-DD9fz4,1996.0,7,10,2011,Beavis and Butt-Head Do America,Slots On A Plane,tt0115641 JCnZaM2qKYE,1987.0,1,10,2011,Beverly Hills Cop 2,Johnny Wishbone,tt0092644 fqtFUIQ7oWA,1996.0,8,10,2011,Beavis and Butt-Head Do America,Buttzilla,tt0115641 XvVhKYmr8cE,1996.0,1,10,2011,Beavis and Butt-Head Do America,"Entertain Us, Anus",tt0115641 goikm-zX9r8,1982.0,5,6,2011,An Officer and a Gentleman,Carried Away,tt0084434 6lGs-tXWpR4,1982.0,1,6,2011,An Officer and a Gentleman,Steers and Queers,tt0084434 vuuTS_WNw5w,1982.0,3,6,2011,An Officer and a Gentleman,Mayo-nnaise,tt0084434 nXJxxahiC3A,1982.0,6,6,2011,An Officer and a Gentleman,"You Ready to Quit Now, Mayo?",tt0084434 aU-Qp-5TsB4,1982.0,2,6,2011,An Officer and a Gentleman,Okie From Muskogee,tt0084434 6Q2rF2uAH6g,1988.0,2,7,2011,Big Top Pee-wee,Agriculture 101,tt0094744 MCkKihQrNA4,1988.0,4,7,2011,Big Top Pee-wee,Pee-Wee Gets His Way,tt0094744 6g2JN2PrHJg,1982.0,4,6,2011,An Officer and a Gentleman,I Got Nowhere Else to Go!,tt0084434 uirBWk-qd9A,1961.0,3,9,2011,Breakfast at Tiffany's,Moon River,tt0054698 DWoQcfvV1Zw,1988.0,6,7,2011,Big Top Pee-wee,Big Top Big Finale,tt0094744 iTiWC8GpOgM,1988.0,3,7,2011,Big Top Pee-wee,Picnic With Winnie,tt0094744 AwgrZd_BjtE,1988.0,1,7,2011,Big Top Pee-wee,Pee-Wee's Introduction,tt0094744 _3K4VtyM3xg,1988.0,7,7,2011,Big Top Pee-wee,A Long Kiss,tt0094744 kWoC8yYqPJk,1996.0,5,10,2011,Beavis and Butt-Head Do America,Some People Are So Dumb,tt0115641 aSUmLsp97mE,1988.0,5,7,2011,Big Top Pee-wee,Gina Takes Pee Wee's Breath Away,tt0094744 knL5zY1LRqw,1996.0,2,10,2011,Beavis and Butt-Head Do America,At the White House,tt0115641 NXG6CKgSNdc,1987.0,3,10,2011,Beverly Hills Cop 2,Dangerous Delivery,tt0092644 eN4fDGHpf_c,1996.0,4,10,2011,Beavis and Butt-Head Do America,Desert Flashbacks,tt0115641 YkjmtfQVzWU,1996.0,9,10,2011,Beavis and Butt-Head Do America,American Heroes,tt0115641 o4Dly22Kcfs,1997.0,2,8,2011,Breakdown,What Do You Want?,tt0118771 fRCKKlTNxt8,1997.0,1,8,2011,Breakdown,I Want My Wife Back,tt0118771 0lInUr7VgCM,1997.0,8,8,2011,Breakdown,Truck to the Face,tt0118771 ZlFSjq7eU4Y,1997.0,4,8,2011,Breakdown,Earl Shoots the Sheriff,tt0118771 r-zlkOg6_Zw,1987.0,9,10,2011,Beverly Hills Cop 2,Rap Coalition of America,tt0092644 2YNlWDv95EY,1997.0,5,8,2011,Breakdown,Give Me the Key,tt0118771 rVFi-yeTe5g,1961.0,6,9,2011,Breakfast at Tiffany's,Cracker Jack Prizes,tt0054698 fL4j9mZfUdg,1961.0,9,9,2011,Breakfast at Tiffany's,Kissing in the Rain,tt0054698 npwnO-yPp8g,1997.0,6,8,2011,Breakdown,Jeff Rescues Amy,tt0118771 PMVqjEj9eKI,1961.0,4,9,2011,Breakfast at Tiffany's,Wild Things,tt0054698 aMBtKhTlQHk,1997.0,7,8,2011,Breakdown,Truck Chase,tt0118771 NXMarwAusY4,2006.0,1,10,2011,An Inconvenient Truth,Science of Global Warming,tt0497116 L_TvaJulWx0,1961.0,8,9,2011,Breakfast at Tiffany's,The Only Chance at Real Happiness,tt0054698 xtyieNg18O0,2006.0,3,10,2011,An Inconvenient Truth,Weather Balloons,tt0497116 yRLCUdWuyng,2006.0,8,10,2011,An Inconvenient Truth,Disease Emergence,tt0497116 FzQ0GeLVLhk,2006.0,10,10,2011,An Inconvenient Truth,U.S. Contribution to Global Warming,tt0497116 6hFxG-8I0Go,2006.0,4,10,2011,An Inconvenient Truth,Glaciers,tt0497116 Lzx24hw_K5I,2006.0,6,10,2011,An Inconvenient Truth,Hurricane Katrina,tt0497116 Yf7MT1p1VNI,1995.0,1,9,2011,Clueless,R.S.V.P.,tt0112697 vTFuGHWTIqI,2006.0,7,10,2011,An Inconvenient Truth,Arctic Ice Caps,tt0497116 TDrGHP9Z8vw,1995.0,8,9,2011,Clueless,Physical Education,tt0112697 m8-_aJ1BiFE,1995.0,3,9,2011,Clueless,Travis' Acceptance Speech,tt0112697 QPzZIJ-4Cq4,1995.0,2,9,2011,Clueless,I'll Call You,tt0112697 0_ArO8UCfyk,1995.0,9,9,2011,Clueless,Josh Kisses Cher,tt0112697 iuL2loyB1bk,1995.0,4,9,2011,Clueless,Christian is a Cake Boy,tt0112697 h9jsnAD4aNw,1986.0,4,10,2011,Gung Ho,Morning Exercises,tt0091159 lW2JBJSaXUI,1995.0,5,9,2011,Clueless,Freeway Freakout,tt0112697 Om3C1EpHLGs,1986.0,10,10,2011,Gung Ho,Hunt's New Car,tt0091159 HzAzwbkW7tw,1986.0,7,10,2011,Gung Ho,Cleanup in Aisle Three,tt0091159 mqkqDSAIaBY,1997.0,1,9,2011,Good Burger,Burger Dream,tt0119215 KlWlhyX6rb0,1986.0,3,10,2011,Gung Ho,The Game Is Won in the Fourth Quarter,tt0091159 4PXcUkIkulo,1997.0,5,9,2011,Good Burger,Dexter's a Chicken,tt0119215 jzasSSMjsxY,1997.0,4,9,2011,Good Burger,Secret to the Sauce,tt0119215 4t8bAQ-cGZM,1997.0,3,9,2011,Good Burger,Mondo Idiots,tt0119215 umIEp9WZI9E,1997.0,2,9,2011,Good Burger,Nothing is Something,tt0119215 dvmqIBOExp8,1992.0,5,10,2011,Leap of Faith,Acting Like a Loser,tt0104695 sRk8Aentzic,1997.0,8,9,2011,Good Burger,Mondo Demise,tt0119215 dXj2MnkN2nA,1997.0,6,9,2011,Good Burger,Big Order,tt0119215 EwSSmKP7ADQ,1997.0,7,9,2011,Good Burger,Ed Talks to Dogs,tt0119215 JlaTtF1rdVo,2002.0,2,8,2011,Crossroads,Time Capsule,tt0275022 lAlJRP1W_rU,1992.0,9,10,2011,Leap of Faith,Why'd You Make So Many Suckers?,tt0104695 vWNDQxvY3iU,1992.0,2,10,2011,Leap of Faith,Supercharged Grenade Launcher of Love,tt0104695 esHt1mAYF-g,1996.0,9,9,2011,The First Wives Club,Battle of the Insults,tt0116313 t8HQInlblys,1986.0,6,7,2011,Pretty in Pink,Blane Asks Andie,tt0091790 SOBvUyimDo0,1997.0,9,9,2011,Good Burger,Hard to Say Goodbye,tt0119215 jrf263yJwic,2005.0,8,10,2011,Elizabethtown,You Failed,tt0368709 uBf-pbxHb7Y,1986.0,2,7,2011,Pretty in Pink,Flaming Thighs,tt0091790 C2pUVmGEEeM,2005.0,1,10,2011,Elizabethtown,Nobody's Substitute,tt0368709 inrI2qvps58,2005.0,7,10,2011,Elizabethtown,Billion-Dollar Failure,tt0368709 87idpAngKc0,2005.0,5,10,2011,Elizabethtown,Three-Way Call,tt0368709 v8c2XZdCS_A,2006.0,3,10,2011,The Foot Fist Way,Ju-jitsu Sucks,tt0492619 o1SrrJNjIh8,2005.0,4,10,2011,Elizabethtown,Then I Felt Something Else,tt0368709 pYI0bXZVZek,2006.0,10,10,2011,The Foot Fist Way,I'm Relieving Myself,tt0492619 uCV1-C_0vC8,2005.0,6,10,2011,Elizabethtown,Son of a Mitch,tt0368709 lHtMdj1rZks,1984.0,1,7,2011,Footloose,Ariel Likes Ren,tt0087277 ySEkuf94my4,1984.0,9,9,2011,Top Secret!,Nick The Ambassador,tt0088286 KSZwlMDSOvY,1984.0,3,9,2011,Top Secret!,Some Bad Movie,tt0088286 qjhh_5PMBZs,1984.0,1,9,2011,Top Secret!,Nick's Reprieve,tt0088286 vPB2g1y2VFk,1984.0,4,9,2011,Top Secret!,What Phony Dog Poo?,tt0088286 Je4QCA5KCuc,1988.0,3,10,2011,Scrooged,Towels for Christmas,tt0096061 -NkNYd_ku_8,1968.0,2,9,2011,Romeo and Juliet,Give Me My Sin Again,tt0063518 gprLI38JwQ0,1988.0,1,10,2011,Scrooged,I Have to Kill All of You,tt0096061 -RBjiJto4hc,1999.0,10,10,2011,Superstar,!,tt0167427 4QagAGmJcnE,2003.0,10,10,2011,The School of Rock,Wound Too Tight,tt0332379 Ak1dPU8uXiE,1988.0,8,10,2011,Scrooged,The Truth is Painful,tt0096061 mvmAa1cYZK4,1988.0,2,10,2011,Scrooged,Marketing With Terror,tt0096061 Vc_4eoSHwK8,1988.0,4,10,2011,Scrooged,A Visit from Lew,tt0096061 -MEOfLvOuas,1984.0,7,9,2011,Top Secret!,The Cow Plan,tt0088286 GeOcsY8foxI,2001.0,9,9,2011,Vanilla Sky,Where is Sofia?,tt0259711 iVoG7CivnH0,2000.0,3,9,2011,Shaft,Meeting Peoples,tt0162650 yjlZPv-37h0,1993.0,6,7,2011,What's Eating Gilbert Grape,Burger Barn!,tt0108550 MfRi-a8hPh0,1984.0,8,9,2011,Top Secret!,Underwater Barfight,tt0088286 OWYSE2bKbNo,2000.0,1,8,2011,Wonder Boys,Good Boy Poe,tt0185014 6UV_5HvpmgY,2003.0,4,10,2011,The School of Rock,The Rock Band Project,tt0332379 _xiz8CnP1-0,2003.0,5,10,2011,The School of Rock,New Schedule,tt0332379 5ut37zda30I,2001.0,1,9,2011,Vanilla Sky,Sofia's Ability,tt0259711 5gMuofAdW6A,2001.0,2,9,2011,Vanilla Sky,Citizen Dildo,tt0259711 p2esJ_ypn7Y,2007.0,8,9,2011,Zodiac,The Most Dangerous Game,tt0443706 ctTSLWXE58o,2003.0,8,10,2011,The School of Rock,Stick-it-to-the-man-eosis,tt0332379 Ustq_iSIqgQ,1980.0,6,9,2011,Urban Cowboy,Swaller Pride,tt0081696 K4czoAgsH-0,1987.0,5,6,2011,Some Kind of Wonderful,She Doesn't Love You,tt0094006 lD1XDCbhtn0,1996.0,1,9,2011,The First Wives Club,Hit Me!,tt0116313 aPrURpNEtkg,1996.0,2,9,2011,The First Wives Club,Youth and Beauty,tt0116313 YTds2jCQHKA,1987.0,3,6,2011,Some Kind of Wonderful,Hardy is Over,tt0094006 oQAY2uslGuI,1997.0,2,7,2011,The Rainmaker,Unlicensed,tt0119978 TpOPvupzWow,1997.0,7,7,2011,The Rainmaker,Downsizing,tt0119978 NXvcleOF798,1997.0,6,7,2011,The Rainmaker,Rudy's Closing Argument,tt0119978 Eyh5RlXHBLU,1991.0,3,10,2011,Necessary Roughness,The Big Whistle,tt0102517 p-Kyr2Ibq3c,1997.0,3,7,2011,The Rainmaker,Guess Who Died Last Night?,tt0119978 c9xahfssbQg,1968.0,2,8,2011,The Odd Couple,Felix Crying in Bathroom,tt0063374 _ZJUuDLqjzU,1994.0,10,10,2011,Naked Gun 33 1/3: The Final Insult,Best Picture,tt0110622 GtV5-2QXj9Y,1968.0,3,8,2011,The Odd Couple,Break the Lousy Cup!,tt0063374 Mw0IakmQri0,1991.0,8,10,2011,The Addams Family,The Mamushka Dance,tt0101272 g-Yufp_dafk,1968.0,5,8,2011,The Odd Couple,Stepping on the Vacuum Cord,tt0063374 f_5nHV8FJyI,1968.0,6,8,2011,The Odd Couple,Clearing Sinuses,tt0063374 hdW1BlDtcyU,1985.0,1,9,2011,Witness,It's Over,tt0090329 E4s5mJQr94E,2005.0,4,9,2011,The Longest Yard,Prison Cheerleaders,tt0398165 J215p0P-ieA,1985.0,5,9,2011,Witness,Murder,tt0090329 _TRUBZVUg8k,2001.0,3,9,2011,Vanilla Sky,Almost Worthy Dying For,tt0259711 TDoj_T5cYhE,1985.0,2,9,2011,Witness,Ingrained,tt0090329 ltwRv-C1EFQ,1983.0,7,9,2011,Terms of Endearment,You Do Bring Out the Devil in Me,tt0086425 WsPcC5TGxlA,1999.0,9,10,2011,Superstar,You Are Your Own Rainbow,tt0167427 iKqGXeX9LhQ,2004.0,7,10,2011,Team America: World Police,Gary Pukes Forever,tt0372588 Qf8im5NX7JE,1995.0,4,10,2011,The Brady Bunch Movie,Marsha's New Hairdo,tt0112572 I3Mg_5wqewU,1953.0,5,10,2011,Roman Holiday,The Morning After,tt0046250 NQ-8IuUkJJc,2001.0,4,10,2011,Zoolander,Center For Kids Who Can't Read Good,tt0196229 fh1Y30QwRGE,2007.0,4,9,2011,Zodiac,We're Not in Anything Together,tt0443706 TmoeZHnOJKA,2004.0,2,10,2011,Team America: World Police,America F*** Yeah,tt0372588 nxHTPahkN6M,1986.0,3,7,2011,Pretty in Pink,Andie Confronts Her Father,tt0091790 17dU___xcdA,1986.0,1,7,2011,Pretty in Pink,Bathroom Inspection,tt0091790 noq0Lb6lVEI,1996.0,8,9,2011,The First Wives Club,Social Climb is On The Rise,tt0116313 Wv_JTjYYaQI,2001.0,1,10,2011,Zoolander,Earth To...,tt0196229 hA0OlCQLC0Q,1986.0,4,7,2011,Pretty in Pink,Duckie Takes A Stand,tt0091790 w-DFg1aS_2E,2000.0,6,6,2011,The Ladies Man,Leon Confesses,tt0213790 itdD328hLuQ,2000.0,3,6,2011,The Ladies Man,Leon's Demo Tape,tt0213790 NIrF-rsXWJM,1983.0,6,9,2011,Terms of Endearment,Beach Ride,tt0086425 7n1uwzYOBa0,1981.0,2,9,2011,Mommie Dearest,Christina Stands Up To Mother,tt0082766 YYSAcTkd5B8,1983.0,8,9,2011,Terms of Endearment,I'm the Wrong Kind of Man,tt0086425 -wSYsQS2-NU,2000.0,2,6,2011,The Ladies Man,Wrestling Attitude,tt0213790 GxQPnTqPeVM,1983.0,5,9,2011,Terms of Endearment,Emma is Suspicious,tt0086425 oCDk1jDXZnM,1983.0,3,9,2011,Terms of Endearment,Aurora Has a Drink,tt0086425 hDH1ilg9NMU,1997.0,4,7,2011,The Rainmaker,Miss Birdie's Beneficiary,tt0119978 JO-L1PjLp5M,2000.0,4,9,2011,Shaft,Million Dollar Bailout,tt0162650 yRess0-DpRk,1993.0,2,7,2011,What's Eating Gilbert Grape,Praying Mantis,tt0108550 vKLbd6LeUv8,1993.0,1,7,2011,What's Eating Gilbert Grape,No One's Sorry,tt0108550 _c97olSX4hE,2006.0,7,10,2011,The Foot Fist Way,Mike McAlister,tt0492619 3lz4BuydE-Y,1953.0,3,10,2011,Roman Holiday,Cherished Memory,tt0046250 73ZsDdK0sTI,1988.0,10,10,2011,The Naked Gun: From the Files of Police Squad!,National Anthem,tt0095705 6af1dAc9rXo,1953.0,2,10,2011,Roman Holiday,The Mouth of Truth,tt0046250 VdG34y8kUyc,2000.0,1,9,2011,Shaft,Gimme Your Shoes,tt0162650 QQOWp3tLb2s,2004.0,8,10,2011,Team America: World Police,That's Why They Call it Acting,tt0372588 q5rs99ZpXCM,2000.0,4,8,2011,Wonder Boys,I Take it Back...Shoot Him,tt0185014 9DLcDirhBAk,2000.0,2,8,2011,Wonder Boys,James Figures Out the Affair,tt0185014 I8PLjzTzy08,2000.0,5,8,2011,Wonder Boys,You Didn't Really Make Any Choices,tt0185014 xCnFME3JqIk,2000.0,2,9,2011,Shaft,Mano a Mano,tt0162650 O6DFHh2XxLk,1991.0,7,10,2011,The Naked Gun 2½: The Smell of Fear,Wheelchair Mayhem,tt0102510 JBGkwf707Ls,2000.0,3,8,2011,Wonder Boys,I'm Not Letting You Sleep at the Bus Station,tt0185014 TYEvhdLuW-U,1975.0,8,10,2011,Three Days of the Condor,All About Oil,tt0073802 rJWLdQ9vylA,1991.0,2,10,2011,The Naked Gun 2½: The Smell of Fear,Interrogating Almost Dead Guys,tt0102510 AlV_R7v4DFI,2000.0,7,8,2011,Wonder Boys,Suicide Savant,tt0185014 Njwqb3iGNto,1991.0,3,10,2011,The Naked Gun 2½: The Smell of Fear,Final Requests,tt0102510 GUwhnO-nTLo,1991.0,9,10,2011,The Naked Gun 2½: The Smell of Fear,Frank Has The Blues,tt0102510 Nz1NJ3fhso0,1991.0,5,10,2011,The Naked Gun 2½: The Smell of Fear,Frank The Tank,tt0102510 wG6wio8azyE,1991.0,4,10,2011,The Naked Gun 2½: The Smell of Fear,She Reminds Me Of Mom,tt0102510 rJodsSNioXY,2000.0,8,8,2011,Wonder Boys,Getting There,tt0185014 TDMdoNM-pBU,1962.0,3,7,2011,The Man Who Shot Liberty Valance,Appetite Suppressant,tt0056217 U49MXakb7f4,1962.0,4,7,2011,The Man Who Shot Liberty Valance,A Persistent Cuss,tt0056217 pdE83FX-Mto,1988.0,3,10,2011,The Naked Gun: From the Files of Police Squad!,The Sound of Relief,tt0095705 nTh9qpzhunE,1988.0,9,10,2011,The Naked Gun: From the Files of Police Squad!,Maybe This'll Help,tt0095705 FuE5BaM0BdM,1991.0,5,8,2011,Regarding Henry,Henry Makes Amends,tt0102768 363ZAmQEA84,1962.0,6,7,2011,The Man Who Shot Liberty Valance,Print the Legend,tt0056217 pJ6XiEEJndw,1999.0,3,8,2011,Runaway Bride,A True Marriage Proposal,tt0163187 tippFPLwGgI,1988.0,4,10,2011,The Naked Gun: From the Files of Police Squad!,Enemies of America,tt0095705 5cU6TxpG_p4,1988.0,2,10,2011,The Naked Gun: From the Files of Police Squad!,Student Driver,tt0095705 AcEe0LbP2wY,1985.0,7,9,2011,Witness,A Lesson on Guns,tt0090329 IT3BdhTyVXs,1968.0,1,8,2011,The Odd Couple,Brown or Green Sandwich,tt0063374 NXqs_wYohxM,1968.0,4,8,2011,The Odd Couple,Clean vs. Dirty,tt0063374 7VO2NcQl2-g,1968.0,7,8,2011,The Odd Couple,Oscar Breaks Down,tt0063374 P10AWBi4-y8,1968.0,8,8,2011,Rosemary's Baby,Aren't You His Mother?,tt0063522 MfeSSw69cC4,1968.0,8,8,2011,The Odd Couple,I'm Going to Kill You,tt0063374 4l1Yek0Z1FQ,1968.0,2,8,2011,Rosemary's Baby,The Black Bramford,tt0063522 1BRteOP9UL8,1968.0,4,8,2011,Rosemary's Baby,Taking Rosemary Home,tt0063522 EcxB2iCU3w8,1980.0,5,7,2011,Ordinary People,Mother and Son Photo,tt0081283 Yf_toKBYCl4,1993.0,3,7,2011,What's Eating Gilbert Grape,Dad's Dead,tt0108550 yOpsJ8dh5L4,1980.0,4,7,2011,Ordinary People,Conrad Opens Up to Jeannine,tt0081283 kye191FZmeU,1968.0,5,8,2011,Rosemary's Baby,Where's the Baby?,tt0063522 Oc2xTMnIwrI,1976.0,5,9,2011,The Bad News Bears,I Don't Want Your Company,tt0074174 2_SfD5cdrnw,1980.0,7,7,2011,Ordinary People,Love Ends,tt0081283 Kf-JPkSfjug,1993.0,7,7,2011,What's Eating Gilbert Grape,Gilbert Comes Back,tt0108550 eBxVWEnuSC0,1991.0,3,10,2011,The Addams Family,Dinner Conversation,tt0101272 _akwHYMdbsM,1987.0,5,10,2011,"Planes, Trains & Automobiles",Going the Wrong Way,tt0093748 I5kkwmOapss,1993.0,5,7,2011,What's Eating Gilbert Grape,Going in the Water,tt0108550 3XeLFSaoyAk,1994.0,3,10,2011,Naked Gun 33 1/3: The Final Insult,Snookie Wookums,tt0110622 S9RbwDvpqD4,1987.0,4,10,2011,"Planes, Trains & Automobiles",Burning Car,tt0093748 K2qNJ7IzzqE,1976.0,6,9,2011,The Bad News Bears,Do The Best You Can,tt0074174 ML1_2lHFftE,1996.0,5,9,2011,The First Wives Club,Sprung with Divorce,tt0116313 vbF4qz_-PCM,2003.0,2,10,2011,The School of Rock,Hung Over,tt0332379 l6uaxfye2Ig,1986.0,5,7,2011,Pretty in Pink,Heartbreaker,tt0091790 4KJD4aP90YQ,2003.0,9,10,2011,The School of Rock,Learning in Song,tt0332379 8l7LGK2hnQw,1986.0,7,7,2011,Pretty in Pink,Tell Me the Truth,tt0091790 4mdd9P7Tn6I,2001.0,8,9,2011,Vanilla Sky,A Real Life,tt0259711 7xohWvO9i4c,2001.0,5,9,2011,Vanilla Sky,The Car Crash,tt0259711 LmdcbtSwX6Q,1985.0,4,9,2011,Witness,Positive Identification,tt0090329 7xVN8Q0OIbo,2001.0,6,9,2011,Vanilla Sky,Hiding,tt0259711 o07ecRzkLuM,1985.0,9,9,2011,Witness,Right of Way,tt0090329 9GxFab5uMPc,1985.0,3,9,2011,Witness,Time For Milking,tt0090329 R9goLghpPBg,1976.0,3,9,2011,The Bad News Bears,Picking On Lupus,tt0074174 nS0fxM7sCHs,1985.0,8,9,2011,Witness,Rachel's Choice,tt0090329 74Y7PD_uBe8,1976.0,4,9,2011,The Bad News Bears,Cups & Supporters,tt0074174 2v-VkDiUm0Y,1995.0,5,10,2011,The Brady Bunch Movie,Marsha Breaks Her Nose,tt0112572 pq9dj2Q6edw,2002.0,8,12,2011,Heaven,The Same Birthday,tt0297884 LBO6A4kU5Vo,2006.0,9,10,2011,The Foot Fist Way,Ridin' The Truck,tt0492619 TbI7_iOYJvg,2007.0,1,9,2011,Zodiac,Napa Valley Killings,tt0443706 DSuUJ-Scbeg,2007.0,5,9,2011,Zodiac,I'm Not the,tt0443706 eDhJ-xXsbHc,2007.0,3,9,2011,Zodiac,I Didn't Know You Had a Baby,tt0443706 WJlOBTLg4xw,2007.0,6,9,2011,Zodiac,Sunset Trailer Park,tt0443706 RiTXscx2pJY,2007.0,2,9,2011,Zodiac,This is the Speaking,tt0443706 W91BHqxJIRg,2007.0,9,9,2011,Zodiac,The Diner,tt0443706 tz56LhvDFho,1999.0,1,8,2011,Runaway Bride,Rainbow Hair,tt0163187 EIz94vt-Opo,1995.0,7,10,2011,The Brady Bunch Movie,Marsha's French Kiss,tt0112572 DxTFwXcsctE,2004.0,9,10,2011,Team America: World Police,Battling the Film Actor's Guild,tt0372588 uqMxfPMxW78,1999.0,2,8,2011,Runaway Bride,Maggie's Stick-On Tattoo,tt0163187 vb2GzRckU9s,1995.0,9,10,2011,The Brady Bunch Movie,Jan's Inner Voices,tt0112572 QNVWY5jUIbc,1993.0,3,10,2011,Searching for Bobby Fischer,Learning From the Master,tt0108065 sM3PgyGpO7Q,1999.0,6,8,2011,Runaway Bride,Rehearsing the Wedding,tt0163187 qYbwQoq9XfI,1999.0,4,8,2011,Runaway Bride,Roasting Maggie,tt0163187 7JISgsyVgUA,1993.0,1,10,2011,Searching for Bobby Fischer,A Prodigy,tt0108065 TY04QewafKc,1999.0,7,8,2011,Runaway Bride,The Does It Again,tt0163187 HIPljGWGNt4,2004.0,1,10,2011,Team America: World Police,Team America Intro,tt0372588 iZLnEfsXttE,1999.0,8,8,2011,Runaway Bride,Will You Marry Me?,tt0163187 u7tXpBrpecA,2004.0,5,10,2011,Team America: World Police,The Love Scene,tt0372588 U8XrE0FSQv4,2004.0,4,10,2011,Team America: World Police,Egyptian Rescue,tt0372588 DIlG9aSMCpg,2004.0,3,10,2011,Team America: World Police,Derka Derka,tt0372588 UEaKX9YYHiQ,2004.0,6,10,2011,Team America: World Police,I'm So Ronery,tt0372588 qalHjNdHFJc,1953.0,10,10,2011,Roman Holiday,Where's the Story?,tt0046250 jpPCVq8UmX4,2006.0,1,10,2011,The Foot Fist Way,King of the Demo,tt0492619 32iCWzpDpKs,2004.0,10,10,2011,Team America: World Police,"Dicks, Pussies and Assholes",tt0372588 iJKhynhnPyU,2006.0,2,10,2011,The Foot Fist Way,I Could Eat a Grown Man's Ass,tt0492619 w9-IJEaGhRg,2006.0,5,10,2011,The Foot Fist Way,"How Many Slices, Julio?",tt0492619 SgO2khv_SDY,2006.0,6,10,2011,The Foot Fist Way,Little Stevie Fisher,tt0492619 _Er9cXkqWEs,2006.0,8,10,2011,The Foot Fist Way,Chuck the Truck's Party,tt0492619 KY_G2f2R1Tg,2006.0,4,10,2011,The Foot Fist Way,Is She Still Alive?,tt0492619 MH9ZK7vSBYY,1968.0,1,9,2011,Romeo and Juliet,I Never Saw True Beauty 'Til This Night,tt0063518 N_HE8beijHA,1995.0,3,10,2011,The Brady Bunch Movie,Jump Rope Electrocution,tt0112572 Udhn4vCPZ7A,1953.0,8,10,2011,Roman Holiday,Short Haircut,tt0046250 NrE3t6Pgps0,2002.0,9,10,2011,Orange County,You Need an Ending,tt0273923 5FgtVXFRyTQ,1988.0,6,10,2011,Scrooged,Five Pounds of Veal,tt0096061 hwWsAUpr9eM,1968.0,4,9,2011,Romeo and Juliet,Love's Faithful Vow,tt0063518 lPe61El1_3E,1988.0,7,10,2011,Scrooged,Crazy Like a Fox,tt0096061 CblvDFObgNA,1999.0,3,10,2011,Superstar,Red Carpet Dreams,tt0167427 K0zvX6AGd7Q,1988.0,5,10,2011,Scrooged,Taxi Ride From Hell,tt0096061 3kX6rf9uw7w,1988.0,10,10,2011,Scrooged,A Christmas Miracle,tt0096061 sZTRUAFCzF4,1999.0,5,10,2011,Superstar,Mary Fights Evian,tt0167427 XXLpjT6qjCg,1999.0,7,10,2011,Superstar,Sky Breaks Up with Evian,tt0167427 l2K4Fw-pmLw,1999.0,6,10,2011,Superstar,Mary's Busting Out,tt0167427 akyfR8zcmIo,1999.0,4,10,2011,Superstar,Jesus Appears to Mary,tt0167427 ThzCQZyzCkg,1999.0,8,10,2011,Superstar,Move On With Your Life,tt0167427 jzEhVsME8p4,2002.0,3,10,2011,Orange County,The Wrong Transcript,tt0273923 DnwnDFr9kOs,2002.0,4,10,2011,Orange County,A Normal Loving Parent,tt0273923 hQEej75JeUQ,2002.0,5,10,2011,Orange County,A Normal Family,tt0273923 Q5wdXytgRLI,2002.0,8,10,2011,Orange County,She's a Liar,tt0273923 3zavgk2_BJs,2001.0,7,10,2011,Zoolander,Walk Off,tt0196229 tUaOBgXp_Pg,2001.0,5,10,2011,Zoolander,Pier 12 Day Spa,tt0196229 AU0NLheu8mU,2001.0,3,10,2011,Zoolander,You're Dead to Me,tt0196229 EMTbkfgT_jc,2001.0,2,10,2011,Zoolander,Models Help People,tt0196229 sP9ufyH-Pdg,1953.0,7,10,2011,Roman Holiday,Alone With a Man,tt0046250 gx9O6q0pDAU,2001.0,10,10,2011,Zoolander,Magnum,tt0196229 EUvgqItrt1c,2001.0,8,10,2011,Zoolander,The World's Greatest Hand Model,tt0196229 NRQifnaioeM,1988.0,1,9,2011,The Accused,Will Those Bastards go to Jail?,tt0094608 sEXIC0OaQSU,1988.0,2,9,2011,The Accused,You Sold Me Out,tt0094608 ExVWQ_I-elI,1953.0,9,10,2011,Roman Holiday,Vespa Ride,tt0046250 kf8NklFXAd4,1988.0,3,9,2011,The Accused,Sexy Sadi,tt0094608 CFstDwSYjkc,1988.0,6,9,2011,The Accused,No Deals,tt0094608 w0NWPKGGFiY,1988.0,8,9,2011,The Accused,On the Stand,tt0094608 YJPebmYS95E,1988.0,7,9,2011,The Accused,Acquiring a Witness,tt0094608 3ArDaUOO6w0,1988.0,4,9,2011,The Accused,I Thought You Were On My Side,tt0094608 Uif48WrZza8,1988.0,9,9,2011,The Accused,I'm Gonna Tell Them What Happened,tt0094608 T0QshoW8SQY,1993.0,2,10,2011,Searching for Bobby Fischer,The Next Bobby Fischer,tt0108065 yOoGw9aTRhs,1993.0,4,10,2011,Searching for Bobby Fischer,This Chess Thing,tt0108065 3orSzPUIVJw,1990.0,1,10,2011,Ghost,Finally Talking,tt0099653 1ycpmrEl-9E,1979.0,2,8,2011,The Warriors,One Gang Could Run This City,tt0080120 ZurT6BG1OM8,1993.0,5,10,2011,Searching for Bobby Fischer,Fear of Losing,tt0108065 gwXzOVu0x-U,1993.0,7,10,2011,Searching for Bobby Fischer,Contempt,tt0108065 v38lu0Bi0Kk,1993.0,8,10,2011,Searching for Bobby Fischer,Master Certificate,tt0108065 uV5YFJgGPNQ,1993.0,6,10,2011,Searching for Bobby Fischer,Josh Loses,tt0108065 nWAV_KcSkNw,1980.0,4,9,2011,Urban Cowboy,Sissy Rides the Bull,tt0081696 k9pFp6iRVM0,1993.0,10,10,2011,Searching for Bobby Fischer,Josh Offers a Draw,tt0108065 cdaDQcs-XNQ,1980.0,3,9,2011,Urban Cowboy,We Live Like Pigs,tt0081696 -v8C1H99O_s,1993.0,9,10,2011,Searching for Bobby Fischer,Grandmaster,tt0108065 wzSYH0nT6Qk,1980.0,9,9,2011,Urban Cowboy,We're Going Home,tt0081696 f_xjQNnIcdQ,1980.0,5,9,2011,Urban Cowboy,A Sexy Sissy Ride,tt0081696 c5BJJbtFP4E,1980.0,7,9,2011,Urban Cowboy,Gilley's Rodeo Competition,tt0081696 XkasRfjEqFs,1980.0,8,9,2011,Urban Cowboy,"I Love You, Sissy",tt0081696 RUX-bx6rwdI,2005.0,5,9,2011,The Longest Yard,Flooded Practice Field,tt0398165 7UKx-6P2F-k,2005.0,2,9,2011,The Longest Yard,"You're White, Smile!",tt0398165 3JJaD_5oQq8,2005.0,1,9,2011,The Longest Yard,Drunk Driving,tt0398165 mYhkrT5de2Y,1980.0,2,9,2011,Urban Cowboy,A Wedding at Gilley's,tt0081696 Q1IQ49BHkEg,2005.0,6,9,2011,The Longest Yard,15 Minutes with Lynette,tt0398165 hGgWUKweXzI,2000.0,6,9,2011,Shaft,"April Fools, Motherf***er",tt0162650 GKuQDM9OlAQ,2005.0,8,9,2011,The Longest Yard,Fourth and Twenty,tt0398165 Rwtay9w8axo,2005.0,7,9,2011,The Longest Yard,He Just Sh** Himself,tt0398165 VMVzQ8rW53Q,2005.0,9,9,2011,The Longest Yard,The Fumblerooski,tt0398165 ilrpqagxBf4,1991.0,10,10,2011,Necessary Roughness,Going for the Win,tt0102517 ZSFCW8cDIU8,2000.0,7,9,2011,Shaft,The Iceman Goeth,tt0162650 XKl9WKaYVRw,1991.0,9,10,2011,Necessary Roughness,Samurai Football,tt0102517 sLWhxB6QNrw,1991.0,8,10,2011,Necessary Roughness,Taking out the Dean,tt0102517 o4UVXgAzYb0,1991.0,4,10,2011,Necessary Roughness,Bar Brawl,tt0102517 AyJIq_BNPME,1991.0,6,10,2011,Necessary Roughness,Welcome to Football,tt0102517 86RH1KAwM2A,1991.0,7,10,2011,Necessary Roughness,Lucy Gets the Shower,tt0102517 0jzYpSrpVqU,1991.0,5,10,2011,Necessary Roughness,Lucy Joins the Team,tt0102517 gZXv9XswYM8,1988.0,5,9,2011,The Accused,Criminal Solicitation,tt0094608 u2pu0m9iTo4,1987.0,10,10,2011,"Planes, Trains & Automobiles",Those Aren't Pillows!,tt0093748 j-47cwN0w_c,1994.0,8,9,2011,Forrest Gump,I Know What Love Is,tt0109830 xLxCXburq2U,2000.0,8,9,2011,Shaft,Thrown in Jail,tt0162650 x2-MCPa_3rU,1994.0,2,9,2011,Forrest Gump,"Run, Forrest, Run!",tt0109830 tvKzyYy6qvY,1994.0,1,9,2011,Forrest Gump,Peas and Carrots,tt0109830 ZS9SXH3DfT8,1978.0,3,10,2011,Grease,Phony Danny Scene,tt0077631 JcP-yeailEM,2004.0,10,10,2011,Mean Girls,Making Things Right,tt0377092 zL0ipXUD-uU,1979.0,4,8,2011,The Warriors,vs. The Baseball Furies,tt0080120 KOi9hHjmYq4,1996.0,2,9,2011,Mission: Impossible,A Mole Hunt Scene,tt0117060 tOZTZP_qzC0,2008.0,3,9,2011,The Curious Case of Benjamin Button,Healing Through Faith,tt0421715 aUNq34kNR0M,1978.0,2,10,2011,Grease,Sonny Don't Take No Crap Scene,tt0077631 qW7Nq2UBlbk,2008.0,8,9,2011,The Curious Case of Benjamin Button,Meeting in the Middle,tt0421715 dpBTugwEdaQ,2008.0,5,9,2011,The Curious Case of Benjamin Button,The Witching Hour,tt0421715 CccXBzfhDVA,2008.0,4,9,2011,The Curious Case of Benjamin Button,Leaving Home,tt0421715 6soXf476aV0,1978.0,7,10,2011,Grease,A Bun in the Oven Scene,tt0077631 -zIhorOBLZM,1969.0,4,9,2011,True Grit,I Don't Like the Way You Look,tt0065126 sthFTs2gWeg,2008.0,2,9,2011,The Curious Case of Benjamin Button,A Child of God,tt0421715 aqIYxDk4vh8,1978.0,4,10,2011,Grease,Hopelessly Devoted to You Scene,tt0077631 XTMeDBVknQY,1969.0,1,9,2011,True Grit,River Crossing,tt0065126 wsQJVAzezrc,1978.0,8,10,2011,Grease,Sin Wagon Scene,tt0077631 9-cPWheNyaA,1969.0,9,9,2011,True Grit,Bold Talk for a One-Eyed Fat Man,tt0065126 FWrh6KWGFo0,1978.0,6,10,2011,Grease,I Know Now That You Respect Me Scene,tt0077631 TVaP9kEYVZ8,1996.0,7,9,2011,Mission: Impossible,Master of Disguise Scene,tt0117060 S1waPNwf_ns,1978.0,5,10,2011,Grease,Danny at Bat Scene,tt0077631 XW9T7s1U_XU,1969.0,2,9,2011,True Grit,Drop That Switch,tt0065126 -MQNNzaEt2s,1978.0,1,10,2011,Grease,We're Gonna Rule the School Scene,tt0077631 ZJJGXUlqb_k,1969.0,3,9,2011,True Grit,Smoke Them Out,tt0065126 MLkaLveElpM,1994.0,9,9,2011,Forrest Gump,His Name is Forrest,tt0109830 YcbZKza_zUg,1990.0,3,10,2011,Ghost,Still Feel You,tt0099653 Cho039BrHpg,1996.0,9,9,2011,Mission: Impossible,Tunnel Chase Scene,tt0117060 Lb13v2-bBJQ,1969.0,7,9,2011,True Grit,Looking for Sign,tt0065126 -lb8E3qQVKY,1969.0,8,9,2011,True Grit,"I Know You, Tom Chaney",tt0065126 57yGBikRJec,1969.0,5,9,2011,True Grit,Rooster Opens Up,tt0065126 6DU0mdThjg4,1969.0,6,9,2011,True Grit,Looking Back Is a Bad Habit,tt0065126 xuQZJHfWf9U,1994.0,4,9,2011,Forrest Gump,Bubba Goes Home,tt0109830 HsYC-hVEpQM,1978.0,10,10,2011,Grease,Thunder Road Race Scene,tt0077631 SqOnkiQRCUU,1994.0,7,9,2011,Forrest Gump,Life is a Box of Chocolates,tt0109830 9Jt-bxV1gW0,1994.0,5,9,2011,Forrest Gump,First Mate,tt0109830 _hyXwvNIKZM,1990.0,7,10,2011,Ghost,Carl Suspects Oda Mae,tt0099653 oAb2_-uv41Y,1990.0,5,10,2011,Ghost,Oda Mae Demands Respect,tt0099653 HqAbjHKO5jM,1994.0,6,9,2011,Forrest Gump,Lt. Dan Makes His Peace,tt0109830 IdIEDlLAaJs,1990.0,4,10,2011,Ghost,Ditto,tt0099653 6vg44SEEMmA,1990.0,8,10,2011,Ghost,Scaring Willie,tt0099653 6ovOboVwB7g,2004.0,4,10,2011,Mean Girls,Such a Good Friend,tt0377092 5fLlgS6aO9k,1990.0,9,10,2011,Ghost,Molly Finally Believes,tt0099653 VZpMlm4xYG4,2004.0,9,10,2011,Mean Girls,Regina Meets Bus,tt0377092 W8_POt2KlfQ,2004.0,5,10,2011,Mean Girls,Sweatpants on Monday,tt0377092 PoIdfRnQZ4A,2004.0,2,10,2011,Mean Girls,Cady Goes Primal,tt0377092 re5veV2F7eY,2004.0,1,10,2011,Mean Girls,Meeting the Plastics,tt0377092 LORyEX_5czg,2004.0,3,10,2011,Mean Girls,Regina Bashes Janis,tt0377092 NpvlS6uBduQ,1990.0,2,10,2011,Ghost,After the End,tt0099653 WPYqRaOm1ak,2004.0,7,10,2011,Mean Girls,Girls Gone Wild!,tt0377092 sT8wMBeVffk,2004.0,6,10,2011,Mean Girls,You're Plastic,tt0377092 4rT5fYMfEUc,1994.0,3,9,2011,Forrest Gump,Bubba on Shrimp,tt0109830 sR528E5_8yI,2004.0,8,10,2011,Mean Girls,A Lot of Feelings,tt0377092 RkFcHUvyJ-k,2008.0,1,9,2011,Cloverfield,The Statue of Liberty's Head,tt1060277 -Y2wqkD2KVM,1990.0,10,10,2011,Ghost,Carl's End,tt0099653 6esR4uGEFCc,2008.0,3,9,2011,Cloverfield,What the Hell Was That?,tt1060277 gRzjSsXw9PU,2008.0,4,9,2011,Cloverfield,Subway Attack,tt1060277 DUbplahEBfQ,2008.0,5,9,2011,Cloverfield,I Don't Feel So Good,tt1060277 8c-Na7OHYnI,2008.0,6,9,2011,Cloverfield,"Something Else, Also Terrible",tt1060277 dVCki9kwF_4,2008.0,2,9,2011,Cloverfield,Brooklyn Bridge Collapse,tt1060277 kyY50rBet2U,2008.0,7,9,2011,Cloverfield,Bombing the Creature,tt1060277 6ibWJnY6Ur8,2008.0,9,9,2011,Cloverfield,Final Words,tt1060277 k-oVuQpjG3s,1996.0,4,9,2011,Mission: Impossible,Into the Vault Scene,tt0117060 sd_I5ez3jwg,1996.0,1,9,2011,Mission: Impossible,Mission Gone Wrong Scene,tt0117060 ocb7pXndlug,2008.0,8,9,2011,Cloverfield,Hud Meets the Monster,tt1060277 wwzyveUAS80,2006.0,4,8,2011,Mission: Impossible 3,Humpty Dumpty Scene,tt0317919 ar0xLps7WSY,1996.0,5,9,2011,Mission: Impossible,Close Call Scene,tt0117060 YK-ys6sY_q0,1996.0,3,9,2011,Mission: Impossible,Is He Serious? Scene,tt0117060 AysV4mGh4fc,1996.0,8,9,2011,Mission: Impossible,High-Speed Train Ride Scene,tt0117060 2wwC9c3iYK4,1996.0,6,9,2011,Mission: Impossible,Out of the Vault Scene,tt0117060 zk6ac5Amzr0,2000.0,2,9,2011,Mission: Impossible 2,Atrium Dive Scene,tt0120755 CgX4uJSj00Y,2006.0,5,8,2011,Mission: Impossible 3,Seeing Double Scene,tt0317919 bXYobuaTjNs,2000.0,1,9,2011,Mission: Impossible 2,Watch the Road Scene,tt0120755 hnum8SxuVCQ,2000.0,4,9,2011,Mission: Impossible 2,Nyah Injects the Virus Scene,tt0120755 QLNUIU7AzTg,2006.0,1,8,2011,Mission: Impossible 3,Count to Ten Scene,tt0317919 iXSKAf6h5vE,2000.0,3,9,2011,Mission: Impossible 2,Destroying Chimera Scene,tt0120755 GR0R9KfU4tY,2000.0,5,9,2011,Mission: Impossible 2,Just Stay Alive Scene,tt0120755 xPZ6eaL3S2E,1987.0,2,10,2011,The Untouchables,The Chicago Way,tt0094226 O3P0SMpqK-8,2000.0,7,9,2011,Mission: Impossible 2,Stop Mumbling! Scene,tt0120755 00rpUGdvcY0,2006.0,2,8,2011,Mission: Impossible 3,Now I'm Out Scene,tt0317919 AzIQg6Ly_Rw,2000.0,8,9,2011,Mission: Impossible 2,Motorcycle Chase Scene,tt0120755 AIcUKqhFp4g,2000.0,6,9,2011,Mission: Impossible 2,Risky Scene,tt0120755 S69qPup6hyk,2006.0,3,8,2011,Mission: Impossible 3,The Anti-God Scene,tt0317919 eVUsVW87kSk,2000.0,9,9,2011,Mission: Impossible 2,Not a Bad Way to Go Scene,tt0120755 ZUKCW08_8Og,1998.0,4,9,2011,The Truman Show,Driving Through Fire,tt0120382 YMz-skgeUdw,2006.0,6,8,2011,Mission: Impossible 3,What is the Rabbit's Foot? Scene,tt0317919 FCRdTWGdngU,2006.0,8,8,2011,Mission: Impossible 3,I Knew He'd Make It Scene,tt0317919 8l4qdf_1nGM,2006.0,7,8,2011,Mission: Impossible 3,Bridge Attack Scene,tt0317919 gAM2Q7Sqlbk,1987.0,4,10,2011,The Untouchables,Malone's Methods,tt0094226 KdNSlyrbcDY,1987.0,1,10,2011,The Untouchables,A Kind Word and a Gun,tt0094226 QHH9EYZHoVU,1987.0,3,10,2011,The Untouchables,Batter Up,tt0094226 _d5jXDvrOu4,1987.0,7,10,2011,The Untouchables,Knife to a Gunfight,tt0094226 j8nZBlPfR7Y,1987.0,6,10,2011,The Untouchables,You Got Nothing!,tt0094226 YVz211iI26o,1987.0,10,10,2011,The Untouchables,Here Endeth the Lesson,tt0094226 eSm68IEDDT0,1987.0,9,10,2011,The Untouchables,Nitti's Fall,tt0094226 QJpRSf4q-hI,1987.0,8,10,2011,The Untouchables,The Stairway Shootout,tt0094226 t2QvuZpxmeo,1990.0,7,10,2011,The Godfather: Part 3,I Killed My Father's Son,tt0099674 dgoDvnebHRw,1987.0,5,10,2011,The Untouchables,I Want Him Dead,tt0094226 qoWjU8OAUaU,1979.0,8,8,2011,The Warriors,You're Dead,tt0080120 aRM2YcGpmxg,1979.0,7,8,2011,The Warriors,"Warriors, Come Out to Play",tt0080120 0kqn9qQZdOs,1979.0,6,8,2011,The Warriors,vs. The Punks,tt0080120 bTUrWYv2vtU,1979.0,1,8,2011,The Warriors,Can You Dig It?,tt0080120 z9lBvg5clr0,1998.0,3,9,2011,The Truman Show,Being Spontaneous,tt0120382 oMLjP2ajXvs,1979.0,3,8,2011,The Warriors,Did It!,tt0080120 MdwuW8n3JYA,1998.0,1,9,2011,The Truman Show,"Good Afternoon, Good Evening and Good Night",tt0120382 wIrUoTYd9hA,1998.0,2,9,2011,The Truman Show,"When It Rains, It Pours on Truman",tt0120382 7b9sNVUPFyM,2004.0,2,10,2011,Bride and Prejudice,Lalita and Darcy Butt Heads,tt0361411 YfJc2bORFHs,1998.0,6,9,2011,The Truman Show,Father Son Reunion,tt0120382 6U4-KZSoe6g,1998.0,5,9,2011,The Truman Show,Do Something!,tt0120382 6ZMZYrdXtP0,1998.0,9,9,2011,The Truman Show,Truman Talks to the Creator,tt0120382 u-ApxFOpl28,1998.0,8,9,2011,The Truman Show,Thar She Blows,tt0120382 UIfdjPDPM-I,1998.0,7,9,2011,The Truman Show,That One's for Free,tt0120382 QXtkzFiGsxw,1979.0,5,8,2011,The Warriors,I Like It Rough,tt0080120 6c5Qlf1Fr28,2003.0,2,8,2011,The Italian Job,Two Kinds of Thieves,tt0317740 764r3kF5tZg,2003.0,1,8,2011,The Italian Job,,tt0317740 2bkNfQBLCJw,2003.0,5,8,2011,The Italian Job,Into the Subway,tt0317740 zmicfGmQZ9s,2008.0,9,9,2011,The Curious Case of Benjamin Button,Be Whoever You Want to Be,tt0421715 dnnrhhZjTh8,2003.0,6,8,2011,The Italian Job,Tube Chase,tt0317740 GVAVkeMQyKY,2003.0,3,8,2011,The Italian Job,The Man Who Knew Too Much,tt0317740 6EFjbeXuNCg,2003.0,4,8,2011,The Italian Job,The Element of Surprise,tt0317740 YlT7x_8VuMA,2003.0,8,8,2011,The Italian Job,Chicken With a Chopper,tt0317740 r4IBPd7-LlQ,2003.0,7,8,2011,The Italian Job,Helicopter Chase,tt0317740 jtoYZoKsAnY,2006.0,3,10,2011,Babel,Provoking the Dentist,tt0449467 _r8MRCkHY54,2008.0,6,9,2011,The Curious Case of Benjamin Button,Sleep With Me,tt0421715 ohz8_IafGwE,1995.0,5,10,2011,Tommy Boy,Fat Guy in a Little Coat,tt0114694 3QCSrQEGvZA,1995.0,8,10,2011,Tommy Boy,Housekeeping,tt0114694 ndfLW-xm9Xk,1995.0,1,10,2011,Tommy Boy,Cow Tipping,tt0114694 gkGFvtW0CSE,1995.0,10,10,2011,Tommy Boy,Tommy vs. the John,tt0114694 n1lbpj6868o,1995.0,6,10,2011,Tommy Boy,Go Time!,tt0114694 HWrjBBXjjhM,1995.0,9,10,2011,Tommy Boy,Airline Safety,tt0114694 c1EyN9xTK94,1995.0,7,10,2011,Tommy Boy,I Killed My Sale!,tt0114694 ECDGpYuMRDA,2008.0,1,9,2011,The Curious Case of Benjamin Button,A Clock That Runs Backwards,tt0421715 GmslKQBmdzg,2008.0,7,9,2011,The Curious Case of Benjamin Button,Will You Still Love Me?,tt0421715 5LN23qErZDM,1995.0,3,10,2011,Tommy Boy,My Whole Life Sucks,tt0114694 hIhe-VqMBVI,2004.0,9,10,2011,Bride and Prejudice,I Was Right About You,tt0361411 1_-RGLVHmOA,2004.0,5,10,2011,Bride and Prejudice,No Life Without Wife,tt0361411 AoWdk9CB-mU,2004.0,1,10,2011,Bride and Prejudice,The Indian MC Hammer,tt0361411 WDAo_p8At-o,2004.0,6,10,2011,Bride and Prejudice,Can't Figure You Out,tt0361411 IH_dSlEAl0A,1998.0,12,12,2011,Halloween H20: 20 Years Later,Final Confrontation,tt0120694 psru6_9PPcw,2004.0,3,10,2011,Bride and Prejudice,Lalita Meets Wickham,tt0361411 BkW-4CWw3XQ,2002.0,6,12,2011,Heaven,Philippa Escapes,tt0297884 TEjRTNg51Io,2002.0,4,12,2011,Heaven,Filippo's Plan,tt0297884 4dW0aROYEk4,2002.0,5,12,2011,Heaven,Philippa's Confession,tt0297884 9pDIRuJt-gU,2002.0,11,12,2011,Heaven,In Love,tt0297884 upyAJ-kEgNY,1998.0,11,12,2011,Halloween H20: 20 Years Later,Laurie Fights Back,tt0120694 tFAX4TdV6ak,2002.0,9,12,2011,Heaven,I Love You,tt0297884 OTq3-zG1lCE,1998.0,8,12,2011,Halloween H20: 20 Years Later,Sarah's Unsuccessful Escape,tt0120694 P-E8ZrQ06go,2002.0,1,12,2011,Heaven,Philippa's Bomb Plot,tt0297884 g-GJDgd7D8k,2002.0,2,12,2011,Heaven,You Killed Four People,tt0297884 Ktn-Hd2BTzs,2002.0,3,12,2011,Heaven,I Want to Help You,tt0297884 bwzuMk8SRzY,2008.0,6,9,2011,Iron Man,"Yeah, I Can Fly Scene",tt0371746 qYW3MOezCc4,1997.0,4,9,2011,Face/Off,Prison Escape,tt0119094 3Im7ZYrXCOY,2008.0,7,9,2011,Iron Man,Handles Like a Dream Scene,tt0371746 t7S_kRqYshw,2002.0,7,12,2011,Heaven,Philippa's Revenge,tt0297884 qilGSZ9UWTc,2002.0,10,12,2011,Heaven,I'm Not Going With You,tt0297884 OYrxSQ_Y2Iw,2008.0,9,9,2011,Iron Man,I Am Scene,tt0371746 3o2ACEr9NmQ,2008.0,8,9,2011,Iron Man,to the Rescue Scene,tt0371746 p0qVhhIfWr4,1992.0,6,11,2011,The Crying Game,,tt0104036 3Ag3aRRoPzk,2004.0,8,10,2011,Bride and Prejudice,Take Me to Love,tt0361411 a4EqbYUl7Rg,2002.0,12,12,2011,Heaven,Now,tt0297884 dsCzZE_y0so,1998.0,11,12,2011,Rounders,Spotting KGB's Tell,tt0128442 e2RQwVyRSGU,1998.0,9,12,2011,Rounders,All In,tt0128442 MbrO-ZbuhIs,1998.0,2,12,2011,Rounders,Aces Full,tt0128442 aXbf3X56rGM,1998.0,8,12,2011,Rounders,Johnny Chan,tt0128442 c_YHTdu1jFc,1997.0,9,9,2011,Face/Off,Speedboat Chase,tt0119094 XxsSp2qJIZg,1997.0,7,9,2011,Face/Off,This is Turning into a Real Marriage,tt0119094 ciWBzhmOC_o,1998.0,5,12,2011,Rounders,Atlantic City Suckers,tt0128442 0ZQln6DsWgE,1998.0,3,12,2011,Rounders,The Judge's Game,tt0128442 _nqoPInNcvo,2004.0,7,10,2011,Bride and Prejudice,Mr. Kohli's Proposal,tt0361411 HMziYymVYMs,2004.0,10,10,2011,Bride and Prejudice,Looking For Lahki,tt0361411 QvVoH-X-Kls,1998.0,10,12,2011,Rounders,I Stick it in You!,tt0128442 ERmo8TmDYCI,1998.0,4,12,2011,Rounders,Destiny Chooses Us,tt0128442 z7NxEj4A1Cg,1998.0,7,12,2011,Rounders,I Play for Money,tt0128442 QAJkvEJ2QjE,1998.0,1,12,2011,Rounders,No Limit Texas Hold 'Em,tt0128442 N7hG6mx0csE,1998.0,6,12,2011,Rounders,Sheriff's Game,tt0128442 LIXJaTQTDAg,1998.0,12,12,2011,Rounders,The Final Hand,tt0128442 _7z8a8kTj1c,2001.0,4,11,2011,The Others,Strange Voices,tt0230600 G5GJHYXrjhY,1997.0,8,9,2011,Face/Off,What a Predicament,tt0119094 Mn6WC1pxVNk,1997.0,1,9,2011,Face/Off,Crashing the Plane,tt0119094 klCemtBU1cg,1997.0,5,9,2011,Face/Off,I Am the King,tt0119094 GH-r4HXHcCk,2008.0,4,9,2011,Iron Man,My Turn Scene,tt0371746 KNAgFhh1ji4,2008.0,2,9,2011,Iron Man,The Jericho Scene,tt0371746 -zya4vJ-kQE,2008.0,5,9,2011,Iron Man,Is It Safe? Scene,tt0371746 n4BJBz8GpzI,2008.0,3,9,2011,Iron Man,Cave Battle Scene,tt0371746 x1ij_TEK_MM,2007.0,1,8,2011,There Will Be Blood,Young H.W. Loses His Hearing,tt0469494 nVrzbfxxcZ8,2009.0,6,9,2011,Watchmen,Nite Owl Rescue,tt0409459 Y9GAufJIe0I,1991.0,8,10,2011,The Lovers on the Bridge,Torching the Truck,tt0101318 sBjNpZ5t9S4,1996.0,8,10,2011,Black Sheep,Jack MeHoff,tt0115697 25Y5O97c1Aw,1997.0,10,12,2011,The Castle,Disenchanted with Our Legal System,tt0118826 1Gk_oU1m5CY,1997.0,1,12,2011,The Castle,This Is My Story,tt0118826 xCtMlhZskDE,2000.0,1,7,2011,What Women Want,Flo's Thoughts,tt0207201 WZppJUaR7_0,1996.0,10,10,2011,Black Sheep,Too Close For Comfort,tt0115697 BcufzXXaEoI,1996.0,2,10,2011,Black Sheep,Steve's Souvenir,tt0115697 fvptWDiYrIk,1996.0,1,10,2011,Black Sheep,Questionable Call,tt0115697 sp8Ufx3Ej24,1998.0,2,12,2011,Halloween H20: 20 Years Later,Michael Myers is Dead!,tt0120694 kLskn7jHXrg,1997.0,6,9,2011,Face/Off,Let's Just Kill Each Other,tt0119094 d6ISJ_dN-80,1997.0,2,9,2011,Face/Off,We Both Know Our Guns,tt0119094 flvyCwagnF0,1996.0,1,9,2011,Primal Fear,A Woman With a Brain,tt0117381 4vcNnS9k884,2001.0,1,11,2011,Scary Movie 2,Demonic Sh**,tt0257106 5t_tgiWatvs,2001.0,4,11,2011,Scary Movie 2,Dinner Made by Hand,tt0257106 8ce557hlgEM,1997.0,3,9,2011,Face/Off,It's Like Looking in a Mirror,tt0119094 XyGbtYaVcaA,1996.0,5,9,2011,Primal Fear,"Meeting ""Roy""",tt0117381 e2g4Wr81rz8,1996.0,8,9,2011,Primal Fear,Playing Rough,tt0117381 ZbaW0HZ_Qy8,1996.0,9,9,2011,Primal Fear,"Good For You, Marty",tt0117381 b4teoyYZsYk,2009.0,7,9,2011,Watchmen,How to Lose Your Arms,tt0409459 QAFttSucKH4,1996.0,7,9,2011,Primal Fear,How Can You Do What You Do?,tt0117381 jaCofC2Bv-c,1996.0,6,9,2011,Primal Fear,The Tape,tt0117381 YDV8PMVi-fA,1996.0,3,9,2011,Primal Fear,Just One Juror,tt0117381 EuSGUhhmYfk,2009.0,8,9,2011,Watchmen,The Greatest Practical Joke in Human History,tt0409459 PYLokGkYl4E,1996.0,2,9,2011,Primal Fear,Prepping Aaron,tt0117381 yGbUcqCXe14,2009.0,3,9,2011,Watchmen,The Birth of Dr. Manhattan,tt0409459 JJ5290-0lw0,2009.0,5,9,2011,Watchmen,You're Locked In Here With Me!,tt0409459 esQgzR6gTjw,1996.0,4,9,2011,Primal Fear,Powerful People,tt0117381 BYWVUvqDFh0,2009.0,1,9,2011,Watchmen,Rorschach's Journal,tt0409459 p-mlLMZXqg4,2009.0,4,9,2011,Watchmen,Give Me Back My Face,tt0409459 NFV2sZJrtDQ,2009.0,9,9,2011,Watchmen,Rorschach's Fate,tt0409459 s_hFTR6qyEo,2007.0,7,8,2011,There Will Be Blood,I Drink Your Milkshake!,tt0469494 4u-4PyidIeQ,2009.0,2,9,2011,Watchmen,Face to Face with Dr. Manhattan,tt0409459 zirtzDl2RH0,2007.0,4,8,2011,There Will Be Blood,Daniel's Confession,tt0469494 -ZODi5SGAyE,1991.0,1,10,2011,The Lovers on the Bridge,Fire Breathing,tt0101318 nzyDm-J065g,2007.0,2,8,2011,There Will Be Blood,The Well Burns Up,tt0469494 HzpxTmlWOC4,2007.0,5,8,2011,There Will Be Blood,Bastard From a Basket,tt0469494 12Iosf6btzM,2007.0,8,8,2011,There Will Be Blood,I'm Finished!,tt0469494 MyKNmvJYO7o,2007.0,6,8,2011,There Will Be Blood,A False Prophet,tt0469494 5yUd7SXxXzs,2000.0,4,7,2011,What Women Want,Imagine the Possibilities,tt0207201 28BXqQWqYJU,2007.0,3,8,2011,There Will Be Blood,I Have a Competition in Me,tt0469494 xJp2HXBJv_4,2000.0,3,7,2011,What Women Want,The Brutal Truth,tt0207201 hf7_JChVnAQ,1991.0,5,10,2011,The Lovers on the Bridge,Water Skiing,tt0101318 L8eQ78agzQg,2000.0,7,7,2011,What Women Want,Confession and Profession,tt0207201 FeoFv3dOeqo,2000.0,2,7,2011,What Women Want,Streams of Consciousness,tt0207201 urby-QPF1hE,2000.0,5,7,2011,What Women Want,Working Relationship,tt0207201 NrriZYH49yE,2000.0,6,7,2011,What Women Want,Back to Normal,tt0207201 lKMl0NFXM4s,1991.0,2,10,2011,The Lovers on the Bridge,Move Your Finger,tt0101318 abh8wBYFeuE,1991.0,3,10,2011,The Lovers on the Bridge,Military Parade,tt0101318 yDoaKW48_hk,2005.0,5,12,2011,Hostage,The Watchman,tt0340163 Q6kNpNi_iJI,1991.0,7,10,2011,The Lovers on the Bridge,Missing,tt0101318 8lD16zBpcog,1991.0,10,10,2011,The Lovers on the Bridge,Reunion in the Snow,tt0101318 cH80fIW-mrc,1991.0,4,10,2011,The Lovers on the Bridge,Dancing under the Fireworks,tt0101318 vn1ZcpwPlAA,1991.0,6,10,2011,The Lovers on the Bridge,Drugged Drinks,tt0101318 rG1qXTVH1t4,2005.0,1,12,2011,Hostage,Shoot Me!,tt0340163 AMuVqFvM2Rs,1991.0,9,10,2011,The Lovers on the Bridge,I Never Loved You,tt0101318 oW7IadnQblg,1996.0,6,10,2011,Black Sheep,Voting Kicks Ass,tt0115697 C7G9Q9JcN34,1997.0,2,12,2011,The Castle,Tracy's Wedding,tt0118826 4sO94xn-C6o,1996.0,9,10,2011,Black Sheep,A Horse's Patoot!,tt0115697 uCtMTbKX6_I,1997.0,5,12,2011,The Castle,Straight to the Pool Room,tt0118826 qqhQ9jN3gj4,1997.0,3,12,2011,The Castle,Tell Him He's Dreamin',tt0118826 qTUcFhCim_A,1997.0,4,12,2011,The Castle,Dale Dug a Hole,tt0118826 prnQLmVg5V8,1997.0,6,12,2011,The Castle,How's the Serenity?,tt0118826 wEE-EVC0P8M,1997.0,7,12,2011,The Castle,10% Brains and 95% Muscle,tt0118826 PfnAhUBroF8,1997.0,8,12,2011,The Castle,Sal Tells a Story,tt0118826 ssukL9a99JA,1997.0,9,12,2011,The Castle,The Vibe of the Thing,tt0118826 b4kKWa_hjCk,1997.0,12,12,2011,The Castle,A Man's Home Is His Castle,tt0118826 5smoo7ipoc0,1997.0,11,12,2011,The Castle,The Opposite of Letting Someone Down,tt0118826 f890SC1schE,1996.0,3,10,2011,Black Sheep,Going Downhill Fast,tt0115697 HI_mwhUvqHc,1996.0,4,10,2011,Black Sheep,That's Not Normal,tt0115697 tlE5yK4l34o,1996.0,7,10,2011,Black Sheep,Kill Whitey!,tt0115697 sjeIpuOhuPM,2005.0,8,12,2011,Hostage,The Best Day of Your Life,tt0340163 t8dJFMMvNQQ,2005.0,2,12,2011,Hostage,Home Invasion,tt0340163 RGvWYYCWFq8,1996.0,5,10,2011,Black Sheep,Going Through Hail,tt0115697 i_sT5Jl3qM4,2005.0,3,12,2011,Hostage,Cop Killer,tt0340163 68XJpm3q2b4,2005.0,9,12,2011,Hostage,I Know About the Money,tt0340163 qbfjO2d2S4Q,2005.0,4,12,2011,Hostage,The Man in Charge,tt0340163 T9tQanQSgQM,2005.0,6,12,2011,Hostage,I'm Trying to Save Your Life,tt0340163 tJIzs4CS-TE,2005.0,10,12,2011,Hostage,I Am in Charge!,tt0340163 UGn03bNlFuo,2005.0,12,12,2011,Hostage,Rescuing the s,tt0340163 M3jyyQMbJNY,2005.0,7,12,2011,Hostage,Bang,tt0340163 Zp4qkAJFHrQ,2005.0,11,12,2011,Hostage,Burn It,tt0340163 KUGH4XQ94tc,1992.0,11,11,2011,The Crying Game,Tied Up and Shot Down,tt0104036 pwt49IF0uG0,2001.0,3,11,2011,Scary Movie 2,The Caretaker,tt0257106 EMBCBSoE1rU,1992.0,4,11,2011,The Crying Game,Jody Runs For It,tt0104036 ZOtIoBAxDUw,2001.0,2,11,2011,Scary Movie 2,The Exorcism,tt0257106 FX3YO40UDHc,2001.0,8,11,2011,Scary Movie 2,Marijuana Monster Tokes Shorty,tt0257106 sw-oQlitqCY,2001.0,7,11,2011,Scary Movie 2,My Pussy's Gone Crazy!,tt0257106 VjlUWwstdTU,2001.0,5,11,2011,Scary Movie 2,Nike Freestyle Spoof,tt0257106 js-kku6X7yU,2001.0,9,11,2011,Scary Movie 2,They Can't Feel Their Legs,tt0257106 ZSoIlS4LQiI,2001.0,6,11,2011,Scary Movie 2,Paranormal Sexual Activity,tt0257106 dvodASNU58U,2001.0,10,11,2011,Scary Movie 2,Dwight's Time to Shine,tt0257106 YkGv4M2y3zg,2001.0,11,11,2011,Scary Movie 2,Angel Style,tt0257106 CXgaZeUY6fM,1992.0,2,11,2011,The Crying Game,She's My Type,tt0104036 Ugd_VB9iVFE,1992.0,3,11,2011,The Crying Game,The Scorpion and the Frog,tt0104036 MV-KVBADWMg,1992.0,7,11,2011,The Crying Game,First Kiss,tt0104036 LldAqBKjyJ0,1992.0,1,11,2011,The Crying Game,Checking the Prisoner,tt0104036 0Z-o1RVdnHE,1992.0,8,11,2011,The Crying Game,The Truth Revealed,tt0104036 bP9A87VOaYE,1992.0,10,11,2011,The Crying Game,I Knew Your Man,tt0104036 qvwHppI95K0,2008.0,1,9,2011,Iron Man,The Merchant of Death Scene,tt0371746 b0fZtW9Niic,1992.0,5,11,2011,The Crying Game,A Haircut from Dil,tt0104036 7-YQ7rO_JSg,1992.0,9,11,2011,The Crying Game,You're Never Out,tt0104036 ELzQ4OtDjrs,1994.0,1,12,2011,Priest,Different Ministries,tt0110889 kaZ87rTNkDA,1996.0,5,12,2011,Flirting with Disaster,The Big Circumcision Controversy,tt0116324 NI7As3rOogo,2001.0,2,12,2011,Jay and Silent Bob Strike Back,What the F*** is the Internet?,tt0261392 HZs_qERvDko,2007.0,10,11,2011,Becoming Jane,"Family, Fortune, Importance",tt0416508 naTncfYgYtU,1995.0,1,10,2011,Four Rooms,Room 404,tt0113101 T2-1TBORh9k,2002.0,5,10,2011,The Dangerous Lives of Altar Boys,I Don't Believe There is a Hell,tt0238924 vaIRRbuiarE,1999.0,1,12,2011,A Walk on the Moon,The Blouse Man,tt0120613 yZ1OgEqw2oc,2002.0,10,10,2011,Tadpole,Not a Very Good Mother,tt0271219 Z5lyNKWvZfc,2003.0,11,11,2011,Once Upon a Time in Mexico,"The Good, the Bad & the Deformed",tt0285823 fVltuJq1SQ8,2003.0,9,11,2011,Once Upon a Time in Mexico,The Blind Gunslinger,tt0285823 qBrEcM3NbH0,1998.0,12,12,2011,Velvet Goldmine,"Changing the World, Changing Ourselves",tt0120879 RS9Z138meRo,2003.0,8,11,2011,Once Upon a Time in Mexico,Sons of Mexico,tt0285823 j84y65YfUS4,1999.0,10,12,2011,A Walk on the Moon,I Hate Wasps!,tt0120613 X7ut7L-X1NQ,2002.0,7,10,2011,The Dangerous Lives of Altar Boys,No One was Coming for this Dog,tt0238924 yNDm5IA6nQQ,1994.0,5,10,2011,Ready to Wear,On My Hands & Knees,tt0110907 u3xawRs6Rik,2002.0,4,10,2011,The Dangerous Lives of Altar Boys,Meeting the Cougar,tt0238924 HtagS7pfoJo,2002.0,1,10,2011,The Dangerous Lives of Altar Boys,Margie Flynn!,tt0238924 2Fy8vK7IGIs,2002.0,2,10,2011,The Dangerous Lives of Altar Boys,The Atomic Trinity,tt0238924 kmU4DlO3wzc,2002.0,3,10,2011,The Dangerous Lives of Altar Boys,We're Gonna Need a Bad Guy,tt0238924 TGWJfpAwlrI,2002.0,6,10,2011,The Dangerous Lives of Altar Boys,The Ransom Note,tt0238924 NWuqkpD_A6E,2002.0,9,10,2011,The Dangerous Lives of Altar Boys,The Cougar Cage,tt0238924 isOtwdqD3y8,2002.0,8,10,2011,The Dangerous Lives of Altar Boys,Was That Low Enough for You?,tt0238924 xTyEZA6ILOk,2002.0,10,10,2011,The Dangerous Lives of Altar Boys,The Final Battle,tt0238924 JSetLbD948c,1994.0,6,10,2011,Ready to Wear,These Boots Were Made for Walking,tt0110907 s-kucHjKbG4,1995.0,3,10,2011,Four Rooms,500 Dollars to Babysit,tt0113101 Kz234-_khjs,1994.0,9,10,2011,Ready to Wear,Italian Strip Tease,tt0110907 BCruokZzMXc,1995.0,5,10,2011,Four Rooms,Milk and Saltines,tt0113101 RAKPzL6uNOg,1995.0,7,10,2011,Four Rooms,Did They Misbehave?,tt0113101 9XvQJ2Jbg8A,1995.0,4,10,2011,Four Rooms,The Parents Leave,tt0113101 RHULBucGlA4,1995.0,8,10,2011,Four Rooms,A Hatchet as Sharp as the Devil Himself,tt0113101 YO2-9VWwiUI,1996.0,7,10,2011,Emma,Three Things Very Dull Indeed,tt0116191 wwLnrdD4l3U,1994.0,8,10,2011,Ready to Wear,In The Closet,tt0110907 rQOBwQbssgo,1995.0,9,10,2011,Four Rooms,A Hitchcock-Inspired Bet,tt0113101 OsH_JszzicE,1995.0,10,10,2011,Four Rooms,$1000 for One Second's Work,tt0113101 oqDlKpTihNo,1995.0,6,10,2011,Four Rooms,Vaporub on the Eyelids,tt0113101 qfym2Neaz4c,1999.0,4,10,2011,eXistenZ,The Micro-Pod,tt0120907 lllLnc58CoI,1995.0,2,10,2011,Four Rooms,Out the Window,tt0113101 gNCAj7eS07I,1996.0,1,10,2011,Emma,He Wants to Marry Me,tt0116191 Wt5LAZa7LAU,1999.0,3,10,2011,eXistenZ,Bio-Pod Surgery,tt0120907 HO4TjpZw5zc,1996.0,8,10,2011,Emma,If He Would Just Stay Single,tt0116191 6B6yElrEeKM,1996.0,3,10,2011,Emma,The Perfect State of Warmness,tt0116191 LTgOLHxQ9mM,1996.0,10,10,2011,Emma,Marry Me,tt0116191 M4nag_xN0Rw,1994.0,1,10,2011,Ready to Wear,Kitty Potter On The Scene,tt0110907 41MHIJIg6u0,1996.0,9,10,2011,Emma,More than a Friend,tt0116191 mjt0iNTJrWE,1996.0,4,10,2011,Emma,Mr. Elton Adores,tt0116191 8k_gzuVqZmk,1996.0,2,10,2011,Emma,Men of Sense Do Not Want Silly Wives,tt0116191 YOLGp-P5QFc,1996.0,5,10,2011,Emma,Duet with Mr. Churchill,tt0116191 HdU-6bKqhzk,1999.0,2,10,2011,eXistenZ,Gas's Betrayal,tt0120907 9NCpU9laV9I,1994.0,2,10,2011,Ready to Wear,The Wrong Suite,tt0110907 W1fkINKMwHA,1999.0,1,10,2011,eXistenZ,Getting a Bio-Port,tt0120907 YHKkh9b1Oi0,1994.0,3,10,2011,Ready to Wear,French Know Wine,tt0110907 9KhqPTmsCJU,1994.0,4,10,2011,Ready to Wear,Isabella Faints,tt0110907 -qq785V7JOU,1999.0,5,10,2011,eXistenZ,is Paused!,tt0120907 ssM67LXOwQw,1999.0,6,10,2011,eXistenZ,I Need to Kill our Waiter,tt0120907 4zJ3a0K2DP0,1999.0,7,10,2011,eXistenZ,Deadly Spores,tt0120907 89hYiDNscBE,1999.0,9,10,2011,eXistenZ,tranCendenZ,tt0120907 o3f521sUTaE,1999.0,10,10,2011,eXistenZ,Are We Still In the Game?,tt0120907 2tmMMXTmM9o,1999.0,8,10,2011,eXistenZ,Have I Won?,tt0120907 SzQ4cDkdsqg,1994.0,7,10,2011,Ready to Wear,Two Americans in a Hotel Room,tt0110907 ZTUXWwbqu-I,1994.0,10,10,2011,Ready to Wear,Adieu Anne Eisenhower,tt0110907 OD69M9N_ihQ,2008.0,4,10,2011,Smart People,Self-Absorption's Underrated,tt0858479 A7kyMbwD9o4,2008.0,6,10,2011,Smart People,Vanessa Kisses Her Uncle,tt0858479 DcH_p1vfD1g,2000.0,1,12,2011,Chocolat,What Do You See?,tt0241303 yuU67Mv4bFA,2000.0,3,12,2011,Chocolat,Taming the Shrew,tt0241303 BbsJiMmpObc,2000.0,6,12,2011,Chocolat,Impure Thoughts at Your Age?,tt0241303 Q4-XxWqSgH8,2000.0,4,12,2011,Chocolat,I Want to be Your Friend,tt0241303 yoGdST0RFuc,2000.0,7,12,2011,Chocolat,Vianne Befriends the River Rats,tt0241303 70E-IYUdbZk,2000.0,12,12,2011,Chocolat,Belonging,tt0241303 rGvIBT10JDU,2000.0,10,12,2011,Chocolat,Roux's Worm Trick,tt0241303 xmwm0RH8i-4,2000.0,8,12,2011,Chocolat,Using a Skillet,tt0241303 PhkCGApLP30,2000.0,9,12,2011,Chocolat,Your Favorite,tt0241303 xftZzmdlCKk,2000.0,11,12,2011,Chocolat,I'm Throwing a Party,tt0241303 U-XEvzDp70Y,2002.0,2,11,2011,The Hours,A Visit From Kitty,tt0274558 hPF9nzzuMfo,2002.0,3,11,2011,The Hours,Laura Consoles Kitty,tt0274558 UGYt7xZWoPw,2001.0,1,12,2011,Prozac Nation,You Wanna Do Some X?,tt0236640 1PKDDa6p-xE,2002.0,7,11,2011,The Hours,An Obligation to Your Sanity,tt0274558 xKL_T4z0QX4,2001.0,3,12,2011,Prozac Nation,Health Hazard,tt0236640 _f0TNK7fb1w,2002.0,5,11,2011,The Hours,To Kill or Not to Kill the Heroine,tt0274558 xsyNWPpAb14,2001.0,2,12,2011,Prozac Nation,My First Time,tt0236640 ajgeUrUcqfE,2002.0,6,11,2011,The Hours,Happiness,tt0274558 CWAAUSNLZXQ,2002.0,1,11,2011,The Hours,Staying Alive to Satisfy You,tt0274558 vWZapP8b11s,2002.0,10,11,2011,The Hours,You Have to Let Me Go,tt0274558 Qk_tn8K0OwA,2002.0,4,11,2011,The Hours,Bird Funeral,tt0274558 DHkGu6e0R4I,1996.0,11,12,2011,Basquiat,Amoco Artwork,tt0115632 JsUh_lfcyKk,2002.0,9,11,2011,The Hours,I Changed My Mind,tt0274558 HtpiEXXf7dI,2001.0,6,12,2011,Prozac Nation,Bad Behavior,tt0236640 kvHcswMy05A,2002.0,11,11,2011,The Hours,No Choice,tt0274558 l6SNAV2S5es,2001.0,5,12,2011,Prozac Nation,It Was An Accident,tt0236640 UaRyn-tb0U4,2001.0,7,12,2011,Prozac Nation,Making the Move,tt0236640 2wy3acVALNI,2001.0,8,12,2011,Prozac Nation,Real Love Is Total,tt0236640 jAZbK72VLFA,2003.0,10,11,2011,Once Upon a Time in Mexico,El Mariachi's Revenge,tt0285823 KtGm2OkQa3w,2008.0,1,11,2011,Happy-Go-Lucky,What's So Funny?,tt1045670 zr5fCCcWRJ4,1992.0,12,12,2011,Reservoir Dogs,I'm a Cop,tt0105236 z0s6zZJdsZo,1992.0,4,12,2011,Reservoir Dogs,A Rat in the House,tt0105236 HzF_TbmDH5s,1992.0,11,12,2011,Reservoir Dogs,Mexican Standoff,tt0105236 1ZT_oKZGgew,2000.0,3,12,2011,Scary Movie,Miss Fellatio Wins,tt0175142 EzW2MKQ5q4s,2001.0,9,12,2011,Prozac Nation,You're Sick,tt0236640 rLx1ABxely0,1992.0,3,12,2011,Reservoir Dogs,Pink's Escape,tt0105236 EyXDqVQ7MBc,2003.0,3,12,2011,The Station Agent,"I'm a Good Walker, Bro",tt0340377 Ad7rUGIPVqQ,2001.0,10,12,2011,Prozac Nation,Beaten,tt0236640 Qxn6aafaNP8,1998.0,5,12,2011,54,Names For the List,tt0120577 WyNGkhmkuus,2001.0,11,12,2011,Prozac Nation,You Don't Have to Pretend,tt0236640 2eMqB3CFMkI,1994.0,3,12,2011,The Legend of Drunken Master,Friendly Fight For Fish,tt0111512 AVKK_tDNQMc,2001.0,12,12,2011,Prozac Nation,Gradually and Then Suddenly,tt0236640 b2zQmmYEDY4,2001.0,8,12,2011,Jay and Silent Bob Strike Back,The Fugitive(s),tt0261392 3RLPHNi_2-A,1995.0,7,12,2011,Georgia,So Much Soul,tt0113158 sHTeguzrPto,2000.0,11,12,2011,Scary Movie,Kicking the Killer's Ass,tt0175142 q9QJ_S62yVo,2000.0,1,12,2011,Scary Movie,Femme Fatality,tt0175142 tfvoOEa1OOI,1998.0,4,12,2011,54,I Wanna Suck Your C***,tt0120577 RBvtPZ6zyHI,2000.0,10,12,2011,Scary Movie,"Hot Sex, Killer Rap",tt0175142 A3oL7v7PLac,2000.0,5,12,2011,Scary Movie,Wazzup!,tt0175142 Sgwfvu6k0xs,2000.0,8,12,2011,Scary Movie,Silent Theater,tt0175142 T8oTlWwAPFI,2000.0,2,12,2011,Scary Movie,"Run, Bitch, Run!",tt0175142 -zLOrCQ0BpQ,2000.0,6,12,2011,Scary Movie,Wanna Play Pyscho Killer?,tt0175142 mw7xjHBJOvs,2000.0,7,12,2011,Scary Movie,I'm So Scared!,tt0175142 WUfY9jgSrLI,2003.0,1,11,2011,Scary Movie 3,Becca and Kate,tt0306047 GhSSEuAEcm0,1998.0,1,12,2011,54,Getting In,tt0120577 ZAerssgC4pc,2000.0,4,12,2011,Scary Movie,Do You Know Where I Am?,tt0175142 Qpbf9NUuuUk,2000.0,9,12,2011,Scary Movie,Stuck in the Door,tt0175142 UlIBiZxArGY,2000.0,12,12,2011,Scary Movie,Noooooooooooo!,tt0175142 D9FBXb4G4GI,2003.0,7,11,2011,Scary Movie 3,O Shizl Gzngahr,tt0306047 9iSVgAZ6bSM,2003.0,2,11,2011,Scary Movie 3,Rap Battle,tt0306047 9I0E9w8Nqfg,1998.0,3,12,2011,54,New Bus Boy,tt0120577 vzt7Yb_-yiY,1998.0,10,12,2011,54,Two Lives,tt0120577 zAeofWDUArU,2003.0,6,11,2011,Scary Movie 3,Fighting MJ,tt0306047 Fxx7g5nz4WQ,2003.0,8,11,2011,Scary Movie 3,Cindy Meets the Architect,tt0306047 kSk0pCs4pGQ,2003.0,3,11,2011,Scary Movie 3,Faking It,tt0306047 Qe_3aoChgwI,1991.0,10,12,2011,Johnny Suede,Shaving in the Tub,tt0104567 viCosY2u6YU,2003.0,10,11,2011,Scary Movie 3,Not So Different After All,tt0306047 mqnB2ef3S6M,2003.0,4,11,2011,Scary Movie 3,No Sex,tt0306047 umjmV3SwDjw,2003.0,9,11,2011,Scary Movie 3,White House Fisticuffs,tt0306047 AIw6mK0Ob60,1995.0,8,12,2011,Georgia,In Grace,tt0113158 o1mDknOtAv4,2008.0,7,10,2011,Smart People,A Sarcastic Christmas Dinner,tt0858479 Ji28PrD7P-M,1995.0,6,12,2011,Georgia,Take Me Back,tt0113158 SnMSSAqPSaw,1999.0,9,12,2011,A Walk on the Moon,You Had Your Chance!,tt0120613 oiikIyodOAk,2003.0,5,11,2011,Scary Movie 3,The Wrong TV,tt0306047 Q1MHXYx2820,2003.0,9,12,2011,Bad Santa,I'm a Motherf***ing Dwarf!,tt0307987 u83fkqXPIGE,1999.0,2,12,2011,A Walk on the Moon,Tie Dye T-Shirt,tt0120613 gJvgjH9Tvpo,2001.0,12,12,2011,Serendipity,Together at Last,tt0240890 xaCe8T1fXSM,1999.0,8,12,2011,A Walk on the Moon,Are You Screwing Someone?,tt0120613 KerwQ_DokIw,1999.0,3,12,2011,A Walk on the Moon,Alison Becomes a Woman,tt0120613 c_a5Y18mdLo,1999.0,4,12,2011,A Walk on the Moon,Pearl Makes a Date,tt0120613 HZkrxGuKHkU,1999.0,6,12,2011,A Walk on the Moon,Getting Too Old for This,tt0120613 0IxeTLiovq8,1999.0,7,12,2011,A Walk on the Moon,Woodstock,tt0120613 tPnacrrdjIk,2008.0,3,10,2011,Smart People,45 Minutes,tt0858479 YzW2OjTJc0o,1999.0,5,12,2011,A Walk on the Moon,One Giant Leap,tt0120613 0iz6-4QxGnc,1995.0,7,11,2011,The Prophecy,Visions of Death,tt0114194 ugw3DUIVKow,1995.0,8,11,2011,The Prophecy,You Can't Have Her!,tt0114194 zD0YTr7ZF58,2008.0,2,10,2011,Smart People,Why Are You Here?,tt0858479 JQc_dMcByUk,2008.0,1,10,2011,Smart People,SAT Practice in the ER,tt0858479 9pT5FVBFunA,2008.0,5,10,2011,Smart People,Date Do-Over,tt0858479 j1dkwnqffaM,2008.0,8,10,2011,Smart People,The Wetherhold Bachelors,tt0858479 1n4wtaSq7AY,1999.0,11,12,2011,A Walk on the Moon,Who Stopped You?,tt0120613 a9eT3NaWLPw,2008.0,9,10,2011,Smart People,Friends,tt0858479 wyKfuDzbbOI,2002.0,7,12,2011,Frida,Diego Conquers New York,tt0120679 bTdvsBKjlbE,1999.0,12,12,2011,A Walk on the Moon,Sometimes Things Happen,tt0120613 8W3_WigxsXs,1992.0,1,12,2011,Strictly Ballroom,Ballroom Champion,tt0105488 csfyEVjimu4,1992.0,2,12,2011,Strictly Ballroom,Crowd Pleasing Steps,tt0105488 BHFoI47tc9A,2001.0,11,12,2011,Serendipity,Living Obituary,tt0240890 lIzqZwDHis4,1992.0,3,12,2011,Strictly Ballroom,It Takes Two to Tango,tt0105488 guq6F4Jm5Rs,1992.0,4,12,2011,Strictly Ballroom,Dancing Alone,tt0105488 o-rVEtR9rfQ,1995.0,4,11,2011,The Prophecy,I Can Make This Last Forever,tt0114194 K-zYWpnMyXI,1992.0,5,12,2011,Strictly Ballroom,Try Outs,tt0105488 D1kIRqy-sbA,1995.0,6,11,2011,The Prophecy,Questioning the Kids,tt0114194 WRx0b993Lj4,1992.0,6,12,2011,Strictly Ballroom,Time After Time,tt0105488 T1Z39yM9AVk,1995.0,2,11,2011,The Prophecy,Dead Angel Storage,tt0114194 ChIS70dX0eU,1995.0,3,11,2011,The Prophecy,The Archangel Gabriel,tt0114194 mPoyezWAghE,1995.0,9,11,2011,The Prophecy,The First Angel,tt0114194 O6IMaR_G_sU,1992.0,10,12,2011,Strictly Ballroom,The Ballad of Doug Hastings,tt0105488 IzOtTXOVc9A,1992.0,7,12,2011,Strictly Ballroom,Backstage Dance Affair,tt0105488 xwsTm8Xo7kE,1992.0,8,12,2011,Strictly Ballroom,Pasodoble,tt0105488 ix08f9qDkk8,1995.0,10,11,2011,The Prophecy,Job Offer,tt0114194 RATBzjmcbh8,1992.0,11,12,2011,Strictly Ballroom,The Future of Dance Sport,tt0105488 2tQUU1c6MIw,1995.0,11,11,2011,The Prophecy,Time to Go Home,tt0114194 ragJxrFknuQ,1995.0,5,11,2011,The Prophecy,Look at Me,tt0114194 uc7tYT1-Y78,1995.0,1,11,2011,The Prophecy,Dropping In,tt0114194 uC1Lmk5qK2Q,1998.0,7,12,2011,54,Disco Lessons,tt0120577 B4Us9Mq7GIc,1992.0,9,12,2011,Strictly Ballroom,Listen to the Rhythm,tt0105488 XTfUTOcdkqY,1998.0,12,12,2011,54,Steve's Welcome Back Party,tt0120577 b3EWsHg08x4,2004.0,3,10,2011,Finding Neverland,Grandmother's Hook,tt0308644 N0gaRYJH5GE,1998.0,11,12,2011,54,New Year's Eve,tt0120577 qKerIOG7jdI,1998.0,9,12,2011,54,The Clap,tt0120577 Y0FAYOIt-VQ,1998.0,6,12,2011,54,Socialites,tt0120577 qmBAF_JTwDs,1998.0,2,12,2011,54,Knock on Wood,tt0120577 ntALVSmIUrg,2002.0,1,12,2011,Dirty Pretty Things,Discovering the Heart,tt0301199 t9iFa_dTcN0,1998.0,10,12,2011,Velvet Goldmine,Death of Glitter (20th Century Boy),tt0120879 HYUfT__t3jU,2003.0,4,12,2011,The Station Agent,Housewarming/Apology Gift,tt0340377 eN7zGm5KKrI,1994.0,2,12,2011,The Legend of Drunken Master,What Do You Call That?,tt0111512 wqvnT7u0mSg,1991.0,1,12,2011,Johnny Suede,Black Suede Shoes,tt0104567 6n6RVIIC8SE,2001.0,7,12,2011,Jay and Silent Bob Strike Back,Adopted Love Child,tt0261392 CzaHTATaPAc,2001.0,1,11,2011,In the Bedroom,The Old Saying,tt0247425 MGiNXAG0gjw,1991.0,2,12,2011,Johnny Suede,Another Man's Woman,tt0104567 IIoBuBiTfS4,1991.0,3,12,2011,Johnny Suede,Never Girl,tt0104567 ToZx1LjLmrM,2002.0,5,12,2011,Frida,and Diego's Wedding,tt0120679 HadRbtEI7KU,2002.0,8,12,2011,Frida,Cuts Her Hair,tt0120679 5k2vzUZYdfw,1991.0,4,12,2011,Johnny Suede,I Don't Love You,tt0104567 s9jX0S7mvB8,2002.0,9,12,2011,Frida,You've Never Been My Husband,tt0120679 5wThW2AGZw0,1991.0,5,12,2011,Johnny Suede,Midtown,tt0104567 -9xP6hMwNy4,1991.0,6,12,2011,Johnny Suede,My Turn,tt0104567 pEjOIBe21a8,1991.0,7,12,2011,Johnny Suede,Shoe Fight,tt0104567 D0NZyQWyZfI,1991.0,11,12,2011,Johnny Suede,What Have You Done?,tt0104567 x0KnLMaLLcI,1991.0,8,12,2011,Johnny Suede,Mamma's Boy,tt0104567 lGIEwdZTNRQ,1991.0,9,12,2011,Johnny Suede,Freak and Johnny,tt0104567 yhf9YADtuyA,2002.0,3,12,2011,Dirty Pretty Things,The Whore & the John,tt0301199 JcvSNsyvwNc,1991.0,12,12,2011,Johnny Suede,Crash at My Place,tt0104567 VtkM2SPaSJ8,1992.0,9,12,2011,Reservoir Dogs,Let's Get a Taco,tt0105236 4_4HFkbbbC4,2002.0,4,12,2011,Dirty Pretty Things,Protecting Senay,tt0301199 2ZDDIJV5ypc,2002.0,2,12,2011,Dirty Pretty Things,A Nigerian Dinner,tt0301199 irnb55gfwNc,2002.0,11,12,2011,Dirty Pretty Things,The People You Do Not See,tt0301199 ZJhHYsmJra0,2002.0,6,12,2011,Dirty Pretty Things,I Bit Him,tt0301199 EmTXI8HV9nE,2002.0,10,12,2011,Dirty Pretty Things,The Set Up,tt0301199 83twDFjlCjM,2002.0,5,12,2011,Dirty Pretty Things,Okwe's Warning,tt0301199 g05Ja_89tOg,2002.0,9,12,2011,Dirty Pretty Things,Take it or Leave it,tt0301199 GL2B4xLAjE4,2002.0,8,12,2011,Dirty Pretty Things,Only Survival,tt0301199 qjKhJnrMamA,1992.0,12,12,2011,Strictly Ballroom,Love is in the Air,tt0105488 wek_o4V_T00,2002.0,7,12,2011,Dirty Pretty Things,Forced Treatment,tt0301199 s0EAZmF0k6g,1995.0,5,12,2011,Rumble in the Bronx,No Way Out,tt0113326 NRd2gti9rHE,1992.0,1,12,2011,Reservoir Dogs,Like a Virgin,tt0105236 Eb5uCh-8rZ4,1992.0,2,12,2011,Reservoir Dogs,Tips,tt0105236 4W5KhfJHF_4,1992.0,8,12,2011,Reservoir Dogs,Why Am I Mr. Pink?,tt0105236 PGqB6JIUzBo,1992.0,5,12,2011,Reservoir Dogs,Stuck in the Middle With You,tt0105236 z8oaq50tGRI,1992.0,6,12,2011,Reservoir Dogs,Mr. Orange,tt0105236 fPUJS7w4Dag,2002.0,12,12,2011,Dirty Pretty Things,Always We Must Hide,tt0301199 P5GNspEWA68,1996.0,4,10,2011,The Pallbearer,Painfully Awkward Date,tt0117283 Zx8vIjEKvT8,1978.0,9,10,2011,Game of Death,The Fight With Hakim,tt0077594 -zPjGsII_fw,1994.0,11,12,2011,Priest,Casting the First Stone,tt0110889 fQBlpIivzY8,1978.0,10,10,2011,Game of Death,Billy Lo Triumphant,tt0077594 f3_39H9_3Qw,1978.0,8,10,2011,Game of Death,Backbreaker,tt0077594 OIBtFHZy0xk,1978.0,2,10,2011,Game of Death,Shot on Set,tt0077594 5N0ifKLehLM,1978.0,1,10,2011,Game of Death,Hakim's Power,tt0077594 SnpNDM1XeZY,1978.0,7,10,2011,Game of Death,Don't Choke,tt0077594 lYb1h0iDWSE,1978.0,4,10,2011,Game of Death,Lo Chen Fights Killer Miller,tt0077594 H98MLmW5tYw,1978.0,6,10,2011,Game of Death,Dueling Nunchakus,tt0077594 qslhUrtrjXQ,1978.0,5,10,2011,Game of Death,Killer Miller Is the Winner,tt0077594 y69iLU9cSyo,1995.0,1,12,2011,Rumble in the Bronx,Saving the Limo,tt0113326 l2IJxv1lbAc,1995.0,2,12,2011,Rumble in the Bronx,No Trouble,tt0113326 qPfLNjGXa2M,1998.0,8,12,2011,54,Jealousy,tt0120577 NBG53Xzikp8,1995.0,4,12,2011,Rumble in the Bronx,Batter Up!,tt0113326 5TIiQZo6snc,1995.0,3,12,2011,Rumble in the Bronx,Dead End,tt0113326 Uo18enRpmG4,1995.0,6,12,2011,Rumble in the Bronx,Play Ball,tt0113326 xfTtfDBUrvA,1995.0,8,12,2011,Rumble in the Bronx,You Win,tt0113326 6ZZHQMtbhxw,1995.0,7,12,2011,Rumble in the Bronx,This Is Where It Ends,tt0113326 IUodLjwwSBU,1995.0,9,12,2011,Rumble in the Bronx,Hovercraft By Sea,tt0113326 dMxAYJDzSls,1994.0,12,12,2011,Priest,Compassion & Communion,tt0110889 mqzu3AI7Dow,1995.0,11,12,2011,Rumble in the Bronx,Do Something!,tt0113326 ZWrv3l_2tGQ,1995.0,10,12,2011,Rumble in the Bronx,Hovercraft By Land,tt0113326 PpD6HmPdadI,1995.0,12,12,2011,Rumble in the Bronx,Take Down on Hole 17,tt0113326 la1tZNwaBog,1994.0,10,12,2011,Priest,The Church Today,tt0110889 vlqQwxeYtr8,1996.0,5,10,2011,The Pallbearer,The Wrong Signals,tt0117283 L5xFe4LFtb4,1994.0,9,12,2011,Priest,Suicide Attempt,tt0110889 eG9QMl_w1pk,1994.0,6,12,2011,The Legend of Drunken Master,Mom Has a Little Baby!,tt0111512 evzxQrEfIG8,1994.0,8,12,2011,Priest,How Could You Know Despair?,tt0110889 nCO2V7YS1nQ,1994.0,2,12,2011,Priest,Interference with Creation,tt0110889 xMy-NiI7q-M,1994.0,3,12,2011,Priest,Our Job,tt0110889 RJAU3K60wIk,2002.0,7,11,2011,Hero,The Most Dangerous Assassin,tt0299977 RF9vhf_r81w,1994.0,12,12,2011,The Legend of Drunken Master,Just Perfect,tt0111512 jXA-4rN9-ds,1994.0,11,12,2011,The Legend of Drunken Master,Heated Showdown,tt0111512 F85KoecJotw,1994.0,7,12,2011,The Legend of Drunken Master,The Axe Gang Battle,tt0111512 C02zRnebZu0,1994.0,10,12,2011,The Legend of Drunken Master,First Wave of Pawns,tt0111512 N_vildqkupI,1994.0,9,12,2011,The Legend of Drunken Master,The Chained Henchman,tt0111512 6w-07V2q_DE,1992.0,7,12,2011,Reservoir Dogs,The Commode Story,tt0105236 8LGY68ppqVk,1994.0,8,12,2011,The Legend of Drunken Master,Bamboo Smack Down,tt0111512 06u-a5jmi6o,2002.0,3,12,2011,Frida,and Tina Tango,tt0120679 _mSvR3aQeWU,1994.0,5,12,2011,The Legend of Drunken Master,The Name Game,tt0111512 Nlyai-wfZLw,1994.0,4,12,2011,The Legend of Drunken Master,The Purse Snatchers,tt0111512 FAY2LYoYCAU,1994.0,1,12,2011,The Legend of Drunken Master,The Train Thief,tt0111512 HN-YqWQ3PEE,2000.0,10,10,2011,Malèna,"Good Luck, Malena",tt0213847 Wvyi2PEVFcQ,1996.0,1,10,2011,The Pallbearer,I Need to Borrow a Shirt,tt0117283 CIAyyugbq54,1992.0,12,12,2011,Supercop,Stunt Outtakes,tt0104558 dp4qnnVSk8Y,2005.0,3,11,2011,The Brothers Grimm,That Was Real!,tt0355295 qe_BzGXRDzo,1996.0,6,12,2011,Scream,School's Out Scene,tt0117571 vp94AFms0V0,1992.0,10,12,2011,Reservoir Dogs,Mr. White's Escape,tt0105236 NdYmIIbYoH0,1996.0,7,12,2011,Scream,Death by Doggie Door Scene,tt0117571 mvLpbHKV1_8,1996.0,8,12,2011,Scream,How to Survive a Horror Movie Scene,tt0117571 gwnFTbQVOwM,1996.0,9,12,2011,Scream,Look Behind You! Scene,tt0117571 zyVKJXfRm_g,1996.0,10,12,2011,Scream,"Surprise, Sidney! Scene",tt0117571 maEC9NS6CkA,2001.0,1,12,2011,Amélie,Little Amelie,tt0211915 kR3VW07XfUo,1996.0,11,12,2011,Scream,More Creative Psychos Scene,tt0117571 CiT-XIWEC8c,1996.0,12,12,2011,Scream,Turning the Tables Scene,tt0117571 xCMsK2duu2s,1996.0,4,12,2011,Scream,How Do You Gut Someone? Scene,tt0117571 iaofBseh0J8,1997.0,11,12,2011,Chasing Amy,Jay and Loquacious Bob,tt0118842 Wuntz3KDIAk,2001.0,2,12,2011,Amélie,Helping a Blind Man,tt0211915 LWxSBbBX4fs,1996.0,1,12,2011,Scream,Do You Like Scary Movies? Scene,tt0117571 kORHCVmSucM,2001.0,8,12,2011,Amélie,Payback for Collignon,tt0211915 gVgsadEybgQ,1996.0,3,12,2011,Scream,Casey Is Killed,tt0117571 v1M3w_o7cOc,1996.0,2,12,2011,Scream,Wrong Answer Scene,tt0117571 p8Ejl4eeFXM,1996.0,5,12,2011,Scream,"Do You Want to Die, Sidney? Scene",tt0117571 1EbSU5Zyx9Y,1997.0,6,12,2011,Chasing Amy,I'm in Love With Her!,tt0118842 vTbcPIKxmP0,2001.0,4,12,2011,Amélie,"Collignon, Dead and Gone",tt0211915 l4AmSVb6Hew,1997.0,2,12,2011,Chasing Amy,F*** Lando Calrissian!,tt0118842 26MkbK_C-lM,2001.0,6,12,2011,Amélie,A Ride with Nino,tt0211915 hVnFKJJYLPA,2001.0,7,12,2011,Amélie,Do You Want to Meet?,tt0211915 bQutB3mYc84,2001.0,11,12,2011,Amélie,Speechless Kiss,tt0211915 Inj01auwE9c,2001.0,9,12,2011,Amélie,Is This You?,tt0211915 mbTZ4ywa1Dc,2001.0,12,12,2011,Amélie,Bliss for Amelie,tt0211915 g1JAILio6-s,1997.0,8,12,2011,Chasing Amy,A Kiss in the Rain,tt0118842 atGNvojXOvM,1997.0,7,12,2011,Chasing Amy,In Love With Alyssa,tt0118842 cxWRWbdsTjc,1997.0,9,12,2011,Chasing Amy,Finger Cuffs,tt0118842 _eCWpUV7cOI,1997.0,3,12,2011,Chasing Amy,The Definition of F***ing,tt0118842 epHCMiCtt3M,1997.0,1,12,2011,Chasing Amy,You're a Tracer!,tt0118842 OmQGN9X57Ts,1997.0,4,12,2011,Chasing Amy,Battle Scars,tt0118842 Iqc8WWvcTN4,1997.0,5,12,2011,Chasing Amy,The Virginity Standard,tt0118842 _undGtyUxeg,1997.0,10,12,2011,Chasing Amy,An Experimental Girl,tt0118842 wVWk6IfRuEE,2003.0,5,12,2011,Bad Santa,Bob Chipeska,tt0307987 V9K9m155U2E,2001.0,9,11,2011,In the Bedroom,The Lenient Father,tt0247425 Pe7G8iCN_nM,1997.0,12,12,2011,Chasing Amy,We've All Gotta Have Sex Together,tt0118842 Z0W6ufDtdS8,2003.0,12,12,2011,Bad Santa,The Three B's,tt0307987 Tt8DoNerIPY,2003.0,8,12,2011,Bad Santa,Half,tt0307987 1LxDWSYgiUc,2003.0,10,12,2011,Bad Santa,Nutcracker,tt0307987 JuQmiyLzHdw,2001.0,2,11,2011,In the Bedroom,As Good a Life as Any,tt0247425 gXJH5jhO9to,2001.0,6,11,2011,In the Bedroom,Only Manslaughter,tt0247425 R1G5HwXEw9M,2001.0,4,11,2011,In the Bedroom,Grief,tt0247425 JqyCEV_iACo,2001.0,3,11,2011,In the Bedroom,The Crime,tt0247425 PhXFRRVBKus,2001.0,5,11,2011,In the Bedroom,In Session,tt0247425 xE9YSmsKm8I,2001.0,7,11,2011,In the Bedroom,My Lost Youth,tt0247425 b1eMAFWXZ4Q,2003.0,1,12,2011,Bad Santa,My F*** Stick,tt0307987 AKONPxrqFxs,2003.0,4,12,2011,Bad Santa,You People,tt0307987 bZq6Gv7rP0w,2001.0,8,11,2011,In the Bedroom,Mrs. Fowler,tt0247425 zFo_QE8j1Hs,2001.0,10,11,2011,In the Bedroom,The Unforgiving Mother,tt0247425 bw4xDTQYIfE,1996.0,1,12,2011,Flirting with Disaster,The Help of a Good Bra,tt0116324 Auq9e3lBq6I,2003.0,3,12,2011,Bad Santa,F*** Me Santa,tt0307987 vcsl8fSgqls,2001.0,11,11,2011,In the Bedroom,The Murder,tt0247425 UnXDK24wbSg,1996.0,9,12,2011,Flirting with Disaster,We Made L.S.D.,tt0116324 VJOO-fcRLzk,2003.0,6,12,2011,Bad Santa,Santa's Staying Over,tt0307987 qUu8VHynw40,2003.0,2,12,2011,Bad Santa,He's Freakin' Me Out,tt0307987 l83CcqhP-kY,1996.0,2,12,2011,Flirting with Disaster,Indian Wrestling,tt0116324 EKd7z5CY4BU,2003.0,7,12,2011,Bad Santa,Santa's Fatherly Advice,tt0307987 IHR5ljAFCGE,2003.0,11,12,2011,Bad Santa,Wooden Pickle,tt0307987 36QmLon8dn8,1996.0,3,12,2011,Flirting with Disaster,Twin Sisters,tt0116324 iF_053JQnQE,1996.0,4,12,2011,Flirting with Disaster,Fritz Boudreau the Truck Driving Father,tt0116324 CDn1rXzkBEM,1996.0,6,12,2011,Flirting with Disaster,Pup Tent,tt0116324 _kItBZZK1p0,1996.0,10,12,2011,Flirting with Disaster,Acid Freak Out,tt0116324 yjU5akwca64,1996.0,12,12,2011,Flirting with Disaster,A Blind U-Turn,tt0116324 nNXIh6RrvNw,1996.0,11,12,2011,Flirting with Disaster,An Attractive Armpit,tt0116324 4K8M2EVnoKc,1996.0,1,11,2011,Beautiful Girls,A Girl Named Marty,tt0115639 E8LYvflSTAE,1996.0,2,11,2011,Beautiful Girls,Andera the Vixen,tt0115639 DPQ47h-k-nw,1996.0,3,11,2011,Beautiful Girls,Sweet Caroline,tt0115639 RqCVbiHCYAA,1996.0,4,11,2011,Beautiful Girls,"Great Ass, Nice Tits",tt0115639 M-h1ERyxbQ0,1996.0,7,11,2011,Beautiful Girls,Ice Skating with Marty,tt0115639 tMIO48oFmHc,1996.0,6,11,2011,Beautiful Girls,A Nabokov Character,tt0115639 n1BXpNTsoB8,1996.0,9,11,2011,Beautiful Girls,A Piano Playing Drunk,tt0115639 Uyo69utc9bM,1996.0,8,11,2011,Beautiful Girls,Make You Dizzy,tt0115639 F4T2_xFNAqs,1996.0,5,11,2011,Beautiful Girls,"Face, Body, Personality Rankings",tt0115639 ITfoGnAkw4I,1996.0,10,11,2011,Beautiful Girls,Late-Night Ice Fishing Date,tt0115639 2Vam2a4r9vo,1996.0,11,11,2011,Beautiful Girls,Hope We Stay in Touch,tt0115639 xIbilLMZLHw,2008.0,6,11,2011,Happy-Go-Lucky,We Got Flamenco!,tt1045670 r2NHTRgH3G0,2001.0,4,12,2011,Jay and Silent Bob Strike Back,Mooby Internet Retort,tt0261392 -ftyIj2_b8Y,2001.0,10,12,2011,Jay and Silent Bob Strike Back,The Miramax Lot,tt0261392 k59rG0r-sqI,2007.0,5,11,2011,Becoming Jane,"I Am Yours, Heart and Soul",tt0416508 EeEhcPAOGUo,2007.0,1,11,2011,Becoming Jane,A Cut Above the Company,tt0416508 DiIgAES9zt0,2007.0,3,11,2011,Becoming Jane,Your Horizons Must be Widened,tt0416508 waE1U01kwxY,2001.0,1,12,2011,Jay and Silent Bob Strike Back,Another Day at the Quick Stop,tt0261392 NnEKQD1fS20,2007.0,6,11,2011,Becoming Jane,Insult With a Smiling Face,tt0416508 diFDBNNmnnU,2001.0,3,12,2011,Jay and Silent Bob Strike Back,Hitchhiking Head,tt0261392 uPwo-nHWQaM,2001.0,5,12,2011,Jay and Silent Bob Strike Back,Dirty Sheep F***er,tt0261392 c8qfaEdYBJ0,2007.0,9,11,2011,Becoming Jane,Goodbye,tt0416508 xqD1y_cJAaM,2007.0,2,11,2011,Becoming Jane,Jane Plays Cricket,tt0416508 1uLzZVSIo1U,2001.0,6,12,2011,Jay and Silent Bob Strike Back,The C.L.I.T.,tt0261392 nnESedN4vSI,2001.0,9,12,2011,Jay and Silent Bob Strike Back,Good Will Hunting 2: Hunting Season,tt0261392 mYZGSfnk144,1998.0,5,12,2011,Velvet Goldmine,Ballad of Maxwell Demon,tt0120879 PYJFzOzpwHo,2001.0,12,12,2011,Jay and Silent Bob Strike Back,Cocknocker!,tt0261392 3KoW7h3Auf4,1995.0,10,12,2011,Georgia,Needing Shoes,tt0113158 8LM8A67uo_M,2007.0,4,11,2011,Becoming Jane,"Would You Rather be a Poor, Old Maid?",tt0416508 KcINC5YSNbE,2006.0,10,10,2011,The Queen,One Must Modernize,tt0436697 kDnCoiYKmtw,2001.0,11,12,2011,Jay and Silent Bob Strike Back,Chaka Luther King,tt0261392 XVOsO0E1E34,2007.0,7,11,2011,Becoming Jane,Run Away With Me,tt0416508 kQ6BSOZ0VGQ,2002.0,2,12,2011,Frida,Calaca Hospital,tt0120679 OOMIZUsKlmg,2007.0,8,11,2011,Becoming Jane,Jane and Tom Elope,tt0416508 G5qjWjkpUaI,2007.0,11,11,2011,Becoming Jane,Many Years Later,tt0416508 Vjiy9rCG-yU,1996.0,3,12,2011,Basquiat,How Long to Get Famous?,tt0115632 vXvHja7vtoU,1996.0,1,12,2011,Basquiat,Pancake Art,tt0115632 oKcbalkmH_Y,1996.0,2,12,2011,Basquiat,The Electrician,tt0115632 gsJlkWp0p90,1996.0,4,12,2011,Basquiat,Buy Some Ignorant Art,tt0115632 iHWOj17ISfk,2005.0,10,11,2011,The Brothers Grimm,The Queen is Shattered,tt0355295 Z-5JqDEHfe8,1996.0,7,12,2011,Basquiat,The Gallery Opening,tt0115632 DiAtgmRa6fc,1996.0,6,12,2011,Basquiat,Painting to Jazz,tt0115632 MRs1EBoZQ7c,2005.0,11,11,2011,The Brothers Grimm,True Love's Kiss,tt0355295 ovV34LOq9Q8,2005.0,9,11,2011,The Brothers Grimm,Enchanted Knives,tt0355295 TRAlGwGvlXs,2005.0,8,11,2011,The Brothers Grimm,The Woodsman and the Witch,tt0355295 qM8jk56Vj9Y,1996.0,8,12,2011,Basquiat,Mr. Chow's Meltdown,tt0115632 9yPj41sNdn8,2005.0,7,11,2011,The Brothers Grimm,The Fairest of Them All,tt0355295 PR9wl4Qve5E,2005.0,6,11,2011,The Brothers Grimm,Mud Monster,tt0355295 JDN_C4L6Bjg,2005.0,5,11,2011,The Brothers Grimm,Believe in Me,tt0355295 F3H_X9-yFZA,1996.0,10,12,2011,Basquiat,Put Their Bill On My Tab,tt0115632 1BZoajBwbac,1996.0,9,12,2011,Basquiat,An Interview with Jean-Michel,tt0115632 g3hYbDHwBJY,2005.0,4,11,2011,The Brothers Grimm,Cavaldi's Tortures,tt0355295 48jtU38CZS4,2004.0,7,10,2011,Dirty Dancing: Havana Nights,Practicing for the Competition,tt0338096 nYhuIXk_CPk,2005.0,2,11,2011,The Brothers Grimm,The Evil Forest,tt0355295 2tKQW10sje4,2003.0,7,11,2011,The Blind Swordsman: Zatoichi,Dance of Sorrow,tt0363226 UWyzrr2ch5s,1993.0,1,10,2011,Iron Monkey,Breaching the Fortress,tt0108148 DnFk_dGSL5M,2004.0,3,10,2011,Dirty Dancing: Havana Nights,Be My Partner,tt0338096 EDyDOkeEge0,2005.0,1,11,2011,The Brothers Grimm,Grimm at Your Service,tt0355295 4jv8ZCoQyZE,2002.0,2,10,2011,Confessions of a Dangerous Mind,I'm Penny,tt0270288 LABD2un-vIs,1996.0,5,12,2011,Basquiat,It's All Over Now Baby Blue,tt0115632 X11uEGRnCDs,1993.0,5,10,2011,Iron Monkey,Little Wong Fei-Hung,tt0108148 VkGD-6ebYJ8,1996.0,12,12,2011,Basquiat,A Prince With a Magic Crown,tt0115632 99h9RG7Rfp4,1993.0,4,10,2011,Iron Monkey,Shaolin Monks,tt0108148 u5AzB4EGGpc,1993.0,3,10,2011,Iron Monkey,Baited Prisoners,tt0108148 vvd0meL8260,1993.0,2,10,2011,Iron Monkey,Father & Son Arrive,tt0108148 DF2dkoIOm0o,1993.0,7,10,2011,Iron Monkey,Buddha's Palm,tt0108148 a-VqYtkvmzw,2002.0,3,10,2011,Confessions of a Dangerous Mind,The Dating Game,tt0270288 kzrHg5GOvXE,1993.0,6,10,2011,Iron Monkey,Deceiving Monks,tt0108148 bC3oNsbOyWY,1993.0,9,10,2011,Iron Monkey,Too Many Stances!,tt0108148 yJ1hoVGPxCY,1993.0,8,10,2011,Iron Monkey,Miss Orchid,tt0108148 4865Vc0ptnk,1993.0,10,10,2011,Iron Monkey,Showdown Over Flames,tt0108148 uOnIqWuSCIk,2002.0,5,10,2011,Confessions of a Dangerous Mind,If I Had a Hammer,tt0270288 GdrDuVImE2c,1999.0,12,12,2011,She's All That,The First Dance,tt0160862 p2Md_248enw,1999.0,2,12,2011,The Talented Mr. Ripley,Everybody Should Have One Talent,tt0134119 bg9SuuzPdVE,1999.0,6,12,2011,She's All That,Almost Normal,tt0160862 qYXoNC_LbcI,2002.0,4,10,2011,Confessions of a Dangerous Mind,Helsinki is Wonderful,tt0270288 dQSK2gmtNMI,1999.0,4,12,2011,The Talented Mr. Ripley,Accidental Murder,tt0134119 nOu9n4ulmRk,2002.0,6,10,2011,Confessions of a Dangerous Mind,The Gong Show,tt0270288 IT-iX7o_ozA,2004.0,2,10,2011,Finding Neverland,Wild West Showdown,tt0308644 AR4d7r6--I4,1992.0,1,12,2011,Supercop,""""" Demonstration",tt0104558 M0N1Q7Eav4M,2003.0,5,12,2011,View from the Top,Dinner with Sally Weston,tt0264150 iD9tENbIPHg,2004.0,1,10,2011,Finding Neverland,They Hate It,tt0308644 7JZQiC2eNdU,2005.0,3,12,2011,The Amityville Horror,Creepy Sex,tt0384806 xs8k31_ucJ8,2002.0,7,10,2011,Confessions of a Dangerous Mind,Find the Mole,tt0270288 rylEfnxeUZo,2002.0,1,11,2011,Hero,A Mental Battle,tt0299977 bk9oFLFDsfE,2004.0,5,10,2011,Finding Neverland,That's Not a Pirate Name!,tt0308644 1Ej-iuKgmvQ,1992.0,3,12,2011,Supercop,Fighting the Cops,tt0104558 Q6-vRgNPGAw,2005.0,5,12,2011,The Amityville Horror,I Suck at Babysitting,tt0384806 PrpeARyTcx8,2002.0,8,10,2011,Confessions of a Dangerous Mind,Paranoia,tt0270288 TE95amqnEx8,2002.0,4,11,2011,Hero,Lethal at Ten Paces,tt0299977 oqBWx58n1Yk,2002.0,9,10,2011,Confessions of a Dangerous Mind,Poisoned Cups,tt0270288 Dv52JE3zqzc,2004.0,4,10,2011,Finding Neverland,Taking Flight,tt0308644 N6HCOGj1lNI,2002.0,10,10,2011,Confessions of a Dangerous Mind,The Old Game,tt0270288 gmk1iStpovo,2001.0,3,12,2011,Shaolin Soccer,Steel Leg Trains Scene,tt0286112 fI-F18nRHBQ,2001.0,5,12,2011,Shaolin Soccer,Kung Fu Is Back Scene,tt0286112 R0U9F4HexA4,1993.0,5,11,2011,The Piano,Alisdair Spies on George and Ada,tt0107822 Rt7_IUmuwHw,1992.0,7,12,2011,Supercop,Dynamite Vest,tt0104558 RAQD0bY2_OM,1992.0,8,12,2011,Supercop,May Is Mad,tt0104558 SCXs7OphbUU,2002.0,1,10,2011,Confessions of a Dangerous Mind,N.B.C. Tours,tt0270288 rAu-0Ko7uBQ,1992.0,9,12,2011,Supercop,Malaysian Chase,tt0104558 DurMO8Ayhn4,1992.0,10,12,2011,Supercop,Helicopter Hang,tt0104558 7uqoIuB8zx4,1983.0,5,10,2011,Jackie Chan's Project A,Bike Attack,tt0085127 hTv7HXqqqXA,1992.0,11,12,2011,Supercop,Catching the Train,tt0104558 pnTtzyItCQA,2004.0,7,10,2011,Finding Neverland,Twenty-Five Seats for Orphans,tt0308644 jUM7RRZWW78,1992.0,6,12,2011,Supercop,Golden Triangle Shootout,tt0104558 s-D79Y-gBrs,1992.0,5,12,2011,Supercop,Those Two Are Cops!,tt0104558 jaiWxuKmaa0,1992.0,2,12,2011,Supercop,Undercover Family,tt0104558 UfziV-fIbyM,1992.0,4,12,2011,Supercop,Boat Escape,tt0104558 cOyt0_sRRvU,2004.0,6,10,2011,Finding Neverland,Directing Nana,tt0308644 6X4Sukx3GsY,2004.0,9,10,2011,Finding Neverland,To Die Will be an Awfully Big Adventure,tt0308644 CmcZU82YaEw,2004.0,8,10,2011,Finding Neverland,"Second to the Right, and Straight on Till Morning",tt0308644 _kV0xtzcwg8,1996.0,7,12,2011,The Crow: City of Angels,Do You Want Me... Baby?,tt0115986 3yqPdLURXjI,1996.0,8,12,2011,The Crow: City of Angels,Day of the Dead,tt0115986 jDmw_MLAQSU,1996.0,6,12,2011,The Crow: City of Angels,Bird on My Chest,tt0115986 _tpfO7RS7-U,1998.0,2,12,2011,Smoke Signals,"Don't Go, Dad!",tt0120321 MKboBvadcD8,2001.0,8,12,2011,Get Over It,Crazy Legs,tt0192071 oLQsS64Mgjg,1998.0,6,12,2011,Smoke Signals,You Gotta Have Faith,tt0120321 E3B_XdL7Z6Y,2004.0,10,10,2011,Finding Neverland,Arriving in Neverland,tt0308644 dXe45jbpElA,1996.0,8,12,2011,Flirting with Disaster,Our Other Son Lonnie Schlichting,tt0116324 nIsuwv3VfxE,2002.0,2,11,2011,Gerry,F*** the Thing,tt0302674 7OmBXWA0Rfc,2008.0,7,10,2011,Doubt,Feathers of Gossip,tt0918927 TAOUtgdcjik,2008.0,10,10,2011,Doubt,I Have Such s,tt0918927 ZhjyZXJVm4w,2001.0,10,12,2011,Get Over It,Dream of Me,tt0192071 FuJ2soRp1VI,2008.0,8,10,2011,Doubt,What Have I Done?,tt0918927 3hqspRARlc4,2001.0,1,11,2011,The Deep End,Stay Away From My Son,tt0250323 Wd16x0wExDE,2000.0,5,12,2011,Reindeer Games,Ice Fishing,tt0184858 GlO90j-f2vo,2001.0,8,11,2011,The Deep End,Try Harder,tt0250323 bXpq-sf0Drk,2003.0,2,12,2011,The Station Agent,A New Neighbor,tt0340377 fvxvrapx3UI,2003.0,1,12,2011,The Station Agent,Fin Meets Joe,tt0340377 wkH0WdBYT4E,2000.0,10,12,2011,Reindeer Games,The Same Mistake,tt0184858 huvEARIzQNc,2000.0,11,12,2011,Reindeer Games,Double Cross,tt0184858 kxu97nWDapM,2000.0,4,12,2011,Reindeer Games,Switcheroo,tt0184858 x-Vvl8gkZAw,2000.0,3,12,2011,Reindeer Games,Don't Play No,tt0184858 sceJ1R4JzMU,2000.0,2,12,2011,Reindeer Games,Dreaming About That Smile,tt0184858 LMU895wYEDI,2004.0,3,12,2011,Jersey Girl,I'm Just Your Dad,tt0300051 IWQriJ_Nebs,2003.0,5,12,2011,The Station Agent,You the Man,tt0340377 CzBxp4EtOXw,1999.0,5,12,2011,Holy Smoke,I Put a Spell on You,tt0144715 1o56ZKPhPjA,2003.0,6,12,2011,The Station Agent,Train Watching,tt0340377 ZThOaBpFIGg,2005.0,1,10,2011,Proof,Raging Geeks,tt0377107 BcmM6kMxyBE,2005.0,2,10,2011,Proof,Calling the Cops on Hal,tt0377107 1mxednlcHSs,2003.0,10,12,2011,The Station Agent,Train Chasing Premiere,tt0340377 LtKCcSEgPJQ,2003.0,7,12,2011,The Station Agent,Bon Appetit!,tt0340377 9QNXD_Col7k,2003.0,8,12,2011,The Station Agent,You Timed Me?,tt0340377 5XiEDoHueUo,2003.0,9,12,2011,The Station Agent,Walking the Right of Way,tt0340377 KoEPdETXy4k,2008.0,5,10,2011,Doubt,Sweet Tooth,tt0918927 xD1H-FIqeMA,2003.0,12,12,2011,The Station Agent,Classroom Presentation,tt0340377 ApU6H2gqkMg,2001.0,7,12,2011,Serendipity,Life's Master Plan,tt0240890 UqKkfcG36V4,2003.0,11,12,2011,The Station Agent,Olivia's Meltdown,tt0340377 -nh3g6F63qM,2008.0,6,10,2011,Doubt,Pagan Christmas Songs,tt0918927 qNk-kc0XH4A,2008.0,2,10,2011,Doubt,I Am Concerned,tt0918927 P53a6QG4jlY,2008.0,3,10,2011,Doubt,Dirty Nails,tt0918927 KSc0srYx9-4,2008.0,1,10,2011,Doubt,Crisis of Faith,tt0918927 NpwkIYB3ZEY,2008.0,4,10,2011,Doubt,Supper Time,tt0918927 xWShDNB5XZU,2008.0,3,11,2011,Happy-Go-Lucky,The Golden Triangle,tt1045670 uI-q42kRXi8,2008.0,5,11,2011,Happy-Go-Lucky,Lock Your Door!,tt1045670 7wYMAJSnpVo,2008.0,2,11,2011,Happy-Go-Lucky,The Driving Instructor,tt1045670 AxeeO1qdrgw,2008.0,4,11,2011,Happy-Go-Lucky,Ding Dang Dilly Dilly Da Da Hoo Hoo!,tt1045670 mTkgIN2TteI,2008.0,8,11,2011,Happy-Go-Lucky,En-Ra-Ha! En-Ra-Ha!,tt1045670 3TWxK4Lb6ws,2001.0,6,12,2011,Serendipity,She Sat on Me,tt0240890 2zZUujqZfQg,2008.0,7,11,2011,Happy-Go-Lucky,Dance Instructor's Meltdown,tt1045670 hnHERe72nQM,2008.0,11,11,2011,Happy-Go-Lucky,Scott's Meltdown,tt1045670 8j-53yv1nD4,2000.0,1,10,2011,Malèna,Watching Malena,tt0213847 wxlvZpMSxM8,2001.0,8,12,2011,Serendipity,The Groom's Gift,tt0240890 4_9ZfH_x1hE,2008.0,9,11,2011,Happy-Go-Lucky,Acting Like an Adult,tt1045670 kiv4EChGJVs,2001.0,1,12,2011,Serendipity,The Story of Cassiopeia,tt0240890 gZ6x-hUpoPo,2001.0,2,12,2011,Serendipity,A Strange and Interesting Woman,tt0240890 PMar5oQ5Ha8,2001.0,3,12,2011,Serendipity,Elevator Action,tt0240890 9OGKM_BI9zY,2008.0,10,11,2011,Happy-Go-Lucky,Wake Up and Look Around,tt1045670 8KaBhZM-PTg,2001.0,4,12,2011,Serendipity,Sara! Sara! Sara!,tt0240890 kNepR8njvT8,2001.0,5,12,2011,Serendipity,I Will Cut You!,tt0240890 T4l9RZRce58,1983.0,10,10,2011,Jackie Chan's Project A,Defeating Sam Pau,tt0085127 ErQGXlQV6vg,1983.0,8,10,2011,Jackie Chan's Project A,Safety Last,tt0085127 uTW2Hrn49Yk,1983.0,9,10,2011,Jackie Chan's Project A,Dragon vs. Sam Pau,tt0085127 sIMxtj6czX8,2001.0,9,12,2011,Serendipity,You Are a Jackass,tt0240890 i16c8n45lR4,1983.0,6,10,2011,Jackie Chan's Project A,Two at a Time,tt0085127 wdaFZ0seZBM,1983.0,4,10,2011,Jackie Chan's Project A,Escaping with Winnie,tt0085127 sEgsFoQhy3Q,1983.0,7,10,2011,Jackie Chan's Project A,Up the Flagpole,tt0085127 GolLDhBuy74,2001.0,10,12,2011,Serendipity,Five Dollar Fate,tt0240890 6mGJ0lFK8c8,1983.0,3,10,2011,Jackie Chan's Project A,I Quit!,tt0085127 pCnPsUo_p9w,1983.0,2,10,2011,Jackie Chan's Project A,The VIP Club,tt0085127 MOB7nv-1G3c,1983.0,1,10,2011,Jackie Chan's Project A,The Bar Brawl,tt0085127 RntgG4p1m8E,1994.0,2,10,2011,Mrs. Parker and the Vicious Circle,I Could Kiss You,tt0110588 rqT82hS-rMw,2005.0,3,10,2011,Proof,Claire Questions Catherine,tt0377107 s3znWXpeLPA,2005.0,4,10,2011,Proof,Glad He's Dead,tt0377107 1IlqRjk27JI,1994.0,5,12,2011,Priest,Confessionals,tt0110889 gUpkU0-pS3U,2005.0,6,10,2011,Proof,Coming on Strong,tt0377107 303wyvo5Uow,2005.0,5,10,2011,Proof,I Always Liked You,tt0377107 T4V4NqEU668,2005.0,7,10,2011,Proof,I Want to Help,tt0377107 IE0S6NNXiYM,2005.0,9,10,2011,Proof,Take It,tt0377107 pnvy9q4UpZw,2005.0,8,10,2011,Proof,A !,tt0377107 Spl7doGUZTI,2000.0,5,10,2011,Malèna,Renato Defends Malena,tt0213847 FNvk5X4D7g0,2000.0,4,10,2011,Malèna,A Pervert and a Fetishist,tt0213847 zkBkTx-GL8s,2000.0,8,10,2011,Malèna,Malena's Makeover,tt0213847 ZTAVOF3D4vY,2000.0,3,10,2011,Malèna,Causing a Commotion,tt0213847 i9_lCyG67Rc,2000.0,7,10,2011,Malèna,Renato's Love Letter,tt0213847 dsRTzhbsAmQ,2000.0,2,10,2011,Malèna,Measuring Up,tt0213847 aCqhUO76MTU,2000.0,9,10,2011,Malèna,Malena Returns,tt0213847 rhc_Ds85lG0,2000.0,6,10,2011,Malèna,The Lawyer's Fee,tt0213847 v3MPODJTzFM,1997.0,2,10,2011,The House of Yes,First Guest,tt0119324 NCgUx9-REsg,1997.0,1,10,2011,The House of Yes,The Engagement,tt0119324 BeJMZm6DDtk,1997.0,3,10,2011,The House of Yes,We All Have Our Secrets,tt0119324 QXa6FXKJQpw,1997.0,4,10,2011,The House of Yes,A Glass of Liebfraumilch,tt0119324 rcJ5q5BdJi4,2000.0,3,10,2011,Bounce,A Smoking Non-Smoker,tt0186894 NTPT4BHAmRI,2000.0,2,10,2011,Bounce,Buddy Attacks,tt0186894 6xSLNonQJSc,2000.0,4,10,2011,Bounce,Inexperienced,tt0186894 zg4tFOmYKpA,1997.0,6,10,2011,The House of Yes,About Incest,tt0119324 qw6k-69hm90,1997.0,5,10,2011,The House of Yes,The Truth About Sex,tt0119324 _yHgZUYOYdY,2000.0,5,10,2011,Bounce,Abby Closes the Deal,tt0186894 XHdmamu0zPk,1997.0,10,10,2011,The House of Yes,Final Ritual,tt0119324 SDesztIj8Kc,2000.0,6,10,2011,Bounce,Misread Signals,tt0186894 NDw4Lax2j0k,1997.0,7,10,2011,The House of Yes,Recreating a Tragedy,tt0119324 OPwRf_sD5fo,1997.0,8,10,2011,The House of Yes,A Trip Down Memory Lane,tt0119324 VWwkLEUn-a0,2000.0,7,10,2011,Bounce,I Got Scared,tt0186894 kY4iDLi0pV8,1997.0,9,10,2011,The House of Yes,Crazy Like You,tt0119324 pqLAni94IEI,2000.0,8,10,2011,Bounce,Making Love,tt0186894 lhsWHmJiaXE,2003.0,2,11,2011,Once Upon a Time in Mexico,"Shooting the Cook, Restoring the Balance",tt0285823 TqB34Q7iy-A,2000.0,9,10,2011,Bounce,Get Out,tt0186894 MsxXJOiXEW4,2000.0,1,10,2011,Bounce,Drunken Speech,tt0186894 t3ttyoPvivk,2003.0,4,11,2011,Once Upon a Time in Mexico,Church Shootout,tt0285823 Xqti-Sxsxk4,1994.0,3,11,2011,Muriel's Wedding,Waterloo,tt0110598 BrXYAZzLZTg,2000.0,10,10,2011,Bounce,Buddy Takes the Stand,tt0186894 lhZFyMTaIt8,1994.0,4,11,2011,Muriel's Wedding,First Time,tt0110598 KJI8TYE7DtE,2003.0,1,11,2011,Once Upon a Time in Mexico,Legend of the Mariachi,tt0285823 ae-cYVuxBKI,2003.0,3,11,2011,Once Upon a Time in Mexico,Chained Escape,tt0285823 SyiA_t-8c7Y,1994.0,1,11,2011,Muriel's Wedding,I Can Change!,tt0110598 mTysQF15PHE,1989.0,1,10,2011,My Left Foot,Make Your Mark,tt0097937 2C6FHPmqETM,1994.0,2,11,2011,Muriel's Wedding,I'm With Muriel,tt0110598 39M16Z2aYYk,1994.0,5,11,2011,Muriel's Wedding,As Good as an ABBA Song,tt0110598 X09M4YjeE78,1994.0,6,11,2011,Muriel's Wedding,I Want to Get Married!,tt0110598 E1BBS1rIgIw,1994.0,8,11,2011,Muriel's Wedding,Mariel's Wedding,tt0110598 m0uAIT2O5P0,1994.0,9,11,2011,Muriel's Wedding,Wedding Night Blues,tt0110598 Lpk6lNEGrg0,1994.0,7,11,2011,Muriel's Wedding,Arranged Marriage,tt0110598 MSVT6NNqldY,1994.0,10,11,2011,Muriel's Wedding,I Don't Love You,tt0110598 5Rl0mFRWfzc,2003.0,6,11,2011,Once Upon a Time in Mexico,Motorcycle Chase,tt0285823 fKoYXxN6x98,2003.0,5,11,2011,Once Upon a Time in Mexico,"Three Arms, One Eye",tt0285823 BW5hIGrXcEs,1994.0,11,11,2011,Muriel's Wedding,Escape from Porpoise Spit,tt0110598 _WF9UwKuitI,2003.0,7,11,2011,Once Upon a Time in Mexico,Be My Eyes,tt0285823 M-VdYzNgtng,1989.0,5,10,2011,My Left Foot,Too Much Hope,tt0097937 X7Vt8oHsr0g,1989.0,4,10,2011,My Left Foot,Speech Therapy,tt0097937 p12OcbmjVgU,1989.0,6,10,2011,My Left Foot,"I Love You, Eileen",tt0097937 WTW9la6_mEY,1989.0,2,10,2011,My Left Foot,Christy Writes His First Word,tt0097937 gqKobRWnvZQ,1989.0,7,10,2011,My Left Foot,Platonic Love,tt0097937 PWvWrHzlfAk,1989.0,8,10,2011,My Left Foot,You Are My Heart,tt0097937 4C-aVLgAw8g,1989.0,9,10,2011,My Left Foot,Christy Flirts With His Caretaker,tt0097937 WpULGtEqNBI,1989.0,3,10,2011,My Left Foot,Christy Plays Soccer,tt0097937 f-9ErKOlWyE,1989.0,10,10,2011,My Left Foot,800 Pounds,tt0097937 n8JOgoI_2as,1998.0,2,12,2011,Velvet Goldmine,A Whole New Tune,tt0120879 f0-GryhUnSQ,1998.0,1,12,2011,Velvet Goldmine,Shot on Stage,tt0120879 QEp-lhl5ImQ,1998.0,3,12,2011,Velvet Goldmine,Glam Child,tt0120879 Hjhg4s4nD5s,1998.0,6,12,2011,Velvet Goldmine,Press Conference,tt0120879 NEc_n0W4ans,1998.0,4,12,2011,Velvet Goldmine,Curt Wild,tt0120879 c2gZ4aOYOw4,1998.0,9,12,2011,Velvet Goldmine,Waste of Tape,tt0120879 X_akiwYsyYM,1998.0,8,12,2011,Velvet Goldmine,Morality in Art,tt0120879 6-2doIEpFVE,1998.0,7,12,2011,Velvet Goldmine,Star Struck Lovers,tt0120879 K1C2odNXI4E,1998.0,11,12,2011,Velvet Goldmine,Make a Wish,tt0120879 aXg3HXlsdg0,2006.0,3,10,2011,The Queen,The People's Princess,tt0436697 -l-VCl5kQuY,2006.0,4,10,2011,The Queen,The Stag,tt0436697 qo0uCiDpp0k,2006.0,5,10,2011,The Queen,Flowers at Balmoral,tt0436697 io2eeYm9sQs,2006.0,8,10,2011,The Queen,'s Tribute,tt0436697 sGbVR3TgQUs,2006.0,7,10,2011,The Queen,Flowers for the Queen,tt0436697 KAPjaNfNw-I,2006.0,6,10,2011,The Queen,In Defense of,tt0436697 lF_KpWfFyR8,2006.0,2,10,2011,The Queen,Not Going to Screw Up Her Death,tt0436697 TgXkBPFZZFY,2006.0,9,10,2011,The Queen,A Diminished Institution,tt0436697 ytFFiCYItjI,2006.0,1,10,2011,The Queen,Meeting the Queen,tt0436697 _flZU87W_Rc,2002.0,1,10,2011,Tadpole,A Timeless Home,tt0271219 FYlySSs_-JI,2002.0,5,10,2011,Tadpole,The Thing Itself,tt0271219 4iMFUxeKJd8,2002.0,3,10,2011,Tadpole,Mum's the Word,tt0271219 zlL7BbZoSAY,2002.0,6,10,2011,Tadpole,"A Grown Up, or Close Enough",tt0271219 czzH5M2bUYc,2002.0,2,10,2011,Tadpole,Happy Ending,tt0271219 ti2qUYIgpjM,2002.0,8,10,2011,Tadpole,This Is Not Ancient Rome,tt0271219 rrbEQDRYpy8,2002.0,4,10,2011,Tadpole,Who Is She?,tt0271219 ITszRkvBcUg,2002.0,7,10,2011,Tadpole,Family Dinner,tt0271219 pIWh28WPyxQ,2003.0,11,11,2011,Scary Movie 3,Down the Well,tt0306047 mT1QTyuTr-M,2002.0,9,10,2011,Tadpole,Kitchen Kiss,tt0271219 KMFxz39Qhjk,2002.0,8,11,2011,The Hours,Missing London,tt0274558 h7CCnLwD2MY,2001.0,3,12,2011,Kate & Leopold,No One Wants to be Romanced by a Buffoon,tt0035423 OMhzAcofd_8,2001.0,5,11,2011,O,din's Accusation,tt0190590 nyExbZwBM2c,1995.0,11,12,2011,Georgia,"You Don't Sing, You Can't Sing",tt0113158 eCCJzVqLBvU,2008.0,10,10,2011,Smart People,I'm Sorry and I Love You,tt0858479 znxRGH92XDg,2002.0,1,12,2011,Frida,Bus Crash,tt0120679 E3wiJJOrgho,2002.0,10,12,2011,Frida,The Two s and T rotsky's Assassination,tt0120679 AjXl70vbOwk,1995.0,1,12,2011,Georgia,Hard Times,tt0113158 RTCMHLpNi4k,2002.0,12,12,2011,Frida,I Hope the Exit is Joyful,tt0120679 8KjAsaJdi2w,1995.0,12,12,2011,Georgia,Hard Times Again,tt0113158 k7VW1xNAn5A,1995.0,3,12,2011,Georgia,Hava Nagila,tt0113158 99PeJShwZis,1995.0,4,12,2011,Georgia,I'll Be Your Mirror,tt0113158 J0IXJNE0FXI,1995.0,5,12,2011,Georgia,My Sister's Here Tonight,tt0113158 OzP8k0R-USw,2002.0,11,12,2011,Frida,'s Mexican Exhibition,tt0120679 EnGXNEEHPG8,1995.0,9,12,2011,Georgia,A Thousand Pounds of Dead Weight,tt0113158 YCIYe01lg1E,1995.0,2,12,2011,Georgia,Almost Blue,tt0113158 06B3m6L5fFw,2002.0,4,12,2011,Frida,Marriage Without Fidelity,tt0120679 YlpN0wDqUx4,1994.0,1,10,2011,Mrs. Parker and the Vicious Circle,The Circle Is Formed,tt0110588 DTVnQBRfCAw,1994.0,3,10,2011,Mrs. Parker and the Vicious Circle,Married to the Town Drunk,tt0110588 rQP1duR2tf4,2002.0,6,12,2011,Frida,More Affection in a Handshake,tt0120679 Q0bjuz5YBLM,1994.0,4,12,2011,Priest,Recreation,tt0110889 J8_CIsow_Y8,1994.0,6,12,2011,Priest,Incest,tt0110889 qFsoL6ed_2E,1994.0,7,12,2011,Priest,Denial of Communion,tt0110889 LWEklaaHGsE,1994.0,4,10,2011,Mrs. Parker and the Vicious Circle,Who Would Want To?,tt0110588 HhtRNV2v2rU,1994.0,6,10,2011,Mrs. Parker and the Vicious Circle,I Lied When I Smiled,tt0110588 yvv9DRyxTFo,1994.0,5,10,2011,Mrs. Parker and the Vicious Circle,Drinking Booze and Talking Sex,tt0110588 Fyvzidxs_SY,1978.0,3,10,2011,Game of Death,Billy Lo's Funeral,tt0077594 Jhxb2wWFK4M,1994.0,7,10,2011,Mrs. Parker and the Vicious Circle,Tragedies Don't Kill Us,tt0110588 B3fgBOG1fWs,1994.0,8,10,2011,Mrs. Parker and the Vicious Circle,Unrequited Love,tt0110588 ef77ViM-f14,1996.0,3,10,2011,The Pallbearer,Nervous Phone Call,tt0117283 qZBVXYYcCjQ,1994.0,9,10,2011,Mrs. Parker and the Vicious Circle,Might As Well Live,tt0110588 gZY_zy2hAHA,1999.0,1,10,2011,"Happy, Texas",Vigilante Justice,tt0162360 ubgR8CKyzYw,1999.0,6,10,2011,"Happy, Texas",That Whole Gay Thing is Just a Hobby,tt0162360 UqPRk4oFz_U,1999.0,2,10,2011,"Happy, Texas",Traveling Midget Tailors,tt0162360 _OMy1p_m3_Q,1996.0,7,10,2011,The Pallbearer,Tom Spies on Julie,tt0117283 1H2xudG3BPI,1998.0,2,12,2011,Sliding Doors,Caught Cheating,tt0120148 WQtoXhnhFwM,1996.0,8,10,2011,The Pallbearer,He Made a Pass at Me,tt0117283 sj93sTcEJYA,1998.0,3,12,2011,Sliding Doors,A Cheer-Up Date,tt0120148 uPAXLQIxBGY,1999.0,3,10,2011,"Happy, Texas",Wayne Disciplines the Children,tt0162360 X5wAXtQ0oDY,1998.0,5,12,2011,Sliding Doors,An Ideal Kissing Moment,tt0120148 MLxnvq1E-ag,1996.0,10,10,2011,The Pallbearer,A Woman Scorned,tt0117283 Q4DEaXN6Dp8,1996.0,6,10,2011,The Pallbearer,Couldn't Let Her Go,tt0117283 XfBImxhVWTw,1999.0,5,10,2011,"Happy, Texas","If You Were Gay, You'd Be Just My Type",tt0162360 rxX-JLi1FB0,1996.0,9,10,2011,The Pallbearer,You're Going to Screw Me Over,tt0117283 qJKahA8B9Ro,1996.0,10,12,2011,Sling Blade,Ain't Got No Boy,tt0117666 3uHIpj5JpvQ,1994.0,10,10,2011,Mrs. Parker and the Vicious Circle,Analyzing Mrs. Parker,tt0110588 c-zaHGYURv0,1998.0,10,12,2011,Sliding Doors,A Kiss in the Rain,tt0120148 Mp5IvPj4ay0,1999.0,4,10,2011,"Happy, Texas",Like Some Straight Guy is Ever Gonna Say That,tt0162360 sk3soFv1wHM,2009.0,10,12,2011,Everybody's Fine,One Last Painting,tt0780511 5xWrsFC7pG8,2004.0,10,10,2011,Dirty Dancing: Havana Nights,The Finals,tt0338096 eeR4VQyoLdc,1998.0,9,12,2011,Sliding Doors,I'm Divorced,tt0120148 -nkqrSaJf1g,1996.0,2,10,2011,The Pallbearer,Who Is Bill Abernathy?,tt0117283 UUB75dkgT_c,1998.0,8,12,2011,Sliding Doors,I Wanted to Call You,tt0120148 idxHUQY4aDA,1998.0,4,12,2011,Sliding Doors,No Need to Become Woody Allen,tt0120148 v-0Z_0SUtJw,1998.0,11,12,2011,Sliding Doors,A Hospital Promise,tt0120148 5Ui9rRepv0Q,1999.0,8,10,2011,"Happy, Texas",Wayne's Prayer,tt0162360 diteeSODzTQ,1999.0,9,10,2011,"Happy, Texas",Bank Robbery,tt0162360 FYDrPt06XNI,1996.0,11,12,2011,Sling Blade,You Will Be Happy,tt0117666 HUwVxqQz25Y,1998.0,12,12,2011,Sliding Doors,Meeting Again in the Elevator,tt0120148 t9BqiLLt9SI,1999.0,7,10,2011,"Happy, Texas",Harry Dumps Chappy,tt0162360 xCJZij74-J0,1996.0,1,12,2011,Sling Blade,Mercury Is a Real Good Car,tt0117666 G4tfduPN3rM,1998.0,1,12,2011,Sliding Doors,You're Out,tt0120148 3c6F_0KpK3k,1998.0,6,12,2011,Sliding Doors,I'm Pregnant,tt0120148 pYBS9Sp0xU8,1998.0,7,12,2011,Sliding Doors,"You Sad, Sad Wanker",tt0120148 neFpFiuvYsQ,1996.0,4,12,2011,Sling Blade,You Just a Boy,tt0117666 I2eVbp_Jfc0,1999.0,10,10,2011,"Happy, Texas",Back to Prison,tt0162360 sAgSUFT4cVk,1996.0,2,12,2011,Sling Blade,Some Folks Call It a,tt0117666 4pz2kXoDo_s,1996.0,3,12,2011,Sling Blade,French Fried Potaters,tt0117666 PJ1i0HuBXPg,1996.0,5,12,2011,Sling Blade,Welcome to Our Humble Home,tt0117666 iLYeR6v-fVE,2004.0,1,10,2011,Dirty Dancing: Havana Nights,"A Good Dancer, For an American",tt0338096 Fu6QrGkRdJo,2003.0,2,11,2011,The Blind Swordsman: Zatoichi,Samurai Assassin,tt0363226 uB2eggtlTfE,1996.0,6,12,2011,Sling Blade,We're Different,tt0117666 LAd6SaXDdZ4,2004.0,2,10,2011,Dirty Dancing: Havana Nights,James Gets Handsy,tt0338096 O4qhT8oRvss,2004.0,5,10,2011,Dirty Dancing: Havana Nights,Move Through Your Fear,tt0338096 7ZhnS45Zexo,2003.0,9,11,2011,The Blind Swordsman: Zatoichi,Zatoichi Kills Everyone,tt0363226 SlVK7ogwyUI,2003.0,10,11,2011,The Blind Swordsman: Zatoichi,Zatoichi vs. Genosuke,tt0363226 L9tK9HYspFM,1996.0,7,12,2011,Sling Blade,Band Poetry,tt0117666 0C6nvNlVx1A,1996.0,8,12,2011,Sling Blade,Doyle Loses It,tt0117666 H3Epwo8vFpk,2004.0,4,10,2011,Dirty Dancing: Havana Nights,The Sex Talk,tt0338096 1UqJgV10-wE,2003.0,5,11,2011,The Blind Swordsman: Zatoichi,Caught Cheating,tt0363226 BydT8m3NdRY,2003.0,6,11,2011,The Blind Swordsman: Zatoichi,Blood and Rain,tt0363226 ZuqwMQTc8cE,2003.0,1,11,2011,The Blind Swordsman: Zatoichi,Blind Fury,tt0363226 tGYc5woadps,1996.0,9,12,2011,Sling Blade,We All Gotta Get Along,tt0117666 Znook3DEEaI,2004.0,6,10,2011,Dirty Dancing: Havana Nights,In Each Other's Arms,tt0338096 bcY4Lhb3yhI,2004.0,8,10,2011,Dirty Dancing: Havana Nights,The Latin Ballroom Contest,tt0338096 YV2WQTL_45A,2003.0,8,11,2011,The Blind Swordsman: Zatoichi,Bad Teacher,tt0363226 MFZGTRWVOjU,2003.0,4,11,2011,The Blind Swordsman: Zatoichi,The Origins of Hatred,tt0363226 sL6QJSdqlt0,1996.0,12,12,2011,Sling Blade,I Aim to Kill You,tt0117666 XPRFb9J1CvA,2004.0,9,10,2011,Dirty Dancing: Havana Nights,You Humiliated Us,tt0338096 b_uXZZRpO-E,1995.0,1,12,2011,Smoke,The Weight of,tt0114478 U6Lt17rALrM,1995.0,3,12,2011,Smoke,A Hook for a Left Arm,tt0114478 Ovloa5lv7io,1996.0,9,12,2011,Citizen Ruth,"A Check for $15,000",tt0115906 p7aigA4gPiw,2003.0,3,11,2011,The Blind Swordsman: Zatoichi,Masseur Meets Samurai,tt0363226 xl01-vBoHsE,2003.0,11,11,2011,The Blind Swordsman: Zatoichi,Sense the Truth,tt0363226 TZAvqLk4o-g,2007.0,8,12,2011,Eagle vs Shark,Invitation to a Fight,tt0494222 o69EA3eSDf0,1996.0,1,12,2011,Citizen Ruth,You Sicken Me,tt0115906 tAx_zjVXTOs,1996.0,2,12,2011,Citizen Ruth,Stoney Family Dinner,tt0115906 NKCskfhsru0,1996.0,3,12,2011,Citizen Ruth,I Want an Abortion!,tt0115906 zk0AexuAhlw,1996.0,5,12,2011,Citizen Ruth,The Devil Inside,tt0115906 V2weMKLFJLo,1996.0,4,12,2011,Citizen Ruth,Baby Killer!,tt0115906 0WjELXl_6zA,2007.0,5,12,2011,Eagle vs Shark,Cockhole,tt0494222 QzymqXvURkw,1996.0,6,12,2011,Citizen Ruth,A Pro-Choice Spy,tt0115906 mOpvoWxjz90,1996.0,7,12,2011,Citizen Ruth,I Ain't No Telegram,tt0115906 X9N-BROIbeY,1996.0,10,12,2011,Citizen Ruth,A Massage and a Bribe,tt0115906 CymY_Rl1fEs,2002.0,5,12,2011,The Quiet American,Love During Wartime,tt0258068 TDecVpSLT38,1996.0,11,12,2011,Citizen Ruth,What If I Aborted You?,tt0115906 ndrr3vif10w,1996.0,8,12,2011,Citizen Ruth,A Woman's Right to Pick,tt0115906 TQrzX_5FO1k,1996.0,12,12,2011,Citizen Ruth,Hallelujah,tt0115906 ZS0rEz8wR4g,2007.0,1,12,2011,Eagle vs Shark,Big Boy Burger with Free Cheese,tt0494222 xo2meR8UHJ4,2007.0,4,12,2011,Eagle vs Shark,Do You Wanna Kiss?,tt0494222 -g7jRpukoVg,2007.0,3,12,2011,Eagle vs Shark,Dangerous Person vs. Eagle Lord,tt0494222 K3ucS56rrpA,2007.0,2,12,2011,Eagle vs Shark,The Animal Party,tt0494222 QJfhiv1Te6o,2007.0,9,12,2011,Eagle vs Shark,I Thought You Were Dead,tt0494222 yoWe1gHwSrs,2001.0,9,11,2011,Captain Corelli's Mandolin,Blocked By the Germans,tt0238112 2GMpuN48u5c,2007.0,10,12,2011,Eagle vs Shark,You're A Cripple,tt0494222 vVpzpHtm5d8,2001.0,5,11,2011,Captain Corelli's Mandolin,Pelagia Dances,tt0238112 oC1MpovG4N4,2001.0,1,11,2011,Captain Corelli's Mandolin,The Engagement Party,tt0238112 UYovQZUBzpA,2007.0,12,12,2011,Eagle vs Shark,Sleeping Bag Soulmates,tt0494222 SKMOhrpxUSo,2007.0,11,12,2011,Eagle vs Shark,Cripple Fight,tt0494222 JGV_h36uZ5E,1995.0,2,12,2011,Smoke,Auggie's Photo Album,tt0114478 czJ6KqTkk9o,2001.0,2,11,2011,Captain Corelli's Mandolin,Eating With the Enemy,tt0238112 vz7jp6GiwTA,2007.0,7,12,2011,Eagle vs Shark,Throwing Her Heart Away,tt0494222 eORAWRKW53s,2002.0,7,12,2011,The Importance of Being Earnest,Algernon Proposes,tt0278500 aAnJ9iO8DAE,2007.0,6,12,2011,Eagle vs Shark,Wanna Go Out With Me?,tt0494222 NbX7nS8SG7E,2002.0,5,12,2011,The Importance of Being Earnest,Algernon Meets Cecily,tt0278500 E8eiFdoI5W0,1995.0,4,12,2011,Smoke,Felicity's Abortion,tt0114478 _6CT5p7fh9g,1995.0,9,12,2011,Smoke,My Name is Thomas Jefferson Cole,tt0114478 RTObjnUfgNs,1995.0,6,12,2011,Smoke,When I Was Seventeen,tt0114478 NI4En1gLsXs,1995.0,8,12,2011,Smoke,Auggie The Angel,tt0114478 WBxpXxZqKms,1995.0,12,12,2011,Smoke,Bullsh** Is A Real Talent,tt0114478 vG833_jH7eY,1995.0,5,12,2011,Smoke,A Son Older Than His Father,tt0114478 qUDMInHr_wI,1995.0,10,12,2011,Smoke,Auggie Wren's Christmas Story,tt0114478 D-UBJzXzoho,1995.0,11,12,2011,Smoke,The End of Auggie's Xmas Story,tt0114478 04zHzVrubHk,1995.0,7,12,2011,Smoke,A $5K Apology,tt0114478 5pM-n30jlRk,2001.0,3,11,2011,Captain Corelli's Mandolin,Leaving For War,tt0238112 kuwMlIheB7M,2001.0,4,11,2011,Captain Corelli's Mandolin,What is There to Sing About?,tt0238112 PPEX4kaB1-M,2001.0,6,11,2011,Captain Corelli's Mandolin,I Love You,tt0238112 WIaK0Z7k-Gs,2001.0,7,11,2011,Captain Corelli's Mandolin,What Love Is,tt0238112 gjiyh8AXkjc,2001.0,8,11,2011,Captain Corelli's Mandolin,Hard to Know Who You Can Trust,tt0238112 ofxfYinuKKc,2000.0,5,12,2011,Scream 3,The Rules of a Trilogy,tt0134084 yek9a0zFGHE,2001.0,10,11,2011,Captain Corelli's Mandolin,German Ambush,tt0238112 VevqDJM8KH0,2000.0,1,12,2011,Scream 3,Picked Off,tt0134084 2RnYLP4Hes4,2001.0,11,11,2011,Captain Corelli's Mandolin,Mandras Saves Corelli,tt0238112 dsONBwWtAts,2000.0,3,12,2011,Scream 3,Back Stabber,tt0134084 dDDbmin38gg,2000.0,4,12,2011,Scream 3,Rewriting the Movie,tt0134084 hQL6_NbLwtk,2000.0,6,12,2011,Scream 3,I Was Up for Princess Leia,tt0134084 hajGYP3CLKo,2000.0,2,12,2011,Scream 3,The Cutting Room,tt0134084 VgQOZkXg9t4,2000.0,7,12,2011,Scream 3,Set Visit,tt0134084 gcu30p7VEKI,2000.0,8,12,2011,Scream 3,"Oh, You Motherf***er!",tt0134084 GwFaz1nukyE,2000.0,9,12,2011,Scream 3,Shattered Glass,tt0134084 DMeR-bkC13g,2000.0,11,12,2011,Scream 3,A Family Film,tt0134084 J6Cg05MhWbw,2000.0,10,12,2011,Scream 3,It's Your Turn to Scream,tt0134084 1b_sbGJGx0o,2000.0,12,12,2011,Scream 3,Firing the Director,tt0134084 _OiXT87RhvA,1999.0,1,12,2011,She's All That,Taylor's Hot and Heavy Spring Break,tt0160862 CB9tbR2M5fg,2005.0,9,12,2011,The Amityville Horror,Rejected Blessing,tt0384806 mLsptorbPUg,2005.0,10,12,2011,The Amityville Horror,The House's Dark History,tt0384806 O47od13_x1k,1999.0,2,12,2011,She's All That,The Bet,tt0160862 r4mQmoD72tc,1999.0,11,12,2011,She's All That,Prom Dance-Off,tt0160862 nimkNFEKUkY,1999.0,7,12,2011,She's All That,The New Laney Boggs,tt0160862 x0XE7KFZook,1999.0,10,12,2011,She's All That,Pube-y Pizza,tt0160862 TbFYMfIpRss,1999.0,9,12,2011,She's All That,You're Vapor,tt0160862 i9KJXFbkMH0,1999.0,8,12,2011,She's All That,"Give It to Me, Baby",tt0160862 BztqFxMXpTQ,1999.0,4,12,2011,She's All That,Supersize My Balls,tt0160862 -AlTccRsRsk,1999.0,3,12,2011,She's All That,Laney Boggs,tt0160862 M_MJrybDRKA,1999.0,5,12,2011,She's All That,"Be Silent, Be Still",tt0160862 5iZUg7tGlxM,1996.0,4,12,2011,Walking and Talking,I Know You Think I'm Ugly,tt0118113 pnjWGD-WW8k,1996.0,2,12,2011,Walking and Talking,That Ugly Guy,tt0118113 97ZiBty1eTM,1996.0,7,12,2011,Walking and Talking,Obscene Phone Call,tt0118113 R65UmAfIZpw,1996.0,10,12,2011,Walking and Talking,Gross,tt0118113 eZjR4aso7VY,1996.0,3,12,2011,Walking and Talking,What Went Wrong With Us?,tt0118113 e_hkxbNpQMw,1996.0,1,12,2011,Walking and Talking,You're an A**hole!,tt0118113 veN5fuM-AwI,1996.0,5,12,2011,Walking and Talking,Vagina Music,tt0118113 QoJ5JJ3keUw,1999.0,1,12,2011,The Talented Mr. Ripley,Tom Ripley?,tt0134119 GdM1NCrxZvI,1996.0,9,12,2011,Walking and Talking,Alone Without Her Cat,tt0118113 ZjDB3Pfl3iA,1996.0,11,12,2011,Walking and Talking,The Black Pants,tt0118113 E-TthagAhsk,1999.0,3,12,2011,The Talented Mr. Ripley,Peeping Tom,tt0134119 9KstSfW1IAA,1999.0,11,12,2011,The Talented Mr. Ripley,Dickie's Rings,tt0134119 8P3Q_di3Lo8,1996.0,12,12,2011,Walking and Talking,I Love You,tt0118113 BjMrxHxraio,1999.0,5,12,2011,The Talented Mr. Ripley,Run in at the Opera,tt0134119 _9b7JgWu4PQ,1999.0,6,12,2011,The Talented Mr. Ripley,Cruel Chance Encounter,tt0134119 bTE69etu_fg,1999.0,10,12,2011,The Talented Mr. Ripley,A Great Friend to My Son,tt0134119 3si4Cv66RSM,1999.0,8,12,2011,The Talented Mr. Ripley,Just a Coincidence,tt0134119 Mq462kfFKI8,1999.0,7,12,2011,The Talented Mr. Ripley,Freddie's Suspicions,tt0134119 a-IU2mBY1_4,1999.0,9,12,2011,The Talented Mr. Ripley,You've Broken My Heart,tt0134119 XgTtI5D-INw,1999.0,12,12,2011,The Talented Mr. Ripley,The Silent Promise,tt0134119 CZK9pY1dA74,2002.0,2,12,2011,The Importance of Being Earnest,A Metaphysical Speculation,tt0278500 VHVxpLDEAo8,2002.0,4,12,2011,The Importance of Being Earnest,Born in a Handbag,tt0278500 eW4wR7-iOMg,2002.0,3,12,2011,The Importance of Being Earnest,Everything or Nothing,tt0278500 VpLXPIihj60,2002.0,6,12,2011,The Importance of Being Earnest,"Earnest is Dead, Quite Dead",tt0278500 r3TEbOR9SyQ,2002.0,9,12,2011,The Importance of Being Earnest,Eating Muffins Agitatedly,tt0278500 3pDOsNri1Ko,2002.0,10,12,2011,The Importance of Being Earnest,Satisfactory Explanations,tt0278500 Qwx74IfTNwo,2002.0,8,12,2011,The Importance of Being Earnest,Algernon and Jack Are Exposed,tt0278500 KaxcWDmXbBs,2003.0,3,12,2011,View from the Top,We're Gonna Crash!,tt0264150 wPJvAzfaqlk,2001.0,10,12,2011,Amélie,Fantasy vs. Reality,tt0211915 r_U2p-bdeww,2003.0,2,12,2011,View from the Top,"Big Hair, Short Skirts, Service with a Smile",tt0264150 FOdizWKG4qk,2002.0,12,12,2011,The Importance of Being Earnest,Miss Prism Knows the Truth,tt0278500 oXDyQju8my4,2003.0,6,12,2011,View from the Top,Royalty Airlines Training,tt0264150 gtb_4pNuYIA,2002.0,11,12,2011,The Importance of Being Earnest,A Passionate Celibacy,tt0278500 x7CGZ5vxlLs,2001.0,5,12,2011,Amélie,Amelie the Matchmaker,tt0211915 2TI2MT0eoSo,2002.0,1,12,2011,The Importance of Being Earnest,"Bunbury, a Dreadful Invalid",tt0278500 Vz7PIPZgT0A,2001.0,3,12,2011,Amélie,Love at First Sight,tt0211915 0p6UQkoNDxc,2005.0,8,12,2011,The Amityville Horror,Chelsea's on the Roof!,tt0384806 cLm4oCbovsE,2003.0,4,12,2011,View from the Top,The Legendary John Witney,tt0264150 DmokH6o-nKU,2003.0,1,12,2011,View from the Top,Birthday Break-Up,tt0264150 X_SthyaIImM,2003.0,8,12,2011,View from the Top,Stewart Family Christmas,tt0264150 XyBWsO1gVTk,2003.0,7,12,2011,View from the Top,Peak-Too-Sooner,tt0264150 PIMIz2z-1mk,2005.0,2,12,2011,The Amityville Horror,What's the Catch?,tt0384806 38ok415yQOc,2003.0,12,12,2011,View from the Top,Cleveland Rocks,tt0264150 2zi4N3_c4sM,2003.0,10,12,2011,View from the Top,Catfight,tt0264150 JgYPxPGfaRE,2003.0,9,12,2011,View from the Top,Fly Away,tt0264150 YBUzc9wJMMI,2005.0,1,12,2011,The Amityville Horror,The First Family,tt0384806 GBh5nZ3SNz0,2005.0,4,12,2011,The Amityville Horror,Bad Dreams,tt0384806 hKBHte0cc_0,2003.0,11,12,2011,View from the Top,Paris is Beautiful,tt0264150 vJzOCmyQY24,2005.0,7,12,2011,The Amityville Horror,Voices,tt0384806 SfaY0KH76nU,2001.0,12,12,2011,Shaolin Soccer,Shaolin Wins Scene,tt0286112 SeBHPzqiUlg,2005.0,6,12,2011,The Amityville Horror,Trapped in the Closet,tt0384806 CWPoQO7bMRU,2002.0,3,11,2011,Hero,Moon vs. Flying Snow,tt0299977 sjVgX0A8Jtc,2002.0,2,11,2011,Hero,Calligraphy and Swordplay,tt0299977 2eXbS-qG2GA,2002.0,5,11,2011,Hero,How Swift Your Sword,tt0299977 57TliyF8MFI,2002.0,6,11,2011,Hero,Lake Fight,tt0299977 fLxSRdnGucA,2002.0,9,11,2011,Hero,Broken Sword and the King,tt0299977 VIJIbL0ujtk,2002.0,8,11,2011,Hero,Moon Attacks Nameless,tt0299977 KeTBqolcrO8,2002.0,11,11,2011,Hero,A 's Death,tt0299977 E1N0IvW6HyI,2002.0,10,11,2011,Hero,The Ultimate Ideal,tt0299977 ilR3_PaGoJA,2005.0,12,12,2011,The Amityville Horror,Saving George,tt0384806 UouRrAl48-8,2005.0,11,12,2011,The Amityville Horror,The Escape,tt0384806 YafZPxB5DRs,1993.0,4,11,2011,The Piano,Sick With Longing,tt0107822 3WNqgV1M5Zs,1993.0,7,11,2011,The Piano,I Trusted You!,tt0107822 XawDF5UDgXY,1993.0,3,11,2011,The Piano,Lift it Higher,tt0107822 QqY-Ikm0kc4,1993.0,2,11,2011,The Piano,The Deal,tt0107822 4U8n5Kjd0LY,1993.0,11,11,2011,The Piano,Epilogue,tt0107822 hoHyqSZGPt0,1993.0,8,11,2011,The Piano,Alisdair Sends George a Message,tt0107822 OMMs6m-HIxM,1993.0,1,11,2011,The Piano,We Can't Leave the Piano,tt0107822 AZLoDR3AjX8,1993.0,6,11,2011,The Piano,Do You Love Me?,tt0107822 3_giBWrUYKc,1993.0,9,11,2011,The Piano,I Heard Her Voice in My Head,tt0107822 tLUrEgC-Dd4,1993.0,10,11,2011,The Piano,Piano Overboard,tt0107822 HtBebT-rKeM,2001.0,1,12,2011,Shaolin Soccer,Sweetie's Sweet Buns Scene,tt0286112 exMmixM3b3Q,2001.0,2,12,2011,Shaolin Soccer,Soccer Fight Scene,tt0286112 n5_WG3WZqVk,2001.0,4,12,2011,Shaolin Soccer,Soccer Is War Scene,tt0286112 JwfDV_Y54fA,2001.0,7,12,2011,Shaolin Soccer,Mui Beats the Boss Scene,tt0286112 lqT20npvohw,2001.0,6,12,2011,Shaolin Soccer,vs. Team Puma Scene,tt0286112 Vje8Fp3yQFM,2001.0,9,12,2011,Shaolin Soccer,The Evil Goalie Scene,tt0286112 fvBB1KK_VY0,2001.0,10,12,2011,Shaolin Soccer,Team Evil Scene,tt0286112 Go6nwid-CaQ,2001.0,8,12,2011,Shaolin Soccer,vs. Team Mustache Scene,tt0286112 6BsWrEwtDP8,2001.0,11,12,2011,Shaolin Soccer,E.T. the Goalie Scene,tt0286112 DF-ifsJZQEM,1996.0,1,12,2011,The Crow: City of Angels,Restless Souls,tt0115986 qnNr8etyi08,1996.0,5,12,2011,The Crow: City of Angels,Pick a Card,tt0115986 0tN0uV9DebQ,1996.0,2,12,2011,The Crow: City of Angels,A Bad Batch,tt0115986 r74QbwaIWFc,1996.0,3,12,2011,The Crow: City of Angels,Resurrection,tt0115986 dlYo5IHqD80,1996.0,4,12,2011,The Crow: City of Angels,Re-Born,tt0115986 Pu3BkumJXpk,2002.0,5,11,2011,Gerry,Rock Marooned,tt0302674 n7mEYDnXaMg,2002.0,4,11,2011,Gerry,Conquering Thebes,tt0302674 fBtPMUJJEg8,1996.0,9,12,2011,The Crow: City of Angels,Hush Little Baby,tt0115986 FtM7tdP6UDE,1996.0,10,12,2011,The Crow: City of Angels,A Coin For Curve,tt0115986 0-EcLwovpbU,1996.0,11,12,2011,The Crow: City of Angels,Ashes to Ashes,tt0115986 lIk-3o2CkM8,1998.0,9,12,2011,Smoke Signals,Everything Burned Up!,tt0120321 6ZNNfq5l5Ds,1998.0,5,12,2011,Smoke Signals,Broke Some Hearts,tt0120321 xPnV2392Tck,1998.0,4,12,2011,Smoke Signals,John Wayne's Teeth,tt0120321 kBEhz8vw2AM,1998.0,1,12,2011,Smoke Signals,The Oral Tradition,tt0120321 uwcJaUaVfR0,1998.0,3,12,2011,Smoke Signals,How to Be a Real Indian,tt0120321 az-Q_fYNZrU,1998.0,10,12,2011,Smoke Signals,Running for Help,tt0120321 afW8dxL3qZM,1998.0,7,12,2011,Smoke Signals,He's Waiting For You,tt0120321 IdSgAIq22b4,1998.0,8,12,2011,Smoke Signals,Exploring the Trailer,tt0120321 Bi3QsK4sVVA,1998.0,11,12,2011,Smoke Signals,That's My Father,tt0120321 t0qYTDYyNvs,2001.0,7,12,2011,Get Over It,Kissing Kelly,tt0192071 ND-nldJc8kU,1998.0,12,12,2011,Smoke Signals,To Forgive Our Fathers,tt0120321 RSm6z78KnxQ,1996.0,7,12,2011,Flirting with Disaster,The Proper Breast Feeding Technique,tt0116324 6QOqWyBhTVo,2001.0,1,12,2011,Get Over It,Ball to the Face,tt0192071 OAhF3wWBxbM,2002.0,6,11,2011,Gerry,The Jump,tt0302674 VyLZlTLEY4U,2001.0,2,12,2011,Get Over It,Swimsuits and Shakespeare,tt0192071 VK-GL8zzH9I,2009.0,6,12,2011,Everybody's Fine,"Goodbye, Dad",tt0780511 ASP2K-sFud0,2001.0,4,12,2011,Get Over It,Disaster Date,tt0192071 NC756fAs0Hk,2001.0,3,12,2011,Get Over It,Big Red,tt0192071 l0Io_aXWgkQ,2001.0,5,12,2011,Get Over It,Sex Club Raid,tt0192071 hoSJVPaj0ds,2002.0,3,11,2011,Gerry,Barreling Down the Road,tt0302674 GU_FUlOapf8,2004.0,7,12,2011,Jersey Girl,Renting Porn,tt0300051 _KXS58EqEHY,2001.0,6,12,2011,Get Over It,Little Miss Sassy Pants,tt0192071 nET7V9DsWgo,2001.0,9,12,2011,Get Over It,Opening Number,tt0192071 HU3C0Vv0FeA,2006.0,6,10,2011,Hollywoodland,Can I Shoot You?,tt0427969 S48AVqtonXw,2005.0,1,12,2011,An Unfinished Life,The Bear's Back,tt0350261 y9DslHbBubA,2001.0,11,12,2011,Get Over It,Improvised Shakespeare,tt0192071 MKbX6ilLdRQ,2003.0,1,9,2011,The Battle of Shaker Heights,The Reenactment,tt0357470 Yc1M82PB8C4,2001.0,12,12,2011,Get Over It,September,tt0192071 yOJ1gWVYB88,2002.0,7,11,2011,Gerry,F*** You,tt0302674 iqRZb8tveM0,2002.0,1,11,2011,Gerry,Fanny Packs & Sing Alongs,tt0302674 6c4QghxZ3IU,2002.0,8,11,2011,Gerry,Gerried,tt0302674 9GFz8aB2BVE,2002.0,10,11,2011,Gerry,Act of Kindness,tt0302674 fgxnajrZN9s,2002.0,9,11,2011,Gerry,Another Mirage,tt0302674 yefj12M8xkY,2001.0,3,11,2011,The Deep End,Deadly Discovery,tt0250323 kCmyVaHZ4Is,2001.0,2,11,2011,The Deep End,Don't Touch Me,tt0250323 3Krkeuic8GY,2001.0,4,11,2011,The Deep End,Dumping the Body,tt0250323 QpGGSlwgOPs,2002.0,11,11,2011,Gerry,The Highway,tt0302674 1_RHhfIc5iM,2001.0,6,11,2011,The Deep End,Incriminating Video,tt0250323 Q5HNKhhBjcw,2001.0,5,11,2011,The Deep End,Diving for Keys,tt0250323 Tkeoi_cp0BQ,2001.0,7,11,2011,The Deep End,CPR,tt0250323 -o2z2G3y50M,2001.0,9,11,2011,The Deep End,Get Out of My House,tt0250323 pPOcpk9-318,2001.0,10,11,2011,The Deep End,Battle of the Blackmailers,tt0250323 CLp_t1uhYOs,2001.0,11,11,2011,The Deep End,I Can't Leave You,tt0250323 505KGEuKbNg,1992.0,11,12,2011,Like Water for Chocolate,Breaking Tradition,tt0103994 -yEB9DCX-Ek,1992.0,6,12,2011,Like Water for Chocolate,The Flare of the Match,tt0103994 SIQb3d-piF0,2000.0,7,12,2011,Reindeer Games,He Wants Me,tt0184858 RNXEflQuWsU,1992.0,7,12,2011,Like Water for Chocolate,The Same Fate,tt0103994 fU9nP5V2vw4,1992.0,2,12,2011,Like Water for Chocolate,Pedro Asks For Tita's Hand,tt0103994 Gt_pfAghaHA,2000.0,9,12,2011,Reindeer Games,The Pow-Wow Safe,tt0184858 x2vfxsdVhaU,1992.0,8,12,2011,Like Water for Chocolate,Flatulence and Bad Breath,tt0103994 Nbl6Y076TeQ,1992.0,9,12,2011,Like Water for Chocolate,Mama Elena's Curse,tt0103994 wjHd0VWfuRU,1992.0,10,12,2011,Like Water for Chocolate,Tita Stands Up For Herself,tt0103994 q1Pz7ppcuJc,2006.0,1,12,2011,Venus,"Not Yodeling, Modeling",tt0489327 LmRLxta5-4U,2000.0,12,12,2011,Reindeer Games,Behind the Wheel,tt0184858 J7PnM3ji7uA,1992.0,12,12,2011,Like Water for Chocolate,I Can't Marry You,tt0103994 8ZDX262xJvo,2000.0,8,12,2011,Reindeer Games,Bad Santas,tt0184858 O4aMxMg0Vn0,1992.0,3,12,2011,Like Water for Chocolate,Tita's Magical Meal,tt0103994 2pg_Mr4lIoY,1992.0,1,12,2011,Like Water for Chocolate,Young Love,tt0103994 cLTBa54o70U,2006.0,2,12,2011,Venus,First Date,tt0489327 LldI0SRzJX0,2006.0,3,12,2011,Venus,Nude Modeling,tt0489327 kghbSGoV1kE,2000.0,1,12,2011,Reindeer Games,Monsters in the Gelatin!,tt0184858 qRAE0UOMyB8,2006.0,4,12,2011,Venus,The Rokeby,tt0489327 dZgbeIE9Xbo,1992.0,4,12,2011,Like Water for Chocolate,Stolen Kiss,tt0103994 H3ZYf8ECNWU,1992.0,5,12,2011,Like Water for Chocolate,Evil Mama Elena,tt0103994 IIn0MEHnMC8,2006.0,6,12,2011,Venus,Does It Suit Me?,tt0489327 -IZv4Jfl6ZQ,1999.0,2,12,2011,Holy Smoke,"P.J. Waters, Cult Exiter",tt0144715 OYwDIrdkJ3Y,2006.0,5,12,2011,Venus,Silly Old Fools,tt0489327 iR-4e37VUPo,2004.0,1,12,2011,Jersey Girl,I Wanna be a Coked Out Whore,tt0300051 kuXEfuC92Ag,2006.0,8,12,2011,Venus,Three Kisses,tt0489327 0VYvdsrV6Lw,2004.0,2,12,2011,Jersey Girl,Ollie's Meltdown,tt0300051 cIiMDK4UMQM,2006.0,7,12,2011,Venus,Can I Touch Your Hand?,tt0489327 H60kzF257OI,1999.0,4,12,2011,Holy Smoke,Faking It,tt0144715 R4O0t9jkkUg,1999.0,7,12,2018,Holy Smoke,How to Kiss a Woman,tt0144715 yGPikMkqr3M,1999.0,12,12,2011,Holy Smoke,Hindu Hallucination,tt0144715 5abHHDWcRAQ,1999.0,11,12,2011,Holy Smoke,"I Love You, Ruth",tt0144715 KA-LkJdOzHo,1999.0,3,12,2011,Holy Smoke,Keep Breathing,tt0144715 q06t8RTLqMQ,1999.0,8,12,2011,Holy Smoke,Man Hater,tt0144715 ig80r0pbEv4,1999.0,9,12,2011,Holy Smoke,An Ugly Woman,tt0144715 8JfgfdHNkvg,1999.0,6,12,2011,Holy Smoke,Revolting Sex,tt0144715 uvUH_niF-Zo,2004.0,6,12,2011,Jersey Girl,Birds & Bees,tt0300051 esrBtSFDlEU,1999.0,1,12,2011,Holy Smoke,Indian Guru Baba,tt0144715 Xy-cq_YpYPg,2001.0,2,11,2011,O,"Watch Your Girl, Bro",tt0190590 IB2eLqqkLaI,2004.0,4,12,2011,Jersey Girl,"Punch It, Chewy",tt0300051 JC2eKssXavo,2004.0,11,12,2011,Jersey Girl,Parental Advice,tt0300051 iRIxb6_ELNg,2006.0,9,12,2011,Venus,Shall I Compare Thee to a Summer's Day?,tt0489327 _9ZdW3KXuMs,2004.0,5,12,2011,Jersey Girl,A Publicist Legend,tt0300051 ACCoL8xk0Jg,2004.0,8,12,2011,Jersey Girl,Masturbation,tt0300051 8n2vsSHAs0w,2004.0,9,12,2011,Jersey Girl,Caught in the Shower,tt0300051 uONmjd_RGk4,2004.0,10,12,2011,Jersey Girl,Priorities of a Single Father,tt0300051 _VA5a5QSYYA,2006.0,10,12,2011,Venus,We Won't Live Forever,tt0489327 GXZ-NAPnfsw,2004.0,12,12,2011,Jersey Girl,Sweeney Todd,tt0300051 3F_Jlo1A4oo,2009.0,3,12,2011,Everybody's Fine,Colleen the Truck Driver,tt0780511 nKB-Ij0vyB4,2009.0,5,12,2011,Everybody's Fine,I Wanted to be a Good Father,tt0780511 dRTKQQtFoRU,2006.0,12,12,2011,Venus,Now We Can Really Talk,tt0489327 WH9nsFQH6KU,2009.0,4,12,2011,Everybody's Fine,A Spaghetti Dinner with Dad,tt0780511 Jf3-qH7OhmM,2006.0,11,12,2011,Venus,Catheters at Dawn,tt0489327 hiq_FE5dmWI,2001.0,6,11,2011,O,Dunk Contest Drama,tt0190590 3yp-s7ia9iQ,2001.0,1,11,2011,O,Under Suspicion,tt0190590 lsxZwAnu8LQ,2001.0,9,11,2011,O,It Has to Look Like Suicide,tt0190590 Yp6X2N7tcKQ,2001.0,10,11,2011,O,A Life of Jealousy,tt0190590 qFcIW6TtVEI,2002.0,1,12,2011,The Quiet American,He's a Quiet American,tt0258068 DnKAU918UaE,2001.0,11,11,2011,O,My Life Is ver,tt0190590 JvtwIPa3c9A,2001.0,7,11,2011,O,Believing the Lie,tt0190590 koWFIhw94xo,2006.0,2,11,2011,The Night Listener,Developing Friendship,tt0448075 fYvvenxELZA,2001.0,3,11,2011,O,Stolen Scarf,tt0190590 Q1yT_LIMb30,2001.0,8,11,2011,O,Plan of Attack,tt0190590 42asJ9x0-po,2002.0,2,12,2011,The Quiet American,Saving a Country and a Woman,tt0258068 -BUI1BdZz94,2009.0,8,12,2011,Everybody's Fine,"Not My Son, Not My Son",tt0780511 GrWqq9ukRY8,2009.0,1,12,2011,Everybody's Fine,I'm Not a Conductor,tt0780511 9ZhgVCU6ehk,2009.0,9,12,2011,Everybody's Fine,A Letter From Dad,tt0780511 6RAn28uDZHc,2009.0,7,12,2011,Everybody's Fine,Why You All Lied to Me?,tt0780511 VbrKHPGdDT0,2009.0,11,12,2011,Everybody's Fine,Home for the Holidays,tt0780511 c-veUs6bPHY,2009.0,2,12,2011,Everybody's Fine,Quitting Smoking,tt0780511 9gQIJ4id6pg,2009.0,12,12,2011,Everybody's Fine,Christmas Dinner,tt0780511 Kv_9PD-_akA,2006.0,6,11,2011,The Night Listener,Adapting to Deception,tt0448075 1TCzcINB8HI,2002.0,3,12,2011,The Quiet American,A Very Bad Dancer,tt0258068 vJ3TMzKciS8,2006.0,5,11,2011,The Night Listener,Theories,tt0448075 fPJQ4T2TQ0E,2006.0,1,11,2011,The Night Listener,The First Call,tt0448075 gY7e586vhzo,2002.0,4,12,2011,The Quiet American,When Did Everything Change?,tt0258068 jEXEQRL2oQw,2006.0,4,11,2011,The Night Listener,They Have the Same Voice,tt0448075 IiIwhalEAwU,2006.0,3,11,2011,The Night Listener,The Christmas Party,tt0448075 9NqWMjMX548,1998.0,1,12,2011,Everest,"Like Father, Like Son",tt0118949 ilfv_YzaP0U,2002.0,8,12,2011,The Quiet American,That's Not Love,tt0258068 mWdqcBWVurw,2006.0,7,11,2011,The Night Listener,Phony Address,tt0448075 tdBNwAJMgW4,2006.0,8,11,2011,The Night Listener,Just Being Friendly,tt0448075 4cWDWIgBXrw,2006.0,9,11,2011,The Night Listener,Police Brutality,tt0448075 ZLFDR8pvkf4,2006.0,11,11,2011,The Night Listener,The Final Call,tt0448075 SM-1QC6F1-k,2006.0,10,11,2011,The Night Listener,The Truck,tt0448075 4uVgjb0gO9E,2002.0,6,12,2011,The Quiet American,I'm In Love With You,tt0258068 pW3peNmE19E,1998.0,3,12,2011,Everest,Crossing the Crevasse,tt0118949 5w8kGvQ2j5Y,2002.0,7,12,2011,The Quiet American,The Beginning of Death,tt0258068 lcns0VMck7s,1998.0,2,12,2011,Everest,Base Camp,tt0118949 iVpm6-9dPYs,1998.0,5,12,2011,Everest,Trapped in a Storm,tt0118949 29KrhW9Ft4E,1998.0,4,12,2011,Everest,Middle Camp,tt0118949 e50yvXvkaeg,2002.0,9,12,2011,The Quiet American,Behaving Badly,tt0258068 qEMbpl4V-eA,1998.0,9,12,2011,Everest,The Death Zone,tt0118949 KS_Doe-4fkM,1998.0,7,12,2011,Everest,Going for It,tt0118949 Urf145tA2SM,1998.0,6,12,2011,Everest,You Have to Help Yourself,tt0118949 E54uRkIuRDE,1994.0,1,12,2011,Il postino,Neruda's Autograph,tt0110877 qmGHg5uJ7xU,1998.0,11,12,2011,Everest,The Summit,tt0118949 043UFkOXvMo,1994.0,12,12,2011,Il postino,Mario's Song for Pablo,tt0110877 OrjUfQFz_os,1998.0,8,12,2011,Everest,High Camp,tt0118949 59R3QIB6NqU,1998.0,10,12,2011,Everest,The Last Stretch,tt0118949 gBjOW9luDWw,2002.0,10,12,2011,The Quiet American,A Bombing in Saigon,tt0258068 0qeD9nc9nwo,1995.0,2,10,2011,Unzipped,Nanook,tt0114805 _OipkhcxS10,1994.0,2,12,2011,Il postino,Metaphors,tt0110877 7_OiqaOaeNc,2006.0,2,10,2011,Hollywoodland,Superman Audition,tt0427969 oLVqE13mMps,1994.0,3,12,2011,Il postino,You've Invented a Metaphor,tt0110877 QF08ozhDX-0,2002.0,11,12,2011,The Quiet American,One Has to Take Sides,tt0258068 gljJhOFXrUU,2002.0,12,12,2011,The Quiet American,A Quiet Death,tt0258068 Sh8lx4EXs4c,1994.0,5,12,2011,Il postino,Five Words to Her,tt0110877 amrMaNtgMl0,1994.0,6,12,2011,Il postino,Touched By Words,tt0110877 Smp3RNfgjqo,1994.0,4,12,2011,Il postino,Beatrice Russo,tt0110877 qBCb0lSh5u0,1994.0,10,12,2011,Il postino,The Best Man,tt0110877 ulLABtzLz-I,1994.0,11,12,2011,Il postino,Why Would He Remember Me?,tt0110877 irjKC9_1l3o,1994.0,7,12,2011,Il postino,Naked Poetry,tt0110877 frqWSqg35iM,1994.0,8,12,2011,Il postino,It's Your Fault I'm In Love,tt0110877 cX0S8SN8Cmk,2001.0,2,12,2011,The Hole,Listening,tt0242527 W0_4w6GsngI,2001.0,1,12,2011,The Hole,Welcome to the Hole,tt0242527 Kocw_F48CGw,2000.0,8,12,2011,The Yards,It Wasn't Me,tt0190138 IYB9NFCd5s4,1994.0,9,12,2011,Il postino,Beatrice Loves Mario,tt0110877 rChS9MeLW-w,2006.0,7,10,2011,Hollywoodland,Costume Shop Murder,tt0427969 FfIAWygymsc,2006.0,4,10,2011,Hollywoodland,Under the Rug,tt0427969 IimC6oXVZpI,2001.0,3,12,2011,The Hole,Blaming Liz,tt0242527 gYhC67R4g64,2001.0,4,12,2011,The Hole,A Bitch or a Complete Slut,tt0242527 MdTaJDKTgUc,2005.0,10,10,2011,Proof,Robert's Supposed Breakthrough,tt0377107 shogibE67W8,1995.0,9,10,2011,Unzipped,Nanooked,tt0114805 cg-wxqxxWs4,2006.0,3,10,2011,Hollywoodland,Putting on the Suit,tt0427969 Wzt_d8eA_m8,1995.0,5,10,2011,Unzipped,50's Cheesecake Meets Eskimo,tt0114805 AqTaIbDTNnE,1998.0,5,12,2011,Little Voice,I'll Do It,tt0147004 psDnYKqgVT8,1995.0,10,10,2011,Unzipped,The Runway,tt0114805 UQzUOKKGfLs,1995.0,6,10,2011,Unzipped,Irving the Joke Writer,tt0114805 BOaImgyr7mU,1995.0,7,10,2011,Unzipped,Home Movies,tt0114805 HRbf5iuWZt8,1995.0,8,10,2011,Unzipped,Setting the Stage,tt0114805 wYwlDchIasw,1995.0,4,10,2011,Unzipped,Yarn't,tt0114805 n16wxs5pgvk,1995.0,3,10,2011,Unzipped,Gowns for Eartha Kitt,tt0114805 c_7V6VgIvTY,2000.0,6,12,2011,Reindeer Games,Dart Game,tt0184858 AVMAbj_Pbnk,2005.0,8,12,2011,An Unfinished Life,A Good Mother,tt0350261 gJOWAISZDhs,1995.0,1,10,2011,Unzipped,Here's My Process,tt0114805 oxA2tQ6kfdE,1999.0,10,12,2011,Holy Smoke,Punch Out,tt0144715 -AXjzZskE9U,2005.0,2,12,2011,An Unfinished Life,Redneck Breakfast,tt0350261 d7RrYVI3Xw0,2001.0,12,12,2011,Kate & Leopold,Kate in the 19th Century,tt0035423 Aw1mnorjq-o,2001.0,1,12,2011,Kate & Leopold,I've Been Warned About You,tt0035423 zWY-GWMn4Ig,2006.0,5,10,2011,Hollywoodland,Superman Doesn't Smoke,tt0427969 5EFH9AmTg6c,2001.0,10,12,2011,Kate & Leopold,Peddling Pond Scum,tt0035423 FmGg8C6mI78,2005.0,4,12,2011,An Unfinished Life,A Gay Couple,tt0350261 Hh-QeqsDXKI,2005.0,3,12,2011,An Unfinished Life,Moths for Lunch,tt0350261 mfg2O0A6L4g,2000.0,4,12,2011,The Yards,Worried About Wires,tt0190138 nRq905BT8HM,2002.0,3,12,2011,The Four Feathers,Put Your Gun Down,tt0240510 M-HCaHXzQRY,2002.0,4,12,2011,The Four Feathers,A Different Kind of Fear,tt0240510 Qt5TuFHZh5E,1998.0,5,11,2011,Senseless,Eavesdropping,tt0120820 FwfrVozwn7A,1991.0,1,12,2011,A Rage in Harlem,Shootout in Natchez,tt0102749 dl1X9j-9Lbg,1998.0,8,11,2011,Senseless,Hazed But Unfazed,tt0120820 cliSp3FNprY,1991.0,2,12,2011,A Rage in Harlem,I Put a Spell on You,tt0102749 V9Ul46Dj3Hg,1993.0,11,12,2011,Little Buddha,The Middle Way of Enlightenment,tt0107426 PqGuiXKC320,1991.0,12,12,2011,A Rage in Harlem,My Feet are Killing Me,tt0102749 gZSxqyNDZvw,2005.0,5,12,2011,An Unfinished Life,A First-Rate Father,tt0350261 Kp6aaQEK5y0,2005.0,6,12,2011,An Unfinished Life,A Grieving Confession,tt0350261 rV4DxcJOCLs,1998.0,3,12,2011,Little Voice,Ray Hears LV Sing,tt0147004 hw8D5KSx5p4,2005.0,11,12,2011,An Unfinished Life,A Beating for a Beater,tt0350261 qIleHfrMWWE,2003.0,3,9,2011,The Battle of Shaker Heights,The Bowland Family,tt0357470 CjyutBNjVns,2001.0,10,12,2011,The Hole,And Then There Were Three,tt0242527 wSKGygJ2-oQ,2005.0,7,12,2011,An Unfinished Life,A Caged Animal,tt0350261 Y77zaw13B_8,2005.0,9,12,2011,An Unfinished Life,Freeing the Bear,tt0350261 L6FYDW1TC4g,2005.0,12,12,2011,An Unfinished Life,A Reason for Everything,tt0350261 IqOqMdra3rk,2005.0,10,12,2011,An Unfinished Life,Face to Face,tt0350261 _pEz5emBI4A,2001.0,9,12,2011,The Hole,So You're F***ing Her Now,tt0242527 fy-PoYl4bQI,2003.0,4,9,2011,The Battle of Shaker Heights,Art Store Run In,tt0357470 GbW8sknTWZ8,2003.0,2,9,2011,The Battle of Shaker Heights,Undermining Education,tt0357470 nnJW5FWg9oc,2001.0,5,12,2011,The Hole,"Touching, Feeling",tt0242527 IvKzfpZ1GUw,2003.0,5,9,2011,The Battle of Shaker Heights,Interesting Dinner Conversation,tt0357470 gnY0vVF0j60,2003.0,9,9,2011,The Battle of Shaker Heights,Cue the Jeep!,tt0357470 kUAXs0LhD6I,2003.0,6,9,2011,The Battle of Shaker Heights,Awkward Adolescence of the Insect World,tt0357470 7BnAQgS15HY,2003.0,7,9,2011,The Battle of Shaker Heights,The Prank,tt0357470 1QDmLu5a0nI,2003.0,8,9,2011,The Battle of Shaker Heights,You Like me Don't You?,tt0357470 w6v2DUJi-C0,2001.0,8,12,2011,The Hole,Thirst,tt0242527 fi6U1d5eW4g,2001.0,6,12,2011,The Hole,Trapped in the Hole,tt0242527 f7utYx1vcM0,2001.0,12,12,2011,The Hole,All for You,tt0242527 AHyK8eTGHNs,2001.0,7,12,2011,The Hole,You Bitch!,tt0242527 kaQPejxLNRw,2000.0,1,12,2011,Down to You,I'm Imogen,tt0186975 I_mYmJVMef0,2001.0,5,12,2011,Kate & Leopold,Charlie Tries Being Romantic,tt0035423 bSE3gq6Sf6Y,2001.0,6,12,2011,Kate & Leopold,Rooftop Date,tt0035423 sRqeX6qMlak,2001.0,11,12,2011,The Hole,This One Was Murdered,tt0242527 U9nydZd_emI,2001.0,2,12,2011,Kate & Leopold,Leopold to the Rescue,tt0035423 dCxgKZ5QV5E,2000.0,3,12,2011,Down to You,First Real Kiss,tt0186975 G-FYkB9M72k,2001.0,7,12,2011,Kate & Leopold,Leap,tt0035423 DLVfYn9pvwo,2001.0,8,12,2011,Kate & Leopold,Who Are You?,tt0035423 Fwi0bsJ5F8I,2001.0,9,12,2011,Kate & Leopold,Leopold's Butter Commercial,tt0035423 2MtY0yfM0nI,2006.0,8,10,2011,Hollywoodland,Prove It,tt0427969 tBw_BTLbjJI,2001.0,4,12,2011,Kate & Leopold,"A Serpent, Braggart, and a Cad",tt0035423 liK550asDSw,2000.0,2,12,2011,Down to You,Sexy Cyrus,tt0186975 hohZbtTAtRA,2000.0,5,12,2011,Down to You,You Make Me Feel Alive,tt0186975 VrFey4EPA8Y,2000.0,4,12,2011,Down to You,Let's Stay Together,tt0186975 wF6xVdnFJho,2002.0,1,12,2011,The Four Feathers,I Wish to Resigning my Commission,tt0240510 1z2AjhGr9XI,2006.0,10,10,2011,Hollywoodland,Lou's Home Movies,tt0427969 MEdmiHCUvYA,2000.0,1,12,2011,The Yards,Welcome Home Leo,tt0190138 BRWeoTfbbbg,2006.0,1,10,2011,Hollywoodland,We Don't Give Out That Information,tt0427969 if5npkJHfik,2006.0,9,10,2011,Hollywoodland,George's Film Reel,tt0427969 uCCrethRf3E,2000.0,3,12,2011,The Yards,Club Rio,tt0190138 2sFAyhjR8_o,2002.0,8,12,2011,The Four Feathers,I Can't See,tt0240510 LrTMwBugt-Y,2000.0,7,12,2011,Down to You,The Man Show,tt0186975 938jCranAMo,2002.0,2,12,2011,The Four Feathers,Feathers of Cowardice,tt0240510 Z58VID4Qjf0,2002.0,6,12,2011,The Four Feathers,Surrounded,tt0240510 NvxttHABP1o,2002.0,5,12,2011,The Four Feathers,They Are Not Armed,tt0240510 skuMakhGnn4,2002.0,7,12,2011,The Four Feathers,Skirmishers,tt0240510 ptiXfr5lJl8,2002.0,9,12,2011,The Four Feathers,"Pray For Me, Abou",tt0240510 Ur4Pg0Jyph0,2000.0,9,12,2011,Down to You,Central Park Love,tt0186975 DFEuw-bNldk,1998.0,10,11,2011,Senseless,I Know My S***,tt0120820 9ZvkGoQ1dSU,2002.0,10,12,2011,The Four Feathers,Desert Escape,tt0240510 U6PfGIrWIak,2000.0,8,12,2011,Down to You,Partying with Jim Morrison,tt0186975 FlyWwjIuCeE,2002.0,11,12,2011,The Four Feathers,Returning to Ethne,tt0240510 0PraJ0mNgUs,2002.0,12,12,2011,The Four Feathers,"Good Soldiers, Better Friends",tt0240510 3XPzF1azIkI,2000.0,10,12,2011,Down to You,You're My Vice,tt0186975 9aHj6prYd54,2000.0,11,12,2011,Down to You,,tt0186975 btWDXgrF-bo,2000.0,6,12,2011,Down to You,Honeymoon Days,tt0186975 PtgGWFzIQq0,2000.0,5,12,2011,The Yards,Murder at the Yards,tt0190138 z8Z8Qx6-rPY,1998.0,2,11,2011,Senseless,Kappa Material,tt0120820 bolHm17q3ik,2000.0,6,12,2011,The Yards,Hospital Hit,tt0190138 bHjHDiu2UR8,2000.0,12,12,2011,Down to You,Can't Get Enough of Your Love,tt0186975 EF6ss3d4GyI,1998.0,3,11,2011,Senseless,Hyperreal Senses,tt0120820 17oDZd93a-U,1998.0,1,11,2011,Senseless,Use as Directed,tt0120820 UTAZimUwzCM,1998.0,9,11,2011,Senseless,Side Effects,tt0120820 jHessqORWLw,1998.0,6,11,2011,Senseless,Haitian Sasquatch,tt0120820 U937JR-ir5I,1998.0,4,11,2011,Senseless,Master of His Domain,tt0120820 41IWZRnmb68,2000.0,7,12,2011,The Yards,Was It Leo?,tt0190138 hLrM7OaMTGg,1998.0,7,11,2011,Senseless,Limp Biscuit,tt0120820 M7iC24MaxxI,1998.0,11,11,2011,Senseless,To a Deluxe Apartment,tt0120820 bqPbkGVa_wc,2000.0,9,12,2011,The Yards,A Fight Between Friends,tt0190138 0g39c4d1fKQ,1991.0,3,12,2011,A Rage in Harlem,A Foot Massage,tt0102749 ifS04il68Yw,1991.0,4,12,2011,A Rage in Harlem,You a Virgin?,tt0102749 C68UZJevw2Q,1991.0,5,12,2011,A Rage in Harlem,Sex with Imabelle,tt0102749 xs0lwxmTaZY,1991.0,6,12,2011,A Rage in Harlem,Rye Goddamn Whiskey,tt0102749 tbjTxvs1nPo,1991.0,7,12,2011,A Rage in Harlem,Leaps of Faith,tt0102749 DOl-8LrZapk,1991.0,9,12,2011,A Rage in Harlem,Pop Goes the Weasel,tt0102749 OKjpAsVT-8g,1991.0,10,12,2011,A Rage in Harlem,Don't Shoot my Pappy,tt0102749 TJIWOgCUdGE,1991.0,8,12,2011,A Rage in Harlem,A 50/50 Split,tt0102749 UvNE2bjUfC4,1991.0,11,12,2011,A Rage in Harlem,A Final Dance to Death,tt0102749 4xpGjslC5Vs,2000.0,11,12,2011,The Yards,Leave Me Alone!,tt0190138 R80X3_lPzoo,2000.0,12,12,2011,The Yards,Under Arrest,tt0190138 9IMNpGeSLT0,2000.0,10,12,2011,The Yards,A Warning for Willie,tt0190138 9QbJu_68yS4,1993.0,3,12,2011,Little Buddha,You Will be My Guide,tt0107426 Cb1Pbk3gQSM,2000.0,2,12,2011,The Yards,Job Interview,tt0190138 EWBVJF9sSPI,1993.0,1,12,2011,Little Buddha,Fateful Premonition,tt0107426 0zyVlsLgJ8U,1993.0,4,12,2011,Little Buddha,The Birth of Siddhartha,tt0107426 4nrgeASou5Q,2003.0,4,12,2011,The Barbarian Invasions,Riding the Dragon,tt0338135 yxnFEjVMK2U,1993.0,6,12,2011,Little Buddha,Gates to the Kingdom,tt0107426 YmMAmPFhSqw,1993.0,2,12,2011,Little Buddha,Spiritual Guides,tt0107426 2QT4mFNVyzc,1993.0,5,12,2011,Little Buddha,Beauty Beyond the Walls,tt0107426 xJzCM_nI2mM,1993.0,7,12,2011,Little Buddha,Show Me Death,tt0107426 GV9TBb-8Kec,1993.0,9,12,2011,Little Buddha,The Serpent,tt0107426 iGgiGgeCwM8,1993.0,8,12,2011,Little Buddha,The Concerned Father,tt0107426 zyRjUeY6YOc,1993.0,12,12,2011,Little Buddha,The Third Candidate,tt0107426 BS_wIUrlOPk,1993.0,10,12,2011,Little Buddha,The Decision,tt0107426 B_UjiJy0t4c,2005.0,2,12,2011,Kinky Boots,Pass Me My Boobs,tt0434124 hX5s15LBHqo,1998.0,2,12,2011,Little Voice,She Spoils Everything,tt0147004 g92cHdRbgag,2005.0,1,12,2011,Kinky Boots,Let's Make Shoes!,tt0434124 Z519Bs2Kidc,1998.0,1,12,2011,Little Voice,Ray Freakin' Say,tt0147004 uJNHr8QQVJQ,2005.0,7,12,2011,Kinky Boots,Red Is the Color of Sex,tt0434124 Rxn-KDDZ8RI,2005.0,3,12,2011,Kinky Boots,Whatever Lola Wants,tt0434124 QX7j8pCeD7Y,1998.0,4,12,2011,Little Voice,You Are My Discovery,tt0147004 h4SMndWj5To,1998.0,6,12,2011,Little Voice,LV Takes the Stage,tt0147004 FYDwyb7CJxY,1998.0,7,12,2011,Little Voice,LV Covers Her Idols,tt0147004 vT6xS0mRapg,1998.0,8,12,2011,Little Voice,Don't Push Her Too Hard,tt0147004 khz9zIg_2sc,2005.0,6,12,2011,Kinky Boots,Lola Out of London,tt0434124 su2njbUCQhg,2005.0,8,12,2011,Kinky Boots,Arm Wrestling,tt0434124 4BRkb7LhkUU,2005.0,4,12,2011,Kinky Boots,I Feel Like Oprah,tt0434124 omiio7SJIOE,2005.0,5,12,2011,Kinky Boots,Testing the Boots,tt0434124 NBh_b2SBDHs,2005.0,10,12,2011,Kinky Boots,Does He Look Sexy?,tt0434124 vQyK7Re2-Jc,2005.0,9,12,2011,Kinky Boots,It's a Man's Man's Man's World,tt0434124 VbfjIg31aE0,2004.0,10,10,2011,The Chorus,Take Me With You,tt0372824 Mwk75Fek3qs,2005.0,11,12,2011,Kinky Boots,These Boots Are Made for Walkin',tt0434124 P4-obzmm_T0,2005.0,12,12,2011,Kinky Boots,Yes Sir I Can Boogie,tt0434124 t4qrfjEgdt4,1998.0,12,12,2011,Little Voice,"Can You Hear Me Now, Mother?",tt0147004 uLYYXvBlUgQ,1998.0,9,12,2011,Little Voice,Getting in the Way,tt0147004 spu_6dxLcok,2003.0,8,12,2011,The Barbarian Invasions,Cretinism,tt0338135 KdNQBaLVGfI,1998.0,10,12,2011,Little Voice,LV Cracks Up,tt0147004 oBtG0gj6MxA,1998.0,11,12,2011,Little Voice,It's Over,tt0147004 LwdlYGPcikE,1998.0,12,12,2011,Everest,On Top of the World,tt0118949 gJyibprvYQk,2001.0,11,12,2011,Kate & Leopold,Kate Crosses the Bridge,tt0035423 c71vLQPwjdU,2003.0,7,12,2011,The Barbarian Invasions,Withdrawals,tt0338135 NBTLvFg_ve8,2003.0,1,12,2011,The Barbarian Invasions,Go to Hell,tt0338135 wPvJ5OJ_P18,2003.0,2,12,2011,The Barbarian Invasions,Barbarians at the Gate,tt0338135 10Q3mew9R6A,2003.0,5,12,2011,The Barbarian Invasions,The World's Most Gorgeous Women,tt0338135 iXyfNoBlpjA,2003.0,3,12,2011,The Barbarian Invasions,A History of Horrors,tt0338135 -KvWckPXGIQ,2003.0,6,12,2011,The Barbarian Invasions,Living in the Past,tt0338135 XI9RzX6Xvyw,2003.0,12,12,2011,The Barbarian Invasions,Final Farewell,tt0338135 IHPjxbcPnAc,2003.0,9,12,2011,The Barbarian Invasions,The Kiss of Death,tt0338135 ty5exYQi3wg,2003.0,11,12,2011,The Barbarian Invasions,I Take Your Smiles With Me,tt0338135 4zULAL9VioE,2003.0,10,12,2011,The Barbarian Invasions,Father and Son,tt0338135 Pu54Ka5I6lc,2004.0,9,10,2011,The Chorus,"Goodbye, Chrome Dome",tt0372824 EXS5TiBYESk,2004.0,6,10,2011,The Chorus,Those Children Inspire Me,tt0372824 CTlALiQtH5o,2004.0,2,10,2011,The Chorus,"Baldy, You Are Through",tt0372824 95XSvfimW_E,2004.0,5,10,2011,The Chorus,Working Mother,tt0372824 MfmOj8Rqcog,2002.0,10,10,2011,Spy Kids 2: Island of Lost Dreams,Kick His Butt! Scene,tt0287717 5l1VEIQj0vA,2004.0,3,10,2011,The Chorus,How Did Marshal Ney Die?,tt0372824 cCn4FUNWvQ4,2004.0,8,10,2011,The Chorus,Rachin Fires Mathieu,tt0372824 d9N--iGGW3E,2004.0,1,10,2011,The Chorus,No Smoking,tt0372824 8IXVGrc3uOA,2004.0,4,10,2011,The Chorus,Auditions,tt0372824 a_4TTRfXkgk,2002.0,1,10,2011,Spy Kids 2: Island of Lost Dreams,The Juggler Scene,tt0287717 ZNzVgqv5MtQ,2002.0,8,10,2011,Spy Kids 2: Island of Lost Dreams,Skeleton Battle Scene,tt0287717 Z09MpDVYWSw,2002.0,2,10,2011,Spy Kids 2: Island of Lost Dreams,I Only Dance Ballet Scene,tt0287717 Ya2mPO0f-uk,2004.0,7,10,2011,The Chorus,Singing for the Countess,tt0372824 Onqbwlqk4G0,2002.0,3,10,2011,Spy Kids 2: Island of Lost Dreams,Spy Kids vs. Magna Men Scene,tt0287717 3chYfqAbqow,2002.0,5,10,2011,Spy Kids 2: Island of Lost Dreams,"Who, What, When, Where, and Why Scene",tt0287717 AcNkJ4_bQ1g,2002.0,7,10,2011,Spy Kids 2: Island of Lost Dreams,Romero's Miniature Zoo Scene,tt0287717 0yc0knpkAxw,2002.0,9,10,2011,Spy Kids 2: Island of Lost Dreams,Your Creature's Lame! Scene,tt0287717 WZkuKkPQjbQ,2002.0,6,10,2011,Spy Kids 2: Island of Lost Dreams,How Long Have We Been Falling? Scene,tt0287717 AzGePmv0GD8,2002.0,4,10,2011,Spy Kids 2: Island of Lost Dreams,Machete's Gadgets Scene,tt0287717 qp27BT2g0BE,1996.0,11,12,2011,Trainspotting,Drug Deal,tt0117951 mdwLxOK7xLc,2002.0,11,12,2011,Gangs of New York,The Draft Riots,tt0217505 XNG8wW6Ffw4,2009.0,1,11,2011,Extract,Sam Ash Music Store,tt1225822 OIyluGsy-zA,2009.0,3,11,2011,Extract,One Nut Freak Accident,tt1225822 gkEsrZpCdOo,2010.0,8,11,2011,The Switch,Lice,tt0889573 9nrVYO6LU6I,2003.0,10,12,2011,Cold Mountain,"I Marry You, I Marry You, I Marry You",tt0159365 aEpa21af2j4,2003.0,11,12,2011,Cold Mountain,The Confidence of Youth,tt0159365 TY513V0RMgw,2003.0,12,12,2011,Cold Mountain,What We Have Lost,tt0159365 AHHH770W4Wk,2001.0,1,10,2011,Spy Kids,Marriage is a Mission,tt0227538 i-VeLFEMeko,2001.0,3,10,2011,Spy Kids,Becoming Spies,tt0227538 v2KtG9kFZOI,2001.0,4,10,2011,Spy Kids,Jetpack Pursuit,tt0227538 jx6Rgn1ioAk,2002.0,12,12,2011,Chicago,Hot Honey Rag,tt0299658 93Z1sPjzz8w,2001.0,10,10,2011,Spy Kids,Family is a Mission Worth Fighting For,tt0227538 5lqvuMwYODI,2001.0,7,10,2011,Spy Kids,Taking Machete's Spy Plane,tt0227538 vhQ4S5ajwDQ,2002.0,2,12,2011,Chicago,Funny Honey,tt0299658 OxzfUI1wSwU,2002.0,6,12,2011,Chicago,We Both Reached For the Gun,tt0299658 TfxoCicKvCc,2002.0,5,12,2011,Chicago,All I Care About,tt0299658 q7heVIEyvQ4,1996.0,4,12,2011,From Dusk Till Dawn,Sex Machine,tt0116367 aAWIZFqE6L4,2002.0,4,12,2011,Gangs of New York,The Five Points,tt0217505 lMrKsKQWrl8,1996.0,7,12,2011,Swingers,Mike Leaves a Message,tt0117802 cyiC3x6-Kzk,1996.0,3,12,2011,Trainspotting,The Worst Toilet in Scotland,tt0117951 N7iMP1tPg7I,1996.0,8,12,2011,Trainspotting,Spud Ruins Breakfast,tt0117951 feeIOZH7wr4,1996.0,6,12,2011,Swingers,You're Like a Big Bear,tt0117802 ifkYHEoe6_k,1997.0,7,12,2011,Good Will Hunting,Skyler's Joke,tt0119217 8WsHwXs_aq4,1997.0,6,12,2011,Good Will Hunting,Game Six,tt0119217 xvvx-0G7XHc,1997.0,5,12,2011,Good Will Hunting,Imperfections,tt0119217 ouppQFx3v-I,1997.0,4,12,2011,Good Will Hunting,Presumptions of a Scared Kid,tt0119217 HSfxl1KI6y8,1997.0,3,12,2011,Good Will Hunting,The Painting,tt0119217 e1DnltskkWk,1997.0,1,12,2011,Good Will Hunting,My Boy's Wicked Smart,tt0119217 gcZPWkNY6x8,1997.0,2,12,2011,Good Will Hunting,How You Like Them Apples?,tt0119217 yzb726TP-OM,1997.0,12,12,2011,Good Will Hunting,It's Not Your Fault,tt0119217 3i8eIzSeC8w,1997.0,11,12,2011,Good Will Hunting,The Best Part of My Day,tt0119217 trxN4ftuxKQ,1997.0,9,12,2011,Good Will Hunting,Say You Don't Love Me,tt0119217 VcKVgWYkZa4,1997.0,10,12,2011,Good Will Hunting,The NSA,tt0119217 C4MVQby0InQ,1994.0,5,12,2011,Clerks,Death Star Contractors,tt0109445 DDYj5ChFwbU,1994.0,10,12,2011,Clerks,Necrophiliac,tt0109445 tp7ss_bTP4Y,1994.0,9,12,2011,Clerks,Hockey on the Roof,tt0109445 3a3zXJ7biqI,1994.0,7,12,2011,Clerks,Guidance Counselors,tt0109445 D9khHJTztKk,1994.0,8,12,2011,Clerks,F***ing Customers,tt0109445 up7I_0JGTgQ,1996.0,9,12,2011,Swingers,Go Daddy-O,tt0117802 WTw51Ynkn7A,1994.0,1,12,2011,Clerks,Jay & Silent Bob,tt0109445 Ng7jUTiM21A,2004.0,11,12,2011,Shall We Dance,Dance With Me,tt0358135 jXb09CCPFO4,2004.0,7,12,2011,Shall We Dance,Rhumba the Dance of Love,tt0358135 NUXt-stAcRw,2004.0,9,12,2011,Shall We Dance,The Cha-Cha Competition,tt0358135 FaSlQP79M-M,2004.0,10,12,2011,Shall We Dance,The Waltz,tt0358135 AKMLjQycW0U,2004.0,8,12,2011,Shall We Dance,Be This Alive,tt0358135 IIr2CCwrYbU,2004.0,12,12,2011,Shall We Dance,", Mr. Clark",tt0358135 mZwKEa09xTc,2004.0,5,12,2011,Shall We Dance,Link Dances?,tt0358135 DcaV2VQgea0,2004.0,4,12,2011,Shall We Dance,Diner After Dancing,tt0358135 PWN2ntVDwoU,2004.0,3,12,2011,Shall We Dance,A Ballroom Dance Demonstration,tt0358135 u9A2CYMFfNo,2004.0,2,12,2011,Shall We Dance,Miss Mitzi's Ballroom Dance School,tt0358135 d7V9liYn-IA,2004.0,6,12,2011,Shall We Dance,Learning the Waltz,tt0358135 KcHfK9kvnvs,2004.0,1,12,2011,Shall We Dance,Dancer in the Window,tt0358135 vtjCVRm2DAM,1996.0,7,12,2011,From Dusk Till Dawn,Welcome to Slavery,tt0116367 QTKNzDn8PzA,1996.0,10,12,2011,From Dusk Till Dawn,Mean Servant of God,tt0116367 0x6LPfRGAL8,1996.0,6,12,2011,From Dusk Till Dawn,F***ing Vampires!,tt0116367 S8kPqAV_74M,1994.0,9,12,2011,Pulp Fiction,Bring Out the Gimp,tt0110912 LBBni_-tMNs,1994.0,11,12,2011,Pulp Fiction,I Shot Marvin in the Face,tt0110912 tVRPz6-Tkww,1994.0,10,12,2011,Pulp Fiction,Marsellus Gets Medieval,tt0110912 xHO6nBc4YFU,1994.0,8,12,2011,Pulp Fiction,Butch Meets Vincent,tt0110912 YFtHjV4c4uw,1994.0,7,12,2011,Pulp Fiction,The Gold Watch,tt0110912 ZOoJoTAXDPk,1994.0,6,12,2011,Pulp Fiction,A Shot of Adrenaline,tt0110912 x2WK_eWihdU,1994.0,3,12,2011,Pulp Fiction,Ezekiel 25:17,tt0110912 PvMxbRCBalk,1994.0,1,12,2011,Pulp Fiction,Pumpkin and Honey Bunny,tt0110912 rp4nf7xR9Uk,2005.0,12,12,2011,Sin City,An Old Man Dies,tt0401792 BahUC3EFWXA,2005.0,11,12,2011,Sin City,"So Long, Junior",tt0401792 jYID_csTvos,1994.0,5,12,2011,Pulp Fiction,Dancing at Jack Rabbit Slim's,tt0110912 ppWi_bhS2eQ,2005.0,10,12,2011,Sin City,That Yellow Bastard,tt0401792 KrDck8ocFu0,2005.0,9,12,2011,Sin City,Nancy Dances,tt0401792 mdcXOlUMfq0,2005.0,7,12,2011,Sin City,A Ride with Jackie Boy,tt0401792 6mBFhNSqBk8,2005.0,8,12,2011,Sin City,The Big Fat Kill,tt0401792 RwyLbX4uOS0,2005.0,6,12,2011,Sin City,Miho vs. Jackie Boy,tt0401792 9BOOv6NNnP0,2005.0,5,12,2011,Sin City,Shellie's New Boyfriend,tt0401792 6G6Z60EPieA,2005.0,3,12,2011,Sin City,He Never Screams,tt0401792 cwJFMjOz_l0,2005.0,4,12,2011,Sin City,You Can Scream Now,tt0401792 jKXg2eMaNXU,2004.0,11,12,2011,Kill Bill: Vol. 2,I Overreacted Scene,tt0378194 NL7nLSSSWjw,2004.0,12,12,2011,Kill Bill: Vol. 2,The Five Point Palm Exploding Heart Technique Scene,tt0378194 I_cEoK1mXms,2004.0,10,12,2011,Kill Bill: Vol. 2,Superman and Clark Kent Scene,tt0378194 9-qk52E7zj8,2004.0,9,12,2011,Kill Bill: Vol. 2,"Freeze, Mommy Scene",tt0378194 fCbf4DjlHuM,2004.0,2,12,2011,Kill Bill: Vol. 2,Master Pai Mei Scene,tt0378194 TrZuYfti-pE,2004.0,7,12,2011,Kill Bill: Vol. 2,The Trailer Fight Scene,tt0378194 fWqnZTTRkm4,2003.0,9,12,2011,Kill Bill: Vol. 1,The Crazy 88s,tt0266697 JnXi3SVJXbM,2004.0,5,12,2011,Kill Bill: Vol. 2,Out of the Grave Scene,tt0378194 uGsWYV2bWAc,2003.0,8,12,2011,Kill Bill: Vol. 1,The Bride vs. Gogo,tt0266697 rIr6rEndy0A,2003.0,5,12,2011,Kill Bill: Vol. 1,Hattori Hanzo,tt0266697 OLvz5E61UNs,2003.0,6,12,2011,Kill Bill: Vol. 1,Tanaka Loses His Head,tt0266697 KQM0klOXck8,2003.0,4,12,2011,Kill Bill: Vol. 1,O-Ren's Revenge,tt0266697 2sJx9qbjetg,2003.0,3,12,2011,Kill Bill: Vol. 1,My Name is Buck,tt0266697 _Mk_f75TS1A,2003.0,2,12,2011,Kill Bill: Vol. 1,Your Mother Had it Coming,tt0266697 kgRlzeYc1nk,2003.0,1,12,2011,Kill Bill: Vol. 1,Hello Vernita,tt0266697 V8K5d3pEUl8,1996.0,1,12,2011,From Dusk Till Dawn,Be Cool,tt0116367 kGViaTOfSow,2009.0,4,12,2011,Adventureland,Lisa P's Back!,tt1091722 TEmvPX06cJo,2009.0,9,12,2011,Adventureland,People Are Trying to Kill Me,tt1091722 zV0rK6KXfwU,2009.0,12,12,2011,Adventureland,Are We Doing This?,tt1091722 l4L9Yi-lXbo,2004.0,1,12,2011,Kill Bill: Vol. 2,That Woman Deserves Her Revenge Scene,tt0378194 MnMZeDmfgmU,2005.0,2,12,2011,Sin City,"Hit Him Again, Wendy",tt0401792 ETTsJggQl3I,2004.0,3,12,2011,Kill Bill: Vol. 2,Really Pathetic Kung Fu Scene,tt0378194 sNom4k5Pwb8,2005.0,1,12,2011,Sin City,I'll Be Right Out,tt0401792 RWwGXIjxbnI,2004.0,8,12,2011,Kill Bill: Vol. 2,Losing the Other Eye Scene,tt0378194 EajaioMj-NA,2003.0,11,12,2011,Kill Bill: Vol. 1,Showdown at the House of Blue Leaves,tt0266697 W6bT7Y-WfoY,2003.0,7,12,2011,Kill Bill: Vol. 1,The Bride Arrives,tt0266697 QsaG8rJGlyQ,2004.0,6,12,2011,Kill Bill: Vol. 2,Budd Meets the Black Mamba Scene,tt0378194 r1S-yBBZsDI,2009.0,8,12,2011,Adventureland,Tokin' on the Job,tt1091722 jYrKqg2TqUo,2003.0,12,12,2011,Kill Bill: Vol. 1,A Hattori Hanzo Sword,tt0266697 -nX_jQxWFN4,2009.0,2,12,2011,Adventureland,I Can Give You a Ride,tt1091722 KqAIrFLuymo,1996.0,12,12,2011,From Dusk Till Dawn,Battling the Beasts,tt0116367 GG4VDjXtt7Q,1996.0,11,12,2011,From Dusk Till Dawn,Nam Flashback,tt0116367 YbcfcgX2U3g,1996.0,9,12,2011,From Dusk Till Dawn,Dealing with Vampires,tt0116367 ADmX9eMEV9U,2002.0,2,12,2011,Gangs of New York,Crusty Bitches & Rag Tags,tt0217505 Ij79LQXZDEk,2002.0,3,12,2011,Gangs of New York,Battle of the Points,tt0217505 2_YvzQoCG68,2002.0,1,12,2011,Gangs of New York,The Dead Rabbits,tt0217505 ns-qtoxnAS8,2002.0,6,12,2011,Gangs of New York,Paddy's Lamentation,tt0217505 UdhxL9r9hkg,2002.0,7,12,2011,Gangs of New York,Honorable Men,tt0217505 jn8SVc374U0,2002.0,12,12,2011,Gangs of New York,True American,tt0217505 GQy5xztHVPQ,2002.0,8,12,2011,Gangs of New York,The Priest's Son,tt0217505 EEjI0A9iMow,2004.0,4,12,2011,Kill Bill: Vol. 2,The Cruel Tutelage of Pai Mei Scene,tt0378194 lDRzG3mH-DQ,2002.0,10,12,2011,Gangs of New York,Happy Jack,tt0217505 dmL4e3jljy4,2003.0,10,12,2011,Kill Bill: Vol. 1,Defeating Johnny Mo,tt0266697 -TPRG6Yqzf4,2002.0,5,12,2011,Gangs of New York,Fidlam Bens,tt0217505 39mBogAVAQc,2002.0,9,12,2011,Gangs of New York,Sorry Looking Pelt,tt0217505 MWkN3akP3cU,1994.0,4,12,2011,Pulp Fiction,Uncomfortable Silence,tt0110912 c9FCOAEPHHM,1996.0,3,12,2011,From Dusk Till Dawn,The Titty Twister,tt0116367 YW3MIixEps4,2002.0,10,12,2011,Chicago,Razzle Dazzle,tt0299658 wtMDZyMGKe0,2002.0,8,12,2011,Chicago,I Can't Do It Alone,tt0299658 TYmMagkfjfI,2002.0,4,12,2011,Chicago,Cell Block Tango,tt0299658 yy6j2LUyh24,2002.0,3,12,2011,Chicago,When You're Good to Mama,tt0299658 -xTty5scUwM,2009.0,5,12,2011,Adventureland,You're a Virgin?,tt1091722 JXEpQzze8Wo,2009.0,6,12,2011,Adventureland,Lisa P. Asks James Out,tt1091722 rMWZUV287WA,2009.0,3,12,2011,Adventureland,Boner!,tt1091722 1c8XLJ9MEhk,2002.0,11,12,2011,Chicago,Tapdancing Around the Witness,tt0299658 ZoAlJJb4aYM,2002.0,7,12,2011,Chicago,Roxie (the Name on Everyone's Lips),tt0299658 HVyg4MchBYM,2002.0,1,12,2011,Chicago,All That Jazz,tt0299658 OToWh3nrWn8,2002.0,9,12,2011,Chicago,Mister Cellophane,tt0299658 ZFofgS_iQ0Q,2010.0,3,11,2011,The Switch,Big Baster Insemination,tt0889573 pgET7AHDk6Q,2010.0,11,11,2011,The Switch,Happy Birthday Sebastian,tt0889573 obxWLczHe0c,2010.0,10,11,2011,The Switch,Will You Marry Me?,tt0889573 4cAxmhotNbI,2010.0,9,11,2011,The Switch,I'm the Seed Guy,tt0889573 dxqJ_k_uw5k,2010.0,6,11,2011,The Switch,Hypochondria,tt0889573 zMgKNI5A9ps,2010.0,7,11,2011,The Switch,I Switched It,tt0889573 5gkiHLA4ZuY,2010.0,5,11,2011,The Switch,Strange Stubborn Sebastian,tt0889573 nr8nHHg80CM,2010.0,4,11,2011,The Switch,Switching the Sperm Sample,tt0889573 CTwZmJronis,2007.0,2,10,2011,Gone Baby Gone,Do You Even Give a F***?,tt0452623 SDRcCeWRVRA,2010.0,1,11,2011,The Switch,Help Me Find Semen,tt0889573 _2iIyoxqN54,2007.0,9,10,2011,Gone Baby Gone,You Gotta Take a Side,tt0452623 MrboCh44XGI,2007.0,10,10,2011,Gone Baby Gone,Keep Your Mouth Shut,tt0452623 yEQtrdTpJFU,2007.0,7,10,2011,Gone Baby Gone,Something Went In!,tt0452623 -TWsZukTS4Q,2007.0,8,10,2011,Gone Baby Gone,A Gruesome Discovery,tt0452623 X-3TvjRKYPI,2007.0,6,10,2011,Gone Baby Gone,To Lose a Child,tt0452623 8V2XD5XS9Ys,2007.0,5,10,2011,Gone Baby Gone,Big Cheese,tt0452623 jJ4zpJxcw4o,2007.0,4,10,2011,Gone Baby Gone,Promise Me,tt0452623 ar5YGIFyEUY,2007.0,3,10,2011,Gone Baby Gone,Questioning Helene,tt0452623 Zx2SsdhKqbk,2003.0,4,12,2011,Cold Mountain,Ruby's Rules,tt0159365 uAgvdtpmXBk,2007.0,1,10,2011,Gone Baby Gone,Tension at the Fillmore,tt0452623 wowXQ9ZrN1w,2001.0,8,10,2011,Spy Kids,Thumb Thumbs and Fooglies,tt0227538 jQKx2XTcd_I,2001.0,6,10,2011,Spy Kids,Robot Doppelgangers,tt0227538 6rl0rXHWtbQ,2001.0,9,10,2011,Spy Kids,"You're Strong, Juni!",tt0227538 TBKiHfVkYCY,2001.0,5,10,2011,Spy Kids,Floop's Dream,tt0227538 qFL0bfzriR0,2001.0,2,10,2011,Spy Kids,Floop's Fooglies,tt0227538 hFJlpOjXf9s,2003.0,9,12,2011,Cold Mountain,Reunited.,tt0159365 xG7kLQh4Qn8,2003.0,8,12,2011,Cold Mountain,As Good As Dead,tt0159365 oeCRY2mdih8,2003.0,6,12,2011,Cold Mountain,A Good Saw,tt0159365 darXVyyQUlc,2003.0,7,12,2011,Cold Mountain,Lonely Widow,tt0159365 UmNPw-PeG8g,2003.0,5,12,2011,Cold Mountain,Ferry Crossing,tt0159365 jmpuAz59EbQ,2003.0,3,12,2011,Cold Mountain,Ruby Arrives,tt0159365 bHTWme5Ks9g,2003.0,2,12,2011,Cold Mountain,The Kiss,tt0159365 t7OQIn7Yuvc,2003.0,1,12,2011,Cold Mountain,The Siege of Petersburg,tt0159365 p8xEvj1w23g,2009.0,7,11,2011,Extract,Kinda Nasty,tt1225822 NXXS-UOKbao,2009.0,8,11,2011,Extract,Stupid-Ass Brad,tt1225822 y0jPHehx2EQ,2009.0,5,11,2011,Extract,Man Whore,tt1225822 d4WJ0CGGXo4,2009.0,11,11,2011,Extract,You Banged the Pool Cleaner,tt1225822 YVHzS7B1NbI,2009.0,10,11,2011,Extract,Big Gun Joe Adler,tt1225822 SAPvfHqWNFE,2009.0,6,11,2011,Extract,Bong Hits,tt1225822 w6CQUyyPvAw,2009.0,9,11,2011,Extract,Dumping the Pool Boy,tt1225822 m2dMEucbXIA,2009.0,2,11,2011,Extract,Nathan the Neighbor,tt1225822 Vwd5W0M3ZC4,2009.0,4,11,2011,Extract,She's a Tramp...Temp,tt1225822 TvTdzkWNq28,2009.0,10,12,2011,Adventureland,You Wanna End This?,tt1091722 BgDmIxfkPFE,2009.0,1,12,2011,Adventureland,You Are Hired,tt1091722 kYlPy24WJzU,2009.0,7,12,2011,Adventureland,A Date with Lisa P.,tt1091722 ZlGg7QIlGp8,2009.0,11,12,2011,Adventureland,I'm Sorry,tt1091722 uy3UaHILcig,2010.0,1,-1,2011,The Switch,The Friend Zone,tt0889573 L25W_b8Or5Y,2010.0,2,11,2011,The Switch,The Buzzkill,tt0889573 eD4l8wpbrRI,1994.0,11,12,2011,Clerks,Words of Wisdom,tt0109445 KIsAH4rSGNo,1996.0,8,12,2011,Swingers,We Made It,tt0117802 CaAtavKP0-4,1996.0,5,12,2011,Swingers,Playing Hockey,tt0117802 ZlEXOzC6vqE,1996.0,3,12,2011,Swingers,You're So Money,tt0117802 QCzH42efniU,1997.0,8,12,2011,Good Will Hunting,Direction & Manipulation,tt0119217 dxlbeqeGkQ8,1996.0,1,12,2011,Swingers,Double Down,tt0117802 7gFoHkkCaRE,1994.0,4,12,2011,Clerks,Berserker,tt0109445 1OQl89ewXvc,1994.0,3,12,2011,Clerks,37 Cocks,tt0109445 3gHqYddtmNU,1994.0,2,12,2011,Clerks,Cancer Merchant,tt0109445 2TTfvxYUBug,1994.0,12,12,2011,Clerks,We're So Advanced,tt0109445 3B4fl7vqi5g,1996.0,2,12,2011,Swingers,Trailer Failure,tt0117802 TscPOjzk0hI,1996.0,4,12,2011,Swingers,Goofy and Golfing,tt0117802 WqO6vJTUOkM,1996.0,12,12,2011,Swingers,A Great Vibe,tt0117802 7RD-I8AOf10,1996.0,10,12,2011,Swingers,Getting Digits,tt0117802 eAvVe92mi5k,1996.0,11,12,2011,Swingers,All Grownsed Up,tt0117802 0wvJETrNQG8,2007.0,1,11,2011,No Country for Old Men,Desert Chase at Dawn,tt0477348 3B_rRmkbA9I,2007.0,2,11,2011,No Country for Old Men,"Call It, Friend-O",tt0477348 lkmpm4TeOvE,2007.0,6,11,2011,No Country for Old Men,His Name's Chigurh,tt0477348 dRQtjVzj1bo,2007.0,7,11,2011,No Country for Old Men,The Nature of Anton Chigurh,tt0477348 GKt6dCi-LJo,2007.0,4,11,2011,No Country for Old Men,Street Shootout,tt0477348 C-iQldPiH64,2007.0,9,11,2011,No Country for Old Men,You Don't Have to Do This,tt0477348 d1U3MyX0pmE,2007.0,8,11,2011,No Country for Old Men,You Can't Stop What's Coming,tt0477348 GH4IhjtaAUQ,2007.0,11,11,2011,No Country for Old Men,The Ending: Dreams of My Father,tt0477348 6v6C3lZ9Ic0,1997.0,5,12,2011,Jackie Brown,The Delfonics Scene,tt0119396 Naf_WiEb9Qs,1996.0,1,12,2011,Trainspotting,Choose Life,tt0117951 VnAR2qB24yQ,1996.0,4,12,2011,Trainspotting,Sick Boy's Theory of Life,tt0117951 TzatMfqIf3A,1995.0,7,12,2011,Jackie Brown,Fitting Room Exchange Scene,tt0119396 ACkEugMxFvk,1996.0,7,12,2011,Trainspotting,Renton Falls in Love,tt0117951 b2B7w4Z3uOI,1996.0,2,12,2011,Trainspotting,The Sick Boy Method,tt0117951 BsxYfYCbVC0,1996.0,5,12,2011,Trainspotting,Spud's Job Interview,tt0117951 Ci82yWg-9Q0,1996.0,9,12,2011,Trainspotting,Colonized By Wankers,tt0117951 OaSuSnUJm3E,1996.0,10,12,2011,Trainspotting,Nightmare Baby,tt0117951 fBqbMZ23n5o,2007.0,3,11,2011,No Country for Old Men,Waiting in a Dark Hotel Room,tt0477348 EsRoSsauhss,1996.0,6,12,2011,Trainspotting,Begbie's Bar Brawl,tt0117951 Gr6eFXNq5Wc,1997.0,1,12,2011,Jackie Brown,Chicks Who Love Guns Scene,tt0119396 AwFtpeX3V-g,1996.0,12,12,2011,Trainspotting,Don't Mess With Begbie,tt0117951 M-FOqHC-G6Q,1997.0,2,12,2011,Jackie Brown,"I'm Home, I'm High Scene",tt0119396 3osli3y94I0,1997.0,3,12,2011,Jackie Brown,One Dirty Ass Trunk Scene,tt0119396 bXy8AgE7jBo,1997.0,8,12,2011,Jackie Brown,Melanie Provokes Louis Scene,tt0119396 N7W2F1GcD-A,1997.0,6,12,2011,Jackie Brown,Three Minutes Later Scene,tt0119396 dw7d707e-EI,1996.0,5,12,2011,From Dusk Till Dawn,Santanico Pandemonium,tt0116367 3e7wbs_xfas,1997.0,10,12,2011,Jackie Brown,Your Ass Used to Be Beautiful Scene,tt0119396 jj1lH26Ky08,1997.0,12,12,2011,Jackie Brown,I'll Send You a Postcard Scene,tt0119396 57ge-WVuEY0,1997.0,4,12,2011,Jackie Brown,A Gun Pressed up Against My Dick Scene,tt0119396 IgzFPOMjiC8,1994.0,12,12,2011,Pulp Fiction,The Wolf,tt0110912 7_ip79SGVLo,1997.0,11,12,2011,Jackie Brown,Ray's Interrogation Scene,tt0119396 o9guyPNZglE,2007.0,5,11,2011,No Country for Old Men,Pharmacy Explosion,tt0477348 I42_ESLXfWI,2007.0,10,11,2011,No Country for Old Men,Chigurh's Car Accident,tt0477348 xFfUAjUMVY8,1996.0,8,12,2011,From Dusk Till Dawn,Richie Rises,tt0116367 6Pkq_eBHXJ4,1994.0,2,12,2011,Pulp Fiction,Royale With Cheese,tt0110912 Fh-7WQr_daM,1997.0,9,12,2011,Jackie Brown,You Shot Melanie? Scene,tt0119396 QELMO-GsxVA,2003.0,4,9,2011,A Good Night to Die,A Real Life Gangster!,tt0203536 rW0sXd9Vl_I,2010.0,6,9,2011,House of Bones,You Can't Escape,tt1334536 5rEwN8tIRWw,2011.0,4,-1,2011,Harry Potter and the Deathly Hallows: Part 2,Snape's Security Problem,tt1201607 t15VVQjK16Y,2011.0,6,-1,2011,Harry Potter and the Deathly Hallows: Part 2,You and Whose Army?,tt1201607 _eZeYq2r3tM,2011.0,2,-1,2011,Harry Potter and the Deathly Hallows: Part 2,Accio Horcrux,tt1201607 FK-mY_mZAzs,2011.0,1,-1,2011,Harry Potter and the Deathly Hallows: Part 2,The Deathly Hallows Exist,tt1201607 cacjl7UwuVU,2011.0,3,-1,2011,Harry Potter and the Deathly Hallows: Part 2,He Knows We're Hunting Horcruxes,tt1201607 P57Z6LOoh_k,2011.0,5,-1,2011,Harry Potter and the Deathly Hallows: Part 2,The Chamber of Secrets,tt1201607 rhTGE6TQdSc,2011.0,9,-1,2011,Harry Potter and the Deathly Hallows: Part 2,Harry's Sacrifice,tt1201607 n3SrAOdy-tE,2011.0,7,-1,2011,Harry Potter and the Deathly Hallows: Part 2,The Room of Requirement,tt1201607 bWr67LK9-Uo,2011.0,8,-1,2011,Harry Potter and the Deathly Hallows: Part 2,Goyle's Fiend Fire,tt1201607 Dk0roE34zLw,2011.0,9,-1,2011,"Crazy, Stupid, Love.",A Lesson in Footwear,tt1570728 h52b1cHKeJg,2011.0,1,-1,2011,Cowboys & Aliens,Aliens Kidnap Maria,tt0409847 9IzZsjED07A,2011.0,4,-1,2011,Cowboys & Aliens,Ella's Abduction,tt0409847 29NsPLHISNE,2011.0,5,-1,2011,Cowboys & Aliens,Saloon Brawl,tt0409847 rQVDhPVyU-o,2011.0,2,-1,2011,Cowboys & Aliens,Aliens Attack the Town,tt0409847 eq3-F_738gA,2011.0,8,-1,2011,"Crazy, Stupid, Love.",Rediscover Your Manhood,tt1570728 RaDlQYFo7eU,2011.0,3,-1,2011,Cowboys & Aliens,Alien Escape,tt0409847 wALbxbEBLU0,2011.0,7,-1,2011,"Crazy, Stupid, Love.",Just a Divorce,tt1570728 sdc5bkFd2X4,2011.0,5,-1,2011,"Crazy, Stupid, Love.",The Karate Kid,tt1570728 pVjh7-4ux7g,2011.0,2,-1,2011,"Crazy, Stupid, Love.",I Should Have Fought for You,tt1570728 dtwfZd9KGpo,2011.0,1,-1,2011,"Crazy, Stupid, Love.",Do You Like This Girl?,tt1570728 4xLmxgd-AYs,2011.0,6,-1,2011,"Crazy, Stupid, Love.",Do You Find Me Attractive?,tt1570728 5e9vyyrP4Zs,2011.0,3,-1,2011,"Crazy, Stupid, Love.",I'm R-Rated Sexy,tt1570728 dQoqvTs4lvg,2011.0,4,-1,2011,"Crazy, Stupid, Love.",I Want to Show You Off to My Ex-Wife,tt1570728 MBjVMydv63A,2010.0,6,-1,2011,The Debt,Why Didn't You Go?,tt1226753 U2ZOhOknNc8,2003.0,8,9,2011,Scorched,Someone Robbed the Bank,tt0286947 eb6k3SU1T2E,2010.0,8,10,2011,The Locksmith,What Grown Up Loses Their Shoe?,tt1557769 qlrpmMPkRUM,2010.0,8,-1,2011,The Debt,The Break-In,tt1226753 m1DIBnkwrp0,2010.0,5,10,2011,Quantum Apocalypse,Can I Kiss You?,tt1265621 lj59KyjwK3c,2010.0,5,-1,2011,The Debt,Train Track Escape,tt1226753 5OMaEgJv-KE,2010.0,7,-1,2011,The Debt,I'm Not Capable,tt1226753 UCskICK1t1Q,2004.0,1,10,2011,Dragon Storm,Pillage the Village,tt0377808 qowk8kRtc8M,2003.0,8,9,2011,A Good Night to Die,The Gun Salesman,tt0203536 aAtrw4G6Ino,2010.0,1,10,2011,Quantum Apocalypse,"#2 Pencils, Energy Drinks & Cigarettes",tt1265621 tGzM5IFK964,2010.0,8,10,2011,Quantum Apocalypse,The President's Speech,tt1265621 kVH74eYVAus,2010.0,10,10,2011,Quantum Apocalypse,Quantum Reversal,tt1265621 xDkGfxCKMKA,2010.0,6,10,2011,Quantum Apocalypse,No Gravity Feat of Strength,tt1265621 uVZLcXAc5aY,2010.0,9,10,2011,Quantum Apocalypse,The Calculations of an Autistic Savant,tt1265621 lohIAbjwCBE,2010.0,7,10,2011,Quantum Apocalypse,Tsunami,tt1265621 9nhbb-EhMYg,2004.0,7,10,2011,Dragon Storm,Forest Ambush,tt0377808 xdXKP_4pbhM,2004.0,10,10,2011,Dragon Storm,The Final Dragon,tt0377808 tKOX13gKlf8,2004.0,9,10,2011,Dragon Storm,Moonlight Battle,tt0377808 lIpUIAl6ltw,2004.0,6,10,2011,Dragon Storm,The First Slay,tt0377808 pwr6OtkCTiw,2004.0,4,10,2011,Dragon Storm,King to King,tt0377808 ndV1BsZ1q88,2004.0,3,10,2011,Dragon Storm,The Huntsman,tt0377808 kPVaohv2-ZI,2004.0,8,10,2011,Dragon Storm,You Could Have Knocked,tt0377808 TeL-XU97qyY,2004.0,5,10,2011,Dragon Storm,A Date with a Dragon,tt0377808 ZPKEtczECDk,2004.0,2,10,2011,Dragon Storm,I'm Just the Messenger!,tt0377808 Nr1FMis9MiQ,2003.0,6,9,2011,A Good Night to Die,Childhood Flashes,tt0203536 3Z2NklQONgc,2003.0,9,9,2011,A Good Night to Die,A Way Out For Both of Us,tt0203536 PSd562J8ZFU,2003.0,1,9,2011,A Good Night to Die,The Right Tools,tt0203536 wYBcBpFZYF8,2003.0,7,9,2011,A Good Night to Die,Phone Call During a Mexican Standoff,tt0203536 6zAcU68P0GM,2003.0,5,9,2011,A Good Night to Die,Van F***ing Halen,tt0203536 6PJ5GsyOt7M,2010.0,3,10,2011,Quantum Apocalypse,Screwed 100 Percent,tt1265621 vlynd7r6pLU,2003.0,3,9,2011,A Good Night to Die,The First Contract,tt0203536 PLOMwlZsSYM,2008.0,4,7,2011,The Way of War,Man Down,tt1133995 2LuJ9QU-6X8,2007.0,6,9,2011,Redrum,The Voice of a Televangelist,tt0815230 smNgpBRjuFs,2003.0,2,9,2011,A Good Night to Die,The Doppelganger Story,tt0203536 KYQjUOjBx0A,2009.0,8,9,2011,High Kick Girl!,The Art of Self-Defense,tt1406157 syi46NOW2Fo,2010.0,2,10,2011,Quantum Apocalypse,I'd Make an Excellent Driver,tt1265621 Zur7hoLFsrw,2001.0,7,8,2011,The Attic Expeditions,You Were Supposed to Get Better,tt0118652 Iip4iU0wuAU,2010.0,4,10,2011,Quantum Apocalypse,Massive Migration,tt1265621 E3bgtIIw9JM,2001.0,8,8,2011,The Attic Expeditions,Killing Faith,tt0118652 kpsUc7HBCoQ,2001.0,5,8,2011,The Attic Expeditions,Attic Expedition,tt0118652 PNzvucMz1t0,2001.0,6,8,2011,The Attic Expeditions,It's All in Your Mind,tt0118652 JL9cenVTdOk,2003.0,9,9,2011,Scorched,Glorious Birds (Gotta Fly),tt0286947 FNdcZckBm2Y,2010.0,9,10,2011,The Locksmith,The Last Romantic in New York City,tt1557769 cz4XgiXhVOo,2001.0,4,8,2011,The Attic Expeditions,Healthy Paranoia,tt0118652 _U4T80Jv9h4,2001.0,3,8,2011,The Attic Expeditions,Talking to a Lunatic,tt0118652 K3xHM2hrV6U,2003.0,3,9,2011,Scorched,The First Steps,tt0286947 3z0t0O6ZIPs,2007.0,1,9,2011,Redrum,You Killed Him!,tt0815230 U9bgSiDUqtg,2001.0,1,8,2011,The Attic Expeditions,Patient or Doctor?,tt0118652 DqpPwu8MQ2E,2001.0,2,8,2011,The Attic Expeditions,The House of Love,tt0118652 Cr313z3sY6k,2008.0,6,7,2011,The Way of War,King of Infinite Space,tt1133995 BU6P24jMDLw,2008.0,5,7,2011,The Way of War,Finish It,tt1133995 ytTswOdw54k,2008.0,3,7,2011,The Way of War,Shotgun in Aisle 9,tt1133995 Rdp3LSS_czA,2008.0,2,7,2011,The Way of War,Czechoslovakia,tt1133995 sWTHIrA5L1o,2008.0,7,7,2011,The Way of War,Can There Be Heroes?,tt1133995 HuYvFH-he5Y,2008.0,1,7,2011,The Way of War,I Kill People!,tt1133995 D_-VW2paVeA,2009.0,9,9,2011,High Kick Girl!,This Is Karate,tt1406157 KlNmtsP9OHQ,2009.0,4,9,2011,High Kick Girl!,Did That Hurt?,tt1406157 vQWF7zqozSI,2009.0,3,9,2011,High Kick Girl!,Destroying the Destroyers,tt1406157 qJodFL7bxXg,2007.0,9,9,2011,Redrum,Lovers' Quarrel,tt0815230 dHLDknvGAn0,2007.0,7,9,2011,Redrum,Killing Spree,tt0815230 WcRpuNfGtXw,2007.0,5,9,2011,Redrum,Running Over a Racist,tt0815230 Xyd6zzq97LY,2007.0,8,9,2011,Redrum,Ditching the Detective,tt0815230 nVkMrqrZKmc,2007.0,4,9,2011,Redrum,Something Fun to Do,tt0815230 d6mZ4guAJK8,2003.0,4,9,2011,Scorched,The Millionaire Many Times Over,tt0286947 qntho2Y9bLk,2007.0,2,9,2011,Redrum,Beating the Boss,tt0815230 GxKkfTq41zc,2007.0,3,9,2011,Redrum,Your Bitch Chose Me,tt0815230 C4o-zcihGN4,2003.0,6,9,2011,Scorched,Day Jobs,tt0286947 BnZTj4nADDM,2003.0,7,9,2011,Scorched,The Rungs to Success,tt0286947 C5-RnOKEZ-4,2003.0,2,9,2011,Scorched,Woods & the Horned Toad,tt0286947 -2kcu-IpfoY,2003.0,5,9,2011,Scorched,I Eat Little Girls,tt0286947 wfbdNtfo7NA,2003.0,1,9,2011,Scorched,Sheila's Hiccup Cure,tt0286947 rx4BjUnPGss,2010.0,10,10,2011,The Locksmith,How Bout Lunch?,tt1557769 oGKr8bdx_5E,2010.0,6,10,2011,The Locksmith,Margo to the Rescue,tt1557769 _kz7e2_Gxoc,2010.0,5,10,2011,The Locksmith,I Lost the Van,tt1557769 ReAGCpATawk,2010.0,7,10,2011,The Locksmith,Margo and Mike Get Closer,tt1557769 rRGfnT_LUBQ,2010.0,3,10,2011,The Locksmith,Do You Believe in Love?,tt1557769 wuw6lFV1rRs,2010.0,1,10,2011,The Locksmith,He's F***ing Somebody Else,tt1557769 6y0Uh3qzK-g,2010.0,4,10,2011,The Locksmith,You Love Her?,tt1557769 imnkiyOsu_g,2010.0,2,10,2011,The Locksmith,Talk to Him For Me,tt1557769 d76CwsWbV2E,2011.0,3,-1,2011,Horrible Bosses,Trim the Fat,tt1499658 NOMdMmQWgjQ,2011.0,5,-1,2011,Final Destination 5,Death Doesn't Like to be Cheated,tt1622979 -hqNz9Ve-Hs,2011.0,2,-1,2011,Final Destination 5,Coincidence or Pattern?,tt1622979 e8i7WCXqJ94,2011.0,4,-1,2011,Final Destination 5,The Coroner,tt1622979 ZxkxWhiTQnc,2005.0,7,10,2011,A Little Trip to Heaven,The House Always Wins,tt0420740 PAxy4zrKs-Y,2006.0,3,10,2011,The Contract,Risky Rock Climbing,tt0445946 VwYovLPAX0E,2005.0,1,10,2011,A Little Trip to Heaven,Quality Life Insurance,tt0420740 _z7q7HzR9G4,2005.0,10,10,2011,A Little Trip to Heaven,A One Million Dollar Payout,tt0420740 AyNEyYnJ_ds,2005.0,9,10,2011,A Little Trip to Heaven,Stop the Car Now!,tt0420740 NHoU-7e_tw0,2006.0,6,10,2011,The Contract,Heroes Are Out of Fashion,tt0445946 lWSPwOvJSNs,2005.0,2,10,2011,A Little Trip to Heaven,The Video Speech,tt0420740 KwmiEuEoY6o,2006.0,2,10,2011,The Contract,My Prisoner,tt0445946 w42uRnJwoIc,2005.0,6,10,2011,A Little Trip to Heaven,One Last Con,tt0420740 DiCQwUtulqs,2005.0,4,10,2011,A Little Trip to Heaven,Burned to Death,tt0420740 dS260nXz5d8,2006.0,4,10,2011,The Contract,Tough for an Old Guy,tt0445946 TiupPnshH-o,2006.0,5,10,2011,The Contract,"Wow, the FBI",tt0445946 d51kNuh6K-U,2005.0,5,10,2011,A Little Trip to Heaven,"God in Heaven, Devil in the Ground",tt0420740 7gdtw-l0GqQ,2007.0,5,9,2011,The Ferryman,Time's Up,tt0808265 3cmp6g1fbhs,2005.0,3,10,2011,A Little Trip to Heaven,The Coroner,tt0420740 eltUh-VMAKI,2002.0,4,10,2011,Evil Alien Conquerors,Beheading a Cow,tt0305556 TxhfeY6M8lQ,2006.0,1,10,2011,The Contract,Fatal Road Block,tt0445946 DEJ_XECWRcs,2006.0,7,10,2011,The Contract,Tricking the Troopers,tt0445946 1iJNC4ty1Q4,2010.0,3,10,2011,2001 Maniacs: Field of Screams,Break the Clam,tt0858411 8NzL8n2GEC0,2010.0,1,10,2011,2001 Maniacs: Field of Screams,Bulls-Eye Thrill Ride,tt0858411 2mo6oM4vnWY,2002.0,2,10,2011,Evil Alien Conquerors,Oh Rabirr Oh Rabirr,tt0305556 0huG2wHLCGA,2002.0,1,10,2011,Evil Alien Conquerors,Planet Kabijj,tt0305556 NYefwzfGRWA,2010.0,2,10,2011,2001 Maniacs: Field of Screams,Road Rascals,tt0858411 Pnpgz413Wpw,2002.0,6,10,2011,The Circuit 2: The Final Punch,Pike Wins Again,tt0321704 MsMsnCypMuU,2002.0,10,10,2011,The Circuit 2: The Final Punch,How Does It Feel?,tt0321704 _ZmzCV8muyU,2010.0,5,10,2011,2001 Maniacs: Field of Screams,"Buck-Man, Buck-Man, Buck-Man",tt0858411 YPmYDxnmGnM,2010.0,8,10,2011,2001 Maniacs: Field of Screams,Abraham & Mary Lincoln,tt0858411 5iKhN22wsmI,2010.0,7,10,2011,2001 Maniacs: Field of Screams,Cannibal Rock,tt0858411 1rHtYKAv7Vo,2010.0,9,10,2011,2001 Maniacs: Field of Screams,Feast Cannibal Style,tt0858411 avB-gC3PO98,2002.0,9,10,2011,Evil Alien Conquerors,Croker in the Kitchen,tt0305556 58uMOyQcvms,2002.0,8,10,2011,Evil Alien Conquerors,Play The Supertramp!,tt0305556 TFmga8EIQpo,2002.0,4,10,2011,The Circuit 2: The Final Punch,"In Here, I Am God",tt0321704 8-TDW9Cm3TA,2002.0,2,10,2011,The Circuit 2: The Final Punch,Nice Kick,tt0321704 d1VyT4mI-8g,2002.0,1,10,2011,The Circuit 2: The Final Punch,Late Night Brawl,tt0321704 yr8bdlI4Moc,2002.0,3,8,2011,The Circuit,I Want Him Alive,tt0309452 PaMAFPMi6cI,2004.0,2,10,2011,Freeze Frame,Darkness Invisible,tt0363095 KwsyI7nWrG0,2002.0,9,10,2011,The Circuit 2: The Final Punch,Dirk vs. Pike,tt0321704 ArXhfCr-vb8,2002.0,7,10,2011,The Circuit 2: The Final Punch,Blood Lust,tt0321704 fw_IEdXIuYU,2004.0,1,10,2011,Freeze Frame,Things to Remember,tt0363095 FIKDkbVveeo,2004.0,3,10,2011,Freeze Frame,Crime Wave Reconstruction,tt0363095 t3TniZu-fk8,2004.0,5,10,2011,Freeze Frame,A Tale of Two Tapes,tt0363095 MSIAnJPZeaY,2004.0,6,10,2011,Freeze Frame,No Cure Without Confrontation,tt0363095 V5Rl2bVxD2o,2004.0,10,10,2011,Freeze Frame,Webcam Murder Suicide,tt0363095 -MG8-wCvzpE,2004.0,4,10,2011,Freeze Frame,You Know I'm Innocent!,tt0363095 GNw7aQdAfcA,2001.0,3,10,2011,Epoch,A Picture is Worth a Thousand Words,tt0233657 eQhNOc_Bo78,2004.0,7,10,2011,Freeze Frame,The Truth Revealed,tt0363095 kqEj45pk6aE,2001.0,4,10,2011,Epoch,A Divine Monolith,tt0233657 cHJd_bAK9C0,2001.0,1,10,2011,Epoch,Classified Government Meeting,tt0233657 kJ8_sMrSxns,2001.0,5,10,2011,Epoch,The Solar System is the Key,tt0233657 KBfD-4BCMR0,2009.0,3,10,2011,Cyborg Conquest,Me & Bobby DuPree,tt1328910 _cYlrtZSG-c,2001.0,9,10,2011,Epoch,Terraforming,tt0233657 Wuwev3p4rKs,2009.0,4,10,2011,Cyborg Conquest,Lady is a Force of Nature,tt1328910 r4IlzPnP7ew,2003.0,7,10,2011,Epoch: Evolution,"When It Rains, It Pours",tt0374286 b2IWTMJV2cE,2009.0,7,10,2011,Cyborg Conquest,Who's Who?,tt1328910 YNJflokcnFI,2003.0,9,10,2011,Epoch: Evolution,One From Within,tt0374286 pDzkhDjTY64,2005.0,9,10,2011,Animal,Smart vs. Tough,tt0437072 f7q5ce9Jwgw,2011.0,6,-1,2011,Shark Night 3D,We're Here!,tt1633356 CY1lL585Gjk,2011.0,5,-1,2011,Shark Night 3D,Room For One More?,tt1633356 mbWtLBLt1ro,2011.0,7,-1,2011,Shark Night 3D,Attack in the Lake,tt1633356 qIis4kiGo6Q,2011.0,2,-1,2011,Shark Night 3D,Swim Maya!,tt1633356 dkCUjz7I36M,2011.0,4,-1,2011,Shark Night 3D,Caged In,tt1633356 PH5pgpWY1uE,2011.0,3,-1,2011,Shark Night 3D,Flesh and Blubber,tt1633356 FPPdbapD_E0,2011.0,1,-1,2011,Shark Night 3D,Wakeboarding,tt1633356 wmFhHU38IhE,2011.0,5,-1,2011,One Day,A Writer in Paris,tt1563738 k6TPsaQRQus,2011.0,4,-1,2011,One Day,An Orgy Won't Keep You Warm At Night,tt1563738 6-NRVtIrrEs,2011.0,2,-1,2011,One Day,I Had a Crush On You,tt1563738 qbYHRU551nI,2011.0,3,-1,2011,One Day,I Think About You,tt1563738 VsLlPXjtnVs,2011.0,1,-1,2011,One Day,We've Never Met,tt1563738 ba-U_sXRFqg,2011.0,1,-1,2011,Final Destination 5,Kill or be Killed,tt1622979 s5D8jf0k_1k,2011.0,3,-1,2011,Final Destination 5,Laser Eye Surgery,tt1622979 na_Fzn77bBA,2005.0,4,5,2011,A Get2Gether,Rooftop High,tt0493129 m2Bf7Viheuw,2005.0,5,5,2011,A Get2Gether,Derrick Gets Dumped,tt0493129 J8tCOzttKMA,2005.0,3,5,2011,A Get2Gether,Truth or Dare,tt0493129 H6NlpE8B0b4,2005.0,2,5,2011,A Get2Gether,It's Time,tt0493129 0xW-3QH_WGU,2011.0,8,8,2011,Sacrifice,Prayer 11:32,tt1630564 4pVd11CW1qI,2005.0,1,5,2011,A Get2Gether,"Big Dick, Hairy Nuts",tt0493129 KxMHqnKgF7w,2011.0,7,8,2011,Sacrifice,A Dead Man,tt1630564 PCNdV_Du58c,2011.0,6,8,2011,Sacrifice,Let's Go Clubbing,tt1630564 LEwJNM-Oj7s,2011.0,4,8,2011,Sacrifice,He Cut My Face,tt1630564 2Gd39qysshg,2011.0,3,8,2011,Sacrifice,Who is This Guy?!,tt1630564 1DA-nWsGNTk,2011.0,5,8,2011,Sacrifice,Virgin Heroin,tt1630564 2x7aG-JRlCE,2011.0,1,8,2011,Sacrifice,Ice Check,tt1630564 IfJuol_Q-jw,2011.0,2,8,2011,Sacrifice,John & Father Porter,tt1630564 ortccjAUofU,2009.0,10,10,2011,Wolvesbayne,Back to the Depths of Hell,tt1266121 zip5M8y42fk,2009.0,9,10,2011,Wolvesbayne,Release Them,tt1266121 9d6eWkYfjsk,2010.0,9,9,2011,House of Bones,The Foundation for Change,tt1334536 LFwCy1HuMCY,2003.0,9,9,2011,Dragon Fighter,Dragon Slayer,tt0312640 ZiyuOaPD0eM,2003.0,8,9,2011,Dragon Fighter,Air Combat,tt0312640 89PPmxL-EVE,2010.0,8,9,2011,House of Bones,The Key,tt1334536 fn58yij7rxw,2009.0,8,10,2011,Wolvesbayne,"Immune, Not Immortal",tt1266121 UUiiyiX_STo,2009.0,7,10,2011,Wolvesbayne,Hey Toots,tt1266121 VlS-HHdayMU,2003.0,7,9,2011,Dragon Fighter,Blow This Thing Off My Ass!,tt0312640 QEcxsTjlIJ4,2003.0,6,9,2011,Dragon Fighter,Dragon Documents,tt0312640 xdNcrmG6P_Q,2010.0,7,9,2011,House of Bones,The Attic,tt1334536 zJuMyRu4kkU,2009.0,6,10,2011,Wolvesbayne,Vampire Hunters,tt1266121 TQezxXB6TYc,2009.0,5,10,2011,Wolvesbayne,Our Kryptonite,tt1266121 G1JAVVZ_fMA,2003.0,5,9,2011,Dragon Fighter,Tasty Morsel,tt0312640 S7I9LpgwS1w,2010.0,5,9,2011,House of Bones,The Hairball,tt1334536 eWjLy8S5uyk,2010.0,4,9,2011,House of Bones,A Malevolent House,tt1334536 yHR-TMj88tc,2010.0,3,9,2011,House of Bones,Sexy Surprise,tt1334536 TI5XVZEwtiM,2009.0,4,10,2011,Wolvesbayne,"Relaxation, Meditation, Control",tt1266121 Hia2AZPMH2Y,2010.0,2,9,2011,House of Bones,The P.A. Life,tt1334536 6EY8a5WbtLM,2010.0,1,9,2011,House of Bones,Babe's Baseball,tt1334536 gkEZQDlj6OQ,2003.0,4,9,2011,Dragon Fighter,Breath of Fire,tt0312640 o9W8bxAxvvg,2009.0,3,10,2011,Wolvesbayne,This Is Gonna Hurt,tt1266121 N9vKzv8jLw8,2003.0,3,9,2011,Dragon Fighter,The Lab Goes to Hell,tt0312640 pQEsnpbMwEM,2009.0,2,10,2011,Wolvesbayne,Transformation,tt1266121 gDymr00KVAg,2009.0,1,10,2011,Wolvesbayne,Roadside Werewolf Attack,tt1266121 EQP-k2x6Yzo,2009.0,10,10,2011,Cyborg Conquest,The Question of Freedom,tt1328910 kBt6bwRR7ls,2003.0,2,9,2011,Dragon Fighter,Cloning a Dragon,tt0312640 rnm2leIC_5I,2003.0,1,9,2011,Dragon Fighter,Dragon's Lair,tt0312640 MGsGQAu3aNM,2009.0,2,10,2011,Cyborg Conquest,Getaway,tt1328910 3WCcFVnEKh0,2009.0,1,10,2011,Cyborg Conquest,They're Robots! Waste Them,tt1328910 GbLymMUHlXU,2009.0,9,10,2011,Cyborg Conquest,"Not a Villain, But a Hero",tt1328910 xs1kML847Ww,2009.0,8,10,2011,Cyborg Conquest,A Hell for Robots,tt1328910 ws9--JaXKcg,2009.0,6,10,2011,Cyborg Conquest,Supermarket Shoot-Out,tt1328910 b0ydPnxtSKY,2003.0,10,10,2011,Epoch: Evolution,Ascension,tt0374286 Qv3wA3MJnJk,2007.0,8,8,2011,Dead Heist,A Horde of Zombies,tt0457319 9QIPuX7vf1U,2009.0,5,10,2011,Cyborg Conquest,Gator,tt1328910 LPPEPzpSzwM,2007.0,7,8,2011,Dead Heist,Elevator Surprise,tt0457319 uC74Ix65Aas,2003.0,8,10,2011,Epoch: Evolution,Parachuting Onto the Torus,tt0374286 28wFNLwZpAU,2007.0,6,8,2011,Dead Heist,No Disrespect,tt0457319 bqOMJ-Qrg1Q,2003.0,6,10,2011,Epoch: Evolution,Unidentified Guests,tt0374286 MteufVA29iQ,2003.0,5,10,2011,Epoch: Evolution,Into the Breach Once More,tt0374286 2X_LdH71B6I,2003.0,4,10,2011,Epoch: Evolution,The Genesis Coalition,tt0374286 SNdc9-hv8co,2003.0,3,10,2011,Epoch: Evolution,Another Monolith,tt0374286 QwQ7gl5N41I,2007.0,5,8,2011,Dead Heist,The Zombies Arrive,tt0457319 xGvLjaA4Zek,2003.0,2,10,2011,Epoch: Evolution,Missile Command Fail,tt0374286 JR_yxYYp8NM,2007.0,4,8,2011,Dead Heist,Bank Heist,tt0457319 dwIgQqWOKCg,2003.0,1,10,2011,Epoch: Evolution,Is It Ever Going to Stop?,tt0374286 F_qsH2om2VI,2001.0,10,10,2011,Epoch,An Immaculate Conception,tt0233657 D0Led4y5r3I,2007.0,3,8,2011,Dead Heist,What Do You Hunt?,tt0457319 b-4JObBlWC0,2007.0,2,8,2011,Dead Heist,A Business Opportunity,tt0457319 -3A2TNWXDXA,2001.0,8,10,2011,Epoch,A Diplomatic Situation,tt0233657 70ut3wLkQmo,2001.0,7,10,2011,Epoch,God in the Machine,tt0233657 gPbn1uWQywg,2001.0,6,10,2011,Epoch,Entity Defenses,tt0233657 zWjlFN5hO6I,2003.0,4,4,2011,Mayor of the Sunset Strip,Rodney's Just a Friend,tt0230512 xA57pKdLCbM,2007.0,1,8,2011,Dead Heist,Never Ask a Zombie for Directions,tt0457319 2HOwFvWBZ3A,2001.0,2,10,2011,Epoch,Adios Pendejos!,tt0233657 w4iERLpYmzU,2003.0,3,4,2011,Mayor of the Sunset Strip,Fight with DJ Chris Carter,tt0230512 aLVn2GWY-Ec,2005.0,5,8,2011,Back in the Day,Coming For You,tt0380201 lJxNtmP2Nas,2005.0,3,8,2011,Back in the Day,Tell Me the Truth,tt0380201 rfYZT8xR1Gs,2005.0,8,8,2011,Back in the Day,That's What I'm Talkin' Bout,tt0380201 QN7he2e5qq0,2005.0,7,8,2011,Back in the Day,It's What You Didn't Do,tt0380201 i27WEap2cLA,2003.0,2,4,2011,Mayor of the Sunset Strip,Worries With the Film,tt0230512 thG4yP1OdgU,2003.0,1,4,2011,Mayor of the Sunset Strip,Visiting the Family,tt0230512 LI-SbYy8hMo,2005.0,5,10,2011,Animal,An Opportunity,tt0437072 dO7tQ5fXGCY,2005.0,8,10,2011,Animal,A Business Proposition,tt0437072 q4lM2MGiS20,2005.0,1,10,2011,Animal,Smells Like Death,tt0437072 PgZp8EEzrJc,2005.0,7,10,2011,Animal,Welcome Home Party,tt0437072 dLcQb08EVvI,2005.0,2,10,2011,Animal,The Cage,tt0437072 UT2YmXPRg6c,2005.0,3,10,2011,Animal,Man Enough,tt0437072 uBIAcBKvF28,2006.0,8,8,2011,Subject Two,"Congratulations, You're Dead",tt0492912 CJHV8XKftbc,2006.0,7,8,2011,Subject Two,Escape Attempt,tt0492912 vm4p1tZAmEw,2005.0,4,10,2011,Animal,The First Book I Ever Read,tt0437072 nVwOCEibZu0,2006.0,5,8,2011,Subject Two,The Hunter,tt0492912 Uf0P-Ezxg5Y,2005.0,6,10,2011,Animal,Break the Chain,tt0437072 0DTD2i-pMl0,2006.0,6,8,2011,Subject Two,No Loose Ends,tt0492912 PmoU153vF3U,2005.0,10,10,2011,Animal,I Don't Know How to Love,tt0437072 4p7hZ2WJXHs,2006.0,4,8,2011,Subject Two,Kill Me!,tt0492912 _dE4g2x-Ing,2006.0,2,8,2011,Subject Two,Resuscitation,tt0492912 LFinvO6-_T0,2006.0,3,8,2011,Subject Two,You Have No Idea,tt0492912 4eLsFtya4Gk,2006.0,1,8,2011,Subject Two,Cryonics,tt0492912 U72Ap0dAveE,2010.0,9,9,2011,As Good as Dead,We're Gonna Miss Her Somethin' Awful,tt1294136 weUbXakK6Fw,2010.0,7,9,2011,As Good as Dead,The Dirty Work,tt1294136 meBbBnp3FcA,2010.0,8,9,2011,As Good as Dead,I'm Her Daddy,tt1294136 tHdqS2Vda8Q,2010.0,5,9,2011,As Good as Dead,Eye Slice,tt1294136 oj0LXmHzUoM,2010.0,6,9,2011,As Good as Dead,Aaron Drugs Amy,tt1294136 4kQb8kUDq5o,2010.0,4,9,2011,As Good as Dead,Aaron Captures Amy,tt1294136 XeZkZIt0zqA,2010.0,3,9,2011,As Good as Dead,Breaking Out of the Fridge,tt1294136 hBpNWBQZK4s,2010.0,2,9,2011,As Good as Dead,Insensitive Jokes,tt1294136 K61WsiAs4rE,2010.0,1,9,2011,As Good as Dead,Help!,tt1294136 Je8n23QMWkg,2002.0,6,10,2011,Evil Alien Conquerors,Fondling Hairy Feet,tt0305556 lWvb6U-KZds,2006.0,9,10,2011,The Contract,Cabin Invasion,tt0445946 QiymXl8HTlA,2007.0,8,9,2011,The Ferryman,Come and Get It,tt0808265 Sd6LBK8KhuQ,2006.0,8,10,2011,The Contract,Don't Miss,tt0445946 of7ZP6vXAPo,2002.0,5,10,2011,Evil Alien Conquerors,Penny & Jan,tt0305556 uFPINtBli58,2002.0,3,10,2011,Evil Alien Conquerors,Weed Whacking Tools,tt0305556 P8JnW9dWBRo,2007.0,7,9,2011,The Ferryman,Switching Bodies,tt0808265 bvRS9b2nhh4,2011.0,6,-1,2011,Horrible Bosses,What's the Plan?,tt1499658 vKZhOw3Feo4,2011.0,4,-1,2011,Horrible Bosses,Finding a Hitman Online,tt1499658 nsQtI33UbGI,2011.0,5,-1,2011,Horrible Bosses,Why Don't You Kill Each Other's Bosses?,tt1499658 ARdTVbhhy84,2011.0,2,-1,2011,Horrible Bosses,You Call Your Grandmother Gam-Gam?,tt1499658 IToYFpzH0_U,2011.0,1,-1,2011,Horrible Bosses,I'm a Squirter,tt1499658 _wAG98wcrYc,1998.0,7,8,2011,Shakespeare in Love,Viola's Fate,tt0138097 XrxIR2uja8w,1998.0,8,8,2011,Shakespeare in Love,Write Me Well,tt0138097 o_KXbKa2crI,1998.0,6,8,2011,Shakespeare in Love,A Woman in a Man's Profession,tt0138097 827EAYtM6XQ,1998.0,5,8,2011,Shakespeare in Love,A New Juliet,tt0138097 WfUTDlmLMFk,1998.0,4,8,2011,Shakespeare in Love,The Theater Is Closed,tt0138097 0_avQPM3L90,1998.0,3,8,2011,Shakespeare in Love,Viola Meets the Queen,tt0138097 ifjmJHoUzc8,1998.0,1,8,2011,Shakespeare in Love,Viola Is Thomas,tt0138097 OJZhDHdlk3w,1998.0,2,8,2011,Shakespeare in Love,It Is a New World,tt0138097 qF0CMv413PA,2011.0,5,-1,2011,Don't Be Afraid of the Dark,Bright Lights,tt1270761 alQVZ9YxUJw,2011.0,4,-1,2011,Don't Be Afraid of the Dark,Set Us Free,tt1270761 F3FrLQdbyKk,2011.0,3,-1,2011,Don't Be Afraid of the Dark,There's a Door Here,tt1270761 azYL1oPxMGg,2011.0,2,-1,2011,Don't Be Afraid of the Dark,It's Not Safe Back Here,tt1270761 6xU4PZNn6RQ,2011.0,1,-1,2011,Don't Be Afraid of the Dark,Take a Look at the House,tt1270761 ZK4Ly7Ij81o,2005.0,4,8,2011,Back in the Day,An Eyewitness,tt0380201 gfXVOCNMpMQ,2005.0,2,8,2011,Back in the Day,Reggie Meets Alicia,tt0380201 AhHM_fCLsIY,2005.0,6,8,2011,Back in the Day,A Snitch,tt0380201 F3peN7bOfOo,2005.0,1,8,2011,Back in the Day,No Turning Back,tt0380201 6Bg4HfBsmAU,2004.0,8,10,2011,Freeze Frame,This Is Deliberate,tt0363095 0vI6TtIP4t0,2004.0,9,10,2011,Freeze Frame,You Know You Want To,tt0363095 Obf7CnOmBak,2002.0,8,10,2011,The Circuit 2: The Final Punch,The Beach Battle Begins,tt0321704 kEwJ2uBX7sQ,2002.0,5,10,2011,The Circuit 2: The Final Punch,Did I Pass the Test?,tt0321704 mro3v8ZZA_E,2002.0,3,10,2011,The Circuit 2: The Final Punch,Preparing for Prison,tt0321704 Hfoa97N4-4w,2002.0,7,8,2011,The Circuit,Climbing the Circuit,tt0309452 7GF9Ic-yNcc,2002.0,8,8,2011,The Circuit,Double Trouble,tt0309452 RXvm3oOIG8k,2002.0,6,8,2011,The Circuit,Gate Crashing,tt0309452 dujvrGLRTlI,2002.0,2,8,2011,The Circuit,Dirk Still Knows How to Fight,tt0309452 sPdJwBfuEDc,2002.0,4,8,2011,The Circuit,"One Blow, One Knockout",tt0309452 eJ6y8TeIeAM,2002.0,5,8,2011,The Circuit,Lenny Loses His Life,tt0309452 S0IGwZy9_xg,2002.0,10,10,2011,Evil Alien Conquerors,Belly Twisting with Croker,tt0305556 WyW86PD74dA,2002.0,1,8,2011,The Circuit,Paying Off a Debt,tt0309452 ROUu-unQieo,2002.0,7,10,2011,Evil Alien Conquerors,Learning to Fly,tt0305556 c1HS49PeMUM,2010.0,10,10,2011,2001 Maniacs: Field of Screams,Damn Yankees,tt0858411 _zlm3MXTK-0,2010.0,4,10,2011,2001 Maniacs: Field of Screams,Say Cheese!,tt0858411 Y9ewiC2bykI,2010.0,6,10,2011,2001 Maniacs: Field of Screams,Broke Back Mountain,tt0858411 5e0cFUGyfzI,2005.0,3,6,2011,Shooting Gallery,The Best Hustlers of Them All,tt0339526 DwDzyVvtR9M,2005.0,2,6,2011,Shooting Gallery,Come With Me,tt0339526 Tn6y5TARbnQ,2005.0,4,6,2011,Shooting Gallery,One Shot,tt0339526 l_4wAj6Kx-k,2005.0,5,6,2011,Shooting Gallery,"Kiss My Black, Unruly A**",tt0339526 h8QQbFolJZI,2005.0,1,6,2011,Shooting Gallery,Jezebel and Jericho Get Intimate,tt0339526 OkR9Bp19nKs,2006.0,10,10,2011,The Contract,Frank is Targeted,tt0445946 yjm6WiV1bBo,2007.0,9,9,2011,The Ferryman,Gets Paid,tt0808265 IZ3BR0J5vvw,2005.0,6,6,2011,Shooting Gallery,Jezebel Threatens Mortensen,tt0339526 7Lsh9PH4cn0,2007.0,6,9,2011,The Ferryman,Deadly Love Triangle,tt0808265 A7ZmPaAVJgo,2007.0,6,6,2011,The Perfect Witness,Momma's Boy,tt0489318 4X5-zcyQc7U,2005.0,8,10,2011,A Little Trip to Heaven,Let Your Son Go,tt0420740 y59dykC47mc,2007.0,1,9,2011,The Ferryman,Shark Surprise,tt0808265 AgbKPzg3rAk,2007.0,4,9,2011,The Ferryman,Covered in Blood,tt0808265 NXRbXCIjxR0,2007.0,3,9,2011,The Ferryman,Knife in the Chest,tt0808265 EATS70yNA0E,2007.0,2,9,2011,The Ferryman,Bad Omen,tt0808265 BxQMT4R51Dk,2003.0,5,12,2011,Intolerable Cruelty,That Silly Man,tt0138524 usUO449hUXQ,1995.0,5,10,2011,Fist of the North Star,It Ain't Easy Being Sleazy,tt0113074 Q-BviNtL0PQ,2008.0,3,8,2011,It's Alive,Nasty Scar,tt1172060 Yzu5yxVl3yQ,2008.0,2,8,2011,It's Alive,Deadly Delivery,tt1172060 6EP_KsI8k8w,2009.0,9,10,2011,The Sanctuary,The Battle Begins,tt1161449 DwrmKYIuYi0,2009.0,8,10,2011,The Sanctuary,Double Duel,tt1161449 xUllXfNznIY,2009.0,10,10,2011,The Sanctuary,Back from the Dead,tt1161449 O0gse4WDTrY,2009.0,7,10,2011,The Sanctuary,Three Against One,tt1161449 Vr9OaXD19JY,2009.0,6,10,2011,The Sanctuary,Hitching a Ride,tt1161449 juik-nkFIoU,2009.0,4,10,2011,The Sanctuary,"Shoot, Drop and Roll",tt1161449 6kw3u6O_SxE,2009.0,3,10,2011,The Sanctuary,Krit Takes a Beating,tt1161449 uaSkuUzEuq4,2009.0,1,10,2011,The Sanctuary,Fight for the Royal Antiques,tt1161449 VwvlEZJMbg0,2009.0,2,10,2011,The Sanctuary,Junkyard Fight,tt1161449 TVfHmkZlp3s,2009.0,5,10,2011,The Sanctuary,Deadly Surprise,tt1161449 qhc9YD3ahAs,2010.0,10,10,2011,Once Fallen,Sins of the Father,tt1087524 Y1Q93Zi9_kc,2010.0,9,10,2011,Once Fallen,Superheroes,tt1087524 JUbVxse8ZrQ,2010.0,8,10,2011,Once Fallen,Where's My Son?,tt1087524 DedlZ0Es_dU,2010.0,6,10,2011,Once Fallen,Back to the Drawing Board,tt1087524 sLB6_-ZNR6E,2010.0,7,10,2011,Once Fallen,Blood Trail in the Tall Grass,tt1087524 0woPxIfjVTk,2010.0,5,10,2011,Once Fallen,Aunt Rose,tt1087524 rf5MnH9pG_s,2010.0,1,10,2011,Once Fallen,Father to Father,tt1087524 cbulyV4O3qc,2010.0,4,10,2011,Once Fallen,Eddie the Aging Hipster,tt1087524 n7DQNB_OKZs,2010.0,2,10,2011,Once Fallen,Rath's Wrath,tt1087524 QxFgIsrvJR4,2010.0,3,10,2011,Once Fallen,Your Mom is a Real Bitch,tt1087524 a50LKwRt5CU,2010.0,7,9,2011,King of the Avenue,The Floodgates of Hell,tt0770778 V2j9MRkQE78,2010.0,5,9,2011,King of the Avenue,A Demon Straight From Hell,tt0770778 4xLBhHfpKTU,2010.0,6,9,2011,King of the Avenue,Evil S***,tt0770778 f0KpM0-h1CI,2010.0,2,9,2011,King of the Avenue,Silencing a Traitor,tt0770778 oiYIVQm-qvY,2010.0,4,9,2011,King of the Avenue,The Devil's Deal,tt0770778 AHzW_z8rUyQ,2010.0,3,9,2011,King of the Avenue,A Really Bad Dream,tt0770778 mXEgUS1i_m4,2010.0,1,9,2011,King of the Avenue,"Daddy, Do You Kill People?",tt0770778 COsMa1MQIVM,2010.0,9,9,2011,King of the Avenue,She Knows Everything,tt0770778 n-WzTlw0scA,2010.0,8,9,2011,King of the Avenue,I Like to F*** With People,tt0770778 yX0WnX27tJw,2008.0,8,8,2011,It's Alive,Daniel vs. Daddy,tt1172060 Bmxi1VgTb-I,2008.0,6,8,2011,It's Alive,Marnie's Murder,tt1172060 X-RU-b4OyuY,2008.0,7,8,2011,It's Alive,Bodies in the Basement,tt1172060 QynjN9Nzr7E,2008.0,5,8,2011,It's Alive,Baby on Board,tt1172060 NCCUGkrIfkQ,2008.0,4,8,2011,It's Alive,Baby's First Bird,tt1172060 zqIOu4ki5-Q,2008.0,1,8,2011,It's Alive,Labor Pains,tt1172060 mbGDV3lPib0,1999.0,5,6,2011,Godmoney,Please Don't Kill Me,tt0119208 _yqWh3OBDEE,1999.0,6,6,2011,Godmoney,Give Me the Gun,tt0119208 5dBd4x1yxaU,1999.0,3,6,2011,Godmoney,The Power Gets Me Off,tt0119208 -UEeG5IIQK0,1999.0,4,6,2011,Godmoney,Can You Pull the Trigger?,tt0119208 uEoCU5cuQA0,1999.0,1,6,2011,Godmoney,I'm Clean Now,tt0119208 dyVMPRxN0FQ,1999.0,2,6,2011,Godmoney,Nathan Robs a House,tt0119208 bwcLwZQGCAE,2009.0,10,10,2011,Double Identity,Dr. Nicholas Saves Katrine,tt1290400 gywGZDlDv7U,2009.0,7,10,2011,Double Identity,Jump When I Say,tt1290400 nH51jEGD7G8,2009.0,9,10,2011,Double Identity,Diamond Trade Gone Bad,tt1290400 sSkwCIpxqxU,2009.0,6,10,2011,Double Identity,I Like the Name Olivia,tt1290400 FxCpDJ1ZAo0,2009.0,8,10,2011,Double Identity,A Helping Stranger,tt1290400 NodMkxK5ndw,2009.0,5,10,2011,Double Identity,Train Station Escape,tt1290400 29vmOrsOjvM,2009.0,4,10,2011,Double Identity,A Rock Knockout,tt1290400 mYqUdiWcOok,2009.0,3,10,2011,Double Identity,Bury Him,tt1290400 SakCFLhbAJA,2008.0,2,9,2011,Cyborg Soldier,I.S.A.A.C.,tt1151928 tWmPkmMO-mo,2009.0,2,10,2011,Double Identity,A Proper Introduction,tt1290400 jfVzY0OTW1c,2009.0,1,10,2011,Double Identity,Out to Save the World Pick-Up Routine,tt1290400 X0NIR5-QiAM,2008.0,3,9,2011,Cyborg Soldier,A Cyborg Savior,tt1151928 BcRIvgk2USU,2008.0,9,9,2011,Cyborg Soldier,Human Nature,tt1151928 l4srSgqgncU,2008.0,6,9,2011,Cyborg Soldier,Nice to Meet You,tt1151928 B64yKhFe5Lw,2008.0,1,9,2011,Cyborg Soldier,I Will Not Comply,tt1151928 B00qOyB7CuE,2007.0,9,10,2011,Brave,Two Against One,tt0476964 2bMvW5QUMYk,2008.0,5,9,2011,Cyborg Soldier,No Questions,tt1151928 LZo51T6e928,2008.0,4,9,2011,Cyborg Soldier,Dead Drop,tt1151928 vpJbP-sA1gg,2008.0,8,9,2011,Cyborg Soldier,I'm Going to Fry Your Brain,tt1151928 o6bYgD2JDus,2007.0,10,10,2011,Brave,Final Showdown,tt0476964 giXrOAZtjaE,2007.0,8,10,2011,Brave,Deadly Weapons,tt0476964 E2kt9XttAzU,2008.0,7,9,2011,Cyborg Soldier,iStab,tt1151928 TURTkb6N_FA,2007.0,7,10,2011,Brave,Brothers At War,tt0476964 hBlhWP2N4j4,2007.0,6,10,2011,Brave,Chase at the Docks,tt0476964 Zr0xGlPjTHA,2007.0,5,10,2011,Brave,Rooftop Dead End,tt0476964 qCpSqCKBM-M,2007.0,4,10,2011,Brave,Army of One,tt0476964 1JyApnR4o9U,2007.0,3,10,2011,Brave,Brother Bomb,tt0476964 ylGIAp_-JK8,2007.0,2,10,2011,Brave,Fleeing the Scene,tt0476964 y2t3XqFAjt0,2007.0,1,10,2011,Brave,Wealthy Bank Heist,tt0476964 fCXWwJcplg0,2010.0,7,10,2011,Thirst,Poisoned Water,tt0762073 OxhtzzpoYBk,2010.0,10,10,2011,Thirst,Going to Be O.K.,tt0762073 -ikc2VldgSU,2010.0,9,10,2011,Thirst,Wake Up!,tt0762073 ZoFNL5lwimk,2010.0,8,10,2011,Thirst,Drink the Blood,tt0762073 zEdVDymxYQc,2010.0,4,10,2011,Thirst,Rattlesnake for Dinner,tt0762073 BQ42Z2UGeS4,2010.0,6,10,2011,Thirst,Bryan vs. The Wolf,tt0762073 DmBEdpsTwxc,2010.0,5,10,2011,Thirst,Eating Cacti,tt0762073 WX_9RZSjar8,2010.0,3,10,2011,Thirst,Primitive Brain Surgery,tt0762073 F6-7c3I_egQ,2010.0,2,10,2011,Thirst,I'm Pregnant,tt0762073 zYySG-Bwo1Q,2009.0,7,9,2011,High Kick Girl!,A Kick in the Head,tt1406157 b6W1FIgCADQ,2010.0,1,10,2011,Thirst,Rolling the Truck,tt0762073 4tKHdEaBlXw,2009.0,1,9,2011,High Kick Girl!,Girl vs. Dojo,tt1406157 kFJm_Gedi7k,2009.0,6,9,2011,High Kick Girl!,Give Her Back,tt1406157 WBMHd6mCSP4,2009.0,5,9,2011,High Kick Girl!,Can You Beat Me Up?,tt1406157 9cTHj9NKHXk,2009.0,2,9,2011,High Kick Girl!,Kata Practice,tt1406157 l6FPyq4wvuA,2006.0,10,10,2011,Wilderness,Not Good Enough,tt0480271 z_udbrboBXk,2006.0,9,10,2011,Wilderness,Killer's Lost It,tt0480271 8-IbFKbycv4,2006.0,8,10,2011,Wilderness,Bear Traps,tt0480271 wgmwBXh6ExI,2006.0,7,10,2011,Wilderness,D For Davie,tt0480271 VMqDBkf__xo,2006.0,5,10,2011,Wilderness,The Dogs,tt0480271 136NiOTy4Xo,2006.0,6,10,2011,Wilderness,Predator on the Loose,tt0480271 IOXtBc7CJI0,2006.0,4,10,2011,Wilderness,Jethro's End,tt0480271 mwE7hDBei2g,2006.0,3,10,2011,Wilderness,Native Murder,tt0480271 zySQRLbqyng,2006.0,2,10,2011,Wilderness,Lady Delinquents,tt0480271 4wvMWwwCRYU,2007.0,7,8,2011,When Nietzsche Wept,The Cruel Joke of Freedom,tt0760188 cSXgqTUqtOY,2007.0,8,8,2011,When Nietzsche Wept,,tt0760188 aDwNCyqgVA4,2006.0,1,10,2011,Wilderness,Knocked Out,tt0480271 -Fmvuy-4U_A,2007.0,6,8,2011,When Nietzsche Wept,Ten Insults,tt0760188 LAvuBfU6iSg,2007.0,5,8,2011,When Nietzsche Wept,Fear and Lust,tt0760188 rQvp_unbfFM,2007.0,4,8,2011,When Nietzsche Wept,The Story of Anna O.,tt0760188 2ZhQWROtg58,2007.0,3,8,2011,When Nietzsche Wept,Meltdown,tt0760188 8AUEcXu2krY,2007.0,2,8,2011,When Nietzsche Wept,Breuer's Dream,tt0760188 5gQUCqEQVLI,2007.0,1,8,2011,When Nietzsche Wept,God Is Dead,tt0760188 jei1Q_fP_Es,2007.0,5,6,2011,The Perfect Witness,The Urge to Kill,tt0489318 dEjdEoovBR4,2007.0,4,6,2011,The Perfect Witness,A Cut Above,tt0489318 H07ghIFjox8,2007.0,3,6,2011,The Perfect Witness,Playing the Victim,tt0489318 0u_qMyWIZU4,2007.0,2,6,2011,The Perfect Witness,What Are You Doing?,tt0489318 V2Sa7ey52f0,2007.0,1,6,2011,The Perfect Witness,Witnessing a Murder,tt0489318 bHSnlMlFC94,2005.0,7,9,2011,The River King,I'm Going to Make You Pay,tt0386751 MaRBZ90WDYo,2005.0,9,9,2011,The River King,See You Later,tt0386751 rt8L4_lD-_g,2005.0,8,9,2011,The River King,The Truth Revealed,tt0386751 QpBfwsw4OaE,2005.0,6,9,2011,The River King,Red Rose,tt0386751 8QZgJWf5aqg,2005.0,2,9,2011,The River King,The Last Night of His Life,tt0386751 psHsXebbbYo,2005.0,3,9,2011,The River King,Taking Pay-Offs,tt0386751 cJBjSpKIRWw,2005.0,1,9,2011,The River King,"Frozen River, Dead Body",tt0386751 6EUxC78eSjk,2005.0,5,9,2011,The River King,End of an Affair,tt0386751 M--q4JZp5lE,2005.0,4,9,2011,The River King,Photos and Sex,tt0386751 a6DTqXLuu_c,2006.0,9,10,2011,The Kovak Box,The Caves of Hell,tt0455584 pvni4Q-Xh7k,2006.0,8,10,2011,The Kovak Box,You Have to Kill Me,tt0455584 moiaW_zgh1c,2006.0,10,10,2011,The Kovak Box,Kill Me or She'll Die,tt0455584 7VV6BZWittk,2006.0,7,10,2011,The Kovak Box,The Implant,tt0455584 rsHK7n7hVBQ,2006.0,5,10,2011,The Kovak Box,All Wars Have Their Casualties,tt0455584 cgGJhEgDgIU,2006.0,6,10,2011,The Kovak Box,Gloomy Sunday,tt0455584 ea2fcCJ0_u0,2006.0,3,10,2011,The Kovak Box,Paralyzed,tt0455584 6cwIlJvjP6k,2006.0,4,10,2011,The Kovak Box,Cause of Death: Suicide,tt0455584 YdF7wSrLk-w,2006.0,1,10,2011,The Kovak Box,Masterpiece Needed,tt0455584 QuVUH1lm8NY,2006.0,2,10,2011,The Kovak Box,Monkey Movie,tt0455584 2wCqM6rbeWc,1997.0,7,10,2011,Strays,Tough Guy,tt0149171 5L-JTSGZQ4E,1997.0,8,10,2011,Strays,Bustin' Chops,tt0149171 F_EJsjP26cI,1997.0,2,10,2011,Strays,I Want to Change,tt0149171 0ynuAmC24_Y,1997.0,10,10,2011,Strays,Too Late,tt0149171 O3FndxKOnMA,1997.0,1,10,2011,Strays,Rejection,tt0149171 4qW5feZgSM8,1997.0,3,10,2011,Strays,Do You Shower?,tt0149171 qDyiygLEd38,1997.0,4,10,2011,Strays,Misjudged and Misread,tt0149171 T8QSGSX7joU,1997.0,5,10,2011,Strays,If I Only Had a Heart,tt0149171 OjxvPz5T7YY,1997.0,9,10,2011,Strays,The Difference Between You and Me,tt0149171 pr335ddgcuQ,1997.0,6,10,2011,Strays,Two Beautiful Strippers,tt0149171 HzAlqdHBZzs,2001.0,9,9,2011,Don't Tempt Me,The Final Verdict,tt0284491 o3NneX3NJ-I,2001.0,8,9,2011,Don't Tempt Me,The Escape,tt0284491 4BXpDgTVN2E,2001.0,7,9,2011,Don't Tempt Me,Attention All Customers,tt0284491 gtSXreFMPpc,2001.0,4,9,2011,Don't Tempt Me,The Stylish & the Sexy,tt0284491 a8DNOaAifkE,2001.0,6,9,2011,Don't Tempt Me,The Game is Changing,tt0284491 fGJIFMA09cE,2001.0,5,9,2011,Don't Tempt Me,The Weight of Manny's Soul,tt0284491 8sHaAvi0SJw,2001.0,3,9,2011,Don't Tempt Me,Angels & Demons,tt0284491 XdUKcQsnS4k,2001.0,2,9,2011,Don't Tempt Me,Operations Manager For Hell,tt0284491 M9JQBS2Km-Y,2001.0,1,9,2011,Don't Tempt Me,The Divine Trilemma,tt0284491 sguNMcMJQv8,2006.0,7,10,2011,Relative Strangers,Peak-a-Boo Carnival Company,tt0425395 vV3Utpy9vCI,2006.0,8,10,2011,Relative Strangers,The Holly Davis Show,tt0425395 qskwY84EXkw,2006.0,9,10,2011,Relative Strangers,A Ruined Man,tt0425395 1MJg1718M74,2006.0,10,10,2011,Relative Strangers,Family Forgiveness,tt0425395 qqATa_flYaI,2006.0,6,10,2011,Relative Strangers,A Game of Charades,tt0425395 _wfy0wdA2pQ,2006.0,5,10,2011,Relative Strangers,Meet the Biological Parents,tt0425395 CGX5n1pvu5s,2006.0,3,10,2011,Relative Strangers,The Cheese Ball,tt0425395 QkAHUSwy8Uc,2006.0,4,10,2011,Relative Strangers,Mysterious Medical History,tt0425395 MP7SCUB0fWU,2006.0,2,10,2011,Relative Strangers,Mr. & Mrs. Menure,tt0425395 fbc0TS1kJ5w,2006.0,1,10,2011,Relative Strangers,The Sociological Fantasy,tt0425395 eP7VXLIgaIs,2006.0,8,10,2011,Mr. Fix It,The Way You Look Tonight,tt0416051 xP_cM03sHgU,2006.0,3,10,2011,Mr. Fix It,The Plan to Become the Perfect Man,tt0416051 OjZadIbLAIE,2006.0,5,10,2011,Mr. Fix It,Not Wearing Any Panties,tt0416051 slW61xrU17E,2006.0,10,10,2011,Mr. Fix It,You've Allowed Me to be Me,tt0416051 JIhx0f2y25I,2006.0,7,10,2011,Mr. Fix It,Operation: Lie,tt0416051 vecXbFwYvPQ,2006.0,9,10,2011,Mr. Fix It,Ms. Fix It,tt0416051 BhtHFyjXaXU,2006.0,6,10,2011,Mr. Fix It,A Love Survey,tt0416051 iJ7r9jKl1so,2003.0,10,10,2011,Live Forever,The End of Britpop,tt0358569 zoFt-5SqUCs,2006.0,4,10,2011,Mr. Fix It,How Sophia Likes Her Men,tt0416051 7jj-8TCQTXc,2006.0,2,10,2011,Mr. Fix It,Samurai Sal,tt0416051 vjSMyoCFS_o,2003.0,9,10,2011,Live Forever,Part of the Party,tt0358569 IEVDBboDFcw,2003.0,7,10,2011,Live Forever,Wonderwall,tt0358569 TIccuJuQg3w,2003.0,8,10,2011,Live Forever,Taken for a Ride,tt0358569 OMzGVY5_gpc,2003.0,6,10,2011,Live Forever,Working Class and Middle Class,tt0358569 Vi5nIuJQVpM,2003.0,5,10,2011,Live Forever,Battle on the Charts,tt0358569 26-SvRLhthc,2003.0,2,10,2011,Live Forever,,tt0358569 on28B5qrgtY,2003.0,4,10,2011,Live Forever,Blur vs. Oasis,tt0358569 dRTxXWB-lpE,2003.0,3,10,2011,Live Forever,Tony Blair and Britpop,tt0358569 Y937MAvxTZI,2003.0,1,10,2011,Live Forever,Unspeakably Rubbish,tt0358569 TlnLO-nYFG0,2001.0,3,10,2011,Lawless Heart,Dr. Nick,tt0276276 oDNgxbWzpf8,2001.0,10,10,2011,Lawless Heart,Distracted Heart,tt0276276 49LrC8wJLPU,2001.0,2,10,2011,Lawless Heart,Bed Takeover,tt0276276 W6U80LM5b1U,2001.0,9,10,2011,Lawless Heart,I Didn't Have the Courage,tt0276276 _71L2__mFtE,2001.0,8,10,2011,Lawless Heart,Paths Collide,tt0276276 KKNUjL6oLeA,2001.0,7,10,2011,Lawless Heart,I'm Having a Party,tt0276276 Mw9Dc_MJF34,2001.0,6,10,2011,Lawless Heart,Sudden Sex,tt0276276 uHmd86pWvmY,2001.0,5,10,2011,Lawless Heart,Judy Meets Charlie,tt0276276 -BhFk_mOlxc,2001.0,4,10,2011,Lawless Heart,Nick and Charlie Meet Again,tt0276276 3ssOgE8RWSI,2006.0,1,10,2011,Journey to the End of the Night,Paul's Rampage,tt0454879 MLFezSJBdC8,2001.0,1,10,2011,Lawless Heart,Casual Sex,tt0276276 y935w17KA18,2006.0,5,10,2011,Journey to the End of the Night,I'm Cutting You Out,tt0454879 6EEradwg8aE,2006.0,8,10,2011,Journey to the End of the Night,Paul's Meltdown,tt0454879 -fIi-c3tSig,2006.0,10,10,2011,Journey to the End of the Night,Rodrigo Returns,tt0454879 Rn2_vtaTLM4,2006.0,7,10,2011,Journey to the End of the Night,Monique Meets Her Fate,tt0454879 CjYxp2UFfL0,2006.0,9,10,2011,Journey to the End of the Night,A Tragic End,tt0454879 6z6MpYHnbRc,2006.0,6,10,2011,Journey to the End of the Night,Chased by a Gunman,tt0454879 QPKFPLL4XQQ,2006.0,4,10,2011,Journey to the End of the Night,Shoot the Dog,tt0454879 xGN5cFcaD5A,2003.0,12,12,2011,Intolerable Cruelty,Wheezy Joe,tt0138524 a0uMay4ExT8,2006.0,3,10,2011,Journey to the End of the Night,Does My Wife Love Me?,tt0454879 SyM4ctfYzks,2003.0,10,12,2011,Intolerable Cruelty,Love Is Good,tt0138524 1H96OfI64Fs,2006.0,2,10,2011,Journey to the End of the Night,Wemba's Close Call,tt0454879 gFKba_Esjt0,2003.0,9,12,2011,Intolerable Cruelty,Doyle Eats the Prenup,tt0138524 KNiplLivjQI,2003.0,7,12,2011,Intolerable Cruelty,The Urge to Wedlock,tt0138524 jGCY8thosNw,2003.0,11,12,2011,Intolerable Cruelty,I'm a Patsy,tt0138524 dcsVnpHXXX0,2003.0,8,12,2011,Intolerable Cruelty,You Fascinate Me,tt0138524 Zz-mpgYNUW8,2003.0,6,12,2011,Intolerable Cruelty,The Senior Partner,tt0138524 YgdWrHFx0I0,2003.0,1,12,2011,Intolerable Cruelty,I'll Take the Case,tt0138524 IkQ_uPNWp28,2003.0,4,12,2011,Intolerable Cruelty,Carnivores,tt0138524 6PpQk63iIWw,2003.0,3,12,2011,Intolerable Cruelty,It's a Negotiation,tt0138524 82TS-sLA0P0,2003.0,2,12,2011,Intolerable Cruelty,The Ass Nailer,tt0138524 FNLQdquN0-I,2005.0,10,10,2011,Her Minor Thing,Intercom Love Profession,tt0417751 I1L5vXswv0Y,2005.0,9,10,2011,Her Minor Thing,The Compromise,tt0417751 GrG6AZG-ZOQ,2005.0,8,10,2011,Her Minor Thing,You Guys Know Each Other?,tt0417751 YiMIAKXwHg4,2005.0,7,10,2011,Her Minor Thing,Jeana Speaks Her Mind,tt0417751 sR22u1bgrog,2005.0,6,10,2011,Her Minor Thing,I'm In Love With Her,tt0417751 qTUAF-_v55o,2005.0,3,10,2011,Her Minor Thing,Zsa Zsa,tt0417751 lcDo8iV-rPg,2005.0,4,10,2011,Her Minor Thing,Jeana Cops an Attitude,tt0417751 Khjlz5bMb2E,2005.0,5,10,2011,Her Minor Thing,Men Are Such Men,tt0417751 vZW4Qk-wqlg,2005.0,2,10,2011,Her Minor Thing,I'm Not Going,tt0417751 GC_ehA6dd_I,2005.0,1,10,2011,Her Minor Thing,My Girlfriend is a Virgin,tt0417751 sqpSc2wwTaE,2006.0,1,10,2011,Half Light,Come Be With Me,tt0412798 6AW4O4ohXK0,2006.0,10,10,2011,Half Light,The Ghost of Angus,tt0412798 Fe2CpAhZ9w4,2006.0,6,10,2011,Half Light,Romance,tt0412798 pl3Oay3HDo8,2006.0,9,10,2011,Half Light,She's Awake!,tt0412798 Z_9GcqiwxF4,2006.0,7,10,2011,Half Light,Angus is Dead,tt0412798 V6aDrQg-WVU,2006.0,8,10,2011,Half Light,He's Right Behind You,tt0412798 W51M5otbulY,2006.0,5,10,2011,Half Light,From Grief to Love,tt0412798 PJjFb1RSFdw,2006.0,2,10,2011,Half Light,Lighthouse Lunch Date,tt0412798 ExGQSMWhujY,2006.0,4,10,2011,Half Light,Psychic Mumbo-Jumbo,tt0412798 tQPd0OAV7yk,2006.0,3,10,2011,Half Light,Atop the Lighthouse,tt0412798 UL-ot8sR0P8,2003.0,9,10,2011,Gang of Roses,Time to Die,tt0339091 wANxoR0GtCs,2003.0,7,10,2011,Gang of Roses,The Pocket Watch,tt0339091 MOO9hFCMw7Y,2003.0,8,10,2011,Gang of Roses,I Missed on Purpose,tt0339091 Z_OVcsaEOXA,2003.0,6,10,2011,Gang of Roses,Deadly Game of Poker,tt0339091 HueqqIRaOQA,2003.0,10,10,2011,Gang of Roses,Rachel's Revenge,tt0339091 r9RIcLpGaHY,2003.0,4,10,2011,Gang of Roses,Riding Into Town,tt0339091 mVNG6xFwq2M,2003.0,5,10,2011,Gang of Roses,10 Is Less Painful Than 9,tt0339091 ub-t6RcoeTU,2003.0,3,10,2011,Gang of Roses,"You Feel Me, Baby?",tt0339091 ODZ_xokDAc8,2003.0,1,10,2011,Gang of Roses,Shot Dead in the Street,tt0339091 KqAGFmus6_M,2003.0,2,10,2011,Gang of Roses,The Sex and the Loot,tt0339091 inmQqyn5fhE,1995.0,10,10,2011,Fist of the North Star,Defeating the Dark Lord,tt0113074 J2k2CQgmaWo,1995.0,9,10,2011,Fist of the North Star,Down But Not Out,tt0113074 ecuuc8AsMjg,1995.0,7,10,2011,Fist of the North Star,Any More Heroes?,tt0113074 XHiFqBo1rWI,1995.0,6,10,2011,Fist of the North Star,A Fistful of Torture,tt0113074 MOuSrB5BYJM,1995.0,8,10,2011,Fist of the North Star,One Against Many,tt0113074 lrZAnOGjydo,1995.0,3,10,2011,Fist of the North Star,Hit Me!,tt0113074 LPe-N0frxvU,1995.0,4,10,2011,Fist of the North Star,Who Are You?,tt0113074 RQmCVPN6V-s,2007.0,9,9,2011,First Born,Witchcraft,tt0470761 MUVukUuF9tw,1995.0,2,10,2011,Fist of the North Star,Genuine Bad Ass,tt0113074 vA8oTgiA5WI,1995.0,1,10,2011,Fist of the North Star,Sounds Like Motorcycles,tt0113074 Yrph2A1xc94,2007.0,7,9,2011,First Born,Vaginal Bleeding,tt0470761 bB-OwUZc-cE,2007.0,8,9,2011,First Born,The Nanny,tt0470761 Fsy3TtA-3NI,2007.0,5,9,2011,First Born,I'm Sorry,tt0470761 6KgxpUSWsoA,2007.0,6,9,2011,First Born,A Mother's Soul,tt0470761 IthpPqgEteI,2007.0,4,9,2011,First Born,Trapped in the Basement,tt0470761 yBrv-a6Nxuk,2007.0,1,9,2011,First Born,I'm Pregnant,tt0470761 L0oNukxzH4o,2007.0,3,9,2011,First Born,Bad Breast Milk,tt0470761 XiYDPHi7Acw,2002.0,7,9,2011,Dirty Deeds,Busted,tt0280605 SJhnQPZtv0M,2007.0,2,9,2011,First Born,New Home,tt0470761 FptZhFrVXAY,2002.0,6,9,2011,Dirty Deeds,Shoot Him,tt0280605 11nfPZqT5c0,2002.0,4,9,2011,Dirty Deeds,Wasting Your Life,tt0280605 zAge7cKvs9s,2002.0,1,9,2011,Dirty Deeds,Darcy Proves Himself,tt0280605 h1UDUqeJh0Q,2002.0,2,9,2011,Dirty Deeds,The Nature of the Business,tt0280605 PJeobOT-LGk,2002.0,3,9,2011,Dirty Deeds,I Want You to Stay,tt0280605 iucMQPRSNDg,2002.0,9,9,2011,Dirty Deeds,What's a Bloody Pizza?,tt0280605 56fdoTQTfuE,2002.0,5,9,2011,Dirty Deeds,I Was You Ten Years Ago,tt0280605 1Wk9V6yqmZE,2002.0,8,9,2011,Dirty Deeds,I Can't Let You Walk Away,tt0280605 0bhCbZG80HE,2008.0,4,9,2011,Black Ops,A Good Ol' Smoke,tt0914364 1LDL6H_on2g,2008.0,5,9,2011,Black Ops,The Ultimate Killing Machine,tt0914364 VfrbOQ4q_Bc,2008.0,7,9,2011,Black Ops,Gunther Neumann Rampage,tt0914364 9qzxNMENXJE,2008.0,2,9,2011,Black Ops,Interrogating a Terrorist,tt0914364 lnNbDaNP-yg,2008.0,6,9,2011,Black Ops,Oh Sh**!,tt0914364 08_UIVttBK4,2008.0,8,9,2011,Black Ops,High Voltage,tt0914364 XFYNHsSzMOo,2008.0,3,9,2011,Black Ops,The Cook Dies First,tt0914364 N6pHjvoxDI0,2002.0,10,10,2011,Crazy as Hell,The Revelation,tt0285487 Cra_JviE1sk,2002.0,8,10,2011,Crazy as Hell,Mind Over Matter,tt0285487 mefq68nHSMk,2008.0,1,9,2011,Black Ops,The Great Persian Gulf Massacre,tt0914364 -9FxcS46YmE,2002.0,9,10,2011,Crazy as Hell,Suicide Attempt,tt0285487 IAx_10MJbfE,2008.0,9,9,2011,Black Ops,The Evil is Destroyed,tt0914364 OB_iV-135-k,2002.0,6,10,2011,Crazy as Hell,Personal Beliefs,tt0285487 BuoqHpvCzq8,2002.0,7,10,2011,Crazy as Hell,Lord of Darkness,tt0285487 moxAGYR4nYY,2002.0,5,10,2011,Crazy as Hell,Therapy For the Devil,tt0285487 qMthVugT2wo,2002.0,4,10,2011,Crazy as Hell,Meeting Satan,tt0285487 IOECGWT9KwE,2002.0,3,10,2011,Crazy as Hell,The Film Crew,tt0285487 1VXH6jctlV8,2002.0,2,10,2011,Crazy as Hell,A Lively Bunch,tt0285487 AAmxzswlvIE,2002.0,1,10,2011,Crazy as Hell,Pop Psychology,tt0285487 NIOWsdgnNiI,2003.0,5,9,2011,National Lampoon's Blackball,Bad Boy Diet Coke,tt0337879 wm0fKKHMUJI,2003.0,9,9,2011,National Lampoon's Blackball,Trust the Wood,tt0337879 sBACvIGmLh0,2003.0,8,9,2011,National Lampoon's Blackball,Back in the Ballin' Groove,tt0337879 tLujRN5bxVA,2003.0,7,9,2011,National Lampoon's Blackball,Bad Boy Nerves,tt0337879 uzDmyicwgnM,2003.0,6,9,2011,National Lampoon's Blackball,Six Pace Mistake,tt0337879 U7D-kOB7-PU,2003.0,4,9,2011,National Lampoon's Blackball,Meet Our New Agent,tt0337879 ZqOF2mZJ9t0,2003.0,3,9,2011,National Lampoon's Blackball,Mr. Speight is a Tosser,tt0337879 FDfUBxkDaWc,2003.0,2,9,2011,National Lampoon's Blackball,Alan the Pipe,tt0337879 3e7JKCUfrpo,2003.0,1,9,2011,National Lampoon's Blackball,Is It On the Condom?,tt0337879 Ly2Hr9qqp9M,2008.0,9,9,2011,Kill Switch,Now You Look Dead,tt5464234 CRuiuuKONUQ,2008.0,7,9,2011,Kill Switch,Beat You Silly,tt5464234 JAG9oylpNiY,2008.0,8,9,2011,Kill Switch,Breaking Bones,tt5464234 PYTXPrmSwmc,2008.0,6,9,2011,Kill Switch,Cannibals & Clowns,tt5464234 BAG_EkEcofI,2008.0,1,9,2011,Kill Switch,One Hillbilly Out the Window,tt5464234 O5ExjpCtg0I,2008.0,4,9,2011,Kill Switch,Batter Up !,tt5464234 zGDk38z2mbE,2008.0,2,9,2011,Kill Switch,All Work and No Play,tt5464234 e8KqmFe953I,2008.0,3,9,2011,Kill Switch,Talk to my Fists,tt5464234 CdwdX5PxF9Q,2008.0,5,9,2011,Kill Switch,You Knocked My Teeth Out,tt5464234 WSFqs9iugBI,2006.0,8,10,2011,Priceless,Goodbye Kiss Scene,tt0482088 RWS6EzAkSiU,2006.0,5,10,2011,Priceless,Awkward Breakfast Scene,tt0482088 De9FeSg3WTc,2006.0,4,10,2011,Priceless,Paying for It Scene,tt0482088 LdEwXHHohHs,2006.0,2,10,2011,Priceless,Happy Birthday Scene,tt0482088 anAmUhhnwUk,2006.0,3,10,2011,Priceless,I Left It All for You Scene,tt0482088 l-EWc6AcPvQ,2006.0,1,10,2011,Priceless,Lonely Birthday Scene,tt0482088 mtWSL_-mJaI,2006.0,10,10,2011,Priceless,The Last Euro Scene,tt0482088 f1gNWDY4gUM,2006.0,9,10,2011,Priceless,Can't Be Bought Scene,tt0482088 GkM4SQ--vss,2006.0,7,10,2011,Priceless,The Mysteries of Womanhood Scene,tt0482088 tSrLgG6rOrs,2006.0,6,10,2011,Priceless,A Little Shopping Scene,tt0482088 MFd88DSTPgI,2008.0,8,9,2011,"Definitely, Maybe",The Happy Ending Is You,tt0832266 KJFbhzrJxg4,2008.0,5,9,2011,"Definitely, Maybe",A Terribly Timed Proposal,tt0832266 7OXf2fFCRB0,2008.0,9,9,2011,"Definitely, Maybe",Final Countdown for April,tt0832266 Fg9aUVqD1K0,2008.0,7,9,2011,"Definitely, Maybe",Maya Solves the Mystery,tt0832266 uE-l84hG_BE,2008.0,6,9,2011,"Definitely, Maybe",A Drunken Love Confession,tt0832266 GARQJHyaBD0,2008.0,4,9,2011,"Definitely, Maybe",Definitely...Maybe,tt0832266 804UN9XPV44,2008.0,3,9,2011,"Definitely, Maybe",Smoke-Off,tt0832266 QOgqUHk-zDY,1973.0,10,10,2011,American Graffiti,Drag Race at Paradise Road,tt0069704 J_oIvRfVXoA,2008.0,2,9,2011,"Definitely, Maybe",Summer's Diary,tt0832266 99z-H_NEccU,1973.0,9,10,2011,American Graffiti,Wolfman Jack,tt0069704 GkPbF_FJuho,2008.0,1,9,2011,"Definitely, Maybe",April the Copy Girl,tt0832266 z2OoxzYqgNY,1973.0,7,10,2011,American Graffiti,Must Be Your Mama's Car,tt0069704 CgZTVkjQwto,1973.0,8,10,2011,American Graffiti,Pharaohs and the Cop Car,tt0069704 7Z1PBPrjZPQ,1973.0,5,10,2011,American Graffiti,Water Balloon Prank,tt0069704 -SKfkvvtqN0,1973.0,2,10,2011,American Graffiti,Wanna Go For A Ride?,tt0069704 6e3dn30X5D4,1973.0,6,10,2011,American Graffiti,Toad Gets Lucky,tt0069704 7GLhXtUgUg4,1973.0,4,10,2011,American Graffiti,"This Is My Cousin, Carol",tt0069704 j1q-QWHUU0g,1973.0,3,10,2011,American Graffiti,A Snowball Dance,tt0069704 L8TDBSlgFAw,1973.0,1,10,2011,American Graffiti,The Most Perfect Dazzling Creature Ever,tt0069704 4Te3H4lBaBo,1999.0,9,9,2011,Man on the Moon,"A Friendly, Friendly World",tt0125664 NlqESIU9i3E,2009.0,8,8,2011,Command Performance,How Does It Feel?,tt1210801 301qydVqZzM,2009.0,7,8,2011,Command Performance,Blood for Blood,tt1210801 9yoRcn3UcyU,2009.0,6,8,2011,Command Performance,Venus Escapes,tt1210801 DaR6i1hQWfo,2009.0,3,8,2011,Command Performance,Death by Feedback,tt1210801 QunxdSWz-Go,2009.0,5,8,2011,Command Performance,Nice Shootin',tt1210801 mBLotJEfjDg,2009.0,4,8,2011,Command Performance,Silent But Deadly,tt1210801 ZVpdb1HxgEY,2009.0,2,8,2011,Command Performance,"Watch the Hair, Dude",tt1210801 B7t6KoVULDQ,2009.0,1,8,2011,Command Performance,It Pays the Rent,tt1210801 jTLsI2Z9GiA,2011.0,6,-1,2011,Larry Crowne,Thanks for Keeping Our Secret,tt1583420 --jPdm57jQs,2011.0,4,-1,2011,Larry Crowne,New Threads,tt1583420 RBBmO8dhn-I,2011.0,5,-1,2011,Larry Crowne,I Got a Tattoo,tt1583420 yidXeyTFM48,2011.0,3,-1,2011,Larry Crowne,The GPS Pro,tt1583420 fgq8TsyNTXM,2011.0,2,-1,2011,Larry Crowne,This Class is Cancelled,tt1583420 5nvZCMkXEFw,2011.0,1,-1,2011,Larry Crowne,Never Too Old to Learn,tt1583420 zjwBNUXCA-M,2010.0,6,10,2011,Robin Hood,The Runaways,tt0955308 SmfPtEWejs8,2010.0,9,10,2011,Robin Hood,Village Rescue,tt0955308 xTvdOjsJXRY,2010.0,5,10,2011,Robin Hood,You Must Tell The King,tt0955308 FbmnqGqWgc8,2010.0,10,10,2011,Robin Hood,Beach Battle,tt0955308 clr6zsehoTg,2010.0,2,10,2011,Robin Hood,Queen in the Making,tt0955308 if34bKbBqXI,2010.0,8,10,2011,Robin Hood,Power From the Ground Up,tt0955308 H07DuZQ-rLQ,2010.0,7,10,2011,Robin Hood,Until Lambs Become Lions,tt0955308 n75PgMSxAOw,2010.0,1,10,2011,Robin Hood,Storming the Castle,tt0955308 S44FXSiI--Q,2010.0,3,10,2011,Robin Hood,Share My Chamber,tt0955308 wnfHqnaM0yI,2010.0,4,10,2011,Robin Hood,Robbing the Rich,tt0955308 _wpGttPSHdE,1999.0,7,9,2011,Man on the Moon,David Letterman,tt0125664 VKbyotjwcDw,1999.0,8,9,2011,Man on the Moon,A Night at Carnegie Hall,tt0125664 DdGZ4WYTdHM,1999.0,5,9,2011,Man on the Moon,Wrestling Women,tt0125664 1ePe7Q_zH1c,1999.0,3,9,2011,Man on the Moon,Tony Clifton,tt0125664 HurQLHiIVcw,1999.0,6,9,2011,Man on the Moon,A Fight on Live TV,tt0125664 3Tqgp93zs3Y,1999.0,2,9,2011,Man on the Moon,Mighty Mouse is on the Way,tt0125664 lm7nrQTysm4,1999.0,4,9,2011,Man on the Moon,Tony Gets Fired,tt0125664 jx8KlhQBsvQ,1999.0,1,9,2011,Man on the Moon,The Elvis Presley,tt0125664 oIC-A9h4cfQ,2004.0,8,9,2011,White Coats,Christmas Party Gone Wild,tt0367232 9nabHwRMjcE,2004.0,7,9,2011,White Coats,Naughty Nurse Tawny,tt0367232 332NO4_03vU,2004.0,1,9,2011,White Coats,Malibu Mindy,tt0367232 oVzqiDMOlms,2004.0,3,9,2011,White Coats,You're a Doctor?,tt0367232 0cPmlvsRKhw,2004.0,5,9,2011,White Coats,The Cleaning Lady Is a Murderer,tt0367232 YVrMyqmDg3g,2004.0,6,9,2011,White Coats,John Doe #5,tt0367232 GfhTEwz56do,2004.0,4,9,2011,White Coats,STD's and Colostomy Bags,tt0367232 bbuElXPp_s8,2004.0,2,9,2011,White Coats,Filthy Mouth,tt0367232 SF887rPCz_A,2004.0,9,9,2011,White Coats,Organ Fight,tt0367232 GBV01HnuTz8,2004.0,2,10,2011,Direct Action,The Big Picture,tt0368688 Epo3jDg5skM,2004.0,10,10,2011,Direct Action,I've Got Some Justice For You!,tt0368688 PBObihCz2L4,2004.0,9,10,2011,Direct Action,Double Cross Double Down,tt0368688 OtCu9saoxeU,2004.0,8,10,2011,Direct Action,Hostage Rescue,tt0368688 PJFA-emTgT0,2004.0,7,10,2011,Direct Action,I'm Here to Help You,tt0368688 U4iAA0B9fJU,2004.0,5,10,2011,Direct Action,Army of Two,tt0368688 R5b0a3b6XkE,2004.0,6,10,2011,Direct Action,Gannon Kicks Some Ass,tt0368688 KBh1vdpGWhE,2004.0,10,10,2011,The Motorcycle Diaries,Swimming Across the Amazon,tt0318462 yFWgaAX2tCU,2004.0,3,10,2011,Direct Action,You Are Not Untouchable,tt0368688 gZwxRw15AdE,2004.0,1,10,2011,Direct Action,You Want to Apologize?,tt0368688 SG4I8PHp880,2003.0,6,7,2011,Crime Spree,Raymond's Revenge,tt0310924 eKHYnWepyRU,2004.0,4,10,2011,Direct Action,Tased and Kidnapped,tt0368688 OBd1rEo-iyM,2006.0,6,10,2011,Danika,Heads Up,tt0469062 hVZ0Y8l14M4,2006.0,5,10,2011,Danika,What's a C***?,tt0469062 ksJuTetxrDc,2006.0,1,10,2011,Danika,What's Wrong With You?,tt0469062 js-337d3gqQ,2006.0,2,10,2011,Danika,Like a Good Neighbor,tt0469062 9ekHf_EMmSk,2006.0,4,10,2011,Danika,Visions From the Past,tt0469062 CZ1wzoCOQ-Y,2006.0,8,10,2011,Danika,"Drugs, Sex, and STDs",tt0469062 ji8ZM5nKsik,2006.0,3,10,2011,Danika,Alone in the Mall,tt0469062 R8Oo8hf_n9w,2006.0,7,10,2011,Danika,PTA Meeting,tt0469062 LhVNDhQKhJw,2003.0,5,7,2011,Crime Spree,Nobody's That Fast,tt0310924 Y4u6gpp399U,2003.0,7,7,2011,Crime Spree,Hotel Shootout,tt0310924 hjoORS_zVWE,2006.0,10,10,2011,Danika,Blindsided,tt0469062 IEDhXioCYdc,2006.0,9,10,2011,Danika,Stay Away From My Kids!,tt0469062 bU6ZsvCba7c,2003.0,4,7,2011,Crime Spree,Prank Call,tt0310924 OLjVIg8OTNI,2003.0,3,7,2011,Crime Spree,A Big Mistake,tt0310924 PTCMc9G3bcQ,2003.0,2,7,2011,Crime Spree,Men of Honor,tt0310924 8sQfEoUNxRo,2003.0,1,7,2011,Crime Spree,Where's the Painting?,tt0310924 7BapYJuMHMI,2005.0,9,9,2011,Dirty Love,Girls Night Out,tt0327643 QCqdeiTnnTU,2002.0,2,8,2011,Desert Saints,You Can Call Me Joe,tt0167116 9_OMUgTFQhw,2005.0,7,9,2011,Dirty Love,Maxi-Pad Time,tt0327643 EC64kf5_Ldc,2002.0,1,8,2011,Desert Saints,Paradise or Bust,tt0167116 qcZk7ketB4Y,2005.0,8,9,2011,Dirty Love,A Body Cavity Search,tt0327643 IEcxOcj3LGA,2005.0,5,9,2011,Dirty Love,Ecstasy-Laced Acid,tt0327643 65nUs0FyUys,2005.0,4,9,2011,Dirty Love,A Fashion Show Date,tt0327643 cqzRb7sAL9Y,2005.0,6,9,2011,Dirty Love,Touch My Bass,tt0327643 Ls8-mu4kDpo,2005.0,1,9,2011,Dirty Love,Oh My God!,tt0327643 YNdZAZ-SPX4,2005.0,2,9,2011,Dirty Love,The Palm Reader,tt0327643 ypmu86_sKpU,2004.0,9,10,2011,The Motorcycle Diaries,To a United South America,tt0318462 wyUDbbWIXS0,2005.0,3,9,2011,Dirty Love,Slapped,tt0327643 xKpYBStDLVA,2004.0,7,10,2011,The Motorcycle Diaries,Brutally Honest,tt0318462 OTfb7n61HIQ,2004.0,4,10,2011,The Motorcycle Diaries,"Repairing ""The Mighty One""",tt0318462 oOeGE7z8PAk,2004.0,5,10,2011,The Motorcycle Diaries,Hustling for Food and Shelter,tt0318462 OEgLZ58Xe0Y,2004.0,3,10,2011,The Motorcycle Diaries,Diagnosing a Tumor,tt0318462 gL0Ph_x8xmg,2004.0,6,10,2011,The Motorcycle Diaries,Traveling Just to Travel,tt0318462 qSLZflG9sUw,2004.0,1,10,2011,The Motorcycle Diaries,Don't Take Forever,tt0318462 MiT3ky_83Vo,2004.0,2,10,2011,The Motorcycle Diaries,Looking For Shelter,tt0318462 QWlbUhsTD4c,2004.0,8,10,2011,The Motorcycle Diaries,Alberto Meets Luz,tt0318462 2FtBOS5575I,2002.0,5,8,2011,Desert Saints,Capped on the Crapper,tt0167116 1fbxiPh8RoY,2002.0,8,8,2011,Desert Saints,Goodbye Banks,tt0167116 cLjX-SEPnR8,2002.0,7,8,2011,Desert Saints,Assassination Attempt,tt0167116 FNWBoJNTc1w,2002.0,6,8,2011,Desert Saints,Lost on the Highway,tt0167116 WpOPOQw6nqg,2002.0,4,8,2011,Desert Saints,"Out of Insulin, Out of Bullets",tt0167116 rC0lnrzU0jk,2002.0,3,8,2011,Desert Saints,Humping the Dough,tt0167116 rNAXkGt7rFA,1999.0,10,10,2011,The Hurricane,Rubin Is Freed,tt0174856 D60dQGS_qNE,1999.0,6,10,2011,The Hurricane,So Glad I Met You,tt0174856 wFPtFkZHpBE,1999.0,9,10,2011,The Hurricane,Rubin's Final Plea,tt0174856 nQkiJT2MR4w,1999.0,8,10,2011,The Hurricane,Take It to the Federal Court!,tt0174856 4MzZD9mNlww,1999.0,5,10,2011,The Hurricane,is Robbed,tt0174856 aHlMCu3-R3I,1999.0,7,10,2011,The Hurricane,In This Together,tt0174856 HzWikU7ir4Y,1999.0,3,10,2011,The Hurricane,Why'd You Do All That?,tt0174856 FPIgb9k3cUo,1999.0,2,10,2011,The Hurricane,Turning Into a Weapon,tt0174856 b9T64w0cdDA,1999.0,4,10,2011,The Hurricane,Defeats Cooper,tt0174856 g5Gb7V5-pts,1999.0,1,10,2011,The Hurricane,Framing Rubin,tt0174856 9pl_3xQBPLk,2011.0,5,-1,2011,Bridesmaids,Air Marshal Style,tt1478338 1nqF0ddDc8I,2009.0,4,10,2011,Brüno,Bruno Visits a Psychic,tt0889583 kV1j2VYi7ho,2009.0,8,10,2011,Brüno,Dildo Self-Defense,tt0889583 9da9FqZc8DU,2009.0,10,10,2011,Brüno,Give Women a Chance,tt0889583 sc3H4UkkZgk,2009.0,3,10,2011,Brüno,Mexican Chair People,tt0889583 36p5Jk_y16Q,2009.0,2,10,2011,Brüno,Becoming a Hollywood Star,tt0889583 OhGVVnZZW5o,2009.0,1,10,2011,Brüno,Bruno's Velcro Suit,tt0889583 ik4LH5ksOn8,2009.0,5,10,2011,Brüno,Healing the Middle East,tt0889583 yVRv5u36Huw,2009.0,6,10,2011,Brüno,The Hottest Baby Photo Shoot,tt0889583 0ofpRxc0GVg,2009.0,7,10,2011,Brüno,Baby O.J.,tt0889583 kq6E2hQ20wc,2009.0,9,10,2011,Brüno,Spicing Up The Uniform,tt0889583 RLUhwGLJhsI,1991.0,4,11,2011,Backdraft,Tim and the,tt0101393 kewajS6fh3Q,2008.0,5,10,2011,Stiletto,Restaurant Rampage,tt1027747 rRbF5cPxVIc,2006.0,5,10,2011,The Breed,Thwarted Getaway,tt0455362 smxGSlqjZNk,2004.0,2,10,2011,Bridget Jones: The Edge of Reason,Jellyfisher Alert,tt0317198 G0aJ4C7y9Qc,2009.0,10,10,2011,The Assassin Next Door,Bus Shootout,tt1198153 pwkzSfo-JA0,2009.0,9,10,2011,The Assassin Next Door,A Shame to Waste You,tt1198153 qU5QbKnQHak,2009.0,8,10,2011,The Assassin Next Door,I'm No Sucker,tt1198153 H0UbjaTkx04,2009.0,7,10,2011,The Assassin Next Door,Under Fire,tt1198153 fpdnG6Fm3LY,2009.0,5,10,2011,The Assassin Next Door,Galia's Gun,tt1198153 dMg7mCGd3js,2010.0,6,10,2011,Suicide Girls Must Die!,Not From Around Here,tt1584733 vinDi5O-fu0,2009.0,4,10,2011,The Assassin Next Door,Finish the Job,tt1198153 _eqtVKrH-f4,2009.0,6,10,2011,The Assassin Next Door,Shooting Lessons,tt1198153 _jDLZyo3Kg0,2010.0,10,10,2011,Suicide Girls Must Die!,A Hoax,tt1584733 oCayZiKmJBE,2009.0,3,10,2011,The Assassin Next Door,Club Kill,tt1198153 Cg5acxVn2KI,2010.0,8,10,2011,Suicide Girls Must Die!,Wrap Party,tt1584733 jocK7m_000U,2009.0,2,10,2011,The Assassin Next Door,First Hit,tt1198153 3jtF8hfimrA,2009.0,1,10,2011,The Assassin Next Door,On the Run,tt1198153 dX-C-8rzN7I,2010.0,9,10,2011,Suicide Girls Must Die!,Last Girl Standing,tt1584733 hyFgMOop-Mc,2010.0,7,10,2011,Suicide Girls Must Die!,Found Footage,tt1584733 QR424o5Wch0,2010.0,5,10,2011,Suicide Girls Must Die!,Fractal Goes Missing,tt1584733 wRRvq70yOt0,2010.0,3,10,2011,Suicide Girls Must Die!,Grave Robbing,tt1584733 YV-Ik4q-o4k,2010.0,1,10,2011,Suicide Girls Must Die!,Trouble With the Law,tt1584733 Zer3Rr4CwjE,2010.0,4,10,2011,Suicide Girls Must Die!,Ghost Stories,tt1584733 HoW8jQX83Fw,2010.0,2,10,2011,Suicide Girls Must Die!,Shooting a Bear,tt1584733 LO2Ej4_42xY,2006.0,10,10,2011,The Breed,Need a Ride?,tt0455362 j8Zucea5rlY,2006.0,9,10,2011,The Breed,Give Cujo My Best,tt0455362 rOOymP2hx_c,2006.0,3,10,2011,The Breed,They Don't Want You Here,tt0455362 CCicXUbaalU,2006.0,8,10,2011,The Breed,Get Out of My House,tt0455362 qhMhfHHeT_g,2006.0,7,10,2011,The Breed,Jump Start,tt0455362 l9MW39UXFmU,2006.0,4,10,2011,The Breed,Run to the House,tt0455362 CsZUGoa3JHc,2007.0,10,10,2011,Hot Fuzz,Get Out of My Village!,tt0425112 4VJrMSbPe00,2006.0,6,10,2011,The Breed,Into the Attic,tt0455362 Ld6pt1jNCRw,2006.0,1,10,2011,The Breed,Deadly Discovery,tt0455362 lD6hI1yKd7w,2006.0,2,10,2011,The Breed,First Bite,tt0455362 CmkT8YU4jH8,2007.0,9,10,2011,Hot Fuzz,Here Come the Fuzz,tt0425112 pcV9ceH4UvE,2007.0,8,10,2011,Hot Fuzz,Mindless Violence,tt0425112 AMT2RwFFs_g,2007.0,7,10,2011,Hot Fuzz,The Battle for Sandford Begins,tt0425112 BavTQmiA9mc,2007.0,5,10,2011,Hot Fuzz,Kill the Messenger,tt0425112 faMh6OYfuNE,2007.0,1,10,2011,Hot Fuzz,Good Luck Nicholas,tt0425112 Cun-LZvOTdw,2007.0,4,10,2011,Hot Fuzz,Sea Mine,tt0425112 8QJiAK-s5a0,1996.0,8,9,2011,Happy Gilmore,"The Price Is Wrong, Bitch",tt0116483 7BwxSHs9elk,1996.0,9,9,2011,Happy Gilmore,Happy's Short Game,tt0116483 fuEG_PSb_Ts,2007.0,2,10,2011,Hot Fuzz,Fence Jumping,tt0425112 8qaAKxJp0EM,1996.0,6,9,2011,Happy Gilmore,Happy Goes Ballistic,tt0116483 3dluAhOU1cA,1996.0,5,9,2011,Happy Gilmore,Quilting Sweatshop,tt0116483 ir1sVy9JLyo,2007.0,6,10,2011,Hot Fuzz,Narp?,tt0425112 0-lcqIuVaR8,2007.0,3,10,2011,Hot Fuzz,The Shortest Police Chase,tt0425112 VyydT8dy3Hs,1996.0,4,9,2011,Happy Gilmore,The Waterbury Open,tt0116483 qDR_yTik_xo,1996.0,3,9,2011,Happy Gilmore,Chubbs Sees Pro Material,tt0116483 GP1KHL0j0GU,1996.0,7,9,2011,Happy Gilmore,Rhyming with Shooter,tt0116483 0u5O2--9www,1996.0,1,9,2011,Happy Gilmore,Cut and Dumped,tt0116483 z7coL1WcCoI,1996.0,2,9,2011,Happy Gilmore,This Place Is Perfect,tt0116483 S501ojiA52c,2004.0,9,10,2011,Bridget Jones: The Edge of Reason,I've Always Loved You,tt0317198 MGwI25DNrHU,2004.0,10,10,2011,Bridget Jones: The Edge of Reason,Will You Marry Me?,tt0317198 dwykptqZBj0,2004.0,8,10,2011,Bridget Jones: The Edge of Reason,Rebecca's Confession,tt0317198 GTCKAy3buxo,2004.0,5,10,2011,Bridget Jones: The Edge of Reason,"Bridget's ""Pregnant"" Pause",tt0317198 kDeUWLhm-0g,2004.0,7,10,2011,Bridget Jones: The Edge of Reason,First Class Rescue,tt0317198 j6oHprwdTeA,2004.0,6,10,2011,Bridget Jones: The Edge of Reason,Turning Down The Job,tt0317198 LIIzjJjsW8s,2004.0,4,10,2011,Bridget Jones: The Edge of Reason,Please Don't Chuck Me,tt0317198 Z743dOLiGQI,2004.0,3,10,2011,Bridget Jones: The Edge of Reason,Shag Therapy,tt0317198 4YZy2deJstI,2001.0,3,12,2011,Bridget Jones's Diary,Tarts and Vicars Party,tt0243155 KusSGPyXugE,2001.0,8,12,2011,Bridget Jones's Diary,Not a Good Enough Offer,tt0243155 mrx4SwMyGdQ,2004.0,1,10,2011,Bridget Jones: The Edge of Reason,You're On Speaker Phone,tt0317198 MCXx5saaKOk,2001.0,11,12,2011,Bridget Jones's Diary,Mark Returns,tt0243155 X3vQPmO3i7Y,2001.0,6,12,2011,Bridget Jones's Diary,The Fireman's Pole,tt0243155 xfwBwk7k3Gs,2001.0,5,12,2011,Bridget Jones's Diary,Sticking it to Daniel,tt0243155 F-LlyzCIG6I,2001.0,9,12,2011,Bridget Jones's Diary,Setting the Record Straight,tt0243155 tcIaT5D4Iwc,2001.0,1,12,2011,Bridget Jones's Diary,Painfully Awful Speech,tt0243155 dhPSvTyGSgs,2001.0,4,12,2011,Bridget Jones's Diary,Caught Cheating,tt0243155 qNkP2Y5wme0,2001.0,2,12,2011,Bridget Jones's Diary,Mini-Break,tt0243155 oZu2JfM2Aq8,2001.0,7,12,2011,Bridget Jones's Diary,Just As You Are,tt0243155 p7cYf7GaXgY,2001.0,12,12,2011,Bridget Jones's Diary,Diary Discovery,tt0243155 tiYXgCsoqaA,2001.0,10,12,2011,Bridget Jones's Diary,Bridget Speaks Up,tt0243155 2vV-8TyFBTI,1991.0,10,11,2011,Backdraft,Stephen's Final Words,tt0101393 BkvVBZwXVhg,1991.0,9,11,2011,Backdraft,That's My Brother,tt0101393 PlBpNTEaRTI,1991.0,11,11,2011,Backdraft,Swayzak Is Served,tt0101393 djv5gGXEyXo,1991.0,7,11,2011,Backdraft,Who Doesn't Love Fire?,tt0101393 qRnjswr1swo,1991.0,5,11,2011,Backdraft,Fire Is a Living Thing,tt0101393 piOTzME87Dg,1991.0,8,11,2011,Backdraft,"You Go, We Go",tt0101393 61XUb28jkUI,1991.0,3,11,2011,Backdraft,Ronald's Parole Hearing,tt0101393 qqX1d64OcvI,1991.0,1,11,2011,Backdraft,Race Between Brothers,tt0101393 mtkuDgE-qOI,1991.0,6,11,2011,Backdraft,Catching the Arsonist,tt0101393 KrwlDh465HQ,1991.0,2,11,2011,Backdraft,Stephen the Hero,tt0101393 _rGPOReLRzs,2008.0,6,10,2011,Stiletto,Break-Up Sex,tt1027747 uXGr0rSGz0A,2008.0,4,10,2011,Stiletto,Don't Mess With the Russians,tt1027747 5YqbUhVM6Jo,2008.0,7,10,2011,Stiletto,Motel Seduction,tt1027747 biFZVekspJ0,2008.0,10,10,2011,Stiletto,"Two Men, One Gun",tt1027747 6xD1JRKscGM,2008.0,3,10,2011,Stiletto,Pretty Hot,tt1027747 CXoJegmhbI4,2008.0,8,10,2011,Stiletto,Hate's a Good Thing,tt1027747 qIEDFvdDbVo,2008.0,2,10,2011,Stiletto,Racing the Detective,tt1027747 UlqSJeiOYPs,2008.0,9,10,2011,Stiletto,You Already Killed Me,tt1027747 kal9JZpTFJ0,2008.0,1,10,2011,Stiletto,Raina's Revenge,tt1027747 6vSWuFYVbE8,2010.0,3,-1,2011,The Imperialists Are Still Alive!,The Nail Salon,tt1423593 EtTIxHlaue0,2010.0,2,-1,2011,The Imperialists Are Still Alive!,Guns,tt1423593 eLyhRYJXf1U,2000.0,11,11,2011,U-571,Sinking the Destroyer,tt0141926 7U3F1uDBXrw,2000.0,10,11,2011,U-571,Destroy Me,tt0141926 rJCltwaUrXI,2000.0,9,11,2011,U-571,Tyler's Plan,tt0141926 3VKQkg9cpio,2000.0,4,11,2011,U-571,A Submarine Captain,tt0141926 2ed_jTFrZkY,2000.0,1,11,2011,U-571,German U-Boat Attack,tt0141926 VMU9Yos0mkk,2000.0,8,11,2011,U-571,Depth Charges,tt0141926 K40Gt3dk1LY,2000.0,6,11,2011,U-571,Men in the Water,tt0141926 mI3QaSoJado,2000.0,3,11,2011,U-571,Mission Briefing in Submarine,tt0141926 fUlMUkd7IWU,2000.0,5,11,2011,U-571,Infiltrating the German Sub,tt0141926 WjyJ_ZUEMEw,1978.0,4,8,2011,The Wiz,I'm a Mean Old Lion,tt0078504 RHUbiL36yjo,2000.0,2,11,2011,U-571,"She's Old, But She'll Hold",tt0141926 DHzx2P4x63c,1978.0,7,8,2011,The Wiz,If You Believe,tt0078504 pQT-QFy5Nig,1978.0,5,8,2011,The Wiz,No Bad News,tt0078504 3r1ssg1LIt4,1978.0,1,8,2011,The Wiz,The Crow Anthem,tt0078504 dslpHxTuA-w,1978.0,8,8,2011,The Wiz,Home,tt0078504 IV79EIZVuHQ,2000.0,7,11,2011,U-571,The Skipper Always Knows,tt0141926 zy8dUJEOqos,1978.0,6,8,2011,The Wiz,Everybody Rejoice,tt0078504 dk3BfcWrx8c,1978.0,2,8,2011,The Wiz,Scarecrow Joins Dorothy,tt0078504 tULIFKLFp_w,2001.0,4,10,2011,The Stickup,A Beautiful Mess,tt0307507 oGxBx8RzzrM,1978.0,3,8,2011,The Wiz,Ease on Down the Road,tt0078504 eLrwCyXUOLY,2001.0,8,10,2011,The Stickup,Shot in the Foot,tt0307507 bIaFHqnx6ns,2001.0,9,10,2011,The Stickup,Forest Shootout,tt0307507 VnrIuEa7ep4,2001.0,6,10,2011,The Stickup,Never Argue with Bank Robbers,tt0307507 7n8QlEg1k8A,2001.0,10,10,2011,The Stickup,Love at First Sight,tt0307507 WN_03KbkRdM,2001.0,7,10,2011,The Stickup,Cops as Robbers,tt0307507 -YjwJY6m9k4,2001.0,2,10,2011,The Stickup,My Word's Good,tt0307507 yTeJ-41Tl9E,2001.0,5,10,2011,The Stickup,Five-O in the Crib,tt0307507 d-HW0aPbfIY,2001.0,1,10,2011,The Stickup,Come to My Place,tt0307507 7MQUQQkzNSU,2001.0,3,10,2011,The Stickup,Clown Robs Bank,tt0307507 QB91tB_5u88,1997.0,4,10,2011,The Jackal,Good Guys Don't Hide,tt0119395 Xdzp0AluNuQ,1997.0,2,10,2011,The Jackal,The Mission,tt0119395 R1dILTUMJQI,1997.0,10,10,2011,The Jackal,Kneel Down Declan,tt0119395 rJGOCtlPzUs,1997.0,3,10,2011,The Jackal,An F.B.I. Deal,tt0119395 AA4zkmfbFD0,1997.0,6,10,2011,The Jackal,On the Docks,tt0119395 pyXdB_AYiDs,1997.0,5,10,2011,The Jackal,Target Practice,tt0119395 0gBKE5MUiQc,1997.0,7,10,2011,The Jackal,Armed & Extremely Dangerous,tt0119395 v3e2maV8MlQ,1997.0,8,10,2011,The Jackal,Assassination Attempt,tt0119395 WEfVr2S8eo8,1997.0,9,10,2011,The Jackal,Subway Chase,tt0119395 uBFxCK913PM,1985.0,3,10,2011,Out of Africa,Lions Attack Karen's Ox,tt0089755 7Vl03BBrGEY,1997.0,1,10,2011,The Jackal,This is Russia,tt0119395 AP2kX2vE_L8,1985.0,8,10,2011,Out of Africa,All Gone,tt0089755 Xb6svoM3UWE,1985.0,6,10,2011,Out of Africa,Karen Takes the Shot,tt0089755 -NtpPdMGluE,1985.0,10,10,2011,Out of Africa,Karen Says Goodbye,tt0089755 wYEn-ZKSg_I,1985.0,4,10,2011,Out of Africa,You Do Like to Change Things,tt0089755 sRKtU9FF-8w,1985.0,2,10,2011,Out of Africa,Shoot Her!,tt0089755 d8sDpSZeDBE,1985.0,5,10,2011,Out of Africa,Shampoo By the River,tt0089755 j38t2lDi4GU,1985.0,7,10,2011,Out of Africa,A Glimpse of the World Through God's Eye,tt0089755 Agic36OeXC0,1985.0,1,10,2011,Out of Africa,Karen Arrives at Her New Home,tt0089755 DaMf1FF-iZ8,1985.0,9,11,2011,Legend,Lili Betrays Darkness,tt0089469 JRpouK0KmWQ,1995.0,4,9,2011,Billy Madison,Billy Pees His Pants,tt0112508 j91DsC7XvdQ,1985.0,9,10,2011,Out of Africa,He Was Not Mine,tt0089755 IxjYJayuWoA,1985.0,5,11,2011,Legend,Flattering Meg Mucklebones,tt0089469 U6iLlH0l-4Y,1985.0,11,11,2011,Legend,Jack Wakes Lili,tt0089469 A9KjjvZE0Lo,1985.0,8,11,2011,Legend,I Want to Kill the Unicorn,tt0089469 cAePzEGsP5U,1985.0,6,11,2011,Legend,Kissing Oona,tt0089469 b2mm79vRuzA,1985.0,3,11,2011,Legend,Gump's Riddle,tt0089469 8OTa_eNimUE,1985.0,2,11,2011,Legend,Diving for Lili's Ring,tt0089469 5VMWNnFoi2g,1985.0,10,11,2011,Legend,Jack Defeats Darkness,tt0089469 WEQOeQBpxvw,2002.0,8,10,2011,Far from Heaven,Frank Cheats on Cathy,tt0297884 QB5379zBbtA,1985.0,4,11,2011,Legend,Jack the Champion,tt0089469 X7futPJdeOg,1985.0,1,11,2011,Legend,A Mission for Blix,tt0089469 Ksk7wPX-MI4,1985.0,7,11,2011,Legend,Darkness Seduces Lili,tt0089469 2wnVCoeCXbY,2002.0,10,10,2011,Far from Heaven,Frank Confesses to Cathy,tt0297884 sHwRx4bc7fM,2002.0,7,10,2011,Far from Heaven,Frank Accuses Cathy,tt0297884 FFtP2SGrQsk,2002.0,9,10,2011,Far from Heaven,Sarah is Attacked,tt0297884 EbyOz1yJgYs,2002.0,5,10,2011,Far from Heaven,Who is that Man?,tt0297884 kiW7cj162rE,2002.0,6,10,2011,Far from Heaven,The Only Man I've Ever Wanted,tt0297884 1E7f6xOPL3A,2002.0,4,10,2011,Far from Heaven,Frank Begins Treatment,tt0297884 4G7TTDEHl5o,1989.0,10,10,2011,Do the Right Thing,Destroying Sal's,tt0097216 l84trT4b6yE,2002.0,3,10,2011,Far from Heaven,Frank Kisses A Man,tt0297884 fbZelII-89A,2002.0,2,10,2011,Far from Heaven,Underground Bar,tt0297884 uSNvF3CEzno,2002.0,1,10,2011,Far from Heaven,There's Someone in my Yard,tt0297884 TQ4y7GPeFBY,1989.0,9,10,2011,Do the Right Thing,Fight the Power,tt0097216 qru3WdOfj8s,1989.0,2,10,2011,Do the Right Thing,Da Mayor & Mother Sister,tt0097216 cMNvYJ6O_Ks,1989.0,7,10,2011,Do the Right Thing,"20 ""D"" Batteries",tt0097216 zeyaRxHhVu4,1989.0,8,10,2011,Do the Right Thing,No Nasty,tt0097216 pa-oUPTr9LI,1989.0,6,10,2011,Do the Right Thing,LOVE and HATE,tt0097216 HbA1YOueC_A,1989.0,3,10,2011,Do the Right Thing,Boycott Sal's!,tt0097216 jc6_XgtOQgI,1989.0,4,10,2011,Do the Right Thing,Your Jordans Are F***ed Up!,tt0097216 gLYTObRhcSY,1989.0,5,10,2011,Do the Right Thing,Racist Stereotypes,tt0097216 ba2VaalmijM,1995.0,9,9,2011,Billy Madison,Billy Wins the Decathlon,tt0112508 YGeFi3Ap61E,1995.0,6,9,2011,Billy Madison,Billy's Musical,tt0112508 wCL3OtOzYuQ,1989.0,1,10,2011,Do the Right Thing,Today's Forecast,tt0097216 KIAzalQUui4,1995.0,2,9,2011,Billy Madison,Billy Mocks a Third Grader,tt0112508 aF3x3Bad2Wk,1995.0,7,9,2011,Billy Madison,Studying for the Decathlon,tt0112508 B0vKK-4qJac,1995.0,8,9,2011,Billy Madison,The Academic Decathlon,tt0112508 6vNGX3c03gM,1995.0,5,9,2011,Billy Madison,Billy's a Loser at High School,tt0112508 o7WSgC9oGic,1995.0,3,9,2011,Billy Madison,Billy Has a Cursive Problem,tt0112508 wf-gIUYRCyk,1995.0,1,9,2011,Billy Madison,Billy at Dinner,tt0112508 itHVWrhsRSc,1998.0,3,11,2011,Elizabeth,Speaks With Queen Mary,tt0127536 ZjPiVMyfJPs,2011.0,7,-1,2011,Green Lantern,Unprecedented Danger,tt1133985 ql_VifCJG7I,2011.0,6,-1,2011,Green Lantern,We're Going to Fly Now,tt1133985 rukUxz5J7qg,2011.0,2,-1,2011,Green Lantern,Wingman Decoy,tt1133985 aHix4qGIYHI,2002.0,8,10,2011,Eye See You,Playing the Victim,tt0160184 weCxCxIIjHA,2011.0,4,-1,2011,Green Lantern,Is That What I Think It Is?,tt1133985 LOACsaFA_FY,2011.0,8,-1,2011,Green Lantern,The Parallax,tt1133985 eKLKoFIrXgg,2011.0,5,-1,2011,Green Lantern,The Oath,tt1133985 mIZOUXRYVyE,2011.0,3,-1,2011,Green Lantern,The Ring Chose You,tt1133985 T4mRbRYaf1Q,2002.0,10,10,2011,Eye See You,You See This!,tt0160184 zWXZyd07k2Y,2011.0,1,-1,2011,Green Lantern,Let's Fly Some Planes,tt1133985 uCjC3h_Gc5E,2002.0,9,10,2011,Eye See You,Time to Die,tt0160184 eE-FSOWD_ac,2002.0,5,10,2011,Eye See You,Doc's Dismissal,tt0160184 aUhex6wK5rI,2002.0,6,10,2011,Eye See You,I.C.U.,tt0160184 PzZHiGYjhss,2002.0,2,10,2011,Eye See You,Chasing the Killer,tt0160184 -OOTo2P1ivQ,2002.0,7,10,2011,Eye See You,Paranoid Standoff,tt0160184 hBVvERsq-Kk,2007.0,8,8,2011,Remember the Daze,Life Sucks,tt0790618 chDaFqJMDeM,2002.0,4,10,2011,Eye See You,Another Dead Patient,tt0160184 eevdCdOddZQ,2002.0,3,10,2011,Eye See You,Goin' to Rehab,tt0160184 k5oJnFivwSM,2007.0,7,8,2011,Remember the Daze,First Time Babysitting,tt0790618 3zsTC5aeypU,2007.0,4,8,2011,Remember the Daze,Can You Knock?,tt0790618 TBiLIqhNiAM,2007.0,6,8,2011,Remember the Daze,Holla at Your Boy,tt0790618 cb9FUUFtJmc,2007.0,5,8,2011,Remember the Daze,Secret Kiss,tt0790618 vYyz6nq1mBE,2007.0,3,8,2011,Remember the Daze,Watch Your Language,tt0790618 LaYpVhckcL8,2002.0,1,10,2011,Eye See You,You Won't See Me,tt0160184 lnSoyix5fA0,2007.0,1,8,2011,Remember the Daze,Last Day of School,tt0790618 4gAFIGnJ8zk,2007.0,2,8,2011,Remember the Daze,Get Out of Bed,tt0790618 LGoKKhQPggM,1995.0,8,9,2011,Babe,The Sheep Pig,tt0112431 0zHmeTeLgMY,1995.0,9,9,2011,Babe,That'll Do Pig,tt0112431 MbFux7_RQpA,1995.0,7,9,2011,Babe,The Sheep Password,tt0112431 83LNTbeatHE,1995.0,6,9,2011,Babe,A Dance for,tt0112431 Z0pOWMHRgfI,1995.0,4,9,2011,Babe,", the New Sheepdog",tt0112431 oKXV-XQzUrY,1995.0,3,9,2011,Babe,Christmas Means Carnage,tt0112431 U1v_Ed4QFC4,1995.0,2,9,2011,Babe,Ferdinand's Secret Mission,tt0112431 KRBLeqsoRew,1995.0,1,9,2011,Babe,'s New Beginning,tt0112431 CHnbS6ZthM4,1995.0,5,9,2011,Babe,Little Ideas,tt0112431 nWWSMiBag1k,2004.0,10,10,2011,Along Came Polly,Reuben Proves His Wild Side,tt0343135 JnBh7KBjgwM,2004.0,1,10,2011,Along Came Polly,Reuben and Lisa's Wedding,tt0343135 2yhGVaVwceE,2004.0,7,10,2011,Along Came Polly,The Boy With a Nub for an Arm,tt0343135 ddGwvveSXxM,2004.0,5,10,2011,Along Came Polly,Praying to the Porcelain God,tt0343135 C7ke6vWUu18,2004.0,4,10,2011,Along Came Polly,I'm Your Daddy,tt0343135 enJJeOqHbqE,2004.0,3,10,2011,Along Came Polly,Sasquatch Basketball,tt0343135 bMVWECam8EA,2004.0,6,10,2011,Along Came Polly,Stabbing the Pillows,tt0343135 KOXE9k1TX-s,2004.0,2,10,2011,Along Came Polly,Urinal Chat,tt0343135 uDffmOSVnBM,2004.0,8,10,2011,Along Came Polly,The Non-Plan Plan,tt0343135 hJckGOSkTG0,2004.0,9,10,2011,Along Came Polly,Sandy's Big Speech,tt0343135 HOpLncx62oY,1995.0,7,10,2011,Waterworld,The Bargain,tt0114898 ZgsJGHxZxcg,1995.0,9,10,2011,Waterworld,Death From Above,tt0114898 LoSLZP0e-M4,1995.0,4,10,2011,Waterworld,Attack on the Atoll,tt0114898 lZQF83kf-a4,1995.0,10,10,2011,Waterworld,Catch of the Day,tt0114898 orgbJEoA7ak,1995.0,5,10,2011,Waterworld,The Mariner Is Freed,tt0114898 KOWckOfARBE,1995.0,8,10,2011,Waterworld,New Eye,tt0114898 xy6Ak1DYReI,1995.0,3,10,2011,Waterworld,Sentenced to Be Recycled,tt0114898 0zJpr-bB1sg,1995.0,6,10,2011,Waterworld,Atoll Escape,tt0114898 VKFsmZhQWtg,1995.0,1,10,2011,Waterworld,Revenge at Sea,tt0114898 Fv9_YOL38MM,1995.0,2,10,2011,Waterworld,He's a Mutant!,tt0114898 W6GjHSOtv6o,2004.0,4,10,2011,Perfect Opposites,"Marriage, Kids, and Panic",tt0259567 0s0m7xO0S9A,2004.0,9,10,2011,Perfect Opposites,Pregnancy Test,tt0259567 dxmqqCK2FaQ,2004.0,3,10,2011,Perfect Opposites,Meeting Monty Brandt,tt0259567 AEMXmcWOnwU,2004.0,2,10,2011,Perfect Opposites,Come With Me,tt0259567 03HGdrM25FA,2004.0,10,10,2011,Perfect Opposites,You Can't Marry This Guy,tt0259567 Gq75bSHMKPw,2004.0,7,10,2011,Perfect Opposites,You've Got Balls,tt0259567 YpIkOtgOdbo,2004.0,8,10,2011,Perfect Opposites,Are You Not in Love With Me Anymore?,tt0259567 ZBLtiP24yTA,2004.0,6,10,2011,Perfect Opposites,That Monogamy Thing,tt0259567 53GIt1w0LYY,2004.0,1,10,2011,Perfect Opposites,The First Date,tt0259567 31KYorrCgag,2004.0,5,10,2011,Perfect Opposites,Pussy Comma Cat,tt0259567 sT-wJhtlMGs,2002.0,9,9,2011,Blue Crush,Anne Marie's Second Run,tt0300532 aRmaCLDJ8Xk,2002.0,8,9,2011,Blue Crush,First Pipeline Run,tt0300532 FFkQN5DyvXU,2002.0,5,9,2011,Blue Crush,The Wives Talk Trash,tt0300532 mwAlagYhRV8,2002.0,7,9,2011,Blue Crush,Pipe Masters Begins,tt0300532 HKXId9qgGfQ,2002.0,6,9,2011,Blue Crush,What Do You Want?,tt0300532 ZTVR1PCRopA,2002.0,1,9,2011,Blue Crush,Slammed by the Pipe,tt0300532 3tSWRJ3j9fs,2002.0,4,9,2011,Blue Crush,Eden Breaks It Down,tt0300532 COGBbUM8F14,2002.0,3,9,2011,Blue Crush,Broken Board,tt0300532 PNJ_FxaMYUw,2002.0,2,9,2011,Blue Crush,Schooled by the Maid,tt0300532 Yjs3BLAsvOc,1999.0,11,12,2011,American Pie,Sherman Wets Himself,tt0163651 FdxUNsKZ4T8,1999.0,12,12,2011,American Pie,Stifler's Mom,tt0163651 bQWaXlsdyko,1999.0,10,12,2011,American Pie,Finch Has Diarrhea,tt0163651 sKfQGRwlm9Q,1999.0,8,12,2011,American Pie,Nadia on the Web Cam,tt0163651 2IwV2bHqqyg,1999.0,5,12,2011,American Pie,Sex-Educated By Dad,tt0163651 MH619vxtNdo,1999.0,9,12,2011,American Pie,One Time at Band Camp,tt0163651 8sClW0qW9LA,1999.0,7,12,2011,American Pie,Jim Wants a Partner,tt0163651 RESwG23_YGw,1999.0,9,10,2011,Notting Hill,Just a Girl,tt0125439 MvzZbUKxNdc,1999.0,4,12,2011,American Pie,Masters of Our Sexual Destiny,tt0163651 cgXTRSSX3cc,1999.0,3,12,2011,American Pie,Wild Thing,tt0163651 NCAOKR1jpp0,1999.0,6,12,2011,American Pie,Warm Apple Pie,tt0163651 BXqeQxRvQGY,1999.0,1,12,2011,American Pie,Penis Tube Sock,tt0163651 zStjjc7SBto,1999.0,2,12,2011,American Pie,"Suck Me, Beautiful",tt0163651 3F8oJh3J1T0,1999.0,8,10,2011,Notting Hill,Friendly Banter,tt0125439 hZ8PfLIc8MI,1999.0,5,10,2011,Notting Hill,Best Friends Already,tt0125439 JexO-N39Nzg,1999.0,6,10,2011,Notting Hill,What Do You Do?,tt0125439 PTjIRQU_HdM,1999.0,7,10,2011,Notting Hill,Brownie Contest,tt0125439 _6O2sYLkuO4,1999.0,3,10,2011,Notting Hill,A Spontaneous Kiss,tt0125439 -xQ5nH_-yyQ,1999.0,4,10,2011,Notting Hill,Questions & Apologies,tt0125439 ArlsU2_cUbg,1999.0,1,10,2011,Notting Hill,Can I Have Your Autograph?,tt0125439 kxBu82Dte10,1999.0,2,10,2011,Notting Hill,William Runs Into Anna,tt0125439 6WWdim-OLok,2004.0,9,10,2011,The Grudge,No Escape,tt0391198 T59ufBxosHI,2004.0,8,10,2011,The Grudge,Drowned in a Bath Tub,tt0391198 Fypw_s62Q0s,2004.0,7,10,2011,The Grudge,Yoko Returns,tt0391198 uI8lzoeTASI,2004.0,6,10,2011,The Grudge,Apartment Hauntings,tt0391198 z1cXKdmKuV0,2004.0,5,10,2011,The Grudge,Staircase Encounter,tt0391198 uJPI1qu9bE4,1999.0,10,10,2011,Notting Hill,The Wrong Decision,tt0125439 gI7UY6YCAoE,2004.0,3,10,2011,The Grudge,Trapped in a Closet,tt0391198 dfrZp14tFjA,2004.0,1,10,2011,The Grudge,Unsuspecting Suicide,tt0391198 mgU73GKlSFw,2004.0,10,10,2011,The Grudge,Final Fright,tt0391198 P653N6uf3Y8,2011.0,1,-1,2011,The Art Of Getting By,The Moment to Decide Your Future,tt1645080 2elellCQiAE,2011.0,3,-1,2011,The Art Of Getting By,Rules of Cutting School,tt1645080 bPavpV1D-g8,2011.0,4,-1,2011,The Art of Getting By,Together.,tt1645080 yiRcSZp7tYg,2004.0,2,10,2011,The Grudge,Yoko Is Attacked,tt0391198 4iW0kneOMyw,2004.0,4,10,2011,The Grudge,New Tenants,tt0391198 mFglGV3n5SM,2006.0,7,12,2011,The Fast and the Furious: Tokyo Drift,Racing Through Tokyo,tt0463985 fvoNncvOHfc,2006.0,12,12,2011,The Fast and the Furious: Tokyo Drift,Sean Beats D.K.,tt0463985 kvVlP50LSq8,2006.0,11,12,2011,The Fast and the Furious: Tokyo Drift,The Mountain Race,tt0463985 Kjv-HBYitgk,2006.0,9,12,2011,The Fast and the Furious: Tokyo Drift,Building the Car,tt0463985 Zml7qQpL8Yo,2006.0,8,12,2011,The Fast and the Furious: Tokyo Drift,The End of Han,tt0463985 926SVUFeJ94,2006.0,10,12,2011,The Fast and the Furious: Tokyo Drift,The Race Begins,tt0463985 qOKE4dxjayU,2006.0,4,12,2011,The Fast and the Furious: Tokyo Drift,Drifting with Neela,tt0463985 UbTBbTDjjHI,2006.0,3,12,2011,The Fast and the Furious: Tokyo Drift,Mastering The Drift,tt0463985 Y29DgVgmE2M,2006.0,6,12,2011,The Fast and the Furious: Tokyo Drift,Morimoto Bites the Dust,tt0463985 szpq76d4ipk,2006.0,5,12,2011,The Fast and the Furious: Tokyo Drift,Out of the Garage,tt0463985 yElIQDAEtOg,2005.0,5,10,2011,Pride & Prejudice,Offending Lady Catherine,tt0414387 iMP3uLZl6UE,2006.0,2,12,2011,The Fast and the Furious: Tokyo Drift,Collecting From Paw,tt0463985 s-EheX9m-dE,2006.0,1,12,2011,The Fast and the Furious: Tokyo Drift,Pre-race Tussle,tt0463985 bFsgLhx9dxg,2005.0,10,10,2011,Pride & Prejudice,You Have Bewitched Me,tt0414387 ONaPfzjl8qc,2005.0,9,10,2011,Pride & Prejudice,Lady Catherine's Interrogation,tt0414387 z9SXvUdM_iw,2005.0,3,10,2011,Pride & Prejudice,Elizabeth and Darcy's Dance,tt0414387 LHv4eHp_gUM,2005.0,2,10,2011,Pride & Prejudice,Miserable Mr. Darcy,tt0414387 DZqOhS2M-DU,2005.0,8,10,2011,Pride & Prejudice,Visiting Darcy's Estate,tt0414387 lhbHTjMLN5c,1983.0,10,11,2011,The Meaning of Life,Mr. Creosote Blows,tt0085959 DNZ5NXKtdxs,2005.0,6,10,2011,Pride & Prejudice,Last Man in the World,tt0414387 8U56CTlGkx8,2005.0,7,10,2011,Pride & Prejudice,A Letter to Elizabeth,tt0414387 9yEylIfDkms,2005.0,4,10,2011,Pride & Prejudice,Refusing Mr. Collins,tt0414387 VSMKvHRbHC8,2005.0,1,10,2011,Pride & Prejudice,Mr. Bingley's Single,tt0414387 Qbnv6eHKjCQ,1983.0,2,11,2011,The Meaning of Life,The Miracle of Birth,tt0085959 eyCCuHC08bY,1983.0,5,11,2011,The Meaning of Life,Goodbye Gifts on the Battlefield,tt0085959 ucgU2DJlBiw,1983.0,6,11,2011,The Meaning of Life,Would Rather Be Elsewhere,tt0085959 PDBjsFAyiwA,1983.0,4,11,2011,The Meaning of Life,Protestants and French Ticklers,tt0085959 WQEkAbLJ5L8,1983.0,1,11,2011,The Meaning of Life,What's It All About?,tt0085959 kLNdMY1JlR0,1983.0,8,11,2011,The Meaning of Life,The Penis Song,tt0085959 g8fheDIG_RA,1983.0,3,11,2011,The Meaning of Life,Every Sperm Is Sacred,tt0085959 Zx0ME65y72E,1983.0,9,11,2011,The Meaning of Life,A Bucket for Monsieur,tt0085959 kntQNeSge5s,1983.0,11,11,2011,The Meaning of Life,It's Christmas In Heaven,tt0085959 UGBZnfB46es,1983.0,7,11,2011,The Meaning of Life,Find The Fish,tt0085959 QXFR1L_gOg8,1999.0,6,10,2011,Mystery Men,Superhero Auditions,tt0132347 6HJqPZ-KmZs,2009.0,5,10,2011,A Serious Man,The Uncertainty Principle,tt1019452 OS2udCdOuqA,2006.0,2,11,2011,Inside Man,A Very Large Withdrawal,tt0454848 pFriRcIwqNU,1992.0,2,10,2011,Army of Darkness,This Is My Boomstick!,tt0106308 B4zWUki6-WE,2008.0,2,10,2011,Milk,My Fellow Degenerates,tt1013753 NW2QM6c1wAI,1999.0,3,10,2011,The Mummy,Evelyn Saves Rick's Life,tt0120616 6nX0100wUB0,2001.0,11,11,2011,The Mummy Returns,Defeat of the Scorpion King,tt0209163 uNE1lEBsBmM,2008.0,5,12,2011,Death Race,You Can't Kill Me,tt0452608 Pdi_kASSsJs,1977.0,9,10,2011,Slap Shot,Old-Time Hockey,tt0076723 1kejVGS-5q0,1988.0,7,10,2011,Twins,A New Look,tt0096320 JzOSF71-kl4,2003.0,4,-1,2011,21 Grams,It's Different Now,tt0315733 3tfI9tTzlI0,2009.0,3,10,2011,A Serious Man,The Columbia Record Club,tt1019452 m9rBv4Dn3Bk,1999.0,5,10,2011,Mystery Men,Silent and Deadly,tt0132347 XFC2o44koIA,1999.0,9,10,2011,Mystery Men,Rallying the Team,tt0132347 lkq-Fd9TU8k,2009.0,2,10,2011,A Serious Man,The Junior Rabbi,tt1019452 eKeTSR1yYfY,1999.0,7,10,2011,Mystery Men,Confronting Casanova,tt0132347 VUG-5kLRjeY,1999.0,3,10,2011,Mystery Men,Mr. Furious Holds Back,tt0132347 q7vtWB4owdE,1978.0,9,10,2011,Animal House,Bluto's Big Speech,tt0077975 H1JCgM_LHAg,1998.0,10,10,2011,Half Baked,Thurgood Wears a Wire,tt0120693 dHPnUPFcxdE,1998.0,6,10,2011,Half Baked,A Cheap Date With Mary Jane,tt0120693 WtdVnmI_nYM,1999.0,3,10,2011,Arlington Road,Oliver Gets Too Personal,tt0137363 KsGS0BJ49LQ,1999.0,5,10,2011,Arlington Road,You Don't Know Me,tt0137363 _1F59-J8Iwg,2010.0,4,-1,2011,Ceremony,My Greatest Achievement,tt1341341 s4heu0mPm-I,2010.0,1,-1,2011,The Imperialists Are Still Alive!,Outside the Benefit,tt1423593 cLApJ5OJaLg,2010.0,2,-1,2011,Ceremony,I Like You the Way You Are,tt1341341 XjC8-nEGnrE,2008.0,6,11,2011,The Other Boleyn Girl,Love Is of No Value,tt0467200 iGig4Dk3tXc,2010.0,1,-1,2011,Ceremony,What Kind of Dragon Do I Have to Slay?,tt1341341 aoPKajvq3gE,1984.0,9,9,2011,Dune,I Will Kill Him!,tt0087182 kvhcXo9QzqQ,2010.0,1,-1,2011,All Good Things,Isn't That Great?,tt1175709 8rsx2IP3HWY,2010.0,4,-1,2011,All Good Things,When Did She Pass Away?,tt1175709 mWblxPany0E,2010.0,6,-1,2011,All Good Things,You Have to Let Me Go,tt1175709 4t2pP2KLlgU,2010.0,5,-1,2011,All Good Things,Your Card Was Declined,tt1175709 1YBkXbf8dg0,2010.0,2,-1,2011,All Good Things,Meeting David's Dad,tt1175709 D1Sh5qIqc7Y,2010.0,3,-1,2011,All Good Things,The New House,tt1175709 TQeP6GWU0e4,1984.0,7,9,2011,Dune,The Weirding Way,tt0087182 Bj7R_2WWdKs,1984.0,8,9,2011,Dune,Riding the Sandworm,tt0087182 g5e3qoREpuA,1990.0,10,10,2011,Tremors,"Can You Fly, You Sucker?",tt0100814 mWq15lDh8yM,1984.0,4,9,2011,Dune,Baron Harkonnen,tt0087182 bIVzK-h6qao,1984.0,6,9,2011,Dune,Hunter-Seeker,tt0087182 1G5jMgx8GVU,1984.0,5,9,2011,Dune,Sandworm Attack,tt0087182 AGqdE1NdMTg,1984.0,1,9,2011,Dune,The Guild Navigator,tt0087182 CfAS7ONO8OU,1990.0,5,10,2011,Tremors,Pole Vault to Safety,tt0100814 kJsYKhEV6o0,1984.0,3,9,2011,Dune,Fear Is the Mind Killer,tt0087182 qFNBUs7O-h4,1990.0,8,10,2011,Tremors,The Wrong Rec Room,tt0100814 u9O_Xs8wAZk,1990.0,6,10,2011,Tremors,Get Off the Pogo Stick!,tt0100814 mbKEarx9CCs,1990.0,2,10,2011,Tremors,Old Fred's Flock,tt0100814 LwbFwVf8yoE,1990.0,4,10,2011,Tremors,They're Under the Ground,tt0100814 KYUolurihOQ,1984.0,2,9,2011,Dune,Shield Practice,tt0087182 b5I94bT23cQ,1999.0,8,10,2011,Mystery Men,Superhero Training,tt0132347 Y3kXNEX1Ghs,1990.0,7,10,2011,Tremors,Grabbing Walter,tt0100814 7bFi99Kojrc,1990.0,1,10,2011,Tremors,Edgar on the Tower,tt0100814 9DJWMVR_yfM,1999.0,1,10,2011,Mystery Men,Dinner Full of Bicker,tt0132347 FfdJdZ5_guM,1999.0,10,10,2011,Mystery Men,Mr. Furious Gets Mad,tt0132347 kFhIMrW1Yk4,1990.0,3,10,2011,Tremors,Bloody Jackhammer,tt0100814 JuhTQwzizDI,1999.0,2,10,2011,Mystery Men,Capturing Captain Amazing,tt0132347 aDFJMSlmxBg,1999.0,4,10,2011,Mystery Men,Captain Amazing's Idea,tt0132347 7pDEOCYPRf4,2010.0,2,-1,2011,Vanishing on 7th Street,Plane Crash,tt1452628 f276MnhGqGg,2010.0,2,-1,2011,Somewhere,You Look Great,tt1421051 V80rHpEZCl0,2010.0,1,-1,2011,Vanishing on 7th Street,Everyone's Gone,tt1452628 YjQP7xc5P8Y,2010.0,3,-1,2011,Somewhere,I Do All My Own Stunts,tt1421051 3-fzc0e4dD0,2010.0,4,-1,2011,Vanishing on 7th Street,Hospital Visit,tt1452628 WSyi9bIVryk,2010.0,3,-1,2011,Vanishing on 7th Street,Light's Out,tt1452628 F5eqkWRWZ7c,1931.0,8,10,2011,Dracula,"Rats, Rats, Rats!",tt0021814 fOgpQEngn0c,2010.0,1,-1,2011,Somewhere,You're Really Good,tt1421051 Bzb3rASU-pM,1931.0,9,10,2011,Dracula,and Van Helsing,tt0021814 dTr8dXob7YI,1931.0,7,10,2011,Dracula,and Mina,tt0021814 uvIZ4ST6HqE,2009.0,7,10,2011,A Serious Man,I Am Not An Evil Man!,tt1019452 SAPKjWHikzM,2009.0,9,10,2011,A Serious Man,The Bar Mitzvah,tt1019452 o_N-H_5Pvu8,1931.0,4,10,2011,Dracula,Children of the Night,tt0021814 KjDfOAhtWwo,1931.0,3,10,2011,Dracula,Renfield Meets,tt0021814 uyj1CeZt23A,2009.0,4,10,2011,A Serious Man,Hardly a Crime,tt1019452 TQSMmwQyEjk,2009.0,1,10,2011,A Serious Man,Living Arrangements,tt1019452 F9b76RWM7qE,1931.0,6,10,2011,Dracula,Why Eat Flies When You Can Have Spiders?,tt0021814 665wQwXkq6M,1931.0,10,10,2011,Dracula,They're All Crazy,tt0021814 K5IU4bPS_S8,1990.0,9,10,2011,Tremors,Lassoing the Bait,tt0100814 Tq8robO5eJ0,1931.0,5,10,2011,Dracula,Gets Thirsty,tt0021814 YSmSuiMNbDI,1931.0,2,10,2011,Dracula,'s Wives Awaken,tt0021814 sbz_Xq2aEQQ,1931.0,1,10,2011,Dracula,You Mustn't Go There,tt0021814 SGzmYFcravM,2009.0,6,10,2011,A Serious Man,Serious as a Heart Attack,tt1019452 b8U1na74Bcc,2009.0,10,10,2011,A Serious Man,Impending Storm,tt1019452 aQQsBjOrNMY,2009.0,8,10,2011,A Serious Man,Not a Frivolous Request,tt1019452 P90noIrmLZg,2006.0,11,11,2011,Inside Man,"Who, When, Why, and How",tt0454848 j1C0Tw80Fgk,2006.0,7,11,2011,Inside Man,Dalton Gives Frazier a Riddle,tt0454848 sYNUp5rAZJo,2006.0,6,11,2011,Inside Man,Get Rich Or Die Tryin',tt0454848 K-xthcJWXn0,2006.0,4,11,2011,Inside Man,Vikram's Questioning,tt0454848 4disuwEvw-w,2006.0,3,11,2011,Inside Man,Anyone Else Here Smarter Than Me?,tt0454848 uzgQ_xwWlkQ,2006.0,10,11,2011,Inside Man,The Hostages Are Released,tt0454848 qCv3989nvog,2006.0,9,11,2011,Inside Man,Shoot Me,tt0454848 Tm3raIkeseE,2007.0,7,10,2011,I Now Pronounce You Chuck & Larry,Sleeping in the Same Bed,tt0762107 JB9rdCKgGuo,2006.0,5,11,2011,Inside Man,Questioning the Witnesses,tt0454848 NE0ne430gbA,2006.0,1,11,2011,Inside Man,Therein Lies the Rub,tt0454848 Jc3GBDJ2sK0,2007.0,5,10,2011,I Now Pronounce You Chuck & Larry,Chuck and Larry Get Married,tt0762107 sUv04cGjaDI,2007.0,1,-1,2011,Elizabeth: The Golden Age,I Have Failed You,tt0414055 ofYq-2TXzTs,2007.0,4,-1,2011,Elizabeth: The Golden Age,Treasonous Mary,tt0414055 CMvdeSxmPKg,2007.0,3,-1,2011,Elizabeth: The Golden Age,Could You Have Loved Me?,tt0414055 trGyimjcGRI,2006.0,8,11,2011,Inside Man,Crossing the Line,tt0454848 TTX3bYbKAl0,2007.0,10,10,2011,I Now Pronounce You Chuck & Larry,Duncan Comes Out to Chuck,tt0762107 hOz9L1KrJJY,2001.0,8,10,2011,The Fast and the Furious,Drive-by Shooting Scene,tt0232500 WSUWoBeJ6dg,2007.0,2,-1,2011,Elizabeth: The Golden Age,We Mortals,tt0414055 seMHoTTskQc,2007.0,6,10,2011,I Now Pronounce You Chuck & Larry,Chuck Moves In,tt0762107 K-cBT5AxRrg,2007.0,8,10,2011,I Now Pronounce You Chuck & Larry,Career Day Fights,tt0762107 isBwMtlWLeE,2007.0,9,10,2011,I Now Pronounce You Chuck & Larry,Real & Creamy,tt0762107 UmmXGbFASC0,2001.0,9,10,2011,The Fast and the Furious,Chasing the Killers Scene,tt0232500 Su5vMTdI0yY,2007.0,3,10,2011,I Now Pronounce You Chuck & Larry,"The ""Gay Inspector""",tt0762107 zdja5DSb2O8,2007.0,4,10,2011,I Now Pronounce You Chuck & Larry,Wedding Preparations,tt0762107 xw13vA86I-I,2007.0,1,10,2011,I Now Pronounce You Chuck & Larry,Saving the Fat Man,tt0762107 B4xzP6H_N1E,2001.0,7,10,2011,The Fast and the Furious,Brian Blows His Cover Scene,tt0232500 kLJCWb1apYo,2001.0,6,10,2011,The Fast and the Furious,Jesse Races Tran Scene,tt0232500 Dwnkxpu0l3c,2007.0,2,10,2011,I Now Pronounce You Chuck & Larry,An Awkward Proposal,tt0762107 6hxOoM0-NJI,2001.0,3,10,2011,The Fast and the Furious,Meet Johnny Tran Scene,tt0232500 WtnTZSJndPc,2001.0,4,10,2011,The Fast and the Furious,10 Seconds or Less Scene,tt0232500 nfV87TgYH78,2001.0,10,10,2011,The Fast and the Furious,Brian Races Dominic Scene,tt0232500 pB-bN-RkJLM,2001.0,2,10,2011,The Fast and the Furious,Winning's Winning Scene,tt0232500 pZZ60jrw6cg,2001.0,1,10,2011,The Fast and the Furious,The Night Race Scene,tt0232500 sBDEE3_Z-cw,2001.0,5,10,2011,The Fast and the Furious,Race Wars Scene,tt0232500 pX71mALOPKs,1978.0,10,10,2011,Animal House,Enter the Deathmobile,tt0077975 DZN4r8p6KbU,1978.0,5,10,2011,Animal House,Bluto's a Zit,tt0077975 FMENQeCbxfI,1978.0,2,10,2011,Animal House,A Real Zero,tt0077975 18eaNSxhK5c,1978.0,6,10,2011,Animal House,Toga! Toga!,tt0077975 0Dy2fo6E_pI,1978.0,3,10,2011,Animal House,Only We Can Do That to Our Pledges,tt0077975 UKMuVFz3MOQ,1978.0,8,10,2011,Animal House,Finished at Faber,tt0077975 ROxvT8KKdFw,1978.0,7,10,2011,Animal House,Deltas on Trial,tt0077975 EtSPFXj_eZM,1978.0,4,10,2011,Animal House,Flounder Gets Even,tt0077975 sarN01WcuZY,1999.0,10,10,2011,Arlington Road,Michael is Blamed,tt0137363 1tfK_3XK4CI,1978.0,1,10,2011,Animal House,Double Secret Probation,tt0077975 ZJOTrLdxCPE,1999.0,9,10,2011,Arlington Road,The Bomb Goes Off,tt0137363 nJ98f7z14WI,1999.0,8,10,2011,Arlington Road,Michael Fights Oliver,tt0137363 SgwBAXfvdFE,1999.0,7,10,2011,Arlington Road,How Many People Are You Going to Kill?,tt0137363 j7EvXsSJHQc,1999.0,4,10,2011,Arlington Road,How's the Hunting?,tt0137363 1tBCcfkkDKo,1998.0,9,10,2011,Half Baked,Robbing the Weed Lab,tt0120693 O6ZWqQ53cJM,1999.0,6,10,2011,Arlington Road,What Are You Doing Here?,tt0137363 EUtdnTk7wIE,1999.0,2,10,2011,Arlington Road,Safety and Security,tt0137363 H0AnJKKwhQ0,1998.0,7,10,2011,Half Baked,Scarface Quits & Brian Gets Fired,tt0120693 BROZYppqsf8,1999.0,1,10,2011,Arlington Road,The Injured Boy,tt0137363 XLScUvabSr4,1998.0,5,10,2011,Half Baked,Scarface's Plan,tt0120693 oh3KwtatlkY,1998.0,3,10,2011,Half Baked,Thurgood Asks Out Mary Jane,tt0120693 uUPHlAbAf2I,1998.0,8,10,2011,Half Baked,Thurgood Goes to Rehab,tt0120693 GDHVi3h6ZXw,1998.0,4,10,2011,Half Baked,Thurgood Gets Some Medical Marijuana,tt0120693 N3ug0dVCyeE,1998.0,2,10,2011,Half Baked,Killing a Diabetic Horse,tt0120693 SM0CkReuGMQ,1998.0,1,10,2011,Half Baked,Kenny's Munchie Run,tt0120693 y8MWkDexzRQ,2000.0,2,9,2011,How the Grinch Stole Christmas,Baby Grinch,tt0170016 Lxuqbh2tjTs,2000.0,7,9,2011,How the Grinch Stole Christmas,What's Christmas Really About?,tt0170016 c8m6M4RV8p0,2000.0,6,9,2011,How the Grinch Stole Christmas,"You're a Mean One, Mr. Grinch",tt0170016 hE3jShGPscQ,2000.0,9,9,2011,How the Grinch Stole Christmas,The Grinch Finally Cares,tt0170016 BVrhE9NOwww,1996.0,2,10,2011,Barb Wire,How Romantic,tt0115624 p8J-YmVs1j0,2000.0,8,9,2011,How the Grinch Stole Christmas,His Heart Grows Three Sizes,tt0170016 C_4LmbuSmpI,2000.0,5,9,2011,How the Grinch Stole Christmas,"Oh, the Whomanity!",tt0170016 0mGmEE20CR0,2000.0,1,9,2011,How the Grinch Stole Christmas,The Grinch and Whovenile Delinquents,tt0170016 0lq1JIWQSlc,2000.0,3,9,2011,How the Grinch Stole Christmas,I Hate Christmas,tt0170016 eFs_YLy3Ld8,1996.0,10,10,2011,Barb Wire,The Beginning of a Beautiful Friendship,tt0115624 nBmNcy4zZNU,2000.0,4,9,2011,How the Grinch Stole Christmas,Kids Today,tt0170016 cKewmzrevAw,1996.0,7,10,2011,Barb Wire,Big Fatso,tt0115624 ct-PElgfWJY,1996.0,8,10,2011,Barb Wire,Escape from Steel Harbor,tt0115624 H6XIREQHU8M,1996.0,1,10,2011,Barb Wire,Not a Bad Night's Work,tt0115624 n9L9jMlulXI,1996.0,5,10,2011,Barb Wire,Package Check,tt0115624 VVp0l2Vas2I,1996.0,3,10,2011,Barb Wire,Don't Call Me Babe,tt0115624 Ws7Uj5D6354,1996.0,4,10,2011,Barb Wire,Extortion,tt0115624 LSEkG5z7Il4,1996.0,9,10,2011,Barb Wire,"I Got You, Babe",tt0115624 8ARqfD6Wm3E,1996.0,6,10,2011,Barb Wire,Trashing the Bar,tt0115624 lxOV0MYBpeI,2003.0,1,10,2011,Love Actually,"Colin, God of Sex",tt0314331 _ghkHlthIqM,2003.0,8,10,2011,Love Actually,All I Want for Christmas is You,tt0314331 nKdSvhCg3VY,2003.0,10,10,2011,Love Actually,Jamie Proposes to Aurelia,tt0314331 2KtVKu9CfDA,2003.0,6,10,2011,Love Actually,Christmas Cards for Juliet,tt0314331 -EuO6OFypLo,2003.0,7,10,2011,Love Actually,The Love of My Life,tt0314331 UCjoOOrgVMM,2003.0,9,10,2011,Love Actually,Sam Runs After Joanna,tt0314331 wF_UpYqYJuY,2008.0,11,11,2011,The Other Boleyn Girl,The Execution of Anne Boleyn,tt0467200 3XK2wqc1cr8,2008.0,3,11,2011,The Other Boleyn Girl,For My Good?,tt0467200 ZxpXrz-nEdw,2008.0,9,11,2011,The Other Boleyn Girl,To Pass Judgment,tt0467200 pkfyn6mYlCg,2008.0,5,11,2011,The Other Boleyn Girl,Indecent Proposal,tt0467200 wzIwPkZkSTk,2008.0,10,11,2011,The Other Boleyn Girl,One Half of Me,tt0467200 xX08f3GV3v8,2008.0,7,11,2011,The Other Boleyn Girl,The Boleyn Whores,tt0467200 OksadMMuXQ8,2008.0,9,10,2011,The Mummy: Tomb of the Dragon Emperor,Yuan v. Han,tt0859163 TY2PGciqbg8,2008.0,2,11,2011,The Other Boleyn Girl,A Royal Seduction,tt0467200 NTaSvSldlk0,2008.0,8,10,2011,The Mummy: Tomb of the Dragon Emperor,Undead Armies Clash,tt0859163 Kyh3foJVk2k,2008.0,8,11,2011,The Other Boleyn Girl,I Cannot Bear Children,tt0467200 ok_8VGksYow,2008.0,1,11,2011,The Other Boleyn Girl,Caring for the King,tt0467200 GiRyIbJ7IFg,2008.0,10,10,2011,The Mummy: Tomb of the Dragon Emperor,The Emperor Is Dead,tt0859163 9wr10j2nUJ4,2008.0,4,11,2011,The Other Boleyn Girl,Looking for a Great Man,tt0467200 yVcieIZb3_U,2003.0,2,10,2011,Love Actually,Festering Turd of a Record,tt0314331 gKY3ShRZPkA,2008.0,2,10,2011,The Mummy: Tomb of the Dragon Emperor,Bite On This!,tt0859163 5ITNMF0kSn8,2008.0,6,10,2011,The Mummy: Tomb of the Dragon Emperor,Same Mummy... Twice!,tt0859163 PQ-8JIzjq_I,2008.0,5,10,2011,The Mummy: Tomb of the Dragon Emperor,A Bumpy Landing,tt0859163 HTE6S6x8ixA,2008.0,7,10,2011,The Mummy: Tomb of the Dragon Emperor,Yeti Attack,tt0859163 0wsXkU-Crjw,2000.0,8,10,2011,Traffic,"Hi, Daddy",tt0181865 JbrBIbtupp8,2008.0,3,10,2011,The Mummy: Tomb of the Dragon Emperor,tt0140864,tt0859163 DxguAU_KxS8,2008.0,1,10,2011,The Mummy: Tomb of the Dragon Emperor,The Curse of the Dragon Emperor,tt0859163 E41tGRgKxNk,2000.0,10,10,2011,Traffic,Planting a Bug,tt0181865 06KH47jZbG0,2000.0,5,10,2011,Traffic,Assassination Attempt,tt0181865 1z6MvVWZfuc,2008.0,4,10,2011,The Mummy: Tomb of the Dragon Emperor,The Dragon Emperor Resurrected,tt0859163 JjRx9IJSTMw,2000.0,7,10,2011,Traffic,Drug Economics,tt0181865 8prXNxNfEpY,2000.0,6,10,2011,Traffic,A Desert Killing,tt0181865 g9Znovljrq8,2000.0,1,10,2011,Traffic,General Salazar Pulls Rank,tt0181865 zy0HtNZgbjY,2000.0,9,10,2011,Traffic,Your Whole Life Is Pointless,tt0181865 6U6MOfuFX-Q,2000.0,4,10,2011,Traffic,Conspiring to Conspire,tt0181865 Lkxbuqvb5A4,2000.0,3,10,2011,Traffic,Addicts Don't Vote,tt0181865 DsugPaXH4kA,2003.0,4,10,2011,Love Actually,Jamie and Aurelia Go Swimming,tt0314331 6_6Ml7hPZi0,2000.0,2,10,2011,Traffic,A Drug Bust Shootout,tt0181865 cfNzZre-sIU,2003.0,5,10,2011,Love Actually,Would You Like It Gift Wrapped?,tt0314331 mzNUbT2sQT4,1989.0,9,10,2011,Uncle Buck,So Much For Promises,tt0098554 JOBYJrVQm3A,1989.0,6,10,2011,Uncle Buck,"Happy Birthday, Miles",tt0098554 OA-FmsSdSMY,1989.0,1,10,2011,Uncle Buck,Here Comes Buck,tt0098554 xEt5dEOcW0I,1989.0,8,10,2011,Uncle Buck,Moley Russel's Wart,tt0098554 9sWnQ8y_M6A,1989.0,7,10,2011,Uncle Buck,Would Ya Like to See My Hatchet?,tt0098554 PQCAqu6koEQ,1989.0,4,10,2011,Uncle Buck,His Name is Bug,tt0098554 ghQOllvR2cE,1989.0,2,10,2011,Uncle Buck,I'm Your,tt0098554 5ibO5kob3OQ,1989.0,3,10,2011,Uncle Buck,The Buck-mobile,tt0098554 nggWTNLFifA,1989.0,10,10,2011,Uncle Buck,Squashing a Bug,tt0098554 Hf6qAXWkX6w,1989.0,5,10,2011,Uncle Buck,Battle of Wills,tt0098554 zcgxBHBsl-4,2003.0,3,10,2011,Love Actually,The Dancing Prime Minister,tt0314331 BP2zVb8Ufsw,2011.0,7,-1,2011,Bridesmaids,Annie Gets Relaxed,tt1478338 gnI8phF08PE,2011.0,3,-1,2011,Bridesmaids,Gut Reaction,tt1478338 iseaUTEhwzY,2011.0,6,-1,2011,Bridesmaids,Sexual Frustration,tt1478338 mwqxM-ccpNE,2011.0,4,-1,2011,Bridesmaids,I Want a Carnival Wedding,tt1478338 Kg0YrIiz7Sw,2011.0,2,-1,2011,Bridesmaids,Kids Are Cute But Disgusting,tt1478338 NL812ag82xI,2011.0,1,-1,2011,Bridesmaids,I Don't Need Dental Work,tt1478338 i9DMpMCCxuE,2010.0,2,-1,2011,Unstoppable,Are You In?,tt0477080 zFuw7sB1zxE,2010.0,5,-1,2011,Unstoppable,Will Meets Frank,tt0477080 fKeNgrRRoN8,2010.0,4,-1,2011,Unstoppable,Runaway Train,tt0477080 mDI2nymYW1M,2010.0,3,-1,2011,Unstoppable,Going After the Train,tt0477080 Y4ZHPeyJ4ss,2010.0,1,-1,2011,Unstoppable,Playing Chicken with the Train,tt0477080 SihfPA7vJms,2011.0,2,-1,2011,The Hangover Part 2,Pig!,tt1411697 DuyH1j2jMRg,2005.0,3,10,2011,Brokeback Mountain,Lovers,tt0388795 CemLiSI5ox8,2001.0,3,11,2011,A Beautiful Mind,Governing Dynamics: Ignore the Blonde,tt0268978 cxQuvLl2E-I,2011.0,1,-1,2011,The Hangover Part 2,I Think It's Happened Again,tt1411697 2Ee6xrIGhcY,1985.0,9,10,2011,Fletch,Hug a Cop,tt0089155 Y-Mhn3xTlUk,1985.0,5,10,2011,Fletch,The Doberman,tt0089155 ZY_uGAx3rxE,1985.0,7,10,2011,Fletch,Inspects a Plane,tt0089155 AJuIYcVnc2I,1985.0,10,10,2011,Fletch,Mattress Police,tt0089155 oK1X8SfGMs8,1985.0,3,10,2011,Fletch,Autopsy Assistant,tt0089155 pWGGQmeKdkk,1985.0,1,10,2011,Fletch,"Marvin, Velma, and Provo",tt0089155 9-zf2UBp7fY,1985.0,2,10,2011,Fletch,"Bend Over, Mr. Babar",tt0089155 i7AUpGXLDdk,1985.0,4,10,2011,Fletch,'s Laker Dream,tt0089155 2bx4g-8PY9Q,1985.0,8,10,2011,Fletch,Can I Borrow Your Towel?,tt0089155 EmDQiL3UNj4,1973.0,10,10,2011,The Sting,It's Close,tt0070735 m1t9QOSYqYM,1985.0,6,10,2011,Fletch,I'll Waive My Rights,tt0089155 VYjyFQS3DWM,1973.0,9,10,2011,The Sting,You're a Gutless Cheat,tt0070735 kAi0cSCUWfg,1973.0,5,10,2011,The Sting,This is a Class Joint,tt0070735 M-rbVvVD60k,2009.0,7,10,2011,Into Temptation,I Forgive You,tt1232824 nby0t43dlIs,1973.0,7,10,2011,The Sting,Johnny Gets the Girl,tt0070735 f0eTISgJ3Io,1973.0,8,10,2011,The Sting,A Real Professional,tt0070735 BAF9OAO4TtA,1973.0,1,10,2011,The Sting,World's Easiest Five Grand,tt0070735 tdCot34--pc,1973.0,6,10,2011,The Sting,"It's Over, Hooker",tt0070735 773E6GPll3A,1973.0,3,10,2011,The Sting,A Game of Jacks,tt0070735 vw1dPsf0JgE,1973.0,4,10,2011,The Sting,The Hook,tt0070735 Lh8dcvj-0NA,1973.0,2,10,2011,The Sting,Name's Lonnegan,tt0070735 c9wVzDytTFU,1990.0,9,11,2011,Darkman,Chopper Ride,tt0099365 G4YcCF8uLiI,1990.0,11,11,2011,Darkman,Call Me...,tt0099365 LSMl31b3OKc,1990.0,10,11,2011,Darkman,Battles Strack,tt0099365 lbdeAhpIPhE,1990.0,7,11,2011,Darkman,The Pink Elephant,tt0099365 MuTaXwt02vA,1990.0,6,11,2011,Darkman,Durant Sees Double,tt0099365 f1fSmptANOU,1990.0,5,11,2011,Darkman,See the Dancing Freak!,tt0099365 fIT7VMVju0A,1990.0,4,11,2011,Darkman,Impersonates Pauly,tt0099365 W2gTKUd1gfQ,2002.0,8,9,2011,The Scorpion King,Swords of Fire,tt0277296 hnNXvk6sLvw,1990.0,2,11,2011,Darkman,Escape From the Burn Ward,tt0099365 qXL3aXIGIKc,1990.0,8,11,2011,Darkman,You Have Been a Bad Boy!,tt0099365 6Diop4IOk68,2002.0,9,9,2011,The Scorpion King,Hail to the King,tt0277296 bSDqN3UTrPI,1990.0,3,11,2011,Darkman,Playing in Traffic,tt0099365 3fwlRWBtHLg,1990.0,1,11,2011,Darkman,The Explosion,tt0099365 jutOpRQ7Osg,1998.0,6,10,2011,Out of Sight,Ice Cream for Freaks Scene,tt0120780 rNPcxSp5a2o,2002.0,3,9,2011,The Scorpion King,Punishment For Stealing,tt0277296 f4zl3CuJvt8,2002.0,7,9,2011,The Scorpion King,Cobra Roulette,tt0277296 y0iBQV-yyLI,1998.0,10,10,2011,Out of Sight,Karen Shoots Jack Scene,tt0120780 p5lEvn7ejJI,1998.0,9,10,2011,Out of Sight,Opening the Safe Scene,tt0120780 Te4G4EGjidM,1998.0,7,10,2011,Out of Sight,What If? Scene,tt0120780 -RJ6USD2nEU,1998.0,1,10,2011,Out of Sight,First Time Being Robbed? Scene,tt0120780 cbzBwleJnLY,1998.0,4,10,2011,Out of Sight,Karens in the Lobby Scene,tt0120780 llzXzUe2KAk,2002.0,5,9,2011,The Scorpion King,Soldiers in the Cave,tt0277296 3ThrlTaPWO8,1998.0,5,10,2011,Out of Sight,Wanting to Tussle Scene,tt0120780 A59SQO2FvPA,2002.0,6,9,2011,The Scorpion King,Scorpion Venom,tt0277296 hlNvdfv76WA,2002.0,4,9,2011,The Scorpion King,Capturing the Sorceress,tt0277296 gAWrAQp7pWQ,2002.0,2,9,2011,The Scorpion King,Fire Ants,tt0277296 SZfw1S80QoQ,1998.0,2,10,2011,Out of Sight,Jail Break Scene,tt0120780 omy5TVA-fY0,1999.0,9,10,2011,The Mummy,Imhotep's Priests Return,tt0120616 98NAf9zhIu0,2002.0,1,9,2011,The Scorpion King,The Great Memnon,tt0277296 S5IHNcpa7p0,1985.0,5,8,2011,The Breakfast Club,Andrew and Bender Fight,tt0088847 Tm0oAv2moOw,1985.0,4,8,2011,The Breakfast Club,Getting to Know Each Other,tt0088847 rnbDA4wKrg0,1985.0,2,8,2011,The Breakfast Club,Social Clubs,tt0088847 bTeYncx1xmI,1985.0,3,8,2011,The Breakfast Club,Eat My Shorts,tt0088847 w0cXyGVsUjs,1960.0,10,10,2011,Spartacus,Goodbye My Life,tt0054331 FKCmyiljKo0,1960.0,8,10,2011,Spartacus,I'm,tt0054331 6DI_C-xXcOQ,1960.0,7,10,2011,Spartacus,Breaking Glabrus' Power,tt0054331 tetwGGL997s,1960.0,6,10,2011,Spartacus,Death Is the Only Freedom,tt0054331 ARUzoPWS4Uk,1999.0,10,10,2011,The Mummy,Goodbye Beni,tt0120616 AsBLdj7OyXc,1960.0,5,10,2011,Spartacus,I Want to Know,tt0054331 ersxqFwDkWA,1999.0,7,10,2011,The Mummy,Imhotep Creates a Killer Sandstorm,tt0120616 K58cPYCTiPM,1999.0,6,10,2011,The Mummy,Imhotep Kills Mr. Henderson,tt0120616 lBeh1jkanrE,1960.0,3,10,2011,Spartacus,Gladiator Training,tt0054331 pDWR5RkWRTY,1999.0,5,10,2011,The Mummy,Threatens Beni,tt0120616 GJP8XTzpOCw,1999.0,8,10,2011,The Mummy,Scarab Attack,tt0120616 6J-PhFYNbOU,1999.0,4,10,2011,The Mummy,The Book of the Dead,tt0120616 zCLyLBrugD0,1960.0,4,10,2011,Spartacus,Fight to the Death,tt0054331 YoQeksBRPLI,1960.0,2,10,2011,Spartacus,I'm Not an Animal,tt0054331 u3XXKF0oDtU,1999.0,1,10,2011,The Mummy,The Pharaoh is Killed,tt0120616 YL_90r0J120,1999.0,2,10,2011,The Mummy,Imhotep Is Mummified Alive,tt0120616 _oyt0p3Kikg,2004.0,8,10,2011,Van Helsing,A Werewolf Cure Scene,tt0338526 A1HqjBc6LhA,1982.0,5,10,2011,Fast Times at Ridgemont High,Brad Gets Canned,tt0083929 jr60kvuKw3w,2004.0,9,10,2011,Van Helsing,Werewolf vs. Dracula Scene,tt0338526 Y2y_dipI6_M,2004.0,7,10,2011,Van Helsing,I'll Set You Free Scene,tt0338526 pgL4IvoR7tw,2008.0,10,12,2011,Death Race,Destroying the Dreadnought,tt0452608 21Vohd23VMI,2008.0,12,12,2011,Death Race,I Love This Game,tt0452608 R8-x5ORZe70,2008.0,9,12,2011,Death Race,The Dreadnought,tt0452608 aaU-KRx8Zc8,2008.0,11,12,2011,Death Race,Jensen and Joe Escape,tt0452608 bMtdrKIdDgE,1982.0,2,10,2011,Fast Times at Ridgemont High,Spicoli Meets Mr. Hand,tt0083929 hReFx1kjuIE,1982.0,10,10,2011,Fast Times at Ridgemont High,Mi-T Man,tt0083929 JV8lJEE1p0w,2008.0,8,12,2011,Death Race,Revenge on Pachenko,tt0452608 6J8__fWphE0,1982.0,9,10,2011,Fast Times at Ridgemont High,Spicoli Orders a Pizza,tt0083929 k8zDVhc4XPs,2008.0,7,12,2011,Death Race,Jensen Fights Pachenko,tt0452608 bc2muGlQIlk,1982.0,4,10,2011,Fast Times at Ridgemont High,I Don't Know,tt0083929 YYV5f0Aqo4w,1982.0,8,10,2011,Fast Times at Ridgemont High,Jefferson Makes Lincoln Pay,tt0083929 Yqf0AqAHhaM,2008.0,4,12,2011,Death Race,Jensen's First Race,tt0452608 QN_Nod65e7o,1982.0,7,10,2011,Fast Times at Ridgemont High,He's Gonna Kill Us!,tt0083929 sKrpl-KBTzQ,1982.0,6,10,2011,Fast Times at Ridgemont High,Spicoli's Surfer Dream,tt0083929 bS9N8dEdZCQ,2004.0,2,10,2011,Van Helsing,Welcome to Transylvania Scene,tt0338526 9IUZkug8qo8,1982.0,3,10,2011,Fast Times at Ridgemont High,Carrot Practice,tt0083929 4MFzzWkl0_g,2008.0,6,12,2011,Death Race,You Wanted a Monster,tt0452608 k2NaHBVVYzY,1982.0,1,10,2011,Fast Times at Ridgemont High,"No Shirt, No Shoes, No Dice",tt0083929 JVWrVCLs8ms,2004.0,4,10,2011,Van Helsing,I Am Count Dracula Scene,tt0338526 AD9YlbnGwpA,2004.0,3,10,2011,Van Helsing,Here She Comes! Scene,tt0338526 3kTQBCokfAg,2004.0,6,10,2011,Van Helsing,Save the Monster Scene,tt0338526 jLvu6WNWzKg,2008.0,3,12,2011,Death Race,Rules of,tt0452608 QIBTN3qSB44,2004.0,1,10,2011,Van Helsing,Werewolf on the Loose Scene,tt0338526 yiZpb7GPLYs,2006.0,8,10,2011,The Break-Up,Mediation,tt0452594 Ls_8cFgBUj4,1993.0,12,12,2011,Dazed and Confused,Just Keep Livin',tt0106677 zLso3zVuBMQ,2009.0,4,10,2011,Funny People,Kill Me,tt1201167 fZIWDis34Xs,2006.0,7,10,2011,The Break-Up,Game Night,tt0452594 7Lv6KX12Fbs,2006.0,10,10,2011,The Break-Up,Good to See You,tt0452594 pTptxpcYySI,1998.0,3,10,2011,Out of Sight,Stuck in the Trunk Scene,tt0120780 bX6BKxFkU78,2006.0,9,10,2011,The Break-Up,I'll Take Care of It,tt0452594 Ywd-UZnkfR8,2009.0,1,10,2011,Public Enemies,The Bank's Money,tt1152836 xx2qTUg_buo,2009.0,10,10,2011,Public Enemies,Gunned Down,tt1152836 trgDVhZHIrc,2009.0,9,10,2011,Public Enemies,Defying the Law,tt1152836 eCQIRkboAM4,1998.0,8,10,2011,Out of Sight,Hotel Strip Tease Scene,tt0120780 U16anbRFRyc,2009.0,4,10,2011,Public Enemies,Gross Incompetence,tt1152836 d8WHOiQZGok,1993.0,8,12,2011,Dazed and Confused,The Emporium,tt0106677 Z6XIGZ51VMo,1993.0,7,12,2011,Dazed and Confused,Cruising,tt0106677 NjFLXuCHUiw,2006.0,2,10,2011,"You, Me and Dupree",Guy's Night,tt0463034 ScHOVAo6tQ0,1984.0,3,10,2011,The Last Starfighter,Victory or Death!,tt0087597 I7MwxFdb0Ls,1993.0,11,12,2011,Dazed and Confused,O'Bannion's Payback,tt0106677 BYoWNwhu0DM,1984.0,7,10,2011,The Last Starfighter,A Gung Ho Iguana,tt0087597 Olm0KUtsFE8,1993.0,6,12,2011,Dazed and Confused,Why Can't We Be Friends?,tt0106677 NjN-PLW521s,1993.0,10,12,2011,Dazed and Confused,Mailbox Man's Revenge,tt0106677 MbRhuUtKHV4,1993.0,1,12,2011,Dazed and Confused,Gilligan's Island Fantasy,tt0106677 wknywxfcE5M,1993.0,9,12,2011,Dazed and Confused,High School Girls,tt0106677 aF3BXL1cQYY,1993.0,4,12,2011,Dazed and Confused,School's Out for Summer,tt0106677 rtkI87FeqOY,1993.0,5,12,2011,Dazed and Confused,Freshmen Hazing,tt0106677 sKFlL_G9S0c,2006.0,10,10,2011,"You, Me and Dupree",Seven Different Kinds of Smoke,tt0463034 -CgUGjRFukQ,1993.0,2,12,2011,Dazed and Confused,Calling Mitch Out,tt0106677 ANM7_NTFvE4,1993.0,3,12,2011,Dazed and Confused,Don Hits on a Teacher,tt0106677 REzwusMDvzE,2006.0,8,10,2011,"You, Me and Dupree",Fishing Fantasy,tt0463034 SlyCtFYVQmU,2006.0,7,10,2011,"You, Me and Dupree",Going Camping,tt0463034 uAMrR05Xil8,2006.0,6,10,2011,"You, Me and Dupree",Career Day with Randolph Dupree,tt0463034 DMo2qyKq4_w,2006.0,3,10,2011,"You, Me and Dupree",Dupree Moves In,tt0463034 q4RbzjuXB6E,2006.0,9,10,2011,"You, Me and Dupree",Office Smoke Signals,tt0463034 Ig-Vf5-qTSM,2006.0,4,10,2011,"You, Me and Dupree",My Little Duprees!,tt0463034 KW23B9uZBVE,2006.0,5,10,2011,"You, Me and Dupree",Mormon Librarian,tt0463034 bWaxWtgjY1g,2006.0,1,10,2011,"You, Me and Dupree",You've Got That Carl-Ness,tt0463034 wTz_kSiZaIM,2009.0,7,10,2011,Public Enemies,Escaping the Jail,tt1152836 sUa29Kqpdn0,2006.0,9,10,2011,Smokin' Aces,Stairwell Standoff,tt0475394 c-tGV96ceBM,2006.0,10,10,2011,Smokin' Aces,The Way of the World,tt0475394 biYVl18JAFM,2006.0,6,10,2011,Smokin' Aces,Elevator Shootout,tt0475394 kP6EOOdTQP8,2006.0,8,10,2011,Smokin' Aces,Sharice Loses It,tt0475394 y6WmWVpvGqo,2006.0,7,10,2011,Smokin' Aces,A Mortal Wound,tt0475394 iaZzcRtmXXY,2005.0,5,10,2011,Brokeback Mountain,See You Around,tt0388795 wwE7qkkri-U,2005.0,9,10,2011,Brokeback Mountain,Visiting Jack's Parents,tt0388795 ktrGDczwkec,2006.0,2,10,2011,Smokin' Aces,Is It Cinnamon Roll?,tt0475394 PkOIMjJrl3Y,2009.0,2,-1,2011,Fighting,Shawn vs. Dragon Lee,tt1082601 TO0OWazmdc8,2009.0,1,-1,2011,Fighting,Shawn Is Asked to Take the Fall,tt1082601 Xh1Ls7C0UrU,2006.0,1,10,2011,Smokin' Aces,Meet Buddy Israel,tt0475394 M1fnkYbVijE,2006.0,4,10,2011,Smokin' Aces,"I Forgive You, Darwin",tt0475394 w6RItV0ZDgI,2006.0,3,10,2011,Smokin' Aces,Ripped Reed,tt0475394 KZtF_gT3Sgg,2006.0,10,10,2011,Accepted,Bartleby's Speech,tt0384793 lQfG0D7wPKA,2006.0,8,10,2011,Accepted,What Do You Want to Learn?,tt0384793 eP52omnnZmg,2006.0,9,10,2011,Accepted,Ask Me About My Wiener,tt0384793 QZjmr4_K8To,2006.0,7,10,2011,Accepted,Welcome to S.H.I.T.,tt0384793 -w9kof4SQp4,2006.0,6,10,2011,Accepted,Bartleby Mocks Hoyt,tt0384793 mHJH39bjALk,2006.0,4,10,2011,Accepted,We Gotta Find a Dean,tt0384793 e8HRcYG3Ftg,2006.0,5,10,2011,Accepted,Breeding Pimps and Whores,tt0384793 TWjtzvFrA8c,2006.0,3,10,2011,Accepted,The Birthplace of Crack,tt0384793 nGWtzmsCHgc,2006.0,2,10,2011,Accepted,Pocahontas Never Went to College,tt0384793 RehkdOxmytI,2006.0,1,10,2011,Accepted,An Invitation from Monica,tt0384793 A8Tw5xASluI,2006.0,6,10,2011,The Break-Up,Family Stuff,tt0452594 Uvtt94Oz4N4,1984.0,2,10,2011,The Last Starfighter,Centauri's Proposition,tt0087597 MLNvUsTBGyE,1984.0,8,10,2011,The Last Starfighter,Death Blossom,tt0087597 nLN36pgwS5o,1984.0,9,10,2011,The Last Starfighter,We Die,tt0087597 RP9ywTd8bRM,2006.0,5,10,2011,The Break-Up,The Alley Has Changed,tt0452594 U4D0HSqKiKU,1984.0,6,10,2011,The Last Starfighter,,tt0087597 pkk8WIkTJPA,1984.0,10,10,2011,The Last Starfighter,A New Adventure,tt0087597 _D2USWrWBL8,2009.0,6,10,2011,Public Enemies,You Act Like a Confident Man,tt1152836 keQtOFycgPs,2001.0,9,11,2011,A Beautiful Mind,The Baby's Bath,tt0268978 i9dK32LLtY0,1984.0,5,10,2011,The Last Starfighter,A Terrible Nightmare,tt0087597 lplDv1m_Zhk,2001.0,7,11,2011,A Beautiful Mind,Intercourse ASAP,tt0268978 H7Y_mHNgnpA,2001.0,11,11,2011,A Beautiful Mind,The Nobel Prize,tt0268978 GCfWXNmFFbM,1960.0,1,10,2011,Spartacus,Is Sold,tt0054331 86CKsczBdu0,2001.0,10,11,2011,A Beautiful Mind,Nash's Pen Ceremony,tt0268978 tfX2C-Zewuo,2004.0,11,12,2011,Meet the Fockers,You Drugged My Son?,tt0290002 PMtkv1zgi8o,2001.0,6,11,2011,A Beautiful Mind,Parcher Recruits Nash,tt0268978 GvF4-C1EuJU,2001.0,8,11,2011,A Beautiful Mind,Charles Isn't There,tt0268978 trn1aO8h9Uo,2001.0,2,11,2011,A Beautiful Mind,The Hubris of the Defeated,tt0268978 Vzpu-P2eRuI,2001.0,4,11,2011,A Beautiful Mind,Nash Cracks the Code,tt0268978 c9O1VVeMzhc,1963.0,8,10,2011,Charade,The Most Valuable Stamp,tt0056923 WMX_DNeziH0,2004.0,12,12,2011,Meet the Fockers,Tasered and Arrested,tt0290002 pYdjNeFh6zw,2001.0,5,11,2011,A Beautiful Mind,Alicia's Solution,tt0268978 frMMK_rKwD0,2004.0,8,12,2011,Meet the Fockers,Little Jack's First Word,tt0290002 qFc_0WXxOXI,2004.0,6,12,2011,Meet the Fockers,Foreskin Fondue,tt0290002 1p8N6MlPDvo,2004.0,10,12,2011,Meet the Fockers,Yo Soy Tu Papa,tt0290002 x0VcDfDfx24,2004.0,9,12,2011,Meet the Fockers,The Lomi Lomi Massage,tt0290002 Pm5gb2FVYRQ,2004.0,7,12,2011,Meet the Fockers,Family Togetherness,tt0290002 fNqz4AY0pm8,2004.0,4,12,2011,Meet the Fockers,Jinxy Flushes Moses,tt0290002 T2Lh9Lt3_w4,2004.0,5,12,2011,Meet the Fockers,Handsome Little Focker,tt0290002 Fa1IN1GN4Q4,2005.0,3,8,2011,The 40 Year Old Virgin,How to Talk to Women,tt0405422 dvm7mLmAtTM,2005.0,8,8,2011,The 40 Year Old Virgin,I'm a Virgin,tt0405422 pYBo5eS5pW8,2005.0,4,8,2011,The 40 Year Old Virgin,Date-a-palooza,tt0405422 g0s18i95JKA,2004.0,2,12,2011,Meet the Fockers,Jack's Manary Gland,tt0290002 x-A6zERn6yo,2004.0,3,12,2011,Meet the Fockers,The Wall of Gaylord,tt0290002 OJ3gsR-DqAE,2005.0,7,8,2011,The 40 Year Old Virgin,Why Don't You Want to Have Sex?,tt0405422 7vjP2EKf7do,2005.0,6,8,2011,The 40 Year Old Virgin,Getting to Know Each Other,tt0405422 zXm6Bc3RuJE,2004.0,1,12,2011,Meet the Fockers,Greg Drinks Breast Milk,tt0290002 99UdqbS8q2M,2005.0,5,8,2011,The 40 Year Old Virgin,Andy Gets a Date,tt0405422 7OFROViP0J0,1985.0,7,8,2011,The Breakfast Club,Covering for Bender,tt0088847 Vn3IRHhPXMo,2005.0,1,8,2011,The 40 Year Old Virgin,Are You a Virgin?,tt0405422 u3mupIlFIYQ,1985.0,6,8,2011,The Breakfast Club,Lunchtime,tt0088847 oRKbez1LpWU,2005.0,2,8,2011,The 40 Year Old Virgin,Man O' Lantern,tt0405422 Z2WZrxuwDhs,1985.0,1,8,2011,The Breakfast Club,Don't Mess With the Bull,tt0088847 jsZkkqLDFmg,1985.0,8,8,2011,The Breakfast Club,Bender Mocks Claire,tt0088847 a8FA5zBHiFA,1963.0,2,10,2011,Charade,Mr. Lampert's Funeral,tt0056923 vKjBFsyYC0g,-1.0,11,12,2011,The Big Lebowski,The Bereaved Scene,tt0118715 DXTLoQyijJ0,1963.0,10,10,2011,Charade,Whatever Your Name Is,tt0056923 7xDTFtG9kYw,1963.0,4,10,2011,Charade,Herman Attacks,tt0056923 01ZWXIY1mcs,1963.0,9,10,2011,Charade,The Game is Over,tt0056923 Qgsst15iI2k,1963.0,1,10,2011,Charade,When Strangers Meet,tt0056923 MMuen83l-Sc,2009.0,3,10,2011,Funny People,The Myspace Show,tt1201167 gfLw0KJ6bLI,1963.0,3,10,2011,Charade,Tex Threatens Regina,tt0056923 ziVJd7Fwzvc,1963.0,5,10,2011,Charade,Who Can You Trust?,tt0056923 mRmLfuhXHR8,1963.0,6,10,2011,Charade,Rooftop Fight,tt0056923 Q9vxnIGIFXQ,2009.0,10,10,2011,Funny People,Clarke vs. George vs. Ira,tt1201167 NEYwJbjyF2M,1963.0,7,10,2011,Charade,Lying Black Foot,tt0056923 YBc362_R2pw,2009.0,8,10,2011,Funny People,Celebrating George's Recovery,tt1201167 0qWMjgpIECA,2009.0,9,10,2011,Funny People,Eminem Hates Raymond,tt1201167 p8CPTHEAfJc,2009.0,7,10,2011,Funny People,George's Toast,tt1201167 XZzaK0UZJ08,2009.0,6,10,2011,Funny People,Ira Cries at Lunch,tt1201167 k4X42D5Gg7o,2009.0,5,10,2011,Funny People,Terrifying Accent,tt1201167 gW-Os5mjbGM,2009.0,2,10,2011,Funny People,Randy Kills It,tt1201167 zeKb7O1KtIU,2009.0,1,10,2011,Funny People,Marginally Famous A**hole,tt1201167 _ss0nT5DGHw,1981.0,6,10,2011,An American Werewolf in London,Subway Chase Scene,tt0082010 J2Ws0QEADsU,1981.0,4,10,2011,An American Werewolf in London,Jack's Warning Scene,tt0082010 Hb7zhYzenhY,1981.0,2,10,2011,An American Werewolf in London,Werewolf Attack Scene,tt0082010 D0wShZqevLU,1981.0,3,10,2011,An American Werewolf in London,Mutant Nazi Massacre Scene,tt0082010 07FdVcspOfQ,1981.0,1,10,2011,An American Werewolf in London,The Slaughtered Lamb Scene,tt0082010 PztgWdMEJdg,-1.0,9,12,2011,The Big Lebowski,Is This Your Homework Larry? Scene,tt0118715 TfN-0IJACLk,1998.0,9,11,2011,Elizabeth,'s Last Words to Robert,tt0127536 euV2U_M7RMI,2009.0,3,-1,2011,Taking Woodstock,You're Security?,tt1127896 LLs-Oreo_bk,1981.0,8,10,2011,An American Werewolf in London,David's Undead Victims Scene,tt0082010 omTBgliYDKM,2009.0,4,-1,2011,Taking Woodstock,I Remember This Hill,tt1127896 X9yDWojz6YA,2009.0,5,-1,2011,Taking Woodstock,Some Groovy People,tt1127896 SQoNv-hzC_Y,1981.0,9,10,2011,An American Werewolf in London,London Massacre Scene,tt0082010 3p1rb_t2Jg4,2009.0,2,-1,2011,Taking Woodstock,The El Monaco,tt1127896 IN5zv7oMwwg,2009.0,1,-1,2011,Taking Woodstock,Yasgur's Farm,tt1127896 jniUBhuJSuw,1998.0,10,11,2011,Elizabeth,I Have Become a Virgin,tt0127536 9mnLbhHR6-g,1998.0,11,11,2011,Elizabeth,The Virgin Queen,tt0127536 sEnFt6neTu0,1998.0,6,11,2011,Elizabeth,Assassination Attempt,tt0127536 MHzcc00ZXCM,1998.0,7,11,2011,Elizabeth,Duc d'Anjou in a Dress,tt0127536 u-BIr0fW5cU,1998.0,8,11,2011,Elizabeth,I Am No Man's,tt0127536 Z1bYkHffGXI,1981.0,10,10,2011,An American Werewolf in London,Let Me Help You Scene,tt0082010 WRjPRZEg7kM,1981.0,7,10,2011,An American Werewolf in London,Naked at the Zoo Scene,tt0082010 nx002D9N6qU,1998.0,5,11,2011,Elizabeth,and Robert Dance a Volta,tt0127536 yBS-MktwqgI,1998.0,4,11,2011,Elizabeth,Is Crowned,tt0127536 Rngpf0Yluog,1981.0,5,10,2011,An American Werewolf in London,Undead Jack Scene,tt0082010 44ZZN9BqlEE,2005.0,6,10,2011,Brokeback Mountain,Reunited.,tt0388795 tzKEAdJLRfg,2005.0,10,10,2011,Brokeback Mountain,Alma's Engagement,tt0388795 iIUzHUOdLhM,1998.0,2,11,2011,Elizabeth,The Small Question of Religion,tt0127536 nxdpR5oyCOs,1998.0,1,11,2011,Elizabeth,The Burning of Master Nicholas Ridley,tt0127536 MAvccNVx9tE,2009.0,3,10,2011,Public Enemies,What Else Do You Need to Know?,tt1152836 Wl-C_I-ZhRI,2005.0,2,10,2011,Brokeback Mountain,Nobody's Business But Ours,tt0388795 op6H61wRi-Y,2008.0,11,11,2011,Baby Mama,One in a Million,tt0871426 -i9Fv-znJx0,2009.0,4,-1,2011,Fighting,Shawn Fights Evan,tt1082601 sUa9WglkKCI,2009.0,3,-1,2011,Fighting,Shawn Won't Lose,tt1082601 g2KF7DAlM4E,2005.0,8,10,2011,Brokeback Mountain,Jack's Death,tt0388795 F2zTd_YwTvo,1992.0,4,8,2011,Scent of a Woman,The Tango,tt0105323 958GzzqgWnw,1983.0,4,8,2011,Scarface,Every Dog Has His Day Scene,tt0086250 -4GsCEopbd4,1983.0,7,8,2011,Scarface,Gina Shoots Tony Scene,tt0086250 _4ezPvzKe5M,-1.0,12,12,2011,The Big Lebowski,Donny's Ashes Scene,tt0118715 KVK6yLqY54w,2005.0,7,10,2011,Brokeback Mountain,I Wish I Knew How to Quit You,tt0388795 BKV1SxfmeYQ,2001.0,1,11,2011,A Beautiful Mind,I Don't Like People Much,tt0268978 VUChuDMVqvY,1986.0,3,10,2011,Howard the Duck,Howard's Wallet,tt0091225 LwpaOr1hVZk,1986.0,5,10,2011,Howard the Duck,I'm a Freak,tt0091225 5ZXyC0SDHNw,1986.0,2,10,2011,Howard the Duck,A Brewski at Beverly's,tt0091225 fEcClEBT6QU,1988.0,8,10,2011,The Land Before Time,Littlefoot to the Rescue,tt0095489 weHHBdmI_Jw,1988.0,9,10,2011,The Land Before Time,Petrie Saves His Friends From Sharptooth,tt0095489 BmLPVUYQM34,1954.0,2,10,2011,Creature from the Black Lagoon,The Creature's Hand,tt0046876 2t2iFLshgWQ,1988.0,6,10,2011,The Land Before Time,The Friends Find Spike,tt0095489 s-rl8q9jezU,2008.0,9,10,2011,Hellboy 2: The Golden Army,A Deal With the Angel of Death,tt0411477 dX762k_3zWg,1977.0,3,10,2011,Smokey and the Bandit,"Hello, Smokey",tt0076729 bg5SLBapMiI,2008.0,10,10,2011,Hellboy 2: The Golden Army,Hellboy vs. The Golden Army,tt0411477 jcNFjpxU0E8,1977.0,5,10,2011,Smokey and the Bandit,That's an Attention Getter,tt0076729 VSDqDOLupNc,2008.0,7,10,2011,Hellboy 2: The Golden Army,"Hellboy ""Smokes"" Johann",tt0411477 7oQ-Usd7Tes,2008.0,2,10,2011,Hellboy 2: The Golden Army,Burn 'Em All!,tt0411477 KBUVZlTNj_8,2008.0,6,11,2011,Baby Mama,Surrogate Support Group,tt0871426 DY1HyTONAT8,2008.0,4,10,2011,Hellboy 2: The Golden Army,Troll Market Battle,tt0411477 wNbKp6IGhrc,2008.0,8,9,2011,Frost/Nixon,Nixon Carries a Burden,tt0870111 zmRPZJp1pYQ,2005.0,1,10,2011,Brokeback Mountain,Ennis Opens Up,tt0388795 9_sNsOl5uUI,2008.0,1,10,2011,Hellboy 2: The Golden Army,Attack of the Tooth Fairies,tt0411477 FUR11zrrNb0,2008.0,9,9,2011,Frost/Nixon,Frost Says Goodbye to Nixon,tt0870111 vFHYiOfBRng,2008.0,7,9,2011,Frost/Nixon,"When the President Does It, It's Not Illegal",tt0870111 _qG67vGwgcY,2007.0,6,10,2011,Knocked Up,Double Date,tt0478311 pT9GPloXjA8,2008.0,6,9,2011,Frost/Nixon,That Shadowy Place We Call Our Soul,tt0870111 fsaidN93VnA,2007.0,5,10,2011,Knocked Up,Where Do Babies Come From?,tt0478311 WjQovCr8Tgs,2007.0,9,10,2011,Knocked Up,People Like Pregnant,tt0478311 gTAMKrPh1AE,2008.0,5,9,2011,Frost/Nixon,Nixon Asks Frost About Fornication,tt0870111 BYXLKRNCVrw,2007.0,7,10,2011,Knocked Up,Pink Eye,tt0478311 yrLutFhQLgE,2007.0,10,10,2011,Knocked Up,Giving Birth,tt0478311 FmiVlyAfTnw,2007.0,8,10,2011,Knocked Up,"You Old, She Pregnant",tt0478311 1M6oW6a0iAw,-1.0,10,12,2011,The Big Lebowski,These Men Are Cowards Scene,tt0118715 7L2qP-xQ_7o,-1.0,8,12,2011,The Big Lebowski,Nice Marmot Scene,tt0118715 F1SfzV67Bqw,-1.0,5,12,2011,The Big Lebowski,Nobody F's With Jesus Scene,tt0118715 bBil15ORYI0,2006.0,2,10,2011,The Break-Up,Happy Holidays,tt0452594 8sJaglGoByg,2006.0,1,10,2011,The Break-Up,Ever Had a Hot Dog?,tt0452594 AJRmY9VXf1g,1984.0,1,10,2011,The Last Starfighter,Record Breaker,tt0087597 nn3I6-DBLJM,2006.0,4,10,2011,The Break-Up,I'm Done!,tt0452594 1wc_mZ86ypg,2006.0,3,10,2011,The Break-Up,Show Lemons,tt0452594 t6wgyc8p_hY,2008.0,4,9,2011,Frost/Nixon,Nixon's Upper Lip,tt0870111 iOHElDaRs5E,2008.0,2,9,2011,Frost/Nixon,James Wants to Convict Nixon,tt0870111 9_4S_-cr9Rs,2009.0,8,10,2011,Public Enemies,Assault on the Lodge,tt1152836 2DPSnOrJaXo,2008.0,3,9,2011,Frost/Nixon,Nixon Makes a Joke,tt0870111 _IIp0gq_Jek,2005.0,4,10,2011,Brokeback Mountain,Jack and Ennis Brawl,tt0388795 IZhBhfty0LA,2009.0,5,10,2011,Public Enemies,I Ain't Goin' Nowhere,tt1152836 Yky4QtRX_DI,1983.0,5,8,2011,Scarface,Say Goodnight to the Bad Guy Scene,tt0086250 Zowmpbv1za0,1984.0,4,10,2011,The Last Starfighter,Interstellar Hit Beast,tt0087597 gRNkQRhMUiE,2009.0,2,10,2011,Public Enemies,I Rob Banks,tt1152836 a_z4IuxAqpE,1983.0,8,8,2011,Scarface,Say Hello to My Little Friend Scene,tt0086250 kg7goEASO5E,1983.0,2,8,2011,Scarface,Chainsaw Threat Scene,tt0086250 TKpXTy-sCxg,1983.0,3,8,2011,Scarface,How to Pick-Up Chicks Scene,tt0086250 ZcQtUdZ5Afs,1983.0,6,8,2011,Scarface,"No Wife, No Kids Scene",tt0086250 NXwxYIjqocA,1986.0,9,10,2011,Howard the Duck,The Dark Overlord,tt0091225 kZgE_sUrXFY,1983.0,1,8,2011,Scarface,Political Prisoner Scene,tt0086250 seqBLjTfnl4,1986.0,10,10,2011,Howard the Duck,Howard Saves the Day,tt0091225 RUE4v1rUpSM,1992.0,8,8,2011,Scent of a Woman,Frank Defends Charlie in Court,tt0105323 xkNNB9f_3Mc,1986.0,8,10,2011,Howard the Duck,Smog Inspection,tt0091225 xb8n4wftl08,1986.0,7,10,2011,Howard the Duck,Taking Flight,tt0091225 WZ6p4t3StSc,1992.0,7,8,2011,Scent of a Woman,I'm In the Dark,tt0105323 S-6xoT5Z2nA,1992.0,2,8,2011,Scent of a Woman,Frank's Pearls of Wisdom,tt0105323 ZIOCaOpBGpE,1986.0,6,10,2011,Howard the Duck,Intense Animal Magnetism,tt0091225 -EZ9f-GgWVQ,1992.0,1,8,2011,Scent of a Woman,Charlie Meets Frank,tt0105323 hHVZ_viVD9E,1992.0,5,8,2011,Scent of a Woman,Gray Ghosts,tt0105323 P_gn8RkrNAE,1992.0,3,8,2011,Scent of a Woman,The One That Got Away,tt0105323 Itr0jcR0S4s,1992.0,6,8,2011,Scent of a Woman,Ferrari Test Drive,tt0105323 2mz3oytpugs,1986.0,1,10,2011,Howard the Duck,No More Mr. Nice Duck,tt0091225 zAV44x9vVrk,1986.0,4,10,2011,Howard the Duck,"Me Phil, You Howard",tt0091225 YAlZyCUJKt4,1954.0,10,10,2011,Creature from the Black Lagoon,Killing the Creature,tt0046876 I9uVquExMi4,1988.0,10,10,2011,The Land Before Time,The Great Valley,tt0095489 _mpyFEkzhoo,1954.0,8,10,2011,Creature from the Black Lagoon,Snatched Off the Boat,tt0046876 q_wefCacDTE,1954.0,9,10,2011,Creature from the Black Lagoon,Into the Creature's Lair,tt0046876 hR1XzVQnfqY,1988.0,7,10,2011,The Land Before Time,Finding Green Food,tt0095489 CApLHv_NrAw,1954.0,7,10,2011,Creature from the Black Lagoon,Underwater Hunt,tt0046876 ariuokNFhSw,1954.0,4,10,2011,Creature from the Black Lagoon,Underwater Stalking,tt0046876 A8wAYZAwQFs,1954.0,6,10,2011,Creature from the Black Lagoon,The Creature Escapes,tt0046876 Bw5UwRasras,2008.0,9,10,2011,Milk,Gay Pride Rally Speech,tt1013753 FnjrwacqDLc,1988.0,5,10,2011,The Land Before Time,Littlefoot and Ducky Meet Petrie,tt0095489 iiA0J5rKoE4,1954.0,5,10,2011,Creature from the Black Lagoon,"The Creature, Captured",tt0046876 pNJRoSfVZxo,1954.0,3,10,2011,Creature from the Black Lagoon,The Creature Attacks,tt0046876 yMqQUG5t0js,1954.0,1,10,2011,Creature from the Black Lagoon,Dead or Alive?,tt0046876 QL7Qq67AJrY,1988.0,4,10,2011,The Land Before Time,Littlefoot Meets Ducky,tt0095489 hLQQfSmgoGY,1988.0,3,10,2011,The Land Before Time,Flyers and Cherries,tt0095489 WbW8GgAWKi8,1988.0,2,10,2011,The Land Before Time,Littlefoot's Mother Dies,tt0095489 kJg3GP4tH94,1988.0,1,10,2011,The Land Before Time,Littlefoot is Born,tt0095489 4wVmrgVqQlM,2007.0,3,10,2011,Knocked Up,Pregnant!,tt0478311 DZwnFcKAt30,2008.0,10,10,2011,Milk,Harvey Debates Senator Briggs,tt1013753 wBLliPipoYI,2008.0,4,10,2011,Milk,Cleve Joins the Revolution,tt1013753 9VAkRDPA2fk,2008.0,8,10,2011,Milk,Harvey Tries to Work With Dan,tt1013753 rh1lZYqwJAQ,2008.0,3,10,2011,Milk,Harvey Meets Cleve Jones,tt1013753 wOlCQYZWJRE,2008.0,7,10,2011,Milk,Strategy Session,tt1013753 C5x9bD6aoss,2008.0,5,10,2011,Milk,Victory Map,tt1013753 jl0ny6ij7jg,2008.0,6,10,2011,Milk,We Must Fight!,tt1013753 VepWTt1DzTA,2007.0,4,10,2011,Knocked Up,Parental Guidance,tt0478311 _GxSQs0FNN4,2008.0,1,10,2011,Milk,A Cold Welcome to the Castro,tt1013753 FRhGCEIB-4Y,2007.0,1,10,2011,Knocked Up,Tighten Up,tt0478311 JVKMNw0uUGw,1977.0,10,10,2011,Smokey and the Bandit,Bye Bye Sheriff Justice,tt0076729 rpp930f_fhU,2007.0,2,10,2011,Knocked Up,Did We Have Sex?,tt0478311 XqtjMtEkDhY,1977.0,9,10,2011,Smokey and the Bandit,The Snowman Is Comin' Through,tt0076729 fygiSfJjTLc,1977.0,8,10,2011,Smokey and the Bandit,"Oh, Look, a Football Game!",tt0076729 OYlBy85zxdo,1977.0,6,10,2011,Smokey and the Bandit,Jumping Mulberry Bridge,tt0076729 dIgGZA4qQoc,1977.0,1,10,2011,Smokey and the Bandit,A Real Challenge,tt0076729 S-pHuT2666s,1977.0,7,10,2011,Smokey and the Bandit,"Daddy, the Top Came Off",tt0076729 XbSfFmKJJ3c,1977.0,4,10,2011,Smokey and the Bandit,Runaway Bride,tt0076729 Jgmk5D4a8K8,1977.0,2,10,2011,Smokey and the Bandit,"For the Money, For the Glory, For the Fun",tt0076729 VLR_TDO0FTg,-1.0,7,12,2011,The Big Lebowski,She Kidnapped Herself Scene,tt0118715 dQbpx5Be5rI,-1.0,6,12,2011,The Big Lebowski,Bunch of Amateurs Scene,tt0118715 yAvJkoCNthU,2008.0,5,10,2011,Hellboy 2: The Golden Army,The Forest God Unleashed,tt0411477 YedqV4Gl_us,-1.0,4,12,2011,The Big Lebowski,You're Entering a World of Pain Scene,tt0118715 LnV_NPHo7Kk,2010.0,2,-1,2011,Beginners,The Joy of Sex,tt1532503 jAZRevRbGME,2010.0,3,-1,2011,Beginners,Awfully Alone,tt1532503 r9twTtXkQNA,-1.0,1,12,2011,The Big Lebowski,Where's the Money Lebowski? Scene,tt0118715 xJjCnWm5cvE,-1.0,3,12,2011,The Big Lebowski,I'm the Dude Scene,tt0118715 -Y1lyQpBVJI,2010.0,4,-1,2011,Beginners,House Music,tt1532503 4Wu598ENenk,-1.0,2,12,2011,The Big Lebowski,He Peed On My Rug Scene,tt0118715 wEUwtFg7PeI,2008.0,6,10,2011,Hellboy 2: The Golden Army,Killing the Forest God,tt0411477 4pYu83JHg0E,2010.0,1,-1,2011,Beginners,Take Out a Personal Ad,tt1532503 w4liPmQEPEU,2008.0,3,10,2011,Hellboy 2: The Golden Army,Prince Nuada Kills King Balor,tt0411477 yMjMgMaakMY,2008.0,8,10,2011,Hellboy 2: The Golden Army,Prince Nuada vs. Hellboy,tt0411477 Dnfl290-aIY,2008.0,10,11,2011,Baby Mama,Angie's Water Breaks,tt0871426 QxXRhbuqFEw,2008.0,1,9,2011,Frost/Nixon,No Holds Barred,tt0870111 z0BandJg8y4,2008.0,3,11,2011,Baby Mama,Barry Transfers His Success,tt0871426 IMSd1IbxmFA,2008.0,9,11,2011,Baby Mama,Five Minutes of Eye Contact,tt0871426 VUGhvs8zMZ8,2008.0,8,11,2011,Baby Mama,Spray a Little Pam,tt0871426 neVOaWPM_Mk,2008.0,4,11,2011,Baby Mama,Baby-Proof Toilet,tt0871426 6-wvim2zLFw,2008.0,2,11,2011,Baby Mama,I Just Don't Like Your Uterus,tt0871426 HSh7FRalwdg,2008.0,7,11,2011,Baby Mama,Birthing Class,tt0871426 Ol7EpMrfbGQ,2008.0,5,11,2011,Baby Mama,Swallowing the Vitamin,tt0871426 kK6QQIvO9gE,2008.0,1,11,2011,Baby Mama,Too Much for a First Date,tt0871426 73LReedA7N4,2005.0,7,-1,2011,Broken Flowers,Go Visit Them,tt0412019 YhK1fYhl5dg,2005.0,6,-1,2011,Broken Flowers,Hippie Chick,tt0412019 wqj7Q2jOTc4,2005.0,3,-1,2011,Broken Flowers,What Do You Want?,tt0412019 dl2NG3vkMTk,2005.0,5,-1,2011,Broken Flowers,Sherry and Don Break Up,tt0412019 jPiotGz9O9s,2003.0,5,-1,2011,21 Grams,Jack Returns Home,tt0315733 b95SzqTrjRo,2005.0,2,-1,2011,Broken Flowers,Lolita,tt0412019 tZ97edZTrHQ,2005.0,4,-1,2011,Broken Flowers,The List,tt0412019 kRg5-TIF9LQ,2005.0,1,-1,2011,Broken Flowers,Cat Communicator,tt0412019 A2QayxN3z68,2003.0,6,-1,2011,21 Grams,We're Gonna Go Home,tt0315733 OoKpYXTmYak,2003.0,2,-1,2011,21 Grams,Paul Meets With the Detective,tt0315733 GnbUZqkXBQM,2003.0,3,-1,2011,21 Grams,Jesus is Your Ticket,tt0315733 3MzOdxCbTgU,2003.0,1,-1,2011,21 Grams,Maybe Next Time,tt0315733 TgBLraZlGww,2002.0,2,-1,2011,The Pianist,Play For Me,tt0253474 AkR9wDct-0o,2002.0,4,-1,2011,The Pianist,Identity Card,tt0253474 -Hk2z0z216w,2002.0,5,-1,2011,The Pianist,Permitted to Stand,tt0253474 pV2XJZjCvP8,2002.0,1,-1,2011,The Pianist,Is That All?,tt0253474 yvcHCRvP3Gs,2003.0,5,10,2011,Monster,Now You Know Me,tt0340855 C4Y-l40swH0,2010.0,4,11,2011,Get Him to the Greek,The Game-changer,tt1226229 29nIXG5KJYw,1989.0,7,9,2011,Field of Dreams,Ray's Not Invited,tt0097351 pXEqXWfzyBY,2010.0,3,-1,2011,Skyline,No Exit,tt1564585 HEU-JXcdfIY,2010.0,5,-1,2011,Skyline,A Helicopter Goes Down,tt1564585 0NH8i-Q5Nck,2010.0,1,-1,2011,Skyline,Abducted by the Light,tt1564585 rPTis4f5DG8,2010.0,4,-1,2011,Skyline,Taken by the Pool,tt1564585 FJBpmWxw3o8,2010.0,2,-1,2011,Skyline,Under Attack in L.A.,tt1564585 1YCz4y8b58k,1990.0,2,10,2011,Opportunity Knocks,Eddie and the Remote,tt0100301 e8Bn6XVv9ew,1990.0,1,10,2011,Opportunity Knocks,You Do Not Talk When I Talk,tt0100301 cz1TJ4r7bOU,1989.0,8,9,2011,Field of Dreams,Ray Meets His Father,tt0097351 aQ5PyaHQWVA,1990.0,6,10,2011,Opportunity Knocks,"Holy Christ, I'm Jewish!",tt0100301 7SB16il97yw,1989.0,5,9,2011,Field of Dreams,People Will Come,tt0097351 wP3H6lZ_mt8,1992.0,7,10,2011,Army of Darkness,The Rise of Skeletons,tt0106308 6iW8MoAsz9Q,1992.0,9,10,2011,Army of Darkness,Buckle Up Bonehead,tt0106308 swhep7_jkeY,1992.0,4,10,2011,Army of Darkness,Little Clones,tt0106308 2gSf5UMZ8ms,1992.0,3,10,2011,Army of Darkness,"Yo She-Bitch, Let's Go!",tt0106308 2xB5GBvOqEY,1992.0,6,10,2011,Army of Darkness,Three Necronomicons,tt0106308 KIxetRsd_2c,1992.0,5,10,2011,Army of Darkness,Double Trouble,tt0106308 xFkARs9CHaE,1992.0,1,10,2011,Army of Darkness,A Witch in the Pit,tt0106308 oBoPQUIowHY,2008.0,9,11,2011,Forgetting Sarah Marshall,Matthew Hates Aldous,tt0800039 reYcW3bp8gg,2008.0,8,11,2011,Forgetting Sarah Marshall,Matthew's Demo,tt0800039 np-ndDy9YJ0,2008.0,11,11,2011,Forgetting Sarah Marshall,A Little Holiday With Hitler,tt0800039 RvNuTuiKyIo,2008.0,10,11,2011,Forgetting Sarah Marshall,Sex Off,tt0800039 PKIpCPS-oZc,2008.0,6,11,2011,Forgetting Sarah Marshall,"The Less You Do, the More You Do",tt0800039 P8Xg1vVkIh8,2008.0,7,11,2011,Forgetting Sarah Marshall,When Life Gives You Lemons,tt0800039 b1Qxbu777zo,2008.0,4,11,2011,Forgetting Sarah Marshall,Newlywed Sex,tt0800039 4Z3s1fJgCEE,2008.0,3,11,2011,Forgetting Sarah Marshall,Peter Cries Hysterically,tt0800039 FMFJli50jdY,2008.0,2,11,2011,Forgetting Sarah Marshall,Ruining Sarah's Day,tt0800039 HQv0WWhoZnI,1989.0,2,9,2011,Field of Dreams,Cornfield to Ballfield,tt0097351 8Kx0qYRv8XQ,2000.0,8,10,2011,Erin Brockovich,The Whole Thing's Falling Apart,tt0195685 C6k9TFjWiGs,1995.0,8,9,2011,Mallrats,Truth or Date Game Show,tt0113749 0wVgg5t2LAM,2000.0,9,10,2011,Erin Brockovich,Surprise Evidence,tt0195685 Sy7YnrVXudg,2004.0,8,11,2011,Eternal Sunshine of the Spotless Mind,Meet Me in Montauk,tt0338013 lFHLE24hDQY,2004.0,6,11,2011,Eternal Sunshine of the Spotless Mind,Remember Me,tt0338013 XdlIQCbOvrw,1995.0,6,9,2011,Mallrats,Escaping Team LaFours,tt0113749 1vJpAXf5wyk,1995.0,7,9,2011,Mallrats,Stan Lee Dating Wisdom,tt0113749 CAeFPZ-yXYM,1995.0,2,9,2011,Mallrats,Jay and Silent Bob,tt0113749 xA5QELbB-vU,1995.0,5,9,2011,Mallrats,Revenge on the Easter Bunny,tt0113749 dQRfWqSj3Gw,1995.0,4,9,2011,Mallrats,The LaFours Plan,tt0113749 diLE4umndNM,2005.0,6,10,2011,King Kong,Kong's Rampage,tt0360717 yNyLTVFv8KQ,2005.0,8,10,2011,King Kong,Climbing the Empire State Building,tt0360717 DTWYQhTT388,2005.0,5,10,2011,King Kong,Giant Bugs Attack,tt0360717 ZYZsJYZVt5g,2005.0,3,10,2011,King Kong,Kong Battles the T-Rexes,tt0360717 F_EuMeT2wBo,2005.0,7,10,2011,King Kong,Ice Skating in Central Park,tt0360717 fbrN51dPm0I,2004.0,7,8,2011,Shaun of the Dead,"Sorry, Mum",tt0365748 b-f5iMDXvcA,2005.0,4,10,2011,King Kong,Kong Rescues Ann,tt0360717 8LFQun4HQj8,2005.0,2,10,2011,King Kong,Dinosaur Stampede,tt0360717 HmyQDH_PSC4,2004.0,6,8,2011,Shaun of the Dead,Acting Like Zombies,tt0365748 gz_dPVrciwM,2004.0,5,8,2011,Shaun of the Dead,Feel Free to Step In,tt0365748 RYHaarxQTFk,2001.0,10,11,2011,The Mummy Returns,The Scorpion King Returns,tt0209163 6XyUIXqIoAM,2001.0,9,11,2011,The Mummy Returns,Blimp Attack,tt0209163 y8svNN8saeU,2001.0,8,11,2011,The Mummy Returns,Nefertiri vs. Anck Su,tt0209163 rxZc0tyTqEg,2001.0,5,11,2011,The Mummy Returns,The Mummy Attacks,tt0209163 uLquz4Iz-30,2004.0,4,8,2011,Shaun of the Dead,Record Toss,tt0365748 qs1QcRTOMEg,2001.0,4,11,2011,The Mummy Returns,Mummy Battle on a Bus,tt0209163 JF4EyXhZudo,2004.0,3,8,2011,Shaun of the Dead,She's So Drunk,tt0365748 i3JbGwGNRI8,2001.0,7,11,2011,The Mummy Returns,Are We There Yet?,tt0209163 Q720Fe7IDMk,2001.0,2,11,2011,The Mummy Returns,The O'Connells Attacked at Home,tt0209163 cgBAJefErZY,2001.0,3,11,2011,The Mummy Returns,Double-Decker Bus?,tt0209163 EoBngEuWM_o,2001.0,1,11,2011,The Mummy Returns,The Bracelet of Anubis,tt0209163 irCUvLD1t5U,1989.0,6,9,2011,Born on the Fourth of July,You Never Killed a Baby!,tt0096969 aBADjCeFnuU,1989.0,5,9,2011,Born on the Fourth of July,Thou Shall Not Kill,tt0096969 9fpDYMwJXQQ,1989.0,9,9,2011,Born on the Fourth of July,Maybe We're Home,tt0096969 ZsRDr3miUyc,1989.0,2,9,2011,Born on the Fourth of July,Treated Like a Human Being,tt0096969 HhZ3H18ynTA,1989.0,3,9,2011,Born on the Fourth of July,The Homecoming Speech,tt0096969 6_-kw-0PvJc,2000.0,9,10,2011,Meet the Parents,Greg Has to Wait,tt0212338 Xk5epHF844w,1989.0,7,9,2011,Born on the Fourth of July,A Painful Confession,tt0096969 SxJvnJyF7xA,2000.0,6,10,2011,Meet the Parents,"It's Only a Game, Focker!",tt0212338 OxCVucvlF1o,2009.0,10,10,2011,Land of the Lost,Your Own Damn Vault,tt0457400 wbt-sAOjnQQ,2009.0,2,10,2011,Couples Retreat,Powerpoint Presentation,tt1078940 -U_IRXhodds,2009.0,7,10,2011,Land of the Lost,Feeding Time,tt0457400 Fgfe6pufnLM,2009.0,1,10,2011,Couples Retreat,Motorcycle for Daddy,tt1078940 VMFwVNGGfBc,2009.0,9,10,2011,Land of the Lost,Saving Holly,tt0457400 saBoM7O_imM,2009.0,6,10,2011,Land of the Lost,Hadrosaur Urine,tt0457400 0JXwzlRcYWk,2009.0,2,10,2011,Land of the Lost,Chaka,tt0457400 bllBC-ThwjQ,2009.0,5,10,2011,Land of the Lost,Beware of Sleestak,tt0457400 LuQ6qCNwWY8,2009.0,4,10,2011,Land of the Lost,Walnut-Sized Brain,tt0457400 7b3D5qPBrI,2009.0,3,10,2011,Land of the Lost,Synchronized Swinging,tt0457400 KLoOI5Laplo,2009.0,1,10,2011,Land of the Lost,Today Show Interview,tt0457400 7hwkR_wvrM8,2009.0,4,10,2011,Couples Retreat,Couples Skill-Building,tt1078940 4hkg3Zut97U,2009.0,8,10,2011,Couples Retreat,Massage Time,tt1078940 3SiGgXIYppA,2009.0,3,10,2011,Couples Retreat,The Resort Rules,tt1078940 rl6SpFVJoUA,2009.0,10,10,2011,Couples Retreat,Encouragement!,tt1078940 BG6uMsq8PPs,2009.0,7,10,2011,Couples Retreat,The Circle of Life,tt1078940 c-unYxWW6ws,2009.0,8,9,2011,Duplicity,We're Not Like Other People,tt1135487 zVwWDprMFiI,2009.0,6,10,2011,Couples Retreat,A Hypothetical Gun,tt1078940 UKGE05RbsV8,2010.0,2,11,2011,Get Him to the Greek,Beyonce's Bidet and The Jazz Man,tt1226229 cgBz4BKSLRQ,2009.0,7,9,2011,Duplicity,Copying the Formula,tt1135487 cYjv9uWxW94,2009.0,4,9,2011,Duplicity,Nobody Trusts Anybody,tt1135487 0fbR1RvOCQA,2009.0,6,9,2011,Duplicity,You're Gaming Me?,tt1135487 iX-nnY0x-SE,2009.0,3,9,2011,Duplicity,People I've Slept With,tt1135487 GfoSukpWVos,2009.0,2,9,2011,Duplicity,Why Are We Here?,tt1135487 55X_DAk6K_k,2010.0,1,11,2011,Get Him to the Greek,Showbiz Tonight,tt1226229 CtIhkGu6ahY,2009.0,5,9,2011,Duplicity,Quitting the Spy Game,tt1135487 f8_4uckfT8I,1989.0,4,9,2011,Born on the Fourth of July,To Be Whole Again,tt0096969 NzfSLgWkTlY,2004.0,8,9,2011,The Bourne Supremacy,Car Chase With Kirill,tt0372183 Nq295Mg6PHg,2004.0,7,9,2011,The Bourne Supremacy,Confronting Abbott,tt0372183 mVv14yZ1c44,2004.0,5,10,2011,In Good Company,Dorm Room Seduction,tt0385267 87w655s3xKc,1997.0,8,9,2011,Liar Liar,I'm Kicking My Ass!,tt0119528 X6YLAmKFpRM,1997.0,7,9,2011,Liar Liar,Roasting the Committee,tt0119528 pDy41hvdq4s,1997.0,6,9,2011,Liar Liar,Car Troubles,tt0119528 dAE7uOO_4v4,1997.0,4,9,2011,Liar Liar,The Pen Is Blue,tt0119528 geiS49_p84Q,1997.0,3,9,2011,Liar Liar,I Can't Lie!,tt0119528 JdfCyow-Tiw,2004.0,5,9,2011,The Bourne Supremacy,Interrogating Nicky,tt0372183 IsBB4i4k2PM,1997.0,2,9,2011,Liar Liar,A Wish Come True,tt0119528 ql0DycjR8wQ,2004.0,6,9,2011,The Bourne Supremacy,Abbott Kills Danny,tt0372183 jyZU7lfGjyk,2004.0,4,9,2011,The Bourne Supremacy,Fighting Close & Dirty,tt0372183 Y9yrupye7B0,1989.0,4,9,2011,Field of Dreams,Moonlight Graham's Wish,tt0097351 OwaxFAC6rzk,2004.0,3,9,2011,The Bourne Supremacy,Escaping in Naples,tt0372183 117FZnev4Os,2000.0,8,10,2011,Meet the Parents,Racing Home,tt0212338 DxRzEdg0p4Q,2004.0,1,9,2011,The Bourne Supremacy,Goa Car Chase,tt0372183 jgyZ7yb2mmI,2000.0,3,10,2011,Meet the Parents,Lie Detector Test,tt0212338 a5SoIFm-SrQ,2000.0,10,10,2011,Meet the Parents,Will You Be My Son-In-Law?,tt0212338 lJDRkVKjMOU,2000.0,7,10,2011,Meet the Parents,Up In Flames,tt0212338 LD-DYjqW7HQ,2010.0,7,11,2011,Get Him to the Greek,Hateful Respect,tt1226229 5dSvsp3dxvc,2000.0,4,10,2011,Meet the Parents,The Circle of Trust,tt0212338 aTaX_L7msxs,2010.0,9,11,2011,Get Him to the Greek,Clench and Sneeze,tt1226229 4_Anuo4_Tlo,2010.0,5,11,2011,Get Him to the Greek,Handle the Moment,tt1226229 6ZcNHOP3wdw,2010.0,6,11,2011,Get Him to the Greek,Move to Seattle?,tt1226229 CQcGrzmNihY,2010.0,3,11,2011,Get Him to the Greek,Chocolate Daddy,tt1226229 4hQ0ILw1P7o,2007.0,8,9,2011,The Bourne Ultimatum,Bourne's Beginning,tt0440963 JRLNdcmRcFY,2007.0,6,9,2011,The Bourne Ultimatum,Stealing the Blackbriar Files,tt0440963 lnYzb6P_1Wg,2007.0,7,9,2011,The Bourne Ultimatum,Paz Chases Bourne,tt0440963 3jLbKr11l20,2002.0,9,10,2011,The Bourne Identity,We Always Work Alone,tt0258463 uLt7lXDCHQ0,2007.0,4,9,2011,The Bourne Ultimatum,Bourne vs. Desh,tt0440963 3TmzG_fqqU8,2007.0,5,9,2011,The Bourne Ultimatum,Get Some Rest,tt0440963 LOVgTjeg4fY,2007.0,3,9,2011,The Bourne Ultimatum,Desh Makes a Kill,tt0440963 UFnmq5PPScA,2002.0,7,10,2011,The Bourne Identity,Pen Versus Knife,tt0258463 txHNcE_d7ro,2002.0,3,10,2011,The Bourne Identity,My Name Is Jason Bourne,tt0258463 2ETruidd5lQ,2002.0,8,10,2011,The Bourne Identity,The Paris Chase,tt0258463 hKSscAR4cS8,1997.0,7,9,2011,The Game,Back from the Dead,tt0119174 HSckms_rfwY,2002.0,5,10,2011,The Bourne Identity,"You Need Money, I Need a Ride",tt0258463 IjrWOZby8s8,2002.0,6,10,2011,The Bourne Identity,Why Would I Know That?,tt0258463 JmxK_pBaG4E,2002.0,4,10,2011,The Bourne Identity,Evacuation Plan,tt0258463 z0ZnN4mivGw,1997.0,2,9,2011,The Game,Begins,tt0119174 BFUVGfsVzhQ,1997.0,6,9,2011,The Game,She's In On It,tt0119174 TfzRP1tCmsk,1997.0,5,9,2011,The Game,Deadly Cab Ride,tt0119174 SHgs3LFLBzY,2002.0,2,10,2011,The Bourne Identity,No Papers,tt0258463 M57AIegsBz4,1997.0,3,9,2011,The Game,Bad Waitress,tt0119174 wqwUdp5-2D8,1995.0,3,9,2011,Mallrats,Superman's Baby,tt0113749 jFPV16f182w,1995.0,8,10,2011,Casino,The Feds Run Out of Gas,tt0112641 AuYaiXT_1tM,2003.0,6,10,2011,Seabiscuit,The Horse Has a Lot of Heart,tt0329575 b2dewDwIQyM,1995.0,9,10,2011,Casino,Meeting in the Desert,tt0112641 gcAaILQ0ATo,1995.0,7,10,2011,Casino,Lester Diamond,tt0112641 KSRWc7zwzC4,2003.0,9,10,2011,Seabiscuit,The Match Race,tt0329575 KYa1IsxGVuc,1995.0,5,10,2011,Casino,Cheater's Justice,tt0112641 k8Pku1zXM5g,1995.0,6,10,2011,Casino,Dominick & the Desperadoes,tt0112641 rFvaTVV7yO4,2000.0,7,9,2011,Nutty Professor 2: The Klumps,Granny Loves Buddy,tt0144528 ZN6mp2NjMhs,1995.0,2,10,2011,Casino,The Count Room,tt0112641 vkmf3Hbnh_4,2000.0,8,9,2011,Nutty Professor 2: The Klumps,Giant Hamster Attack,tt0144528 -JbSkxI2DrY,2000.0,3,9,2011,Nutty Professor 2: The Klumps,Trumpets and Asses,tt0144528 FFUPB-cVozg,2000.0,6,9,2011,Nutty Professor 2: The Klumps,Armageddon Nightmare,tt0144528 aIPmu6bYZOs,1995.0,3,10,2011,Casino,"In Vegas, Everybody Watches Everybody",tt0112641 1sO7SyT9mS0,2000.0,4,9,2011,Nutty Professor 2: The Klumps,Perverted Proposal,tt0144528 n0cG11lTS1E,2003.0,7,9,2011,Bruce Almighty,Bruce Answers Prayers,tt0315327 nhTupXSJkYQ,2003.0,5,9,2011,Bruce Almighty,Bruce Gets His Job Back,tt0315327 CO5K227sues,2003.0,8,9,2011,Bruce Almighty,Be the Miracle,tt0315327 _b25Fbg8xqU,1989.0,2,10,2011,The 'burbs,Bees and Bad Karma,tt0096734 tB6Uj2RGhPU,1984.0,2,10,2011,Cloak & Dagger,Secret Cartridge,tt0087065 HdXfVjRZ0yU,2005.0,10,10,2011,King Kong,The Fall of Kong,tt0360717 zJO4Chs7-lg,2000.0,3,10,2011,The Skulls,Initiation,tt0192614 d63s74ijwb8,2000.0,10,10,2011,The Skulls,Leaving,tt0192614 TWJEVnNwAtk,2000.0,1,10,2011,The Skulls,Are You Ready To Be Reborn?,tt0192614 Q4HY544URjA,1984.0,10,10,2011,Repo Man,A Cosmic Ride,tt0087995 xcJXT5lc1Bg,1984.0,4,10,2011,Repo Man,The Repo Code,tt0087995 sAO0owc4xeY,1984.0,3,10,2011,Repo Man,The Reverend's Telethon,tt0087995 jnA7jmNVYFs,1989.0,9,12,2011,Parenthood,Gil Quits,tt0098067 37KddyjUxnQ,2008.0,9,11,2011,Wanted,Wesley's Rampage,tt0493464 AZMg4vFcRQs,2000.0,7,10,2011,Erin Brockovich,Two Wrong Feet in Ugly Shoes,tt0195685 qSYAT8jpqgk,2003.0,2,9,2011,Bruce Almighty,Bruce vs. Evan,tt0315327 QxPA0i_TVvk,2004.0,7,12,2011,Ray,Drunk at a Recording Session,tt0350258 aKIM6q3awws,2004.0,9,10,2011,In Good Company,"If You Fire Him, You Have to Fire Me",tt0385267 YDmULxspTJM,2008.0,3,11,2011,Wanted,Viper Ride,tt0493464 NDXWV-mGlPE,1989.0,9,10,2011,Fletch Lives,Elmer Fudd Gantry,tt0097366 kATiU-cZCPc,1998.0,3,10,2011,"Lock, Stock and Two Smoking Barrels","Guns for Show, Knives for a Pro",tt0120735 N_HXTmS-AF4,2008.0,4,9,2011,Role Models,"Meeting ""The Littles""",tt0430922 TyDE15kKDpI,1997.0,8,12,2011,Bean,Shower Surprise,tt0118689 VTyBpsX1TdE,1997.0,1,12,2011,Bean,Blowing His Nose,tt0118689 iQISI7DOVCY,1996.0,7,10,2011,Fear,We Have Something That Everybody Wants,tt0117381 Xpga1vtS3tA,1989.0,6,10,2011,The 'burbs,The Femur,tt0096734 TtHffqqdh1Y,2010.0,7,-1,2011,Tamara Drewe,Let's Lighten Up,tt1486190 9C2L5v6BfLE,2004.0,5,10,2011,Van Helsing,He's Alive! Scene,tt0338526 VUgsvd3ZjvA,2004.0,10,10,2011,Van Helsing,The Death of Dracula Scene,tt0338526 bwf_EFTMZ9k,1989.0,5,10,2011,The 'burbs,Ray's Nightmare,tt0096734 yoWz1IdoTIg,2006.0,5,10,2011,Smokin' Aces,Ivy Confronts Buddy,tt0475394 PPO1EQmj05I,1989.0,9,10,2011,The 'burbs,Ambulance Encounter,tt0096734 1nVThHLqda0,1989.0,4,10,2011,The 'burbs,Satan Is Our Pal,tt0096734 eCfvE03ufF8,1989.0,1,10,2011,The 'burbs,What Is It?,tt0096734 CGivL32FazM,1999.0,2,11,2011,October Sky,Railroad Scare,tt0132477 QyCMxDBGqF4,2002.0,1,10,2011,Ali G Indahouse,Eastside vs. Westside,tt0284837 Z9agItiMEEk,1992.0,2,10,2011,Bob Roberts,Fanatic Fans,tt0103850 XHrw3AFW0Z0,2000.0,1,10,2011,Meet the Parents,Greg Says Grace,tt0212338 eC_Ua1svsSE,2001.0,11,11,2011,American Pie 2,Don't Forget Your Penis Cream,tt0252866 zNvYQ2ILSCo,2011.0,7,-1,2011,Hanna,Are We Going to Kiss Now?,tt0993842 wytwlFfk5dY,2011.0,1,-1,2011,The Eagle,Esca,tt1034389 t6bhgzR3gkY,2011.0,2,-1,2011,The Dilemma,Hero Couple,tt1578275 Juv96hHY62A,2010.0,3,-1,2011,Little Fockers,The Rock Wall,tt0970866 JtHq6vKm3WU,2010.0,5,-1,2011,Little Fockers,Investment Banker and Shaman,tt0970866 BHBmOFFExso,2010.0,1,-1,2011,Little Fockers,All Good Under the Hood,tt0970866 onyfp4uSmcY,2009.0,2,-1,2011,Green Zone,Game Face,tt0947810 srTcK8ybXpI,2010.0,5,-1,2011,Greenberg,ADD and Carpal Tunnel,tt1234654 5oav3ZjdRz4,2009.0,6,-1,2011,Green Zone,The Americans Are Here,tt0947810 4wddfKqi1hI,2010.0,3,-1,2011,Greenberg,The Vet's Office,tt1234654 KWaZiVG1RfY,2010.0,4,-1,2011,Greenberg,Trying to Do Nothing,tt1234654 Uoqe4phEwEY,2009.0,3,-1,2011,Inglourious Basterds,The Jew Hunter,tt0361748 TyoZkvsxrSo,2010.0,5,-1,2011,Leap Year,Runaway Car,tt1216492 hEDeIvU1si8,2001.0,5,11,2011,American Pie 2,Jim's Trombone Solo,tt0252866 oquM3yN0E4A,2009.0,2,-1,2011,Love Happens,Am I Being Too Harsh?,tt0899106 NRqxxQy8sLs,2010.0,2,-1,2011,Greenberg,A Birthday Dinner,tt1234654 3YM3AYZaTZ0,2009.0,1,-1,2011,Inglourious Basterds,Lt. Aldo Raine,tt0361748 K8yeho0MbYc,2001.0,7,11,2011,American Pie 2,Phone Sex,tt0252866 9oVoJMVsKtk,2001.0,6,11,2011,American Pie 2,The Rule of Three,tt0252866 f-PnGRaJaSA,1960.0,1,12,2011,Psycho,The Bates Motel,tt0054215 YKRnEOUxZm0,1993.0,8,10,2011,Jurassic Park,Clever Girl Scene,tt0107290 oR1-UFrcZ0k,1982.0,9,10,2011,E.T.: The Extra-Terrestrial,Ride in the Sky,tt0083866 2I91DJZKRxs,1975.0,4,10,2011,Jaws,You're Gonna Need a Bigger Boat Scene,tt0073195 4WAxDlUOw-w,1958.0,9,11,2011,Vertigo,Scottie's Nightmare,tt0052357 _WyD94vNqWg,1988.0,6,10,2011,Twins,I'll Be Back,tt0096320 mGA_uH0-n28,1982.0,5,10,2011,E.T.: The Extra-Terrestrial,Ouch!,tt0083866 5PT9OxwD6hM,1989.0,11,12,2011,Back to the Future Part 2,Marty Gives Biff CPR,tt0096874 l9c1k_m6POA,1989.0,8,12,2011,Back to the Future Part 2,The Almanac,tt0096874 KPowlurwWzU,1998.0,11,11,2011,BASEketball,Reggie Jackson,tt0131857 CsWFLaHiQa8,1998.0,7,11,2011,BASEketball,Reviving Little Joey,tt0131857 S4m848bh1iY,1989.0,7,12,2011,Back to the Future Part 2,Biff's World,tt0096874 1Qb-2KSKByg,1998.0,6,11,2011,BASEketball,Drunk Come True,tt0131857 6wN78_E4AAs,1998.0,9,11,2011,BASEketball,Kiss and Make Up,tt0131857 7WD9MVTfdjs,1998.0,8,11,2011,BASEketball,The Radio Gets Specific,tt0131857 hXce5-f8mkA,1998.0,5,11,2011,BASEketball,Bloody Finger,tt0131857 NZxjmhwogCk,1998.0,4,11,2011,BASEketball,Chicken Poo?,tt0131857 yVGlKrziG5E,1999.0,1,10,2011,Bowfinger,A Go Picture,tt0131325 RG9LKdqzru0,1998.0,2,11,2011,BASEketball,Jenna's Health-Challenged Kids,tt0131857 B-tq7mbTvrA,1998.0,10,11,2011,BASEketball,The Eric Cartman Psyche,tt0131857 kXnEMLzzG_s,2002.0,10,10,2011,Ali G Indahouse,Saving Staines,tt0284837 f9IkJzhoj_I,2002.0,4,10,2011,Ali G Indahouse,Hunger Strike,tt0284837 ztSSzTA5Z90,1998.0,1,11,2011,BASEketball,Shutting Off the Gas,tt0131857 CSSvNshY5dY,2002.0,9,10,2011,Ali G Indahouse,Nipple Cripple,tt0284837 IlMjQrpAPHo,2002.0,8,10,2011,Ali G Indahouse,Ali's Stash,tt0284837 m_PeQCPq8QA,1979.0,10,11,2011,1941,The Ferris Wheel Rolls,tt0078723 CPnwlNvwBLI,1979.0,2,11,2011,1941,The Indomitable Capt. Kelso,tt0078723 mT5NiDGbnVM,1986.0,9,9,2011,The Money Pit,I Love This House!,tt0091541 IptkOvp53-A,1995.0,1,9,2011,The Hunted,Kirina's Room,tt0113360 NOVNs9sT32k,1979.0,7,11,2011,1941,Dance Hall Brawl,tt0078723 1ao1yR27lak,1992.0,7,10,2011,Bob Roberts,Bob Is Shot,tt0103850 B8cWjLMuJgo,1958.0,3,11,2011,Vertigo,Saving Madeleine,tt0052357 idfa7VqkSOw,1990.0,10,11,2011,Bird on a Wire,Tiger Chase,tt0099141 PxtuovqUgYU,1992.0,9,10,2011,Bob Roberts,Conspiracy of Silence,tt0103850 G99Olp16O7M,1992.0,1,10,2011,Bob Roberts,Good Morning Philadelphia,tt0103850 -x6njs-cGUE,1962.0,6,10,2011,To Kill a Mockingbird,All Men Are Created Equal,tt0056592 I3znSbbu9IU,2004.0,9,9,2011,The Bourne Supremacy,Final Call to Pamela,tt0372183 eKrEVWGTuRg,1992.0,4,9,2011,Far and Away,Say You Like My Hat!,tt0104231 C841wEogE4U,1962.0,5,10,2011,To Kill a Mockingbird,Mayella's Guilt,tt0056592 A4DSD-ZbhoY,1990.0,2,10,2011,Cry-Baby,Turkey Point is Open for Business,tt0099329 oBO9Uy4uc_c,2009.0,9,10,2011,Coraline,No I'm Not!,tt0327597 1FZ2FA-epcE,1995.0,10,10,2011,Casino,House of the Rising Sun,tt0112641 VKTT-sy0aLg,1933.0,7,10,2011,Duck Soup,The Mirror Scene,tt0023969 XOnuxo70q9Q,2003.0,6,10,2011,Honey,Chaz Saves,tt0322589 AM5EYO5wWMA,1985.0,10,10,2011,Back to the Future,,tt0088763 aZV1XI9qZUc,2000.0,8,12,2011,The Family Man,Interview at the Old Job,tt0218967 934iAVn9CKw,1991.0,10,10,2011,Fried Green Tomatoes,A Lady Always Knows When to Leave,tt0101921 G36NDRDO6L8,2000.0,1,12,2011,The Family Man,Do You Want to Die?,tt0218967 a2dHmOQuDaQ,2000.0,5,12,2011,The Family Man,Jack Loses It on Kate,tt0218967 lx0z9FjxP-Y,1991.0,7,10,2011,Fried Green Tomatoes,Parking Lot Rage,tt0101921 VHMi-j7W2gM,1977.0,7,10,2011,Slap Shot,Pre-Game Brawl,tt0076723 nJ04J0TWD1I,1990.0,1,11,2011,Bird on a Wire,Could You Look at My Butt?,tt0099141 FNHM2JEA1qg,1990.0,8,11,2011,Bird on a Wire,Roach Motel,tt0099141 1g4V55DSrbg,2001.0,3,10,2011,Mulholland Dr.,Bad Coffee,tt0166924 ruN_KcF-Ouw,2003.0,4,10,2011,Monster,Nothing You Can't Do,tt0340855 WVx0SlYmaxs,2003.0,2,10,2011,Monster,Here We Go,tt0340855 aJ_NWmLawAM,2011.0,10,-1,2011,Soul Surfer,Why Did This Happen?,tt1596346 KMm_fkYUdo8,2009.0,1,10,2011,Into Temptation,The Final Confession,tt1232824 c6GEJoLDcAs,2004.0,10,10,2011,Monster Island,Celebrity Salvation,tt0382856 LR6zTixElx8,2009.0,6,10,2011,Into Temptation,Impure Thoughts,tt1232824 L0CGJL5SlsQ,2004.0,7,10,2011,Monster Island,"Eight Ball, Corner Pocket",tt0382856 wwrzI3b5LxI,2005.0,8,10,2011,Little Fish,You're a Lying Junkie,tt0382810 9IdM84YVmV0,2010.0,1,-1,2011,Super,"No Cuts, No Buts",tt1650062 dfT_2XRB8aU,2004.0,1,10,2011,Monster Island,Carmen Electra Is Taken,tt0382856 Hws-ExO9fhY,2003.0,7,10,2011,Monster,Hiking With a Stranger,tt0340855 HDxqSt_Ctbw,2005.0,9,10,2011,Little Fish,Lionel ODs,tt0382810 Lsm-snDPXnk,2005.0,1,10,2011,Little Fish,A Few Bitter Words,tt0382810 W4_F1oMTEFc,2005.0,4,10,2011,Little Fish,Kissing Off Drugs,tt0382810 x2BuNuwZ9mg,2010.0,3,-1,2011,Certified Copy,Immortalized,tt1020773 86F-fpdTJg4,2003.0,6,10,2011,Monster,A Real Life,tt0340855 efr5PYBNZCo,2002.0,2,10,2011,Bark!,I Need to See a Doctor,tt0273453 tAp6HB4WAdg,2002.0,4,10,2011,Bark!,I'm Just Your Vet,tt0273453 -3cmJe_Kw30,2003.0,1,10,2011,Monster,Five Dollar Break,tt0340855 5TcimuSgJoI,2003.0,8,10,2011,Monster,The Final John,tt0340855 YNN09xbsN1A,2011.0,7,-1,2011,Red Riding Hood,Don't Come Near Me,tt1486185 2nC7GyHvy0w,2004.0,9,10,2011,Monster Island,Escape From Mumbacha Mountain,tt0382856 IiD7lmQlL-0,2004.0,6,10,2011,Monster Island,Giant Mantis Sex,tt0382856 7TcMmmC-PqQ,2009.0,9,10,2011,Into Temptation,Divine Intervention,tt1232824 QsCPatNIpPE,2009.0,10,10,2011,Into Temptation,Absolution for the Absolver,tt1232824 maaoRjQN42c,2009.0,4,10,2011,Into Temptation,Prostitution 101,tt1232824 HZ1D6bBiufI,2009.0,8,10,2011,Into Temptation,Linda's Apartment,tt1232824 u0Mz_e_TQCI,2009.0,2,10,2011,Into Temptation,The Less Famous Saints,tt1232824 AsKzZqVhH88,2009.0,5,10,2011,Into Temptation,Friend of the Cloth,tt1232824 qaK_jsGvz6Y,2004.0,8,10,2011,Monster Island,A Boost of Slave Morale,tt0382856 3z637yWEmHs,2009.0,3,10,2011,Into Temptation,Consoling Members,tt1232824 jHZLatZGr0E,2004.0,5,10,2011,Monster Island,The Eccentric Scientist,tt0382856 DO50JhaRp4A,2004.0,3,10,2011,Monster Island,Attack of the Giant Praying Mantis,tt0382856 pZE1CyPdDMo,2004.0,4,10,2011,Monster Island,Dr. Harryhausen & the Swamp Monkey,tt0382856 OJZGgPoJ_u4,2004.0,2,10,2011,Monster Island,Who's With Me?,tt0382856 3FgbU0ZZzQY,2005.0,10,10,2011,Little Fish,I Need That Money,tt0382810 Y7LbtFY23wo,2002.0,6,10,2011,Bark!,Psychiatric Resident,tt0273453 V3EpNkdgmyo,2005.0,2,10,2011,Little Fish,Loan Rejected,tt0382810 dp6WEWGtqRo,2005.0,3,10,2011,Little Fish,Going Through Withdrawal,tt0382810 65L7TzsFaD8,2005.0,5,10,2011,Little Fish,Jonny Offers to Help,tt0382810 LdnaptnNXbo,2005.0,7,10,2011,Little Fish,It's Your Life,tt0382810 91wo3olctwU,2005.0,6,10,2011,Little Fish,Tracy Makes a Scene,tt0382810 E2VBcVxwUqM,2002.0,10,10,2011,Bark!,Eviction Notice,tt0273453 jGWM1SoLAm8,2002.0,8,10,2011,Bark!,I'm Terrible,tt0273453 m8RpGUXeHFQ,2002.0,9,10,2011,Bark!,You Think You're a Good Kisser?,tt0273453 PHcV9HUfr0c,2002.0,5,10,2011,Bark!,"Biting Mother, Barking Sister",tt0273453 xeE4wGavBhE,2002.0,3,10,2011,Bark!,Pathological Grief Reaction,tt0273453 Gxd-OPuy2tA,2002.0,7,10,2011,Bark!,I'm Really Mad at You,tt0273453 1xqufX-xMr0,2002.0,1,10,2011,Bark!,Have You Ever Wanted to Be a Dog?,tt0273453 GFB8DiM-SLQ,2010.0,2,-1,2011,Certified Copy,A Good Husband,tt1020773 44rUlHYg-MU,2010.0,4,-1,2011,Super,Uber Enlightenment,tt1650062 yu2VrqdOVdw,2010.0,5,-1,2011,Super,Damsel in Distress,tt1650062 aP1FZToPFxA,2010.0,3,-1,2011,Super,You Need a Sidekick,tt1650062 tVl78xgPyow,2010.0,2,-1,2011,Super,Boltie!,tt1650062 soTciHbL4iA,2010.0,1,-1,2011,Certified Copy,Fatherly Advice,tt1020773 qZfK-VnxBSo,2003.0,9,10,2011,Monster,Regrets,tt0340855 JcTBwzDucE4,2003.0,3,10,2011,Monster,Worried Sick,tt0340855 exclwIbllXQ,2011.0,11,-1,2011,Soul Surfer,A Prosthetic Arm,tt1596346 yzGKgnbclz8,2009.0,8,-1,2011,Get Low,A Fair Price,tt1194263 Ppa4gvsZHDE,2009.0,9,-1,2011,Get Low,Broke The Mold,tt1194263 FvJMbz4vgNY,1997.0,4,7,2011,My Best Friend's Wedding,Last Time Alone Together,tt0119738 WlB-BbWBzd8,1997.0,7,7,2011,My Best Friend's Wedding,Two-Faced Big-Haired Food Critic,tt0119738 9ExnVKy8hao,1997.0,6,7,2011,My Best Friend's Wedding,Choose Me,tt0119738 vGgdg2q1eig,1997.0,5,7,2011,My Best Friend's Wedding,Creme Brulée vs. Jell-O,tt0119738 YKjzDMrSX3w,1997.0,2,7,2011,My Best Friend's Wedding,Double Engagement,tt0119738 QAsI8z9qfKY,1997.0,1,7,2011,My Best Friend's Wedding,Moves You've Never Seen,tt0119738 A9qAaecuaFk,1997.0,3,7,2011,My Best Friend's Wedding,George Overplays His Part,tt0119738 GLQd8ZTeYlI,2011.0,7,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,Ralph Nader,tt1743720 oAFVhwUVJt4,2010.0,3,-1,2011,Incendies,Not From Here,tt1255953 6I1qP8w8DxE,2009.0,2,-1,2011,The Hangover,This Can't Be Happening,tt1119646 zNyykRpFBQY,2010.0,3,-1,2011,Barney's Version,I Need to Get Laid,tt1423894 TjpkMfTBVQs,2010.0,4,-1,2011,Easy A,A Family of Late Bloomers,tt1282140 GaBjbzvkxNk,2009.0,4,-1,2011,Get Low,Crazy Old Nutter,tt1194263 XQLKAVpgHQ4,2009.0,1,-1,2011,Micmacs,Movie Mimic,tt1149361 -UAV4O9oZy0,2010.0,4,-1,2011,The Bounty Hunter,Seduction,tt1038919 scEuS9-TozQ,2009.0,9,-1,2011,Planet 51,Rover Singing in the Rain,tt0762125 gB1LgDhJQMI,2009.0,7,-1,2011,Planet 51,Time to Find Chuck,tt0762125 mkNO5Y4LOMs,2009.0,6,-1,2011,Planet 51,Military Strategy,tt0762125 gTLqDBbrmPM,2009.0,5,-1,2011,Planet 51,Time to Run,tt0762125 kqc4KyCYA0Q,2009.0,2,-1,2011,Planet 51,Chuck's Landing,tt0762125 sNGlmsj6C-E,2009.0,3,-1,2011,Planet 51,First Encounter,tt0762125 c3uOWTAuaTQ,2009.0,1,-1,2011,Planet 51,Poop Jelly Beans,tt0762125 TDo2llQRSOw,2008.0,4,10,2011,Senior Skip Day,What Are the Odds?,tt0849470 XVEnOs2HVlY,2007.0,9,10,2011,King of California,Thank You,tt0388182 Ezy42s9AacE,2003.0,10,10,2011,Shade,A Real Score,tt0323939 zrECNEIUFZc,2009.0,8,10,2011,Infestation,Prison Break,tt1020543 nhUW_MrQGTY,2010.0,6,10,2011,Dead Awake,Mr. Brennan,tt1501652 77LZW5N_Tic,2002.0,9,10,2011,Ted Bundy,Execution Parade,tt0284929 nKIH1LgVMpQ,2001.0,3,10,2011,Harvard Man,Girls and Winning,tt0242508 A-3SeVkGrjE,2001.0,1,10,2011,Harvard Man,Black People Don't Swim,tt0242508 AekHQpGS_AQ,2005.0,7,10,2011,Wassup Rockers,Different From Most Guys,tt0413466 dpFSms_kfQo,2001.0,2,10,2011,Harvard Man,Kierkegaard vs. Heidegger,tt0242508 FUL6DhVU7E8,2005.0,2,10,2011,Wassup Rockers,My First Time,tt0413466 -qK58CZslAs,1973.0,4,-1,2011,The Exorcist,Captain Howdy & The Ouija Board,tt0070047 oirwXF98wo0,2009.0,3,10,2011,Deadline,Home Movies,tt1242618 2X80aLjCncQ,2009.0,2,10,2011,Deadline,The First Night,tt1242618 zQPE6MCV2jo,2005.0,7,10,2011,The Amateurs,"The ""Big"" Black Guys Scene",tt0405163 R1hGaVoYZxo,2005.0,6,10,2011,The Amateurs,Script Meeting,tt0405163 fA_1iRByNFw,2005.0,5,10,2011,The Amateurs,Ingredients to a Good Porno,tt0405163 Y2u092TuA8g,2005.0,4,10,2011,The Amateurs,Our Writer/Director,tt0405163 _P4YRqZPT54,2003.0,3,9,2011,Grand Theft Parsons,Yin and Yang,tt0338075 hZdl2FFp0eA,2004.0,1,11,2011,Eternal Sunshine of the Spotless Mind,Train Ride,tt0338013 z1hgz7vgIt4,2011.0,1,-1,2011,Hop,Stuffed Bunny!,tt1411704 30iTy8ws54M,2010.0,8,10,2011,Scott Pilgrim vs. the World,Knives vs. Ramona,tt0446029 SlPGQ7r0f7w,2011.0,5,-1,2011,Paul,He Can Read Minds!,tt1092026 Bu2PFyl689w,1991.0,9,10,2011,Jungle Fever,Gator's Last Dance,tt0102175 WgcXxTUu0aM,2004.0,4,12,2011,Ray,Hummingbirds,tt0350258 Ru2Mvkf9dL8,1989.0,10,10,2011,Fletch Lives,"Welcome Home, Fletch",tt0097366 tTVFP-9AdMk,2004.0,5,12,2011,Ray,The Raelettes,tt0350258 st0h6-5fVtw,2003.0,10,10,2011,Monster,"Bye, Baby",tt0340855 jTtTZjp9ViQ,2009.0,8,10,2011,Fast & Furious,Dom vs. Fenix,tt1013752 9nFrp7Z9wEU,2004.0,2,12,2011,Ray,"I Might Be Blind, But I Ain't Stupid",tt0350258 dXQq9Y7KnmQ,2003.0,8,10,2011,The Snow Walker,After the War,tt0337721 8q8m4-7ciaE,1990.0,8,9,2011,Maniac Cop 2,Visiting Hours,tt0100107 qDF1YfpUaNs,1990.0,5,9,2011,Maniac Cop 2,Stalking a Stripper,tt0100107 kDHxHA2RzJ0,1990.0,2,9,2011,Maniac Cop 2,Lucky Ticket,tt0100107 Ux_ruB_nt94,2005.0,8,10,2011,The Amateurs,A Porno Penis!,tt0405163 D407HWykw6o,1990.0,7,9,2011,Maniac Cop 2,You Might Learn Something,tt0100107 UBvArq7u9N8,2005.0,2,10,2011,The Amateurs,The Film Guy,tt0405163 AqutucmM6S8,2005.0,3,10,2011,The Amateurs,Big Porno Weenie,tt0405163 9uFe61ebm30,2005.0,1,10,2011,The Amateurs,Special Balls,tt0405163 QeoL6G4bW4U,2003.0,3,10,2011,Shade,The Whole Thing Was a Set-Up,tt0323939 xDwT7-3BQ5c,1993.0,9,9,2011,Maniac Cop 3: Badge of Silence,Still Alive,tt0104808 qq8xAukB-xI,1993.0,8,9,2011,Maniac Cop 3: Badge of Silence,Blasted to Hell,tt0104808 pSQkW5soVhk,2004.0,9,10,2011,My Date with Drew,Brian and Drew Click,tt0378407 H3plWCGH4wM,2004.0,10,10,2011,My Date with Drew,Gift Exchange,tt0378407 kkZWXM6mShg,1993.0,7,9,2011,Maniac Cop 3: Badge of Silence,Finish It!,tt0104808 K_31ZHeMlB8,2004.0,8,10,2011,My Date with Drew,Brian's Date With Drew,tt0378407 EbU1vOVwnOo,1993.0,6,9,2011,Maniac Cop 3: Badge of Silence,Patient's Rights,tt0104808 5klqA0K7K8k,2004.0,1,10,2011,My Date with Drew,Brian's Family Weighs In,tt0378407 dyb4ztHMFf8,1993.0,5,9,2011,Maniac Cop 3: Badge of Silence,"Lights, Camera, Bloodshed",tt0104808 hf4KXHSvKD8,1993.0,4,9,2011,Maniac Cop 3: Badge of Silence,Ixnay on the X-Ray,tt0104808 YSrDBY0Tmdc,1993.0,3,9,2011,Maniac Cop 3: Badge of Silence,A Deal for Knicks Tickets,tt0104808 PtozHYwIkNw,2004.0,2,10,2011,My Date with Drew,Making a Movie Trailer for Drew,tt0378407 3wtgdxKJI_A,2004.0,6,10,2011,My Date with Drew,Generating Publicity,tt0378407 8Px7Lr7VzvY,2004.0,3,10,2011,My Date with Drew,A Body to Die For,tt0378407 JtyvQx-YiCE,1993.0,2,9,2011,Maniac Cop 3: Badge of Silence,A Shocking Encounter,tt0104808 CbF9_x6zFYo,1993.0,1,9,2011,Maniac Cop 3: Badge of Silence,Dream Stalker,tt0104808 APsmTB3F7Rs,2004.0,4,10,2011,My Date with Drew,A Swarthy Guy,tt0378407 M9nDop-5T0I,2004.0,7,10,2011,My Date with Drew,Drew Loves the Idea,tt0378407 2P6sN_5eM_M,2007.0,9,10,2011,Sukiyaki Western Django,Crucifixion,tt0906665 7cTI5pyy3Fw,2007.0,8,10,2011,Sukiyaki Western Django,Ruriko's Revenge,tt0906665 MrfsbtOOdGA,2007.0,5,10,2011,Sukiyaki Western Django,A Trick Shot,tt0906665 9k3swSqYKP8,2007.0,7,10,2011,Sukiyaki Western Django,Bloody Benton in Battle,tt0906665 xl_aSDYuXhM,2007.0,4,10,2011,Sukiyaki Western Django,Lucky Me,tt0906665 tIypF4ODIsM,2007.0,2,10,2011,Sukiyaki Western Django,Sword Brain,tt0906665 r51WXifMsZg,2007.0,3,10,2011,Sukiyaki Western Django,Brawl at the Bar,tt0906665 cPa929v8Hps,2001.0,7,10,2011,Harvard Man,Al Franken Class of '73,tt0242508 331wiVQINn8,2007.0,1,10,2011,Sukiyaki Western Django,Piringo's Story,tt0906665 Jjq8Ng6cjxE,2007.0,6,10,2011,Sukiyaki Western Django,The Hidden Badass,tt0906665 _Pbi5kod89U,2007.0,10,10,2011,Sukiyaki Western Django,Victory or Death!,tt0906665 Q0Eh0iTF2Bg,2005.0,10,10,2011,Wassup Rockers,,tt0413466 GuEFmBxmIT0,2000.0,1,10,2011,Ginger Snaps,Three Years Late,tt0210070 rCg9zLCbhZ0,2009.0,10,10,2011,Bad Lieutenant: Port of Call New Orleans,Great News!,tt1095217 f27cck3Bl-Y,2009.0,6,10,2011,Bad Lieutenant: Port of Call New Orleans,I Should Kill You Both!,tt1095217 Vv0aAv0lJ3s,2009.0,3,10,2011,Bad Lieutenant: Port of Call New Orleans,These Iguanas,tt1095217 6uHak2M7cmc,2009.0,1,10,2011,Bad Lieutenant: Port of Call New Orleans,You Wanna Hit?,tt1095217 swOuQBjbiLU,2011.0,8,-1,2011,Limitless,Subway Fight,tt1219289 v1Qu3dZlRGE,1997.0,9,10,2011,The Apostle,Nobody Moves That Book,tt0118632 yuCbYNe3aZY,2010.0,6,-1,2011,Last Night,You Never Mentioned She Was Pretty,tt1294688 NamXvlffiog,2010.0,5,-1,2011,Last Night,Surprise Visit From Alex,tt1294688 56a5meaLhBM,2010.0,3,-1,2011,Last Night,Joanna Meets Laura,tt1294688 qrzj1uVO-Lc,2010.0,2,-1,2011,Last Night,I'd Love Another Drink,tt1294688 x7j4IiO_6RI,2010.0,1,-1,2011,Cave of Forgotten Dreams,Dreams of Lions,tt1664894 -szJznl-3UE,2011.0,5,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,I Need Help,tt1743720 ZIc7bCHSmKo,2011.0,4,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,Making the Deal,tt1743720 S78_9yWvSi8,2011.0,3,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,What is Your Brand?,tt1743720 eLW6uxK_MOI,2011.0,8,-1,2011,Soul Surfer,That's What I'm Talkin' About,tt1596346 W_7_2Uwl2uc,2011.0,9,-1,2011,Soul Surfer,Bikini Shopping,tt1596346 LeNRbtWgero,2011.0,7,-1,2011,Soul Surfer,Perspective,tt1596346 jeoUH00woxs,2011.0,5,-1,2011,Soul Surfer,Normal Is So Overrated,tt1596346 NqxvezqrvQE,2011.0,6,-1,2011,Soul Surfer,She Will Never Be the Same,tt1596346 NvNkGs5bFtA,2011.0,3,-1,2011,Soul Surfer,So How Have You Been?,tt1596346 pZNQ-Jo7nsI,2011.0,2,-1,2011,Soul Surfer,She's Counting on Me,tt1596346 KgSTMVwRSiI,2011.0,5,-1,2011,Just Go with It,Love Monkey,tt1564367 GpD2-wZnpO0,2010.0,5,-1,2011,Incendies,Precautions,tt1255953 Eyokx50Jhrw,2011.0,2,-1,2011,Just Go with It,Shoe Heaven,tt1564367 kwdRauyX_Sc,2011.0,5,-1,2011,The Green Hornet,Scary In a Suit,tt0990407 vFqitPr_Gpg,2011.0,1,-1,2011,The Green Hornet,Kato-Vision,tt0990407 7MF2IgjAjjA,2010.0,4,-1,2011,How Do You Know,Don't Rock The Boat,tt1341188 CdUzUdaC8tI,2010.0,5,-1,2011,Burlesque,Show Me,tt1126591 PyeH_sv2TEY,2010.0,1,-1,2011,The Bounty Hunter,Fire Escape,tt1038919 qi_t-McN6Vk,2009.0,4,-1,2011,Armored,Burn the Car,tt0913354 F0wFS45JjWA,2009.0,3,-1,2011,Cloudy with a Chance of Meatballs,Flint's Inventions,tt0844471 _U-WwYlinTw,2009.0,1,-1,2011,District 9,Entering the Alien Ship,tt1136608 vf6nfEZgorY,2011.0,10,-1,2011,Fast Five,Rio Chase,tt1596343 0dlFAtbte0c,2011.0,9,-1,2011,Fast Five,Throw Down,tt1596343 ifG_E9BKfuc,2011.0,8,-1,2011,Fast Five,One Large Piggy Bank,tt1596343 3u_oizn3fg4,2011.0,6,-1,2011,Fast Five,Safe in Tow,tt1596343 UCh-HA6pIA8,2011.0,5,-1,2011,Fast Five,Train Rescue,tt1596343 vQdFnS_u8UM,2011.0,3,-1,2011,Fast Five,The Score,tt1596343 dobHtRTf5rY,2011.0,4,-1,2011,Fast Five,Chasing Dom,tt1596343 7ZFGP8b4Nz4,2011.0,1,-1,2011,Fast Five,You Only Live Once,tt1596343 4rJ4een9CcY,2003.0,5,-1,2011,Swimming Pool,Go to My Summer House,tt0324133 7Q8m_vs3HzY,2011.0,2,-1,2011,Your Highness,Good Advice,tt1240982 Km71QCX39rQ,2011.0,3,-1,2011,Hanna,Don't Follow Me,tt0993842 4iaM0-kcWtc,2011.0,5,-1,2011,Hanna,Psych Evaluation,tt0993842 ILJTdnLyUC8,2011.0,7,-1,2011,Hop,Coup d'etat,tt1411704 QY11UyRZBM4,2011.0,3,-1,2011,Hop,Forbidden Room,tt1411704 tH4JJtuyLp4,2011.0,5,-1,2011,Hop,Ungodly Pressure,tt1411704 sFjraGFeU-A,2011.0,7,-1,2011,Paul,Hey Tara,tt1092026 BkO51g7oXnw,2011.0,5,-1,2011,Jane Eyre,Is This How You Perceive Me?,tt1229822 TnniBE14vQY,2010.0,5,-1,2011,Sanctum,The Sinkhole,tt0881320 R9HPdX0TZAg,2010.0,6,-1,2011,The Adjustment Bureau,I Choose Her,tt1385826 mnuJ_YVLL64,1991.0,7,10,2011,Jungle Fever,A Big Misunderstanding,tt0102175 WkOLYUmITfc,1991.0,6,10,2011,Jungle Fever,She Looks Good!,tt0102175 0l8mYfrxpTw,1991.0,5,10,2011,Jungle Fever,"The Art of ""No"" Theory",tt0102175 CKJSr3Uw-N0,1991.0,2,10,2011,Jungle Fever,Flip Quits the Firm,tt0102175 jSidQZzJfcc,1991.0,3,10,2011,Jungle Fever,I Like Gettin' High,tt0102175 1t867tCFccE,2009.0,10,10,2011,Fast & Furious,Fenix Down,tt1013752 mTfTGanKAJs,1991.0,1,10,2011,Jungle Fever,Office Liaison,tt0102175 NoRnWATJPrA,2009.0,6,10,2011,Fast & Furious,"20% Angel, 80% Devil",tt1013752 g-gebDSBFkY,2009.0,9,10,2011,Fast & Furious,She Did It for You!,tt1013752 dFAd35ck7hY,2003.0,10,10,2011,American Wedding,Love is Shaving Your Balls,tt0328828 x_errHqd92k,2009.0,7,10,2011,Fast & Furious,Night Runners,tt1013752 FD3Xh_Qez_Y,2009.0,5,10,2011,Fast & Furious,Dom Wins,tt1013752 hK2bLlVeh-w,2009.0,4,10,2011,Fast & Furious,Cop and Criminal,tt1013752 ZXXpX29Xt-U,2009.0,1,10,2011,Fast & Furious,Fast Rescue,tt1013752 wNWaYfZI3Ak,2009.0,3,10,2011,Fast & Furious,Visiting the Crash Site,tt1013752 t1JsC1ur2X8,2009.0,2,10,2011,Fast & Furious,Ride or Die,tt1013752 HegpqudDvwE,2010.0,1,-1,2011,My Soul to Take,Multiple Souls,tt0872230 FIekWUU704U,2009.0,5,-1,2011,Love Happens,You're Really Messed Up,tt0899106 UOVyhaDQNfw,2004.0,12,12,2011,Ray,A Healing Flashback,tt0350258 nzWDzGxqqa0,2001.0,2,10,2011,Mulholland Dr.,A Living Nightmare,tt0166924 8Ufi7Z8OokA,2008.0,2,10,2011,Burn After Reading,Cocktails and Goat Cheese,tt0887883 LakGqZmF-Gg,2004.0,1,12,2011,Ray,Impromptu Audition,tt0350258 5yGuDDemqaw,2004.0,11,12,2011,Ray,A Wake Up Call,tt0350258 riYhck-Z9tw,2004.0,9,12,2011,Ray,No More Segregation,tt0350258 _T7vEyicx6Q,2004.0,10,12,2011,Ray,Stealing From,tt0350258 MLrd4hKTVLQ,2004.0,8,12,2011,Ray,A Better Deal,tt0350258 _5TCxc7G31Q,2004.0,10,10,2011,In Good Company,Making an Ad Sale,tt0385267 Q-R4SPTgjmI,2004.0,6,12,2011,Ray,It's Starting to Show,tt0350258 FGiocp7_jE8,2004.0,8,10,2011,In Good Company,Questioning Teddy K,tt0385267 Y_RUAeNZs44,2004.0,7,10,2011,In Good Company,Are You Sleeping With Him?,tt0385267 VFqbGbU8f8o,2004.0,3,10,2011,In Good Company,Synchronize and Synergize,tt0385267 v6bD23vEigE,1989.0,6,9,2011,Field of Dreams,Doc Saves Karin,tt0097351 cOE2gQrXchk,2004.0,1,10,2011,In Good Company,Meeting in the Elevator,tt0385267 lKeaVq6fUpw,1984.0,9,10,2011,Repo Man,Hitching a Ride With J. Frank Parnell,tt0087995 vRJ5cCP0ZPE,1984.0,6,10,2011,Repo Man,Flying Saucers & Time Machines,tt0087995 iK0-76FChfk,2008.0,5,11,2011,Wanted,Wesley's Breakdown,tt0493464 eb46yXP211w,1995.0,6,10,2011,12 Monkeys,Eating a Spider,tt0114746 5ecF_TOyhfQ,2003.0,8,10,2011,Seabiscuit,Red's Secret,tt0329575 oXybPR2g7VY,2003.0,1,-1,2011,Swimming Pool,Are You Staying Long?,tt0324133 9tzlsm5IvIg,2003.0,3,-1,2011,Swimming Pool,Are You Going to Tell My Daddy?,tt0324133 pLpIARbS5Xo,2000.0,6,10,2011,The Skulls,The Revealing Process,tt0192614 cqpvoIx9wbw,1988.0,5,10,2011,The Great Outdoors,Golf and Go-Karts,tt0095253 CnSvI5JxRC4,2000.0,4,10,2011,The Skulls,The Good Life,tt0192614 yGbG0TmmRDg,2003.0,2,-1,2011,Swimming Pool,Do You Think They Will Arrest Me?,tt0324133 Z8auSdJSusE,2010.0,7,-1,2011,The Kids Are All Right,I Love Lesbians,tt0842926 QQWyeLLMwmo,2010.0,1,-1,2011,The Adjustment Bureau,Elise and David Flirt,tt1385826 WL56IXifi9w,2011.0,2,-1,2011,Paul,Psychotic Nerd,tt1092026 1hw9NF3zzrI,2010.0,4,-1,2011,The Adjustment Bureau,The Plan's Wrong,tt1385826 -aKc2aFeCOk,2010.0,6,-1,2011,Little Fockers,One Twenty-Third Israelite,tt0970866 9Qesj84cHLw,2010.0,4,-1,2011,Little Fockers,I'm Her Groupie,tt0970866 UtIr2Cpk2c4,2010.0,2,-1,2011,The Wolfman,Lawrence Warns Gwen,tt0780653 wbVpwsKbFCU,2010.0,7,-1,2011,The Adjustment Bureau,What the Hell is Going On?,tt1385826 7XFAamm-SE0,2010.0,3,-1,2011,The Adjustment Bureau,Harry Tries to Help,tt1385826 QJZ83TqU_x0,2011.0,3,-1,2011,Paul,Miracle Worker,tt1092026 n86XlheDzhc,2010.0,2,-1,2011,Sanctum,Sharing Air,tt0881320 s_j4-cVHFH8,2010.0,1,-1,2011,Sanctum,Making a Bet,tt0881320 xTseWiI_yns,2011.0,2,-1,2011,Jane Eyre,Why Must You Leave?,tt1229822 y1tx1hn8Pwo,2011.0,4,-1,2011,Your Highness,Fabious Loves Belladonna,tt1240982 1eyMnUczVLY,2011.0,3,-1,2011,Your Highness,We Shall Protect You,tt1240982 kReNcBdLDa8,2011.0,6,-1,2011,Hop,Replacing a Son,tt1411704 HLO5LmnO8gM,2011.0,1,-1,2011,Your Highness,This Woman Is Mad,tt1240982 BWnG6--TRYI,2011.0,6,-1,2011,Your Highness,Wake Up,tt1240982 JuPSeaf--7g,2011.0,2,-1,2011,Hanna,You Didn't Prepare Me for This,tt0993842 6439wcfAL-E,2011.0,5,-1,2011,Your Highness,I Love You Thadeous,tt1240982 xMdDeWfS3O0,2011.0,2,-1,2011,The Eagle,Testudo,tt1034389 HUrzvLhxA0M,2011.0,1,-1,2011,Hanna,Escape,tt0993842 nPjlPgeaD_M,2011.0,4,-1,2011,Hanna,Just Find Her,tt0993842 LLyS4KzDsQ4,2011.0,4,-1,2011,Jane Eyre,Only the Housekeeper,tt1229822 dazYs4DgYtc,2011.0,6,-1,2011,Hanna,I'll See You There,tt0993842 weDm19eMl8Y,1997.0,10,10,2011,The Apostle,I'll Fly Away,tt0118632 Jfddc8LwQL8,1997.0,8,10,2011,The Apostle,The Passing Troublemaker,tt0118632 jri0U57iWWM,1993.0,9,9,2011,Schindler's List,The Schindler Jews Today,tt0108052 TxKxj0ZWEcY,1997.0,4,10,2011,The Apostle,One for the Road,tt0118632 xt0TyfTl03Y,1997.0,6,10,2011,The Apostle,On Fire for Jesus,tt0118632 fDx628jn1YI,1997.0,2,10,2011,The Apostle,The Keys to the Kingdom,tt0118632 qIp_8RNNX4k,1993.0,8,9,2011,Schindler's List,He Who Saves One Life Saves the World Entire,tt0108052 q5v5DOEF45E,1997.0,3,10,2011,The Apostle,Yelling at the Lord,tt0118632 pwdhau_agX0,1997.0,1,10,2011,The Apostle,Last Rites,tt0118632 CmyP-ljev68,1993.0,7,9,2011,Schindler's List,The List is Life,tt0108052 ZKie_34cpJI,1993.0,2,9,2011,Schindler's List,Commandant Amon Goeth,tt0108052 7mJ0HSLMba0,1993.0,6,9,2011,Schindler's List,Helen Hirsch,tt0108052 veztNJQyRJg,1993.0,5,9,2011,Schindler's List,A Small Pile of Hinges,tt0108052 j1VL-y9JHuI,1993.0,3,9,2011,Schindler's List,The Girl in Red,tt0108052 5yR0wlrq_h4,1993.0,4,9,2011,Schindler's List,Bach or Mozart?,tt0108052 lGqBJx2xbqQ,1993.0,9,10,2011,Dragon: The Bruce Lee Story,Showdown at the Ice Factory,tt0106770 G4cvTaP7RS8,1993.0,8,10,2011,Dragon: The Bruce Lee Story,Kato Saves the Green Hornet,tt0106770 OC195SrxRmQ,1993.0,10,10,2011,Dragon: The Bruce Lee Story,Bruce Defeats the Demon,tt0106770 6Ewhxrht6cg,1993.0,7,10,2011,Dragon: The Bruce Lee Story,60 Second Revenge,tt0106770 eBE2Wgz32nY,2007.0,10,10,2011,Evan Almighty,Congress Gets an Ark,tt0413099 tr4beSTsJ1E,1993.0,6,10,2011,Dragon: The Bruce Lee Story,The Decision is Mine,tt0106770 PnUvSn9pVaA,2007.0,9,10,2011,Evan Almighty,The Flood Comes,tt0413099 lbiymQJsC8M,1993.0,5,10,2011,Dragon: The Bruce Lee Story,Breakfast at Tiffany's,tt0106770 g_U9jZQ54LM,2007.0,8,10,2011,Evan Almighty,There's Going to Be a Flood,tt0413099 VzonTHZSaq0,1993.0,3,10,2011,Dragon: The Bruce Lee Story,Picking a Fight,tt0106770 BRZh_NO5tic,1993.0,1,9,2011,Schindler's List,That's Oskar Schindler,tt0108052 GNTdNXkhZ8Y,2007.0,7,10,2011,Evan Almighty,Evan's New Look,tt0413099 V7bO0UmtpFs,2007.0,4,10,2011,Evan Almighty,An Office Full of Birds,tt0413099 nmldcHUthLA,2000.0,9,10,2011,The Skulls,Challenge to a Duel,tt0192614 FHohKkrVoMI,2007.0,3,10,2011,Evan Almighty,World-Changing Time,tt0413099 ewvHk1nM5u0,1984.0,8,10,2011,Repo Man,Don't Go Running to the Man,tt0087995 H1t84X0iHTY,2010.0,9,-1,2011,Last Night,Thinking About Him,tt1294688 3fXPZqrKduQ,2000.0,5,10,2011,The Skulls,Will Is Hanged,tt0192614 3E-C9PipmaA,2007.0,1,10,2011,Evan Almighty,Ready for Work,tt0413099 HZjZbJuhPAo,1984.0,1,10,2011,Repo Man,What You Got in the Trunk?,tt0087995 eHpBhm4LMfw,2007.0,2,10,2011,Evan Almighty,Evan Meets His Staffers,tt0413099 fN2AXsF-kwc,1984.0,5,10,2011,Repo Man,The Rodriguez Brothers,tt0087995 ctyDL-6f90w,1991.0,10,10,2011,Cape Fear,Cady Drowns,tt0101540 Z7xJxo223YA,1991.0,9,10,2011,Cape Fear,The People vs. Samuel Bowden,tt0101540 BDiB3XcDsT0,1991.0,8,10,2011,Cape Fear,Leigh Offers Herself,tt0101540 76Dbf85Vo3Y,1984.0,7,10,2011,Repo Man,Firefight With Lite,tt0087995 CEuqveZyuQw,1991.0,6,10,2011,Cape Fear,Cady Kills Kersek,tt0101540 tBSbjKyamRo,1991.0,7,10,2011,Cape Fear,More Than Human,tt0101540 6vO-XDUiRqU,1991.0,5,10,2011,Cape Fear,"Come Out, Come Out, Wherever You Are",tt0101540 -5798-VRVYA,1991.0,4,10,2011,Cape Fear,Sucking Cady's Thumb,tt0101540 M6HxD6sZ-I0,1991.0,2,10,2011,Cape Fear,Smoking and Cackling,tt0101540 o1Izq-E3o7Y,1935.0,10,10,2011,Bride of Frankenstein,The Monster Meets His Bride,tt0026138 POR5t4hjtPg,1991.0,3,10,2011,Cape Fear,Strip Search,tt0101540 3zhqCccFsGc,1935.0,9,10,2011,Bride of Frankenstein,She's Alive! She's Alive!,tt0026138 g3E69dpurZA,1935.0,8,10,2011,Bride of Frankenstein,Henry Tries to Give the Creature Life,tt0026138 FQqo-w1qvws,1991.0,1,10,2011,Cape Fear,Cady's Release,tt0101540 yQ8PoAkZnew,1935.0,5,10,2011,Bride of Frankenstein,Pretorius Uses The Monster For Backup,tt0026138 3rcxMDaDYL4,1935.0,4,10,2011,Bride of Frankenstein,Pretorius Has a Plan,tt0026138 cS3cT6vgiT4,1935.0,7,10,2011,Bride of Frankenstein,Blackmail,tt0026138 xKdtuwTr-iM,1935.0,3,10,2011,Bride of Frankenstein,Teaching the Monster Manners,tt0026138 Fe4JvbxKwR4,1935.0,6,10,2011,Bride of Frankenstein,Frankenstein Needs a New Heart,tt0026138 7_WLSh7GE9I,1989.0,12,12,2011,Parenthood,He's Ruining the Play!,tt0098067 K7AKLKQqfj4,1935.0,1,10,2011,Bride of Frankenstein,Pretorius Shows Henry His Experiment,tt0026138 5XW-Nxfx5Nw,1989.0,11,12,2011,Parenthood,Kevin's Game Winning Catch,tt0098067 0t6IIdmOIOQ,1989.0,10,12,2011,Parenthood,Who's a Shi**y Father?,tt0098067 xwffHJ_pAM0,1935.0,2,10,2011,Bride of Frankenstein,Frankenstein is Hungry,tt0026138 dQUjkTOrAn4,1989.0,7,12,2011,Parenthood,Kevin Loses His Retainer,tt0098067 vO2jvLIyIV4,1989.0,8,12,2011,Parenthood,Something to Help You Relax,tt0098067 UX3HxJ3eTd0,1990.0,10,10,2011,Opportunity Knocks,George Bush Impression,tt0100301 OBp-kKju0IA,1990.0,9,10,2011,Opportunity Knocks,Born to be Wild,tt0100301 7QZB_cbjdM8,1990.0,8,10,2011,Opportunity Knocks,Boardroom to Bathroom,tt0100301 Y-CJgOlRfkE,1990.0,4,10,2011,Opportunity Knocks,The Great Sommelier,tt0100301 uAphWDkKWcg,2008.0,8,11,2011,Wanted,Wesley's Epiphany,tt0493464 GxznDWMsp8E,1990.0,5,10,2011,Opportunity Knocks,Eddie Translates Japanese,tt0100301 _xHw_zAJRDk,2008.0,11,11,2011,Wanted,Wesley Fulfills His Destiny,tt0493464 kDfvxJUxL10,2000.0,3,10,2011,Erin Brockovich,Erin Is Re-hired,tt0195685 E_Rabq4muu0,1997.0,7,12,2011,Bean,Stuffing the Turkey,tt0118689 FARSnLU-NJA,2008.0,10,11,2011,Wanted,Wesley Butchers the Butcher,tt0493464 SSk0B0dVq4g,2008.0,1,9,2011,Role Models,A Venti Coffee,tt0430922 nIYAfX4gYO0,2010.0,8,-1,2011,Last Night,How Long Have You Been Married?,tt1294688 5SnIUYLRXro,1997.0,4,12,2011,Bean,Bathroom Mishap,tt0118689 yde2ib0YiVQ,2010.0,1,-1,2011,Last Night,Can't Unlearn It,tt1294688 BGX4nMrnxg0,2000.0,6,10,2011,Erin Brockovich,A Lame-Ass Offer,tt0195685 5Jdk3riKKwo,2000.0,4,10,2011,Erin Brockovich,I Thought We Were Negotiating Here?,tt0195685 kFCUCnNKmmI,2000.0,5,10,2011,Erin Brockovich,What One Judge Decides,tt0195685 fXXmeP9TvBg,1976.0,2,10,2011,Car Wash,""""" Theme Song",tt0074281 -Mmq6Kmd75I,1998.0,6,10,2011,"Lock, Stock and Two Smoking Barrels",I'll Kill You,tt0120735 _d4H6lx9-Is,1996.0,1,10,2011,Bulletproof,Stealing the Ferrari,tt0115783 jNN6FI1Gcr8,1998.0,6,10,2011,Patch Adams,To Be a Great Doctor,tt0129290 8ZezvNWgi4M,1999.0,11,11,2011,October Sky,This One's Gonna Go for Miles,tt0132477 -riX6Xbvb8w,1995.0,1,10,2011,Casino,A Hell of a Handicapper,tt0112641 G2bsYSfXO5U,1996.0,5,10,2011,Fear,Nicole 4 Eva,tt0117381 7IrB1OE9Blo,1996.0,9,12,2011,The Nutty Professor,Reggie Has Left the Building!,tt0117218 DY61X243BoU,1999.0,5,11,2011,October Sky,Gift from Miss Riley,tt0132477 2r8yw_fjoHA,2008.0,12,12,2011,Changeling,Hope,tt0824747 yOgdjlPRWMg,2003.0,9,9,2011,Bruce Almighty,Bruce Learns to Pray,tt0315327 S7vH1F6nnug,2008.0,3,12,2011,Changeling,That's Not My Son,tt0824747 vn6qlQGDOIo,2008.0,7,12,2011,Changeling,We Killed Some Kids,tt0824747 USKDdEg8N3s,1998.0,2,10,2011,Meet Joe Black,I Like You So Much Scene,tt0119643 iplfWUtKMzI,2003.0,6,9,2011,Bruce Almighty,Evan's Botched Broadcast,tt0315327 m6kFCNsnQpQ,1998.0,10,10,2011,Fear and Loathing in Las Vegas,Too Much Adrenochrome,tt0120669 -Bprg2_s9mg,2003.0,3,9,2011,Bruce Almighty,Bruce's Breakdown,tt0315327 2O-CC3IVPVg,1996.0,2,12,2011,The Nutty Professor,Chemistry with Carla,tt0117218 74Ern74xGsQ,1996.0,1,12,2011,The Nutty Professor,Hamster Havoc,tt0117218 9FLLYpUnuwQ,1994.0,10,10,2011,Reality Bites,Troy Comes Back,tt0110950 NoD85qZhkWY,2005.0,9,10,2011,King Kong,Kong Battles the Airplanes,tt0360717 mqQ8Y9Sjp7o,2004.0,2,8,2011,Shaun of the Dead,Oblivious to the Zombies,tt0365748 HvhH6_TMxWw,1994.0,6,10,2011,Reality Bites,The World Doesn't Owe You Any Favors,tt0110950 nII3ya0MuM0,1994.0,5,10,2011,Reality Bites,A Total Prick,tt0110950 kXjKUXgoyL4,2004.0,8,8,2011,Shaun of the Dead,Breaking and Eviscerating,tt0365748 TkyLnWm1iCs,1989.0,3,12,2011,Back to the Future Part 2,Hover Board Chase,tt0096874 nur4g4r1LN4,1931.0,3,8,2011,Frankenstein,Meet the Monster,tt0021884 d-kcczAff40,1958.0,2,11,2011,Vertigo,Uncanny Resemblance,tt0052357 uYBZAS59t14,2010.0,7,-1,2011,Last Night,Where is Michael?,tt1294688 AK0MPlMNHQ0,2010.0,4,-1,2011,Last Night,Your Hand Rested Against My Leg,tt1294688 JEsQCm9Q3pk,1990.0,6,10,2011,Back to the Future Part 3,Ain't You Got the Guts?,tt0099088 LwuZzh79ds4,1990.0,3,10,2011,Back to the Future Part 3,Emmett to the Rescue,tt0099088 r9nG9RByMRI,1988.0,2,9,2011,Midnight Run,Come Fly With Me,tt0095631 009tNfQRd4o,1999.0,3,11,2011,Being John Malkovich,7 1/2 Floor Orientation,tt0120601 JPEmc2HcMmY,1990.0,10,10,2011,Cry-Baby,High School Hellcats,tt0099329 PXW83EUbeTM,1992.0,1,9,2011,Far and Away,Devil in the Stable,tt0104231 in-1BIg_Mec,1984.0,3,10,2011,Cloak & Dagger,Hostage Trade,tt0087065 fZt8dti-r14,1990.0,8,10,2011,Cry-Baby,Teardrops Are Falling,tt0099329 GP5ss2lYb3Y,2000.0,2,12,2011,The Family Man,This Is a Glimpse,tt0218967 lp6ibYQN8vQ,2000.0,3,12,2011,The Family Man,Go Get 'Em Tiger!,tt0218967 MtTE8aWCe9g,1941.0,7,9,2011,Sullivan's Travels,Sully Laughs Again,tt0034240 qf-4TDEpycw,1997.0,8,9,2011,The Game,He's Got a Gun,tt0119174 9JQRMnxE6No,1997.0,2,10,2011,Dante's Peak,The Hot Springs,tt0118928 hYQIObd_bog,1997.0,4,9,2011,The Game,You're With Them,tt0119174 ZcCHgCXxkgs,1981.0,9,9,2011,Continental Divide,Marry Me,tt0082200 E_tY5yc-yWU,1997.0,1,9,2011,The Game,A Profound Life Experience,tt0119174 AjZ717HtRy0,1984.0,1,10,2011,Cloak & Dagger,Witness to a Murder,tt0087065 joAodEzeK34,1997.0,1,10,2011,Dante's Peak,Losing Marianne,tt0118928 iYP5-Dl3rhg,1981.0,8,9,2011,Continental Divide,The Mating Pattern of Eagles,tt0082200 C-PxIfoch_Y,1981.0,7,9,2011,Continental Divide,A Cougar Problem,tt0082200 Upr2DiiSRDE,1981.0,6,9,2011,Continental Divide,Rolling Down the Mountain,tt0082200 pZJ7QK2d5-A,1981.0,5,9,2011,Continental Divide,Meet Max Birnbaum,tt0082200 LUmqBuS8GAA,1987.0,10,10,2011,Three O'Clock High,One Big Punch,tt0094138 BqV0lNOqaPA,1987.0,8,10,2011,Three O'Clock High,Jerry's Sexy Book Report,tt0094138 iqyFc90L3zw,1987.0,5,10,2011,Three O'Clock High,Assistant Principal Dolinski,tt0094138 nQYsHLwXnMc,1987.0,7,10,2011,Three O'Clock High,Buddy's Library Dominos,tt0094138 EECf2o9Ivaw,1989.0,8,10,2011,The 'burbs,We're the Lunatics!,tt0096734 iO8Tg11euPU,2002.0,7,10,2011,Ali G Indahouse,Ali G Meets Borat,tt0284837 Qpux-Drk6EY,2004.0,11,11,2011,Eternal Sunshine of the Spotless Mind,Wait,tt0338013 -NzSDbGmTpA,2007.0,4,10,2011,Cherry Crush,You Scare Me,tt0473464 _m9qecEehqY,1944.0,6,9,2011,Double Indemnity,Murder's Never Perfect,tt0036775 L6g6fH2ev40,1989.0,3,10,2011,The 'burbs,Neighbor Take Warning,tt0096734 nJPju1f6p0E,1986.0,7,9,2011,The Money Pit,Chain Reaction,tt0091541 FOM6rvU9xN4,1986.0,2,9,2011,The Money Pit,The Stairs Are Out!,tt0091541 wBxRwF4qnhU,1986.0,5,9,2011,The Money Pit,Stuck in the Floor,tt0091541 bXNwzKo5Yps,2000.0,2,10,2011,Meet the Parents,Milking Cats,tt0212338 _bsnYbe6Dp8,2009.0,7,10,2011,Bad Lieutenant: Port of Call New Orleans,"To the Break of Dawn, Baby!",tt1095217 GtYAzKwm-R0,2002.0,1,10,2011,About a Boy,I Really Am This Shallow,tt0276751 UWGtZ9Oqcwc,2004.0,4,11,2011,Dawn of the Dead,The Dead Will Walk the Earth,tt0363547 TS6_Y6r5r-8,2004.0,8,11,2011,Dawn of the Dead,Blow My Head Off,tt0363547 XNAVsV-Jqfg,1981.0,4,9,2011,Continental Divide,A Secret Rendezvous,tt0082200 pv6EZGMlgX0,2004.0,1,11,2011,Dawn of the Dead,Awake at Dawn,tt0363547 cqOc4yl1bIw,1981.0,3,9,2011,Continental Divide,Eagle Poachers,tt0082200 u1pJJOaKdiQ,1981.0,2,9,2011,Continental Divide,One Condition -- No Story,tt0082200 Pf0COLjWys0,1981.0,1,9,2011,Continental Divide,The Oldest Church in America,tt0082200 zxqYjEzGEPs,1993.0,4,10,2011,Dragon: The Bruce Lee Story,I'm Bruce Lee,tt0106770 H2tltm5wUCs,1993.0,2,10,2011,Dragon: The Bruce Lee Story,Chef Beat Down,tt0106770 yb7aNfMvRy0,1993.0,1,10,2011,Dragon: The Bruce Lee Story,Fighting the Sailors,tt0106770 80x9FmKsyg4,2007.0,6,10,2011,Evan Almighty,Evan Speaks With God,tt0413099 l8aozWddbPA,2007.0,5,10,2011,Evan Almighty,These Are Birds,tt0413099 GnjxY_zMxOA,1996.0,8,10,2011,Fear,Let Me in the F***in' House!,tt0117381 C_2-E5uR-k0,2008.0,10,12,2011,Changeling,Sanford Digs,tt0824747 1SOZ6caLdUk,2003.0,8,9,2011,2 Fast 2 Furious,Ejecto Seato Scene,tt0322259 ObbLapUaZd4,1998.0,9,10,2011,Fear and Loathing in Las Vegas,Dr. Bumquist's Drug Lecture,tt0120669 vfNW11vcewM,1990.0,9,9,2011,Maniac Cop 2,Burning Vengeance,tt0100107 VhtJpZkTZ1M,1990.0,6,9,2011,Maniac Cop 2,Flashback to Hell,tt0100107 rdFZAYliCgE,1990.0,4,9,2011,Maniac Cop 2,Careening Out of Control,tt0100107 9rstlW2YsmA,1990.0,3,9,2011,Maniac Cop 2,De-Forrestation,tt0100107 EdEl2_GReMY,1990.0,1,9,2011,Maniac Cop 2,Last Time On Maniac Cop...,tt0100107 piOK9oDxl2w,2000.0,7,10,2011,Ed Gein,Strange Sense of Humor,tt0230169 AWKQSDRekBM,1980.0,6,7,2011,The Shining,"Wendy, I'm Home Scene",tt0081505 optHzRmqdFk,1980.0,1,7,2011,The Shining,The Power of The Shining Scene,tt0081505 ZJxNwE6H1SM,2010.0,3,-1,2011,Cave of Forgotten Dreams,The Chamber of Lions,tt1664894 M6aKImtVams,2011.0,5,-1,2011,Jumping the Broom,Squash All This,tt1640484 aDdBoZOylmo,2011.0,6,-1,2011,Sucker Punch,Distant Planet (Animated Short),tt0978764 A2WV257yma8,2011.0,1,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,In Perpetuity Forever,tt1743720 fyI46_cfTW4,2011.0,1,-1,2011,Soul Surfer,I Love Home School,tt1596346 xW2dWkdxEVs,2010.0,4,-1,2011,You Will Meet a Tall Dark Stranger,Tickets to the Opera,tt1182350 KLv0iZ_NPi4,2010.0,2,-1,2011,You Will Meet a Tall Dark Stranger,You're an Actress?,tt1182350 3dnf7FK-BPk,2010.0,4,-1,2011,Incendies,Disgrace,tt1255953 bQme3XqjpCk,2011.0,2,-1,2011,The Roommate,Library Stalking,tt1265990 9Oi7sZ13tNY,2011.0,1,-1,2011,The Roommate,Where Were You?!,tt1265990 yuklnScufbE,2011.0,1,-1,2011,Just Go with It,The Other Woman,tt1564367 rJSnxSjZIcA,2010.0,3,-1,2011,"Life, Above All",Chandra Walks Alone,tt1646111 dB2iZKhWArQ,2010.0,2,-1,2011,"Life, Above All",You Amaze Me,tt1646111 MgBCnwI_Hq0,2008.0,5,12,2011,Changeling,I Am Not Your Mother,tt0824747 oZePQEUplJs,2008.0,4,12,2011,Changeling,Corrupt Doctor,tt0824747 4ld8-QuAFw4,2002.0,3,10,2011,Ali G Indahouse,Keep It Real Class,tt0284837 -QB2gXiOAKc,2010.0,5,-1,2011,Of Gods and Men,Free Man,tt1588337 iKw7Ndv4bRM,2010.0,4,-1,2011,Of Gods and Men,Birds on a Branch,tt1588337 6bahX2rrT1I,2010.0,11,-1,2011,The Social Network,I Deserve Some Recognition,tt1285016 A6f-6l0W-0o,2010.0,10,-1,2011,The Social Network,Your Full Attention,tt1285016 -wc5S8xwxJk,2010.0,7,-1,2011,The Social Network,Guys That Row Crew,tt1285016 gkJAPsQ2YHE,2011.0,7,-1,2011,The Green Hornet,We're Helping People!,tt0990407 nMtW7uy5RrQ,2011.0,6,-1,2011,The Green Hornet,Nunchucks,tt0990407 9n27j_fe1yE,2011.0,3,-1,2011,The Green Hornet,Who Is ?,tt0990407 Dei-j4tWI0A,1992.0,4,10,2011,Bob Roberts,Debate in Pittsburgh,tt0103850 ZrW0Vk-Y_TU,2010.0,5,-1,2011,The Tourist,Who Are You People?,tt1243957 iOMuP1qEKUc,2002.0,9,10,2011,8 Mile,Rabbit Battles Lyckety-Splyt Scene,tt0298203 JaIhQFDdcJM,2010.0,1,-1,2011,Resident Evil: Afterlife,Emergency Rooftop Landing,tt1220634 KDKB37gY7OY,2010.0,7,-1,2011,Easy A,Daughter of the Year,tt1282140 HuKVUxMpoCk,2000.0,6,12,2011,Billy Elliot,You're Not Concentrating,tt0249462 v5ueLuyLWn4,2009.0,3,-1,2011,A Perfect Getaway,Photo of the Killers,tt0971209 _c7XtFcDfX4,2009.0,2,-1,2011,A Perfect Getaway,Cydney Almost Falls,tt0971209 JXQWJ63fico,2003.0,9,9,2011,2 Fast 2 Furious,Car Meets Boat Scene,tt0322259 aSxScp7zUpY,2003.0,7,9,2011,2 Fast 2 Furious,Harpooned by the Cops Scene,tt0322259 2xxZ6kju6xo,2003.0,3,9,2011,2 Fast 2 Furious,Audition Race Scene,tt0322259 3mieBC6wlbs,2011.0,4,-1,2011,Something Borrowed,Help Me Write My Vows,tt0491152 nMW1Rfbl0tE,1979.0,11,11,2011,1941,Kelso Saves America,tt0078723 j7O-SUEh-54,1979.0,6,11,2011,1941,"Wood, Hollis P.",tt0078723 jJZ5x-zUx28,1979.0,5,11,2011,1941,Lost,tt0078723 FcqC3ZIsQRM,1979.0,8,11,2011,1941,Mass Hysteria,tt0078723 -v93NKIFBBw,1979.0,1,11,2011,1941,Something in the Water,tt0078723 OCGGXaMANys,1973.0,7,-1,2011,The Exorcist,What's Wrong With Her?,tt0070047 asxNFYNfOWI,2010.0,2,-1,2011,Cave of Forgotten Dreams,Authentic Cave Paintings,tt1664894 toq0HYc9mmg,2011.0,6,-1,2011,Jumping the Broom,It's Burning,tt1640484 xHH-tuDq-T4,2011.0,4,-1,2011,Jumping the Broom,I'm a Hugger,tt1640484 q-kLlfq4JpU,2011.0,2,-1,2011,Jumping the Broom,Strike One,tt1640484 k7o8U7h_YHM,2011.0,1,-1,2011,Jumping the Broom,What's His Family Like?,tt1640484 JtBmjD4WDnM,2010.0,2,10,2011,Dead Awake,Reunited.,tt1501652 byObeFcFXmo,2011.0,7,-1,2011,Fast Five,Agent Hobbs,tt1596343 J_i4XvgEVDg,2011.0,2,-1,2011,Fast Five,Sexy Gisele,tt1596343 gAxuiJdRBjQ,2005.0,3,10,2011,The Proposition,Where's Mikey?,tt0421238 _nFXFkb8i0Q,2009.0,2,10,2011,Bad Lieutenant: Port of Call New Orleans,"I Love It, I Just Love It!",tt1095217 wGvGiFhbmwg,2011.0,2,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,The Pitch,tt1743720 QG_VaTDn9Uk,2009.0,8,10,2011,Bad Lieutenant: Port of Call New Orleans,My Lucky Crack Pipe,tt1095217 cczh1r-Mb9o,2009.0,5,10,2011,Bad Lieutenant: Port of Call New Orleans,"Oh, Yeah!",tt1095217 vsevdTMBfC8,2011.0,2,-1,2011,Hop,Pooping Candy,tt1411704 j_2-8115ZAs,2011.0,4,-1,2011,Hop,A New Boss,tt1411704 TpwYtP4Kzbs,2011.0,4,-1,2011,Soul Surfer,Just Not There,tt1596346 KSrAg-DG4Xs,2011.0,6,-1,2011,Paul,We've Been to Comic-Con,tt1092026 1LatwDo_ZL4,2011.0,6,-1,2011,Limitless,Don't Make Me Your Competition,tt1219289 cnvdC5TGc3g,2011.0,4,-1,2011,Battle: Los Angeles,They Know We're Here Now,tt1217613 TotAfd4ercA,2011.0,1,-1,2011,Jane Eyre,I Would Do Anything For You,tt1229822 ENZk6ZwsOzU,2010.0,1,-1,2011,You Will Meet a Tall Dark Stranger,That Cheap Tart,tt1182350 lScMakd7h6w,2011.0,3,-1,2011,The Roommate,Flirting with Disaster,tt1265990 898OUCyBulM,2011.0,4,-1,2011,Just Go with It,The Negotiation,tt1564367 6a9lq0bPrLU,2010.0,4,-1,2011,Sanctum,No Rescue,tt0881320 lWqHayjaOxo,2011.0,4,-1,2011,The Dilemma,Serious Lady Wood,tt1578275 TwTQUFCYFsc,2011.0,1,-1,2011,The Dilemma,We Got the Meeting,tt1578275 jmOvg7JKjVI,2009.0,8,-1,2011,An Education,Hard and Boring,tt1174732 AqtOrW-wiZ4,2010.0,3,-1,2011,The Tourist,When You Upgrade It From Room Service,tt1243957 zsgAfhsQkYU,2010.0,5,-1,2011,Dear John,Tell Me What You Want,tt0989757 8TOTUOFMjuo,2000.0,11,12,2011,Billy Elliot,Acceptance,tt0249462 5MC-cGN0bw0,2010.0,7,-1,2011,The Wolfman,Gwen Consults The Gypsy,tt0780653 yQ3jp-a5JK4,2009.0,8,-1,2011,Planet 51,Dog Gets Revenge,tt0762125 pKNsKKRGrzs,1989.0,3,12,2011,Parenthood,Kevin the Valedictorian,tt0098067 uDISBx2Ry7s,2000.0,5,12,2011,Billy Elliot,Private Lessons,tt0249462 d6NOGc2Dymo,2010.0,8,-1,2011,Cirque du Freak,"That's Enough, Boys",tt0450405 docSqZBVEUY,2003.0,2,9,2011,Grand Theft Parsons,Hitting the Wall,tt0338075 UWyz-yfEIN4,2010.0,6,-1,2011,Cirque du Freak,...Before You Get Pink Eye,tt0450405 Amjfc9pRatc,2010.0,4,-1,2011,Cirque du Freak,Cemetery Ambush,tt0450405 VGqjv_CkCXo,2009.0,2,-1,2011,District 9,Gathering Alien Weapons,tt1136608 Pf5mDMWYRmE,1989.0,2,12,2011,Parenthood,Taylor Tosses Her Cookies,tt0098067 0KJ7l4gy4oo,1995.0,4,10,2011,Casino,"For Ginger, Love Costs Money",tt0112641 hwc74Ns9EZI,2010.0,3,-1,2011,Cirque du Freak,Hold Your Breath,tt0450405 7phF0rMpBiw,1976.0,1,10,2011,Car Wash,Ripping Off a Cabbie,tt0074281 7P9EEB9Mr18,1997.0,3,12,2011,Bean,Airport Police Chase,tt0118689 EeyNlzFdjtc,1996.0,12,12,2011,The Nutty Professor,Klump vs. Love,tt0117218 G_0ZVzUO3Os,1985.0,7,10,2011,Mask,Prostitute Fallout,tt0089560 Vq1W_C-ft0Q,1999.0,8,11,2011,October Sky,Going to Indianapolis,tt0132477 A4k_HCZNCgs,2003.0,1,9,2011,Bruce Almighty,This Is My Luck,tt0315327 gtKp8oxOzAU,2008.0,11,12,2011,Changeling,Davy's Escape,tt0824747 BXvryt6UCC0,1998.0,7,10,2011,Meet Joe Black,That Was Wonderful Scene,tt0119643 5Xk31NpUX1g,1998.0,5,10,2011,Meet Joe Black,Peanut Butter Man Scene,tt0119643 BIfyebxopuM,1996.0,8,12,2011,The Nutty Professor,Buddy's Big Apology,tt0117218 P2pgWsYSyUA,1998.0,1,10,2011,Fear and Loathing in Las Vegas,Somewhere Around Barstow,tt0120669 v5FtI472Q6I,1931.0,6,8,2011,Frankenstein,The Monster Befriends Maria,tt0021884 SQVw58aDt3Y,1994.0,3,10,2011,Reality Bites,My Sharona,tt0110950 DoUYnGrhxi8,2001.0,10,11,2011,American Pie 2,A Medical Emergency,tt0252866 i5jTH89HjTA,1979.0,6,10,2011,The Jerk,The Opti-Grab,tt0079367 FCJx1uV38ZQ,1979.0,4,10,2011,The Jerk,Navin Calls the Cops,tt0079367 1qNeGSJaQ9Q,1931.0,2,8,2011,Frankenstein,It's Alive!,tt0021884 wcztDZ13TLI,1995.0,4,10,2011,12 Monkeys,Institutionalized With Jeffrey,tt0114746 lKv7aGku2RQ,1979.0,3,10,2011,The Jerk,Don't Call That Dog Lifesaver,tt0079367 Gokkl2br7G8,1988.0,8,9,2011,Midnight Run,Is That Marvin?,tt0095631 9rDK1qdc9-Y,1995.0,9,10,2011,12 Monkeys,Jeffrey Reveals His Plan,tt0114746 25_F9irGdow,1999.0,10,11,2011,Being John Malkovich,John Malkovich Becomes a Puppeteer,tt0120601 B0YqZqU_z0Q,2000.0,3,10,2011,Bring It On,This Is a Cheer-ocracy,tt0204946 DSGYElDi38s,1999.0,2,11,2011,Being John Malkovich,The Speech Impediment,tt0120601 OpZknAZxSjU,1999.0,5,11,2011,Being John Malkovich,Sad Man Becomes John Malkovich,tt0120601 --VWN_KTxzE,2009.0,4,10,2011,Bad Lieutenant: Port of Call New Orleans,A Simple Purpose,tt1095217 KN2W3JON7Y0,2011.0,6,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,Musicians & Brands,tt1743720 HxrS10Oa4qU,2003.0,4,-1,2011,Swimming Pool,Peace and Quiet,tt0324133 SaAuPbU0eOk,2010.0,5,-1,2011,You Will Meet a Tall Dark Stranger,Out of a Red Dress,tt1182350 sPQLY7niQC4,2011.0,4,-1,2011,Paul,Friendly Makeout,tt1092026 qB2H-Gp0nlE,2011.0,1,-1,2011,Paul,Fart Harvesting,tt1092026 b9WFVLRPOJI,2011.0,3,-1,2011,Battle: Los Angeles,First Contact,tt1217613 9DKqoFCTC6E,2011.0,3,-1,2011,Jane Eyre,There Is No Debt,tt1229822 HWDBMnxAk0A,2010.0,5,-1,2011,The Adjustment Bureau,The Race,tt1385826 XwQuM34oBkg,2010.0,2,-1,2011,The Adjustment Bureau,I Can Read Your Mind,tt1385826 HEtlEkCoCDQ,2010.0,3,-1,2011,You Will Meet a Tall Dark Stranger,Hopeful Future,tt1182350 QNUzcLPS_LE,2011.0,4,-1,2011,The Eagle,What Happened to My Father?,tt1034389 0TmugJo-c9Y,2009.0,9,10,2011,Couples Retreat,Couples Therapy,tt1078940 SB4SyMKugU8,2004.0,11,11,2011,Dawn of the Dead,Two Buses From Hell,tt0363547 zATlpF_gylU,2011.0,3,-1,2011,The Eagle,The Fight,tt1034389 T5pFuaH_A98,2011.0,6,-1,2011,Just Go with It,Fake Hugs,tt1564367 5KsjPjE-sTw,2011.0,3,-1,2011,Just Go with It,A Serious Case of E.D.,tt1564367 8D11eYo3bNY,2010.0,3,-1,2011,Sanctum,Climbing a Waterfall,tt0881320 cu_A-aG8G7U,1995.0,7,10,2011,12 Monkeys,The Great Escape,tt0114746 b1vFQilhgrY,2010.0,1,-1,2011,"Life, Above All",Short Skirt,tt1646111 W03miqzGMcc,2010.0,2,-1,2011,Incendies,The Orphanage,tt1255953 WThlmxAdynQ,2010.0,1,-1,2011,Incendies,Mother's Last Wish,tt1255953 pPZ7eetT6oI,2011.0,5,-1,2011,The Dilemma,The Red Zone,tt1578275 FBWubk2ItBA,2011.0,3,-1,2011,The Dilemma,Relationship Anxiety,tt1578275 zPvglo_VB9g,2010.0,1,-1,2011,Of Gods and Men,Consultation,tt1588337 QRGusFszwdA,2010.0,2,-1,2011,Of Gods and Men,Nearest In Love,tt1588337 5_2gW4c8hZ0,2010.0,8,-1,2011,The Social Network,"I'm CEO, Bitch",tt1285016 3_U1GtNY5xQ,2011.0,4,-1,2011,The Green Hornet,Take My Hand,tt0990407 No7DllIwA3w,2011.0,2,-1,2011,The Green Hornet,The Greatest Moment in My Life,tt0990407 IC8xA-bOXOo,2004.0,10,11,2011,Dawn of the Dead,I'm In,tt0363547 stSweLZol7U,1988.0,7,9,2011,Midnight Run,A New Watch,tt0095631 14bY6pwza-Q,2010.0,7,-1,2011,Little Fockers,"Hottie, Two O'Clock",tt0970866 S2LkKVM-dRo,2004.0,9,11,2011,Dawn of the Dead,Fire Power,tt0363547 DNt7PNTuePY,2004.0,5,11,2011,Dawn of the Dead,Regime Change,tt0363547 Ybfc9RkRUY0,2004.0,6,11,2011,Dawn of the Dead,A New Batch of Survivors,tt0363547 FaYvxUgA4cw,2010.0,2,-1,2011,Little Fockers,Double Dose of Focker,tt0970866 RZvwbfpE8CA,2004.0,3,11,2011,Dawn of the Dead,Zombie Janitor,tt0363547 qeZ0SIG2eJY,2004.0,2,11,2011,Dawn of the Dead,Zombies Ate My Neighbors,tt0363547 SNrMqIrtbmw,2004.0,7,11,2011,Dawn of the Dead,Holy S***!,tt0363547 WT2D-ZhTkqQ,2010.0,3,-1,2011,How Do You Know,Father's Rule On Drinking,tt1341188 EOwmzfyF1oM,2010.0,2,-1,2011,How Do You Know,Running From Bad News,tt1341188 5K14lfXCgco,2010.0,1,-1,2011,How Do You Know,Room To Think,tt1341188 0IVFxW63RxU,2010.0,7,-1,2011,Kenny Chesney: Summer in 3D,Don't Happen Twice,tt1545098 P9iflgkOO-E,2010.0,3,-1,2011,Kenny Chesney: Summer in 3D,I Go Back,tt1545098 KVIXNJIaQBY,2010.0,5,-1,2011,Kenny Chesney: Summer in 3D,Blue Chair,tt1545098 sallI5PomoY,2010.0,8,-1,2011,Barney's Version,My Wife and My Best Friend,tt1423894 jvZk0rzVeBw,2010.0,6,-1,2011,Animal Kingdom,Janine Blackmails Randall,tt1313092 spVHsj3_MEY,2010.0,6,-1,2011,Skyline,Elaine is Attacked,tt1564585 NACwfzRou0w,2010.0,6,-1,2011,Burlesque,Let Me Show You,tt1126591 5vKDb4dLu0k,2010.0,4,-1,2011,Burlesque,Please Have the Flu,tt1126591 xI836Tp4cq4,2010.0,3,-1,2011,Another Year,I Best Be Off,tt1431181 au_5dPh_Dm8,2010.0,4,-1,2011,Another Year,A Big Secret,tt1431181 y_5YoG-iXjQ,2009.0,4,-1,2011,The Hangover,Paging the Doctor,tt1119646 v-tma5YRyGg,2010.0,4,-1,2011,Barney's Version,The Pause,tt1423894 RpKQ0AC0p9Q,2010.0,2,-1,2011,Barney's Version,I'm Embarrassing You?,tt1423894 JMt6zz_dYWI,2010.0,3,-1,2011,A Nightmare on Elm Street,Grocery Store Nightmare,tt1179056 JWGVdLHio5g,2010.0,1,-1,2011,A Nightmare on Elm Street,"You're Dreaming, But You Don't Know It",tt1179056 hSgNZ6R5Rbg,2010.0,4,-1,2011,The Illusionist,Exploring Edinburgh,tt0775489 KMnK0as4TSc,2010.0,3,-1,2011,My Soul to Take,You Think I Killed Somebody?,tt0872230 U6X6o4CAqL4,2010.0,3,-1,2011,The Debt,Welcome to the Mission,tt1226753 6HbrQMgOUFw,2010.0,6,-1,2011,The Social Network,Erica Albright,tt1285016 zYRqTV7WyMg,2010.0,1,-1,2011,The Debt,Facing the Monster,tt1226753 5RmABh8MCpE,2010.0,3,-1,2011,The Illusionist,Travelin' North,tt0775489 DkyCu7ryu-w,2010.0,2,-1,2011,Made in Dagenham,Someone's Got To Stop These Exploiting Bastards,tt1371155 Rv2hRfqlJaE,2010.0,4,-1,2011,Made in Dagenham,Don't Give Up,tt1371155 Lmsukmz3QQE,2010.0,1,-1,2011,The Illusionist,Tough Crowd,tt0775489 1RbdA_geYpU,2010.0,6,-1,2011,It's Kind of a Funny Story,I'm so Proud of You,tt0804497 Ci3uRpwFlZ4,2010.0,5,-1,2011,It's Kind of a Funny Story,Something Bigger Going On Here,tt0804497 LkdJwYQIR2o,2010.0,2,-1,2011,The Social Network,Does She Have a Boyfriend?,tt1285016 bLsM1z8lX_A,2010.0,1,-1,2011,The Social Network,We're Ranking Girls,tt1285016 J196d5nLSYA,2010.0,4,-1,2011,It's Kind of a Funny Story,This is a Surprise,tt0804497 6fXGKCKcXk8,2010.0,2,-1,2011,It's Kind of a Funny Story,I'm a Lady,tt0804497 sSk2SvdopGY,2010.0,5,-1,2011,Inside Job,A Wall Street Government,tt1645089 qD6IXIE0cok,2008.0,7,11,2011,Wanted,Curving Bullets on a Train,tt0493464 2bcSpgxPG0g,1994.0,10,10,2011,The Hudsucker Proxy,Norville's Great Fall,tt0110074 Puh__Ef3KkI,1996.0,6,10,2011,Mystery Science Theater 3000: The Movie,Voyage to Metaluna,tt0117128 v71Epv4g6jY,1996.0,8,10,2011,Mystery Science Theater 3000: The Movie,Into the Tubes,tt0117128 QtBnuCwAJeQ,2010.0,5,-1,2011,Tamara Drewe,Is Now A Good Time?,tt1486190 MAeQV2NBbhM,2010.0,6,-1,2011,Tamara Drewe,Will You Marry Me,tt1486190 JUGSh3BMuaQ,2010.0,1,-1,2011,Tamara Drewe,Who Were You Talking To?,tt1486190 cr13B4L-5-M,2010.0,2,-1,2011,Tamara Drewe,"I Didn't Know They Provided Material, Too",tt1486190 yGzCkRwbFII,2010.0,4,-1,2011,Catfish,Here's Looking at You,tt1584016 EYn7ZmFV2eY,2010.0,4,-1,2011,Devil,Car Wash Apology Note,tt1588170 SnXhWbEfDNA,2010.0,2,-1,2011,Catfish,First Phone Call,tt1584016 QlT6RMtJb6s,2010.0,5,-1,2011,Salt,My Name is Evelyn,tt0944835 m8hsAr5C2UU,2010.0,4,-1,2011,The American,Come Away With Me,tt1440728 ClylV3dp-Ok,2010.0,2,-1,2011,The American,Don't Make Any Friends,tt1440728 XvvzZUhRSbI,2010.0,3,-1,2011,The American,The Chase,tt1440728 oTzTcic-1qs,2010.0,6,-1,2011,Easy A,I Dated a Homosexual,tt1282140 zG0CfU1YnNQ,2010.0,3,-1,2011,Resident Evil: Afterlife,Axe Man,tt1220634 n3K6Fkd5ri8,2010.0,1,-1,2011,Easy A,A Sexy George?,tt1282140 w5EQRIoHjQg,2010.0,4,-1,2011,Takers,We Lost Him,tt1135084 Jina0muBqRA,2010.0,1,-1,2011,Burlesque,Something's Got a Hold on Me,tt1126591 wJnVVC4784c,2010.0,3,-1,2011,Takers,Take Him Out,tt1135084 roeLoZuFI1I,2010.0,1,-1,2011,Takers,Chopper Getaway,tt1135084 I6RwgD0b9xA,2010.0,3,-1,2011,Nanny McPhee Returns,The Way I Work,tt1415283 jNEnqzkT_QU,2010.0,5,-1,2011,Nanny McPhee Returns,The Pigs Go Swimming,tt1415283 bObjXY24Ei4,2010.0,3,-1,2011,Eat Pray Love,Pizza Margherita in Napoli,tt0879870 mzP8haJXI5A,2010.0,2,-1,2011,Nanny McPhee Returns,The Kids Stop Fighting,tt1415283 vHbBhI0xLjA,2010.0,5,-1,2011,Eat Pray Love,Best Restaurant in Town,tt0879870 AhpGExo2hbs,2010.0,2,-1,2011,Eat Pray Love,Far Too Charming,tt0879870 u8oHCJ8LxtY,2010.0,6,-1,2011,Charlie St. Cloud,Charlie Can't Lose Sam,tt1438254 o6zEapyz33o,2010.0,3,-1,2011,Charlie St. Cloud,Charlie & Tess,tt1438254 m5n7XpAv46A,2010.0,4,-1,2011,Charlie St. Cloud,Bring the Heat,tt1438254 P0ojZI9qBPc,2010.0,5,-1,2011,Animal Kingdom,An Unstuck Feeling,tt1313092 O5W1OfGz3es,2010.0,4,-1,2011,Animal Kingdom,Bad News,tt1313092 IH6fifC3qSE,2010.0,2,-1,2011,Animal Kingdom,Grubby Business,tt1313092 7RS4PfQHCX4,2010.0,4,-1,2011,The Other Guys,Seriously...Who Is That?,tt1386588 mFXxro8aD3A,2010.0,3,-1,2011,The Other Guys,Flotation Device,tt1386588 jwmRNTTDOw0,2010.0,4,-1,2011,The Kids Are All Right,It's Her Job,tt0842926 yp-LFlDEVdk,2010.0,4,-1,2011,Salt,Crash Landing,tt0944835 naI0OgZq73M,2010.0,2,-1,2011,The Kids Are All Right,How Did You Meet?,tt0842926 rQ7oKh5K7K4,2010.0,1,-1,2011,Salt,Tactical Team,tt0944835 adT3VQ_Krrk,2010.0,1,-1,2011,The Kids Are All Right,We Support You,tt0842926 P3jRjtbkmq8,1996.0,9,10,2011,Mystery Science Theater 3000: The Movie,Metaluna Mutant,tt0117128 nBQDz9PiMDU,1996.0,2,10,2011,Mystery Science Theater 3000: The Movie,Rough Landing,tt0117128 FKu9sUXtjpI,1996.0,7,10,2011,Mystery Science Theater 3000: The Movie,A Flock of Seagulls,tt0117128 XJTXpItCqFU,2008.0,6,11,2011,Wanted,Wesley's First Curved Bullet,tt0493464 dXngQtk0BCU,1994.0,9,10,2011,The Hudsucker Proxy,Getting Off the Merry-Go-Round,tt0110074 B0cuLHkQDcA,2008.0,4,11,2011,Wanted,Viper vs. Van,tt0493464 q2pzOimT9so,2008.0,2,11,2011,Wanted,Grocery Store Shootout,tt0493464 lf3MqrE07I4,2008.0,1,11,2011,Wanted,Cross Kills Mr. X,tt0493464 pbmU2wMnuI4,1994.0,4,10,2011,The Hudsucker Proxy,Single-Stitched Pants,tt0110074 _SwvSu3jxAA,1994.0,7,10,2011,The Hudsucker Proxy,"You Know, For Kids!",tt0110074 Xf_j-iNi9CA,2010.0,2,-1,2011,Grown Ups,Bug Zapper,tt1375670 jz4VT9zHLTU,2010.0,5,-1,2011,Grown Ups,Peeing in the Pool,tt1375670 wVsMJ0ntvmc,2010.0,1,-1,2011,Grown Ups,Breast Feeding,tt1375670 WhyNjvISFac,1994.0,1,10,2011,The Hudsucker Proxy,Looking for a Job,tt0110074 qiVy40O1_Lc,2010.0,3,-1,2011,The Karate Kid,Great Wall Training,tt1155076 5T607c23L8M,1987.0,2,10,2011,Three O'Clock High,Prelude to a Showdown,tt0094138 Mn5ayQd7Y0Q,1989.0,4,12,2011,Parenthood,Kevin the Psychopath,tt0098067 Or3okI_mad8,1992.0,10,10,2011,Army of Darkness,"Hail to the King, Baby",tt0106308 sTYIlyRGrA4,1989.0,6,12,2011,Parenthood,Unbreakable Pinata & a Mouthful of Helium,tt0098067 PPAe_7EK5yQ,2003.0,6,9,2011,Grand Theft Parsons,You Stole Gram Parsons,tt0338075 idqhhcppnUY,2003.0,8,9,2011,Grand Theft Parsons,Gram's Funeral,tt0338075 58YNYqN6lko,1989.0,1,12,2011,Parenthood,The Diarrhea Song,tt0098067 ORrQYZCdCwI,2003.0,5,9,2011,Grand Theft Parsons,Running From the Law,tt0338075 Anue5RDt4Bs,1997.0,11,12,2011,Bean,It's a Poster,tt0118689 rWqVoaYxgRs,1997.0,9,12,2011,Bean,Staining Whistler's Mother,tt0118689 zANq9Dusk6Y,1997.0,10,12,2011,Bean,David Freaks Out,tt0118689 fkHlhiG0h70,1997.0,6,12,2011,Bean,The Two-Way Mirror,tt0118689 Yxzq9BLE5Hg,1989.0,3,9,2011,Field of Dreams,Go the Distance,tt0097351 68pN_c7DGUE,1997.0,5,12,2011,Bean,Wet Pants,tt0118689 9plvG6cSgVk,2003.0,1,9,2011,Grand Theft Parsons,Bernice the Psychedelic Hearse,tt0338075 nMlDPsRwZE4,1930.0,10,10,2011,All Quiet on the Western Front,The Butterfly,tt0020629 mw96cSYo9dU,1930.0,6,10,2011,All Quiet on the Western Front,"Forgive Me, Comrade",tt0020629 jsLOtv4yqIM,1930.0,9,10,2011,All Quiet on the Western Front,Heroism In Vain,tt0020629 33MiJMF5z7U,1989.0,7,10,2011,Fletch Lives,Sneaking Into the Morgue,tt0097366 0N-cvihnyqg,2010.0,8,11,2011,Get Him to the Greek,A Monty Python Skit,tt1226229 iOGo0EHHtCo,2010.0,11,11,2011,Get Him to the Greek,A Guardian Angel,tt1226229 MMSpFkvPOAM,1989.0,6,10,2011,Fletch Lives,Saved!,tt0097366 CS-nCS9Az94,1989.0,3,10,2011,Fletch Lives,Molesting a Dead Horse,tt0097366 Cnh4Vr0UruI,2008.0,8,9,2011,Role Models,I'm Your Friend,tt0430922 VjfjS0R1bdk,2002.0,10,10,2011,Big Fat Liar,Marty's Big Confession,tt0265298 fki-LTswICw,2002.0,7,10,2011,Big Fat Liar,Car Trouble,tt0265298 RGl3Y1gvv5g,2002.0,6,10,2011,Big Fat Liar,Jason Turns Marty Blue,tt0265298 2u8m1yeCoyM,2002.0,4,10,2011,Big Fat Liar,I Think I Wrote It,tt0265298 OP4zJ101EPY,2008.0,5,9,2011,Role Models,Danny Goes Medieval,tt0430922 GNWJFqW17yg,2002.0,1,10,2011,Big Fat Liar,Lying Through Your Teeth,tt0265298 HAF359uuWUo,2008.0,6,9,2011,Role Models,Not Sturdy Wings Material,tt0430922 ZbPoAOc_iKw,2002.0,3,10,2011,Big Fat Liar,Don't Call Him Urkel,tt0265298 A0WEpT1SKV0,1989.0,1,10,2011,Fletch Lives,Fletch Quits,tt0097366 iwfU4ei5gWE,2008.0,3,9,2011,Role Models,Sturdy Wings Training,tt0430922 w29PG-8Tywo,2008.0,2,9,2011,Role Models,Taste the Beast,tt0430922 j4yXEmQRq34,2000.0,1,10,2011,Erin Brockovich,On the Prowl for Papers,tt0195685 5Ay5GqJwHF8,1989.0,1,9,2011,Field of Dreams,"If You Build It, He Will Come",tt0097351 jlUPc1tu64s,2003.0,3,10,2011,Seabiscuit,Red's First Ride,tt0329575 U6fx_zJtL8I,2003.0,4,10,2011,Seabiscuit,Soothing,tt0329575 yJzn9MhJxRM,2003.0,2,10,2011,Seabiscuit,Similar Breeds,tt0329575 4xdqgzNNHn0,2010.0,3,-1,2011,MacGruber,Winging It,tt1470023 aMQysPMcE4M,2010.0,1,-1,2011,MacGruber,Vicki's Disguise,tt1470023 VHJ5pzTGtag,1998.0,9,10,2011,"Lock, Stock and Two Smoking Barrels",Eddie Loses Money Again,tt0120735 DJnKxIj_D6A,2009.0,7,-1,2011,Mother and Child,All She Wrote,tt1121977 EQCf1YAzPsg,2004.0,9,11,2011,Eternal Sunshine of the Spotless Mind,Clementine's Tape,tt0338013 3et9liRrywY,2004.0,4,11,2011,Eternal Sunshine of the Spotless Mind,Baby Joel,tt0338013 I_e8l4Lj8OE,1998.0,5,10,2011,"Lock, Stock and Two Smoking Barrels",Robbing the Thieves,tt0120735 OvRYeeFT7BA,1998.0,1,10,2011,"Lock, Stock and Two Smoking Barrels",Hatchet Harry's Rigged Game,tt0120735 05O77oX6bQE,1995.0,9,9,2011,Mallrats,Will You Marry Me?,tt0113749 PoBD69ANBUg,1998.0,8,10,2011,"Lock, Stock and Two Smoking Barrels",What the F*** Are You Doing Here?,tt0120735 RwQVsB6k24Q,2004.0,2,11,2011,Eternal Sunshine of the Spotless Mind,Erased From Her Memory,tt0338013 hXWDSeVeaAE,1998.0,9,10,2011,Patch Adams,Final Appeal,tt0129290 rwd5hlQnu0I,1976.0,10,10,2011,Car Wash,Duane Pulls a Gun,tt0074281 Pr9ruvxA3K4,1998.0,8,10,2011,Patch Adams,You Treat a Person,tt0129290 8h6r3S5zjtk,1976.0,6,10,2011,Car Wash,Just Like a Pimp,tt0074281 7vZy9ra8kdM,1944.0,1,9,2011,Double Indemnity,I Killed Him,tt0036775 1WRLqzGkzNw,1944.0,8,9,2011,Double Indemnity,"Goodbye, Baby",tt0036775 8nYPCDXHuPs,1944.0,7,9,2011,Double Indemnity,The End of the Line,tt0036775 XbTEusaf2nU,1976.0,5,10,2011,Car Wash,Daddy Rich Arrives,tt0074281 3nydBUSR08o,1996.0,8,10,2011,Bulletproof,Time to Roll,tt0115783 zcDoyBvCyF8,1976.0,4,10,2011,Car Wash,"Irwin Gets ""Washed""",tt0074281 Ye4fqNh_vbs,1976.0,3,10,2011,Car Wash,"Lloyd & ""The Fly""",tt0074281 zBErHC42Gzk,2009.0,7,-1,2011,Get Low,Maybe He Put His Soul Into It,tt1194263 aRgUxpmvZpc,2009.0,5,-1,2011,Get Low,Clothes Casket,tt1194263 8WfKSXftr60,1996.0,5,10,2011,Bulletproof,I'm Your God,tt0115783 784nv_NRf4k,2009.0,3,-1,2011,Mother and Child,What Do You Believe?,tt1121977 _zlqhZOE4yw,2009.0,2,-1,2011,Mother and Child,Working Late,tt1121977 GLfcxIq-zmY,1996.0,6,10,2011,Bulletproof,Please Take That Out of My Ass,tt0115783 eQ87hBFrS_I,1998.0,7,10,2011,Patch Adams,At Your Cervix,tt0129290 VjlGOec7RVU,1996.0,2,10,2011,Bulletproof,Have You Been Drinking?,tt0115783 hjuYfeA2prM,1944.0,4,9,2011,Double Indemnity,A Claims Man,tt0036775 byPJ22JDFjI,1998.0,5,10,2011,Patch Adams,The Children's Ward,tt0129290 LJq1auJq_gc,1944.0,3,9,2011,Double Indemnity,A Red Hot Poker,tt0036775 ZKdcYnlkhx8,1944.0,2,9,2011,Double Indemnity,"How Fast Was I Going, Officer?",tt0036775 jal6Pf2DFlg,1989.0,7,10,2011,The 'burbs,I'm Going Over the Fence,tt0096734 tSXp2wB6kXQ,1996.0,6,10,2011,Fear,David Kills Gary,tt0117381 a5BtDmdw708,1996.0,10,10,2011,Fear,Forever Hold Your Peace!,tt0117381 UI6mgCAcXzc,1996.0,9,10,2011,Fear,The Security Guard Is Shot,tt0117381 5qfoeuQFFHw,1996.0,3,10,2011,Fear,David Apologizes,tt0117381 bKLQBuSPVwQ,1998.0,3,10,2011,Patch Adams,Patch Earns His Nickname,tt0129290 tumI28B48wY,1996.0,2,10,2011,Fear,Wild Roller Coaster Ride,tt0117381 1KfyTORRMXk,1985.0,9,10,2011,Mask,Meeting Diana's Parents,tt0089560 ujBna-ZeAu4,2002.0,2,10,2011,Ali G Indahouse,Freestyling with Ricky,tt0284837 aFDFSGAIrxs,1985.0,10,10,2011,Mask,Rusty Remembers Rocky,tt0089560 Ig8UNiVUfc8,2009.0,1,-1,2011,Mother and Child,The Wrong Foot,tt1121977 Gor6z4YDPhU,2009.0,4,-1,2011,Micmacs,All Mysterious On Us,tt1149361 1sCRrXnBTZ8,2010.0,5,-1,2011,Death at a Funeral,Having a Seizure,tt1321509 o3aqMjrFf5k,2010.0,3,-1,2011,Death at a Funeral,The Coffin's Moving!,tt1321509 4snGt8OzUV0,1985.0,8,10,2011,Mask,Rocky & Diana,tt0089560 fc0uxTiUDrE,1985.0,2,10,2011,Mask,Rocky's Lionitis,tt0089560 OhOvnL8Q03c,2010.0,2,-1,2011,Death at a Funeral,Trippin',tt1321509 _2WBjBnwlUs,1985.0,3,10,2011,Mask,Rocky's Test Results,tt0089560 CzOH54GemVo,1999.0,10,11,2011,October Sky,He Isn't My Hero,tt0132477 C1kZTfHldfY,1985.0,1,10,2011,Mask,School Registration,tt0089560 bxgZWv4Db5I,2000.0,9,9,2011,Nutty Professor 2: The Klumps,Sherman Tricks Buddy,tt0144528 h1F9-NKqDDk,1999.0,7,11,2011,October Sky,I Want to Go Into Space,tt0132477 udHB3tftPz4,1999.0,6,11,2011,October Sky,Homer Proves His Innocence,tt0132477 cP_OM5VVcSo,1999.0,3,11,2011,October Sky,Test Launches,tt0132477 TUlYMYQD3ZE,1999.0,1,11,2011,October Sky,It's Headed for the Mine!,tt0132477 jFoUWFmM-NU,2000.0,2,9,2011,Nutty Professor 2: The Klumps,The Klumps Eat Out,tt0144528 c0RlK3VAmzg,2000.0,5,9,2011,Nutty Professor 2: The Klumps,A Magical Evening,tt0144528 i6OCtSqrOQ0,1986.0,6,9,2011,The Money Pit,I'm Right Here!,tt0091541 9CJ9EDtZ2p8,1986.0,4,9,2011,The Money Pit,Walter's Laugh,tt0091541 3LY5dV3xghY,1986.0,1,9,2011,The Money Pit,I'll Not Like You Anymore,tt0091541 9fwBPbt95vA,2000.0,1,9,2011,Nutty Professor 2: The Klumps,Buddy Love is Real,tt0144528 Gm1BZxc4tmk,2008.0,8,12,2011,Changeling,Sanford Identifies Murdered Kids,tt0824747 iB25eDhWImc,1996.0,10,12,2011,The Nutty Professor,Relations,tt0117218 pOPWdQO9bK4,2008.0,9,12,2011,Changeling,Forced Sedation,tt0824747 edX09NFZ3oc,2008.0,6,12,2011,Changeling,Committed to the Psych Ward,tt0824747 sxNHNxmgzJU,1998.0,9,10,2011,Meet Joe Black,Joe Says Goodbye Scene,tt0119643 cZP4yFO6l78,1996.0,11,12,2011,The Nutty Professor,Gluteus Minimus,tt0117218 al-tdoT3gL8,1996.0,7,12,2011,The Nutty Professor,I'm Thin!,tt0117218 FlxXhrDycHw,2008.0,2,12,2011,Changeling,Your Son Is Alive,tt0824747 Ae-mN5aD8Qg,1998.0,3,10,2011,Meet Joe Black,Am I Going to Die? Scene,tt0119643 K8JhJPro-1c,1998.0,8,10,2011,Meet Joe Black,Undressing Joe Black Scene,tt0119643 pHvNvYijtBU,2008.0,1,12,2011,Changeling,Reverend Briegleb's Sermon,tt0824747 DXief-vtjIs,1998.0,10,10,2011,Meet Joe Black,Bill's Birthday Speech Scene,tt0119643 YF-7cPk04OY,1998.0,6,10,2011,Meet Joe Black,Mystery Man Scene,tt0119643 G4RvOmNedls,1998.0,4,10,2011,Meet Joe Black,Bill Introduces Joe Scene,tt0119643 BwDlobymMk0,1998.0,8,10,2011,Fear and Loathing in Las Vegas,The Lonely Highway Patrolman,tt0120669 gJ_cx3AmCuI,2003.0,6,9,2011,2 Fast 2 Furious,Rat in a Bucket Scene,tt0322259 RL_3JEsg994,2003.0,4,9,2011,2 Fast 2 Furious,Snatching the Package Scene,tt0322259 LGnYM0wT0t4,2003.0,5,9,2011,2 Fast 2 Furious,Pink-Slip Race Scene,tt0322259 B52L95xRYFs,1996.0,4,12,2011,The Nutty Professor,Family Farts,tt0117218 bjAM2J_D4UY,2003.0,4,9,2011,Bruce Almighty,Bruce Meets God,tt0315327 qaBlaPsuHQw,2003.0,2,9,2011,2 Fast 2 Furious,Captured Scene,tt0322259 gP8_w1J5raY,1998.0,5,10,2011,Fear and Loathing in Las Vegas,"Getting ""The Fear""",tt0120669 uOmtVFQ3WF8,1998.0,3,10,2011,Fear and Loathing in Las Vegas,The Hotel on Acid,tt0120669 L98X2ESOWU0,2010.0,5,-1,2011,The Bounty Hunter,Golf Course Chase,tt1038919 jocnzvDLA60,2009.0,7,-1,2011,Repo Men,Everybody's Gotta be a Hero,tt1053424 ji8jpGMlBE8,2009.0,4,-1,2011,Green Zone,Lawrie Dayne,tt0947810 9oTVECouTO4,1994.0,1,10,2011,Reality Bites,A Cup of Joe,tt0110950 LsaLeOKK-EA,1996.0,5,12,2011,The Nutty Professor,Heavy Kissing,tt0117218 BmylCJhL-5Q,1998.0,2,10,2011,Fear and Loathing in Las Vegas,The American Dream in Action,tt0120669 xNHt_KWKMbE,1994.0,7,10,2011,Reality Bites,Do You Ever Wish You Were a Lesbian?,tt0110950 AgB4n-1-_BY,1994.0,9,10,2011,Reality Bites,Only Love Can Break Your Heart,tt0110950 t--mSXDeETc,2004.0,1,8,2011,Shaun of the Dead,Roommate Troubles,tt0365748 b_BA368IluE,1994.0,2,10,2011,Reality Bites,A Den of Slack,tt0110950 YVOKgKYJB2E,1994.0,4,10,2011,Reality Bites,Non-Practicing Virgin,tt0110950 2W5dr790cKo,2001.0,6,11,2011,The Mummy Returns,Blimp Ride,tt0209163 CgU-5WQGClY,1958.0,6,11,2011,Vertigo,Don't Let Me Go,tt0052357 qLvGnro4Cgw,1931.0,7,8,2011,Frankenstein,The Torch-Wielding Mob,tt0021884 GbZMFMSKQ2s,1931.0,5,8,2011,Frankenstein,The Monster Subdued,tt0021884 A4Ntv7DJURM,1931.0,1,8,2011,Frankenstein,Fritz Steals the Brain,tt0021884 zPeqoWzZE5I,2009.0,5,-1,2011,Repo Men,Enforcement of Rules,tt1053424 96sUPxlIfx4,1931.0,4,8,2011,Frankenstein,The Monster Meets Fire,tt0021884 iCfjoSbWHZM,2009.0,4,-1,2011,Repo Men,Working on Commission,tt1053424 HXRuqpUG9RI,2009.0,1,-1,2011,Repo Men,"No Need For Violence, Miss",tt1053424 J1668qPavto,2009.0,1,-1,2011,Green Zone,Intelligence Problem,tt0947810 rSWBuZws30g,1979.0,10,10,2011,The Jerk,That's All I Need!,tt0079367 0XOzPjsD_ec,2001.0,9,11,2011,American Pie 2,Super Glue,tt0252866 kBJDz4ylQO0,1979.0,9,10,2011,The Jerk,Navin Beats the Racists,tt0079367 Tcwz8-EfFYE,1979.0,7,10,2011,The Jerk,He Hates These Cans!,tt0079367 3ohBUYQJflU,1979.0,2,10,2011,The Jerk,The Lord Loves a Workin' Man,tt0079367 ahuPW6_t-z0,1979.0,5,10,2011,The Jerk,Navin's in Print!,tt0079367 Slf_2J57SyY,2009.0,5,10,2011,Couples Retreat,Let It All Hang Out,tt1078940 lEPfDu4pVqg,2011.0,8,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,POM Wonderful Pitch,tt1743720 Tb6dbNhFk7I,2010.0,3,-1,2011,Of Gods and Men,Stubbornness,tt1588337 FSSlOmgUf0Q,2011.0,3,-1,2011,Jumping the Broom,Life Will Test You,tt1640484 hG6DmzzU8m0,2011.0,7,-1,2011,Your Highness,Things Get Nasty,tt1240982 ucikAqewZL4,2011.0,2,-1,2011,Battle: Los Angeles,We Can Not Lose Los Angeles,tt1217613 Xlj9wg9q6f8,1988.0,1,9,2011,Midnight Run,An Alonzo Mosely Badge,tt0095631 o6TYEHyv00Y,2010.0,9,-1,2011,The Social Network,Putting It Online,tt1285016 T3Xlw651IoE,1988.0,5,9,2011,Midnight Run,You're a Pilot?,tt0095631 W3GsHtZu0Bw,1988.0,3,9,2011,Midnight Run,Living in Denial,tt0095631 Ppj45Ai524s,1988.0,6,9,2011,Midnight Run,Catching a Freight Train,tt0095631 rbsrjcXynlg,2010.0,1,-1,2011,The Wolfman,Sir John Defends Lawrence,tt0780653 lfJ7WzyoZH8,2010.0,5,-1,2011,The Wolfman,Abberline Pursues,tt0780653 0SwgAb1effg,2009.0,6,-1,2011,An Education,Action Is Character,tt1174732 t4_obOCNYls,2010.0,2,-1,2011,Dear John,You Don't Scare Me,tt0989757 Qxa4zjRostg,2010.0,3,-1,2011,Dear John,I Promise,tt0989757 C_dc5WzLq_c,2009.0,2,-1,2011,An Education,Cello Ride,tt1174732 xUp1My_eHn4,2010.0,4,-1,2011,The Tourist,Because I Kissed You,tt1243957 V4qu6AJNBQ8,2010.0,1,-1,2011,The Tourist,Burn This Letter,tt1243957 JhSRGLe18OI,2010.0,2,-1,2011,The Tourist,I'm Elise,tt1243957 G4_3pzwFYKw,2010.0,6,-1,2011,Kenny Chesney: Summer in 3D,Living in Fast Forward,tt1545098 riicefV6xiI,2010.0,4,-1,2011,Kenny Chesney: Summer in 3D,There Goes My Life,tt1545098 aF4En8CIaNk,2010.0,1,-1,2011,Kenny Chesney: Summer in 3D,Live Those Songs,tt1545098 _WjIlCZJtLk,2010.0,2,-1,2011,Kenny Chesney: Summer in 3D,These Songs That Are Our Lives,tt1545098 z6aek_pwEGk,2010.0,7,-1,2011,Barney's Version,Paternal Wisdom,tt1423894 ECoL3IaXgRI,2010.0,6,-1,2011,Barney's Version,Irretrievably in Love,tt1423894 rP0QURktz3Y,2010.0,9,-1,2011,Barney's Version,Have I Ever Given Up?,tt1423894 V3Av8JD__sQ,2010.0,7,-1,2011,Skyline,Jet Crash,tt1564585 IsskB0D2GC0,2009.0,3,-1,2011,An Education,Charming David,tt1174732 Pz0RfOVm-So,2009.0,4,-1,2011,An Education,To Go to Chelsea,tt1174732 uhpknFQJ7G0,2009.0,1,-1,2011,Julie & Julia,Happy Valentine's Day,tt1135503 Eg8MVTZ12pE,2009.0,3,-1,2011,Julie & Julia,An Idea for a Blog,tt1135503 YsrQUrJ7AdM,2009.0,5,-1,2011,Julie & Julia,Julia Really Likes to Eat,tt1135503 TBiqsgxbxLA,2010.0,2,-1,2011,Edge of Darkness,Why Are You Here?,tt1226273 m03MTJCH0Ns,2010.0,1,-1,2011,Another Year,A Man Who Can Cook,tt1431181 w0AliJi4npk,2010.0,8,-1,2011,Burlesque,Express,tt1126591 athtiym8OYE,2010.0,7,-1,2011,Burlesque,Second Best View in L.A.,tt1126591 coeU38xEhVU,2004.0,6,10,2011,In Good Company,Can I Still Dunk?,tt0385267 PWTptbb0vB4,2010.0,9,-1,2011,Burlesque,He Bats for the Other Team,tt1126591 K9T33H_h0Yk,2010.0,3,-1,2011,Burlesque,From Here To Up There,tt1126591 xeSDsBS_cvo,2010.0,2,-1,2011,Another Year,Perfect in Every Way,tt1431181 BvWSMD2FIpU,2010.0,2,-1,2011,Burlesque,Welcome to,tt1126591 tM3Zg8m373Y,2010.0,1,-1,2011,Barney's Version,A True Blue Shiksa,tt1423894 oqKAuNefcSM,2010.0,5,-1,2011,Barney's Version,"We Just Met, At Your Wedding",tt1423894 8eu9yZ6pWjg,2010.0,5,-1,2011,The Social Network,I Founded Napster,tt1285016 P2A2nKAbQqI,2010.0,4,-1,2011,A Nightmare on Elm Street,We're Having the Same Dream,tt1179056 69ux9TSbEKk,2010.0,2,-1,2011,Legion,They're Here,tt1038686 KPwY1uEFP-c,2010.0,1,-1,2011,Legion,Clouds Don't Buzz,tt1038686 NYFI1-FTw94,2005.0,3,3,2011,Monster-in-Law,Slap Fight,tt0369735 ndItN7hhtII,2005.0,1,3,2011,Monster-in-Law,Popping the Question,tt0369735 PolzQMFju_s,2009.0,7,-1,2011,Inglourious Basterds,Shosanna and Fredrick at the Cafe,tt0361748 MHpyl6uVPrw,2005.0,2,3,2011,Monster-in-Law,In The Nuthouse,tt0369735 y9jS6a7rIVQ,2010.0,7,-1,2011,Leap Year,Kiss the Girl,tt1216492 YCIqymquy54,2010.0,6,-1,2011,Leap Year,Coin Toss Deception,tt1216492 dAOw8dXcMpw,2009.0,3,-1,2011,The Hangover,We Didn't Steal Anything,tt1119646 OkIYOU1ObYU,2009.0,1,-1,2011,The Hangover,Stolen Police Car,tt1119646 9ZY9i9-hoQM,2010.0,3,-1,2011,Leap Year,I'll Take You,tt1216492 1QjC0jXb-9k,2010.0,2,-1,2011,A Nightmare on Elm Street,Won't Happen Again,tt1179056 vjvHNXSWvPs,2009.0,5,-1,2011,The Hangover,My Wolf Pack,tt1119646 7d7OeDwkfTg,2010.0,2,-1,2011,The Illusionist,The Fat Lady's Singing,tt0775489 VvfRXzxBe68,2010.0,2,-1,2011,My Soul to Take,A Call for Help,tt0872230 F44mBbuqA2c,2010.0,4,-1,2011,The Debt,War Secrets,tt1226753 4xh-Hz14AA4,2010.0,6,-1,2011,The Illusionist,Making a Work of Art,tt0775489 j32LbrHGak0,2010.0,2,-1,2011,The Debt,Meeting Rachel,tt1226753 7Xgj1Csnr_w,2009.0,6,-1,2011,Inglourious Basterds,If a Rat Hides,tt0361748 FboJePoCAb8,2000.0,12,12,2011,Billy Elliot,Billy Says Goodbye,tt0249462 dnThWk9ib1c,2009.0,5,-1,2011,Armored,Trying to Fool the Cops,tt0913354 oZ868onS6YY,2010.0,5,-1,2011,The Illusionist,First Time in Heels,tt0775489 U0tTT_87Hh8,2000.0,10,12,2011,Billy Elliot,What Dancing Feels Like,tt0249462 M37QsnD6nZ4,2010.0,1,-1,2011,Made in Dagenham,The Girls Aren't Taking These Union Terms,tt1371155 r0cRrtcU5X0,2010.0,7,-1,2011,Made in Dagenham,"We Ain't Politicians, We're Working Women",tt1371155 UJWni94vAAU,2010.0,6,-1,2011,Made in Dagenham,A Fiery Redhead,tt1371155 BbjSOt7NxIY,2010.0,5,-1,2011,Made in Dagenham,Rights Not Privileges,tt1371155 KMD8yO3iM-E,2010.0,3,-1,2011,Made in Dagenham,Progressive Thoughts,tt1371155 wq26A_QK4So,2010.0,3,-1,2011,It's Kind of a Funny Story,Bob Dylan's Wisdom,tt0804497 bXt-KqvrSh0,2010.0,4,-1,2011,The Social Network,Marylin Delpy,tt1285016 nHCEOK9n5z8,2010.0,3,-1,2011,The Social Network,The Winklevoss Twins,tt1285016 5hXXFQLDsoA,2010.0,1,-1,2011,It's Kind of a Funny Story,Are You a Doctor?,tt0804497 5msVl3oZl4U,2010.0,4,-1,2011,Inside Job,Financial Stability in Iceland,tt1645089 xy8a0GKO_Ek,2010.0,6,-1,2011,Inside Job,Sub-Prime Mortgages,tt1645089 xxbFPdBBjc0,2010.0,3,-1,2011,Inside Job,Lehman Brothers Goes Bankrupt,tt1645089 vdbQpDHAq5U,2010.0,2,-1,2011,Inside Job,Going Public on Wall Street,tt1645089 MPOPd2RNLko,2009.0,1,-1,2011,Love Happens,Shot Down,tt0899106 mSa_kUf6cxs,2009.0,1,-1,2011,Cloudy with a Chance of Meatballs,Cal's Birthday,tt0844471 qyLJCNyRov0,2000.0,1,12,2011,Billy Elliot,A Disgrace to the Gloves,tt0249462 vFAE-ZIntVI,1992.0,8,10,2011,Candyman,Summoning The,tt0103919 54A7W6eEBnw,2009.0,4,-1,2011,District 9,An Alien Spray,tt1136608 Xon0bfX3L1g,2010.0,8,-1,2011,Tamara Drewe,You Can Have Anyone,tt1486190 QO9r8aO07YE,2010.0,1,-1,2011,Inside Job,Investment Grade Ratings,tt1645089 aRcxYPkFjh4,2010.0,4,-1,2011,Tamara Drewe,That's,tt1486190 bJgem6Xc3TM,2010.0,3,-1,2011,Tamara Drewe,You're Just a Sex Object,tt1486190 F2hiFbuQ-Qw,2002.0,10,10,2011,8 Mile,Rabbit Battles Papa Doc Scene,tt0298203 Z4vn4UWaeZU,2010.0,3,-1,2011,Catfish,Instantaneous Relationship,tt1584016 X1u5iUcD0Ag,2010.0,2,-1,2011,Devil,Locked Elevator Doors,tt1588170 Po_w8OmTfoY,2010.0,1,-1,2011,Devil,I'm Not Your Bro,tt1588170 1q5Us5iVWNI,2010.0,3,-1,2011,Devil,The Lights Go Out,tt1588170 LiHKY-bG36E,2010.0,1,-1,2011,Catfish,A Drawing of Nev,tt1584016 nkVK4JHRQfk,2010.0,4,-1,2011,Resident Evil: Afterlife,Double Trouble.,tt1220634 ByNjiy8-j8g,2002.0,8,10,2011,8 Mile,Rabbit Is Betrayed Scene,tt0298203 sxI6RnTFj3U,2010.0,1,-1,2011,The American,Hunters Travel in Pairs,tt1440728 5CdiJbnuvYg,2010.0,2,-1,2011,Resident Evil: Afterlife,The Undead Go Over the Edge,tt1220634 NYTS7NBDKKU,2010.0,2,-1,2011,Easy A,A Pocketful of Sunshine,tt1282140 0ShWGyC408I,2002.0,7,10,2011,8 Mile,Greg's Outta Here Scene,tt0298203 LUV0AjnjaT4,2010.0,8,-1,2011,Easy A,A Woodchuck Mascot,tt1282140 71qm5ZOlpAw,2010.0,5,-1,2011,Easy A,Sex with Brandon,tt1282140 CEtLeoXjttY,2010.0,3,-1,2011,Easy A,A Higher Power...Tom Cruise?,tt1282140 VC0uIqac2A4,2010.0,2,-1,2011,Takers,That's The Past,tt1135084 ETC82KEplac,2000.0,5,10,2011,Meet the Parents,Kevin the Ex,tt0212338 DQYjgqnTmJ8,1994.0,8,10,2011,The Hudsucker Proxy,The Hula Hoop Catches On,tt0110074 fpiyrd28vfA,1994.0,5,10,2011,The Hudsucker Proxy,A Muncie Girl,tt0110074 RF0YXIambdI,1989.0,5,12,2011,Parenthood,She's a Weird Child,tt0098067 vt0hblIsHiY,2002.0,5,10,2011,8 Mile,Cheddar Pulls a Gun Scene,tt0298203 hLCjV1eOAoA,1994.0,6,10,2011,The Hudsucker Proxy,Meeting the Shareholders,tt0110074 8bY4qPadkSo,2002.0,4,10,2011,8 Mile,We're Being Evicted Scene,tt0298203 NBQAXiZ7KG4,2010.0,1,-1,2011,Eat Pray Love,The Palm Reader,tt0879870 aYKt-7msPic,2010.0,4,-1,2011,Nanny McPhee Returns,A Baby Elephant,tt1415283 yGgOimJaqT4,2010.0,4,-1,2011,Eat Pray Love,James Taylor,tt0879870 JPasKum1U9Q,2010.0,1,-1,2011,Nanny McPhee Returns,Nanny McPhee Arrives,tt1415283 bCaHwP04KK0,2010.0,7,-1,2011,Charlie St. Cloud,Take a Chance,tt1438254 VUvB-jPvVuw,2010.0,5,-1,2011,Charlie St. Cloud,Kissing Tess,tt1438254 U2p88URI8lg,2010.0,2,-1,2011,Charlie St. Cloud,The Deal,tt1438254 Uu31b0VHCc4,2010.0,1,-1,2011,Charlie St. Cloud,How to Hold a Baseball,tt1438254 5PKVmzdQGwg,2010.0,5,-1,2011,The Other Guys,Rape Whistle,tt1386588 mK8ad1nYFQA,2010.0,3,-1,2011,Animal Kingdom,The Trump Hand,tt1313092 5sFu4iEF8dk,2010.0,1,-1,2011,Animal Kingdom,Let Him Know Who's King,tt1313092 WzTIhm6YMQk,2010.0,2,-1,2011,The Other Guys,Lion vs. Tuna,tt1386588 7GIxoAbxvQk,2010.0,1,-1,2011,The Other Guys,Top Cops,tt1386588 LlRHSFVV8cY,2010.0,3,-1,2011,Salt,Arrest of a Spy,tt0944835 NG5ijPnfYV8,2010.0,2,-1,2011,Salt,Truck Jump,tt0944835 P1_QqWRpUQg,2010.0,6,-1,2011,The Kids Are All Right,Fecund,tt0842926 HPwD7sgVtkA,2010.0,5,-1,2011,The Kids Are All Right,Drop Out,tt0842926 zU3Hs36FIrw,1994.0,3,10,2011,The Hudsucker Proxy,Mail Room Orientation,tt0110074 _6dtasEqpLM,1994.0,2,10,2011,The Hudsucker Proxy,Waring Hudsucker Quits,tt0110074 xxFSUgehWbk,2010.0,3,-1,2011,The Kids Are All Right,Team Sports,tt0842926 zrR9re9NV_s,2010.0,3,-1,2011,Grown Ups,Wasted,tt1375670 LRPEYUlE8rU,2002.0,2,10,2011,8 Mile,Wink's Big Deal Scene,tt0298203 IG4FAGxZvtU,2010.0,4,-1,2011,Grown Ups,Skipping Rocks,tt1375670 Rf9V-yzCzR4,1992.0,8,10,2011,Army of Darkness,The Battle Car,tt0106308 NNzMjrJQKsc,1997.0,12,12,2011,Bean,'s Analysis,tt0118689 7_hS3YLPHvI,2003.0,4,9,2011,Grand Theft Parsons,Caught & Busted,tt0338075 lJ9V5BgkzKU,2003.0,7,9,2011,Grand Theft Parsons,A Junkie's Confession,tt0338075 GRG-2ocGGnw,2003.0,9,9,2011,Grand Theft Parsons,A Drink With a Ghost,tt0338075 Rdb-5NHyGOA,2010.0,1,-1,2011,The Karate Kid,Chop Sticks or Fly Swatter,tt1155076 7rlvmkQy4hQ,2010.0,2,-1,2011,The Karate Kid,Needs More Focus,tt1155076 zyJgcHwLP3w,2010.0,10,11,2011,Get Him to the Greek,The Longest Hallway of All-Time,tt1226229 lAklD2ULzh0,2009.0,10,-1,2011,Mother and Child,A Generous Person,tt1121977 qDc-OGF_NJ0,2010.0,5,-1,2011,MacGruber,I Like Holes,tt1470023 WDiwa8H0DTc,2010.0,4,-1,2011,MacGruber,Party Crasher,tt1470023 T4Sk7RsIQd0,2008.0,1,11,2011,Forgetting Sarah Marshall,Peter Meets Aldous,tt0800039 5MBUVKzIyPY,2010.0,2,-1,2011,MacGruber,The Incredi-Mop,tt1470023 0wFkRRILnPo,1930.0,8,10,2011,All Quiet on the Western Front,You Still Think I'm a Child,tt0020629 yb_-UHyPC8c,2009.0,8,-1,2011,Mother and Child,A New Therapist,tt1121977 yLrN6wSSGqk,1997.0,2,12,2011,Bean,Air Sickness,tt0118689 _SQr8I3lcW8,1930.0,4,10,2011,All Quiet on the Western Front,What Good Are They to You?,tt0020629 4MG5Dy0gFFY,2009.0,9,-1,2011,Mother and Child,Harsh Date,tt1121977 -v-KiIuYkCo,2009.0,6,-1,2011,Get Low,Mattie Visits Felix,tt1194263 nHKJaG3sXMY,2009.0,2,-1,2011,Get Low,Know You're Good,tt1194263 ZgngBG5JX_M,2009.0,3,-1,2011,Get Low,A Funeral Party,tt1194263 NVR6-HnKtM8,2009.0,1,-1,2011,Get Low,People Won't Die,tt1194263 f4ojzsvQhh0,2009.0,4,-1,2011,Mother and Child,Making Friends,tt1121977 fJBrWMxc_P4,2009.0,5,-1,2011,Mother and Child,Scary Feelings,tt1121977 8WqRrq_lM14,2009.0,6,-1,2011,Mother and Child,Just the Two of Us,tt1121977 OseaEf8Qy8Y,2002.0,8,10,2011,Big Fat Liar,Helicopter Jump,tt0265298 RH0zWG3Crzs,2008.0,7,9,2011,Role Models,Battle Royale,tt0430922 p84uEGZqFlk,2008.0,9,9,2011,Role Models,Augie Kills the King,tt0430922 LJY_pChREVY,2002.0,5,10,2011,Big Fat Liar,Crank Call,tt0265298 -UAElWXbk3I,2002.0,2,10,2011,Big Fat Liar,The Truth Is Overrated,tt0265298 8oi8aVwb_Tg,2010.0,4,-1,2011,Death at a Funeral,Oh Daddy!,tt1321509 yywHSkFkfU0,2010.0,6,-1,2011,Death at a Funeral,A Mistake,tt1321509 WJeOTphX47E,2010.0,1,-1,2011,Death at a Funeral,Not My Father,tt1321509 32JbDv50hFc,2009.0,5,-1,2011,Micmacs,Marilyn Monroe Molar,tt1149361 obDVqhso9l4,2009.0,3,-1,2011,Micmacs,The Veggie Drawer,tt1149361 IPEX_RXRKgw,2009.0,2,-1,2011,Micmacs,That's My Hat,tt1149361 6QoON2Vq78k,2009.0,8,-1,2011,Inglourious Basterds,The Basterds,tt0361748 oqAu5fVDwAM,2010.0,3,-1,2011,The Bounty Hunter,In the Trunk,tt1038919 7nO7han5KIg,2010.0,2,-1,2011,The Bounty Hunter,Off to the Races,tt1038919 368Nrtkmrls,1930.0,3,10,2011,All Quiet on the Western Front,Dish It Out!,tt0020629 mKgy5W3S6nw,2000.0,10,10,2011,Erin Brockovich,Erin's Big Bonus,tt0195685 D-5P2iMf_ZA,2000.0,2,10,2011,Erin Brockovich,You're Someone to Me,tt0195685 rZ-_UsEBT5E,2009.0,6,-1,2011,Repo Men,Lips...Are All Me,tt1053424 99odqGVYe4g,1930.0,1,10,2011,All Quiet on the Western Front,Before the Storm,tt0020629 OSca1EnBNJA,2009.0,2,-1,2011,Repo Men,A Slick Salesman,tt1053424 UHqUN3um9Bc,2009.0,3,-1,2011,Repo Men,Repossessed Livers,tt1053424 HvJTquFs5Zk,2009.0,5,-1,2011,Green Zone,Where's Miller?,tt0947810 u3M_YKjLOkI,2010.0,1,-1,2011,Greenberg,Impressed by You,tt1234654 qO_4Up5Q5ns,2009.0,3,-1,2011,Green Zone,They Matter to Me,tt0947810 14HerspIb_U,1998.0,7,10,2011,"Lock, Stock and Two Smoking Barrels",Gangster Blood Bath,tt0120735 kQQfoIy7SNI,2010.0,4,-1,2011,The Wolfman,Abberline Comes for Lawrence,tt0780653 ZbKU3_H3FVw,1995.0,1,9,2011,Mallrats,A Three Dimensional Sailboat,tt0113749 B_4YNm9mMvo,2010.0,6,-1,2011,The Wolfman,Gwen Asks Lawrence To Stay,tt0780653 u3UyGrnv1-A,1998.0,4,10,2011,"Lock, Stock and Two Smoking Barrels",Hitting the Weed Connect,tt0120735 PGqBHvtmtgE,1998.0,10,10,2011,"Lock, Stock and Two Smoking Barrels",The Money Comes Back,tt0120735 Dl4hTIp8QbM,2010.0,3,-1,2011,The Wolfman,Lawrence Transforms,tt0780653 RK27DwSEetI,2010.0,1,-1,2011,Dear John,He Loves You,tt0989757 bQqcnMHjxvQ,2009.0,5,-1,2011,An Education,Art Appreciation,tt1174732 mudt7nvWwo4,2010.0,4,-1,2011,Dear John,Write Me,tt0989757 0GiMAf9q3hQ,2009.0,7,-1,2011,An Education,This Is the One,tt1174732 MCwQ4tdtev4,2009.0,1,-1,2011,An Education,A Rebel,tt1174732 DUhgY4ohhQA,2009.0,4,-1,2011,Julie & Julia,Watching Julia,tt1135503 aURe7hHL-Dw,2009.0,2,-1,2011,Julie & Julia,Another Meltdown,tt1135503 G2UTjomYxkc,2003.0,6,10,2011,Lost in Translation,"""Midnight Velocity"" Press Conference",tt0335266 lpOdAHwRnXY,2003.0,10,10,2011,Lost in Translation,A Secret Goodbye,tt0335266 UpLg7Ma-c4g,1976.0,8,10,2011,Car Wash,"Hippo & the Fly Stop the ""Mad Bomber""",tt0074281 4HWP1l_KtTc,1998.0,2,10,2011,"Lock, Stock and Two Smoking Barrels",Rory's Not to Be Underestimated,tt0120735 dgJKcCZkXxY,2010.0,4,-1,2011,Legion,It's Just One Baby,tt1038686 kx2FhY_akDY,1998.0,10,10,2011,Patch Adams,Revealing Graduation,tt0129290 iXfhOj2PobA,1996.0,7,10,2011,Bulletproof,Charlie Knows the Woods,tt0115783 OHAVcgjGDqM,1976.0,9,10,2011,Car Wash,When Kenny Met Marsha,tt0074281 eNK7N3AwVFQ,2003.0,8,10,2011,Lost in Translation,Does It Get Easier?,tt0335266 jj6ECLiWbxo,2010.0,3,-1,2011,Legion,Extermination,tt1038686 JxL2yg_bRnQ,2010.0,4,-1,2011,Leap Year,He Got You a Suitcase?,tt1216492 FHmPBAJK4CY,2010.0,2,-1,2011,Leap Year,A Flight for Leap Day,tt1216492 kPLNO4WfFJw,2003.0,9,10,2011,Lost in Translation,The Japanese Johnny Carson,tt0335266 8dhvm-ph88E,2010.0,1,-1,2011,Leap Year,A Gift at Dinner,tt1216492 ezRPVES1oQs,2009.0,5,-1,2011,Inglourious Basterds,We're a Big Fan of Your Work,tt0361748 XmYC9RAMVeo,2009.0,2,-1,2011,Inglourious Basterds,Business is A-boomin',tt0361748 vGvDCmuDKKE,2003.0,7,10,2011,Lost in Translation,Bob and Charlotte Meet,tt0335266 qhAYzFv4HYc,2009.0,4,-1,2011,Inglourious Basterds,A Horse of a Different Color,tt0361748 i86FbeyKK1U,2003.0,5,10,2011,Lost in Translation,Ditzy Actress,tt0335266 _xNB1WCQ5NA,2009.0,3,-1,2011,Armored,How Do We Get Him Out?,tt0913354 4gjiQwh1p6M,2003.0,3,10,2011,Lost in Translation,The Rat Pack Photo Shoot,tt0335266 uj8ftsuP8T4,2009.0,2,-1,2011,Armored,Car Chase,tt0913354 4J_8tpDzfAk,2009.0,1,-1,2011,Armored,Bomb!,tt0913354 FiQnH450hPM,2003.0,1,10,2011,Lost in Translation,Suntory Time!,tt0335266 wixLlPFJgyQ,2003.0,4,10,2011,Lost in Translation,Bad Exercise,tt0335266 lPQ6VQzuyxU,2003.0,2,10,2011,Lost in Translation,Lip My Stockings!,tt0335266 Lw0Nn1xSMHk,1976.0,7,10,2011,Car Wash,Lindy Disses Duane,tt0074281 Obey6WggwjM,1996.0,4,10,2011,Bulletproof,Crash Landing,tt0115783 ZVuhyX3w4Yg,1996.0,10,10,2011,Bulletproof,I'm Gonna F*** You Up,tt0115783 fImqZCIebuw,1996.0,9,10,2011,Bulletproof,Right in the F***in' Eyeball,tt0115783 p0-xbD-mRLs,1996.0,3,10,2011,Bulletproof,I Will Shoot You If You Chew Loud,tt0115783 5RbN0rjWBAg,2009.0,4,-1,2011,Planet 51,Not So Scary...,tt0762125 ujX0y3zcvP8,2009.0,4,-1,2011,Love Happens,Struttin' Back,tt0899106 uMH_Ajdp3E0,2009.0,3,-1,2011,Love Happens,Burke Is Rusty,tt0899106 fLvEcBoOpnQ,2009.0,4,-1,2011,Cloudy with a Chance of Meatballs,Spaghetti Twister,tt0844471 bbJEqSj7Wkk,2009.0,2,-1,2011,Cloudy with a Chance of Meatballs,Raining Hamburgers,tt0844471 L24hGLbmNrw,2009.0,8,10,2011,Land of the Lost,Prehistoric Mosquito,tt0457400 HigxGvmHEdQ,1995.0,10,10,2011,12 Monkeys,Zoo Animals Run Free,tt0114746 C7Rmtxf-NVE,1995.0,8,10,2011,12 Monkeys,World War I,tt0114746 q74RKOmIjC8,1995.0,5,10,2011,12 Monkeys,Explaining to the Doctors,tt0114746 G0yU-YJ6sjY,1998.0,1,10,2011,Patch Adams,He At Least Listened,tt0129290 0wC8Ab5AZeE,1996.0,4,10,2011,Fear,Practically Family,tt0117381 Sk9mR3zjrkk,1998.0,2,10,2011,Patch Adams,Group Therapy,tt0129290 9l_U2xXb9VI,1995.0,3,10,2011,12 Monkeys,Plague of Madness,tt0114746 e4yCxKv-2qw,1995.0,2,10,2011,12 Monkeys,Cole Meets Kathryn,tt0114746 MKl8s0EO5T4,1998.0,4,10,2011,Patch Adams,I Want to Help People,tt0129290 CDywMUdVPqk,1999.0,9,11,2011,Being John Malkovich,Dance of Despair and Disillusionment,tt0120601 oMx6C31dCeo,1999.0,4,11,2011,Being John Malkovich,Craig Wins a Date With Maxine,tt0120601 quJX9XLQe78,2004.0,2,10,2011,In Good Company,You're My New Boss,tt0385267 meSIVfOyerg,1999.0,6,11,2011,Being John Malkovich,Malkovich Gets Paranoid,tt0120601 1itYlP2GpI8,1999.0,11,11,2011,Being John Malkovich,Craig's Escape From Malkovich,tt0120601 TpGPSRGrL3s,1995.0,1,10,2011,12 Monkeys,The Scientists' Offer,tt0114746 Q6Fuxkinhug,1999.0,8,11,2011,Being John Malkovich,Malkovich Inside Malkovich,tt0120601 T2Y7oo3iB40,1999.0,1,11,2011,Being John Malkovich,Welcome to the 7 1/2 Floor,tt0120601 HQYiGnCpZa8,2009.0,1,-1,2011,A Perfect Getaway,Maybe Next Time,tt0971209 6_nHubnKxqg,1990.0,4,10,2011,Cry-Baby,Picking Up Allison,tt0099329 x_75yMOHMiw,1990.0,1,10,2011,Cry-Baby,"Squares, Drapes and Scrapes",tt0099329 1TNL7KlEI8g,2009.0,3,-1,2011,District 9,Using the Weapon,tt1136608 XDXuWwNXAZM,2009.0,4,-1,2011,A Perfect Getaway,The Gruesome Twosome,tt0971209 iotRit7KMDc,1990.0,3,10,2011,Cry-Baby,'s New Motorcycle,tt0099329 9QWRxT9oHYI,2009.0,5,-1,2011,A Perfect Getaway,Get Out of Here,tt0971209 XMrWXjOuv0g,1990.0,9,10,2011,Cry-Baby,Doin' Time for Bein' Young,tt0099329 zWkNT5A3wIk,1997.0,3,10,2011,Dante's Peak,Please Stay Calm,tt0118928 jn2weAEOp4Q,1997.0,4,10,2011,Dante's Peak,Getting Out of Town,tt0118928 DsYP0ql5mzM,1985.0,5,10,2011,Mask,The Story of Troy,tt0089560 IjMTiKtwyKk,1999.0,9,11,2011,October Sky,First Prize,tt0132477 i9NIwHKBqy0,1996.0,6,12,2011,The Nutty Professor,He's Gonna Blow!,tt0117218 ynGvGgy6K2Q,1999.0,4,11,2011,October Sky,Success!,tt0132477 d6HReoQl6Mo,1958.0,7,11,2011,Vertigo,Visiting the Past,tt0052357 R-aJ-2y5ICo,2010.0,1,-1,2011,Scott Pilgrim vs. the World,Hey!,tt0446029 e62uLLsvUzI,1991.0,4,10,2011,Fried Green Tomatoes,Ruth Leaves Frank,tt0101921 3rYbV-Q-VFo,2010.0,1,-1,2011,Cirque du Freak,Getting Tickets,tt0450405 yedsblplSMg,1991.0,5,10,2011,Fried Green Tomatoes,Food Fight,tt0101921 ypvrfx32T0s,2010.0,5,-1,2011,Cirque du Freak,What Did I Say?,tt0450405 QFOHhusNwtw,2010.0,2,-1,2011,Cirque du Freak,Being a Vampire Is Deeply Depressing,tt0450405 6oyxLFD2IIw,1977.0,10,10,2011,Slap Shot,Braden's Striptease,tt0076723 _XbL7lG0Su8,1977.0,1,10,2011,Slap Shot,The Finer Points of Hockey,tt0076723 LxnLNUq0abk,2010.0,7,-1,2011,Cirque du Freak,Battle in the Theater,tt0450405 ADMAw7UKLsg,1991.0,2,10,2011,Fried Green Tomatoes,The Spark Back in Marriage,tt0101921 jmgV3OFn0aE,2000.0,4,12,2011,Billy Elliot,Not for Lads,tt0249462 Q7wHV0r256A,2000.0,9,12,2011,Billy Elliot,Royal Ballet Audition,tt0249462 CH8HV5gXQB4,2000.0,7,12,2011,Billy Elliot,Dancing for Dad,tt0249462 69RNNex-sig,2000.0,3,12,2011,Billy Elliot,Pirouette Practice,tt0249462 i0p2X2rQ6Ag,2000.0,2,12,2011,Billy Elliot,Why Don't You Join In?,tt0249462 VcV-ZLbd-pk,1973.0,3,8,2011,High Plains Drifter,I'm the Sheriff and the Mayor,tt0068699 TLZClsaDEw0,2000.0,8,12,2011,Billy Elliot,Give the Boy a Chance!,tt0249462 9EV3DKPo-4U,1998.0,1,10,2011,Meet Joe Black,Lightning Could Strike Scene,tt0119643 BS8zi7Dg8TM,1996.0,3,12,2011,The Nutty Professor,Klump Family Dinner,tt0117218 En1SvG9tOSg,1977.0,4,10,2011,Slap Shot,The Hansons Are Pumped,tt0076723 2fc36Hc2n2s,1973.0,1,8,2011,High Plains Drifter,A Shave and a Shootout,tt0068699 tCb_6mO6CmE,2003.0,1,9,2011,2 Fast 2 Furious,Bridge Jump Scene,tt0322259 5aBsRxccPJI,1941.0,8,9,2011,Sullivan's Travels,I Killed John L. Sullivan!,tt0034240 9ofxELr5sa4,1941.0,3,9,2011,Sullivan's Travels,Ditching the Entourage,tt0034240 c7tvfdSjRE4,1977.0,5,10,2011,Slap Shot,Reg Taunts the Goalie,tt0076723 a0QpNMW2kws,2000.0,2,10,2011,Bring It On,Girls Locker Room Trash Talk,tt0204946 2ah3GNQL6x4,2006.0,5,10,2011,Sleeping Dogs Lie,Shoot the Cookie,tt0492492 m0z6-iFR-S8,1941.0,9,9,2011,Sullivan's Travels,I Want to Make a Comedy,tt0034240 6NRK8ai2U0Q,2006.0,4,10,2011,Sleeping Dogs Lie,Monkeys Hate Midgets,tt0492492 --RFXQ-Xlac,2009.0,10,10,2011,The Code,The MacGuffin,tt1112782 1g9QEQrHOMw,2009.0,7,10,2011,The Code,Bypassing Lasers,tt1112782 D5Oc_sYmlt8,2009.0,9,10,2011,The Code,The Trade Off,tt1112782 hcqpyBBYg_4,2009.0,6,10,2011,The Code,Breaking In,tt1112782 5gV4JcPhi9I,2009.0,8,10,2011,The Code,The Double Cross,tt1112782 yJJA6WRpvlg,1979.0,8,10,2011,The Jerk,Navin's Special Purpose,tt0079367 h30PnSefeZA,2009.0,5,10,2011,The Code,Nicky's Threat,tt1112782 APS_K6M4Qac,2009.0,4,10,2011,The Code,Chinese Food,tt1112782 M94-kf_lXUA,2006.0,10,10,2011,Sleeping Dogs Lie,I Know What Happened,tt0492492 bd-fVqwNZaQ,2009.0,3,10,2011,The Code,Planning the Heist,tt1112782 ClehpiAu764,2009.0,2,10,2011,The Code,Vault Exposition,tt1112782 7tmC9Qq5RjA,2009.0,1,10,2011,The Code,Subway Robbery,tt1112782 zZGqwY_J8Vw,2006.0,8,10,2011,Sleeping Dogs Lie,I Think You're Hot,tt0492492 kmYAgJwpE-k,2006.0,9,10,2011,Sleeping Dogs Lie,I Kissed a Dead Body Once,tt0492492 1RBwoUbvxx0,1998.0,6,10,2011,Fear and Loathing in Las Vegas,White Rabbit,tt0120669 mO5UNbKzcpQ,1988.0,9,9,2011,Midnight Run,"It's Not a Payoff, It's a Gift",tt0095631 GmXGVDnPU9o,1998.0,4,10,2011,Fear and Loathing in Las Vegas,Devil Ether,tt0120669 IxnZIoP_5J0,2005.0,1,10,2011,King Kong,Human Sacrifice,tt0360717 SoL6a37d1Rg,1931.0,8,8,2011,Frankenstein,Windmill Burns Down,tt0021884 8C9qRHJxOO0,2006.0,7,10,2011,Sleeping Dogs Lie,Shut Up and Kiss Me,tt0492492 hFICuHeg-CQ,2006.0,6,10,2011,Sleeping Dogs Lie,Something About Amy,tt0492492 cH3mtHI91Sk,2006.0,3,10,2011,Sleeping Dogs Lie,Tell Me a Secret,tt0492492 lK93bvZ_fTQ,2003.0,9,10,2011,The Snow Walker,Eulogy for Charlie,tt0337721 6f_Z5OBzY1k,2006.0,1,10,2011,Sleeping Dogs Lie,I Blew My Dog,tt0492492 joTY2Wir1w0,2003.0,6,10,2011,The Snow Walker,We Never Had a Chance,tt0337721 exVcH3m_G5c,2006.0,2,10,2011,Sleeping Dogs Lie,Will You Marry Me?,tt0492492 YY5cUX_o770,2003.0,10,10,2011,The Snow Walker,"Walk Well, My Brother",tt0337721 jfk6JSgLdQQ,2003.0,5,10,2011,The Snow Walker,Searching the Wreckage,tt0337721 Ixj8eXcClLE,2003.0,3,10,2011,The Snow Walker,Nice to Meet You,tt0337721 TzHrqDQ1OJM,2003.0,7,10,2011,The Snow Walker,Hunting Caribou,tt0337721 vjeGS4bwPX0,2003.0,4,10,2011,The Snow Walker,Inuktitut Lessons,tt0337721 JMIukdtLDt8,2009.0,8,10,2011,Leaves of Grass,You Know This Guy?,tt1151359 nNLvDIcBtz8,2009.0,10,10,2011,Leaves of Grass,Pillar of Salt,tt1151359 _wD15vBDzgs,2003.0,2,10,2011,The Snow Walker,Crash Landing,tt0337721 54LTsr8IAU4,2003.0,1,10,2011,The Snow Walker,Tuberculosis,tt0337721 sfzVAilcMAM,2009.0,9,10,2011,Leaves of Grass,Momma Might Have Called It,tt1151359 Mb-3XGFTpLQ,2009.0,7,10,2011,Leaves of Grass,"Hate Crime, Hindu Crime",tt1151359 A2Eu5xmslWI,2009.0,5,10,2011,Leaves of Grass,Ain't Being Taken Advantage of No More,tt1151359 4WuZapvSL0E,2009.0,1,10,2011,Leaves of Grass,Unacceptable!,tt1151359 O7why8Xo_RQ,1979.0,1,10,2011,The Jerk,Navin's Birthday,tt0079367 HUmelrncGRc,1988.0,4,9,2011,Midnight Run,The Dumbest Bounty Hunters,tt0095631 3hwRv9BXdOw,2009.0,6,10,2011,Leaves of Grass,We Needed a Mother,tt1151359 6q5a0W2pxS8,2009.0,4,10,2011,Leaves of Grass,Marijuana Emporium,tt1151359 9V_bukpqoPY,1999.0,7,11,2011,Being John Malkovich,Malkovich Discovers J.M. Inc.,tt0120601 Lyyc9S3iufk,2009.0,3,10,2011,Leaves of Grass,Are You Out of Your Mind?,tt1151359 PTENrQnBtXc,2009.0,2,10,2011,Leaves of Grass,Single Serving Friend,tt1151359 XVINVuRkUFg,2008.0,10,10,2011,Senior Skip Day,Ever Been to Burma?,tt0849470 DbqqjC92PP4,2008.0,10,10,2011,"War, Inc.",Fight Me Like a Dude,tt0884224 Fi51abVO4ac,2008.0,9,10,2011,"War, Inc.",Father of the Bride,tt0884224 CaHL7bVTtQQ,2008.0,6,10,2011,Senior Skip Day,Scary People,tt0849470 8S62emxyIEA,2008.0,4,10,2011,"War, Inc.",Progress Report,tt0884224 xEU2YTN-svo,2008.0,8,10,2011,Senior Skip Day,"Hello, Old Friend",tt0849470 HKpWEkSUs9U,2008.0,9,10,2011,Senior Skip Day,Not Again,tt0849470 BFeuE0wAHnI,2008.0,7,10,2011,Senior Skip Day,It's Showtime!,tt0849470 e0WpcoS_fU8,1992.0,2,8,2011,Guncrazy,Praise the Lord,tt0104377 pieqR7-byq0,2008.0,5,10,2011,Senior Skip Day,So Proud of You,tt0849470 ByExQg6WGeE,2008.0,2,10,2011,Senior Skip Day,Dickwalder's Announcement,tt0849470 mZ-yMd-bmCY,2008.0,8,10,2011,"War, Inc.",That Was Intense,tt0884224 0IL5GIcAS70,2008.0,3,10,2011,Senior Skip Day,Adam Saves the Day,tt0849470 hrVLeHMpsDY,2008.0,6,10,2011,"War, Inc.",Centurions,tt0884224 Zvbwq_7AeU0,2008.0,7,10,2011,"War, Inc.",Hauser Cleans House,tt0884224 BAXWxuKhcTc,1991.0,8,10,2011,Fried Green Tomatoes,Taking the Stand,tt0101921 OPC2Ahuklt8,2008.0,5,10,2011,"War, Inc.",Special Powers,tt0884224 L897JSOP21U,2004.0,2,10,2011,Employee of the Month,Sleazebag Jack,tt0362590 p1YmfANJdDA,2004.0,5,10,2011,Employee of the Month,Choose Your Destiny,tt0362590 EC3EYlsUiAo,2008.0,1,10,2011,Senior Skip Day,Seize the Day,tt0849470 bmgWabhgTyI,2008.0,2,10,2011,"War, Inc.",Pop Culture Extravaganza,tt0884224 j6IS8ftaiKg,2008.0,3,10,2011,"War, Inc.",Does Her Ass Make You Puke?,tt0884224 EXmDxa_WlbU,2004.0,10,10,2011,Employee of the Month,Double Twist,tt0362590 vU5Weh2-5Ow,2004.0,9,10,2011,Employee of the Month,"I'm Dead, You're Invisible",tt0362590 sF6TDdShI-U,2008.0,1,10,2011,"War, Inc.",Sprechen Sie Deutsch?,tt0884224 v9vgJaU3g1Q,2004.0,8,10,2011,Employee of the Month,David Saves the Day,tt0362590 _x4ZoZAzlL4,2004.0,7,10,2011,Employee of the Month,David's Rant,tt0362590 drdEb-EYhHU,2004.0,4,10,2011,Employee of the Month,Whisper the Prostitute,tt0362590 jYLZsEioFig,2009.0,10,10,2011,Ninja,Final Showdown,tt1186367 pGeODfpFpUQ,2009.0,9,10,2011,Ninja,The Ring of Brothers,tt1186367 n9r_Sd0cy6Y,2004.0,6,10,2011,Employee of the Month,David Snaps,tt0362590 E7kK38uDEeo,2009.0,8,10,2011,Ninja,Rooftop Battle,tt1186367 Gh3l6sVwMlI,2004.0,1,10,2011,Employee of the Month,"You're Fired, Deal With It",tt0362590 EW4_qWWvxfg,2009.0,6,10,2011,Ninja,Subway Fight,tt1186367 3eGHDodwIZI,2004.0,3,10,2011,Employee of the Month,It's Over,tt0362590 cKFA0tZIc5w,2009.0,7,10,2011,Ninja,Police Station Infiltration,tt1186367 u82elZ1sGVk,2009.0,4,10,2011,Ninja,Where's the Box?,tt1186367 KQOWuUy-7qE,2002.0,6,10,2011,8 Mile,The Lunch Truck Scene,tt0298203 uMb3tldMyn0,2002.0,3,10,2011,8 Mile,You're Gonna Be Great Scene,tt0298203 DHMF-bVxlkc,2002.0,1,10,2011,8 Mile,Rabbit Battles Lil' Tic Scene,tt0298203 8bQQIy5TKZE,1997.0,5,10,2011,Dante's Peak,Going for Grandma,tt0118928 tRT1ASnVfmo,2009.0,5,10,2011,Ninja,Ambush,tt1186367 AWMxhZbiXLc,1991.0,6,10,2011,Fried Green Tomatoes,Frank Intrudes on Ruth,tt0101921 4LaL9XB_Cx4,1991.0,3,10,2011,Fried Green Tomatoes,The Best Birthday,tt0101921 w9pEL5BVnH0,2004.0,10,10,2011,Stateside,You Don't Fix Her,tt0339727 3RWATaK6rC8,2004.0,9,10,2011,Stateside,Tired of Saying Goodbye,tt0339727 OwBlTJrvL8Y,2009.0,3,10,2011,Ninja,Masazuka's Revenge,tt1186367 Sn25NmBKxSU,2009.0,2,10,2011,Ninja,Expelled,tt1186367 s-DcMXlInkU,1992.0,3,8,2011,Guncrazy,Target Practice.,tt0104377 X9f_YUaQGWw,1992.0,4,8,2011,Guncrazy,Lovin' and Gunning,tt0104377 uwstRxD2BkA,2004.0,8,10,2011,Stateside,Dori's Song,tt0339727 mQ13lRBge64,2009.0,1,10,2011,Ninja,The Yoroi Bitsu,tt1186367 pDv-C_TpyG0,2004.0,7,10,2011,Stateside,"Globa, Your Pet Name",tt0339727 idr40IexHQw,2004.0,6,10,2011,Stateside,Are You My Buck?,tt0339727 _OabFZytcp8,1992.0,1,8,2011,Guncrazy,Revenge on Raping Rooney,tt0104377 V5B75zKswc8,2004.0,5,10,2011,Stateside,Manic Pixie Dream Girl,tt0339727 vgEI-Zu4GQE,1992.0,6,8,2011,Guncrazy,Cop Killers,tt0104377 3fLWNvP8V98,1992.0,5,8,2011,Guncrazy,Dark Secrets,tt0104377 KcG5AQMRFVU,2004.0,4,10,2011,Stateside,Do You Want to be Men?,tt0339727 Z41Lvaw_W6E,2006.0,10,10,2011,Caffeine,I'm Gonna Miss You,tt0460732 MOJFi9-64Qw,2006.0,9,10,2011,Caffeine,What's That Terrible Smell?,tt0460732 ILwsJ3_o4es,2004.0,3,10,2011,Stateside,Squeeze That Trigger Finger,tt0339727 s4iqKjufJe4,2004.0,2,10,2011,Stateside,Fathers & Mothers,tt0339727 4lzhxfuOW-A,1991.0,1,10,2011,Fried Green Tomatoes,Buddy's Accident,tt0101921 AjeO7aL1efU,1973.0,4,8,2011,High Plains Drifter,Target Practice.,tt0068699 fWLdsqhYVxM,2000.0,1,10,2011,Bring It On,We Are Cheerleaders!,tt0204946 mVbGpzsuNjE,1989.0,8,10,2011,Fletch Lives,"T'boo Ted, Hemorrhoid Sufferer",tt0097366 n_c7JtDNNUo,1997.0,7,10,2011,Dante's Peak,The Dam Breaks,tt0118928 n57MunvVpIU,1992.0,8,8,2011,Guncrazy,Last Stand,tt0104377 lfrEnzxJFps,1992.0,7,8,2011,Guncrazy,Siege on the House,tt0104377 hXCnYkU0Xy8,2006.0,8,10,2011,Caffeine,Put the Gun Down,tt0460732 09iu9EiAtKA,2006.0,7,10,2011,Caffeine,Annoying Customer,tt0460732 qgE9Lbwyzc0,2004.0,1,10,2011,Stateside,Catholic School,tt0339727 2cSY9R-ka5o,2006.0,6,10,2011,Caffeine,Pervert!,tt0460732 d2vcACp2hNw,2006.0,4,10,2011,Caffeine,Smokin' in the Boys Room,tt0460732 a4-FtMD0_sk,2006.0,5,10,2011,Caffeine,There's No Prancing,tt0460732 Q7w2V95g5ew,2007.0,2,10,2011,King of California,Naked Chinese Guys,tt0388182 A0FU6cYM9Vc,2007.0,8,10,2011,King of California,Jumping Into Raw Sewage,tt0388182 bOPnZZMObXU,2006.0,3,10,2011,Caffeine,It Was Only Sex,tt0460732 3nRy9hw7tr0,2006.0,2,10,2011,Caffeine,Recognize That Bird?,tt0460732 5DefW3MeD_c,2007.0,1,10,2011,King of California,Welcome to McDonald's,tt0388182 n_6sNnucN9k,2006.0,1,10,2011,Caffeine,Smell That,tt0460732 zP0dxHW41kg,2005.0,9,10,2011,The Amateurs,Highs & Lows,tt0405163 Rr_zj8D511s,2005.0,10,10,2011,The Amateurs,Moose the Ass Master,tt0405163 -fJwmmnPHok,2007.0,10,10,2011,King of California,How California Got It's Name,tt0388182 1eH4YUzgfN4,2007.0,6,10,2011,King of California,They're Swingers,tt0388182 qSU0iCmocCE,2006.0,3,10,2011,Irresistible,You're Delirious,tt0448564 VIp_DOwafcg,2007.0,7,10,2011,King of California,Swinging BBQ,tt0388182 38PbAk_SMdo,1989.0,5,10,2011,Fletch Lives,Microscopic Termites,tt0097366 hsBtuhWw7RM,1989.0,2,10,2011,Fletch Lives,Plantation Dreams,tt0097366 CqgXhXx-EAk,2003.0,5,10,2011,Seabiscuit,A Real Longshot,tt0329575 sYEGcfDCysI,2004.0,10,11,2011,Eternal Sunshine of the Spotless Mind,Joel's Tape,tt0338013 k1z5PejkIyY,1989.0,4,10,2011,Fletch Lives,Klan Problems,tt0097366 AOiL4JRqh7c,2003.0,7,10,2011,Seabiscuit,Winning Streak,tt0329575 ct9y-srjYjk,2007.0,5,10,2011,King of California,Pawning the Bass,tt0388182 AdiEXXKIcpM,2008.0,10,10,2011,Transsiberian,Train Collision,tt0800241 muBDF7g_mXY,2007.0,4,10,2011,King of California,X Marks the Spot,tt0388182 9Xy3PgufXHI,2008.0,9,10,2011,Transsiberian,Stealing a Train,tt0800241 IHDv7SriHB4,2008.0,3,10,2011,Transsiberian,I Can't Do This,tt0800241 Q3QqG1UavAU,2007.0,3,10,2011,King of California,Beautiful Hazel Eyes,tt0388182 gL7zD3RjgTg,2008.0,8,10,2011,Transsiberian,The Torture of Abby,tt0800241 S63g8N9Wb5c,2006.0,1,10,2011,Irresistible,Mara Confides in Sophie,tt0448564 jmCn-jfg8Jk,2008.0,7,10,2011,Transsiberian,Where Is Carlos?,tt0800241 -a0vqBmrAh0,2006.0,4,10,2011,Irresistible,You Lied to Me,tt0448564 Oa1LpwUBNAA,2008.0,6,10,2011,Transsiberian,Truncated Train,tt0800241 tdmGoIYtHzg,2006.0,10,10,2011,Irresistible,A New Identity,tt0448564 Aow66vqHkmU,2008.0,5,10,2011,Transsiberian,Caught With Heroin,tt0800241 arbY3Yvs_Sc,2008.0,4,10,2011,Transsiberian,Destroying Evidence,tt0800241 LNIKYmO7noI,2006.0,9,10,2011,Irresistible,I Won't Ever Leave You Again,tt0448564 DGhV02r8Vq4,2006.0,8,10,2011,Irresistible,Sophie and Mara Face Off,tt0448564 l_nlMehIAqk,2006.0,7,10,2011,Irresistible,Sophie's Discovery,tt0448564 MFx343hujgA,2006.0,6,10,2011,Irresistible,Locked in the Basement,tt0448564 PBXIOvTSzao,2008.0,2,10,2011,Transsiberian,Marital Problems,tt0800241 CUJJdnMG7VU,2008.0,1,10,2011,Transsiberian,Angels and Demons,tt0800241 dpAoVOU-q60,2004.0,7,11,2011,Eternal Sunshine of the Spotless Mind,The Day We Met,tt0338013 N1xvQ7iLD0I,2003.0,1,10,2011,Seabiscuit,The History of,tt0329575 v9kQdDFUWuk,2004.0,5,11,2011,Eternal Sunshine of the Spotless Mind,I've Loved You For a Long Time,tt0338013 3lX50Lh2Iec,2004.0,3,11,2011,Eternal Sunshine of the Spotless Mind,It's All Falling Apart,tt0338013 ClBUr1FFo4U,2003.0,5,10,2011,Gacy: The Crawl Space,Car Transaction,tt0330181 5F8dAQs8Vo4,2006.0,2,10,2011,Irresistible,Wasp Attack,tt0448564 a_OuIUbxu6U,2009.0,10,10,2011,Infestation,Bye Bye Bugs,tt1020543 y6daxZDW37Y,2009.0,9,10,2011,Infestation,The Queen Is Pissed,tt1020543 CnT7g2Dit2A,2003.0,9,10,2011,Gacy: The Crawl Space,How It All Went Down,tt0330181 fD1FCHmu2as,2003.0,10,10,2011,Gacy: The Crawl Space,"""Kiss My Ass!""",tt0330181 AQnQ6irZyFk,2006.0,5,10,2011,Irresistible,You're Obsessed With Her!,tt0448564 NAymJ-WVGOI,2003.0,8,10,2011,Gacy: The Crawl Space,Voices,tt0330181 ptj6u-cdPEM,2003.0,7,10,2011,Gacy: The Crawl Space,Person of Interest,tt0330181 so4D0cpOaUs,2003.0,6,10,2011,Gacy: The Crawl Space,Home Movies,tt0330181 f7oHNrQzfis,2009.0,6,10,2011,Infestation,The Swarm Attacks,tt1020543 EmRlXmyl54I,2007.0,7,10,2011,Cherry Crush,Blackmail,tt0473464 gs_g4ai4m3Q,2009.0,7,10,2011,Infestation,Al Mutates,tt1020543 tTtKhD_s3mA,2003.0,4,10,2011,Gacy: The Crawl Space,New Tenant,tt0330181 yjFU7KJH8AY,2003.0,3,10,2011,Gacy: The Crawl Space,Wanna Get High?,tt0330181 rGw2mX72ytQ,2007.0,10,10,2011,Cherry Crush,The Only Way Out,tt0473464 Fjb55wq2xuI,2009.0,5,10,2011,Infestation,I'm Really Sorry,tt1020543 iNqWC_4LooU,2009.0,3,10,2011,Infestation,First Impressions,tt1020543 LlUWLkrBL_Y,2003.0,2,10,2011,Gacy: The Crawl Space,You Know How Much I Hate Homos!,tt0330181 EFmvTRmRtms,2004.0,4,10,2011,Chrystal,Make the Pain Go Away,tt0362506 SojaL9M5Pqs,1944.0,5,9,2011,Double Indemnity,Keyes Smells a Murder,tt0036775 -r_jjQ_idz8,1944.0,9,9,2011,Double Indemnity,I Love You Too,tt0036775 KPpwiCStA54,1989.0,10,10,2011,The 'burbs,Do Not Mess With Suburbanites,tt0096734 4Os7yk5rXtY,2003.0,10,10,2011,Seabiscuit,He Fixed Us,tt0329575 Pn4mA5BIzxg,2009.0,2,10,2011,Infestation,Big Bad Bugs,tt1020543 8KjvR8FpYaQ,2007.0,6,10,2011,Cherry Crush,Third Degree,tt0473464 h75sq4lELLU,2004.0,3,10,2011,Chrystal,Am I Still Your Husband?,tt0362506 tUmKlW2VmKo,2007.0,1,10,2011,Cherry Crush,The Awakening,tt0473464 WUJNkDE4d98,2007.0,5,10,2011,Cherry Crush,Deadly Confrontation,tt0473464 mpMweFgS2cg,2004.0,10,10,2011,Chrystal,The Cops Come for Joe,tt0362506 L5-JXPcM3RQ,2003.0,5,10,2011,Shade,Maybe I Oughta Retire,tt0323939 IFbKYqUofRs,2010.0,1,10,2011,Dead Awake,Stages of Grief,tt1501652 8CsWUwcJgHA,2001.0,6,10,2011,Harvard Man,Tripping in a Car,tt0242508 tu-cxDG2mW8,1990.0,9,10,2011,Back to the Future Part 3,The Time Machine Is Destroyed,tt0099088 pm7LihLP7kQ,1992.0,3,9,2011,Sneakers,Private Investigator,tt0105435 kearXmroxUM,1985.0,6,10,2011,Mask,A Hooker for Rocky,tt0089560 p1lnXM7l2_g,1984.0,3,10,2011,Firestarter,Burning Mommy,tt0087262 F5bAa6gFvLs,1992.0,4,9,2011,Sneakers,No More Secrets,tt0105435 3obteqT0VJU,1992.0,1,9,2011,Sneakers,Professional Bank Robber,tt0105435 oG5vsPJ5Tos,1992.0,2,9,2011,Sneakers,Defeating the Keypad,tt0105435 0c-UIkfsk1U,1990.0,5,10,2011,Back to the Future Part 3,Nobody Calls Me Yellow,tt0099088 eq5NSAyQEtI,1984.0,10,10,2011,Sixteen Candles,Here Comes the Tipsy Bride,tt0088128 dCRen85hQ7Q,1984.0,1,10,2011,Firestarter,The Experiment,tt0087262 yo7C-Sp_-MI,1990.0,4,10,2011,Back to the Future Part 3,Marty the Marksman,tt0099088 wEByIZn5qeU,1990.0,2,10,2011,Back to the Future Part 3,Moonwalk for Mad Dog,tt0099088 63KOboifCig,1990.0,1,10,2011,Back to the Future Part 3,Indians in 1885,tt0099088 hPmV9DBCrfQ,1984.0,2,10,2011,Firestarter,Hot Feet,tt0087262 Uv4YAx1nqDM,1984.0,7,10,2011,Sixteen Candles,Fresh Breath's a Priority in My Life,tt0088128 Fjh3TxOHCxE,1984.0,9,10,2011,Sixteen Candles,Drunk as a Skunk,tt0088128 ACiCfGoVIJA,1984.0,8,10,2011,Sixteen Candles,The Geek and the Panties,tt0088128 FWvAYNw8r9o,1984.0,6,10,2011,Sixteen Candles,The Geek Dances,tt0088128 JyJBz7Z2EWE,1984.0,5,10,2011,Sixteen Candles,Very Clever Dinner,tt0088128 EhAiY3hTPpo,1984.0,4,10,2011,Sixteen Candles,"What's Happening, Hot Stuff?",tt0088128 K_LGi3aiF7E,1995.0,5,9,2011,The Hunted,Casino Escape,tt0113360 W3IgFbCSqSs,1995.0,7,9,2011,The Hunted,Takeda Refuses to Lose,tt0113360 sOA84te9mAw,1992.0,2,10,2011,Death Becomes Her,Helen Pays Ernest a Visit,tt0104070 3ZPlgOWbkcY,1985.0,6,10,2011,Brazil,Trust Me!,tt0088846 ojydQ3_FDqI,1962.0,2,10,2011,To Kill a Mockingbird,There's a Lot of Ugly Things in This World,tt0056592 XFURgTgl0MY,1982.0,3,10,2011,Sophie's Choice,The Land of the Living,tt0084707 fHmesxUDVz4,1933.0,6,10,2011,Duck Soup,I Was Gonna Ask for the Whole Wig,tt0023969 EVlaur-kEds,1998.0,4,5,2011,You've Got Mail,What If,tt0128853 3TA-GALQJfM,1998.0,2,5,2011,You've Got Mail,Nothing But a Suit,tt0128853 tjsQP94DIfM,2003.0,3,10,2011,Honey,Raymond Gets a Haircut,tt0322589 sdtIgE33BvQ,2005.0,3,6,2011,Wedding Crashers,Football With the Clearys,tt0396269 1KbamNWEfdw,2005.0,4,6,2011,Wedding Crashers,A Very Powerful Man,tt0396269 02A2a-aEvmI,1941.0,4,9,2011,Sullivan's Travels,Meeting the Girl,tt0034240 mX5Vqy1ETgM,2010.0,5,-1,2011,Valentine's Day,I Wanted It To Be Magical,tt0817230 8qohrMCMzLc,2010.0,2,-1,2011,Yogi Bear,I'm So Smart It Hurts,tt1302067 qSE4dF_Feng,2010.0,2,-1,2011,Scott Pilgrim vs. the World,Seven Evil Exes,tt0446029 t4zyH4BsmgQ,2010.0,8,-1,2011,The Book of Eli,I'll Show You Some Weapons,tt1037705 8yX0E-XQcms,1998.0,1,5,2011,You've Got Mail,Very First Zinger,tt0128853 yRPwDJWhqis,1998.0,3,5,2011,You've Got Mail,NY152,tt0128853 2cjvwTzhG8g,1998.0,5,5,2011,You've Got Mail,I Wanted It To Be You,tt0128853 J0WkBVu2C38,2009.0,7,-1,2011,The Informant!,Kickbacks in Cash,tt1130080 YnpzAImvPsc,2005.0,6,6,2011,Wedding Crashers,John Apologizes to Claire,tt0396269 GhF060VmS1g,2003.0,1,9,2011,The Lord of the Rings: The Return of the King,My Precious,tt0167260 Amd3bMqEdjs,2005.0,2,6,2011,Wedding Crashers,Lock It Up,tt0396269 3kaShGPva2Q,2005.0,1,6,2011,Wedding Crashers,The Perils of Dating,tt0396269 Bu3n2LEcUbg,2009.0,4,10,2011,Infestation,"Half-Man, Half-Bug",tt1020543 b3DNx3kLY58,2007.0,9,10,2011,Cherry Crush,Dead End,tt0473464 v8YgSZAbKgQ,2007.0,8,10,2011,Cherry Crush,One Million Dollars,tt0473464 ccNvps_rac8,2003.0,1,10,2011,Gacy: The Crawl Space,"Hit Me, Jerk Off",tt0330181 HJhNgjVydac,2007.0,3,10,2011,Cherry Crush,Photo Shoot,tt0473464 yyYfKxW1T8Q,2007.0,2,10,2011,Cherry Crush,Lipstick Fetish,tt0473464 Wc2CaWm1Gno,2004.0,9,10,2011,Chrystal,Closure for Joe,tt0362506 8nHwpjCIJqM,2009.0,1,10,2011,Infestation,Beetle Bully,tt1020543 kt5pjPdRDVU,2004.0,6,10,2011,Chrystal,Snake's Sinister Plan,tt0362506 F9ktw07IEr0,2004.0,8,10,2011,Chrystal,I've Been Waiting for Joe My Whole Life,tt0362506 SL40LOsREzE,2004.0,7,10,2011,Chrystal,"Heard, Not Seen",tt0362506 yAbQlHZz4tU,2008.0,7,10,2011,Day of the Dead,Killer Nose Bleed,tt0923671 KMUDG7AOw1w,2004.0,5,10,2011,Chrystal,Get This Thing Outta Me,tt0362506 CoHgpkuV1hU,2002.0,10,10,2011,Dog Soldiers,It's All Over Now,tt0280609 EEGg9AZmHZ4,2002.0,1,8,2011,Ash Wednesday,A Sick Thing to Say,tt0280438 P5ooU8rf1f0,2002.0,9,10,2011,Dog Soldiers,Last Stand,tt0280609 oEOsbgXpiNg,2004.0,2,10,2011,Chrystal,Recruiting Joe,tt0362506 -nXBi-mtvR8,2000.0,5,10,2011,Ed Gein,What the Hell Are You Doing?,tt0230169 bw0-q-wjSIM,2002.0,8,10,2011,Dog Soldiers,A Real Bitch,tt0280609 _SVlezvh3zk,2000.0,8,10,2011,Ed Gein,Dancing in the Moonlight,tt0230169 UaqCBqd8NcA,2002.0,7,10,2011,Dog Soldiers,The Transformation,tt0280609 EVdo5BfJMCQ,2000.0,10,10,2011,Ed Gein,The Arrest,tt0230169 JhtaGVmtcwU,2000.0,9,10,2011,Ed Gein,How You Liking That Gun Ed?,tt0230169 qemi7V4jUjk,2002.0,6,10,2011,Dog Soldiers,Escape Attempt,tt0280609 MYpqwTSpp_E,2007.0,9,9,2011,An American Crime,Murder in the First,tt0802948 fuJceBJIp8k,2004.0,1,10,2011,Chrystal,Joe's a Badass,tt0362506 5GlQJ1kKxMA,2000.0,4,10,2011,Ed Gein,Hussy Fantasy,tt0230169 _Gm42rDEb38,2000.0,3,10,2011,Ed Gein,Henry's Accidental Death,tt0230169 AZ_MUktgWxg,2000.0,6,10,2011,Ed Gein,Mary's Abduction,tt0230169 Wjm3qeQvGxs,2002.0,5,10,2011,Dog Soldiers,Under Siege,tt0280609 Z0092DSphF0,2002.0,4,10,2011,Dog Soldiers,Don't Stare Back,tt0280609 Yhiy0ZHMyik,2007.0,8,9,2011,An American Crime,Escape from Bondage,tt0802948 iJsNpzHlrgs,2007.0,7,9,2011,An American Crime,Branding Sylvia,tt0802948 cqeUgjPpCCM,2000.0,2,10,2011,Ed Gein,Vicious Jungle Headhunters,tt0230169 -oWSoBQzQNA,2002.0,3,10,2011,Dog Soldiers,Close Call,tt0280609 Htt0B7bZ4tI,2007.0,6,9,2011,An American Crime,You're All I've Got,tt0802948 BlG0jGX34i8,2000.0,1,10,2011,Ed Gein,Model Babysitter,tt0230169 QMDO-3fqU0c,2002.0,2,10,2011,Dog Soldiers,Impaled,tt0280609 uHEG_fTDZss,2002.0,7,8,2011,Ash Wednesday,Back From the Dead,tt0280438 c8pZIocR-lQ,2002.0,8,8,2011,Ash Wednesday,Face to Face,tt0280438 zlRuCc0kYQ0,2007.0,5,9,2011,An American Crime,"I Don't Know, Sir",tt0802948 n3TNGpjl-kM,2002.0,6,8,2011,Ash Wednesday,Spotted by the Mick,tt0280438 32me3lMxEDU,2002.0,1,10,2011,Dog Soldiers,Camping Couple,tt0280609 Vy4OBSqz5dw,2003.0,1,10,2011,Shade,A Winner Every Time,tt0323939 60Sc8RmA458,2003.0,7,10,2011,Shade,Some Things Are More Important Than Money,tt0323939 wY6sZJKyxo8,2007.0,4,9,2011,An American Crime,Put It Up Her,tt0802948 eu2OiA65JOA,2007.0,3,9,2011,An American Crime,An Act of Cruelty,tt0802948 cP95rCyLijI,2002.0,5,8,2011,Ash Wednesday,How Could You?,tt0280438 JpYjN3cZR3U,2003.0,9,10,2011,Shade,The Outcome,tt0323939 dKMVUS6TC2A,2002.0,4,8,2011,Ash Wednesday,Grace Finds Out the Truth,tt0280438 lIOwxzY4M6s,2003.0,8,10,2011,Shade,It's Good to Have Friends,tt0323939 _5UWCkgkSzA,2002.0,3,8,2011,Ash Wednesday,Hiding,tt0280438 wrAksGY1TSk,2007.0,2,9,2011,An American Crime,She's Got It Coming,tt0802948 3VgqDRrUIOo,2002.0,2,8,2011,Ash Wednesday,The Straight Arrow,tt0280438 d_8TCN2wA7s,2003.0,4,10,2011,Shade,"Dean ""The Dean"" Stevens",tt0323939 2XgWUoUe_lw,2003.0,6,10,2011,Shade,Bar Shootout,tt0323939 mlpWVL2gHG4,2006.0,10,10,2011,Big Nothing,You Shot Me,tt0488085 Ny1Q4bR5dMc,2007.0,1,9,2011,An American Crime,Whipped for Nothing,tt0802948 DfDQo7Gm8CI,2006.0,9,10,2011,Big Nothing,The Wyoming Widow,tt0488085 f-ZCZ5BNloQ,2006.0,8,10,2011,Big Nothing,Special Agent Hippo,tt0488085 kMjUZodyvtA,2008.0,10,10,2011,Day of the Dead,Flame On,tt0923671 c0pmWNOt3fM,2003.0,2,10,2011,Shade,No Limit,tt0323939 -aH-cLQqwHQ,2006.0,6,10,2011,Big Nothing,That Doesn't Suck,tt0488085 -W2T5Gm7i74,2006.0,7,10,2011,Big Nothing,Detective Penelope,tt0488085 ZhzpLQbMNjQ,2006.0,5,10,2011,Big Nothing,Who the Hell Are You?,tt0488085 1_NERqSdt9U,2006.0,1,10,2011,Big Nothing,"Welcome to Hell, Dickhead",tt0488085 YBEUHTsxyXs,2008.0,9,10,2011,Day of the Dead,Underground,tt0923671 PnjqfWEL6bc,2006.0,4,10,2011,Big Nothing,No Biggie,tt0488085 fr_9D8OREfk,2006.0,3,10,2011,Big Nothing,I'd Arrest You,tt0488085 LVt7Zvxk934,2006.0,2,10,2011,Big Nothing,Fired on the First Day,tt0488085 YH7W2AR9b8w,2008.0,8,10,2011,Day of the Dead,Vegetarian Zombie,tt0923671 XtadtlSUNQg,2002.0,4,10,2011,Ted Bundy,The One That Got Away,tt0284929 FhAIXOkAUhY,2008.0,6,10,2011,Day of the Dead,Spears & Bullets,tt0923671 cvvweP3N_f4,2002.0,3,10,2011,Ted Bundy,Pretty Girls,tt0284929 OhYlQ6kSQFs,2004.0,8,10,2011,Unstoppable,We're on the Same Side,tt0349889 2x5L2L4XZng,2008.0,4,10,2011,Day of the Dead,Captain Rhodes (The Other One),tt0923671 PcRJie18fYs,2008.0,5,10,2011,Day of the Dead,Bitten,tt0923671 k5kTx_bZznU,2008.0,3,10,2011,Day of the Dead,Hospital Massacre,tt0923671 OH_cAf9RFSU,2009.0,10,10,2011,Triangle,Another Dead Bird,tt1187064 y69ebASPg8A,2008.0,2,10,2011,Day of the Dead,Something's Happening,tt0923671 ekOi-hwWNoM,2008.0,1,10,2011,Day of the Dead,Overwhelmed Hospital,tt0923671 H7H1eydzTCY,2009.0,8,10,2011,Triangle,Put Down the Gun,tt1187064 1-G0Fxf9IYU,2009.0,9,10,2011,Triangle,Bad Mommy,tt1187064 M_beJ-qJlQo,2009.0,7,10,2011,Triangle,Another Dead Sally,tt1187064 iyPGMUFQiW0,2009.0,6,10,2011,Triangle,Not Who You Think,tt1187064 GK7IQ-raJOc,2009.0,5,10,2011,Triangle,A Copy of Myself,tt1187064 w-4XyyU2w9g,2009.0,4,10,2011,Triangle,Who Are You?,tt1187064 Wa6au8A-3Zg,2009.0,1,10,2011,Triangle,Electrical Storm,tt1187064 G_0o3NoEXJQ,2009.0,2,10,2011,Triangle,Trail of Blood,tt1187064 EN8q8mJrAZY,2009.0,3,10,2011,Triangle,You Shot Him,tt1187064 ndrLDbtM-CY,2011.0,9,-1,2011,Something Borrowed,Sharing Secrets,tt0491152 umOy9nT4Wpw,2011.0,8,-1,2011,Something Borrowed,Do Something For Yourself,tt0491152 dM6waznJ7No,2011.0,6,-1,2011,Something Borrowed,Push It Dance,tt0491152 GhaxB8afkj0,2011.0,3,-1,2011,Something Borrowed,I'm Out of Here,tt0491152 6svLqrJqoWk,2011.0,7,-1,2011,Something Borrowed,Nobody Knows Me Like You,tt0491152 ihyRhFcUVto,2011.0,5,-1,2011,Something Borrowed,Can I Come Up?,tt0491152 fuOY4W9QFNI,2011.0,1,-1,2011,Something Borrowed,Ask Me Out,tt0491152 DNC3OciAF3w,1974.0,2,10,2011,Blazing Saddles,Frontier Gibberish,tt0071230 wp4tgWYqjyw,2011.0,2,-1,2011,Something Borrowed,Stop Staring,tt0491152 t9P2B7NUPfM,1974.0,6,10,2011,Blazing Saddles,Mongo Comes to Town,tt0071230 NzbhbetwYFU,1974.0,3,10,2011,Blazing Saddles,Harrumphing with the Governor,tt0071230 4w36z7XnwOM,1974.0,1,10,2011,Blazing Saddles,Quicksand!,tt0071230 s9JqbCH4aVw,1974.0,7,10,2011,Blazing Saddles,Lili Goes Black,tt0071230 OwB1Fd-IeS4,1999.0,10,10,2011,Bangkok Dangerous,Factory Showdown,tt0263101 DR91SIIPCkQ,2004.0,9,9,2011,September Tapes,Leave the American,tt0390468 _DK3DYHAQvc,1999.0,9,10,2011,Bangkok Dangerous,Running and Gunning,tt0263101 yE_JbyAR7qY,2004.0,8,9,2011,September Tapes,Take His Camera,tt0390468 VN8DStEDHd0,1999.0,7,10,2011,Bangkok Dangerous,Get Ready to Die,tt0263101 vWyTTJE081c,2004.0,7,9,2011,September Tapes,Night Raid,tt0390468 5WuZvuZjk3o,1999.0,8,10,2011,Bangkok Dangerous,Mob Massacre,tt0263101 UzBE29ENnjA,2004.0,6,9,2011,September Tapes,Warzone Pursuit,tt0390468 zoK9i_LiB5s,2004.0,4,9,2011,September Tapes,Checkpoint Thieves,tt0390468 FonBCrV4Fqs,2004.0,5,9,2011,September Tapes,Ambush,tt0390468 Til9ScLdyv0,2004.0,3,9,2011,September Tapes,Buying Arms,tt0390468 s0RwiqEDRbM,1999.0,6,10,2011,Bangkok Dangerous,Revenge Killing,tt0263101 VgyyxiZGzNo,1999.0,5,10,2011,Bangkok Dangerous,Attempted Mugging,tt0263101 MosezS_qfk4,2004.0,5,10,2011,My Date with Drew,Reenacting Brian's Encounter With Drew,tt0378407 JlpBRPIgoIk,2004.0,2,9,2011,September Tapes,Blood on the Streets,tt0390468 A8CNtor4BPA,2010.0,10,10,2011,Dead Awake,One More Chance,tt1501652 Cer8qtPJiaI,2004.0,1,9,2011,September Tapes,Anything Can Happen,tt0390468 IGtoG5BnW_g,1999.0,4,10,2011,Bangkok Dangerous,Subway Hit,tt0263101 -p3FtQtQ6q8,2010.0,9,10,2011,Dead Awake,Jesus Wept,tt1501652 onD3Eppv3EQ,1999.0,3,10,2011,Bangkok Dangerous,Assassin Training,tt0263101 6lzU26KS9yw,1999.0,2,10,2011,Bangkok Dangerous,Target Practice.,tt0263101 iOb_w3y2stg,2010.0,5,10,2011,Dead Awake,The Old Flame,tt1501652 C8IBujBZjaE,2010.0,8,10,2011,Dead Awake,You Have Me,tt1501652 nXqdGyqR82Y,2010.0,7,10,2011,Dead Awake,The Accident,tt1501652 3gt4aiQrmb8,1999.0,1,10,2011,Bangkok Dangerous,Witness to a Hit,tt0263101 5B5VRYzzz0M,2010.0,4,10,2011,Dead Awake,Guardian Angel,tt1501652 h3Aam5h7qAA,2010.0,3,10,2011,Dead Awake,The Fake Funeral,tt1501652 1qbYMSC8ggg,2006.0,10,10,2011,A Guide to Recognizing Your Saints,So Much to Say,tt0473488 KuR_Z_vRD2Y,2006.0,7,10,2011,A Guide to Recognizing Your Saints,It's Time to Go,tt0473488 Vbw4I7BhEBk,2006.0,9,10,2011,A Guide to Recognizing Your Saints,Did You Love Me?,tt0473488 _vjn86zTNVI,2006.0,8,10,2011,A Guide to Recognizing Your Saints,You Want It Straight?,tt0473488 hUz7Nan8kpM,2006.0,6,10,2011,A Guide to Recognizing Your Saints,Dito Takes a Beating,tt0473488 QSWGpf7NQ7k,2002.0,10,10,2011,Ted Bundy,Who is ?,tt0284929 sY1NGOTGpUs,2006.0,5,10,2011,A Guide to Recognizing Your Saints,Laurie's Corner,tt0473488 U0sp1K-D1RE,2002.0,8,10,2011,Ted Bundy,Prison Life,tt0284929 6OofgRuJnIE,2006.0,4,10,2011,A Guide to Recognizing Your Saints,You're Not Going Anywhere,tt0473488 n5YGsbi7BNw,2002.0,7,10,2011,Ted Bundy,Bundy's Escape,tt0284929 2eqWGVKtm5w,2006.0,3,10,2011,A Guide to Recognizing Your Saints,Reaper's Brother,tt0473488 jnRIqedIizM,2004.0,3,10,2011,Unstoppable,Cocky Little Prick,tt0349889 ShqQo3JOdew,2006.0,2,10,2011,A Guide to Recognizing Your Saints,Riding the Subway,tt0473488 fBkFWhWXWuA,2002.0,6,10,2011,Ted Bundy,"No More Lee, Honey",tt0284929 y8Jqk1kPtQI,2006.0,1,10,2011,A Guide to Recognizing Your Saints,Monty's Kitchen,tt0473488 eswi0L8WNzs,2002.0,5,10,2011,Ted Bundy,First Arrest,tt0284929 cZP3u5XAeHk,2004.0,2,10,2011,Unstoppable,A Prohibited Narcotic,tt0349889 -uU3MTcwg_s,2004.0,9,10,2011,Unstoppable,Dean's Hallucination,tt0349889 3sDL4LJUc_c,2004.0,1,10,2011,Unstoppable,Mistaken for the Wrong Guy,tt0349889 m9Wh66FXZJQ,1933.0,9,10,2011,Duck Soup,This Means War!,tt0023969 AO9pxLEHVfI,2004.0,10,10,2011,Unstoppable,The Antidote,tt0349889 hqVbOSEsJNo,1982.0,6,10,2011,The Thing,Tainted Blood Sample,tt0084787 QQwJyX56Z6o,2002.0,2,10,2011,Ted Bundy,The Caller,tt0284929 5mEsXz-Bpog,1933.0,10,10,2011,Duck Soup,To War,tt0023969 q9OUIk4Oaq4,1933.0,4,10,2011,Duck Soup,The Lemonade Vendor,tt0023969 qSabiG8q8-k,1933.0,1,10,2011,Duck Soup,Working His Magic,tt0023969 JjIXwkX1e48,1982.0,5,10,2011,The Thing,Chest Defibrillation,tt0084787 P4KH_RSZyl8,2010.0,4,-1,2011,Hereafter,The Experience of Death,tt1212419 AFk0BnxndMA,1933.0,5,10,2011,Duck Soup,Without a Word,tt0023969 q-1DREuXwjc,2010.0,3,-1,2011,Hereafter,Can I Ask You a Question?,tt1212419 jJze-x__3o8,2002.0,1,10,2011,Ted Bundy,Peeping Tom,tt0284929 uIJDIumyakw,2004.0,7,10,2011,Unstoppable,Fuel Truck Chase,tt0349889 mlAtuy15iIM,2004.0,6,10,2011,Unstoppable,Dean Escapes the Asylum,tt0349889 MflY-IYl0Bk,2001.0,10,10,2011,Harvard Man,Everything's Okay,tt0242508 Utt18i8DSSg,2004.0,5,10,2011,Unstoppable,Reliving a Memory,tt0349889 PSe5x7y-kVY,2001.0,9,10,2011,Harvard Man,The LSD Doctor,tt0242508 cx_45Z56ZQA,2001.0,8,10,2011,Harvard Man,The Longest Acid Trip,tt0242508 NF-httKm7RU,2002.0,5,10,2011,Dahmer,Knife Shopping,tt0285728 KThMkPl6q5A,2004.0,4,10,2011,Unstoppable,You're F***ing With My Family,tt0349889 0j4aiJowI8I,2002.0,6,10,2011,Dahmer,The Way We Are,tt0285728 lgwJVRwJn3k,2001.0,5,10,2011,Harvard Man,Tripping on a Plane,tt0242508 2GXdTkYEPm4,2002.0,2,10,2011,Dahmer,Close Call,tt0285728 aqbP3OofrHU,2002.0,9,10,2011,Dahmer,Pulled Over,tt0285728 S32b64ns3fM,2001.0,4,10,2011,Harvard Man,Throwing the Harvard Game,tt0242508 q2nChVvlZ8w,2002.0,10,10,2011,Dahmer,Seduction,tt0285728 k7GcyfPypGY,2002.0,8,10,2011,Dahmer,Harbored Anger,tt0285728 2V0WuzhmAjY,2002.0,7,10,2011,Dahmer,Just Playing,tt0285728 Ddnox9DoK88,2005.0,9,10,2011,The Proposition,No More,tt0421238 NSsW9EXadik,2005.0,8,10,2011,The Proposition,Jail Break,tt0421238 HEGucJf9y-w,2005.0,7,10,2011,The Proposition,"Life Is Very Sweet, Brother",tt0421238 quzMffZuuCQ,2005.0,10,10,2011,The Proposition,"You Got Me, Charlie",tt0421238 wLaXJWcrgzM,2005.0,6,10,2011,The Proposition,Martha's Dream,tt0421238 lWTyXHZu09w,2005.0,5,10,2011,The Proposition,Your Brother's Come to Kill You,tt0421238 PT3GmTvF9t4,2002.0,3,10,2011,Dahmer,No Big Deal,tt0285728 0642x0-QL0Y,2002.0,4,10,2011,Dahmer,The Box,tt0285728 JbI9xgX8H-8,2003.0,10,10,2011,Party Monster,Disco Bloodbath,tt0320244 0SXgXYo-Vk8,2003.0,9,10,2011,Party Monster,Rat's Revelation,tt0320244 sh8VHDoEDik,2003.0,8,10,2011,Party Monster,Promise,tt0320244 Tg_qXTVaZSE,2002.0,1,10,2011,Dahmer,Drilled,tt0285728 EOCgXlRkmKk,2003.0,7,10,2011,Party Monster,Dallas,tt0320244 vvWyQxD3ZmI,2003.0,6,10,2011,Party Monster,Club Kids,tt0320244 4VfWFRMVM_M,2003.0,5,10,2011,Party Monster,Junkie Boyfriend,tt0320244 p0WBxRosKq4,2003.0,2,10,2011,Party Monster,How to be Fabulous,tt0320244 QRHGpNm96gY,2003.0,4,10,2011,Party Monster,Party Truck,tt0320244 j1CC9YKFpXA,2003.0,3,10,2011,Party Monster,Holidays,tt0320244 xEQ_h9zO4II,2005.0,9,10,2011,Wassup Rockers,Kico Lands a Cougar,tt0413466 jC5O4or6dB8,2005.0,1,10,2011,Wassup Rockers,Meet Jonathan,tt0413466 G7GXq4M7SuI,2003.0,1,10,2011,Party Monster,Michael's Story,tt0320244 FBpPaF5Kg_Y,2005.0,5,10,2011,Wassup Rockers,Preppy Chicks Dig the Rockers,tt0413466 meBbz4hop-w,2005.0,6,10,2011,Wassup Rockers,We're All the Same,tt0413466 eOgMuHykBAA,2005.0,8,10,2011,Wassup Rockers,We Left a Homie,tt0413466 lrvMjEmOFhE,2005.0,3,10,2011,Wassup Rockers,My Life is S***,tt0413466 owJTZiiUoUQ,2005.0,4,10,2011,Wassup Rockers,Suicide Attempt,tt0413466 nU1jeDXloRs,2000.0,5,10,2011,Ginger Snaps,Spreading the Disease,tt0210070 A7UHJpZ4Jrw,2000.0,10,10,2011,Ginger Snaps,Sister to Sister,tt0210070 Wmu-F4mJ-eI,2000.0,9,10,2011,Ginger Snaps,Bonding,tt0210070 4CgNb8LRtng,2000.0,6,10,2011,Ginger Snaps,Hiding the Corpse,tt0210070 GwYqUTPQT-w,2000.0,8,10,2011,Ginger Snaps,Outside the Closet,tt0210070 EMga19u0TaA,2000.0,7,10,2011,Ginger Snaps,Final Transformation,tt0210070 11TGIP2Kouk,2000.0,3,10,2011,Ginger Snaps,Just Cramps,tt0210070 FrisJJ0G4N8,2000.0,4,10,2011,Ginger Snaps,The School Nurse,tt0210070 YpkqDHGJzJ8,2007.0,6,10,2011,Smiley Face,Three Little Pig Sausage,tt0780608 pnqh4SI-E6c,2007.0,10,10,2011,Smiley Face,What Was She Thinking?,tt0780608 oZrpLQFH960,2000.0,2,10,2011,Ginger Snaps,Lycanthrope Attack,tt0210070 HiMImmy3l5o,2007.0,9,10,2011,Smiley Face,Ferris Wheel Ride,tt0780608 O73Q7jd3VkA,2007.0,8,10,2011,Smiley Face,33rd Annual Venice Hemp Fest,tt0780608 ca_Ac4lF2Vk,2007.0,7,10,2011,Smiley Face,F*** Me Mikey!,tt0780608 ViZ5qXg5xQA,2007.0,4,10,2011,Smiley Face,"Hello, Smiley",tt0780608 bLqwpb4eDeA,2011.0,6,-1,2011,Born to Be Wild,Elephant Bedtime,tt1680059 a2Nw8Hen7Bo,2007.0,5,10,2011,Smiley Face,Brevin Ericson,tt0780608 S7C-PTowNSU,2011.0,4,-1,2011,Born to Be Wild,The Lucky Ones,tt1680059 RpatQWLKfAE,2011.0,3,-1,2011,Born to Be Wild,Elephant Sunscreen,tt1680059 XZT1cB8KU_I,2007.0,3,10,2011,Smiley Face,Audition,tt0780608 ugXeKGSjvKw,2011.0,2,-1,2011,Born to Be Wild,Orangutan Release,tt1680059 dfFFgV624TA,2011.0,5,-1,2011,Born to Be Wild,Elephant Nursery,tt1680059 gXv4mbv8-cE,2011.0,1,-1,2011,Born to Be Wild,Orangutan Washing,tt1680059 W1Ipb0WpoGI,2005.0,4,10,2011,The Proposition,The Flogging,tt0421238 SAo2EHsCPn8,2007.0,1,10,2011,Smiley Face,A Conversation with Roscoe Lee Browne,tt0780608 VWELyY3orwI,2007.0,2,10,2011,Smiley Face,Steve the Roommate,tt0780608 7L2NhtAzHYw,2005.0,2,10,2011,The Proposition,A Fortune Hunter,tt0421238 _DgOdOLNiaI,2005.0,1,10,2011,The Proposition,,tt0421238 solCkKfZObE,2010.0,6,10,2011,The Penthouse,Roommate Auditions,tt0929618 mIM8G1SoJAc,2010.0,10,10,2011,The Penthouse,You Had Fun,tt0929618 Q8IqpcS31Xo,2010.0,8,10,2011,The Penthouse,The Invisible Girl,tt0929618 tbcg51lQx8Y,2010.0,9,10,2011,The Penthouse,How Could You?,tt0929618 JgIJDix2oy0,2010.0,7,10,2011,The Penthouse,Lunch With the Parents,tt0929618 _3EcvKXH9zY,2011.0,7,-1,2011,Sucker Punch,First Five Minutes,tt0978764 3ZuQQQTv48I,2010.0,4,10,2011,The Penthouse,Male Nurse,tt0929618 _mVMG_Rbk5w,2010.0,2,10,2011,The Penthouse,Awkward and Boyish,tt0929618 6IbECSkNmiY,2010.0,5,10,2011,The Penthouse,Impossibly Far Away,tt0929618 0eBehC1Ky8c,2010.0,3,10,2011,The Penthouse,A Lying Agent,tt0929618 Zf_Dt4lo_3c,2009.0,10,10,2011,Labor Pains,I'm So Over This,tt1231287 Ddet2d9EtTY,2009.0,9,10,2011,Labor Pains,Pop Goes the Baby,tt1231287 xLL3-fP9NAw,2009.0,8,10,2011,Labor Pains,Baby's Out of the Bag,tt1231287 2UCoVnTjV4k,2009.0,7,10,2011,Labor Pains,Surprise Baby Shower,tt1231287 l29oT_LWdfM,2009.0,6,10,2011,Labor Pains,Coffee Date,tt1231287 U0Sk5u00YHs,2009.0,5,10,2011,Labor Pains,Pregnancy Focus Group,tt1231287 ROO66Mi8gTY,2010.0,1,10,2011,The Penthouse,Beware of Coyotes,tt0929618 DOtd-mykOhE,2009.0,4,10,2011,Labor Pains,Birthing Class,tt1231287 zDYk7hXvQ0Y,2009.0,2,10,2011,Labor Pains,Can't Fire a Pregnant Woman,tt1231287 dOObdbjoJ4c,2009.0,3,10,2011,Labor Pains,Pregnant and Engaged,tt1231287 SmLwnNTfwHI,2009.0,1,10,2011,Labor Pains,Sick Dog,tt1231287 b5jr8NxFS-E,2004.0,10,10,2011,Trauma,She's Dead,tt0363143 VT2pepdAtJo,2004.0,9,10,2011,Trauma,Trust Me,tt0363143 3JO11PBdCAo,2009.0,10,10,2011,Deadline,Alice Lives,tt1242618 IFTHxZ22woc,2009.0,8,10,2011,Deadline,The Burial,tt1242618 BX91rzHyMv0,2009.0,7,10,2011,Deadline,The Drowning,tt1242618 Xi3ymXEMyjU,2009.0,6,10,2011,Deadline,You're Not Leaving,tt1242618 H1SvA7bU0oM,2009.0,9,10,2011,Deadline,David and Lucy Return,tt1242618 IqqznoT4Jb0,2004.0,8,10,2011,Trauma,What's Real,tt0363143 0a_HvCBSa1I,2009.0,5,10,2011,Deadline,I Belong to You,tt1242618 utKueh6Yj9Y,2009.0,4,10,2011,Deadline,Someone Died Here,tt1242618 N5i6B7WyZQE,2004.0,7,10,2011,Trauma,Nightmares,tt0363143 FDxm9DsmBk8,2009.0,1,10,2011,Deadline,Old Houses are Like People,tt1242618 1Oge9qUat-I,2004.0,6,10,2011,Trauma,Grief,tt0363143 ij3HAftwQQ0,2011.0,6,-1,2011,Arthur,I Don't Date Boys Who Have Nannies,tt1334512 B6E_rp80QMc,2011.0,7,-1,2011,Arthur,A Harmless Game of Dress Up,tt1334512 2NnR3gblKYI,2011.0,3,-1,2011,Arthur,A Radiant Stranger,tt1334512 XsdRpsG43WI,2011.0,4,-1,2011,Arthur,"Till Death Do Us Part, As Scheduled",tt1334512 5dA3DePirsE,1982.0,8,10,2011,Blade Runner,Deckard vs. Batty,tt0083658 -3mo5CqjvWs,2011.0,2,-1,2011,Arthur,Nothing in Common,tt1334512 eX3czjlDO5w,2011.0,5,-1,2011,Arthur,I Could Get a Job,tt1334512 5lPsmFSNWc4,1982.0,10,10,2011,Blade Runner,The Ending: A Replicant?,tt0083658 w_tQqymkPdA,2011.0,1,-1,2011,Arthur,Have You Ever Been in Love?,tt1334512 e9t5ikxjAQ4,1982.0,6,10,2011,Blade Runner,Deckard vs. Pris,tt0083658 __yiHzuT3ig,2004.0,5,10,2011,Trauma,Receiving,tt0363143 KcJs4qJPQ_M,1982.0,5,10,2011,Blade Runner,The Prodigal Son,tt0083658 yWPyRSURYFQ,1982.0,1,10,2011,Blade Runner,She's a Replicant,tt0083658 mvBtzXZWWG8,2004.0,4,10,2011,Trauma,Arachnophobia,tt0363143 FuXl-Pmr5kc,2004.0,3,10,2011,Trauma,Entomology,tt0363143 0NtiiKd1HnA,2004.0,1,10,2011,Trauma,You Again,tt0363143 IlIhWS7-x1Y,2003.0,8,10,2011,King of the Ants,Nothing You Can Say,tt0328031 Bl6Wk5M1vjk,2004.0,2,10,2011,Trauma,The Medium,tt0363143 CaaKsf8zOyA,2003.0,10,10,2011,King of the Ants,That's What I Do,tt0328031 B2TqswpzDlg,2003.0,9,10,2011,King of the Ants,Sizing Duke Up,tt0328031 g4-0zhNcrnQ,2003.0,6,10,2011,King of the Ants,Losing His Mind,tt0328031 _MlQzLtPA0Q,2003.0,7,10,2011,King of the Ants,The Escape,tt0328031 PzocCTnSU3w,2003.0,4,10,2011,King of the Ants,A F***ing Insect,tt0328031 kqVqHxVJCaA,2003.0,1,10,2011,King of the Ants,Immoral,tt0328031 VZFMY9mYu4Q,2003.0,3,10,2011,King of the Ants,Not Quite Dead,tt0328031 FNaOG7EN5jE,2003.0,5,10,2011,King of the Ants,The First Blow,tt0328031 bgCUriRuVx8,2009.0,9,10,2011,"My Son, My Son, What Have Ye Done",Following an Inner Voice,tt1233219 Lt3HDRrYt9E,2009.0,10,10,2011,"My Son, My Son, What Have Ye Done",Flamingo Hostages,tt1233219 a6kk9d5OQ-c,2009.0,8,10,2011,"My Son, My Son, What Have Ye Done",The World Stares at Brad,tt1233219 GO4D8MjC6xU,2003.0,2,10,2011,King of the Ants,Conditions For Murder,tt0328031 vHIbZ0uOAL4,2009.0,6,10,2011,"My Son, My Son, What Have Ye Done",Acting a Role,tt1233219 GTv9dFFHtW4,2009.0,5,10,2011,"My Son, My Son, What Have Ye Done",Uncle Ted's Sword,tt1233219 1zOSmScTr_w,2009.0,4,10,2011,"My Son, My Son, What Have Ye Done",You Love Jell-O,tt1233219 gyUrAK47OY4,2009.0,2,10,2011,"My Son, My Son, What Have Ye Done",God Is Here!,tt1233219 czIb_WZRk-U,2009.0,3,10,2011,"My Son, My Son, What Have Ye Done",Call Me Farouk,tt1233219 XmhfuDf1hZI,2009.0,7,10,2011,"My Son, My Son, What Have Ye Done",Disturbing the Play,tt1233219 zX2LRszGCro,2009.0,1,10,2011,"My Son, My Son, What Have Ye Done",Cops and Criminals,tt1233219 spwoWkSEmsE,2011.0,5,-1,2011,Sucker Punch,Bad Eggs,tt0978764 oJFKZnePh3k,2011.0,4,-1,2011,Sucker Punch,Take That!,tt0978764 KV143Jx9hFs,2011.0,3,-1,2011,Sucker Punch,I'm In,tt0978764 uwV4iMoc7xg,2011.0,5,-1,2011,Red Riding Hood,Alliance,tt1486185 MMeHpxjiU0U,2011.0,2,-1,2011,Sucker Punch,The Bunker,tt0978764 BT7WTaXcPLU,2011.0,6,-1,2011,Red Riding Hood,Demon Musk,tt1486185 UrUNUzp14Bc,2011.0,1,-1,2011,Sucker Punch,All The Weapons You Need,tt0978764 piFTKwqrqYA,2011.0,4,-1,2011,Red Riding Hood,The Wolf Talked to Me,tt1486185 DYsJH2JWJTY,2011.0,2,-1,2011,Red Riding Hood,Blood Moon,tt1486185 3cnhsHMhVZE,2011.0,4,-1,2011,Hall Pass,Fake Everything,tt0480687 Dl8BO_ZLdEc,2009.0,9,9,2011,Duplicity,We Got Totally Played,tt1135487 iI0hgr8Kff8,2011.0,3,-1,2011,Red Riding Hood,Wolf Attack,tt1486185 jkHrHAKwPZk,2011.0,1,-1,2011,Red Riding Hood,I Can't Lose You,tt1486185 u17vCX9koaI,2011.0,3,-1,2011,Hall Pass,Cruising for Babes at Applebee's,tt0480687 4j9EwcO8tDM,2011.0,2,-1,2011,Hall Pass,I Got a !,tt0480687 CxxuM1HCI-8,2011.0,1,-1,2011,Hall Pass,Mental Photographs,tt0480687 UubHqEOLd8I,2009.0,1,9,2011,Duplicity,All the Way In,tt1135487 uSkVR8Tbu8c,2011.0,1,-1,2011,Unknown,Car Accident.,tt1401152 KNyFPVliMEE,2009.0,8,9,2011,Drag Me to Hell,"Choke on It, Bitch",tt1127180 yXl3ENKGAUQ,1985.0,4,10,2011,Mask,First Day of School,tt0089560 dSpTTf_dzDI,2011.0,3,-1,2011,Unknown,The Chase,tt1401152 quY0mRlL5FQ,2009.0,9,9,2011,Drag Me to Hell,Dragged to Hell,tt1127180 FBV_POzEeks,2011.0,2,-1,2011,Unknown,Who the Hell Are You?,tt1401152 L_NfCmTkLPQ,2009.0,7,9,2011,Drag Me to Hell,The Seance,tt1127180 wReulnRQA-Y,1987.0,4,10,2011,Three O'Clock High,There Is No Escape,tt0094138 qMwvHLe5m3g,1963.0,11,11,2011,The Birds,Unending Terror,tt0056869 pE4-ePx_OAI,2009.0,6,9,2011,Drag Me to Hell,Harvest Cake,tt1127180 UW-Y3QyK-aU,1987.0,1,10,2011,Three O'Clock High,The New Guy,tt0094138 irglc0zZbvA,1987.0,9,10,2011,Three O'Clock High,Inside Job,tt0094138 8tanKqukbfM,2009.0,5,9,2011,Drag Me to Hell,Haunted by Shadows,tt1127180 QAUmchzQJAE,1987.0,6,10,2011,Three O'Clock High,School Store Robbery,tt0094138 8DrzN7pcJpI,1987.0,3,10,2011,Three O'Clock High,Pep Rally,tt0094138 c27gUzZEjvA,2009.0,4,9,2011,Drag Me to Hell,A Gypsy Funeral,tt1127180 Od1ZBTstSHg,2009.0,2,9,2011,Drag Me to Hell,Fly Nightmare,tt1127180 v0KOJWyR4SU,2009.0,1,9,2011,Drag Me to Hell,Button Curse,tt1127180 SI7LDY6E1Rw,2009.0,3,9,2011,Drag Me to Hell,Nose Bleed,tt1127180 8W4DxSCopj8,1988.0,2,10,2011,The Great Outdoors,Suck My Wake,tt0095253 9r4784rihOc,2003.0,9,10,2011,Honey,Michael's Bitter Move,tt0322589 tkN8fCU-rzU,2003.0,7,10,2011,Honey,Career Suicide,tt0322589 ewwKExvkqXQ,1984.0,2,10,2011,Repo Man,You're All Right!,tt0087995 UephHvStdWw,1989.0,8,9,2011,Born on the Fourth of July,Your Yankee Doodle Dandy Come Home,tt0096969 eeGuOguh33o,2003.0,4,10,2011,Honey,Miss Thing,tt0322589 QcubF7zXxwo,2007.0,6,9,2011,Eastern Promises,Reasonable Responses,tt0765443 ClQNLSnl1ow,2002.0,9,10,2011,Big Fat Liar,Give Me Back My Monkey,tt0265298 m_xLtlNx7Io,2007.0,7,9,2011,Eastern Promises,Soccer Game Killing,tt0765443 fOHbTh1Wo4o,2007.0,9,9,2011,Eastern Promises,Progress Report,tt0765443 4rJgIW-Qwzk,2007.0,5,9,2011,Eastern Promises,The Exchange,tt0765443 Whw_HyeXyCY,2007.0,4,9,2011,Eastern Promises,Ordinary People,tt0765443 -WW51YaWO-4,2006.0,6,10,2011,Children of Men,Kee Opens Up,tt0206634 fRdo188PjXA,2007.0,8,9,2011,Eastern Promises,Tattoo Ceremony,tt0765443 bBg5uLCQrbU,2007.0,3,9,2011,Eastern Promises,Prayers For the Prostitute,tt0765443 cyrDoGdif_o,2007.0,2,9,2011,Eastern Promises,Anna's Ride Home,tt0765443 EddCNkvpmjw,2006.0,3,10,2011,Children of Men,The Plan for Kee,tt0206634 t5CxCy7VC7M,2007.0,1,9,2011,Eastern Promises,Thawing the Corpse,tt0765443 8K84sx9EJzc,2006.0,4,10,2011,Children of Men,Can't Trust The Fishes,tt0206634 iU1C20Ap8og,2002.0,5,10,2011,Ali G Indahouse,Tight Rhymes for a Honky,tt0284837 klz6IVHfHpY,2002.0,6,10,2011,Ali G Indahouse,R-E-S-T-E-C-P,tt0284837 5HaKHp8glPc,2010.0,10,10,2011,Scott Pilgrim vs. the World,Kicking Gideon's Ass,tt0446029 _7vyrudcgOQ,2010.0,9,10,2011,Scott Pilgrim vs. the World,Level One: X2 Bonus,tt0446029 N13WI3oVda8,2010.0,3,10,2011,Scott Pilgrim vs. the World,How Are You Doing That With Your Mouth?,tt0446029 ILwoKfeDJO4,2010.0,1,10,2011,Scott Pilgrim vs. the World,The A-Lister,tt0446029 JcuE90flGj4,1990.0,7,10,2011,Opportunity Knocks,Bar Mitzvah Dancing,tt0100301 NZ94hNaoyLA,2002.0,9,10,2011,About a Boy,I'm Not Your Father,tt0276751 dLpCZ8g5uK8,2010.0,5,10,2011,Scott Pilgrim vs. the World,The Vegan Police,tt0446029 US9enXEHnR4,2011.0,5,-1,2011,The Rite,She Doesn't Need a Priest,tt1161864 SzO7T8P4_JA,2011.0,6,-1,2011,The Rite,Close the Door Please,tt1161864 fZXtCHoRb50,2007.0,6,9,2011,Charlie Wilson's War,The Nerdy Kid in the White Shirt,tt0472062 1NQhKtWHtmQ,2011.0,4,-1,2011,The Rite,She Should See a Psychiatrist,tt1161864 -c_ctZ4lUCk,2007.0,4,9,2011,Charlie Wilson's War,The Day I Fell in Love with America,tt0472062 WjJQ6L_BS58,2011.0,3,-1,2011,The Rite,Father Lucas Gets Results,tt1161864 SuRxmapiDeU,2007.0,7,9,2011,Charlie Wilson's War,Belly Dancer Diplomacy,tt0472062 NJ8rJ-i-OKE,1990.0,3,10,2011,Opportunity Knocks,Tipping the Bathroom Attendant,tt0100301 LdsaucLvRb4,1994.0,8,10,2011,Reality Bites,You Look Like a Doily,tt0110950 81hWxoHF1uA,2011.0,2,-1,2011,The Rite,Interested in the Truth,tt1161864 zCv0AZeyCaQ,2011.0,1,-1,2011,The Rite,Loss of Faith,tt1161864 zIJgAMpRG-k,1979.0,9,11,2011,1941,Don't You Dare!,tt0078723 xg4OR0Tpy6U,2002.0,6,10,2011,About a Boy,A Crap Christmas,tt0276751 p-YvF5eXwYM,1979.0,3,11,2011,1941,Patriotic Duty,tt0078723 iBbWqmzzKMU,2002.0,4,10,2011,About a Boy,You Don't Have a Kid,tt0276751 4qMv02zxgdM,1979.0,4,11,2011,1941,Japanese Christmas Trees,tt0078723 VsdeqOdkdTY,1984.0,9,10,2011,Firestarter,Showdown at the Barn,tt0087262 pPZMrs3QGug,1984.0,6,10,2011,Firestarter,Go to Hell!,tt0087262 _cZZ4xkgUBg,1996.0,10,10,2011,Mystery Science Theater 3000: The Movie,Battling the Mutant,tt0117128 NpiIAuEOzmA,1996.0,5,10,2011,Mystery Science Theater 3000: The Movie,The Brack Show,tt0117128 m2giPgQXSn4,1996.0,4,10,2011,Mystery Science Theater 3000: The Movie,The Interocitor,tt0117128 0EC3NTMOF4Q,1996.0,3,10,2011,Mystery Science Theater 3000: The Movie,Special Delivery,tt0117128 _dl2L4v6ecM,2000.0,5,10,2011,"O Brother, Where Art Thou?",The Sirens,tt0190590 Vd1j1GAExH0,1996.0,1,10,2011,Mystery Science Theater 3000: The Movie,A Push-Button Age,tt0117128 FRdIXmfm6PA,1977.0,8,10,2011,Slap Shot,Reggie vs. The Owner,tt0076723 fxWE6pnuPzo,1977.0,2,10,2011,Slap Shot,Fashion Show,tt0076723 9RTPdAAdw30,2000.0,10,10,2011,"O Brother, Where Art Thou?",The South Is Gonna Change,tt0190590 ZruKu2N6nQw,1958.0,4,11,2011,Vertigo,What Happened?,tt0052357 WsrIYleq2KY,2000.0,9,10,2011,"O Brother, Where Art Thou?",Saved by the Flood,tt0190590 FZ65jfSwpAk,1958.0,5,11,2011,Vertigo,Wandering Together,tt0052357 tN4mmLewz_E,1941.0,5,9,2011,Sullivan's Travels,Washed Up Picture Director,tt0034240 gLvcrsbliOo,2000.0,8,10,2011,"O Brother, Where Art Thou?",Klan Rally,tt0190590 rW23RsUTb2Y,1975.0,2,10,2011,Jaws,Get out of the Water Scene,tt0073195 FKDCoc_i-ZU,1941.0,2,9,2011,Sullivan's Travels,The Valley of Adversity,tt0034240 vUgs2O7Okqc,1998.0,7,10,2011,Fear and Loathing in Las Vegas,The High Water Mark,tt0120669 u9S41Kplsbs,1975.0,7,10,2011,Jaws,The Indianapolis Speech Scene,tt0073195 dPi40lQetew,1975.0,3,10,2011,Jaws,"The Head, the Tail, the Whole Damn Thing Scene",tt0073195 ayl2X5zfUAk,2004.0,3,12,2011,Ray,Little Goes Blind,tt0350258 q4Qlk7sfZfQ,1932.0,9,9,2011,Horse Feathers,Pinky's Fourth Quarter Heroics,tt0023027 0lCPmaq960E,1932.0,8,9,2011,Horse Feathers,Romance on a Canoe,tt0023027 nP7OKtlMO2w,1932.0,7,9,2011,Horse Feathers,Three's a Crowd,tt0023027 OjS7LxDYad8,1932.0,6,9,2011,Horse Feathers,Class Clowns,tt0023027 3skIjrkta2Q,1932.0,5,9,2011,Horse Feathers,Prof. Wagstaff's Office,tt0023027 j7PgnjEiMcA,1932.0,3,9,2011,Horse Feathers,Recruiting at the Speakeasy,tt0023027 i9Iy9amffa4,1932.0,4,9,2011,Horse Feathers,Everyone Says I Love You,tt0023027 PUV_2cqbrbo,1932.0,2,9,2011,Horse Feathers,Advice for Dad,tt0023027 29E6GbYdB1c,1932.0,1,9,2011,Horse Feathers,I'm Against It,tt0023027 Ciq9ts02ci4,1930.0,2,10,2011,All Quiet on the Western Front,The Charge,tt0020629 er2a5WhYU-4,1930.0,5,10,2011,All Quiet on the Western Front,I Want To Help You,tt0020629 rSPj_G2yVz4,1930.0,7,10,2011,All Quiet on the Western Front,To Die For Your Country,tt0020629 8cp_Be49Tyk,1984.0,10,10,2011,Cloak & Dagger,A Real Hero,tt0087065 kPsFoudYVSg,1995.0,8,9,2011,The Hunted,Teaching Paul a Lesson,tt0113360 RY-4FCh9UFY,1995.0,9,9,2011,The Hunted,Showdown in the Rain,tt0113360 qdK7QVuaSlM,1995.0,6,9,2011,The Hunted,Train Face-Off,tt0113360 YGf3jBzkUeg,1995.0,3,9,2011,The Hunted,Kinjo Deals with Failure,tt0113360 3fbtYisNC7c,1995.0,2,9,2011,The Hunted,Kinjo Kills Kirina,tt0113360 Sj8eNDOZAAk,1995.0,4,9,2011,The Hunted,There Are No Ninja Cults,tt0113360 qhquCQirt48,1948.0,7,11,2011,Abbott and Costello Meet Frankenstein,Return of the Count,tt0040068 QRizQTLmAMU,1992.0,10,10,2011,Bob Roberts,They Killed Bugs Raplin,tt0103850 RjYsIv90zWk,1948.0,6,11,2011,Abbott and Costello Meet Frankenstein,Where Are They?,tt0040068 -h62m4d4MmA,1992.0,6,10,2011,Bob Roberts,Shut It Down,tt0103850 VE6K18Mfln4,1992.0,8,10,2011,Bob Roberts,Covert War,tt0103850 88HW9wtz3F4,1948.0,2,11,2011,Abbott and Costello Meet Frankenstein,Keep Your Shirt On,tt0040068 1Oetxnq_OG4,1992.0,3,10,2011,Bob Roberts,Tunnel Vision,tt0103850 QJFwZP8DgVE,1992.0,5,10,2011,Bob Roberts,Motorcycle Mishap,tt0103850 x0YLLkr7VfU,1948.0,10,11,2011,Abbott and Costello Meet Frankenstein,Evading The Monsters,tt0040068 Er54USCnsds,1992.0,9,10,2011,Death Becomes Her,Ernest's Escape,tt0104070 ZpXzLVGlnc8,1992.0,8,10,2011,Death Becomes Her,Shovel Showdown,tt0104070 D_A6gdlNh00,1992.0,7,10,2011,Death Becomes Her,Madeline's Revenge,tt0104070 ycpEjbV4KRM,1992.0,10,10,2011,Death Becomes Her,Friends Forever,tt0104070 KZ04pEN715I,1991.0,10,10,2011,Cool as Ice,Get Wit' It,tt0101615 03a-vG6wHDI,1992.0,6,10,2011,Death Becomes Her,Medical Mystery,tt0104070 ErqotNH65_E,1992.0,5,10,2011,Death Becomes Her,Madeline Takes a Fall,tt0104070 BWWFJ2yjQGE,1992.0,4,10,2011,Death Becomes Her,Plotting Madeline's Death,tt0104070 yqTTejoQVXw,1992.0,3,10,2011,Death Becomes Her,Eternal Youth,tt0104070 zJ5Nxx3H-Tc,1991.0,9,10,2011,Cool as Ice,I Forgot Somethin',tt0101615 Y1aP-YyBdIw,1991.0,8,10,2011,Cool as Ice,Johnny the Badass,tt0101615 b8oFKKPfgi0,1991.0,6,10,2011,Cool as Ice,Smooth as Ice,tt0101615 8aW-vJWY87I,1991.0,5,10,2011,Cool as Ice,Homeboy This!,tt0101615 NaGkSrOXOp4,1973.0,5,8,2011,High Plains Drifter,He Shot My Ear Off,tt0068699 fr5rDEInWQA,1986.0,8,9,2011,The Money Pit,Home Crap Home,tt0091541 MqMD1DK0CTQ,1991.0,7,10,2011,Cool as Ice,Kidnapping Tommy,tt0101615 s-pgK_Rvuwc,1992.0,1,10,2011,Death Becomes Her,At Home With Helen,tt0104070 Zd17-69y_i8,1973.0,6,8,2011,High Plains Drifter,A Whipping Revenge,tt0068699 0yOwWkbamyM,1991.0,4,10,2011,Cool as Ice,The People's Choice,tt0101615 bsBxt2RpiIU,2000.0,2,10,2011,The Skulls,Luke's New Friend,tt0192614 3dMF8cHKHZA,1986.0,3,9,2011,The Money Pit,Sleazy Carpenter,tt0091541 HBdaCz2BeoY,1991.0,3,10,2011,Cool as Ice,'Cause I Wanna Know,tt0101615 _ElAIqSBTKc,1991.0,2,10,2011,Cool as Ice,Get With the Hero,tt0101615 j477dAxaeck,2008.0,10,10,2011,Burn After Reading,Clusterf***,tt0887883 z09OYmZg6-Q,2008.0,9,10,2011,Burn After Reading,Tuchman Marsh,tt0887883 y7gfbVpraWw,1991.0,1,10,2011,Cool as Ice,She Likes Me,tt0101615 lxQZQ8uXBwg,2000.0,8,10,2011,The Skulls,Chloe Loves Luke,tt0192614 hOgBvXEmScc,2000.0,7,10,2011,The Skulls,Caleb Issues A Warning,tt0192614 c6dmj-WpTW4,1992.0,2,10,2011,Candyman,Sweets To The Sweet,tt0103919 Zo3a3XvzTaA,1992.0,6,10,2011,Candyman,Innocent Blood,tt0103919 8x_8B2imlgE,1996.0,1,10,2011,Fear,All the Time in the World,tt0117381 -yZVme3ToO8,1997.0,7,10,2011,The Apostle,On My Way to Heaven,tt0118632 z_r6KUYYO5E,1997.0,5,10,2011,The Apostle,Radio Waves,tt0118632 4uHWjeoTol8,2010.0,8,-1,2011,Yogi Bear,Rafting Danger,tt1302067 g0AMLVSBfSs,2010.0,4,-1,2011,Yogi Bear,Boo-Boo Cam,tt1302067 Wy-H77tovC8,2010.0,7,-1,2011,Yogi Bear,Check the Safety Manual,tt1302067 xp7F-8G_bPI,2010.0,6,-1,2011,Yogi Bear,"Run, Boo-Boo, Run!",tt1302067 fwI7COVTitQ,2010.0,5,-1,2011,Yogi Bear,Razzle Dazzle,tt1302067 MalJ_GPU4vI,2010.0,3,-1,2011,Yogi Bear,Ranger Smith At Your Service,tt1302067 sJwgNs3BWYY,2010.0,1,-1,2011,Yogi Bear,Pic-a-nic Basket,tt1302067 Dbz02p90CV8,1930.0,4,9,2011,Animal Crackers,Chase'a Da Women,tt0020640 ZuVe3leQQgE,1930.0,8,9,2011,Animal Crackers,You Are A Contemptible Cur!,tt0020640 _YrNQaXdOxU,1930.0,1,9,2011,Animal Crackers,"Hello, I Must Be Going",tt0020640 T6RkPxawpY0,1930.0,3,9,2011,Animal Crackers,"Well, Three Anyway",tt0020640 cvmcGY_VwvU,1930.0,6,9,2011,Animal Crackers,Where's The Flesh?,tt0020640 5xUMeF5rgQo,1930.0,2,9,2011,Animal Crackers,The Professor!,tt0020640 1m9DjG3QRzs,1930.0,9,9,2011,Animal Crackers,You Sure Surprised Me,tt0020640 B9nqewDmx2U,1930.0,5,9,2011,Animal Crackers,Let's Play Bridge,tt0020640 FZUfhfHbjE4,1930.0,7,9,2011,Animal Crackers,"Africa, God's Country",tt0020640 5WuYr3fFNFg,1991.0,10,10,2011,Jungle Fever,A Disturbing Vision,tt0102175 -sv5DJfslVM,1991.0,8,10,2011,Jungle Fever,I Don't Love You,tt0102175 Cgd47hmpvE8,1991.0,4,10,2011,Jungle Fever,Thrown Out,tt0102175 cVIS31ghLNQ,1997.0,9,10,2011,The Lost World: Jurassic Park,Downtown Rampage,tt0119567 w7tqVEdyteg,1997.0,8,10,2011,The Lost World: Jurassic Park,Backyard Dino,tt0119567 AL7UDurxc3w,1997.0,10,10,2011,The Lost World: Jurassic Park,Learning to Kill,tt0119567 9t8iEpdabms,1997.0,5,10,2011,The Lost World: Jurassic Park,T-Rex in the Tent,tt0119567 2h8rH8zxA64,1997.0,6,10,2011,The Lost World: Jurassic Park,Raptor vs. Gymnast,tt0119567 p8fPj1-nKw0,1997.0,7,10,2011,The Lost World: Jurassic Park,The T-Rex Takes San Diego,tt0119567 LpxwR_9EhlY,1997.0,3,10,2011,The Lost World: Jurassic Park,Over the Cliff,tt0119567 mZ2kxdQf3t0,1997.0,4,10,2011,The Lost World: Jurassic Park,Ripped Apart,tt0119567 eFqD0yeyGTs,2000.0,9,10,2011,Bring It On,Mix Tape Dancing,tt0204946 HqT0L6jFMNs,2000.0,7,10,2011,Bring It On,Bikini Car Wash,tt0204946 CYGtLUZg1xA,1997.0,2,10,2011,The Lost World: Jurassic Park,Mommy's Very Angry,tt0119567 8NaBHCuxqhA,1997.0,1,10,2011,The Lost World: Jurassic Park,The InGen Team Arrives,tt0119567 69vn_WxKBUs,1988.0,9,10,2011,Twins,Sleeping on the Floor,tt0096320 pJJjycrT0RA,1988.0,4,10,2011,Twins,Singing in the Shower,tt0096320 hgzSTQiMxj4,2003.0,9,10,2011,American Wedding,The Real Steve Stifler,tt0328828 0tjKGAwyCIY,2003.0,5,10,2011,American Wedding,Stifler's Coming,tt0328828 4lat6XqtJ0A,2003.0,3,10,2011,American Wedding,Stifler's Not Invited,tt0328828 Du95opzY8qg,2001.0,10,10,2011,Jurassic Park 3,Returning the Raptor Eggs,tt0163025 -WmDszVxti0,2007.0,8,9,2011,Charlie Wilson's War,Anti-Helicopter Light Missile,tt0472062 cVA4BO2v7zs,2001.0,7,10,2011,Jurassic Park 3,A Broken Reunion,tt0163025 Q-LFUnE8zzE,2001.0,9,10,2011,Jurassic Park 3,Persistent Beast,tt0163025 -T16rxR-nCo,2003.0,2,10,2011,American Wedding,Wedding Plans,tt0328828 KFJmxST-xRI,2001.0,8,10,2011,Jurassic Park 3,Billy Saves Erik,tt0163025 2vOhL_Hw-gg,2001.0,6,10,2011,Jurassic Park 3,What Are You Doing Here?,tt0163025 TTLjOAdckzM,2001.0,5,10,2011,Jurassic Park 3,They Set a Trap,tt0163025 jT8TUowrkLU,2001.0,2,10,2011,Jurassic Park 3,Spinosaurus Attack!,tt0163025 trPOKL7Nguo,2001.0,4,10,2011,Jurassic Park 3,Raptor Ambush,tt0163025 n7cRx_7umjE,2001.0,1,10,2011,Jurassic Park 3,Crash Landing,tt0163025 gTVoFCP1BLg,1982.0,7,10,2011,E.T.: The Extra-Terrestrial,Across the Moon,tt0083866 M7tNqjsclhs,2001.0,3,10,2011,Jurassic Park 3,Spinosaurus vs. T-Rex,tt0163025 QmrEOTm0rOc,1982.0,4,10,2011,Sophie's Choice,Extermination,tt0084707 PwjMgnUNcBk,1982.0,8,10,2011,Sophie's Choice,Free My Little Boy,tt0084707 eKJv3dWsZ7E,2010.0,2,-1,2011,Due Date,Traveling with a Child,tt1231583 k79KJYXrBkc,2010.0,1,-1,2011,Due Date,This is My Daddy,tt1231583 Kkh9BnEDT_s,1982.0,10,10,2011,Sophie's Choice,A Flight From Memory,tt0084707 R2Dxx3_iF14,1982.0,9,10,2011,Sophie's Choice,I Can't Choose!,tt0084707 PcMHygYMF6Q,1982.0,7,10,2011,Sophie's Choice,An Enemy of the Reich,tt0084707 5_yRovTM8sY,1982.0,6,10,2011,Sophie's Choice,The Resistance,tt0084707 fk7GWw7MagU,1982.0,2,10,2011,Sophie's Choice,Scars,tt0084707 L3YhZvt8BlU,1982.0,1,10,2011,Sophie's Choice,New Friends,tt0084707 gEygOJWaMk0,1982.0,5,10,2011,Sophie's Choice,Remembering Josef,tt0084707 O5Dec6RdFzw,2003.0,8,10,2011,American Wedding,"""Chocolate"" Truffle",tt0328828 nqaJ3f0z3Lw,2003.0,7,10,2011,American Wedding,Hairy Cake,tt0328828 nqz6wwDRWiE,2003.0,4,10,2011,American Wedding,Gentleman Steve,tt0328828 O5tNdOzsbvQ,2003.0,6,10,2011,American Wedding,Interrupted Bachelor Party,tt0328828 w0Z44BIDPPc,1982.0,3,10,2011,The Thing,Human Mutant,tt0084787 9blGmvMjHlk,2003.0,1,10,2011,American Wedding,Ready to Burst,tt0328828 td3p2XKHP2M,1933.0,8,10,2011,Duck Soup,I Object!,tt0023969 JVgqhPqHPa4,1982.0,9,10,2011,The Thing,F*** You Too!,tt0084787 GA4Ozqt7338,1982.0,10,10,2011,The Thing,"Why Don't We Wait Here, See What Happens",tt0084787 ZH7hyzPIbp0,1982.0,4,10,2011,The Thing,MacReady's Tape Recorder,tt0084787 oZzS9hBwaqg,1982.0,8,10,2011,The Thing,Warm Things Up a Little,tt0084787 uSsUoxlSADk,1933.0,2,10,2011,Duck Soup,The Laws of My Administration,tt0023969 YDDzjijc6jY,1982.0,7,10,2011,The Thing,Tied to This Couch,tt0084787 FNSNLXNnx-o,1933.0,3,10,2011,Duck Soup,These Are My Spies,tt0023969 gP2sCE166o4,2010.0,2,-1,2011,Hereafter,"It's Not a Gift, It's a Curse",tt1212419 ZXHuGyv1KXM,1982.0,1,10,2011,The Thing,The Norwegian Dog Hunt,tt0084787 5cqQdDitGuA,2010.0,1,-1,2011,Hereafter,I Don't Do That Anymore,tt1212419 NtgFKdWcKXY,1982.0,2,10,2011,The Thing,It's Weird and Pissed Off,tt0084787 i8WK-3pUpwk,2009.0,10,10,2011,Coraline,The Creepy Hand,tt0327597 HOp1wRImIxY,2009.0,6,10,2011,Coraline,The Play's the Thing,tt0327597 91nfNp7MVIw,2009.0,8,10,2011,Coraline,Good Kitty,tt0327597 avt_f-TaDBs,2009.0,5,10,2011,Coraline,The Magical Garden,tt0327597 2hcVZo8jP6A,2009.0,7,10,2011,Coraline,Buttons for Eyes,tt0327597 w0C4gjdag8o,2009.0,4,10,2011,Coraline,Welcome Home!,tt0327597 wyaGIaJsmTg,2009.0,3,10,2011,Coraline,'s Other Parents,tt0327597 rx1TXzxMEfo,2009.0,1,10,2011,Coraline,Why Were You Born,tt0327597 R_VEQI2nS48,2001.0,8,10,2011,Mulholland Dr.,This is the Girl,tt0166924 NMaLs9vr7ko,2009.0,3,-1,2011,Where the Wild Things Are,They Act Weird,tt0386117 kA10xksmpCI,2009.0,4,-1,2011,Where the Wild Things Are,What's Your Story?,tt0386117 jwrWJXtNYWU,2009.0,2,-1,2011,The Invention of Lying,Getting Fired,tt1058017 U3nWo59iBg8,1941.0,9,10,2011,The Lady Eve,What a Friend!,tt0033804 rkrnVkFn59c,2009.0,2,10,2011,Coraline,Passage to the Other World,tt0327597 1T53iV8HKXQ,1941.0,10,10,2011,The Lady Eve,Positively the Same Dame!,tt0033804 I8ilwspLbDM,1941.0,8,10,2011,The Lady Eve,Not Over a Sofa!,tt0033804 9VEScwL3KGQ,1941.0,6,10,2011,The Lady Eve,Father Loves to Lose,tt0033804 JZhLiJowzNY,1941.0,7,10,2011,The Lady Eve,Charles Meets,tt0033804 RBrzUwP2whM,1941.0,5,10,2011,The Lady Eve,"I Like Him, Too",tt0033804 dOnoBJvtVMU,1941.0,4,10,2011,The Lady Eve,An Ideal Mate,tt0033804 Y3Q6BzRtl5w,1941.0,3,10,2011,The Lady Eve,Who's Emma?,tt0033804 vkoJH4fum58,1999.0,5,-1,2011,Three Kings,A Terrible Haircut,tt0120188 jL6oromerXE,1999.0,3,-1,2011,Three Kings,This Isn't Right,tt0120188 9acYlZC9RLI,1999.0,4,-1,2011,Three Kings,You Can't Come with Us,tt0120188 Q_aPecwFK08,1941.0,2,10,2011,The Lady Eve,"Hello, Hopsie!",tt0033804 qhH634B4jGg,1999.0,2,-1,2011,Three Kings,Calling Gooney Bird,tt0120188 fZ7X5JDKmSI,1941.0,1,10,2011,The Lady Eve,She Knows His Type,tt0033804 MEl5g32bzMY,1999.0,1,-1,2011,Three Kings,I'm Sorry I Hit You,tt0120188 5xiAs8GGqD8,1973.0,6,-1,2011,The Exorcist,That Thing Upstairs Isn't My Daughter,tt0070047 PcBKId4l6LA,1973.0,5,-1,2011,The Exorcist,Mother!,tt0070047 g5m411zcNA4,1973.0,2,-1,2011,The Exorcist,Is There Someone Inside You?,tt0070047 Nd5HqEJuY1g,1973.0,3,-1,2011,The Exorcist,That Was No Spasm,tt0070047 swpveBgb0Zs,2010.0,6,-1,2011,Life as We Know It,A Date with Dr. Love,tt1055292 ZZGHXZmxlZA,2010.0,5,-1,2011,Life as We Know It,The Messer Magic,tt1055292 C_4mdGA9ehk,1973.0,1,-1,2011,The Exorcist,Burke Is Dead,tt0070047 DnYv2MyCXss,2010.0,4,-1,2011,Life as We Know It,The Baby Cab Killer,tt1055292 9CmgJI8aGDg,2010.0,7,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,Use Your Gizzard,tt1219342 W6IeoTNRVf4,2010.0,3,-1,2011,Life as We Know It,Changing Diapers,tt1055292 4Albtnu3zyQ,2010.0,2,-1,2011,Life as We Know It,Learning to Self-Soothe,tt1055292 HWFpzw87VZM,2010.0,5,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,I am the Echidna,tt1219342 8YSVapFtvtU,2010.0,1,-1,2011,Life as We Know It,Guardianship Arrangements,tt1055292 80ZafDq4xq4,2010.0,6,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,Basic Training,tt1219342 p4SqclCqxuU,2010.0,3,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,Name's Digger,tt1219342 OBWwzOCkE_E,2010.0,4,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,Twilight,tt1219342 5ZzIGV7JAwY,2010.0,1,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,My Beak,tt1219342 wq3EAVEnW8Q,2010.0,2,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,I Am Nyra,tt1219342 zFgFyCSZUvU,2010.0,9,-1,2011,The Town,Get the Plunger!,tt0840361 paNPEeQVCTc,2010.0,8,-1,2011,The Town,I Want to Go With You,tt0840361 uRxCU1MW8B4,2010.0,4,-1,2011,The Town,How Come You Never Looked For Her?,tt0840361 dLjnIpWhLZ4,2010.0,7,-1,2011,The Town,We're Holding Court in the Street,tt0840361 BJ3BAzRulPY,2010.0,6,-1,2011,The Town,How Do You Know Doug?,tt0840361 NrDO7L8jXWo,2010.0,5,-1,2011,The Town,I Never Asked You To,tt0840361 t9eDVFrQDXM,2010.0,3,-1,2011,The Town,You Dummies Shot a Guard,tt0840361 FnmVnBcfpWw,2010.0,2,-1,2011,The Town,You Working with the FBI?,tt0840361 -o1N2unFkSs,2010.0,1,-1,2011,The Town,She Didn't See Anything,tt0840361 Ya00KlBMEyc,2010.0,7,-1,2011,Going the Distance,Are You Dating?,tt1322312 JMBzKJj-nIE,2010.0,6,-1,2011,Going the Distance,You Know How Much I Love My Sister,tt1322312 mm93ELyLN1w,2010.0,8,-1,2011,Going the Distance,Are You Introducing Yourself?,tt1322312 hERyYjy3O3U,2010.0,4,-1,2011,Going the Distance,Women Who Like Mustaches,tt1322312 eK5PghRFnBI,2010.0,5,-1,2011,Going the Distance,Tanning Salon,tt1322312 unl0GXfJRLA,2010.0,3,-1,2011,Going the Distance,I'm Crazy About You,tt1322312 ftAorMqqjy8,2010.0,2,-1,2011,Going the Distance,Can I Get Your Drink Order?,tt1322312 lhHv2EyaaNc,2010.0,9,-1,2011,Lottery Ticket,Reverend Taylor's Vision,tt0979434 MfBkwdh4GU4,2010.0,1,-1,2011,Going the Distance,Take Me to Berlin,tt1322312 OkvebeqIrqk,2010.0,11,-1,2011,Lottery Ticket,Where's My Ticket?,tt0979434 hW1KqOVCeKw,2010.0,10,-1,2011,Lottery Ticket,Giving Back,tt0979434 wV-0rTzEedk,2010.0,8,-1,2011,Lottery Ticket,Shopping Spree,tt0979434 hVQT9mDDeJo,2008.0,5,11,2011,Forgetting Sarah Marshall,Yoga Class,tt0800039 X-_LZp9jUgQ,2010.0,7,-1,2011,Lottery Ticket,Going to Jimmy,tt0979434 6bANKvFGxGU,2010.0,6,-1,2011,Lottery Ticket,I Got You,tt0979434 P9Fg8M0JCHE,2010.0,5,-1,2011,Lottery Ticket,What Can Go Wrong?,tt0979434 oNGklu1muXI,2010.0,3,-1,2011,Lottery Ticket,Man,tt0979434 b_wnD6jxREU,1989.0,9,9,2011,Field of Dreams,A Catch With Dad,tt0097351 kGpNxt3bD6E,2010.0,4,-1,2011,Lottery Ticket,Winning the Lottery,tt0979434 9sx5r-n9uYE,2010.0,2,-1,2011,Lottery Ticket,Thump,tt0979434 0RlJNtKi_Pc,2010.0,1,-1,2011,Lottery Ticket,Play My Numbers,tt0979434 x0Fnxdv5rJ8,2010.0,9,-1,2011,Flipped,Lunch Dates,tt0817177 nOQCz7STLIY,2010.0,8,-1,2011,Flipped,You Hate Her,tt0817177 be-Ou9Xkh48,2010.0,7,-1,2011,Flipped,Invited for Dinner,tt0817177 M4UpIJYB9Xo,2010.0,4,-1,2011,Flipped,The Whole Picture,tt0817177 QfVKP_ibzsI,2010.0,6,-1,2011,Flipped,Dinner Plans,tt0817177 uNPU0cPPsmA,2010.0,2,-1,2011,Flipped,Meeting Bryce Loski,tt0817177 5aa_kvfMxBs,2010.0,1,-1,2011,Flipped,Meeting Juli Baker,tt0817177 CdQ7AbtXZaw,2010.0,5,-1,2011,Flipped,Where the Tree Was,tt0817177 mRoffE53BJk,2010.0,6,10,2011,Scott Pilgrim vs. the World,Bi-Furious,tt0446029 UgFBbUinHSw,2010.0,3,-1,2011,Flipped,Tell Me About Your Friend,tt0817177 XjTFVcgR0qE,2010.0,2,10,2011,Scott Pilgrim vs. the World,The L-Word,tt0446029 IRvVdVENFmo,2010.0,7,10,2011,Scott Pilgrim vs. the World,Laters!,tt0446029 vqqGZBRBLcM,2010.0,4,10,2011,Scott Pilgrim vs. the World,Todd the Vegan,tt0446029 a88BNDMlPSE,2010.0,7,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,I Think I Like You,tt1287468 n4Mohc3SrHs,2010.0,3,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,The Tech Specialist,tt1287468 05nQ6FtAaYg,2010.0,6,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Kitty's Evil Plan,tt1287468 Dj8hhzx9Sfk,2010.0,5,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Cats Rule!,tt1287468 gGKNhGbPp6Y,2010.0,4,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Kitty Galore,tt1287468 uvPjPzmUC7w,2010.0,2,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Welcome to Dog HQ,tt1287468 GLH6JPoOLJY,2010.0,1,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Doggy Jail,tt1287468 yycyKndEWcA,2010.0,4,-1,2011,Inception,Dream a Little Bigger,tt1375666 9U7_NBIHsQk,2010.0,3,-1,2011,Inception,Shared Dreaming,tt1375666 RMGsvyrEB-E,2010.0,2,-1,2011,Inception,I Need an Architect,tt1375666 fpXngRB-VTw,2010.0,1,-1,2011,Inception,The Most Skilled Extractor,tt1375666 uySQvxQHbdI,2010.0,2,-1,2011,Jonah Hex,Train Heist,tt1075747 T04I6guPabI,2010.0,5,-1,2011,Jonah Hex,Can You Shoot?,tt1075747 EY2tpd1CejA,2010.0,4,-1,2011,Jonah Hex,They Searched You Pretty Darn Good,tt1075747 bNkeBqdWGzE,2010.0,3,-1,2011,Jonah Hex,He Don't Look so Tough,tt1075747 wuZwdLfxTQ8,2010.0,1,-1,2011,Jonah Hex,Cut Him Down!,tt1075747 qdrvmgnw1YQ,2009.0,2,-1,2011,Splice,It's Alive,tt1017460 2g7MZJfmBA4,2009.0,4,-1,2011,Splice,You're Part of Me,tt1017460 On364s5HiSk,2009.0,3,-1,2011,Splice,A Miracle,tt1017460 DCSeUhWzdBM,2010.0,9,-1,2011,Sex and the City 2,Girl's Night Out,tt1261945 KdMZwqYiRH8,2009.0,1,-1,2011,Splice,Not Due For Months,tt1017460 eolBcBPpwyE,2010.0,6,-1,2011,Sex and the City 2,The Best Mirage,tt1261945 2ovvUa5WXU4,2010.0,8,-1,2011,Sex and the City 2,Rikard,tt1261945 nImG5bpVpVI,2010.0,7,-1,2011,Sex and the City 2,A Hot Flash,tt1261945 PnMJqjE52VQ,2010.0,5,-1,2011,Sex and the City 2,One Week in Abu Dhabi,tt1261945 rpvLdqBrY8s,2010.0,3,-1,2011,Sex and the City 2,Work Woes,tt1261945 YHJnS2dsT-Q,2010.0,2,-1,2011,Sex and the City 2,The Hormone Whisperer,tt1261945 3oLuIPYxGpE,2010.0,5,-1,2011,The Losers,Children on Site,tt0480255 -qG1Hke8w_8,2010.0,4,-1,2011,Sex and the City 2,Happy Anniversary,tt1261945 JCruFiGN5h4,2010.0,1,-1,2011,Sex and the City 2,Here Come the Gays,tt1261945 9Ihxdc2RbIE,2010.0,4,-1,2011,The Losers,Feeling Better?,tt0480255 AoRafeVBNvc,2010.0,1,-1,2011,The Losers,Business Proposition,tt0480255 ExI6DdBEu4c,2010.0,3,-1,2011,The Losers,Under Attack,tt0480255 7hKcWzt4rBA,2010.0,2,-1,2011,The Losers,Chopper Jacked,tt0480255 9HGMxZEl60k,2010.0,10,-1,2011,Clash of the Titans,Release the Kraken,tt0800320 vvDkLhvUa2o,2010.0,8,-1,2011,Clash of the Titans,Medusa,tt0800320 oD4UHPNEZek,2010.0,7,-1,2011,Clash of the Titans,Take a Stand,tt0800320 k1pv94Y0fbw,2010.0,6,-1,2011,Clash of the Titans,Preparation for Medusa,tt0800320 CJBoHk_Ld1g,2010.0,9,-1,2011,Clash of the Titans,Calibos Battle,tt0800320 KbKQQZsQJwk,2010.0,4,-1,2011,Clash of the Titans,Scorpion Battle,tt0800320 YIZlw1Ou77Y,2010.0,3,-1,2011,Clash of the Titans,There's a God in You,tt0800320 Nv88ASiLmgk,1960.0,3,12,2011,Psycho,We All Go a Little Mad Sometimes,tt0054215 I9mJ2oBONug,1960.0,2,12,2011,Psycho,A Boy's Best Friend,tt0054215 -98BSUhcZtY,2010.0,5,-1,2011,Clash of the Titans,We Die for Each Other,tt0800320 A-FV2T68Bz4,2010.0,2,-1,2011,Clash of the Titans,The Son of Zeus,tt0800320 82KgLj5UKUc,2010.0,1,-1,2011,Clash of the Titans,We Are the Gods Now,tt0800320 Y3Ij2iWHFV0,2010.0,7,-1,2011,Cop Out,Munching on Chips,tt1385867 rm49NpSVgo4,2010.0,5,-1,2011,Cop Out,Stop Repeating Me!,tt1385867 ozAXbxleK-8,2010.0,3,-1,2011,Cop Out,A Research Monkey,tt1385867 -C7Fcg58rZU,2010.0,6,-1,2011,Cop Out,10-Year-Old Thief,tt1385867 DWl0gnig_X8,2010.0,4,-1,2011,Cop Out,Put the Gun Down!,tt1385867 sUhg39GEqGA,2010.0,1,-1,2011,Cop Out,A Horrible Actor,tt1385867 ZKDQJGSNJag,2010.0,2,-1,2011,Cop Out,Suspended Without Pay,tt1385867 4qg64Ml2OdE,2010.0,7,-1,2011,Valentine's Day,Do You Have a One Course Option?,tt0817230 NsQ4dm3q8f0,2010.0,8,-1,2011,Valentine's Day,What Are You Doing Tonight?,tt0817230 35RzyYwEnH0,2010.0,6,-1,2011,Valentine's Day,Why Do You Hate Heart Shaped Candy?,tt0817230 E_wUrAXTbPo,2010.0,3,-1,2011,Valentine's Day,We Might Get Along,tt0817230 _Xe_d5rtWpQ,2010.0,4,-1,2011,Valentine's Day,And Then I Liked Him,tt0817230 mTVRho54mAg,2010.0,1,-1,2011,Valentine's Day,She Said Yes!,tt0817230 dSRxB66FLV4,2010.0,2,-1,2011,Valentine's Day,Don't Be Mad,tt0817230 WMhx09c4TcQ,2010.0,3,-1,2011,Edge of Darkness,A Wise Man,tt1226273 7eng0FHSiNk,2010.0,4,-1,2011,Edge of Darkness,What Are You Going To Do?,tt1226273 M1VNPTj-1uc,2010.0,5,-1,2011,Edge of Darkness,Welcome to Hell,tt1226273 udn4UB_EZ1E,2010.0,1,-1,2011,Edge of Darkness,Meeting the Boss,tt1226273 aZiDvfhRpz4,2010.0,9,-1,2011,The Book of Eli,Solara Finds a Grenade,tt1037705 vdpUDOxQ0ao,2010.0,7,-1,2011,The Book of Eli,Old But Resilient,tt1037705 mAs4z9GV84Q,2010.0,4,-1,2011,The Book of Eli,Why Do You Want the Book?,tt1037705 BW4-PA9Xksw,2010.0,1,-1,2011,The Book of Eli,I'll Wait Here,tt1037705 ZERmWM-OrK0,2010.0,6,-1,2011,The Book of Eli,Teach Me,tt1037705 DqHxOQWW_Nw,2010.0,5,-1,2011,The Book of Eli,The Book Is a Weapon,tt1037705 fvuqUVSwpPY,2010.0,3,-1,2011,The Book of Eli,What Do You Want With Me?,tt1037705 jb0Cjzd2lKU,2009.0,8,-1,2011,Sherlock Holmes,It's a Band Saw,tt0988045 FRaIvI54IOw,2010.0,2,-1,2011,The Book of Eli,Thorns and Thistles,tt1037705 1WybekasErM,2009.0,7,-1,2011,Sherlock Holmes,Let It Breathe,tt0988045 3-EGP38lS5E,2009.0,5,-1,2011,Sherlock Holmes,A Matter of Professional Integrity,tt0988045 7RLU1N4-8SM,2009.0,6,-1,2011,Sherlock Holmes,When Do I Complain?,tt0988045 fbYS5f3GFek,2009.0,4,-1,2011,Sherlock Holmes,I Need You to Find Someone For Me,tt0988045 tesqTwX7cpc,1958.0,10,11,2011,Vertigo,Judy Becomes Madeleine,tt0052357 YjaEc9KUlBI,2009.0,3,-1,2011,Sherlock Holmes,The Gravity of Coming Events,tt0988045 mkn6s-f8PqM,2009.0,2,-1,2011,Sherlock Holmes,We Ain't Done Yet,tt0988045 DQO3aIpmIDg,2009.0,1,-1,2011,Sherlock Holmes,That's the Irene I Know,tt0988045 0lNb6NAV6jg,2003.0,8,10,2011,Honey,Rejects Michael,tt0322589 aPvptS4t6RA,2003.0,2,10,2011,Honey,Gets the Hookup,tt0322589 3KNEj-B5HB8,2003.0,10,10,2011,Honey,Missy Wants,tt0322589 KE-ok-meF3E,2009.0,9,-1,2011,Invictus,This is Our Destiny,tt1057500 0Z286w5pRSo,2009.0,4,-1,2011,Invictus,Finding Inspiration,tt1057500 zH57XU378EI,2009.0,6,-1,2011,Invictus,Township Rugby,tt1057500 yFMFSxDF3uU,2009.0,8,-1,2011,Invictus,Inspired by Mandela,tt1057500 Xekcysu64Rg,2009.0,7,-1,2011,Invictus,The President's Cell,tt1057500 3m1JShNLCYA,2009.0,5,-1,2011,Invictus,We Need Inspiration,tt1057500 25Lb1YpSEic,2009.0,3,-1,2011,Invictus,This is the Time to Build Our Nation,tt1057500 _fibH0WUWYg,2009.0,2,-1,2011,Invictus,The People Are Wrong,tt1057500 HHqi6ZB_F0U,2009.0,1,-1,2011,Invictus,Reconciliation and Forgiveness Start Here,tt1057500 rzXNFMVS7PM,2009.0,5,-1,2011,The Blind Side,You Wanna Do What?,tt0878804 9DaWcHIGk7I,2009.0,6,-1,2011,The Blind Side,I'm A Democrat,tt0878804 o8ETRMZt6kg,2009.0,2,-1,2011,The Time Traveler's Wife,Don't Marry Henry,tt0452694 1OCmZuUVZfA,2009.0,4,-1,2011,The Blind Side,He's Changing Mine,tt0878804 -85ubSkzSWg,2009.0,4,-1,2011,The Time Traveler's Wife,Winning the Lottery,tt0452694 eVarVWL4PwA,2009.0,3,-1,2011,The Time Traveler's Wife,Will You Marry Me?,tt0452694 givOs4_nb-I,2009.0,1,-1,2011,The Time Traveler's Wife,It's You,tt0452694 8WraflY6rl0,2009.0,6,-1,2011,Ninja Assassin,Brothers' Confrontation,tt1186367 bQzBPo2qRuk,2009.0,3,-1,2011,The Blind Side,It's Mine?,tt0878804 TipOwV7y_q4,2009.0,2,-1,2011,The Blind Side,Sleep Tight,tt0878804 pPjYhPGkhGA,2009.0,1,-1,2011,The Blind Side,Do You Have Any Place to Stay?,tt0878804 RoCmHW-wdtE,2009.0,5,-1,2011,Ninja Assassin,Street Fight,tt1186367 s_PLAOcbbzI,2009.0,5,-1,2011,The Box,Arthur Talks to Ryan,tt0362478 mV__PXYxQYY,2009.0,4,-1,2011,The Box,Phone Call From Arlington,tt0362478 QbVzoV4GgM8,2009.0,1,-1,2011,The Box,If You Push the Button,tt0362478 yaGbKy7gAkM,2009.0,3,-1,2011,The Box,The Offer Will Be Made to Someone Else,tt0362478 6HT1K-XoREU,2009.0,2,-1,2011,The Box,What Do You Want to Do?,tt0362478 mVcHdILwsXQ,2009.0,4,-1,2011,Ninja Assassin,Dock Ambush,tt1186367 EU70jtTYN0E,2009.0,2,-1,2011,Ninja Assassin,Without One of Your Senses,tt1186367 IgBQwCBi8vI,2009.0,5,-1,2011,The Informant!,I'm Gonna Be OK at the Company,tt1130080 SjNu8J7JQMk,2009.0,3,-1,2011,Ninja Assassin,They're Already in the Room,tt1186367 t6FIm6TCkCE,2009.0,1,-1,2011,Ninja Assassin,Pain Breeds Weakness,tt1186367 kYcvOPf4GqE,2009.0,6,-1,2011,The Invention of Lying,Birthday Coupon for Sex,tt1058017 ST9DTmR2xG4,2009.0,6,-1,2011,The Informant!,Who Else Did You Tell?,tt1130080 uAS_k95ZRUk,2009.0,3,-1,2011,The Informant!,Surveillance Malfunction,tt1130080 yVE7YDYgtHE,2009.0,2,-1,2011,The Informant!,No More FBI Cooperation,tt1130080 1JVewdBZyYA,2009.0,4,-1,2011,The Invention of Lying,I'll Always Be More Successful Than You,tt1058017 D_Acqs7T5-0,2009.0,4,-1,2011,The Informant!,The Next Company President,tt1130080 FF9t_GekWjU,2009.0,1,-1,2011,The Informant!,This Involves Price Fixing,tt1130080 VpehD7unUGw,2009.0,5,-1,2011,The Invention of Lying,I Think I'm in Your League,tt1058017 gILsE7uSUkA,2009.0,3,-1,2011,The Invention of Lying,You're Fired,tt1058017 3DmchoOLczY,2009.0,1,-1,2011,The Invention of Lying,First Date Honestly,tt1058017 wz_y0fibuQE,2009.0,5,-1,2011,Where the Wild Things Are,Dirt Clod Fight,tt0386117 f58Ba78abHg,2009.0,2,-1,2011,Where the Wild Things Are,What Comes After Dust,tt0386117 Doq_EUCSB5k,2009.0,4,-1,2011,Harry Potter and the Half-Blood Prince,In Love With Who?,tt0417741 RQH_q5kOlCE,2009.0,1,-1,2011,Where the Wild Things Are,I Like How You Destroy Stuff,tt0386117 je6L2clZOGM,2001.0,10,10,2011,Mulholland Dr.,Llorando,tt0166924 KM9SPmAD6M8,2009.0,2,-1,2011,Harry Potter and the Half-Blood Prince,"Quiet, Please",tt0417741 kI9rnng7ns0,2009.0,1,-1,2011,Harry Potter and the Half-Blood Prince,A Dark Memory,tt0417741 AXukn4q48sY,2009.0,5,-1,2011,Harry Potter and the Half-Blood Prince,I Know What You Did Malfoy,tt0417741 V-GgWCBVhrg,2009.0,3,-1,2011,Harry Potter and the Half-Blood Prince,But I Am the Chosen One,tt0417741 6DZ7DfrTDds,2001.0,9,10,2011,Mulholland Dr.,No Hay Banda,tt0166924 aeevxJaJl1U,2001.0,7,10,2011,Mulholland Dr.,Betty's Audition,tt0166924 rNjX3tQMygk,2001.0,6,10,2011,Mulholland Dr.,The Cowboy,tt0166924 e4pMjAtdmO0,2001.0,5,10,2011,Mulholland Dr.,Someone Is in Trouble,tt0166924 Sk990pKn7vY,2001.0,4,10,2011,Mulholland Dr.,No Way to Treat Your Wife,tt0166924 1atAz0BIlm0,1992.0,10,10,2011,Candyman,Burn Him!,tt0103919 TrqpRcocmrw,1992.0,9,10,2011,Candyman,'s Lair,tt0103919 B3rFARaSAws,1992.0,3,10,2011,Candyman,The Legend of,tt0103919 yusKlHgtvIE,2001.0,1,10,2011,Mulholland Dr.,Dan's Nightmare,tt0166924 920BmIe4nN4,1992.0,5,10,2011,Candyman,Be My Victim,tt0103919 vG6bW7_-CRQ,1992.0,4,10,2011,Candyman,Better Off Dead,tt0103919 77XaekZUvL0,1992.0,7,10,2011,Candyman,Believe In Me,tt0103919 7JlG7q-ld8M,2008.0,7,10,2011,Burn After Reading,Appearances Can Be Deceptive,tt0887883 3mycwnQWlug,1992.0,1,10,2011,Candyman,The Scariest Story I've Ever Heard,tt0103919 c38HJR-9vhU,2008.0,8,10,2011,Burn After Reading,Caught and Shot,tt0887883 7kMyom2sHyA,2008.0,4,10,2011,Burn After Reading,Raw Intelligence,tt0887883 EnFcN2CMNps,1988.0,5,10,2011,Twins,Born to Be Bad,tt0096320 hSe6p6SLuvI,2008.0,6,10,2011,Burn After Reading,Harry and Linda's Blind Date,tt0887883 mO8roISHjJo,2008.0,1,10,2011,Burn After Reading,Osbourne Is Out,tt0887883 q6zi7XGjQQw,2008.0,5,10,2011,Burn After Reading,I Got His Number,tt0887883 PJkmvYEqRVE,1987.0,9,9,2011,Harry and the Hendersons,Harry and His Family,tt0093148 LUi7mkGXDRo,2008.0,3,10,2011,Burn After Reading,Baby Crow's Feet,tt0887883 1d8oqIXtjdo,1987.0,8,9,2011,Harry and the Hendersons,"Goodbye, My Friend",tt0093148 qBFSCbptrJk,1987.0,7,9,2011,Harry and the Hendersons,There Are No Bigfeet!,tt0093148 x421Na9VfNE,1987.0,6,9,2011,Harry and the Hendersons,Dumpster Diving,tt0093148 euorMDBYxrk,2002.0,5,10,2011,About a Boy,I'm Bloody Ibiza,tt0276751 gWB-uAtqUIs,2002.0,8,10,2011,About a Boy,I'm Really Nothing,tt0276751 nfk-kn7YP04,1987.0,5,9,2011,Harry and the Hendersons,Sitting Lessons,tt0093148 Y5drWYjmJFY,1987.0,4,9,2011,Harry and the Hendersons,Hiding Harry,tt0093148 CJGNkuaveUE,2002.0,7,10,2011,About a Boy,Will Meets Rachel,tt0276751 42ikB9YlkW4,2002.0,10,10,2011,About a Boy,You're Sick,tt0276751 kZQwVWTB2hI,1948.0,11,11,2011,Abbott and Costello Meet Frankenstein,Death of the Monster,tt0040068 74256F5BtiI,2002.0,3,10,2011,About a Boy,Island Living,tt0276751 fpKl9lrLfx0,1987.0,3,9,2011,Harry and the Hendersons,Eating the Corsage,tt0093148 BxL5O2tuDtk,1987.0,2,9,2011,Harry and the Hendersons,It's Alive!,tt0093148 yJBIO7B_XI4,1987.0,1,9,2011,Harry and the Hendersons,Bear or Gorilla?,tt0093148 _KpSBVJq7jo,1948.0,8,11,2011,Abbott and Costello Meet Frankenstein,Take the Mask Off,tt0040068 19q6jSWFPCo,1948.0,9,11,2011,Abbott and Costello Meet Frankenstein,Do You Believe Me Now?,tt0040068 Pqw0GsAAzEo,2004.0,4,10,2011,In Good Company,A Bizarrely Honest Guy,tt0385267 3FWjipa2Ztw,2007.0,9,9,2011,Charlie Wilson's War,A Toast for the Vanquished,tt0472062 C3W5kkZLN50,1948.0,5,11,2011,Abbott and Costello Meet Frankenstein,The Wolf Man,tt0040068 4t7GADjRIuA,2007.0,3,9,2011,Charlie Wilson's War,Afghanistan Refugee Camp,tt0472062 l6NIVn6_m1c,1948.0,3,11,2011,Abbott and Costello Meet Frankenstein,Dracula Rises,tt0040068 l5s3_XV1rkA,1948.0,4,11,2011,Abbott and Costello Meet Frankenstein,Dracula Wakes Frankenstein Scene,tt0040068 Kr9_dJ6TPPQ,1948.0,1,11,2011,Abbott and Costello Meet Frankenstein,The Wolf Man Transforms,tt0040068 OHNZUmdqdv8,2007.0,5,9,2011,Charlie Wilson's War,Bugging the Scotch,tt0472062 wJmIEj-uVYk,2007.0,2,9,2011,Charlie Wilson's War,The Sexiest Woman Ever,tt0472062 sQ_4m2ocxhI,2007.0,1,9,2011,Charlie Wilson's War,Another Broken Window,tt0472062 pcqaeLRop58,1999.0,7,10,2011,Bowfinger,Guerrilla Filmmaking,tt0131325 NQFMeyWVe3g,1999.0,10,10,2011,Bowfinger,Chubby Rain Movie Premiere,tt0131325 wMgKj3QGv2o,1999.0,9,10,2011,Bowfinger,Gotcha Suckers!,tt0131325 oFwbpFJpQbg,1999.0,8,10,2011,Bowfinger,My Gonads,tt0131325 Q0i1ldFm-oI,1999.0,4,10,2011,Bowfinger,High-Heel Wearing Dog,tt0131325 9cb5Ka9SqGM,1999.0,5,10,2011,Bowfinger,Crossing the Freeway,tt0131325 E6yFlIQxp8g,1999.0,3,10,2011,Bowfinger,Buck the Wonder Slave,tt0131325 Yrx2bv_LoG0,1999.0,2,10,2011,Bowfinger,Spearchucker Says Hello!,tt0131325 SoP7TLCtylg,1999.0,6,10,2011,Bowfinger,Daisy's Topless Scene,tt0131325 0fwudBWsw9Q,2001.0,4,11,2011,American Pie 2,Was I Any Good?,tt0252866 KKjCm_IoPRQ,2001.0,3,11,2011,American Pie 2,Warm Champagne,tt0252866 Z7RKrb4jLOU,2001.0,1,11,2011,American Pie 2,Jim's Big Surprise,tt0252866 NlSuj6YIG94,2001.0,2,11,2011,American Pie 2,The One That Got Away,tt0252866 FpxOLhuNXfM,1975.0,10,10,2011,Jaws,Brody Kills the Beast Scene,tt0073195 r0ladY1kwco,1989.0,1,9,2011,Born on the Fourth of July,Ron Is Shot,tt0096969 pmLP0QQPqFw,1975.0,9,10,2011,Jaws,Quint Is Devoured Scene,tt0073195 cW7Q7UySxRA,1975.0,8,10,2011,Jaws,Hooper in the Cage Scene,tt0073195 gTWo9oLJOWk,1993.0,10,10,2011,Jurassic Park,T-Rex vs. the Raptors Scene,tt0107290 CwdGYMM2bHM,1975.0,5,10,2011,Jaws,Barrels Scene,tt0073195 dLjNzwEULG8,1975.0,6,10,2011,Jaws,Scars Scene,tt0073195 dnRxQ3dcaQk,1993.0,9,10,2011,Jurassic Park,Raptors in the Kitchen Scene,tt0107290 nM-RPO10aPY,1993.0,6,10,2011,Jurassic Park,They're Flocking This Way Scene,tt0107290 PscRUlsvhtI,1993.0,7,10,2011,Jurassic Park,Back in Business Scene,tt0107290 m7mbDPykHoc,1960.0,8,12,2011,Psycho,People Just Come and Go,tt0054215 yrEvK-tv5OI,1975.0,1,10,2011,Jaws,Chrissie's Last Swim Scene,tt0073195 iTLUzEjV3Bg,1960.0,9,12,2011,Psycho,I'm Not Capable of Being Fooled,tt0054215 iPt2PNpjOq4,1960.0,7,12,2011,Psycho,Sinking Marion's Car,tt0054215 ghew-s2zPjE,1960.0,4,12,2011,Psycho,Peeping on Marion,tt0054215 P-sWReV2DDQ,1958.0,11,11,2011,Vertigo,Judy Jumps,tt0052357 O888bu0QrMg,1958.0,1,11,2011,Vertigo,Officer Down,tt0052357 0fTXzdHoip8,1963.0,9,11,2011,The Birds,I Think You're Evil!,tt0056869 d921M-ACMM4,1993.0,5,10,2011,Jurassic Park,Nedry's Plan Goes Awry Scene,tt0107290 GjPCk494e5Q,1958.0,8,11,2011,Vertigo,The Bell Tower,tt0052357 pwOhqGhP-mk,1963.0,10,11,2011,The Birds,Attacked in the Attic,tt0056869 D15HPy4x73g,1963.0,8,11,2011,The Birds,Trapped in a Phone Booth,tt0056869 M0HjlCowwuM,1963.0,4,11,2011,The Birds,Eyes Pecked Out,tt0056869 IdOF7xg5lug,1963.0,7,11,2011,The Birds,Gas Station Explosion,tt0056869 v5Co3A3fLBo,1993.0,4,10,2011,Jurassic Park,Tyrannosaurus Rex Scene,tt0107290 JylK4HuKMvQ,1993.0,3,10,2011,Jurassic Park,The Sick Triceratops Scene,tt0107290 PJlmYh27MHg,1993.0,1,10,2011,Jurassic Park,Welcome to Scene,tt0107290 0WtDmbr9xyY,1960.0,5,12,2011,Psycho,The Shower,tt0054215 dYDxxHrlmUg,1960.0,12,12,2011,Psycho,She Wouldn't Even Harm a Fly,tt0054215 xWHYmNrAFlI,1960.0,11,12,2011,Psycho,The Truth About Mother,tt0054215 5bieIiX5KLQ,1960.0,10,12,2011,Psycho,Arbogast Meets Mother,tt0054215 dyxcQ4FV6KM,1960.0,6,12,2011,Psycho,Norman Finds the Body,tt0054215 hplpQt424Ls,1963.0,6,11,2011,The Birds,Crows Attack the Students,tt0056869 n-mpifTiPV4,1993.0,2,10,2011,Jurassic Park,Chaos Theory Scene,tt0107290 Fe3c7Txx0Sc,1963.0,2,11,2011,The Birds,Children's Birthday Surprise,tt0056869 9tGWHkKzeeI,1989.0,12,12,2011,Back to the Future Part 2,Battle for the Book,tt0096874 ydLJtKlVVZw,1963.0,5,11,2011,The Birds,Crows on the Playground,tt0056869 Xei_IKhp9tU,1963.0,3,11,2011,The Birds,Birds Invade the House,tt0056869 eHh6bwuPShw,1963.0,1,11,2011,The Birds,Seagull Attack,tt0056869 74ocbvwam7c,1992.0,9,9,2011,Sneakers,The Team's Demands,tt0105435 -zIzLRgwdxA,1989.0,9,12,2011,Back to the Future Part 2,Marty Tricks Biff,tt0096874 lNWV7T5KlRE,1992.0,8,9,2011,Sneakers,Driving Blind,tt0105435 0sNSVtTcxpo,1988.0,10,10,2011,Twins,"Oh, Mama!",tt0096320 KuIheGaiFLM,1992.0,7,9,2011,Sneakers,Navigating by Sound,tt0105435 4EUsnCqqc9s,1988.0,8,10,2011,Twins,Dance Lessons,tt0096320 WlcH-5LQbhA,1989.0,10,12,2011,Back to the Future Part 2,Marty Sneaks Past Himself,tt0096874 Ky7ncpdpMUc,1988.0,3,10,2011,Twins,First Time Driver,tt0096320 3VlyZIywY9c,1992.0,6,9,2011,Sneakers,Call to the NSA,tt0105435 pLRk4xG-JCI,1985.0,1,10,2011,Back to the Future,The DeLorean,tt0088763 uGstM8QMCjQ,1988.0,2,10,2011,Twins,No Respect for Logic,tt0096320 W0ZgTVoA0eY,2004.0,1,10,2011,Friday Night Lights,"Get Off the Field, Dad",tt0390022 GCPMRHNwR8E,2000.0,4,10,2011,Bring It On,"This Isn't About Cheating, It's About Winning",tt0204946 gkfAyFT8xGc,1984.0,4,10,2011,Cloak & Dagger,Morris Gets Shot,tt0087065 K0qG34a5oqY,2004.0,2,10,2011,Friday Night Lights,Duct Tape for Don,tt0390022 oHJVJ_MEyQI,2004.0,10,10,2011,Friday Night Lights,Agony of Defeat,tt0390022 o-iPiN_YHjY,2004.0,9,10,2011,Friday Night Lights,Coach Gaines on Being Perfect,tt0390022 1AtE54HpXBM,1990.0,10,10,2011,Back to the Future Part 3,Your Future Is Whatever You Make It,tt0099088 coDtzN6bXAM,1992.0,5,9,2011,Sneakers,Changing the World,tt0105435 GuuUX-4_K-A,1977.0,3,10,2011,Slap Shot,The Hanson Brothers,tt0076723 8CZ-ICxcEYg,2004.0,8,10,2011,Friday Night Lights,Ivory's Pep Talk,tt0390022 Km6bFBSVty4,1989.0,6,12,2011,Back to the Future Part 2,Future Marty Is Terminated,tt0096874 8ktMe0xclxA,1990.0,8,10,2011,Back to the Future Part 3,Train Ride to the Future,tt0099088 zJiCswIaIkI,1990.0,7,10,2011,Back to the Future Part 3,"Time's Up, Runt!",tt0099088 Mw1Z2Jlp9Qw,1988.0,1,10,2011,Twins,Not Identical,tt0096320 FHNT4E_55jY,1984.0,8,10,2011,Firestarter,Cinder Blocks on Fire,tt0087262 75M1XXEZciU,1982.0,10,10,2011,E.T.: The Extra-Terrestrial,I'll Be Right Here,tt0083866 5ztwns5PkJY,1989.0,5,12,2011,Back to the Future Part 2,The Future McFlys,tt0096874 6xZif3WmG7I,1982.0,4,10,2011,E.T.: The Extra-Terrestrial,E.T. Phone Home,tt0083866 a-9990dlfvo,1982.0,8,10,2011,E.T.: The Extra-Terrestrial,He's Alive! He's Alive!,tt0083866 VrVEHszxL7E,1982.0,6,10,2011,E.T.: The Extra-Terrestrial,Halloween,tt0083866 TaLsQSCK0Jo,1982.0,3,10,2011,E.T.: The Extra-Terrestrial,Saving the Frogs,tt0083866 0xWMqsZOYWg,1982.0,2,10,2011,E.T.: The Extra-Terrestrial,Getting Drunk,tt0083866 GzeNMZcP8Xg,1984.0,3,10,2011,Sixteen Candles,Am I Turning You On?,tt0088128 NWcBwgxUyuM,1984.0,1,10,2011,Sixteen Candles,They Forgot My Birthday,tt0088128 2quc-iQ96R0,1980.0,9,9,2011,The Blues Brothers,Paying the Price Scene,tt0080455 jFrVoG-edFc,1992.0,7,9,2011,Far and Away,The Oklahoma Land Rush,tt0104231 LMagP52BWG8,1980.0,7,9,2011,The Blues Brothers,Chased by the Cops Scene,tt0080455 EHV0zs0kVGg,1980.0,6,9,2011,The Blues Brothers,Everybody Needs Somebody to Love Scene,tt0080455 0IWdfqsImMU,1984.0,2,10,2011,Sixteen Candles,I Loathe the Bus,tt0088128 eGu2camh0WA,1980.0,8,9,2011,The Blues Brothers,The Bluesmobile Does a Backflip Scene,tt0080455 SldtDNNTA2s,1992.0,9,9,2011,Far and Away,Staking Their Claim,tt0104231 WULhkipzltU,1992.0,8,9,2011,Far and Away,This Land Is Mine!,tt0104231 RdR6MN2jKYs,1980.0,5,9,2011,The Blues Brothers,Rawhide Scene,tt0080455 qdbrIrFxas0,1980.0,4,9,2011,The Blues Brothers,Shake a Tail Feather Scene,tt0080455 HlXsMMnAlmU,1992.0,5,9,2011,Far and Away,Fighting for Us,tt0104231 FROgIia2cb8,1962.0,9,10,2011,To Kill a Mockingbird,Boo is a Hero,tt0056592 iRmIef02Ajk,1962.0,10,10,2011,To Kill a Mockingbird,Scout Meets Boo Radley,tt0056592 ZTT1qUswYL0,1980.0,3,9,2011,The Blues Brothers,Nazis Take a Dive Scene,tt0080455 mHh8PKWMQEw,1992.0,6,9,2011,Far and Away,Pretend You Love Me,tt0104231 44TG_H_oY2E,1962.0,4,10,2011,To Kill a Mockingbird,Atticus Cross-Examines Mayella,tt0056592 q7CX_5D6y6E,1962.0,8,10,2011,To Kill a Mockingbird,Your Father's Passing,tt0056592 aErDEFpoD_0,1985.0,10,10,2011,Brazil,Sam Is Captured,tt0088846 8MmtVx1A8BA,1962.0,7,10,2011,To Kill a Mockingbird,Atticus's Closing Statement,tt0056592 oaVuVu5KXuE,1962.0,3,10,2011,To Kill a Mockingbird,The Children Save Atticus,tt0056592 IIdGxR-aU6o,1980.0,2,9,2011,The Blues Brothers,Mall Chase Scene,tt0080455 3Nzc3Rezt3w,1990.0,5,10,2011,Cry-Baby,King,tt0099329 ujxDA9VsQG4,1980.0,1,9,2011,The Blues Brothers,Filthy Mouths & Bad Attitudes Scene,tt0080455 ewkroL1cP_Q,1982.0,1,10,2011,E.T.: The Extra-Terrestrial,"It Was Nothing Like That, Penis Breath!",tt0083866 20M_teQf-l8,1992.0,3,9,2011,Far and Away,Scrapping,tt0104231 olXUIcb80N0,1985.0,9,10,2011,Brazil,Harry Wastes Central Services,tt0088846 sTDhNLLglf8,1990.0,7,10,2011,Cry-Baby,Orphans,tt0099329 pnaWqq2eRcc,1997.0,5,9,2011,Liar Liar,I'm Reaping What I Sow,tt0119528 guMVb47aD-k,1962.0,1,10,2011,To Kill a Mockingbird,What Kind of Man Are You?,tt0056592 1O7AX7tqEHE,1992.0,2,9,2011,Far and Away,I'm Running Away,tt0104231 KyHilwSRo28,1985.0,8,10,2011,Brazil,My Complication Had a Little Complication,tt0088846 mS5WLkb_Cxk,1985.0,5,10,2011,Brazil,The Moving Desk,tt0088846 SbYzo8L9DLc,1985.0,7,10,2011,Brazil,I Love You,tt0088846 1jQP0Y2T2OQ,1997.0,9,9,2011,Liar Liar,And the Truth Shall Set You Free!,tt0119528 dht_3NziwSw,1985.0,3,10,2011,Brazil,"Harry Tuttle, Heating Engineer",tt0088846 0B61_5sRoBI,1985.0,4,10,2011,Brazil,Central Services Pays a Visit,tt0088846 f_GI8syIgIs,2003.0,5,10,2011,Honey,Tweet Video,tt0322589 Bnx95KyQEAA,1985.0,2,10,2011,Brazil,Plastic Surgery,tt0088846 Zh6NzOHOU8s,1997.0,1,9,2011,Liar Liar,Big Liar,tt0119528 fbbatiKJ6rQ,2003.0,1,10,2011,Honey,Meets Benny and Raymond,tt0322589 DrIsPRZL578,2004.0,2,9,2011,The Bourne Supremacy,Marie Is Killed,tt0372183 Dk7DE4FghW0,2005.0,8,8,2011,Cinderella Man,The Ending: New World Champion,tt0352248 HGU3PRBxQiw,2005.0,7,8,2011,Cinderella Man,Braddock vs. Baer,tt0352248 SMJqQ3VrcCA,2006.0,10,10,2011,Children of Men,We're Safe,tt0206634 83Jr_6b9pHA,2005.0,6,8,2011,Cinderella Man,The Champion of My Heart,tt0352248 YBzWTIexszQ,2006.0,9,10,2011,Children of Men,Miracle Cease Fire,tt0206634 JCKh3Jsge4E,2005.0,4,8,2011,Cinderella Man,Fighting for Milk,tt0352248 zpmLSGixYwM,2005.0,5,8,2011,Cinderella Man,Run It Again,tt0352248 G-ZJbAdw1Rw,2005.0,3,8,2011,Cinderella Man,Braddock Beats Lasky,tt0352248 -3ywc_7_IE8,2005.0,2,8,2011,Cinderella Man,One Hell of a Goodbye,tt0352248 ioTMlrCoU2E,2006.0,7,10,2011,Children of Men,Luke Murders Jasper,tt0206634 IZocpwWLsyE,2000.0,7,10,2011,"O Brother, Where Art Thou?",Big Dan Teague,tt0190590 lNXTKVxOmfk,2005.0,1,8,2011,Cinderella Man,Braddock Begs for Money,tt0352248 -LjxKR0q7Yo,2006.0,5,10,2011,Children of Men,Escaping The Fishes,tt0206634 p56k6QCjJnc,2000.0,6,10,2011,"O Brother, Where Art Thou?",Horny Toad,tt0190590 XoWvE383hm4,2006.0,8,10,2011,Children of Men,It's a Girl,tt0206634 VJivXSErhB8,2006.0,1,10,2011,Children of Men,Cafe Bomb Blast,tt0206634 NdVRDlmWhg4,2006.0,2,10,2011,Children of Men,Kee Is Pregnant,tt0206634 N7UtdTiuO3w,2000.0,12,12,2011,The Family Man,Jack Catches Kate at the Airport,tt0218967 nSQ5EsbT4cE,1985.0,1,10,2011,Brazil,A Receipt for Your Husband,tt0088846 apq46lA0uSM,2000.0,4,10,2011,"O Brother, Where Art Thou?",Baby Face Nelson,tt0190590 5tbx8osZ87M,2000.0,11,12,2011,The Family Man,"Remember Me, Kate",tt0218967 jxsvzuRl1O8,2000.0,9,12,2011,The Family Man,A Life That Other People Envy,tt0218967 n0ZGibTDo9A,2000.0,10,12,2011,The Family Man,I Choose Us,tt0218967 fgcWfVvT_UM,2000.0,3,10,2011,"O Brother, Where Art Thou?",Crossroads,tt0190590 DUd5RPVDjPY,2007.0,2,9,2011,The Bourne Ultimatum,Ross and Waterloo,tt0440963 BCTFuIw1Bv8,2000.0,6,12,2011,The Family Man,What Are You Sure About?,tt0218967 S1i5coU-0_Q,1985.0,9,10,2011,Back to the Future,Johnny B. Goode,tt0088763 aGMhMCHyM3c,2000.0,4,12,2011,The Family Man,Where's My Real Dad?,tt0218967 SOcgrVL8Dg0,2000.0,7,12,2011,The Family Man,I Never Stopped Loving You,tt0218967 Mwmy0awMZXY,2007.0,1,9,2011,The Bourne Ultimatum,Bourne Evades Police,tt0440963 tXp79rAS5JQ,2007.0,9,9,2011,The Bourne Ultimatum,Shot and Missing,tt0440963 tPImdMknAO4,2000.0,2,10,2011,"O Brother, Where Art Thou?",We're in a Tight Spot!,tt0190590 XhpJ11dNp2o,2002.0,10,10,2011,The Bourne Identity,Stairwell Plunge,tt0258463 zZJ7cq6T3v4,1985.0,7,10,2011,Back to the Future,Skateboard Chase,tt0088763 PeGDBR0Ej_0,2002.0,1,10,2011,The Bourne Identity,What's Your Name?,tt0258463 QzklMXES1BU,1985.0,8,10,2011,Back to the Future,You Leave Her Alone,tt0088763 f-77xulkB_U,1985.0,6,10,2011,Back to the Future,1.21 Gigawatts,tt0088763 SR5BfQ4rEqQ,1985.0,5,10,2011,Back to the Future,I'm From the Future,tt0088763 w-VBcSukH_8,1991.0,9,10,2011,Fried Green Tomatoes,Evelyn the Destroyer,tt0101921 95_DB6GgLQs,1985.0,4,10,2011,Back to the Future,You're George McFly!,tt0088763 f2c-tMZSZtY,1985.0,2,10,2011,Back to the Future,The Libyans Find Doc Brown,tt0088763 KPeHFDxKUP4,1985.0,3,10,2011,Back to the Future,Back in Time,tt0088763 drvaZz3FWOI,2000.0,1,10,2011,"O Brother, Where Art Thou?",Yours Truly,tt0190590 QAygM0YfY10,1990.0,7,11,2011,Bird on a Wire,Airplane Chase,tt0099141 V3RHvyrqTak,1990.0,11,11,2011,Bird on a Wire,A Little Extra Effort,tt0099141 kxtAmNDjfj4,1990.0,6,11,2011,Bird on a Wire,Operating on Rick,tt0099141 jlFLcKaBLz0,1990.0,9,11,2011,Bird on a Wire,Sharing the Bed,tt0099141 1VEcaRh4c1A,1990.0,5,11,2011,Bird on a Wire,The Michelangelo of Hair,tt0099141 ex6X6rXcXKQ,1990.0,4,11,2011,Bird on a Wire,The Train Tunnel,tt0099141 N9hJ6pUeqxQ,1990.0,3,11,2011,Bird on a Wire,Chased by the Cops,tt0099141 -rq6IBVPcBU,1990.0,2,11,2011,Bird on a Wire,Killer Room Service,tt0099141 o9splceYBXQ,1973.0,8,8,2011,High Plains Drifter,The Stranger Rides Away,tt0068699 q_215iQ7KDs,1988.0,7,10,2011,The Great Outdoors,The Old '96er,tt0095253 sOLnb7BrMC8,1973.0,7,8,2011,High Plains Drifter,Who Are You?,tt0068699 OBJ-MpPBDug,1988.0,10,10,2011,The Great Outdoors,Big Bear Chase Me!,tt0095253 yuI8BfvTwfY,1988.0,9,10,2011,The Great Outdoors,Chet and the Bald Bear,tt0095253 WRR4iYRRBLk,1988.0,6,10,2011,The Great Outdoors,He's on My Face!,tt0095253 1VZzulIl0DI,1988.0,4,10,2011,The Great Outdoors,At the Bear Dump,tt0095253 I3K8xBfywg0,1988.0,8,10,2011,The Great Outdoors,It All Starts to Ooze Out,tt0095253 PAC3F5dQufQ,1988.0,1,10,2011,The Great Outdoors,Horny the Bear,tt0095253 FvYtbd7YE3k,1988.0,3,10,2011,The Great Outdoors,Accidental Waterskiing,tt0095253 D7P4FYWHVYQ,1997.0,6,10,2011,Dante's Peak,Row Your Boat,tt0118928 S1EsCWrUY84,1997.0,8,10,2011,Dante's Peak,The Bridge is Destroyed,tt0118928 r421zjv-hoE,1997.0,9,10,2011,Dante's Peak,Crossing the Lava River,tt0118928 vfIUYDjo8WM,1997.0,10,10,2011,Dante's Peak,The Volcano Explodes,tt0118928 IUbn5ss8j9c,1977.0,6,10,2011,Slap Shot,The Hansons Play Dirty,tt0076723 dXBUdCvqpNg,1997.0,9,9,2011,The Game,"Happy Birthday, Nicky",tt0119174 W7WmhkO_GWI,1941.0,1,9,2011,Sullivan's Travels,With a Little Sex In It,tt0034240 zhnB6vIifkc,1941.0,6,9,2011,Sullivan's Travels,Sully and the Girl,tt0034240 nyn04CxGBLs,1984.0,5,10,2011,Firestarter,Tranquilized,tt0087262 fCjsUxbNmIs,1989.0,1,12,2011,Back to the Future Part 2,We Don't Need Roads,tt0096874 L-IoFdCv_Hs,1984.0,5,10,2011,Cloak & Dagger,Hiding in the Trunk,tt0087065 duT6QvbGAls,1984.0,6,10,2011,Cloak & Dagger,The Three-Fingered Lady,tt0087065 KXYxfwVioeE,2002.0,2,10,2011,About a Boy,Marcus Kills a Duck,tt0276751 zi-vtjCN9Rw,2004.0,4,10,2011,Friday Night Lights,"You're Gonna Seriously Fly, Son",tt0390022 WOjsnY1P7lk,2004.0,3,10,2011,Friday Night Lights,Boobie Goes Down,tt0390022 Mo_AVIt369k,2000.0,5,10,2011,Bring It On,Cheer Sex,tt0204946 9UMX4dGRYEw,2000.0,6,10,2011,Bring It On,A Brush Off,tt0204946 _2LMj-4PtdU,2004.0,5,10,2011,Friday Night Lights,Boobie's MRI,tt0390022 Nj-F4OvzyLM,2000.0,8,10,2011,Bring It On,Sparky the Choreographer,tt0204946 f_Pc2_cTQnk,2004.0,6,10,2011,Friday Night Lights,Boobie Cleans Out His Locker,tt0390022 AOh4PeDIkWs,1984.0,7,10,2011,Cloak & Dagger,Real Bullets,tt0087065 MDC-al-lnoE,1984.0,8,10,2011,Cloak & Dagger,Jack Flack Dies,tt0087065 GD-EP3ucPNk,2004.0,7,10,2011,Friday Night Lights,Creepy Boosters,tt0390022 6Wx2sfjX0qs,2000.0,10,10,2011,Bring It On,Bring It!,tt0204946 d68yRIE9OvQ,1989.0,2,12,2011,Back to the Future Part 2,"Hill Valley, 2015",tt0096874 Uk280jVuH1w,2005.0,1,6,2011,Batman Begins,The Will to Act,tt0372784 Kmn7tIRUImY,1984.0,9,10,2011,Cloak & Dagger,Airport Showdown,tt0087065 59BWCEaowC4,1989.0,4,12,2011,Back to the Future Part 2,"Welcome Home, Jennifer",tt0096874 xtRnl5zHKxc,1998.0,3,11,2011,BASEketball,Got Milk,tt0131857 4sRzks3eR-M,1984.0,10,10,2011,Firestarter,Charlie Burns Everything,tt0087262 q5K1fm56gI8,1984.0,4,10,2011,Firestarter,Torching the Agents,tt0087262 LixsNtGM8tc,1984.0,7,10,2011,Firestarter,Wood Chip Test,tt0087262 TklrBmHo7Do,1952.0,2,8,2011,Singin' in the Rain,Make 'Em Laugh,tt0045152 4lQ_MjU4QHw,1980.0,3,7,2011,The Shining,All Work and No Play Scene,tt0081505 HZNy5irM2YE,1952.0,1,8,2011,Singin' in the Rain,Shadow Sparring,tt0045152 UWjXERbOr70,2003.0,5,5,2011,The Texas Chainsaw Massacre,Slice of Revenge,tt0324216 az5NDvQ41ys,2003.0,4,5,2011,The Texas Chainsaw Massacre,Slaughterhouse,tt0324216 cAM7skQKVk8,2003.0,2,5,2011,The Texas Chainsaw Massacre,Bring It,tt0324216 LmrLiS3ZWxo,2001.0,5,5,2011,Rush Hour 2,Egyptian Style,tt0266915 5kI7hvWF_BM,2001.0,4,5,2011,Rush Hour 2,Money Fight,tt0266915 YFTbj6DJbGQ,2001.0,3,5,2011,Rush Hour 2,Belle of the Ball,tt0266915 2qKoFdPJ4rI,2001.0,2,5,2011,Rush Hour 2,Massage Parlor Fight,tt0266915 EvCuX-oY4_c,2001.0,1,5,2011,Rush Hour 2,Bamboo Scaffold,tt0266915 I-AhUVGpGoU,2008.0,1,4,2011,Get Smart,I Gotta Get That Out,tt0425061 SDls-ZJDLXE,2008.0,2,4,2011,Get Smart,A Little Something Extra,tt0425061 pLKZ0Adi70c,2004.0,2,5,2011,Troy,Hector Saves Paris,tt0332452 6GN20jud6MI,2008.0,4,4,2011,Get Smart,Golf Course Gauntlet,tt0425061 r2ucpHgHo1g,2004.0,4,5,2011,Troy,Hector Kills Achilles?,tt0332452 HG8iPGFvfxU,2008.0,3,4,2011,Get Smart,That's Not Cheese,tt0425061 f8zZksymCzw,2007.0,4,4,2011,P.S. I Love You,The Last Letter,tt0431308 -BiLCJxpqi4,2004.0,1,5,2011,Troy,Is There No One Else?,tt0332452 vTp6sSlv_aY,2007.0,2,4,2011,P.S. I Love You,Pills For Rudeness,tt0431308 d0xC6yVjU9Q,2007.0,3,4,2011,P.S. I Love You,Nobody's Gerry,tt0431308 Fz9HnTVx52g,2007.0,1,4,2011,P.S. I Love You,From Beyond the Grave,tt0431308 dAzXib-thq8,2006.0,2,5,2011,We Are Marshall,Shouldering Responsibility,tt0758794 LkyMbgKtCAs,2006.0,1,5,2011,We Are Marshall,!,tt0758794 MDwNSR0QmBY,2007.0,5,5,2011,Hairspray,You Can't Stop the Beat!,tt0427327 hL71tkydKPM,2007.0,4,5,2011,Hairspray,Last Minute Entry,tt0427327 rRLP7r6OuYE,1983.0,1,4,2011,Risky Business,What the F***,tt0086200 6NvDZa8hWSs,1983.0,4,4,2011,Risky Business,Washing the Car,tt0086200 I5cS0_op1IE,1983.0,3,4,2011,Risky Business,Guido's Livelihood,tt0086200 tdcUxHh3tAc,2007.0,3,5,2011,Hairspray,Timeless Couple,tt0427327 1B8juGIsDl8,2007.0,1,5,2011,Hairspray,The Corny Collins Show,tt0427327 8O8_FMhW9dY,1983.0,2,4,2011,Risky Business,Porsche Getaway,tt0086200 UhkYrd0Sg3o,2007.0,2,5,2011,Hairspray,Naturally Stiff,tt0427327 mCdbIDiib5U,1973.0,3,3,2011,Enter the Dragon,Lee vs. Han,tt0070034 wxrmK9esHpc,1973.0,2,3,2011,Enter the Dragon,Master Fighter,tt0070034 1R5Li-f1IP8,1973.0,1,3,2011,Enter the Dragon,Lee vs. O'Hara,tt0070034 P9pa_8-WdlU,2004.0,3,5,2011,Starsky & Hutch,Do It,tt0335438 6c_H45kt1_8,2008.0,9,9,2011,The Dark Knight,The Hero Gotham Deserves,tt0468569 uBX2b-zback,2004.0,5,5,2011,Starsky & Hutch,Too Much Car,tt0335438 E6N0yJRAAAM,2004.0,4,5,2011,Starsky & Hutch,Caddy Hack,tt0335438 dJma8pVAvH4,2008.0,8,9,2011,The Dark Knight,Two Face,tt0468569 Wj6vEYwwJFI,2004.0,2,5,2011,Starsky & Hutch,What Bad Men Do,tt0335438 Fzx9OpDH8HY,2008.0,7,9,2011,The Dark Knight,The Battle for Gotham,tt0468569 HIcIIBTJA6o,2008.0,6,9,2011,The Dark Knight,Agent of Chaos,tt0468569 2-1pev4OEJY,2004.0,1,5,2011,Starsky & Hutch,Little Knife Thrower,tt0335438 0uSOiu_WUDw,2008.0,5,9,2011,The Dark Knight,"Good Cop, Bat Cop",tt0468569 mKl11EzMTAE,2008.0,4,9,2011,The Dark Knight,Hit Me!,tt0468569 Wm_Z34Fyww8,2008.0,3,9,2011,The Dark Knight,Always Smiling,tt0468569 jrIc1SlA7O8,2008.0,2,9,2011,The Dark Knight,Why So Serious?,tt0468569 f_XHjqABQQA,2008.0,1,9,2011,The Dark Knight,Kill the Batman,tt0468569 RNP4caHnknA,2000.0,1,5,2011,The Cell,Boy With a Horse,tt0209958 U5VW0XTFBZo,2005.0,4,4,2011,March of the Penguins,First Steps,tt0428803 Ae_PWQfCW1Q,2005.0,3,4,2011,Family Reunion,March of the Penguins,tt0455612 5FtZqXd6IJo,2005.0,2,4,2011,March of the Penguins,Life Under the Sea,tt0428803 LGAfIx5VQ_M,2005.0,1,4,2011,March of the Penguins,Protecting the Egg,tt0428803 uiy-sT9JgRo,2007.0,4,4,2011,The Bucket List,He Saved My Life,tt0825232 dnIPfZIKYPc,2007.0,5,6,2011,Ocean's Thirteen,Breaking Bank,tt0496806 iioBwO6vnEs,2007.0,3,4,2011,The Bucket List,Find the Joy,tt0825232 oOFm9UaRuik,2007.0,2,4,2011,The Bucket List,Not Fun Anymore,tt0825232 1RIOFzhufm8,2007.0,1,4,2011,The Bucket List,Skydiving,tt0825232 fOSuCsgJ26M,1982.0,7,10,2011,Blade Runner,Shoot Straight,tt0083658 UKAi_Zpp0_E,2007.0,6,6,2011,Ocean's Thirteen,Terry On Oprah,tt0496806 HU7Ga7qTLDU,1982.0,9,10,2011,Blade Runner,Tears in the Rain,tt0083658 L1YN9QMKpBo,1982.0,4,10,2011,Blade Runner,Time to Die,tt0083658 4lj2ISTrfnE,1982.0,3,10,2011,Blade Runner,"""Retiring"" Zhora",tt0083658 NwJEb3vJvWY,1982.0,2,10,2011,Blade Runner,Somebody Else's Memories,tt0083658 Qs_PHrILn6k,2002.0,2,3,2011,Blade 2,Reinhardt Gets Split,tt0187738 EFpsSudUhQU,2002.0,3,3,2011,Blade 2,Blade vs. Nomak,tt0187738 uU6LIbi7NZQ,2002.0,1,3,2011,Blade 2,Motorcycle Fight,tt0187738 EmkAdY2AT-U,2007.0,4,6,2011,Ocean's Thirteen,Abigail Gets Played,tt0496806 KTuGK7Ob2QI,1998.0,1,3,2011,Blade,Vampire Killer,tt0120611 j1tkwdfz7n4,2007.0,3,6,2011,Ocean's Thirteen,Basher Distracts Bank,tt0496806 nQZd4bNOSAI,2007.0,2,6,2011,Ocean's Thirteen,Watching Oprah,tt0496806 jRYdVUtQs-8,1998.0,3,3,2011,Blade,Deadly Serum,tt0120611 fFan929BTPE,2007.0,1,6,2011,Ocean's Thirteen,Rusty the Scientist,tt0496806 PTEskprXZOg,1998.0,2,3,2011,Blade,vs. Frost,tt0120611 NAGgo5AtHzE,2004.0,3,6,2011,The Aviator,Not One for Tears,tt0338751 oXjCj86GB-I,2004.0,1,6,2011,The Aviator,Fine Pair of Misfits,tt0338751 KH5Q12Yb5u8,2004.0,5,6,2011,The Aviator,Beverly Hills Crash,tt0338751 C3Um4x6M8ew,2004.0,4,6,2011,The Aviator,Show Me the Blueprints,tt0338751 tYRzkKtCRuY,2008.0,1,6,2011,Sex and the City,Big Proposes,tt1000774 Va4gTqyLJeQ,2008.0,6,6,2011,Sex and the City,Big's Romantic Proposal,tt1000774 Bkwke3UCbCQ,2008.0,5,6,2011,Sex and the City,Charlotte's Water Breaks,tt1000774 mnUfDpO87Y0,2008.0,4,6,2011,Sex and the City,Charlotte Poughkeepsies,tt1000774 H-O-z5gELUY,2008.0,3,6,2011,Sex and the City,Carrie's Humiliated,tt1000774 Tk5XmgEEHoc,2008.0,2,6,2011,Sex and the City,Colorful Girl Talk,tt1000774 mXp99jJtyII,2006.0,4,4,2011,Blood Diamond,Danny Says Goodbye,tt0450259 ygU3F1ho3gg,2006.0,3,4,2011,Blood Diamond,A Good Boy,tt0450259 ielkiD8w-M8,2004.0,6,6,2011,The Notebook,I'll Be Seeing You,tt0332280 3nc6Tf26afI,2004.0,5,6,2011,The Notebook,The Best Love,tt0332280 E1I0hAxGFXw,2004.0,4,6,2011,The Notebook,What Do You Want?,tt0332280 EemLsTG5fX8,2004.0,3,6,2011,The Notebook,It's Not Over,tt0332280 OLSHQCAncC4,2004.0,2,6,2011,The Notebook,The Breakup,tt0332280 d7_F5P5PygM,2004.0,1,6,2011,The Notebook,"If You're a Bird, I'm a Bird",tt0332280 9hT-t19CJ4E,1989.0,3,10,2011,Christmas Vacation,Bend Over and I'll Show You,tt0097958 vQLNS3HWfCM,1939.0,2,8,2011,The Wizard of Oz,We're Not in Kansas Anymore,tt0032138 aopdD9Cu-So,1939.0,7,8,2011,The Wizard of Oz,I'm Melting!,tt0032138 z2itQkiQUOE,1939.0,6,8,2011,The Wizard of Oz,The Cowardly Lion,tt0032138 4IErqIMLwtQ,1939.0,3,8,2011,The Wizard of Oz,The Ruby Slippers,tt0032138 N7LxzkB0imk,1996.0,1,5,2011,Hide and Seek,Twister,tt0116529 bhGWWY1nCWw,1996.0,4,5,2011,Twister,Debris on the Road,tt0117998 W59U7VWHZ1Y,2002.0,4,6,2011,Two Weeks Notice,Not in a Good Way,tt0313737 aG55Y-zpxyo,2002.0,2,6,2011,Two Weeks Notice,Twisty Bobcat Pretzel,tt0313737 Lj4adAAHa68,2001.0,5,5,2011,King Kong,Training Day,tt0360717 oY7QReO1WOQ,2001.0,2,5,2011,Training Day,Standoff,tt0139654 fMxA90YU2Jw,2002.0,1,6,2011,Two Weeks Notice,Lucy Gives Notice,tt0313737 ib3Hn188Jwc,2004.0,1,5,2011,The Polar Express,All Aboard Scene,tt0338348 77tn-KPS334,2004.0,5,5,2011,The Polar Express,Believer's Bell Scene,tt0338348 dofECCtTfaM,2004.0,4,5,2011,The Polar Express,The First Gift of Christmas Scene,tt0338348 uKwwpmC02IQ,2004.0,3,5,2011,The Polar Express,When Christmas Comes Scene,tt0338348 Cht63QybtiA,2004.0,2,5,2011,The Polar Express,Back on Track Scene,tt0338348 HFduVeNEWSA,2001.0,5,5,2011,Ocean's Eleven,Personal Effects,tt0240772 Qb2tjzecJX4,2001.0,4,5,2011,Ocean's Eleven,Benedict Gets Duped,tt0240772 bCIXKzeaAAs,2001.0,3,5,2011,Ocean's Eleven,A Thief and a Liar,tt0240772 1mJf24luhuo,2001.0,2,5,2011,Ocean's Eleven,Reeling in Reuben,tt0240772 m6ux3-Z03B4,2001.0,1,5,2011,Ocean's Eleven,Calling Out the Bluff,tt0240772 DCnvuyK6ur8,2000.0,3,5,2011,Miss Congeniality,You Think I'm Gorgeous,tt0212346 kdW1wdpEP4Y,2000.0,2,5,2011,Miss Congeniality,Bagel Prayer,tt0212346 9pXTSPcZEWE,2000.0,5,5,2011,Miss Congeniality,The Crowning Moment,tt0212346 34Rit1AnlVg,2007.0,2,5,2011,Harry Potter and the Order of the Phoenix,Expecto Patronum!,tt0373889 j5B70NEq_fY,2000.0,4,5,2011,Miss Congeniality,Brief Shining Moment,tt0212346 hw6GwhfNl7U,2007.0,5,5,2011,Harry Potter and the Order of the Phoenix,Harry's Inner Battle,tt0373889 aEBLrCGhTVM,2000.0,1,5,2011,Miss Congeniality,Gracie's New Assignment,tt0212346 OsI3mSgTFnk,1994.0,5,5,2011,Interview with the Vampire: The Vampire Chronicles,New Companion,tt0110148 u8QMY9JKlDk,2007.0,4,5,2011,Harry Potter and the Order of the Phoenix,Dumbledore Vs. Voldemort,tt0373889 c9cV7bFKMNQ,1994.0,1,5,2011,Interview with the Vampire: The Vampire Chronicles,Becoming A Vampire,tt0110148 5xzDAgFrnf8,1994.0,4,5,2011,Interview with the Vampire: The Vampire Chronicles,Back from the Dead.,tt0110148 eFKh6cYmQ4M,2007.0,3,5,2011,Harry Potter and the Order of the Phoenix,Fireworks,tt0373889 LIm8HfwnmVE,1994.0,3,5,2011,Interview with the Vampire: The Vampire Chronicles,Forever Young,tt0110148 8_MpC8PcPQ0,2007.0,1,5,2011,Harry Potter and the Order of the Phoenix,I Must Not Tell Lies,tt0373889 fzAKSbtYBMU,2004.0,3,3,2011,Ocean's Twelve,The Best,tt0349903 3lfTLYMECtc,2004.0,2,3,2011,Ocean's Twelve,Lie Hard,tt0349903 ifYK21xsVtI,1998.0,5,6,2011,The Wedding Singer,Punched Out,tt0120888 TPsW2FYprfI,1998.0,6,6,2011,The Wedding Singer,Grow Old With You,tt0120888 _HCS9AJ0rEI,1994.0,5,5,2011,The Mask,That's a Spicy Meatball Scene,tt0110475 YGEL2muzPEE,1994.0,4,5,2011,The Mask,Frisking the Mask Scene,tt0110475 W_gYRFDb8_A,1994.0,3,5,2011,The Mask,Oscar-Winning Performance Scene,tt0110475 T1TrFjLKryc,1994.0,2,5,2011,The Mask,Balloon Animals Scene,tt0110475 QP2uPNypJlE,1994.0,1,5,2011,The Mask,Time to Get a New Clock Scene,tt0110475 bgXlHdBRpjs,1998.0,5,5,2011,Rush Hour,Curtain Call,tt0120812 -eIH1jFAGlY,1998.0,4,5,2011,Rush Hour,Death Fall,tt0120812 mwHOh0YPpBU,1998.0,3,5,2011,Rush Hour,Fighting to Preserve,tt0120812 OofNBvo-ABU,1998.0,2,5,2011,Rush Hour,Partners in Crime Fighting,tt0120812 0Rl9Cxc7uZA,1998.0,1,5,2011,Rush Hour,Do You Understand the Words That Are Coming Out of My Mouth?,tt0120812 9eGwOuyKu1U,2005.0,5,5,2011,Harry Potter and the Goblet of Fire,He's Back,tt0330373 2bujRZhOt9w,2005.0,4,5,2011,Harry Potter and the Goblet of Fire,Harry Battles Voldemort,tt0330373 W7Ic9rZ9OQw,2005.0,3,5,2011,Harry Potter and the Goblet of Fire,The Dark Lord Rises,tt0330373 wsl5fS7KGZc,2005.0,1,5,2011,Harry Potter and the Goblet of Fire,Mad-Eye Moody's Class,tt0330373 leQiIU7fzPs,2005.0,2,5,2011,Harry Potter and the Goblet of Fire,Tower Chase,tt0330373 _3F3eCypuko,1984.0,6,6,2011,Gremlins,Gizmo to the Rescue,tt0087363 KBaCHull47I,1984.0,5,6,2011,Gremlins,The Deagle Has Landed,tt0087363 sz8itUBsCTk,1984.0,4,6,2011,Gremlins,A Tree With Teeth,tt0087363 u1QIbENq66w,1984.0,3,6,2011,Gremlins,in the Kitchen,tt0087363 o2vw_iYBAyY,1984.0,2,6,2011,Gremlins,Multiplying Mogwai,tt0087363 kgfgiLlW-yw,1984.0,1,6,2011,Gremlins,Billy Meets Gizmo,tt0087363 Au-u9RWe0Jo,1973.0,5,5,2011,The Exorcist,Take Me!,tt0070047 lpyg94OzHK0,1973.0,4,5,2011,The Exorcist,The Power of Christ Compels You,tt0070047 sZazSFEHfg8,1973.0,1,5,2011,The Exorcist,A Harrowing House Call,tt0070047 bSxuXQCEC7M,1973.0,3,5,2011,The Exorcist,Head Spin,tt0070047 8QjrBjdb2T8,1973.0,2,5,2011,The Exorcist,Projectile Vomit,tt0070047 WDTRyjMnDOk,2006.0,3,5,2011,The Departed,Costello Smells a Rat,tt0407887 Ocr0aNwQvVg,2006.0,5,5,2011,The Departed,I Erased You,tt0407887 gsGm2Ohl7x8,2006.0,4,5,2011,The Departed,Officer Down,tt0407887 NEwspgySg5s,2006.0,2,5,2011,The Departed,I Want Some Pills,tt0407887 qVwoeNk9554,2006.0,1,5,2011,The Departed,Someone Else Every Day,tt0407887 bcokL59jeqU,1974.0,10,10,2011,Blazing Saddles,"Boy, Is He Strict",tt0071230 fLpmswBKVN4,1974.0,9,10,2011,Blazing Saddles,"Mugs, Pugs and Thugs",tt0071230 IZT7xLjxuhs,1974.0,4,10,2011,Blazing Saddles,"Welcome, Sheriff",tt0071230 qVhCNgct9JQ,1974.0,8,10,2011,Blazing Saddles,Applause for the Waco Kid,tt0071230 VPIP9KXdmO0,1974.0,5,10,2011,Blazing Saddles,The Campfire,tt0071230 WSS4dOe8Ul8,1999.0,2,7,2011,Austin Powers: The Spy Who Shagged Me,Zip It!,tt0145660 g5AixBKy7b4,1999.0,7,7,2011,Austin Powers: The Spy Who Shagged Me,Fat Bastard's Vicious Cycle,tt0145660 bu83p1i0D1A,1999.0,6,7,2011,Austin Powers: The Spy Who Shagged Me,Little Bugger,tt0145660 dzvTHhWDjIg,1999.0,5,7,2011,Austin Powers: The Spy Who Shagged Me,Just the Two of Us,tt0145660 z-5iCygFd9M,1999.0,3,7,2011,Austin Powers: The Spy Who Shagged Me,The Three-Question Rule,tt0145660 fBlAMqoJ5BA,1999.0,1,7,2011,Austin Powers: The Spy Who Shagged Me,"The Evils on ""Springer""",tt0145660 LXekH_8vXnM,1999.0,4,7,2011,Austin Powers: The Spy Who Shagged Me,Get in My Belly!,tt0145660 2NdymhVOFF8,1997.0,5,5,2011,Austin Powers: International Man of Mystery,A Simple Request,tt0118655 EJR1H5tf5wE,1997.0,2,5,2011,Austin Powers: International Man of Mystery,One Million Dollars,tt0118655 pYwgIQaq9qY,1997.0,4,5,2011,Austin Powers: International Man of Mystery,Support Group,tt0118655 ZywVV0T5DcA,1997.0,3,5,2011,Austin Powers: International Man of Mystery,Dr. Evil Meets Scott,tt0118655 onK1BeyHSZ4,2007.0,3,4,2011,Fred Claus,Elf Secret Service,tt0486583 OfsHMuWn95I,2007.0,4,4,2011,Fred Claus,Brothers Anonymous,tt0486583 3a49kwfRAtI,2007.0,2,4,2011,Fred Claus,Santa Fight,tt0486583 bD_rWCvgDy8,2007.0,1,4,2011,Fred Claus,Fred's Advice,tt0486583 fmT8JstRohg,1999.0,4,4,2011,Analyze This,Ben Sobeleone,tt0122933 GXwVNAl1fN8,1999.0,3,4,2011,Analyze This,Father Issues,tt0122933 ShQD76s4WZk,1999.0,1,4,2011,Analyze This,You Did Nothing For Me,tt0122933 zEE7xzwogMc,1999.0,2,4,2011,Analyze This,Hit the Pillow,tt0122933 cDpI6Zzy-vo,2006.0,2,5,2011,300,This Is Where We Fight Scene,tt0416449 TofiEsdr7YE,2005.0,6,6,2011,Batman Begins,The Ending,tt0372784 EGWfothiSU8,2005.0,5,6,2011,Batman Begins,Train Fight,tt0372784 5v5JjUZpAPk,1985.0,2,6,2011,The Color Purple,All My Life I Had to Fight,tt0088939 WJB3hqUsHDE,2005.0,4,6,2011,Batman Begins,Tumbler Chase,tt0372784 SH4PhFHyC5s,1985.0,5,6,2011,The Color Purple,God Loves Admiration,tt0088939 yqmreq-dV84,1985.0,4,6,2011,The Color Purple,Celie Stands up to Albert,tt0088939 bQbH32KcjG0,1985.0,6,6,2011,The Color Purple,Reunited.,tt0088939 HcREWDplGBo,2005.0,1,5,2011,Charlie and the Chocolate Factory,I Don't Care,tt0367594 Iy2GKyD2IoQ,1985.0,3,6,2011,The Color Purple,Hell No,tt0088939 RmISVHxjcAI,2005.0,4,5,2011,Charlie and the Chocolate Factory,Bad Nut,tt0367594 yY8Pf2rgP5s,1985.0,1,6,2011,The Color Purple,Sisters Separated,tt0088939 ckjDSzjU-cQ,2005.0,5,5,2011,Charlie and the Chocolate Factory,Charlie's Choice,tt0367594 MLZZos7_fYo,2002.0,5,5,2011,Austin Powers in Goldmember,Nice To Mole You,tt0295178 nHByIEUb37Y,2006.0,5,5,2011,300,Remember Us Scene,tt0416449 MUn6X9lpOZE,2005.0,3,5,2011,Charlie and the Chocolate Factory,Violet Turns Violet,tt0367594 kmgRv2V_7P4,2006.0,4,5,2011,300,Divine Power Scene,tt0416449 z4nPyI-zA74,2002.0,4,5,2011,Austin Powers in Goldmember,Hard Knock Life,tt0295178 uBrvKhAs4S4,2006.0,3,5,2011,300,The Warrior King Scene,tt0416449 MAviyhpn7Lg,2005.0,2,5,2011,Charlie and the Chocolate Factory,Chocolate Gloop,tt0367594 4Prc1UfuokY,2006.0,1,5,2011,300,This Is Sparta! Scene,tt0416449 NIaiW1XrzxA,2002.0,3,5,2011,Austin Powers in Goldmember,Naughty English,tt0295178 JaBh-B6F2sk,1989.0,2,5,2011,Batman,A Hot Time in Old Town,tt0096895 cQ_dL_IMPP4,2003.0,5,5,2011,Elf,The Angry,tt0319343 cbQZ8GK2usU,2003.0,4,5,2011,Elf,Snowball Fight,tt0319343 RfvKvTlQHuw,1989.0,5,5,2011,Batman,Who Made Who,tt0096895 9tIcnydrwFY,2003.0,3,5,2011,Elf,You Sit on a Throne of Lies,tt0319343 fNMtHosai08,2003.0,2,5,2011,Elf,Buddy Meets His Dad,tt0319343 dJU1SZIfK3Y,2003.0,1,5,2011,Elf,Buddy Realizes He's Human,tt0319343 EFkIZ-Zf32Y,2002.0,2,5,2011,Austin Powers in Goldmember,Preparation H,tt0295178 9OufCgFZCyU,1989.0,4,5,2011,Batman,Dance With the Devil,tt0096895 wZ30Qxv0vtI,1989.0,3,5,2011,Batman,Who is this Guy?,tt0096895 9XoPQEOY7L8,2002.0,1,5,2011,Austin Powers in Goldmember,It's Britney Spears!,tt0295178 63iuB-cSY7Q,1989.0,1,5,2011,Batman,You Can Call Me Joker,tt0096895 iqLDCIZ1DIs,2005.0,3,6,2011,Batman Begins,The Doctor Isn't In,tt0372784 ZmdWPv5R_J8,2005.0,2,6,2011,Batman Begins,The Night Stalker,tt0372784 0atATbXbQ9g,1985.0,4,5,2011,The Goonies,It's Our Time Down Here,tt0089218 ROhFRFmHexM,1985.0,2,5,2011,The Goonies,Chunk Spills His Guts,tt0089218 kr_z37TgQO4,1985.0,1,5,2011,The Goonies,Truffle Shuffle,tt0089218 Ku1Xc6NT6m8,1994.0,6,6,2011,Dumb & Dumber,Two Lucky Guys,tt0109686 OnrORwEG4lQ,1985.0,3,5,2011,The Goonies,The Wishing Well,tt0089218 rEWaqUVac3M,1942.0,5,6,2011,Casablanca,"Here's Looking At You, Kid",tt0034583 k_uINM_XI6I,1942.0,4,6,2011,Casablanca,I Still Love You,tt0034583 6AVMcJa77PM,1994.0,4,6,2011,Dumb & Dumber,The Toilet Doesn't Flush,tt0109686 mK10Ze-mcQo,1942.0,3,6,2011,Casablanca,I Don't Know the Finish,tt0034583 buRR_o85qhQ,1942.0,2,6,2011,Casablanca,The Last Time,tt0034583 IBJGHvt7I3c,1942.0,1,6,2011,Casablanca,Secret Sentimentalist,tt0034583 ylRqJapI0wQ,1994.0,3,6,2011,Dumb & Dumber,Atomic Peppers,tt0109686 RD2YJrvd71Y,1994.0,1,6,2011,Dumb & Dumber,Urine Trouble,tt0109686 -9IgLueodZA,1994.0,5,6,2011,Dumb & Dumber,There's a Chance,tt0109686 TQXuazYI_YU,1989.0,9,10,2011,Christmas Vacation,Clark Freaks Out,tt0097958 Jdyo4evwMxU,1989.0,10,10,2011,Christmas Vacation,Squirrel!,tt0097958 qTwXudZTWQA,1989.0,8,10,2011,Christmas Vacation,Turkey Dinner,tt0097958 LSqb4e8mUd4,1989.0,7,10,2011,Christmas Vacation,Eddie's Sewage,tt0097958 bSdm_eA1Css,1989.0,6,10,2011,Christmas Vacation,Downhill Fast,tt0097958 fKncYRJQRC8,1989.0,5,10,2011,Christmas Vacation,Cousin Eddie and Snot,tt0097958 GxGkcC1VrhU,1989.0,4,10,2011,Christmas Vacation,A Bit Nipply Out,tt0097958 gTKpKBzd7jg,1989.0,2,10,2011,Christmas Vacation,The Griswold Family Christmas Tree,tt0097958 ozksR8QLWzM,1989.0,1,10,2011,Christmas Vacation,Eat My Rubber,tt0097958 xkzkmyOln6I,2005.0,5,6,2011,Wedding Crashers,Motorboating,tt0396269 zE7PKRjrid4,1999.0,2,9,2011,The Matrix,Blue Pill or Red Pill,tt0133093 VKhEFVAoScI,2004.0,2,5,2011,Harry Potter and the Prisoner of Azkaban,Dementor on the Train,tt0304141 9-DOuX-Pi6o,2006.0,2,5,2011,Superman Returns,In Love With Superman,tt0348150 ePRYhNNdzwk,1993.0,1,4,2011,Grumpy Old Men,Not-So-Friendly Neighbors,tt0107050 kTnEyRLMvqk,1993.0,2,4,2011,Grumpy Old Men,Remote Control,tt0107050 KTyLJftgoc0,1993.0,4,4,2011,Grumpy Old Men,The Horizontal Mambo,tt0107050 WcZ62d0PATY,1993.0,3,4,2011,Grumpy Old Men,Cold Revenge,tt0107050 S4AmLcBLZWY,1994.0,2,6,2011,Dumb & Dumber,The Most Annoying Sound in the World,tt0109686 5kiNJcDG4E0,1942.0,6,6,2011,Casablanca,The Beginning of a Beautiful Friendship,tt0034583 br-ljup5Bow,2004.0,2,6,2011,The Aviator,Dinner with the Hepburns,tt0338751 giEV8fvrDd8,2004.0,6,6,2011,The Aviator,The Spruce Goose Flies,tt0338751 lW1vzy6psfE,2006.0,2,4,2011,Blood Diamond,Rescuing Dia,tt0450259 82IXVFuJllI,2006.0,1,4,2011,Blood Diamond,God Left This Place,tt0450259 _j9qAhXfNAU,2004.0,1,3,2011,Lost in Translation,Ocean's Twelve,tt0335266 E-PIidaqCyU,1997.0,1,5,2011,Austin Powers: International Man of Mystery,Throw Me a Frickin' Bone Here Scene,tt0118655 yNvuIuWY3Sw,1939.0,4,6,2011,Gone with the Wind,Leaving for Battle,tt0031381 c8EodW2ossg,1939.0,5,6,2011,Gone with the Wind,Abasing Herself,tt0031381 M4-DIldIX6U,1939.0,3,6,2011,Gone with the Wind,You Need Kissing Badly,tt0031381 2zomyWfPgjE,1939.0,2,6,2011,Gone with the Wind,Bidding for Scarlett,tt0031381 lrhNPS4nbmQ,1939.0,1,6,2011,Gone with the Wind,Scarlett Meets Rhett,tt0031381 GQ5ICXMC4xY,1939.0,6,6,2011,Gone with the Wind,"Frankly My Dear, I Don't Give a Damn",tt0031381 NJk-yQadw_U,1991.0,4,5,2011,Robin Hood: Prince of Thieves,Call Off Christmas,tt0102798 8ucelPNuKdk,1999.0,1,5,2011,The Green Mile,One Horny Motherf***er,tt0120689 xqbb1FCX6wM,1999.0,5,5,2011,The Green Mile,The Execution,tt0120689 083OMBnPA3c,1999.0,4,5,2011,The Green Mile,It Was A Kindness You Done,tt0120689 rRNj9qpTgOc,1999.0,3,5,2011,The Green Mile,Infected with Evil,tt0120689 pLbS8f9IplI,1999.0,2,5,2011,The Green Mile,Miracle Worker,tt0120689 22gw_64AGKM,2000.0,2,5,2011,The Cell,Demon King,tt0209958 NlP9f8i-4c4,2000.0,4,5,2011,The Cell,Carl's Torture Chamber,tt0209958 nCuYBELZjpY,2000.0,3,5,2011,The Cell,Cell Shocked,tt0209958 8G40_afpkGA,2000.0,5,5,2011,The Cell,He Always Finds Me,tt0209958 12DQN8oxKTs,2003.0,4,4,2011,The Last Samurai,The Last Ride,tt0325710 IV7jcaXQgds,2003.0,3,4,2011,The Last Samurai,Village Ambush,tt0325710 A-Cj7v3rTWg,2003.0,2,4,2011,The Last Samurai,Ninja Attack,tt0325710 rSB9VJcwQsc,2003.0,1,4,2011,The Last Samurai,Never Say Die,tt0325710 KY_pTVfz3gU,2003.0,6,6,2011,The Matrix Reloaded,Beat the Bullet,tt0234215 wSPAPeO17Zk,2003.0,5,6,2011,The Matrix Reloaded,Truck Stop,tt0234215 _b6S8tpQtdw,2003.0,4,6,2011,The Matrix Reloaded,Freeway Fight,tt0234215 x1srznPx1qA,2003.0,3,6,2011,The Matrix Reloaded,Hall of Pain,tt0234215 GSprkzio_pE,2003.0,2,6,2011,The Matrix Reloaded,The Burly Brawl,tt0234215 FRvxzdkj_YI,2003.0,1,6,2011,The Matrix Reloaded,Seraph's Test,tt0234215 l8WyXv7hQvE,2002.0,9,9,2011,The Lord of the Rings: The Two Towers,The Ents Attack Isengard,tt0167261 sL9vUjm2mIE,2002.0,8,9,2011,The Lord of the Rings: The Two Towers,Gandalf's Charge,tt0167261 k72rrPUEDdk,2002.0,7,9,2011,The Lord of the Rings: The Two Towers,Helm's Deep,tt0167261 F3GFYKIwJ9Y,2002.0,6,9,2011,The Lord of the Rings: The Two Towers,Warg Battle,tt0167261 O_aziIIp8U8,2002.0,5,9,2011,The Lord of the Rings: The Two Towers,Sneaky Little Hobbitses,tt0167261 Y6wE2W3ag1g,2002.0,4,9,2011,The Lord of the Rings: The Two Towers,Healing the King,tt0167261 ExU37Xz5Q0Q,2002.0,3,9,2011,The Lord of the Rings: The Two Towers,Gandalf Returns,tt0167261 uFzAxAEMwrY,2002.0,2,9,2011,The Lord of the Rings: The Two Towers,Treebeard,tt0167261 ePzOShBS9uU,2002.0,1,9,2011,The Lord of the Rings: The Two Towers,Gollum,tt0167261 rBtzudk40pE,2003.0,9,9,2011,The Lord of the Rings: The Return of the King,You Bow to No One,tt0167260 Y0F2c4VgxW8,2003.0,7,9,2011,The Lord of the Rings: The Return of the King,Don't You Let Go,tt0167260 yIUdnWv0MP0,2003.0,5,9,2011,The Lord of the Rings: The Return of the King,The Witch King,tt0167260 6vry0ijbJVE,2003.0,8,9,2011,The Lord of the Rings: The Return of the King,The Fall of Sauron,tt0167260 132WIdxvgdo,2003.0,6,9,2011,The Lord of the Rings: The Return of the King,Legolas Slays the Oliphaunt,tt0167260 dwT9BEh7qZ0,2003.0,4,9,2011,The Lord of the Rings: The Return of the King,Ride for Ruin,tt0167260 NQp6RWrHxRE,2003.0,3,9,2011,The Lord of the Rings: The Return of the King,Spider Slayer,tt0167260 ySQ8WJNGp0U,2003.0,2,9,2011,The Lord of the Rings: The Return of the King,Born A King,tt0167260 mxJtFvNByKw,2001.0,5,8,2011,The Lord of the Rings: The Fellowship of the Ring,An Encouraging Thought Scene,tt0120737 0L-Zqr0eyDg,2001.0,3,8,2011,The Lord of the Rings: The Fellowship of the Ring,Rescued By Arwen,tt0120737 iBSLBl-64fk,-1.0,8,8,2011,The Lord of the Rings: The Fellowship of the Ring,"My Brother, My Captain, My King Scene",tt0120737 VlaiBeLrntQ,2001.0,7,8,2011,The Lord of the Rings: The Fellowship of the Ring,You Shall Not Pass,tt0120737 Vi5pdd7xHNI,2001.0,6,8,2011,The Lord of the Rings: The Fellowship of the Ring,Cave Troll,tt0120737 bdFKfRmmbk0,2001.0,4,8,2011,The Lord of the Rings: The Fellowship of the Ring,Council of the Ring,tt0120737 2L0A2D7zV7A,2001.0,2,8,2011,The Lord of the Rings: The Fellowship of the Ring,The Black Rider,tt0120737 qFUISvEZ3aw,1985.0,5,5,2011,The Goonies,Sloth's Baby Ruth,tt0089218 x4QJwGTOny8,2001.0,1,8,2011,The Lord of the Rings: The Fellowship of the Ring,The Way of Pain,tt0120737 XUxAGsL8b0o,2006.0,5,5,2011,Superman Returns,Superman's Fall,tt0348150 C2gQo-0VW5c,2006.0,4,5,2011,Superman Returns,Bullet Stopper,tt0348150 jP8dC8E6Emk,2006.0,3,5,2011,Superman Returns,Not One of Them,tt0348150 6aWxJ0cxD8c,2006.0,1,5,2011,Superman Returns,Plane Heroic,tt0348150 kb7T9oK0tF8,2002.0,5,5,2011,Harry Potter and the Chamber of Secrets,Basilisk Slayer,tt0295297 BfcfTmh8RKo,2002.0,4,5,2011,Harry Potter and the Chamber of Secrets,Riddle Unraveled,tt0295297 rwzNpFWiOTg,2002.0,3,5,2011,Harry Potter and the Chamber of Secrets,Pesky Pixies,tt0295297 cPsIU9BTbcQ,2002.0,2,5,2011,Harry Potter and the Chamber of Secrets,Reckless Flying,tt0295297 w3-V_82VwQQ,2002.0,1,5,2011,Harry Potter and the Chamber of Secrets,"Dobby, The House Elf",tt0295297 f1N8-L5cuWQ,2001.0,5,5,2011,Harry Potter and the Sorcerer's Stone,The Last Temptation,tt0241527 F3YR1-gJjWM,2001.0,4,5,2011,Harry Potter and the Sorcerer's Stone,Catching the Snitch,tt0241527 _v5g_GFm1W0,2001.0,3,5,2011,Harry Potter and the Sorcerer's Stone,Toilet Troll,tt0241527 FeK3AM7NZzQ,2004.0,1,5,2011,Harry Potter and the Prisoner of Azkaban,The Knight Bus,tt0304141 50N2eB0JI80,2001.0,1,5,2011,Harry Potter and the Sorcerer's Stone,Harry's Birthday,tt0241527 GVhi1qkt5I4,2004.0,4,5,2011,Harry Potter and the Prisoner of Azkaban,The Feminine Touch,tt0304141 TsNv4tohJ7Y,2004.0,3,5,2011,Harry Potter and the Prisoner of Azkaban,"Like Father, Like Son",tt0304141 n1TqCGEBdLw,2004.0,5,5,2011,Harry Potter and the Prisoner of Azkaban,The Silver Stag,tt0304141 9JVNdsyjU5A,2001.0,2,5,2011,Harry Potter and the Sorcerer's Stone,Fame Isn't Everything,tt0241527 4NcH64kh_24,1998.0,5,5,2011,Lethal Weapon 4,Hospital Wedding,tt0122151 DlwuwiBLAmM,2004.0,3,5,2011,Million Dollar Baby,Get Home,tt0405159 EOyH6NwoQL4,2004.0,5,5,2011,Million Dollar Baby,I Killed Her,tt0405159 o4SUU7XoRl8,2004.0,4,5,2011,Million Dollar Baby,Maggie's Final Request,tt0405159 jcXErUFrA68,2004.0,2,5,2011,Million Dollar Baby,Maggie Victorious,tt0405159 Utz-RZwQpyE,2004.0,1,5,2011,Million Dollar Baby,The Way It's Going to Be,tt0405159 A_S1oRHSH80,1998.0,4,5,2011,Lethal Weapon 4,A Watery End,tt0122151 _P9ZorzeECg,1992.0,3,5,2011,Lethal Weapon 3,Damsel in Distress,tt0104714 kNpbZ_oVHxE,2000.0,5,5,2011,The Perfect Storm,Christina's Dream,tt0177971 u-bWIkGa0QA,1998.0,3,5,2011,Lethal Weapon 4,Laughing at the Dentist's,tt0122151 CeSQfi3eLhs,2000.0,4,5,2011,The Perfect Storm,Down with the Ship,tt0177971 W9Tdw5nG4dQ,2000.0,3,5,2011,The Perfect Storm,The Giant Wave,tt0177971 WsAVIpTwAP4,1998.0,2,5,2011,Lethal Weapon 4,The Cell Phone Conspiracy,tt0122151 FM-wfXvcbAY,2000.0,2,5,2011,The Perfect Storm,Freeing the Anchor,tt0177971 8jd1NKyFQJI,1998.0,1,5,2011,Lethal Weapon 4,Messing With Leo,tt0122151 O-ydNrUWOik,2000.0,1,5,2011,The Perfect Storm,A Swordboat Captain,tt0177971 3A3iNVaLod4,1992.0,2,5,2011,Lethal Weapon 3,Scaring the Jaywalker,tt0104714 cy-OKLuMikk,1992.0,1,5,2011,Lethal Weapon 3,Grab the Cat,tt0104714 hImAmM5-Fpg,1995.0,3,5,2011,Se7en,John Doe Surrenders,tt0114369 lWZU3pPZWig,1995.0,2,5,2011,Se7en,Apathy,tt0114369 VN9icwiN6io,1995.0,5,5,2011,Se7en,Vengeance and Wrath,tt0114369 K49NaFf6i_E,1992.0,5,5,2011,Lethal Weapon 3,Free Fall,tt0104714 8vq_k0yqq88,1995.0,4,5,2011,Se7en,Setting the Example,tt0114369 cNOsA4nH8yE,1992.0,4,5,2011,Lethal Weapon 3,Comparing Battle Scars,tt0104714 h8m69o_1PoQ,1995.0,1,5,2011,Se7en,The Sloth Victim,tt0114369 smHHU_ONdGU,2007.0,5,5,2011,Rush Hour 3,Tonight I Lose a Brother,tt0293564 FXKx1sX8ESs,2003.0,5,5,2011,The Matrix Revolutions,Crashing The Matrix,tt0242653 9rySfLgqHJc,2003.0,3,5,2011,The Matrix Revolutions,Last Kiss,tt0242653 RP7pZNhYm3c,2003.0,2,5,2011,The Matrix Revolutions,Saviors of Zion,tt0242653 jk3Z-MVoUg4,2003.0,1,5,2011,The Matrix Revolutions,Blaze of Glory,tt0242653 YBQLEhzlYX8,2003.0,4,5,2011,The Matrix Revolutions,It Ends Tonight,tt0242653 Pry7CGd09jU,2007.0,4,5,2011,Rush Hour 3,Get Your Own Damn Cab,tt0293564 7DfNc-wxnBM,2007.0,3,5,2011,Rush Hour 3,Lee's Deadliest Fan,tt0293564 kmjblNu2_6M,2007.0,1,5,2011,Rush Hour 3,Carter vs. the Giant,tt0293564 aOg9IcxuV2g,1999.0,9,9,2011,The Matrix,A World Without You,tt0133093 r_O3k-RpV2c,1999.0,3,9,2011,The Matrix,Waking from the Dream,tt0133093 j6oBbBfhgYE,1999.0,1,9,2011,The Matrix,Living Two Lives,tt0133093 HQkSMJFJu4g,2007.0,2,5,2011,Rush Hour 3,Yu & Mi,tt0293564 DMx-Az5Da4M,1999.0,8,9,2011,The Matrix,Subway Fight,tt0133093 -wI4jJq98tU,1952.0,8,8,2011,Singin' in the Rain,Switch-a-Roo,tt0045152 73ytL_HAwt8,1999.0,7,9,2011,The Matrix,Rooftop Showdown,tt0133093 ZQaBYT4MxWU,1999.0,6,9,2011,The Matrix,The Lobby Shootout,tt0133093 XO0pcWxcROI,1999.0,5,9,2011,The Matrix,There Is No Spoon,tt0133093 _UmaFTEIZ84,1952.0,7,8,2011,Singin' in the Rain,Dancing in the Rain,tt0045152 O4yuhvccQog,1999.0,4,9,2011,The Matrix,Virtual Combat,tt0133093 B0asbGJbLKc,1952.0,6,8,2011,Singin' in the Rain,Singing in the Rain,tt0045152 Wg-UpYglAEw,1991.0,5,5,2011,Robin Hood: Prince of Thieves,Rescuing Marian,tt0102798 qu4v5hB1dKk,1952.0,5,8,2011,Singin' in the Rain,Good Morning,tt0045152 m_1yILWMqFA,1991.0,3,5,2011,Robin Hood: Prince of Thieves,Readying the Troops,tt0102798 fLWrnVuT4Is,1991.0,2,5,2011,Robin Hood: Prince of Thieves,Take it Back,tt0102798 B42mhJ4DY4I,1991.0,1,5,2011,Robin Hood: Prince of Thieves,It Begins,tt0102798 YMzV96LV6Cc,1952.0,4,8,2011,Singin' in the Rain,Out of Sync,tt0045152 WDpipB4yehk,1980.0,7,7,2011,The Shining,Here's Johnny! Scene,tt0081505 OTFCctdiS04,1952.0,3,8,2011,Singin' in the Rain,The Sound Barrier,tt0045152 FLjixsUEj5E,1980.0,5,7,2011,The Shining,Redrum Scene,tt0081505 yMRmV1Sj6j4,1980.0,4,7,2011,The Shining,Are You Concerned About Me? Scene,tt0081505 CMbI7DmLCNI,1980.0,2,7,2011,The Shining,Come Play With Us Scene,tt0081505 mV5UHLHdkY8,2003.0,3,5,2011,The Texas Chainsaw Massacre,Shooting the Sheriff,tt0324216 PRtTmayVhKI,2003.0,1,5,2011,The Texas Chainsaw Massacre,You're All Gonna Die,tt0324216 NjIszoXfvUQ,2004.0,5,5,2011,Troy,Achilles' Revenge,tt0332452 1SnPHdvPPxM,2004.0,3,5,2011,Troy,Hector vs. Ajax,tt0332452 EEm8IXm88Tw,2006.0,5,5,2011,We Are Marshall,Marshall Wins,tt0758794 I3wUstDFDN0,2006.0,4,5,2011,We Are Marshall,Rise From These Ashes,tt0758794 xM311HohUzA,2006.0,3,5,2011,We Are Marshall,We Cannot Lose,tt0758794 BZSb0JCWcXk,1939.0,8,8,2011,The Wizard of Oz,There's No Place Like Home,tt0032138 louBM-Mix7s,1939.0,5,8,2011,The Wizard of Oz,Finding The Tin Man,tt0032138 nauLgZISozs,1939.0,4,8,2011,The Wizard of Oz,If I Only Had a Brain,tt0032138 PSZxmZmBfnU,1939.0,1,8,2011,The Wizard of Oz,Somewhere Over the Rainbow,tt0032138 dYg-LtUxhcE,1996.0,5,5,2011,Twister,Against the Wind,tt0117998 eFU730P9f54,1996.0,3,5,2011,Twister,Obsessed,tt0117998 2cDcwnVNoGc,2002.0,6,6,2011,Two Weeks Notice,The Stapler,tt0313737 82aLTSlTL44,2001.0,4,5,2011,Training Day,Jake Shoots Alonzo,tt0139654 IIjzneqtAZA,2001.0,3,5,2011,Training Day,Jake Pleads For His Life,tt0139654 ac9w0rKTRPM,2002.0,5,6,2011,Two Weeks Notice,What Baby?,tt0313737 2dQgjrrEeHA,1996.0,2,5,2011,Twister,We Got Cows,tt0117998 K53sv3l9DB4,2002.0,3,6,2011,Two Weeks Notice,Double Trouble,tt0313737 Hy37hjPUFWo,2001.0,1,5,2011,Training Day,Taking the Evidence,tt0139654 Nfrk2UdEOcQ,1998.0,4,6,2011,The Wedding Singer,Somebody Kill Me,tt0120888 C_SFevIz1FI,1998.0,3,6,2011,The Wedding Singer,I Have the Microphone,tt0120888 wAjHfBk-ZeY,1998.0,2,6,2011,The Wedding Singer,Things That Should've Been Said Yesterday,tt0120888 lt9IJX0qI6o,1998.0,1,6,2011,The Wedding Singer,A Drunken Toast,tt0120888 ================================================ FILE: data/metadata/descriptions.csv ================================================ imdbid,videoid,description tt1707386,Sv-BxH3SVS8,"On the eve of the Rebellion, the players sing ""One Day More""." tt1707386,IsZdfna1LKA,Javert struggles with his conflicting morals and police duties. tt6398184,tdzX5AKWiDw,"Violet Crawley passes on Downton's legacy to her granddaughter, Lady Mary Talbot." tt6398184,mycAsRhAr_M,Richard gives Thomas a memento before he leaves. tt6398184,WgXQnXPb-TA,"Tired of the pompous Royal Staff, the Downton staff does away with them for the night." tt6398184,WgMhaDEPGXo,"Sparks fly between Lucy and Tom, Downton's former chauffeur." tt6398184,HummNgSGn8k,The Crawley family welcomes King George V and Queen Mary to their estate. tt6398184,33uE1YctOf4,The Crawley family enjoys the ball while Tom and Lucy have a romantic dance of their own. tt6398184,bvl-DxX9N8g,The royal dinner goes smoothly until Molesley makes an announcement. tt6398184,E0BY209ZNEY,"When members of the royal household arrive, the Downton servants quickly realize that they must fight for their responsibilities." tt6398184,q7S2ckr4IkM,Andy reveals to Daisy that he broke the boiler. tt6398184,frZrAIZrOI8,The Downton Abbey staff smirks their farewell to the Royal Staff. tt6324278,A-Ckh0slywY,Yi discovers a yeti on her roof. tt6324278,GU1zIn2BRN0,Everest defends the group by summoning a raging blizzard. tt6324278,0XLEGFSKVhs,Jin races to save his friends. tt6324278,eNCK08cInIE,The group disguises Everest as a yak to get him through a marketplace. tt6324278,LCj92toBBBE,The group escapes Burnish using Everest's magic powers. tt6324278,ViQZwRewYl8,Yi helps Everest escape from Dr. Zara's forces. tt6324278,Btywn5TiBNQ,Yi uses her magical violin to save Everest from Dr. Zara. tt6324278,chvjkV0jRh8,Yi plays her yeti-magic-infused magic violin. tt6324278,rRUVmTXpPyg,The group escapes from drones on a dandelion. tt6324278,GZiLvbk8fL8,Everest goes overboard making food for the group. tt1707386,88T3elu2wfE,Fantine's spirit leads Jean Valjean to paradise. tt1707386,ojoC-Kbzpo8,"Marius, Éponine, Enjolras, and the Friends of the ABC inspire the crowd." tt1707386,deUgUoJ4z5I,Éponine sings of her unrequited love for Marius. tt1707386,ocDL_b6BRE4,"Marius and Cossette pine for each other, leaving Éponine in the cold." tt1707386,0BM-Q3BDrkw,Marius mourns his fallen comrades. tt1707386,9jfRE_FljrE,Javert attacks Jean Valjean. tt1707386,iLN9GLRC5is,The Thénardiers swindle guests at their inn. tt1707386,ulJXiB5i_q0,Fantine sings of her past and the horror of her current desperation. tt0448115,Ok63vpXNhNc,Freddy helps Shazam test out his new superpowers. tt6343314,OfLhd_wJux8,Adonis seizes victory over Viktor. tt6343314,TGghm3K1NXQ,Adonis Johnson and Viktor Drago square off for the Heavyweight Belt. tt6343314,u0RqfETo2ok,"Adonis Johnson fights Danny ""Stuntman"" Wheeler for the WBC World Heavyweight Championship." tt6343314,oaKjYmfK_Pw,Adonis tells Rocky he wants to accept the fight with Viktor Drago. tt6343314,oqGij9ylbAk,"Ivan Drago trains his son, Viktor." tt5013056,QT2Anb4MY38,The Shivering Soldier fights Dr. Dawson for the boat's wheel. tt0448115,jbvQvJV_97M,Shazam tricks Envy into coming out of Dr. Sivana. tt0448115,UAYL8R2ZPuI,Shazam stops an armed robbery at a convenient store. tt0448115,g8pt9OoaPlY,Dr. Sivana demands Shazam's powers. tt0448115,AONuDilRd5k,Shazam inducts his family into superherodom. tt0448115,_nSQhWq7etg,The Shazam Family battles Dr. Sivana and the Seven Deadly Sins. tt0448115,-W8pOz1fsD0,Shazam brawls with Dr. Sivana and one of the Seven Deadly Sins. tt0448115,ChIQpmBLPAo,Dr. Sivia unleashes the Seven Deadly Sins. tt0448115,GC6ksHacdXI,"Dr. Sivana gets a visit by Mister Mind, an alien worm." tt0109288,lsa5PDPgJmI,Darryl gives up his life as a hero and gets a job at McDonald's. tt0109288,MGBHNeYbsbg,"Darryl delivers a woman's baby in an elevator, cementing himself as a true hero." tt0109288,-mXoZz1dqMQ,Blankman and Other Guy are honored for their heroism. tt0109288,Jgye_cEhfGQ,Blankman makes the community a safer place. tt0109288,-jpEsYBH3g4,Blankman and Kevin try to save Mayor Harris before the bomb goes off. tt0109288,ljAdSzBv0ug,"While trying to stop a bank robbery, Blankman gets taken hostage." tt0109288,RFR3AJ-jE88,"In his first attempt at vigilantism, Darryl saves a helpless woman in an alley." tt0109288,RLbry-3z8yQ,Blankman and Other Guy attempt to rescue Mr. Stone and Kimberly from Minelli. tt0109288,sM1I11qUM44,Blankman and Other Guy face off against Minelli and his goons. tt0109288,RxwUv1BcPwg,Blankman gives Kimberly a ride on his wacky motorcycle. tt6343314,sSc4Y4Z9lsk,Ivan Drago challenges Rocky's protege to a grudge match. tt6343314,9wCiCJ7KDs8,Adonis and Viktor have a rematch for the WBC World Heavyweight Championship. tt6343314,ttiEgVcV-Xo,"Adonis proposes to his girlfriend, Bianca." tt6343314,b2MEP246DxY,Adonis refuses to go down without a fight. tt5013056,S3moqQqx3Nk,The Moonstone rescues soldiers from a burning oil slick. tt5013056,bgS0GPQhzHg,"Royal Navy Commander Bolton spots ""home"" in the form of heroic naval and civilian vessels coming for rescue." tt5013056,TIEtN-jVDbg,The soldiers begin to succumb to despair. tt5013056,2W3KDB0yHYM,Stranded soldiers step out of their lines when dive bomber planes start dropping bombs. tt5013056,K9j6xEBFek4,Stukas bomb a British evacuation ship. tt5013056,c5mAaBl_qqk,A blind man imparts his meaning of victory to the soldiers as they board the train home. tt5013056,WygmbuU_78c,Commander Bolton is helpless to save the medical ship. tt5013056,X5_GpmLuea4,Tommy escapes a German ambush and arrives at the beach where thousands of troops are waiting to be evacuated. tt5013056,7ycVIGqnLO8,Farrier chases down a stuka over the English Channel. tt7343762,cg49Y3jpZsQ,Max flies the drone home before his dad notices it's missing. tt7343762,NYRHTYWWiGU,The boys make the mistake of trying to cross the highway. tt7343762,mlc2UyZdalQ,The boys consult the internet and Thor's parents' doll for kissing practice advice. tt7343762,4-BWFsE_TQE,"When Benji refuses to sell drugs to the kids, Max takes matters into his own hands." tt7343762,i_Rupd9NU4E,The boys confront Hannah and Lily at a playground to get their drone back. tt7343762,_0gn0zQx4_s,"The boys escape on bike from Lily, who chases after them on foot." tt7343762,cV9dlsOzyVc,A tired police officer doesn't want to deal with the boys' antics. tt7343762,mcerWHb94yo,"Thor sings ""I Want to Know What Love Is"" as the boys grow apart." tt7343762,uQ_nGVp6x6U,The boys come across unknown artifacts after Thor steals Hannah's purse. tt7343762,UECge-Vi8VA,The boys make a deal with Claude. tt6095472,j71oHN1i2pU,The animals try to stop Zeta's super-weapon with Silver's super-string. tt6095472,DXFN60x3vP4,Red & Silver race for their lives in an ice-ball track. tt6095472,YvL_-Awg2gg,The hatchlings receive a slithering surprise. tt6095472,WzAHXnFWd5U,The gang's costume inadvertently triggers a dance-off. tt6095472,e198XToyAkk,"Garry provides the team with inventive, finger-licking gadgets." tt6095472,A6d0qIZY3Hg,Red and Leonard gather a team of specialists. tt6095472,_bJYiiCvPW4,Zeta fires a giant ice ball at the angry birds' island. tt6095472,WavZVQM3U00,Things get messy in the bathroom when the eagle costume pees alongside one of Zeta's guards. tt6095472,480Hw45m9v8,Mighty Eagle admits the truth about his and Zeta's relationship. tt6095472,WncnbHD-JXI,Zeta struggles to make her frozen home livable. tt2709692,MmKlIGkxGyM,The Grinch gives back everything he stole from Whoville. tt2709692,eVmYZJQxawo,"Dressed as Santa, The Grinch steals Christmas from Whoville." tt2709692,HGZotWs54rU,The Grinch has a difficult time collecting reindeer for his Christmas heist. tt2709692,NjUtH1NBFyY,The Grinch's plan to catapult Whoville's tree misfires in a big way. tt2709692,DmXp6Pm-uLI,The Whos' untainted joy and love causes an awakening within The Grinch. tt2709692,8coCtKWysGk,The Grinch tries to steal Santa's sleigh from the wrong house. tt2709692,BiPY5_H9EIw,Carolers hound The Grinch all the way through Whoville. tt2709692,ZhqHIrO4ePo,Fred and Max complicate the Grinch's plans. tt2709692,XMGoOSCbul0,The Grinch gets ready for a miserable day with Max's help. tt2709692,96pSGRvBg3I,The Grinch has a thrilling sleigh ride with Max & Fred. tt5109784,-r_-EnupRXo,Him takes Mother's heart to replace his crystal object. tt5109784,TcBlM3VLePM,The wake for Man and Woman's son brings a number of disorderly guests. tt5109784,nxc6kwBYFSM,"Mother's baby is worshipped, ritualistically murdered and eaten." tt5109784,nXSfDMvXAxw,"Mother grieves for her slaughtered son, but her husband gives her no comfort." tt5109784,eGXnEeW_KdA,"Mother finds her house transformed into a brutal, authoritarian police state." tt5109784,rQ3Qokn9t_w,"The fans riot, growing ever more radical and zealous." tt5109784,iJDnG2RAlzk,Mother burns down the house to end all her suffering. tt5109784,iPcAns5pKVw,Mother delivers her baby amid complete chaos. tt5109784,iGsce-w4TtY,Soldiers eradicate radicals in the battlefield of Mother's home. tt5109784,lyd4tC8LH1s,Man and Woman's sons have a Cain & Abel-esque fight. tt0077288,2LwWmJojqvM,Laurent and Andrea deal with their parents' reactions to the news of their engagement. tt0077288,tXhTaL04ByA,"Albin is insulted by a man at the bar during his walking practice, so Renato confronts him." tt0077288,mBiT0g4TIYc,Simon is forced to dress in drag in order to escape the club undetected. tt0077288,cW7AkQihsa8,"Renato teaches Albin how to act like a real man, starting with buttering his toast." tt0077288,db1o8mTCBXU,Albin decides to leave Renato for good. tt0077288,JYwvFPjJ7dM,Jacob acts the part of a real butler and Albin tries to act straight. tt0077288,6RbMqRpNqmY,Albin frustrates Renato with his distrust. tt0077288,RdpvBc4bahI,Albin's role as the mother comes to a screeching halt when the biological mother shows up. tt0077288,9lqv-q15y1c,Albin enters the room in drag and introduces himself as the mother. tt0077288,ATNjQgr7LXc,Renato tells Albin that Laurent is getting married to a woman. tt0069995,TfKw3gvxff0,John chases what he believes to be the ghost of his drowned daughter. tt0069995,ySINkZRkHi0,John spots a child who reminds him of his late daughter. tt0069995,LWz_6w0paEg,"Heather repeats the name of Laura's husband, John, and goes into a trance." tt0069995,n-2Lxsj7sf4,A loose board crashes into John's scaffolding while he's restoring a church. tt0069995,JL_tj5M1o-c,John has a fatal premonition about his daughter. tt0069995,r0iSxOsPGl8,Heather foresees John's fate. tt0069995,HFTqyXV9Vio,Heather 'sees' Laura's deceased daughter. tt0069995,CMMzjgpnLGc,A drowning victim reminds John about his late daughter. tt0069995,D2JzjzTWMxw,John reports his missing wife to Inspector Longhi who believes him responsible. tt0069995,9zcAqShAXPo,John finally corners the ghost of his daughter. tt0070666,htWhh0DIFgk,Serpico witnesses the brutality of his superior officers. tt0070666,9_n15K7rv1Y,Officer Frank Serpico is rushed through the hospital in critical condition. tt0070666,POLkdKBw3LM,Serpico's stress takes a toll on his and Laurie's relationship. tt0070666,_1tCmEtAbnw,A disillusioned Serpico rejects the gold badge that he always wanted. tt0070666,4WXN2HQ7PQ0,"Serpico testifies before the Knapp Commission, a government inquiry into NYPD police corruption." tt0070666,n0PS-QVcoJo,Serpico and Lombardo break up a police racket. tt0070666,lYu_8OE3sCE,Serpico's fellow officers don't back him up on a drug raid. tt0070666,0frXMGxB0Ko,Serpico watches in disbelief as Rubello assaults a man for bribe money. tt0070666,fluKR9XbEjQ,Serpico's fellow officers try to intimidate him into silence. tt0070666,mPDFATjS8l0,Serpico nearly gets shot by a fellow officer. tt2561572,-1W4xHNKvAk,Darnell pretends to be several made-up prisoners to help James prepare to go to jail. tt2561572,x4IKGG_2L6I,James and Darnell steal the master records from Martin's office. tt2561572,PvMk6sjZlTU,"With help from Darnell, James uses Capoeira to defeat Martin's thugs." tt2561572,RaicjdiN8ag,"Assuming he's been to prison because he's black, James asks Darnell to help him prepare for life behind bars." tt2561572,M7CL4l-bu68,"Darnell makes up the story of how he was sent to prison, which is suspiciously similar to the plot of ""Boyz N the Hood""." tt2561572,ThIBEo7fsSQ,James shows that he's still worth a million dollars. tt2561572,dhJPm7NolLc,Darnell tries to teach James how to look tough in prison. tt0408306,MgL18hwJZ0A,"After an explosive device fails, Hans uses a grenade to assassinate their target." tt0408306,ZvvQ3CLveAA,Avner and Robert assassinate Wael Zwaiter. tt0408306,PMdokZIn2_s,"Avner and his team carry an assassination, using a telephone as an explosive." tt0408306,zuFtCz663GQ,Avner makes love to his wife while having a PTSD flashback. tt0408306,CToeYdx6SsU,Soldiers disguise themselves as local women to carry out a brutal raid. tt0408306,0bR6pUOhZo4,Avner and Ephraim discuss the assassinations they carried out together. tt0408306,WzmAy1QyIH8,"Avner ponders the horrible attacks at the Munich Olympics, known as Black September." tt0408306,w3trh6DMpHI,Avner and Steve's last assassination goes awry when they hit the wrong target. tt0408306,YoAV0xF7A2U,Avner and Ali discuss their positions on the conflict between Israel and Palestine. tt0408306,azRJpVsJ7AM,Tensions mount when a group of PLO members enter Avner's safehouse. tt7547410,hck3C2VMRzk,Swiper chases down Dora and steals her map. tt7547410,YI8DWdXhg5Q,Dora helps Sammy warm up to doing her business. tt7547410,Ajh84X59SH4,"Stuck in a flooding room, the group brainstorms a way out." tt7547410,Nhj2rSOUjwU,Dora parties with her friends over the end credits. tt7547410,rQABiLDqdVc,Parapata begins collapsing after Swiper angers the Gods. tt7547410,vXQlXYcAksI,"After following Dora's team, Alejandro attempts to steal the treasure." tt7547410,4IbNz68R49c,Boots helps Dora and her friends escape from Viper. tt7547410,mPWo1Dsti3c,The group holds on for dear life when their hallway turns into a spike trap. tt7547410,8mDtsn0yrsA,"Dora and her friends breathe in strange jungle spores, giving them vivid hallucinations." tt7547410,F9vKkW_NNjE,Dora and Boots search for the ancient Incan city of Parapata. tt0071402,36FYEbRBy48,A pair of muggers follow Paul from a diner into the subway. tt0116225,cj5Mp68u2tY,There are no winners on the deathball court. tt0116225,a3HOCIXroqQ,Snake rides the tsunami with the help of a Malibu surfer. tt0116225,BMlHiDzHkSk,Cuervo forces Snake to shoot hoops or die. tt0116225,8OilisaAv0I,Snake and Taslima find themselves trapped by the Surgeon General of Beverly Hills. tt0116225,0tro-o0fOk4,"Double-crossed, Snake gets the ultimate revenge on the President and upon planet Earth." tt0116225,_X8bBE1M994,Snake and his crew dive-bomb Cuervo in the ruins of Disneyland. tt0116225,4N_0iP8TSRo,Snake takes on Cuervo only to get cornered by his men. tt0116225,40p6dkKil_8,Snake makes a desperate escape in a helicopter. tt0116225,WCf36CQxBfY,Snake speeds to not-so-sunny L.A. in a nuclear-powered submarine. tt0116225,aEIaR1nlEoo,'Map to the Stars' Eddie is a little more than a tour guide. tt0071402,DWFZ7v72HjA,Paul gives chase to the thug who shot him. tt0071402,syjdYGc2A20,A group of thugs follow Joanna and her daughter Carol home. tt0071402,S8avj5d8G6s,Paul arrives in Chicago and immediately sees a young woman being harassed. tt0071402,Kbb4g4m68sc,Frank tells Paul to leave town or face prosecution. tt0071402,MfV5DOQ9zac,Paul intervenes when he witnesses a mugging. tt0071402,b_Wpqni4yMQ,"Walking alone at night, Paul comes face-to-face with an armed criminal." tt0071402,L8JRx-zXz7w,Three thugs corner Paul in Central Park. tt0071402,BYN41wGmP8U,Paul makes a pair of thieves pay for bringing a knife to a gun fight. tt0071402,RkaM5GL1LTc,Paul and Aimes watch a mock gunfight at Old Tucson. tt0092493,qDBjp7fdIVw,Sue and Walter open fire on the gangsters. tt0092493,pikL2Z9sykc,Rico's gang threatens Walter to smoke out Crocodile Dundee. tt0092493,2m2vmTtcCM8,Crocodile Dundee wins over street thugs with his knife throwing skills. tt0092493,QCkiT56VSR4,Crocodile Dundee gets double-crossed in the subway. tt0092493,crbN4daV5IU,Mick uses Sue's bra to lure Frank. tt0092493,J7kO-7jEveA,Luis starts a bushfire to corner Crocodile Dundee. tt0092493,qFKVhx9wBZ4,"A ""crocodile"" apparently kills Walter." tt0092493,FX1FiZxQo7k,Crocodile Dundee sort of helps a would-be jumper. tt0092493,g05nAeO-uKY,Mick calls Australia's animals to scare Rico's gang. tt0092493,VmCRT88HTWE,Crocodile Dundee interrogates a gangster off the side of a building. tt0082782,6JfQ82WowC8,The Miner gets creative when offing Sylvia. tt0082782,f06qimixOOI,Hollis finds more than he is looking for while searching the mine for his friend. tt0082782,rS_HIFTV7wM,The Miner attacks Sarah and T.J. on a minecart. tt0082782,EodzQpkDFYo,"While setting up a prank to scare dance attendees, Happy gets a surprise of his own." tt0082782,uifDWAJ6rBY,The Miner makes his mark on a lover. tt0082782,QfSL-PSHTkQ,Happy recounts the mining accident that has haunted Valentine Bluffs for decades. tt0082782,21Vg94SOqk0,The group makes their way up the service ladder only to have a grisly reunion with Howard. tt0082782,acZDS8WDtHs,Mabel get a deadly valentine from the Miner. tt0082782,Pku1UxtmkLM,Patty and Sarah race to escape the mine. tt0082782,7H3XPETdtmc,"Fighting for their lives, T.J. and Sarah discover the Miner's identity." tt0070016,3kvqIswrPhg,Fern sings to Wilbur about the joy their friendship brings her. tt0070016,xE4RRKaCifU,Templeton enjoys a night at the fair. tt0070016,6HboqAtIPA0,Wilbur befriends three of Charlotte's daughters. tt0070016,kf1bu5sUXaU,Goose convinces Templeton to go to the fair. tt0070016,nCm4_MJstGQ,Charlotte reveals to Wilbur that she won't make it back home to the farm. tt0070016,SaRtVS1Fx1Q,A barbershop quartet sings in celebration of Wilbur at the county fair. tt0070016,rPh94cOW-MI,Templeton retrieves Charlotte's egg sac to take back to the farm. tt0070016,YHvTfLaOREg,"A Goose prompts Wilbur to speak his first words and then, sing." tt0070016,__7NUrkFirA,Wilbur experiences fame after Charlotte writes a message about him in her web. tt0070016,qQjdOtebYns,"After singing an optimistic song to Wilbur, Charlotte introduces herself." tt0073440,OqyvMY1fcr4,"Winifred calms the crowd after the shooting with ""It Don't Worry Me.""" tt0073440,dbX-ekoWGWE,"Each woman who has been involved with Tom hopes that his song is dedicated to her, but he only has eyes for Linnea." tt0073440,UVOJk8TFwpQ,A disparate group of people get in a huge car crash on the internstate. tt0073440,ktCIr_DMGOI,"Barbara Jean's performance of ""My Idaho Home” ends with a fatal finale." tt0073440,Jrn-OprEMLI,Opal takes a deep analysis of a junkyard. tt0073440,hT_G4j4nI-8,"After being booed offstage, Sueleen Gay emotionally agrees to strip in hopes of becoming a star." tt0073440,oNpeuCWJgCc,"Haven Hamilton performs ""Keep a-Goin.""" tt0073440,eclUi6kVFcM,Tom rings up Linnea at her family's home. tt0073440,fO8fKHbg4kw,"Wade insults singer Tommy Brown for acting too ""white"" and starts a fight." tt0073440,mr1bVID2qao,Barbara Jean succumbs to her stress and anxiety on stage. tt5952594,clDZPzwANeE,Myles tells Roman that the program - and Marquis' life - are coming to an end. tt5952594,hOH-oOCfsX4,Roman showcases Marquis to the auctioneers. tt5952594,2qyJ5r7Wink,"Taking advantage of the damaged prison gates, Roman frees Marquis." tt5952594,_wkTjOjTafw,Roman struggles to train an ornery stallion. tt5952594,4ZiwLxnl_9k,Roman punches a horse after he is unable to get it under control. tt5952594,lGAADj8laqo,"Roman apologizes to Martha, his daughter." tt5952594,cpZIiyp8juU,"As a thunderstorm stirs up the horses, the convicts rally to get them inside." tt5952594,23uAYGDpS_I,Roman attends his first anger management session. tt0118688,xSJaxpJHf-s,Mr. Freeze traps Batman in his rocket bomb. tt0118688,erE6UlOi3E0,Batman and Robin's race for Mr. Freeze. tt0118688,UIxwyNULzdk,Robin is prepared for Poison Ivy's deadly kiss. tt0118688,MGJlq-gjQj8,Batman & Robin fight Poison Ivy & Bane. tt0118688,OE7aSKZDjTo,"After thawing Gotham City, Batman deals with Mr. Freeze." tt5952594,Zbmc8C3GaC8,Roman invites Martha to the horse auction to reconcile with her. tt0118688,L6w-80CFfAs,Batman and Robin confront Mr. Freeze. tt0118688,gSG9bZu1NtM,Poison Ivy and Bane break Mr. Freeze out of Arkham Asylum. tt5952594,ZPDbP3gms30,"Dan stabs Henry in the yard, and swiftly faces retribution." tt0118688,gnallHWgupY,Gothamites bid on Poison Ivy. tt0118688,k6dRH6fO3Xw,"Mr. Freeze freezes Gotham while, Batman, Robin and Batgirl race to stop him." tt0118688,73Pm3rkTzb0,Poison Ivy gives Dr. Woodrue a kiss of death. tt2599716,es2xkV9Be20,Wei tells the story of how his attempted robbery led to Wu's sister's death. tt2599716,BrGfzBJW-Do,Wu takes Zhong's daughter Miao hostage and demands that Zhong kill himself in order to save her. tt2599716,IMlPpjJlzFA,"Zhong tries to arrest Wu, but Wu tries to commit suicide." tt2599716,ZyXHxrg-zTA,Zhong fights one of Wu's henchmen in order to free three hostages. tt2599716,YbM3eHylkqY,"After a brief bomb scare, Zhong is knocked out and taken hostage by Wu." tt2599716,o-HlGWzIqec,Wu tells Zhong about his past as an underground street fighter. tt2599716,yUVhyWMVx-A,"The police tries to take out Wu, but the gangster is one step ahead." tt2599716,VP8hyYS5WjU,Zhong escapes Wu's clutches. tt2599716,2xbv4AnWS3Q,The SWAT team breaks into Wu's compound and frees the hostages while Zhong chases after the kidnapper. tt8079248,oMH9kIyIl1I,"Jack screams his emotions into ""Help!"" as he sees Ellie with her new boyfriend." tt8079248,5EN4MulDX_A,Jack's Beatles covers take off in a hurry. tt8079248,5VgRuLQgeSE,"Jack plays ""Yesterday"" for his friends, who've never heard of The Beatles." tt2599716,T16_n7praO4,Zhong tells Wu how his sister really died. tt8079248,Q_UdYBBk9XI,"Jack performs ""Back in the USSR"" in modern-day Russia." tt8079248,XDlC8NyBBro,"Jack repeatedly tries to play ""Let It Be"" for his parents." tt8079248,56v74zFOV58,Jack confesses to his fans and to Ellie. tt8079248,yyPkV_leKEY,Ellie pours out her heart to Jack. tt8079248,PIHPbvviS2w,Ed Sheeran challenges Jack to a songwriting competition. tt8079248,0ONU_H0EjIg,John Lennon inspires Jack to take action with his love and lies. tt8079248,SrvRkUwIFfk,Jack realizes his complicated feelings for Ellie. tt4532826,5Svd15hqUfs,Will leads the commoners against the Sheriff while Robin and Marion carry out an underground heist. tt5164214,FGWPKiI0YJQ,Debbie goes over the plan with her crew. tt5164214,1VEMit7JERo,Daphne reveals her part in the heist. tt4532826,_AElcgYtxpA,Robin & Little John steal a carriage to save Marion. tt4532826,0tnKF_qcXTo,Robin and Little John raid the Sheriff's coffers. tt4532826,V9GnOAfI4w4,Robin fights to save Little John's son from being beheaded. tt4532826,tMcUZSJ3xDY,Robin faces off against Little John. tt4532826,O9Q_5-rAw_k,Little John trains Robin into an unparalleled warrior. tt4532826,6hUiaXXj_Hg,Gisbourne pursues Robin and Marian over the rooftops. tt4532826,6LyYxpkxILE,Will is appointed the new Sheriff and issues an arrest warrant for Robin Hood. tt4532826,Oe_cBDzqBUI,Little John saves Robin and helps him hang the Sheriff. tt4532826,wTf4njh9TnE,Robin inspires the townsfolk to revolt against the Sheriff and take back their town. tt5164214,QsP5Y1-eUIM,Debbie reveals her masterful diversion to the crew. tt5164214,HiPRBsFF-zU,John investigates the missing diamond necklace. tt5164214,vBtG9eqgf2Q,Rose and Amita trick their way into replicating the necklace. tt5164214,CgwNoOUtr7s,"Debbie tells the story of her patsy, Claude." tt5164214,7Wyjo_hrIbM,The crew works in tandem to steal the necklace at the Met Gala. tt5164214,iaTG4JflfqM,Debbie tells an insurance investigator she may know who stole the necklace. tt5164214,1CTjGKT-hDY,The crew splits and separates the necklace. tt5164214,OkBaZLq7gnU,Debbie cons her way into a hotel room. tt0058672,ZhGme4W06Kk,"The gang arranges to lose the police at a wrestling match, but Elizabeth gets distracted by the hot Turkish wrestlers." tt0058672,Ua4pj7Sxy-8,Ali questions the validity of the evidence Arthur has acquired. tt0058672,5LvcBgWzjwc,Giulio descends into the museum to replace the real dagger with a replica without triggering the floor alarm. tt0058672,WbFri7eX_YA,"Walter worries about changes in the plan, and Elizabeth tries to distract him." tt0058672,Izp0m24gYRU,"After a bird sets off the alarm in the museum, Ali pieces together the details of the heist, and the gang ends up in prison." tt0058672,5hriUO428pw,"When Arthur is unable to hold the weight of Giulio on the rope, Walter helps to pull him into position." tt0058672,vITX2N0hpYE,The gang decides to test Arthur by challenging him to drag the sofa using only his arms. tt0058672,JfsgeCwAYEM,"At a traveling fair, Elizabeth spies a replica of a jewel-encrusted dagger and formulates a plan for stealing it." tt0058672,9ZBPZ4b5LRw,"When Arthur refuses to cross the roof at night, Walter agrees to make the trip in broad daylight." tt0058672,55uK9Lg3TaY,"Elizabeth and Walter visit mechanical expert Cedric, who demonstrates the museum's alarm system." tt0058672,hIokX-nhQd8,"Arthur denies all involvement in terrorism, and agrees to work with the Turkish police to clear his name." tt2495118,6nmLldKD8fw,Ip Man spars with martial arts master Ng. tt2495118,nEAgLZRGV98,Rival martial arts gangs go after Master Ng during the Lion Dance ceremony. tt2495118,JKPRgXq8K1E,Wang Dong fights in a crooked boxing match. tt2495118,AvNNkDEqjdQ,Ip Man shows Leung Sheung his Wing Chun skills. tt2495118,Fo16J2G4bvU,Ip Man fights the Dragon. tt2495118,eUGtEOY5ZLE,Ip Man meets his former student. tt2495118,Y7DGxkezqSc,Ip Man and his disciples fight the Dragon. tt2495118,xjYdRu4FiyA,Emotions run high at Ip Man's New Year's celebration. tt2495118,vcURIKX8710,Ip Man's reputation grows after a street fight. tt2495118,kurx75GAz74,Ip Man puts a drunk in his place when he harasses Jenny. tt7634968,eLKbRagkB7M,Ali learns to 'share' with Will. tt7634968,hF_9GQFISow,Ali can't escape all the men's thoughts running through her head. tt7634968,taOda6ZwWyw,All hell breaks loose when a drunken Ali spills the beans at Mari's wedding. tt7634968,fhK8qpO-iD4,Ali passes up the promotion for success on her terms. tt7634968,08cPFt1GzBs,"Ali makes advances on her neighbor, who isn't what she expected." tt7634968,Dys_AAhlGqU,Ali's co-workers present a racist sales pitch to Jamal and his father. tt7634968,pWfB7jrCgxk,Ali's manipulations come crashing down around her. tt7634968,aNbtnYXp9-k,"After a night with Will, Ali does the walk of shame...and brings something with her." tt7634968,KDXK5R3f01I,Ali parties hard and wakes with a surprising new power. tt7634968,75k4CoAyT4I,Sparks fly between Ali and Will over pool. tt6017942,R76ux4iCRzI,The Cleaners explain why Eli was put on Earth. tt6017942,QKbA0PxeoaM,Taylor urinates on the floor in a gas station. tt6017942,zwLOflhZOBg,The mysterious Cleaners track their missing gun. tt6017942,4xtCQLbXDqY,Eli saves his brother Jimmy with the gun's explosive force. tt6017942,zjXn9UGZt4o,Lee beats up Jimmy for dancing with Milly. tt6017942,cXlRo6pJ9ig,Jimmy robs Hal's safe with disastrous consequences. tt6017942,7rYqBdJdnqo,Eli and Jimmy rob Lee at gunpoint. tt6017942,KTIw9F3TY88,The Cleaners freeze everyone but Elijah. tt6017942,gp6FX1H99NA,Eli retrieves a sci-fi gun from an abandoned warehouse. tt6017942,A5CndWt2xrY,Eli shows Jimmy and Milly the gun's power. tt0046754,_YMLnL33X78,"At Maria's funeral, Oscar recalls the popularity Maria achieved upon the release of her first motion picture." tt0046754,PrBVgtAeNhE,Kirk and Alberto face off in an argument caused by their competing affections for Maria. tt0046754,6oxCZ2CyGII,Alberto berates Maria until he receives a slap from the Count. tt0046754,x_6ZpxB4xIc,Harry goes backstage at a Madrid nightclub to meet Maria and convince her to see a movie producer. tt0046754,8Q2WgdOSfms,Maria poses for a statue and Harry gives her away at her wedding to the Count. tt0046754,i07yEczcujQ,Oscar recalls the way Maria held off the advances of Alberto and everyone else. tt0046754,q9sjo2J6hIk,The Count makes eye contact with Maria while she's dancing. tt0046754,d35M7d-E_PY,"Harry introduces Maria to Kirk and Oscar, who pitches her on the idea of movie stardom." tt0046754,EoikWLSsmRk,A drunken blonde accosts Maria at a party and demands to know which rich producer she plans to seduce. tt0046754,zUCWPJk-XHk,"Faced with the news of Maria's father murdering her mother, Kirk and Oscar consider how best to keep the tragedy out of the headlines." tt0046754,cJyhEAxnQ-U,Maria recalls her childhood and explains to Harry why she hates to wear shoes. tt0046754,-VnQ_KpOBm4,"At Maria's funeral, Harry recalls how he first came to meet the woman who became the famous actress." tt1001526,b2P-oU216V4,Megamind taunts Titan into a superpowered duel that gets hotter than he can handle. tt1001526,MuG157PWMWI,"Titan forces Roxanne on a date, assuming she'll love him now that he's a superhero." tt1001526,UayJYYeMANA,"Metro Man returns to fight Titan, but he's a little different than before." tt1001526,svwcgrDZVPw,Megamind inadvertently catches Metro Man in the ultimate deathtrap. tt2888046,-wwDqsmUkxQ,Ip Man fights Cheung Tin-chi for the future of Wing Chun. tt2888046,nl5l8Vn3Syc,Ip Man and Cheun Tin-chi use their impressive Wing Chun skills to fight off henchmen. tt1001526,a_hsjTExzbw,Megamind returns to rescue Roxanne from Titan. tt1001526,Q7r3HIkBJcg,Megamind tries to intimidate Roxanne with hackneyed tricks. tt1001526,GNAJWwqr8cM,Metro Man reveals how he faked death to become a terrible musician. tt1001526,dwufX9GKI_4,"Megamind trains his new superhero, Titan." tt1001526,zeGRvFbWbz8,Megamind recounts the loneliness of his childhood. tt2888046,FIGj7z-7olo,Ip Man defends his son from Ma. tt2888046,Abb6BQgz0N4,Ip Man uses the one inch punch against Cheung Tin-chi. tt1001526,2Q7wnttjQgw,Megamind faces off against Titan for the last time. tt2888046,VMGKsJi34Ac,Ip Man fights Triad leader Ma and his men. tt2888046,O6Ap5AtXFbg,"In order to gain recognition, Cheung Tin-chi fights a series of high profile martial artists." tt2888046,PhQsxcbo6gk,Ip Man fights Frank for three minutes. tt2888046,W-KxBQyVfc0,Bruce Lee tries to convince Ip Man to train him. tt2888046,b_fKzher8QQ,Ip Man is attacked by the Thai boxer while taking his wife home from the hospital. tt2888046,3WksbH_r10U,Ip Man saves the school principal from Ma and his henchmen. tt1860353,1SPMnqTUu1A,Chet encourages Turbo to finish the Indianapolis 500 before Guy Gagne does. tt1860353,VuUzda9kvJA,"With his newfound powers, Turbo confronts the snails' nemesis." tt1860353,spy6L78o3-A,"During a pit stop, Whiplash teaches Turbo a valuable lesson." tt1860353,_Hxk9-WNdGQ,Turbo ends up in the middle of a street race and gets a dose of Nitrous. tt1860353,gH1kstAfb5g,Turbo shows off his speed on the track. tt1860353,XUcN9bf_jP0,Tito brings Turbo and Chet to a snail race. tt1860353,pvACjy-tYFE,Turbo races for a tomato before the gardener and his lawn mower get it. tt1860353,JkrovwTh2rw,Turbo races to save Chet from crows. tt1860353,lJf8EW9800o,Turbo and Guy Gagne are neck-and-neck until a devastating crash. tt1860353,j0c_RQDfjSM,Whiplash challenges Turbo to a death-defying race. tt1386932,MTSpAVqgSso,Ip Man and the Twister square off in the ring. tt1386932,rTy_mgJIIrk,Ip Man musters his strength to fight Twister. tt1386932,-ZJZF6PuwxE,Ip Man acquires his first pupil by beating him in a fight. tt1386932,8TTWKlJdWVE,The Twister starts a riot when he insults Chinese Boxing. tt1386932,CyGOqLQTww0,Ip Man and Wong fight their way out of a dangerous situation. tt1386932,9aR0JkmZLk0,Hung Chun-nam is willing to fight Twister to the death. tt1386932,XkvSrgngUrw,Ip Man fights Master Hung Chun-nam. tt1386932,8kcd603M8vA,Ip Man frees his protege Wong from a gang of martial artists. tt1386932,SajgVNIRdn8,Ip Man competes against the local martial arts masters. tt1386932,rA8NAlaMgPo,Hung Chun-nam fights heavyweight champion the Twister. tt0097388,TXlioVAN41o,Tamara and Wayne try to entrap Mr. McCulloch. tt0097388,hktlkG0QuKY,Jason hunts for Rennie and Sean through a diner in New York City. tt0097388,b8t5kX7k0vQ,"Eva discovers Tamara dead, then runs into Jason." tt0097388,CflcJ-HSA_Y,Jason chases Rennie and Sean onto the subway. tt0097388,VhYxVXimdIw,Jason kills two junkies who kidnapped Rennie. tt0097388,U74NUVSKuP0,Wayne discovers his classmates' corpses before being thrown to death by Jason. tt0097388,-vT2ztIXioo,Jason takes out two amorous teens on a boat. tt0097388,o6tz9pga4H4,Julius goes a full round with Jason. tt0097388,jtSnHOkSJxM,Rennie exterminates Jason and sees his hopeless child-form at the same time. tt0097388,Gdp4SEfQzy8,Jason drowns Charles in a barrel of sludge. tt1220719,AVxDyv1h9Pw,The factory workers fight against Jin's gang of ruffians. tt1220719,z1hLLDMkdlM,Master Jin mocks Ip Man's style. tt1220719,Kv9ygN2B8WU,Ip Man demands to fight ten Japanese martial artists. tt1220719,aXYTDZr_rmU,Ip Man accepts Master Lin's challenge to a private match. tt1220719,Z2SdWJJWe4I,Jin challenges the local masters. tt1220719,ciue6Puy53s,Japanese General Miura fights three Chinese martial artists at once. tt1220719,CqsCkhbCUr4,Ip Man fights General Miura for the honor of the Chinese people. tt1220719,gCRokIMgn1A,Ip Man agrees to train cotton factory workers. tt1220719,wBHZhBnXRew,Lin fights Japanese martial artists for bags of rice. tt1220719,kQosO29X9Bo,Ip Man defends his home from Japanese soldiers. tt8695030,zfyDw7VR3Hg,Ronnie beheads three murdered teens to prevent them from reanimating as zombies. tt8695030,PSW5cd8WVwM,Zombies raid the town while Hank and Bobby defend the hardware store. tt8695030,khX9fjqlf40,Ronnie tells Cliff how he knew everything would end badly. tt8695030,IuiKCwrTYO0,Zelda criticizes a zombie's fashion choices. tt8695030,4_SBdgdCwDA,"The town drunk, Mallory O'Brien reanimates in the police station." tt8695030,bICHpdNbsmU,Zelda is forced to behead two zombies. tt8695030,AX-qpuOuDVg,Cliff and Ronnie are shocked when they see Zelda's exit strategy. tt8695030,btVoaFC1Aqk,Cliff and Ronnie take on a cemetery full of zombies. tt8695030,PNwyZMNu1gA,"A pair of coffee-loving zombies kill two diner employees, Fern and Lily." tt8695030,iK03b228mmo,Cliff and Ronnie slaughter their way through the zombified town. tt0045920,sw1tJoYrs7M,John demands the aliens release the townspeople. tt0045920,sAvGdule3fA,The alien stalks John and Ellen after some mechanics go missing. tt0045920,i4NRgUeziqA,John Putnam discovers an alien space ship. tt0045920,8fHMMPXUE5I,Ellen and John watch a UFO fall from the sky. tt0045920,aGMiaQISzq0,The aliens break free of the mines and travel home. tt0045920,5ZCaXimXaxo,John is forced to fight the alien-possessed Ellen. tt0045920,eeWPnGsY-Xc,John sees the aliens for the first time. tt0045920,ge9ahoqNSLE,The townspeople form a posse to take out the alien-possessed Frank. tt0045920,VohdBtnMchg,Frank stops Ellen's car with nefarious intent. tt0045920,5lekLtatLl0,John and Ellen nearly hit an alien with their car. tt7958736,Xq5eXYCKUF8,"Ma gets intimate with Andy in front of Maggie, his girlfriend." tt7958736,X36kqKTClAg,"Maggie and Haley discover Genie, Ma's daughter." tt7958736,4F5AGPMRwgw,"Ma buys booze for the teens, then calls Ben, one of their fathers." tt7958736,8a2aEHT7v54,"Believing men to be dogs, Ma injects Ben with dog's blood." tt7958736,aL4dQo8iBLo,"As the teens struggle to escape, Ma refuses to let go of them or the past." tt7958736,tBOZNOYMHEg,Ma takes revenge on Mercedes with her truck. tt7958736,O0PDEEFMUB4,Ma doesn't take crap from punk teens. tt7958736,sMLop6XZBEw,Ma responds to Maggie's insult with roofied shots. tt7958736,nqzkyfeS2Oo,Ma avenges her traumatic past upon her helpless captives. tt2639336,Rf02bF9xoaY,Greta drugs and kidnaps Frances. tt7958736,wTfbHs4HlPo,Ma's date takes a turn when Ben calls her out on hanging out with his underage son. tt2639336,2s7POrgTTzg,Greta shows up at Frances' work. tt2639336,0DPfRUFGaLE,Frances tries to escape during Greta's baking lesson. tt2639336,DawumJOyTOU,Greta shows Frances that she'll be sticking around for a long time. tt2639336,Nohgrc3m3z4,Greta drugs and attacks Inspector Cody with Chopin. tt2639336,fV4ApYBVa3w,Frances finds herself locked in Greta's box for badly behaved girls. tt2639336,c5IXZhctoV0,Erica. tt2639336,pwidWMvvsVc,Frances and Erica free themselves from Greta. tt2639336,qI14dmYhHGE,Frances finds the stash of purses that Greta uses to lure victims. tt2639336,INGcULi_c2U,Greta stalks Erica while taunting Frances. tt0068909,2WDIu8XbVD8,Cervantes transforms and reveals himself to the others as Don Quixote de La Mancha. tt0068909,ALWV_EA6x8I,"Cervantes sings ""Man of La Mancha.""" tt0068909,v4U2mAwO6-4,Aldonza brings Don Quixote back by reminding him of his own inspirational words. tt0068909,bD8bl3omDIU,Everyone bands together in faith as Cervantes and Panza leave prison. tt0068909,14t7g8Yq8vE,"Aldonza is irritated as the men sing her a song and call her ""Little Bird.""" tt0068909,oo7VlD66ISM,Don Quixote sings a song of inspiration and unwavering determination. tt0068909,QPDuZ_Wq7ZA,Don Quixote has a vision when he sees Aldonza and remembers Dulcinea. tt0068909,Pl8E_9CTS1Y,Don Quixote is hypnotized by the Knight of the Mirrors. tt0068909,0iUKZskQEso,Aldonza sings a song about her cynicism towards men and love. tt10720210,d0ZOz1i5-PE,Joe Croaker and Bartle Bee fight over a mushroom. tt10720210,g3kYdbqIwBE,Bartle Bee tries teaching Joe Croaker how to fly. tt10720210,MVo83HAnysQ,Bartle Bee tries to impress Cosmo with her nunchuck skills. tt10720210,LZ7Thv4ztjg,"Joe Croaker and Cosmo play an intense game of Rock, Paper, Scissors." tt10720210,UhL24j9G3tc,Joe Croaker cheats to win a game of hide-and-seek. tt10720210,AxGMySJ6ySc,Flutterby tries to prove she is a better dancer than a toy. tt10720210,BCSe_CsI75w,Bartle Bee tries to help Joe Croaker lose some weight by getting him in shape. tt10720210,msWWI02CG-o,"Using her nunchucks, Bartle Bee defends Cosmo from his disgruntled landlord." tt6212136,h7iSkEafJ0o,The couple's built-up tension erupts over the course of a dinner party. tt6212136,rIGsI26-Bg4,Franny gives Dan his Christmas present. tt6212136,fnV93ymcOME,Franny and Dan wake up together for the first time as newlyweds. tt6212136,dUMW1YRsWcY,Franny and Dan exchange their regrets and come to terms with their separation. tt6212136,l3H-hjiT6wg,Franny and Dan have a pregnancy scare. tt6212136,DqOU6NcRVe4,Franny gives into her feelings for Noah. tt6212136,oRX8ramIWwI,"Noah tricks Franny into a ""date"" -which she thought was a company gathering." tt6212136,JcF3Ay4sjss,Franny fantasizes about her stalker boss. tt6212136,L38j8UMd4oM,Franny's mother consoles and gives her martial advice. tt6212136,IXyMkCDTmfA,Franny meets her skeevy bosses on her first day at work. tt7334528,YPXkzktz5oA,Dax has a recurring nightmare about the game that ruined basketball for him. tt7334528,06qgu4XoNL4,The group persuades Big Fella to join the team just like the old times. tt7334528,TvFCzrDQrD8,Uncle Drew reminds Dax of a game's true importance. tt7334528,etixMqUt8Ak,"Dax loses his team to his rival, Mookie." tt7334528,FC9AZFwoLVg,Boots motions are suddenly rekindled when his old teammates visit him in his retirement home. tt7334528,K_NTydd3MqM,"Betty Lou tries to prevent her husband, Preacher, from leaving." tt8426112,H4hjg6jAhOY,Joe fights a relentless Easter egg. tt8426112,M5DZzTtbV1g,Joe and Cosmo battle each other in the sky. tt7334528,7ML-9r4M_qk,The group goes from laughingstocks to it crowd through their dance-off. tt8426112,jXReN1Nzlws,Joe finds himself on a wild bouncy ball ride. tt8426112,0zHERbRFxTU,Cosmo wages a brutal nautical fight. tt8426112,aRav_8OWESA,Joe takes drastic measures to get fruit from the tree. tt8426112,kg3erAXOz34,Bartle Bee tries to stop Joe Croaker from hurting a rubber duck. tt7334528,6q2aPotJP7w,Dax's dream team doesn't fare well against a girls basketball team. tt7334528,bIpQoVucszI,Uncle Drew proves his extraordinary skills. tt7334528,93qTzU2bNh8,"Dax tries to save a baby from being dunked by Preacher, but he gets baptized instead." tt8426112,MlUEy_9s0D0,Joe has some ill-behaved fun with a slingshot he found. tt8426112,Jye1gDePzgY,Joe gets into a sticky situation when he uses Cosmo's idea for getting on top of the tree. tt8426112,I7pEk2hB5OQ,Bartle Bee helps McBroom find the best assistant for carrying his dung balls. tt8426112,wNRvgeiaVXA,The insects team up to save Joe from a dinosaur balloon. tt6806448,uTOoWlYv95w,Hobbs and Shaw chase Brixton and Hattie down a building. tt6806448,CFqO1y01qjs,Hobbs rallies Samoa's warriors to battle Brixton. tt6806448,xcTK6uPPiAo,Hobbs and Shaw clobber goons as they head through the Eteon facility. tt6806448,sfgNK5f04iY,Hobbs and Shaw outsmart and overpower Brixton's chopper. tt6806448,1afS6fOeldc,"Hobbs, Shaw, and Hattie escape from Brixton's base." tt6806448,W9Rb6wHuQXU,Hobbs and Shaw talk smack to Brixton before Hattie makes her move. tt6806448,R8JjTOsPHo4,Hobbs and Shaw have their final showdown Brixton. tt6806448,dapP5W153YE,Hobbs' brothers help him and Shaw chain themselves to Brixton's helicopter. tt6806448,v8CflcvxDJo,"Brixton pursues Shaw, Hobbs, and Hattie on a motorcycle." tt6806448,qabChviGItk,Hobbs and Shaw face off Brixton. tt8426846,I7-GvXsr40k,The gang traps Joe after mistaking him for a monster. tt8426846,40NyqKryTUU,Joe becomes infatuated with a fantastic smelling plant. tt8426846,_myZeGUaveU,Cosmo and Bartle Bee race to save Joe as he rolls down a hill in a can. tt8426846,hv_mYkUEGko,Joe takes flight with the help of a kite. tt8426846,S0pCBDjC9Wk,Joe gets a fish bone stuck in his throat. tt8426846,J9Sz39odDjw,Smelling a certain plant makes Cosmo hyper aggressive. tt8426846,7ygAdJYS9m0,Joe steals Cosmo's car and cheese. tt0092605,jUkqho3OUos,"When Verne tells J.C. that her well has run dry, she suffers a nervous breakdown." tt0092605,4YPxIpLpLRM,J.C. walks in to find Eve naked with a stranger and promptly fires her. tt0092605,rwr1IzFzjqA,"J.C. interviews prospective nannies, settling on the innocent but clueless Eve." tt0092605,GEB8rnOevpY,"While changing her tire, J.C. tells Dr. Cooper about her plan to get out of town, until he surprises her with a kiss." tt0092605,hgLkypdC6wo,J.C. struggles to change a diaper with little help from Steven. tt8426846,yjrvJkWU_5k,"Joe tries his hand at bungee jumping, only to realize he's scared of heights." tt8426846,UGfYt2Ufipw,Joe struggles to get a stamp off of his butt. tt0092605,Mm9Y9JEmekY,"J.C. meets Mrs. Atwood at the airport and picks up an ""inheritance"" in the form of her cousin's baby." tt0092605,_OaOalM_tcY,J.C. runs into some obnoxious yuppies at the general store and gets some ideas for her homemade baby food. tt0092605,tSpOMNC3WtQ,"After discovering that the baby might be sick, J.C. takes her temperature the hard way." tt0092605,nAqJV2olXN0,Dr. Cooper kisses J.C. in the kitchen and she admits he's the only man who doesn't make her nervous. tt8426846,AryZBe8C69U,Joe gets stuck in a can. tt0092605,AAByjopE2GE,J.C. and Steven learn the hard way that babies don't care for linguini. tt0092605,adxwpSdHj90,"J.C. opens up to Dr. Cooper about her sex life, unaware that he's a veterinarian." tt0092605,rlMANFZdCkk,"Late for her lunch meeting, J.C. drops her new baby off at the coat check." tt7207158,fyOv0TB4lXU,Joe Croaker tries to fly like his insect friends. tt2872518,QtVEk0oKtkM,Sophia asks Mack to sit in divine judgment over sinners and his family. tt2872518,J90JKBCDzSs,Mack arrives at the shack to confront his child's murderer. tt2872518,gHJwn_JEazA,"Mack meets Papa, Jesus, and Sarayu." tt2872518,536GqWYOHdI,Mack buries his daughter. tt2872518,t_9GTwEOdkY,"Mack sees souls in heaven, including that of his abusive father." tt2872518,6Mr9bQJEuN0,Sarayu teaches Mack about the intersection of good and evil. tt2872518,ns7B5fzH11c,Mack receives word about his daughter's kidnapper. tt2872518,gjuizikJ2bk,Papa instructs Mack to forgive his daughter's killer. tt2872518,K2NNznJJadY,Mack races to save his kids from drowning. tt2872518,VRuV5oMqkDg,Jesus talks Mack down when he begins to literally sink into his fear and despair. tt7207158,3cBAmkzKEBU,Joe Croaker and his friends are determined to break open a nut. tt7207158,gJDpyQ1Efto,Joe Croaker's solo performance ends poorly for everybody. tt7207158,NKewr9uDDck,The insects get back at Joe Croaker for his whistling pranks. tt7207158,StUN1G5filU,"Joe Croaker fights for a pill full of poop, believing it to be candy." tt7207158,iKi2wYZNAnE,Joe Croaker decides to save his friend Cosmo from a toy crocodile. tt7207158,kFuzbEylajA,Bartle Bee gets involuntary chiropractic treatment for his neck by his friends. tt7207158,tHHqfGeeXps,Joe Croaker pits his strength against McBroom the dung beetle. tt7207158,1JJjo2GcRrg,Joe Croaker and his newfound whistle make a torturous duo. tt0095179,TRCSLhYz9CA,Tina's battle with Jason continues. tt0095179,1rKzD4yNMoc,Tina unleashes her psychic powers against Jason. tt0095179,D4sj2Yq5bnU,Maddy tries and fails to hide from Jason. tt0095179,Ed8T-GzBcIY,Jane isn't safe from Jason even in her sleeping bag. tt0095179,f0ui8NJnqN8,Jason interrupts a horny couple with a horn of his own. tt0095179,oY31D4QSB-Y,Tina tries to revive her father from the lake but unwittingly animates Jason. tt0095179,Irq818Ek0Ro,Tina summons her late father to combat Jason. tt0095179,JivWELi2rFw,Robin finds a cat and a present Jason left for her. tt0095179,YIhMJMRdGGY,Jason cuts Dr. Crews down to size. tt0095179,VhzodI8yBUE,Tina squares off with Jason. tt2992146,S71iST-01VM,Detective Dee and the others confront the Dondoers on their island. tt2992146,aQ2aje8PZz0,A Chinese fleet is attacked by a giant monster. tt2992146,wBq7RLGDqKE,Detective Dee and Zhenjin race to save Ruiji from brigands and a monster. tt2992146,1TY9TWCU1z8,Detective Dee shows off his fine horseback skills to combat the sea dragon. tt2992146,u4NTe-ZIrGs,Chief Zhenjin crosses blades with Doctor Wang Pu. tt2992146,skrnn_M3e9A,Detective Dee finds a novel cure for the parasite-laced royal tea. tt2992146,OVSaW3-ehsQ,"Chief Zhenjin battles Cheng An, the traitor." tt2992146,VK2Bz9yq2As,Detective Dee and company combat the sea monster. tt2992146,pQwl5G0ZHdY,Chief Zhenjin defends Swallow House from a group of water-bound assassins. tt2992146,IagCGWtNyTQ,Detective Dee and Chief Zhenjin square off against Wang Pu on a cliff. tt1563742,eFF1grhBvsE,Kate pulls off her scheme on the amnesiac Leonardo. tt1563742,JqYtHZw-M8c,Leonardo and Kate receive a visitor bearing an incredible gift. tt4795124,K3OlytfxzHU,Maximo tries and fails to use shoe polish to make himself look younger. tt1563742,zvn05TBxdUo,Kate decides to forgo her ruse over Leonardo just a little longer. tt1563742,GpLeHrROqRE,Leonardo suffers through his first day of work -ever. tt1563742,t45uy-QuRDU,Leonardo chooses between his wealth and Kate. tt1563742,AD26OcrFQOY,Leonardo discovers the heartbreaking truth of his identity. tt4795124,vyb2Imfghkg,Maximo gives Sara the surprise of her life. tt4795124,MHPp7bN1kXI,Maximo teaches Hugo how to seduce women. tt1563742,QbJIRG4T680,Kate falls for Leonardo after a romantic story. tt4795124,p5BfdwK92UI,Maximo & Rick both try their hands at seducing Celeste. tt1563742,QqFuGUbvgnQ,Leonardo goes for condoms only to fall off his boat. tt4795124,GNSkaIuTNao,Maximo tries his best to woo Celeste but can't seem to say the right thing. tt4795124,aD4ZPXHAVCA,Sara proves that she can make any song into a rousing salsa. tt1563742,XkNQZg7yTvw,Kate stands up to Leonardo when he refuses to pay her. tt1563742,fRF7InV7TfI,Leonardo proposes to Kate for what he thinks is the second time. tt4795124,aX9m-xzauMw,Scott and Nick break Maximo's balls for screwing them over. tt4795124,I9NGZteE31I,Rick helps Maximo sneak into a shady office. tt4795124,67dyb52zKRs,Maximo tries getting competitive with his sign-flipping gig. tt4795124,32pZcw3acD0,Maximo decides to make himself sexy. tt6663582,hw3lBV-89M0,Audrey and Morgan celebrate a birthday -and a new mission- in Tokyo. tt6663582,wB2w4t9dr0Y,"Nadedja is ordered to kill two Americans, which turns out to be harder than it looks." tt5186608,FeLR7tVzVeA,Things go from bad to worse when Ben gets bullied. tt5186608,kAKY4ZkKIPs,Ben throws a tantrum when Master Kang forbids him from training. tt6663582,yqlAjK0PVsU,Morgan fights Nadedja during a high-flying circus act. tt6663582,gap2gWQy77A,Morgan swings into action against Nadedja tt6663582,CtcQNdbPsSQ,Morgan will do anything to get a computer drive decrypted. tt6663582,XC0h9nx3Pw4,Audrey tries to get Morgan to swallow a flash drive containing top secret information. tt6663582,AHLo7Vs6drM,Audrey reveals that she hid the flash drive inside her special place. tt6663582,nqEL7fP4Rvs,Sebastian rescues Audrey and Morgan from Nadedja. tt6663582,r2fHzai5ih4,Audrey and Morgan tell Nadedja literally everything they know. tt6663582,vo0cUbT4Lh4,Audrey and Morgan enact a plan to find out who's behind everything. tt5186608,fR16yYVpcPw,Ben finds serenity with Master Kang and reopens the dojo. tt5186608,pRwRO-DTniM,Master Kang gives Ben simple orders that help him walk again. tt5186608,AXZhl8klPfM,"Ben goes nuts on his bully, Dorian." tt5186608,kQnmD2gLRVw,Ben's absorption in Taekwondo hinders his and Adrienne's relationship. tt5186608,6A7uz7Orp_c,Ben comforts Adrienne before she enters surgery. tt5186608,M2UIT2nHDaU,"Ben trains hard, but isn't ready to face his bully, Dorian." tt5186608,NQbCRZG4-jo,Ben spars with Tom. tt5186608,4EEMDr8l_gY,Adrienne's attempt to befriend Ben doesn't go as planned. tt0091080,V0sQmOr826A,A bolt of lightning brings Jason back to life. tt0091080,kT_dXxp7eAo,Jason murders Nikki and Cort in an RV. tt0091080,lFyh5QCd6kw,Sheriff Gorris learns the hard way why not to shoot Jason. tt0091080,R-wQWw1geBM,Jason breaks Sheriff Garris' back backwards. tt0091080,r1N-Xby5AnA,Jason beheads three paintballers with one swipe. tt0091080,S1NFRvZE3FA,Jason kills two police officers. tt0091080,L91dx9ovcz8,Jason impales two young camp counselors. tt0091080,crKAy2dGX_8,Tommy and Megan fight Jason in a burning lake. tt0091080,5QMsr3UxzPk,"Tommy lures Jason into the lake, but quickly finds himself in over his head." tt0091080,zbAsqngq2qY,Jason murders the grave digger and a couple who witness it. tt9251598,I-6xj25pOP4,The animal guardians and intergalactic penguins join forces to defeat the evil rat. tt9251598,NdaWQm_UAF0,The legendary Space Guardians offer to help the penguins. tt9251598,-G7OPYUlnT0,The penguins learn an important lesson and vow to find who attacked their sandwiches. tt9251598,geGO_emEsqs,Flip and Zooey realize their sandwiches have been tainted --with cheese! tt9251598,YqNktpnzIf8,The rat confesses to spiking the penguins' sandwiches with cheese. tt0332375,Z_WhAyucr_E,The truth comes out about Hilary Faye framing Mary and Cassandra for vandalizing school property. tt0332375,VlMy5-BAjzo,Cassandra and Mary are framed for having graffitied the school. tt0332375,1UbxL1MVZ7o,Cassandra gives the tough girl act a rest and talks to Mary about her situation. tt0332375,o6MDdOWCCT8,"Hilary Faye tries to show Cassandra that Christians are cool, but it backfires." tt0332375,ij0JLKDJOrc,"Hilary Faye, Tia and Veronica give Mary a ""gentle"" intervention." tt0332375,bYt5SAF0M3I,Dean assures Mary he is going to beat his gayness. tt0332375,SaUYfjxV8Ic,Roland and Cassandra help Patrick surprise Mary for prom. tt0332375,cvPIBkkwvD4,"When Dean tells Mary that he thinks he's gay, Mary has a vision of Jesus." tt0332375,Ded2FG1gA0c,"In a fit of rage, Hilary crashes her van into Jesus in front of the entire prom." tt0332375,q2YwvMc96VY,Patrick takes Mary into a private room in the mall to tell her how he feels about her. tt3887158,DznDZ_VH_2c,"Hadad summons Asmodeus, a powerful demon, to help him get revenge on King Solomon." tt0332375,EpCp0rAGDNo,"Roland tells off Hilary Faye, which frees him up to hang out with Cassandra." tt3887158,SeiUW113A_c,"Using a camel as a getaway car, Solomon helps Princess Na'ama escape from her arranged marriage." tt0332375,Ent1UQJ4mdU,"Mary speaks out against Hilary Faye's prayer circle to ""save Dean.""" tt3887158,1Quc4FFOwBM,Hadad frees Asmodeus from the earthen jar. tt3887158,8zqwJl6lq-4,Solomon defeats Asmodeus and restores Jerusalem. tt3887158,hwQWBQjvbgM,"The elderly beggar reveals himself to be Shamir, the Stone Worm." tt3887158,SemxtZJHxEQ,Asmodeus blows Solomon & Tobby away from Jerusalem. tt3887158,uYV3p1yRHyg,"Hadad comes to Jerusalem, seeking vengeance for what Solomon's father, King David, did to his people." tt3887158,HpJfIRs8rfc,Solomon leads an army of animals into Jerusalem. tt3887158,ZEXNPj-4clI,King Solomon captures Asmodeus in a magic trap. tt3887158,MDv-LBBUkVA,Eagle returns just in time to save the crew from an army of soldiers. tt1846589,ESEKkJNt1P8,"The USS Tampa Bay hunts The Konek, unaware that a deadlier predator is stalking them both." tt7401588,6ikH1EFDm6A,Pete and Ellie deal with Lizzy's explicit cell phone photos. tt7401588,Q-ABzsALkYs,"While Pete and Ellie struggle to connect with Lizzy, Grandma Sandy easily wins her over." tt7401588,_i97zAZclkI,"Pete is thrilled to hear Lita call him ""Daddy"" for the first time." tt7401588,AAN85u-udis,Pete and Ellie assault Jacob for sending illicit photos to their daughter. tt7401588,7-5kYQLJnFw,Lizzy finds out that her biological mother isn't coming for her and her siblings. tt7401588,NCjjqtamXzU,"Pete gets caught in Ellie and Lizzy's argument, leaving Juan unattended." tt7401588,HceqAAw60vQ,Lizzy learns how much her foster parents love her. tt7401588,Jy8mz4gu2oQ,The family's dysfunctions hit in a disastrous chain reaction over Christmas dinner. tt7401588,ay1hpFWZQnI,The couple falls for Lizzy at the adoption fair. tt7401588,Qc9eycqDJKk,Pete helps Lizzy take out her frustrations. tt1846589,IKo0Eu-Xk_0,Beaman's team makes a desperate amphibious escape. tt1846589,CvnpRyO6pH0,The Arkansas faces off against a deadly Russian destroyer. tt1846589,KGwANfqAjNY,Captain Glass outwits a Russian sub hidden in an iceberg. tt1846589,w_XUAmQdKJI,Captain Glass and the crew brace for impact from an enemy torpedo. tt1846589,DfKYwoHHceM,Beaman and President Zakarin run into fierce resistance. tt1846589,1eg0tbBF6eo,Captain Glass and Captain Andropov work together to elude a destroyer. tt1846589,4XSuEmqtnRw,Beaman's team rescues Russian President Zakarin from Admiral Durov's. tt1846589,RcccijujIjE,Captain Andropov helps Captain Glass navigate a Russian submarine trap. tt1846589,7UQAjKVyjIs,Captain Glass plays chicken with Admiral Durov. tt6836772,Txy4-5uYN0M,Lt. Calloway and his platoon escape Nazi pursuit and arrive at a small drawbridge. tt6836772,TrWMrEKpT7M,Thomas makes a last stand against Nazis in pursuit. tt6836772,pOlGqiWm9yY,Strasser explains his penchant for torture to an involuntary participant. tt6836772,IBsHlPPeaY0,Strasser tortures a scientist for information. tt6836772,4mfQVFVg16s,Sgt. Walker comes up with a plan to steal a Nazi envoy with little resources at his disposal. tt6836772,rC3OdZQgztY,The surviving members of the crew are cornered by Strasser with no hope of escape. tt6836772,4JjOrujlaLg,Strasser proves less than grateful after receiving intel from a local. tt6836772,vL21VCK_zLk,Lt. Calloway helps Roger King after the boy steps on a tripwire and boobytrapped weapon. tt6836772,14drcivv0CE,Lt. Calloway and his troops are captured by Strasser while setting up bombs under a bridge. tt6836772,tyXI3CQSQJE,Strasser dramatically increases pressure on Lt. Calloway and his platoon. tt4530422,ibcYEwzgai8,Boyce tries to survive parachuting into France. tt4530422,mS4njwcS4dw,Chloe is chased by a Nazi zombie. tt4530422,jUYCTHwAQvw,The squad sends a Nazi back to base with a nasty little surprise. tt4530422,0yDzNGZc9DI,Boyce and Ford make a final stand against Wafner. tt4530422,lFGfoPuKx9o,Ford sacrifices himself to destroy the underground Nazi lab. tt4530422,NYBMaVtMaEM,Boyce and the platoon fly into France during the D-Day invasion. tt4530422,ngdsRt31sIc,"The serum resurrects Chase, but not without side effects." tt4530422,IZxYRZdq2P0,Wafner takes a hostage and makes his escape. tt4530422,3i-ooDJMOzo,Boyce rescues Rosenstein from a secret Nazi laboratory. tt4530422,ZKgJtlJDPcc,"Desperate to save Chase, Boyce injects him with a mystery serum." tt0104573,EZaYMKD6Iqs,Q distracts a shopkeeper while his friends pocket records. tt0104573,CoXniP8kldY,Bishop tells Q how little concern he has about his world. tt0104573,8b1jfsKFu2w,Q pits his DJ skills against the reigning champ. tt0104573,q51BSsTrN_I,"Bishop tries to kill Q, the last witness." tt0104573,P3imZIQJez8,Raheem tries to take the gun from Bishop. tt0104573,PldJ3snU1C0,Q watches in horror as Bishop comforts Raheem's mother after murdering him. tt0104573,lv0CgSfmWxc,Bishop and Q fight until Bishop hangs on for his life. tt0104573,wuM_9dYtRwo,Bishop deviates from the plan during a corner-store robbery. tt0104573,s7kCd2kuoME,Radames pushes Bishop too far. tt0104573,f8Jf9xoJQwI,Bishop kills his last friend and lies to Trip about it. tt0087298,_vwllSx_Ew8,"After Jason corners her, Trish jumps through a window to escape." tt0087298,WZ6JK1mPT-A,Tommy kills Jason. tt0087298,YTdTD0TbEp4,Trish escapes after Jason kills Rob. tt0087298,qaQQ3LLyKvo,Jason kills Doug and Sara. tt0087298,ukNsgDQKqfY,Trish and Tommy are trapped in their cabin by Jason. tt0087298,XHuewsIKvP0,Tommy goes a little overboard in killing Jason. tt0087298,w80bZTK88mc,Sam skinny dips in the wrong lake. tt0087298,EelncXXu150,Jason gives Jimmy some help in the kitchen. tt0087298,_0vYFxJJcB4,"After Paul finds Sam's lifeless body, he too is killed by Jason." tt0087298,Ej1lqvtmcMg,Jason kills a doctor and nurse. tt0109447,HbWD-eclNf4,Clifford turns to drastic measures after discovering he won't be going to Dinosaur World. tt0080487,P3Mo5t61kO4,Carl conducts an anti-gopher mission. tt0080487,I3akC_INsFc,Danny asks Ty for life advice and Ty responds with golf wisdom. tt0080487,S-pmcO6U8eg,Ty visits Carl at his home. tt0080487,Pe5eL8LQdY0,The Bishop has Carl caddy for him during a thunderstorm in which he plays his best and final round of golf. tt0080487,bCYs8v0Xji4,Carl imagines himself playing at Augusta. tt0080487,GFpm2LR0sGQ,get rid of all the gophers. tt0080487,40CAAtSZsbw,Lacey discovers why drugs and love rarely mix. tt0080487,QpmECKEHSQs,Nothing more terrifying than poop in a pool. Or is it? tt0080487,5NlQiQfC4zQ,Carl makes animal-shaped explosives and plots the gopher's demise. tt0109447,k9utcDoerr0,Martin has little luck trying to sympathize with Clifford. tt0109447,bbnkw5RyiCI,Martin is at a loss for words in front of his future in-laws after he takes a swig of Tabasco sauce. tt0109447,_HgOQNBkVvY,Clifford is enamored of Sarah Davis. tt0109447,_UvKhc0wVU8,"Although it may not be on his terms, Clifford finally goes on his favorite ride." tt0109447,i_9mM4F_JVI,Martin's hard work goes up in flames. tt0109447,Pui9t9vPUTc,Larry the Scary Rex takes a dangerous turn after Martin puts it into hyperdrive. tt0109447,y_LVaQiyLrM,Clifford meets his Uncle Martin. tt0109447,Rq3xZDyJtMk,Clifford's dad is ready to strangle his son. tt0109447,EGt-Nk6a1UQ,Martin returns home to find Clifford is just as manipulative as ever. tt0109447,AszdXufdl3E,Clifford embarrasses Martin when he comments on Mr. Ellis' wig. tt0109447,S_lcxLCaxAw,Mr. Ellis is exposed as a balding jerk. tt7282468,NZuXsiyF5Bk,Ben makes a curious and cryptic confession to Jong-Su. tt7282468,57X3MgtTMfM,Hae-mi expresses herself through dance in front of Jong-su and Ben. tt7282468,gAI36zhS84Y,Jong-su realizes Ben may have had something to do with Hae-Mi's death and takes action. tt7282468,2NNOFLGL_VE,Jong-su tries to squeeze information on Hae-mi's disappearance out of Ben. tt7282468,hegwdxt_FjA,Childhood neighbors Jong-su and Hae-mi run into each other on the street. tt7282468,byUbi9hlirE,Hae-mi uses dance to describe her experience in Africa to Ben and his friends. tt7282468,jJeed7K-6fQ,Hae-mi tells Jong-su and Ben about her epiphany while watching the sunset in Kenya. tt7282468,CA66So14ydI,"Hoping to find the truth, Jong-su questions Hae-mi's family about a traumatic childhood experience." tt7282468,456ZpoRaRWI,Hae-mi tells Jong-soo about her upcoming trip to Africa. tt7282468,d47y-Jm4m_o,Hae-mi reminds Jong-su about when he insulted her as children while the two flirt. tt6777338,v6nkTlU_iT8,An unseen assassin expertly murders her way through a warehouse. tt6777338,AJhPYwtbCo0,"Disguised as a bride, Sook-hee is tasked with killing a criminal, but it turns out to be her ex-lover that she thought was dead." tt6777338,s8gCo-QjtGk,"Sook-hee and Min-joo go on a dangerous mission to steal the contents of a phone, but things get deadly when their cover is blown." tt6777338,r8SqKn2AmKc,"While on an assassination mission, Sook-hee has a flashback to when she witnessed her father's death." tt6777338,83BVVnFnQkA,Sook-hee confronts Lee Joong-sang who tells her that he killed her father. tt6777338,3yqsR2cziD0,Sook-hee kills an entire dojo of martial artists and assassins. tt6777338,cRj9pF0YGT8,"Sook-hee chases after the bus carrying Joong-Sang and his men, and takes them all on." tt6777338,-ecKc5pOEWk,Sook-hee races to escape the henchmen of a man that she assassinated. tt6777338,M_TCpfWTFjo,"After crashing the bus, Sook-hee finally gets revenge on Joong-sang for killing her father." tt6777338,Zxw1Z6pzKvA,Sook-hee returns to her apartment building just as an explosion goes off that kills her boyfriend Jung Hyun-soo and her daughter Eun-hye. tt7040874,pppK-fl9a2E,Stephanie pulls a gun on Emily and Sean to find the truth. tt7040874,7uSfWo-jr8o,Stephanie confesses to sleeping with her half brother. tt7040874,-ZxtmDbqDRc,Emily gets the drop on Stephanie...or so she thinks. tt7040874,xDZfwTsiLrk,Emily is found dead in a lake. tt7040874,u6IAct0ow4c,"Emily, caught faking her death, confesses to murdering her father." tt7040874,vxFr0xNspFU,Emily makes a fatal decision after her sister tries to blackmail her. tt7040874,hZvud4MnaQ0,Stephanie finds comfort in Emily. tt7040874,frV4tvni8H0,Sean begins to realize that he's caught in Emily's trap. tt7040874,jwjCPSUGPXU,Emily entraps Sean into a darker relationship. tt7040874,NEDEjJ5FyS4,Stephanie and Sean give into their carnal urges. tt6371588,q-kSu3KWfEI,Ollie saves Nikolai when he's beaten and knocked into the lake. tt6371588,sWgPWKj2G7I,Ollie crashes a party. tt6371588,FFU7WJWXrvk,Isadora shows Ollie how to practice tantric breathing with a partner. tt6371588,Q-D1e1u4ufk,"After arriving at his family's lake cabin, Ollie and his friend, Nikolai, get drunk and wrestle around the cabin." tt6371588,CKtUpbJ30Dg,Ollie takes Isadora for a boat ride. tt6371588,sQV6nuap8WA,Ollie uses a forgotten record to reveal that the family has been conned. tt6371588,tbty8Ao7_IE,Ollie and Nikolai help Charlie by cleaning up around the lake cabin. tt6371588,o2YKoT7jL4M,Ollie stalks Isadora. tt6371588,ML4CcaTFsZE,Charlie and Nikolai dance to her wedding song. tt6371588,Q2GegbPq3Lg,Ollie shows Nikolai his father's record collection. tt7752126,vcdDRblTOmM,Kyle takes Brandon hunting with the intent of killing more than deer. tt7752126,t6UyEPrqaQI,Tori tries to trick Brandon. tt7752126,Gdpx9aiEtmg,Brandon pits his skills against the local police. tt7752126,0h0FeEzxCaM,Brandon torments Erica before killing her. tt7752126,3ge07nbMna0,Tori tries whatever she can to escape Brandon. tt7752126,CYO8cs7VRMc,Brandon kills his Uncle Noah. tt7752126,vJhO79OGi20,Tori tells Brandon the true story of where he was found. tt7752126,6mooNp4aWBo,"Kyle accuses Brandon of lying, with disastrous results." tt7752126,McmlPCS1kHc,Kyle relives the night he and Tori found Brandon. tt7752126,757qJxO5D6Y,Brandon begins to discover his powers. tt0455857,BgxPmLpvxzc,Jill hides from the Stranger in the greenhouse. tt0455857,-pKrpqoPu1o,Jill tries to keep hidden from the Stranger. tt0455857,4EWgdeVQzEk,Jill gets a creepy call from The Stranger. tt0455857,enG1CfTbT08,"Jill runs to the guest house, where she believes the Stranger may be hiding." tt0455857,gnlvKhPzx5A,"Recovering in the hospital, Jill receives a haunting phonecall." tt0455857,ZXkKHnmKWoI,Jill makes a grisly discovery. tt0455857,6w4Chzgna0c,Jill tries to find the source of the strange noises. tt0455857,4gftIIxf7B4,"Tiffany tries to leave the mansion, but runs into trouble." tt0455857,kokQDLJ1104,Jill tries to protect the children. tt0455857,QR6Ds-Tvd1g,Jill struggles to survive the Stranger. tt0110367,NxCa0cVaxQo,Jo invites Laurie to participate in a play she and her sisters are putting on for themselves. tt0046816,fWYs-bFK9_s,"After one of Queeg's orders threatens the safety of the crew, Lt. Maryk takes command of the ship." tt0110367,A3Vm7zSOm7M,"After she becomes severely ill, the March family gifts Beth a Christmas surprise." tt0110367,erX0T5r5xbE,"At a society party, Jo runs into her neighbor Laurie." tt0110367,Xvyf7ml1ndo,Jo gets a welcomed surprise visit from Laurie. tt0110367,n_z0TcZkPzg,Laurie and Meg have a tiff after he says her behavior is not becoming. tt0110367,nLDgcHxJ4Sc,"Laurie confesses his love to Jo, but receives an unexpected reaction." tt0110367,j_sD0t5L8kE,Laurie confesses his long admiration to Amy. tt0110367,ESUdqZoRu3A,Jo meets the enchanting scholar Friedrich. tt0110367,1Ylk2e-x--8,Jo confesses her undying love for a forlorn Friedrich. tt0110367,LJye4-HVyCU,Jo comforts Beth while she passes. tt0046816,wzZ3S0ZC1Is,The crew of the Caine test their efficiency during a sweep drill. tt0046816,5SRxYONb12I,Lt. Greenwald teaches the officers of the Caine about honor. tt0046816,KekChFdIe00,Lt. Greenwald questions Queeg. tt0046816,R0CN7Enq4Rg,Queeg makes a questionable decision during a military operation. tt0046816,mNd16XocjBg,"After the mutiny, Lt. Maryk and Lt. Keith meet with lawyer Lt. Greenwald before their trial." tt0046816,UPIr8vb7OeI,Capt. Queeg nearly compromises the Caine while chastising a seaman. tt0046816,edQy5jBxhV8,Lt. Cmdr. Queeg tries to prove beyond a doubt that strawberries were stolen from the freezer. tt0046816,oDjuY9KCsI8,Lt. Maryk and Lt. Keefer are sent on a special mission by an increasingly delirious Lt. Cmdr. Queeg. tt0060429,fAaVf_wel0c,Everyone sings about their excitement to make it onto Broadway. tt0060429,JAd3SSNqZlI,Johnny sings the blues. tt0060429,Xstux7DlrgU,The gypsies sing about luck. tt0060429,aoc1wqaK8cc,Johnny sings a jaunty song about happiness. tt0060429,vm-rgqRKqz8,Johnny listens to Abigail and loses all of his money gambling. tt0060429,wuzbUsy6snc,"Johnny sings about his love, Petunia." tt0060429,8ISsNLwwmXg,"Johnny bets big at the roulette table, but discovers that his lucky girl is none other than Frankie." tt0060429,SqFAf6aGTtw,Johnny fights Braden. tt0060429,SmrdaRhZJt4,Johnny sings to Frankie about his brand of luck. tt0060429,8p1gevM0y-I,"Johnny meets Nellie Bly, who brings him good luck at roulette." tt0060429,4kIbIjoVakQ,Johnny tries to sing Frankie back into his arms. tt0060438,sMrjeejmCpI,Pseudolus introduces the setting and characters of the story through song. tt0060429,r_tl6PA-Rd4,"In the show, Frankie almost shoots Johnny with a real bullet." tt0060438,lLgOrvsA9tw,"Captain Miles Gloriosus comes for his bride, singing a very macho song." tt0060438,NzCTDwlquaQ,Hero tries to escape with Philia by chariot. tt0060438,doKP3Il9R1k,Pseudolus tells Captain Gloriosus that his bride is dead. tt0060438,WAX89Cuk-Yc,Pseudolus builds Hysterium's confidence in the deception by singing about his beauty. tt0060438,1EtA0HrUrYM,"Hysterium and Pseudolus scramble when Gloriosus decides he wants to cremate the ""dead"" bride." tt0060438,W_fixpI0BL8,Pseudolus tries to save Hero who has gone to a gladiator camp to commit suicide. tt0060438,ghfqnmL0d_A,Pseudolus tries to stall Captain Gloriosus when he calls for his bride. tt0060438,dvIzAdqrb4U,Pseudolus meets Captain Gloriosus who is impatient to meet his bride. tt0060438,BCC8LOkisAI,Pseudolus pretends to be a soothsayer to keep Erronius from going into his home. tt0104009,2vIINq7m10Q,The release of the Spike causes an outbreak of doodles and chaos in Las Vegas. tt0104009,FlCzygStNzM,Holli lashes out when she's trapped on a ledge. tt5537600,urk-FzNJvzE,"Bailey discusses his unconventional yet orthodox childhood, and his favorite side of his mother." tt5537600,u-PbWxhmJto,The subjects reflect on the AIDS epidemic and its devastating impact on the gay community. tt5537600,s9_C0lmrp1M,Several NYC drag icons attest to Susanne's role in nightlife and pop culture. tt5537600,_PXmVLPkYVo,The nightlife personalities and artists discuss gender notions. tt5537600,Q4B11j9T3hE,Susanne imports the ever-evolving fashions of London and Tokyo to New York. tt5537600,h846tnckLFE,Susanne traces her childhood in Switzerland and her father's dual life. tt5537600,HZbYIyL-tUQ,An array of NYC nightlife artists speak for Susanne's generous acceptance. tt5537600,vdZ7vQG2hzI,People describe Susanne's parties and the overall clubbing experience. tt5537600,KtumRXjIzQY,"An intimate look at Susanne's fundraiser for AIDS, The Love Ball." tt5537600,Y5B6H8G2WcE,Susanne Bartsch marries Dave Barton. tt0104009,Cm6FChNhtSc,Frank alerts Jack about the oldest law in Cool World. tt0104009,wM5rRXQZvjU,Jack turns into a satire superhero to combat Holli. tt0104009,rhFw9HYTReY,Frank chases the cartoon psychopath Holli. tt0104009,-wci2oycOQA,The Popper Police go after Holli and Jack for their human-cartoon affair. tt0104009,9zbF578--dE,Holli tries to seduce Frank in order to achieve humanity. tt0104009,fBpNFLngzT4,Holli revels in the real world while Jack flickers into his doodle form. tt0104009,3hOO0D1rH-w,"Holli sleeps with Jack, breaking the one rule of Cool World." tt0104009,DSyCwx2AlQc,Jack has an all-too-real hallucination of the Cool World and Holli Would. tt2066051,S1Xm1jBc84U,"Overdosing, Elton jumps into his pool, where he sees his younger self." tt2066051,BGGyUpO3W-A,"Elton makes his debut performance playing ""Crocodile Rock"" at The Troubadour." tt2066051,Cp2KrXtWwAA,"Elton performs ""Bennie and the Jets"" and enters a hallucinogenic nightmare." tt2066051,M5ny5tMsxrs,"An invigorated Elton exits the rehab center singing ""I'm Still Standing.""" tt2066051,1kuNl2T_mjQ,"Elton performs ""Pinball Wizard"" in a whirlwind of costumes." tt2066051,30IrWTTMWos,Elton and John Reid bond on a deeper level than their shared interest in music. tt2066051,yPJlBsQE96o,"Elton John makes a breakthrough with ""Your Song.""" tt4911996,oPPxArk70IY,Jay comes to Josh's rescue. tt2066051,M16l8dqWTuI,Elton receives a crushing response in coming out to his mother. tt2066051,kyfMjDlcisQ,"Elton goes from overdose to performing ""Rocket Man"" at Dodgers Stadium." tt2066051,ef7rQniaz5c,"Elton addresses everyone in his life including his neglected, younger self." tt4911996,MnTKULzMhMs,"As Tommy confesses, Jay finds the body of the missing Asian woman." tt4911996,Pibr2kMG1HA,Jay races to the airfield to stop Johnny's escape. tt4911996,InHZNhmQyd4,"Josh investigates May, an unwilling prostitute in the small town." tt4911996,EYvn7xDKKtA,"Caught destroying evidence, Maureen tries to bribe Josh." tt4911996,aNv_E1Gh-1k,Mrs. Lao warns Mei against escape attempts. tt4911996,MLv1hfiUaNk,Jay witnesses young Asian women being forced into prostitution. tt4911996,Iyv1Br-dG8Q,Jay interviews Pinky and gets much more than he bargained for. tt4911996,4fgrzQIolcc,Jay and Josh take out the Furnace Creek miners. tt4911996,dlzBcCsKQXY,Hitmen attack Jay on the road. tt2283336,5CxYctMSiw0,The alien twins bust a move at Vungus' nightclub. tt2283336,BYrS2k5nPbw,Vungus gives Agent M a small crystal while Agent H fights off the alien twins. tt0369441,DZlM8Wm7OKY,"Dick tries to be a day laborer, and Jane volunteers for medical experiments." tt2283336,vjDxkz5LO7A,"Trying to get the crystal back, Agent M sneaks into Riza's fortress for the crystal." tt2283336,ruwbVFvdfco,The alien twins trap Agent M and Agent H on a cliff. tt2283336,obn9BZj6V-M,High T opens up a wormhole and reveals himself as the Hive alien. tt2283336,jgBGoS4a5rc,Molly makes a good impression on Agent O after sneaking into the MIB agency. tt2283336,c3vmsUcknhY,"Agent M, Agent H, and Pawny make an escape on a hover bike." tt2283336,dXNu5a3KmMg,"Agent H and Agent M meet Pawny, the last of a recently slain alien race." tt2283336,uciRaLsFmfM,Agent M discovers that the crystal is actually a star-powered super-weapon. tt2283336,Xr9GABUefT8,"Agent M makes a sudden, live-saving realization about Luca." tt0369441,r-IE6wNNbAI,Dick and Jane start to get the hang of robberies. tt0369441,yQXi94aNwBU,"Dick refuses to back down from Jack, the man who ruined him." tt0369441,8bJzLt9AYqc,Dick and Jane finally get their revenge on Jack. tt0369441,mFA9-zsFtt8,Dick and Jane try entering the job market after losing their jobs. tt0369441,xBI5Rk9qYjU,Dick and Jane attempt more robberies with mixed results. tt0369441,oflnRQP6Woo,Dick tries his hand at robbing a convenience store. tt0369441,reyTknNqDjA,Dick races to beat a competitor to an interview. tt0369441,hA063IaOHyQ,Dick Harper finds himself spinning the news for his company. tt0369441,I8yvHZ7de2k,Dick and Jane begin their bank heist only to run into another. tt6466464,Zsf-encTJXk,The Monkey King uses water from the Miscarriage Spring against his friends' wishes. tt6466464,JPbZNEly1N0,"After jumping into the river, Bajie, Sanzang, and Wujing become magically pregnant." tt6466464,L46gYnVmYY8,"The Monkey King, Sanzang, Bajie, and Wujing narrowly escape an attack by a River Monster with some help from the Buddha." tt6466464,948o2mF4QAs,"The Monkey King, Bajie, and Wujing fight the River Goddess." tt6466464,Djlih7ELcTA,"The Monkey King, Sanzang, Bajie, and Wujing get questioned by the women warriors." tt6466464,40vMiKmqaCk,Tang Sanzang prays to Buddha to vanquish the River Monster. tt6466464,1HBiMXpncto,"The Monkey King, Sanzang, Bajie, and Chaseng are sentenced to death for being men." tt6466464,i44zbRoYBtw,The Monkey King and the gang fight off giant scorpions. tt6466464,sRGrUQRVPoI,"When the Queen tries to pass the Gates of Love, the women and island turn to stone." tt6466464,KiwEFBgGh-o,"When Sanzang is exiled from the Womanland, the Queen sacrifices everything to join him." tt1876517,Y69UrBaCUAs,Polaris and Bunny outsmart Trapper during a battle. tt1876517,0qzRQ3qxv5Y,Polaris learns how to stand on eggs as part of Bunny's training. tt1876517,R9l_adCi74g,Polaris fights an amnesiac Bunny. tt1876517,L6f07_-wG9o,Polaris and Rascal leave the mountain where Master Wizard lives. tt1876517,0WKopiIhAdI,Trapper finds a way to escape captivity. tt1876517,gnfp7yyQgH8,Bat uses dynamite to blow up a bridge while Bunny and Polaris walk across it. tt1876517,WkEK2NyGq10,"Suffering from amnesia, Bunny has flashbacks of her past." tt1876517,RHlGpxG_-wM,"Bunny and Polaris fight Bat, who has plenty of tricks waiting for them inside his cave." tt1876517,1jjQuF3a-7U,Polaris learns how to unlock his legs' full potential. tt1876517,otOIqHsnQZY,Polaris tries using acupuncture on Bunny to cure her amnesia. tt4591310,eS-f-9meg9E,"The Monkey King fights the White Bone Spirit, now a giant skeleton." tt4591310,_qw-Blkf5zU,Wujing and Bajie fight evil skeletons. tt4591310,9FcSX6y6OCA,Monk Tang Sanzeng sacrifices his life to absolve the White Bone Demon's soul. tt4591310,qIhQJubhA_Q,Tang Sanzang and the Monkey King meet the pig Bajie and water-buffalo Wujing. tt4591310,_klWa7UqpwQ,The Monkey King fights the White Bone Spirit. tt4591310,Pc4vZPJ4AVs,The White Bone Spirit and her naga spirits attack and kill a criminal and a helpless family. tt4591310,EIHtZl__2tw,A deadly dragon attacks the monk and the Monkey King. tt4591310,crSg7r225Hw,"Buddhist monk Tang Sanzang frees Wukong, the Monkey King." tt4591310,hCCpL0zgYoc,The Monkey King and his friends fight the White Bone Spirit and her demonic hench-creatures. tt4591310,WQth5UmIAbI,The Monkey King returns to kill all the skeletons in his path. tt7275200,MuYLaaVqJf0,"Dancing sardines give Fifi, Lilly, and Cheri a strange clue." tt7275200,YIg4Pcmy8ww,Fifi and Lilly swim away from a sea monster and get separated from their classmates. tt7275200,6tVC53rH37g,"Skeleton Fish threaten Fifi, Lilly, and Cheri." tt7275200,YlbjPR7t1IU,Fifi and Lilly meet a shark with a toothache and some tunes. tt7275200,3GrjR4Fib1M,"Fifi, Lilly, and Cheri learn that sea monsters aren't so bad and befriend Glurp and Toothy." tt7275200,vpqzFo0aD0c,"Cheri finally reunites with her mother, while Fifi and Lilly introduce their new friends to the class." tt0092948,08rJmhhQHtY,"At Thanksgiving dinner in 1968, a young Eddie shocks the family with a crude joke." tt0092948,gq1gSTF2oyA,Eddie Murphy does a bit about a mistreated girlfriend who who takes a solo vacation to the Bahamas. tt0092948,yr5x9xFoI04,Eddie Murphy talks about being scared after doing jokes about Mr. T. tt0092948,qLFrdv2R8ng,Eddie Murphy jokes about how men deal with getting caught cheating on their girlfriends. tt0092948,91Z-_ujQGik,Eddie Murphy impersonates an angry Michael Jackson. tt0092948,WOnHL_mSXRY,"Instead of dealing with American women, Eddie Murphy plans on finding a wife in Africa." tt0092948,zvGA7DNmxmw,"Eddie Murphy does a raunchy impression of his idol, Richard Pryor, and describes why foreigners can never understand his act." tt0092948,r12JlwSBvVQ,Eddie Murphy does impressions of Bill Cosby and Richard Pryor. tt0092948,L6HWF_-Vmbw,Eddie Murphy does an impression of a white guy dancing. tt0092948,Omewqh9iivg,Eddie Murphy jokes about how Italians act after watching Rocky. tt6212478,XF7nz6p4H9U,Warren gives the crew nicknames and tells them what their roles in the heist will be. tt6212478,E5M67kHOzyw,Warren meets with potential buyers in Amsterdam. tt6212478,2aFfcz677qk,Warren tries to convince Spencer not to abandon the heist. tt6212478,KH9yFcfLfOY,"The crew begins the heist, but there's one little snag." tt6212478,glDG7hJd9Hk,Chas scolds Warren and Spencer after they leave a traceable cell phone number with an assistant at an auction house. tt6212478,a6QMSQ9NtGM,Warren walks Spencer and Eric through his plan for the heist. tt6320628,v0AyEpFDi48,"When Hydro-Man attacks, Mysterio comes to the rescue before Spider-Man can." tt6320628,q9X6tpvxZyE,Spider-Man tranfers Stark's glasses to Mysterio. tt6320628,is4ZtB0U7Vo,Spider-Man teams up with Mysterio to fight Molten Man. tt6320628,j4onAJ-3FAM,Spider-Man takes out Mysterio's holographic monster from the inside. tt6320628,qRQu4tZF1GA,Peter inadvertently orders a drone strike against his classmates. tt6320628,7R9gbSQenqg,Nick Fury rescues Spider-Man from Mysterio. tt6320628,HfEjIU7Qbj8,Peter goes on a revealing date with MJ. tt6320628,zErzJxN84iw,Spider-Man takes MJ for a ride. tt6320628,P-mT2D6iM5k,Spider-Man reels in Mysterio's macabre illusion. tt6320628,NPY5Iq-tCvk,"Spider-Man must rely on his ""Peter-tingle"" to defeat Mysterio." tt6857112,vh7_WKODlE8,Red explains the Tethereds' arrival to the Wilson family. tt6857112,29YDqiuyaOU,Jason confronts his doppelgänger to avert an explosion. tt6857112,RbdGl6wRKDc,Zora is forced to kill her doppelgänger. tt6857112,3s2XMsUdd1k,The Tethered invade the Wilsons' home. tt6857112,hYvxbtiGvrk,Young Adelaide wanders into a spooky funhouse. tt6857112,-uAEWFPmAwU,The Tylers face off against their Tethered. tt6857112,lVSMG8FTnpw,Adelaide and Gabe Wilson are held captive by the Tylers' Tethered. tt6857112,fuCe9uaRx_0,Zora flees from her doppelgänger. tt6857112,Bc3PB049HQc,"Jason leads his doppelgänger, Pluto, into a closet." tt6857112,1ZJEtM585x0,Gabe fights his Tethered on a motorboat. tt0155711,xBr1UV3kWqA,"Rusty introduces ""Amazing Grace"" at the club." tt0155711,8myhALdcfvI,Rusty shares memories of his mother after her funeral. tt0155711,CpcopOQAWWA,"Walt tries to sing at his lesson, but fails miserably." tt0155711,CEwyZcmwNiQ,Rusty witnesses a throwdown while signing up for the Flawless competition. tt0155711,p2CR0S7DHyQ,Walt has a romantic dance with Tia. tt0155711,FbY1BfonRu4,"When Walt is injured, Rusty accompanies him on the ambulance and pays for his treatment." tt0155711,FTO-jtC7Hf4,Rusty berates the Gay Republicans for being ashamed of the drag queens. tt0155711,DCF_BXNE3oM,Walt asks Rusty how he got involved in the whole drag queen thing. tt0155711,qrONj6Srq7M,Rusty and Walt discuss their complicated love lives. tt0155711,dJBnRYy3mFI,"At the party, Cha-Cha comes on to Walt." tt0155711,x1YvX61qS0Q,"When Cha-Cha pays a visit, Walt is embarrassed in front of his friends." tt0155711,g6DnsZvudTI,Walt asks Rusty for singing lessons. tt2025526,wWHOsR_cHt0,Nam-yi holds Prince Dureugon at knifepoint while Ja-in and Seo-goon escape the Manchurian base. tt2025526,RJePUClQaCA,Seo-goon stands up and takes on Mongolian soldier and Nam-yi returns to help save the villagers. tt2025526,6efkIA6C2h4,"The Manchurian horde appear to let their captors run free, but then chase them down and kill them." tt2025526,2oFTDbVMd18,Ja-in defends herself against Prince Doreugon. tt2025526,kvEgzOjGpoA,Nam-yi leads the Manchurian troops into the middle of a tiger's den. tt2025526,ZR9qd2jynNA,"During the Manchurian invasion, Ja-in is taken prisoner and Mu-seon is killed by the attacking army." tt2025526,qO6AV-o8fuw,Nam-yi and Jyuushinta go head-to-head one last time with Ja-in in between them. tt2025526,WgCQS7EllP8,Nam-yi and the Manchurian soldiers trade arrows from across a ravine. tt2025526,abyQFrI-BTE,The Manchurian army attacks during Ja-in and Seo-goon's wedding. tt2025526,ex2RuacnG5M,Seo-goon takes on a Manchurian commander with some unexpected but welcomed help. tt1456661,zUtw46VWtVM,Chen Zhen and Chikaraishi face off in hand to hand combat. tt1456661,JgAmbGwTMbI,"Chen Zhen kills Sasaki and his men, but can't save Wenzai from the assassins." tt1456661,dSSXODCgJOA,Chen Zhen fights off a slew of Japanese military officers. tt1456661,LrDnPOOQ7mg,Chen races to save the Chinese activists from Japanese assassins. tt1456661,S_7ZwIV43zQ,The Chinese rebels destroy the Japanese military base. tt1456661,S5Y83cDu8II,"In World War I, Chen Zhen takes on the occupying German army by himself." tt1456661,srpM16MbHAE,Chikaraishi forces Kiki to kill her closest friend. tt1456661,aoe4V2f2AHg,Chen Zhen foils an assassination attempt. tt1456661,Wf-GYKvvI58,Chikaraishi intimates that he knows Chen Zhen is the Masked Warrior. tt1456661,CtBWf0Oq0bQ,Chen Zhen suspects that Kiki is a spy. tt1999890,BHJTeH6TLx4,The Other teaches Gavin not to steal -the hard way. tt1999890,x7TNrjPLDBs,The Barker has Taylor sent to the very real guillotine. tt1999890,164eTBYcySQ,Natalie finds herself trapped on a ride with The Other. tt1999890,xnv86GOjJz4,Taylor finds herself strapped in the guillotine she thinks is a stunt. tt1999890,Z37CyC5UB5Q,"Natalie dries her hair, unaware of how close danger lurks." tt1999890,HDOGthpW1Hs,"Natalie gets intimate with Gavin, unaware that The Other is watching." tt1999890,szVtrq1Wt8I,"The Other returns home, putting on his human mask for another year." tt1999890,aR4h3HHzqlE,Natalie and Brooke hide from The Other in a funhouse. tt1999890,-_2TyCKWCcc,"Natalie plays along with a murder scene, not knowing the 'actor' is a real killer." tt1999890,2MyJctzA-4s,Asher fights for his life in a zombie maze. tt0113464,05s6W7dLEbY,Jeffrey and Steve have a romantic candlelit dinner with musical accompaniment by Mother Teresa. tt0113464,lunmhq3ZejE,Jeffrey goes shopping with Sterling to get his mind off his decision to give up sex. tt0113464,O4PP1tdCHJA,Jeffrey imagines having a painfully honest conversation with his mom and dad. tt0113464,wzlxR3dKjrg,"Jeffrey receives a visit from Darius, who tells him to enjoy life while he still can." tt0113464,hb4N2SJjXRM,Father Dan tries to kiss Jeffrey in his moment of spiritual need. tt0113464,goRmKynyjqU,Sterling and Darius chastise Jeffrey for skipping out on his date. tt0113464,fPQJBHWr8zI,"Jeffrey, Sterling and their waiter appear on a game show dedicated to human sexuality." tt0113464,PjYVxXOmsrc,Sterling and Darius try to convince Jeffrey that all he needs is a boyfriend. tt0113464,A4g68fTngpA,Jeffrey attends a seminar led by obnoxious self-help guru Debra. tt0113464,Vz1MWTi13qA,Jeffrey and Steve run into a transsexual and his mother at the gay pride parade. tt0113464,liRaKtnWUAE,A local TV news reporter files a report from Manhattan's gay pride march. tt0113464,Pe3mEnRE-EI,Jeffrey decides to give up sex after a night with a crying guy. tt3531824,MczK8n5msJM,Vee guides a blindfolded Ian on a motorcycle to complete a dare. tt3531824,yKw8Cw13NmY,Ian is given the same dare that killed his friend. tt3531824,q8Wj4buHUtE,Vee and Ian are dared to team up. tt3531824,nQ2Y1gm0fRU,Sydney and Vee get into a fight at a party. tt3531824,W4vPyEk5UK8,Tommy and Hacker Kween hack into the game code and shut it down. tt3531824,ce5cnb_5dVk,Vee gets her first dare and must kiss a stranger for five seconds. tt3531824,G4ENL-T7Dyk,Sydney attempts a dare to walk across a ladder suspended between two buildings. tt3531824,IiQlYWhL_UI,Vee goes to the police to report the game. tt3531824,-jg0_iXfTE4,Ty is willing to shoot Vee to win the game. tt3531824,PYkBs86HnUc,Vee and Ian must escape a store without their clothes. tt7042862,485KJTKt6RE,Santa uses his powers to turn an ornery ogre into a gentle sweetheart. tt7042862,2DpotjffI6U,Arvid banishes a gingerbread man to the Land of Icicles and Thorns. tt7042862,SjF_DpHczjE,Finn and Haldor talk to the All-Knowing Sage. tt7042862,u6W5OFK9jpU,Haldor answers a philosophical question. tt7042862,cSO2u-StPbY,Finn and Haldor warn Santa of Arvid's diabolical plan. tt0083972,CzbL7AJIhJI,Jason ransacks the barn to find Chris. tt0083972,-a1FAp677Vo,Debbie discovers why Andy has gone silent. tt0083972,6zx4HGKU2E4,Jason takes out a gang of bikers. tt0083972,NxnafGrvcqU,"Rick looks for the group, but finds Jason." tt0083972,nfQr0dDL8jg,Chris wakes up to an all-new nightmare. tt0083972,8d3LDYM0GF4,Jason kills the owners of a lakefront store. tt0083972,FVRaOepQ02I,Jason slashes through the group during a power outage. tt0083972,hcb0vROvmWk,"Trapped, Chris tries to escape Jason." tt0083972,AQfWibFXtO4,Vera gets shot in the eye by Jason. tt0083972,TzAEE887L_g,Chris and Ali face off against Jason. tt4761916,3lxLsyE0CRo,The Charons show the group a video of Lexx getting killed. tt4761916,FJWgF5XnVLY,Matias finds a hidden folder on his computer full of videos of unsuspecting people. tt4761916,0k_yjEiPLoc,A mysterious figure shows up in Kelly's house. tt4761916,D4gPEFccxPk,Matias blackmails Charon IV with $10 million dollars in Bitcoin. tt4761916,aJgS31WWIG8,"Amaya is killed, and The Circle votes to see if Matias should also die." tt4761916,szIOuIIbVfQ,The Circle makes Damon's murder look like a suicide. tt4761916,wIloYFMzS6M,The gang unearths a hidden folder on Matias' computer that is full of disturbing and graphic videos. tt4761916,5QJGkxbb0wE,Charon makes a dark request to Matias. tt4761916,11-AlLawdeg,Serena has to choose between saving the life of her fiancee or her mom. tt4761916,rbhNKSWKWwU,The Circle audio edits AJ into making a threatening call to the police. tt8726116,ooS5gVdYgRQ,"On Fantasy Island, Axle and Scout befriend a fire-breathing dragon." tt8726116,Dh3WAI9JeJw,Scout and Axle talk to a rabbit in a hot air balloon. tt8726116,Qwr539L6kCI,Axel and Scout confront a troublesome vulture. tt9251718,kdrPUm5zBqA,Luna and her friends battle Lacerta. tt9251718,xxGmwvrt4ZA,Lacerta drops by Pixy Dragon Town to show the fire-breathing contenders how it's done. tt9251718,4hY7f4nOQtU,Lacerta agrees to help Draco and Grus in the competition if they accompany him into town. tt5113040,Z0AxmKelYrE,Katie gets Max a dog cone to treat his nervous scratching habit. tt5113040,MrrYu07MIbk,Max and his friends fight Sergei. tt5113040,UBWIoJF2X4A,Captain Snowball enlists Gidget and a Cat Lady for backup. tt5113040,5Io8n3JYNUY,Rooster gets Max to face his fears and retrieve the sheep named Cotton. tt5113040,kMcvRpOOIwY,Captain Snowball fights a circus monkey to save Daisy. tt5113040,br2rj_3KW1A,Snowball answers the call of justice! tt5113040,u6HHla9ApmI,Chloe teaches Gidget how to be a cat. tt5113040,JnuYlFhXWsU,Gidget sneaks into a cat-infested apartment. tt5113040,exu61pb5X68,Gidget finds Chloe acting a little strange when she goes to ask her for help. tt5113040,0C-qxjiDP1o,Snowball raps while his owner is away. tt7073518,HbgLp9_yU_c,"Eileen prepares to fight her enemy, Amy, and reclaim the title that she took from her years ago." tt7073518,aa0NlkF7Rug,A young slave fights to escape her master. tt7073518,vT3QXNKoZKw,"A woman journeys to the past to meet Kurt Gödel, a pioneering theorist of the concept of time travel." tt7073518,DX1p8C_FuxU,A blind teen lives with his new mother in the post-apocalypse. tt7073518,N2s_Iij3Xfk,"Elaine gets stripped of her bikini bottom, but not of her crown." tt7073518,3gD5egw3-Lg,Summer turns cannibalistic after being roofied with the extract from outer space. tt7073518,zhhLFNr_Jio,A man fights a car thief for his car. tt0418819,2SJ3eoUGXy0,Cholo and his crew hijack the Dead Reckoning rig during a zombie attack. tt0418819,6-s02HyO3XA,Big Daddy watches as his zombie brethren are killed by marauders. tt0418819,1s-qZUCH3xY,Zombies carve their way into Fiddler's Green. tt0418819,KJ_8vD4Rv9Y,The Dead Reckoning Rig cuts through a gang of zombies. tt0418819,2w8LYlDlls4,Riley visits an underground casino where Slack's arena fight is the main attraction. tt0418819,7KByxGMoiO4,Big Daddy leads the undead into Fiddler's Green. tt0418819,NpjcjrKoeBs,Cholo and his boys raid a liquor store only to run afoul zombies. tt0418819,aNA-hjvEyUY,Kaufman gets cornered by Big Daddy and Cholo. tt0418819,ukWCpVUXs_E,"Riley releases the drawbridge for Dead Reckoning, but is besieged by zombies." tt0418819,_3bYh7CffIQ,Big Daddy's zombie army butchers its way through a luxurious mall. tt0085970,Y--v_LdWlQA,Jack gets into big trouble when he takes the kids to a grocery store. tt0085970,NkzG9RZBERE,Jack has a growing addiction to daytime soap operas. tt0085970,Kcmz-QxexRo,"Bickering with Caroline, Jack describes his life as a househusband." tt0085970,fHerVxCsbyc,"When Jack and his fellow engineers are fired, they take turns throttling Jinx." tt0085970,7RBqyBb-MlU,Jack plays poker with the neighborhood housewives. tt0085970,WBY5O2nTvSU,"Just as he's about to win, Jack forfeits the race to his wife's boss." tt0085970,zBLsO7BKVHw,Jack battles an out-of-control washing machine and a ravenous vacuum cleaner. tt0085970,OvQctA3xsoE,Jack complains to Caroline about being dragged to her work party. tt0085970,1D8CfzvSy7g,"Threatened by his wife's new boss, Jack plays up his manliness." tt0085970,BSWKnZ4-2eE,Jack gets a handle on the household chores. tt0085970,crI67brUX84,"In a meeting with corporate bosses, Jack chides Jinx for his self-serving lies." tt0085970,t794eVHOIvo,"When Jack changes his daughter's diaper, his boys flee the scene." tt6146586,BUqJMPAtmdY,"Using his belt as a weapon, John Wick takes on two Shinobi assassins." tt6146586,YduLKKYfgSk,"John Wick and Sofia fight their way through a complex in Casablanca, taking on armed guards with the help of Sofia's dogs." tt6146586,iw-0Y6HWb9Q,"When Sofia denies Berrada's request to keep her dog, he shoots it instead." tt6146586,-1zLU5N6uBU,Two of Zero's assassins attack John Wick in the glass room. tt6146586,6eW1ht2HbtQ,John Wick reaffirms his loyalty to the High Table by cutting off his ring-finger and giving his wedding ring to The Elder. tt6146586,Sw4pvbkQ-jk,"Fighting off assassins, John Wick uses a stable full of horses to his advantage." tt6146586,U5EKQ63wREM,"On his way to the Continental, John Wick is attacked by Zero and several of his sword-wielding assassins." tt6146586,L-zzxADqlu8,"Zero deals the Bowery King seven cuts, one for each bullet he gave to John Wick." tt6146586,E9B65UGKQ5o,The Bowery King tells John Wick that he is upset with the High Table's betrayal. tt6146586,2i8C-GOsHo0,"After Winston is reinstated as manager of the Continental, he shoots John Wick several times, causing him to fall off the roof." tt6146586,6CmxSs6Mmx4,John Wick fights Zero on the top floor in the glass room. tt6146586,v00zKyXbfD4,"At an antique arms shop, John Wick takes out a wave of assassins using the old weapons in his vicinity." tt0096256,Du5YK5FnyF4,Nada makes a bullet deposit at the bank. tt0096256,iVXVD0KxSug,The police raid a church that secretly houses a rebellion against the alien horde. tt0096256,yjw_DuNkOUw,Nada wears the sunglasses for the first time and discovers the truth of our world. tt0096256,vlTPIYTd32Q,Nada and Frank continue the epic fight. tt0096256,GeAcikP5N7M,Nada and Frank meet the human collaborators. tt0096256,qQgyoHsknIk,Nada accidentally reveals that he's aware of the alien presence and becomes a target. tt0096256,vPpNgsJp4DA,Nada and Frank assault the alien propaganda station. tt0096256,dgyue1tT-uE,Nada and Frank have an epic fight. tt0096256,QB8ken8pZ_s,The Ghouls and police raid an activist hideout. tt0096256,aFz1y45KaHA,Nada and Frank attack the Ghouls' TV studio. tt8155288,G7gklW3Xbn8,Tree realizes she is stuck in her original time loop again. tt8155288,xRShAxpUZ6Y,Tree enlists Danielle to distract Dean Roger Bronson. tt8155288,QMBLWE0pu8U,"After finding Lori dead, Tree is attacked by Babyface." tt8155288,hT_CiaTcnN8,Tree drives her car into an electric substation. tt8155288,1jEe_vPgNJE,Ryan meets an alternate version of himself who tries to warn them about the reactor. tt8155288,qUammhHxd1k,Tree studies the time-travel formula and repeatedly offs herself before the killer can. tt8155288,x4L81QLGYuM,Tree confronts Dr. Parker. tt8155288,SmMmQHR_F4Y,Ryan runs for his life as he's chased by a murderer in a Babyface mask. tt8155288,I8-3VpZrBww,DARPA needs a subject to test the reactor on. tt8155288,2dn_r_sgBEE,Ryan is murdered by someone in a Babyface mask. tt0289765,QAO6uTkGpjM,Dolarhyde attacks Will's family. tt0289765,Kq3TiuRC-VQ,Dolarhyde tortures Freddy for his mocking tabloid. tt0289765,4WNq9Yy9m_g,Francis apparently kills himself to save Reba from the dragon. tt0289765,6nSu2qhTmNU,Francis panics when he feels compelled to kill Reba. tt0289765,HVgu-41adSY,"On his date with Reba, Dolarhyde watches a home video of his next victims." tt0289765,Kb2WClrbrAc,Will begins to suspect that Dr. Lector is a serial killer. tt0289765,4fwQKF64AWY,Will seeks Dr. Lecter's consultation on the Tooth Fairy case. tt0289765,UWlxRKXD6sY,"The FBI finds a note from the Tooth Fairy in Dr. Lector's cell, and have to investigate and decipher it before Dr. Lector gets suspicious." tt0289765,l4S4IBACQCM,Dolarhyde works out while talking to his deceased abusive grandmother. tt0289765,G8_ch6wsWjs,Francis eats a 200-year-old painting of the Red Dragon. tt3281548,Ap8p92HCAbg,"Jordan is welcomed by a group of misfits in the ""Friend Zone"" at school." tt3281548,0IuOpt3p3WE,Jordan gives her new friends a makeover. tt3281548,Z0sFhnkRCsQ,"Jordan begins her first day of school by hitting on her teacher, Mr. Marshall." tt3281548,V6SMgd9L6Z0,"Trevor makes an ill-judged surprise, thinking that grown Jordan is in the room." tt3281548,goEiURelfsM,Jordan and April drunkenly serenade with breadsticks in a crowded restaurant. tt3281548,oNuGwa5Kd8E,A young girl puts a curse on Jordan for her heartless behavior. tt3281548,V-vgoh3ukPc,Jordan's glamorous world goes awry when she wakes up in her prepubescent body. tt3281548,HTFjrXA8bFI,Jordan and her new friends join in a song-and-dance number that is well-received. tt3281548,a_VIjZa76jI,Young Jordan shows her friends how to live their best lives. tt3281548,z82GwvEQ3Vc,April shows Jordan who's the new boss. tt2386490,uIsdG0ydS5o,Hiccup and his dragon-riders rescue dragons from trappers. tt2386490,dHXVvD4FFas,Hiccup reunites with Toothless. tt2386490,X4lUmgN_ByQ,Hiccup leads the dragon-riders on a mission to rescue their dragons. tt2386490,tJ1uXsPXyao,The dragon-riders of Berk wreak havoc on Grimmel's boat. tt2386490,_0FLP8sxv2E,Toothless and Hiccup battle Grimmel. tt2386490,yCHoWsMt0LY,Toothless tries every trick in the book to attract Light Fury. tt2386490,9JQEbj0uh0k,The Berkians wish the dragons farewell as they leave the human world. tt2386490,w6YTq-3hmnA,Ruffnut annoys her way out of Grimmel's captivity. tt2386490,-AZg55qXj7U,"While searching for Toothless, Hiccup and Astrid discover the Hidden World." tt2386490,O-W3C2RQduY,Grimmel demands Hiccup relinquish Toothless. tt5649108,r5ilcq9hUZI,Amanda tells Lily how she killed her horse. tt5649108,PzTICfN0A-4,Amanda learns that she's an unwitting part of Lily's murder scheme. tt5649108,C4DPvNXtOzA,Lily tells Amanda how weird she thinks she is. tt5649108,S1UpuPvAUss,Lily and Amanda recruit Tim into their murder plot. tt7287136,o5NPINxrB7g,Tai confronts Jerod about his infidelity. tt5649108,F5NFCYDB5hI,Lily murders her stepfather and implicates the unconscious Amanda. tt5649108,rsi2WcPIcQ0,Amanda and Lily try to blackmail Tim into committing murder. tt5649108,IfZmBGcWkLI,Amanda tries to teach Lily how to fake cry. tt5649108,DYPR82c0v00,Amanda casually proposes killing Lily's stepfather. tt5649108,j91qPMHaqbg,Amanda tells Lily that she doesn't have any feelings. tt5649108,1bBOUr7rAHw,Amanda writes about her dreams of a horse-apocalypse. tt7287136,CwgIvhYyeTc,Jerod mourns the loss of his friend on the court. tt7287136,kJVKPHBFNF8,"Overwhelmed by grief and his failings, Jerod drunkenly falls on Edgar's floor." tt7287136,9Wy-6pabUwU,Jerod finds inspiration in the local church. tt7287136,3jEDXJvOCs8,Jerod considers carrying a gun for protection against police. tt7287136,SZnZMhfusbA,Jerod and others try to reduce shootings by fostering love and community. tt7287136,_BK3aiBX43Q,The community reels in the wake of a fatal police shooting of an unarmed black man. tt7287136,B3bUD6nAKvU,Jerod leads by example with the kids in his community. tt7287136,GM59PdNB7FI,Jerod has a drunken hookup with his baby's mother. tt7287136,Gcs2QIB_X5k,Jerod's life flashes before his eyes when he's mugged. tt4666228,E7XIYOvcjuE,Elijah Berle grinds for a really long time. tt5968394,_iinqPkm6m4,Commander Mulligan coerces Gabriel into joining him. tt5968394,MybqJCvM1z0,Gabriel discovers that Commander Mulligan has been preparing to bomb the aliens. tt5968394,zZg6j228i3A,Aliens hunt down the perpetrators of the Unity Rally attack. tt5968394,vi8Kaoib33Y,A medic removes the implanted larvae from Anita's neck. tt5968394,A3yrtArn5zA,The Drummond family tries to flee Chicago after it is placed under martial law. tt5968394,V4hv2OSD3s4,The members of Phoenix attack the Unity Rally at Soldier Field. tt5968394,c6EhzIb5NKo,"Evading Commander Mulligan, Gabriel gets attacked by flying aliens." tt5968394,Dka4AUVm_j4,Law enforcement rounds up the citizens of Pilsen. tt5968394,4hA7ILi4l68,Rafe and others are sent to a prison off-world. tt5968394,q0k-b9FeGFU,Rafe runs afoul a Legislator Alien. tt4666228,M_h6qdnNiNw,Chris Pfanner rips through the city. tt4666228,o_rv7bmEDm0,Rowan Zorilla delivers thrills and chills all over the world. tt4666228,22LBB9jJG60,Pedro shows off his skateboarding finesse. tt4666228,rdc5PXKBFdE,"Gilbert Crockett skated everywhere, except where the man with the hammer lurked." tt4666228,S_rNBw8E98s,"Kyle Walker rips, grinds, and ollies." tt4666228,N1UxH6P-Fgc,Chima Ferguson has mastered the fine art of jumping off of things while on a skateboard. tt4666228,ss7eqc_SHsg,Skating is life for Dustin Dollin. tt4666228,FqbR0-PbFOo,Geoff Rowley will do anything to be able to skate. tt4666228,LjSeILLCe2M,Tony Trujillo masterfully blends parkour and skateboarding. tt0837563,IKa2Mr-yHnE,The reappearance of Church leads to an unexpected death. tt0837563,70eKt79PSQw,Rachel trembles before her reanimated daughter. tt0837563,Y5Y0SYRZRtM,Ellie tricks Jud into a grisly death. tt0837563,xHtAfA2ctBs,Louis buries Ellie in the Pet Sematary. tt0837563,H5LLqPyF11w,A patient named Victor Pascow rises from the dead and warns Louis about the cemetery. tt0837563,tMB7LgnO2Wo,Jud explains to Louis the inexplicable power of the Pet Sematary. tt0837563,HUPoWdZ1ZdQ,Ellie torments Rachel. tt0837563,6_Ed23ettio,"Rachel has a nightmare about Zelda, but Ellie is terrifyingly real." tt0837563,FMbSH8g9vsU,Ellie returns to Louis. tt0837563,ewbUaMvCaYg,Rachel helps Ellie kill Louis. tt5599818,vizu1RigaBI,Guy and Girl try to determine the nature of their relationship. tt5599818,ewANNniIEhc,"When Girl steps on a nail, Guy searches for a way to clean her wound." tt5599818,4fKRyf8BI-Q,Miranda plays the cello while plotting her escape. tt5599818,rKQEYi53rvQ,The Boy meets a Woman-Child while wandering the wastes of the apocalypse. tt5599818,gbIKuFaDbV8,Miranda struggles with her ennui while having dinner with her father. tt5599818,YoI_YkIGXXs,"Chaos, driven by isolation and madness, finds distraction in an unlikely place." tt5599818,x7TPeGns0N8,Miranda escapes her protective bunker. tt5599818,-krDTO77jrY,Miranda does her daily routine with the apocalypse outside her room. tt5599818,an5-b_99zH0,Chaos finds his rampage at a violent end after men more savage than him attack. tt5599818,uD-VMe03AdY,Guy meets Girl only to forget her and fall in love again. tt3391782,GOYpqqTsO-k,"Occupy Wall Street organizer Monica Hunken tells her story of abuse, adversity, and loss, and how this shaped her journey to the Occupy Wall Street movement." tt0098084,fgbjvvCPa88,Gage wanders after a kite and into a truck. tt0098084,A_bC8fF6WZE,Jud tells Louis the story of Timmy Baterman. tt0098084,J-D8n4_fd6Q,"Louis tends to Victor Pascow, who is fatally injured after being hit by a truck." tt0098084,OBXQr25dHQE,"After coming back from the dead, Gage kills Jud." tt0098084,gA-VU0mczSI,A reanimated Gage kills his own mother. tt0098084,v3E4s7VN4xE,Rachel recounts her sister Zelda's death. tt0098084,A949a8j5Boo,Louis kills Church. tt0098084,ZbL_db16k0w,Church comes home after being killed and buried. tt0098084,g0nhEzoCkJo,"Louis kills his zombified son, Gage." tt0098084,egC6XhnfuZk,A reanimated Rachel returns home to Louis. tt3391782,MY-ZusWqyqs,"New York University professor Andrew Ross discusses debt, and how Occupy Wall Street has helped save people from its crushing burden." tt3391782,gaz2wRxRZ7s,Sympathizers protesting the eviction laws of Spain talk about what can be done to change the government and the banking system of Madrid. tt3391782,pgkcX22u0SI,Occupy Protestors decry wealth disparity largely caused by banks and the 1%. tt3391782,QmSSFYFSA00,Nonviolent protest consultant Srdja Popovic discusses how graffiti can help raise the profile of nonviolent causes. tt3391782,Bf0HvoLXWdU,Victims and abusers speak about the horrible atrocities that occurred in Iran between 1981 and 1988 at the Iran Tribunal in The Hague. tt3391782,9aIOR7dl2CY,"Iranian protestors recount the actions, failures, and effects of the 2009 Iranian Rebellion." tt3391782,AajX1xvWnk0,Syrian protestors talk about their unique methods of undermining Bashar al-Assad. tt3391782,S1C8tqyy3oc,"The Occupy Movement protests, faces adversity, but endures." tt3391782,aYbKjHmTdMw,FEMEN gather to practice methods and to unite their philosophy. tt6428676,oexJPg9rZqo,"The Chimpanzombies invade Clockwork Springs, separating June from the group." tt6428676,u_jemmhoj0Q,June and her mother use their imagination to add more joy to Wonderland. tt6428676,NCi4QNKpVB8,June uses the spider robot to rebuild Wonderland. tt6428676,3wLF8oDA3ZM,June ignites the light within Peanut which helps them escape the darkness. tt6428676,_t38ENQ9jlY,June and her animal friends race to save Boomer from a broken roller coaster. tt6428676,b5Q6A_1YyHg,June tests her homemade roller coaster. tt6428676,-sD2jY0KMA8,June runs from the ferocious Chimpanzombies. tt6428676,PlJ-x-JNEj8,Chimpanzombies attack the group using a spider-robot ride. tt6428676,ANTOMowTXZU,June and her team accomplish restoring Wonderland and the Chimpanzombies back to their splendid state. tt6428676,-kKqgjrbb6I,June and Peanut flee from chimpanzombies. tt2267858,vKuvku8JEq0,Mirela finally takes her Indian driving test. tt2267858,U5nphwXr8VY,A couple of students face failure on their driving journeys. tt2267858,dP5e3MxjRiw,"During her first driving lesson in India, Mirela has a problem with everything from the shape of the car, the fan and the language barrier." tt2267858,LN8iHxuFSts,"Jake's driving instructor, Tetsuya, teaches him the proper way to enter a vehicle, and then they 'practice' sitting inside one." tt2267858,RsGRrlK84zM,"After immigrating from South Korea, Hye-Won decides to enroll in a German driving school so she can drive her and her family around Munich." tt2267858,Vb9wR2ibCRw,"Mirela's driving instructor completes his daily Puja, and Mirela learns more about the culture and religion of India." tt2267858,F3yawE_0QaE,Jake gets some last-minute advice from a fellow American before he takes his driving test. tt2267858,YtceTJF_VhM,"The day before the driving test, Tetsuya makes Jake circle around the course for hours." tt2267858,z6JcuVWaVfQ,"Hye-Won's husband tells her that he will have to join the South Korean Army, creating serious questions about their family and future." tt2267858,X3WA8eZ4Q_0,"Hye-Won argues with Herr Krieger and says that she is the real cause of her faults, not what she learned in Korea." tt6495770,0Dp--gKKMJ8,D.C. and Benny hunt animals to create a petting zoo for the park. tt0106220,yWSRVYU_JMo,Pugsley and other campers sing of the first Thanksgiving. tt0106220,v9UIDDlnSgA,Wednesday and the other camp outcasts hijack the Thanksgiving play. tt0106220,Ke-MYW3XORg,Wednesday and Pugsley have an 'experiment' with their brother. tt0106220,NIDabDkcS8o,Morticia and Gomez dance a death-defying tango. tt0106220,yprYw3FQUpQ,Debbie's gift for Fester doesn't go as she planned. tt0106220,w80ZSg7kNbE,"Wednesday, Pugsley, and Joel are punished in the Happy Hut and emerge different." tt0106220,D1IshjFWDJk,Fester and Debbie have their bachelor and bachelorette parties. tt0106220,7p0J9wVGwZ0,Morticia gives birth to her third child. tt0106220,PmYdvwAqwDg,"Debbie tries to electrocute the Addams Family, but gets a shocking surprise." tt0106220,oK1zfJausVM,"On their Honeymoon, Debbie tries to kill Fester." tt6495770,ZKxqB5gCX6E,"Benny breaks into a news station, but gets a show of his own." tt6495770,1N81Dwye3VM,D.C. ramps up the chaos at the park in a bid to attract more customers. tt6495770,3Cf6HfBCcso,D.C. breaks into a rival park to steal lumber. tt6495770,E4rFRdmeWqU,D.C. and Benny chase after a bus to find Boogie. tt6495770,STfoetR9Su8,D.C. revels in a riot at Action Point. tt6495770,Vchw3dbVeUo,"D.C. waxes poetic about the halcyon days of his rowdy, no-rules amusement park." tt6495770,9EFxRx8EbDk,D.C. and the gang decide to crash a televised grand opening to promote Action Point. tt6495770,UUAQ3T09_os,D.C. tests his new trebuchet earlier than expected. tt6495770,PyUqYOB4ey8,D.C. and the Shitbirds shoot a commercial for Action Point. tt0117894,ALO5aag-ZIo,"Billy finds the ""Gypsy"" camp and threatens to curse them all in return for what they've done to him." tt0117894,9fFbDzUOD5o,"Billy finds the carnies at a carnival, and discovers that getting the curse lifted won't be so easy." tt0117894,HiavOVW1Iv8,Billy gives the cursed pie to Heidi. tt0117894,6BBGO5M_2A0,"Richie attacks the ""Gypsy"" camp to make them to take the curse off of Billy." tt0117894,uCG1EiqEAEg,"Tadzu tells Billy that in order to lift the curse, he must transfer it to someone else." tt0117894,Ky6GupHDuOw,"After Billy is cleared of all charges, Tadzu puts a curse on him." tt0117894,-7cV5cWQmxg,"Billy accidentally runs over an old ""Gypsy"" woman when he is distracted by his wife, Heidi." tt0117894,OFJKL2POF5I,Billy visits Hopley and discovers that he has also been cursed. tt0117894,gp7K6ZwuDow,Billy loses his cool when Heidi refuses to believe that he was cursed. tt0117894,81oozSLS2CM,Billy is horrified that his daughter also ate the cursed pie. tt2062996,PWihKQVb_aY,"World renowned chefs Mary Sue Milliken and Susan Feniger recount their beginnings in the industry, what it was like to be a woman in the cooking world, and how they got together to start their restaurants." tt2062996,ZMIGwSNQA4Y,Pulitzer Prize winning cartoonist Steve Breen struggles to come up with an idea for an editorial cartoon as his deadline quickly approaches. tt2062996,zdF8hHVUzM8,"World renowned creatives from across disciplines tell what they did, and what you can do to be successful." tt2062996,Qxzrv4GCwo0,"Creators explain how they work, deal with deadlines, overcome procrastination, and accomplish their goals." tt2062996,Z_5l0p0gmvA,"Creators from a variety of fields discuss how their brains work, and what makes them so creative." tt2062996,eqarJw8A2YY,"Famed composer, and former child prodigy, Jay Greenberg talks about how he focuses on indentifability and personality when composing." tt2062996,fp8Ob7kBqJc,"Moungi Bawendi and W. David Lee speak of their cancer detection invention, and how they overcame doubts of its possibility." tt2062996,koahs44agqU,"Creative talent of dancers, political cartoonists, comedians, and musicians talk about their early days." tt2062996,EE2FUs9iI0A,"Tom Perrotta recounts how his unpublished novel ""Election,"" and a bit of luck, led to his literary breakthrough." tt2062996,miE1oJ9ysUs,Neville Page recalls how he found his inspiration for designing a grotesque creature for J.J. Abrams' Star Trek. tt5596104,sFRjPMAxn1k,Chandra reveals the cult's inhuman origins. tt5596104,MGuKcmxMPQk,"After a young girl is hit by a motorcycle, Jamie watches the cultists heal her by spiritual means." tt5596104,ZzkELXr8siQ,Jamie has his first encounter with the Ashram's Guru. tt5596104,F2UxQiUoCD8,Jamie learns to become one with the universe. tt5596104,QymZP9taonU,Jamie finds Sophie trapped in a spiritual coma. tt5596104,_pZJUgFokcw,Jamie learns of his special gift from the Guru. tt5596104,Z8lnce2Ij-4,Jamie's telekinetic powers come into their own. tt5596104,7_ClXAzhDQ4,Jamie makes a grisly discovering linked to the disappearance of Nitin. tt7014006,6pUt6xlMorQ,Kayla deals with anxiety and awkwardness at a pool party. tt3576060,RA0xUXiz_dc,Matthew becomes a Libyan freedom fighter. tt3206798,oSEQnREqfF4,Lola has a moment with a random stranger. tt3206798,MpPwsiwPhF4,Lola's emotions spring forth. tt3206798,ofrL7_UA04k,Lola apologizes to Tim years after she drunkenly ran over his son. tt3206798,bocu5uL8siM,Sam doesn't take news of Lola's ex-con status very well. tt3206798,W4zjAZcHUaE,Lola and Sam make up and make out. tt3206798,yHo2Yx50F8c,Lola and Sam have a very good first date. tt3206798,PeliEV1oD2A,Lola records her farewell to Henry. tt3206798,ZRdnTHyJQQM,Sam learns the truth about Lola. tt3206798,2c3-0yhNlfI,Lola would rather have Sam fix her up than talk about flipping houses. tt3206798,R5h3Pynz-ts,"Knowing the full truth, Sam accepts Lola for who she is." tt3576060,SdSQJTSYXJY,Matthew contemplates his decisions while in Libyan prison. tt3576060,OAqqb5FC_a0,Matthew feels a sigh of relief after hearing he may be saved. tt3576060,yU6yKmqhhp8,Matthew is shocked by how much of the war is inspired by American films and likes on social media. tt3576060,yebKBYB7rEs,Rebels help Matthew escape from prison. tt3576060,8nSGhJRDjX4,Matthew experiences what it's like to be a soldier while filming a troop during the war in Iraq. tt3576060,pf4EjhjgisM,Matthew and his comrades reflect upon overthrowing Gaddafi. tt3576060,4MWlfC7QTDs,Matthew returns home only to realize he has to return to Libya. tt3576060,sa2LecdGh5Q,Matthew recounts a combat situation that led to his first kill. tt3576060,HNPPD_4oD9M,Matthew VanDyke gets captured in Libya after surviving the fight at al-Brega. tt7014006,kNtopT3-5t0,"Kayla shadows Olivia, a friendly twelfth-grader." tt7014006,Yq9fKm8q0iY,Kayla comes to terms with her anxieties and insecurities. tt6958014,sxY6Jc1MZSE,Sergio and Naima form a deep emotional and sexual connection when they go back to Sergio's house. tt6958014,6R2Uu5x6Imo,Sergio and Naima tickle the ivories and each other. tt7014006,VwkGKFFk-F4,Mark expresses his pride of being Kayla's father. tt7014006,AcSDeQhGGFM,Riley pressures and harasses Kayla into truth or dare. tt7014006,LK-4Dmq6Hs0,Kayla tells off Kennedy and Steph at her class graduation. tt7014006,NX12Wu1uqbI,Kayla has a good time at the mall until she receives an unexpected visit from her father. tt7014006,hH3peh07eq4,Kayla starts her day by filming an advice blog on her Youtube channel. tt7014006,6Ua_T32yaic,Kayla and Gabe bond over chicken nuggets and Rick and Morty. tt7014006,V9E9Nce1dC0,Mark Day can't figure out why Kayla has a banana. tt6958014,qiRW4OvzELU,"Naima is excited and enthralled by the free spirit and sexuality of the nightclub singer, Sergio." tt6958014,lUPTOiM_7CM,Naima proposes having group sex with Sergio's friends. tt6958014,2jqk0yyPkrY,Naima and Sergio discuss past relationships. tt6958014,iwryTZf6bA0,Sergio convinces Naima to send an angry email to the Duplass brothers. tt6958014,GM1x6UcMp0Y,"Naima, Sergio, Glow, and Kathy attempt to have group sex, but Naima gets uncomfortable." tt6958014,IznFYCiGAPA,Sergio and Naima plan to make love every hour for 24 hours. tt6958014,uh4bsAP7K4k,Sergio defecates in a pan and throws it at Naima. tt6958014,qy58BaeEMyw,"Naima, Sergio, and Susana share an awkward meal." tt6921996,5W19mLb-9JM,"Johnny English tries to train using virtual reality, but ends up wreaking havoc on the city of London." tt6921996,suYDvQwikn4,Johnny English and Bough sneak on to Jason's yacht. tt6921996,rpqgDDBcmcI,Johnny English and Bough chase after terrorism suspect Ophelia. tt6921996,Jhzm2AvUGHA,"Johnny English is smitten with the beautiful Ophelia, but is she hiding something sinister?" tt6921996,31fx9aF04ww,Johnny English unwittingly avoids an assassination attempt from Ophelia by taking uppers and spending all night in the club. tt6921996,s6moLb_ieqA,Johnny English accidentally stuns three British spies with a pen cap grenade. tt6921996,gFJT9ziRAUI,Jason Volta tries to escape and it's up to Johnny English to stop him. tt6921996,wmu9xg12xuc,Johnny English commandeers a driving school car in order to elude Jason Volta. tt6921996,lISiW7wcIVc,Johnny English and Bough pretend to be French waiters to steal a suspect's cell phone. tt6921996,lJ7F2kWLGuE,Johnny English inadvertently triggers a missile launch which destroys Jason's yacht. tt5610554,9_SMqU969fw,Marlo's brother Craig tells her about 'night nannies'. tt5610554,NxrAVHpoBs4,Marlo has it out with school principal Laurie after learning that Jonah isn't welcome at his private school. tt5610554,CmUXU3VLgGI,"On his first day at his new school, Jonah goes into a tantrum." tt5610554,2W7WM3CuXPU,Marlo and Tully recreate Tully's husband's greatest sexual fantasy. tt5610554,OCYRGGLywdQ,"Marlo realizes that ""Tully"" was just a figment of her imagination stemming from extreme sleep deprivation." tt5610554,EBu9PvRBPos,"Marlo reminisces about her youth and says goodbye to her younger alter ego, Tully." tt5610554,qW7LtKsIfHM,Tully tells Marlo that she can't be her night nanny anymore. tt5610554,O3TmokjuQR0,Tully gently seduces Marlo. tt5610554,-Ian949JzDw,Night nurse Tully shows up at Marlo's. tt5610554,qDQo4nvQ2yw,"On the way home from Brooklyn, Marlo falls asleep and crashes her car off a bridge." tt0397535,3rb5s-BoCFM,Chiyo receives kindness from the Chairman. tt0397535,KVnOa_HhgX4,Sayuri plans to drive Nobu away are ruined when Pumpkin brings the Chairman instead. tt0397535,HliXkWOMgaE,Sayuri is chosen as the lead in a popular dance performance. tt0397535,dPaM45IreF4,"Chiyo catches Hatsumomo together with her boyfriend, Koichi." tt0397535,HV6s5JiA82g,Mameha takes Sayuri to a sumo match to meet Nobu. tt0397535,HUZ-rA7L0uk,"Chiyo and her sister are both sold into servitude, but only Chiyo is taken in by ""Mother""." tt0397535,0NAWQvMZpO8,Sayuri returns to help Nobu and the Chairman win the approval of Colonel Derricks. tt0397535,lG40tBFlGMQ,Sayuri returns to find Hatsumomo in her room. tt0397535,MyzSuy1v6DM,"Expecting to see Nobu, Sayuri is surprised to find the Chairman." tt4092422,hhjLmbn5YoM,Arthur and Vida make their vows to each other. tt0397535,LeGBkG_sRNc,Sayuri begins her transformation into a geisha with the help of Mameha. tt4092422,9qNFpkUBSro,Arthur's family tries to move their father's body. tt4092422,tQ_Ry1KTluA,Vida and Arthur find living together a bit more difficult than they anticipated. tt4092422,tgBurIq9lGE,Arthur and Vida start over again. tt4092422,vAO2D0riCDg,Arthur makes a proposition to Via and she makes a proposal of her own. tt4092422,owUlPwoEfaM,Tensions come to a head between the the Davies and the Berliners when Adam and Llion bring their bigotry to the bathroom. tt4092422,3w6Z_-R4Kk8,Vida meets Arthur's very eccentric family and breaks all the house rules. tt4092422,r5ia1XDzIAU,Vida doesn't take kindly to Arthur's comments. tt4092422,rc5v5EODszE,Arthur makes one last visit to Vida. tt4092422,bqy-R0SemoM,Arthur makes a bet with Vida. tt2798920,YOCEHKSgwlQ,A mutated alligator attacks the expedition team. tt2798920,ZrDL3HQCwE8,Anya cracks and kidnaps the expedition team. tt2798920,xC3PGTTjX7E,The expedition finds chilling footage recorded by Kane's team. tt2798920,mAB-hSPmzjk,The Humanoid creates itself from Lena's blood. tt2798920,Mg0bvyIEHcs,A bear mutated by the shimmer terrorizes the surviving members of an expedition. tt2798920,Gi3K-CApAS4,The Humanoid becomes Lena. tt2798920,RSl6bwZabjA,"Josie reveals that she's infected, but wants to choose her own way to die." tt2798920,282_VCffiTo,"Lena reunites with Kane, but is it really them?" tt2798920,VHj96nAjRn0,The expedition finds the mutilated body of the disemboweled soldier. tt2798920,kVbmTKqZ31M,The entity takes over the body of Dr. Ventress and erupts outside of her. tt7575702,aPdxMGV1Y28,A girl turns the table on a couple of bullies. tt7575702,2kdSBZ2QieY,Henry tries to kill the alien bug growing inside his pregnant wife Kate. tt7575702,jcmTZfv5z-k,A werewolf attacks and kills a young woman on her way home. tt7575702,hq4lKhTXzXQ,Henry satisfies the hunger of the alien bug that lives inside him by killing and eating an old lady. tt7575702,rdWIo5R10CM,A serial killer turns on his former partner when he tries to attack his family. tt7575702,ZyMP_jN2Veg,A woman finds a routine surgery to be more than she bargained for. tt4953610,MFN2fMP05CI,"Bruce hears a noise in the night, and recruits Mark to help him search the house." tt0114608,S3MGT2fahAY,The Collector attempts to seduce Jeryline one last time. tt0114608,5zileWIEgoQ,Amanda gets off on murder. tt0114608,Kuy5Qgp5pvg,The Collector comforts -and corrupts- Cordelia. tt0114608,2sX5DMSCipI,Brayker and Jeryline fight off a possessed Uncle Willy. tt0114608,ewiNzru8Kek,"Brayker leads everyone through the mine, and Jeryline finds Danny." tt0114608,7sXlyaQ_ZHs,The Collector raises some demonic friends to his deadly hoedown. tt0114608,urbo6F_qD5k,"The Collector traps Jeryline, who has one last gambit." tt0114608,fbDgv4huUp4,Demonic creatures attack the boarding house. tt0114608,MWc0I1-Sfj4,Roach makes a deal with The Collector. tt0114608,D7gk8nagjHU,A demonically possessed Cordelia feasts on Wally. tt4953610,H6jj52hYXeQ,Bruce tries to start the car to escape what is terrorizing him and his family. tt4953610,FFnlaQlI1So,"Officer Morrison talks about what he saw when he arrived at the scene of the murders, and other locals talk about the possible curse of the area." tt4953610,ogUC0Fcvh7g,A fellow teenager sneaks up on Mark and Kacie in the woods. tt4953610,UkPkaNawTUw,The family hunkers down in the master bedroom. tt4953610,c_SJMeRltkA,Mark goes looking for Manny's medicine in the garage. tt4953610,0yAYgv2YQ5k,Maria seeks cover in her bedroom. tt4953610,NirTc-GvKLk,Bruce heads back inside to look for his family only to get a nasty surprise. tt7043070,PkUS3Y9bR9s,"Coworkers trapped in an elevator turn to murder, but all is not as it seems." tt0455760,5k-dlqqHE2M,Billy the puppet comes to life and brutally kills Lisa. tt0455760,qTey0qxMboA,Jamie gets a fright when he spends a night in a motel room with the dummy. tt0455760,n1VEmXiaFY4,Henry tells Jamie the story of Mary Shaw. tt0455760,p0cf4-1zuOk,"Jamie realizes that his ""stepmother"" Ella was Mary Shaw all along." tt0455760,rOzJnj3UmNE,Henry gets killed by Mary Shaw. tt0455760,X2X3DxFAFlQ,Edward tells Jamie about the curse that Mary Shaw placed on the Ashen family. tt0455760,Y9Nt3hlMUUI,A possessed clown doll tells Jamie why Mary Shaw killed his wife. tt0455760,oEHayxH_YT8,"Detective Lipton and Jamie stumble upon Mary Shaw's collection of dummies, as well as the body of a missing child." tt0455760,-t06SZje8O0,Mary Shaw and her dolls attack Jamie and Detective Lipton tt0455760,z7J95xF4vW8,Jamie burns the Billy dummy in the fireplace as Mary Shaw attacks him tt7043070,DyUus5cUe08,Sister isn't feeling too well... tt7043070,aHI-JX6Q3Xk,A woman begins to suspect that she's being watched. tt7043070,rHIIMIBMvng,Never make the mistake of watching a cursed video tape. tt7043070,py7xqlpvCIk,A haunted toothbrush attacks. tt7043070,6puVCaR2E7M,A woman is haunted by her dark half. tt7043070,dXk2wGeBUHE,A possessed woman tries to seduce two burglars. tt7043070,eQSqgubHzn0,A woman's doppelganger attacks her while she's in the tub. tt5886046,eB-ldQkL--0,The group tries to escape the first room before they are burned to death. tt5886046,Kiw89e1mHpM,Ben meets the Games Master. tt5886046,jjwg2PeDUxM,Ben and Jason try to escape from a room while hallucinating. tt5886046,aW3-E3My-kc,Ben looks for clues while the room closes in on him. tt5886046,7mm8aQCp_oc,Mike and Jason test the limits of their bodies hoping to find the next clue. tt5886046,X8w0J4y5X4g,Zoey shares her investigative findings with Ben. tt5886046,S6yZ-K4SHJU,Amanda's only chance of survival is hanging onto a phone. tt5886046,z7siqPhc1qc,The group finds a clue under thin ice. tt5886046,StoThowf7Y4,Zoey goes back to the crime scene with Detective Li. tt5886046,E-EDJ6Z8mS8,Zoey outsmarts her opponents. tt1521787,8uLL9nYu9YA,"Drake makes the acquaintance of Harrison Dent, a paranormal investigator." tt1521787,6qXs7Yp75M8,Drake and Susan uncover the truth behind the house's curse and reunite their angry spirits. tt1521787,UU_Ly8gXV6M,Susan discovers the awful truth of what happened before they arrived at the Wincester house. tt1521787,REkL4uLFnPs,Harrison Dent arrives to help Drake and Susan fight against the angry spirits in their home. tt1521787,ST9ouIvHftA,Harrison Dent asks the spirits who haunt the mansion what their business is with the family who's recently moved in. tt1521787,ntqVq02V2v0,Drake and Susan discover secrets of the home they are staying in. tt1521787,LMcBi9a8_RQ,Drake and Susan panic after an intense encounter with the spirits. tt1521787,b31BhA8om1E,Harrison Dent leads Drake and Susan to a safety circle in the hopes of preventing an imminent attack. tt1521787,I3G-1_l97K4,Susan and Haley hide from angry ghosts in the halls of their home. tt1521787,WjWpGhzYS6o,Haley discovers a spirit inhabiting her room. tt5941692,G5aoRyZ-QtM,"Gloria makes a run from the gang, but gets picked up by the DEA." tt5941692,tEyY-ijoyaQ,Lino pressures Gloria into entering the Miss Tijuana pageant to save her best friend. tt5941692,HhmpYA22oio,Gloria follows Lino's orders and wins the fixed Miss Tijuana beauty pageant. tt5941692,VLm7BuSsFK8,Gloria reverses the plan to assassinate Chief Saucedo. tt5941692,PdmlJSk6QAk,Gloria rescues Suzu and confronts Lino. tt5941692,d0c6KWKMAF8,Gloria watches in horror as Isabel dies to protect her cover. tt5941692,FbDFmWdG3NU,Gloria tries to cross the border while carrying money and drugs. tt5941692,qoXJJin1e7g,"The morning after the club shooting, a police officer agrees to take Gloria to the station to find her friend." tt5941692,891-YR-fgsk,Gloria tries to sneak a chip into Lino's phone. tt5941692,fwITaMQj7S8,Gloria decides to save Lino during a shoot out with the DEA. tt3080844,3TF7zAiuX1k,Father Gennadiy finds a predator while rescuing drug-addicted street kids in Ukraine. tt3080844,qHizQ-En6Tk,"Gennadiy's rehab center gets most kids back on their feet, but it's not without its struggles." tt3080844,N7wkGjBcjp0,Gennadiy saves a mentally handicapped woman from her abuser. tt3080844,NWNMrmwD7Xo,Gennadiy laments his helplessness in the face of Russian occupation. tt3080844,QteR6PIwTNk,Gennadiy preps his kids for a televised statement against Putin's invasion of Crimea. tt3080844,fXn18S0O52A,"Gennadiy reflects on the faults of the Soviet regime, the trouble it has caused, and the trouble that is yet to come." tt3080844,wS93oTI5JY8,Gennadiy expresses his hopes and dreams for his country and the kids he is helping shepherd. tt3080844,9J_YOz9jvG4,Gennadiy welcomes a new rescue to his rehab center. tt3080844,XP2jPEAalOw,"Father Gennadiy helps a street kid piece his life together, starting with his surname." tt3080844,ljzeZK56UeY,Gennadiy recounts finding his life's calling. tt5160154,sxGRFqybDw8,Jason and Ade tease each other about girls and sports. tt5160154,WUgVUfYuEiQ,Jason explains the hell of public opinion on sexual orientation. tt5160154,JXRw_5ug68w,Jason and Ade horseplay with racial epithets. tt6205872,VJECUbUadpg,A group of masked men break in to the house to kidnap and kill the girls. tt5160154,Qh5tZM4ybhI,Jason uses Harry to toy with Ade's feelings. tt6205872,y-qCvfXMTlg,"After her nudes leaked online, Lily gets harassed and chased by a sexual predator." tt6205872,jyDUZd-Orlc,Lily kills Nick after he tries to assault her. tt6205872,944BOVL_y_U,Lily makes a viral video inspiring the young women of Salem to take up arms. tt6205872,Q1khILbP8yU,"Lily, Em, and Sarah save Bex and kill her tormentors." tt6205872,5oHNA8muC4I,"Lily discovers that all the messages and nudes she's sent to her adult lover, Nick, have been leaked." tt6205872,2k0S-F8VIhI,Grace takes out her revenge on Reagan after her texts are leaked. tt6205872,NadEkwOLA7k,Lily and Bex fight back against the men who try to kidnap and murder them. tt6205872,S0X0KScmHvo,Lily arms herself and goes to rescue her friends from a corrupt cop. tt6205872,tfUt-J2GCmA,Lily and Mark have sex while her secret lover Nick watches. tt5160154,lQm7hpsJsPA,Lyndsey's seduction of Jason doesn't go as either planned. tt5160154,CVjRQMnURtM,Jason struggles to express what's really on his mind. tt5160154,luE7cUCzQK4,Jason & Ade's screwing around leads to something more. tt5160154,oJT7pQyq63M,Jason starts a toxic drinking game with Ade and Harry. tt5160154,8510wKZLa6g,Jason pushes Ade to kiss Harry. tt0864835,_nnGxztgrQk,Sherman and Penny return to the present to warn Mr. Peabody of his imminent demise. tt0864835,jfhEIIK-jB8,Mr. Peabody and Sherman craft a plan to save the city as the past comes crumbling down atop them. tt0864835,AhcxeUrWTRc,Penny tricks Sherman into using Da Vinci's flying machine. tt0864835,rWlFWMR9MfY,Mr. Peabody rescues Sherman from the Greek army during the Trojan War. tt0864835,PiL1okP-jbc,"Mr. Peabody, Sherman, and Penny rush to rectify the tears in their timeline." tt0864835,9L-HJ7BVR6A,Mr. Peabody and Sherman get swept up in the French Revolution. tt0864835,jjPq-r91oB4,Friends of Mr. Peabody provide their support after Ms. Grunion takes him. tt0864835,T1IyMJOC0JM,Mr. Peabody and Sherman pretend to be the god Anubis to save Penny from being sacrificed. tt0864835,Ru_KziPyopw,Mr. Peabody remembers the days since he first met and adopted Sherman. tt0864835,ZgeAaV-OFvs,Mr. Peabody explains how he came to be the dog he is today. tt2582784,G-I4i0ClrmQ,Luke tells Erica what Will really did. tt2582784,Pf9UUPDJl9k,Erica gets questioned by the police and her mother. tt2582784,iM0XndiNfd8,Erica seduces Will in a parking lot while her friends watch. tt2582784,_v0aLo9ualA,Erica flirt-entraps Will at a supermarket. tt2582784,ZNQVHnzKvjg,"On the run from the cops, Luke confesses his love for Erica." tt2582784,jWtYVevvApk,Seventeen year old Erica entraps a pedophile cop. tt2582784,0kM0c3Q-hHQ,Will denies his molestation charges while drinking a drugged beer. tt2582784,UpsprkCDFOs,"After a suicide attempt, Erica learns that Luke was once molested by a former teacher." tt0245429,KhS2-vKr1JY,"Spirit, with Rain in tow, reunites with his family." tt5912454,JrjycvHR0iI,Jim and Amanda listen to tape of them role-playing as adults when they were teenagers. tt5912454,qlUJueukntw,Jim and Amanda relive their teenage days by dancing together. tt0245429,futultLrWms,Spirit freezes in a train and longs for freedom. tt0245429,BfF5J0uSC3E,Spirit grows up from a foal to a stallion. tt0245429,Ca273QV9ik8,Spirit rushes to save Little Creek after The Colonel attacks Little Creek's village. tt0245429,-Kztqrjp2yw,The Colonel thinks he can break Spirit. He thought wrong. tt0245429,0J4K03Owgwc,Spirit and Little Creek outrun the Colonel's men. tt0245429,dRVq4Um7E5Q,Little Creek and Rain teach Spirit manners. tt0245429,Z9h-ht1mVkw,Spirit rebels against the railroad. tt0245429,QSqUVzkUvj8,Spirit falls for Rain. tt0245429,weEay_Y4EeE,Spirit's curiosity gets him in trouble. tt5912454,WgRUpptAcAA,Jim reads his letter to Amanda after leaving it unopened for over twenty years. tt5912454,a88UYg3uwZw,Jim and Amanda reminisce about the days they used to play house. tt5912454,VbQOa65nKqU,Amanda reads some embarrassing literature from Jim's mom's erotic library. tt5912454,AL5i8ko_Blg,Jim and Amanda relive their senior prom. tt5912454,vGqM44xx4zI,Jim and Amanda make promises to each other that neither should keep. tt5912454,4x8o78xHel8,The truth comes out between Jim and Amanda. tt5912454,vEaLVMOwHn4,Jim and Amanda return to his old bedroom after their passion reignites. tt5912454,oyXKvCRzYz8,Jim and Amanda catch up after many years. tt0424095,yEqjnlWEIcg,The Toad shows Roddy his shrine of artifacts. tt2518848,OypxsTReBOM,"In an attempt to fix the superstorm they caused, Simon rushes to adjust the core settings." tt0424095,mI6O2d4Ieok,Roddy and Rita are chased by The Toad's henchmen. tt0424095,cbN7TQSGYlI,Sid flushes Roddy down the toilet. tt0424095,r67faKKQyO4,Roddy and Rita race to save Ratropolis from The Toad. tt0424095,eOYwXi0B6KQ,Things don't go well for Roddy on his escape from Toad. tt0424095,2cxG6iiqEdk,Toad annoys Le Frog with his life story. tt0424095,m3XsVwEuULw,Roddy enjoys the thrills of being a bachelor. tt0424095,uI7ijvSCHcI,Roddy and Rita fight Le Frog. tt0424095,ePgiRqRIdwg,Roddy attempts to ply Rita with song. tt0424095,VGcOGt-OV7s,The Toad prepares to freeze Roddy and Rita. tt2518848,ABLVvVkVtHo,The Sims family tries to escape the oncoming superstorm by car. tt2518848,DotrfvKEyiI,Nathan Sims loses control of the Sims' helicopter in the middle of the storm. tt2518848,lXKwuj1pqrM,"While trying to escape the storm, the Sims family runs into a menacing stranger." tt2518848,bMblXxTNWQg,"To save the world from ""hypercane"", Nathan blows up the weather power station base." tt2518848,p7h8oBhP_lE,Nathan survives the eye of the storm to help his team diffuse it. tt2518848,WtVDF5bNkqM,"As the storm quickly approaches, the Sims family rush to safety from a tornado that is tearing through their town." tt2518848,PFjN94zKbc4,"Nathan Sims, Captain Wright, and Private Gentile run away from an underground flood." tt0120587,KfxQi9_BfHI,General Mandible's evil plan comes to fruition as the worker ants inadvertently flood the colony. tt2381317,jEeRRb8wnqQ,"Dr. Jenna Sparks, Dr. Percy Cavanaugh, and Travis Verdon have to outrun an expanding sinkhole, but will they all make it to the other side alive?" tt2381317,3RWHkM-krJA,"As fire rains down from the sky, Dr. Jenna Sparks, Dr. Percy Cavanaugh, and Travis Verdon must escape their car before it burns them alive!" tt0120587,wZWNmL5VsIs,"Z meets, dances, and falls in love with Princess Bala at a bar." tt0120587,6PrFocPT-Rs,Z fights General Mandible for the colony. tt0120587,-rsImQShehk,Z and the soldiers go to war against the termites. tt0120587,Sbtm5uE3cCQ,Z and Bala meet Chip and Muffy. tt0120587,gFX14TEiBOw,Z seeks therapy for his countless insecurities. tt0120587,0h0S6EmQWrI,Z tries to rescue Princess Bala when she gets stuck beneath a shoe. tt0120587,XrujkDtd0iY,"Trapped in the flooded colony, Z plans a desperate escape." tt0120587,eK20uOpc_AM,Weaver works in the tunnel and hits on Azteca. tt0120587,M9CgWWkwvdw,"While he is being honored as a war hero, Z hits on Princess Bala." tt2381317,T0gaeDWYHr4,"Travis Verdon sacrifices himself to save the world from the ""super cyclone""." tt2381317,P430SxnueE4,"Dr. Jenna Sparks, Dr. Percy Cavanaugh, and Travis Verdon drive into a tornado made of oil." tt2381317,qURMZDMKpxY,"In the middle of the storm, engineers and sailors fall off the deck of the oil rig and into the open ocean." tt2381317,F0xKJcGIQZM,"The super cyclone causes a dam to burst, spilling millions of gallons of water and flooding Los Angeles." tt2381317,1DNNWWORGo0,"At the most advanced oil rig in the world, Travis Verdon's team accidentally drills into an active underwater volcano sparking a series of volcanic explosions and climatic disasters." tt2381317,2k-G7TPLUfk,Jenna rescues Travis. tt2381317,86mBBMobUdY,Gary Winters and Engineer Alex Rowell have to jump into the ocean to escape the burning oil rig. tt2381317,Kq3ZaI7ccrM,"Air Force pilot Lt. Connelly tries to put out the oil fire, but the firestorm gets to him first." tt3120508,BFWChdiNlEg,"The burglars try to steal from Bone's family home, but Bone's pranks keep them at bay." tt3120508,Spg3JX8dRos,"The burglars try to get in to the house, but get trapped on the deck and Bone gives his noggin a floggin'." tt0110366,MZG1HbQ3KCE,Alfalfa wins the race by a hair when he attempts to tie Darla's handkerchief to his go kart. tt0110366,E-F92GOLVcU,"Alfalfa sings a song in the talent show to try to win Darla back, but his performance gets ruined by Waldo." tt0110366,7S2ffMUk7iI,Buckwheat and Porky trick Alfalfa and Darla into breaking up. tt0110366,ufllQr0ClXg,Alfalfa's friends sabotage his date with Darla. tt0110366,VC0PPBrYBco,Alfalfa romances Darla on the lake. tt0110366,mHGHJwXWh1k,"The He-Man Woman Haters Clubhouse catches on fire, and the boys have to work together to put out the fire." tt0110366,F8UwjJzF4LY,Alfalfa runs away from bullies and an attack dog. tt0110366,DVA8vzEbm9Y,Spanky and Buckwheat try to take out a loan from a banker. tt0110366,aZJG26fSy94,The boys and girls talk about their distaste for the other. tt0110366,tNvDa9kTDUw,"Waldo sings ""L.O.V.E."" to Darla in the talent show." tt3120508,VO_llDPp0kY,"Quentin sets a trap for Bone, but Bone outsmarts him and Quentin gets a bigger catch than he expected." tt3120508,zanh_ElKfdI,"The burglars fall into the traps that Bone has set out for them, leading to frightful, fuzzy, and flatulent effects." tt3120508,W_aGbCWYX2Q,"Dog catcher Quentin tries to shock Bone into leaving, but it's the dog catcher who ends up getting electrocuted." tt3120508,62Zbtotq0B8,"Bone, Columbus, and Diesel put the finishing touches on the burglars and wrap them up in a nice little package for the family to find." tt3120508,5MpwO0oMUBY,"After being left in a kennel during Christmas, Bones breaks out so he can save his family." tt3120508,far9-9beq-M,"With Columbus and Bone working together to stop the burglars, Rob gets stuck in the chimney and Phil gets blown away." tt3120508,frwyMLRko_8,"Jake finally has Bone in his clutches, but Bone proves that his brain is worse than his bite." tt3120508,3mhdNBdzHO8,"Bone's tricks come to fruition as Rob gets barbecue, Jake gets stuffed, and Phil gets prune-y. But will a flooded shower wash Bone's master plan away?" tt6644200,KD6FsEaD-3U,"Heartbroken by the loss of his wife, an old man screams for death... which is lurking nearby." tt6644200,4CmmKmlXD9I,Beau plays with the wrong toy in the wrong place. tt6644200,CeJQF4L0hx8,Evelyn bleeds out during her pregnancy as she desperately tries to stay calm. tt6644200,Zufljc_8uLk,"Lee reunites with his kids, but realizes that they're under attack." tt6644200,2F4ExP0q6RU,Evelyn awakes to find her basement flooded and an alien threatening her baby. tt6644200,1eoKvx5X9JQ,"Cornered by a creature, Evelyn and Regan discover the aliens' weakness." tt6644200,rwDDgGuCVS0,Regan tries to rescue Marcus from the corn silo. tt6644200,ThWvubM3qSs,"Her water broken, Evelyn tries to hide from an alien." tt6644200,kTtxe4pWpfQ,Evelyn and Regan team up to kill their alien assailant. tt6644200,5WvXdaXIbYw,Lee sacrifices himself to save his children. tt1628841,RKlctKGIpsA,Kelly leads a militia into the spaceship in order to sabotage it. tt1628841,a1dqJn-r0-k,Alien spaceships attack earth. tt1628841,5tZeutuxfJw,President Raney and her crew find themselves under attack from hazardous gas. tt1628841,AySMP0SgVFY,President Raney executes a masterplan to sabotage the mothership. tt1628841,DPU8L2vJvsc,Aliens attack DC and attempt to take out the White House. tt1628841,yriA_JXQ8dw,President Raney and her crew rush to escape the mothership after destroying it. tt1628841,9TwfC7_M2b4,President Raney lets her son Bobby enter an alien healing chamber as a show of good faith from the aliens. tt1628841,KdBP8sYgMT0,The Earth One militia goes after an alien convoy. tt1628841,5nWugkh7A5U,President Raney sends in a soldier to infiltrate the alien spaceship. tt4520924,Kqdi0X9vJ0Q,"Angie negotiates her rent on a house, but the down payment is too expensive." tt4520924,9EF7lRxLbtg,"Angie tries to sue her abuser, but learns that the statute of limitations has passed." tt4520924,FbI1dmDdLg8,"Angie meets with Kaylee, another abuse survivor." tt4520924,z1PcJZEi_js,Angie meets with Pastor Hodges to learn more about Bruce and his victims. tt1343092,ZgAf9AuNc6Q,Gatsby takes Nick on a crazy car ride through New York while relaying his life story. tt1343092,A1-XFXX8rU4,Nick reflects on Gatsby's will to reach for the future and pursue the incorruptible dream. tt1343092,6rVFFaIyfH0,Gatsby tells Nick his story of falling in love with Daisy. tt1343092,2FlG1Z6jY-0,Gatsby reveals to Nick that it was Daisy who struck and killed Myrtle. tt1343092,jL6rrLaw6rc,Daisy and Gatsby see each other for the first time in over 5 years. tt1343092,VKl41s51JvE,"When Tom exposes the truth about Gatsby, Gatsby loses his temper and attacks him." tt1343092,2zHHkSu1br4,"At a massive party, Nick finally meets the elusive Gatsby." tt1343092,2Qz0AREgsdQ,Jordan tells Nick the story of Daisy and Gatsby's forgotten romance. tt1343092,tFkpixS3QZQ,"Believing Gatsby to be the man who killed his wife, George shoots him in cold blood." tt1343092,ZQHhiZUNM3Q,Daisy tells Nick that she hopes her daughter will be a beautiful little fool. tt4520924,RVVBffj2v8o,"Angie meets with a younger abuse victim, but Pam refuses to bring up the past." tt4520924,8cjxrd4MMMU,Angie decides to give her abuser Bruce a private dance in exchange for rent money. tt4520924,XgZDk5PcLYg,Lorraine takes Angie to audition for a job. tt4520924,cUFdtdKFaOo,Ruth Ann seduces Bruce for rent money. tt4520924,CMMXbRt2zLQ,"Desperate, Angie goes to her former abuser Bruce to ask for money." tt4520924,qIsyU3MH-Zw,Angie and her mother Ruth Ann argue. tt3626442,UwN27CAbgFQ,Björk performs 'Thunderbolt' from her album Biophilia. tt3626442,OSEHYgl2-_M,Björk performs 'Nattura' from her album Biophilia. tt3626442,xY6bhYtH8Pw,Björk performs 'Crystalline' from her album Biophilia. tt3626442,iNiZJmh1ALI,Björk performs 'Hidden Place' from her album Vespertine. tt3626442,nf_4vFdS80M,Björk performs 'Mutual Core' from her album Biophilia. tt3626442,Dp8y3CiQDgw,Björk performs 'Isobel' from her album Post. tt3626442,g_HrR50Z5LM,Björk performs 'Possibly Maybe' from her album Post. tt3626442,Od3sXn4mOF0,Björk performs 'Hollow' from her album Biophilia. tt3626442,3hPy770hf_s,Björk performs 'Cosmogony' from her album Biophilia. tt3626442,bOge5t77CLw,Björk performs 'Moon' from her album Biophilia. tt3986978,Y8AM8s9zoKY,"Buoyed by success at the Venice International Film Festival, Dennis Hopper pushes back too hard against studio notes on his cut of ""The Last Movie.""" tt3986978,dKX4NN38vpc,"The story of the making of, and the reception to, Dennis Hopper's movie ""Out of the Blue""." tt3986978,RcjY_I91okg,Dennis Hopper's collaboration with David Lynch in Blue Velvet marked somewhat of a return to Hollywood. tt3986978,FzemDO1TITY,"Satya De La Manitou, recounts when Hopper had to be sent to rehab." tt3986978,WNU59WxKw-g,"Friends, family, and co-stars recount the process that followed the success of ""Easy Rider"", and how Dennis Hopper found funding and a studio to make his passion project, ""The Last Movie""." tt3986978,iFzuPtVopnE,"Cast and crew recall making Dennis Hopper's ""The Last Movie.""" tt3986978,ARQrc5qPDPE,"Satya De La Manitou and Tony Dingman talk about Dennis Hopper's time on the set of ""Apocalypse Now.""" tt3986978,pWREOi5GPZ4,"Dennis Hopper's longtime friends, Satya De La Manitou and Dean Stockwell, recall the time that Hopper faced off with the State Police at a bar in New Mexico." tt3986978,TAN8GthZg7s,"The tumultuous editing process of Dennis Hopper's film ""The Last Movie"" is discussed by his friends and studio executives." tt3986978,Cw7Ed1B3g18,"Satya and the director of ""Mad Dog Morgan"" talk about working with Dennis Hopper and his mania in Australia." tt1210166,PlKDQqKh03Y,The scouts are doubtful when Billy describes Peter's strategy for picking players. tt1210166,aNDj-H1jxV0,Billy is frustrated with the scouts when they refuse to think differently about their financial problems. tt1210166,fkiY6TBT4mo,Casey asks her dad about his job security. tt1210166,JXyisZLObHc,Billy is frustrated with the team's small budget. tt1210166,Ofkb_7EnunM,John offers Billy a job as GM of the Boston Red Sox. tt1210166,AKXKkeLQWac,The scouts are confused when Billy declares a radical new direction for their team. tt1210166,IpoReT0HjsQ,Billy questions Peter's belief in their strategy. tt1210166,IgKQ8z_xNhk,Billy tells Peter why winning matters to him. tt1210166,1pzV9GoSuys,Justice asks Peter about Billy's business practices. tt1210166,ySC245RIiD8,Billy refuses to watch his team's game. tt2401878,HCGVmIe_V1c,Michael invites Lisa to his hotel room. tt2401878,YJV5WB1wxdk,The walls begin closing in on Michael as he rushes to escape a hive mind of admirers. tt2401878,6F_Wp3IlryI,Lisa asks Michael what she did wrong after he spontaneously begins to lose feeling for her. tt2401878,mXvst0jlR9Q,"After listening to her sing, Michael attempts to get Lisa into bed with him." tt2401878,NmSNUylSNvo,Michael comes home to find the humdrum life he was so desperate to escape will never allow him to leave. tt2401878,wTqLwoaEUmU,Michael meets up with an ex-girlfriend years after abandoning her. tt2401878,zSh-Wy2vvHY,Michael has a nervous breakdown while giving a seminar on customer service. tt2401878,xPk6RGGwQC8,Michael attempts to seduce Lisa by letting her talk about her day. tt2401878,XAVgIM5X42w,Michael has a disturbing run-in with a hotel manager. tt2401878,G1uBkHVIGfc,The allure of Lisa begins to fade for Michael after he begins to notice her imperfections. tt2385752,Aq4LMaeZAns,"Liam and Natalie get to know each other through music, and share their first kiss on a dancefloor." tt2385752,oTd-6xia-xY,The Curve praises and consoles Liam after he falls apart onstage. tt2385752,UIpSn7Kma80,Liam and Natalie have a less than graceful first time in Natalie's dormroom. tt1230168,Oj8S0fNum9g,Denver blesses the Christmas dinner only for Earl to ruin it. tt1230168,d7WraA-roN8,Denver storms into the homeless shelter and leaves a big impression on Ron and Deborah. tt1230168,WO0KS0mbu80,Denver reveals how he's suffered at the hands of bigots. tt1230168,paPWv3HjXAI,Deborah has a nightmarish vision of her fate. tt1230168,s8tXE43jYho,Young Denver plays 'Klansman' with his white friend Bobby. tt1230168,I-Iankzmv3I,Ron and Denver say goodbye to Deborah. tt1230168,L4MyGhbXKZU,Denver reveals how he came to be a felon. tt1230168,Q4r4jGPegHs,Deborah uplifts Clara's spirits. tt1230168,sjEDF282UvY,Deborah cuts things off with Ron's mistress. tt1230168,-pXlicO85dk,Denver gives a touching eulogy for a very special friend. tt2385752,TYJXBdLgPks,"With the help of The Curve, The Head Cleaners play their first official gig." tt2385752,tbWLF2J10xY,"Natalie watches a viral video of Liam crying while singing a song about her, and realizes that she loves him." tt2385752,4a_1wkseCkQ,Liam gets drunk and embarrasses Natalie in front of her boss and coworked at a gallery opening. tt2385752,2Pl7zNuA-vY,Natalie and Liam argue about their relationship and their future together while at a rain-soaked music festival. tt2385752,sJALMf17QBg,"Liam meets Natalie at a record store, and form a connection." tt2385752,TOzf01qWO-Y,Liam breaks down while thinking about his ex-girlfriend Natalie while he and his band performs his latest song. tt2385752,iIPeQxzLVlY,Liam gets a job at a local coffee shop and has to serve Natalie with her new boyfriend Adrian. tt2368619,9H8h3YZTsmg,Michael leads Sean on a wild chase over Parisian rooftops. tt2368619,AqV77k80Iw0,Michael steals the wrong package. tt2368619,7yg4b79rNQY,Sean gets some unexpected help during a shootout with corrupt French Spec Ops. tt2368619,5BL8zybMd-M,Michael plays chicken with Rafi. tt2368619,Q7r5VtqG7cE,Sean confronts Rafi in the bank vaults. tt2368619,7UANVfaybow,Sean uses questionable tactics to secure information on a missing suspect. tt2368619,usoH9GnfJrA,Sean encounters a group of assassins targeting a pickpocket. tt2368619,Vq2YQ_fXZoA,Sean tests Michael's alibi during an interrogation. tt2368619,Wn02SYyYhRA,Michael causes a scene in order to get information. tt2368619,Gr9p1MnLMj8,Sean makes his move after he and his partners are kidnapped by corrupt French cops. tt5081618,x6PMTIOZY4A,Natia and Lilly go to the bar for a drink... named Buck. tt5081618,9JVQzj-iWI0,Natia punishes an abuser and demands money. tt5081618,j1DtkoNFVHY,"Natia comes to kill Lilly, but gets distracted." tt5081618,WgeM95snEhU,Detective Brennan interviews an uncooperative gangster. tt5081618,3aBcNzAFnxY,Natia grants Luke's tragic request. tt5081618,aQ8UQmMypws,Natia fights a pimp and his bouncers. tt5081618,gcoKGdZcf7A,Natia performs a sharpshooting circus act with Aria. tt5081618,N5oKlOWxzio,Natia walks in on Lilly and her guest. tt6857166,q3deD1S7v5I,Mitchell takes Diane on a romantic plane ride. tt6857166,DRTuzzBTrGs,Carol tap-dances to a surprise song with a surprise guest. tt6857166,qVhR3cLu_zY,The book club spies on Mitchell. tt6857166,D_D9eQtLpCI,Diane accidentally grabs Mitchell's joystick. tt6857166,a2RgwHcY9ZM,Vivian plays with Arthur in a fountain. tt6857166,IrBymbqWH54,Sharon seduces George. tt6857166,8c-NNYNy5Bk,Mitchell asks for Diane's phone number while at work. tt6857166,3UBXU1m7rkk,Carol tries and fails to seduce Bruce. tt6857166,AvIUAlTg5J8,Arthur professes his love for Vivian. tt6857166,imITvYE-QBo,Bruce grumbles at Carol after she spikes his drink with a certain medication. tt5338644,788ZdV-LT0U,Mrs. Géquil demonstrates a Faraday cage to her class. tt5338644,hMYdeT6aOnE,The students pick on mild mannered teacher Mrs. Géquil. tt5338644,gkeddnrEeV8,Mrs. Géquil gets a shock while experimenting in her private laboratory. tt5338644,iVzz5FIaCkA,Mrs. Géquil offers to help Malik with physics. tt5338644,NL_vaHjmqC0,Madame Hyde wanders the streets at night and finds some of her students having a rap battle. tt5338644,ArOB5wVIf-Y,Madame Hyde kills one of the teenage rappers by setting him on fire. tt5338644,YYZSg-BBAmw,"Madame Hyde is confronted by a nosy neighbor, and then kills two stray dogs." tt5338644,EG9eUCA_MxE,Madame Hyde sets Malik afire. tt5338644,rLj7k4gxnRg,Madame Hyde saves Malik from some bullies. tt0318155,vBAK4o8zHF4,Drake tries and fails to eject Daffy on Kate's orders. tt0318155,waeNIUB5wz4,Marvin the Martian escapes and unleashes a horde of classic movie aliens. tt2991532,c6pX60F0bsI,"When blood starts spewing out of the Sawyers' sink, Scott goes to investigate the source." tt0318155,Dk2BtXCzdzc,Mr. Chairman calls in Wile E. Coyote's aid. tt0318155,0IWmniYe7aI,Bugs & Daffy run afoul Marvin while Drake learns Mr. Chairman's evil plot. tt0318155,D56dpMQVGTo,"Drake gets the Blue Monkey Diamond, but runs into trouble." tt0318155,xfF-ZL3xvxw,Daffy demands a twist on an age-old classic. tt0318155,bYO_AhZaG24,Daffy decides to be a hero while Drake deals with a robotic dog. tt0318155,6Dg0qouE5Zo,"Drake and Kate save the day, and Daffy gets a surprise." tt0318155,Wc_pikEIkcQ,Bugs reenacts a classic horror scene. tt2991532,gQ8uzN8MSfM,A priest comes to perform an exorcism on Dana and banish the Bell Witch spirit from the home. tt2991532,d4QJy7RMxok,Brandon and Scott Sawyer search for Colby in the woods after he goes missing. tt2991532,eng2A_NwG04,Scott Sawyer gets possessed by the Bell Witch. tt2991532,UHwiWw0vfps,"While searching for the possessed Dana, the real Bell Witch attacks." tt2991532,EqYD_u86J8E,A teen paying his respects to the murdered Colby soon becomes another target of the merciless Bell Witch. tt2991532,NIZSw5HFr60,A police officer finds the bodies of two brutally killed teenagers in the woods. tt2991532,WhsSP-hValQ,An electrician and wannabe YouTube star comes to fix the electricity at the Sawyer's house. tt2991532,3U7pCM576i4,A group of teenage girls get spooked by ominous noises. tt2991532,r28aUcqqgbA,"The Sawyers search the woods behind their house for their possessed daughter, Dana." tt0093756,tJ4H77qrLjI,Capt. Harris and Lt. Proctor commandeer a hot air balloon to chase a group of criminals in another balloon. tt0093756,RRDzDy5wLh4,Tackleberry jumps onto the criminals' hot air balloon and makes his arrest while Sweetchuck and Zed fight over the last parachute. tt0093756,qTjz5LJwnOw,Capt. Harris chases Kyle and Arnie through the city before ultimately crashing Mahoney's speech. tt0093756,2UuM47BOqNA,Mahoney and the guys play an elaborate prank on a few of the cadets. tt0093756,shal5AF2Gxc,"Callahan teaches aerobics, Sweetchuck teaches self defense and Larvell teaches karate." tt0093756,Eq4GnUgNeMg,The officers are attacked by a group of ninjas on a ship. tt0093756,upPFFVaVSY4,Laura teaches Capt. Harris a lesson by switching his oxygen tank for helium during a demonstration. tt0093756,ZrPvUd7E9HU,"At the gun range, Mrs. Feldman convinces Tackleberry to let her try shooting his gun." tt0093756,hxi06yeErvk,Capt. Harris ends up in a body cast after Zed switches his deodorant for mace. tt6981634,50CeayOz-rs,"Alex runs afoul Danny, who is eerily committed to his job." tt6981634,wkqss9zZOhc,"Alex meets a mystery woman, Penelope, on the beach but is too shy to swim with her." tt6981634,ieXrbTpZsvM,Lisa gets upset when she realizes Alex is actually a stranger. tt6981634,dfK91HGGVL8,"Alex learns to appreciate life from a group of cyclists, including Anais." tt6981634,1bpUlGBdKyE,Shirley serenades and tries to seduce an unwilling Alex. tt6981634,1wWk7qN62dI,Alex tries to cheat the ferryman. tt6981634,aRJXM-rYZQM,Shirley all but spells it out her attraction to Alex. tt6981634,fvXLs4FFSJc,Doctor Rock Positano does a swing number. tt6981634,wLhu6Zy6ixo,"While Alex searches for an exit, Kale sings about missed opportunities." tt6981634,nxDhsiiBH7Q,Alex has a deep conversation with Hope and watches her model. tt3597400,-zOoQRf6DNw,A farmer describes why he has to waste two bushels of greens just to sell one. tt3597400,PWebnyN1kSU,Grant and Jenny find a surplus of hummus while experts discuss how so much could go to waste. tt3597400,6ZUg51T5ly8,Grant and Jenny hit the jackpot after a friend calls them about a truckload of good food being tossed out. tt3597400,aFIOmbHlYo4,Grant hits the jackpot when he finds boxes of chocolate thrown away but realizes they may be defective. tt6149802,H_hW3ML6Ips,Liam and Beck go to couple's counseling inside their blanket fort. tt5167174,DbJ1V4yEZP0,"Shonzi embarrasses Lindsay's neighbor, Justine, while interviewing her." tt0087928,PniQ5j9ZqQk,Nothing like a good machine gun --or at least Larvell's imitation of one! tt0087928,J3Dc6UV1ML4,Lassard gives -and receives- a very gratifying speech. tt0087928,p7zS671gCo4,Maybe Harris shouldn't hold the megaphone so close to his mouth. tt0087928,GIASYqV_Xds,Lt. Harris learns the virtues of patience and motorcycle breaks. tt0087928,6sfgXGPtVQk,Tackleberry brings some extra fire power to the shooting range and Leslie gets tackled by Sgt. Callahan. tt0087928,KBLBKR6bQCI,Lt. Harris checks out the new recruits. So does Mahoney. tt0087928,I4tqrGqT_b0,"When Martin breaks and enters, Callahan uses excessive force." tt0087928,7a3vbSR4qWU,The trainees practice using the.12 gauge shotgun. tt0087928,6OKt2CZ4ULE,Mahoney meets Larvell Jones at the police station. tt5167174,1JLugcZa7kw,Todd catches Shonzi videotaping Lindsay during foreplay. tt5167174,MuLtmNixbdw,Shonzi gets off to dark fantasies of his brother's girlfriend. tt5167174,wQ0QXBmaY58,Todd allows Shonzi to spy on him and Lindsay. tt5167174,vqGsQEGHl0w,Shonzi reveals he's been spying on Todd and Lindsay. tt5167174,U9qK-5bDP4A,Shonzi gets the wrong idea about societal progress. tt5167174,7hDIu_ZNkbk,"Shonzi helps his niece, Lilly, out of a bad situation." tt5167174,o561o4AQdXQ,Todd can't stop thinking about Lindsay's ex during sex. tt5167174,XHEs28Z99so,Shonzi acts as 'coitus interruptus' to Todd and Lindsay. tt5167174,TUmckZQBzvk,Shonzi has adult play time with his toys. tt6149802,_-6IvJMziRc,Liam confronts Chippy Beck's imaginary friend. tt6149802,ckSC7ZLyGG8,Beck has a dream about stripping with Liam's ex-girlfriend. tt6149802,zZoxnqqZpDQ,Beck and Liam share a first dance and a first kiss. tt6149802,ipt7yPT4Lkw,Liam and Beck start to find things wrong in each other. tt6149802,JHvgBh9ZC3I,"Beck and Liam share nachos, drinks, and literal personal demons." tt6149802,m07ShpSpKJw,Liam & Beck rush their relationship and immediately hit issues. tt6149802,ZoWhq3dNFn0,"When Beck learns about Liam's dead ex, Beck's imaginary friend Chippy blows it out of proportion." tt6149802,psA_jrGe1PY,"Beck doesn't want to meet Liam's giant, mother." tt6149802,PkO3bgn-Qgs,Liam performs without his partner. tt3597400,FYeKDtzDy60,Experts weigh in on the extraordinary amount of food waste in America. tt3597400,6q5DmJCpaC0,Grant and Jenny score their first break after weeks of struggling to find food. tt3597400,WItFgdMdxDk,"Grant and Jenny get a bumpy start to their journey of only living off food wasted by stores, restaurants, and outlets." tt3597400,LUjMzKQtq8U,Experts break down the real meanings behind 'best by' and 'sell by' dates. tt3597400,fpJjOz1Yy8c,Grant and Jenny are halfway through their dumpster dive journey and find a surplus of food. tt3597400,z_98hXRRn2A,Grant and Jenny hit a rough spot between their ethics and reality. tt1791528,xq5lZuN6geo,Doc investigates a swinger's mansion where his girlfriend went missing. tt1791528,tr8peYDm1fE,Doc reacts to a photo of Hope's baby. tt1791528,F9M5eGoCnO0,"Bigfoot is a man of the law, and a fan of frozen bananas." tt1791528,4RPigjaVctQ,"In the midst of a cocaine binge, Doc and Dr. Blatnoyd are pulled over by the police." tt1791528,4lWui2b5GBI,Doc investigates a cult fronting for the cartels. tt1791528,nuhGjqaBzes,"After being drugged by Puck, Doc makes a daring escape." tt1791528,k6pHxD7qB7k,Shasta returns to Doc. tt1791528,eO-4vwbIJR8,Doc receives a letter from Shasta and recalls a romantic day they shared. tt3084904,PJze0WsDW8o,Calpurnia and Ellen attend egg donors anonymous. tt3084904,q9jTg_91KxU,"While under the needle, Calpurnia describes the medical process." tt3084904,zgEsN9EckAI,"Calpurnia and Ellen get close, but not too close." tt3084904,McQ2XFcPCys,Calpurnia goes through rigorous testing in order to be qualified by an egg donation clinic. tt3084904,vEOtK-qX4kE,Calpurnia is surprised to learn how much Ellen wants to show her. tt3084904,bTpRY4tkyio,Calpurnia learns what she needs to do to secure a leading role. tt3084904,yPD2Vq50JlQ,Acting coach Barnard gives Calpurnia a lesson in potential and talent. tt3084904,8zomTUuLank,Ellen comes on a little hard to Calpurnia. tt3084904,IoeYkolhKYM,Calpurnia learns how to use syringes in preparation for her egg donation. tt3084904,NVSG5djzkdo,Calpurnia has a nightmare and gets a bizarre request from her client. tt2439946,C_Emdu3KwHg,Tessa and Lynn find a group of threatening rednecks who might even be a greater danger to them than the weather. tt2439946,48DTcfNRIoM,"A sinkhole rips through Morgantown, Virginia and the few left in the town try to survive." tt5657846,jFjy1RkmXUg,"Dusty and Brad lead snowed-in moviegoers in a rendition of 'Do They Know It's Christmas?""" tt5657846,JPjeOAVkSe4,The Dads start fighting after Dusty throws a snowball at Roger. tt5657846,h7ZUKB_zYQ0,"Dusty reveals his love for his family, even his stepdaughter's dad." tt5657846,7I6z51iYFg8,Kurt takes his granddaughter Megan hunting. tt5657846,3D0gGgMTylk,Don has a breakdown on stage while performing improv. tt5657846,LF0dTioXk3A,Dusty and Kurt teach Dylan how to bowl. tt5657846,EzjFE2CnTBQ,Dusty and Brad prepare to pick up their dads from the airport. tt5657846,C05qUz1ukWo,Two generations of dads take on the case of a fiddled thermostat. tt5657846,vnh7gxa0z4Q,Dusty and Brad try chopping down a tree as 'co-dads'. tt5657846,eVzxDwu506A,A distracted Brad accidentally unleashes the snow blower on the Christmas decorations. tt7131870,rd1w9BCiy1M,Leng Feng leads his friends past an attacking rebel army. tt7131870,PBeP9JUk5cM,"While missiles rain down on the mercenaries, Feng Leng and Big Daddy fight to the death." tt7131870,Mvrl3jeiJlg,Rebel forces attack an African village where Leng Feng is buying groceries. tt7131870,N25MiYpmMVw,"Leng Feng, He Jianguo, and Zhuo Yifan give Big Daddy the bird." tt5700672,y41KY83U1VQ,Seok-woo fights an undead Yon-suk. tt2439946,0t7ZsuI05Uw,"After crashing into a mountain range, Lynn and Maddie must place an explosive charge underneath the ship to break it free." tt2439946,w_iXru-XxwU,"The deluge breaks through the military bunker, forcing the crew and civilians to take cover in the 'Ark'." tt2439946,P_zAPM1cQdM,"While having a fun spring break in the middle of the Sahara desert, four college kids get caught in a flash flood." tt2439946,49BRJlMRZ18,"While trying to get back to the 'Ark', Tessa and Lynn try to land in Denver, Colorado." tt7131870,hwI9jLgUnbI,Big Daddy unleashes deadly drones on celebrating refugees. tt7131870,j76FbuAQUsc,Leng Feng hijacks a tank and engages in an epic tank battle. tt7131870,5AMX5PaikhU,"Leng Feng, Rachel, and Pasha lead the mercenaries on a chase through an African village." tt7131870,GlrYbmdZk24,Leng Feng singlehandedly takes out an entire pirate crew. tt7131870,56_IiZ3k0OY,"Using a homemade crossbow, Leng Feng takes out a lot of armed guards." tt7131870,0OmDcj8U3Xs,Leng Feng saves Dr. Chen from mercenaries terrorizing his hospital. tt3540136,15lEWX16LV0,Leng Feng fights Tom Cat to the death. tt3540136,K2bk8aUwIis,Leng Feng disobeys his commander's orders during a mission and takes out a dangerous drug lord with impeccable shooting. tt3540136,C5o1JYo-4pU,Leng Feng and other Wolf Warriors fight off a deadly wolf pack while participating in war drills. tt3922754,9AEbJDyNTSo,Dawson and Sister Claudette are rescued by American forces just as the bombing begins to hit behind Germany lines. tt3922754,PY8WEjeHGTE,"American and Nazi soldiers shoot it out in a French village, but it is a French woman that deals the final blow." tt3922754,XnvMGSn4KHQ,"An American soldier is captured, tortured, and interrogated by a Nazi officer." tt3922754,79PCtxPbMlc,Private Luinstra and Sgt. Dawson steal a German support vehicle and try to outrun a Nazi tank. tt3922754,lGQFgsEBe4M,Sgt. Dawson and Nazi Major Zeller go at it one final time with one of them not making it out alive. tt3922754,l8L0q_dnoKA,"With the enemy hot on their heels, Corporal Michael Griffin draws the Nazis away by making the ultimate sacrifice." tt3922754,jM2drh7uhsw,Sgt. Nathaniel Rose attempts to save Mother Mary after she steps on a land mine. tt3922754,uyMQqUwKVBY,Private Luinstra rescues Lance Dawson after he is taken prisoner by Nazi soldiers. tt3922754,mos7tNLWRz0,Young Pierre is shot in the back and killed by a wounded Nazi soldier. tt3922754,7YpyRO7N1YI,Sgt. Lance Dawson is captured and tortured by Major Heston Zeller. tt3540136,ep-ggf8CcX8,Leng Feng comes up with a brilliant way to save his commander from enemy fire. tt3540136,4YW2E3yaMjc,Leng Feng and his fellow Wolf Warriors fight back against the mercenaries. tt3540136,gcqk1NcWIGQ,"With the help of Lt. Long Xiaoyun, Leng Feng dodges enemy fire." tt3540136,xzPgefI2u9k,Leng Feng steps on a land mine and realizes what's important to him. tt3540136,b8Dp_WyoPSU,"International drug kingpin Ming Deng gets arrested, but his gang of mercenaries kills all the police officers and sets him free." tt3540136,v9VqcsF7s5E,Leng Feng and the Wolf Warriors are attacked by Tom Cat and his assassins. tt3540136,ddhfpfnwgRI,Leng Feng proves his worth during the war games by sniping the PLA General. tt6015706,3S35Cy1GMMU,Kabbah fights when Lauder accosts him for not drinking. tt6015706,SkefiJco10U,Kabbah and Lauder square off. tt6015706,9qtw3cXqWfw,Lauder comes to Yan Jian's rescue. tt6015706,cOy7yCnHMAE,Yan Jian climbs the radio tower while Kabbah wages war. tt6015706,PP4-LYtVpRg,Yan Jian and Susanna steal a child from a ritual circumcision. tt6015706,EfX6L0wDT4Y,Kabbah's forces fight over control of the radio tower. tt6015706,Al7y7aRrASE,Yan Jian makes a desperate ploy to get past a military checkpoint. tt6015706,ruaqMoxwvjg,Kabbah and his men violently interrupt negotiations between two telecommunications companies. tt6015706,B4D0g5tfp7A,An intruder attacks Sheik Asaid. tt1068242,85cnCW_4LIc,"After her ex-boyfriend physically assaults her, Ariel confronts her dad over his stubbornness." tt1068242,MGIjofJUXyo,Ren dances with Ariel. tt1068242,8Lv0BuXTgoY,Ren participates in a deadly bus demolition derby. tt1068242,-Nzbwerwks8,Ren helps fight off Chuck and his goons. tt1068242,5lgCxWubUnU,Ren line dances with Ariel at the hoedown. tt1068242,p70o9g5gcdY,Willard learns how to dance. tt1068242,jlCEAJXSwJc,Ren dances his frustrations out in defiance of the repressive town. tt1068242,ElidXD2F2eo,"Free from dance oppression, the kids of Bomont show off their crazy dance moves." tt1068242,1sz2oWajICY,Things heat up between Ariel and Chuck. tt1068242,QH2Z3rBA9C4,A high school barn dance takes a tragic turn after a group of kids drink and drive. tt2611408,L9wacy030Kw,Contemporaries talk about what makes Trixie and Evil Hate Monkey such a special act. tt2186712,wYumvThtFrc,James believes he is meeting Anna for a night of passion but finds the prospect more difficult than expected. tt2186712,tdDDMrzq9lE,James has a fight Anna and finds himself psychologically outdone. tt2186712,MASZNTnZals,James and Monica are caught trying to have sex on the bus. tt2186712,14I9e5jH9bw,James and Monica are frustrated as they search for a place to have sex. tt2186712,0tg_TU8EfCs,James sends a passionate goodbye to his lover Lily. tt2186712,yZgf5wSULog,James visits a girl he only knows as Rapunzel for anonymous sex. tt2186712,fzG_88hJcqM,James meets Marie outside a bar she shouldn't be in. tt2186712,PlPRa95iR3k,Lorraine sings about then deals with her hellish affair with James. tt2186712,lTm0Gql9HME,Sarah breaks her own rules. tt2186712,nRkXwphpaQ0,James dances with Marie after a long night of flirting and frustration. tt2611408,v5YaaXLJw2A,The Evil Hate Monkey shows the crowd at the Burlesque Hall of Fame his banana. tt2611408,oMpbWgx0Cdk,"Trixie and Monkey hone their craft at a circus school, and discuss what they're learning about themselves there." tt2611408,iWHYx50w6ts,"Trixie and Monkey perform in Brighton, England for their first international gig." tt2611408,VuGGlc9x5PE,"After years of working together and being together, Trixie and Monkey bite the big banana and get married." tt2611408,ZhbolQxBK2s,Trixie and Monkey travel to Las Vegas to compete at the Burlesque Hall of Fame weekend. tt2611408,wX06J0jh7BU,"Trixie and Monkey perform their most ambitious act yet, and reflect on the sacrifice and risk that it took to put it on." tt2611408,MfM4qCHUPH8,Trixie and Evil Hate Monkey perform on a cross-country tour. tt2611408,yOrYFxd4En4,Trixie and Monkey perform a new act in an off-Broadway theater. tt2611408,lJmafWivAtQ,Trixie performs at the 2010 Burlesque Hall of Fame Weekend in Las Vegas. tt3261182,0gKYY9NCTvY,Domenico pulls a prank on a vegan date. tt3261182,LJK2Ox4UlM0,Domenico has a string of rough dates while taste testing several dating apps. tt3261182,wQS5Cu_bGs0,a pickup artist. tt3261182,w0dNGg0OiAc,Domenico tries to impress a fitness enthusiast. tt3261182,LGL0Gz_QgDk,Domenico meets a tantric specialist who teaches him a little about sexual energy. tt3261182,xg5ZJAo_1v8,Domenico Nesci can't figure out why nobody wants to date him. tt3261182,GDpzofT_Pdk,Domenico meets with a priest and a rabbi at a bar but they're not joking. tt3261182,ekbIXnK0_ek,Domenico has sex with a dominatrix. tt3261182,3EdXrMS1gJc,Domenico makes every aspect of his life a prank. tt3261182,I51Z3trNfZo,Domenico discovers Tindr and loses his mind. tt5354458,Gqa-biM6qKM,"The morning after the alien attack, the crew tracks down a injured, and disoriented Björn." tt5354458,kARcfM_M6VE,Björn Eriksson espouses that aliens built the Hoover Dam. tt5354458,7szH-UZx2JU,"While goofing around on the lake, the power goes out, and security guards come suspiciously fast." tt5354458,uxj3cKArYDI,Björn Eriksson and Brittany Big Time perform their raunchy rap. tt5354458,wLGpzRMJsVE,The crew investigates a mysterious flash of that burns Brock. tt5354458,HeRIwSpHZCk,Björn Eriksson interviews alien researcher Elsa Moulton. tt5354458,ADqmUtPjP0Q,The crew returns to their houseboat to find their place ransacked and their stuff arranged into pyramids. tt5354458,z8XPccwMkKE,"A grey alien breaks into the boat of the cast and crew of ""Alien Engineers"", and it wants blood!" tt2296777,Ng06lmNU4K8,Sherlock fights Moriarty atop London Bridge. tt2296777,7fOizvx1cUM,A gargoyle attacks Gnomeo and Watson. tt2296777,6fs-P3Vq9BI,Sherlock saves helpless gnomes from Moriarty. tt2296777,zpvTZ0G0UiM,Irene well and truly tells off Sherlock with song. tt2296777,HIOSYqainIs,Watson saves the captive gnomes. tt2296777,1xccuQBsJfU,Gnomeo & Juliet stumble upon Sherlock and Watson's sewer boat. tt2296777,vuvmITfWFuo,The garden gnomes run afoul a mob of black cat ornaments. tt2296777,tNYSeyXRkiE,Gnomeo tries to steal a rare flower for Juliet. tt2296777,1aZDrjQGvIU,Sherlock and Juliet don't let a sleeping dog lie. tt2296777,9cNdat9JJuE,The gnomes put on a stage play to distract their captor. tt4701182,8TcZDzWEVDM,Bumblebee's memories return with a vengeance. tt4701182,nTAYbwY6oeU,Bumblebee defends against Blitzwing. tt4701182,RuFd7DELPYc,"Charlie, Memo, and Bumblebee get chased by the police." tt4701182,ZKuscOD0LOM,"Charlie, Memo, and Bumblebee prank a bully." tt4701182,Xv9ME0TfQjk,Bumblebee faces off against Shatter. tt4701182,jsbjmWo3c38,Bumblebee and Charlie stumble into an ambush by the military and the Decepticons. tt4701182,bu5m4sr6e6I,Optimus Prime helps Bumblebee escape Cybertron. tt4701182,hD7KaqFoSq0,Bumblebee causes a chain reaction against Dropkick. tt4701182,AVzJme0mGY8,Bumblebee makes a mess of the house. tt4701182,Ok3_qMNWAo0,Charlie learns that there's more to her VW Bug than meets the eye. tt6215044,yGrvM8gN0w0,"Josh, Dr. Zicree, and Pam restart the earth's magnetic field by using particle accelerators." tt6215044,9tDGIpP7Kfc,"Josh yells at the President about climate change, and resigns as a government employee." tt6215044,KBmsdzLFpvc,Marjorie is killed by electrocution after a power line goes down at the military base. tt6215044,gTkzaR0pGgE,Josh receives a call that he will remember forever. tt6215044,_mnvg-i4Qks,Josh finally finds CERN and meets up with Dr. Zicree. tt6215044,CpA9NJEL2EM,Josh and Pam save some survivors of the flood by bringing them on their boat. tt6215044,t1V-lbe6gII,Josh and Pam narrowly escape a flash flood by jumping onto Josh's boat. tt6215044,w01pKxgINao,Pam risks her life to save the whole world. tt1610528,QABInjYQVes,"Special Agent Gina Vitale takes on one of the skyjackers, and then fights the leader of the terrorist gang." tt1610528,OBQcsOUZ2u0,"Joseph Franklin loses control of the plane during the skyjacking, and must perform a dramatic maneuver to save the plane and its passengers." tt1610528,Dkd1ak3tQ5s,"One of the kidnappers manages to get away, but he doesn't get far before he is killed." tt1610528,UIkY2KKWmdk,"In an attempt to take over controls of the plane from the pilots, the military hacks the plane, but things go awry, and Joseph Franklin must save the plane from crashing into a city." tt1610528,GALfESO3afQ,"The Franklin family gets kidnapped by some armed assailants, and on a run from the police." tt1610528,ljOOPtZAk2c,"The FBI finds out where the neo-Nazis are holding the Franklin family, and move in on the cabin." tt1610528,UwhUd2cPOYE,The leader of the skyjacking terrorist organization sets a bomb that blows an engine off the Starquest. tt1610528,p74VOGdtMTw,the Starquest. tt1610528,7_UHtWGKsuc,"Pilot Joseph Franklin attempts to land the hijacked and severely damaged plane while avoiding all of the landmarks of Washington, D.C." tt1610528,lLScgb8ZP_8,"In an attempt to stop the skyjacked plane, President Harriet Franklin enlists the help of an experimental laser shot out of a satellite, but this laser misses the target and backfires spectacularly." tt5460416,DTWggpNq1a0,A comparison of young and old couples and the subtlety of love. tt1411238,pJFZLCoqB9w,"When the girls cycle's sync up, Adam makes a mixtape to ""soothe your womb.""" tt1411238,4ak8huhsVKc,Adam has no idea what happened after waking up from an all night bender. tt1411238,qhGsK4yvxmg,Adam and Emma get intimate. tt1411238,G3qOB7PGBXE,Emma isn't thrilled with Adam's choice of company. tt1411238,EBLS3sCB4rk,Adam and Emma see how dating suits them. tt1411238,RuOjVbqLiZU,Adam and Emma have an awkward dinner with his dad and his ex. tt1411238,Q3JqdmUTsLI,It's all fun and games until someone falls in love. tt1411238,i4NIiCSEiTg,Emma finally admits to Adam her feelings for him. tt1411238,uL1Q5YZ0Ejc,"Adam and Emma make quick usr of their ""friends with benefits"" pact." tt1411238,DIlHR2SWW9E,Adam discovers his first romantic experience after Emma to be more awkward than expected. tt5460416,k67i1cISzsI,Zoe seduces Malcolm. tt5460416,HzvL4MonF-I,Malcolm and Lily's relationship begins to crumble. tt5460416,AcvWJ8bgA8w,Malcolm exchanges manual labor for information on his grandfather's whereabouts. tt5460416,foQnR1eZO-Y,Malcolm ruminates on the ways his life will change after his girlfriend Lily gets some good news. tt5460416,3tuV7dBxBPU,Malcolm & Lily adjust to life in a retirement community. tt5460416,GXZSat3AqwE,Lily's prepares for an interview. tt5460416,hDA_Bn7UhlA,Bart searches for love and authenticity. tt5460416,UPAs32xduAM,Malcolm fantasizes about getting back with his girlfriend while waiting to confront his grandfather. tt5460416,rhfBzC5A79o,Lily has a breakdown while interviewing for a job. tt3715296,GsP6mQAcxj8,Zade attempts to seduce Kevin after being paid to sleep with him. tt3715296,g2cIMCa6N64,Carl has a boner that lasts too long. tt3715296,_ZjTuvkIbcg,Kevin discovers Angie's new beau is someone he trusted. tt3715296,WcPbZiPqUlE,Zade tries to get Kevin to loosen up. tt3715296,SLC6o6KPuro,Kevin and Zade find themselves in trouble after Hank decides to have a little fun. tt3715296,wQR6vm3kDSI,Things get awkward when Kevin meets with Zade's parents. tt3715296,yJ0RpuixpT4,Zade is aggressively pursued while she and Kevin wait to bail out their friend. tt3715296,qkHBpSypnHI,Kevin blunders. tt3715296,urr-Zn5nq2w,Kevin propositions Zade at an inopportune moment. tt5039994,_GjXqTtZjDg,"Mr. Butler meets with Paul, another teacher whose life Lucas tried to ruin." tt5039994,qNXYR0fe1Lk,Lucas flips the script on the popular kid who interrupted class. tt5039994,2eltEasOEig,Lucas reacts badly when he's benched for a chess match. tt5039994,41v_zrra00A,Becca tries seducing Mr. Butler after getting bad advice from Lucas. tt5039994,nloEs-bbjXM,Lucas uses Becca in his plan to ensnare Mr. Butler into a scandal. tt5039994,PdYD2Sdt8s4,Lucas is finally found out as a sociopath after Mr. Butler finds evidence the boy tried setting him up. tt5039994,CYs5HBcQBNc,"Mr. Butler is accused of menacing behavior after a student, Becca, is found dead." tt5039994,w_ZDbyiJlF8,Lucas tortures Mr. Butler by kidnapping and threatening to kill his son. tt5039994,4bT5OwL1UnY,Lucas is infuriated to find that Mr. Butler has failed him. tt0113957,gvTCSxLPy0Q,Angela discovers that Devlin is not who he seems. tt2693580,BiVnGF_72u8,Billy performs a monologue in front of his peers. tt2693580,cNjcecvssqE,Miss Stevens consoles Margot after watching her choke on stage. tt2693580,aFQabbA_FMs,Miss Stevens tells Billy about the loss of her mother. tt2693580,FpFqjfqGyRE,Miss Stevens meets Walter at an extended school function and tries to flirt. tt2693580,a7t6tQVX7T8,Billy is convinced he can 'solve' Miss Stevens's unhappiness. tt2693580,pxQ07GfWFjs,"After Billy wins a top prize at the retreat, Sam scores something else." tt2693580,lKXUBB09y4k,Miss Stevens and Billy get close while walking back to the hotel. tt2693580,Jftv5w9B3So,Billy becomes convinced he can connect with Miss Stevens. tt2693580,AoHVBb8Bc_4,Miss Stevens tells the students of the time she was part of an accidental protest during a school play. tt0113957,6IXjYpPtjWk,"Devlin catches Angela off guard at the Santa Monica Pier, but she escapes." tt0113957,6ya9GVSPiXs,Angela tricks Devlin into destroying the Gatekeeper software after she sends evidence of criminal acts to the FBI. tt0113957,FETaRGJH_JE,"After Jack accidentally kills Ruth, Angela is forced to fend her life." tt0113957,6PEQcK6G_4M,"After running from the police, Angela tries to connect with someone at Cathedral and ends up talking to her imposter." tt0113957,Oo67jMp9UbI,Angela discovers that Ben is working for the bad guys. tt0113957,hoWEYBSlctc,Dale enlists Angela's help decoding a confusing computer glitch. tt0113957,HZQlFhnFVjg,Angela is arrested after trying to run away from the police on the highway. tt0113957,yLm_tJ-ZrNc,Devlin stages a robbery in order to steal Angela's disk. tt0113957,D01cKQMu5Ew,Angela describes her perfect man while chatting with her internet friends in a chat room. tt1869315,T15XvRqmhqU,Brooke gets close to Denny. tt1869315,8gUP_uUpmSw,Denny doesn't like Brooke's ex-boyfriend. tt1869315,RKCrqtbqvio,Katherine makes good use of her gardening tools. tt1869315,4XHwJQfIyTo,Brooke tries to stop Denny's murderous rampage. tt1869315,AdmsyTzM7YY,Denny puts a date to bed. tt1869315,DU8nLYGOMIc,Denny comes on strong in every way. tt1869315,b8bioz2Eb84,Brooke's parents learn the truth about Denny. tt1869315,-c5QAS76N_A,Denny seduces Brooke. tt1869315,Om-y-goxpYc,Denny hits a wall in his relationship with Brooke. tt1869315,Y1RH4S7GPLA,Denny is determined to get the contents of the safe. tt1972591,RyQUewFDEx4,A dramatic realization of the murder of an innocent black teenager by a convenience store owner. tt1972591,_w2nm32Dbg4,Jesse saves Nicole from a couple creeps outside a liquor store. tt1972591,haSWFp-ToRM,Millie's kids find themselves at separate ends of the L.A. Riots. tt1972591,gwdClG0txYM,Obie and Millie share a moment and a kiss after breaking out of handcuffs. tt1972591,NpQNeUSJLjI,The city descends into chaos after the Rodney King verdict is announced. tt1972591,7mO_TD_Co1U,Obie takes care of his neighbor's children after they run away from their mother Millie. tt1972591,042B8vTl0ig,Jesse stabs William after William tries killing a bystander during the riots. tt1972591,IGDViR244hs,Mille goes looking for her missing children with the help of her neighbor Obie. tt1972591,_LNnkttaKXo,Nicole tries to get thrown in jail so she doesn't spend a night on the streets. tt1972591,YQxXtdN7j4U,Millie has a sexy dream about her neighbor Obie. tt5716380,UoDOFJsC608,Ellen demands results from Kate. tt5716380,_i6Du5s9Il0,Kate and Beaver get close. tt5716380,2uVdxC_gCro,Wyatt has a bit of trouble at the pharmacy. tt5716380,wCFnoBDeauY,Kate ingratiates herself with her classmates. tt5716380,92eioWPPuOI,Kate tries to play it cool when Wyatt catches her looking for evidence. tt5716380,HcjPZqjGuFA,Kat endangers herself by coming to warn Beaver of an impending drug raid. tt5716380,RXkLf3ucqIY,"Kate gets more than she asked for when she meets local kingpin, Wyatt." tt5716380,3WIjC39hJF8,"Kate gets heartbreaking news from her son's father, Jimmy." tt5716380,5jsb1xN8byg,Wyatt challenges Kat to prove she is a junkie and not a cop. tt0081573,G4DcKX_XRA8,Superman fights General Zod's gang in Metropolis. tt1907668,9ccE4YIG76Y,Whip attempts to pull the flight out of a nosedive. tt0081573,hJ9hMyqKcg8,General Zod and his cohorts arrive on the moon. tt0081573,_xUiCNlDeJk,General Zod and the Kryptonians invade the White House to force the President's surrender. tt0081573,UZ7PTLCQZwU,The citizens of Metropolis get blown away by General Zod's gang. tt0081573,_rCRxCR06UY,Superman fights General Zod's gang in his Fortress of Solitude. tt0081573,4xLa-Rn-gdo,Lois gets suspicious when Superman saves a child at Niagara Falls. tt0081573,NRYvrDdntjA,"Clark Kent exacts revenge on Rocky, a jerk who beat him up." tt0081573,vAfD-vF8yss,"Superman saves Lois and the Eiffel Tower, but unwittingly unleashes something much worse." tt0081573,rMH3omIA15k,Lois finally puts the pieces together and realizes that Clark Kent is Superman. tt0081573,Y3gJGuQQPnw,Superman tricks General Zod and the Kryptonian criminals into losing their powers. tt1907668,edaHyeIxzcI,Whip makes a desperate decision in order to save his passengers and crew. tt1907668,D0bIbyAa_XE,Whip prepares for an improvised landing of his plane. tt1907668,u_G4el-62Ik,Harling gets Whip back on his feet. tt1907668,Jv7PzcVfULc,Whip meets Nicole and a cancer patient in the hospital stairwell. tt1907668,uzhsjyHUBt8,Hugh breaks how badly things could go for Whip. tt1907668,bEpL6Mt_jrk,Whip can no longer hide from the truth. tt1907668,WHcarLLrz9Y,Whip contemplates selling out an innocent woman in order to get his case dismissed. tt1907668,vpEAO0gIAxE,Whip comes to terms with himself. tt1907668,fIfQbocblZc,Whip and Nicole find healing of a different kind. tt0185431,rOu9FD63Z68,Nicky gets help from Beefy after he has a hard time adjusting to Earth. tt0185431,0QLGAhQDgsE,Nicky challenges the Referee to a basketball game. tt0185431,IQVt4ZtUzgc,Nicky uses his gift from God - Ozzy Osbourne. tt0185431,Uovtut2ckMg,Adrian takes over his father's throne and brings Hell to Central Park. tt0185431,9eI4mt_lKTw,"Nicky is tasked to bring his brothers back from Earth, but not without a few setbacks." tt0185431,arzwnRoAQP0,"Nicky tries to convince his brother, Adrian, to go back home to Hell." tt0185431,ZwQuo7dY_Dw,Nicky goes looking for his brothers in a sea of New Yorkers. tt0185431,Q2x3eUH0ytI,Adrian and Nicky battle for the fate of Earth. tt0185431,N7itFdNE2Qw,The Devil announces who will take the throne of Hell before his four o'clock appointment with Hitler. tt0185431,W8fjSVywGGk,A Peeper gets caught watching Mrs. Dunleavy get undressed. tt0096101,U8fgto8IZLM,Johnny Five defends the warehouse from a couple of burglars. tt0096101,Z6cDbMLcxQI,Johnny Five catches Oscar and his friends but is quickly overpowered. tt0096101,NTdHPAY7rOE,Johnny Five fights off Oscar and his thugs. tt0096101,2ADaXnuG-YM,Johnny Five comes across a bad influence while searching for more 'input'. tt1258972,gWGhsJWFOrU,The Blacksmith and Madame Blossom try to fight off the Lion clan. tt1258972,h5f5GgqVWes,Jack Knife makes his presence felt at the local brothel run by Madam Blossom. tt1258972,a8mImo0aNDo,Jack Knife helps the Blacksmith build a pair of iron forearms. tt1258972,zOvMmwnFVa0,Jack Knife fights Poison Dagger. tt1258972,_4oM1Sa1Pb8,Zen Yi is attacked by the rival Rodent clan. tt1258972,za8FVqsMmZ0,The Gemini twins are attacked by the Lion clan over a shipment of gold. tt1258972,UWS3FOpdFMU,The Blacksmith faces off against Brass Body. tt1258972,bfgJbZHRes8,Madame Blossom directs the prostitutes to assassinate the Lion clan. tt1258972,Ko8vqBmZRfE,The clans collide in a bloody battle at the Pink Blossom Brothel. tt1258972,lS9V0oDrPfs,Brass Body confronts Zen Yi and his men. tt0892791,UVDRpF027l0,Shrek and his friends lead a final attack on Rumplestiltskin and his witches. tt0096101,qSd4Q3GY7dc,Johnny Five searches for his humanity in the streets of New York. tt0096101,LABMISLl7Y8,Fred helps Johnny Five repair himself. tt0096101,Jf7jVM7NoVE,Johnny Five helps Ben woo Sandy while the two are on a date. tt0096101,pR8Lt5DyU88,Johnny Five is finally recognized as being 'alive.' tt0096101,R1zRKVLsmrM,Johnny Five makes all the toys they need in one night. tt0096101,l0zmCUVB0Yw,Ben and Fred are surprised by the arrival of Johnny Five. tt0892791,XTjTXskLQO0,Shrek tries a unique approach to flirting with Fiona. tt0892791,6I5B0jyLBUg,Shrek gets overwhelmed while trying to throw a birthday party for the triplets. tt3607812,KJtfL83FLj8,One of Sheik's three daughters is murdered. tt3607812,NRuVbAAb_FU,The Sheik's peers discuss the dominating presence that the wrestler brought to the mat. tt3607812,aOCAfIWw2H0,The Rock reminisces about The Sheik. tt3607812,Bc_4HO3jI1g,The Sheik helped establish Hulk Hogan's career. tt3607812,25UN_cgKaxc,The Sheik takes Twitter by storm. tt3607812,vtdnjV0Q2fE,The Iron Sheik finds himself struggling to find work. tt3607812,5RFz0uu2ZuA,"The Sheik & Hacksaw get busted for drunk driving, changing the face of the WWE forever." tt3607812,3ZL5il1o-AQ,The Sheik falls into a drug-induced stupor after falling from grace in his career and losing his daughter. tt3607812,Yo8mYWU0oTk,The Sheik's fame reaches explosive heights during the Iran Hostage Crisis. tt3607812,C1MsPeGKyMs,The Iron Sheik learns how to use the internet and the whole world loses it. tt0448694,Pvva0sdUEkc,"Puss in Boots, Kitty Softpaws, and Humpty Dumpty steal the Golden Goose." tt0892791,TJa_A5cVd-w,Shrek finds Puss in Boots in a very compromising position. tt0892791,zkRkL94VQxY,"Shrek stumbles across a village of ogres led by a fierce, warrior version of Fiona." tt0892791,YNZmZ4ARr38,Shrek begins to feel the monotony of family life with Donkey and Fiona. tt0892791,1IaDQdo8x1I,King and Queen come to Rumplestiltskin in a desperate attempt to save their daughter. tt0892791,hIJ0gMDZT_4,Shrek and Fiona are ambushed and forced to boogie by the Pied Piper. tt0892791,0osA8jKKotc,"Shrek manages to rescue the ogres, save the kingdom, and kiss Fiona." tt0892791,uuNy1Ibdk_Y,"Shrek signs a contract with Rumplestiltskin allowing him to go back to being a big, scary ogre." tt0448694,MaqzxDPwOB4,Puss in Boots comes face to face with the original owner of the Magic Beans. tt0448694,FcSSNKWcReg,Puss in Boots learns just how deep Humpty Dumpty's betrayal went. tt0448694,u4gz2yNW_Go,Mother Goose ravages a town in search of her stolen chick. tt0448694,UpgP8aA8ABE,The gang dances in celebration of stealing the Golden Goose. tt0448694,gxuEGIzZrGc,"Puss in Boots attempts to rob Jack and Jill, but someone else is already there." tt0448694,-19d_T472co,Puss in Boots challenges the Masked Kitty to a dance fight. tt0448694,zHwUR2EqUO0,"Puss in Boots, Kitty Softpaws, and Humpty Dumpty steal magic beans from Jack and Jill." tt0448694,x2S78gnCkRg,Puss in Boots and Kitty Softpaws share a victory dance after saving the day. tt0448694,g1r-B5ZGZWY,"Puss in Boots, Kitty Softpaws, and Humpty Dumpty plant the magic beans." tt8804688,avdSnNmqs7c,Kirk Cameron talks to Dr. Kathy Koch about solutions to the 'Cultural Lies' kids on social media start to believe. tt1192628,uw7rRlJvEl4,Rango runs for his life from the hawk. tt1192628,BIg5_09Tcf8,Rango walks out to duel with Jake the Rattlesnake. tt1192628,7cZ3I9Bn9Rg,Rango faces off against Jake the Snake. tt1192628,SW5_v_8r9VA,"When Rango can't blend in, a Hawk sets sights on him." tt1192628,de_Dik7HT6E,"Without hope, Rango gets advice from the Spirit of the West." tt1192628,qN_sGdVG0Yw,Rango and Beans find themselves in over their head. tt1192628,nS4Zfx9BSX0,Rango bumbles his way through a town ritual. tt1192628,uAroGB_YCmw,Rango and his posse make a mad dash to escape the mole people. tt1192628,XgGyrrzTBz4,Rango takes things too far with Bad Bill. tt1192628,TuBXSOUS-U4,"While Rango searches for purpose, purpose finds him." tt0120630,VkD1dhWMYts,"As Mr. Tweedy rebuilds the pie machine, the chickens make a flying machine." tt0120630,8xgUm0plA8w,"After fixing the pie-making machine, Mr. Tweedy is sent to retrieve the chickens." tt0120630,wQj8uFwQP2A,Rocky throws a party for all the chickens after a hard day of trying to fly. tt0120630,mlHF0Vv7yEc,Ginger and Rocky fight a bloodthirsty Mrs. Tweedy. tt0120630,qTj4aSPwTBk,Ginger tries to escape. tt0120630,mjuNE5wyMzY,"With Rocky's help, Ginger, Fowler, and the chickens manage to get their plane in the air." tt0120630,zQf0jUhqJYw,Rocky comes to the rescue to save Ginger from the pie machine. tt0120630,ZVlfttyv5js,The chickens line up for morning roll call. tt0120630,i_zdyGw0tEo,Rocky leads the chickens in a series of flying practices. tt0120630,0hNbRd78jOE,Rocky wakes up in the hen house to find a slew of eager chickens. tt8804688,j9FpQjinKMY,Kirk Cameron imagines what it may be like should the Devil come to his home. tt8804688,mfgrntgrWTw,Kirk Cameron continues his talk with Dr. Kathy Koch about 'Cultural Lies' kids on social media start to believe. tt8804688,3Bz0cqx4ZyI,Kirk Cameron talks to Dr. Kathy Koch about 'Cultural Lies' kids on social media start to believe. tt8804688,e70y31Gbhpg,Parents discuss the dangers of social media from their own experience. tt8804688,1rd6owpXoC4,"Kirk Cameron talks to a father whose son was being harassed online by an older, predatory male." tt8804688,S5CmrYAWxh4,Two teenagers discuss their growing obsession and dependency with social media. tt8804688,ROf2H0OX39s,Kirk Cameron talks to Pastor Ken Graves about salvation and the internet. tt8804688,c_5924m1jNM,Kirk Cameron talks to a father who set up his own investigation into a sexual predator who targeted his son. tt8804688,I8qfzVFTQuo,Kirk Cameron interviews a minister who preaches a more understanding parenting style. tt1277953,ghUFMbHmw8s,"The gang reaches Monaco, where they enact a crazy heist." tt1277953,OuQTes47k14,"While the gang prepares the circus, King Julian weds his bride." tt1277953,UZ2IjJCsxxo,The gang realizes that buying a circus before seeing it wasn't their best investment. tt1277953,22xJjwTRC10,Captain Dubois chases the zoo gang across the rooftops of Monaco. tt1277953,Gq43zgK0T94,Captain Dubois rallies her wounded men with a French classic. tt1277953,A7mWnsrRu6w,The Afro Circus comes to rescue the Zoo Crew from Captain Dubois. tt1277953,PXSMKQqZjaE,"When Stefano overshoots himself from a cannon, Marty flies to the rescue." tt1277953,jFWnVdsSgxs,"The Afro Circus gives an epic show to the tune of Katy Perry's ""Fireworks.""" tt1277953,JFAAK6FfOSA,King Julien meets the cycling bear Sonya. tt1277953,wEvSZB_Dhqc,Captain Chantal Dubois begins her pursuit of Alex and his friends. tt0413267,mZHlantNtwg,"Prince Charming attack Fiona's Baby Shower, but finds bumbling fairy tale creatures instead." tt0413267,sWjVe9dMRHU,Shrek and Fiona suffer through the rigors of royalty. tt0413267,MriW09XMJeo,Shrek is brought up on stage to meet his death by Prince Charming. tt0413267,6TOx7qsyaxU,Prince Charming takes one last stab at taking over the realm. tt0413267,0L1sL54G45Q,The princesses break into the castle. tt0413267,O12Ve5AFu7o,"Prince Charming's henchmen attack Shrek, Donkey, Puss In Boots, and Artie." tt0413267,0igqAlu8Oqc,"After Puss and Donkey get thrown in jail, Fiona and the princesses break out." tt0413267,IEaqLI9HAmA,Arthur learns that he is the heir to the throne of Far Far Away. tt0413267,Vs0CShp6HFA,"Shrek, Donkey, and Puss In Boots go back to High School to find Arthur." tt0413267,SVTxvLaac6A,Shrek has a nightmare about being a father. tt0481499,GaUGoueAS4Y,"The Croods fight off prehistoric birds, ferocious big cats, and other strange creatures to steal an egg to eat for breakfast." tt0138749,hlWL5Az4pow,Miguel and Tulio search for the fabled city of El Dorado. tt0138749,Y0IXtktHTgk,Tzekel-kan and his stone jaguar confront Miguel and Tulio. tt0138749,FSXijk37oNs,Miguel and Tulio sing about the difficulties of being gods. tt0138749,e-NMI6o5ynk,"El Dorado, the city of gold, was a paradise created by the gods." tt0138749,jG7W6jwCSd0,Miguel ingratiates himself with the inhabitants of El Dorado. tt0138749,h3AqOR2Ru1s,Miguel and Tulio work their normal con. tt0138749,bRehxlYZ_CE,"Tzekl-kan summons a giant, stone jaguar to attack Miguel and Tulio." tt0138749,Hm8hcRPGyME,Miguel and Tulio play a Mesoamerican ball game despite having no real skill. tt0138749,xaIlgOMjspo,Tzel-Kan interrupts Chel and Tulio with some spooky advice. tt0138749,NipqouLNqAY,"Miguel and Tulio enter El Dorado, and after seemingly performing a miracle, the two are perceived as gods." tt0481499,z7tcVyV7wjw,"After sneaking out of the cave, Eep meets Guy and is enthralled by his invention of fire. Until her dad Grug comes and takes her back home." tt0481499,irnju0G-lBg,Grug comes up with an idea to create a ribcage and Piranhakeet-powered airship that can fly him and all his family's furry friends across the chasm. tt0481499,xxl1Hrw2eQM,"Grug and Guy get stuck in tar, and Guy comes up with an idea to get them out." tt0481499,hR4oc1us1aU,Grug demonstrates some of his terrible inventions to the family. tt0481499,BM29Ze3d_cs,"Guy creates shoes for the Croods, and shows them how useful they can be along with many other inventions." tt0481499,KToHdILd_p0,"Guy and Eep get close while setting a trap to catch dinner, and nearly catch Grug instead." tt0481499,29Pg9Oo6P2w,"Grug throws Guy and the Crood family to safety on the other side of the chasm, and also invents the hug." tt0481499,yISManYcWqU,Guy uses fire to save Eep and the Croods from the bloodthirsty Piranhakeets. tt0481499,w6ivjvOqBy0,"Eep introduces Guy and his fire to the family, and they are both transfixed and terrified." tt7399158,_QKwR14HKf8,"Christine prepares for her impregnation by Paolo, only to make a disappointment discovery." tt7399158,WdS4ZMa6tXM,"Christine, Margo, and Mikki extract sperm from Paolo's corpse." tt7399158,YpFmmzisOy0,"Christine has a candlelit dinner with potential sperm donor, Paolo." tt7399158,h41ylpWhV1I,Christine's first attempt to get pregnant goes awry. tt7399158,wxhUTK7xbz8,Bob breaks up with Christine. tt7399158,-fRY1b6WAx4,Tony makes a pass at Christine. tt7399158,IT4vcwIvSCI,A cautionary tale of smuggling condoms. tt7399158,zyaOnPSzcPE,Christine decides she's desperate enough to try a dating service. tt1694020,gjmt7I1OJfw,Joyce tries to help Andy with his sales pitch. tt1694020,jMxYv05A7B0,Joyce reveals how she named her son. tt1694020,DLzp0YkZnRc,Joyce has a meltdown after an outburst from her son. tt1694020,8v7xHt-CJZg,Andy has an incredibly awkward meeting with hotel concierge. tt1694020,P4aGofKtJsA,Andy somehow winds up in a strip club with his mom. tt1694020,39471A71y3w,Andy and Joyce part ways after a long journey together. tt1694020,6dA4C1NKChE,Andy and Joyce learn the truth about her lost love. tt1694020,TgujxmrRUlw,Joyce gets support from a handsome spectator. tt1694020,wR_e9lxh7Ds,Andy pitches his product to the Home Shopping Network. tt1694020,fZB65wj9nz8,Andy doesn't like the men taking advantage of Joyce. tt0097778,FHiB0ZTO8fU,James visits Mollie after she gets out of the hospital to return her purse. tt0097778,2NA_wZ2MWBc,Mollie and James panic after Mikey walks out and into a car being towed. tt0097778,vId4AoKDg2s,James catches Mollie dancing in the kitchen. tt0097778,BPuGsFSTy0Y,James picks up a pregnant Mollie who is going into labor. tt0097778,QDARBy0jCgs,James learns about Mollie's secret when Albert comes to see his son. tt0097778,vozjOGBUz2I,Mollie and James find themselves alone after their date. tt0097778,CeX8drgioLs,Mollie runs into her lover in a surprising place. tt0097778,03uEq5dKcFs,Mollie catches James using her address in order to get his grandfather into a senior home. tt0097778,eUogxXRPC7E,James babysits for Mollie while she goes out on a date. tt0097778,gQgdweybPwk,Mollie begs James to help her get drugs for the labor pain. tt0479952,cPVM14Bnf5I,Alex saves himself with the power of dance. tt0479952,iNg7uRYtqLA,Baby Alex is kidnapped by a hunter and accidentally stumbles into America. tt1911658,5aY5jTL60pA,"Skipper, Kowalski, and Rico steal The North Wind's plane to chase after Dr. Brine, but secret agent force has other ideas." tt0479952,DpA2bMJlDpI,Alex and the gang find their true home in the African Sahara. tt0479952,9F3iBMYvQOs,"The Penguins discover a blinking light in the airplane, which leads to troubles." tt0479952,j2JFTz9KQhk,The Penguins play out their cunning plan to steal a safari jeep. tt0479952,jQp4IlURoNg,The Penguins play out their cunning plan to steal a safari jeep. tt0479952,p2zDdb_MqmI,"The Penguins rescue Alex and Zuba, but run into Nana." tt0479952,Omdvu0f-Wuw,Melman prepares to die until receiving advice from King Julian. tt0479952,ouQG7Pcq1S8,Madagascar: Escape 2 Africa - The Nana Cometh: Alex runs afoul his nemesis: Nana tt0479952,UvRaab90nQ0,King Julian thinks the animals need to sacrifice each other to the water gods. tt7454138,9mwgsjG2Vtw,Elias participates in an epic rap. tt0298148,rmpFmJfEZXs,Shrek meets Fiona's parents over an awkward dinner. tt0298148,_t4L-ZdoEr8,"Pinocchio and the others help break Shrek, Donkey, and Puss in Boots out of prison." tt0298148,sOBIrjgDZr4,Shrek and Fiona are given a seal of approval from an unexpected place. tt0298148,C9PYzGyIfF8,Donkey and Puss in Boots sing in celebration. tt0298148,ZOfisAF09AA,Shrek and Fiona go on their honeymoon. tt0298148,vaJ2yQC_ktY,Puss in Boots attacks Shrek and Donkey. tt0298148,A_HjMIjzyMU,"Shrek, Donkey, Puss in Boots, and the Gingerbread Men race to save Fiona." tt0298148,LzJ1fo-oUpk,"Shrek and Donkey wake up after drinking the Happily Ever After potion, and find that things have changed a little bit." tt0298148,UgiK8333Np0,Shrek and his friends fight the Fairy Godmother. tt0298148,FFnyDGETjzA,"Shrek, Donkey, and Puss in Boots break into the Fairy Godmother's Potions Factory." tt7454138,ES20xt2nU10,Young tugboat Elias saves Vinny from a dangerous storm. tt7454138,UFFaqQYlg0E,Elias finds Vinny and two henchmen doing something sinister in a nearby cave. tt7454138,Tm1fX-cqfxk,Elias and his heroic rescue is celebrated and honored in the city of Big Harbor. tt7454138,L1AHpY6Gcbs,"Elias goes out with Stella, but their date gets interrupted by Elias' new job." tt7454138,eAx_rXKiO48,Elias and the gang distract Vinny as they try to free his captives. tt7454138,cIesHaxakmU,Elias jumps out of the collapsing cave. tt7454138,157mo2VaYqc,Elias rescues his friends from a collapsing cave. tt1911658,nHcRQhadzhY,"Octopus henchmen chase Skipper, Kowalski, Rico and Private through the streets and canals of Venice." tt1911658,5VmWe3LyUDM,"Skipper, Kowalski, Rico and Private jump out of a plane, and have to figure out how to land safely." tt1911658,81MNbVi5a64,The penguins' plan to reverse Dr. Brine's evil scheme hits a snag when their remote control runs out of batteries. tt1911658,pAwdeWy9yYM,"Dr. Octavius Brine returns the stolen penguins, but not until after he turned them into monsters!" tt1911658,gIZ64_sZbCY,"After saving all the penguins, Private is turned into a monster himself, but is now a meaningful and valued member of the team." tt1911658,zXR_4li9ZnA,"Private manages to snap Skipper, Kowalski, and Rico back to normal, and they embark on a plan to stop Dr. Brine." tt1911658,fqKdFZ1jKMY,"The penguins capture Dr. Octavius Brine while he tries to steal the 'Penguin Mermaids.""" tt1911658,A1GJyyJzpCo,The Penguins rush to save Private from the clutches of Dave. tt1911658,sF-j-GhV6xw,The penguins head back to North Wind HQ but have a hard time working with a new team. tt0312528,g2ElfIY2zfQ,"The Cat, Sally, and Conrad return home to find the greatest mess ever made." tt7575480,Pu8AnCsWdiM,The Explorers learn about different types of penguins and about humpback whales. tt7575480,LAajBhbC5Y8,"The Space Explorers learn about global warming, and what they can do to fix it." tt7575480,iGawlpfe6a0,Nick and Sammy learn about the planet Earth. tt7575480,EDywdraYOBA,The Space Explorer recruits answer trivia questions about penguins. tt7575480,d0hM2Ekkk-8,"Cup-K offers the Explorers a closer look at a penguin colony, and tells them about their unique adaptations." tt7575480,2iF-cU-qnbc,The team learns about orcas. tt0312528,ph7amveyJHY,"The Cat tries to blend in at a birthday party, but ends up being the main event." tt0312528,3iJ8esboOjA,The Cat in the Hat takes the children through a surprisingly risque club. tt0312528,0gouIFYgm2k,The Cat helps Sally and Conrad clean the house before their mother gets home. tt0312528,LOIF-564wKc,The Cat enlists the help of Thing One and Thing Two to clean Mom's dress. tt0312528,1SEsxhvzzT0,"The Cat, Sally, and Conrad drive The Cat's Super Luxurious Omnidirectional Whatchamajigger." tt0312528,57VO_eSiDG4,The Cat demonstrates a cupcake making machine. tt0312528,8QbFslYlKIk,Conrad and Sally demand The Cat leave their house. tt0312528,yId_D0rOn8Y,Sally and Conrad meet The Cat. tt0312528,Pq2Z7Qf45gM,The Cat in the Hat sings about fun. tt1757944,G77jx5jd2-c,"Princess Evelyn gets away from the kidnapping henchmen in the house of mirrors, and her pony knocks out the evil carnie Theodore." tt1757944,ItkWLEWFjVI,"Princess Evelyn tries to show off her skateboarding skills to her new classmates, but things don't go as planned." tt1757944,0ov8ekqSAOU,"Princess Evelyn is announced to the world, with all her friends, family, and even her pony in attendance." tt1757944,wJROB9vIUFk,"Theodore orders his evil henchmen to kill Princess Evelyn's pony, but the pony manages to escape." tt1757944,IFETv7hMlqc,"Princess Evelyn meets a lonely pony in a barn, the scary carnival owner Theodore, and gets a job working in the stables." tt1757944,wnmtGj0vBo0,Evelyn tries to teach her pony how to jump. tt1757944,iH-ioakPz6s,"Evelyn finds Becky captured, and must trick Theodore into thinking each other is the real princess." tt1757944,pPnfIsbcwfw,Princess Evelyn and Becky escape from the clutches of Theodore and his henchman. tt1757944,jxEVFU6EN_k,"Evelyn and her pony ride after the evil Theodore Snyder, and capture him in a net." tt1107365,sRR3ukzqiGs,Boog comes up with a way to disguise the animals in order to get into the park. tt1107365,QQaLVYSCwrc,Fifi tries to change Mr. Weenie back into a pet. tt1107365,qULlmr4lxb0,Elliot attempts to save Giselle while Boog runs into trouble at the park. tt1107365,CBUtXwZNA8Y,Elliot and Boog come up with a plan to save Mr. Weenie. tt1107365,Xa0JBPt2cGU,Boog and Elliot create a plan to get into the park to save their friends. tt1107365,rjnLGy6uWKc,Boog tries to help Giselle and Elliot's relationship through the power of s'mores. tt1107365,Yn8Or4O6_9U,Fifi recounts his harrowing tale of the time he first encountered wild animals. tt1107365,E-mnMI7Klyw,Elliot brags about his brand new antlers. tt1107365,P7-rs7H1CAE,Elliot battles Fifi as the animals try to avoid being shot by the security guards. tt1107365,H4YWQ0uEY2U,Elliot tries to express his love to Giselle. tt5667482,gSepgtf10wk,Isabel and April try to hop across a volcano on the ocean floor in order to make it to the coral reef in time to meet her father. tt5667482,v0xXbyXI6YI,Isabel and her new friends reunite with the old group from her aquarium. tt5667482,5MINtb6BV6Q,Isabel accidentally comes across a deadly predator at the ocean floor. tt5667482,9lOj8ThRAWI,Isabel and her friends are attacked by a deadly lion fish. tt5667482,y10ao1Tib8A,Isabel drags her cave dwelling friends from out of the darkness to explore the rest of the ocean. tt5667482,GxDvAEsMvoc,Isabel tries to use a fish hook to get a better view of the ocean. tt5667482,LWtB2BdJ3kk,Isabel and April come across one of the ocean's deadliest predators... a dolphin. tt5667482,sVc3ln7vaig,Isabel meets April - a rockfish who protects her from the dangerous environment of the ocean floor. tt5667482,h6klN0zNh64,Harold and Carl team up to find Harold's daughter and run into a few natural predators along the way. tt5667482,W112SAzt_FI,Isabel and her dad are tossed overboard from their aquarium after a giant wave knocks it overboard. tt6499752,n3L8UVTe6Ak,Grey confronts Fisk. tt6499752,wsooQlbj934,"Grey and his wife, Asha are taken out of their crashed car by assassins." tt6499752,o_3BdeGhzrs,Det. Cortez chases Grey while STEM tries to stop her. tt6499752,gi9EwdK-6L4,Eron reveals STEM's plan to steal Grey's body as his host. tt6499752,yn2p3AV23-Q,Grey is chased by Fisk and his crony. tt6499752,AZxn9md_aZI,Gray breaks into the home of one of the men who murdered his wife. tt6499752,-DqmTaUK-Ow,"After taking over Grey, Stem boasts about his victory to an injured Det. Cortez." tt6499752,xDkXQ7uBr5M,STEM commandeers Grey's body when they're confronted by Det. Cortez. tt6499752,1GYZPg_aQdw,Grey lures Tolan into the bathroom. tt6499752,4A-hmyHNaxM,Grey tortures Tolan for information about his wife's killer. tt4943934,Mcv-560wn_s,A storm over Mars threatens to destroy a major human settlement. tt4943934,ZVLaVxPjPcQ,Neil helps save Foster's life after his suit ruptures. tt4943934,clN9kykVhOs,Miranda runs to the tunnels to find her daughter. tt4943934,N3_pKdxk5OM,Ellie and Ida try to help a young couple make it through the tunnels to safety. tt4943934,TWUQypjv2Gw,Neil sacrifices himself in order to save Foster who he hopes will save his family. tt4943934,11MponTu30M,Foster and Neil try to escape from the storm that is destroying human cities on Mars. tt4943934,QQsg9djZsRE,Foster and Neil find themselves at the center of the storm while attempting to destroy it. tt4943934,1UN6pgpke7o,Ellie and Ida rush to stop the sandstorm from destroying the city. tt4943934,RZM3dVWNLG0,Miranda and Andrews rush to help Miranda's family save Mars. tt2196430,C7vyta1sCfU,A bloodthirsty alien attacks and kills a group of soldiers. tt2196430,Td1oEs-H3QA,The military expedition is forced to fight back as the alien swarm begins to shoot at them. tt2196430,R0fmtWlMpHc,"A mysterious spaceship lands right in front of Dr. Susan Nieman, Julia Evans, and the rest of the military expedition." tt2196430,W2sUalav-ak,A group of archaeologists inspecting a newly found cave in a Belizean mountain range uncover some very curious fossils. tt2196430,0cQThjQfEEc,"After escaping the alien spaceship, the military troops run from a series of explosions emanating from the alien ship." tt2196430,SHwGQTJ73Mg,The military expedition goes inside to investigate a spaceship that landed right in front of them. tt2196430,XGsmIO5GUZI,Julia Evans and her escorts venture into a cave and get attacked by an alien. tt2196430,0dmwDGkQJR8,A military operation finds shocking footage from an abandoned camera. tt0884732,wq-H7qGfF68,Jimmy throws a bachelor party for Doug. tt0884732,Ep30EE2v0mU,Jimmy agrees to provide groomsmen for Doug's wedding. tt0884732,fvHgXzOY12Y,Jimmy and Doug try out their dance moves at a wedding. tt0884732,k2s7U_7gHtE,Bic gives a heart warming speech at Doug's wedding. tt0884732,ClOGZ8IiO90,"After the bachelor party goes awry, the crew rushes Doug to the hospital." tt0884732,OjkIBSE3yfY,Jerry holds auditions to find friends for Doug's wedding. tt0884732,Na9qhz28ZWQ,Jimmy introduces Doug to the men who will pretend to be his groomsmen. tt0884732,RWfQwm_BgZY,Bic tries to keep his cover when he meets Doug's family at brunch. tt0884732,WhUvsKY-l28,Doug and Jimmy escape from the wedding. tt0884732,Se2zCvUqqWw,Doug's father-in-law challenge the groomsmen to a game of football. tt0279493,K93YrK48ZG0,Mr. Feather and Undercover Brother fight for their lives at The Man's headquarters. tt0279493,IspZWYlmYZY,Undercover Brother reveals that he's gone too deep in the world of assimilation. tt0279493,ngLX1uDh-eg,White She Devil. tt0279493,FloKMOp4wN8,White She Devil and her henchmen take on Undercover Brother and Sistah Girl. tt0279493,l38Qliee6VE,Undercover Brother undergoes intense training in order to go undercover as an assimilated black man. tt0279493,DQjDI3NorAY,Undercover Brother is reluctantly let into the secret organization known as 'The B.R.O.T.H.E.R.H.O.O.D.' tt0279493,H1IhRMtTUno,"White She Devil and Lance join the B.R.O.T.H.E.R.H.O.O.D., much to Conspiracy Brother's dismay." tt0279493,lfUlATBIer8,Undercover Brother arrives at B.R.O.T.H.E.R.H.O.O.D. tt0279493,H_pmwvIvi9Q,Undercover Brother gets in over his head while trying to woo White She Devil. tt0279493,RMWfAkUhGCM,Undercover Brother and Sistah Girl are chased by White She Devil and her henchmen. tt0763831,Nuwu9VTP3Ak,Dr. Sinja encourages Jack to make peace with himself. tt0763831,f8dkNziRlHg,Jack uses his remaining words to make peace with the world and himself. tt0763831,XPsddyf2EcY,"Unable to speak, Jack uses toys and action figures to land a major deal." tt0763831,B_cE7WEW5gM,Caroline tries to get Jack to open up. tt0763831,6AJH6b91rF8,Aaron reveals too much when he thinks Jack is mad at him. tt0763831,PurV6BzV3fI,Jack infiltrates a new age monastery in order to secure a new client. tt0763831,qvvcVzNqXVg,"While his 'soul tree' is treated with chemicals, Jack has an interesting reaction to the pesticides." tt0763831,8rX7fkDLEx0,Jack pantomimes his order to a barista. tt0763831,B2KSjVAskxM,Jack tries to ignore a phantom sensation during an important introduction. tt0763831,4vJ6xB6ctaA,Dr. Sinja realizes what is happening to Jack. tt1321509,9dqOdoFtNcM,Aaron and Ryan refuse to be extorted and takes Frank hostage instead. tt1321509,OxEcQFG6U4g,Frank reveals that he and Aaron's father were former lovers. tt1321509,ByRUwa_QiaE,Aaron and Ryan hide Frank's body in their father's coffin. tt1321509,aEG9dwOsAAg,"While on hallucinogenic drugs, Oscar interrupts Aaron's eulogy and causes his father's corpse to fall out of the coffin." tt1321509,yXDgPREBssw,"When Frank breaks out of Edward's coffin, it causes utter chaos at the funeral." tt1321509,B-S7jkgEC8Y,"While trying to help Uncle Russell on the toilet, Norman gets covered in poop." tt1321509,CnrR2upI8Jo,Aaron discovers that the funeral home has put the wrong body in his father's coffin. tt1321509,6PAMZYS1Fqk,Norman and Jeff try to hide their hostage from Uncle Russell. tt1321509,DHzeRLN8UVc,Oscar learns that he has accidentally been given hallucinogenic drugs and begins to panic. tt1321509,rgmKJYrtmkw,Elaine tries to stop a drugged-out Oscar from jumping off the roof. tt0168501,aOX72bZr_LA,Lance gets offended when Quentin insinuates that Mia cheated in the past. tt0168501,auNkHDpPil4,Quentin teases Shelby and Jordan encourages Harper to stay with Robin. tt0168501,llTSaDl6Pcg,Lance tries to keep images of Mia and Harper out of his head during his wedding ceremony. tt0168501,CTRZgOL-vA0,Harper proposes to Robin at the wedding and then everyone dances. tt0168501,js11RqXLkZg,Harper gives a speech as Lance's best man. tt0168501,F0VmzZy-AF4,Harper tells Murch his story about what almost happened with he and Jordan in college. tt0168501,txybV-1ao_Y,Lance is enraged when he reads Harper's novel and discovers that Harper slept with his fiancé in college. tt0168501,cm1NBLlRxy0,Lance gets a lap dance and Murch gets attached to a stripper named Candy. tt0168501,xjAHbBY-UUM,Harper blames Jordan for his problems and she won't stand for it. tt0168501,VCJrgPb3y80,"Harper tries to talk sense into Lance, who's angry about Mia's infidelity." tt1640484,NQBMjZqgGEI,Pam expresses her anger at her son's fiancee for not meeting her before the wedding. tt1640484,geiub8WP_XE,Jason surprises Sabrina before she leaves for China. tt1640484,xhj4CAFsPt0,Jason introduces his family to his fiancee Sabrina and her family. tt1640484,24adocMDT_U,The rehearsal dinner is interrupted by a musical number performed by Sabrina's Aunt Geneva. tt1640484,KVvqRC018VA,Sabrina and Jason finally jump the broom. tt1640484,Ypa0nma0aSs,Jason tries to get a little passion in with Sabrina before the wedding. tt1640484,s7ougTo-pGg,The Watsons and Taylors come together and dance the Cupid Shuffle after the wedding. tt1640484,fBXXvn4s-74,The Watson and Taylor family clash at the rehearsal dinner. tt1640484,wgkxKdTVrHo,Blythe and Chef get the kitchen a little too hot. tt1640484,qnFWCagTOtw,"Sabrina finally gets some alone time with Pam, to moderate success." tt0081562,oyU6En9HN8E,Reality sets in for Harry and Skip as they enter the Arizona penal system. tt0081562,ar_o_qS68oA,Harry and Skip enjoy their first lunch in prison. tt0081562,-H6l6-_elF0,Harry and Skip and the other prisoners are joined in song by Grossberger. tt0081562,Jd3GwwxFDPY,Harry and Skip meet the man with whom they'll be sharing a bunk. tt0081562,-FU65KX7aJs,Harry and Skip try their hardest to stay tough while in lockup. tt0081562,XvnWjkHgWEw,Harry is targetted for an elective surgical procedure that puts him on edge. tt0081562,2vi_VeRSHbM,Harry and Skip are tailed by an unknown vehicle following their escape from prison. tt0081562,gDtB0Sr8sbY,Harry and Skip find themselves unfairly targeted for hard labor. tt0081562,hM3nn30NxCE,Harry is taught how to be a rodeo clown by Blade. tt0081562,V6xx32EGypQ,Harry and Skip both have odd days at work. tt0113845,jW2zOdceqr8,John and Charlie barrel toward an impenetrable barricade. tt0113845,V3aM1IFedho,John and Charlie are mugged in the middle of an argument. tt0113845,wTzfJT3zGz0,John and Charlie try to escape the out of control subway train. tt0113845,JzmD5wQpm5c,"John, Charlie, and the team track down a dangerous arsonist." tt0113845,o6Jkz5TQv84,John comes to stop Charlie before he can rob the money train. tt0113845,r86n2JRUyRc,John and Charlie chase a suspect through the subway. tt0113845,l94geYuwNJg,John races to help Charlie. tt0113845,kLjET9nE2dQ,John goes to Mr. Brown to settle his brother's debt. tt0113845,CaQWWTLOzhY,John and Charlie come to blows over the heist. tt0113845,4GRGY20zWkU,John rescues his brother Charlie from a mobster. tt0297181,p4ylvDhfiQw,Kelly and Alex are chased through the streets of Budapest. tt0297181,HNPRZ2M3h-M,Kelly is interrogated by an enemy agent. tt0297181,sJsHcwZsNnI,Alex is on a mission to rescue and secure information from a defecting American pilot. tt0297181,EL-Zzx9ZrOw,Kelly and Alex try to stop Gundar and his men from selling a high-tech jet on the black market. tt0297181,70tY44WxygM,Kelly guides Alex through a seduction. tt0297181,fM3FUot8TCY,Kelly meets a fan while on assignment in Budapest. tt0297181,OeknFyEHaMw,Kelly defends his heavyweight championship while Alex is tortured by Rachel. tt0297181,574oBJ7SR_8,Kelly and Alex hide out in the sewers after a long pursuit. tt0297181,n0QO2xOuqp0,Kelly and Alex are chased by Gundar's men. tt0297181,fpwM2-jDwQU,Kelly interrupts Alex in the middle of a covert mission. tt1636629,oJITCthevTE,"Adrian Sinbad and Loa manage to get off the island on a hot air balloon, but how far can it take them?" tt1636629,6DxeFNOzuWo,"Island native Loa comes across Adrian Sinbad and the wreck victims, and takes them with her." tt1636629,0PPstocAAAo,"Adrian Sinbad and Loa must escape their native captors who intend to keep them on the island, dead or alive." tt1636629,Dhn_1iKEsQE,"As the world descends into climatic chaos, Adrian Sinbad and Loa manage to save the day by cleaning up the wrecked oil tanker." tt7108976,i23d4uqAG80,Seo-pil frees Detective Kim Min from his imprisonment. tt7108976,sbM9An15WNQ,Detective Kim Min and Seo-pil investigate a morgue. tt7108976,O7s-DtIX_8g,Seo-pil isn't as great a combatant as he thinks. tt7108976,3dJLDhRGBpE,Detective Kim Min stands in the way of Wol-young's revenge. tt7108976,BmuWHveTicc,Detective Kim Min and Wol-young defend themselves against a vampire. tt7108976,te4DfoUHm1s,An amnesiac vampire wakes in feudal South Korea. tt7108976,pDzvia9Yuk0,"In a flashback, Jeong leads the queen and her infant son to safety." tt7108976,ANEr1fSCLFw,"Detective Kim Min returns from the dead, but he isn't alone." tt7108976,L9reo1mJVMg,Detective Kim Min and his assistant Seo-pil perform a magic show. tt7108976,nogLQrWY-bM,Detective Kim Min defends against Jeong's attack. tt1636629,SyKWZOEqhzw,"After their helicopter crash, Adrian Sinbad washes up on the shore of an island and has to fight off a giant crab." tt1636629,bPZwO18R-1Q,"Adrian Sinbad, Loa, and the rest of the shipwreck victims must escape a swarm of bloodthirsty dragons." tt1636629,IQa9PQO3jhE,"Adrian Sinbad must defeat the fearsome cyclops after it attacks Sinbad, Gemma Hargrove, and the rest of the crew." tt1636629,9jfaSZXLxGQ,"Adrian Sinbad and Loa must steal the magic stones from the depths of the island, but the balrog that lives below has other ideas." tt1636629,Cl5eAgx8K8Y,"While attempting to correct the oil spill, Adrian Sinbad and Loa are attacked by a giant squid." tt6231588,GJE9jRmD3RE,Sinbad and Jax fight Manta and his henchman. tt6231588,l753e8ClbPI,Sinbad and Jax escape the Furies on a flying carpet. tt6231588,BL-fRfeQTNc,"Jax and Manta show off the gun made from the Heart of Medusa, and shoot at Sinbad." tt6231588,MXa-QNQ1zfE,The Furies attack Sinbad's boat. tt6231588,Re6AZiB6JQM,Sinbad discovers the Heart of Medusa in a cave. tt6231588,fKTTAEY4cuo,Ace tells Sinbad and Jax the story of how the original Sinbad created the Furies. tt6231588,gBRwHB9FSas,Jax shoots two of the Furies with the Medusa 2.0. tt6231588,dYNP7UULtwM,"One of the Furies kills Jax, and Sinbad destroys the Heart of Medusa, setting the Furies free of their curse." tt6823368,gTKqZp_fABE,Mr. Glass reveals that he got it all wrong. tt6823368,mNCLMfXv7ek,The Beast turns against Mr. Glass and nearly drowns The Overseer. tt6823368,c5JH3hyjFcY,The Overseer fights The Beast. tt6823368,noakeL8pCX8,Mr. Glass schemes in secret with The Horde. tt6823368,vU1mJ4LF3u0,The Horde bleeds out in Casey's arms. tt6823368,i71zp2X4XDw,Dr. Staple pushes The Horde to their edge. tt6823368,E9uah5ldjvo,Dr. Staple taunts The Overseer as her soldiers drown him. tt6823368,sw52VLDCFhk,Mr. Glass & The Beast get revenge on Pierce. tt6823368,aKFriCo_HWE,Mr. Glass enacts his escape plan. tt6823368,XLi1XYfldbg,The Overseer fights The Horde to stop his evil plan. tt1091863,R4JJihSXMRU,Stan Lee discusses his beginnings in the comic book industry. tt1091863,wwHjdOzIloc,"Stan Lee lives the dream, appearing in major movies based on his comics." tt1091863,YIfrX-BJbgA,Stan Lee discusses his collaboration with legendary artist Steve Ditko. tt1091863,TNPMRbIE9k8,Lee describes his relationship with legendary illustrator and co-creator Jack Kirby. tt1091863,1zl35F7uPoo,Stan Lee talks about creating two of the most iconic heroes in comic history. tt1091863,QvMf6_foftw,Stan Lee talks about the moment a more personal writing style changed the direction of comics forever. tt1091863,4mYsa1t21Mg,Friends of Lee discuss how his personality bled into his creations. tt1091863,dbGs2OWRYqM,Stan Lee's dream of making successful Marvel movies becomes a reality. tt1091863,faUJYzpcDec,Marvel Comics becomes a marker for Civil Rights and humanism. tt1091863,ovmEekx3IcA,Stan Lee takes Marvel to the next step - the television screen. tt7745068,plkfDAtzmjE,Lee goes to buy some marijuana off his friend Jeremy. tt7745068,ENEIHMJjims,Lee gives an emotional audition. tt7745068,o2gmatNTH1Y,Lee runs into Charlotte at a taco truck. tt7745068,1Igt8Zl7xwM,Lee listens as Charlotte reads to him one of her favorite poems. tt7745068,ThBbbiT_cCU,Lee watches Charlotte do standup. tt7745068,viJsUgnT_HY,Lee and Charlotte have a thing for each other. tt7745068,iQxa0TuKY-c,Lee accepts a lifetime achievement award with an inspiring speech. tt7745068,GwLec89XpYs,Lee and Charlotte head to a gala honoring Lee's acting. tt7745068,RF_7uvTh-dI,Lee tries to make amends with his estranged daughter Lucy. tt7745068,BN-FwrjSrFA,Lee and Charlotte give into their desire. tt2436386,6AE1I5edCfQ,The group's activities have unforeseen consequences and ripple effects. tt2436386,gK6JyAanVNE,The group parties at Lollapalooza. tt2436386,n3tXVrGw3kY,Quinn uses a time machine to get an A on a class presentation. tt2436386,0aX79Yt3Bno,"The time machine works, despite a minor setback." tt2436386,mS1u_E53e10,Christina and the group use the Almanac to get revenge on bullies and play the lotto. tt2436386,p4Pq9aZVV9Y,The group's plan to rig the Lottery doesn't quite go as expected. tt2436386,4RrAmzAYCQY,The group time-travels back to Lollapalooza. tt2436386,os1x0te4Waw,David endangers Jessie after accidentally pulling her into a time warp with him. tt2436386,x5Gwzy2FY10,David manipulates time to finally make it happen with Jessie. tt2436386,1ZVcZnWu57k,David meets his father in the past as he prepares to remove himself from the timeline. tt0099582,iG5M3WSF1DY,Nelson leads his friends to Billy's grave and explains how he accidentally killed him. tt0099582,kPiMgLB7S7c,"When the electricity blows, the doctors scramble to bring Rachel back from flatline." tt0099582,yi2YuSALRzs,Rachel flatlines and David insists they bring her back early. tt0099582,yMyXgCLhAXk,Rachel flatlines and David insists they bring her back early. tt0099582,iXo8qxLvcSs,Nelson is attacked by Billy while David apologizes to Winnie. tt0099582,R_4_btP862g,Nelson is dead for too long and the group can't bring him back. tt0099582,lyM65FpQLlM,Nelson gets closure about Billy's death while his friends try to bring him back to life. tt0099582,r76peMNNiyw,David has a vivid hallucination of a child bullying him. tt0099582,9uXRIrNj_z4,Nelson flatlines alone. tt0099582,wpci2WuWy4E,Medical students kill Nelson and bring him back to life for 'the sake of science'. tt0033553,ujFOaYo5QME,Dr. Jekyll argues with the notable gentlemen of the town about his scientific work. tt0033553,WGRVxwlEoio,Dr. Jekyll attempts to hide his secret from the police. tt0033553,4kmeixKc9yk,Dr. Jekyll hallucinates after taking his serum for the first time. tt0033553,WmzictYYVj4,Mr. Hyde demands that Ivy bring him champagne. tt0033553,QS3UyqLs5KY,Dr. Jekyll tries to protect Beatrix from Mr. Hyde. tt0033553,uabEMv5Sr68,Ivy finds a way to repay Dr. Jekyll after he saves her on the street. tt0033553,bxEqg39v9Ec,Beatrix comes to check on Dr. Jekyll. tt0033553,t5vDcrQIig0,Mr. Hyde visits Ivy at her house. tt0033553,YqkDor9GqqE,Mr. Hyde confronts Ivy about her visit to see Dr. Jekyll. tt0033553,3K0KQCvu2Xo,Dr. Jekyll comes face to face with Mr. Hyde. tt0190865,BDvjjQvM498,The surviving members of the rescue team make a disturbing discovery that gives peace and resolve to Wick. tt0190865,3IZVz7ukKyU,Peter and his team make it to their destination but turbulence threatens to kill the entire crew. tt0190865,D1YHdHw-doQ,Elliot and Annie argue the ethics of rationing medicine and supplies. tt0190865,Q0gx_D--iDw,Peter and Annie run into grave trouble while climbing. tt0190865,UepHO767tO8,The rescue team and survivors fight for their lives against the dangers of the mountain as both parties get closer to finding the other. tt0190865,gH4dw-S1esk,"After ignoring warnings from Tom, Elliot gets his team trapped in a crevasse." tt0190865,TMe71Lvy1lA,Peter and his team finally reach Annie and attempt to extract her from the crevasse. tt0190865,oH-kAHKtbTE,Peter and Annie forgive one another for what happened on their last climb. tt0190865,Kfzxu_SIzGo,"After barely surviving a near fall, the survivors and rescue team are rocked by an avalanche." tt0190865,UvDzmAFiUj8,Peter and Monique reach the final point before they can make their rescue as the survivors begin to run out of time. tt7204400,W7_EwytEz4w,The Mason family awake from the mass destruction to find themselves trapped. tt7204400,nLlnq5zJKvo,The Mason family is caught by surprise by a high magnitude earthquake and must find a way to make their way to safety. tt7204400,P0yhCqbwnsU,Seismologists Noah and Rajesh discuss their heritage in the middle of a giant disaster. tt7204400,1Oxtu2-DlI4,Matt and his son are pulled over in an attempted carjacking. tt7204400,M8K1rD4PGkI,Johanna faces off against another survivor over an escape vehicle. tt7204400,EHOt9vYunt8,The Mason family finally reunite and make there way to safety after the disaster threatens to destroy half the planet. tt7204400,UadRg4D-PNI,Johanna and her stepdaughters try to make their way out of the stairwell with other survivors. tt7204400,qOeIJ8YVJeg,The Masons try to find a way to communicate with one another while a lightning storm brews around them. tt7204400,qybKU4uNtV0,Johanna and her stepdaughters race against the threat of a major tsunami hitting the city. tt0059245,HnhM0M5UzX0,Mary shows the Three Wise Men the newborn Jesus Christ. tt3417334,l18i2Kxo8o4,"The Air Force manages to get a plane close enough to transfer some passengers to safety, but can't escape the clutches of the volcano." tt3417334,AupnEJf5ZNw,"The passengers say their last goodbyes, which finally convinces Colonel Ryker to send in military personnel to save the people on the airplane." tt3417334,GRpcj2aG6MI,The mad Carlos Crieger breaks out of his handcuffs and kills Air Marshall Jim Kirkland. tt3417334,FVgkuDNTOa0,"A passenger plane on the way from Los Angeles to Hawaii flies into a series of volcanic eruptions, and the pilot and co-pilot both die." tt3417334,dzGkUGKULRI,"With one engine already down, Rick Pierce must find a way to take some weight off the plane." tt3417334,wmm6PIPCg9c,"Rick Pierce and Rita Loss accidentally lose some of the fuel, sparking a trail of fire that leads directly to the plane." tt3417334,jpeq9SWXrQo,Frank Matthews volunteers for the incredibly dangerous mission of climbing out on the wing of the plane. tt3417334,p1k68Ri9DKg,The Air Force comes to rescue the passengers from the doomed plane. tt3417334,i7zzhK5XoAI,"Rick Pierce volunteers to fly the plane into the volcano, which means killing himself but saving the rest." tt3417334,igmlE2TDEyw,"The military comes in to rescue the passengers from the plane, but first they have to clear a path by shooting at the ash and debris." tt0059245,3lQ1fd0hBe0,Jesus commits himself to God while he dies on the cross. tt0059245,wyQmO-LFF4M,John the Baptist is honored when Jesus asks him to baptize him when they meet for the first time. tt0059245,MaSm7idHMtI,Jesus institutes the Sacrament and comforts his disciples before leaving for Gethsemane. tt0059245,DIkKczv9Eo4,Jesus enlists the help of God and raises Lazarus from the dead. tt0059245,1LoGtPIr2-k,Jesus asks his disciples who they think he is and Peter gives the best answer. tt0059245,UWtFueVeqHc,The lame man walks after Jesus heals him. tt0059245,W-rC7PEsItw,Jesus speaks aloud to his Father and says he is ready to die if it is God's will. tt0059245,Da02cZG3NDI,Jesus preaches the sermon on the mount. tt0059245,4Tb7SrDUXWo,"When Jesus is resurrected from his tomb, he reminds his people that he is always with them and to love one another." tt0059245,epupZLvDDts,Jesus intervenes when Mary Magdalene is publicly judged and ridiculed for adultery. tt4288674,sgs4FFD0oH4,Giant killer ants invade a desert party. tt4288674,R8r9iHY2pCw,"Lukas learns that in secret military bases, it's never Miller Time." tt4288674,ZCrTaNYTk_M,Dr. Renard tells Lukas and Brian how to stop the ants. tt4288674,X55PmVk-KvM,"Brian watches a movie of his hero, the Eradicator." tt4288674,95jCkyuV0VQ,The only thing more urgent than giant ant attacks is making sure your crush likes you. tt4288674,FG31-KlqhCI,Brian and Lukas find the means to fight giant ants. tt4288674,OunFjTXpbMY,Lukas and the gang discover that giant ants love beer. tt4288674,VBpCoOfLlgU,"Sometimes, Duck and Cover doesn't quite cut it." tt4288674,kxGdpZ6GCcs,Brian inadvertently leads ants into a deathtrap. tt4288674,BL_RaZ6VCgo,Never gloat before you're sure giant alien insects are dead. tt8671462,B_JVGEptSOw,"Hookups are hard, especially in the end times." tt8671462,-cdk5mhKuWc,Lily watches as some version of herself is murdered by her husband. tt8671462,KjbNSIIOEo4,This dork's got serious moves. And delusions. tt8671462,5CO6DsmrIDw,Pamela experiences a supernatural vision after reading a mysterious book. tt8671462,ywlNZzvlaKE,John has some deadly dreams. tt8671462,plu5YA3t2l8,Nothing like getting blocked by an elder god. tt7475886,Ec2ek8MmHRA,A group of women held captive in cages rise up against their captors. tt7475886,qv_DJYvELTQ,A woman and her family meet a sinister stranger while stranded on the side of a country road. tt7475886,GP8HnRCjLGg,A teenager gets revenge on a mime for the murder of her friend. tt7475886,6V22uyjiMpw,A teenager falls victim to a killer mime. tt7475886,tEs0OuspG4w,"After escaping captivity, two women get revenge on one of their captives." tt7475886,NMbSKSzRvF8,Two friends are stalked by a face painted menace. tt7475886,4XK1zU7zhkI,A young woman visits her ex-boyfriend and gets her revenge. tt7475886,t09QqjBkg0c,Cult members make a ritual sacrifice out of a kidnapped woman. tt7475886,sjmh7BViBtg,A young girl investigates ominous sounds in the dark and finds more than she bargained for. tt7475886,2-1_64NeG_E,Olivia's sister learns the first rule of babysitting- always check on the children. tt0120794,HXmru6NrSAY,"God visits his final, most terrible plague upon Egypt." tt0120794,Zw7lsVV14Yo,Rameses makes his final push as Moses leads his people out of Egypt. tt0120794,GJleW4TCQM0,Rameses' refusal to free the Israelites leads Moses to unleash plagues upon Egypt. tt0120794,TzRrEgkfhG8,Moses parts the Red Sea to escape Rameses. tt0120794,NieC8KA0EvI,Miriam and Tzipporah sing after the Israelites are set free. tt0120794,psDtqypK3hI,Moses laments after discovering his life may not be what he has always known. tt0120794,1-WimijgGEU,Yocheved sends baby Moses in a basket to save him from Pharoah Seti's wrath. tt0120794,sDEWZnPJGRU,Moses discovers peace amongst the Midianites. tt0120794,cLomnZIvoFs,The court alchemists Huy and Hotep taunt Moses. tt0120794,r5zhPLNGAOE,Moses delivers the first plague when Rameses refuses to free the Israelites. tt0264734,aG8bSNpEGoE,Joseph implements a plan to reserve enough grain from the annual harvest to sustain the kingdom through a serious drought. tt0264734,SRy397r355A,Zuleika attempts to seduce Joseph while the two are alone. tt0264734,QWiJ8VQXJzY,Joseph interprets the dreams of the Pharaoh. tt0264734,-pq4FpNnvcg,Joseph tests his brothers' morality. tt0264734,7wgLb8Ykb24,Joseph realizes a group of Canaanites are in fact the family who sold him into slavery. tt0264734,VIA2wUCj36Q,The life of young Joseph as chronicled in song. tt0264734,7tXcQ8BBqXs,Joseph is sold into slavery by his brothers. tt0264734,vI_kMlvUWDw,Joseph's jealous brothers accost him. tt0264734,GuAHdW8FdLs,Joseph interprets the dreams of two prisoners jailed with him. tt0264734,E-Ts3DuFLDg,Joseph arrives in Egypt after being sold into slavery by his brothers. tt0095497,unWr90pLIvc,Jesus shares his body and blood with his disciples. tt0095497,JyTf7wR8vWI,"Jesus's guardian angel arrives, stops his suffering, and reveals that he his not the Messiah." tt0095497,iGRj7rfPdQc,Jesus begs God to take him back and let him be the Messiah. tt0095497,pXGsio9H1xs,Pontius Pilate reveals to Jesus that he must die because he wants to change the minds of the people. tt0095497,lZ_r2Q0FQ1A,"After being condemned by the Romans, Jesus is beaten and forced to march through town carrying his own crucifix." tt0095497,poTqVcSgFRE,"Jesus is shocked to find Paul preaching a sermon based on his death, which never happened." tt0095497,PW20LbwAmng,"While searching for God in the desert, Jesus is tempted by Satan with all the power in the world." tt0095497,LJvCFAHRAFI,Jesus is nailed to the cross and crucified. tt0095497,CB5qzQrDnZE,Jesus starts an uprising against the unrighteous. tt0095497,TpNPIxWdZgY,Jesus tears out his heart and invites the apostles to follow him in a war against the devil. tt0490215,DTqY1j7wgD4,Ferreira pleads with Father Rodrigues to renounce his mission. tt0490215,c_ByO08UsWg,Father Rodrigues is given a Buddhist funeral. tt0490215,VNI6movTCuQ,Father Ferreira watches as Catholic priests are tortured in feudal Japan. tt0490215,EOX8-c-_uVY,Father Rodrigues must choose between his faith and the lives of his congregants. tt0490215,ukXfvR7wi0U,Father Rodrigues watches as the faithful of Japan refuse to renounce Christ. tt0490215,GyM8LvY5RW8,Catholics in Japan are martyred for their faith. tt0490215,t6plGJhbkgM,Father Rodrigues finally comes face to face with the reformed Ferreira. tt0490215,ks7pfp1_V-o,Fathers Rodrigues and Ferreira search for Christian contraband. tt0490215,gDVYKkvkguQ,The Japanese kill Christians who have already renounced their faith in an effort to make priests recant. tt0490215,SEzrTYKabwI,Father Rodrigues hears the confession of a man who turned his back on God and his family. tt5582876,QUgviX8jMaY,"Adrian must fight to save the life os his love, Lucia." tt5582876,PEg46xyJNPw,"After capturing Judah Ben Hur, Cassius demands Ben Hur take part in a trial by sword." tt5582876,MDxkA-Msgdk,"Despite his brief escape, Ben Hur turns himself back in to the Romans and reveals who he really is." tt5582876,zquC4ky_d6M,Ben Hur and Adrian take off on a chariot to escape the murderous Romans. tt5582876,b4TJqx34ynE,Ben Hur must fight Atticus for his freedom and his life. tt5582876,Dq7TcTBsAJI,"Adrian tries to rescue a damsel from a gang of Roman soldiers, but Ben Hur is forced to step in." tt5582876,vY9yCPmqbc8,"Cyprian decides to let Ben Hur go free, and gives Ben Hur his word that no harm should befall him." tt1411704,oWjtcWh-gyI,E.B. returns to a Carlos -controlled Easter Island. tt1411704,X0uMMVqQgeY,"Carlos transforms into the Easter Bunny, and E.B. tries to stop him from reaching the egg sleigh." tt1411704,WK0fQueuPoI,"After saving Easter from Carlos, E.B. and Fred are named co-Easter Bunnies." tt1411704,XUyFzVAKCm4,Fred and E.B. accidentally become the main attractions at a school play. tt1411704,GSkbcI9F5ec,E.B. argues with his father about taking over the job of Easter Bunny and escapes to Hollywood to pursue his passion for drumming. tt1411704,uy4F1IeShVA,The Pink Berets attack E.B. and Fred. tt1411704,qYZw_tL0j9U,"E.B. helps Fred train to be the next Easter Bunny, but Carlos also has his sights set on the job." tt1411704,sneQ02FCals,E.B. auditions for David Hasselhoff's talent show. tt1411704,cbEbCrrgWiA,Fred tries to hide E.B. from his sister Sam. tt1411704,XnfiKz-Zk7Y,Fred tries to release E.B. into the wild. tt0101329,CvLrYbRzjAE,"Fievel, Tiger, and Wylie Burp save the mice from Cat R. Waul." tt0101329,cglsMVVevx8,Wylie Burp and Fievel train Tiger to act like a dog. tt0101329,TC41JxKq_xQ,Tiger tries his best to join Fievel's family on the train. tt0101329,q5eGg_CgBPk,Tanya performs to a saloon full of cats. tt0101329,S76Oq-NDyvw,The mice sing about the virtues of the West. tt0101329,JWrDT-JGDug,Fievel attempts to fight a cat to protect his family. tt0101329,FLPGiFhKS28,A cowboy mouse is a little less than he appears. tt0101329,DRtbf7iG8Nw,Cat R. Waul is enraptured with Tanya's song. tt0101329,Wq8gxNsz9ZQ,Fievel accidentally ends up in Tiger's mouth. tt0101329,c9YJ-KJZKyY,Fievel discovers that Cat R. Waul scammed all the mice. tt5112578,F7FEV8M0ZZQ,Zach calls Charlie to warn him that Josh has gone off the deep end. tt5112578,zsiYUAF5Xtc,Zach and Allison's long awaited kiss. tt5112578,Tuceg816_j4,Zach helps Josh bury Daryl's corpse and get rid of the evidence. tt5112578,TBLYqmHXPk8,Zach has a nightmare where Daryl's corpse appears to suffocate him. tt5112578,xlTl5F96ZVo,Allison explains her feelings to an anxious Zach. tt5112578,fxff52VbAa4,Josh accidentally has a fatal reaction to Daryl's bullying. tt5112578,aSQrrou9CbU,Zach rushes to rescue Allison from Josh. tt5112578,WeMJebErzLY,Zach has a nightmare involving dreams of Allison and Daryl's murder. tt5112578,gs6FcpgTCqE,Zach and Josh have a run-in with a couple of neighborhood bullies. tt0970179,X6zbmAt0YwI,"While the magic of storytelling ends in one medium, it begins in another." tt0970179,FuYjhxmpoOQ,Prof. Tabard tells the story of the first and only time he met Méliès. tt0970179,E-fSwxZNG-0,Hugo and Isabelle find an old lockbox containing concept art. tt0970179,IqsvjhHv5wo,Hugo finds himself in a film of his own as he dreams of the train station. tt0970179,UHaEsAcQQ6k,The story of Georges Méliès and how he became a leading pioneer in cinema. tt0970179,puyN3edOOUY,Hugo rushes up to the top of the clocktower in order to escape the Inspector. tt0970179,c-ej3IOxBno,Georges welcomes to audience to a colorized screening of Méliès' finest work. tt0970179,XqqckmSFUwo,Prof. Tabard shows Hugo and Isabelle the last surviving film of Méliès. tt0970179,vn-PJRh_nFQ,Hugo and Isabelle read a book about the first years of cinema. tt0970179,TSnlLU5k9lU,Hugo and Isabelle watch as the automaton performs its purpose. tt0085248,WCB6zM_9DQU,"Alec meets Tabari, who asserts herself as Black's new rider." tt0085248,XlOaSZy_S50,Abu Ben Ishak appeals to Alec to ride Black on his behalf in the The Great Race. tt0085248,X2YJECANG6A,"Alec and The Black have a slow start, but manage to catch up to the pack." tt0085248,rcIfzdLjjxU,Alec volunteers to be a guest of Raj and Meslar in order to find The Black. tt0085248,NBxg8a4TAng,"Tabari brings The Black to Alec, who releases him to be with the other horses." tt0085248,IXl4S2_5sX4,"Kurr tries to sabotage Alec and Raj while they are racing, but their horses manage to outrun his truck." tt0085248,1eP7huR6T3U,Alec agrees to help Tabari ride the Black. tt0085248,qDjmN1TyJAU,"Alec meets Raj, who tries to deter him from finding his horse." tt0085248,hSBoEivF-hk,"Alec calls for the Black, who manages to save the day." tt0085248,qrIt5BPvCv8,"Alec gets picked up by a truck where he meets Raj, who speaks English and helps him find out who took his horse." tt0085248,dJsuwhIpSDQ,Alec and The Black win The Great Race. tt0085248,1gj7X8C31Tg,Ishak steals The Black from Alec's family's farm. tt0093999,6JIY7mRvsRE,"The glass coffin falls off the wagon, awakening Snow White, and the Prince asks her to be his queen." tt0093999,Sf47YRUStx8,The Evil Queen disguises herself in order to give Snow White a poisoned comb. tt0093999,CRu7V9v8Nnk,The King and Queen sing and dream of a day when they have a child. tt0093999,b0p7_jQ8HiE,"Snow White is pleased to find shelter, but none of the beds seem to fit her just right." tt0093999,-mexzYsMSro,"With her dying breath, the Queen names her newborn baby and encourages the King to remarry." tt0093999,t9XjAhGr8us,"As she begins to outgrow her home with the seven dwarves, Snow White dreams of a castle and a prince." tt0093999,riSEerXD6nE,"The Evil Queen, in yet another disguise, convinces Snow White to take a bite of a poisoned apple." tt0093999,2-L4tBlUJos,"A prince discovers a beautiful girl asleep in the forest, along with the seven dwarves who put her there." tt0093999,Zauzaj2bpvM,"Snow White sings and dances with the King, until the Evil Queen tells her to go to bed." tt0093999,JJwp_lEoOuI,The Evil Queen reacts poorly to the magic mirror's claim that her step-daughter is the fairest of them all and plots to do away with her. tt0093999,gnbjy2tWfd4,The seven dwarfs sing a song to help Snow White remember their similar-sounding names. tt0093999,8xorDb45ajE,Snow White watches through the keyhole as the Evil Queen questions her magic mirror. tt7616798,2T51K4xsBjg,"Chuck, the dogcatcher, comes to take Bella away for good." tt7616798,hcWY1CYRCsw,Bella tries to cross a busy highway in order to get home. tt7616798,r3_IvtMPIi4,"Bella chases a squirrel only to meet Chuck, the dogcatcher." tt7616798,mZYTLYXT-CQ,Bella is taken in by a homeless man. tt7616798,87IqS4kQqgE,"Bella befriends Big Kitten, a baby mountain lion." tt7616798,YfKjUgN_RcY,Bella finds another dog and inadvertently causes disaster. tt7616798,VqZAfqVCEnk,Bella and Big Kitten fight in the snow. tt7616798,M47Aq3yj_NQ,Bella finally finds Lucas. tt7616798,5XQqslDEoeI,"Coyotes stalk, chase, and corner Bella." tt7616798,Te32eYR3jo4,Bella defends Big Kitten from coyotes. tt3606888,dfoGRpHc4qA,James takes Bob out busking in the streets of London. tt3606888,Q1CJv_8XbmU,James visits his estranged family for New Year's and finds himself far from welcomed. tt3606888,PBMH9WdsHDc,James discovers the hell of medicating cats. tt3606888,GpMfzrGJvZY,James and Bob find themselves desperate for work after being unjustly let go from their job. tt3606888,N0V-2VgCwxk,James and his father finally reconcile after nearly a decade of alienation. tt3606888,Ln55e0EyX6E,Betty finds out that James is an addict. tt3606888,GfpVMjrhYQg,Bob refuses to let James leave him alone while at work. tt3606888,ZCTCHQWhYCA,"James meets Belle, a neighbor and veterinarian, who introduces him to his own cat- Bob." tt3606888,GHKfMt_4V7U,James goes through full detox from methodone. tt3606888,Dyo5g-ozH2c,James searches for an intruder and finds a sweet little surprise. tt0103786,ES496lmmGcM,The Newtons confront Dr. Varnick about Beethoven's alleged attack. tt0103786,AyYlJ6YQp3I,The Newton family struggles to come up with a name for their new puppy. tt0103786,7bFIUJ_voCs,The stolen dogs promptly chase down their captors. tt0103786,RWYM4Npp9rI,Beethoven fights Herman Varnick and his cronies. tt0103786,YG-plVmM7O4,Veterinarian Herman Varnick gets Beethoven to attack him. tt0103786,zDQHwzF1n4U,"Much to George's chagrin, Beethoven keeps getting bigger and messier." tt0103786,JcAdeY9KlpE,Beethoven takes Brad and Brie on an unexpected ride. tt0103786,85A2rWA5O3o,A St. Bernard puppy sneaks into the Newton family home and immediately becomes beloved by the family. tt0103786,gCE5175IkoY,"While the babysitter is distracted, Emily falls into the pool." tt0103786,WsgkiKu7AO8,George gets an unwelcome surprise in bed. tt7008872,PWz21cujw28,Jared's parents receive a phone call about him. tt7008872,vlK8CMKzWUY,"Brandon tries to train the teens of Love In Action to be more ""manly.""" tt7008872,Y2ZU8ZjyzoA,Gary tells Jared how he deals with life in the gay conversion therapy camp. tt7008872,_X6dHrTceEE,Cameron is brutally tortured by his family for being gay. tt7008872,8VZctic_uTI,Jared confronts his father. tt7008872,PLOSA5L0dxE,Victor is suspicious of Jared's writing. tt7008872,Mkkd7taPqEY,Jared goes to an appointment with Dr. Muldoon for a blood test. tt7008872,MOLAFbjjOl0,"Victor and the ""therapists"" physically prevent Jared from leaving." tt7008872,SbP_EGRp9Kw,Jared tells his parents that he is gay. tt7008872,g511NYTRiOE,Victor Sykes berates Jared about his father. tt2018111,OVCIGGHelu0,Edwin talks to his brother Gus on the eve of his heinous crime. tt2018111,aUSko3Om3sI,Flake fights Edwin after he questions his ability to beat up the school bully. tt2018111,Q7qNk9dKVpE,"Edwin, and his parents meet with Edwin's teacher and principal to discuss his anti-social behavior." tt2018111,fr_ciJPUO1k,Edwin breaks down and his mother can't console him. tt2018111,neH8cVDLuac,Flake and Edwin get in a fight with a couple of kids from school. tt2018111,ymoeXOQLtGY,Tim tries to talk to Edwin about his social struggles. tt2018111,vppCnOOwS_4,"Flake shows Edwin his father's guns, and Flake seriously discusses committing a dark deed." tt2018111,szqlpf28SRM,Edwin gets his ball stolen by a kid and his angry father. tt2018111,2WF0XgWQles,Flake and Edwin work out a plan to shoot their school. tt1645170,cnM9pdjp5o4,Aladeen settles into life at the vegan co-op. tt1645170,7C-aB09i30E,Aladeen rules his country with an iron fist. tt1645170,vV30irsal-w,Aladeen is disappointed in the latest design of his country's first nuclear missile. tt1645170,BT_QpciXdcI,Aladeen accidentally winds up in a restaurant consisting only of people he'd put to death. tt1645170,GC8KstVPxPM,Aladeen tries delivering a baby in a grocery store and finds love inside an unexpected place. tt1645170,sWqTiz8caoM,Aladeen tries to squeeze extra cuddle time with Megan Fox. tt1645170,0GEynXlmNYA,Aladeen watches helplessly as his imposter threatens to dismantle his precious dictatorship. tt1645170,iN0ZnG7yo6o,Zoey instructs Aladeen in self-love. tt1645170,hqslb1FVoQQ,Aladeen's plot to zipline into a hotel doesn't go as expected. tt1645170,yWeMWD-Yagg,Aladeen and Nadal get into trouble on a helicopter. tt3553442,RYP_NSi9g3Y,Kim organizes a rescue mission for Iain. tt3553442,-dWENMR2aag,Kim visits a Chinese brothel with her friends. tt3553442,WPggG_9I20E,Iain makes his move on Kim. tt3553442,M4fuweiQQCA,Tanya runs into insurgents while en route to Kabul. tt3553442,801rBxBY-5w,"Kim enters the foray during a firefight, much to the dismay of her escorts." tt3553442,8kzZwPsHkfo,Tanya gets real with Kim about dating in Kabul. tt3553442,rFbe4I4SXGg,Kim tries to figure out how she feels about Iain in the morning after. tt3553442,y6uK9wxhl_w,Kim visits a Marine whose injuries may have come about from her report. tt3553442,sT7Xef0oYLU,Kim confronts Tanya about her journalistic integrity. tt3553442,SiY9kPYOZuM,Iain and Kim release tension after a rough night. tt4225696,IXep9SfBhrg,Mary Beth and Curtis find love in a stinky place. tt4225696,cslI2draO_E,Sally and Jerry get close while the Wereskunk gets closer. tt4225696,-ZRSgs6PHaY,Curtis accidentally becomes a coitus interruptus for his parents' kinky foreplay. tt4225696,HNV5ksTBzLk,Curtis can't contain himself around Dr. Nancy. tt4225696,gWHvF157sFI,Nina warns Curtis about excitement then proceeds to excite him. tt4225696,rglfoXHFty8,It's the battle of the century! tt4225696,ULu38sbUDdA,The Wereskunk viciously mauls some women in their underwear. tt4225696,qwblOHgiG5E,Mary Beth finds herself using a pom pom handle. tt4225696,_-9wCERdcog,Mary Beth shares an intimate moment with Curtis until the curse fouls things. tt4225696,JIMykDzqRbY,Curtis sings about his ideal woman. tt4217392,7F1OGZeeva4,"Jack, Jones, and the others find themselves being chased by Randall's men at an Indian market." tt4217392,NiQGOyewakw,Jack gives chase after Randall steals the Eye of Shiva but finds a surprise in the back of his car. tt4217392,Hh823sEeCL8,Jack tells the story of Wang Xuance and the history of Chinese/Indian relations. tt4217392,T6GiDpoGg0k,Jack and Ashmita try to protect the Eye of Shiva from Randall. tt4217392,M1J7yqXNItw,Jack and Ashmita discovers a secret cave but fall victim to a trap. tt4217392,V-uaIme1eqw,Jack and his students get a lesson in yoga from Ashmita. tt4217392,W2UAnJuDL0A,Xiaoguang rescues Jones and Kyra from a hyena den. tt4217392,Vk2MgC2loOo,Ashmita reveals the treasure Randall sought was actually about peace. tt4217392,TF2BDWsAg2U,Jack and his team get cornered by Randall while on an archaeological dig in an ice cavern. tt4217392,9xp2WW4VPnI,"Jack, Ashmita, and the others celebrate their victory over Randall wth a dance number." tt3228302,jL_AtO4yMio,Linda confronts Elliot after getting information about Elliot having a woman over from her neighbor. tt3228302,Co6hnyHm9FU,Elliot gets some sage advise from an actual Shaolin monk. tt3228302,jatrkHMHR5s,Elliot takes advantage of a well-endowed cast member. tt3228302,zg0bUxwdano,"Elliot's friend and main cast member, Blake, explains how life led him to find Elliot." tt3228302,VBOg6u6zNUI,Elliot visits China on a class trip and disturbs his classmates over his appropriation of Chinese culture. tt3228302,tCDK-8hzqYI,Linda reveals that Elliot lied about everything he told the filmmakers about his life. tt3228302,mxIe3BjQYq4,Blood Fight's composer shows his process for making the movie soundtrack. tt3228302,ByIEbq6tv6g,Students on the trip to China with Elliot explain his creepy tendencies with Chinese women. tt3228302,Nggy-DIaf-0,The film reveals that Elliot has secretly been filming x-rated films behind his fianceé's back. tt3228302,YLhHH7GXdkw,Elliot discusses his past few films and sincere approach to making action films. tt2839312,YRDc9SZWuE4,Ricky fights in his first round bout. tt2839312,rCRl3aaJEdI,"After Carlos beats up Chuy, Morales orders Ruiz to shoot them both, but Ruiz kills the ruthless gangster instead." tt2839312,Zc61Xb1A3R8,"At the gangster Morales' urging, Chuy shoots Ricky, so Carlos takes his anger out on him." tt2839312,cqJitdI6d24,"Chuy takes part in his first tournament fight, and absolutely destroys his opponent." tt2839312,cH8ebYzr5f4,"In the first round of the underground fighting tournament, Carlos knocks out his opponent." tt2839312,6_BnBOUwAPo,"Carlos fights in a bout at the underground fighting tournament, and gets criticized for refusing to intentionally injure his opponent." tt2839312,x_3EEWK-YQc,"Ricky is forced to take on Chuy, and Chuy gratuitously and unfairly breaks Ricky's arm." tt4537896,bDW3OVitFE8,The FBI questions Rich and Rick about some local gangsters. tt4537896,5gOfKFlEJvo,"Rick gets shot by a rival drug dealer, and Rich blames the FBI for the shooting." tt4537896,-JhNO_E3aEE,Rick and Rich learn that Rick has a child. tt4537896,-FQOaUEE69I,The FBI and police come to Rick with an offer to go undercover to investigate the world of crime in Detroit. tt4537896,xqeAW5qAHNQ,Rick is found guilty of dealing drugs and is sentenced to life in prison. tt4537896,ZD9DyYVR3BI,"Rick and his sister Dawn get arrested, but bailed out by the FBI." tt4537896,Q9Vl1VGj0LE,Rick and Rick argue about whether they should start dealing drugs. tt4537896,L3gtPb6y2xg,"Despite being an undercover informant, Rick gets arrested for dealing drugs." tt4537896,a-CS6CjnEw8,Rich visits Rick in prison. tt4537896,kgwjR-pQ29o,Rich and Rick search for Dawn. tt2165735,xc_90HgCenY,A shootout ensues when Timmy runs into the mute brothers. tt2165735,RS01myY24NA,Captain Zhang goes undercover and breaks up a drug smuggling ring. tt2165735,YUF1PIe1RVY,Captain Zhang leads a raid on Haha's suppliers before arresting Haha and his crew. tt2165735,nsDjpgWu8F0,"With Captain Zhang, the mute brothers, and the cops dying on the ground, Timmy returns to finish the job and escape the police." tt2165735,s37owQJdelU,Timmy tells his buyers that he's working with the cops and ignites a shootout between the two sides of the law. tt2165735,wuRzu_xHPa4,"The drug dealers and police escalate their bloody standoff, but Timmy manages to escape." tt2165735,F2GgBAXj69U,"Captain Zhang begins to overdose on the drugs, shifting Timmy and Yang Xiaobei into action to save him." tt2165735,PFG8nJ4gwvo,"Now pretending to be Haha, polic Captain Zhang meets with drug dealer Chang who forces him to do cocaine in order to test his commitment." tt2165735,GdMQOwEnATM,"Captain Zhang leads a mission to capture the mute brothers, but the brothers shoot their way out and escape through a hidden tunnel." tt2165735,GgASWe5c8kE,"Timmy introduces Captain Zhang pretending to be the mysterious ""Uncle Bill"" to drug dealer Haha." tt5177088,QB9AY9Em4To,Ed uses satellite imaging to save Lisbeth. tt1255919,1J3WNRR4O60,Young Sherlock Holmes has an awakening that sparks his brilliance. tt1255919,a_DkEkfAO4s,Holmes and Watson arrive to Moriarty's trial. tt1255919,0WRtWiz_Xvg,Holmes and Watson find romance in Dr. Grace Hart and her ward. tt1255919,Ihkrc6Srv0Y,Holmes and Watson have a bit of problem while taking a selfie with the Queen. tt1255919,ze8D_5hdmTE,Watson finds the strength to stop Mrs. Hudson's plot to kill the Queen. tt1255919,q928Wa_h_gg,Holmes and Watson met their biggest foe yet...a mosquito. tt1255919,iv_Q51lofKM,Holmes slips poison into Watson's tea. tt1255919,8D7EY0zKevM,Holmes and Watson have a little too much fun going undercover. tt1255919,wVFNjHAnpcI,Watson telegrams a booty call with the help of Holmes. tt1255919,QjZUS2455z8,Holmes tries to fight his weak stomach while visiting a morgue. tt5177088,ow3Pf0LSXwc,Lisbeth frees Ed from airport security. tt5177088,uckdiNJ10LE,Lisbeth races to defend Balder and his son. tt5177088,ATid397QdsY,Lisbeth deploys her hacking skills to stop an assassin in his tracks. tt5177088,g_fIDwoORl4,Lisbeth confronts her sister Camilla. tt5177088,sOHoeZYeAeM,Lisbeth metes out vengeance against an abuser of women. tt5177088,Yr1quUpD0Y0,Lisbeth walks right into a trap set by her sister. tt5177088,k8Vn9zLollY,Lisbeth discovers terrorists in her apartment. tt5177088,6QfunXjWCpc,Lisbeth eludes the police any way she can. tt5177088,CMfYaFpa3nY,"Camilla tortures her sister, Lisbeth." tt1758810,MBgPSe_p1fk,Det. Bratt attempts to trap Arve but is cornered by the real killer. tt1758810,C_fhEQGp9Hw,"Det. Harry Hole investigates the background of Det. Rafto, a detective driven insane by his inability to catch the Snowman killer." tt1758810,1TX6svl0Qjc,Det. Harry Hole investigates the home of a Snowman victim while Det. Bratt makes a gruesome discovery. tt1758810,cGDwEP-RWHo,"The Snowman, Mathias, interrogates Det. Harry Hole while threatening to kill his ex-girlfriend, Rakel." tt1758810,QxrBZStJOGk,Det. Harry Hole and Det. Bratt interrogate Vetlesen over his interactions with a victim. tt1758810,K6Kkwi0nfHg,Det. Harry Hole and Det. Bratt are called back to the house they just visited. tt1758810,OiJ8mt6Nn5s,Det. Harry Hole tries to use Mathias's past to save himself. tt1758810,LJgqSSZpdns,Mathias' entire life falls under the ice. tt1758810,yV5w71aImSo,Rakel sleeps with her ex-boyfriend Det. Harry Hole while Det. Bratt tries to trap suspected murderer Arve. tt1758810,4ZCtygwf67Y,Det. Harry Hole and his partner Det. Bratt search for Sylvia Ottersen after an anonymous call about her disappearance. tt1912996,Sj3sHAe1bAY,Cheryl can't tell the difference between her toys. tt1912996,iTH2RpdXTBA,"Sue, Lexi, and Cheryl picture their dream men." tt1912996,1a3iljVEif4,Lexi is determined to get serviced. tt1912996,b_kHujzG_w0,Sue finds the ride she's been looking for after a day of self-discovery. tt1912996,KMcBrs0aWbo,Cheryl really enjoys cleaning up. tt1912996,MEYupVDPDRE,Cheryl tries awkwardly to sleep with Eric after catching her boyfriend cheating on her. tt1912996,qrd5QtOa6O4,Sue has a less than expected reaction to her confession. tt1912996,8zdNf9EtW-A,Lexi and Sue tease Cheryl over her failed attempt at romance. tt1912996,JYymQ87_t8o,Lexi tries to convince Sue to 'find herself'. tt4504438,5LdmmsMZU-I,Bayu wakes up to find Dharma holding his daughter hostage. tt4504438,g1bhGNv0Ei4,Nomura gets revenge on a pimp who had beaten him down the day before. tt4504438,4OyCzhF1A8s,Nomura expresses his disappointment in Hisae for not being a killer like him. tt4504438,7d4Sd1W25xs,Nomura has a bit of fun with his latest murder victim. tt4504438,-jYZCqfUfVU,Bayu takes matters into his own hands and eliminates a corrupt lawyer. tt4504438,MVxXoBHtBfs,Nomura expresses his kinship with Bayu by forcing him to kill Dharma. tt4504438,yRpnEq9A3vo,Bayu fights his way out of a hotel after killing a prominent politician's son. tt4504438,cSjzA3Wl6hY,Bayu finds himself in a precarious position after falling asleep in a taxi on his way home. tt4504438,TllGibabkYg,Nomura tries to show Bayu his true nature. tt4504438,NTne-1oUAZU,Nomura chases Hisae and another victim as they try to escape. tt7074886,Lv41GcKWfJg,Gary accosts a reporter after he asks a personal question. tt7074886,bTJAIONGv0Y,"Gary falls apart when AJ, questions his morality." tt7074886,sdkgpg4Plxo,Lee tells Gary exactly how she feels about his scandal. tt7074886,h5OjSHDUn8c,Gary confronts an editor of the Miami Herald during a press conference. tt7074886,r3BS4jKjRkc,"As the scandal grows, Gary and Lee discuss their private life." tt7074886,cE2bc0vU9pg,Gary gives an ominous warning about politics and news media during his resignation speech. tt7074886,ZCdhsYpdRck,"Bill questions Senator Hart's mistress, Donna." tt7074886,E1u3lo2EsMg,Gary confronts a group of stalker Miami Herald Reporters. tt7074886,7AnDGdVit4w,Gary decides enough is enough. tt7074886,0qkVyahL10U,Gary and his campaign manager argue about his affair. tt1477834,x24Olya2NLk,Aquaman and King Orm face off in a fight to the death in front of all of Atlantis. tt1477834,5Fa3enGmEfA,Vulko's meeting with Aquaman and Mera is violently interrupted by Atlantean soldiers. tt1477834,44MohOiWwnA,Black Manta launches an offensive against Aquaman and Mera. tt1477834,0y5KiKKCD7A,Aquaman faces off against the monster Karathen for Atlan's Trident. tt1477834,nF74obZFKp8,Mera rescues Aquaman from being crushed by King Orm. tt1477834,00QMS3Ldb20,Aquaman takes on his brother King Orm in a duel for the throne. tt1477834,8Q0KYSXhKMU,Aquaman and Mera fight off The Trench. tt1477834,ob2QomOgStQ,Mera and Aquaman fend off Black Manta through a coastal town in Sicily. tt1477834,Zeg6dl4L60M,"Aquaman meets, and quickly overpowers, Black Manta." tt1477834,vEWPq-4sa3w,King Orm launches his offensive against the kingdoms of the sea. tt1596363,xAlCbE-yCTw,Dr. Michael Burry stands by his crazy bet against the housing market. tt1596363,1RwwTgTVnJs,Mark Baum learns just how screwed up the banking system is. tt1596363,1Rhs3PVAP4o,Margot Robbie breaks down Wall Street's jargon. tt1596363,Mfu_iFS-UY8,Mark Baum and his team investigate the housing market in Florida. tt1596363,OpCXQJyiXQ8,Dr. Michael Burry makes an unprecedented short against the housing market. tt1596363,tjRgzcM2HoU,Jared Vennett shows how easily everything will fall. tt1596363,WgxNguNEMpE,Mark Baum lords over a Bear Stearns banker as their firm fails. tt1596363,0X0-NpZpx6U,Mark Baum learns about synthetic CDOs from Mr. Chao. tt1596363,Pxr_FzpPM2Q,Pop star Selena Gomez and Behavioral Economics Pioneer Dr. Richard H. Thaler teach you about Synthetic CDOs. tt1596363,HudtZNmmVwo,Ben Ricker and Dr. Michael Burry cash out and making unfathomable amounts of money. tt4925292,0quxzV2i_gQ,Lady Bird meets Kyle at a high school party and finds a connection. tt4925292,aG3Oc5TNd-Y,Lady Bird and Julie walk in on Lady Bird's boyfriend in a compromising position. tt4925292,KtwPWWCJHAE,"After realizing her ditching her boyfriend, Lady Bird goes to pick up her best friend Julie and ask her to prom." tt4925292,836TMubeCfo,Marion finds it difficult to say goodbye to Lady Bird. tt4925292,DL-fT3OymQI,Lady Bird finally makes it to New York but finds it difficult to adjust to college life. tt4925292,4HgHU5fVqbI,Lady Bird decides to sleep with Kyle but is quickly disappointed with the experience. tt4925292,3Avu3KdHGdo,"Lady Bird and Julie have a fight after Lady Bird abandons Julie for a new, popular group of friends." tt4925292,tF3eceBqcik,"Julie goes to play rehearsal while Lady Bird skips in order to spend time with her new, popular friend Jenna." tt4925292,mpDGnFwbw0U,Lady Bird and Marion argue on the trip home. tt4925292,koZie6TLz3s,Lady Bird has an unpleasant interaction with the key speaker of an anti-abortion assembly. tt1663143,R_moIp38Fk8,Fuzzy saves Albert. tt1663143,pVB70-zPv5E,Albert hits on Galaxy Scout at a dance party. tt1663143,-ON8ZTCiuYo,April takes matters into Peng's hand. tt1663143,GOwehDo9xYQ,The group's Volvo gets clucked hard. tt1663143,jo-aQkgNMKQ,April's aversion to hair removal has a dramatic effect on the family cat. tt1663143,myZDn8fFRLY,Albert finally reveals his master plan. tt1663143,qLCy66eZrQs,Albert prefers tricks over treats. tt1663143,-1eKufUP5XQ,Roosevelt rushes to confess his love to Wren but runs into her mother instead. tt1663143,FPYjy-ZWB-c,Jorgen gets a hot foot. tt1663143,C5lMZZxrewE,"Fuzzy's toilet paper prank goes very, very badly." tt1817771,rNxqb6KMtkg,Petra gets her heart broken by Milan after he has turned her into a vampire. tt1817771,KLDQLqzbrPE,Dag's life-altering night turns into a life-destroying one. tt1817771,GlP6emuR3z8,Dag fights to save Petra from Milan and discovers a new part of himself in the process. tt1817771,NgAjrtEmWxI,Dag and his friends get transported to the shopping mall that the aliens have taken. tt1817771,de1vEYiEMro,Dag and Lorelei try to escape the town after aliens attack. tt1817771,7AajEaNH7g4,Ned is bullied by his father Chaz Sr. while eating dinner. tt1817771,MUeKujlb6gc,Dag consoles Petra after she's eaten his crush. tt1817771,PI8G4wCa8m4,Dag and his friends try to figure out how to escape the alien invasion. tt5734576,gs0WQmW1icQ,Megan finds someone trying to steal the body of Hannah Grace. tt5734576,__bdFiweOJY,Grainger suffocates his possessed daughter during a failed exorcism. tt5734576,C3TAMx8Gqro,Former cop Megan recalls the shooting death of her partner. tt5734576,zGXxYW_Zisk,Megan spots a shadowy figure on security footage. tt5734576,B5uw3qZ04NY,Grainger tells Megan that Hannah Grace is his daughter and that she was possessed by the devil. tt5734576,VDCoR_PxceY,Megan manages to escape from the locked cadaver door. tt5734576,NInjsGq2yCA,A priest tries to exorcise the demon from Hannah Grace. tt5734576,f6Dan7z0p4c,Dave gets killed by the possessed body of Hannah Grace. tt5173032,Yvoy77W0Ofg,Buster makes dinner for a family he has taken hostage in their own home. tt5173032,PyK__VjhdEE,"Squatting in a vacation home, Buster lies to a local sheriff, but the police soon learn the truth." tt5173032,0g32SegeaTw,"Buster tells a phone sex worker about the coming ""Inversion""." tt5173032,6WKFs4PhRkA,Jonah goes into his hotel room after a long day of work and finds his wife and daughter murdered in the bed. tt5173032,oH5Dww7Umog,"Down on his luck, The Last Free Man comes back to the hotel." tt5173032,ysRnmU7UZLA,"Jonah meets a mysterious and eccentric man at the hotel one night who has calls himself ""The Last Free Man""." tt5173032,ki5XFDm1ufM,Jonah and The Last Free Man work out a plan to steal jewelry from the guests of the hotel. tt5173032,cvaUo282fEg,Jonah yells at his wife Marty while discussing their future. tt5173032,2qqJr7uFeTA,Jonah puts and end to his petty theft operation and tells off The Last Free Man. tt5173032,eXHKngWBha0,"With Buster surrounded by the police, he tries to shoot his way out, and ends up in another plane of existence." tt1911533,da1prguylik,Anneliese attacks and kills the doctor sent to help her. tt1911533,eAVgMr_VCH4,The priests and her family perform a final exorcism on Anneliese. tt1911533,oSIR6UvH1G8,Father Renz and Pastor Ernest Alt perform an exorcism on Anneliese. tt1911533,xcYhjlyrjfc,"Anneliese begins convulsing, gets violent, and starts speaking in foreign languages that she never spoke before." tt1911533,FtoH7NJV5Go,Anneliese spits vitriolic emotional abuse at the innocent Sandy. tt1911533,vwrqj6aqJAw,"Dr. Kenneth Landers announces how he wants to put an end to this case, but Anneliese puts an end to him." tt1911533,QbthrROkWXM,"Anneliese breaks down, but then tries to get it on with a priest." tt1911533,9FA_bAXW-Y8,Anneliese attacks Dr. Kenneth Landers while he is documenting the case. tt5664636,kSQaXjYkZpc,The gang finds their hometown overrun with monsters. tt5664636,9We9JImjg-c,Slappy gets revenge on Tyler for Sarah. tt5664636,SKTvxXjJ_MU,Slappy reveals what he's done to Kathy. tt5664636,mpG7K909Gi4,Sarah confronts Slappy beneath a Tesla coil. tt5664636,MzzWzX-HGbA,The kids decide to get rid of Slappy. tt5664636,R7P5OWV436c,Sonny shows off his electrifying science project. tt5664636,AhZw2QXKT1A,Slappy recruits an army from Halloween masks. tt5664636,UgSVWM44JBE,Kathy discovers Slappy and rejoices. tt5664636,Gr-s1mxnwM0,Sonny and Sam make a creepy discovery in R.L. Stine's house. tt5664636,lnPDc4XE77w,Sonny & Sam get into a sticky situation with some possessed candy. tt2267968,rhnCmErsnYA,"Po,, his dads, and his panda pals protect the secret panda village against Kai's jade zombies." tt2267968,tekVuL2mT7A,a village full of pandas! tt2267968,30VlDItRAVk,Po uses his newfound Chi become the Dragon Warrior and fight Kai. tt2267968,m7HLqZP-l7E,Kai attacks Shifu and the Furious Five. tt2267968,w86nTX6Iixo,Po's biological father Li shows up at his village. tt2267968,DVQQY4-us8k,Shifu cedes control of the class to Po. tt2267968,gRP3sdjszlQ,Li gives Po panda training while Mr. Ping has a rough day. tt2267968,YeDjVvr-6Zc,"Po performs the Wuxi Finger Hold on Kai, but it doesn't go as planned." tt2267968,sCsMjWjftZs,"In the Spirit Realm, Kai tries to take Po's Chi." tt2267968,FGwgHAqBLDY,"Po, Shifu, and the Furious Five fight Kai's jade zombies." tt0090633,M93XQJPV51c,Fievel and Tiger learn through song that they are more alike than they thought. tt0090633,gQMtp2WxEA4,The Mousekewitz family and fellow immigrants sing about the virtues and promise of America. tt0090633,Mi6CrAUhnzE,"After scaring away the cats, Fievel is caught up in the flames." tt0090633,XWgSKXw8ZwI,"While traveling to America, Fievel gets tossed overboard during a terrible storm." tt0090633,2jzlSeFLr7A,"Separated from one another, Fievel and his sister Tanya share a song about missing each other." tt0090633,sJsCKwZLztk,"With Tiger's help, the Mousekewitz family finds Fievel." tt0090633,65pGOp7qa_s,The mice unleash the Giant Mouse of Minsk. tt0090633,Vro5qtVA4PE,A gang of cats attack the Mousekewitz's village. tt0090633,HFAGAjkDaOU,Fievel discovers that Warren T. Rat is actually a cat. tt0090633,kXvNxXDDHSY,"Fievel nearly gives up hope of finding his family, until Henri brightens his spirit with a song." tt2832470,yqVb0Ten3G4,Glenn acts as bait in order to thin the zombie herd. tt2832470,tsCGLuufHvk,Martin learns to discipline his zombie arm for good. tt2832470,e2FPI_ylwJg,Martin gives an resurrecting touch to his undead girlfriend. tt2832470,71ZR5BcX-Pc,Martin and the Zombie Squad fight against undead Nazis. tt2832470,e5gfRaN5gaE,Martin and the Zombie Squad watch as Herzog delivers a devastating blow. tt2832470,T5k1Olhmz_E,Herzog murders a horny elderly couple. tt2832470,__zoXOgNRvk,Martin goes face to undead face against Herzog. tt2832470,e80EOZnHpLQ,Herzog and his army destory a small Norwegian town. tt2832470,qwgO1dNfBl0,Martin watches as Herzog and his zombie horde massacre a bus of tourists. tt2832470,dvlZ2PtH_zc,Martin thinks he's gotten away from the zombie Nazis but gets a rude awakening. tt5938084,wMclAYZ_6kU,Manigan and Yatco fight back against an onslaught of thugs and citizens. tt5938084,sG8uXeC_jNg,Manigan delivers Biggie Chan to her boss before being forced to join in his corruption. tt5938084,i3ywt-oTQv4,Manigan and Yatco face off against an angry mob in the slums. tt5938084,_65de63xao0,Bravo team get ambushed and cornered by Biggie Chen's goons. tt5938084,bCtvFlr2hHI,Manigan is shocked to learn from Biggie Chan that the police chief set her squad up. tt5938084,LB08HHk7Ssk,"Backed into a corner, Manigan goes on the offensive against Cocky." tt5938084,VLx6HcJ7sas,Manigan is chased across the rooftops of the slum by an angry mob hellbent on murder. tt5938084,gOeKwFPUA50,Manigan gets caught on the rooftops of the slum as the residents give chase. tt5938084,3_SZ0F3VTVU,"The Squad stakes out the hideout of crime boss, Biggie Chen." tt5938084,8C3n6k49Dmg,Bravo team scrambles to the scene of the crime and find themselves in the aftermath of a massacre. tt0841046,9zZLmOA4OsA,Dewey enters rehab after spending time in prison. tt0841046,xVANxG9gI6g,Dewey performs at a high school talent show and sets off excitement across the town. tt0841046,PoAxZJMYRWE,Dewey and his Pa finally reconcile after decades of hostility. tt0841046,R2lhQCxKx_Y,"After trying his hand at pop covers, Dewey discovers his original song may be a hit." tt0841046,8tLhtdDVqzg,"After his first big performance, Dewey tries drugs for the first time." tt0841046,c7cm-r7oJ2E,Darlene and Edith discover Dewey hasn't been honest with them. tt0841046,oflbCHWZCBU,Dewey meets Darlene and tries his hardest to contain his passion for her. tt0841046,a_iEYXLXbjY,Dewey gets terrible news and resorts to drugs to cope with the pain. tt0841046,SDIk9DOro4A,Dewey and his brother Nate play increasingly dangerous games. tt0841046,ikcKKvKkf4Y,Dewey gets his chance to perform on stage after musician Bobby Shad gets injured. tt1302011,jY4nU1rwWv8,Po and the kung fu masters sneak around in a dragon dance costume. tt1302011,hTpVCu5DzpA,Po and the Furious Five square off against a group of bandits in the musicians' village. tt1302011,WsHqQAfZvc4,Po chases after the Wolf Boss in rickshaws. tt1302011,h5UGcMYOaaU,Po and the Furious Five break free of Shen's chains and destroy his cannon. tt1302011,22Xiae6LXdU,Po and the Furious Five sneak in to Shen's secret factory. tt1302011,4SDOcUPE1GI,Po and the Furious Five run from Shen's cannons. tt1302011,ePtwxRF1WZA,Po rescues the Furious Five from Shen and his army of wolves. tt1302011,QXeYlaZJ64k,Shen's cannonballs are nothing against the tranquility of Po's inner peace. tt1302011,Ln91UqmKxwI,Po gives Shen a chance to change his ways. tt1302011,nXait2wHOQc,Mr. Ping tells Po the story of how he found him as a baby. tt7349662,8tFrGaU6p5U,Ron calls up the local Ku Klux Klan chapter. tt7349662,AxxKJ2QgPtY,"Jerome Turner tells the bloody history of ""Birth of a Nation.""" tt7349662,dmy8Lcf_TiE,Flip is interrogated by a white supremacist. tt7349662,X3XwuyPljm4,Ron takes a picture with the grandmaster of the Ku Klux Klan. tt7349662,ruCFlIoCpJ8,Ron calls up David Duke and reveals his identity. tt7349662,o6synmrDXqU,Ron gets to know local Civil Rights activist Patrice. tt7349662,yV5UTHVjMME,Ron teaches Flip to be black enough to play him playing white. tt7349662,HQrM6Rk7WWE,"Though the Klan suffered a blow, racial injustice is a continued threat in America." tt7349662,1Aoukxd0GvI,Jerome tells a tale of the klan's hatred while the klan inducts new members. tt7349662,lIbBAWzE6H8,Ron rushes to save Patrice from a KKK bomb plot. tt6966692,aB6Tdk6f2Lw,"Dr. Shirley and Tony have a heated debate about race, identity, and acceptance in a segregated and racist world." tt6966692,nsp9ex69rQQ,Dr. Shirley interviews Tony for the driver position. tt6966692,4RBnTZELQX8,Dr. Shirley reprimands Tony after his temper landed them both in jail. tt6966692,e_fI5no9SKk,Tony and Dr. Shirley get pulled over for being out after sunset. tt6966692,KXoFUS5Dzto,Tony bribes a couple Southern police officers when Dr. Shirley is arrested after being caught in a compromising situation. tt6966692,tnZ55SLhan4,Dr. Shirley unexpectedly shows up at Tony's family Christmas dinner. tt6966692,89HcLOHubgo,Tony saves Dr. Shirley when he gets beaten up by racists in a southern bar. tt6966692,eiqBbLVXbQg,Dr. Shirley cuts loose and plays a little pop music at a small town jukejoint. tt6966692,ymmlNaUhZE8,"When Dr. Shirley is denied entry to the dining room, he and Tony leave the country club in protest." tt6966692,JCT1VtaBpqg,Tony introduces Dr. Shirley to fried chicken. tt2119543,2HuQzKat6hU,Jonathan tells Lewis that he and Mrs. Zimmerman are magical. tt2119543,XA0J-wn1Esg,Lewis uses the Book of Necromancy to raise the dead. tt2119543,mpgaMjGOeJg,Jonathan and Mrs. Zimmerman show Lewis how to cast spells. tt2119543,bwKwR3hV0zA,Undead Isaac Izard comes back to the house. tt2119543,aWjBDI02kSE,Lewis explores the mysterious new house with Uncle Jonathan. tt2119543,n8yUoQP6Rwo,"Lewis, Mrs. Zimmerman, and Jonathan fight off evil pumpkins." tt2119543,npaLKZ0Egus,Lewis uses his Magic 8 Ball to stop the magical machine and save the world. tt2119543,qp-uFNB9jYo,Mrs. Zimmerman tells Lewis about her past. tt2119543,5noS6qGxcbM,Isaac tells his captives about his evil plan to undo the passage of time. tt2119543,ANigqhwwafs,Jonathan and Lewis try to prevent Isaac's evil plot. tt4244998,13h4zTXEjvw,Keda wakes up on the precipice of a cliff after falling off the edge. tt4244998,8wduU3eU6XQ,Keda begins to bond with Alpha after she tried to kill him. tt4244998,4IHDSpacpbc,Keda gets attacked by a pack of hungry wolves. tt4244998,LahMUQTEbcY,Keda rushes an injured Alpha to safety. tt4244998,MDG6JsXqaRA,Keda and his father hunt buffalo as part of a rite of passage. tt4244998,cfnBcA2ckeQ,Keda falls beneath a frozen lake. tt4244998,0uyVs4iKp_E,Keda tries getting rid of Alpha but finds the two work better as a team. tt4244998,f96ppJ3DSGE,Keda and Alpha seek refuge from a snowstorm but find something worse. tt4244998,QFDZTfWnWGg,Keda bids a sad farewell to Alpha. tt4244998,U7jlC1QNaUM,Keda and his tribe discover that Alpha is not only female but pregnant. tt5700672,vNk30YAdCEo,"Seok-woo, Su-An, and Seong-kyeong race for a train with zombies on their heels." tt5700672,POpYt4cHlFs,"The surviving passengers search for safety at a train station, but find waves of the undead instead." tt5700672,zpmd0YiERdQ,The undead rampage from car to car as passengers flee to safety.. tt5700672,Er_oU3Sl1GI,A sick traveller delivers the fight bite of the zombie outbreak. tt5700672,tKeJ34qjORQ,Growing fear causes the passengers to exile other survivors and leads to their own doom. tt5700672,zhaVycw4FXI,Seok-woo and the others fight off waves of the undead to get to their families. tt5700672,nKkgc9WTY38,The rail passengers find themselves trapped under a fallen train car filled with the undead. tt5700672,dcR7fdkLhJ4,"In the face of an overwhelming horde of zombies, the rail passengers display the best and worst of humanity." tt1270797,zuSBq10_5go,Venom's fight with Riot gets crazy and violent. tt1270797,UCGdsPwcKKg,Venom takes on a SWAT team. tt1270797,Wl6COOA3V6Y,Venom stops a thug from robbing a convenience store. tt1270797,3kEL1doAC4M,Eddie investigates a secret laboratory. tt1270797,xL3ZOCRgJZM,Venom has some unique demands for Eddie. tt1270797,dOZndhz24OA,Anne reunites Eddie with Venom. tt1270797,09zP4iK6QuI,Eddie has an interview with Cletus Kasady. tt1270797,vi9m0JRo71I,Venom makes his big debut. tt1270797,rsnLwzzkF_Q,"Riot makes his move, but Venom is there to stop him." tt1270797,8zYGzyIpue8,Eddie rips through the streets of San Francisco while on the run from Carlton Drake's men. tt3766354,-BgZFaMJRxM,McCall warns Dave and his men that he's coming for them. tt3766354,rmE6nTzmDqI,Dave reveals he is behind the murder of Susan Plummer. tt3766354,hN5We42pLhs,McCall fights his way through a project building in order to find and rescue Miles from making a terrible decision. tt3766354,bxs77K1DkD0,McCall equalizes a group of bros after discovering they sexually assaulted a young girl. tt3766354,5D20G8qe4Qc,McCall equalizes a man who has kidnapped his daughter and taken her to Turkey. tt3766354,7HEi1kmCzEY,McCall gives Miles a lesson in life and death. tt3766354,m43-bLl6ZwI,McCall picks off Dave's men one by one. tt3766354,nNGz1GspkbM,McCall finds a creative way to roast a few mercenaries. tt3766354,GuqaloLJNJk,McCall goes head to head against his former squadmate-turned-enemy Dave. tt3766354,1M00J5Q1Vv8,McCall picks up a suspicious fare. tt4633694,XMKKYshEbzM,Miles fights Kingpin for control of the particle accelerator. tt4633694,5h2uLkqpVV8,"Miles has a tough day at school, but does meet a cute new girl." tt4633694,5XnGKA75dtI,"After the particle accelerator explodes, Kingpin kills Spider-Man." tt4633694,qCjSApp2o1E,Miles Morales and Peter B. Parker try to steal a computer from Doc Ock. tt4633694,zWW_SH8IFnI,Officer Jefferson cheers on Miles Morales. tt4633694,3v9Pfg4Ocbg,"While doing graffiti art with his Uncle Aaron, Miles Morales gets bitten by a strange spider." tt4633694,kDTjN5dVCzg,Jefferson drives Miles to school. tt4633694,qcaVM8TcZbA,Miles reconciles with his father. tt4633694,6bO4ZsAMowI,Miles discovers that he can stick to walls. tt4633694,GuqCibVW5wo,Miles says goodbye to Gwen Stacey and Peter B. Parker. tt7668870,gC6gD7Qzry8,David believes he's found his daughter's abductor. tt7668870,jGXpyMDIZ_U,David accuses his brother of kidnapping Margot. tt7668870,m-3Ohq-bVFA,Detective Vick explains the events leading to Margot's disappearance. tt7668870,qjJnk3MgNgc,Detective Rosemary Vick is assigned to David's case. tt7668870,jkmyjHYMH0Q,"David realizes that the Memorial One photo is Margot's social media friend, fish_n_chips." tt7668870,po0Gj897Tmk,A fateful discovery leads David to the person responsible for his daughter's disappearance. tt7668870,SN8buDY-7LM,Margot gets close to fish_n_chips and further from her father. tt7668870,c2ecZiVEs70,David discovers where Margot was when she disappeared. tt7668870,YeqQ-Iae_VI,Detective Vick gives David some parenting advice. tt7668870,IKnygn5ysHU,Margot deals with her mother's passing. tt0181316,1iEOBKuW9TQ,Martin Lawrence and the detectives chase down a bonded truck in search of contraband material. tt0181316,ysudBGghmnA,Miles corners Deacon as he crosses the border into Mexico. tt0181316,IfO6AIsvlKw,Miles tries to enter the building under disguise. tt0181316,iswgTDjihrU,Miles chases after Deacon and the stolen diamond. tt0181316,q7V1sM0VNaw,Miles accidentally finds himself leading a detailed briefing at the precinct. tt0181316,KNQpMgWWB5Y,Carlson calls Miles out on his nonsense as he crosses into Mexico. tt0181316,IoQ4G5p-Z-g,Miles interrogates Tulley after the latter attempts to blackmail him. tt0181316,W18J6bcq9YI,Miles preps to go undercover. tt0181316,t3gqjXINvac,Miles goes undercover with Tulley to take out a major gun runner. tt0181316,5UjmbtIRvLY,Martin Lawrence works out a deal with Tulley to save them both without blowing his cover. tt3450650,R1eDE5bXCds,Paul Blart gets the call to head a keynote at a security guard convention. tt3450650,m7xTE3rvkDk,Paul Blart corners Vincent on the casino rooftops. tt3450650,cMwOJoesx8M,Paul Blart and his daughter Maya discuss her becoming an adult. tt3450650,Xq4HZGi38qo,Paul Blart questions a man with a disgusting snack. tt3450650,fo0KBFhChFU,Paul Blart and his crew face off against Vincent's men. tt3450650,ob_6XAhj_1U,Paul Blart shows off in front of his daughter and his peers with some impressive segway maneuvers. tt3450650,0zuW4KMG7XQ,Paul Blart makes an exchange with Vincent in order to get his daughter back. tt3450650,N7vSJzq1zAY,Paul Blart face off against Vincent's men. tt3450650,Q37sWrXU39s,Paul Blart accidentally stumbles onto the La Rêve stage in Las Vegas. tt3450650,vbJsLuL2YzQ,"Paul Blart tries to calm down, but a bird has other plans." tt0095647,t5nBikdQ1kE,FBI agents Anderson and Ward get to know each other on the drive into Mississippi. tt0095647,iJrgXYnUVe8,Three civil-rights workers are shot by a mob of local bigots. tt0095647,pHBKmT6eNGw,Agents Anderson and Ward are greeted with snickers at the sheriff's office. tt0095647,qOeZ9TL0wHs,"At the funeral of a black civil-rights worker, a speaker incites the mourners to anger." tt0095647,1ovQhqQy7bE,"Ward stops Anderson from avenging a battered woman, but promises to unleash him on the Klan." tt0095647,y8i5Nwg_TqU,Local Klansmen send Anderson and Ward an ominous message. tt0095647,ZCZyxZYgKIg,"Anderson questions Pell in the barber chair, menacing him with a razor." tt0095647,ccr0gfJ5q0I,"When the missing activists' car is found, Ward orders a sweep of the entire area." tt0095647,vWkJPL2Dt9A,Mrs. Pell explains to Anderson how prejudice takes hold. tt0095647,zvy5tDkETfQ,Anderson responds to Bailey's threats with one of his own. tt0092563,2Ht6646WCMU,Harry Angel confronts Mr. Krusemark about helping Johnny Favorite. tt0092563,isQIyXfV6Cw,The local cops inform Harry Angel of Toots Sweet's grisly murder. tt0092563,KUdG72N_mek,Harry Angel questions Epiphany Proudfoot about her mother. tt0092563,yGWUHeP16Zk,"Harry Angel explains why he wants to drop the case, but Cyphre raises his pay." tt0092563,eb1AjU67W2s,Harry Angel discovers the terrible truth when he realizes he sold his soul to Cyphre. tt0092563,ij-qB9jrMnY,"Harry Angel returns after locking Dr. Fowler in his room, only to find he's committed suicide." tt0092563,6SLhTIdGfhU,"Harry Angel searches a dead woman's apartment, only to find she's no longer all in one piece." tt0092563,TVSr02WLC4o,Harry Angel meets Cyphre in a church to give him an update on the investigation. tt0092563,oGFkOiYpEeE,Cyphre hires Harry Angel to find a man who broke a contract. tt0092563,USjNhsetZWc,"Harry Angel returns to investigate the church where he met Cyphre, only to be attacked after he discovers a voodoo shrine." tt1213641,TrvXqosqkls,Neil Armstrong successfully lands the Lunar Module on the surface of the moon. tt1213641,-2QFIXEHnOY,Neil Armstrong crashes during a test flight of the lunar rover. tt1213641,2Y_CzHI89mQ,Neil Armstrong answers questions from his children about his mission to the moon. tt1213641,JgTgQvvqRqE,Neil Armstrong pilots and lands a test plane. tt1213641,atBUgwJAD0U,"Neil Armstrong, Ed White, and the other recruits go through a rigorous physical and mental training regiment." tt1213641,oUKw4qcGHZs,"On the moon, Neil Armstrong remembers his family and his deceased daughter." tt1213641,MevYeKlyQM8,Janet confronts Neil about the risks associated with his mission. tt1213641,FubpK1Tho6M,The lunar mission begins on the launchpad. tt1213641,rzuN9uvnsZI,"Janet listens as her husband, Neil Armstrong saves his ship from a dead spin." tt1213641,r3L0e0izKG4,"Neil Armstrong takes ""one giant leap for mankind"" onto the lunar surface." tt2671706,d7-pWfZgFKU,Rose gives Troy the bad news about his mistress. tt2671706,q_tMagfE-nM,Rose reminds Cory of the good in his father and what he meant to them. tt2671706,2lh1uIhuujc,Troy explains where his life went wrong to his son Lyons. tt2671706,wAJQ-yWgSJs,Troy reveals a secret he's been hiding from his wife Rose. tt2671706,xI9CLKI1h-g,"After the news of his mistress's death, Troy wrestles with death once again." tt2671706,ytEsz9ZEh_g,Rose explains to Troy how the consequences of his actions will affect their lives. tt2671706,PomVYrPHoAg,Troy weaves a tall tale to Rose and his friend Bono. tt2671706,tVxYCeRXzGo,Cory asks his father a simple question and gets an honest answer. tt2671706,Vh7XH68xWKw,Cory finally stands up Troy and more than meets his match. tt2671706,2hs-yt-Pmk0,Rose stands up against Troy's excuses after he reveals he is having an affair. tt0057251,aoBeDwBxv04,Homer brings food and gifts back to the convent but does not receive the thanks he feels he deserves from Mother Maria. tt0057251,KU5yx6v_Jr8,Mother Maria gets Homer to help build the nuns a chapel. tt0057251,qgm_ou3TsIs,Mother Maria believes Homer is a godsend when his car breaks down outside the convent. tt0057251,ljMuEDlInLo,Juan tells Homer about the nuns' journey from East Germany. tt0057251,3hUkHF18IrI,Homer vents his frustrations of Mother Maria over a Catholic breakfast. tt0057251,12iewuXNhbE,Homer finds Juan's bar during church services and sits down to order a real breakfast. tt0057251,S0LBIxKRCHw,Homer leaves the convent after a heated debate with Mother Maria. tt0057251,h5dCFGJp__0,Homer tricks Mother Maria into thanking him with a simple English lesson. tt0057251,RwMgEM9FNhE,Homer gives an impromptu English lesson to the nuns. tt0057251,Bfj5GHwgXno,"Homer cites scripture to try and leverage payment from Mother Maria, but she outwits him with a counter-citation." tt0057251,s6JmX_n5oeo,A sulky Homer confides to Mother Maria that he is upset because he wanted to build the chapel by himself. tt0057251,ScJijQn6RyI,"After some observation, Homer decides to improve the nuns English lesson by stepping in as their teacher." tt1285009,gwGqg69sqi0,"The Man in the Mask survives the car explosion, and chases Kinsey until collapsing on the bridge." tt1285009,uwta-bET3aQ,"Luke manages to kill Pinup, but can't escape the Man in the Mask in the pool." tt1285009,Av0pWtQ36tU,Kinsey and Luke find their aunt and uncle's dead bodies in an abandoned trailer. tt1285009,SMd0299YDac,"The masked maniac sneaks up on Mike, who clings to life in the car, and murders him." tt1285009,4kaYp9uUNgw,"Kinsey hides in a drainage pipe, but little does she know that Pinup is there waiting for her." tt1285009,LTESHXdMyQg,"A police officer arrives to save Kinsey, but Dollface kills him first, so Kinsey has to take matters into her own hands." tt1285009,T_Kn_D-zfeg,"Cindy and Kinsey hide in the bathroom to escape Dollface, but the bloodthirsty murderer gets in and kills Cindy while Kinsey escapes through a window." tt1285009,fKyoILW1Npw,"The Man in the Mask crashes into Kinsey's car, so Kinsey lights the cars on fire and blows them up." tt1285009,ElkY5U7WSiA,"Kinsey finds a ride away from the murder scene, but the Man in the Mask seemingly comes back from the dead to finish the job." tt1285009,9uGuf4e252w,Kinsey and Luke think they find relative safety in a trailer until one of the murderers crashes a truck into the living room! tt0102960,pmAZlEkONa0,Justice is served when the greaser ghouls and the Norman family showdown in a familiar location. tt0102960,-dlOM4ocKUM,Jim Norman remembers what happened on that fateful day. tt0102960,Fz43jl18aiY,"After confiding with Mr. Norman, a once bullied Chip is picked up by the greaser ghouls." tt0102960,2UOL-ZHUOC4,"When Jim Norman is introduced to the new student, Richard Lawson, he can't shake the striking similarity to a ghost from his past." tt0102960,_ZA8FE-nu3E,Jim Norman's second transfer student bears striking resemblance to a ghost from his past. tt0102960,p9W9PhaNGOY,"When Jim spots a familiar car chasing down one of his students, he tries to catch up." tt0102960,buIXWAgTUIU,Mrs. Norman and her son are attacked by the greaser ghouls in their home. tt0102960,w4TCxFKaqIw,"When Jim remembers that Mueller survived the accident, he hunts him down." tt0102960,OlLMqN-vjKk,A manhunt ensues when Jim has a feeling the greaser ghouls attacked Kate. tt0102960,K3jk2RjLJ3c,Jim Norman's first day as the new teacher doesn't go as planned. tt0470993,GczlfeOFPDE,Jennifer makes a startling realization when she discovers a butterfly painting on the wall. tt0470993,PbCNDD4y-Zs,Wayne gets crushed by a window. tt0470993,2nCjaCV1v0U,"Robbed of her vision, Gina accidentally stabs Lyle." tt0470993,w_ZzqN2TWTI,Jennifer and her friends open and examine the contents of a mysterious box. tt0470993,dSOFfyFdHXA,Brent and his friends find a skeleton in a wooden chest. tt0470993,xoTuKbJE9aw,Jennifer and her friends realize they were part of an experiment when they were young. tt0470993,KxOI0mEOHsY,Jennifer is haunted by voices and comes to the conclusion that she needs to kill herself. tt0470993,des_yFi9fiM,Gina gets attacked by a ghost when she separates from the group. tt0470993,BiXpNk-huqQ,Lyle gets his throat slit while searching for the lost slingshot. tt0470993,9sVpipEqpD8,Beth is haunted and killed by a ghost. tt0470993,4psRZr3sxHs,Jennifer gets grilled about her knowledge of the kitchen. tt0470993,MjrbUV78y5A,Beth reads from her dead friend's diary. tt1428538,L9EPJ7ZYjHk,"Villagers get the drop on Gretel, but she's not alone." tt1428538,PDWuHeevSAk,"Having saved his sister, Hansel and his friends go after Muriel." tt1428538,sxKLANwXzzg,Hansel comes to Gretel's rescue. tt1428538,HMyfwfUs64I,Hansel and Mina face off against Muriel. tt1428538,DbcOnkSMGK0,Young Hansel & Gretel deal with their first witch. tt1428538,dTIoEMxqckg,Hansel & Gretel hunt down a witch. tt1428538,PKKSqcq9iGU,Hansel & Gretel take on alpha witch Muriel in the house where it all started. tt1428538,tc7rC53gLUU,Hansel and Gretel rush to save a young girl from being kidnapped by witches. tt1428538,uZ_X4w_9lgk,The witch sends Hansel and Gretel a disgusting message. tt1428538,irxaBbMXsUk,Hansel & Gretel get the drop on a witch. tt5481984,SDNStLatNk8,Alice convinces Rumpelstiltskin to calm down a rogue Gelda. tt5481984,VUljC2ih5YY,Alice and Goldilocks review the cast of villains they have recruited to join in their fight against Death's Messengers. tt5481984,XFu7Fz4g1VM,Alice and her crew rush to rescue the Hatter. tt5481984,M32XWG0NQPQ,Bluebeard reveals his true allegiance during a vital mission. tt5481984,SUruJPHdHUQ,Goldilocks finds a hard target when going after Bluebeard. tt5481984,31G0GtKW8iM,Allegiances crumble as Death's Messengers attack Looking Glass HQ. tt5481984,nxKAr1Gebjk,The Grimm Squad work together to protect Looking Glass HQ. tt5481984,pt94aydCMXg,Rumpelstiltskin's bid to turn Gelda's allegiance gets an unexpected ending. tt5481984,LaajQCWsyzE,Alice and her team scramble to stop Death and Rumpelstiltskin from executing their plan. tt0365957,Ooiw8ZYnzdU,Elgin's crew makes it to the finals to compete against Wade's crew. tt0365957,_ZzKJflnVHU,Elgin watches as Wade's crew defends their title in the fourth dance sequence of the film. tt0365957,cIEPiYHzTto,David and Elgin train for the big competition. tt0365957,BpAvVBwO8J0,David and Elgin get challenged by Wade's crew. tt0365957,HJKL8Ta-kt8,David and Elgin's crew face off against Wade's after being betrayed by one of their own. tt0365957,15MbDpZad74,David and Elgin compete with their respective crews for a chance at a cash prize and a spot in a Lil' Kim video. tt0365957,_oOULG_nhEc,David and Elgin's crew destroy the competition in the second dance scene of the film choreographed to Aceyalone's 'Find Out'. tt4145324,Tirgk-Is0QY,Michelle meets Ryan Black at a bar and his aggressive attitude takes her by surprise. tt4145324,bHnpX4LBdGw,Michelle and Ryan Black explore the dynamics of the dominant/submissive relationship. tt4145324,5rQD746bDOc,Ryan Black tortures Michelle while she is forced into a last minute pitch with a potential investor. tt4145324,VlqxnvmTcAk,Michelle sets up a major business merger for her father's company. tt4145324,H6pjCQosMxk,Michelle meets with Ryan Black at a photoshoot with Terrell Owens. tt4145324,Cwqmd8pSkEo,Ryan Black offers Michelle an entertaining way to spice up attending a fundraiser. tt4145324,qFnqH95k_rU,Ryan Black teaches Michelle how to let go and enjoy the moment. tt4145324,Yk2ZbS2FKe4,Michelle takes action against Ryan Black after he sleeps with her teenage daughter. tt4145324,4LCN8__54AQ,Michelle offers a turn of the tables on Ryan Black. tt4145324,7Ev8Q9RDC8k,Michelle catches Ryan Black in bed with her daughter. tt1473801,LiogBSpbSE8,"Spanky and Mert look for their stash at a kid's birthday party, and meet a foul-mouthed child and his sexually aggressive mom." tt1473801,WDAIccQnnV8,"The gang gets confronted by Mert's brother's ex-girlfriend, Pinky." tt1473801,BzKbRv8tcBc,"After getting caught looking into the neighbors' apartment, Spanky and Mert are forced to wait in her smelly bathroom until the neighbors decide their punishment." tt1473801,dtIqkgW18-0,"Spanky, Mert, Princess, and Strawberry get pulled over and get into trouble when the GPS insults the cop." tt1473801,1EkjxpUe5TY,Spanky and Mert take their car to a bikini car wash. tt1473801,y5ysUSgyVqs,Spanky and Mert try to find some strangers to buy them alcohol. tt6781982,7PI0v2ZWDl0,Carrie convinces Teddy to take a learning disability test. tt6781982,sqLiTaVHPdo,Students in Teddy's class introduce themselves. tt6781982,OwG27DvQf68,"Carrie uses a few alternative, and violent, teaching tactics to motivate Teddy." tt6781982,npSYPN8LXas,Stewart shows up Teddy's chicken restaurant to apologize. tt6781982,2UBYT9teTIs,"Teddy returns to his old high school to inquire about night school classes, but finds that his old high school bullying victim Stewart is the new principal." tt6781982,honAzu3xOP0,"At an expensive dinner, Teddy tries to get out of paying the bill by planting body hair in the dessert." tt6781982,8Ds9R9puftI,Teddy accidentally blows up the barbecue shop while proposing to Lisa. tt6781982,6rHHZ3hiwcQ,Lisa shows up at the high school prom where Teddy and his night school class is celebrating. tt6781982,bgZWbi1o8bY,Teddy and his classmates try to escape the school after stealing the midterm. tt6781982,4c_4MGTCgHY,Carrie's class gets an unexpected interruption. tt2937696,KoY720x5fuw,The upper classman baseball players show the freshman how everyone earns their stripes on the team. tt2937696,nvAZrrDwecI,Willoughby tries to get the guys into the complexities of Pink Floyd during a smoke session. tt2937696,PTOkGaI3ZAE,The boys on the baseball team take their respective partners home after a night of partying. tt2937696,H6XWqMB-Ow8,"The team puts their own spin on Sugarhill Gang's ""Rapper's Delight"" while on their way to pick up girls." tt2937696,jME-000LFNY,Dale explains to Jake exactly how Finnegan tries to pick up women. tt2937696,XIJ-TpmNlI0,Finnegan convinces two women to strip down and fight in a mud pit. tt2937696,qpxUYzNSGn0,Dale and Jake interrupt Finnegan mid-pitch to a freshman drama student. tt2937696,5IzNXdsZUHk,Jay antagonizes McReynolds while on the pitcher mound. tt2937696,7iajsLA5MKM,Jay gets into a bar fight after the bartender doesn't make his drink the way he likes it. tt2937696,cZy7qSG8RHQ,The upperclassman on the team play another prank on the freshman players. tt0090685,CXdc2L3QH9U,Thornton wins over Dean Martin by donating a building. tt0090685,QXruKKf3my4,Thornton creates a distraction during registration and then buys books for everyone. tt0090685,4VDry9fy8UE,Thornton pulls off the impossible dive when he nails the Triple Lindy. tt0090685,CHOpoOnkRJE,Thornton watches a new commercial for his clothing business and attends a board meeting. tt0090685,lKBbFHMEvDc,Diane helps Thornton remember and interpret a poem during his oral exam. tt0090685,aP7GTu8tbvQ,Dr. Barbay accuses Thornton of academic fraud and suggests an oral examination. tt0090685,uSLscJ2cY04,Thornton challenges Dr. Barbay about the true cost of business in the real world. tt0090685,k9DO26O6dIg,"During a discussion of the Vietnam War, Professor Terguson yells at a student, inspiring Thornton to speak up." tt0090685,-8ajIeIeJpY,"With no time to write his paper on Kurt Vonnegut, Thornton turns to the man himself." tt0090685,umKFAbLoUxQ,Dr. Barbay sends a threatening message to Thornton through his secretary. tt0090685,4kAViGVuLmM,Thornton reports to the lab for his project and quickly corrupts the chimps. tt0090685,0T3hXtyuX0g,It's love at first sight when Thornton sees sexy English teacher Diane. tt6911608,zqv3YesdtRU,"Ruby, the Donnas, Rosies, Tanyas, and the boys sing ""Super Trouper.""" tt6911608,nB9rg6sxHhU,"Ruby meets an ex-lover Fernando Cienfuegos, and the two sing a duet of ""Fernando.""" tt6911608,bCZRAcsuRgY,"Separated by distance, Sophie and Sky share a heartbreaking duet of ""One of Us""." tt6911608,KOuClUYl0_U,"Donna returns to witness her grandson's christening, and her and Sophie sing ""My Love, My Life""." tt6911608,LrQqG7HxUao,"Sophie fulfills a lifelong dream by singing ""I've Been Waiting For You"" with Rosie and Tanya, and in 1979, Donna gives birth to her daughter." tt6911608,Zo0d4xk3BXw,"Donna plays hard to get, Bill plays hard to resist, and lovestruck Harry can only watch from the dock." tt6911608,3lR-s-Q5XsQ,"Despite the storm, Bill and Harry bring boatloads of reinforcements to attend Sophie's hotel grand opening, including her husband Sky." tt6911608,YSN08rz66zE,"At their college graduation, Donna, Rosie, and Tanya sing ""When I Kissed the Teacher.""" tt6911608,jq_tO6NAlPI,"Rosie and Tanya help cheer Donna by singing ""Mamma Mia""." tt6911608,pHXL7yantDY,"Donna and Harry express their intentions and sing ""Waterloo"" in a crowded Parisian restaurant." tt3640424,ISKL5Sy_Mt8,Max and Marianne are given a thorough vetting by Hobar before being allowed to attend a Nazi gala. tt3640424,Mkn0Iji6g9w,Max recognizes a German officer sitting near him in a cafe and rushes to stop him before he is outed. tt3640424,HpGmAvMtScw,Max and Marianne release long-built tension before first mission. tt3640424,w5oWgKtku3Q,Max forces Marianne to play the piano in order to find out whether or not she really is a German spy. tt3640424,s43ARFFNrz0,"When the couple is caught trying to make their escape, Marianne makes a fatal decision." tt3640424,Y6CLpg06kFE,German soldiers arrive at the police station Max has infiltrated in order to gather information. tt3640424,ntKYG1LdbV8,Max and Marianne infiltrate a Nazi gala in order to assassinate a German ambassador. tt3640424,QaUjGv3GLeg,Marianne tries to seduce Max. tt3640424,E0og5D_sPpM,Max waits for a phone call detailing information for an important mission while Marianne attempts to distract him. tt3640424,Pl1dl--4OBE,Max and Marianne search for shelter during an air raid when a downed plane begins crashing toward their home. tt0427152,71pIZ76YvR4,Tim is surprised by Barry's sincere stupidity. tt0427152,A_R76lKU0DI,"Barry accidentally invites Tim's stalker, Darla, over for the night." tt0427152,HHRCWQEM7UQ,Tim's important dinner is ruined when his stalker Darla arrives. tt0427152,C2KN6BHuPWA,Kieran explains the ecosystem of sex to Tim. tt0427152,-7-2-088LnM,A pet psychic has a spiritual episode after dinner is served. tt0427152,KaVglFjQynk,Barry pits his brain control over Therman's mind control. tt0427152,MVRR0XlqA4g,"Tim meets Therman, the mind controlling tax specialist." tt0427152,9BdW5LHQvjM,"Darla tries, and fails, to use Barry to make Tim jealous." tt0427152,E_TbL7vdWGo,"Tim reveals the true intent of the dinner, leading to a revolt by the 'idiots' in attendance." tt0427152,zbHFgQ419Qs,Barry is shocked to see Therman show up at the dinner. tt0077504,deUroRuOCwM,Sonny holds a gun to his head as he talks with his girlfriend Mary Ellen. tt0077504,JuxyMqr7FNA,Sonny attempts his first suicide by swallowing a bunch of pills but he's unable to keep them down. tt0077504,0aKB_Qm-z6g,"Dr. Maneet, a specialist in death therapy, dies in front of Sonny." tt0077504,tDD6wnNN-IQ,"Sonny and Marlon tries to devise new ways for Sonny to kill himself, but get sidetracked by orderlies." tt0077504,lb6nAmbkk9Y,Sonny meets Marlon in the nuthouse. tt0077504,CjXwJJQ-8XM,Sonny weeps and weeps in a full elevator. tt0077504,kZRq9scxIWM,Marlon tries to help Sonny kill himself. tt0077504,7ZzaLI6n1pU,Marlon shoots at Sonny who has had a change of heart and now wants to live. tt0077504,PUFwiKDWxUo,Sonny plays a game of chicken while driving against an old lady. tt0077504,kCrtP_gPMwk,Marlon tells Sonny about his family background and how he landed in the mental institution. tt0077504,9qdMVMCGr48,"During an attempted suicide by drowning, Sonny decides he wants to live." tt0111143,UsNnkax2wNA,"Local gangster Duke Rollins and his goons fit Dr. Tam with some cement shoes, only to be interrupted by The Shadow !" tt0111143,RFBlDixa33k,"In Tibet, evil warlord Ying-Ko is forcefully taken to the inner sanctum of the mysterious and powerful holy man Tulku and his blood thristy knife, the Phurba." tt0111143,6DlOr1PP0Fc,The Shadow attempts to rescue Dr. Reinhardt from Khan's Mongol warriors. tt0111143,YKvG96jMVWE,"After the New York Museum of Natural History mysteriously recives the coffin of Genghis Khan, a poor guard discovers that it contains a body very much alive." tt0111143,ybF7eOf_n4s,"While Margo Lane and her father try to disarm Khan's atomic bomb, elsewhere in the hotel The Shadow shows Shiwan Khan the strength of his powers." tt0111143,ROqfvY68ijM,Lamont and Margo both have drastically different dreams. tt0111143,fEsN1FMfBvI,The Shadow falls into a watery grave of a trap when tracking Farley Claymore. tt0111143,oZ1Mz78d3wI,"The Shadow finally confronts Shiwan Khan, who pulls out an old and very sharp friend to aid him in dealing out death." tt0111143,U7HxeKhKgwM,"After entering Shiwan Khan's base of operations, The Shadow runs into the fully armed nervous wreck that is Claymore." tt0111143,Ueq8bUwdm80,"After surviving a failed assassination attempt, Lamont meets up with his evil rival Shiwan Khan in a Chinese restaurant." tt0117107,bHW5h5O-e5I,Hoover questions General Timms about the murder of Allison Pond. tt0117107,sGPeVmnAFAI,General Timms explains his twisted philosophy of leadership. tt0117107,31LlQhZmSYs,"When Chicago mobster Jack Flynn mocks Hoover, he gets more than he bargained for." tt0117107,TcJjhnPrM9o,"Hoover questions Allison, but is distracted by her beauty." tt0117107,MM1no56lIjw,Special Agent McCafferty shows an interest in the murder of Allison Pond. tt0117107,uydWF18xoCQ,Hoover and his boys are caught trespassing on military property. tt0117107,MtyfXKbZUus,Max and Allison have a heart-to-heart conversation that ends with a kiss goodbye. tt0117107,O2yNsybczj4,Colonel Fitzgerald arrests Max and his men for entering restricted military territory. tt0117107,Vln90evTYog,Max teaches the FBI agents who holds the power in L.A. tt0117107,NfQcD7ZLWL0,"Hoover and his men take care of a mobster by introducing him to ""Mulholland Falls.""" tt0117107,p9Bo67_slJY,Hoover and his crew head out of the courthouse to investigate Allison Pond's murder. tt0281686,g2tNQ_6-kpg,What was Marilyn Monroe like in bed? tt0281686,s039YJGaP-Y,"As Elvis and Jack discuss the purpose of Hotep's existence, they are paid a visit by the mummy himself." tt0281686,Fz7dtq-saJo,"After learning about how threatening the mummy Ho-tep really is, a downtrodden and defeated Elvis finds the resolve to get up and do something." tt0281686,IRycPfFjVBI,Elvis battles Ho-tep in one last confrontation. tt0281686,kVujmsfAIUk,Jack shows Elvis the mysterious Egyptian hieroglyphs he discovered written inside of one of the stalls in the men's room. tt0281686,1R4FATHHlTU,"Elvis reminisces about the glory days of living as someone else's double. Then, one night while performing as Haff, Elvis injures his hip in a freak stage accident." tt0281686,iGk7QYThMTk,"Elvis encounters a nasty beetle in his room, and ends up burning the insect with a portable heater." tt0281686,t_JOKNfSn1w,"Elvis reveals his reasons for shunning the limelight when he recounts the time he switched places with Sebastian Haff, a lowly Elvis impersonator." tt0089489,5H_MyLSpRSs,A corpse resurrects spontaneously and steals the life force of the a doctor. tt0089489,_iUWKODwAN8,Dr. Fallada tells Colonel Caine that he believes that Space Girl is really a vampire. tt0089489,AsfxK5fWMu8,Two vampire zombies begin to lose control when they can't feed. tt0089489,_5IVdeFrhv4,Caine shoots a possessed Dr. Fallada and watches as Fallada's lifeforce drains out of his body. tt0089489,zzabhummvzk,Caine kills the First Vampire with the sword he took from Fallada's lab. tt0089489,bQObeZ5R0mc,"Carlsen smacks Ellen around, trying to get the being to leave her body." tt0089489,e9_4oS3hTPk,Space Girl escapes Dr. Armstrong's body and reconstitutes herself before exploding into a pool of blood on the helicopter floor. tt0089489,Hsh6n5RfCoc,Carlsen kills Space Girl and himself with Caine's sword in order to save the world from total destruction. tt0089489,7uOhTRONUbY,"While interrogating a sedated Dr. Armstrong, Space Girl reveals herself to Carlsen." tt0089489,1d-Q6pT4pxo,The two male vampires awaken and scare the crap out of a pair of soldiers. tt2042447,a2xcMwtUQFY,"A few teenagers sneak in to an abandoned house to have some fun, but don't realize they came to the wrong place." tt2042447,Wafr97M23uU,Melanie completes the curse and kills her father. tt2042447,oQnm8w8f-lM,"Hired to help safeguard the house, Donny becomes the latest target of the Amityville curse." tt2042447,bH3ulIPKNrc,"Tyler find his mother dead in the kitchen, and it looks like he might be next." tt2042447,VbAh3UbaGHQ,"In the wake of some terrifying events and deaths, Douglas Benson has a nervous breakdown and gathers his family for a ""family meeting"" ever." tt2042447,lryUDOG6bS4,"Lori and a local boy sneak into her house, but her dad catches them." tt2042447,VHkoII8ewWk,Lori Benson is woken up by a mysterious force and falls victim to the Amityville curse. tt1912981,6SDs2BTqYpw,Wayne comes back to bed only to find that his wife might not be the only one in there. tt1912981,ISXVGrqvV1A,"Wayne finds his murdered son and wife in the house, and begins the steps to finally destroy the evil that has haunted his home." tt1912981,G1Q68kAK4qc,"The sheriff's neighbor, Mary Winston, stops by the house and is forced into committing suicide." tt1912981,FJnJJOAN_PU,The sheriff of Salem comes home just as his family is being brutally murdered. tt1912981,YU_Sm_2vH5w,"While escaping the house, Carrie and Kyle meet their deaths at the hands of an unsuspecting assailant." tt1912981,LiA9AsjqVWU,Wayne finds his possessed daughter Ali and kills her in the hopes that the evil presence doesn't survive. tt1502407,MuW72eVCQno,Officer Hawkins and Dr. Sartain run over Michael Myers. tt1502407,KuStVllxFuI,Michael Myears rouses from the edge of death and kills Dr. Sartain. tt1502407,bEBQWhgGM1g,"Michael Myers wreaks homicidal havoc on a gas station, and then dons his mask." tt1502407,4-3B-Y9bM0M,Michael Myers kills Ray and sets his sights on Laurie. tt1502407,0p2Oyd040pg,Michael Myers kills the babysitter Vicky. tt1502407,Je3Vjos0TlQ,Three generations of Strode girls fight off Michael. tt1502407,7qhNVDPZ-0I,Reporters Aaron and Dana show the incarcerated Michael Myers his mask. tt1502407,Iy2kMtJa2q8,Michael Myers goes on a random murder spree. tt1502407,k0LLcRLSSlE,Oscar makes a bad pass at Allyson and is rewarded in kind by Michael Myers. tt1502407,j7m47I9BuuY,Laurie fights Michael Myers in her house. tt6133466,JV05-E5FF2g,"With Nya, Dmitri, and the rest hiding in the bedroom, Skeletor comes from behind to kill the mercenaries, and gives Dmitri enough time to blow up the group of soldiers." tt6133466,NdbZtOpgsUY,Isaiah saves his sister Nya from Skeletor. tt6133466,kEL5reRoNk8,The first kill of the night is televised and goes viral. tt6133466,WQP_cY7FAyQ,"Skeletor puts down partakers at a previously positive ""Purge Party"", while Dmitri fights off hookers who were hired to kill him." tt6133466,P9jJ6Bejayg,"Nya, Isaiah, and Dolores kill the mercenaries sent to clear out the apartment building, with a little help from Dmitri." tt6133466,AVHPmsWZnb4,Dmitri takes out two mercenaries in a stairwell. tt6133466,7oDSPSwMw5k,Nya and Isaiah try to get to safety as government hired mercenaries dressed like cops and the Klan start massacring their way through the city. tt6133466,_qxAcodjpCo,"Dmitri gets run off the road by a flaming truck, forcing him to kill the mercenaries targeting him." tt6133466,lCL7DI3ah40,Dmitri and his gang gets shot at by the drones that were supposed to only observe. tt6133466,UX1-VvE01iw,"Dmitri and his gang gets revenge on the mercenaries, and saves some of the citizens." tt4786282,evM3k7ep4wo,Becca finds out that Diana has been living in the house the whole time. tt4786282,mpfBH5WLlOA,Becca and Martin are rescued by police but Diana has other plans. tt4786282,zn9D_4bE0hM,Becca and Martin are cornered by Diana. tt4786282,jYbI8iVYCpc,Martin is chased by something in the dark. tt4786282,tw84SFLxC_o,Becca comes face-to face with Diana. tt4786282,M-HysTegELs,Sophie finally stands up to stands up to Diana tt4786282,MZaX-RbQ7ic,Bret is stalked and attacked by Diana. tt4786282,nD8KtgWozeM,Paul is chased by a mysterious force while leaving his office late at night. tt4786282,NqJ6llRZg-M,Becca and Martin get an unexpected delivery while trying save their mother from Diana. tt0096118,LWoKa0wYTJk,"Molly knocks out Angela, and escapes her cabin of dead campers." tt0096118,NPmAEqlzKqE,"When Angela finds two sisters drunk with a boy in the woods, she hosts a barbecue in their honor." tt0096118,kzxz5xezOAI,"Angela will do whatever it takes to ""drill"" some self-respect and common sense into Mare." tt1980209,U_MNiopwFxs,Lugo recruits ex-convict Doyle. tt0096118,j0z0V2JJ5II,"When Anthony and Judd play around with masks of notable horror icons, Angela shows up to play for real." tt0096118,AxrQtWFF91k,Angela kills the babbling Demi. tt0096118,kSaOMRXiLVA,Angela is furious when she catches the boys doing a panty raid in the girls' cabin. tt0096118,vmWm02fUJ-o,Angela's true identity is revealed to the other surviving councilors. tt0096118,IqJWWBRnrH4,"Angela sings the ""Happy Camper Song"" after being awarded counselor of the week." tt0096118,njz1p35e_EU,"Angela has a terrible nightmare about the camp murders sung to the tune of the ""Happy Camper"" song." tt0096118,AaMkmiZ9bMM,Angela stabs Ally and drowns her in the outhouse toilet. tt1980209,aZbGlkGWiZc,The gang celebrates after getting away with stealing all of Kershaw's money. tt1980209,5K6sh7HZri4,Adrian recollects meeting the his future wife Robin. tt1980209,iKp5ARBBpyc,The Sun Gym gang assimilates into the community by starting a Neighborhood Watch. tt1980209,XOfjQQT9O08,Lugo tries to butter up Frank before he and his friend rob him but loses his temper. tt1980209,Z9vRmexWHUo,Lupo explains his version of the American Dream. tt1980209,hIUrt0AsTjw,Doyle's finds out running from police while high on coke is harder than one might think. tt1980209,JnjO0v-AYFo,The Sun Gym crew tries to kill Kershaw. tt1980209,O0fQ_rrQedE,"The Sunny Gym Gang tries to kidnap Kershaw, with little success." tt1980209,esg4w4b2xvc,"While Paul disposes of body parts, Lugo and Adrian try to return a ""faulty"" chainsaw." tt0479884,0OppC7vTtY0,Chev Chelios saves Eve from Carlito's men. tt0479884,swn9_FjwmJo,Chev Chelios is chased by the cops through a mall. tt0479884,YNBtb-8zpko,Chev Chelios hallucinates in the elevator. tt0479884,UBNLrL7RvJM,To get his adrenaline up Chev Chelios has sex with Eve in the middle of Chinatown. tt0479884,IHDzQ29EgsY,"Chev Chelios tries to get answers from Verona's brother, Alex." tt0479884,aH6N58NST30,"Chev Chelios saves an oblivious girlfriend, Eve, from the danger that surrounds her." tt0479884,G_ee7q8w-PU,"Expecting a set up, Chev Chelios infiltrates Don Kim's factory through the roof and finds one of Verona's bodyguard's." tt0479884,nNtl5Hv0bv0,Chev Chelios says his last goodbye to Eve while falling from the sky. tt0479884,IBwJ7rFHpE8,Chev Chelios and Eve are in a high speed chase with Carlito's gang. tt0479884,U59aJCoJLRU,"Chev Chelios wakes up to find out he's been poisoned by his rival, Verona." tt0479884,Y6hHVWwwfPA,Chev Chelios forces the doctor to use the defibrillator on him. tt0479884,KVV02IJlGCQ,Chev Chelios steals a motorcycle from a police officer. tt5734548,2GvyC7s3RpU,Odysseus and Circe must fight the terrifying cyclops. tt5734548,d6263F3UkWo,"After returning to his kingdom, Odysseus kills all the suitors that aim to marry his wife Penelope." tt5734548,V-hOCaVISok,Odysseus and Circe must defend Ithaca and fight the horrifying Kraken. tt5734548,y_Zo1Wg4RAM,Odysseus proves he is the true king by stringing his former hunting bow and shooting an arrow through the five golden rings. tt5734548,FXeNdV-FTjI,Odysseus uses a powder to break the sirens' illusions that have tricked his friends. tt5734548,s_SM1Hly-uw,"While on the island, Odysseus grows disillusioned of his fantasy life and asks for a way out." tt5734548,Z1DO7_hHqbw,"Odysseus' ship passes a mysterious island, and a siren song calls Odysseus to swim to shore." tt5734548,kcrHhDoUS1k,Odysseus and the rest of his warriors emerge from the Trojan Horse and wreak havoc on the city of Troy. tt5734548,wnvRIdndQdk,"Odysseus, Circe, and Aesus enter the Paths of the Dead and encounter the dreaded Agamemnon." tt5734548,LVbkD8ZogwA,"After taking part in the sacking of the city of Troy, Achilles is killed by the beautiful Circe." tt0409847,l1X4RDCFmsE,"A fleet of alien spaceships attack a sleepy, Western town and abduct many of its residents, and Jake Lonergan uses an alien weapon to shoot down one of the spacecrafts." tt1335975,4d9fx7umXgg,"Kai asks for weapons from a Tengu Master, while Oishi has to resist the Tengu master's mind games." tt1335975,qC_pkxnYQfk,"Kai, Oishi, and the Rōnin are ambushed by the Witch and Kira's warriors, and presumed dead." tt1335975,SroZoan9faw,"During Mika and Kira's wedding celebration, the Kai and the Rōnin sneak into the palace to exact revenge on Lord Kira." tt1335975,FZOF6ePjVcM,The Witch casts a spell on Lord Asano which causes him to attack Lord Kira. tt1335975,ffmSFNEG6pM,"Kai secretly fights the Golem Samurai, but when he is discovered, Mika risks her life to protect him." tt1335975,LoBAmFanDhY,Kai singlehandedly saves his fellow Rōnin when they come across a group of rival warriors. tt1335975,T4WNCHc_MmQ,Kai and his fellow warriors face off against a massive forest beast. tt1335975,EEaUjfxQQFI,Ôishi leads the Ronin in the Bushido ritual of seppuku. tt1335975,VmT0mZH5ivo,Oishi and Kai face off in a sword battle before escaping from the slave pits together. tt1335975,74DUcGnFH8g,In two epic battles Kai defeats the Witch and Ôishi defeats Lord Kira. tt0409847,S6rgOlhmAHo,"A gunslinger wakes up in the desert with no memory, weird tech on his wrist and three bounty hunters on his tail." tt0409847,r1md9sIev2M,"Jake covertly blows up a portion of the alien mothership, but this sets the aliens upon them." tt0409847,I21bX4cEhRM,"When the aliens attack Col. Dolarhyde and his men, Nat Colorado sacrifices his life to save Dolarhyde." tt0409847,GfLc8Z4_lFw,"With the help of the Native Americans, Ella is brought back to life, and reveals that she is from another alien race." tt0409847,1zQvfrTK6Y8,"Ella is abducted by the aliens, and Jake jumps into action to rescue her." tt0409847,5dCI82ffuIc,Jake gets a drink in the saloon while the Sheriff and his men arrive to bring him in for some questions. tt0409847,xW4xczuVMq4,Jake and Ella sneak into the alien ship and free the humans who have been captured by the aliens. tt0409847,AbV04B_yV34,"Col. Dolarhyde saves Jake from being killed in the mothership, and Ella sacrifices herself and blows up the alien ship." tt0409847,xsM9jr1e4F4,"When Emmett is attacked by a hostile alien, the preacher Meacham comes to his rescue, but the alien fights back before Jake and Ella can show up." tt0076239,BkNCfTfR6fQ,"As Scott and Cindy get intimate, Sanders and his men show up to ruin the occasion." tt0076239,pM87ObBNOk4,"After spending the night in the freezing cold, Susie thinks that John is dead." tt0076239,emW6qKMxIUU,"After stealing the ransom money, the gang makes a fast getaway." tt0076239,xsK7WF3jWI4,"While her friends get hammered, Susie suddenly finds herself in the arms of an older man." tt0076239,N26K5UeOTPE,John gets into a pissing contest -- literally -- and wins a bunch of money. tt0076239,FaX0hq8BZc8,John and the gang make a run for the Canadian border. tt0076239,Jj6H6tJvRjU,"Scott and John hold up the local bank, while Susie drives getaway." tt0076239,jlcZPO2FhGE,"When a mysterious woman catches Scott's eye, he's all ears." tt0076239,RM0NW8MF9wY,Scott and John take Sanders' car out for a joyride. tt0076239,f-DiniX_1mI,Scott tries to teach John and Susie how to shoot a pistol. tt0076239,96dlvQbYEds,"With his mind in disarray over Susie's affair, John resorts to reckless and petty theft as an outlet for his emotions." tt1823051,BshBOgRLN28,"While racing Kayce, Thomas spins out, flips over, and bites the dust." tt1823051,9tx1z5_iVeo,Kayce shows up to Tom's funeral demanding that he get Rick's car as a means of resolving his debt. tt1823051,27ARVhE-a58,Rick Merchant wins a street race at the Sepulveda Suicide races. tt1823051,G6PcFmNCQpA,Kayce threatens and sexually harasses Claudia and tries to force her to undress. tt1823051,HxfzrUYFsLk,"Rick and Claudia try to get away from the vengeful Kayce, but get involved in a horrific crash." tt1823051,opXI29YEI5s,"Rick and Kayce face off in the final race to determine the fate of their cars, their girls, and their lives." tt2543164,9YJRtvamIjU,Louise explains the linguistic nature of a question to Ian and Colonel Weber. tt2543164,C2IvmQI_efs,Louise learns what happened to one of the heptapods. tt2543164,2kt3CmzYGu4,General Shang explains the only thing that stopped him from starting WWIII was what Louise told him over the phone. tt2543164,sg39yDRzklg,"Louise realizes she has the ability to see the past, present, and future at the same time." tt2543164,G6uZp-33qcY,The Heptapods share communication for the first time. tt2543164,fOFGL7-qmqs,The Heptapods reveal the purpose of their arrival to Louise. tt2543164,Rd_gE_G9R1k,The Heptapods give Louise and Ian all the information they can. tt2543164,i6AtG8BdONE,Ian details the sum of what they know and don't know about the Heptapods. tt2543164,dQlExOgF5eU,Louise and Ian meet the aliens after they arrive. tt2543164,mBdWBpsA5eQ,Louise makes a breakthrough in communication with the heptapods. tt0134983,_EjWpjky5lU,Kaela attempts to save Marley as Nick tries to prevent a crash. tt0134983,vrEjev5DoXc,"While Nick searches Titan 37 for fuel, Larson tries to ensure that he never returns to the ship." tt0134983,fgDgZGePcwk,The crew of the Nightingale respond to a distress call via a disorienting dimension jump. tt0134983,VILmrL5jP7s,"When Danika learns that Larson has stranded Nick on Titan 37, he blasts her out of the airlock." tt0134983,W-7hoLpXFXE,The crew of the Nightingale intercepts an evacuating ship containing a mysterious young man. tt0134983,iSio5xjSYqs,Nick returns from Titan 37 with a plan to destroy Larson and the alien object. tt0134983,p-tvo3Hz3nw,Kaela and Nick use the alien object to lure Larson to his death. tt0134983,rUbY9uikvWc,Nick and Larson disagree about the best way to handle the alien object. tt0134983,edhJGqAjG7s,"With only one chamber remaining, Nick and Kaela make the dimension jump together, with surprising results" tt0134983,DC_6r5VR5_U,Nick brings Kaela a bottle of pear brandy as an aid in seduction. tt0134983,S_QFbRtEF7I,"Yerzy tries to get to the alien object, but Karl has other ideas." tt0134983,86xtQC4rp98,Kaela examines Nick and encourages him to interact with the rest of the crew. tt0062622,Gfje9_QRQbk,"Having gone from Jupiter and beyond the infinite, Bowman arrives in a strange bedroom with Louis XVI-style decor." tt0062622,XDO8OYnmkNY,"Believing they're talking in private, Bowman and Poole discuss disconnecting the Hal 9000 computer, but they don't realize Hal can read their lips." tt0062622,Wy4EfdnMZ5g,"The Hal 9000 computer refuses to obey an order from Bowman by simply responding in monotone, ""I'm sorry Dave, I'm afraid I can't do that.""" tt0062622,_XuDmoP5scY,"As Dr. Dave Bowman – now an elderly man – lays on his death bed, the monolith appears, and the star child is born." tt0062622,avjdKTqiVvQ,"Using a bone as a weapon, an ape beats down the leader of another tribe to reclaim control of a watering hole. Triumphant, the ape tosses the bone into the air which transforms into an orbital satellite, jumping ahead four million years of human history." tt0062622,HH37JTBpi2A,"When Bowman disconnects Hal 9000's memory core, Hal regresses to its earliest programmed memories." tt0074559,96IU0EisCes,"Holding Chuck at gunpoint, Dr. Duffy reveals the master plan behind the creation of the human duplicates." tt0074559,BkZ6lFCzAwM,Chuck and Tracy discover that the scientists at Futureworld have made robotic replacements of them. tt0074559,M4LidfkbW68,"Tracy dreams of a daring rescue by, and a torrid affair with, the Gunslinger." tt0074559,NBfCeTdLDbQ,Duffy explains to the media how the robots malfunctioned at Westworld and the other parks. tt0074559,yR3zsO8pCMw,"Harry is brutally murdered by Chuck's robotic doppelgänger, as Chuck watches helplessly from afar." tt0074559,QC5re6k5nLk,Ron asks Tracy if she plans on having sex with a robot. tt0074559,Cq2Wzdd_PYs,Tracy has her brain images recorded while Chuck and Duffy watch. tt0074559,WhT70B0c7TE,Chuck and Tracy trick Dr. Schneider and escape. tt0074559,uDAIoSeEoZA,"Chuck tries to make a truce with Tracy, while also hitting on her." tt0074559,BuPdA_CDITw,"Hoping to make a point, Tracy tries and fails to seduce a robot technician." tt0074559,hfzsR-3PLcg,"Chuck and Tracy walk through Futureworld and do a little ""boxing.""" tt0074559,S4WqfcnVT2g,"Dueling with his robotic doppelgänger, Chuck tries to lure it into a trap." tt0983193,R3KOKpvoLIo,Captain Haddock's pirate ship gets entwined with another ship. tt0983193,93U_80mhzVk,Tintin passes out at the worst possible moment. tt0983193,UsM7OBEMqnk,Haddock duels Sakharine. tt0983193,kXXnZuu72DA,"When Tintin is kidnapped, Snowy races to his rescue." tt0983193,oAjKMLcDlfc,Tintin races after Sakharine. tt0983193,SHaByZZvfFE,"When their plane starts going down, Captain Haddock finds a unique way to power it." tt0983193,gQ48-nl8wwc,Tintin continues to chase after the map fragments. tt0983193,xUHjhz5U1bA,Captain Haddock duels to a fiery finish. tt0983193,O7S9X8e2uhA,Captain Haddock has too much alcohol. tt0983193,02AyhONR_DQ,Tintin attempts to get the key without waking the sailors. tt2279373,RRDbQPvtAxY,Plankton sneaks inside the mind of SpongeBob in order to find the secret formula to the Krabby patties. tt2279373,H92n6qsNHbY,Plankton uses teamwork to help his friends fight against Burger Beard. tt2279373,RxyMbaDX22g,SpongeBob and the gang get super-powers from the storybook and take on Burger Beard. tt2279373,gs3GHB24IaM,SpongeBob and Plankton go back in time to look for a way to find the Krabby Patty recipe. tt2279373,32OSGQmjP1Y,SpongeBob and Patrick face off against Plankton in order to stop him from stealing the Krabby patty recipe. tt2279373,ctjucF9fiFw,SpongeBob and Plankton try to help Bubbles and get into trouble. tt2279373,5TG1Wh04D1g,Bubbles interrupts the theme song with a rendition of his own. tt2279373,W3x0ZxDSF38,SpongeBob Squarepants and his friends are transported to land so they can find whoever took the Krabby patty secret recipe. tt2279373,3FKMUa7vCZU,Mr. Krabs tortures Plankton using the annoyingness of SpongeBob Squarepants. tt2279373,tPJJlCdrJ0M,Burger Beard goes after SpongeBob and his friend after they try to take the Krabby patty formula back from him. tt3095734,woSj0M9Decw,Creech takes to the roof to escape the clutches of Burke and his men. tt3095734,YmC-BayMaDg,Tripp and Meredith rush to escape Burke and his men from stealing Creech. tt3095734,iNQYIdE6DOg,Sheriff Rick comes to the aid of the gang as they race to get Creech and his family home. tt3095734,4QR_9BehbWc,Tripp and Meredith team up with Dowd to free Creech and his family. tt3095734,W1w1qcvdTi8,"Unsure of what is chasing him, Tripp tries to trap the monster in a car compactor." tt3095734,xNNd9Uc9J_8,Tripp and Meredith rush to escape Burke and his men. tt3095734,D_N9S0bAiWI,Tripp and Creech get in a monster truck wrestling match. tt3095734,uioT_3dqzXc,Tripp and Creech race to get his family back to their home deep inside a chasm in the Earth. tt3095734,N27ZYQKRYnQ,Tripp and Meredith bond with Creech on her ranch. tt3095734,Ig6hIs0jsjg,Tripp and Meredith have trouble with Creech after he gets souped up on gasoline. tt2202750,jBMb3PU-2-w,The puppies try to escape after accidentally trapping themselves in the garage. tt2202750,R07vQvbALWk,"After finding a nice feast of trash, the hungry puppies are confronted by a gang of mean, stray dogs." tt2202750,FJ_NU1sSk5A,"The puppies try to call 9-1-1 to find their mom, but while doing it they see a group of kids breaking into their home." tt2202750,3XX9d9BO5qs,"After being tricked into breaking into a family's home, the puppies must stall while trying to get Oliver out of the house." tt2202750,FqtEB6j5jEQ,"Oliver loads the puppies in a wagon, and bikes them around town in search of their lost mother." tt2202750,jhMCxDi0Xs4,"With Frankie's fiendish plot firmly in motion, it's up to the puppies and Oliver to stop the crime and catch the criminals." tt2202750,1rVMJNSZHZg,Oliver is caught and introduced to the slime-ball Frankie who lets Oliver on on his devious plan. tt2202750,RruqW_fwhEg,"With their mom away, the golden retriever puppies take the chance to run around the house and play freely." tt2202750,oKdCaLj8b5o,Oliver and his parents celebrate Christmas Day with the puppies and their mother. tt2202750,IRdxr5ilGfw,"Frankie reveals his master plan to steal $10,000 from charity, and how the group of kids will be used to help him." tt3860916,fn9gU50qXvU,Danny faces off against a Monster Truck in a demolition derby. tt3860916,cqUpOLpJ1iU,"Danny, Cabigail, and Vin make a plan to escape from juvie." tt3860916,q_Gp2jL-V6I,Cabigail voluntarily joins Danny on his way to Juvenile Detention. tt3860916,o2GcoDvPVuA,"Danny and Cabigail come across a being calling itself the ""Spirit of the Forest""." tt3860916,y8cL18qVz6E,Carlotta laments life on Clunker Island. tt3860916,qTwgG6t94Ko,Danny laments the life of an adolescent convertible. tt3860916,ITaBaJEJLaA,Danny must defeat the Monster Truck again in order to free his dad from Clunker Island. tt3860916,UpYME9Wz8Xc,Danny and Cabigail finally arrive at Clunker Island but are stop by a tribe of junk cars. tt3860916,l12dwyHThc8,Vin shows Danny how to break some rules. tt3860916,E9smjLi8m28,Danny and his father have an argument after he is caught drag racing. tt0938283,Cm5NLiqmVtk,Zuko faces off against Katara while Aang meditates. tt0938283,KMOr9s3kfM0,Aang enters the Avatar State to defeat the Fire Nation. tt0938283,CYGCwkmaa1s,"Aang is a master of waterbending defense, but he struggles with offense." tt0938283,Nqt6-rPGGEo,The Avatar must escape after being captured by Zuko. tt0938283,Px2L96GVrKs,Zuko and Commander Zhao face off. tt0938283,kU74wgKk8lo,Commander Zhao commits sacrilege in order to ensure victory for the Fire Nation. tt0938283,bvnOqxRHjuc,Zuko fights Aang to regain his honor. tt0938283,vejLIHky2HE,Princess Yue relinquishes her soul to save her kingdom. tt0938283,Gif5ZnaOOQ8,Aang and the Blue Spirit fight Fire Nation soldiers as they escape. tt0938283,HR2kbOK8i6I,Aang rallies the prisoners of a fallen Earth Tribe village. tt0082348,J-fa9awvFBY,Morgana and Merlin discuss the secrets of Magic. Gawain accuses Guenevere of an affair with Lancelot. tt0082348,3mNDakZu1JA,"Merlin shows Morgana his lair, but ends up impaled by Excalibur when Arthur discovers Lancelot's betrayal." tt0082348,2C8fB8p6crY,King Arthur and Lancelot do battle and Arthur calls upon the power of Excalibur to gain the upper hand. tt0082348,bKbZTFrWing,"Merlin comes to Morgana in a dream and convinces her to use a spell which causes her to age rapidly, and confuses Mordred." tt0082348,61nCIyBCmjg,"Perceval seeks the Holy Grail to save King Arthur from the curse laid on him by his evil sister, Morgana." tt0082348,Af-N8CLLoqU,King Arthur meets a stubborn knight Lancelot and they battle for dominance. tt0082348,7ZEqMqBLOOI,King Arthur and the Knights of Camelot fight for their kingdom. tt0082348,H2hbov4Rb6g,Merlin and King Arthur speak to the men after their victory and forge plans for Camelot and the round table. tt0082348,XAIeh0YarFs,King Arthur gives Sir Uryens the choice to give him his Knighthood and swear allegiance to him as King or strike him down and claim the throne for himself. tt0082348,4gO9OFumO8U,"Lancelot escorts Guenevere to her wedding, but things get complicated when Lancelot professes his love for her." tt0026714,7dgOcvrxxac,Puck addresses the audience at the conclusion of the story. tt0026714,cv8yjJQg4Nc,"Hermia is confounded by Lysander's change of heart, and Helena is convinced that her suitors are mocking her since neither loved her before the spell." tt0026714,31vkz05skoc,Hermia awakens to find that Lysander is gone. tt0026714,p6IvB-2jYtY,"Titania wakes from her slumber and falls in love with Bottom, the first thing she sees." tt0026714,Xurw2Ar9NNk,Oberon plans to meddle with the affairs of Demetrius and Helena after eavesdropping on their quarrel. tt0026714,9dN7jGSbsVE,Oberon gives the mischievous Puck a task to perform. tt0026714,2GFzqqC8iUg,Helena is wooed by both Demetrius and Lysander when the fairies place both men under the same spell. tt0026714,U0HHhK_MrWg,Hermia makes a fuss about being pressured to marry Demitrius when she really loves Lysander. tt0026714,wsFQrTAEs7A,The lovers all wake from their spell and rejoice in thinking it was all a dream. tt0026714,yJ_3DswWIeI,Oberon reunites with Titania after lifting her spell and fulfilling his plot. tt0026714,sZ6t_-wKImw,Puck transforms an unsuspecting Bottom into a donkey. tt0026714,9nwSOUvKyys,Puck puts a spell on Lysander when he mistakes him for the Athenian. tt4912910,585p7sJhiFk,"During a shootout, Walker stabs IMF Secretary Alan Hunley and escapes." tt4912910,mqkYeGeQ1f4,Hunt and his team free the notorious terrorist Solomon Lane from the French authorities. tt4912910,0pUMzDEV-DE,"Hunt and Walker attempt to parachute into a party, but hit some bad weather along the way." tt4912910,egwR6gS9UMM,Ilsa saves Hunt and Walker after their suspect gets the upper hand on them. tt4912910,HsMVFxZ43iU,Benji leads Hunt on a chase around London to catch up to Walker. tt4912910,WLKpgzXHKLA,"While Ilsa fights Solomon Lane, Hunt crashes his helicopter into Walker's." tt4912910,Veh9KV9fm6s,Ilsa chases after Hunt and Solomon Lane. tt4912910,14zxmnIDoLs,Hunt violently commandeers a helicopter in pursuit of Walker and the nuclear detonator. tt4912910,kvzzBebEAHQ,"With the clock quickly ticking, Hunt fights Walker for the nuclear warhead detonator." tt4912910,Qwx9wZgxUoQ,Hunt leads the French authorities on a chase through Paris. tt1205537,wn_8YBvVugo,Cathy gets kidnapped by Viktor Borovsky. tt1205537,WC7TpzxGktk,The Russian government activates a family of sleeper agents in their attack. tt1205537,8n6mcd5Odj8,Jack Ryan escapes with some help from Harper. tt1205537,GQYCNF_zoDM,Viktor taunts Jack Ryan by promising to kill Cathy. tt1205537,8NZ9CLszc_g,Jack Ryan fights off an assassin in his hotel room. tt1205537,tuusFUTcCO8,Jack Ryan's chopper is hit by an enemy missile while in the mountains of Afghanistan. tt1205537,relfjwjhscE,Jack Ryan saves New York from a terrorist plot. tt1205537,nEGbOGGiENU,Jack Ryan chases after a terrorist in a disguised police van. tt1205537,fKaiHVTL5nQ,Jack Ryan fights a terrorist in the sewer. tt1205537,0zsUFpPjt8g,Jack Ryan enacts his plan against Viktor. tt2538128,uqfD6UPvkR8,Steve and Lacey reach a obstacle on their journey that could come between them getting to the kids. tt2538128,9cw9NI4BKnQ,Steve and Lacey rescue a group of survivors from an incoming ice cyclone. tt2538128,fD3pjFbgcyc,Steve and Lacey race to escape the overflowing tunnel. tt2538128,bK_2x293Urw,"Ryan rescues Taryn before ceiling caves in, yet there's no escaping from danger as buildings outside crumble." tt2538128,tRuqSw7mX5A,Ryan and Taryn receive a phone call from their father Steve and his girlfriend before getting caught in a freakish hail storm. tt2538128,pHH7NwBwxM0,Taryn trapped in a building as her brother Ryan rushes to find help before it collapses. tt2538128,_NEfPBtUqS4,Colonel Ralph and others rescue Steve and his family after their helicopter crashes. tt2538128,0ZkuRt2ZKRE,"After being captured by UN soldiers Taryn, Ryan and Angelique up in more danger than before." tt2538128,h08whCp_tL4,"Taryn and Ryan, in search of a way to keep warm, are greeted buy an angry store owner." tt2538128,5zzYjkS_iMA,Tayrn and Ryan are headed to the store to stock up on supplies when an earthquake erupts through Paris. tt0101452,y64QBxHJiqI,Bill and Ted introduce their band mates to the Battle of the Bands including the Grim Reaper on bass. tt0101452,R81ZAKQzJ5Q,Bill and Ted are visited by their evil robot copies. tt0101452,pLqoZtmyxxk,Bill and Ted watch as the two Stations merge into one giant being. tt0101452,_ZwkQIBp4TA,Bill and Ted crash Missy's new-age seance. tt0101452,EGbVLHy9Lvw,"Bill and Ted ask God for help in saving their women, and they congratulate him on ""Mars, Jupiter...Uranus.""" tt0101452,06L5y4Z9KcE,"At Bill's urging, Ted leaps into his dad's body to address a roomful of cops." tt0101452,S-WVZ-d28yg,"With the help of Station's robots, Bill and Ted destroy their evil selves and rescue the babes." tt0101452,vLt5ei598CY,Bill and Ted drop down a deep hole to hell. tt0101452,tktoOXBmflI,Bill and Ted square off against the Grim Reaper in a series of party games. tt0101452,OAtwRoFSlOE,Bill and Ted wind up dead and meet the Grim Reaper. tt0109045,OroiRWIR2gQ,"Bernadette has words with a surly woman at the local bar, and then later beats the woman in a drinking game." tt0109045,ZreZzV7y18Y,"Felicia performs opera atop the bus, and then later shares a darkly humorous childhood story with Tick." tt0109045,p2QiCFAQ-qQ,"Priscilla, Queen of the Desert." tt0109045,X5dtBoyZ33o,The drag show at the bar gets upstaged by a raunchy ping-pong performance from Cynthia. tt0109045,kevJJDQloNE,"Bernadette, Mitzi, and Felicia make their grand performance." tt0109045,v0gGWiRkjYM,"The guys get an Aboriginal Man in on their campfire performance of ""I Will Survive.""" tt0109045,ec9h1IjltJg,The group fulfills a long-held dream of Adam's to climb Kings Canyon in full drag regalia. tt0109045,9nc12yOA4jM,"Felicia dresses up and goes out for a night on the town, despite being warned about the rough neighborhood." tt2136808,IOV2-bbOHts,Ross meets Mellony Adams to apologize for putting her sex tape online and ask for her help. tt2136808,Gpc4_pqXMVo,Ed confronts Ross about losing his girlfriend and not wanting to do porn causing the two friends to get into a fight. tt2136808,fin0EY5-n_s,"Ed, Ross, Kwan, and Marcus find out that their friend has stolen their sex tape and put it online." tt2136808,wCmL4G9TYMk,"Ross, Ed, Kwan, and Marcus confront Doug about him putting Ed's sex tape online." tt2136808,59-Yznur6tg,"Ross, Ed, Kwan, and Marcus head to a local comic and science-fiction convention to find a former actress who might want to star in their next sex tape." tt2136808,mr0RZ7hUrpU,Danny Silver comes to the guys with a new proposal for their joint sex tape venture. tt2136808,Zb10goz7guA,"Ed meets the drunk, stoned, and lustful actress Mellony Adams." tt2136808,nX4t6GMjNqg,"Mellony Adams fires her agent Danny Silver, and gives him a parting gift he'll never forget." tt2136808,BSmKQGvL9ho,Mellony Adams' agent bursts into the guys' house and threatens them after they made an illegal sex tape of the actress and put it on the internet. tt2136808,2JweD72Ains,Ed apologizes to the gang and gives them the good news about Danny Silver while Kim and Ross get back together. tt0058586,TmALN8vdU0s,Clouseau is awakened by a surprise attack from Cato. tt0058586,QsSD6_V2IYk,Clouseau interrogates Ballon over a game of billiards. tt0058586,E3yX8lT2UAI,"After Clouseau and Maria are caught naked in a traffic jam, Clouseau is demoted by Dreyfus." tt0058586,ZjPPfwVPTDE,"Clouseau searches for Maria at a resort, which he discovers to be a nudist colony." tt0058586,eRNCIg86DKs,Clouseau reviews the case with his usual clumsiness. tt0058586,xYfxboRtKJE,"While exploring a nudist colony, Clouseau encounters a corpse." tt0058586,0oFdsgLP8n8,Clouseau reviews the facts of the Gambrelli case with Hercule. tt0058586,TIu_CYwemFo,Dreyfus tells a psychiatrist his troubles. tt0058586,sSRmhI94MUs,"Before leaving the Ballon residence, Clouseau attempts to return a pool cue to its rack." tt0058586,N9d-c9ooO7s,Clouseau sets his trench coat on fire as he flirts with Maria. tt0058586,ebkY0u1-NKk,"Clouseau recounts the murder, trying the patience and pain threshold of his listeners." tt0078163,DdpMl3_vPmQ,"The bird-brained Clouseau receives a medal for his ""exemplary"" service." tt0078163,dX0dcSJE7ek,"When the Inspector and Simone need disguises for their trip to Hong Kong, they turn to the great Balls." tt0078163,WT6DQ_NO5zw,"When Clouseau's cover is blown, he and Cato are chased through the shipyard and end up in the water" tt0078163,CARc1uUq1lA,"Clouseau goes undercover as a one-legged Swedish sailor, complete with blow-up parrot." tt0078163,nAuz36A1zG0,"In his attempt to best Cato, Clouseau accidentally takes out the intruder, Chong." tt0078163,0z-FtAMg6Vw,"The Inspector and Cato fire up their super car, the Silver Hornet." tt0078163,shE7b_6NNpU,"Douvier hires a Hong Kong assassin, Mr. Chong, who demonstrates his abilities by taking down other contracted assassins." tt0078163,BEKzJzaZ0Fk,"Still smoking from the bomb attack, Clouseau accidentally burns down the Commissioner's office." tt0078163,q8HcMk_IimM,Inspector Dreyfus chases Clouseau into a fireworks factory with the mob on their tail. tt0078163,haX0ACElUQc,"The Inspector accepts a special delivery at Professor Balls' shop, only to find out it is a bomb!" tt0078163,XRtuUFYTctA,Clouseau's fight with Cato is halted momentarily when he receives a phone call from his contact. tt0078163,oc8bWybEFFI,The good Inspector finds himself in a brothel run by Cato where Tanya the Lotus Eater whips him into shape. tt0051786,UmynxNlSRaE,Keinholz investigates some strange noises only to discover that their source is the monster. tt0051786,Im39PGAb82I,The crew attempts to kill the monster by popping the spaceship's airlock to drain the oxygen. tt0051786,QbOo_FctFu4,Bob Finelli is killed by the monster while trying save Calder. tt0051786,18ARBQLResg,Maj. Purdue finds Gino barely alive in a tunnel just before engaging the monster in a fire fight. tt0051786,YPIfHEdHjHI,Col. Van Heusen further questions Carruthers about his dead crewmen and what happened on Mars. tt0051786,7vWLiI04VCw,"The crew attacks the monster with gas, but nothing seems to work." tt0051786,gPJFxEvmHpQ,"Wearing spacesuits, Calder and Carruthers walk along the outside of the ship as the crew inside distract the monster with talk and footsteps." tt0051786,T69FlogsAGI,"Col. Van Heusen has the crew sound off as they prepare to depart Mars, but something has stowed away." tt0051786,3reg2k9xS9k,A government spokesman explains to a press conference the details of Colonel Carruthers' time on Mars and his controversial return. tt0051786,2gzVWIUhUOg,Calder fends off the monster using a blowtorch while he waits for help with a broken leg. tt0051786,CsOM7mptOLM,The crew fires on the monster through an open door before retreating. tt0051786,5W_sktmZuzI,A final letter explains the monster attack and warns of the dangers of Mars colonization. tt5160954,yNmBX5mZvRw,Weird and worrisome things start to happen as they look for Damian in the dark. tt5160954,h36wtoBcAS8,"Practicing for their web show, Jonas teaches how to use rope, but Damian teaches it more entertainingly." tt5160954,nPJFSx8RTzo,"The guys keep coming up with survival tips, whether they can pull them off or not." tt5160954,j_txRPwTvpk,"While still attempting to film their series, Damian suddenly gets aggressive before unleashing a mind straining energy." tt5160954,0z9b9_n8-Ek,Damien attacks everyone he sees. tt5160954,6KYxDFGC2hE,Damian has some thoughts on his friends mothers while talking to the camera. tt5160954,1lxY4Sc9eNg,"While looking for Damien, the guys discover only dark clues before finally see's the strange and powerful thing that he has become." tt5160954,QBUTO2RVjXU,Alien assimilation beams rain down from the heavens. tt5160954,WcmMx1_lQmA,The guys meet a hunter out in the woods who is more than willing to show off for the camera. tt5160954,7RSJehegfZw,Rhodes runs for his life from his possessed friend before realizing that running is useless. tt1679335,5RKld6BGJA4,The Trolls give Bridget a makeover in the hopes of getting King Gristle to notice her. tt1679335,En7TapBA84M,Poppy and Branch meet Cloud Guy as they search for a safe route to Bergen Town. tt1679335,wwnqJH8OF-I,Poppy invites a very curmudgeony Branch to her blowout party. tt1679335,9hPgjW2ou9E,Poppy and Branch show the Bergens how to be happy from within. tt1679335,wWRnv1V8iUY,The Bergens head to the Troll Tree on Trollstice in the hopes of eating the Trolls and experiencing happiness. tt1679335,3Y-pMJ4IcTY,Branch tries to heal Poppy by revealing his feelings for her in song. tt1679335,DNHmujbuC74,The Trolls try to bring out the best in Bridget while on her date with King Gristle. tt1679335,9nOc2GqCQ2Y,Poppy invites the entire village to have the biggest party ever. tt1679335,gtHhlD6p8BY,Poppy throws a rager of a party which attracts the attention of a dangerous spectator. tt1679335,7aYOGUPabd8,Poppy tries exploring the forest herself and finds it's a bit harder to navigate than she expected. tt8560130,4UC_5gXVXUk,Squeak empties his mind and saves the day. tt8560130,_f7p28YFgvc,Squeak isn't good at his job. tt8560130,rpPm4pAJQbc,Squeak begins his mission. tt8560130,0N7ilB9wX3o,Squeak can't keep focused on the mission when he only has one thing on his mind. tt8560130,nc0LwkqYGpM,Crazy Robo Cat threatens the Space Guardians. tt8560130,gq6JKq3Q_uw,Squeak falls into a familiar trap. tt8560130,xYHBAXUJ-Zs,Squeak might not be a good fit for samurai training. tt8560130,DKtupzAQYv4,Crazy Robo Cat enacts his evil plan. tt8560130,G8FhdcsVB_o,Professor Mucus troubleshoots his machine. tt8560130,kdbRwpxZHJY,Commander Ham Sanders reveals his amazing secret. tt6408946,0yngsYrBCLg,Genevieve the Goat recites 'The Goose With The Golden Eggs'. tt6408946,WcsyV7eMrGI,An owl tells the 'The Tortoise and the Hare' to the Easter Bunny and Wilma the Chicken. tt6408946,SuSUwDgtq1g,"Billy the Hog tells the stories 'The Wolf and the Shepherds', 'The Goat and the Goatherd', and 'The Miser and His Gold'." tt6408946,xsHxWhCydMI,Horace the Horse tells the Easter Bunny and Wilma the Chicken the story of 'The Wolf and the Kid' tt6408946,xwfJyzB6dow,Donna the Cow tells the story of 'The Lion and the Mouse'. tt6408946,rS-P78D5US4,"Frida the Frog tells stories that give insights on war, preparedness, and loyalty." tt6408946,1maNhuFVhmk,Vincenzo the Bull tells two fables including 'The Travelers and the Sea' and 'The Wolf and the Lion'. tt6408946,msSsPzKVzW0,Donna the Cow tells 'The Boy Who Cried Wolf' to the Easter Bunny and Wilma the Chicken. tt6408946,rYS9mUCFOAk,A bee tells the Easter Bunny and Wilma the Chicken the fable of 'The Wolf and the Lamb'. tt6408946,Afwy5S9__0E,Millie Mouse tells the fable 'The Rat and the Elephant' to the Easter Bunny and Wilma the Chicken. tt9004516,8fizKw4z9fI,Boo Boo uses the 'Sauce' to read the mind of Princess Sparklefeather. tt5936438,J03m0CzUvJU,Dr. Bones & Shortstack make a critical mistake across the time stream. tt0312004,xI-ehlRwN8o,"Gromit saves the Were-Rabbit from being shot by Victor, and then the Were-Rabbit saves Gromit from crashing to his death, but does this mean the end for Wallace?" tt0312004,aTxu-zthTgs,"Gromit hijacks a children's carnival airplane in an attempt to save the Were-Rabbit, but Victor's dog won't let that happen so easily." tt0312004,5Tqsh3b_lb4,"Wallace attempts to use his latest invention to brainwash rabbits to dislike vegetables, and it seems to work, but at what cost?" tt0312004,BgCgiRitEmM,"Gromit chases after the monstrous were-rabbit, but the giant rabbit gets away by digging a tunnel." tt0312004,-nk6Gs6Z_Bo,Wallace transforms into the were-rabbit while fighting Victor. tt0312004,f9wFKCfic8Q,"At the vegetable contest, Gromit draws the Were-Rabbit away from the entries by sacrificing his prized melon." tt0312004,Jmf4o8UalVM,"Wallace wakes up to find that he's sprouted ears, and that the rabbit they've captured he sprouted a vest and a love of cheese!" tt0312004,zZLAinjBShg,Gromit feeds the rabbits and Wallace a very similar breakfast. tt0312004,E7fMOxGw-dw,Lady Tottingham swings by Wallace and Gromit's house just as Wallace begins transforming into the Were-Rabbit. tt0312004,egTtyS-PlRM,"At Tottingham Hall, Wallace and Gromit use the BV6000 to vacuum up all the rabbits, and also Lord Victor Quartermain." tt9004516,DECG3af2qh8,"Nuke, B-52, and Squeezy Whistle find themselves face to face with an idiot space warrior." tt9004516,YsCeolAfbLw,Boo Boo Squeal uses the sauce to banish Tar Tar. tt9004516,LJym4mTtLRY,"Nuke and Squeezy Whistle teleport to Bongo Bananas' secret world, and meet the mysterious mentor." tt9004516,HOjApJYsWC0,"Nuke hears a mysterious voice that tells him what he must do to find the ultimate truth, and he gets teleported to a spaceship." tt9004516,4vekUOykIvw,"The ""chosen one"" Felipo, Nuke, B-52, and Squeezy Whistle defeat the evil Boo Boo Squeal and his ""Sauce""." tt9004516,qMaZAi73HDo,Nuke and B-52 maneuver around an asteroid field and teleport into the 'Sauce Dimension'. tt5936438,b_aJy2SE60E,Dr. Bones & Shortstack meet a moronic dinosaur. tt5936438,YprQvoOj6wM,Shortstack gets the time-travel formula from a scientist chicken. tt5936438,JHAtw0HRhho,"Back in the time of dinosaurs, there was a magic bone that was so delicious, so legendary, wars would be fought over it." tt5936438,6kN5IkXFwcQ,Captain Adventure Cat argues with his clones. tt5936438,GqGPu-X3cv8,Dr. Bones & Shortstack get themselves in trouble. tt5936438,ag2wbvh5VDs,Dr. Bone & Shortstack travel to the time of dinosaurs. tt5936438,IgeW0MPX60Q,Shortstack finds herself timewarped to the American Civil War. tt5936438,--hendERqm0,Dr. Bone gets his picture taken. tt5936438,pkogDQ3CK9E,Dr. Bone recounts his horrible war stories. tt3604958,0D35LZ4UBX8,"David and Muhammad share music with the children of Israel, giving them home." tt3604958,BUB6TUH7N0A,"Israeli & Palestinian teens sing about peace, love, and understanding." tt3604958,5uEViMQGON4,"Steve Earle performs and discusses his song ""Jerusalem.""" tt3604958,N6SPrarFcBA,Mina Awad discusses translation differences between Hebrew and Arabic. tt3604958,hYIWCm-Lpj0,David Broza and his friend introduce us to modern day Jerusalem. tt3604958,kvtsZ1Edkk4,David discusses his background in the Israeli army and the Lebanon War. tt3604958,HrFlTjySp8E,Muhammad Mughrabi discusses the sense of displacement inherit to life in Jerusalem. tt3604958,HC1LN5AgjRU,"Mira and David sing the duet ""Midnight in Tel Aviv.""" tt5974388,n6zlrCAvNRg,"Laila tricks Wissam into meeting her, Salma, and Nour, his victim." tt5974388,7sQRpVCnRto,Laila connects with Nour. tt5974388,Vez07Q0O7c0,Leila courts Ziad. tt5974388,v5oVPhcW9nk,Salma takes her secret girlfriend to a dinner with her family. tt5974388,ClUoUHjr-zE,Laila and her boyfriend Ziad argue over how conservative she is. tt1928329,ZCU-wmL_XNw,Martirio reluctantly accepts a late-night client. tt1928329,up86hjG02yU,Bordalo and Pedro find the remains of a slaughter and are shocked by their barbarous companions. tt1928329,pDdLHI3b7lI,Pedro escapes an infirmary as the French approach and comes across a house in his hometown. tt1928329,oUrT0qTcHBE,Clarissa seduces Portuguese officer Major Foster. tt1928329,R-ciRNPLhWE,Xavier is surprised to find Martírio in his tent while trying to sleep. tt1928329,YJjM9EMhQ1E,The Duke of Wellington explains his embarrassment over having a food named after him. tt1928329,lMZzHaUh_Bc,"Xavier proposes to the widow of his close friend, Maureen." tt1928329,Nc6K_D4rtGU,Maureen shoots a lame horse. tt0064395,XNwDyM81lSE,The Garrett boys start a shoot out with Chris and Keno over a stolen horse. tt0064395,tY5el7dZ9H0,Max pleads with Lobero to help the gang fight the military and rescue Quintero. tt0064395,-5twCD8tAMc,"Col. Diego is convinced by Quintero to let the prisoners go, but on one condition." tt0064395,LVvJj9sDilQ,The gang have a friendly game of cards. tt0064395,WLE2QEOBde4,"While looking for members to fill their crew, Chris and Keno find Slater performing an act at a carnival." tt0064395,yQ62WM_w2iM,"Realizing they need more support, The Magnificent Seven frees a prison gang from the military carriage." tt0064395,q3Vvto0REuc,Max offers Chris and Keno a job to help him rescue Quintero. tt0064395,yWP5eC822Ac,Col. Diego tortures a group of men buried up to their necks by having his men trample over their heads. tt0064395,i3yO0OagpNY,The gang coordinates an attack against Col. Diego and starts it off with a bang. tt5091014,M669rZIUGIs,Jasper tells Charlie about his life to this point. tt5091014,7DnCFrbE88A,Ruth has a unique punishment for Charlie. tt5091014,MO7Sa_dI0SM,Charlie rushes to meet Eliza after promising to meet her. tt5091014,VD704T-c64c,Jasper wakes Charlie in the middle of the night asking for help. tt5091014,UpWvuwMabSA,Jasper and Charlie stake out the home of Mad Jack Lionel. tt5091014,UxVY9CTaNNQ,Charlie sneaks onto the farm of a suspected murderer. tt5091014,oX3yOgEmFOI,Jeffrey shows his athletic prowess to the racist crowd. tt1492842,UNLFpS_xEZI,Kevin goes bowling with Jamie. tt1492842,W7BLikBY5Ak,Kevin flames out after a one-night stand. tt1492842,dwK_rODYMrY,Kevin pushes things further than he should. tt1492842,rXxBQRh89AA,Jamie hits a low point in her battle with suicidal thoughts. tt4779682,VAmXYYSt6TM,Jonas faces the Meg in open water. tt4779682,xYIhxXt58uE,Jonas has a final showdown with the Meg. tt4779682,FovnKIV3VD0,Suyin uses a shark cage to confront the Meg. tt4779682,oiQPOmrEAxo,Jonas & Suyin launch their plan against the Meg only to end up trying to avoid being eaten. tt4779682,p3zb4fwFd3E,Meiying runs afoul the Meg. tt4779682,IxRCDx-YV4I,Suyin gets attacked while she tries to rescue the submarine crew. tt4779682,LZ6HA66dXVw,Morris bombs the Meg. tt4779682,ujA70PK6E7U,The Meg attacks China's Sanya Bay. tt4779682,sVfmACBWnIY,"After killing the Meg, the group parties...too soon." tt4779682,QxReNyiIprw,Jonas & Suyin work to save a submarine crew. tt7681902,SWlYiOtP5mI,The relationship between Fred and his character Daniel is discussed. tt7681902,USWXF1XW2zo,Jeff Erlanger's parents reflect on the time their disabled son visited Mister Rogers' Neighborhood. tt7681902,uEW0FlmiNec,Friends and family talk about Fred's death. tt7681902,4cl5cWYmvgc,"Friends and family talk about what sparked him to take on superheroes, and then start weeks on specific themes including divorce, death, and loss." tt7681902,wLuRwDl3MrE,Those close to him recall how 'Mister Rogers' Neighborhood' paralleled real world problems so children could understand them. tt7681902,pQv0ZtpRdNk,"Coworkers, friends, and the man himself recount the special 'Mister Rogers' Neighborhood' episode after Bobby Kennedy's assassination." tt7681902,gMdTl2R354A,"With PBS' budget on the line, Fred Rogers appears before the congressional committee and convinces the chair to give PBS the funding it needs." tt7681902,HPcr2gT_cnA,"Friends and family think about what Mister Rogers would do in today's society, and look back on what he meant to them." tt7681902,K6O_Ep9bY0U,Francois Clemmons discusses his role on the show as a black police officer and the show tackling racial segregation. tt7681902,DqSBqfDgOsQ,François Clemmons discusses his genuine love and friendship with Fred Rogers. tt5218234,14pZQ6VASRI,Jens-Jürgen Ventzki talks about Heinrich Himmler and his family's cognitive dissonance. tt5218234,PmxzK5IzcaM,"Natan Grossman recounts how his mother, father, and brother died, while the son of one of the men who condemned them to death listens on." tt5218234,BSXK08_Ivac,Natan Grossman learns that his brother most likely volunteered to go to the concentration camp to help lead a resistance. tt5218234,3ReLHqluiXY,"the Nazi sympathizer who pretended to ignore the genocidal activities in his town, and the one who played games with his family." tt5218234,V9LA86HF3i8,"Natan Grossman returns to the site of the Lodz ghetto, and recalls his father's death." tt5218234,Ud8doeLuJWk,The trains out of the Polish ghettos were places of abject misery. tt5218234,vxEvNuW12dk,Natan Grossman talks about the day the Jews of Zgierz were rounded up and sent to the Lodz ghetto. tt5218234,FvN03fXmnQU,"Jens-Jürgen Ventzki talks about how much his father knew about what was happening in his town, and he visits the ""gypsy camp"" within the Lodz ghetto." tt6599064,bqUmYcmLCMI,Easy Rider is trained for the performance of a lifetime. tt6599064,jP6-fvz9W04,Ballerinas dance as delicately as falling snow. tt6599064,MsIWigAwas8,Ballerinas train to absolute perfection. tt6599064,HCNwZZ3Baus,"Mikhail finally gets his chance to sing, closing out the season." tt6599064,3zgwoTgXXuc,The Paris Opera performs the greatest show of their season. tt6599064,daJzFEzxXos,Mikhail Timoshenko has a nervous meeting with another opera singer who happens to be his idol. tt6599064,pTxj-Dks1Mg,Mikhail Timoshenko tries out for the Paris Opera. tt6599064,O75p8X8YBtw,"Aided by Easy Rider, the Paris Opera performs 'Moses and Aaron'." tt2833768,sUQ9cisQpaY,Friends of The Residents explain the origin of the eyeball-hats! tt2833768,fRNR8-FqzM4,"What is music? To the Residents, it's whatever you want it to be." tt2833768,5RUWalajNYE,"""Randy Rose"" sings 'Give it to Someone Else' from their album 'Commercial Album'." tt2833768,t-B2zR5O5Ys,The Residents explore technology in order to expand their art. tt2833768,BCcw2q6KbbI,"The Residents shot a weird, experimental film called ""Vileness Fats.""" tt2833768,9FAeJgWLKRo,"Experts summarize the Residents to the tune of their song ""Neediness.""" tt2833768,cnwddNSgakk,The early days of The Residents's visualizations for their music. tt2833768,Nwru3-Uif_Q,"On an open stage in San Francisco, The Residents perform their spellbinding first concert." tt0389790,jpEfgrff8z0,"At the trial against the honey industry, Barry calls three witnesses, including Sting and Ray Liotta." tt0389790,7h-q7bXYD1c,"Barry flies through the streets of New York City to get on board a truck heading to a honey farm, but soon learns from Mooseblood that life in the fast lane is tough for a bug," tt0389790,O4brzUAaTS0,The Pollen Jocks and the rest of the hive help Barry and Vanessa land the plane containing the last of the world's flowers. tt0389790,-nswXtzrfQU,"Barry brings the bee smoker in as evidence, and Judge Bembleton rules in favor of the bees." tt0389790,3WmyeqVxCV0,"After the bees win their case against Big Honey, they get all they could ever want, and begin to abandon their necessary duties which has devastating effects." tt0389790,74ZjOVz3gs4,Vanessa's boyfriend Kenneth tries to exterminate Bary. tt0389790,oNWAiWBup2Q,Barry goes out with the Pollen Jocks and pollinates the flowers of Central Park. tt0389790,vubylfvbMhk,"Barry is berated while on the stand at his trial, so Andy loses his temper and stings the other attorney." tt0389790,IFBAXbrw31g,"While out with the Pollen Jocks, Barry gets stuck on a tennis ball and caught up in a game." tt0389790,L46syxgju18,Barry introduces himself to Vanessa. tt1576379,BGOL5YmTrAY,The animals attack the boat of an evil logging company. tt1576379,-Qq6ZZy0yGg,A koati trains to fight the mechanical monster. tt1576379,phGwatUEyzc,The Dodo sings about the dangers of extinction. tt1576379,6VvluTE_w14,A mechanical monster attacks the jungle. tt1576379,ueMuCbXkDhw,A koati gets chased by dogs. tt1576379,Td3qZIf5Swg,A koati teaches a child about the wonders of the jungle. tt1576379,4Fa5YPKxwRU,Koatis recall an encounter with the monster and play together. tt1576379,eG2Yo0l78tM,The animals throw a surprise party for one of the koatis. tt1576379,p0CQcDumPh8,Flamingos get into trouble with snakes while koatis play games with each other. tt1576379,hudgzkYfSvU,A Parrot makes a deadly betrayal. tt5363648,GZauEya_plU,"Cleo, Puffer, and Crash encounter some seahorses, and Cleo teaches Crash about them." tt5363648,aPFbf954LJ0,"Cleo, Puffer, and Crash encounter a jellyfish bloom and learn a lot of cool facts about these strange creatures!" tt5363648,qL5_xmtFVDo,Angie and Puffy get questioned by a dangerous and hungry eel. tt5363648,mT3_2sDEBJQ,Cleo talks about seals and sea lions. tt5363648,VTTj-7UumYk,Cleo teaches Puffer and Crash about frogs. tt5363648,jH07BdMRP0g,"Cleo, Crash, and Puffer meet Breeze, and learn about sea turtles!" tt5363648,NQcQ3bA_NXw,"Cleo, Puffer, and Crash meet some shrimp and have to answer some questions about crustaceans." tt5363648,Uvm8N3wQDTo,"Cleo, Puffer, and Crash swim into a school of sharks, and Cleo teaches Crash and Puffer about different types of sharks." tt1235522,_5kQ0ekY5l8,Mr. Buckley comes home to a grizzly discovery. tt1235522,Lbxeyn5IS8Q,Mike is accused by Susan of sexual assault in order to hide her promiscuity from her abusive father. tt1235522,3Sot46WTjcY,Skunk's brother Jed visits Susan to offer support for her baby. tt1235522,wVCf-70SKKg,Skunk gets into an altercation with Sunrise leading to even more trouble with her sister. tt1235522,WuvoHScKCR0,Bob prepares to go to jail after assaulting Mike. tt1235522,sZdVc2KAfWQ,Skunk witnesses an attack on her neighbor Rick after he is accused of molestation by Bob's daughters. tt1235522,9sSxcSntcyE,Skunk is held hostage by Rick after he has a mental breakdown and kills his parents. tt1235522,IIJZj1M4tN8,The Oswald Sisters accuse Rick of harming their sister despite having just been released from an institution. tt0102388,Gklme1-eQGE,Dani is horrified when she comes upon Marie holding the lifeless body of Court after an accident. tt0102388,sCSTQpBwqqs,Dani's efforts to get close to Court are complicated when he eyes Maureen for the first time. tt0102388,miJ26dYcbBw,Matthew returns home from the hospital with the news that Court has died. tt0102388,oT_RsXOPjTs,Court interrupts Dani's private skinny dipping in the lake and sneaks a peek when she leaves. tt0102388,YzIWoPLLktE,Court gets angry when he and Dani almost kiss in the lake. tt0102388,HYWSAtLFgXg,Court takes Dani for a wild ride on their way into town. tt0102388,TiQaVmutQwg,Court invites Dani into the lake with him and they jump in together. tt0102388,daVOnsL2wkU,Court gives Dani her very first kiss… and it's perfect. tt0102388,N7i4yZhm6V0,Maureen gives Dani some advice on boys and shows her how to practice kissing on her hand. tt0102388,R5wXxo6yIU4,Dani and Maureen discuss their fears and lament growing older. tt0102388,oefn8TJ3_H8,Matthew tells Dani to reconcile with her sister. tt0102388,pUPliO3qy04,Maureen and Dani have a heart to heart and Maureen assures her that they'll always have each other. tt5758778,UAoJ_mv0Pqo,"Will reunites with his wife Sarah, and she has to cross a fallen bridge to rescue their son." tt5758778,ioUedV29CQE,"After learning that Ben set him up, Will has to escape a crew of ruthless international henchmen, but they catch him and steal the skyscraper control table." tt5758778,Uo1FfULMJ5E,"Sarah Sawyer knocks out the terrorist Xia while fighting in a police car, and Sarah recovers the master control tablet." tt5758778,M06KzvYxlsc,"With Will and Georgia stuck on the roof of the burning skyscraper, Sarah manages to reboot the fire safety system, and save her husband and daughter." tt5758778,3PoW8y_3rzU,Will and Zhao confront Bores and his henchmen at the top of the tower and then draw them into The Pearl. tt5758778,KMkdp0Uy8t0,"To save his family, Will has to jump from a crane to the burning skyscraper more than 2,000 feet off the ground." tt5758778,aKE0S2gCOfc,"Will attempts to scale the outside of building and break into a control panel, but things go awry after his rope breaks which leaves him dangling more than 1,000 feet above the earth." tt5758778,RtRffVRFz6M,"Will has to fight his former friend Ben after he betrays him and tries to steal the tablet that controls ""The Pearl""." tt5758778,e_S58iPZYu8,"To save his wife and son, Will sends Sarah and Henry down over 10 floors in a broken elevator." tt5758778,S7A0JYPGklw,"Will faces off against the terrorist Kores Botha, but finds that Botha has taken his daughter Georgia hostage." tt1268799,VFWn3fpVdEk,"Harold and Kumar save Santa's life. Then, they hitch a ride home in his sleigh." tt1268799,6nrumyJrmZ8,"Harold and Kumar reconcile their friendship. Then, Wafflebot saves them from their Russian captors." tt1268799,75EThT2il7k,Harold's assistant takes on angry Wall Street protestors so his boss can make a clean getaway. tt1268799,JzJ0EVqZAzU,"Harold wins a game of beer pong with his signature trick, the ""Roldy Roll""." tt1951261,9YyC1Uq84v8,Alan sings and speaks at his father's funeral. tt1951261,elmk8Hsbw_0,The guys convince Chow that they are his best friends. tt1951261,mkbZvLfg2Yg,Marshall takes revenge on Black Doug for failing to keep the guys from stealing his gold. tt1951261,efkuXTpfxhc,Alan returns to the pawn shop to ask Cassie on a date. tt1951261,XsHBLhORcls,Alan accidentally releases all of Chow's trained chickens. tt1951261,lSmcbUFG-W4,Chow and Stu struggle to sneak into Marshall's mansion. tt1951261,v4np7L0aJd0,Alan's friends and family stage an intervention. tt1951261,Bo8mRH33NCw,Marshall explains why he kidnapped the Wolf Pack. tt1951261,xPI7JdEPCP8,"Black Doug kidnaps the Wolf Pack and delivers them to Marshall, who has connected them to Leslie Chow." tt4738802,s55ay3OA1vE,"Polly pretends to be her sister to sleep with Jack, Amy's ex." tt4738802,QsY1JHFo9c0,"Polly has an audition for a feature film, but the casting crew thought she was her sister." tt4738802,EaizaMokSqI,"Amy proposes switching places with Polly, and the two twin sisters have a heart-to-heart conversation." tt4738802,urNeTIDRg6A,Zoe Cooper makes the wrong kind of impression at a Hollywood agency. tt4738802,KhOfO0lI9-E,"Despite the success of her sister, Polly's agent tells her that she can't represent her anymore." tt4738802,EHqhCxcRkwc,"Pretending to be Amy, Polly goes out with Jack where she ""meets"" Oliver." tt4738802,eEt5ebZFVWE,Polly and Zoe discuss why they want to be actresses. tt4738802,Wka1m7CSEro,"Polly comes to L.A. with dreams of becoming a famous actor, and gets some sage advice from a customs agent." tt4738802,nFpK9Si2uUc,Polly watches her sister play an awkward role she'd turned down. tt4738802,L5Ub_8HT6HE,"Polly lashes out at a customer, and is fired from her job at the movie theater." tt2767266,tiu9_CUkGn0,Frida Giannini talks about the diversity of the women of Gucci and how each collection allows versatility. tt2767266,pFmo1haIgtA,Frida Giannini highlights what attracted her to Gucci and the inspiration of her first collection. tt2767266,PwBs-mLkZyo,Frida Giannini explores China's marketplace while setting up the Gucci Fashion show. tt2767266,8bZMd3JUu0c,Frida Giannini reflects on her work/life balance with her husband and business partner. tt2767266,2WZkIK0cbLc,Frida Giannini elaborates on the first days of Gucci and why it was so successful. tt2767266,rJ6wWIo3hFA,Frida Giannini transitions the collection from winter to spring with vibrant colors. tt2767266,ubwNf0oYYZI,Frida Giannini talks about the in's and out's of being a Gucci women and evolution of her dreams. tt2767266,YlHQAbd3Pvc,Frida Giannini critiques a male model during runway walk rehearsal. tt2767266,EqiDQxAatPQ,Frida Giannini sits down with James Franco to discuss the importance of fashion in cinema. tt2767266,0QNpXi4k5eU,Frida Giannini compares work to being with her family. tt7137846,vJi3kGaAQfo,Shaun is chased through her house by a vengeful Duncan. tt7137846,cycPu9OddzU,Shaun tries to make a deal with Eddie to get back her kids. tt7137846,F2V5i3EyRd4,Shaun escapes with her kids with Duncan on her tail. tt7137846,z5NuK6qTdBc,"Shaun manages to get her family safe inside the house but Eddie catches her husband, Justin coming home." tt7137846,e7qjmOp9G34,Duncan and Sam corner Shaun while she's attempting to rescue her kids. tt7137846,xUNy6fZy4WE,Shaun tries making a deal with Eddie but is surprised by his ruthlessness. tt7137846,GbZZ2TDY5dA,"Shaun tries to warn her real estate agent, Maggie, not to enter the house." tt7137846,yWGLNaCYevk,Shaun checks on the safety of her daughter Jasmine. tt7137846,SpOd7BwzlMU,Shaun gets chased by an intruder after her house gets broken into. tt7137846,-agdK2N5wX4,Shaun makes a final gambit against Eddie but is shocked by the appearance of someone she thought dead. tt7260048,oZ-BCSM4O8g,Ted apologizes to Chris for letting him take the fall for the murder twenty years ago. tt7260048,Kc2Hv1tPMig,"Chris apologizes to Carol for getting her daughter drunk, and then proposes that she and him go out on a date so he can move on." tt7260048,dye8cQvz0Kc,"Linda tries to get intimate with Chris, but it's been a while since Chris has felt the touch of a woman." tt7260048,zllKdwaYi50,"Chris kisses Carol and tells her how he feels about her, but she rebuffs him." tt7260048,xWYBaNVEpVY,"Carol and Chris reconcile, and Carol asks him to lunch." tt7260048,ZcO9A2DK_8o,"Carol talks to Hildy about her relationship with Chris and her father, and apologizes for what she's put her through." tt7260048,QId6ztQeHCI,Chris meets with his former teacher turned pen pal Carol and thanks her for being there for him while he was in jail. tt7260048,TFfe7ZgIVUc,"Chris drinks too much at his brother's birthday party, and makes a toast that implicates Ted in a murder." tt2309260,jT09lgUTdFg,Cassidy cries after losing her boyfriend- unaware the ghost of Charlie is not far behind. tt2309260,kKH0IEVUhNw,Reese and Pfeifer race to find the fire alarm and get the attention of the police. tt2309260,sIGoScxocUY,Reese sacrifices himself to save Pfeifer but gets an unpleasant surprise. tt2309260,D7LCHE4pTe0,Reese and Pfeifer run across disturbing evidence left by the ghost of Charlie. tt2309260,nBRbD7RKrK0,"Twenty years before the events of the present, a family records a tragedy during a high school play." tt2309260,ACvjoLAtwnU,Ryan antagonizes the ghost of Charlie. tt2309260,iwZzRrzGLfE,"The group come across a TV that explains the history of their high-school's production of ""The Gallows"" and realize a decades old secret." tt2309260,t6w2XWv2A7M,"Following a startling discovery, the group is chased by an unseen force seemingly bent on revenge." tt2309260,bCBpo6H97oY,Ryan finds himself trapped alone with the ghost of Charlie. tt2309260,WyqeTjEcUTk,The cops come to the Grimille household to arrest Pfeifer and her mother. tt6883152,B41g0ZjS8M8,Fr. Amorth concludes his exorcism session with Cristine. tt6883152,1CjLSig2Hv0,William Friedkin recounts being stuck in a church with a possessed woman. tt6883152,y-1iNc7NzNM,Fr. Amorth begins his exorcism by mocking the devil. tt6883152,VKonjShA8Rg,Friedkin and William Peter Blatty discuss the inspiration for The Exorcist. tt6883152,R5BlH8IPv9Y,Nadia and Paolo recount her exorcism and cure. tt6883152,k6VGwPFIctQ,The Devil claims Cristina as his own. tt6883152,yMo3ISSjYn4,"While her family receives Fr. Amorth's blessings, Christina's demon rages." tt6883152,haeQVOcIyKY,Friedkin discusses the psychological and sociological methodology of exorcism with UCLA's vice chancellor of medical sciences. tt6883152,DstF9Ge_6wI,Fr. Amorth discusses the nature of Cristina's possession. tt5725894,sSu-nM25zqw,Henry chases after the survivors. tt5725894,8X5miLF1n5M,Henry and Devon have an encounter with an angry spirit. tt5725894,ljifYuVnH1Y,Devon is led to the secret lair of a notorious serial killer. tt5725894,jz7WEh-DK0w,Amy and the hunters go after another spirit but Amy has a ghostly episode. tt5725894,Fdy2A4nbNik,Amy comes across a spirit while searching for evidence of paranormal activities. tt5725894,SCRZD2_Tkeo,Henry attacks Jessica and Amy as they try to escape the house. tt5725894,Ye3l05tkIcQ,The surviving hunters discover the identity of the Night Stalker and are shocked to discover it may be one of their own. tt5725894,zA1afZS6G_c,Amy and the hunters find another spirit in a makeshift meat freezer. tt5725894,gIig_bRnDz0,A serial killer murders a woman in front of her daughter. tt5725894,MXcA1Ow7Lzw,Amy is again visited by the house's spirits. tt0095990,lpBYHa7VDRk,Jesse makes a deadly discovery as the zombies begin to rise. tt0095990,XAa7RcPdE2U,A decapitated zombie is not an incapacitated zombie. tt0095990,NqXxeZTvuYQ,Be careful who you rescue in the event of a zombie attack. tt0095990,dq_RCN3esGk,Doc Mandel lends his car against his will. tt0095990,SSQJIBb_9gw,"Brenda gives her brains to Joey, her boyfriend." tt0095990,7mPDafCQ5iQ,Jesse helps take down a persistent zombie. tt0095990,eYCV5Zm4Ov0,The Undead decide to get up for a walk. tt0095990,xIsVK254RXU,"The military takes on the zombies, and it goes as well as you'd expect." tt0095990,zHqM-oKCPBY,Jesse has a creative way of taking out zombies. tt0095990,4ozs0VI04xI,Billy dies. Then he gets better. tt5435476,iMlCK0hr8Is,the name that he has mysteriously written on a note. tt5435476,IW3rXhNFyVw,Joe savagely murders a homeless man in the middle of the night. tt5435476,oB1yULtM2Mw,Joanne and Joe argue about his career and duties as a future husband. tt5435476,NGmtKz6HMkI,"Struck with bloodlust and haunted by a past murder, Joe kills a stray dog." tt5435476,CB73lI-OjOE,"Joe tells Joanne about his increasing paranoia, frustration, and creeping madness." tt5435476,AZlZO5TT0wo,"Joe has a job interview, but things do not go well." tt5435476,xxoeXvIeZXQ,Joe comes across a tourist and flirts with the idea of pushing him over the edge. tt5435476,JXiJ7GS-9aA,"Joe's sister-in-law Allison comes to drop off her child with Joanne but, unbeknownst to her, Joe killed her sister the night before." tt5435476,-XnDw75Lp1Y,"Joanne and Joe bring home their baby, but is parenthood a dream or a nightmare?" tt6874406,H6ZNmRApuGw,A group of engineers test a fighter jet capable of being piloted by disabled pilots. tt6874406,PuUMs6fNGo0,"Bruce, a paraplegic, is left alone in the truck as the alien approaches." tt6874406,DrOLHuvOMi0,The pilots scramble to their fighter jets after the Alien attacks their base. tt6874406,JKJsu3JatYk,"Emma helps her dad, Ben, train to take on the alien." tt6874406,YIqAz8SfE2M,The crew discover the home of the alien creature and investigate its nest. tt6874406,HV_SMZR6gjg,The pilot crew watch as a fighter jet takes on an alien that causes all who look at it to get sick. tt6874406,vaWlmr2BwuE,The crew celebrates their victory against the alien too soon and Emma is left reeling after Ben is shot down. tt6874406,uun8fsWOaeE,Emma watches as Ben takes on the alien using her high-tech gear. tt6874406,KZJetTa4DjQ,Emma and Ben go head to head against the alien. tt0085470,80fHUAW_up0,"Clive introduces Monty's ""regular guy"" fashion line." tt0085470,L90uDzDbdV0,"Nicky, Monty, and Paddy make a bad horse-racing bet." tt0085470,jJ8rgMkWFWA,Monty wears a wedding dress to help with alterations. tt0085470,H1_mdoiwhBY,Monty consoles the birthday girl after a boy hits her. tt0085470,T7kklmGWLDk,Nicky and Monty browse the upscale department store Monty will soon inherit. tt0085470,V99QCtwXKsI,"Hiding in a bush, Hector feeds Julio lines of love." tt0085470,DC3rYQXOTjA,When Nicky pressures Monty to go faster on the stationary bike. tt0085470,vcw4b2U_0nU,Julio and Allison have wedding night jitters. tt0085470,nUpmxMzBCjk,Don't drink and drive. Especially when your daughter's wedding cake is in the back seat. tt0085470,TcaAWs46kog,Is this a wedding or a funeral? tt0085470,whFoAKQ10gY,Nicky helps Monty adjust to his rehab program. tt0085470,btMisVovQKk,Monty loses his temper when Anthony won't sit still during a photo session. tt6580394,ULElX0fO5JE,"After hours of waiting in the dark, passengers begin to turn on the crew during the hijacking." tt6580394,2T01Xm19LJM,The crew try to maintain proper altitude while avoiding civilian air traffic. tt6580394,WcmGju9lzAY,The crew tries to deal with all the injured passengers as the plane tries to avoid parasailers. tt6580394,1bKCN4B2g-g,Crew and passengers find relief after safely landing on the runway following a hijacking. tt6580394,v2iOrjYQOHQ,Benji is pushed to the edge by Juliette. tt6580394,9C5A-YyMLnY,The flight crew listens as a recording found by the stewardess warns that the plane will crash if it drops below a certain altitude. tt6580394,V3JGZdiYwIg,Donna uncovers Kurt's true intentions and scrambles to foil his plans. tt6580394,dHxPxFeI6GQ,Coleman attempts to board the hijacked flight with the help of Alexis and J.C.. tt6580394,deth7hZBzxs,Donna faces off against Alexis after discovering the flight attendant was secretly one of the hijackers. tt6580394,AUppZZuFnJI,Pilot Khalib faces opposition from his co-pilot J.C. over how to handle the hijacking situation. tt3399112,mXgY4vnucPc,"Dock Ellis, Scipio Spinks, Enos Cabell, and more talk about the rise, risk, and results of amphetamine use in baseball in the 1970s." tt3399112,yqvlrJQVAP4,Dock Ellis reveals what he was thinking during his no-hitter. tt3399112,SndhPCSVtuc,"Dock Ellis' teammates, and sportswriters talk about Ellis' statements about, and him starting, the 1971 MLB All-Star Game against Vida Blue." tt3399112,THmBqW0zLuY,Dock Ellis and teammates tell the story of that fateful day Ellis threw a no-hitter while on LSD. tt3399112,s5F51a7xkiA,"Former teammates and players recount Dock Ellis' innovative and inspirational approach to race relations, and Ellis reads a letter sent to him by Jackie Robinson." tt3399112,wIw19V0b390,Dock Ellis and teammates tell about the time baseball took exception to Dock's use of hair curlers. tt3399112,E-OEyIQ12Mw,"Former Pittsburgh Pirates teammates talk about September 1, 1971, when the Pirates start a lineup of all African-American and Latino players for the first time in baseball history." tt3399112,--UgPWRVt8A,"Loved ones reminisce about Dock, and mourn his death." tt3399112,rJv6bP5Lvao,Those close to him talk about how Dock Ellis used his experiences to educate and inspire. tt3399112,Jn23_pn6aAE,"Ellis and family discuss his time in rehab, and how he came out afterwards." tt0061512,JkQzE831VM8,Luke is shot and killed by a boss and Dragline tells the chain gang about it. tt0061512,Bzk_5Jzvxdk,Luke refuses to stay down and accept defeat in his boxing match with Dragline. tt0061512,9T4kKk7zH34,"Luke's mother, Arletta, visits Luke in prison to reminisce with her son before she dies." tt0061512,SMaYCguBHAA,"When Luke claims that he can eat fifty eggs, Dragline sets up a friendly wager." tt0061512,cINFeXqwbDo,A beauty washes her car while the men watch. tt0061512,_WUyZXhLHMk,Luke is returned to prison after his first escape attempt. tt0061512,k3oMPqUTxCE,Luke tries to eat all fifty eggs. tt0061512,qqhyIIZt87A,Carr catches sight of Luke's defiant personality during his recitation of prison camp rules on the first day. tt0195714,PaqNqocHJ-o,Alex tries to save Clear from an impending car explosion. tt0195714,klg2YuapPFY,Carter proves that it's not his time to die. tt0195714,weDQxJm9K-Y,Alex Browning tries convincing people on the plane that his premonition was true. tt0195714,iU908ncV2q0,"Alex, Clear, and Carter debate death's design." tt0195714,0p9Q6tDJJ1w,Bludworth the Mortician explains the nature of death. tt0195714,Uc0Cd3LErFs,Alex runs from the police and death to save Clear. tt0195714,6HrTgWedKG0,Alex death-proofs his house. tt0195714,2ReEFgaq_9g,Alex Browning experiences a frightening premonition of his flight exploding in mid-air. tt0195714,8R0wW6GTMk4,A good bathmat could've saved poor Tod. tt0083642,Y5EkcuhBwiU,Melvin Thorpe reveals the existence of the the whorehouse on national TV. tt0083642,gcPY3RIvtCw,Miss Mona and the ladies try to put on a happy face when the Chicken Ranch gets shut down. tt0083642,Ad2-FiCzJxc,Miss Mona explains the rules of her house. tt0083642,CkKUHwyFqJw,Deputy Fred tells the legend of the Chicken Ranch. tt0083642,MuIkmspTRo0,The Chicken Ranch Ladies dance with the Aggies. tt0083642,8O9FIRPJRXc,The Aggies Sing about their impending visit to the Chicken Ranch. tt0083642,iy-SmSGYYBM,Melvin and his crew raid the Chicken Ranch for a national expose. tt0083642,AALREbJZEZk,The Governor makes his position clearly unclear. tt0083642,0KjO3YwlhEE,Miss Mona says her good-byes to Ed Earl. tt0083642,wr5-v7rYg70,Miss Mona and Ed Earl sing about their frequent trysts. tt8033592,FgG9LDxHHv0,"Phillipa's parents meet Danny, but Danny drops a bomb on them and takes her father hostage." tt8033592,Uu2u8T7tS9o,"Danny and his gang kidnaps Glen, and forces Phillipa into giving in to their demands." tt8033592,KD5-tY6m9Cw,"After the family loses the roulette roll, Danny threatens to light Margaret on fire, but then reveals that this ordeal was all an act to scare the rich." tt8033592,tt5BJlT7f6I,Danny reveals his motivations for kidnapping Phillippa's family tt8033592,6EAVY3gCWpY,Danny tells his friends how he found Phillipa and Glen and about his plan to take advantage of them. tt8033592,AURxtujY4MM,"Danny, Tommy, and Sean discuss sex, power, income inequality, and how their generation has it worse than the last." tt8033592,fJDl0RSPWBg,"Glen gets tied up and trapped in a shed, and has to use the tools to escape." tt8033592,_H0EYJHeddU,"Danny tries to buy a gun from Little Kev, but Kev will only sell him a BB gun." tt0111686,IOUbfaHj2HU,Freddy kills Julie. tt0111686,V4SyBSgOIgM,Freddy lures the sleepwalking Dylan onto the highway. tt0111686,JlvCQXYfOAI,Heather confronts Freddy in his lair. tt0111686,dJltbkhK6-s,Heather tries to save Dylan from Freddy. tt0111686,_HcDe70cSRU,Chase's animatronic Freddy hand goes awry. tt0111686,ZOhpE4LjR5E,Freddy gives Chase a hand while driving home. tt0111686,TqRBV9xkrAU,Freddy visits a sleeping Heather. tt0111686,XTtjLtf_Tw8,Freddy chases Dylan into a furnace where Heather is ready to have her final fight. tt0111686,dShLedyR4eg,Freddy attacks Heather in her home. tt0111686,ZObhl67NCzQ,Heather runs into Freddy at the hospital while getting Dylan treated. tt0101917,49rUb1-JaIM,Freddy lays down the law to Doc. tt0101917,S0_bjXPRlio,John learns the truth about him and Freddy. tt0101917,jorhoh0NNQI,Freddy gives Carlos a demonic hearing aid. tt0101917,DgpMTfkui0w,Freddy attacks Carlos. tt0101917,1U146AYx6-M,Maggie takes a journey inside Freddy's damaged psyche. tt0101917,G7RTm-c2aXc,Tracy has a run-in with Freddy. tt0101917,_RG4iCmljGE,First Spencer sees a familiar face before Freddy arrives. tt0101917,gGz0wTHCHK4,"Maggie dons the glove of Freddy Krueger, and sets to work." tt0101917,sg-d9ZBsiWo,John gets terrorized by Freddy. tt0417148,Z0k-0HG4fR0,Maria helps a young boy by sucking out the poison from his wound. tt0417148,y7-LHFxFS8o,The snakes attack the passengers with the full force of their reptilian rage. tt0417148,3U0EdULZGes,A passenger is bitten by a snake in a very sensitive area. tt0417148,h3-FAzeYut4,A giant boa constrictor makes a meal out of Paul. tt0417148,UqXJc-VxorY,"With Claire's help, Agent Flynn navigates the plane's underbelly in order to get power restored, but uncovers a trove of more snakes." tt0417148,7pzz0eGQdyQ,Agent Flynn has had it up to here with these snakes on this plane. tt0417148,ws7Ve4mehqs,"Troy is the only person on board qualified to land the plane, due to his PlayStation flight simulator." tt0417148,ov5KEgF0hgo,"Claire notices a sudden descent in the plane's trajectory and finds Rick, the last remaining pilot, missing." tt0417148,sbb9Re-KYlE,Agent Flynn talks to a snake expert via airphone and realizes that the snakes are under influence of powerful pheremones. tt0417148,5nDwwq0ANPE,"As Agent Flynn works his way through the snake-filled cabin, flight attendant Ken cooks up a snake in the microwave. Delicious." tt0102266,Ggnrvt77YOM,Joe and Jimmy are captured by Marcone's thugs. tt0102266,QeTaNmnwFHo,Joe comes to suspect his wife Sarah is hiding someone in their bedroom. tt0102266,2Zi7Y1-rgts,Joe wakes up after being kidnapped and is assaulted by Carmone's goon. tt0102266,06MiYpKxjCY,Jimmy follows Cory home and finds himself under fire. tt0102266,wmBGdpkagEc,Joe and Jimmy confront Marcone in his office. tt0102266,fdw_aFH3To4,"Joe, Jimmy, and Darian are chased by Marcone's thugs." tt0102266,N2Yk8EvrrBU,Joe and Jimmy face off against hired assassin Milo. tt0102266,x91Nyuo55_c,"After losing key evidence, Joe and Jimmy run into trouble." tt0102266,aWNJKbGrETo,Joe catches Jimmy doing drugs in his bathroom. tt0102266,uKlIPUovwIc,Jimmy and Joe bond over the story of Jimmy's lost son. tt1037705,w-nqMWvpzY8,"Solara attacks Carnegie's men and makes an escape, killing Redridge in the process." tt1037705,eHj2IgKYofo,"When Solara attempts to help a woman at the side of the road, she is attacked, but Eli arrives to save her just in time." tt1037705,-6IX1nWqW3o,"When Carnegie's men attack, Eli takes them all down single-handedly." tt1037705,5qE52hylNT0,"When Eli is ambushed by a gang of thugs in a bar, he beats them all up." tt1037705,R_rN21oKxSE,Eli recites his final prayer before he passes away. tt1037705,Q-_wlz6jYSw,Eli hunts a cat. tt1037705,2bvUOFDgo_c,"When Eli is ambushed by a group of hijackers, he shows them who's boss." tt1037705,-7uYlaqkkzw,"Carnegie threatens Solara's mother, Claudia, to gain information about Eli's Bible." tt1037705,aRK4YcnTtIk,"After getting his hands on the Bible, Carnegie shoots Eli." tt1037705,Pv2MlxSgwv4,"Unable to read the Bible in Braille, Carnegie begs Claudia to help him. When she refuses, he falls into despair." tt6231792,q8NwQoVkAr0,"'Wild' Wally Palmer takes it off the course, and rips up" tt6231792,M1dWcUcCAgk,"Carson Mumford competes in the Amateur National Motocross Championship, and takes home the trophy." tt6231792,dEAaneP7a3g,"Tom Parsons, Dereck Beckering, and Jimmy Hill head to Kernside, California to have some fun in the open air." tt6231792,gZE1B2zL1fg,"Motocross rider Christian Craig talks about what it means to be a family man, and rips up a course." tt6231792,F0YzQbNdlpI,Harry Bink takes a motorcycle off the street and rips off some crazy tricks. tt6231792,dWdQG4BEX3s,Jimmy Decotis and Aaron Plessinger hit the course. tt6231792,z4216EVIfdE,The 2017 AMA Pro Motocross Championship is highlighted. tt6231792,dwULCnXeEOA,"Fifteen year-old Carson Mumford talks about how he has turned into a phenom, and shows what he can do on the supercross course." tt6231792,RfGOwHvIyK8,"Ben Townley shows what New Zealand motocross is all about, as he takes off at his hometown of Tauranga, New Zealand." tt6231792,vtEw8hLJKzo,"On his second attempt at the 2017 Nitro Games FMX Best Trick, Harry Bink pulls off the world's first Rock Solid Frontflip which would win him the gold." tt1690991,94pYLwdWTW0,The group imitates how slowly turtles move. tt1690991,wgb4Fz7D7wI,Grunty makes a discovery. tt1690991,PMFU8b_2cC0,"Miffy and her friends ride camels, but they're a little scary." tt1690991,2dOsofLx6jc,Grunty helps her friends. tt1690991,Ev2Z-YUO2f4,Miffy and her friends try to catch the the silly monkeys being playful. tt1690991,bbtIanfT4oo,Miffy and her friends happily sing a song about their friendship. tt1690991,Ywn0PmxYgGo,Sing along with the Treasure Hunt song! tt1690991,s_8zJYpN2mc,Grunty wishes she was just a little older. tt1690991,8jfrU0a-Ayk,The group sings with the Owls! tt1690991,aB6SfK9qD5Y,Miffy and her friends decide where to go. tt0842000,104odr4s7Yc,Marchello and Pinky deal with silly Squirrels. tt0842000,QrXSZJ3am_s,Marchello tries to get through to Pinky via a game of tag. tt0842000,71_zrDEkRc0,Marchello plays with Jujube. tt0842000,szDAoChHbrQ,Marchello helps Pinky gain the courage to live with Blackie. tt0842000,4Tu7_tAe2tk,Marcello and Jujube play hide and seek. tt0842000,SVtUDd2sBwE,Marchello has a hard time adjusting to street life after meeting a stray. tt0842000,2pOMv-jM5lU,Marchello gets cat-napped! tt0842000,H1sEkNAlW9w,Marchello learns street smarts and protects himself from a dog. tt0842000,u3E23a-SpF0,Marchello escapes. tt0842000,gNdQdrKADh0,Pinky fights Marchello for suggesting that her parents aren't returning. tt7424200,qYEOmZzqX28,"Slade steals the crystal, reveals his master plan, and leaves Robin to die in his own base." tt7424200,PitkS4aYur8,"The Teen Titans square off with the new arch nemesis, Slade, but his powers of mind manipulation are too much for the Titans." tt7424200,GgBt0TlbwUY,"Superman, Green Lantern, and Wonder Woman save Jump City from the Balloon Man, and the three superheroes discuss the Teen Titans movie prospects." tt7424200,y4fdm5gdvnE,"Thanks to a very upbeat song, the Teen Titans are inspired to go to Hollywood to seek out a movie deal." tt7424200,NKhTArRP31Q,The Teen Titans use their Time Cycles to go back in time to create a world without superheroes. tt7424200,7XBizI9jArU,The Teen Titans use their unique brand of heroism to destroy Slade's giant robot and break the hypnotic spell he has cast on the world. tt7424200,qB93c2JU4uQ,"Slade unleashes the D.O.O.M.S.D.A.Y. Device and hypnotizes everyone in the world, and the Titans have to fight off all the world's superheroes." tt7424200,dnrJELv76n4,Robin embarrasses himself at a movie premiere when he mistakes an upcoming movie about Batman's utility belt for his own. tt7424200,VqAqUVcgQdE,"The Teen Titans fight Slade and steal back the crystal, but in true arch nemesis fashion, Slade gets away." tt7424200,hFfQhVgQU44,"Robin tries to convince Jade Wilson to make a movie of him, but even an epic song won't sway her." tt5639446,OYSVICsTq78,"Jonathan's split personality has made love many times, but he never has." tt5639446,SEmSJCzcxyc,Jonathan explains that another one of his personalities was systematically destroyed. tt5639446,O0PAT4-kuY4,Private Investigator Craine reveals that Jonathan's split personality has a girlfriend. tt5639446,Qulj96h_-W0,Jonathan explains his position to Elena. tt5639446,cEyfq9j80Do,"Jonathan meets his split personality's ex, Elena." tt5639446,5-kt5Av0s2M,Jonathan explains to Dr. Nariman that he's sleeping with his split personality's ex. tt5639446,7Z3ccysbMwE,"As Jonathan gets closer with Elena, John's behavior becomes increasingly erratic." tt5639446,t3nm6EPiuyw,Jonathan discovers that his other half is suicidal. tt3874544,IJnig4nc0xg,Tim tries to give evidence of his little brother's deception to his parents while being chased by a gang of babies. tt3874544,9WpO5zPo8Dg,Tim is shocked when his parents bring home a little brother whom they immediately start giving into his demands. tt3874544,A_CGtuDwl-A,Boss Baby and Tim are chased by Eugene while rushing to save their parents. tt3874544,rxkB20Tpvx0,Boss Baby gets sorted into a family or management after being born. tt3874544,mIGCgzqFR0s,Boss Baby uses his binky to bring Tim to BabyCo Headquarters. tt3874544,VbP7jMN_v-w,Boss Baby and Tim have to make a plan to escape the watchful eye of Eugene. tt3874544,UXldWskFeFY,Boss Baby gets a letter from Tim and decides to quit his job in order to become a part of Tim's family. tt3874544,uNjrnjiEEY8,Boss Baby and Tim pretend to love each other in order to please their parents. tt3874544,prTlJO34AHE,Boss Baby and Tim try to sneak into PuppyCo during a 'bring your kid to work' day with their parents. tt3874544,KjWPSq6-Ets,Boss Baby and Tim take on Francis Francis in order to stop his plans to make puppies cuter than babies. tt0061791,dVLMfoIop9M,"As the day winds down, Finch and Rosemary flirt with the idea of grabbing dinner together to the beat of ""It's Been a Long Day""." tt0061791,luF2eyiYlyE,"Finch gets an ""in"" with Biggley by wooing Miss Jones with a flower." tt0061791,LKJOXcFUSzc,Finch professes his love for Rosemary and asks her to be his wife. tt0061791,1GbNS7IcCj0,Finch successfully deceives his boss during his advertising presentation by playing to his vanity instead of laying out a real plan. tt0061791,8FHO7Ry4_Jc,"Biggley discusses the new opening in the mailroom with his wife, who wants him to give their nephew the opening." tt0061791,SKC8iPeIvEA,Mr. Twimble sings about his quarter century experience as a company man with Finch. tt0061791,uETwKF_fgKw,"When a beautiful new employee arrives at the office, Bratt reminds the men that a secretary is not a toy." tt0061791,DhUcvFP_Tas,"Finch, the management and the executives sing of the Brotherhood of Man after it is discovered that Finch was a window washer and not a college graduate." tt0061791,GwvrEz7vTZY,"Rosemary reassures Finch in her confidence in him with the number ""I Believe in You""." tt0061791,NV9oKGj_CcU,"As the clock hit 9 a.m., girls at the office get into gear to prepare for the work day." tt0126029,UvSGGd3ewFI,Shrek leads Donkey and Fiona out of the castle as the Dragon chases them all. tt0126029,AxGXZOLn-U0,Fiona shows Shrek and Donkey that she hardly needs saving. tt0126029,iropsnsCEjA,"While Shrek is busy trying to rescue Fiona, Donkey finds himself getting unwanted advances from the least likely place." tt0126029,em9lziI07M4,Shrek enjoys a day of solitude just like any other before a group of villagers decide to change that. tt0126029,mFl8nzZuExE,Lord Farquad interrogates the Gingerbread Man as to the whereabouts of the other fairytale creatures. tt0126029,LSD1fq3xDA8,Shrek interrupts the wedding of Fiona and Lord Farquad in order to confess his love for her. tt0126029,xvZRXcg4iS8,Shrek starts to fall for Princess Fiona as they make their way back to the castle. tt0126029,aQqAUXKn7t4,Shrek and Donkey accidentally find themselves in the middle of a trial by combat. tt0126029,xURDJ-IW5YM,Shrek and Princess Fiona can't stop missing each other. tt0126029,a3bI7kbVBwM,Donkey and the fairytale creatures celebrate Shrek and Fiona's marriage. tt0974015,f2FzrfnfQPY,Diana tells Bruce Wayne the history of the Mother Box and Steppenwolf. tt0974015,9QJ2mqXdr5I,Wonder Woman rescues hostages from a terrorist plot at a London bank. tt0974015,NC34ce5BkWQ,The Flash prepares to race Superman. tt0974015,CKc8xHhxP0Q,lash and Superman rush to save civilians from destruction. tt0974015,JQOay4rjHas,The Justice League works together to defeat Steppenwolf. tt0974015,3sP7UMxhGYw,The team resurrects Superman who immediately turns hostile toward the crew. tt0974015,z79ikmr3JY8,The Justice League launches an assault on the para-demons and Steppenwolf. tt0974015,b3OlGLDk4pY,The Justice League must escape after a cornered Steppenwolf floods the tunnels. tt0974015,f9Od8yx9gmg,Hippolyta races to stop Steppenwolf before steals the Mother Box. tt0974015,WXne2B_inx8,Aquaman makes a heartfelt and passionate confession to the other heroes. tt2126355,CLxHRE-Knmc,"With San Francisco in ruins, Ray and Emma are forced to skydive from their plane in order to get to their daughter." tt2126355,n4bsNkDyF2s,"As a major quake hits, Ray helps the citizens of San Francisco survive." tt2126355,2UPj8FTPaXg,"When they are caught in an earthquake, Daniel abandons Blake in an underground parking garage." tt2126355,OfXLQt6B8v4,"Blake, Ben, and Ollie are stricken by a massive wave, which destroys the building they are inside." tt2126355,OqGw-1_vIWk,Ray runs a daring mission to rescue the victim of a car wreck. tt2126355,Z-WSedqa5zA,"While Ray and Emma drive their boat across the ocean, a massive wave destroys the Golden Gate Bridge." tt2126355,fYbbxzLGpbI,Dr. Hayes watches helplessly as Kim falls to his death during a destructive quake at the Hoover Dam. tt2126355,0ERIepJUdPc,Ray races to save Blake from drowning. tt2126355,xGon_kZAVtU,Emma struggles to get to the roof where Ray will pick her up while a building collapses around her. tt2126355,NE6nLFq0eqc,"As Los Angeles falls to pieces, Ray tries to save Emma with his helicopter." tt0351283,kPE7ZCGjw4o,The gang is caught trying to leave New York tt0351283,JaTAjmSppvA,The Penguins commandeer the shipping boat. tt0351283,U1_VGnnMle8,The animals toast to Alex being back to a friendly lion. tt0351283,FpekkNyDPcc,"Maddened by hunger, Alex attempts to eat everyone." tt0351283,8ty1025m6XQ,King Julian sends out Mort to meet savage beasts. tt0351283,rPuW7T25Yuw,Alex reluctantly leaves his friends to be a predator. tt0351283,CyJglP6k8lE,The Penguins rescue the gang from the Fossa. tt0351283,YoIcmX40-_s,The gang arrives on the beaches of Madagascar. tt0351283,ApuFuuCJc3s,King Julian leads his people in dance. tt0351283,wV7vM4-FzJM,The gang discovers that they've been trapped in boxes. tt0441773,rHvCQEr_ETk,Po shows Tai Lung the true meaning of the Dragon Warrior. tt0441773,_7DVsN761n0,Mantis tries relaxing Po after a hard training session when Tigress arrives and gives the history of their greatest enemy. tt0441773,AhbCYVILusc,Po takes on the incredibly powerful Tai Lung in order to save his village. tt0441773,GQM4dSjjQuE,Shifu faces off against his former protégé turned villain Tai Lung. tt0441773,Jy2_J5WCzDY,The Furious Five decide to take on Tai Lung alone. tt0441773,UsZNj9srzR8,Tai Lung makes his escape from prison with ease. tt0441773,zvY-EPgYB4Y,Shifu finally allows Po to train to be the Dragon Warrior. tt0441773,ihKHvNOTcwk,"In his desparate attempt to check out the Dragon Warrior trials, Po finds himself smack dab in the middle of the ceremony." tt0441773,STqJ_Up4iFg,Po daydreams of being the Dragon Warrior and fighting with the Furious Five by his side. tt0441773,0_1NU60qHWs,Po shows his skills as a chef to his new friends. tt4624424,wMr2d10-xf0,wolves and glass. tt4624424,kzZQYnvw-6E,"Junior, Tulip, and the baby are captured by wolves, who fall in love with the ""tiny thing""." tt4624424,ZPCSC8NM87k,Junior and Tulip fire up the baby making machine and create more babies than they can handle! tt4624424,9NTvToplMlw,"Junior and Tulip get woken up by the baby, and try to get her to fall back asleep." tt4624424,bx_rua3EXFc,"Hunter tries to destroy the baby making factory, but an innocent baby and his own greed get in the way." tt4624424,U6GY91u1I_c,Junior and Tulip flee from a surprisingly resourceful wolf pack. tt4624424,sCr9YZRDsJA,Tulip's innovation goes horribly wrong. tt4624424,uTUupV0ZfBk,Junior and Tulip try to fight penguins without waking the baby. tt4624424,SQH8if7dbqw,Tulip delivers a letter asking for a baby which starts up the baby-making machine. tt4624424,-pix6UL8ONk,Junior tries to get the baby to fall asleep. tt1935859,LiODoFVKD40,Oh and Tip stop for a bathroom break after being chased by a fleet of Boov. tt1935859,Y-rxY2LxPI8,"After Oh survives almost being crushed, he makes a friendly gesture towards the Gorg, with surprising results." tt1935859,AD3baa_nijI,Oh and Tip rush to escape the Boov after Oh is sentenced to execution. tt1935859,hMGHJFVuqpg,Oh tries to return an important artifact to the Gorg in order to save earth. tt1935859,rLVwKpyUwWI,Oh finds himself unable to stop his body moving when Tip turns on the radio. tt1935859,kWHOafRR0Sk,Tip gives Oh a lesson on humor by teaching how to tell a 'knock knock' joke. tt1935859,Hiwu7Hu2hAs,Oh and Tip rush to Australia to find Tip's Mom during the Boov evacuation. tt1935859,K8yA801TQVQ,Tip finally finds her Mom with Oh's help. tt1935859,fwZw8vujVMU,"After enjoying a successful escape, Oh and Tip wake up to find themselves in the middle of a Boov evacuation as the Gorg approaches earth." tt1935859,ykQ9g2HT2sU,Oh supes up Tip's car after she asks him to repair it. tt0063829,8H_aePfIMzQ,A nervous Helen practices how she will break the news about her eight children to Frank on their date. tt0063829,Uiqk92r4luQ,Helen loses an eyelash and tries to hide it from Frank. tt0063829,WbcZ3k4Mr6Q,The family doctor is overwhelmed by the chaos of a child-filled home. tt0063829,OGEfW_fV9ZI,Helen's daughters help her get ready for her date with Frank. tt0063829,D93GR0PGUD0,Helen and Frank get married despite their children's wishes. tt0063829,LiioO2L5ZA4,Helen's daughters make her modest dress a few inches shorter before her date with Frank. tt0063829,mvH6IhKpehk,Frank and Helen hit it off while his date Madeleine is stuck in the middle. tt0063829,G5_nIhUCuhk,Helen finds herself inexplicably drunk during dinner with Frank's family. tt0063829,x7S89GM5N7w,Colleen asks a busy Frank for boy advice. tt0063829,mkG2YdCogPY,Helen gives advice to Frank about what's going on with his daughter. tt0063829,ExsSDD8Lpsc,Helen tries to reason with Sister Mary Alice about her son. tt0063829,cyUf4tLI53o,Helen & Frank reveal how many children they have. tt1446192,gzbYTUXZkSI,Sandy and Jack go head to head against Pitch in order to stop him from spreading his nightmares to children. tt1446192,BpnlB0ILpWw,Pitch tries to convince Jack to join him in his battle against the Guardians. tt1446192,lNVb-ZNIO-A,"After defeating Pitch, Sandy and the Guardians eschew Pitch's nightmares in favor of making dreams return." tt1446192,Lgpg6frCrvw,Jamie and his friends give the Guardians the faith they need to defeat the Boogeyman. tt1446192,vqPT1IbJrX8,"After returning to the fight, Jack finds the Guardians in a weakened state and unprepared to fight Pitch." tt1446192,1OxDZKordaM,"Jack Frost discovers he has been chosen to join the ""Guardians"", a team made of Santa Claus, the Easter Bunny and the Tooth Fairy." tt1446192,mpBQ883QIUs,Bunny takes the Guardians back to his homeland in order to get some help in getting his eggs out in time for Easter. tt1446192,z9uP9znP-mA,Jack discovers that North's way of travel is alot more exciting then one would expect. tt1446192,fYVAGoTb8w4,Jack uses his dreams to access his memories and find out where he came from. tt1446192,89RJwGDFpC4,The Guardians work double time to deliver rewards to all the kids who have lost teeth in order to save Tooth from disappearing. tt0083767,_-9Pewr-JgY,Professor Henry Northrup introduces his abusive and ungrateful wife Wilma to the crate monster. tt0083767,jkZtAzrw3Q8,"After killing his wife and her lover, Richard Vickers gets a late night visit from their drowned corpses." tt0083767,L_nh3Rtyj-Y,"After dousing a strange meteorite with water, Jordy Verrill's house gets coved with an alien vegetation while Jordy himself wakes up transformed into a plant like being." tt0083767,WMFxWlrpnLM,Hank Blaine goes in search of Aunt Bedelia only to find not one but two corpses. tt0083767,intjK7aTbjs,"Ignoring Professor Dexter Stanley's warnings, grad student Charlie investigates the crate and gets sharp teeth in his neck for it." tt0083767,bJ09DFHWeXk,"Sylvia goes in search of her son-in-law and the maid. She finds a family member, but not the one she expected." tt0083767,GOpFSBhGjuU,Richard Grantham and his sister Cass go in search of their mother. tt0083767,9E1ulvRRYFM,Aunt Bedelia sits by her father's grave and reminisces about the abuse she took from him. Her father's corpse decides to join the conversation. tt0083767,2LsMNs4hW1s,"Upson Pratt, a cruel business man, locks himself in his panic room to get away from an infestation of cockroaches." tt0083767,WXeW1HiwAtE,"After finding an old and mysterious crate underneath the basement stairs, Mike the Janitor and his friend, Professor Stanley, attempt to open the crate." tt0082250,7nWfsF7ThLw,Kersey catches up with Jiver. tt0082250,IGaJfcOD6gs,"Kersey watches as Nirvana, under the influence of PCP, wrestles an onslaught of police." tt0082250,zH80pWTYSLg,Carol escapes her attackers by jumping out a window. tt0082250,A8xy9h5olhQ,Kersey follows the thugs onto a bus. tt0082250,duZLaW_6qLc,A tourist and his wife can't remember the vigilante's appearance. tt0082250,Yh03Vnp8pCk,Kersey interrupts a drug deal to kill Stomper. tt0082250,sbZB1drlKWI,"After his wallet is stolen, Kersey tracks down Jiver, one of the thugs who took it." tt0082250,vh-mdPoc92Y,Kersey disguises himself as a doctor and kills Nirvana. tt0082250,Lw5Ss6z8IoM,Kersey asks Geri to marry him in Mexico. tt0082250,L7FVtB7mKEU,Kersey tracks Nirvana to an illegal weapons trade. tt0082250,aDcfm_9GTyU,Kersey returns home with Carol to find Nirvana and his gang inside the house. tt0082250,RNPPrvhTKuc,Nirvana and his gang break in when Rosario is home alone. tt3230934,LT9qOeKcL-o,"The Executive Director of New Yorkers Against Gun Violence explains the purpose of her organization, and the extent that gun violence has affected the American population." tt3230934,_RsxXzFxqdg,A gun store owner gives a brief overview of the different types of handguns and how they work. tt3230934,ENmpNBFdwFQ,"Artist Greg Bokor introduces his large-scale, interactive art piece in which participants erase a drawing of an AR-15 assault rifle." tt3230934,IGCJTr90IZk,"Greg Bokor's art installation is open to the public, and the artist speaks of his feelings regarding gun violence and gun control." tt3230934,ln_5-pRR-HQ,State Senator Angela Giron and Colorado gun rights activist Victor Head state their opinions on the competing sides of the debate surrounding Colorado newly enacted gun control laws. tt3230934,HexOzLEvLGA,"Artist Greg Bokor discusses his thoughts regarding gun control, as well as how he procured and made erasers with the names of victims of gun violence." tt3230934,B1bYkou_mnY,"As gun owners show off what they proudly own, Colorado Sheriff Terry Maketa asks and expands on the question that he thinks people are forgetting when it comes to the gun control debate." tt3230934,lsES3-QXzZQ,"After Colorado enacted stricter gun control laws, the proponents of the law were recalled. The Senators who led the charge for stricter laws, and the citizens who led the charge for their removal tell their stories." tt3230934,4o1x3FxQLf8,"Creator of the first 3D printable gun, Cody R. Wilson explains why he did it, and what the ""Liberator"" means for America and the future of gun control." tt3230934,L5jFIw9yBbA,"Law Professor Stanford Levinson tells of the differing interests of, and the divide between, the people, the lawmakers, and the gun industry, and why it's harmful for the country." tt0245803,wO4P6Yz_LZg,Monk disappears with the scroll after his monastery is attacked by Nazis. tt0245803,qqAzmt1d8kU,Jade faces off with Nina. tt0245803,VwlkxIN9tfQ,Jade shows Kar that she can take a bullet too. tt0245803,sVfuigRSl8g,Kar and Jade fight to decide if they can trust each other. tt0245803,XT2IS2dn8gM,Monk teaches Kar mystical kung fu. tt0245803,leSpIIaEblk,Kar and Monk are chased through the streets of New York. tt0245803,ioE_djgs810,"Mercenaries chase Kar and Monk, looking for the scroll." tt0245803,LBm4aJ0ZcqY,Strucker fights Monk and Kar on the rooftop. tt0245803,GW475l4IoyU,Kar is quickly subdued after he tries to fight Monk. tt0245803,DHXHxop1gPw,Kar shows off his pipe fighting skills. tt0245803,DtH30Cz2Zec,Monk completes his training. tt0060921,JNcNy7bJxDg,"After his son calls him a traitor, Walt attacks the Russian holding them hostage." tt0060921,MYErK-XLJv0,Walt finally makes friends with Rozanov after shooting his car down. tt0060921,YmRuVv2V5Go,Mr. Everett is surprised to find his wife tied to the wall by the Russians. tt0060921,1PRZi8t38OQ,"Alison meets Kolchin, but sees that he is not a bad person." tt0060921,ILkyIHOOoq4,"The Russians try to borrow the Whittaker's car, but have trouble finding the keys in Elspeth's purse." tt0060921,VzXMcMcBwA8,"While the town searches for the Russians, Walt and Miss Foss have trouble escaping their bonds." tt0060921,ijBU9q7fb3U,"As Fendall Hawkins rallies the militia, Muriel makes a daring ride to alert the town." tt0060921,k3TpBfnaEmI,Mattocks faces down the Russian captain and his artillery. tt0060921,PBHYbeg2nao,Russians masquerade as Norweigans then pull a gun on the Whittakers. tt0060921,jMqI9UV3ob4,Norman pleads with the townspeople to bring more guns and get themselves organized. tt0088915,BrLcbi68R_A,The entire cast performs the musical's signature tune in the grand finale. tt0088915,PahRJMVNho0,Cassie begs to audition for Zach. tt0088915,4t7oXxFAlHM,A group of dancers participate in an open casting call for a Broadway musical. tt0088915,FhsFZDrRvoM,"A Chorus Line - Dance: Ten, Looks: Three: Val sings about upgrading her physical attributes to improve her dancing gigs." tt0088915,t1RkYJaG9bo,Diana describes her frustration with acting class. tt0088915,8TbUl9dhTRg,Cassie refuses to regret the decisions she made with her heart. tt0088915,7bCqTdKJPFo,Paul describes to Zach his first job at a drag show and an embarassing encounter with his parents. tt0088915,5Ehdu6XTlBc,Mike sings a song about loving dance from an early age. tt0094118,ozkF8KRjeO8,Todd throws his opponent a curve ball when he transforms into the wolf in the middle of their boxing match. tt0094118,ndpVsMLr424,"After a challenging fight, Todd is named the new regional champion from Hamilton University." tt0094118,kFeduM49hBY,Todd overcomes his temptation to turn into the wolf and continues the fight as himself. tt0094118,xKYgXZQuqm8,The crowd cheers on the wolf Todd to victory in the boxing ring. tt0094118,OflOQW_pkvc,"When an argument between Nicki and Todd gets out of hand, a frog fight breaks out in their biology class." tt0094118,HavLrFJcqMs,"Professor Brooks tells Dean to leave Todd alone, but she has to threaten a little more before he listens." tt0094118,KgnrxjgHngA,Todd panics when he starts transforming into the werewolf during a dance with Lisa. tt0094118,DYAdSce8Rd0,Two cute girls pull a prank their classmate Todd Howard by putting some ants in his pants. tt0094118,jTkt23CfSp4,"Todd has an unfriendly greeting with his new roommate Chubby, and Stiles sets his evil plan in place." tt0094118,ffknf2fIpiY,"Stiles, fed up with Todd's new demeanor, tells him he's become a jerk." tt0094118,95FV_p0Rivo,Todd uses a little bit of the wolf to frighten the mean admissions lady into letting him change his classes. tt0094118,fb-9_MV15I4,Todd impresses his schoolmates when he catches a frisbee in his mouth as the wolf. tt0892782,eGtDmvtBZQY,"Susan finds herself in a covert government facility and meets fellow monsters B.O.B., Dr. Cockroach, and The Missing Link." tt0892782,eoREjwjeH30,Ginormica wakes up in Gallaxhar's alien spaceship where he zaps her of her powers. tt0892782,tLXNDzc-2fA,"President Hathaway makes first contact with the alien ship by tickling the ivories, but the alien must not like Axel F because things do not go well." tt0892782,nmaCobIvt2w,Dr. Cockroach uses his impressive dance moves to break into the spaceship mainframe and cue a self-destruct sequence. tt0892782,JcC5XdvOWWM,"Susan, B.O.B., The Missing Link, and Dr. Cockroach try to sneak into the spaceship's power core, but Gallaxhar sics his clones on them." tt0892782,BTJ-smMan7Y,"Ginormica, B.O.B., The Missing Link, Dr. Cockroach, and Insectosaurus fight an alien robot on the Golden Gate Bridge." tt0892782,XF5omSq8eRQ,Susan takes on Gallaxhar but she must turn back into Ginormica to save her and her monstrous friends from the spaceship's self-destruction. tt0892782,XcgNkFuPBV8,"During her wedding, Susan transforms into a giant monster, and the military has to come in to take her down." tt0892782,ETu553EnTJM,"After stealing Ginormica's powers, Gallaxhar uses the quantonium to make clones of himself to take over the world." tt0892782,pjF6bofXAvQ,General W.R. Monger tells the President about his monsters and proposes using them to to fight the aliens. tt2091256,UciEIYZ-Eos,George and Harold celebrate their friendship and their weekend. tt2091256,evQcKvkQCl0,George and Harold have a little bit of fun with Captain Underpants posing as their principal. tt2091256,lGuivq-6xrw,George and Harold fight back against Professor Poopypants after he ensnares him in his trap. tt2091256,uzTuGHYRJ9w,George and Harold discuss the meanness of Principal Krump. tt2091256,kv-hhf-kPkw,"George and Harold when Captain Underpants, as Principal Krump, takes over the school fair." tt2091256,rilZTyv9RLo,George and Harold describe the 'Origin Issue' of their Captain Underpants comic. tt2091256,grwlYBNyMk4,"Captain Underpants, finally injected with real super powers, faces off against Professor Poopypants and Melvin." tt2091256,dSdY41CWixQ,George and Harold try to hypnotize their Principal Krump and accidentally convince him that he is actually Captain Underpants. tt2091256,u-eTCyG0jpA,George and Harold chase after Principal Krump after hypnotizing him into thinking that he's Captain Underpants. tt2091256,7wZdMPB-O6Y,Principal Krump finally get his revenge on George Harold after years of pranks. tt0062803,L_l2ii_25tc,Potts and Truly sing and dance for the Baron and Baroness dressed as dolls in order to get behind enemy lines. tt0062803,kBErrmmqnkI,"The children of Vulgaria initiate their rebellion against the ruling class, while Potts and Truly free their own young ones from imprisonment." tt0062803,yuU4pFcEgWo,"The Baron and Baroness are captured, and Chitty leaves Vulgaria with the newly reunited group." tt0062803,oY0spjrKFdM,Caractacus expresses his love for his two favorite things through song. tt0062803,LehcJeNbFBw,The Child Catcher sets his sights on the Potts children. tt0062803,SUr7fu-LXj4,Caractacus gets roped into a busking performance while running away from an angry customer. tt0062803,go4K4rCFjMQ,The Potts family and Truly Scrumptious enjoy a lovey day at the beach. tt0062803,aak6BqNR150,The Baron sings about his love to the Baroness while repeatedly trying to kill her. tt0062803,f1bk5a_jaEA,The group sings a song about Toot Sweets in the candy factory. tt0062803,Wuer3mLqIxc,Chitty flies and Grandpa sings about the Posh life. tt0062803,YfdRr7MWax4,Caractacus sings his children to sleep. tt0062803,1lt4euqZLsY,The Potts gang illustrates to Truly Scrumptious the sound their car makes through song. tt1646971,YSfBTZfswSg,"Drago unleashes his own Bewilderbeast to fight Valka's Alpha, and Stoick squares off with Drago." tt1646971,6_eBGV71X0w,"Valka shows Hiccup her dragon refuge, and examines and admires Toothless." tt1646971,IvFBobchMoc,Hiccup and Toothless lead the rest of the dragons in the fight against Drago and his Bewilderbeast. tt1646971,TiJBxtM5iKw,Hiccup tests out his new wing suit so that he can fly alongside Toothless. tt1646971,awuqJuO5WOc,Hiccup learns that the mysterious dragon warrior who just kidnapped him and Toothless is actually his mother Valka. tt1646971,DBUXGB_L5q8,Drago and his dragon army attacks Valka's safe haven for dragons. tt1646971,pDjY4qorZrg,"Eret and his men capture Hiccup, Astrid and their dragons." tt1646971,PMjbPEGDJ7w,"Drago's Bewilderbeast hypnotizes Toothless and forces him to attack Hiccup, but Stoick steps in front of the blast." tt1646971,S-EfnfP_cGY,"At his father's funeral, Hiccup reminisces about his father and worries about how he will be able to live up to his great legacy." tt1646971,07kluxoO8j8,Hiccup helps Toothless break free from his hypnosis and turn on Drago and his Bewilderbeast. tt0892769,jFQUE_6Zhn0,Hiccup builds a prosthetic fin for Toothless. tt0892769,Up7TU2t7_8g,Hiccup and Toothless fight the monstrous Red Death dragon that rules over the dragon nest. tt0892769,VvNX7pOAK58,"Hiccup, Astrid, and their friends come on their dragons to rescue Stoick and his men from the Red Death, and Stoick and Hiccup release Toothless to aid in the fight." tt0892769,2iD5pPwbDJ8,Hiccup takes Astrid out for a flight on Toothless to show her that dragons aren't dangerous. tt0892769,aFnS18LM8Ws,"After things go awry during Hiccup's final dragon killing test, Toothless tries to save him but gets captured by Stoick." tt0892769,ZDyEERuK31Y,Hiccup and Toothless practice flying using Toothless' new prosthetic fin. tt0892769,Vv9KJYUnVvA,Hiccup and Toothless begin to bond over a shared meal of raw fish. tt0892769,T5KjTcbQVMs,"Hiccup wakes up with an injury from the battle, but finds out that Berk is now a dragon friendly place." tt0892769,c95YKkIbTGg,"After taking down a Night Fury, instead of killing it, Hiccup frees the dragon from his trap." tt0892769,yHjejU3HvRE,"While bonding with Toothless, Hiccup uses his newfound understanding of dragons to excel in his class." tt7690670,8m3HqHIpcWU,Adalberto Gonzalez kills Scatter after he realizes that he's been stealing from him. tt7690670,CUnezbuG4fo,Priest and Eddie have an argument about striking back at another crew while at the gun range. tt7690670,Kekb8jHfDxI,"Youngblood Priest and Georgia try to take Cynthia out of the country, but Juju and the Snow Patrol show up at Priest's house." tt7690670,ysLBlalu91s,Crooked cops Officer Franklin and Detective Mason blackmail Fat Freddie and his girlfriend into revealing their boss. tt7690670,GaIcAaHFc0U,Priest pays a visit to upcoming rapper Litty and shows that knowledge can be the scariest weapon. tt7690670,nIW73heJdg4,Eddie and Priest get into a fight after a visit from two corrupt cops. tt7690670,KBCL6GBurNw,Priest and Scatter spar while discussing Youngblood's cocaine supply. tt7690670,9svQ60inP0g,Eddie leads the Snow Patrol into an ambush at Priest's furniture store where Detective Mason and a SWAT team take out the drug dealers. tt7690670,EOavA469Z24,"After being kidnapped by the cartel, Youngblood makes a deal with Adalberto Gonzalez to sell his product." tt7690670,-npMZStX7dU,Fat Freddie and an accomplice go rogue and shoot up a Snow Patrol barbershop. tt0067741,F70EkgLs4DM,"Shaft, Ben and their men raid the Mafia's building to rescue Marcy." tt0067741,dxzktMx1jbY,Shaft drops in on Ben and his gang. tt0067741,hfNlv4HLZ5k,Shaft runs in to save Marcy. tt0067741,up1wTd5shfc,Shaft tends bar in order to spy on two mobsters watching his apartment. tt0067741,IBRkROD4KAU,Shaft gets more information from Captain Vic regarding his investigation. tt0067741,dzabuGq1wIE,Captain Vic brings Shaft in for questioning. tt0067741,94k4a1GI9rY,Shaft is questioned by Captain Vic and Tom Hannon. tt0067741,uo6yyV0N7y4,Shaft gets a surprise visit from Bumpy's goons. tt0067741,UaCGeQifvdo,Shaft rudely awakens Linda. tt0095348,ikqLKMZ86d8,"When Jack makes an embarrassing confession to Cherry, she makes a few frightening confessions of her own." tt0095348,EzRtOVxgKCI,"Jack cries out as he mends a small cut on his finger, then returns to battle." tt0095348,uhDhzHrffBQ,Jack panics when he and Slade come under fire. tt0095348,fJlJX4Rj_WU,Kung Fu Joe whips out his moves on two cops that pull him over but gets ambushed by a new group of officers. tt0095348,38jXOaoZQZI,Ma teaches Mr. Big's henchmen a lesson when they get out of line with her and her daughter. tt0095348,TjvHy-IYET8,Lt. Baker investigates a death caused by too many gold chains. tt0095348,Hb8I1My6zOM,Cheryl makes Leonard cry like a little girl when she turns demonic on him. tt0095348,LJl8SSI8MHA,Ma whips out the moves to protect her son Jack when he gets accosted by two mob men. tt0095348,NJNAE_e-gM0,"The streets come alive when the Youth Gang Competition comes to town, chock full of car stripping, rioting, and more." tt0095348,4MbRVVP6rPg,Willie and Leonard try to justify their failure to a disappointed Mr. Big. tt0095348,tgHcYxKjwVE,Hammer is at the end of his rope when a cheap customer comes into his rib joint with some special requests. tt0095348,4CVFOnmW6v8,The crowd erupts in cheers as Flyguy recites a poem about pimping hos. tt0111161,SiwL_3yOWRM,Andy Dufresne asks Red for a lethal object. tt0111161,U_74PjS1Epk,Brooks hates life outside Shawshank Prison and decides not to stay. tt0111161,HT4kxxCpWYM,"After Andy's escape, Red feels a hole in his heart." tt0111161,9UE8ospTDgA,"After Brooks' breakdown, Red explains to the other prisoners what the prison walls do a man." tt0111161,s0ADj-PzbF0,"Before the parole board, Red wonders what it means to be ""rehabilitated.""" tt0111161,-nCYpOC-Gtk,Andy Dufresne narrowly avoids getting raped by The Sisters. tt0111161,aP22KbKvaMg,"Andy Dufresne offers Captain Hadley some free tax advice, but almost loses his life in the process." tt0111161,wMu4IBsX--I,Andy Dufresne explains his hopes and philosophy of life to Red. tt0111161,k1jq4jHNYpg,Red follows Andy's advice and heads south to Mexico. tt0111161,fR-2fk_qusE,Andy Dufresne goes through hell to escape Shawshank Prison. tt0051525,AWi8x9ctlps,"Cullen and Joker are at each other's throats after their run-in with a lynch mob, until their caught by a little boy." tt0051525,MFmLZibi7DE,Cullen and Joker try to hop a train with the law hot on their heels. tt0051525,BN77UGYk5tg,Big Sam challenges the mob that has gathered to lynch Cullen and Joker. tt0051525,wpQ4R1jlFHs,Billy's Mother tells Joker she sent Cullin to his death by giving him the wrong directions through the swamp. tt0051525,sgB8cpEi_zU,Cullen and Joker try to climb out of a clay pit they jumped in to avoid being seen. tt0051525,XPKzmSSQ2xk,"While waiting for the townsfolk to go to sleep, Joker and Cullen talk about how they ended up in jail." tt0051525,KGV-R-dVuGA,"After failing to break their chains, Cullen and Joker argue about which direction they should go." tt0051525,e8EAVtsvfxc,"For reasons of his own, Big Sam cuts Joker and Cullen loose and let's them go." tt0051525,uqVEYJGg3J0,"Joker complains how he hates the word, ""thanks,"" which leads to Cullen explaining how he has a few words that needle him too." tt0313443,X0vQQA32UAs,Matthias scuffles with Paul on a hotel room balcony. tt0313443,XNZRK35VNrk,"At the old boat, Ann pulls the trigger on Chris after his long tussle with Matthias." tt0313443,S99xKAAo43k,"When Chris returns home unexpectedly, Matthias acts fast in order to save Ann from a domestic dispute." tt0313443,yiPqxnLMKbs,Matthias covers his tracks with a fake phone call when Alex receives incriminating evidence from Ann's colleague. tt0313443,Lh3y_KLTwWc,Matthias works fast to modify and intercept Alex's incoming fax. tt0313443,INrZ0l5JbrA,"Forced to assume two different identities, Matthias thwarts Alex and her task force, and flees the hotel." tt0313443,zpsNG-exYxE,An eyewitness identifies Matthias as a suspect at the police station. tt0313443,WNAjVd38Q1E,"In an attempt to intimidate each other, Chris and Matthias have a hypothetical conversation at the local bar." tt0313443,H-Mr-QmgheY,Ann meets her demise when Alex shows up. tt0313443,0g2o-CfakW0,Matthias flirts with Ann and pretends to conduct an investigation at the scene of a crime. tt0313443,m3qnMx_kA2A,Matthias receives a late night phone call from Ann and learns that she is still alive. tt0087800,P3WCkLjKW-k,Nancy finally stands up to Freddy. tt0087800,cl3sud_uDhc,Nancy goes into the nightmare realm to find out more about Freddy but finds more than she bargained for once inside. tt0087800,rSAWPBO-ewA,Nancy meets Freddy for the first time after falling asleep in class. tt0087800,0OqXqd_s0ho,Glen accidentally falls asleep while awaiting Nancy's call. tt0087800,Tf9j5763-Gc,Nancy has a visit from Freddy Krueger while taking a bath. tt0087800,aaGgRabJ0NI,"Fearing for her friend Rod's safety, Nancy and Glen rush to the prison where he is being held to save him from Freddy." tt0087800,HcrTqof683A,Tina is pulled into the nightmare realm by Freddy. tt0087800,mD5CrAC4LPI,"Just when Nancy things all is well, she learns that you can never escape Freddy Krueger." tt0087800,5aegHe2iS8w,Nancy goes into her nightmare to find Freddy and bring him back to the real world. tt0087800,S0hTkEECANg,Nancy traps Freddy inside her house after pulling him out of her nightmare. tt0089901,vq0OqfmArnY,Remo attempts Chiun's training course. tt0089901,1V4SU2_-Ppg,Remo tries -and fails- to fight his way past Chiun. tt0089901,upoh7LbKZR0,Chiun instructs Remo to breathe. tt0089901,HcGpEScyT5o,Remo's training with Chiun continues… on a ferris wheel. tt0089901,2Q0IkYxSo3w,"Chiun teaches Remo to live healthy, kill healthy." tt0089901,JmSmZRCl6A4,Chiun runs on water to escape enemy soldiers. tt0089901,ROXLPqlbJck,Remo busts some hoods then gets pushed into the river. tt0089901,kbpdM9ORaI8,"Remo descends from the Statue of Liberty, taking out some goons along the way." tt0089901,3NRVJdoihjY,Remo Williams knows proper cool-action-hero procedure. tt0089901,qwwLKFCR4K0,Remo escapes his pursuers by running across wet cement. tt0089901,ZTsUO_9AT20,Diamond teeth can be a valuable investment. tt0089901,5OkvZ-y_dgI,Remo takes out Grove's jeep using logs. tt5220122,43OVm86-4rU,"Drac and Johnny use his epic DJ skills to counter Van Helsing's evil beats, until they have no choice but to pull out the big guns...the Macarena." tt5220122,U9WHLcpvVz0,Dracula and the rest of the cruise arrives at Atlantis where a Kraken regales them with song as they enter. tt5220122,L2inhzv1Rs8,"Dracula goes on a date with Ericka, and she tries to poison him with garlic." tt5220122,Z4kBo6FO8bc,"At a wedding reception, Frank introduces Dracula to his cousin Frankenlady, but she proves to be a bit too much for Dracula." tt5220122,IAaXyDc1gjk,"Dracula is dumbfounded after meeting the cruise captain Ericka and feeling the ""zing"" of monster love." tt5220122,9oS260wm-UM,"As Dracula frets about his crush, his daughter gets everybody together for some fun in the pool." tt5220122,OjDuQ7O9XUo,Van Helsing uses the Instrument of Destruction to hypnotize and turn the Kraken against the friendly monsters forcing Dracula to take a stand and protect his family. tt5220122,NM0WEaC8LcQ,Ericka tries to kill Dracula while he and his family explore an underwater volcano. tt5220122,bC0vGFJbMjo,"After following her through the ruins of Atlantis, Dracula dances with Ericka while saving her from the boobytraps that protect an ancient artifact." tt5220122,vM7QMLTm1so,"Van Helsing tries to kill Dracula, but time and again the vampire gets away and foils the vampire hunter's plan." tt1179056,a8cviBPaWJ0,Kris falls asleep at school only to get a quick lesson from Freddy Krueger. tt1179056,rvpFERo3ZnA,Freddie Krueger tortures and taunts Jesse. tt1179056,Q2-Jg_2l1FA,Quentin witnesses the event that man Freddy Krueger the nightmare he is today. tt1179056,PQ3Qc8bOqlY,Nancy falls asleep in the bathtub. tt1179056,uycL6ws3vMc,Kris walks in on Dean while he gets a disturbing visit from Freddy Krueger. tt1179056,e2Cuc3oHb4U,Nancy is trapped in a nightmare with Freddy Krueger. tt1179056,q4feCJ__GwI,Nancy and Quentin finally bring Freddy Krueger into their world and attempt to kill him. tt1179056,vMzDPwqnJfw,Nancy and Quentin jump back into the nightmare world to catch Freddy Krueger. tt1179056,Tp5Q4AyqFOM,Freddy Krueger brings Kris into his nightmare. tt6772950,qlfI_AppyIk,"Carter tells Olivia and her friends the real, sinister reason he invited them there to play truth or dare." tt6772950,2dvchK48Z-o,Olivia is dared to tell Markie of the night her father died. tt6772950,ftDkeswkEYU,"Penelope is dared to walk along the roof while drunk, and Olivia, Brad, Markie, and Lucas try to catch her before she falls to her death." tt6772950,P6c_kQL3ZdU,"Previous victim Giselle tells the gang how the game started, and then tries to complete her dare by killing Olivia." tt6772950,EAd7cMSm4Ng,"After Olivia finds out that there is no way to end the game, she recruits the world to join." tt6772950,DGW436DH8Yw,"Tyson doesn't tell a truth during a med school interview, so the demon kills him with his lucky pen." tt6772950,p07sXB8H3zQ,"Ronnie doesn't complete his dare at a bar, so he falls off a pool table and breaks his neck." tt6772950,eMHv9pPuDiI,"Before Sam can cut out his tongue and complete the ritual, Calux takes over Lucas' body and kills the only who can end the game." tt6772950,FgUKDQA1qFg,Brad is dared to take his father's gun and make him beg for his life. tt6772950,9WQJxS6-2iI,"Olivia is dared to have sex with Lucas, and Lucas is forced to tell the truth about whether he loves Olivia or Markie." tt1540011,Tazw08OZpwU,Peter helps his girlfriend Ashley tend to her infected wound. tt1540011,37O1H9YiBJo,"The crew runs into Lane and Talia, who believe like they've been lost for days." tt1540011,5XZcn9qR5SE,Lisa runs into the Parr house to find her friends and comes across a crazed Lane. tt1540011,UP6UWl1Y1-Q,Talia describes the history of the Blair Witch while the crew camps out in the Black Hills Forest. tt1540011,pVqOcGEbZvo,Lisa is attacked by a crazed Lane before being chased through the house by the Witch. tt1540011,LJ8UoUA2_uE,Lisa and James are cornered by the Blair Witch. tt1540011,wyHOKleZzFM,"After waking up to find an eerie omen hanging above their camp ground, Ashley finally breaks and accuses Talia of being behind it all." tt1540011,sf2RRCNlz38,Lisa climbs her way through a small tunnel with the Witch following close behind. tt1540011,bmBh8DSdcnU,James runs into the Parr home to find his sister. tt1540011,e80zdJ6pWlI,"Lost, tired and injured, Ashley attempts to free a drone camera from being stuck in a tree." tt2660888,HYctFVhe2Rc,"Kirk, Spock, and McCoy go after Krall before he can destroy Yorktown." tt2660888,5PaUTnk9k9Y,"Scotty and the crew use ""classical music"" by the Beastie Boys to destroy the enemy." tt2660888,qu68Gym5PvE,Kirk must make the choice to rescue Jaylah or get back to the ship safely. tt2660888,e5LZR3vCkzo,"Kirk, Jaylah, and the crew stage a diversion to allow Scotty to beam up the crew." tt2660888,Q4KRYWe3ngs,Scotty comes across a group of bloodthirsty scavengers after crash landing on an alien planet but is rescued by Jaylah. tt2660888,mtsQ0CR4Z28,Krall cuts the Enterprise in half in order to stop Kirk and his crew from escaping. tt2660888,ssgm3-sCY-Y,Kirk orders his crew to abandon ship before its inevitable destruction. tt2660888,Ff20ZDSj7d8,Krall and Kirk come face to face after Krall attempts to kill the citizens of Yorktown. tt2660888,YRpgfi7L9Rs,Kirk tries to make piece with a warrior race of aliens. tt2660888,nvldRH4OC_k,Kirk and Chekov rush to escape from Kalara and her men. tt0078346,2AmY_TaUh8M,Clark decides to show off his powers a bit after a fellow student interrupts his chances with Lana Lang. tt0078346,bfKu5Jc8TjA,Superman rescues Lois when she falls out of a helicopter. tt0078346,YwnX8My7428,"With planet Krypton moments away from total annihilation, Jor-El ensures that his son escapes in a specially constructed spacecraft." tt0078346,ju9K6nk07iE,Lois Lane is totally enrapt with Superman as she flies in the sky with him under the pale moonlight. tt0078346,Ov6nBKuu6pI,"Miss Teschmacher saves Superman, who flies directly to the offending missile and changes its course." tt0078346,TZyl-21DgPo,"After tricking Superman into opening a case containing Kryptonite, Lex Luthor throws him into a swimming pool and leaves him for dead." tt0078346,LoCaeI5RffI,A grief-stricken Superman literally turns back time in order to save Lois. tt0078346,nprJvYKz3QQ,Clark saves Lois by catching a bullet with his hand. tt0078346,3gSOZW-vNFk,"Superman races across the sky to save Lois, but it's too late." tt0078346,3oIQCt6GVcY,Superman does his best to fix the damage that the second missile did after hitting California's San Andreas Fault. tt0114069,CRjB5ImoHXk,"After making an antidote to the virus, Sam and Major Salt decide to fly in the path of the bomber that is preparing to destroy the town of Cedar Creek." tt0114069,HaK75RHhEEw,"After hearing that the Motaba virus has appeared California, Sam asks General Billy Ford why they aren't doing anything about it." tt0114069,Z6cRw6CU7l0,Sam and Major Salt capture the host animal with the help a family whose daughter has befriended it. tt0114069,MZq_z08pLqI,"After capturing the host animal and heading back towards Cedar Creek, Sam and Major Salt are confronted by Maj. Gen. Donald McClintock." tt0114069,pW-ZHlM3RxI,"After finding out he has been taken off the Motaba virus case, Sam Daniels confronts General Billy Ford." tt0114069,HRkSVkOdXcU,"While investigating a massive Motaba outbreak in a California town, Sam brings the news to General Ford that the virus has mutated." tt0092710,a2H-pXAgx6s,"Bernice chases down Carson, a wanted murderer, and the two get into a fight." tt0092710,ZUmTlIUmbmE,"Detectives Nyswander and Todras attempt to arrest Bernice, but have trouble with the front door." tt0092710,76dXe1ePSrQ,Detective Nyswander attempts to question Carl Hefler. tt0092710,MnosttqGIfw,Bernice and her friend Frankie confront Carson about the people he killed. tt0092710,PjPEnXNEX_E,"While taking her time robbing an apartment, Bernice panics when the owner comes home with a date." tt0092710,a3GgzkKvBVY,Bernice catches a customer stealing books from her store. tt0092710,SBIpGdJA_5Q,Carl pretends to be package delivery man in hopes of getting the real name of a bartender. tt0092710,_bUaFRyP80A,"Bernice cons her way into the apartment of K.E. Graybow, a man she suspects is a killer." tt0092710,-DXQJLwDAwg,Professional thief Bernice meets Dr. Cynthia Sheldrake for a possible job. tt0102526,T4wxOGDv980,Nino makes his case in court and ends up getting a light sentence. tt0102526,RQUwqHaBuOk,"After the Carter fiasco, Nino takes his anger out on Kareem and threatens Gee Money." tt0102526,3jYu-qta0mU,A hit is put out on Nino Brown after a wedding celebration tt0102526,b6WK3MwYFSk,Scotty Appleton meets Pookie and sees the horrors of the crack epidemic firsthand. tt0102526,D6OAWdqi-s0,Peretti and Appleton surveil Nino Brown and a stick-up kid named Pookie. tt0102526,4dNwoRFjOkQ,The Old man is fed up with what Nino Brown is doing to the community. tt0102526,7SybWD4iYMA,"When Scotty's cover is blown, the cops and the gangsters hunt each other through a factory." tt0102526,wstckFfu1z4,Scotty and Nick capture Nino and give him some of his own medicine in front of the neighborhood. tt0102526,taGt2UqFdm0,"Nino Brown reveals his plan to take over ""The Carter"" apartments and turn them into a crack production facility." tt0102526,K4lTsRzlorA,"Nino and Gee Money try to pick up the pieces, but it is too late for reconciliation." tt0106455,_3v30bJGaCg,"Jimmy and his partner, Brady, are in the middle of an undercover operation when a fellow officer gets killed." tt0106455,ExvYKH9z-9A,Jimmy and Brady try to get information out of a lawyer who made a bad deal with a few killers. tt0106455,ku4GcEUQ0TA,"After con man Red is arrested after a shooting, he agrees to help officers Mercer and Brady catch his violent partner Ronnie." tt0106455,b4kRHpvisxE,Ronnie tries to sell a large amount of counterfeit money to a very successful lawyer who does illegal dealings on the side. tt0106455,OTp5qNMBuRY,Ronnie meets up with man who is going to buy counterfeit bills from him. tt0106455,K0QjNiVA6NU,Red tries to get himself more time to pay back a debt to mobster Tony Dio. tt0106455,LunIbcmUQtE,"Red and his trigger happy partner, Ronnie, kill the man Red owed tons of money to while Jimmy and Brady rush to arrest them." tt0106455,lx420G7IDnE,Officer Mercer tries to get a counterfeiter he arrested to snitch on his clients. tt2404233,fZrN9LabLQQ,"After Bek steals back Horus's eye from Set he is nearly thrown off the obelisk; leaving Horus to chose between saving his companion, or recovering the eye that would restore his power." tt2404233,X_4WgfjyOyg,Bek breaks into Set's treasure vault to steal Horus's eye. tt2404233,VJW2e8_cIfw,"Horus battles Set to avenge his father's murder, and take back the throne." tt2404233,dp2MR9fswWk,"Horus, Bek and Hathor visit Thoth, the God of Wisdom, for help." tt2404233,r9ae_frgcpU,Set uses Horus's coronation as an opportunity to seize the throne from his family. tt2404233,uOHMPcGgInI,Bek and Horus fight off two goddesses armed with giant snakes with help from Horus's ex-lover Hathor. tt2404233,TfbuiIc3pME,Horus and Set battle in their divine forms for the fate of mankind. tt2404233,fKpKz3dysY0,Set denies Ra's wish and seeks immortality by destroying creation. tt2404233,kDDU-k-5v6s,Mnevis and his soldiers ambush Bek and try to reclaim Horus's eye for Set. tt2404233,CUYNZo-8cDM,Thoth tries to solve the Sphinx's riddle before the group is killed. tt2404233,89OqkIyNnfQ,Bek fights Urshu while Horus tries to stop Set from destroying the world. tt0104265,GewQTlvA_3Y,Isaac meets with his patient Diana who reveals that she has purchased a gun. tt0104265,tVubEM2oUj4,"Isaac and Heather realize they are in love, even though she is married." tt0104265,tr2hYRUEkHk,Dr. Isaac Barr meets Heather Evans and is immediately smitten. tt0104265,SriHCm7dhyw,Isaac asks Heather why she involved him in a plot to kill her husband. tt0104265,RxLb-Iqyqps,Isaac meets with Diana who has an improved confidence. tt0104265,Tvmzk3Ce8-s,Isaac meets Heather's criminal husband Jimmy who thinks he is a federal agent. tt3110958,OxLmmTv6CTs,"While the Horsemen learn more about how The Eye works, Thaddeus leaves The Eye to Dylan." tt3110958,DQU7X4QDX80,"While Atlas controls the rain and Jack does card tricks, Merritt reveals their final act to his brother." tt3110958,LoG_2u-0rWo,Dylan creates a distraction so Atlas can get away with the stick. tt3110958,Dr6eV4y0atg,Merritt and his twin brother Chase taunt each other and Jack fails to hypnotize Chase. tt3110958,CWS1CWSAmjs,"In the middle of their presentation intended to bring down the Octa CEO, the Horsemen find themselves exposed by a mysterious presence on stage." tt3110958,vRUQ_q5mivc,"After throwing the Four Horsemen out of a plane, Walter and Arthur are surprised to find out that they were tricked." tt3110958,3IVugy6dK3E,The Horsemen succeed in getting the chip through the metal detector and out of the laboratory. tt3110958,KEc0SGkBDJ4,Atlas finds a strange woman in his apartment. tt3110958,_uwVIMdk7hc,Walter explains to the Horsemen who he is and why he kidnapped them. tt3110958,5ve2E8iEbSQ,The Four Horsemen create an elaborate ruse in order to hypnotize Octa owner Owen Case. tt3110958,YmGBAiHnK0U,The Horsemen work together to hide the playing card with the chip while security searches them. tt0101984,4N-rVUkv-lw,"David and Ruth have dinner with Dorothy, an actress whose life was ruined by the House Committee on Un-American Activities." tt0101984,nA3-p6SeWtc,David gets fired while he is in the middle of filming a movie. tt0101984,XlS3PKbK2Wc,David decides to stand up for what is right while being questioned by the House Committee on Un-American Activities. tt0101984,Qdgk7Q1dn34,David is hired to direct a film that has already started filming. tt0101984,oNySP0X32eI,David is questioned about his wife and friends by the House Committee on Un-American Activities. tt0101984,AeM2PgL5hm0,"David Merrill visits Larry, a fellow filmmaker, and discovers he sold out his friends to the House Committee on Un-American Activities." tt0101984,F67qzjMABFQ,David meets with two lawyers who inform him about the House Committee on Un-American Activities. tt0101984,Wn73_KG11Wo,The House Committee on Un-American Activities attempts to get Larry Nolan to name which of his friends are members of the Communist party. tt0101984,3ND0jZIthFo,"After finding out that the House Committee on Un-American Activities might call on him, Baxter gets into a fight with David." tt1411697,xe6kO-SJYCk,Alan gives an uncomfortable toast at Stu's wedding. tt1411697,Fb1v9LGaZ1w,The guys seek information about Teddy from some angry and unhelpful monks. tt1411697,yxOMkjGIZYI,"Just as he's about to recount last night's events, Chow dies after snorting cocaine." tt1411697,kgd0wuSVHXo,"Stu struggles with the fact that he had sex with a transvestite. Then, Phil gets shot by a gang of criminals seeking their monkey." tt1411697,b_SJOg2q3PM,Stu and the guys try to steal their monkey back while Chow drives through Bangkok in a crazy car chase. tt1411697,D0yfau4bAXM,"Kingsley tricks the guys into believing he has Teddy, only to arrest Chow and leave them hanging." tt1119646,XMt98-MEWmw,The guys check into Caesar's Palace and Phil decides they should rent a villa. tt1119646,daULewxdD8w,Stu lets his controlling girlfriend boss him around while he packs for the trip. tt1119646,JZCM0ZW-GMw,"As a punishment for stealing a cop car, Stu, Alan, and Phil must participate in a stun gun demonstration." tt1119646,Hl1mw0-APy8,"When the guys gather on the roof to make a toast, Alan gives a heartfelt speech." tt1119646,G-lDaFtb7eE,"Stu, Phil, and Alan return to their hotel room and find Mike Tyson waiting for them." tt1119646,h4Zho4DUcXw,The guys wake up to find their hotel room in shambles and a tiger in the bathroom. tt1119646,znjpkKX6bek,Stu discovers that he got married while blacked out. tt1119646,DdNfSuTpDbA,Stu feeds the tiger a drugged piece of meat and then sings a song. tt1119646,sIbYUg1FKK4,"During the wedding singer's inappropriate song, Stu breaks up with Melissa." tt1119646,u_6tnXDfxBo,"When the guys go to pick up their friend in the desert, Mr. Chow gives them the wrong Doug." tt5052474,AUbfGwY4Fco,Matt tries a less-than-conventional technique to squeeze the truth from a Somali pirate. tt5052474,ch_JeDyNaFM,Matt and Alejandro are taken by surprise when the police escorting suddenly attack. tt5052474,HXubLg3o3qY,Matt brings Alejandro into the fold on a war against the cartel. tt5052474,eMyuRmZNaTk,Alejandro deals with the remaining sicario after nearly being assassinated. tt5052474,YOUt-qq-snc,A team of soldier raid the home of Somali pirates. tt5052474,gA0u3Iir0CU,"While Matt tries to escape to the border, Alejandro searches for Isabel." tt5052474,xVWAp3OLYTM,Miguel is forced to assassinate a captured and hogtied Alejandro. tt5052474,99wezqewopU,Border Patrol chases down a group of undocument immigrants attempting to cross the border and discover something unexpected. tt5052474,uvZImlL51Io,Matt avenges the death of his friend Alejandro by murdering all those he believes responsible. tt5052474,6hT5xOszncI,Alejandro and Matt lead a covert team posing as a rival cartel while kidnapping Isabel. tt0112401,otlsrvaxpdE,Bain and Rath try to kill each other in a moving taxi. tt0112401,Tpz4Dl8focY,"A figure from Rath's past appears, but will not let him get away alive." tt0112401,infMR62l_dc,Bain uses ingenuity to escape from a moving cop car. tt0112401,D0p6abBHjZU,Rath makes Bain wait all day to kill him to make him lose his cool. tt0112401,6MaOE8YiJy8,"Rath and Bain try to kill each other, while Electra tries to stay alive." tt0112401,pK35em6gl0Q,"After losing his patience waiting, Bain goes inside the bank for a chat with Rath." tt0112401,wbROoMNi8Ho,"Bain threatens to kill Electra, but Rath has something to say about that." tt0112401,FOXEyMTnekU,Rath meets Miguel Bain for the first time when he takes the hit that belonged to him. tt0112401,howhfMAoEt0,Bain and Rath have one final confrontation to prove who is number one with a bullet. tt0112401,TZXt5K8U_HM,"Bain finally gets a shot on Rath, but realizes that Rath is not working alone." tt0111255,elR_OgHND1c,Ray plants a bomb to kill the first of Tomas' men. tt0111255,RGaBXM3EHUo,Ray is surprised when he sees May alive at what was supposed to be her funeral. tt0111255,B9SkWFyq-EQ,Ray fights to take back a woman's seat on the bus. tt0111255,g4BV-MbeTjM,Ray spoils Ned's plan when he rigs a restaurant with explosives. tt0111255,uraQr7J0Tlw,Ned threatens the Miami Bomb Squad by building a bomb of his own. tt0111255,NqWsINBcm2o,"Ned listens in on Ray's phone call about the ad, but Ray knows he's there." tt0111255,D6XNq3CrDBU,Ray plants a special bomb to take care of Tony. tt0111255,PJ0NkZgbrUw,Ned walks right into Ray's trap as the building around them begins to self destruct. tt0111255,HOePjj-M63Y,Ray rigs his hotel room with explosives when he learns that Ned is coming after him. tt0111255,c82FD6lh2LQ,Ray has an explosive teacup delivered to Tomas. tt2557478,lp1s4-tc2U0,"In Gipsey Avenger, Jake and Nate defend Sydney, Australia from Obsidian Fury, a rogue jaeger." tt2557478,1qYVJgixc3U,"When kaijus attack, the jaegers of the Pan Pacific Defense Corps fly into action!" tt2557478,E9pB6_WUR-U,Jake and Nate fight Obsidian Fury on thin ice and make a horrifying discovery. tt2557478,O7jHiw8IyxQ,The scientists manage to save the Shatterdome just in the nick of time. tt2557478,j66Fsl_q5Ig,"In Scrapper, Amara and Jake outrun November Ajax." tt2557478,4KkCEjawUHM,Newton makes his monsters grow. tt2557478,DtV4RnADOeA,The Mega-Kaiju slaughters its way through the PPDC. tt2557478,U22aGOTlIy8,The PPDC drops Gipsey Avenger on the Mega-Kaiju. tt2557478,836dGO4v65I,Kaiju-Jaeger hybrids attack the Shatterdome. tt2557478,4sNyWmYN-rM,Jake does his best to get the cadets into the fighting spirit before they take to the skies. tt3410834,t5GdZx7AS-E,"After shooting Four's mother, Evelyn, Peter releases the memory-erasing serum on the citizens of Chicago." tt3410834,6O_dprt5rts,Tris and Christina use high-tech drones to fight their way into Evelyn's facility and reunite with Four. tt3410834,pwSkfvXD_ug,Four participates in what he believes is a rescue mission into the unforgiving Fringe. tt3410834,mmH76155CuU,"When Four gets news that he's not going to Chicago, he attacks the passengers and pilot of his hovercraft and brings it crashing down." tt3410834,I9r1j1ZKBYk,Tris shares a message of determination with the newly liberated citizens of Chicago. tt3410834,FlQd5p9_XvY,"Tris and her friends climb over the dividing wall and escape, but not before losing one of their own." tt3410834,tlSscKeO9Cc,Tris steals David's hovercraft and makes a daring escape. tt3410834,Q7--4JW6y6E,Tris and her friends are rescued in the nick of time when trying to escape Edgar. tt3410834,Drt2w_iit1M,Evelyn tests a serum that wipes out people's entire memories. tt3410834,Vn5WazNB5sU,Tris shuts off the release of the memory serum and defeats David. tt0293815,oXGJeQDRuxE,Money Mike attempts to escape from Damon with the help Craig. tt2531344,REWaiDiKDIE,"Mitchell bursts into Kayla's hotel room, throws her date against the wall, but then the error of his ways and reconciles with his daughter." tt2531344,Qc-E0u_1Ei4,"Lisa, Mitchell, and Hunter try to run their daughters' limo off the road which leads to a barf chain reaction in the girls' limo." tt2531344,QzcXi2irovs,"Lisa, Mitchell, and Hunter crash their daughters' prom to stop them from having sex." tt2531344,V9RhgEHIxkI,"Lisa, Mitchell, and Hunter arrive at Austin's house to stop their daughters from having sex, but instead find Austin's parents acting on their prom night fantasies." tt2531344,RgPuswoKZtw,"Julie, Kayla, and Sam tell each other about the results of their sex pact, and Sam comes out to them." tt2531344,NizLAsFlvww,"Mitchell and Hunter break into Ron and Cathy's house to steal Ron's cell phone, but find themselves in the middle of one of their sex games." tt2531344,x3OTeacsT84,"Hunter tells Sam that he wants to spend more time with her, and she tells him that she is a lesbian." tt2531344,ZvGaiZMBOOI,Lisa has to escape the hotel room before her daughter has sex. tt2531344,Eu1EfSDUKFg,"Lisa, Mitchell, and Hunter read their daughters' text messages, and find out that their emojis mean they're making a ""sex pact"" to lose their virginity tonight." tt2531344,TfsGgp4go6k,"Mitchell is challenged to a chugging contest at a high school party, but this isn't your father's drinking contest." tt0293815,A7a7RtpKzYY,Craig and Day-Day fight over Donna. tt0293815,XUnfvueexSk,Craig and Day-Day find crime on the first day of their new job. tt0293815,TRgkvisG4yg,Damon corners Money Mike in the bathroom and shows him how they flirt in prison. tt0293815,D4E8UpMb8SI,Craig and Day-Day run into Damon on the way to work. tt0293815,xNSWp7Hb5tU,Craig and Day-Day meet Money Mike. tt3393786,nma6daFY6b0,Reacher finds himself being followed by a group of guys intent on hurting him real bad. tt3393786,3Blk7Vo0abY,Two cops arrest Reacher in a diner only to find that he's not the one who should be wearing the cuffs. tt3393786,mfCwgYR1yS8,Reacher finally has a showdown with the Hunter that threatened Samantha's life. tt3393786,kjLqB63ihJE,Reacher escapes custody and saves Susan Turner from men sent to kill her. tt3393786,6R3tTi_m8VQ,Reacher catches up to the Hunter who is holding Samantha at gunpoint. tt3393786,jk2mjuWhQ_0,"Still wanted for murder, Reacher and Turner have one final chance to prove that Gen. Harkness is the real bad guy." tt3393786,KkBUMdYMw-8,Reacher and Turner rush to the rescue of Lt. Espin after he gets caught in a shootout. tt3393786,rrWLFKZafAc,"While on the run, Reacher and Turner decide to confront a dangerous looking man following them." tt3393786,vYm_2A_cg0Y,Reacher spots two passengers that he thinks deserve some turbulence. tt3393786,jF6JN1VSpmY,Reacher takes a break from his meal to say hi to two guys following him. tt0790724,YkfEc-PYJ8A,"After screwing up, Linsky finally has to meet the mysterious man behind the killings, The Zec." tt0790724,9g5pe-B6uL8,A mysterious man in a parking garage uses a sniper rifle to kill five innocent people. tt0790724,PxuQ1n3xaRQ,Jack Reacher finally confronts Charlie and gets some revenge for all the people that had been killed. tt0790724,nXrsB2RMo2w,"Before Reacher can ask gunstore owner Martin Cash about his customers, he has to first prove he can shoot." tt0790724,mySMw3VkEBE,Reacher calls Helen only to find she's been captured by Charlie and his men. tt0790724,cgLMSMIU124,Reacher gets attacked by two destructive idiots while investigating a missing suspect. tt0790724,lfeYgfKa2cY,"Reacher finds himself framed and chased by the cops, only to literally run into the guys who set him up." tt0790724,ILbn3iOiOiU,"Reacher, being chased by cops and bad guys, puts his faith into the local public's dislike of police to save him." tt0790724,5U8scp5J9Is,Jeb Oliver and his friends attempt to take on Jack Reacher in a bar fight. tt0790724,h8Rxb-9snJQ,Jack Reacher gets a provoking visit from a girl named Sandy and her fight happy friends. tt0385307,hhmPqQpJWks,"Gracie offers to be the face of the FBI because she is an exemplary role model for women, but she runs into another agent with anger management issues." tt0385307,FQH9s2dJe50,Gracie keeps her promise to help an elementary school girl with her school presentation. tt0385307,1etjTR5wYhU,"Gracie Hart is recognized by a fan, which blows her undercover operation in a bank." tt0385307,Hi93mYJyO8I,Gracie makes her debut on Regis Philbin's tv show and brings Fuller for a demonstration. tt0385307,c0N60xOU9yk,Gracie goes undercover in an old folk's home to get information from Stan Fields' mother. tt0385307,H6Y2GNQfNo4,"Gracie and Fuller try to clarify their working relationship, but it gets violent." tt1055292,CaG_6UWfyLE,"The case worker drops by for a surprise visit, but Holly is drunk." tt1055292,0SNckpLgK_Q,Holly and Messer have a big fight at Thanksgiving. tt1055292,gvANfpQnohw,The case worker shows up at a really bad time again and they forget to hide the pot brownies. tt1055292,_ICXfAWaISQ,Holly and Messer try to change the baby's diaper for the first time. tt1055292,2DCjXk4qpLo,Holly ask Messer to show how he picks up women at the grocery store. tt1055292,_O8yGbcFmc4,"After a romantic evening, Holly accidentally crashes Messer's motorcycle." tt1322312,9QwQbE5Eu-I,"Erin and Garrett have phone sex, but the fantasy rapidly unravels." tt1322312,FYZrWswLpu0,"Garrett has a private talk with Erin's protective sister, Corinne." tt1322312,yceziOf95-0,Garrett and Erin have some really bad wine at an Italian restaurant. tt1322312,3QoYCS0iOq4,Erin and Garrett say goodbye at the airport. tt1322312,WEvTEdLLa2s,Erin and Garrett have dinner with some married couples. tt1322312,9Ro2O9YAkAo,Box explains how his mustache helps him pick up women in a specific age group. tt1322312,dJhNjpuc9eo,"Corinne explains how she and Phil like to dry hump, but she makes Erin worry about her long distance relationship." tt0419843,Hj7OFElSIlM,Sarah shares with Carter how she feels she is exactly where she is supposed to be. tt0419843,XSX3JKL0DpU,"Carter meets Eric, a guy who has a huge crush on Lucy, in the mall bathroom." tt0419843,Rf161T4RyxA,Sarah opens up to Carter that she has breast cancer and they share a passionate kiss. tt0419843,GwtcfnmV68I,Carter moves in with his grandma Phyllis. tt0419843,l17e0M4TTBA,"Sarah takes Carter to her special place, where she reveals that her husband is having an affair." tt0419843,8ZSuFOPBDmI,Lucy shares a humiliating story with Carter and he encourages her not to be angry at her sick mother any more. tt0419843,JhMO7RA7-VI,Lucy decides to forgive her mother and work on the next phase of their relationship. tt0419843,WCM5kknf5nI,Sarah and Carter go for a walk around their suburban neighborhood. tt0419843,F8q-K4BTbEk,"At the mall, Carter asks Lucy about the suburban scene and the average high school experience." tt1340138,AEBd24_Uxfk,T-1000 chases Kyle Reese through a shopping mall until an unexpected savior shows up. tt1340138,wXLFg03in2U,John Connor and Pops finally go head to head as the fight to stop Genisys comes to an end. tt1340138,5Le4OlAvuME,"After saving Sarah and Kyle Reese, John Connor reveals the truth of his origins to them." tt1340138,XGoagkYcJ38,Pops sacrifices himself by holding off John Connor while Kyle Reese and Sarah escape. tt1340138,LTfMvliqiGk,Sarah is forced to make a tough decision before she can take out the T-1000. tt1340138,y5vxDOma1Ok,The new and improved John Connor goes after Kyle Reese and Sarah after his identity is revealed. tt1340138,NBYfDP0IO18,"Pops, Kyle Reese, and Sarah are chased by John Connor." tt1340138,RtxMw4sua3Q,Sarah and the group take to the skies to take on John Connor. tt1340138,C9rUREflwDI,Kyle Reese faces off against the original T-800. tt1340138,UZnkAElIe_c,Pops goes up against the original T-800 model in a new timeline. tt0090859,EdiZzm9bA2I,"Detective Monte reluctantly congratulates Cobra on a job well done, but Cobra has one more surprise in store." tt0090859,pdwGNiv2q4U,"Captain Sears assigns the Night Slasher case to Cobra, who gives Gonzales some dietary advice." tt0090859,Ycv2RoyxW1w,Ingrid narrowly survives an attack by the Night Slasher. tt0090859,o6sD0PvhkWc,Cobra fends off an onslaught of psychopaths as they descend upon a motel to kill Ingrid. tt0090859,99ziSsaLUpU,Cobra protects Ingrid with his defensive driving skills in a furious car chase throughout Los Angeles. tt0090859,Vbj9JcYGo_w,Cobra faces off against Night Slasher in an abandoned factory. tt0090859,F_cS_kmSiRY,Cobra inflitrates a supermarket to free some hostages and put away a psycho. tt0090859,UqPsrqpwLmU,Ingrid drives while Cobra lays waste to a swarm of motorcycle-riding murderers. tt0090859,q1bV-D8cSz8,Cobra fights off some assailants at his apartment as the Night Slasher prepares to make his move at the hospital. tt0090859,VqL0Mr9uNL8,Cobra races to the hospital as the Night Slasher pursues Ingrid. tt1469304,dZjgSYTxWsY,"Brody, Mitch, and Summer are arrested and scolded by actual cop Sgt. Ellerbee after an illegal investigation." tt1469304,x35VnGsGrFc,Mitch chases after Victoria's henchman Frankie and take back the evidence the man stole from him. tt1469304,Wd5RTjtSSxk,Mitch and Brody go undercover to infiltrate Victoria's secret operation. tt1469304,axhUtepWokA,"While Ronnie distracts Victoria, the rest of the Baywatch crew investigates a drug operation." tt1469304,WDuIl_uPY_s,Mitch challenges Brody to a strong man contest before he can join the squad. tt1469304,CDTnjLPgMKM,Ronnie gets a little too excited after seeing CJ fresh out of the water. tt1469304,FFvaLp9s1p0,"Brody, Mitch, and Summer hide in a morgue while a pair of thugs hide evidence from a murder case." tt1469304,QlDqtuo10fA,The Baywatch squad finally corner Victoria as she is about to escape. tt1469304,HfgFZz6gCOM,"After saving the beach, the Baywatch crew settles in for the first time as a real time." tt1469304,N_qIfvDbZjc,"Fired from the job he loves, Mitch gets inspiration from his old mentor." tt0095188,wka4snE-AmU,"Andy uses a huge boulder to stop the speeding mailman, but he ends up ruining his publisher's car." tt0095188,dqfoyAnszH0,"Andy goes fishing with some locals, but makes enemies instead of friends." tt0095188,oo5SkNM3c1Y,Elizabeth shares her squirrel story with Andy and he realizes it is based on himself. tt0095188,vIgFGJRGlkk,"Andy Farmer tries to call the Sheriff about a coffin in the garden, but the operators are not obliging." tt0095188,mxnq8jkwttE,Elizabeth tells Andy that his novel really stinks. tt0095188,QNUbwijCKfw,"Andy loves the ""lamb fries"" at the local diner and breaks the record for eating them." tt0095188,gMCgkXpEOIY,Andy tries to sell the farm with a little help from the townsfolk he hired. tt4881806,s-vP7WgMkpA,"As a volcano erupts on the island, Claire and Franklin are attacked by a carnotaurus. Thankfully, Rexy intervenes." tt4881806,hAf3IBKWubo,A team sent to get a Indominus Rex rib runs into more than they bargained for. tt4881806,an9Zfn3IZCY,Mills tries to escape with the Indominus Rib and Owen has to say a final goodbye to Blue. tt4881806,CkAf_qzHNwo,Wheatley tries to get teeth from the wrong dinosaur. tt4881806,NFj82X1Fdh4,Dr. Ian Maclcolm talks to the U.S. Senate about the new age brought upon by bringing Dinosaurs back into the world. tt4881806,xgX9WrVFO0Q,"Claire, Owen, and Franklin outrace the erupting volcano. They view the tragic sight of a Brachiosaurus getting caught in the destruction of the island." tt4881806,EQWtaLTOwCw,"Owen, Claire, Maisie, and Blue confront the Indoraptor." tt4881806,jwnPI-d36vU,"Owen tracks down Blue, but so do Wheatley's men." tt4881806,XUSzvNtSsFE,Owen and Claire try to get T-Rex blood for a transfusion. tt4881806,BfRUV4g8sYw,"Franklin inadvertently allows a Baryonyx into their facility, along with lava." tt1179933,4UzVKW_Iqi0,"Michelle makes a break for the airlock, only to have a terrifying surprise." tt1179933,DJTF3NmqF7U,Howard confronts his captives about their absconded supplies. tt1179933,Mc_zp1s60NY,"Howard, shows Michelle what's happened outside." tt1179933,bMjYOV8VnYk,Michelle escapes from the burning bunker. tt1179933,lLeY8-bhEuQ,"Michelle uses her creativity to craft a Molotov cocktail, just in time to take down the living alien ship." tt1179933,jypAc6XYFfA,Howard breaks down the situation for Michelle. tt1179933,UglfLjHUNbU,Michelle flees from Howard. tt1179933,iQJh6I8kH_E,Michelle launches an escape attempt. tt1179933,pl7JzW6eGZg,Michelle hides in a barn from an alien stalker. tt1179933,InkyowbQcIs,Michelle finds a large alien ship spraying poisonous gas. tt4172430,Vh-olAK5vrs,The safehouse is subject to a surprise mortar attack in the middle of the night. tt4172430,_IwNoboTiHU,A group of Libyan enemies attack the embassy where Ambassador Chris Stevens is staying. tt4172430,0K6bVf4ra1w,The team is attacked by a second wave of enemies with more artillery than before. tt4172430,pAwoA-XPzsQ,The Soldiers hold down the fort as an offensive is launched by their enemies. tt4172430,2pCUsMk0Zs0,"Jack Silva realizes the mortar attack has heavy casualties, including his close friend Rone." tt4172430,OxBd2RQI4eQ,A group of Libyans surge the compound as the group prepare for what may be the final siege. tt4172430,hgqJjr7pBa0,Jack Silva and Rone are cornered by a group of militiamen at a makeshift checkpoint. tt4172430,88dS92rgWhA,"After only finding Ambassador Stevens body, Tyrone and Jack try to instruct their team to leave the burning compound and make it back to the Annex." tt4172430,cWj-sdxFiY4,A group of military contractors escape the ruins of the embassy but run into a road block after going the wrong way. tt4172430,EL3Ma917bug,The Secret Soldiers are attacked by the same group who went after the Ambassador while en route to the makeshift embassy. tt2118624,UDINZf4W4mw,Max and her friends watch as the killer in the film strikes his first victim. tt2118624,LQFc7IKhUuE,Max and the other survivors attempt to run away from Billy but are stuck in slo-motion. tt2118624,YNAv6w5RDIs,Max says goodbye to Amanda one last time. tt2118624,FTzUto6toxY,The gang finds out firsthand the origin of the murderous monster stalking them. tt2118624,BGZN_6xPw64,The gang has a hard time convincing the camp counselors in the movie that they can't escape the genre they are in. tt2118624,gpjYU0C2yrY,Max faces off against Billy. tt2118624,QgqXAXhRvYU,Duncan finds out the rules aren't exactly what he thinks. tt2118624,ywRWNlbXD8s,Max and the survivors flashback in time in order to escape from Billy. tt2118624,kfdeG-hRX7A,Max and her friends embrace the slasher genre and enact a plan to get Billy out of hiding. tt2118624,HfFM7RZ5GxI,Max goes to rescue her mother alone. tt0822847,PBaQezez_UU,Vampires attack the homestead of Lucy Pace and her family. tt0822847,2nclzm_QlLw,"Priest's interrogation of a vampire's ""familiar"" is cut short." tt0822847,SJSDO3IHsrs,The bloody history of the war between humans and vampires. tt0822847,sdwghUH-K14,Priest is given final orders by Monsignor Chamberlain. tt0822847,BN8VnFVqRRI,Black Hat wreaks havoc on an unsuspecting border town. tt0822847,5uvhg1AtZlQ,Priest and Priestess try to slow down Black Hat's train and save his niece. tt0822847,iktC8imMBnw,Priest fends off a nest of vampires while trying to find information on his niece's captors. tt0822847,kCxqmweKXZ0,Priest fights Black Hat atop a speeding train. tt0822847,usmBCn2WxYU,Priest makes a last stand against Black Hat. tt0822847,nixHRzTvCUE,Priest and Hicks investigate a vampire hive and find more than they bargained for. tt2304933,rt3FEbzjM3o,Sergeant Reznik indoctrinates Ben into the military. tt2304933,9UrJ60MVNao,Cassie finds that Evan lied to her about her gun. tt2304933,xLdIkC6qcow,Ben and his squad are sent on a mission to kill the Others. tt2304933,tmUleIek9Fc,Evan takes care of a wounded Cassie after she is shot in the leg. tt2304933,2oLqQw8jHts,Ben's squad gets a new member named Ringer. tt2304933,QNlazlRan6A,Evan follows Cassie in order to help her find her brother. tt2304933,HGgfJkZAx8Y,Cassie goes back to get Sam's stuffed bear. tt2304933,3IUoqFHJ6wk,"After escaping, Ben and Cassie discuss what they should do next." tt2304933,r2GpJzIdoYQ,Cassie learns the truth about Evan. tt2304933,LTyelOWIGh0,Cassie and Sam fight to survive the first two waves of attacks from the Others. tt3862750,gxqt6x5ThcU,Carter breaks into Leah's house while she is away and goes through her personal belongings. tt3862750,6QB5kS_JcuU,"Carter tampers with Dave's car, causing him to crash. After the crash, he kills Dave." tt3862750,AvPVexWamGg,Carter attacks a man talking to Leah at the gas station. tt3862750,OByY45anMr4,Carter saves Leah from a jerk at the bar. tt3862750,oNiW2ftWINg,Dave threatens Carter when he makes Leah uncomfortable at a restaurant. tt3862750,QP_o0yWJYKM,Detective Hansen gives Leah some advice off-the-books. tt3862750,eJ93IIgvVyI,Leah breaks up with Carter. tt3862750,_JoP_xhSETM,"Carter breaks into Leah's house to finally make her his, only to find a shotgun waiting for him." tt3862750,rey_J7jIvno,Leah breaks into Carter's apartment and destroys his stuff. tt3862750,-Xb-ryuTDlE,Mrs. McCarthy checks out suspicious behavior next door and Carter kills her for it. tt1198138,LFO-xqbWYpw,Sharon is shocked to find out what Derek has been hiding from her. tt1198138,Rp8A7gf0dZ8,Lisa attempts to seduce Derek at the company Christmas party. tt1198138,y2wupV34DRk,Derek and Sharon are shocked to discover Lisa may have kidnapped their child. tt1198138,ROeFmcvZRf8,Lisa and Sharon have an all our wife vs wanna-be-mistress battle after Sharon finds Lisa in her bedroom. tt1198138,DbORPqtzyx4,Lisa and Sharon take their fight to the next level. tt1198138,-YaPh7shnWQ,Sharon accuses Derek of cheating on her with Lisa. tt1198138,HRmLJScvW8M,Lisa follows Derek to his car and surprises him with a gift. tt1198138,O6Stx_mwAVY,"Derek is surprised when an emergency from his ""wife"" turns out to be Lisa." tt1198138,g425SDBoDBI,Derek is shocked to find out Lisa has followed him to her hotel. tt2011159,b60DLSEemEY,"Colin stalks his ex-fiancee, Alexis after he escapes from prison." tt2011159,9Wfswn2lkAo,"After getting pulled over, Terri tries to get help from a cop when Colin isn't looking." tt2011159,njfu6wuNC_w,Meg joins Colin for a smoke in order to find out more about him. tt2011159,NcMHcR5IzEY,Terri defends herself against Colin in an effort to buy more time. tt2011159,Wrb8nkLKkxU,"Jeffrey apologizes to his wife, Terri." tt2011159,PECLt8uCcRk,Terri discovers that Colin isn't who he appears to be. tt2011159,xCvyw2bipUM,Colin forces Terri to change in front of him. tt2011159,dfLN2aPZ5sM,Colin takes Terri to his ex-fiancee's house. tt2011159,KXTBm9eUiko,Terri lets Colin use her phone after he crashes his vehicle in the storm. tt2011159,bhtJNsUfHIM,Colin's parole hearing doesn't go as he planned. tt2381249,fegOYb4_PSk,Ethan Hunt negotiates with Lane to set Benji free. tt2381249,u4T7slD8Mq4,Ethan Hunt gets unexpected help from Ilsa Faust while being tortured. tt2381249,jBMZnAIY_Ng,Ilsa Faust faces off against Janik. tt2381249,Oy9R8mpKSmM,Ethan Hunt goes after Ilsa Faust after she steals top secret data. tt2381249,Jf8Sheh4MD4,"While Benji attempts to infiltrate a government building, Ilsa Faust must decide if she should rescue Ethan Hunt." tt2381249,880-MqUhhEk,Ethan Hunt battles against Ilsa Faust and a mysterious sniper in order to foil or start and assassination attempt. tt2381249,e56FOw5rIhw,Ethan tries to get himself and Ilsa from Lane's men. tt2381249,OArHd5pe8Ls,Ethan Hunt tries to stop an attempted assassination and runs into a giant-sized sniper. tt2381249,elpUGB9Ap1Y,Ethan Hunt is left hanging onto a plane mid-takeoff while Benji tries to get him inside. tt2381249,GSrtUVzdt6M,Ethan Hunt and Benji chase Ilsa and her crew through the streets of Morocco. tt0419706,ThCnJ2m0exo,"When a mutant attacks and kills Portman, Sarge annihilates it with ""The Big F***ing Gun.""" tt0419706,D1Iu4JKRGIM,Dr. Carmack and his colleagues run from monsters of their own making. tt0419706,FBpdDE96XhE,Sarge and his men shoot the hell out of space zombies. tt0419706,nUxHF4O3GYU,"The Kid refuses to follow orders to kill everybody on sight, which causes conflict." tt0419706,-Jf-E7oEguU,"Reaper goes on a rampage, shooting and killing attacking monsters and mutants as he searches for his sister." tt0419706,nr1sLngjJXQ,"As Sarge begins to mutate, he and Reaper square off in a battle of bullets, lasers, and explosives." tt0419706,JyEvCZ8kwW4,Destroyer tries to survive an attack by a hulking mutant. tt0419706,y0DYykDLU0Y,Sarge and John fight off even more zombies but it becomes obvious it's a losing battle. tt0419706,lPOo7SzR7Sc,"Reaper is attacked by a mutated scientist. Then, a crazy monkey scares Sarge and Destroyer." tt0419706,MPQojemDuDo,Goat is attacked and gravely wounded by a mutant. tt0483607,SEn179T1Apk,Eden fights in Kane's medieval arena. tt0483607,eWuiIzqZryQ,Eden and her team make a final getaway from the raiders. tt0483607,UYzF0CAcN3I,Sol's raiders attack Eden and the other survivors. tt0483607,4T8OrSXKqVo,Eden leads her team on a mission on a shipping boat. tt0483607,jf_-d13-UNw,Sol's men pursue Eden's unit. tt0483607,-yzEjTjo2IA,Eden fights Viper. tt0483607,XN7uqQnAxIc,Sol gives his raiders a show. tt0483607,9IVd9X91fiI,Eden out-maneuvers a pack of raiders. tt0483607,b0kunBGZmK4,"As the team tries to escape in an APC, they get attacked and captured by a never-ending group of raiders." tt0483607,TL91ZYSxoag,Eden's mission gets off to a bad start when they are suddenly attacked by violent raiders. tt1482459,BXlYuaycRbU,The Once-ler wonders how bad it can actually be to chop down trees to make a profit. tt1482459,OqvD4NC-s9E,Ted and the townsfolk finally stand up to Mr. O'Hare and sing a song as they plant a tree downtown. tt1482459,r0eg-ieT77g,O'Hare pursues Ted in a zany high-speed chase for the seed. tt1482459,9KYrqmQdvsI,"The Lorax tries to steal The Once-ler's bed, but he accidentally sends it down a raging river." tt1482459,StvrI9z9kLY,"When Ted shows up at her house, Audrey shows him her painting of something called ""trees""." tt1482459,aecYY1vUiDU,"When Ted wonders where he can get a real live tree, Grammy gives him advice." tt1482459,gV6Y3OwR2n0,The Once-ler makes sense of the Lorax's lesson and gives Ted a seed. tt1482459,92lO2Bum7v4,The villagers introduce us to the town of Thneedville. tt1482459,GZ3fgYIUrJU,"After the Once-ler chops down a tree, the Lorax appears out of the sky to confront him." tt1482459,tp1eVLXEXm8,The Once-ler discovers a beautiful forest and makes friends with the animals. tt0482606,KEfLE_bvsSo,The masked strangers force themselves into the home. tt0482606,PmNdhL9_nPM,"Kristen hears another knock, but this time it's inside the house." tt0482606,ZpwDcgHhFDQ,"Believing he is one of the killers, James mistakenly shoots his friend Mike." tt0482606,018kRNbZj0I,Kristen is tormented and attacked by the mysterious masked criminals. tt0482606,VjRhsK7p8gY,Two young Mormons discover the brutal murder scene at James and Kristen's house. tt0482606,hFNZy6iBNVs,The masked intruders end their torment by stabbing and killing James and Kristen. tt0482606,hyopxkr7RuY,"Despite warnings from Kristen, James steps outside to investigate his car." tt0482606,06qgPR9Eqww,Kristen makes a break for and tries to escape the house. tt0482606,8pbM30ZMO84,James and Kristen act fast when an axe starts chopping through their front door. tt0482606,GLQiaEzx03A,"When their car is destroyed, James and Kristen head back into the house, only to discover that someone has been inside." tt7518466,6qZZWAScCn8,Conor has a rematch against Diaz for the title. tt7518466,XdtbL0dP0X0,Conor has some choice words when he learns that the world featherweight champion is canceling their fight. tt7518466,MLCZ_B7FKc8,Blink and you'll miss it! tt7518466,4C7VpH9VvC0,The fighters talk smack in preparation of their title fight. tt7518466,djPS3AC9DKk,Conor meets Arnold Schwarzenegger. tt7518466,UB1xsj0ZiKA,Conor McGregor takes on Chad Mendes. tt7518466,NQw5e3HJgfk,Tempers flare between Conor and Nate Diaz. tt7518466,a7vAR-7YBWE,Conor has an accident during training. tt7518466,j1tXIl0snEk,Conor McGregor faces stiff competition in Nate Diaz. tt7518466,JvTQZxz-KBk,Conor McGregor begins his UFC career with an impressive winning streak. tt0795421,alhVUKh36_Q,Sophie gets overwhelmed with the mystery of her parentage. tt0795421,2GvL0jFY7u8,"Donna and the Dynamos perform ""Waterloo"" with the guys." tt0795421,bu9YxTb6gf8,Sam and Donna play cat and mouse with their feelings. tt0795421,nLkmfL6IVQs,Rosie aggressively pursues Bill. tt0795421,CyUZe8xRNnQ,Sophie gets to know her potential fathers. tt0795421,QRoWiTcO7dk,"Everyone dances along with Donna and her friends to ""Dancing Queen.""" tt0795421,05qid4p_cfw,Sophie reads about her mother's romantic past. tt0795421,Qe2m1wxb5_w,Donna grieves over the end of Sophie's childhood. tt0795421,mIeU7y3CGKQ,Sophie and Sky declare their love for each other. tt0795421,DUjB9LTtzGg,Donna sings about her ex-boyfriends. tt5308322,1dwtsZ4IJQE,Tree confronts the real killer. tt5308322,NnDKut3pxoU,Tree makes one terrifying discovery at the hospital after another. tt5308322,rtn4-lDSB80,The Murderer stalks Tree in the parking garage. tt5308322,IlH-egwG2pQ,Tree gets a deadly drop on the killer. tt5308322,idvqLiOeLgc,Tree gets herself repeatedly murdered in an attempt to discover her murderer's identity. tt5308322,YAmnMBHMPso,Tree sticks it to Danielle and makes her move on Carter. tt5308322,yQpFQFL-YLI,Tree mistakenly thinks that getting arrested will save her. tt5308322,uAjGtAOqMQw,Tree kills Tombs before he has a chance to kill her. tt5308322,86Vd7XFiYZA,Tree walks into a deadly trap. tt5308322,_y_We1FV_RQ,Tree lets her guard down at an inopportune moment. tt5776858,MNmdm8voYFE,Alma & Reynolds retrieve a dress from a troubled customer. tt5776858,fn5dXUu_qxM,Alma's surprise dinner for Reynolds goes downhill. tt5776858,KfAm5nyHM3U,Reynolds takes ill when inspecting a wedding dress. tt5776858,a87b-bsz1Mg,Reynolds rages about his marriage to Alma. tt5776858,URDzGjLruJU,Alma gains confidence and vies for Reynolds' attention at a fashion show. tt5776858,iHQZhYadNwQ,"Reynolds deliberately eats a poisoned dish, and Alma tells him her intentions." tt5776858,WQLTwtwUnEI,Reynolds takes Alma's measurements. tt5776858,w424xCe0eGQ,Alma details her love with Reynolds. tt5776858,UQes95Ouciw,"After recovering from his poisoning, Reynolds makes a major life decision." tt5776858,vvBW4Szes1U,Reynolds and Alma hit it off immediately. tt7109844,3PhcsTMfqIs,The unregulated days of the post-Civil War whiskey industry and the federal law that fixed it is recounted. tt7109844,K3Po5dqfTgc,Neat: The Story of Bourbon - The Right Way To Drink Bourbon: Longtime distillery employee Freddie Johnson talks about the best way to drink bourbon: whichever way you want to. tt7109844,xpQ1_5xZuKY,"Third-generation Buffalo Trace Distillery employee Freddie Johnson talks about what good bourbon is all about, and how much it can mean to enjoy it with family." tt7109844,-HwJeE-iuIY,"Distillers and Bourbon drinkers all discuss the legacy, the future and their hopes for bourbon." tt7109844,MqiNJmj_ODg,"Castle & Key Master Distiller Marianne Barnes, and other distillers talk about what the corn means for bourbon." tt7109844,ldzjtk016bY,The importance of the white oak barrel in the bourbon-making process is analyzed. tt7109844,EIrEOL6S6sk,Distillers and bourbon aficionados recount how Elmer T. Lee and his single barrel bourbon revitalized the whiskey industry in the 1980's. tt7109844,DZuHwW24HUY,"Distillers tell how bourbon is made, from when the grain comes in to when it hits the barrel." tt7109844,9tqaHOTOasE,"By the 1980s, the popularity of bourbon was surpassed by new, cooler liquors, and the bourbon industry began to suffer." tt7109844,SBSzom7RbCs,"The bourbon making process is examined, and we find out what makes bourbon different from whiskey." tt4542660,RG4exoyldqw,The skaters shred in Dubai. tt4542660,L0-Ye--I0Uo,American skateboarders come to China. tt4542660,wXc9z1SmLJM,"The group spends all day skating through Barcelona, Spain." tt4542660,wcYfLYh8ixg,Skateboarders will do anything to land a trick. tt4542660,Tcnr8WoHAOI,The group plays with some fire before going back to the basics at a school. tt4542660,HMQpYC2SMX8,Here's an off-the-grid skateboarding paradise. tt4542660,UIRhpmPhehk,Skateboarding proves a welcome release for Brandon. tt4542660,qiAPls8Te0k,"Skating is everywhere and for everyone, no matter your age, race, gender or where you find yourself living." tt4542660,fLRlh8AHh8k,Skaters in Spain resurrect one of Europe's first skate parks. tt4542660,lMYtQlLlu3c,Security guards in China found a good way to deter skaters. tt2527336,poswRRB_2i0,Bo and the other animals witness the newborn Jesus Christ. tt5117670,n5tMCxz-9uY,Peter Rabbit and the rest of the cute animals throw a huge party in Old Mr. McGregor's garden and house. tt5117670,4FppyDurg7c,"After Thomas McGregor captures Benjamin, it's up to Peter, Mopsy, Flopsy, and Cotton-Tail to save him." tt5117670,A9QknjLLso4,"Through Bea's art, the story is told of how Peter and his sisters lost their father and grew to dislike Mr. McGregor." tt5117670,51IaQuowCcA,Peter and his friends find a way to turn the new electric fence against Thomas. tt5117670,9VwWPnHZMrs,"Peter, Benjamin, Cotton-Tail, Flopsy, and Mopsy prank Thomas by hitting him with fruit, including his allergy-inducing blackberries." tt5117670,YSOUTJUdTgs,"Peter and the rabbits push Thomas to use his explosives, but this leads to disastrous results for everyone involved." tt5117670,QkrYlP8-Cmo,"Peter and Benjamin try to sneak in to Thomas McGregor's garden, but Thomas has other ideas." tt5117670,roST4TM0ccM,Peter and Thomas get into a fight in Bea's art studio. tt5117670,9fEMKGFr-Sk,Peter and Thomas both apologize to Bea as she finds out Peter has been involved in everything. tt5117670,izWrKfUUP9o,Peter and Benjamin head to Thomas' work to convince him to move back to his house in the country. tt2527336,c6mLa5_GvCQ,Dave makes a distraction for Bo's escape. tt2527336,VgO0K_0mi1U,Bo goes to great lengths to save Mary. tt2527336,sYdqpWTQyaI,Bo leads all his animal friends in an attack on the soldier and dogs searching for Mary. tt2527336,fDeQjTPTlDE,The camels mishear what all the fuss is about. tt2527336,-qGU1hiiJfU,Bo's game of charades goes poorly as he tries to explain to Mary the danger she's in. tt2527336,r2x4QueC2As,"Bo prays for help, and receives a blessing... of sorts." tt2527336,e48T01eVXtU,Dave helps Bo escape from his owner in the busy city of Jerusalem. tt2527336,Cp3FHbNWi64,Ruth gets some help rallying her flock. tt2527336,dj0MEV7d1NE,The Angel Gabriel appears to Mary and tells her that she is to be the mother of Jesus Christ. tt6000478,m-L3k3ElIQE,Roman is shocked to find the man he is representing CJ is the same gangster he personally put in jail. tt6000478,sYWS5RSmJ-s,"After finding out his client was murdered in jail because of him, Roman experiences a string of unfortunate events." tt6000478,c9oE47YW6YM,Roman and Maya find trouble when the police show up after finding what they believe to be a dead man in the street. tt6000478,i_SnR25Zoho,Roman speaks at Maya's activist meeting and finds more opposition than expected. tt6000478,hp3HX9PAkcA,Roman finally finds a bit of success after a long bout of awful fortune. tt6000478,rCEbhr55ISU,Roman says goodbye to Carmen. tt6000478,ZFrDw6oQai4,"Paranoid after receiving a death threat from a known killer, Roman fears he is being followed." tt6000478,9V_GlFhNX2g,Maya confesses her falling faith to a disillusioned Roman. tt6000478,Hs8mVGI7uVc,"Former student to Roman's partner, George, tries to persuade Roman to work for his firm." tt6000478,oR3h33DSGPM,Roman appears in court for the first time in years and finds immediate opposition from the ADA. tt6116682,JpQqyJbdb44,An actor reads a letter from Rosa Parks detailing an encounter with a white man with cruel intent. tt6116682,G90tPiniLd8,Scholars and eyewitnesses discuss the history of black women's mistreatment in American history. tt6116682,8O8gYNK3ULc,Relatives discuss the night Recy disappeared after walking home from church. tt6116682,43mOz_bosUY,The aftermath of Recy's case is explored by those who remember. tt6116682,0nEWiH0pYR8,Scholars comment on the systemic racism that allowed Recy's rapists to feel entitled to her body. tt6116682,zzkjLhitH7c,"Recy Taylor, herself, comments on the case over 70 years after it ended in injustice." tt6116682,ZNzEreKcfUU,Recy's rapists all give varied accounts of the night in question leading to one criminal confessing the crime. tt6116682,sr7zvUpRxIU,The suspects in Recy's case all lie in their testimony alleging that Recy was in fact a prostitute. tt6116682,STcAVDuOkv8,Recy's case attracts the an investigator from the NAACP by the name of Rosa Parks. tt6116682,LjKWOmIeSQs,Relatives discuss the night Recy came home after going missing for days. tt4572792,l46yjkR0SqU,"Peter ends the talent show with a magic trick, while Susan discovers that Henry's plan wasn't really needed after all." tt4572792,JJrTnnaEZ_w,Dr. Daniels tries explaining the prognosis to Henry. tt4572792,gVdIiTE1ykg,Susan begins the prep set out by Henry before he passed away. tt4572792,fTIIhYZ_CzA,Susan is confronted by Glenn after he realizes she lured him into the woods to kill him. tt4572792,AX4i2YZqE14,"Susan rushes to enact Henry's plan to kill Glenn, while everyone is at the Talent Show." tt4572792,34FTDewDftA,Peter begs Henry to help him get rid of a bully but Henry gets distracted when he runs into Christina. tt4572792,9C6DANHgdrE,"Henry gives a special task to his little brother, Peter, to carry out following his potential death." tt4572792,sIwsArbH5ck,Susan panics after awaking to hear Peter and Henry having a seizure. tt4572792,dg6PaO0e6wA,"Susan contemplates assassinating Glenn while his step-daugher, Christina, performs at the school Talent Show." tt4572792,MYkSUEjYLc0,Susan breaks down over Henry's illness which takes him soon after. tt3250590,AvPljYL3Sq4,"Kamala Lopez and activists talk about what the Equal Rights Amendment can do for our nation, and what we can do to help the cause." tt3250590,e0oLpONe5O0,"The foster home to streets pipeline is examined, and experts speak on the child sex worker epidemic." tt3250590,2h6NGVrMQ20,"The abusive behavior of pimps is looked at, and Placement Director of the Los Angeles County Probation Department recalls a heartbreaking story of a girl who unfortunately was not helped by the county." tt3250590,Iqkw8K2hT74,"Wal-Mart v. Dukes, the largest equal rights employment case in history, is examined. It was found that there was ""statistically and anecdotal evidence"" of discrimination at Wal-Mart, but the corporate giant was found not guilty." tt3250590,06456EaXTVM,"How employers and the U.S. Government have exploited, ignored, and undercut laws protecting the rights of pregnant women." tt3250590,5JjVwGi4aHU,"Kamala Lopez and fellow activists explain what the Equal Rights Amendment is, and recount its tumultuous history." tt3250590,D2l0Qk_lxo0,"Experts on sexual assault cases take a look at the pervasive rape culture that is so prevalent in the country's high schools, colleges, and universities." tt3250590,m_Wx68QkJSU,Kamala Lopez and others examine the prevalence of instances of sexual assault within the United States military. tt3250590,v8L3Lyit8Ro,Experts on domestic violence and former victims tell of how the political and legal system has failed to protect women who are victims of domestic violence. tt3250590,awhN-boYW_I,"International women's rights activists talk about CEDAW, and discuss why the United States is one of only seven countries in the world to not ratify it." tt2923316,Og88KQM5nVk,Matt Dillahunty rebuts ad hominem attacks against his atheism. tt2923316,z8NcTAIV0Wc,Radio hosts discuss firearms being allowed in church. tt2923316,SZCtfLaCWO0,Matt Dillahunty schools a caller on why situations dictate moral decisions. tt2923316,zdOov2A4-os,Easter eggs are dropped from a helicopter during a church sponsored children's event. tt2923316,QcFKRqQENrI,These people pray with intensity. tt2923316,W4jxHLn-00g,"Although he didn't practice what he preached, Joel Osteen at least spread the word of God." tt2923316,8TwlBdCGS24,Folks in Texas pray before their rodeo. tt2923316,EchEZ7BmRos,Folks in Texas pray before a Nascar race. tt0228333,dmASD5tRwV4,"When Lt. Ballard is possessed by one of the ghosts, the taking of some pills gives her visions of the spirit's martian past." tt0228333,m-2WmcLl_PQ,Lt. Ballard and Desolation lead the fight against the possessed miners after the train doesn't arrive in time to rescue them. tt0228333,KwpO_4Rq13o,Lt. Ballard and Desolation fight off the surviving ghosts on the train home. tt0228333,CG2YRWPhfiA,Lt. Ballard and Desolation encounter and fight a group of infected miners. tt0228333,GvHBefStM7o,Lt. Ballard and the survivors prepare to battle to the train depot. tt0228333,ZUchY9Hw48A,"After her plan goes awry, Lt. Ballard and her crew make a last ditch effort back to the train." tt0228333,X1SJgm2hIAY,"Lt. Ballard, Desolation, Jericho and Bashira make a grand stand against the possessed led by Big Dadd Mars." tt0228333,6TVik8mYxrY,Sgt. Jericho discovers the commanders head on a stick and the self-mutilated ones who did it. tt0228333,F0ga5pmQjnc,"After a debriefing and thinking the terror is over, Lt. Ballard is awoken to find the ghosts are back." tt0228333,QEfuINMgcnI,Lt. Ballard gets into it with Desolation after he takes a rookie hostage. tt5325030,ZrW_1_rFaw0,Tom acts and hits on Ellie. tt5325030,Qm-fzB7OmEU,Ellie makes a fan film with Frank. tt5325030,bq5vS1a-smo,Ellie recreates a romantic scene from Bell Book and Candle. tt5325030,6P5yW3rYuMs,"For her art project, Ellie has her friends recreate the famous ending of Some Like It Hot." tt5325030,XHCai_8cuiU,"Inspired by song, Ellie shakes her stuff." tt5325030,W-phG8nc1Xc,Ellie gets into some pot cookies. tt5325030,Oro8uCubA84,Ellie fantasizes over John. tt5325030,HpeiPgkqEro,Ellie gets her friends to help her recreate a scene from A Clockwork Orange. tt1578275,kIIY1-f_rBg,Ronny encourages Nick to make the money shot at the hockey half-time show. tt1578275,aSsFjcw8R3Y,"Ronny follows Nick to his Thai massage place, but Nick lies about it." tt1578275,uR7yS87K1tA,Ronny makes a negative toast at Beth's parents' anniversary party directed at Geneva. tt1578275,LHcbbXpKIrc,Ronny makes up a crazy story to explain his facial injury to Beth. tt1578275,vDzbcWty6m0,"Zip attacks Ronny, but Ronny finds his weakness." tt1578275,UFiKhV_Ay70,Zip shows up at Ronny's intervention and pretends to be his bookie. tt1578275,TChg5dQ36WM,"Ronny tries to get his camera back from Zip, who is still angry about their previous altercation." tt1578275,BLElh2JGufs,"Ronny threatens to tell Nick about Geneva's infidelity, but she threatens him back." tt1578275,8aK7LsC0G-4,"Dana is incredibly enthusiastic for Ronny and Nick's vision, but Nick has serious anxiety about delivering." tt1578275,8sURhgulh7E,Zip finds Ronny spying on him and Geneva and a fight ensues. tt3957170,1DDHNN3oums,Arile's family highlights all that he's sacrificed and how little his dream has helped them. tt3957170,nQuKmZkCDZ8,Matanda recounts being a cattle rustler with Arile. tt3957170,01rrDGEzBc4,Matanda deals with the fallout of blowing his family's savings. tt3957170,a-qtnTRl6HA,Arile runs in the Prague Marathon. tt3957170,UX8ua4_z-kg,Robert Matunda runs for political office to change the cultural landscape. tt3957170,DTZylvspsps,"Arile travels to Iten, Kenya, where he can travel with the very best." tt0455944,TunbuB_bBb8,Bob gets Masters to help him raid Pushkin's cash drop. tt0455944,DyxkjYmlzhg,Bob and Teddy discuss the mysteries of a familiar Russian tale. tt0455944,4zBMw2XqgWY,Bob goes after the head of the organization that has been after him. tt0455944,Z-l7wGkNyko,Terri visits Bob after getting out of the hospital. tt0455944,BdZgC84uYUo,Bob has an unwelcome encounter in the local diner. tt0455944,EWSHsRBP88Y,"Bob gets a visit from Russian assassin, Teddy disguised as a police officer." tt0455944,1DvFzLRPc_w,The aftermath of Bob trying to buy Terri's freedom from her pimp. tt0455944,GtqIqWKdlD4,Bob stops two corrupt cops from extorting funds from local businesses. tt0455944,QLkt-SfsCsQ,Bob and Terri discuss their pasts with one another. tt0455944,40ryheWGyZY,Bob and Terri run into trouble with her pimp. tt3532216,wDFOO-dC-Nw,Barry is set on making a record of everything he's done after being targeted by a group of assassins hired by the Medellin cartel. tt3532216,zDEPob22tHs,"After his arrest, Barry tries to give the authorities a chance to gain something out of their potentially fruitless efforts." tt3532216,SxJcAxTBKOk,Schafer disavows Barry and the two scramble to scrap any evidence of their involvement in smuggling before anyone can get to them. tt3532216,2XmLLBZnvDg,"After making a deal to transport drugs for Pablo Escobar, Barry has to take off with a heavy plane from a short runway." tt3532216,ODIZKyevVxQ,"Barry and his crew, The Snowbirds, try to out-maneuver a DEA plane." tt3532216,Wi4OhwrVwP8,Barry gets cornered by two federal agencies and decides to make an emergency landing in the middle of a Louisiana suburb. tt3532216,4gSkh86zcaU,Barry expands his drug smuggling empire after a deal with the Contras and the CIA. tt3532216,HBj5pxrFyE4,"In order to save himself from prison time, Barry turns federal witness and entraps his old friends Ochoa and Ecobar." tt3532216,CHBydX2-I50,Barry gets word from the Medellin that they plan to 'take care' of his brother-in-law and decides to try to help him escape. tt3532216,WBreuW9LLSw,"Barry's smuggling business gets so hectic, he can barely keep up with all the money he's making." tt0462504,KMHmLy9C2hU,Dieter and Duane attack the guards then make a break for it. tt0462504,sxo7GjhsghQ,"When Duane freaks out after the guards frighten the prisoners, Dieter comforts him." tt0462504,BFAfiz1daR4,"As Dieter is describing his love interests to Duane, a gun unexpectedly goes off and everyone takes cover." tt0462504,6kktAYxwo7M,"The prisoners are served worms for dinner, and Dieter is desperate enough to eat them." tt0462504,UN5YOny_U8g,"The Admiral forces his troops to watch a survival training video, which Spook mocks mercilessly." tt0462504,xmihht20Z0E,Dieter is rescued from the jungle and his rescuers drill him for the correct identifying codes. tt0462504,6i7cWj1WqDU,Dieter withstands brutal torture from his captors. tt0462504,ZekXmBuhS5c,Dieter returns to a throng of cheering soldiers. tt0462504,W_qA7Xt_UPw,"Dieter and Duane are attacked, and while Dieter escapes, Duane is not so lucky." tt0462504,XUdBdsMc5EQ,"Dieter meets Duane and Gene, two other Air Force pilots that have been marooned in Vietnam." tt0462504,99qifKCGPfA,The guys sit around their prison talking about what's in their imaginary refrigerators. tt0462504,-OMiOIbouaA,The Province Governor tries to bargain Dieter's release by having him sign a false confession. tt0102316,_0X1jPgLo-A,"During a horseback ride, Damon offers some advice to Fred, and Fred hallucinates as he looks up into the trees." tt0102316,-oL4NpO7eAw,Fred has a very happy 8th birthday party. tt0102316,RjDv_swo0rY,"During a crowded car drive, Damon talks back to the adults and acts like a brat while Fred dotes on him." tt0102316,SCn7SurOKdw,"Jane is surprised when Fred blurts out the correct answer, upstaging a hubristic Damon." tt0102316,GBu5QE-EsSg,"After running away, Dede finds Fred alone back at the apartment. The mother and son have a talk and a hug." tt0102316,Us1MxXdSHw8,Eddie introduces himself to Fred in the cafeteria and takes him around for a day of fun. tt0102316,qjUsrdzDbuY,Fred unknowingly interrupts Eddie in bed with a girl. tt0102316,_Du0A1y4Wh4,"As Dede says goodbye to Fred, she tells Jane that she'll kill her if anything happens to Fred." tt0102316,0m5VGBc8VrQ,Dede decides it's best for Fred to go on the gifted student trip with Jane. tt0102316,UrCi_k2TXOA,"Even though he just wants a Coke, Jane tries to feed Fred a macrobiotic smoothie, but he throws it up." tt0102316,FVGKgrxQP9M,"When Eddie tosses a globe into the air, it accidentally knocks out Fred." tt0056264,CN6dU8mcuMY,Christian makes an appeal to his men to return to England and bring Bligh to justice. tt0056264,jpoR10Zh0ig,"After brutally punishing a man for a minor infraction, Captain Bligh justifies his cruel methods to his officers." tt0056264,XyEHIOZf5yE,Mr. Christian exchanges final words with Captain Bligh. tt0056264,6IJ8LfJnJvQ,Fletcher Christian teaches Maimiti how to kiss. tt0056264,t0oqEjxOUww,Christian leads a mutiny against Captain Bligh. tt0056264,BznPcrTUYvg,"As Christian lays dying, Mills explains why he burned the Bounty." tt0056264,uNcKTuAqLag,Christian chastises Captain Bligh for punishing men with relish. tt0056264,EPa8iQyK5mQ,Captain Bligh accuses Fletcher Christian of holding contempt against everyone below his social status. tt0056264,oNoOFf527GU,"At the expense of his crew, Captain Bligh insists that the trail to catch the Bounty must not run cold." tt4555426,pBd7XYjjvRw,"Over radio, Churchill delivers his first speech to the British public as Prime Minister." tt4555426,htHKbsUKDDw,Parliament is unimpressed by Churchill's first speech. tt4555426,skrdyoabmgA,Churchill delivers his historic speech to Parliament following the success of Operation Dynamo. tt4555426,Wo4U1SqnRpA,"Desperate for assistance in getting troops out of Dunkirk, Churchill politely asks President Roosevelt to make good on a deal to send ships to the UK." tt4555426,7SZcDW_1o8g,King George VI shows his first sign of support for Churchill. tt4555426,gCHCR0wZclg,Churchill gives an update to his party over his position on negotiating with the Axis powers. tt4555426,Ts8WRHAQvk4,Churchill rides the tube and asks the British public their thoughts on negotiating with Hitler. tt4555426,1YpDd1nVthI,Churchill pleads with his war council on the proper strategy over the crisis at Dunkirk. tt4555426,JwlhFfOC5Zo,Elizabeth tells Churchill his 'V for Victory' may not mean what he thought it means. tt4555426,xA1Uz_TMzhs,Churchill suspects a political insurgency led by Viscount Halifax. tt0077572,_PSZEvsYD6o,Force 10 blows holes in the dam and it explodes while Miller and Weaver look on. tt0077572,TEZq-_XkcRA,Mallory confronts Nikolai about his identity as the Nazi spy. tt0077572,jgosH8zc83Q,"Mallory briefs Petrovich about their mission to kill Nikolai, while Nikolai stands by, listening." tt0077572,MwjIdhPU43A,"When Miller tells Force 10 that they can't blow up the bridge in time, Mallory suggests they destroy the dam instead." tt0077572,JJyK0EX6s_Q,"Mallory plays possum, drawing the enemies in for Barnsby to take them out." tt0077572,69v1tcsG6nc,"When they are captured by the Nazis, Mallory tells Maj. Schroeder an elaborate lie about being criminals." tt0077572,g3D2eGiLoeI,"Plotting their desperate escape, Mallory and Barnsby are rescued unexpectedly by Maritza." tt0077572,xFoBu7P_Kwc,Mallory and Barnsby agree to sacrifice their lives to blow the dam. tt0077572,tMYOmMWbUME,Drazak introduces the partisans and starts a fight with Weaver. tt0077572,kDSiyU72RpA,Weaver forces the mission to a stand still to get answers from Mallory and Barnsby. tt0077572,DEKdqE9W_i8,Maritza discovers that Nikolai is a traitor just as he radios in an attack. tt5719108,XxWjAkr7ujk,Reporters film explosions for rebels in order to sell the footage and help fund the war. tt5719108,ZtgEJOBzX6A,A look at the beginnings of the Syrian rebellion as the narrative becomes distorted to benefit certain factions. tt5719108,LbPm19yBPis,The faces of the rebellion are revealed and given life. tt5719108,RxPJd3_j5O0,The narrator meets an inspiring young woman during a protest against Assad. tt5719108,yzSjRcABUBY,The presence of extremist groups begins to dilute the rebellion. tt5719108,ZbtcQZ1yDjc,The Syrian Revolution becomes diluted when extremists and profiteers enter the fight. tt5719108,GP9FOGsbYsw,The revolution begins taking a dark turn as Assad attempts to brutally squash the rebellion. tt0104815,mbzNdI-1iUc,El Mariachi is chased from his hotel room by a group of armed men after they mistake him for a gang rival. tt0104815,7yBBNmR1CLg,Domino accuses El Mariachi of being a murderer and forces him to sing to prove his innocence. tt0104815,PGbBz0m0pTc,El Mariachi searches for work at a local bar. tt0104815,Snbbz0C_ZiA,El Mariachi asks Domino for work at her bar after confessing to murdering Moco's men. tt0104815,2kK1wyTEMUQ,Domino plots with Azul to find El Mariachi at Moco's compound. tt0104815,k7ej9E5b8js,"El Mariachi finally crosses paths with Azul, the man for whom he has been mistaken." tt0104815,lqnKLTA2GVE,El Mariachi arrives at Moco's compound and discovers the heartbreaking aftermath of Azul's plan. tt0104815,xNc951Hq2WA,Azul shows up to a bar owned by Moco and kills almost everyone. tt0104815,KQzNG70KguM,El Mariachi finally gets a chance to sing. tt0104815,LVGZy2YKAh8,"Azul and his men fight off some hitmen sent by drug lord, Moco." tt0066448,5ckqhebte9o,"After robbing a rich man, surviving prison, escaping and traveling back to the spot where he hid the money, Paris Pitman, Jr. finds out that life just doesn't want him to succeed." tt0066448,_uXfbxevYyg,"Paris Pitman, Jr. befriends Floyd Moon in the prison yard." tt0066448,1GiYwJRA2NA,"New prison warden, Woodward W. Lopeman, meets Paris Pitman, Jr., a prisoner in solitary confinement who had a deal with the last warden." tt0066448,IgTIy5MUBxM,"Paris Pitman, Jr., Floyd Moon and Ah-Ping attempt to escape from prison, but find themselves in the sights of warden Woodward W. Lopeman." tt0066448,J9qv_a_s7Gs,"Prisoner Coy Cavendish is set to be hanged, but Floyd Moon and the other prisoners start a riot and tear down the gallows." tt0066448,IaeWrM5PlmU,"After starting a food fight in the new dining hall, Paris Pitman, Jr.'s escape plan goes into effect." tt0066448,jZXuLQdIrEg,"The prison warden tries to thank Paris Pitman, Jr. for saving him earlier." tt0059803,uXUPYAomwDU,Juan visits Casildo. tt0059803,CMPJ23f8BeM,Julian learns about his father. tt0059803,OhM4B8B6B28,"Julian beats Pedro, his brother." tt0059803,uhOCeh9oGK4,Julian threatens Juan. tt0059803,n0MX1a8uh3w,Julian steps up harassing Juan. tt0059803,RRfoHyYJnAc,Julian reveals his intentions to Pedro. tt4477536,64tSUb_LTdI,Anastasia reminisces on her relationship with Mr. Grey. tt4477536,rvQZ6MdHSEk,Jack Hyde attacks Anastasia. tt4477536,5BLZxhN2lDE,"Anastasia finds out she's pregnant, a bit of news that Christian doesn't take very well." tt4477536,X7Jay8hlfHY,Mr. Grey takes Anastasia to the playroom. tt4477536,_OZS09-GVTg,Anastasia pulls a gun on Hyde. tt4477536,OFDJnI4RczY,Sparks fly between Anastasia & Gia over Mr. Grey. tt4477536,vmpSyqa5kXQ,Anastasia and Mr. Grey have fun with ice cream. tt4477536,AdKWXA8npgE,Anastasia prepares to cut Mr. Grey's hair. tt4477536,LmsnknGIx74,Anastasia shakes a tail and then gets revved up. tt4477536,sC78ImgOLQI,Mr. Grey seduces Anastasia. tt0382992,z08tZYDrY_8,"Gannon, Purcell, and Wade do a dry run of a covert operation in the desert." tt0382992,diNo0cO2Je0,Gannon rescues Wade from the Korean DMZ with a little help from EDI. tt0382992,fBTODK66ymw,"On a mission to take out terrorists in a populated area, Gannon risks a dangerous flight maneuver suggested by artificial intelligence EDI." tt0382992,sa9AzlyS9h0,Wade attempts to make it back to base after the wing of her jet is damaged. tt0382992,4InwO1SSp5o,"While on vacation, Gannon, Purcell, and Wade experienced different outcomes in their romantic interests." tt0382992,notFMAwEQeM,"Ben orders an 'Abort Mission' after discovering a nearby civilian population, but their A.I. partner ignores him." tt0382992,Y_U49qqwDGI,Purcell tries to stop a rogue EDI from attacking enemy territory and potentially starting a major conflict. tt0382992,mpr3XG5Tzmk,EDI catches and sabotages Gannon while he attempts to refuel. tt0382992,JIsrqAWzVoA,"Gannon, Purcell, and Wade enjoy a vacation in Vietnam after a tough mission." tt0382992,nP-P4IYLJWY,Gannon and EDI are caught by Russian pilots while flying over Russian territory. tt0257076,qVDMu-erGtc,Jim Street and SWAT take a shot at taking down Gamble and his crew. tt0257076,aDU5CcINqyI,Jim Street and Gamble move in to stop a hostage situation during a bank robbery. tt0257076,rhkkbjKcaJ0,Jim Street fights one on one with his ex-partner Gamble. tt0257076,8N9oQUJJstQ,The decoy convoy carrying Montel is hijacked by a group of armed criminals seeking a reward. tt0257076,t0tIXAlLX8s,Deke chases a runaway suspect through South LA. tt0257076,hV55sjy1QFI,The team is betrayed by McCabe who then kidnaps Montel. tt0257076,Dc-fBk3yoqs,Jim Street and the new SWAT team train under Sgt. Hondo. tt0257076,MBeBFVoomg8,Jim Street and his squad are called in for their first operation as SWAT. tt0257076,raSWINBYtuc,Brian executes an elaborate escape by using the Sixth Street Bridge as a runway. tt0257076,G61d-lcbLT4,The operation to transport international crook Montel is sabotaged by Gamble. tt0048380,9ykMeXdU_Ng,Pulver asks Lt. Roberts what he thinks of him. tt0048380,4DKTOdul0_I,"Capt. Morton runs into Pulver, who has done his best to avoid the captain for months." tt0048380,GHpQUOP8vcE,A sailor is given the duty of cleaning the ship's collection of binoculars and ends up spotting a nurse taking a shower. tt0048380,PTQLBv8sgDI,Doc and Lt. Roberts create some homemade scotch for Pulver's date later that night. tt0048380,lCF6_l8gtdA,"After his prized palm tree is discovered to be missing, Capt. Morton confronts the only suspect, Lt. Roberts." tt0048380,NZzeLRspnMg,Pulver gets a letter from Roberts and reads it to the whole crew. tt0048380,ALSUu2CSBOg,"While Doc and Lt. Roberts share a drink, Pulver accidently blows up the laundry room." tt0048380,PPhxsJho48c,A group of attractive nurses visit the ship and are given a tour by Pulver. tt0048380,qFH0mR6eVLg,"Pulver gets a letter saying that Roberts has died in battle. Angry at the news, Pulver throws Capt. Morton's tree overboard and finally stands up to him." tt0048380,-rkhqMzCUnA,"After Lt. Roberts, Doc and Pulver hear the news that Germany surrendered, Pulver has a great idea of how to celebrate." tt0250720,OHCVQcnqGcY,Gordon ends up locked outside his apartment building after being tricked by Spot. tt0250720,ivG26TnBWGI,Gordon and James escape from two hitmen by leading them to a street full of dogs. tt0250720,Z0Fm3Ym-aJM,FBI agent Murdoch is informed that his canine partner is being transferred to another facility because a mobster put a hit out on the dog. tt0250720,z2NhPvlzjcg,"Gordon, the mailman, delivers the mail on a street full of angry dogs." tt0250720,E6AYVGKx6Es,"An FBI dog escapes from two hitmen who want to kill him, only to end up hiding in the back of Gordon's mail truck and befriending James." tt0250720,Kpxk3UkX5s4,"While babysitting James, the son of his health conscious neighbor, Gordon introduces the kid to sugar filled cereal." tt0250720,tD8f4Xk30bg,"During an FBI canine training course, two mobsters try to kill Agent 11, the best dog on the force." tt0250720,g8hPeRFRiHY,Gordon convinces Murdoch that Spot should stay with James and get to be a normal dog. tt0077235,e0UZ0rc0KH4,Everyone says an emotional goodbye to Jack who's going off to Vietnam. tt0077235,FAK7ssvx3oE,"Leroy, Jack and Matt enjoy surfing together." tt0077235,iaCvBhskyk0,"Matt, in a drunken stupor, causes an accident which makes Jack kick him off the beach." tt0077235,5T17qRlPIiA,"Matt surfs the giant wave, but his friends have to pull him out." tt0077235,2WJjBuXiXK0,"At the cemetery, the friends remember their old buddy Waxer, who died in Vietnam." tt0077235,gUeHamRZkSY,Matt fakes an injury and Leroy fakes madness in order to escape going to Vietnam. tt0077235,6moZJqA4iuc,"Matt is praised for his magnificent ride, but he, Jack and Leroy know that their summer days are over." tt0077235,mfkzA9zjRdM,The three friends reunite to surf one of the biggest swells in years. tt0077235,0B3lnfdJ_iE,Leroy and Jack take their alcoholic friend Matt where he feels most comfortable - surfing. tt0077235,AN21TljYB8E,Matt tells Bear he won't take any more of his sponsorship because he is not a good role model for kids. tt0034587,pE0vTejjWuk,Irena runs into Dr. Judd at the zoo. tt0034587,cRpMdH1D55o,"Dr. Louis Judd kisses Irena, not believing her stories about turning into a panther." tt0034587,16xSXPPqBfM,Irena attempts to play with her pet bird but it dies of fright trying to escape her. tt0034587,lz98akbX_NE,Alice Moore is stalked by an animal while swimming in her apartment building's pool. tt0034587,Wf6feYvdHs4,"Oliver and Irena visit a pet store to return a kitten, but when Irena walks in all the animals go crazy." tt0034587,yiOUEU4KG6s,"While working late one night, Alice and Oliver are attacked by a panther." tt0034587,DrrwX4AnbMk,"After killing a man and having all her fears confirmed, Irena allows herself to be killed by the panther in the zoo." tt0034587,RFtZAVgf1Yg,Alice Moore is walking home alone when she starts to get the feeling that she is being followed. tt0036855,ctd3NPx1pdM,"After Gregory is captured and tied to a chair by the police, Paula takes the moment to get some psychological revenge on him for driving her insane." tt0036855,BICqcEvzhVw,"After becoming hysterical at a friend's house Paula, Gregory shares his frustrations with her." tt0036855,Fp5iPmpZiNE,"With Brian's help, Paula discovers the horrifying truth about her husband." tt0036855,6o8Eq0LEpf0,"Gregory accuses his wife of taking and hiding a picture from the wall, feeding the idea that she's going mad." tt0036855,ty68MEZQPS0,Paula Alquist meets a very excited and morbid woman named Miss Thwaites on the train. tt0036855,eIlzY-UcYZU,Gregory openly flirts with the maid Nancy in front of his wife Paula. tt0036855,kFhDGoJh4O4,Gregory questions the maid about the man that Paula told him came to visit and broke into his desk. tt0036855,_HoKFu0orAs,Paula starts believing she is losing her mind after Gregory accuses her of hiding a picture that has disappeared from the wall. tt0071675,zNT4XSI1doU,The mutant Davis baby kills a milk man. tt0071675,PvEongWRs5Q,"Frank is waiting patiently at a hospital while his wife, Lenore, gives birth down the hall." tt0071675,jaSSXV5AFHk,Frank is brought by police to the school where they believe his mutant baby is hiding. tt0071675,ilRq_PR6oi4,The mutant Davis baby attacks a police officer who is searching for it. tt0071675,aTSa6E4_Zgs,"During a manhunt for his mutant baby, Frank finds it huddled in the sewers." tt0071675,_gVrJIUmCqU,"While signing away the rights to the body of his mutant baby, Frank starts thinking about the story of Frankenstein." tt0071675,wxlD2wwIgVk,Frank investigates their baby room after beliving his mutant son has returned. tt0079239,t3mwyiOBDrk,Bull forces Ben to attack another boy at a basketball game. tt0079239,MxDtKTClKGI,Bull becomes abusive after his son Ben beats him in a basketball game. tt0079239,WnrOQRdqiQ4,Bull and Lillian enjoy their first time together in a long time. tt0079239,JJ0IOFvfu3Q,Bull hazes a young officer in the bathroom. tt0079239,w294_yaM85M,Bull proposes a toast to Ben on his 18th birthday. tt0079239,droww43JVyA,Bull tells his squadron that he is their God now. tt0079239,fz_9uPJnGEQ,"Lillian comforts Ben, who feels responsible for his father's death." tt0079239,LgNSetWhfhw,Bull berates Ben for disobeying his orders until he realizes that he was trying to save Toomer's life. tt0079239,Pj2K4FrqTmw,Bull teaches his kids what it means to be a Marine kid and a Meechum. tt6333066,5Zpj9911g6I,Rhino breeder John Hume painlessly removes a rhino's horn to prevent poachers from doing worse. tt6333066,EVy-c7ZaMvI,Born Free Foundation CEO Will Travers discusses how Cecil the Lion's killing put a spotlight on the big game industry. tt6333066,_jl40Gzivhs,Reality hits big game hunter Philip Glass. tt6333066,dtQLSM8VvfU,John Hume breaks down how rhino horns are a potentially renewable -and extremely lucrative- resource. tt6333066,6IdswAQLBKk,"Big game hunter Philip Glass has killed a bull elephant, but a juvenile one." tt6333066,5bTmqPTQPOg,A look into the Safari Club International convention and all the hunters that it brings together. tt6333066,oBeMUEkfDtk,Ecologists Adam Roberts & Craig Packer break down how conservation and sustenance hunting became conflated with masculinity and exploitation. tt6333066,HgqmQ4RN9vo,A rich hunter pays to kill crocodiles trapped in an enclosure. tt6333066,VcH7mgvr2jY,"Zimbabwe Wildlife Officer Craig Moore raids the home of a poacher, hoping to improve the community." tt6333066,TV1QrgMYa3M,"Mabula Pro Safaris' hunting outfitter, Christo Gomes, reminisces about the hunt and the pains of caring for a hunted animal." tt4397414,wmEQUpu_zeA,Pro skaters remember the heyday of skating in Philly's Love Park. tt4397414,io8KUjovuYo,A new generation of skaters discuss how Chris inspired them. tt4397414,lZrD7xTi8Ss,Pro skaters discuss the beginnings of Chris Cole arriving on the skate scene in Philly. tt4397414,5CrXuWBxVVk,Cole and other pro skaters talk about skate pioneer Rodney Mullen. tt4397414,PnNS71ethmI,Jaimie Thomas discusses Chris's beginnings with him under his Zero banner. tt4397414,ddGbf6I8UH4,Chris Cole and his friends recall their first demo tapes. tt4397414,wUkrRABqkzg,Chris reminisces about Love Park and some of his best tricks. tt4397414,OC6SxQVSMHo,Friends of Chris recall the moments after Chris met Rodney Mullen. tt4397414,lK8cWFLr5qE,Chris talks about his reaction to advice he was given and how to started to change his image as he grew. tt4397414,UW80kY7-HkY,Chris Cole meets Bam Margera at the pinnacle of his CKY fame. tt0451279,KnI9MBbPCT8,"Led by Hippolyta and Antiope, the Amazons defend their island from the Germans." tt0451279,c2k_kuU84ro,Diana fights the Germans occupying the Beligum village of Veld. tt0451279,QnDgw7XXaOU,Diana has some questions for Steve. tt0451279,pJCgeOAKXyg,"When Steve Trevor tells Diana that it's impossible to cross no man's land, she proves him wrong." tt0451279,1-9573qxk5g,German agents confront Steve and Diana in an alleyway. tt0451279,jEav9DdL4iI,Steve and Etta take Diana dress shopping to help make her less conspicuous. tt0451279,_CuE3lto5XA,"Steve makes the ultimate sacrifice, devastating Diana." tt0451279,CNuEnlaPuls,"Antiope trains Diana like no Amazon ever before, but Diana has a powerful secret." tt0451279,0v74ANWBqv0,Ares tempts a grieving Diana to murder Dr. Poison. tt0451279,FNA0Ejpu22Y,Sparks fly when Steve dances with Diana. tt0918940,TKpYtp4Io9U,Chief Mbonga fights Tarzan in the hopes of avenging his son. tt0918940,hwe32v3I7R0,Leon Rom kidnaps Jane and the villagers. tt0918940,QYUhwlQe0IU,Tarzan tries to stop Leon Rom from escaping with a trunk load of diamonds. tt0918940,9ecrIMjE4GQ,"Jane escapes Leon's grasp, but nearly falls prey to the wilds of the jungle." tt0918940,E7mB8U4nCCU,Tarzan and Dr. Williams fight a train full of Belgian soldiers on their way to find Jane and the kidnapped villagers. tt0918940,Yz7PedIGC6A,"Tarzan faces off against his brother, Akut, in order to pass through his troop's territory." tt0918940,rTvJrOUuOTM,Tarzan chases Leon Rom to find and rescue Jane. tt0918940,hIMv_pWXqFY,Jane is rescued by Tarzan. tt0918940,pXQjNz6Pyzo,Tarzan rushes to save Akut and his tribe from Rom's men. tt0211443,ueeK1V8j-WQ,Jason is kept in chains in a secret research facility as Dr. Wimmer unwisely prepares to transport him in the name of science. tt0211443,iog7zMkTVmQ,"Thanks to the future advances of medical technology, Jason is brought back to life as an advanced Cyborg, much to the surprise and dread of the survivors." tt0211443,4f7U_YO0fVc,Jason is distracted by a holographic campground with naked girls while the survivors set up explosives to destroy him once and for all. tt0211443,K2zen737biU,"After Jason has killed all the soldiers guarding him, Rowan realizes it's up to her to get him into a cryogenic pod." tt0211443,285uHkPZOkE,Jason stumbles upon Azrael and Dallas playing an advanced co-op VR game and decides to join in. tt0211443,m-5pPy7zuyc,"After being thawed out, Jason comes back to life and kills Adrienne by freezing her face in liquid nitrogen." tt0211443,SP8YbyZwVeQ,Jason possibly meets his match in the female android Kay-Em 14 who has gotten a killer upgrade. tt0211443,gdkJ2WwMhAg,"Sgt. Brodski leads a group of soldiers with the goal of taking out Jason, but it doesn't go as easily as they'd hope." tt0211443,jBxvOT0p-1k,Jason breaks into the control room and gets back his always reliable machete. tt0211443,P9_EB2_tUGA,Jason kills Crutch causing Kinsa to have a panic attack and crash the shuttle after trying to launch it with the fuel line attached. tt2967226,srpCm9gPmZI,Chris Kim and David Hasselhoff team up for a dance track. tt2967226,Uz8w8WHmWMI,Chris Kim discovers a teenage celebrity is in the VIP room of his club. tt2967226,lHxzWs9NcS0,Tommy comes to stop Chris Kim from killing David Hasselhoff. tt2967226,1didVrNjTpQ,Nick meets with hired assassin Redix and is uncomfortably surprised by his sexual orientation. tt2967226,JSqbIAemGcs,David Hasselhoff comes face to face with a would be assassin who has a crush on him. tt4872162,4HOgujwklBY,Ray is arrested by his fellow officers and interrogated for his possible part in the crime. tt4872162,MVY7ci-BTI4,Ray hunts down a terrorist who is holding a young boy hostage. tt4872162,tAHCa87P8YI,Ray catches Nikolai as he sits poolside during a family barbecue and aggressively interrogates him. tt4872162,dcSalZZ5YjM,Ray rushes to the forensic lab to disarm the bomb vest around a child. tt4872162,jCSsP6ooQf8,Ray and Julia are captured by Nikolai just as they find the location of the missing child. tt4497338,zoo3aMvQdMw,Nolan takes Vasti to a neo-nazi bar in order to find out their affiliation with one another. tt4497338,klpN-W3Z8Cw,Nolan races to stop a madman with an automatic machine gun from killing a group of cops. tt4497338,1cHRBd6l2UM,Nolan finally makes it to the end of Vasti's game but may have discovered his plan too late. tt4497338,QkKXJ82vfJU,Nolan chases after a suspect in a white supremacist bar. tt4497338,6H6RGCBUcf4,Nolan faces off against Vasti after the latter escapes his custody. tt3957956,sPlsA3_6hB8,Shaw heads to the rooftop to warn his captain of Burke's plans. tt3957956,euCWQcrBwPY,Shaw tries to escape through the garage but is cornered by Burke's men. tt3957956,8PALGqaFoFI,Shaw and Burke face each other again in the office. tt3957956,AQpPxTYahZo,Shaw finally gets the drop on Burke and arrests him. tt3957956,ZdhLQ1toP9s,Shaw finally rendezvous with his Captain in order to clear his name. tt4765284,C_06Kac9rpg,"Beca leads the Bellas in a diversion rendition of ""Toxic"" while Fat Amy fights her way through the boat to rescue them all." tt4765284,2aKkSYvLvXk,The Bellas take on the other bands competing for a spot on DJ Khaled's tour with a singing competition. tt4765284,3MhzaQnLhRY,Theo takes Beca to a surprise meeting with DJ Khaled. tt4765284,VPaFRrTJZ4U,The Bellas perform on the USO stage in Italy. tt4765284,41BnkhKxWHA,The Bellas arrive at DJ Khaled's suite and proceed to wreck everything in sight. tt4765284,foV6LGohzBI,Beca invites the Bellas onstage to perform with her during her solo showcase for DJ Khaled. tt4765284,5x1FeyWYp9s,"The Bellas nervously jump into their first performance at the USO Show in Spain with a rendition of ""Cheap Thrills""." tt4765284,rxWQfQcLAUA,"The Bellas continue competing against the other bands on the USO tour by challenging them all to sing ""Zombie""." tt4765284,gDVyEzQNvhU,Fat Amy faces a boatload of her father's henchmen in order to save her friends. tt4765284,DyCfCl46JSE,"Becca and her old group watch as Emily leads the new Bellas in a crowd pleasing rendition of ""Sit Still, Look Pretty""." tt5726086,qsyYw2x1-js,The spirit of Audrey enters the fight against the Key Demon in order to save Elise and her grandchildren. tt5726086,fKGjSXtCou4,Elise comes face to face with the Key Demon and a few personal demons of her own. tt5726086,XHuo5etrwvY,Melissa searches the basement for her father's boyhood trinket and finds herself in the clutches of the Key Demon. tt5726086,STh780YGgIo,Elise has a vision of a boy being haunted by a familiar demon. tt5726086,ddQe0gG79zk,Elise investigates her childhood home and finds an old spirit haunting her. tt5726086,8pDCGWKvBlk,Elise uncovers a startling secret in the basement of Ted Garza. tt5726086,QS8fJMeJqsQ,"Elise, with the help of her mother leads her nieces to safety from the Spirit Realm." tt5726086,5mcjt53aqlE,Specs is chased by Ted Garza after the crew discovers he has kidnapped a young girl and held her captive in his basement. tt5726086,bp5HRI2hEW0,"After realizing a devastating mistake from her childhood, Elise searches for the remains of a woman her father murdered and finds something much more sinister." tt6421110,gKJerAxfSzw,Mary finds Tom holding Danny hostage and threatening to kill him to avenge the murder of his own father. tt6421110,vdMEu03CjTk,Tom squeezes troubling news out of an informant. tt6421110,IGFdF06VVF8,Danny tries going directly to Benny to ask for Mary's freedom. tt6421110,2k6F2WITgac,Tom confronts Mary after discovering she may have had something to do with an assassination that has put his business in jeopardy. tt6421110,oyuHdD6ORAg,Mary crashes through her own turf in order to get to Tom after he kidnaps Danny. tt6421110,DsMU1n2HUDo,Mary and Tom raid the headquarters of the Russian mob seeking revenge on an attempted hit on their boss. tt6421110,hwevrtap9AY,The assassination of a Russian mobster leads to a domino effect of consequences as Mary takes out an old acquaintance in order to cover up her involvement. tt6421110,_pH9HcBNO2I,Danny deals with a difficult customer while delivering an important package for his employer. tt6421110,fAiJAcgjWeQ,Mary takes Danny to get fitted for a suit. tt6421110,C41s4A5Wq1Y,Mary goes to confront Uncle over his abuse of Danny and loses her temper in the moment. tt3829920,s2TbUio6uF0,"All the wives and families of the Hotshots wait for news only for Brendan, the only survivor, to walk in." tt3829920,nAbqTdINpOk,Another fire-fighting agency misses the mark. tt3829920,vAaBuA-ZeuI,Remembering the Granite Mountain Hot Shots. tt3829920,7p9YNPcOJ-4,Brendan gets closer to the fire than he'd like. tt3829920,OkZ0AKNb82c,Eric and Brendan stop the Dragon Fire as best they can. tt3829920,BVAo7tAxtVw,Nobody believes that Brendan can finish the trail. tt3829920,aHoNp7pBeCA,The Granite Mountain Hotshots save one of Arizona's greatest trees. tt3829920,Cre1DOpQFx8,The Granite Mountain Hot Shots try to endure against the Yarnell Hill Fire. tt3829920,XG3hNDnidfk,Eric and Duane inform their team that they are no longer trainees. tt3829920,PIAvGkpGZXw,Brendan has a rough encounter with a rattlesnake. tt3783958,vVqCU0iWlFM,"Mia is entranced by Seb's music, but his boss fires him on Christmas." tt3783958,DOmIpiTMs2w,"Mia runs into Seb again at a party and she forces him to play ""I Ran.""" tt3783958,SY40M1lhknY,"While Seb plays their song, Mia dreams of what could have been if they had never seperated." tt3783958,7CVfTd-_qbc,"Commuters on the L.A. freeway sing and dance about life in ""La La Land.""" tt3783958,lNFbbWOM5FU,"At Griffith Observatory, Mia and Seb fall in love and dance away into the stars." tt3783958,b65C_muXajk,Seb tries to convince Mia to come back to L.A. for a crucial audition. tt3783958,RHz9rXVt3cQ,Seb and Mia realize that their decisions are taking them down seperate paths. tt3783958,FAmaskY8eXE,Mia shares a personal story for her audition and sings a heartfelt song about dreamers. tt3783958,wSOMPH85zvQ,"Seb and Mia sing about dreams and love in the ""City of Stars.""" tt3783958,cmkZeTX5fq0,Mia's roommates convince her to go an L.A. party with the hope of being discovered. tt3783958,_8w9rOpV3gc,Seb and Mia sing and dance over the lights of L.A. tt0451279,M_7k0PCONF0,Via introduces her boyfriend to her family. tt0451279,zJMCctR8ivc,Mr. Browne asks Auggie to introduce himself to the class. tt0451279,ZoL1epfoq-g,Auggie gets cozy with Jack Will during his first week of public school. tt0451279,29VjYkPPY2s,Jack Will realizes Auggie overheard him while his friend were insulting him and fights Julian to make up for it. tt0451279,ceWNY5eNSWY,"Auggie gets a tour around school from Jack Will, the school bully, and Charlotte." tt0451279,l2zrJ_LZrhg,Auggie and Jack Will run into a pack of aggressive kids looking for a fight but thankfully get some unexpected help. tt0451279,vYH5urNq1Ao,Mr. Tushman tries his best to suspend Julian after he is caught bullying Auggie. tt0451279,C0KLb_v50-k,"Via tries to find out what upset her younger brother, Auggie, at school." tt0451279,AmCR7Owu6R8,"Miranda explains what happened the summer before she stopped speaking to Auggie's sister, Via." tt1219827,nbssDN3Y75Q,Kuze explains the motivation for his actions to Major. tt1219827,vOQ211AFtLU,Major and her squad eliminate the last man standing behind the conspiracy that nearly killed her. tt1219827,bNFWITNVAKU,Major jumps into the mind of a hacked android in order to find out who is behind her reprogramming. tt1219827,uPQcsSuWlB4,Major and Batou go on the hunt for rogue machine Kuze. tt1219827,Ct21N7taYlc,Major rushes to save Dr. Ouelet and find out who has been behind a string of murders across the city. tt1219827,sB1jRg2iQsg,Major and Kuze are cornered by a giant mech intent on taking them out. tt1219827,fDcZoI_wy_w,Major flies into a dangerous mission to stop an assassination. tt1219827,V9mx4UV8DNc,Killer's target Major's squad after the crew discovers a major corporation is behind the murders happening across the city. tt1219827,OtjQUwKlR0U,Major and Kuze remember what happened to them before they were murdered. tt1219827,Cw9FQ_X-gP0,Major goes through the process of becoming a cyborg. tt4966046,HjQPsZjrgkY,Richard Hambleton shifts into landscapes in rejection of the art scene. tt4966046,mji8ZFst3ws,Richard Hambleton's paintings are a wild success. tt4966046,tB7Ml4tO7d4,Richard Hambleton explodes onto the art scene during his heyday. tt4966046,UoNbV-qxEJE,Richard Hambleton first makes his mark with crime scene performance art. tt4966046,AmYSeovvscE,Richard Hambleton's life falls to ruin. tt4966046,g0PEGEYvZd8,Richard Hambleton debuts a new kind of street art. tt4966046,mce5xJi8uH8,Richard Hambleton becomes obsessed with the Marlboro Man. tt4966046,EaCGKhxR0P0,Richard Hambleton discusses the nature and impact of his shadow people. tt3371366,MtRlOvoq9Ls,Optimus Prime is given a death sentence by the transformers order of knights. tt3371366,MdoBOoR576Y,Cade and Vivian are brought to meet Sir Edmund. tt3371366,M2E0xzfvDMw,Cade and his crew are cornered by Megatron and his Decepticons. tt3371366,KJtmyW2urUk,"When Cade gets captured by the TRF, Bumblebee comes to his rescue." tt3371366,rbrIQjVNl0E,"Optimus Prime, under the evil influence of Quintessa, faces off against his friend Bumblebee." tt3371366,OfnIw7Y8IUY,"Cade and Vivian find the Staff of Merlin, but are discovered by ancient autobots and government soldiers." tt3371366,4g_oMoSgIas,Optimus Prime arrives in the nick of time to save his friends. tt3371366,WS8Sc1nCi8U,Optimus Prime faces off against Quintessa while Cade and Vivian search for the Staff of Merlin. tt3371366,DGOews8SVLw,"The government and the Decepticons chase after Cade, Vivian, and Sir Edmund." tt3371366,2rSSxAdDhuU,"Sir Edmund tells Cade of Transformers through the ages, including when Bumblebee fought in WWII." tt6094944,X3nIJPj_7J0,Rita breaks out of jail using her expert breaking-out-of-jail skills. tt6094944,3s--5gsc4bs,Corn has an interesting way of making money off Jamaica's finest. tt6094944,Yn8ZE58MFEc,"When Corn and Rita argue, disaster strikes." tt6094944,5eNVHUxlR1Y,What do you do with a goat corpse? Sell it to a butcher. tt6094944,-XuS9JQgu4M,God doesn't need money. A dead goat does. tt6094944,BuQKVYgI8S0,Corn and Rita encounter a symphony of wind and percussion instruments. tt4211312,kvBiMHIuFbw,Djata and his friends are bullied by the Roman twins Romulus and Remus. tt4211312,6SAzrCAaFG8,Djata and his friend Shabby search for a rumored hidden treasure beneath the statue of a dictator. tt4211312,oZVMUM4k29o,Colonel Fitz explains the difficulties of living in a despotic country to his grandson Djata. tt4211312,oJAYU5a8zTs,Djata is shocked to see his father appear at his grandfather's funeral while serving time in a re-education camp. tt4211312,7Ecvvu9ovIU,Djata is forced to shoot a housepet by his grandparents. tt4211312,g50ARHr0mkA,Djata and his mother go to the home of General Meade to beg for reprieve for his father. tt4211312,acBlGJZCIiQ,Djata is berated by a schoolteacher after being accused of theft. tt4211312,KM6fEMvPvqc,Djata goes up against the psychotic twins Romulus and Remus. tt1291150,9v-2_YOVxGw,The boys escape from the Foot Clan base so they can find Shredder and put a stop his plans. tt3949660,bY6jLt3owBQ,April tries to get information on evil scientist Baxter Stockman. tt3949660,lh5IiK9eQhA,The boys work to stop Shredder from escaping from an armored vehicle. tt3949660,_OrEOa0TYTY,Casey saves April and meets the Turtles for the first time. tt3949660,hITWJ6vE1os,"While being chased by ninjas, April is saved by a hockey-mask wearing Casey Jones." tt3949660,CdVuOYKr2cQ,"When April and Casey chase find foot soldiers in the local police precinct, the turtles and them have a rough time with Ninjas and the NYPD." tt3949660,npkzgnKAgXU,The boys finally face off against Krang while trying to stop him from building his spaceship and destroying the planet. tt3949660,HkXGq2kJAlM,"The Turtles meet and battle Krang while April and Casey take on Bebop, Rocksteady and the Foot Clan." tt3949660,lKStI-3GHDc,The boys face off against Bebop & Rocksteady in order to stop the two from delivering an inter-dimensional device to Shredder. tt3949660,4xg-5TeGvQY,Raph panics when Leonardo suggests they jump from one plane to another without a parachute. tt3949660,6MJJXdBz1q0,April watches as Bebop and Rocksteady transform into monsters. tt1291150,-W_4EZvbrEI,The Turtles work to rescue April and Vernon while being chased by the Foot Clan. tt1291150,OLZhL2R4cfg,April chases after the Ninja Turtles and gets an abrupt introduction. tt1291150,TKszvumsyFY,The Turtles corner Shredder as his plans to terrorize the city are about to take hold. tt1291150,SWgcv5EwMgI,April searches the subway for evidence of the Ninja Turtles' existence. tt1291150,wKIL7__ybL0,Raphael takes the fight to Shredder so he can free his brothers from captivity. tt1291150,3gLxv0qizPY,"The Turtles, along with April and Vernon, try to escape the Foot Clan chasing them down a mountain." tt1291150,J3Sl8B7RzUg,"With the Turtles trapped, April tries a last gambit against Shredder." tt1291150,ZyirxKE2aFs,"After the Turtles' sewer base is attacked by the Foot Clan, Splinter buys the guys time by facing off against Shredder." tt1291150,1JHqVsXnQxQ,Splinter tells April how they came to be who they are after she rescued them as a child. tt5061162,KKsaYBeEr1w,Maria begins her seduction of Vaclav. tt5061162,yadi1fTl4p0,Maria loses her temper when a student heckles her story. tt5061162,wcN3fX7oiSQ,Mr. Binder confronts Maria about her blackmailing students. tt5061162,3K3KlDWq-qo,Danke stands up for herself against her abusive teacher. tt5061162,9KTEYDd0F7g,"Binder fights for the safety of Danka, only for his dark past to emerge." tt5061162,OEvu7pkH8o4,Maria publicly shames Karol to get close to his father. tt5529680,xmcpR-iaa7o,"Rahim drives through the streets after a frustrating argument with his apprentice, Aiman." tt5529680,ctB6OIa3Pz0,Rahim teaches Aiman the ins and outs of being a hangman. tt5529680,j6kHHLVRPak,Aiman tells his sister Suhaila the news of his promotion. tt5529680,ZiNx61K8QT8,Rahim confronts Aiman over hiding his past from him. tt5529680,2aTxwlSE2mw,Aiman visits the family of a condemned man and finds they may have already moved on. tt5529680,8wMS2SCtVM4,Aiman digs into Rahim over his hanging of a potentially innocent man. tt5529680,AfNCKS2a3nU,Aiman conducts his first execution under the apprenticeship of Rahim. tt5529680,2-qyN66Kr24,Aiman conducts his first execution on his own. tt1293847,-0SHIbuEO3w,Xander races against the clock to stop a defcon-1 incident from occurring. tt3773378,dMri-2QuZtI,Aziz Shokhakimov talks about his theories on the role of conductors in music. tt3773378,ESgYnVVq9AY,Aziz Shokhakimov watches in frustration as Andreas Hotz rehearses for the final round. tt1519461,VDwI61e2_6I,"After Reid sneaks into the house of an Area 51 employee, Darrin goes after him." tt1519461,jh_EME9M-mg,Reid and Jelena find themselves in a creepy cave beneath Area 51. tt1519461,Sy_thm1fviY,Reid and the others hide in a locker room only to experience strange alien noises. tt1519461,duU5cdQtpSE,"After walking miles, Reid and his two friends defuse a motion sensor, dodge a helicopter and finally reach Area 51." tt1519461,GVqoyzJUzJk,Darrin attempts to escape Area 51 while being chased by an escaped alien. tt1519461,qj3TqaXp2Mg,Reid and his friends discover a real UFO in an Area 51 hanger. tt1519461,QvVUxPcMZQE,"Reid, Jelena and Darrin discover a science lab with out of this world experiments." tt1519461,yAo3144gBw4,"While searching the house of an Area 51 employee, Reid and Darrin are surprised to discover the family coming home sooner than they thought." tt1519461,KwfnVFtdn_E,"Darrin and Ben realize their friend, Reid has mysteriously gone missing while at a party." tt1519461,ICJi_nMcUQc,Reid finds Jelena in some sort of trance only to discover they are both trapped on a moving UFO. tt1293847,nXV8YHeJfOs,Serena and the team get some help from an unexpected source. tt1293847,eAp8Vm19uQU,Xiang and his crew break into a government building and steal a WMD called Pandora's Box. tt1293847,9T7zP4Ui9VE,Gibbons tries to recruit Neymar Jr. for the XXX program. tt1293847,PRk69Z74hPs,Xander goes after Xiang as he escapes the attack on the island. tt1293847,r29P93wUiMg,"While Serena holds off waves of government operatives, while Xander has trouble flushing." tt1293847,eg8WzaSrZpg,Xander and his team chase after Xiang on a busy street. tt1293847,VdAC6kNpXeM,"After Pandora's Box is used to target his team, Xander sacrifices himself to stop a downed satellite from killing them." tt1293847,vq6ofw0hqkU,Xander plays a deadly game with Xiang and Serena in search of answers about Pandora's Box. tt1293847,oS6AtbHHjSo,Xander and his team take on a group of mercenaries who show up to steal Pandora's Box. tt3773378,M9C1xAQdSKk,Shizuo Kuwahara discusses his conducting technique. tt3773378,chCsCDHJZtY,A look at half the conductors competing in the Sir Georg Solti competition. tt3773378,pLXw-1RPsJs,Andreas Hotz has his second round of rehearsals with the orchestra and discusses the troubles of being younger than most of the musicians he is conducting. tt2283362,2pw_36yxgXI,Fridge and Spencer teach Bethany how to pee with a male body. tt2283362,C0NVo07t9UI,The players realize that they're stuck in a game... and in different bodies! tt2283362,iKduvC0uNs8,Spencer and Martha make use of the video game mechanics to save the day. tt2283362,vhEOInyNr54,Spencer and Martha confess their feelings for each other. tt2283362,w5yJV_TKOWg,Spencer throws Fridge out of the helicopter for the magic stone. tt2283362,V3Gnq8VFai4,Spencer and Martha show their stuff against a motorcycle gang of henchmen. tt2283362,Vx0MQxIFBW8,Martha tries and fails to flirt her way past the guards. tt2283362,IB7BvgXIKOs,Bethany teaches Martha how to flirt. tt2283362,rKh4muRk_s0,Alex desperately tries to save the group from a rhino stampede. tt2283362,5YgMl4JQxKw,Bethany gives Alex CPR to keep him alive. tt5301544,bN7jTZKITG8,Ethan is forced into a dinner with conservative pundit Ann Alcott. tt5301544,IXOq5goG2G0,"When a conservative talk show host has a sudden stroke, his assistant producer Daryl finds a replacement in liberal music DJ Ethan." tt5301544,vTUM5grJwTE,Ethan interviews gubernatorial candidate Richard Sollow. tt1386697,0w8oeXvLXOw,Diablo shows his true form and faces off against Incubus. tt5612742,nCw-UbptqD4,Cole and Maddy finally express their feelings for one another. tt1386697,S-2cloMm4Lk,The Squad goes up against Enchantress's goons. tt1386697,_bS2cHSqgnE,The story of how The Joker and Harley Quinn fell in love. tt1386697,T2IZiCyLFmI,The Squad gets ambushed by Enchantress's minions while searching for their mission objective. tt1386697,g5-KsABvVzU,Rick Flag begs the Squad to help him save the woman he loves as they all sit around a bar and drink. tt1386697,wdcRrpMHIGM,"Harley Quinn, Deadshot, and the others work together to defeat Enchantress." tt1386697,gQATrdAXELg,The Joker makes a daring play for Harley's freedom and Deadshot is faced with a dilemma. tt1386697,Q0IHL6WGFY0,The Joker interrogates Griggs to find information on Harley Quinn's location. tt5612742,BK9Rn_s8idI,"Maddy and Cole get the last two members of their team, Mutey and TJ." tt5612742,PR1WWVvDs3s,Marissa makes Cole an enticing proposition. tt5612742,-yMT2S8fJ9g,An introduction to the 'losers' and 'geeks' who will join Cole and Maddy's plot to sabotage prom. tt5612742,MPY58gIH65M,Stuffs describes how she got her nickname to Maddy. tt5612742,M-LhdLDYOps,Cole is publicly embarrassed by an angry Marissa and uses the spotlight to deliver a heartwarming speech. tt5612742,JfJSwQkRgbk,Cole finds out Maddy has betrayed him and quit their plans to sabotage the prom. tt5612742,w0A-YZ0Yd2Q,Cole rushes to stop his friends before they prank Maddy as she is crowned prom queen. tt5612742,aF4SahLqcxw,Maddy confronts Marissa after Marissa double crossed her. tt5612742,cvuTnguNL8g,Cole reveals to Maddy the day their friendship changed forever. tt5301544,UTGEXJSxPvY,Ethan is surprised to discover his conservative friend is attracted to him. tt5301544,aqTS6jAqmUA,Rouge uncovers Ethan's identity. tt5301544,EhyXopafOeA,Ethan has his first on-air interview as Charles Fern. tt5301544,wyRpsUOH4f0,Rouge helps Ethan fake his own death. tt5301544,BYQ0Q0oqYOA,"I successfully ""kills"" his conservative alter ego and wins back his girlfriend." tt5301544,KtEzZuRX23M,Ethan Smith admits to Julia that his alter ego is a conservative radio host. tt5301544,y3E0ot-4Egw,Ann Alcott tries to seduce Ethan. tt4848010,3wjBPKUDk_Y,"After being unable to locate his wife and having a hellish night with her friends, David rips into every guest at the party." tt4848010,1spvdwcb7jg,David runs into an old friend who breaks a bit of bad news about his book. tt4848010,UYhBmdQ0VWc,David finds very little in the way of help while searching for his wife Jennifer. tt4848010,-QGGk3M5S3c,"While being patronized by a critic, David recalls the moment he knew his wife had talent." tt4848010,tJwt-LcbRIw,Sawyer offers David a strange ultimatum regarding his career and his facial hair. tt4848010,xmbmcfVs1u4,Jennifer decides to get spontaneous and pulls over for a roadside quickie with David. tt4848010,AaF3SiD4IYM,David and Jennifer hit a bump in the road on their way to grab a rental from a car-sharing company. tt4848010,BpP_rFPFUPM,David has an uncomfortable encounter with a dentist at a party. tt4848010,PSWftrnsEcU,David meets a friend of his wife who seems to imply he slept with her. tt4848010,4l4OmZk59Gc,David has an interesting conversation with an eccentric literary agent. tt3518988,bPL9A5VyKrY,The story of DM Spencer Crittenden and how he came into the path of Harmontown. tt3518988,oP_Y5LgieXA,A look at Harmontown fandom. tt3518988,mWB4xc6-Pdk,Dan makes a fool of himself after a fan offers him moonshine. tt3518988,X_7TJFVH3R4,"An examination of the reception of Dan's first pilot ""Heat Vision and Jack""." tt3518988,7X59lLfqm3c,Dan and his friends discuss the creation of Community. tt3518988,wZ6Dlo8z04I,Friends and collaborators try to explain exactly who Dan Harmon is. tt3518988,Ku3KKPEi-Ag,Dan and co. play a sold out show. tt3518988,wHgeI9HnroU,Collaborators discuss the rise and fall of Dan's time as showrunner for the Sarah Silverman Show. tt3518988,iQPvgoJ5l2s,Dan and his girlfriend Erin bring a big fight they had to the audience at a taping of Harmontown. tt3518988,cgGOnelqMi8,Dan and special guest Jason Sudeikis make a prank phone call to Chevy Chase. tt1754767,AUCbYHVFnf0,Dalton discovers the horse he's riding can talk. tt1540115,23zu-1Nsqg4,The Prince family describe how the coal contamination in their town led to the tragic death of their daughter. tt1540115,Uz6jhOP_nm8,A local confronts a coal miner about his former employer's part in contaminating her water. tt1540115,W08YzBOfqV8,A local family takes you through the daily routine of living with contaminated water. tt1540115,P-SVl6Ql7xU,"Don Blankenship, the president of one of Massey Coal's subsidiaries, refuses to answer questions about the coal mines operations, but will mention he doesn't drink the water." tt1540115,CsfBuhXV2lA,"Plaintiffs in the civil suit against Massey Energy find out their trial has been pushed yet again, but Massey ends up settling before it ever happens." tt1754767,KC2YLhHiXv4,Dalton tries to thwart a potential jailbreak. tt1754767,nyJ00UjcA0c,Dalton chases down a group of bandits holding Gail tt1754767,aB5g_U4qo_Q,Slim shows Dalton how to shoot a gun. tt1754767,Uxo5LmSDK34,Dalton goes after an outlaw missing the bottom half of his head. tt1754767,7Mz5jmOePsk,Dalton and the citizens of Toonstone fight against an alien invasion. tt1754767,NO9Qt8NB7JQ,Dalton discusses gun-slinging with McConaughorse before deciding he needs a different deputy. tt1754767,A9MNy__qBaQ,Dalton is rudely interrupted by McConaughorse during his conversation with Gail. tt1754767,rBy7ZDob8a8,Dalton faces off against the evil Two-Eyed Jack. tt1754767,D4x3BaaJ2gY,"Slim tries to teach Dalton to be a real gunslinger, but he is violently bad at it." tt3605266,91GNWPp-a38,Rola asks Susan what she would want most. tt3605266,T8qZ73IazvY,Rola bumps heads with Susan over her constant suggestions. tt3605266,Ri408Ie3zQs,Rola and Lernert come across a Stranger searching for the same lake they are. tt3605266,vKT_HKcwxFY,Rola eats a potentially poisonous fruit. tt3605266,HBYW2199vpo,Rola explains her feelings for Lernert. tt3605266,wNuVF4lnszE,Lernert and Rola have a bit of leisure time in the desert. tt3605266,AGi49DPszHg,Lernert and Rola finally find the mysterious lake they had been searching for for months. tt3605266,snkc0SvbR4M,Lernert explains the difference between a posionous fruit and an edible one to Rola. tt3605266,sxyaSXAF5kI,Lernert finds a battery to charge his broken robot companion Susan. tt1856101,nL3o4MGY9NQ,"Joi, K's holographic girlfriend, walks outside and experiences the rain for the first time thanks to a new device." tt1540115,jUgr32wtqiM,Locals meet in a town hall to discuss the contamination problem. tt1540115,cj8XKnVdCDs,Residents of a small West Virginia town describe the conditions they've been living in thanks to water contamination at the hands of a powerful coal company. tt1540115,YZN59OZIz30,"A Massey representative disagrees with the company's alleged part in the contamination of local water and sewage, though it's ex-employees have a different view." tt1540115,LSUPf57En54,Advocates for the locals affected by the toxic contaminants investigate another case of rusted water. tt1856101,ZjEnS3hA1B4,"While traveling with Joi, K stumbles into a hijacking." tt1856101,eCvY-ualWwY,K and Luv face off to the death. tt1856101,E_PIi8tRcCo,"K visits Dr. Ana Stelline, the designer of memories for replicants." tt1856101,I4_AaEazcbk,K and Deckard are attacked by Luv and her men. tt1856101,lIbKD5ovjok,Lieutenant Joshi gets paid a visit by the villainous replicant Luv. tt1856101,PLgNzEctkO4,K takes Deckard to finally see his child. tt1856101,bbX5KM0tFVk,Officer K comes to recall rogue replicant Sapper Morton. tt1856101,tJya-fbl4R8,K finally meets ex-Blade Runner Deckard who gives a less than warm reception. tt1856101,BLSFQUjyBQo,K derails Luv as she takes Deckard hostage. tt4877122,YFIIcUg_C4I,Gene runs into Hi-5 while trying to escape Smiley's Malware Bots. tt4877122,OIf1BFh8UwA,Gene and Hi-5 search for the mysterious hacker Jailbreak. tt4877122,cbH10o2VTXI,Gene introduces the ins and outs of the emoji city living in our phones. tt4877122,nWwlcubR7s0,The rogue emojis scramble to break through the cell phone's firewall and to 'the cloud'. tt4877122,jXIFh5Gwqno,Jailbreak and Hi-5 scramble to save Gene from being destroyed in a game of Candy Crush. tt4877122,-vvxRiJkXAs,Smiler captures Gene and intends to delete him. tt4877122,1Pk2FQUbnm0,Gene and Jailbreak make a last ditch effort to save Textopolis from being wiped out from the phone. tt4877122,xzBC35K-vug,"After teaching Jailbreak how to dance, Gene and the others move to the beat in order to escape Smiler's bots." tt4877122,WEwS34zf8mk,Gene is selected by his user to be used in a text and buckles at the opportunity. tt4877122,nYvvM0FXKWQ,"After turning down Gene's romantic feelings for her, Jailbreak must team up with Hi-5 to save him from being deleted." tt1650062,JVRdRQaccL0,Sheriff Pruitt is attacked by an unseen force while getting gas. tt1650062,DtuXEqWdWCI,The group scrambles to find the monster's hideout and runs into an army taking over their neighborhood. tt1650062,u1MRGbWEI9M,Alice is abducted by the creature after an argument with her father. tt1650062,fWgpZ_2oYfE,The gang watch as a truck collides with a train while filming a zombie movie. tt1650062,KFzIZnYLKSo,Joe lets go of his locket of his mother as the alien leaves Earth in a makeshift craft. tt1650062,ekSSp-zvdgk,Joe and Cary find the creature's underground hideout and search for Alice. tt1650062,n_3Fsg5qGfk,The kids find a survivor in the wreckage. tt1650062,DRGjkQ_iBL8,Joe and Alice bond over the death of Joe's mother. tt1648190,ulFxMs35-P0,The Man in Black has finally kidnapped Jake and Roland is pinned by his henchmen. tt1648190,CtYTXG1RFQ0,Jake is kidnapped and Roland has one chance to take out his kidnapper. tt1648190,oIlpo2mj_qk,Roland teaches Jake how to shoot and the Gunslingers creed. tt1648190,Cn_70ds_Slw,Jake runs away and discovers a portal guarded by a possessed house. tt1648190,w0qfQaJtF2E,Roland and the Man in Black finally face off in a fight to save Jake or face the end of the world. tt1648190,vVmZO3W0I1A,Roland and Jake go to a gun store to pick up ammunition only to run into the Man in Black. tt1648190,R7vFG7jQZGY,Roland and his father Steven face off against dark magician Walter. tt1648190,5Cv1ENey4yU,The Man in Black has an army of Taheen attack the village Roland and Jake have taken sanction in. tt1648190,y1-gPBJ-C_U,Jake gets an unexpected visit from his 'father while traversing the forest. tt1648190,wWKQ2aOTfN0,Roland and Jake are attacked by a creature while traveling through the forest. tt1959563,mQTPziHf9Qc,"Kincaid tells the story of how he met the love of his life, Sonia." tt1959563,1mVk7wal9bk,"Fed up with his antics, Michael swears off helping Kincaid escaping Belarusian mercenaries." tt1959563,Gh9kc9DiDnE,"Kincaid finally confronts Dukhovich, the war lord who has tried to kill him all day." tt1959563,ISQMNhOd96w,"While arguing, Kincaid reveals the truth behind Michael's most life-changing event." tt1959563,q7tLJC4pC14,Michael is tortured by Dukhovich's men into giving away Kincaid's whereabouts. tt1959563,kTNDYiONld8,Michael helps Kincaid escape the streets of Amsterdam. tt1959563,sohDA6TQuiE,Michael and Kincaid are split up and chased across the city. tt1959563,9pF_vfzjbpY,"While Agent Roussell is escorting Kincaid to Amsterdam, her cargo is destroyed by Belrusian thugs." tt1959563,hX-ezXejcU0,Michael is cornered by Dukhovich goons and tries to fight his way out to get to Kincaid. tt1959563,BCyz82L_61E,Michael does a job as a favor to his ex-girlfriend Agent Roussel but is shocked to find out the client is Kincaid. tt1959563,UlxZ06150xI,Kincaid tries to escape Michael's custody and accidentally leads the bad guys to their location. tt1959563,iLJtz-2nkGk,"Michael tries his best to keep his client, Kincaid, from getting in the way of being protected." tt3892618,nbxAMHD0_dc,Cora and June meet up in Heaven during an orientation. tt3892618,21rlL3oxEIY,Lucifer tells the story of June's fall from grace. tt3892618,6MIGRX1AVKo,The Librarian teaches Heaven's Applicants a bit of discipline. tt3892618,U5XIY-s43aQ,"June is cast down from Heaven and enters Hell's Carnival, meeting The Twin" tt4335520,iLH6Fzd2V94,Entrepreneurs and experts discuss the importance of coding in education. tt4335520,9lnovJPbLTc,Experts dig into the possibilities for the future of women in tech. tt2378507,gqe-oAUoEto,Rex tries teaching Jeanette how to swim by throwing her into the pool. tt2378507,zm9XOZXVyyU,Rex challenges Jeanette's fiancée to an arm wrestling match. tt2378507,wcjCEUeC8nk,"After Jeanette has her family visit in the hospital, her father Rex devises a plan to bust her out without paying the bill." tt2378507,H7tyPUAH1lo,"While helping her dad sew up a wound from a drunken fall, Jeanette asks her dad an important question." tt2378507,7l79p5apaqQ,Jeanette is left alone with a strange man by her father. tt2378507,B9r99FImuSc,The Walls family move to West Virginia and finally settle into a home. tt2378507,j_3wS3OIgc8,Jeanette and her siblings pull their mother to safety after a fight between their parents leads to her falling out of the window. tt2378507,qp-Jr4oEFWo,Jeanette is surprised to see her parents at her engagement party until they tell her why. tt2378507,Ed__PtLnaeo,Jeanette walks in on Grandma Emma being dangerously close to Brian. tt2378507,F70k-PX3p0o,"On his deathbed, Rex finally reconciles with his daughter Jeanette." tt4131800,bTPrlCglvFo,The Mane 6 get saved by a sly and charming alley cat named Capper. tt4131800,KxoJQx_MgAc,Twilight Sparkle and Tempest Shadow both risk their lives in trying to stop the Storm King. tt4131800,sH8nzHarprc,Prep for the Friendship Festival is interrupted by an invasion led by the broken-horned unicorn named Tempest Shadow. tt4131800,yaWmlDjvMs8,"Twilight Sparkle's friends, along with Capper, the pirates and Skystar, battle through the Storm King's minions to rescue her." tt4131800,nSH_S3LDUYI,The Friendship Festival resumes with a song by Songbird Serenade as Twilight Sparkle welcomes Tempest Shadow as a friend. tt4131800,XEF8mU3Vanc,"After discovering the lost Hippogriffs in the underwater Seaquestria, the Mane 6 get turned into Seaponies by Queen Novo." tt4131800,vhmFJKHhdw4,Twilight Sparkle is captured by Tempest Shadow who reveals how she became such a dark and cruel pony. tt4131800,7VOpGn2RTP4,Twilight Sparkle gets a little encouragement from her friends in song form. tt4131800,rsktGDtzKhg,Pinkie Pie and her friends play with Princess Skystar and bring all of Seaquestria on their side with a song. tt4131800,2gUFZCRHHvE,"Rainbow Dash convinces some former pirates, led by Captain Celaeno, to joins the cause of getting help for the ponies." tt3892618,ccgVkEP4hLs,God sings the prelude to a major shake-up in Heaven. tt3892618,1lVlP8o6t94,"Eons after casting her to Hell, The Agent has a run-in with the Painted Doll as the Devil prepares for war." tt3892618,ql8RBlb-IJQ,Lucifer takes wayward souls headed for Hell back to Heaven. tt3892618,rvYoAzmAcAI,The Agent sings for June while in Club Cloud Seven tt3892618,eesYEZ3pp5Q,The Translators arrest and annoy Cora and June. tt3892618,Ozg8nU5yyWc,Lucifer teaches June a thing or two about being cast down from Heaven. tt4335520,zDGDWdvLCrM,A look at the non-profit program 'Black Girls Code'. tt4335520,kE8qSUcrrmk,A look at women's pioneering position in computing. tt4335520,-c6nNzrAqs0,An examination of the lack of diversity in programming and those looking to change it. tt4335520,-EZS68nXwHo,"The story of tech pioneer Grace Hopper and also how she coined the term ""computer bug""." tt4335520,YtprbvdApU4,"A look at the times a lack of diversity in the room caused tangible, and sometimes fatal, consequences." tt4335520,U4fHvCvrTjQ,Techies and scholars discuss the pre-conceived notions of being a woman in tech and the mindset this perception perpetuates. tt4335520,9w3jysNGqeA,Julie Ann Horvath describes a long ordeal of abuse after calling out an instance of sexism at work. tt4335520,qULQCbfqJm8,A primer on the basics of computing. tt3469046,9riBff-h-hM,"Gru, Stu, and Lucy rush to save their girls and save the city from Balthazar Bratt." tt3469046,P94mqkWtfxU,Gru and Dru sneak into Balthazar's lair. tt3469046,_RG8hoGMxKw,"After abandoning Gru, the minions run into trouble on a movie studio." tt3469046,m9Gg_VQP2zw,Gru and Stu face off against Balthazar Bratt and challenge him to a dance battle. tt3469046,Ps3MsEdfpAw,Gru faces off against Balthazar Bratt on the ship. tt3469046,yijQXDtxgic,Agnes gets told a story about a real-life unicorn. tt3469046,C0H2SnzitoM,"The minions have adjusted to prison life, but still mis Gru." tt3469046,2tqG6KMgyv8,Lucy helps Margo get rid of an unwanted suitor. tt3469046,B5goHV7tFnE,Dru shows Gru their family legacy. tt3469046,H9PmpwhBg8w,The girls arrange a romantic dinner for Gru and Lucy. tt3564472,J4ZnYc3tNyw,Lisa gets stuck hanging over a busy street with a full bladder. tt3564472,wXDgyuxBuBU,Ryan tries to teach her manager Liz about cultural appropriation. tt3564472,193KvPnLO4I,The girls try to encourage Lisa to be a little less tense. tt3564472,kxvkI8K7fTo,Dina tries to convince Lisa to relax with the help of her secret hash. tt3564472,G8r48HzrYHE,Dina shows her friends the versatile functions of a grapefruit. tt3564472,FbV4VCCk3Sc,"Ryan, Sasha, Lisa and Dina get into a dance fight and then a real fight with the side chick of Ryan's husband." tt3564472,m0etOugqkPU,The girls start hallucinating after Dina spikes their drinks with Absinthe. tt3564472,N_aPyfiVWEE,The Flossey Possey crashes the stage in order to stop Ryan from being embarrassed by her husband's girlfriend. tt3564472,CYQXYJIN3Jw,The Flossy Possey breaks up after Ryan accuses Sasha of selling her out. tt3564472,h4lbn5nDXwY,"Dina very violently confronts Stewart, Ryan's husband, after finding out he's been cheating on her friend." tt1711525,LQVzgO14oIU,Josh and Tracey catch up to Clay as he tries to drunkenly drive over the river. tt1711525,I3XgtCzF5UY,Nate and Allison find themselves unhappy in romance. tt1711525,y5_Q3HufngU,Carol finds out about the raging party that is happening behind her back. tt1711525,UUDv-oUehMU,Joel shows off his new DJ identity much to the chagrin of HR rep Mary. tt1711525,sf1LMw0a95g,Carol fights with her brother after closing half of his branch. tt1711525,CJGeUFtiJP0,"Nate orders a callgirl to pretend to be his girlfriend and meets her eccentric ""manager""Trina." tt1711525,j4OMpEp-bFk,Carol announces the imminent closure of her brother's branch. tt1711525,tgpGrfh6gM8,Josh is tricked into drinking egg nog for an ice sculpture while trying to impress a potential client. tt1711525,OgqkqYeNbOM,Josh and Tracey do damage control after their party gets out of hand and their client gets injured. tt1711525,km_nixuzb1A,Josh and Tracey try to rescue Clay. tt0498381,w3hwZ-7CWeg,Julia and Holt find Samara's grave. tt0498381,o9-cFlOdXn8,Julia and Holt stumble upon the wreckage that has Professor Gabriel trapped under a live wire. tt0498381,YptUTTJjUVs,Holt and Professor Gabriel investigate the seemingly modified version of Julia's visuals. tt0498381,_qbp2nGRp1Q,Julia frees Samara but is cornered by Father Burke. tt0498381,cwgaR1xDiyE,Father Burke reveals that Samara cannot harm him. tt0498381,pN5RlyFWJBA,Holt realizes too late that something is wrong with Julia. tt0498381,QiT-jk74QMw,Julia discovers the identity of the priest who abuse Samara and Samara's mother. tt0498381,_GJG2JDvCes,"After failing to trap Julia, Skye fights against time as Samara attempts to break through to her world." tt0498381,Pm_7ga5bxeI,Julia finds an underground prison where Samara's mother was held captive. tt0498381,-p4TkuB20bs,Kelly and Faith are startled when a man claims he's about to die while aboard their flight. tt2473510,vsU27J8K3Tw,Skyler senses a dark presence in Leila's room that can only be seen on the video camera. tt2473510,iErVeElswus,Ryan and Emily hear a frightening message from little Leila. tt2473510,4F_jLtYFT6Y,"When Father Todd is killed, the family has to deal with an enraged demon by themselves." tt2473510,gBdbUMTXKIA,A mysterious portal opens in Leila's room. tt2473510,UgtSRZHvyWY,Skyler and Mike investigate strange disturbances in the backyard. tt2473510,FPpYxPOjtsw,"Emily comes face to face with the living incarnation of her daughter's demon friend ""Toby.""" tt2473510,mAD2gJTRSbI,Ryan and Dan Gill capture evidence of the demon on camera. tt2473510,KeiJDMd8loM,Mike freaks out when the demon stalks him in the house. tt2473510,GUw4G1lDGYE,Ryan discovers that the old Kristi and Katie videotapes somehow connect with his family in the present. tt2473510,v8kB6cqv8qM,Father Todd tries to exterminate the demon from the house. tt3065204,LKrcDYvwV1Q,Billy wakes up to find a malevolent spirit called the Crooked Man chasing after him. tt3065204,Trx5K54MNp8,Ed encounters the ghost in the flooded basement. tt3065204,W8EhiYDVPEU,Janet's interview is interrupted when she is possessed by the ghost of Bill Wilkins. tt3322940,piYwvMvqXPg,Mia and her husband John are attacked by home intruders. tt3322940,8Qw1dYiaCto,Father Perez tries to take Annabelle into his church in order to drain the energy of the evil spirit possessing the doll. tt3322940,axWtCnuctw0,Mia is chased by a demon while in the basement of her apartment building. tt3322940,_8hB8umrGlo,Mia has a physical encounter with the demon possessing Annabelle. tt3322940,_2gI4vpq9fo,Mia is haunted by the spirit of Annabelle. tt3322940,EPj1eq1csm4,The spirit in Annabelle continues to play mind games with Mia. tt3322940,KTVlvs7mtkM,Mia and Evelyn are attacked by a demonic spirit. tt3322940,GfUqvGxa6YE,Evelyn and John Form rush to save Mia from the demon haunting Annabelle. tt3322940,NGkLen8TbHc,Mia is chased through her apartment building's stairways by a malevolent creature. tt3322940,Csn39S3c0kI,Mia feels a demon's presence and visits Evelyn for help/ tt3799694,Pg_mCxaEa10,"While looking for Amelia at a porn producer's party, Jack Healy gets into a fight with a gun thug while Holly March gets captured by Blue Face." tt3799694,7fxvOlQLJWo,Jack Healy takes on John Boy as Holland March tries to get a hold of the secrets-filled film reel. tt3799694,3snpAmY2xeE,"Tally holds Holland March and Jack Healy at gun point, revealing her betrayal." tt3799694,Xdp-MXh84BA,Blue Face chases down Amelia and Holly with Jack Healy and Holland March not far behind him. tt3799694,bKWBb1_NJe8,Holland March gets cornered on the roof as Jack Healy and assassin John Boy start a firefight on the ground. tt3799694,-wBOjw_08o8,"Jack Healy pays a visit to Holland March to give him a message, one that involves breaking his arm." tt3799694,1nwaifplKCI,Jack Healy and Holland March realize there might be a hitman killing their missing girl a few floors above them. tt3799694,QQAd5xx0XHc,Jack Healy and Holland March rush home only to discover a hitman named John Boy is already there looking for Amelia. tt3280262,AC9URVogG3g,"After being locked up in the asylum like he planned, Andy is attacked by a Chucky doll that he himself sent there ahead of time." tt3280262,uQR_i0ydJik,"Chucky has a frustration conversation with Angelea, a patient that thinks she see's things." tt3280262,xD9G6rUq_5I,"Chucky visits Madeleine, a patient that views the doll as the baby she had previously killed." tt3280262,JCo3QW-S310,Chucky interrupts a disturbing hypnosis session between Dr. Foley and Nica. tt3280262,I4mtL3Zs0Zs,Chucky saves Nica for the second time only to show her that he's made some friends. tt3280262,wPmgfWpamb0,"Nica, now possessed by Chucky, exits the Asylum and reunites with Tiffany." tt3280262,UA1QG3_VoQ4,Chucky posses Nica and gets revenge on Dr. Foley with a brutal head stomp. tt3280262,sHjCcVC1uR0,Claire loses her head when she discovers that Chucky is actually alive. tt3280262,bdFo-WtjOmA,"Andy, now a lonely, gun collecting, vengeful adult, spends his Friday night torturing the remains of Chucky." tt3280262,v04j4-SBv9M,Chucky and his new pals kill Nurse Carlos. tt2975590,PsRTAWDrNYo,Lex Luthor unleashes his secret weapon upon Superman. tt2975590,MWAMJWYNpK8,Batman and Superman finally face off. tt2975590,i5dTE5dgWOw,Batman chases Luthor's cargo-hold in search of kryptonite and runs into the Man of Steel himself. tt2975590,4GlXOOYL_5I,Batman has an apocalyptic vision of a future where Superman has taken over the world. tt2975590,ttEZ7b4Cf9w,"Superman launches a final gambit against Doomsday, but is injured during the fight." tt2975590,UeeK-Fgup9w,Superpowered Batman and a weakened Superman go head to head in battle. tt2975590,Xu0QBBxHZWs,"As Batman is about to deliver the final blow, Superman yells something that gives him pause." tt2975590,7HlSKPTYZhs,Superman faces a congressional hearing on his actions after the Zod incident. tt2975590,4JE04So6OqU,Wonder Woman enters the fray and rescues Batman while Superman also rejoins the fight. tt2975590,rRlfzy7Rxdo,Batman goes to rescue Martha Kent from Lex Luthor's henchmen. tt1528854,RmEZwxFSsWE,Brad goes all out on the Christmas presents. tt1528854,vk5Kr-zV8AE,"After bringing Brad and Dusty's families together, a new challenger arrives." tt1528854,WrY9UuucSUs,Brad and Dusty square off against the bully's dad. tt1528854,taf0MZ5VgDc,Brad shows Dusty his skateboarding skills. tt1528854,vLw24Xr1zKo,"Brad, tries to show off in front of Sara by parking Dusty's motorcycle." tt1528854,3OFda9AT-U4,Brad and Dusty take out their aggression on one another during their childrens' story time. tt1528854,vPYiq9JNq_c,A drunk and depressed Brad tries to shoot a halfcourt shot for a contest. tt1528854,Iii55E60gfg,Dusty makes breakfast for the family and brings a surprise home from the street. tt1528854,fPcbyFeefXs,Dusty tries to embarrass Brad by taking him to a sperm doctor. tt1528854,6fJNyx7kI6w,Brad and Dusty reconcile and head to their daughter's dance only to catch Dylan in the middle of a fight with a bully. tt0088206,IMT0EqTWI6I,Kara appears in public for the first time and saves the day. tt0088206,JT_59yK4Gm4,Kara and Zaltar try to escape the Phantom Zone. tt0088206,2IIA6TYZynQ,"Kara lands on earth and tests her newfound, terrestrial strength." tt0088206,ZWe2pwIiWsk,"Kara goes out with Ethan, but the date is rudely interrupted by Selena." tt0088206,EMKD4L6Peto,Scarlet imprisons Supergirl and sends her to the Phantom Zone. tt0088206,f0-Ea9Ki7YU,Supergirl is nearly defeated by Scarlet. tt0088206,hzmZJcPlJlE,Supergirl races against time to save her friends from Selena. tt0088206,VM8ViJw7uNs,Kara is rescued by Zaltar in the Phantom Zone and taken to his home. tt0088206,0zQAUQGwv4A,Kara as Supergirl rescues Ethan and takes him on the beach. tt1253863,MkKO-Z_Sjm4,Queen Gorgo recalls the days of Xerxes from prince to god-king. tt3482062,qMMl8NYzcNQ,The roommates decide to have a threesome. tt3482062,vDL4qARSaBA,"Bobby and Ray, jealous of her sexual escapades, decide to throw Chloe out of the house." tt2406566,5wcg-4j9CZ0,"Lorraine makes a love connection with French agent, Delphine." tt2406566,rCUNazDU2mg,"Lorraine tries to escape assassins by car, but loses Spyglass." tt2406566,zNMpSVorNr0,Percival meets his fate. tt2406566,iG5oSrAW9FQ,Percival takes out Delphine before Lorraine can get there. tt2406566,gQO9bgOLhmg,Lorraine uses her training to escape her captors in a moving car. tt2406566,DxCjqhDD7X4,Lorraine uses a hose and other other household tools to escape police. tt2406566,q8-xQspXFag,"Lorraine meets with Bremovych, but has one final move left." tt1253863,VOk7mIZRPzI,Artemisia and Themistocles fight face to face. tt2406566,4-hiooEmi-I,Lorraine and Spyglass try to dispatch the last assassin sent to kill them. tt2406566,xwjw5TFPKwA,Lorraine tries to elude Bremovych's men at a movie theater. tt2406566,XarGS1AeEcE,"Lorraine fights brutally to protect her informant, Spyglass." tt1253863,XDnXI6KXoeg,Artemisia challenges Themistocles in more ways than one over his choice to fight for Greece. tt1253863,sN16d6mhe-A,Themistocles attempts to fight his way out of vital battle. tt1253863,aex6V8aGvxY,Artemisia asserts her power among the Greek prisoners on her ship. tt1253863,VONBpGWaxL8,Artemisia closes in on Themistocles and the Greek forces. tt1253863,qbRoK8WhJQQ,Queen Gorgo tells the story of the bloody Battle of Marathon. tt1253863,VA6nnlleAb4,Themistocles faces off against Artemisia in a naval battle. tt1253863,PHJisUS7KSg,Artemisia launches a final gambit against Themistocles and his navy. tt1253863,-jtzzs0_bM4,Queen Gorgo arrives in the nick of time to bring reinforcements to Themistocles and his forces. tt4139124,tOeINWwKvoA,"Cheddar tells Rell and Clarence to kill Hulka, but they have some reservations." tt4139124,-s52VEAQmKc,Rell and Clarence get to know the rest of the gang better. tt4139124,UkZVQNNzUAA,"Rell and Clarence gets information on who kidnapped Keanu from Rell's dealer, Hulka." tt4139124,I8gdjJYDJ4o,"On a crazy car chase, Rell tries to keep himself and Keanu alive with Bacon Diaz trying to kill him." tt4139124,HthNICfVKS0,"Rell and Clarence meet the leader of the Blips, Cheddar, and discover that he has Keanu." tt4139124,2jHKPubCPDY,Rell finds a connection with Hi-C. tt4139124,Uc2sp69O0uU,Rell and Clarence take out the Allentown Boys. tt4139124,7qjZeHpcVtI,Rell and Clarence are turned over to Bacon Diaz as the thugs who killed his cousin. tt4139124,7_G8cPqQwEM,Rell finally gets some help to take out Bacon and Cheddar. tt4139124,1DgOAPBMXws,Rell finds Keanu the kitty and introduces him to his cousin Clarence. tt10146586,v4X6u53WL0U,Three top Minecraft YouTubers compete at a convention. tt10146586,RwN3A9iBARI,Analysts discuss what exactly makes Minecraft so popular. tt10146586,aBACy7VwhhA,A breakdown of Microsoft's purchase of Minecraft. tt10146586,mtZ90MN57TE,Analysts and celebrities discuss the most recent strata of online celebrity. tt10146586,qLBpHZ9dUZk,Experts walk through the Minecraft basics. tt3534842,RvZfy1w-M7g,John gets internationally famous for his lost leg. tt3534842,GCdylltS-m8,"John remembers his press conference at the Dollar General, which was interrupted by Shannon Whisnant." tt3534842,eFs__fovQyk,John and his family recall the plane crash that killed their father and took his leg. tt3534842,ZlFVmr9iJjc,John describes how he became addicted to painkillers after the plane crash. tt3534842,56o2aefvmRA,Shannon Whisnant uses John's lost leg in various business opportunities. tt3534842,5ArOFrHp9Lo,Shannon Whisnant describes how he found a human leg in a barbecue grill. tt10146586,9Ou3nVQc4V8,Ali A describes his experiences in playing Minecraft. tt3534842,XPhVzIgYjhc,John and Shannon appeal to TV Judge Mathis to settle their dispute. tt3534842,VAfaWTc3WlQ,"Shannon goes on a reality TV show, but doesn't like being portrayed as an idiot." tt3534842,s0rlNw_cXqI,John realizes that the whole brouhaha with the leg has helped him get his life back on track. tt3534842,43nQlnNaU-8,"John tells how his amputated, mummified leg ended up in a barbecue grill." tt10146586,lsSC_8Aqums,Ashley Surcombe shines light on Minecraft's popularity on YouTube. tt3482062,hMCFlfCw0HA,"Bobby and Ray steal Chloe's pizza, unaware she spiked it with magic mushrooms." tt3482062,0cWnOxMXOEo,Bobby and Raymond search for a new roommate and find Chloe. tt3482062,YQJoemnpWaM,Chloe brings home Bobby's ex-girlfriend Jennifer back to the house so the two can sleep together. tt3482062,IJIeGOw5bXk,Bobby and Ray wage an all out war against Chloe in order to push her out of the house. tt3482062,mN22-ZrX-tc,Bud gives Bobby and Ray a bit of advice on their potential new roommate. tt3482062,M5mJMC_RpNc,Chloe and Bobby take the prank war to an emotionally devastating level. tt3482062,GoqDlg4px4M,Bobby has a breakdown the day after his ex-girlfriend sleeps with his roommate Chloe. tt10146586,fm12-rhW8cU,Minecraft YouTubers talk about how they've dealt with newfound celebrity. tt5278578,ONBLhIZCtQU,Mark Barden remembers the days before the tragic event that took his son away from him. tt5278578,tVBI-Fup8EI,A Newtown priest recalls consoling the town after the tragedy. tt5278578,pQ62TmdWnyI,Residents of Newtown remember awaiting the news of what happened to their children. tt3482062,PPhGRj0W8e4,The roommates have an all out war. tt5278578,wxiEJrmUlL0,Nicole Hockley finds solace in speaking with the parent of a survivor of the Sandy Hook murders. tt5278578,Z_7N4TS_AzA,The Wheelers discuss life after their son was taken from them in an horrific event. tt5278578,ayq1fVd6Qhk,Those affected by the massacre speak out against lax gun laws. tt5278578,1YsmGZIZG0U,Nicole Hockley details the trauma of losing a child in such a horrific way. tt5278578,2anI_i9YYf4,"The Hockleys share memories of their son, Dylan, before the tragedy." tt5278578,XocJyNxHsW0,Nicole Hockley shows exactly how close the man who murdered her son lived to her. tt5278578,PzjOxjO_LuI,Nicole Hockley discusses Dylan's life with the media and during a Town Hall. tt2250912,VkldXV8Pgi8,Spider-Man wakes up to find that he's stuck inside a storage vault at Damage Control. tt2250912,umcyzRBeJtE,Spider-Man tries to be intimidating to get info out of Aaron Davis. tt2250912,PCn1uAs_0VQ,"Spider-Man finds himself at his weakest point, trapped beneath rubble as the Vulture escapes." tt2250912,r8-BFx3xFJ4,"A day in the life of Spider-man as he deals with bike thieves, fans and little old ladies." tt2250912,dR3cjXncoSk,"Spider-Man climbs the Washington Monument to save Ned, Liz and his other friends from a falling elevator." tt2250912,sR_tidD4M_8,"In the burning wreckage of a Stark Plane, Spider-Man has his last chance to stop The Vulture." tt2250912,fB5HTcFhCso,"After finding out his date's father is Adrian Toomes, Peter gets a very honest talk from the villain that has figured out he's Spider-Man." tt2250912,ORrQKFliVLM,"While attempting to stop an weapons deal, Spider-Man gets into a fight with The Vulture that nearly destroys a ferry full of people." tt2250912,_sHXbqFJCr0,Spider-Man finally catches up to Toomes and finds he's a little out of his league. tt2250912,tu6FDI4JBDY,"Spider-Man is ambushed by Herman Schultz, the new Shocker." tt3717490,C0vM89y4088,"After a reckless test drive of a Zord by Zack, things come to a head within the team, leading to Billy transforming." tt3717490,wa_9eIwrEK8,The Rangers try to take down Goldar using their Dinozords. tt3717490,opSAGkaqx6Y,Zordon tries to explain to the group that they are supposed to save the world. tt3717490,YtqU_6Imito,The team jumps in their Dinozords and travels to Angel Grove to face Rita. tt3717490,enNm82zd1Ho,The Rangers see what their new Megazord can do in an attempt to defeat Goldar and Rita once and for all. tt3717490,jgk96izcJbw,"After saving Billy, Jason leads the time in morphing for the first time." tt3717490,te2WMrdJ3yQ,Rita captures all the rangers after they try to take her down before they are ready. tt3717490,Kdu22nQNZmQ,The Rangers try to keep Goldar and Rita from getting the Zeo Crystal. tt3717490,jojFdN-oysU,The Rangers discover that their Dinozords can join together to create the all powerful Megazord. tt3717490,V11YeYfaxv0,The Power Rangers take on an army of Rita's rock monsters while she finally creates the giant Goldar. tt4005332,f03hKUGdtzY,A brief examination of the origin of One Direction. tt4005332,06h5HJo7A6I,An examination of America's obsession with Niall Horan over Harry Styles. tt4005332,UwvIz7Vdhn0,"The story of 1D's second single ""Live While We're Young""." tt4005332,Kk3XhT9UJAM,"The story behind 1D's documentary ""This Is Us""." tt4005332,oOhFc0F3jVw,A brief look at Harry's relationship with Taylor Swift. tt3890160,uHltDaQU1uc,"Baby meets Debora but Buddy, hellbent on revenge, stands in their way." tt3890160,6O554p-ovsI,Baby and Debora bond over their mutual love of music. tt3890160,ZFXOR2yoWCg,The crew's meet-up with a gun smuggler goes spectacularly awry. tt3890160,UFo40MSG5Ss,Baby runs from the cops and into Buddy and Darling. tt3890160,276AIPEK_JA,Bats deals out some harsh truths to the crew. tt3890160,iDnE3PV4YNc,Baby goes to Doc for help. tt3890160,HlsvFTNrKK8,Baby and Debora are chased by Buddy. tt3890160,PDnA3LOm-xY,Bats tells the story of the bad luck driver right before they all go over the plan. tt3890160,KVbBkEyaoT8,Griff grills the necessity of Baby on the crew. tt3890160,_oLBVF_VYRM,Baby drives through the streets of Atlanta to get his crew to safety. tt6414866,bkLs-xLbpNY,"Rene spends sometime with the Tuvan people living off the land in Mugur, Siberia." tt6414866,-r_EtRqgj_o,"Rene gets some help from a small village in Africa, incorporating their culture and music into a song." tt6414866,P-M4AnVnnyU,"Rene stops by Mona Lisa Studios in China, a photo studio that lets brides and grooms live out fairy tale weddings for a day." tt6414866,8KuNjb2xEoM,Rene goes to China and decides to fuse hip-hop and Chinese Opera to tell a story. tt6414866,C3lLA69xOc0,"Rene puts together a hard hitting song about war while using people and survivors from Armenia, Georgia and other lands at war." tt6414866,PK14gY9Gn-A,Rene goes back home and puts together a song that celebrates the people and history of Puerto Rico. tt6414866,VB_ZrC1u74w,Rene pulls in help from Lin Manuel Miranda. tt6414866,zm44ZmISCac,"Visiting Armenia, Rene talks to a family that has lived a life under shelling and sacrifice." tt6414866,pmU6-1I7eyQ,Rene Perez recaps his underdog rise to fame with his rap group Calle 13. tt4425200,xSM_nz6gKOI,John Wick tries to silently take out Santino at his coronation. tt4425200,7-TZCEyok_o,John Wick faces off against Ares. tt4425200,Ct-zGV4TgKY,Abram waxes poetic about the brutal efficiency of the legendary John Wick. tt4425200,rsuNowyCF0c,Winston warns Santino of the world of trouble he has started after putting out a contract on John Wick. tt4425200,Pv70ImW-l3s,John Wick face off against Cassian after murdering the man's ward. tt4425200,qIalODmFrZk,John Wick preps for his assignment by finding the most stylish way to kill. tt4425200,CujcdaQpYWE,John Wick and Cassian finish their rivalry on a crowded New York subway. tt4425200,eVJhlVgr9lM,John Wick is betrayed by Ares and tries to survive under the castle. tt4425200,-xZKHX91z9I,John Wick corners Santino at the Continental. tt4425200,0xSSnfRYBQY,John Wick tries to make his escape after assassinating his target. tt6414866,R66bHMRd6L4,Rene puts together a song with some local musicians in Africa. tt3038734,6rvbWWlv_qY,Johnny D. tries to impress on his first date with a model. tt3038734,Kh60xjnuAhA,Johnny D.'s nervousness and lies get the best of him while on a date with a model. tt4935334,TgWu1QcM1Tg,Lucas tries to resuscitate Sadie with help from paramedics over the phone. tt4935334,2dPi-jM7Jzo,Sadie escapes the cult but is struck by a driver not watching the road. tt4935334,Pq9kAmZ3X_k,Lucas pleads his innocence with the demonic paramedics. tt4935334,31ZrzeS_ymg,Danny finds his sister and makes his escape. tt4935334,3uIw6INr36g,A family that recently moved into their home is attacked and tied up. tt4935334,w4GgZsdpMDA,"Jem tries to fight back, but makes the choice to run when faced against the men who murdered her parents." tt4935334,J8hfrE2LBSk,"Jem fights back against the men who murdered her parents, but there is something much worse out there." tt4935334,Wx98L_LssbI,Mitch and Jack can't agree on what to do next as they are chased by monsters. tt4935334,QHcl5XE4XuM,Three friends are invited to dinner by a strange family. tt4935334,P7J3raOVLNU,Sadie watches her friends be indoctrinated into a cult. tt3038734,B493yqCgpZQ,Johnny D. discusses awful dads with Sebastian. tt3038734,516x-cH_Cpk,"Johnny D. confronts his dying, comatose father after losing everything." tt3038734,lUyHKva8Wfg,Johnny D. faces off against Bobby and Mark over proceeds from the night before. tt3038734,cmJRHlOcTVw,Johnny D. lies about his identity in order to get a house full of models to come to his club. tt3038734,285xhqP7D_Q,Johnny D. is introduced to the world of club promoting by veteran promoter Mark. tt3038734,9cJ1ZWXeOXg,Mark tries to sabotage Johnny D.'s big opening. tt3038734,TvxfLhFGRzY,Johnny D. throws a party in a secluded warehouse in order to impress Sebastian and his father. tt3038734,QwjfMOhKcTw,Mark shows Johnny D. the ropes of party promoting. tt4005332,9ZmqIpTPFmM,"The story behind 1Ds single ""The Best Song Ever""." tt4005332,v7Z3aLND9Xg,A look at the 1D fanbase. tt4005332,Fq5yX9ENZh0,The story behind 1D's first single. tt4005332,9F5v795Cfo4,The boys of 1D get their first BRIT Award. tt4005332,FRvhNHgU6fI,A look at how 1D has been making money since being signed. tt5115546,IYHAqyiQ2i4,Ross uses his paintball expertise to help Zak escape the meth makers. tt5115546,PcyonXZoHfQ,The team records a sinister message - or an order for cinnamon. tt5115546,s_B1ul97bfE,"The team searches for Victoria, who has gone missing in the stables." tt5115546,Dv-ibHmFlS8,The Ghost Team discovers a meth lab and real danger beneath the creepy house. tt5115546,qXu7Ts5FWqA,Louis and Ellie discover what is making the strange noises in the house. tt5115546,Ir4wUoK_-c4,The team uses a ouija board to communicate with spirits. tt5115546,vMWCg4TNWIg,The team is disappointed by the lack of ghostly evidence and failed dreams. tt5115546,JKbrP4cjzo8,Victoria pretends to communicate with Mitch's deceased father to save her life. tt5115546,4w6WN2_l0wA,Zak sees a haunting face with a dark message for the team. tt5115546,pwuNGRVWB9w,Ross and Stan go missing as the team searches for Zak. tt5462602,VCLJGenGyB4,Kumail feels he should be at the hospital even though Emily's parents don't want him there. tt5462602,QiK2W8YshS4,Emily comes to New York to reconcile with Kumail. tt5462602,mbRL9NE5NXk,Kumail is shocked when Emily is put into a coma to treat a massive infection. tt5462602,ocqy8r8rDI0,Kumail explains that he can probably never marry Emily because of his family's culture. tt5462602,VpmnPgUwVO8,Beth goes crazy on a heckler at Kumail's show. tt5462602,uJ2RTDbq1IU,Kumail and Emily get to know each other after spending the night together. tt5462602,vrluM6pe89w,Kumail receives some unwanted love advice from Emily's dad. tt5462602,NTTyF1mDtgw,Kumail goes postal on a fast food worker. tt5462602,zsmP1h809F4,Kumail's parents disown him for rejecting their Pakistani traditions. tt5462602,Ik8q8LDqWiE,Kumail tells his family that they cannot disown him. tt6231792,QHjr51lAne4,"Ivan Ramirez goes off-road in Ensenada Baja, California." tt5199588,5rVB1DFakzA,An Introduction to John Florence and the world he inhabits. tt5199588,lQLchoQRlZk,John John arrives home to the north shore of Oahu. tt5199588,Ae3HbC1X-_A,John John goes surfing with his friends in West Australia. tt5199588,mat5twjYjJ8,Memories of John Florence family and his family from his younger days as a surf prodigy. tt5199588,9fHiacvqXLY,John John rides a huge wave while surfing in Hawaii. tt5199588,zY2G4v0b5IU,John John goes surfing with his friends in Rio. tt5199588,ih4MIVjS8yU,John John goes surfing with his friends in South Africa. tt5199588,cscOz4NHIWY,John John goes surfing with his friends in Hawaii before heading off to surf around the world. tt5199588,GwowcP5KIIA,John John goes surfing with his friends somewhere on the continent of Africa. tt5199588,6U61OQAOe84,John John prepares to take on the African coastline. tt5226436,ToI9OHLE068,"As his crew rides through the snowy hills of Japan, Travis stands in awe of the nature surrounding him." tt5226436,uJ_dVRo08Sc,The crew discovers unbelievable amounts of snow in Japan. tt5226436,D8gSV_8abXc,Travis makes his way down a cliff with heavy amounts of sheet ice and is rendered unconscious. tt5226436,2wN8f0ezRS8,Travis explains the nature of his studies and how they apply to his passion for snowboarding. tt5226436,TLOD07LZw90,The crew enjoys a fire festival in between shredding the snowy hills in Japan. tt5226436,fWRkpKq-9f0,Travis explains the ethos of his work while we get a first hand look at what it's like to ride an incredibly steep hill. tt5226436,3N5u8TKtmfk,"In Alaska, Travis must face the rocky cliffs with one man down." tt5226436,64-EdvBcZYg,Travis's crew explains what it's like to work for him. tt5226436,pNRl-3kZPzY,"After being crushed by falling snow, Travis examines what got him to this point." tt5226436,jNNX5a8ogr8,Travis goes back to the simpler peaks after severely injuring himself. tt2538778,ftOTPUX7vss,"Aliya and her lover, Ruslan, nearly escape but are cornered by Mussa." tt2538778,tuh3yZXagYE,An introduction to drug lord Khazar. tt2538778,mPxP11XFKcw,Aliya and Ruslan finally escape the clutches of the drug cartels only to find they may not be as far as they thought. tt2538778,aYNntWtMi24,Mussa and Khazar are pitted against one another by two undercover cops. tt2538778,dyupZilayXY,Aliya reveals the truth of her disappearance to Ruslan. tt2538778,a7dRLlirThw,"Tom, Mike, and Olga meet up to exchange money for a blood diamond only to get attacked by women with machine guns." tt2538778,0mRRULBvuj0,A boat keeper defends himself against a small army of mercenaries working for a drug cartel. tt2538778,tStZuBeyeok,Bulo faces off against a rival gang leader. tt2538778,JtgnLYdR2ec,Aliya and Ruslan are chased by the drug cartels looking for stolen money. tt2538778,mMG-Op_PPEE,Aliya is turned into a lethal weapon after being kidnapped by a drug kingpin. tt4698584,oUXKSovzDMw,Óscar interrogates Delia and discovers he has been two steps behind his prey the entire time. tt4698584,iQrYqaPeMlc,Óscar narrowly misses catching Pablo. tt4698584,mu9cObUl8Gg,Óscar interviews a prostitute hoping to finding information about Neruda's whereabouts. tt4698584,UIKJTZC53hY,Pablo finds the dying Óscar and sends him a fond farewell. tt4698584,PDVyr--ODQs,Pablo is given a lesson in modesty by his bodyguard. tt4698584,E-gwIn1O1pE,"Neruda attends a local brothel, unaware Óscar is right behind him." tt4698584,2r_EHD8QVYg,Pablo is arrested as he is crossing the Andes. tt4698584,oeKyva3fU1c,Neruda is chastised by a member of his political party. tt4698584,3oQd25IcII8,Óscar finds the wife Pablo abandoned in the hopes of tarnishing the man's reputation in public. tt4698584,hgQC-VGKUHo,Óscar's ploy to tarnish Naruda's reputation backfires spectacularly. tt4939066,0fAHVLBuwVU,Joe and his group gets raked over the coals by their client for their offensive voice response system. tt4939066,Ro4xPHjRH8k,The real Emily mocks her fake Emily voice response at an improv show. tt4939066,Ty0O5WKbLkU,Gregg sees that Joe is losing his grasp on reality. tt4939066,8rSdR6dU7KA,Tensions rise when Joe gets his wife to be the new voice of their product. tt4939066,Kmnf2USgtiA,Joe has a severe panic attack and turns to the fake Emily for comfort. tt4939066,wPw9GesZAcw,Emily chooses to give Joe a second chance. tt4939066,Se3ZAXB8sU4,Emily helps Joe's mom overcome her fear of needles so she can get better. tt4939066,ABYeVd_JWss,Joe faces his fear and goes on stage at the improv show to win Emily back. tt4939066,9DmxaUyjKTk,Emily is tired of having Joe listen to her conversations for his work. tt4939066,DDaR9vzYJWA,Emily is jealous of Joe's connection to the cyber version of herself. tt2989524,8PB5sU_QcUc,"Carrie's father, Mr. Pilby pays a visit to the man who broke his daughter's heart." tt2989524,YzCruCXU8Xc,Carrie grills her psychiatrist on his own ethical and moral conundrums. tt2989524,77DXn43fhVw,Carrie remembers the exact moment her relationship with sex became sour- the night she slept with her English professor. tt2989524,TYCfoxmY_vg,Carrie goes to hook-up with Matt but can't stop thinking about his fianceé. tt2989524,S_l6py_n6RM,Carrie finishes off her to-do list by inviting her neighbor Cy over for New Year's Eve. tt2989524,nqJIAz0C5Ig,Carrie has a surprisingly enlightening conversation with her neighbor Cy. tt2989524,M6W-zjN_LYQ,Carrie sets out to trap a cheater. tt2989524,BvS7NWvYZb0,Carrie meets and falls in love with her English professor. tt2989524,t9SNzY1Hq1k,Carrie goes out to see a show with her new work friend Tara. tt2989524,0qzhcuRwBnY,Carrie has an awkward run-in at a café. tt3717316,7tb3_GWTIaU,"At the end of his rope, Ashley is saved from killing himself by a dear friend." tt3717316,oKW6UxOdICg,Jeremy desperately tries to save his grandfather from dying. tt3717316,lKzUGYETlU4,"Ashley Douglas and his new friend, Jeremy, go to dispose of his mother's refrigerator and run into his ex-girlfriend's new man." tt3717316,7jXZpvSkCaM,Ashley asks Jeremy to show him what the doctors are doing to him. tt3717316,-LfB7USrdis,Ashley is home from prison and immediately goes to visit his ex-girlfriend Linda. tt3717316,7n9xJpld-0s,Jeremy participates in an experimental treatment for his condition. tt3717316,ZnxMS3Nf6Ws,Ashley's world begins to crumble after a series of half-bred decisions. tt3717316,ZeuUMdNQTHQ,Ashley takes Jeremy on a journey to find some cash. tt3717316,kHAHQMb4Lmc,Ashley and Jeremy dig for a box Ashley hid before his time in prison. tt3717316,97E7Kft_bno,Ashley's last ploy to get back the love of his life has a soberingly unexpected result. tt5072406,9hNNrKNPGVo,Hélène breaks into the home of the people she suspects may have killed her child. tt5072406,ermD7PGA3Do,"Hélène finds Michel, the owner of the car that killed her son, and tests his sensibilities." tt5072406,aiiJ0fBFjCQ,Hélène investigates the daily life of the man who may have killer her son. tt5072406,24B-_HU7NLs,Hélène has dinner with her recently separated husband Vincent. tt5072406,Zdv1_Iimmgg,Hélène's second drive with Michel is interrupted by an unexpected sexual advance. tt5072406,tm_W36kWahM,"Hélène corners Marlène, believing the woman was involved in her son's death." tt3911554,g_C56llGC1E,Peelander Red contemplates life after the band. tt3911554,4tMdFDBXDpk,Kengo Hioki expresses his displeasure at his best friend and former bandmate Kotaro Tsukada. tt3911554,WShQx7lNPi4,A look at the timeline of Japanese punk rock band Peelander-Z. tt3911554,rZyjko9lXo0,Bandleader Kengo Hioki talks about what brought him to Peelander-Z. tt3911554,HCRagorblVI,Kotaro Tsukada plays his final performance as Peelander Red. tt7456468,aGE--b9ilhk,Julia watches as Tzanko unwittingly unravels a conspiracy against her ministry. tt7456468,7SNohNGz_f0,Tzanko is honored by the Transportation Minister for returning the money he found and they present him with a reward - a new watch. tt7456468,wz0UlSqctTI,Tzanko struggles through an interview after turning over millions of dollars to the government. tt7456468,97gMDmQV_es,"After being forced into repudiate the truth, Tzanko must publicly broadcast an apology to the government." tt7456468,nvCEzZ3P_x8,Julia discovers that her plot against Tzanko may have resulted in his death. tt7456468,KS1iOmeMGEU,"While trying to get his watch back, Tzanko accidentally reveals a conspiracy to a major journalist." tt5022872,gXVvoSa1xBg,Dana takes Naama to her first gay bar in Tel Aviv. tt5186236,4iLKU2WRo4k,Wladyslaw Strzeminski destroys a political banner blocking his light. tt5022872,KW7bMwCb2_4,Naama asks Dana to fully commit to her. tt5022872,JdWS7JkUno8,"Naama and her family visit her sister, Liora, after she went AWOL from the Israeli Defense Forces." tt5022872,o71CfblYCqI,Naama shares her first intimate moment with another girl. tt5022872,dIx1J8hHVkw,Gidon grills his missing daughter's friends in order to find her whereabouts. tt5022872,ArnlIuuyPJ0,Naama parties with her friends and meets the new girl at school. tt5022872,rHYsSCKGZGo,Naama fights heartbreak after her girlfriend ditches her for another girl. tt5022872,fZMKMakjV_A,Naama and Dana discuss their obligation to freeing the attractive girls at their school. tt5186236,7eYTzvoxmk4,"Wladyslaw Strzeminski discusses the new political landscape they find themselves in with his friend, the poet Julian Przybos." tt5186236,_sMqmGJObDU,Wladyslaw Strzeminski teaches lessons to his students after being fired from the university for his objection to the government's art sanctions. tt5186236,inMPeTx6hoA,Hania rushes to class in the mountains to meet professor Wladyslaw Strzeminski. tt5186236,QHTbbfdmYuc,Wladyslaw Strzeminski finds himself losing another job at the hands of the city government. tt5186236,YDBqQMQB_ls,A group of government thugs disrupt and destroy an art gallery featuring the work of the students of Wladyslaw Strzeminski. tt5186236,pUtBYdlwUNA,Wladyslaw Strzeminski walks in to stop the city government from censoring another one of his art pieces. tt5186236,mymHgUYBTfk,Wladyslaw Strzeminski is saddened to discover his student and transcriber Hania has been in love with him since the day they met. tt5120042,hfXW-z1-aUY,Bobby Rush plays a juke joint outside of Louisiana. tt5120042,qlk05SwGu10,Blues artist Carol Fran tells the story of her hit 'Emmitt Lee'. tt5120042,lFzZCgFxUSc,Lil' Buck Senegal shows the feeling that moves him and guides the way he plays the blues. tt5120042,WDrQaK1i_9U,Bobby Rush and Duck Holmes discuss the racism they experienced performing in the Chicago suburbs. tt5120042,kJg9uBKvDZ4,Lazy Lester explains the difference between White Boy Blues and Black Boy Blues. tt5120042,Qx1wXZHymV8,R.L. Boyce plays the blues at a fish fry in south Louisiana. tt5120042,fhCVsKgC12w,Duck Holmes discusses the old days of the blues. tt5120042,636QHxJvvjc,Bobby Rush hits the stage again after decades off the road. tt6231792,MsUXCqHc8xE,Toby Price talks about the almost life ending injury that he survived and his love of racing through Australia. tt6231792,gw4boF1v2YI,"Brian Deegan talks about his young son, Haiden, getting into motocross." tt6231792,0xHPBlFPCwo,"Josh Hill, Bilko, Harry Bink and Axell Hodges take their bikes to the St. Anthony Sand Dunes in Idaho." tt6231792,o00oxyBzsb4,"Tyler Bereman, Axell Hodges and Josh Hill all spend some time riding on the tracks of California." tt6231792,ttjmXS4de4Y,Tom Parsons and Kris Foster take a few rides through some vineyards. tt6231792,VD-_YgrNOk4,Dean Wilson has some fun at Florida Tracks and Trails. tt6231792,E6T4nHj8afI,Tim Gajser discusses growing up and getting into Motocross while living in Slovenia. tt6231792,Q2P2WsgH6mQ,"Brian Deegan's whole family gets in on the world of Motocross, including his sons Haiden and Hudson." tt6231792,T6P6Jyhmj6E,Reagan Sieg talks about adapting to snow and ice as he rides around Grizzly Lake in British Columbia. tt4666726,GGK2S2wy9sA,Christine finds out that the owner of their station is visiting. tt4666726,TgfJD9geSac,Christine unleashes all of her frustration on her mother Peg. tt4666726,jakEl-SL35c,"Christine tries to push a new idea to Michael, but only finds disappointment." tt4666726,31XcssmnGvM,Christine is taken on a date by George but is disappointed to discover things were not what she believed. tt4666726,kidICVXLnRY,Christine tries to get advice from Michael on how she can get a promotion. tt4666726,NXedF2XcFkA,Christine gets a break on a local news story. tt4666726,MX7c3F1q8UQ,Christine has a fight with her mother Peg after a bad day at work. tt4666726,kNAO6eHuCjY,"George tries to connect with Christine, but is met with apprehension." tt4666726,poVn84doiN8,"Christine attends an experimental, New Age therapy session." tt4666726,5YEw7F6ri_0,Christine argues with her boss about the news station's new direction. tt4799050,wTLo8CdhxGs,The girls do a dance at the club that they perfected in college. tt4799050,s9TKR7rSFfA,"The girls dump the body in the ocean, but Pippa flies off the jet ski." tt4799050,c0XTkj3PIWg,Blair is forced to seduce the neighbors in order to get their security camera tape. tt4799050,Fr6fIMIc_Jo,Pippa shares her original song about Jess's bachelorette party. tt4799050,05foBuX_brU,"When Pippa realizes that the cops are actually criminals, she uses a code word to alert Blair." tt4799050,5NTDlhH174M,The girls try to hide the body from the incredibly horny neighbors. tt4799050,fEwSNiZ3zn4,Alice convinces the girls to do a special picture pose. tt4799050,ra9UQb-OVqQ,The girls freak out when their stripper dies and they have to get rid of the pizza guy. tt4799050,OnJAp2emJ4U,The girls have a hard time hiding the dead stripper in a glass house. tt4799050,SwOfGb9QwTc,The girls convince Jess to partake of some cocaine for her bachelorette weekend. tt2763304,_yxKJaVk4kI,"Renton meets his former girlfriend Diane, who is now a successful lawyer." tt2763304,N35FsMxEmSc,Renton and Simon realize that Begbie has set a trap to get revenge on Renton. tt2763304,3x0UxzeZBso,Begbie exacts his revenge on Renton. tt2763304,I_X6zWElJdw,Renton takes Spud on a run and advises him on his drug addiction. tt2763304,2EQCpQbUrzI,Renton and Simon improvise a Protestant bar song in order to escape with stolen credit cards. tt2763304,lQhQeus0ItY,Begbie is supremely disappointed that his grown son does not want to go into crime like his Dad. tt2763304,eKCkxzJFP5M,The guys go to the country where they remember their friend Tommy and past mistakes. tt2763304,cvNjYmDiV0Y,Renton returns home and saves Spud from killing himself. tt2763304,fBNzgfFkvEo,A very angry Begbie seeks revenge on Renton after 20 years. tt2763304,ahxDiseuAak,"Renton rants to Veronika about what ""Choose Life"" means." tt3121332,F6dN5Kq5NZ8,"After a bad day, Freddy is followed and harassed by The Bishop." tt3121332,JIkmOqrneTU,Polly gives Freddy the bad news that his sperm count is too low to conceive a child. tt3121332,9SYhu10qJ-o,Freddy and Mo murder The Bishop and the group tries to figure out what to do with the body. tt3121332,aiWJhEMskMU,"Polly and Freddy meet The Bishop, a mentally ill resident of their Brooklyn neighborhood." tt3121332,YqRwOf0XHUg,Freddy leads a neighborhood revolt against The Bishop. tt3121332,yQ7JLXkHq2M,Freddy and Polly run into issues with Mo's family. tt3121332,5W60oPaZOIc,Freddy looks for a solution after seriously injuring The Bishop. tt3121332,EntbO16GpNA,Polly gets harassed by The Bishop. tt3121332,w7DIFgkIh4o,"After celebrating Mo's birthday, Freddy decides to play a prank on their neighbor." tt3121332,VDGE0RPwLH4,"Freddy, Polly, and Mo work to conceive their child the night the decision is made to have it." tt3416742,DUYaGj7RBfk,Nick brings a surprise to the flat. tt3416742,Iae-A9s8Nk4,The flatmates fall in love with Nick's friend Stu. tt3416742,cWKL1gFCS54,The undead flatmates have a house meeting. tt3416742,CaIXZsmUl4I,Vlad comes to the rescue for Stu. tt3416742,qL_XE00jzXM,The cops investigate the house after a fight between the roommates. tt3416742,e1BdvP4zenI,The flatmates rush to get Stu out of the party and away from the creatures attempting to eat him. tt3416742,Yr3YqpkoN_o,The flatmates take Nick out for a night on the town but are worried when he can't stop boasting about his recently deceased status. tt3416742,qQJmr9kI9uw,The flatmates come across Anton and his pack as they prepare for transformation. tt3416742,RAqYpOzllmM,The flatmates have two victims brought home by Jackie. tt3416742,rF9Z6Hvmf5M,The flatmates comes across Anton and his pack. tt2592614,FRSfDQyoav8,Alice goes after Dr. Isaacs but runs into his right-hand Commander Chu. tt2592614,ILwJA2feDRs,Alice runs into a trap while on route to Raccoon City. tt2592614,z2PH2-yl5Ho,Alice and Claire help defend the last human settlement in Raccoon City. tt2592614,RDBywHkU6Wg,The survivors run into a major obstacle while infiltrating the Hive. tt2592614,eGLC0vhemeA,Alice starts losing her fight against Dr. Isaacs in the laser hallway. tt2592614,O7z6rV8Gdbs,Alice rushes toward an escape after getting captured by Dr. Isaacs. tt2592614,0mPTGVoG248,Alice faces off against a giant monster after surviving an attack from Wesker. tt2592614,elcYyXvJF7U,Dr. Isaacs corners Alice into a familiar trap. tt2592614,EXUzqVIocHI,Dr. Isaacs launches a major attack against Alice and the other survivors. tt2592614,OpAEdqIIWpY,Alice and Razor face off against a monster after falling into one of Wesker's traps. tt5442430,KSZN8iThGZ8,David comes up with one last desperate plan to keep the alien from reaching Earth. tt5442430,XaI13YBdi_M,Miranda and David track the alien as it hunts for blood. tt5442430,r3fnCEjvPCQ,Hugh shocks the alien organism and it takes hold of his hand with deadly strength. tt5442430,iwGU5hY6stw,Miranda takes a lifeboat bound for Earth while David pilots his towards deep space with the creature aboard. tt5442430,iPgcg3DVoUY,"A rescue ship approaches the station, but David soon realizes that rescue is not intended." tt5442430,m-PsCZ_57MY,"Commander Golovkina is attacked by the alien, dubbed ""Calvin"", as she is doing a space walk." tt5442430,zfUzaYV1xfE,"The crew tries to revive Hugh, but Calvin appears, bigger than ever." tt5442430,V022pMeqRjA,"A lifeboat splashes down on Earth, but whose is it, Miranda's or David's ?" tt5442430,ViF6HrzoOj4,"David tries to save Kat, but she sacrifices herself to save the crew from the alien." tt5442430,_SdYxgbXnHs,Scientist Hugh Derry discovers extraterrestrial life in a soil sample from Mars. tt4698684,32QcvEuJYFA,Ricky and Hec mourn the loss of Hec's wife. tt4698684,QfATkY6jMtM,Hec and Ricky run into a trio of idiot hunters. tt4698684,av2VWuMUFCM,Hec and Ricky come across a man named Psycho Sam while running away from the authorities. tt4698684,_s3bHABazDA,Bella and Hec celebrate Ricky's birthday. tt4698684,jirWCRbgK8E,Ricky fails to warn Hec the police are coming and finds the compound they were hiding in being raided by police. tt4698684,Tr_OzL7mupk,Ricky teases Hec after finding out that he can't read. tt4698684,8AXEzcuMQp4,Ricky runs into Kahu and realizes he and his uncle are famous. tt4698684,WyBvHGU-djg,Ricky and Hec are cornered by social worker Paula and a full police force. tt4698684,qTANCNgUW2Q,Ricky and Hec are on a high speed getaway from Paula across the New Zealand bush. tt4698684,ie6rKW_Giqc,Ricky and Hec ask for Psycho Sam's help in escaping the police. tt3917210,5UOJUZhe85M,The Suskinds discover that Disney animated movies help Owen communicate with them. tt3917210,fpOQzt9NtX4,Ron Suskind describes the first conversation he had with Owen using a Disney character. tt3917210,BNgJCuwM7CQ,Owen moves into his own apartment for the first time away from his parents. tt3917210,xchco5BLMQU,Owen deals with the sadness after his girlfriend breaks up with him. tt3917210,7oOKwZlj4VE,Owen loves his girlfriend Emily. tt3917210,9WKilpdUoWQ,Owen describes why he loves the Disney sidekicks. tt3917210,9UslcBJkmyc,Ron and Cornelia Suskind describe how it felt when their 3-year-old son was diagnosed with autism. tt3917210,0vI1R3VEREQ,Owen meets his hero Gilbert Gottfried at a Disney Club script reading of Aladdin. tt3917210,Mf0pWnkN_vc,Owen gives a speech in France about his life with autism. tt3917210,wZj44nizNJ0,"Despite his break-up, Owen moves forward with cheer and determination." tt2398241,ccH057kbWTg,"The Smurfs gather to lay Smurfette to rest after she had turned back into clay, giving her life to save them." tt2398241,WG_LG1CfsCE,"After Smurfette gets captured by Gargamel and gives up her evidence of new Smurfs, Hefty leads his friends on a rescue mission." tt2398241,-U9v7Nz6hOs,"Smurfette, Brainy, Clumsy and Hefty all go surfing through the trees but end up getting noticed by Gargamel." tt4160708,xmzkZ12GMAs,Rocky escapes The Blind Man only to be cornered by his dog. tt4160708,pZRDwBXv7T0,Rocky and Alex are chased through the basement in the dark by The Blind Man. tt4160708,uUEpwPiiGco,Rocky is finally able to fight back against The Blind Man using his own security system. tt4160708,54x4n4FlV4U,Rocky discovers what The Blind Man was doing in his basement. tt4160708,PB-KpT4zhWo,Three thieves are caught mid-burglary by the homeowner - a blind man with skills they hadn't seen coming. tt4160708,gsG8sEK2md8,Rocky and Alex stumble across a secret hidden in The Blind Man's basement. tt4160708,Vfi1V_SL9H8,Alex fights for his life as The Blind Man hunts him down. tt4160708,yk73thpx_B8,Rocky and Alex look for a way to escape the grasp The Blind Man. tt4160708,QO0gZrQw9KU,The Blind Man makes a forceful exchange with Rocky after his original captive is killed. tt4160708,8le-4mOgJco,Rocky and Alex attempt to help a kidnapped girl escape The Blind Man. tt2398241,pmqBmTWq420,Gargamel discovers the Smurfy Grove and goes about capturing everybody except for Smurfette. tt2398241,VGhUlUHKv7s,"After a brave rescue, Smurfette Brainy, Clumsy and Hefty all must escape Gargamel and his Smurf hungry pets." tt2398241,9IYFHAnqOKM,Smurfette and her friends discover the lost tribe of Smurfs and find they are all female. tt2398241,FjT4_Bi-F0I,Papa Smurf explains the story of Smurfette and her lack of place in the village. tt2398241,2rFXR3_DeMU,The citizens of Smurfy Grove welcome Smurfette with open arms. tt2398241,dcCsAQTY9lQ,Smurf Village and Smurfy Grove both celebrate the return of Smurfette and their newfound friendship. tt2398241,9MhRoo23Wak,"With all the Smurfs captured and being drained of magic by Gargamel, Smurfette arrives just in time with a plan." tt0079714,Qft-ZvHFfmE,"When Mike travels through the portal and sees the other world, he figures out what’s going on." tt0079714,H_xWhF2sSb0,"Mike visits a fortuneteller, who offers some interesting advice when Michael inquires about the Tall Man." tt0079714,QjEfREkwJe0,"When Mike catches a monster, he and Jody attempt to kill it in the garbage disposal." tt0079714,zpSLlRt7KGE,Mike and Jody draw the Tall Man into a trap and bury him alive. tt0079714,NONRLC7wAlM,"Mike encounters the mysterious Tall Man, who makes the act of enjoying a cool cool breeze from the back of an ice-cream truck irrefutably creepy." tt0079714,9d30_Y2bF64,"The Caretaker catches Mike, but gets drilled to death by the silver death orb before Mike makes an escape from The Tall Man" tt0079714,y04Q-2-ut0I,"Our heroes Reggie and Jody rock out on Jody’s front porch, because they are hot as love." tt0079714,bm3QkHapg3Q,"After waking up, positive that everything was just a dream, Mike gets pulled through his bedroom mirror by The Tall Man's minions." tt0079714,E3lprGIkEic,"Before Mike can get away, the Tall Man's minions attack the car and throw him out the back window onto the street." tt0079714,Pj5ds2Q_tJg,"Mike and Jody are chased by a driverless hearse, but Jody stops it with a shotgun blast to the engine." tt0079714,07KUTJpbNAQ,Jody squares off with an evil demon dwarf while investigating the morgue. tt0101625,xgkspBFxLi4,Inspector Bonnard identifies the “who really dunnit” in the Madame Van Dougan murder case. tt0101625,fCNsIYsWjXo,Phoebe sees a lost dog ad and finds Julian Peters with the missing Dachshund. tt0101625,3WfRT1c7Tz0,"Neil Schwary and Marilyn Schwary try to dispose of the evidence, “the suitcase,” at the train station but it keeps coming back." tt0101625,EYKOpaD_s1U,"Marilyn Schwary shows up to the casino in her designer gown to surprise Neil Schwary. Instead, she gets hit on by a swindler and rejected by Neil because she’s jinxing him." tt0101625,wn-e7FlYRJU,Neil Schwary and Marilyn Schwary are taken into custody and try to explain the dead body in their suitcase. tt0101625,I_TkNxwnJiY,Julian Peters gets held up by the police and attempts to lie to save his life. tt0101625,fxBoqr7OicA,Phoebe tries to convince the police that she is the owner of the dachshund and her fake pet name for him proves unsuccessful. tt0101625,zmdsY7PIJDg,Inspector Bonnard questions Augie Morosco and his ties to the others involved in the investigation. tt0101625,6ZgWwouKUXg,Augie Morosco introduces himself to Neil and Marilyn and offers his 2 cents on the perils of gambling. tt0101625,VCvOWhT1TiA,"Augie is convinced by Neil to continue gambling, but loses his wife in the process." tt0101625,cGd2BBjzb0Y,Neil Schwary exchanges all of his savings for markers at the casino because he feels embarrassed about his lack of wealth. tt0406375,E2WZXK79_d0,The Astronaut helps Walter and Danny get rid of the Zorgons. tt0406375,WM3TedgbwIc,Walter and Danny accidentally put their sister Lisa into the game. tt0406375,Ufv54teYXAw,Walter and Danny get a lot more than they asked for once they start playing the game. tt0406375,cPfMxQLlirI,Walter and Danny are cornered by Zorgons and the Robot they previously thought was dead. tt0406375,UinILaRACDA,Walter makes a wish on a shooting star. tt0406375,_dEEXgs7T1k,Danny sneaks aboard the Zorgon ship to steal back Zathura. tt0406375,L5Jg3OVjPoo,"Walter catches Danny cheating, endangering the entire house." tt0406375,9hMrzEWpZM0,Walter and Danny unwillingly rescue The Astronaut. tt0079073,FQwv6AGpdus,Prof. Van Helsing and Jonathan Harker find Dracula and Lucy resting in the cargo hold of a ship. tt0079073,CtDBcCXiE3M,"When Prof. Van Helsing and Jonathan Harker go to Dracula's castle to kill him, they find they've underestimated his power." tt0079073,cXm_h4Zdwpc,Count Dracula seduces Lucy Seward when she visits his castle. tt0079073,grdxSWSHJaY,"After discovering that Mina's grave is empty, Prof. Van Helsing and Dr. Jack Seward go into the mines looking for her." tt0079073,w8mbmSijd4o,Count Dracula of Transylvania arrives at the Seward household and is quickly taken by Mina Van Helsing and Lucy Seward. tt0079073,NyamI2ALbIA,Count Dracula comes to Lucy Seward's bedroom to make love to her and have her drink his blood. tt0079073,15WevUMiJI8,Mina Van Helsing is visited by Dracula in the dead of night. tt0079073,7rJZx_l_h1w,Prof. Van Helsing confronts Count Dracula after finding out his daughter was turned to a vampire. tt0079073,0NXkZZqCGjs,"On a stormy night, a ship named the Demeter hastily tries to throw one of its passengers overboard, one named Count Dracula." tt0079073,uPS3iKFXKR4,Jonathan Harker visits a confined Lucy unaware that she's become a vampire. tt2345759,bx50ueZJgns,"Dr. Jekyll turns into Eddie Hyde, just as the mummy is trying to escape the facility." tt2345759,KsmXx3hB968,"The mummy's undead minions attack Nick, causing him to crash the ambulance." tt2345759,RyZ-saoiIzY,The mummy escapes and wreaks destruction upon London. tt2345759,25_58Uww0bc,"Nick meets Dr. Henry Jekyll who leads Prodigium, a group looking to contain and study evil." tt2345759,j8nLPMys3b8,Nick sacrifices himself to gain power over life and death. tt2345759,UJ_zLBr1NxE,"Strange events on the transport plane cause it to crash, with Nick on it." tt2345759,XTCEl_MFfHA,The mummy commands the dead under London to arise and fight for her. tt2345759,AV3CrPe-1q0,Nick and Jenny are attacked by the mummy and her minions underwater. tt2345759,7dtQiqaxf_o,Nick comes face to face with Ahmanet and tries to battle her and her minions. tt2345759,1Ltz-vQPqgo,Nick miraculously survives the plane crash and wakes up in the morgue. tt2639254,Qch6oK4qX2k,Sabine finally unveils the fountain she has created for King Louis XIV. tt2639254,J5KvaQzBDoc,"André and his wife, Madame Le Notre, discuss their deterioriating marriage." tt2639254,xd9K2o_ZDdU,Sabine agonizes over the tragic death of her husband and daughter. tt2639254,CpAVT7Y3vpM,"Sabine mistakes King Louis XIV for a lowly gardener, which is exactly what he needs in a time of despair." tt2639254,_1fHeesAez0,Sabine presents a rose to King Louis XIV to convince him to allow progress to continue on the garden she is designing. tt2639254,MdfwpCH1Ksk,Sabine speaks with the women at court about the death's that have afflicted their families. tt2639254,hdnrorjl0WM,Sabine interviews with André Le Notre for a chance to build a garden for King Louis XIV. tt2639254,TPDKmRQddq0,"After a devious plot by Madame Le Notre, Sabine desperately tries to save her garden from being ruined by a flood." tt2639254,Me3eSvA2K9k,André comes to Sabine in the middle of the night to discuss her plans for the gardens at Versailles. tt2639254,ZKfVrsrm_ac,"Sabine is introduced to His Highness Philippe, Duc d'Orleans and makes a lasting impression." tt0024184,yZ773W4UICY,The Invisible Man keeps his promise to Kemp and kills him at ten o'clock. tt0024184,KXMOURHEMpY,The Invisibile Man removes his disguise and shows the villagers that he is invisible. tt0024184,bD8jQGwyuBU,The Invisible Man gets fed up with the villagers and decides to go on a spooky spree to show his power. tt0024184,vsQak7aKH30,"Flora tries to talk some sense into Griffin, but his madness, and the oncoming police assault pull them apart." tt0024184,rW1_EfZ2pWU,"Griffin explains to Kemp how he became The Invisible Man, and makes him his new visible partner." tt0024184,hvuQCnADQRM,The Invisible Man goes on a rampage of manipulation and murder to throw the country into chaos. tt0024184,r7aXjBDUk8w,The police officers trap The Invisible Man inside a barn on a snowy night. tt0024184,ZmKECCbMc88,"After being betrayed by Kemp, The Invisible Man eludes the police surrounding the house." tt0024184,9D5WsQNIAcE,"As death approaches, The Invisible Man slowly becomes visible again." tt0024184,zZcYZmsSGs0,"While retrieving his books at the inn, The Invisible Man kills a police inspector who believes the whole thing to be a giant hoax." tt0034398,I-93Ijkhy4I,"While everyone is hunting for the Wolf Man, Gwen runs into the fog looking for Larry." tt0034398,GYexCnV6cLY,Larry Talbot tries to convince his skeptical father that he's a werewolf. tt0034398,8CouO6czPic,"The Wolf Man finds himself caught in a bear trap, but the gypsy named Maleva finds him before the hunters." tt0034398,EqNTVkdsTL0,Larry Talbot runs into Gwen as the gypsy camp packs up from fear of werewolf. tt0034398,VAnkBQ7eWyc,Larry Talbot turns into a werewolf and attacks a gravedigger. tt0034398,R1hh6MVyQYg,Larry Talbot spots a beautiful girl getting ready in a window and decides to pay her a visit. tt0034398,4mMrCXPCZAA,Larry Talbot comes across a gypsy named Maleva who explains that he was bitten by a werewolf. tt0034398,F1nejgJdusQ,"When Larry Talbot takes Gwen to a gypsy fortune teller, her friend is attacked by a wolf." tt0034398,uqS2-v7iZr8,Sir John Talbot attacks and kills the Wolf Man only to discover it's his son. tt0034398,KFwzRnTqgDU,"After realizing he's a werewolf, Larry Talbot visits Gwen with a dark confession." tt0355702,T_pKvfMT5ck,The Z-Boys pioneer a new form of skateboarding - in pools. tt0355702,8RuMflmyF9k,"Jay and Stacy compete at the skateboarding competition, but Tony is knocked out by a competitor." tt0355702,ByRXX8KHS5o,Skip runs into commitment problems with his Zephyr team and employees. tt0355702,XwFR9NZfhUI,Skip Engblom introduces the boys to urethane wheels which allow them to take skateboarding to the next level. tt0355702,jR_kxdUm1bc,"Stacy and Tony experience major success, while Jay skates solely for love of the sport." tt0355702,Y8eSWYGZXe0,The Z-Boys finally get to skate Sid's pool. tt0355702,NfDBhc__ntM,The Z-Boys disagree about bailing on Skip's team and taking other offers. tt0355702,8e5fzbsfGCI,"Skip tries to convince Stacy to stay with him, but realizes all the boys have passed him by." tt0355702,XQEr5FlhFDc,Skip and Jay reconcile in the ashes of the Pacific Ocean Park where they used to surf. tt0355702,3ghKgAcPBC8,Jay breaks the news to Stacy that he's not on the skateboard team. tt1374989,Zxlo0xmD51Y,Elizabeth and her sisters see right through a trap set by a zombie. tt1374989,iRdSH-u1wWI,Elizabeth rides in and saves Darcy from the zombie Wickham. tt1374989,aYSdnLgl-FQ,Elizabeth is confronted by angry Lady Catherine and her henchman. tt1374989,NlPC4ag5S54,Elizabeth and Jane save Bingley and Darcy from zombies after the battle. tt1374989,abXL2HrEjyE,Jane is attacked by a zombie on her way through the country. tt1374989,xs8jGY2dnCg,Darcy proposes unflatteringly and Elizabeth resists most forcefully. tt1374989,BKYpzJIAkeo,Darcy apologizes to Elizabeth and declares his love for her. tt1374989,BSQeVY2fdL8,The Bennett sisters show off their zombie fighting skills during an attack. tt1374989,uFTd09NNJzo,"When the bridge is blown up, Elizabeth confesses her heart to Darcy, who she believes to be dead." tt1374989,ZCTqZhZRYl0,Darcy asks Elizabeth for her hand in marriage and she accepts. tt2513074,AvDUQXknug8,Billy and Faison meet one last time before he makes his decision to go back to Iraq with Bravo. tt2513074,5wErjt1ukFE,Dime and Sgt. Shroom punish Billy after he crashes a humvee. tt2513074,JIRijCir934,Bravo Squad engages hostiles in an abandoned Iraqi village. tt2513074,0-Whu5Hlbz8,Sgt. Shroom offers his squad assurance and emotion before a big firefight. tt2513074,5JCbdlUra28,Billy teases his sister after deciding he will go back to Iraq against her wishes. tt2513074,1vhyMvNS3Ek,Bravo Squad runs into trouble onstage after performing with Destiny's Child at a halftime show. tt2513074,MhS1b56Koxc,Billy Lynn talks war and sports with a few football players. tt2513074,KNwhBAOLCXQ,Billy remembers his brotherhood with Breem and Bravo Squad. tt2513074,giajSDY8kCs,Billy accidentally catches the eye of a cheerleader and the two connect backstage. tt2513074,kwvSRZG285g,Billy falls in love during a press conference in Dallas. tt3717252,B46nugc-4c4,Lena explains to Selene the ancient and spiritual rituals that the Nordic Coven practices. tt3717252,SwarL21fqj0,David and Thomas risk their lives getting a weak Selene out of the fortress of vampires. tt3717252,kqFgnN10khg,"While training Death Dealers, Selene is challenged to a sparring match by Varga which ends in a brutal betrayal." tt3717252,rM5Bg89j9qo,Selene finally defeats Marius and ends the battle with a quick but brutal move. tt3717252,DSO1F6sM63s,Selene is on the run from vampires and werewolves alike. tt3717252,6vAYIYN2Iac,Selene confronts lycan leader Marius as David gets into a sword fight with super-powered Semira. tt3717252,j0IXQIUh3jQ,"Marius leads the heavily armed lycans in a siege on the vampires Eastern Coven's castle, where David leads a defense." tt3717252,y9NhqnuoSAs,Lycans attack the Nordic Coven where Selene and David are hiding. tt3717252,dQNrOoc3NTA,Lena of the Nordic Coven gives Selene a touching funeral with David's help as Semira only grows more powerful with Selene's blood. tt3717252,Sqnrzd0HCRY,"As the battle between lycans and vampires gets more vicious, Selene returns, back from the dead and more deadly than ever." tt1355644,aJZL2uoPRZg,Jim gets to know lovely Aurora while feeling guilty for waking her up. tt1355644,xQyVBxABGxw,Jim asks Arthur for some bartender wisdom to cheer him up. tt1355644,qeaiVveZWD8,Aurora almost dies when the gravity on the ship fails while she is swimming. tt1355644,0LArIo7OUJ8,Aurora launches into space to save Jim who is floating free. tt1355644,BH-EprDz8wI,Jim shows Aurora his view of the galaxy. tt1355644,21aXGNHDBWQ,Aurora learns that Jim was the reason she was taken out of hibernation. tt1355644,BJWR0io_SuE,"Jim meets Aurora, the passenger that he awakened out of hibernation." tt1355644,FCJSJ2xtky8,Jim tries to apologize to Aurora for what he did. tt1355644,CiqtsKGMblU,Jim sacrifices his safety to help cool the reactor on the ship. tt1355644,6-IGOKWYCDc,Aurora chooses to stay awake with Jim for the rest of their lives. tt3170902,GoQhe_ntnR4,"Theeb and Hussein take Edward to his destination, but discover the remnants of a deadly battle instead." tt3170902,Y0TF3T90a8U,Theeb and his brother are attacked at night by the raiders and he falls into the well. tt3170902,IE_d_MBVR6s,Theeb panics after The Stranger reveals himself to be alive. tt3170902,MfKGLmjlyLo,Theeb considers his revenge against The Stranger after discovering the entire journey was simply about money. tt3170902,25UjaIMN-rY,Theeb is given a lesson in fear and survival by The Stranger. tt3170902,0LwM6-xXVQU,Theeb and Hussein defend themselves against The Stranger and his men. tt3170902,lFet5R_g-vY,Theeb and Hussein get caught in the cross hairs as the men coming after Edward attack their convoy. tt3170902,oNtGqOsseNQ,The Stranger enlists Theeb's help in cleaning his leg wound. tt5294966,64cRTXIxwws,Ryôta and Kyôko come to a resolution about Ryôta's place in their son's life. tt5294966,FeETSw95wp8,Ryôta talks to his sister about their money troubles while waiting for his ex-wife to pick up their son. tt5294966,P1bTMEsYPug,Ryôta takes his son out for a day of bonding. tt5294966,a7lxoNJJYEc,"After hearing Kyôko discuss the divorce, Yoshiko realizes her son is just like her shiftless husband." tt5294966,1A08em6Y-kk,Ryôta and Kyôko discuss the fallout from their divorce while waiting out the typhoon. tt5294966,PSpIMEVCsV0,Yoshiko gives her son Ryôta a bit of advice. tt5294966,gfmtB17vowo,Ryôta is chastised by his boss after blackmailing a high school student for money. tt5294966,stqgd2mbvlo,"While spying on his ex-wife, Ryôta sneaks into the bathroom to get information from his son." tt4882174,9xbk-7HBIOw,"After witnessing the murder, the children in the apartment building deal with the fallout of the crime scene." tt4882174,15wjOeT6Qo4,The children of the complex search for the key to their salvation while a murder takes place outside. tt4882174,Qj7OIg9Vc-g,The neighbors go about their lives as Kitty Genovese comes home. tt4882174,ocXYjytHb40,Sam watches Kitty as she is attacked and does nothing to help. tt4882174,UiHAMypGBPo,The children try to get help for Kitty as she is being assaulted but run into trouble from their parents. tt4882174,7WkMxJKKITM,The Smith family erupts into an argument after Troy tries to go outside and save a woman being murdered. tt4882174,UjOJ-AMtAzY,Bob Cunningham tries to overcome his feelings of apathy toward his wife and family. tt4882174,Cf_0ggNhHMY,"As the violence of the murder ramps up, the children in the complex search for a way out." tt3142366,SrqVUFbk_sE,Ryder has a disturbing shooting lesson with his uncle Keith. tt3142366,2g96QnNekOc,Ryder chases after his little cousin Molly when a disturbing incident occurs. tt3142366,vFPRSImZev4,Ryder is forced into playing with his little cousin Molly by his Uncle Keith. tt3142366,yJTucB8fH04,Ryder sings for his cousin Molly and Uncle Keith. tt3142366,Qt6F9WCle9k,Keith confronts Cindy about their past and exposes the truth about what happened with Molly and Ryder in the process. tt3142366,LBLIa7bqcfY,"Cindy defends her son, Ryder, after he is accused of abuse by her brother Keith." tt3142366,7MWts8-_LUo,"After his daughter presents several signs of abuse, Keith goes after the accused- his nephew Ryder." tt0084191,eKxv7whkFMM,"Jansen watches the most popular show on TV, where Little Rita captures the world record for non-stop laughing." tt0084191,Na3loD5Xpew,Jansen finds a man who may be the mysterious Krsymopompas who writes against the Combine. tt0084191,ykcCGhbl1H4,Jansen and Anton are accosted by a crazy comic book fan on the road. tt0084191,0lCR_c5Su1M,"After being captured by some anti-establishment operatives, Jansen is saved by his partner MK1 Anton." tt0084191,zOHL9JZPELk,"Jansen investigates the death of a woman who worked for the Combine, but they are more interested in their TV ratings." tt0084191,OstLbMEQM4Q,"After failing to save those in the explosion, Jansen tries to find comfort in the words of Neil Armstrong and Richard Nixon." tt0084191,w9-ylaUijdc,"Jansen meets with his police chief, but after giving him a warning, the old man dies mysteriously." tt0084191,6WX8Ct4xMvE,Jansen questions an eccentric former star of the Combine for clues to the bomb threat. tt1808339,crZlpaRXKFE,Jane accepts Tom's proposal - for two more books. tt1808339,bplKA4fZ8dI,"Tom insults Willie, who punches him out." tt1808339,CsXhHyDeJO0,"Jane tries to reconnect with her estranged father, but they get in an argument." tt1808339,C77hQJ-zDeA,Jane is furious when Tom changes her book title without permission. tt1808339,VY50Mu29LxE,Jane admits that her writer's block comes from not wanting to leave Tom. tt1808339,TprgpfkdiRc,Tom and Jane are angry when Willie gives her book adaptation a happy ending. tt1808339,f6Oo9vLtKtA,Jane finally finds a publisher for her first novel. tt1808339,kpufOE3FIXA,"As Tom pressures Jane to finish her book, she starts to have conversations with her main character, Darsie." tt3407428,dBif8nb20_g,Jean opens up to her son about her troubled life. tt3407428,g_TTG6vhg_4,"When his mother refuses to go into a rehab center, John lets out all his anger and frustration over having to take care of her." tt3407428,8M0uWmbBrCc,"Jean has a meltdown after discovering her son, John, threw out all her alcohol." tt3407428,dLxHFwfWIcQ,"After finding his alcoholic mother unconscious with vomit on her pillow, John rushes her to the hospital." tt3407428,wnMPRSiIiUI,"After John checks his mother into rehab, Jim explains to him that alcoholism is a disease." tt3407428,k62E1AtOYnM,"Before his best friend goes on a long trip, John surprises him with a meeting with the son he's never been allowed to meet." tt3407428,TqivtOAy2No,John visits her mother just to dance with her and remind her she isn't alone. tt3407428,EAKyvP2Rnqc,Jean tells John her true feelings on her youngest son with Down syndrome. tt4972582,LK5QIZgbfZQ,Casey Cooke and her friends are kidnapped by Dennis while getting a ride home from the mall. tt4972582,I8-FxxgRACE,Casey comes face to face with The Beast. tt4972582,My8kfz_Ddqg,"The Horde retreats after nearly being defeated, but someone is now aware of his powers." tt4972582,QAiVcQifKfE,Casey and her friends meet Hedwig. tt4972582,I-6XHJFUBDI,Casey Cooke meets Kevin after being cornered by the Beast. tt4972582,FnFMS11g4fM,Hedwig shows Casey his dance moves. tt4972582,Uc--n6RoIgw,"While Hedwig is distracted, Marcia attempts to escape the basement where the girls are being held captive." tt4972582,VPeXTe_6uOc,Claire finds a way out of the basement and makes her escape. tt4972582,C83hfoyHHHk,Casey Cooke is chased through the basement by The Beast. tt4972582,H6ImGh1Xolc,Casey Cooke tries to trick Hedwig into showing her a way out. tt4361050,2DgFlZwrD-Q,Doris subtly hints at her plans for Mikey. tt4361050,cn35LhT9zBg,Alice tries to convince the spirit inside Doris to release her family. tt4361050,LSTU_JJcJxQ,"Doris shows her mother, Alice and sister Lina she can contact her dead father." tt4361050,-OUuZojE3aM,Lina saves her mother but the spirit is not finished with her. tt4361050,tFEKMdUMjEk,"After being institutionalized following her family's deaths, Lina's connection to the house never wanes." tt4361050,rC9MhZGgJy4,Father Tom tries to tell Alice and Lina that Doris has been influenced by a malevolent spirit. tt4361050,DpQHj1R8kXk,Ouija: Origin of Evil: Please Help My Family: Alice Lina Father Tom tt4361050,lwruhQqFttU,Alice and Lina are chased by a possessed Father Tom. tt4361050,EiYxgC78ScI,Lina tries to save Alice by trapping the spirits inside her little sister Doris. tt4361050,8hWbptEarkA,Lina feels the effects of Doris's seance. tt1753383,U-Sqe0DN_E8,Buddy plays matchmaker again for his human Ethan and his long lost love Hannah. tt1753383,tg4jLJ6OiDY,Bailey grows up and gets familiar with his human Ethan. tt1753383,cOXVnmVPdtQ,Tino tries to get used to family life. tt1753383,BhHv3Yxcuro,Buddy tries to convince Ethan that he has come back to him decades after his past life. tt1753383,Z4ScRG9SDSI,Tino falls in love at the park just as his human does the same. tt1753383,BCGzM3s9-1o,Buddy finds himself in an oddly familiar place. tt1753383,f-3Bldu8BJ4,"After Ethan goes to college, Bailey loses his passion for life." tt1753383,ALw553euzsc,Ellie makes a sacrifice to protect her human Carlos. tt1753383,nfFsHF8guzM,Bailey accidentally pushes Ethan to talk to a girl. tt1753383,vhhiJqQBMMY,Ethan tries to get Bailey to poop out his dad's collectible coin before his dad finds out. tt4649416,1xhIWaxWINs,Rachel invites Lonnie's mistress to Christmas dinner and things hit the fan when his wife Cheryl finds out. tt4649416,vLgTWXjMlWI,Rachel and Cheryl nearly burn down the house trying to make Christmas dinner. tt4649416,u_n1SEwWmYc,Lonnie tries to hook up the Christmas lights and nearly burns down the house. tt4649416,3B40Rhnt4PA,The Meyers take a minute between cooking to have some fun. tt4649416,wXQ1EhVW2xQ,Rachel and Cheryl make amends after a family scare. tt4649416,318L0jBVIKM,Malachi makes up for ditching Rachel at prom after years apart. tt4649416,CHs36bNm7xk,The Meyers fail in trying to have a Christmas dinner free of any drama. tt4649416,SzVC7ErC8RY,The Meyers have a big argument on the first night in the same house together. tt4649416,u7yQ7qs6Zew,Jasmine accidentally spills on her relationship with Lonnie to Rachel. tt4649416,7URRIBRCm8E,Rachel finds herself trapped in the window after being locked out of the house. tt2034800,BG3bNlh0qiU,William and Commander Lin fly into the city on a balloon in hopes of saving the city from the creatures. tt2034800,S7iDxRJpDZU,Cadet Peng Yong sacrifices himself to give William and Commander Lin time to execute their plan. tt2034800,V6B3elF2pYU,Commander Lin Mae asks William to try her flying crane technique off the Wall. tt2034800,DefILRrX77k,William and Tovar watch in shock and awe as alien creatures attack the Great Wall and the Nameless Order fights back. tt2034800,4m15WAC5khw,William is given a test to measure his skill with the bow. tt2034800,JWbqI-m3A3w,"When William fails with his arrow, Commander Lin uses her crane technique to attack the queen." tt2034800,6D64t1trSRs,General Shao and Commander Lin learn that the creatures are getting smarter. tt2034800,z23vdob1grU,William and Tovar risk their lives on the ground in order to capture a sedated beast. tt2034800,ahCg__rBh1Q,Commander Lin uses massive blades in the Wall to kill the beasts and harpoons to sedate them. tt2034800,CLWCgMVf6U0,William and Tovar work together to kill the beast atop the wall. tt4550098,Wurqpe5tNjA,"After letting his wife's killer escape, Tony breaks down." tt4550098,5PsKwqiRjEM,Tony loses it after Ray taunts him during interrogation. tt4550098,geoi6Sxyg7g,Tony finds and confronts Ray in the same trailer Ray murdered his wife and daughter. tt4550098,vrhgkmAzWvo,Susan tells Edward that she can't be the perfect woman that he deserves. tt4550098,iAlU6xt7Y_s,"After years without seeing each other, Susan bumps into her old neighbor Edward." tt4550098,z-4DtLFGzG0,Ray kidnaps Laura Hastings and India Hastings. tt4550098,l-GbvgBXi18,Det. Andes brings in a suspect for Tony to identify. tt4550098,5sMFxEL3zhw,Det. Andes tells Tony about his terminal cancer as the two formulate a plan to get justice for the murder of Tony's family. tt4550098,a6--cEjo3bY,Det. Andes brings Tony the men who killed his wife and daughter. tt4550098,FHeC_tenzrw,Tony Hastings is pushed off the road by Ray Marcus with his wife and daughter in the car. tt3631112,CEO9YAsxMfI,Detective Riley tries to get to the bottom of Rachel's strange behavior. tt3631112,SW-1sk_U8vU,"Rachel is interrogated by Detective Riley, which leads to some uncomfortable revelations." tt3631112,X1ByBEw-WxM,"Rachel tries to convince Anna that her husband is more than an adulterer, he is a murderer." tt3631112,yYQtZCaPFaM,"One day while drunk, Rachel goes into her old house and takes Anna's baby." tt3631112,B2zzhcU9f9U,"Rachel finally gets Tom's true colors to come out, but it may be too late." tt3631112,ahCOQjOPTZw,Rachel and Anna kill Tom in self-defense. tt3631112,qJznSue3tEs,Megan tells Dr. Abdic about the restlessness she feels in her life. tt3631112,yHw5A9BAZ98,"A drunk Rachel describes what she would like to do to Anna, the woman who broke up her marriage." tt3631112,lKqBsgfSSU8,"Rachel goes to therapy with Megan's therapist, Dr. Abdic." tt3631112,IegMpeJM1QU,Rachel returns home to find an angry Scott waiting for her. tt4630562,5rGPKIgdV6A,Hobbs and Shaw take on prisoners and guards in a violent prison escape. tt4630562,5d1P50L28LU,The team is attacked by heavily armed enemies in a high-speed chase over the ice. tt4630562,ox1SVCutwv4,Tej uses a wrecking ball to get rid of the bad guys chasing the team. tt4630562,6ZygVYbMrfc,"Dom saves the team from a missile attack, but then Hobbs has to find a solution for the torpedoes." tt4630562,AoB_mdZxNlY,Cipher and her hackers take control of New York City cars to stop the Russian Minister of Defense. tt4630562,G76ThtqLvWk,Dom's uses harpoons to try and stop him from escaping with the nuclear football. tt4630562,wHfXZ9jcX3A,"The team is chased by Cipher in a nuclear submarine, who sends a heat sinking missile to take out Dom." tt4630562,Z9kPRWAjSNo,"Dom races Raldo through the streets of Havana, with a little help from Letty." tt4630562,Tr3_HOXg4Ug,Shaw takes out Cipher's henchmen while trying to protect Dom's baby. tt4630562,4FkUmPvbDQs,"Dom discovers that he is a father, but Cipher holds his baby and Elena prisoner." tt3263408,v4tdwXAnFnU,Sofia waits for Kofi to call her after they had cute meeting at a bookstore. tt3263408,xIeyPrdc2Yo,A rather drunk Bille and Alex share some flirtatious tension as they take a break from the party. tt3263408,tkNKZ8e4aPc,"After discovering that he's sleeping with an employee of his wife, Kofi tries to leave a confused and upset Sofia." tt3263408,Yaj2tnjamhM,"After a girl's night out full of drinking, Billie almost gets what she wants from Alex." tt3263408,V6W8AZMUipE,"In the midst of marriage problems, Kofi goes on a date with Sofia, one of his brother's patients." tt3263408,l0CbM-jK_eI,"Billie by chance catches her husband, Kofi, having a lovers fight with Sofia, one of her employees." tt3263408,VonhME1FiMk,"After coming home to find out his wife stood him up to have a party, Kofi and Billie have an intense argument while everyone listens." tt3263408,-Q6oYNUhNes,The sexual tension builds between Billie and Alex over dinner. tt2650978,2ZyxEFqlA1Y,Greider comes face to face with the evil town father Brenner and makes a fateful decision. tt2650978,wAzEOzfIX_0,"Greider is outnumbered, but succeeds in taking out more of the Brenner brothers." tt2650978,DjypYuuAvDY,Hans Brenner and his brothers terrorize the bride and groom at their wedding and Luzi is abducted for Old Brenner's primae noctis. tt2650978,aZGpjXdKQXw,"While hunting, Rudolf Brenner steps into a dangerous trap set by Greider." tt2650978,3a_nj9e_5bs,Greider takes revenge on the greedy innkeepers that betrayed his mother years ago. tt2650978,way2bfS3z1M,Greider has to fight a huge blacksmith that is loyal to Brenner. tt2650978,wDfgx1Cj97Y,"The local priest remembers taking part in the dark story of Greider's mother, just before Greider sends him into eternity." tt2650978,oymR3xfYh4c,Greider rescues Luzi as the Brenners try to take her on her wedding day. tt5182856,mfP8p7raf0s,Toshio and Akié take Takashi and Hotaru to find Yasaka and exact revenge. tt5182856,tpmqajLJQz0,Yasaka attempts to take his affair with Akié to the next level. tt8071196,Pzk9hsEacmQ,Martha shows up Jo's big show and hears her own music in his DJ set. tt8071196,Eduv1gpvg6w,Jo's grandfather Bruno tells the story of his job during the war. tt8071196,hN-1U-g15NU,Martha tells Jo the story of her time during the war. tt8071196,RbU9NjiFLV0,Jo teaches Martha how to make a musical loop. tt8071196,6C3HDhgTv8Y,"Martha confronts Jo's mother, Elfriede about Bruno's dishonesty." tt8071196,4Mzzy3KQNoI,Jo and his neighbor Martha connect over house music. tt8071196,-FDEcmWJ2GU,Bruno is compelled by Martha to tell the darker side of his story. tt8071196,r_SuoUET-ok,Martha discusses the consequences of World War II with Jo. tt5182856,J73K7gabt-U,Toshio finds Akié holding Hotaru over a bridge. tt5182856,PXEJAEDVUkM,Yasaka and Akié continue their sordid affair. tt5182856,zN8bZ1JjWWI,"After being denied by Akié, Yasaka takes out his aggression on an unsuspecting victim." tt5182856,os6khU56n2g,Toshio politely pressures Yasaka into keeping his secret. tt5182856,QD1AjTF83ds,Toshio confesses his crimes to Akié. tt5182856,vh2wmVvFUZI,Akie discovers Takashi's lineage. tt5974624,bI1MOyt8dXE,"Tabei meets Zandui, the man who has been following him for days with plans to kill Tabei and avenge his father's murder." tt5974624,EML4kWiax44,Tabei meets the brothers who have been chasing him for years. tt5974624,nfteV9Dkml8,"Guori almost kills another innocent man as he attempts to find Tabei, but his brother stops him." tt5974624,XC3h9PPpQtI,Chung wonders what makes certain men hurt the women they love. tt5974624,_0No4OkGHt4,Tabei's victory is short-lived as Gouri takes revenge. tt5974624,B6OtAXBRTSI,Tabei stumbles across a theater troupe performing for an old man. tt5974624,mCO14xw1nJo,Tabei discovers a map to the Sacred Land on his back. tt5974624,BGHB4Eyjqt4,Tabei finds enlightenment. tt0099938,bnLhMGzgfSM,Kimble confronts an abusive father with some punishment of his own. tt0099938,0noY-XrAJRg,Kimble and O’Hara save Dominic from his psychotic father and grandmother. tt0099938,m1JgMM8b9_w,Detective Kimble complains to O’Hara about his terrible kindergarten class. tt0099938,t_FRWUPcR7Y,"Kimble tries to get the kids to play a game, but they end up playing him." tt0099938,YSrOLez2GbE,"Kimble tries to instill discipline on the class by making them his “deputy trainees.""" tt0099938,q9FYBjSc3cU,John Kimble tracks down a witness at a party to help him identify his perp. tt0099938,k96h1dYQrj0,Kimble is introduced to his kindergarten class by Miss Schlowski. tt0099938,IxoCv_JpQVs,"On the plane, Det. Kimble is debriefed by O’Hara while being annoyed by children." tt0099938,-yPwW5V4mhI,Kimble learns more about the kids in his class when they tell him about their fathers. tt0099938,IMQADg1Dp9g,"When Kimble returns to his class, he finds the kids running wild and loses his temper." tt0112384,kn8k_ox5OXs,The Apollo 13 crew prepares for launch while Kranz receives a new vest from his wife. tt0112384,lMtWWls4oas,"Flight controllers clear Apollo 13 for launch, and the vessel lifts off." tt0112384,f6F6MzMT2g8,"Complying with mission control, the astronauts jury-rig a device to purge their module of CO2." tt0112384,ry55--J4_VQ,to make a square cartridge compatible with a round one. tt0112384,C3J1AO9z0tA,"When Swigert stirs the oxygen tanks, something goes wrong; shipmates Lovell and Haise scramble to help." tt0112384,zZTH3HdE8Sg,The astronauts prepare for re-entry while mission control awaits the outcome. tt0112384,s_7PfocHTmc,"Mission control, the astronauts’ families and the TV audience await a response from the earthbound module." tt0112384,XLMDSjCzEx8,Kranz and his team toss out the flight plan to focus on the astronauts’ safe return. tt0112384,Tid44iy6Rjs,Aaron insists the module conserve its power; Kranz is determined not to lose an American in space. tt0112384,7RJnMME0XAw,"Jim Lovell’s son asks him about a fatal Apollo accident, while Marilyn listens at the door." tt0112384,UNYBtjHAuSA,The Apollo 13 crew is relieved when their CO2 level begins to drop. tt0046912,Igs1WM2pA54,Tony blackmails Lesgate into agreeing to murder his wife. tt0046912,LWIAWDjHhx4,"Tony tells Lesgate how he discovered his wife was having an affair, and what he did about it." tt0046912,8HiCEPL6oa8,"Tony calls his own flat in order to lure his wife, Margot, out of bed and over to the curtains, where a hired killer, Lesgate, is lurking, waiting for his chance to murder her." tt0046912,jPRiyRmsLBo,Tony informs Lesgate of the details of his plan to murder his own wife. tt0046912,9qorxa6iMm4,"After his wife kills an attempted murderer in self defense, Tony manipulates the evidence to make it look like she committed premeditated murder." tt0046912,tUiVEKK8rWM,"Mark tries to convince Inspector Hubbard that Tony hired the dead man to murder his own wife, but Tony talks his way out of it." tt0046912,DaWi5EoJVGA,Inspector Hubbard confronts Mark and Margot about their affair before accusing her of premeditated murder. tt0046912,Oh0635HLx5s,Inspector Hubbard asks Margot to walk him through exactly what happened the night she was attacked. tt0046912,JY4UoItJ_lA,"Dial M for Murder: Caught by the Wrong Key: Inspector Hubbard sets a trap for Tony : if he realizes he swapped his wife’s key for a fake, they can prove he’s the murderer." tt0046912,9MSGSOjdViQ,Margot is convicted in a nightmarish sequence. tt0091763,3KdgZgQRDU0,"After Chris terrorizes a dim-witted villager, Bunny goes a step further and bashes the man’s head in." tt0091763,tImxhYu2PG8,"In a rare moment of quiet, Chris and Elias have a frank discussion about their thoughts on Barnes and the war." tt0091763,r_3ofu2x8qM,"In the jungle with no witnesses, Barnes shoots Elias and then blames it on the Viet Cong." tt0091763,tlLSqeVA_no,"When Barnes threatens to shoot a little girl, Elias punches him and a brawl ensues." tt0091763,cCwn-ROhwyo,"The morning after a battle, Chris finds the wounded Barnes lying among the bodies and shoots him." tt0091763,8cGUULb2K-0,"Chris comes across some of his fellow soldiers raping a young girl and stops them, protecting the girl." tt0091763,QEv3zzKyiFQ,Chris and the other soldiers watch helplessly from the helicopter as the wounded Elias is gunned down by the Viet Cong. tt0091763,S0IfbNVCoCE,"When he finds Chris trying to make sense of things, King shares his thoughts on life and on surviving the war." tt0091763,0bw8UM1eLFo,"With morale lagging after Elias’ death, Barnes solidifies his authority by giving a monologue about military order." tt0091763,PvqQnJ7Fvz4,"Chris narrates a letter to his grandmother describing his new, hellish life as a soldier in Vietnam." tt0095031,nKDUDF3cgRA,Miss Trumble meets Ruprecht for the first time. tt0095031,14nilke-mtQ,Lawrence whips Freddy’s legs until he cries in an effort to out him as a fraud in front of Janet. tt0095031,BYmHra1d_Nw,Freddy tells Janet that his disability is a result of emotional trauma after his fiancee cheated on him. tt0095031,r2RzBizjKT0,Freddy meets Janet for the first time when he asks her to place a bet for him at the Roulette table with his last chip. tt0095031,08NzJRNAFGc,Freddy shares with Lawrence his love of taking money from women since men are the weaker sex. tt0095031,xxulNn8UDtY,"Freddy pretends to attempt suicide by rolling his wheelchair down a hillside, grabbing the attention of Janet." tt0095031,NePF08sMSDA,Freddy gets caught by Miss Knudsen with another woman on the beach and is sent to jail for stealing her money. tt0095031,yMiJp1nYlNA,Janet convinces Freddy to rise from his wheelchair and walk across the room to her. tt0095031,nkuKrymtuCg,"When Lawrence announces his new engagement, Freddy, as Ruprecht, breaks things in anger." tt0095031,SKDX-qJaJ08,"Freddy pretends to be Ruprecht, a challenged boy, and acts out at the dinner table with Lawrence and his new fiancee." tt0095031,xof2LkhAFGU,Lawrence and Freddy are stunned when Janet returns with a group of property investors. tt0095031,EOyAHaO7lwA,Freddy cons a woman on the train for a free meal while Lawrence watches. tt5052448,3wqXNKYn-fQ,Rod calls Rose to investigate his friend's disappearance. tt5052448,OT61p6s77_U,Chris tries to escape the Armitage house. tt5052448,n9hjsuaj448,Chris takes vengeance on the Armitage family. tt5052448,y1OhC9h3flY,Chris tries to connect with Georgina and is met with a strange reaction. tt5052448,85O_vS9vSCA,Chris wakes up just as Jeremy is about to take him into surgery. tt5052448,T31h3L_egm8,"Chris is introduced to the neighborhood by his girlfriend, Rose." tt5052448,KJhlJ8p8v7A,Rod tries to convince the police that his friend has been kidnapped. tt5052448,kBwVWrBk_uo,Chris is hypnotized by his girlfriend's mother. tt5052448,uG_KHjd_PSc,Chris tries getting evidence of the strange things happening at the Armitage house using his cell phone. tt5052448,sLLp4bO6dDI,Chris faces off against Rose in order to escape. tt4465564,4TsgjtL0Qx4,"Ana comes home to find a former submissive of Christian's, Leila, already there." tt4465564,gT7MQhe8gRE,Christian pushes Ana's buttons on a public elevator. tt4465564,X4jdgckXC9I,Ana gives Christian an answer to his proposal. tt4465564,UVXRswx8I8g,Christian and Ana play a risky game of seduction in the middle of a public auction. tt4465564,CoQM9K_r3kY,Christian re-negotiates the terms of his relationship with Ana in order to win her back. tt4465564,b-w1bY8qhnc,Christian comes back to Ana after having survived a helicopter crash. tt4465564,97qWmPkODZA,Ana is cornered and harassed by her boss Jack. tt4465564,rDnazOBaF1U,Christian begs Ana not to leave him. tt4465564,wEPZVYQqdMY,Ana wagers access to his bondage room if she can beat Christian at pool. tt4465564,0IiCOhajpS8,Christian proposes to Ana. tt0395169,RsJmRjseSzo,"Paul saves his family as well as a select few other refugees through a UN release, but stays behind to help the others." tt0395169,Ak8uiLVkpy4,Paul delivers devastating news to the people at the hotel and gives them advice on how they can all fight the Hutu together. tt0395169,d46cDtFv_Rw,"When Tatiana asks about the well-being of her brother and his wife, Pat doesn’t have comforting news." tt0395169,wZTaXoogvDQ,"Paul gives the soldiers an old guest list in order to save lives, and is almost punished." tt0395169,btfIH4Q2BQA,"In a last ditch effort, Paul calls the owner of the hotel, Mr. Tillens, for help." tt0395169,bY-jTccddQo,The situation becomes dire when the Hutu deliver the helmet of one of Oliver’s men to the hotel gate. tt0395169,ty_jbbvZDkQ,David is impressed when Jack delivers shocking footage of the massacre on his news camera. tt0395169,1Kk_oah-wCM,"Tatiana and Paul save her niece and nephew, as well as the other orphans, from a refugee camp." tt0395169,FGLxQHJ5NEs,"Paul promises the General to tell the U.S. that he is not a war criminal, as long as he helps him return to the hotel." tt0395169,5tz8013avVU,"Help arrives for most of the non-African guests at the hotel, but no protection is offered to the rest." tt0395169,vKcEalTIwfQ,Paul is relieved when he finds his missing son Roger safe and unharmed. tt0395169,psW7sLoNutA,"Paul is shocked when Jack says he thinks people will not intervene, even if they see footage of the genocide." tt0395169,TffPDHIwQtc,Paul and Gregoire have trouble driving in the fog and stumble upon a street full of massacred bodies. tt0881320,9OMdSRrUdy8,"Victoria, a new scuba diver, has trouble making it through the narrowest part of the underwater cave." tt0881320,s2QlioAboes,Frank asks his son for one final favor. tt0881320,TGqv7BxCgYg,Carl Hurley shows Josh and Victoria how to descend into the cave in style. tt0881320,gkqqhFre2RE,Josh is upset that his father let Judes die. tt0881320,N5fCeYm3-rQ,"Suffering from ""the bends"", George hides himself in the cave so that he doesn't have to slow the team down." tt0881320,OF_frDHo_nw,"As the cavers try to exit the flooding cave, a huge rock breaks loose and seals them in." tt0881320,ei4m-fQ0bak,Josh uses his rock climbing skills to traverse a slippery chasm and help the team make it across. tt0881320,qZk2O6OlYJo,"Frank tries to save Judes' life when her gear malfunctions, but it doesn't work." tt0881320,cKUwdiog-n8,"When her hair gets caught in the climbing gear, Victoria makes a risky decision." tt0881320,Ujm2mTIaGC0,"Losing sanity, Carl attacks Josh and his father." tt0095593,uQpHx3lBGms,Tommy and Tony visit a fast food drive thru and end up getting a failed assassination attempt instead. tt0095593,JYLVFSmlNFs,"When Tony has Angela and Mike at gunpoint, Connie arrives to shoot up the hotel suite." tt0095593,BXNuNJhLWyw,Angela is moved when MIke opens up to her before they go to sleep. tt0095593,MpaMbLDTxyY,Angela loses her patience with Frank when Joey pulls his revolver out of the drawer. tt0095593,0wTKzzRtGqY,Angela learns that Mike is an FBI agent when she gets dragged in for questioning. tt0095593,CUzNygPSRZM,"At Frank's funeral, Tony makes a move on Frank's grieving widow, Angela." tt0095593,XF33SnFIDAQ,"A Second Chance Mike gets a haircut from Angela, and a second chance." tt0095593,4us4K3KLRM0,"When Angela catches Mr. Chicken Lickin’ peeping in on her dressing room, she throws a milkshake in his face." tt0095593,bPH152eXEfU,Angela pays a visit to Tony but he begins to question her true intentions. tt0095593,FiVYtNf5Hos,Tony wakes up from a nightmare in prison in which Connie shoots him in his very special place. tt0095593,ovPXL1WPTMA,"Frank finds Karen dead in the bath tub, and is then shot and killed by Tony." tt0891527,1CKEXvHN9es,Senator Irving paints Janine a hypothetical picture of what would happen were the U.S. to pull out of Afghanistan. tt0891527,q2EU-k9I5yg,The ANX Editor is frustrated when Janine has doubts about reporting the information she’s collected. tt0891527,wQc-GpTtnR0,Senator Irving points fingers at Janine and her news organization for their hypocrisy and responsibility in the Iraq war. tt0891527,q_u6njqBaB8,Rodriguez and Finch shock their classmates and Professor Malley during their presentation. tt0891527,MvRfyxGjA90,Todd explains to Professor Malley why he thinks political science is dead. tt0891527,Aks95ziAQXU,Malley tells Rodriguez and Finch about being drafted and the state of the current war. tt0891527,btk4Wp0RssY,Malley gives Todd some advice on being an adult and making tough decisions. tt0891527,E2wr_tRqNZQ,Falco updates his troops on the situation in Iraq and Afghanistan. tt0891527,DzQjdpw73ZY,Senator Irving and Janine debate the Iraq War. tt0891527,C1PilkENI-k,Janine explains the changes in her job as a news journalist over the years to Senator Irving. tt0891527,2dB26bOiT4E,"When the platoon comes under enemy fire in the helicopter, Rodriguez and Finch are left stranded in the desert." tt0891527,8i7z8cEA4IM,Rodriguez and Finch make a last stand behind enemy lines. tt0106452,lMmTZ7oTDRI,Marti and Tim run into their friend Jenn while trying to act like pod people. tt0106452,P_Iz-WhpmXY,Major Collins asks Steve if chemicals in the water could explain strange behavior around the base. tt0106452,jF0RYgX6Hgo,conform or die. tt0106452,h8wzJimC5Zc,Marti and Tim realize they can’t run forever. tt0106452,uSCNsJDEf1M,Major Collins tells Steve that the whole world has gone mad. tt0106452,NUmE-c4ym40,Marti is cornered in a bathroom with a chilling warning. tt0106452,Lk2gIdLgwz4,Carol tells her husband Steve that there’s nowhere left to run. tt0106452,qqZPej42OkE,Andy realizes he’s not quite like the other students. tt0181739,jEveVtZmPu0,Osmosis Jones fights Thrax in a Matrix-style battle for Frank's life. tt0181739,FnPOuK9RHH0,"the deadly virus, Thrax." tt0181739,5c1qYWHkPEc,"With Thrax alive and wreaking havoc in the body, Osmosis Jones must convince Drix to help him save Frank." tt0181739,MucDLDFYNDE,Mayor Phlegmming answers reporters’ questions and watches a campaign ad for his do-gooder political opponent Tom Colonic. tt0181739,NlREC9TagHY,Osmosis Jones goes undercover inside Thrax's evil meeting. tt0181739,mGAaR9KKszs,Osmosis Jones and Drix play good cop / bad cop with a flu vaccination. tt0181739,0_0U4bhe6ag,Thrax recruits some germ heavies by removing their gangster employer. tt0181739,Rn0Qk4aHYfs,"When Thrax blows the dam holding back Frank’s snot, Osmosis Jones and Drix are caught in the flood." tt0181739,CU7-qLo7GPo,"Osmosis Jones, a white blood cell, is tired of mouth patrol and longs to be elsewhere in the body." tt0119592,A0FwoprE1cQ,"In the middle of a tense hostage situation, news reporter Brackett interviews Sam, the man with the gun, on live TV." tt0119592,j_1k-SzcOrs,"After Sam kills himself in an explosion, Brackett tells the press that they are all responsible for his death by the way they handled the situation." tt0119592,89FuExOuBbI,A few SWAT team officers on the roof attempt to kill Sam while he tells the children a story. tt0119592,Wm_7niZcI1s,Brackett convinces Sam to use the media to his advantage before giving himself up. tt0119592,CeE4xdFmuVs,"Brackett gets into an argument with Kevin Hollander, a rival new reporter, when he finds out the media is about to change its opinion on the hostage situation." tt0119592,Y9HqtZTcTJk,The police let Jenny attempt to get her husband to surrender. tt0119592,NvKYxRmWYEs,Sam continues to confess on live TV all his troubles and regrets after taking a group of children hostage in a museum. tt0119592,GbOXTIymvqc,"Sam Baily, a disgruntled museum security guard, confronts his boss, Mrs. Banks, after being fired. A television reporter named Brackett witnesses all of this from the restroom." tt0119592,RehVwEopIQ4,"After taking hostages, Sam shoots another museum guard live on TV while Brackett reports on it secretly from the museum's restroom." tt0119592,o-kmndqHfF0,Brackett gives advice to Sam about how to handle the police when they call in to negotiate with him. tt0104107,Jou60MhXBcw,Fitz hustles some frat boys at pool while Caine visits a boxing match to set up the long con. tt0104107,gtngV41jpcw,"When Caine gets smart with the Warden, he nearly gets his head shot off." tt0104107,b1MxW8nf_lU,"After an extravagant entrance, fan-favorite Sonny gets knocked out by Honey’s first punch." tt0104107,Q_GqOe9HFRY,"Caine goes to check up on Wolf’s dogs and runs into his little sister, Emily." tt0104107,_kGt7Vv2Pyw,Gillon gives his fighters their marching orders on what they each have to do to destroy Honey in the ring. tt0104107,lMiVewLfZKI,"After Honey takes a serious beating in the ring, Caine warns that he will stop the fight." tt0104107,P20hrE8pmoI,"Caine tilts the odds in his favor by dosing Sam’s water with laxatives, giving him uncontrollable gas in the ring." tt0104107,9di5MvVZb1k,Honey trains for the big fight. tt0104107,0ePC0mh4rCY,Hambone has to knock out Honey in order to save his brother's life. tt0104107,WlvCTpjwaXE,Paulo reminds Gabriel Caine that it’s in his best interest to win the bet. tt0104107,iwxe2sIgQL0,"Over cards in the prison yard, Fitz and Caine discuss their intentions on Diggstown." tt0104107,6l0tsxNujWA,"After a punishing round, Caine tries to motivate Honey with a less-than-inspiring speech." tt0041090,hjuvr5uGA4s,Adam appears with a gun and threatens to shoot Amanda and Kip. tt0031867,n7l2RLvI7Ss,"After coming back from the war, Eddie and his friend visit the woman who wrote him letters while he was away." tt0031867,q8woScnBklo,Eddie shoots his way out of the gangster's home and dies in the arms of the woman who loved him. tt0031867,lKh7qSp6zIc,"In the middle of a battle, Eddie, George and Lloyd talk about their plans once the war is over." tt0031867,tNuPwipxx94,Eddie and George get to know each other again while Eddie's gang raids George's boat. tt0031867,QuZ_ak2qxeE,"After hitting rock bottom, Eddie visits his old friend George, who is now a big crime boss." tt0031867,FhXn_kxlWno,"Eddie, George and Lloyd meet during WWI." tt0031867,D143VuAxr-k,"During a robbery, George stops a guard who he recognizes from the war while Eddie gets the trucks ready to leave." tt0031867,2NR-tebGw3U,Eddie leads a raid on a bootlegger's boat and finds his old war buddy George is the captain. tt0041090,JxbvOwAB-xI,"Adam and Amanda question the accused, Doris Attinger, on the witness stand." tt0041090,VR0NIF6PbCo,Adam and Amanda butt heads while simply selecting jurors for the trial. tt0041090,yAmTu-R5MQM,Amanda and Adam Bonner debate a recent criminal case and how the courts treat men and women differently. tt0041090,POu3JnhEmT4,Adam lets the shenanigans in court affect his relationship with Amanda and leaves her. tt0041090,8RGjds-aK00,"Amanda is distraught over losing her husband, but her neighbor Kip is only concerned with seducing her." tt0041090,6oqDO7aHVFo,Adam gives Amanda a slap on the rear which she does not appreciate. tt0041090,hdQOL2aFufE,Amanda makes her final argument for equality which includes some gender-bending imagination. tt0041090,Hl9OzCY9fVE,Adam and Amanda reconcile their marriage by agreeing to appreciate their differences. tt0041090,P27sTXSGrhQ,Amanda rants so much about the case that Adam can't get a word in. tt0094894,i-2kXcQgs_w,Hodges reprimands Danny when he has finally had enough of his disorderly conduct. tt0094894,003kLKX8n3E,Hodges and Danny let the gang members go after busting them for drugs in an alleyway. tt0094894,00I2Ofraf4A,Hodges dies in Danny’s arms when he is fatally wounded. tt0094894,vhfk-aOAgIE,The Crips do a drive-by shooting on a Mexican gang’s party. tt0094894,f4wmj-Nq9xA,T-Bone holds court in jail with Frog. tt0094894,VxKyoOxyrdU,Rocket and his cohorts in crime go for a ride. tt0094894,LJQAKDbq0hI,Hodges humors Danny who tries to flirt with a local coffee shop waitress. tt0094894,DkGLIu6lnT4,McGavin and Hodges spot and pursue Clarence 'High Top’ Brown through the swarming streets of L.A. tt0044685,t80UDdbV3Mk,Andersen sings the children a song about the King’s New Clothes. tt0094894,jn_D02Tvr4k,Oso makes a deal with Bailey and gives him the names of his accomplices. tt0094894,zYTsJkuEPWQ,"T-Bone is arrested, dancing half-naked with a stuffed rabbit in a shop." tt0044685,ZDbWeYRT7wo,"Hans Christian Andersen entertains the Girl Outside the Jail Window with his hand puppet, Thumbelina." tt0044685,0RDDbfd_K74,Andersen’s work is published in the Copenhagen newspaper. tt0044685,-Ok6Y77DeNA,Andersen comforts an unhappy child by singing him the story of the ugly duckling. tt0044685,n_lSwXF8wfw,Hans Christian Andersen promises to fix the ballerina’s shoes. tt0044685,Kx56Aefjn7s,"Hans Christian Andersen is welcomed home, where he continues to tell his stories." tt0044685,Z7QbvD-gd0s,Doro performs the ballet version of the Little Mermaid. tt0044685,UsBN2NyjX94,Andersen explains to Peter that he worries too much. tt0044685,S3phStzHz34,The Schoolmaster threatens to leave if Andersen doesn’t. The crowd tries to convince him Andersen’s stories are not bad for the children. tt0044685,M1TkG_zlh6E,Andersen confesses his true feelings for Doro. tt0077838,FPtvpjBEEqo,"Neil Young joins The Band on stage for a take on the song ""Helpless"" with Joni Mitchell in the shadows lending background vocals." tt0077838,Z2eTW8qZBtk,"The Band, joined by the Staple Singers, perform their classic song, ""The Weight""." tt0077838,-zNnJiwo_5Y,"Bob Dylan reunites with The Hawks for a run-through of the song ""Baby, Let Me Follow You Down""." tt0077838,6dDbnwQlCek,"Levon Helm leads The Band through a passionate take of the Civil War-inspired song, ""The Night They Drove Old Dixie Down""." tt0077838,QzgJIF00Xdw,"Van Morrison sings and prances around the stage performing the song ""Caravan""." tt0077838,JsdUzN20Sow,"The Band open up their Thanksgiving concert with the staple, ""Up on Cripple Creek"", with Levon Helm on lead vocals." tt0077838,ki3zzZ-GsGI,"On Thanksgiving, 1976, The Band close out their career by coming back on stage for one final song, ""Don't Do It.""" tt0098309,O3-W1ng-UWI,Mary weeps as she fights with Bob over bad publicity. tt0098309,mTYe5PvlRno,The Fishers and the Patchetts sit down for a fancy family dinner. tt0098309,9f1adgpyRjM,Ruth drops the kids off at Mary’s house to live with Bob after blowing up the house. tt0098309,VbBi8ZIWbUc,Bob is horribly insolent to Ruth as he packs his bag to leave her and the kids. tt0098309,J_wbvP9hEFQ,"When the family rodent is found dead in the casserole, Ruth and Bob both have a meltdown." tt0098309,AEYh9Sh6kk8,Mary finds out that Bob has been cheating on him and decides to take her life back. tt0098309,rGtJbW9sRbo,Mary’s publisher Paula is dumbfounded when Mary’s latest novel includes “banal” details of her current life. tt0098309,UPhZaK9jxYs,Bob cheats on his wife with Mary when she seduces him over to her house for a late night drink. tt0098309,xqtbz-pVp2g,Ruth sets up her ex-husband with her own femme fatale mole. tt0098309,W5-oHwzdWos,"When Ruth switches Bob’s judge, things don’t go as planned." tt0098309,Z9zrMe8Gn1E,Ruth takes vengeance on her husband by destroying his biggest asset. tt0101371,N6bOUves6hI,Dreyfoos is confronted by Dr. Sturgess on his hypocrisy. tt0101371,X8qBorenkn8,Dr. Dreyfoos is running out of options when his men start to turn against him and Luther recites his two demands. tt0101371,2NkV6POGLOc,Sam shares some of his old photographs and possessions with Dr. Morgan. tt0101371,BuN4WOVbk7s,NO SURRENDER. tt0101371,rlXKgVlILbM,Dr. Morgan is concerned with the “turfing” process in the hospital and worried about his patient Sam. tt0101371,Qgx38Vxw7Bc,Sam begs Dr. Morgan to pull the plug and let him go. tt0101371,81YXRcpQSpE,"Dr. Dreyfoos lays down the law to his hospital staff and introduces some new, tougher procedures." tt0101371,Lurs1FzrSio,Dr. Bobrick takes down a freaked patient as Dr. Sturgess distracts him with some advice. tt0101371,ItDFQOAqEuA,"When a war veteran learns that the government is not going to pay for his medical treatment, the ex-soldier drives a truck through the hospital." tt0101371,0GGOfY9uE1Y,Felix asks Dr. Sturgess why he is performing open heart surgery on a patient only authorized for prostate surgery. tt0101371,WNUJIR9y-N4,Luther lets Pat Travis know about Article 99. tt0301470,8rlAQ3q4RDk,Minxie has a nightmare with Darry and the Creeper. tt0301470,soynQCpGMz8,"After the Creeper damages half of his face and crashes onto the roof of the bus, he uses the decapitated head of a victim to regenerate." tt0301470,lPB6exj8Kgo,"The Creeper abducts a boy, Billy, on his first feasting day." tt0301470,fEA9BJfaaYA,The Creeper literally creeps the team out by taunting them and making sexual innuendos. tt0301470,nhvRzLcCk40,Jack Taggart Sr. and his son arrive with a large harpoon gun to capture the Creeper. tt0301470,E6AQQLVI68g,"After the Creeper’s injuries reduce him to a stagger, it attempts to kill Double D, only to be interrupted by Taggart Sr.." tt0301470,EVvEtTyJYCo,The Creeper breaks into the school bus only to get his eye gouged out. tt0301470,isct-XNu38E,The team packs back into the bus as their chaperones get abducted one by one. tt0301470,5RGxUKhhRWA,"Twenty five years later, youngsters seek out the attraction known as “A Bat Out of Hell”, where Jack Taggar offers a peek at the Creeper for five bucks." tt0061452,6Tz9krF1K68,"Jimmy entertains his hostage, The Detainer, by playing the piano and failing on the mechanical bull." tt0061452,j2MbvFYy_8Y,"Sir James discovers that Jimmy is head of Smersh, and has a few extra tricks up his sleeves as well." tt0061452,jVH_NN7phnA,"Dr. Noah shows The Detainer the clones in his lab, then she slips him a mickey." tt0061452,BGlWalxUId0,"Evelyn meets Miss Goodthighs and as they start to become intimate, they both slip a drug into each other’s drinks." tt0061452,OqgFY6ZhOfQ,"Le Chiffre unleashes mind games on Evelyn, in a psychedelic sequence with special effects." tt0061452,SDq_ZTxHLh4,"After Evelyn and Vesper are forced to leave the hotel, Vesper is kidnapped by two men." tt0061452,mOicvmEloyY,"A cocky Le Chiffre plays a high-stakes game of Bacarat with Evelyn, but is stunned when he loses." tt0061452,IrTJjUQ_xGQ,Q shows Evelyn some of the newest high tech gadgets he has developed in the lab. tt0061452,5U72xvlbn-k,Jimmy narrowly escapes a firing squad only to find himself on the other side of the wall in front of another. tt0061452,9ukjNhwdbGY,Sir James avoids the drugged drinks at a wild Scottish party that ends with a room full of passed out women and bagpipe players. tt0051201,LiAiWknkwcc,"After the trial, Christine stabs Leonard when he plans to go away with his younger girlfriend Diana." tt0051201,XlEkeUg2z8I,"After the trial, Christine reveals to Wilfrid that he was duped into her master plan." tt0051201,kOfY6wIKT40,Leonard meets Christine face-to-face in the aftermath of her show. tt0051201,MLaMV6zQND4,Wilfrid cross-examines Miss McKenzie on the witness stand and discredits her prior testimony. tt0051201,V9JniMBfW18,"Christine Vole, in disguise, sells her notes to the defense." tt0051201,gDOSJkcKPbo,Wilfrid exposes Christine to the court as a serial liar. tt0051201,MrWZWfsif3E,Wilfrid sneaks a forbidden cigar while Mayhew solicits Leonard’s case. tt0051201,Saz3f-zPYeI,"Christine Vole sings a sailor song in the nightclub, but the soldiers take things a little too far." tt0051201,T-ELiRFK_v0,Carter and Miss Plimsoll show Wilfrid the new way to go up the stairs. tt0051201,0zImze5PCFg,Miss Plimsoll prepares an ornery Wilfrid for bed and confiscates his smuggled cigars. tt0051201,YCiimJ7d2Cs,Sir Wilfrid drives home from the hospital with his nurse Miss Plimsoll. tt0100232,DII9AQZoUTo,"When Dane is wounded, Curran suddenly finds himself vulnerable." tt0100232,a7gZgEpgKiY,"Defying instructions, Hawkins touches off a firefight that fatally wounds Graham." tt0100232,oyZblWujofQ,Hawkins crosses a hot battlefield to save Curran. tt0100232,vUzF61mtilA,"The SEALs steer their car through the streets of Beirut, an armored car on their tail." tt0100232,iRIIcZuSiBo,Hawkins refuses to lose his car to a tow truck. tt0100232,V8M4lPWWr3o,"When the SEAL team is summoned, Graham must leave his bride at the altar." tt0100232,tRRQX1SXcMM,"The SEALs stage a sneak attack on Shaheed’s boat; below the water, Hawkins and Shaheed fight to the death." tt0100232,WThmGeHf4hA,"Bummed by Graham’s impending marriage, Hawkins decides to bail." tt0100232,J96X6ei7LRE,Dane saves his fellow Navy Seals using his sharpshooting skills. tt0100232,tF6XBuvWdPs,The SEALs are debriefed following their rescue mission. tt0100232,Irf50_-vVtI,"The SEAL team parachutes from a plane; Graham’s chute fails to deploy, creating a brief crisis." tt0090056,gcGvs4dw9CE,Emmett and Austin fail their first real test when they find themselves surrounded by katana-wielding ninjas. tt0090056,DV_eqkGxAa4,Colonel Rhumbus pushes Emmett and Austin to the brink of their physical abilities with a grueling training regimen. tt0090056,e0xPCas2tHQ,Emmett and Austin disguise themselves as aliens so they can ambush the Russian rocket team. tt0090056,hoe24aSvLtw,"Pretending to be doctors, Emmett and Austin are introduced to a bevy of actual doctors in a very long and awkward greeting." tt0090056,d7Aot4Wr-Yo,Emmett blatantly cheats on his Foreign Service Board exam. tt0090056,T5rzOU-4Bkc,"After being manipulated into launching an ICBM by the US military, Emmett and Austin decide that it's best to get some good lovin' while they still can." tt0090056,7Rx90r--Xss,Austin leads a one man attack to save Emmett from the Russians. tt0090056,1iOnKJA2H7I,Austin and Emmett try to fake their way as surgeons during an appendectomy operation. tt0113228,fB8_lNQJ-JM,Max discovers Maria is a fisherman when he runs into her on the lake. tt0113228,x5z9VZO--G4,Jacob realizes how lonely and depressed his dad is. tt0113228,bFfnDQ3bDfA,Max meets Maria Ragetti and they feud over her intentions to turn his favorite bait shop into a restaurant. tt0113228,pJImKCcPIsU,"Max Goldman tries to charm Maria on their first date, but his nerves get in the way." tt0113228,lfKcANi5Zrk,"Max Goldman learns that Maria has been married 5 times, but he convinces her to give him another chance." tt0113228,cMPXArN7f9k,Max and Maria go out looking for worms and find some romance. tt0113228,8R8mxS2E_UQ,"Grandpa Gustafson hits on Mama Ragetti, while John and Max come up with a strategy to thwart Maria’s plans of opening a restaurant." tt0089530,Pk-vHw-mstI,Max sacrifices himself and drives straight into the oncoming caravan in order to provide enough runway for Jedediah the Pilot and the Little Ones to take off. tt0089530,c_u4oXd_Lfo,"In an all-out chase, Max fights off Aunty Entity and her men in order to save The Master." tt0089530,fWx9V0xoYsI,"The Collector explains to Max how they make energy for Barter Town from pigs, while Aunty Entity introduces the duo of Master Blaster." tt0089530,GbQy-0SzshA,Max fights The Blaster to the death within the bars of Thunderdome. tt0089530,Ov2ErYiFemg,Max stumbles upon the hideout of Jedediah the Pilot and convinces him to let them use his plane. tt0089530,ywcKkb5buJI,Max negotiates with The Collector and trades his life for entrance into Barter Town. tt0089530,9yDL0AKUCKo,"As the masses of Barter Town assemble at Thunder Dome, Dr. Dealgood acts as the master of ceremonies introducing The Blaster and the challenger Max." tt0089530,YLjwEodCmT4,"When Max tries to leave Thunderdome, Aunt Entity declares that the law was broken, and a penalty must be faced." tt0089530,kJ-UZ4DvYBg,"Master Blaster sets an embargo on energy until Aunt Entity makes a public statement declaring ""Master Blaster runs Barter Town.""" tt0116253,ZJF_1LQbKiM,Grant makes a crash landing at a private airport. tt0116253,iewhzdra0DU,Grant reveals to Hassan that there is no longer any way to detonate the bomb. tt0116253,Xaj3Ohn7YrE,Grant is discovered by a flight attendant while descending the 747’s elevator shaft. tt0116253,NsRhhZPAGLI,Nagi Hassan murders his second in command. tt0116253,LtFw6_YJiFs,The commandos board Oceanic Flight 343 through a modified stealth bomber designed to bridge two planes in flight. tt0116253,n3YqrYcnfpE,Cabin pressure is lost when a terrorist shoots out a window. tt0116253,RY_D9rFoWLo,Grant takes the Sleeper by surprise as the commandos retake the plane. tt0116253,0EQXnRlIbXs,Grant persuades Jean to help retake the plane. tt0116253,NJQz-0F61yA,Cahill and 'Cappy’ discover the bomb is a decoy. tt0116253,bBHFfXCAPLc,The commando team communicates with American jet fighters using Morse Code on the tail lights. tt0053125,h5nhyFFSweU,Roger Thornhill and Eve Kendall flirt on the train. tt0053125,GRrLWGMz5XY,Roger Thornhill and Eve get to know each other a little better in her bedroom. tt0053125,7bCca1RYtao,Roger Thornhill and Eve fight for their lives atop Mount Rushmore. tt0053125,aU9RYKxkRJk,Roger Thornhill and Eve have a romantic reunion in the woods. tt0053125,nPeH0w6ZXZM,Roger Thornhill proposes to Eve while they scale Mount Rushmore. tt0053125,L7YVcnBbeeI,"After a fake skirmish, Eve Kendall shoots Roger Thornhill with blanks." tt0053125,sIY7BQkbIT8,"Stranded in the middle of nowhere, Roger Thornhill runs to survive an attacking crop duster." tt0053125,A7gKFleV_JU,Roger Thornhill is accused of Lester Townsend’s murder while visiting the UN. tt0053125,XBz2wuGU9Cs,A jealous Roger Thornhill confronts Eve and Mr. Vandamm at an art auction. tt0053125,YEv7cVW8hBA,Roger Thornhill heckles the auctioneer to keep Mr. Vandamm and his men from capturing him. tt0093713,7qNZYicSJPk,Pelle stumbles upon a pregnant Anna hiding in the chicken coup. tt0093713,wIuKvNAGsH4,Lassefar meets with Madam Olsen. tt0093713,sPbOZXWbYNI,Niels attempts to redeem his actions by rescuing sailors stranded in the frozen sea. tt0093713,ObCiRECeCdM,Lassefar and Pelle watch as Erik leads a revolt against the foreman. tt0093713,tK4GDziddRU,Lassefar gets a chance at revenge against the boy who humiliated Pelle. tt0093713,_P97eUT7NH8,Niels's bad decision has serious consequence for Anna and her baby. tt0093713,z-p4LnzhnvE,Pelle proves himself to his bullies by daring to jump into freezing water. tt0093713,G2EcYJ6Zjrk,Pelle is pursued by a group of bullies. tt1391116,pQX-KEXTwmM,Albrecht reads Sarah's suicide note. tt1391116,FAhcPXtCykY,Tommy trains George on the potential impact of war. tt1391116,DTNDgoCP5TA,Albrecht is told the story of a doctor before the war by Sebald. tt1391116,6K-d8DN3wDA,"Albrecht attempts to bond with Sarah, one of the wives in the town they've taken quarter." tt1391116,SNHn_jgFxIA,George eliminates the sole possession of a woman he believes is collaborating with the Nazis occupying Wales. tt1391116,lXS7GWgCBWM,Maggie is given grave news about her husband from a friend. tt1391116,T2SlDOf410Q,Albrecht trie to convince Sarah to leave Wales with him. tt1391116,jKPc2IbQQOQ,Tommy believes he has come to a Welsh village unaware it has been quartered by a Nazi platoon. tt2586118,bmIP1NM8GwU,Dave realizes he has been set up by his brother. tt2586118,p4lBFrh79OI,"When a dog threatens to expose the murder, Kenny takes matters into his own hands." tt2586118,twPxMYSEJ-8,Tensions arise when Dave and Kenneth attend a family dinner. tt2586118,QLXSp9erPv0,Dave confronts Kenny after nearly being killed by Kenny's assassin. tt2586118,gCF11he-_iU,Dave and Kenny discuss what to do with Khalid's body. tt2586118,PywpJSG1dTM,"After being saved by his brother Kenny, Dave makes a grisly discovery after trying to call the soon-to-be mother of his child." tt2586118,u_nHHDkfBWQ,"Dave tells Kenny that he is not like him, but Kenny pleads with him not to spill the truth." tt2586118,LyhRCLswT6A,Stef tells Dave why he no longer sleeps with women. tt3700392,-HjYVQXvxVk,"After taking Klara off the property, Fräulein Rottenmeier gives Heidi a bit of discipline." tt3700392,EfHvcHYz-tY,Fräulein Rottenmeier attempts to clean Heidi of her country ways. tt3700392,lwH4vtb9GA0,"Heidi, inspired by her favorite book, begins to excel at reading." tt3700392,xM4-RnBk-9Y,Aunt Dete tries to convince Heidi Anna Schinz and Grandpa that Heidi is better off living in the city. tt3700392,mKLjOr5M5zg,"Heidi decides to leave the mansion, much to the chagrin of her best friend Klara." tt3700392,FH6ODEaH5hI,Klara surprises Heidi Anna Schinz by chasing a butterfly. tt3700392,KXXwH7C3UjE,Heidi shows Klara how to do things in the Swiss countryside. tt3700392,Kkg6cnUZ2vU,Heidi Anna Schinz finds her country upbringing doesn't fit well with Fräulein Rottenmeier's lessons. tt0277027,ONRzdzRMVsQ,"Lucy lies to get back with her dad, even though Sam would rather she tell the truth." tt0277027,i7QDt-z8ZjY,"After Rita makes a witness cry in court, Sam offers to buy her lunch." tt0277027,oBURpv30IkA,Sam's friends help him pick out some great shoes for Lucy. tt0277027,MqIJKnUkGLY,"During his trial, Sam quotes from the movie ""Kramer vs. Kramer"", but it backfires on him." tt0277027,lRlgx_GFwyI,Rita encourages Sam to fight to get his daughter back and admits that her life is full of pain and suffering as well. tt0277027,81XTZOlNHEU,Sam visits his daughter at Child Services and she asserts that he will always be her daddy. tt0277027,1SkWbujEeLM,"Sam learns that Lucy is afraid to surpass her father, but he encourages her to do her best." tt0277027,dAlYuokC9R0,"Lucy asks her father many questions, including why he is different." tt0277027,9fUtcVIlocI,Sam works at Starbucks and barely makes it to his daughter's birth. tt0106701,KQDbtR9Z-zo,Switchblade Sam cases the neighborhood and even steals an apple from an adorable little boy tt0106701,Tiz3eN3KJRQ,Dennis tries to get Switchblade Sam to eat the beans so he can get the handcuff key. tt0106701,eL62rDiuqDE,Dennis ruins Mr. Wilson's gathering to watch a rare plant bloom for the first time in forty years. tt0106701,zUhsEXaj_oY,"Dennis teaches Switchblade Sam how to tie him up better, but Sam ends up tied up." tt0106701,fmRWWrBqiJE,Dennis helps Mr. Wilson take an aspirin with his slingshot. tt0106701,PkCxda_9xRc,Dennis becomes Switchblade Sam's hostage - which is bad news for Sam. tt0106701,uE8yYJmpxeI,Dennis replaces Mr. Wilson's mouthwash with toilet cleaner. tt0106701,JX2gQZj3-NI,Dennis pranks his babysitter while Mr. Wilson tries to get revenge on Dennis. tt0106701,dkjBBdHZNUs,Dennis and Margaret argue over the merits of men and women. tt0101635,8CZcZ_b-Cmg,Bill and Grey drop off Curly Sue at her first day of school. tt0101635,FT1C1QdiMhw,Curly Sue loudly eats pizza in front of a disgusted Grey. tt0101635,oRe8EuewinY,"Upon learning that Walker called the police on Bill and Curly Sue, Grey thinks that it is time to end their relationship." tt0101635,CL3IXUZKbto,"Bill, Grey and Curly Sue start a new life together." tt0101635,nS-0lfCTcrk,"Grey goes shopping for Curly Sue and Bill, but Curly Sue is not too thrilled on how she looks." tt0101635,Qfv31xWBgGI,"While eating dinner, Curly Sue teases Bill about his attraction to Grey." tt0101635,BGmXnidRtoA,Grey confronts Bill about his intentions with Curly Sue and asks about her family. tt0101635,n4pUbyGBD18,"Bill Dancer and Curly Sue practice and execute their ""getting hit by a car"" scam on Grey Ellison." tt0094027,eU4-wIieuWU,"Mr. Escalante accuses Educational Testing Service investigators, Dr. Ramirez and Dr. Pearson, of singling out his students because of their race." tt0094027,PI35KfPB7nM,Dr. Ramirez and Dr. Pearson investigate Mr. Escalante’s class for suspicion of cheating on the AP calculus test when they discover a similarity between their errors. tt0094027,mbKiHp_ljJY,"In order to catch his students up to calculus level, Mr. Escalante must teach them over the summer in a non-air-conditioned locker room." tt0094027,LauRAuoFO0U,The presence of the school principal doesn’t stop Mr. Escalante from using an unorthodox word problem to teach algebra. tt0094027,A2yqIm58ULo,"Mr. Escalante asserts to his peers that students are capable of more than what is expected of them, that all they need is “ganas,” or desire." tt0094027,vEj9ZwIzk44,Mr. Escalante meets the troublemakers of the class. tt0094027,obnODOdLD7k,Mr. Escalante singles out resident tough guy Angel while teaching the class the concept of negative and positive numbers. tt0094027,T8KFieVkVkU,"Mr. Escalante makes the kids sign a contract that they will commit to studying calculus, but Angel arrives late." tt0094027,a81pNygdAXw,"Mr. Escalante’s intention to catch his students up to Calculus level grates upon department head Raquel, who doesn’t believe it is possible." tt0120094,HIBYaeYQF0k,Abraham rants to Selena and Abie about how difficult it is to satisfy being both Mexican and American. tt0120094,fFE8_U07a5I,Selena communicates to Chris her dreams for their future. tt0120094,YR4qgOi7VQ0,Abraham counsels young Selena to be true to her Mexican roots. tt0120094,FYnYxm5Awfg,Selena and Chris attempt to tell Abraham that they have eloped. tt0120094,aB0ABzNHvAE,Selena has a heartfelt talk with Chris where he declares his love for her. tt0120094,_CuZqXrhEZI,"Selena visits Chris after her father forbade them to see each other, and the two decide to get married." tt0120094,f86_fLGHu6M,Abraham steps in the way of Selena and Chris’s relationship. tt0120094,Kkl4-30oHVU,"Selena uses her feminine wiles to capture the attention of two cholos driving by, who are more than happy to assist with the stalled bus." tt0120094,a66f39DMwtY,Selena's life ends tragically and the world loses a star. tt0817230,zkWthOfGYgM,Estelle and Edgar listen to their granddaughter Grace complain about her ruined romantic moment. tt0817230,hbDdiPNS3ck,Willy and Felicia tell how they met. tt0817230,qVzY2wmo8C4,Julia poses as a waitress to make her adulterous boyfriend Harrison very uncomfortable at dinner. tt0817230,BR-kA4Jnn8M,Felicia shows off her dance moves and her love for Willy. tt0817230,STl0s9g_FwA,Estelle finds Edgar at a film screening and asks for his forgiveness. tt0817230,cmgeSY8YdO4,"Kara, depressed over Valentine's Day, meets the charming Kelvin Moore." tt0817230,WZNe0TD1E-I,Felicia shows Julia her Valentine's Day gift. tt0817230,PBVW7az0PkM,Holden flirts with Kate on the plane. tt0817230,__f2KtcXAxI,Felicia gives Willy his Valentine's Day gift. tt0065446,tDlL6QWvKNk,"Cable Hogue buys a claim in the desert where he has discovered water, but he doesn't have much money for it." tt0065446,-KVNfZo-cfc,"As Cable lies dying, he asks Joshua to give him his funeral sermon." tt0065446,xcfYbwSXFVw,Cable Hogue meets the Reverend Joshua Duncan Slone at his watering hole and forces him to pay the fee for a drink. tt0065446,QyvbqZqQ0xI,Cable Hogue impresses the bank president who decides to give him a loan to develop his property. tt0065446,Mcf2hNBzwqg,Cable gets his revenge on the men who left him to die in the desert. tt0065446,yxlXYm5Uo08,"Cable meets a lovely woman named Hildy, but he can only concentrate on her cleavage." tt0065446,yaoCvjqu_co,Cable decides to spend part of his bank loan on the beautiful Hildy. tt0090856,ajm_632U-Ac,The Club Paradise guests spend some time gambling at a casino. tt0090856,RFAiq0Qr6uQ,"Jack meets the local islanders, including Governor Anthony Cloyden Hayes." tt0090856,YihADAPOCWU,Barry and Barry take a scary ride to score some quality marijuana. tt0090856,nS1ePEA5XeQ,Barry and Barry get some encouragement from Jack Moniker while Linda goes parasailing. tt0090856,8DrF70mcr38,Jack enjoys some time in jail. tt0090856,yat2WR8Ishk,"Jack scuba dives over to a yacht to spy on the construction plans, but he uses a helium tank rather than an oxygen tank." tt0090856,530g3-fuGGU,Governor Hayes and Jack help avert a civil war on the island. tt0090856,2heRUn56wrg,"Jack finds a new chef for the resort, but has to figure out a solution for his enormous hair." tt0094921,4qseBKnxIpQ,Isabelle realizes how much Sam likes her and is disappointed in herself for wanting to set him up with her friend. tt0094921,76pNjmVp58w,Bubbie tells Sam how she found the right man for her. tt0094921,B3thiUpvzKo,Isabelle rebels against being set up by the matchmaker. tt0094921,40JQrUnvKUw,"Sam gives Isabelle a new hat which she loves. The problem is, she doesn't love him." tt0094921,oQIubudKQQE,Isabelle's date gets very awkward when she introduces Sam to her friend Marilyn. tt0094921,pWt-GnERki0,Isabelle's grandmother sets her up with a matchmaker specializing in nice Jewish boys. tt0094921,MP414NY4kfA,Isabelle hurts Sam's feelings again when her grandmother invites him over. tt0094921,HAal8jdk5gk,"Isabelle realizes that Sam is not only a nice guy, but the right match for her. Bubbie feigns amnesia, but is happy Isabelle came to her senses." tt0094921,Kxyzb8LbVKQ,"Isabelle is disappointed to be matched with Sam Posner, a pickle salesman." tt0085333,5rOdGpkURD8,"While on a date at the drive-in, Leigh confesses to Arine that she hates his car, an opinion Christine doesn't care for." tt0085333,IurXrQqZufM,Dennis attempts to take out Christine and stop a possessed Arnie from running down Leigh. tt0118661,056HlHORCIU,"While driving, John Steed and Emma Peel are attacked by a swarm of robotic bugs." tt0118661,Tx1mcALQCFg,"Emma Peel attempts to shut down the weather machine, but is attacked by Bailey." tt0118661,Iqiyy26sW-Q,John Steed and Emma Peel barely escape a swarm of weaponized bugs only to run into a tommy gun packing older woman. tt0118661,msqRzlYXXQE,A drugged Emma Peel stumbles around a mansion only to find herself trapped in a series of rooms and stairs that have no logic. tt0118661,w_5OidjXy5o,John Steed confronts Sir August de Wynter as the mad man's weather machine destroys London. tt0118661,IjGKv209gAE,Secret agent John Steed goes through a training course. tt0118661,W1c-QSe7uU0,Sir August de Wynter holds a meeting with all those involved in his evil weather controling project. tt0118661,oXpKBkMq_OM,Agent John Steed stumbles across a group of henchmen. tt0118661,jCh_3SFr7M4,John Steed and Emma Peel get to know each other over a playful sword fight. tt0118661,HGL0CEjSHog,"While exploring a hedge maze, Emma Peel falls into a trap and John Steed finally meets Sir August de Wynter." tt0085333,xrO8AQ4CrKk,"Christine hunts down Moochie, who can't escape no matter how far he runs." tt0085333,zNSDAaeIh7U,"Christine, out for revenge, chases down and kills Buddy, Richie and Don in a roar of fire, metal and speed." tt0085333,oezKQEF0deY,Arnie realizes the true power of Christine as the automobile supernaturally fixes itself. tt0085333,gt6_2qd75F8,Dennis and Leigh put an end to Christine with some help from a bulldozer. tt0085333,A8BfSnbFxj4,Darnell investigates Christine after the car comes into the garage smoking like a chimney. tt0085333,4koPfEQVo44,"In 1957 Detroit, a red-and-white Plymouth Fury seems to be cursed with death before it even comes off the assembly line." tt0085333,HYqSugRiG5Y,Dennis tries to confront Arnie about how much he's changed. tt0085333,gjjJePytKig,Buddy and his gang sneak into Darnell's and destroy Christine. tt2318092,AOVHdyazjWM,David and Jade fall in love. tt2318092,oVLfIoIujHE,Hugh tries to intervene when he sees David about to break his restraining order and approach Jade. tt2318092,M8yhM7zXdSI,"When Mace gets insulted by a rude driver, David gets payback and takes Jade along for the ride." tt2318092,1J1osn73VYs,"After Jade overhears David and her father talking, she slips out of the house to kiss David." tt2318092,wxV84RoUr_U,David takes Jade on a surprise trip to see her brother get married. tt2318092,XlJpElakwP4,David and Jade have their first dance at her graduation party. tt2318092,bpNxVXA5dcQ,Jade loses her virginity to David. tt2318092,3bHDHRxatZg,Hugh must let go of his son's death in order to save David from the fire. tt2318092,_GAA_LvDQMQ,Jade gets in a car accident after she goes to confront David and finds him with Jenny. tt2318092,RHVyIHN6qOE,Jade and David try to cope with being apart while Jade's at college. tt1582465,VBHqNEADzfY,"When David discovers that Dr. Konrad intends to steal his duck-sighting, Peter causes a diversion." tt1582465,rzC1mABvnao,"Dr. Konrad offers his advice on life, death, and birdwatching to David." tt1582465,x3Uw69aKF-Y,"David explains the different types of birders to Ellen and then meets some ""extreme hobbyists""." tt1582465,B1OK0eWfDB8,"At an after school meeting, David tries to convince Timmy and Peter to track down the rare bird he sighted." tt1582465,-48m6UiKt_0,David and his friends visit Dr. Lawrence Konrad to ask advice about how to track the rare bird they believe they saw. tt1582465,NvUnzCHEfoo,"Ellen explains to Timmy that he is being used by a pretty girl, causing an argument which leads to Peter having an asthma attack." tt1582465,KwZmZ6mybdo,"David and his friends finally discover the duck they have been searching for, only to get a shocking surprise." tt1582465,cFl_xXXCo3s,"In the middle of the night on a camping trip, David and Ellen discuss their family troubles." tt1582465,lQdx2baN7Co,"David and his friends freak out when an actual girl comes over, but they soon find that she's only interested in the camera lens they stole from school." tt1582465,5KgptmAR3KM,David gets emotional when he finds that the duck he's been searching for has been shot out of the sky. tt0035015,jDD8IQgUPEU,"Young George Minafer, the town terror, beats a boy and his father." tt0234829,326RvY72nmE,Ryan and Tenley reconcile after she mows his lawn. tt0234829,wt0klpk3tBA,Ryan loses his composure in the game and loses the game. tt0234829,vOJ1HPBID5A,Ryan is hurt when he realizes that Tenley and her family are in a different social class. tt0234829,cE5l32W6Oxc,Domo is seduced by his house mother. tt0234829,V4UM9BrSqos,"Tenley Parrish tries to flirt with Ryan, but keeps embarrassing herself." tt0234829,JzVCSXWeNnA,Ryan and Tenley are very emotional upon saying goodbye. tt0234829,a7XZaIy4a9k,Tenley gives Ryan some heartfelt advice. tt0234829,-Svsz19yyPM,"When Dede steals Ryan's underwear, he borrows her thong, but it leads to an embarrassing moment." tt0234829,xz3nif1TPDk,Ryan leaves his no-hitter game to chase Tenley down and not let her leave. tt0234829,ChD8PRF0hBg,"Ryan encourages Tenley to follow her dreams, but some of their drunken friends burn down the press box." tt0096486,3jWrsTACVn4,"On a date with Marie, Einstein puts the Theory of Relativity together." tt0096486,IkVavN1lo9E,Einstein returns home to a proud mother and father. tt0096486,9YgorDRKoEo,"Einstein absorbs too much atomic energy, but he saves the scientists." tt0096486,x9mLSJS0n3Q,"Einstein gets a new job and discovers the key to the universe, but his parents are most impressed that he's met a girl." tt0096486,uhkfz535fR8,"At the Science Academy Awards, Einstein invents Rock 'n Roll to diffuse the power of an atomic bomb." tt0096486,PXaE-weoKCo,Einstein has dinner with other inmates at the asylum. tt0096486,yQVdwJcerjw,Einstein meets the lovely Marie Curie and the pompous Preston Preston on the train. tt0096486,Ra7oqFqj9uU,Einstein figures out how to add bubbles into beer. tt0056218,JSX5qtBpL2g,Mrs. Iselin tells Raymond that his Communist girlfriend is not acceptable. tt0056218,p3ZnaRMhD_A,The obsessed Mrs. Iselin gives her son the final instructions on how to assassinate the Presidential nominee. tt0057193,w_92-vVfgrw,"Culpepper is chased onto a rickety fire escape that breaks, causing the suitcase to open and spill the money down on the crowd." tt0057193,FxvvnlcqLz0,A wild car chase through the city commences with two taxis hot on the heels of Culpepper and the money. tt0057193,Hln19l9RtWg,Hawthorne talks bosoms with Finch while Culpeper refuses to help free the Crumps from the basement. tt0057193,CY5X8DD0ams,A montage of all the characters in the race facing various dangers and delays. tt0057193,1fp6lBNB7aw,"When Hawthorne wrecks the car, a fight breaks out between him and Finch." tt0057193,j-7pVks8avo,"When attempted negotiations break down, everyone runs to their cars and the race for the money is on." tt0057193,Tt-GdLwV4dA,"The rescuing fire ladder breaks under pressure and begins throwing the treasure seekers off, one by one, with comic results." tt0057193,vZqr-1GJIAk,"The injured men lie in the hospital, lamenting their futures. Mrs. Marcus slips and falls and the men burst into loud laughter." tt0057193,oiYBUM-EE-w,"Sylvester tries to convince Finch & Hawthorne to pull over during a car chase, resulting in a wreck." tt0056218,U1GUJMTmoMY,Marco and his men are brainwashed to believe they are attending a meeting of the ladies’ garden club. tt0056218,TzNPYPp_v78,Raymond gets a phone call telling him to “play a little solitaire” and is “activated” when he sees the Red Queen. tt0056218,D7tCnGstwcs,Rose picks up Marco from the police station and tells him that she’s left her fiance. tt0056218,sTcofHd5IlE,"When Marco goes to see Raymond, he is surprised when Chunjin opens the door and the two fight." tt0056218,wH-i4ImreXs,Marco has a nightmare of “the gardening club” where Raymond strangles Ed whil... tt0056218,MZXC37sbqUM,Marco meets Rose on the train ride to New York. tt0056218,GI67NK5cmxk,Raymond visits Senator Jordan at his house and kills both him and Jocie. tt0056218,UwfFWXUEyfQ,"Raymond carries out an assassination, but not the one that was planned." tt0056218,b8Dv782UIb4,Melvin dreams of the gardening club where Raymond kills Bobby. tt0056218,EnfAVLatlmY,Marco breaks Raymond’s trance by showing him a whole deck of red queens. tt0035015,3EeGyS1BOGk,Fanny has a nervous breakdown when George points out the impossibility of moving into a nice house. tt0035015,YauDSh8CfwI,George says a painful goodbye to Lucy. tt0035015,Ys_zYL7K3KQ,Major Amberson succumbs to dementia as the family fortune dwindles away. tt0035015,3pEtiCv07Yc,George meets Lucy and makes a fool out of himself while courting her. tt0035015,vA1fVHBWuBU,George insults Eugene and his invention over dinner. tt0035015,corlGzKJqAc,"As time passes, fashions change, technology advances, and culture evolves in an upper-class Indianapolis neighborhood." tt0035015,dUbNFv_h6Kc,Romance ensues as George and Lucy tease Eugene about his horseless carriage. tt0035015,dudDh8KZiTE,Fanny manipulates George into keeping his mother away from Eugene. tt0035015,BrWwVhnztcg,George finally receives his comeuppance as he moves out of the Amberson mansion into a changing world. tt1488555,RZdQIbRXNCU,Dave teaches Mitch how to be responsible. tt1488555,6p-S9nS21Wc,"Mitch tries to feed Dave's twins, but finds parenthood very challenging." tt1488555,KaqzKhM9-nU,Mitch asks his brother Dave to respect him for once in his life and go out with Sabrina. tt1488555,f0sDG0nnftw,Jamie is shocked when her supposed husband teaches their daughter to solve her problems with violence. tt1488555,4G6VXPkfDvo,Sabrina offers to do something wild and crazy with Dave. tt1488555,cgoMJXAmLdc,Mitch is turned off by Jamie after he watches her experience diarrhea. tt1488555,Q0IQ3GHGXdM,Mitch ruins Dave's company merger by being himself. tt1488555,-2KGPYEFnsU,Jamie breaks down and shares her disappointment with men with the babysitter. tt1488555,lCcWPDXqKi0,Sabrina tells Dave that there are too many rules in society and that people should do what they want. tt1488555,1eSURYocFiM,Dave and Mitch try to explain to Jamie that they switched bodies. tt0423977,vr2jJkcTcxk,Charlie learns about Whitney’s dating life and sets up a date involving Murphey. tt0423977,Vmo12BffgQc,Marilyn interrupts Charlie and Susan right before a first kiss. tt0423977,RNJ7CL89IFM,Susan asks Charlie some personal questions and rewards him for being honest. tt0423977,gTt8yvw4MJE,Charlie Bartlett is kicked out of private school for making fake i.d.'s. tt0423977,JCGqUJddlS4,Charlie and his mom sing a song at the piano. tt0423977,CvoAG6pgdC4,Charlie performs a monologue from the play “Misadventures of a Teenage Renegade.” tt0423977,VlfBJLU-8us,Charlie dishes out advice to Susan in his bathroom office before they have their first kiss. tt0423977,vAYzTJIog1U,Charlie announces the status of his virginity in front of an entire high school party. tt0423977,-arTRBtT9d4,"With entrepreneurial spirit, Charlie and Murphey sell DVDs of the greatest after-school fights." tt0423977,QHU65AAx6uk,Charlie goes on a bender after being prescribed ritalin. tt0245046,jNIMe9C25BY,Charlotte asks her new love what he would think if she went to France too. tt0245046,q_xuviCDyCk,"On her first mission in France, Charlotte's contact is arrested right in front of her." tt0245046,v7tTCb-WU-A,"Julien tries to convince Charlotte to leave, but she has to stay to help the boys, even if it means her own death." tt0245046,g2GlXX8nFHg,Charlotte returns to France and to Julien after the war. tt0245046,6rbUAMnadso,Charlotte helps the Resistance fighters blow up a train carrying German munitions. tt0245046,NTvvUL9OgLU,Charlotte gives the two Jewish boys a letter from their parents that she wrote to give them a measure of comfort on their way to the concentration camp. tt0245046,z4NqFwQCHQg,"Charlotte is reunited with her former love, but she realizes that the war has changed her." tt0245046,Jf_AooayjPw,"After his entire team is massacred, Julien accuses Charlotte of betraying them to the Nazis." tt0245046,XKlt7H8_De0,Renech forces Julien to choose to give his father or the two orphaned boys to the Nazis to fulfill the Jewish quota. tt0245046,v6Tkyyi43OU,Charlotte creates a distraction so she and Julien can escape their Nazi captor. tt0100486,ssZ1pf2Zuas,Alan Dershowitz debates Sarah over strategy in defense law. tt0100486,FrxenZhf78I,Alan Dershowitz meets with Claus von Bülow about the possibility of representing him in court. tt0100486,1fN7M_u4xt0,David Marriott is offended when Alan Dershowitz rejects him as a witness. tt0100486,B13fDbQ75Sk,Alan Dershowitz introduces new evidence in an appeals courtroom by citing precedence from the presiding judge. tt0100486,a7Y0CTo21uQ,Sunny von Bülow argues with Claus von Bülow on the night before she falls into her second coma. tt0100486,N5PNlMUcaPE,Alan Dershowitz argues with his law student Minnie about the idea of defending guilty people. tt0100486,DCW8XHP8ap4,Alan Dershowitz meets with Claus von Bülow to discuss the facts about his wife's illness. tt0100486,15bAAD-awjk,Alan Dershowitz informs Claus von Bülow of their legal victory. tt0100486,Y5L_REhifRg,"Sunny von Bülow describes her two comas and the suspicions her children had about her second husband, Claus von Bülow." tt0100486,m7gCydjomXE,Claus von Bülow describes his usual morning routine on the day he found his wife Sunny von Bülow passed out on the bathroom floor. tt0093660,5H7YGAM9Na0,The Judge announces his decision on whether or not Claudia is mentally competent to stand trial. tt0093660,CDwnIJ5ohu4,Claudia makes one last plea to every person in the courtroom that she is more sane and responsible than they all think. tt0093660,L0PPveTZVsw,"While questioning Claudia's stepfather, Levinsky realizes the cause of Claudia's troubles." tt0093660,d1ZUnCbVoZQ,Claudia is questioned by Levinsky to see if she is mentally competent enough to stand trial. tt0093660,l7X3t5SOcFY,"Public defender Aaron Levinsky meets with his new client, the very difficult Claudia Draper." tt0093660,AOv5WvKX57s,Prosecutor Francis MacMillan tries to get Claudia to admit she made a living as a call girl. tt0093660,0_UCPY-mSZU,Public defender Aaron Levinsky wins over the trust of Claudia Draper. tt0093660,oMt4F9ELo3U,"After killing a man in self-defense, Claudia Draper finds that her parents have hired a lawyer to declare her mentally incompetent." tt0093660,Bo-2-sJi7Uk,"While on the stand, Claudia is asked by MacMillan if she trusts anybody in the courtroom." tt0120458,ppfnHlRju7Y,"The surviving crew, led by Steve and Kit, barricade themselves in the communications room." tt0120458,MeHr3ZYy_g8,"Steve, Kit and the rest of the crew run into Squeaky who they thought was dead." tt0120458,UISLDo5JtiI,Richie and Woods discover a room on the ship full of robotic technology. tt0120458,Olt04UetqMA,"While a Russian space station is communicating with a research ship, a mysterious mass of blue energy strikes the station." tt0120458,gAbn72Nu_MM,Kit Foster fixes Hiko's injured leg while Steve and Captain Everton look around the sick bay. tt0120458,PKnfWnfvSGM,Kit and Steve discover the escape plan that Richie had made. tt0120458,13UIqhovLmI,"Kit, Steve and Nadia are attacked by Captain Everton who is now a mutilated mix of body and machine parts." tt0120458,usImFOQQEIg,"While Squeaky holds his station in the engine room, he notices that something is pulling the cables into a pipe." tt0120458,jcjMYkD-e80,"Kit, Steve and Nadia are attacked by one of the killer robots while they flood the ship with fuel." tt0120458,k_tU5DWlyeo,"After Richie and Steve bring in a dead cyborg, Kit asks Nadia to explain what it is." tt1564585,qV6EOCw8Zu8,"The only survivors left, Jarrod and Elaine try to escape the invasion but Jarrod is injured and there is nowhere to run." tt0097500,MxMpRqQQ6o4,Phil attempts to romance Nina and she exposes a dangerous instinct. tt0097500,t8vRwv9kRjg,Phil falls to Nina's seductive charms. tt0097500,aSwi8mzc1gA,Phil dresses up as a priest so he can visit Nina in jail. tt0097500,7ZTCXQOU5oM,"At a clown celebration, Phil fights to defend Nina and her family from Communist agents that are trying to capture them." tt0097500,xXLQhqwMT3A,"After making love to Nina, Phil is lovestruck, but then he almost dies in an explosion." tt0097500,jc2T3qbPJNI,"Nina drives Phil to the hospital, but she is a terrible driver." tt0097500,8MSvuqf--9o,"Phil describes what it's like to love Nina, but she accidentally shoots him in the rear with an arrow." tt0097500,RcZo8hHZqkY,Phil explains why his wife left him and finds himself powerfully attracted to Nina. tt0097500,vXXDqjLe4Ls,"Phil fears that Nina is a murderer so is reluctant to let her cut his hair, but then he enjoys it." tt0097500,ZBqZpBkiLiI,"Phil opens up to his family about his doubts, but no one pays any attention to him." tt0120787,H7zXX6EqGbI,"Emily suspects her husband tried to kill her, but he offers another explanation where he comes out as a loving husband." tt0120787,G7_Mq3-ivsM,Emily tricks Steven into revealing the truth - that he did plan to kill her. tt0120787,m2tk7RatWsk,"David tries to flee with the money, but Steven has other plans for him." tt0120787,xeLH_cCCgr0,David blackmails Steven for the money even though the murder didn't go as planned. tt0120787,TMeiAg1kXKs,Steven feeds his suspicious wife a string of lies to throw her off his trail. tt0120787,ja00D_L5tm8,Steven is observed very closely by the chief detective on the case as the identity of the killer is revealed. tt0120787,5cbim7n9ARs,Steven walks David through the plan he's made for the perfect murder of his wife. tt0120787,jy9IGBTGVRQ,Steven reveals that he knows David is having an affair with his wife and then asks him to kill her. tt0120787,JanwLiyFPAU,David Shaw and Emily Taylor get caught flirting by her husband who knows they are having an affair. tt0113870,hQm4WGUJtQo,"Henri can't believe that in the three years that he suffered in solitary confinement, Stamphill didn't see a single baseball game." tt0113870,F9ScROJxATc,Rookie attorney Stamphill decides to take on the institution of Alcatraz for changing his client into a murderer. tt0113870,NZ-u1BXI0YQ,Stamphill questions the warden and blames Henri's murder on him. tt0113870,hR8yyXbTjNg,"When Henri decides to change his plea to Guilty, Stamphill forces him to tell the frustrated judge himself." tt0113870,aTc9vNCS8vo,"Henri doesn't want to think about his trial, but Stamphill learns that the prison only let him out of solitary confinement for 30 minutes a year." tt0113870,JZzbTqTLiqU,"After being found not guilty of first degree murder, Henri returns to Alcatraz to serve his remaining time for involuntary manslaughter." tt0113870,9zdo9xIvR9M,Assistant Warden Glenn applies his ruthless brand of discipline to Henri Young after a failed escape from Alcatraz. tt0113870,YwUShaY_lew,Stamphill reveals to the court that Henri would rather receive the death sentence than go back to Alcatraz. tt0113870,ANAUjvgYxjQ,Stamphill questions Glenn who is responsible for leaving Henri in solitary confinement for three years. tt0113870,XiXa1C9FECU,Henkin threatens Stamphill about taking on Alcatraz and its warden. tt0444682,p_jspptikh8,"Ben, Doug and Katherine talk faith when suddenly their food gets covered by flies and maggots." tt0444682,GfhCds4VHbo,"Katherine and Loren are surrounded by Doug and the townspeople, who try to convince her to kill the child." tt0444682,BVrhwsgCuFU,"Katherine meets Mrs. McConnell, who seems to want her daughter dead as much as everyone else." tt0444682,57MtQQ5sm24,"Katherine, Doug and Ben watch in horror as thousands of locusts appear to protect Loren McConnell from townspeople." tt0444682,NWUxk3JPaqU,"When Doug, Ben and Katherine arrive at a farm where the cattle have gotten sick, they are attacked by a bull." tt1139668,Tt2oL1sVVhM,Arthur Wyndham and Rabbi Sendak attempt to perform an exorcism on Casey Beldon. tt1139668,ioQQ3gbY0vY,"While throwing up in the empty bathroom of a club, Casey hears a child whispering from the stall next to her." tt1139668,gq5WIcSz2ko,"Sofi is attacked by the evil spirit, who has taken over the body of an elderly man." tt1139668,RsSltFwkLPE,Casey discovers Matty strangely showing his infant sibling its reflection. tt1139668,n9uVWlO0GAs,Casey Beldon falls asleep only to wake up on the ceiling looking at her own body. tt1139668,jaM0sgoi0vw,Casey Beldon is jogging one morning when she has visons of a ghost child that becomes a dog wearing a mask. tt1139668,tKei1kTWmKU,"Romy is attacked by a child who is possessed by the dybbuk. Mark and Casey arrive to stop it, but it's too late." tt1139668,yoYPBCFehng,Rabbi Sendak finds a dog with its head twisted upside down in his synagogue. tt1139668,7UnKOlleCCw,Casey discovers Matty strangely showing his infant sibling its reflection. tt1139668,d5gSQLPcya0,Casey and Rabbi Sendak defeat the dybbuk after it possesses Mark. tt0444682,kZQ87E53U_A,"While investigating a river turned red, Katherine is startled by a little girl named Loren and gets a strange vision." tt0444682,SSY6_T2oAow,"While doing tests on a river that has turned red, Ben witnesses frogs seemingly falling from the sky." tt1190080,oYet52yPgu0,"As Los Angeles crumbles beneath them, Jackson and his family try to escape the city by plane." tt1190080,S1Kbym7WYzs,"As the Yellowstone Caldera erupts, Jackson and his daughter Lilly race to get back to the airplane." tt1564585,mvgRi4K58U8,"Terry, Jarrod and their girlfriends take two cars and try to escape from the building and head for the water." tt1564585,EqW_b9Ec75w,"After the army starts arriving to fight off the aliens, Jarrod and Elaine go to the rooftop to flag down a helicopter." tt1564585,Qrj9qKZCuCw,Jarrod and Elaine attempt to fight off an alien on the rooftop while Oliver attempts to kill off the gigantic alien beast. tt1564585,C0gEMF9Tx7o,"Jarrod and the grils run into another alien in the parking garage. Oliver arrivals and kills the thing with his car, but it comes back to live sucking out the brain of Colin." tt1564585,Ynfvc7uaDMo,"After escaping from an alien in the parking garage, Jarrod, Oliver and three girls run outside and directly into the giant building sized beast that killed Terry." tt1564585,jW9JF2lCjqg,"After being captured by the aliens, Elaine is put with other pregnant women, while Jarrod's brain is put into an alien body." tt1564585,UczxnDAsQjs,The group watches as the Air Force launches an attack against the aliens. tt1564585,TiQrmXZ_SZU,"One early morning in Los Angeles, blue lights descend from the sky and immobilize anybody who looks at them." tt1564585,ppJ38u-KyYM,Jarrod and Terry go to the roof to investigate the blue lights. tt1385826,J440ql0zXuE,David and Elise fall deeper in love as The Adjustment Bureau works desperately to destroy their relationship. tt1385826,7oczRhQvSlE,"Elise freaks out as they jump from location to location, but she ultimately chooses to be with David." tt1385826,lyvAjZw6O_Q,"Thompson tells David that if he stays with Elise, it will ruin his career potential." tt1385826,Fz2HMTuqy98,David takes Elise away from her wedding and shows her the world of The Adjustment Bureau. tt1385826,KblaujDjQ4g,Richardson explains what The Adjustment Bureau does to help humanity. tt1385826,p1e3NC3IIF8,"David runs into Elise on the bus and their intense flirtation continues. Meanwhile, Harry tries to stop them from falling in love." tt1385826,sd2pBde6gkw,David meets the alluring Elise in the bathroom and easily falls in love with her. tt1385826,QiCNpDYavbg,David and Elise's love is so powerful that they force the chairman to rewrite the plan. tt1385826,FMDgoOi_HLk,David runs into Elise again after three years and convinces her that he didn't mean to abandon her. tt1385826,p6oIR31ZgyA,Thompson continues to dissuade David from choosing Elise at her dance recital. tt2910814,Bxh85MB9FOE,Jonah uses his bionic arms to save Nic and Haley. tt2910814,zU19JLG88tA,"Jonah fights his way inside an office to make contact with the outside world, but is instead caught in a massive explosion." tt2910814,ehxd3S2foDg,Jonah explains to Nic that they are trapped in Area 51 with little hope of escape. tt2910814,tIj1luuOfO4,Nic runs to catch up with a truck that has kidnapped Haley. tt2910814,hAVDAEaxv_8,"Frustrated and confused, Nic breaks Haley and himself out of the facility." tt2910814,KUMhlMS-z2I,Nic discovers the true power of his bionic legs and breaks through the barriers created by Damon. tt2910814,mBdFXXV9hwY,Nic discovers that his legs have been replaced with bionic parts. tt2910814,PXmtu0Kd0ms,"After regaining consciousness, Nic is interrogated by Dr. Wallace Damon about the contact he made with an Extraterrestrial Biological Entity." tt2910814,BKkw8FslzOI,"Nic, Jonah and Haley find themselves in extraordinary circumstances while investigating an abandoned house." tt2910814,NPYyV_mq97M,Damon forces Nic to perform a series of mental tests. tt1190080,B-Wf5QOHPxw,Jackson and his family are trapped inside the belly of the Ark when Adrian tells them of an impending crash caused by their stowing away on the ship. tt1190080,1id63E3KgH0,Jackson races to find a map to the arc and get back to his family while Yellowstone explodes. tt1190080,CmMeT8MW1LA,A major Tsunami sweeps the coast of the Atlantic destroying the White House. tt1190080,_TmztVM7Z4s,President Wilson stays behind in Washington as major earthquakes destroy the world's major cities. tt1190080,sIDHrcDf-N0,Curtis and the survivors search for a safe landing spot in the middle of the Himalayas. tt1190080,YnnxVknsLk0,Kate and Gordon discuss their relationship while a disaster looms. tt1190080,qgRXFJqB-9Q,"Jackson Curtis and his family, led by Tibetan monk Tenzin, sneak their way into one of the arks designated to safely navigate the apocalypse." tt1190080,NclH5qEfL5c,Jackson picks his family up in his limo while a massive earthquake starts destroying Los Angeles. tt2024469,nkVUb4kdhig,The hijackers explain their plans to Bill. tt2024469,8QNDAaCu9dI,"When a bomb detonates, Kyle must land the plane safely." tt2024469,10TW3rcKMtA,"While Bill fights the hijacker, Rice has to get the plane to 8,000 feet." tt2024469,uUA0a8U7PdY,Bill enlists help for his new plan. tt2024469,osFbJZfBOyA,Bill confronts Jen about his suspicions. tt2024469,-PzL4MTu3to,Bill announces his intentions to all of the passengers. tt2024469,zT4OxEg_-cY,Bill tries to prevent a death before time runs out. tt2024469,Ltjiyd-THC0,Bill discovers Jack has betrayed him. tt2024469,mDViU8OSRkA,Jen and Nancy help Bill identify who has been sending the anonymous texts Bill's receiving. tt2024469,JjqnoH4D3mo,Federal Air Marshal Bill receives a threat. tt0365907,ehv1cHqfQ-U,"While TJ tries to find the location of the kidnapper's house, he catches a glimpse of a fatal betrayal." tt0365907,6f1VnWuk4C8,Matt gives Kenny the choice to get his revenge. tt0365907,XQ0Tlb8z3ow,Ray and Albert break into Yuri's house to kidnap his daughter. tt0365907,5ZT2Mc8TEIY,Matt makes the exchange with Ray to save the little girl. tt0365907,gvaa1ZpqoUc,Matt tries to convince Ray to meet face to face to make the exchange. tt0365907,S52bKF-hXu4,Kenny tells Matt the story of his wife's kidnapping. tt0365907,slegOy-GQMc,Matt reveals the truth about the shootout to TJ. tt0365907,Sk0iV1R72OM,Matt searches the basement to find Albert and get his revenge. tt0365907,Q780MiOrLwg,Matt teaches TJ the responsibilities of carrying a gun. tt0365907,eFzzQuYRw34,Matt's morning routine is interrupted by local criminals looking for revenge. tt1216491,h9WDm1k4Hz4,"Ian confronts his father, Gary about the mistakes he made in Cleveland." tt1216491,rtYKhaQStZE,Gary interviews Norwin Meneses to dig up more information about the ties between Nicaraguan drug traffickers and the CIA. tt1216491,Q2-4x2KuRqE,"When Gary calls the police due to an intruder in his yard, they help themselves to the evidence he has compiled against the CIA and American government." tt1216491,jjDuR4d7Iik,Gary is forced to defend the reliability of his exposé to his coworkers. tt1216491,od6IxUWPMcs,Gary Webb further investigates American involvement in Nicaraguan drug trade by speaking to federal prosector Fred Weil. tt1216491,uLhrOeavvOY,Gary discovers that his motorcycle has been stolen. tt1216491,HYzSQZdBWVQ,"Gary Webb gains critical information from former drug dealer ""Freeway"" Rick Ross about an alleged government conspiracy." tt1216491,NRBLTtDkQXU,Anna warns Gary and Susan that the media has uncovered several details about their private lives. tt1216491,hQUBid6LIPU,Gary addresses the crowd about the corruption of the media during his award acceptance speech. tt1216491,Mfcqb8DD400,"Through interrogation of Danilo Blandon, Gary discovers that the CIA has been collaborating with drug traffickers." tt0054135,dwzoyEaHxSM,Sam asks Beatrice Ocean what happened to her and Danny's marriage. tt0054135,PkLpd8Eaah0,The team cuts the power to the Las Vegas casinos and robs their vaults right after midnight on New Year's Eve. tt0054135,U-7MSowBlG8,"After Danny reunites with Sam, the two pull a prank on their old friend Spyros." tt0054135,ZtHl67Oeb5I,Red Skelton is thrown out of the casino while Danny watches. tt0054135,IXwwGEJkx8Y,Duke threatens to contact the police if Danny and Sam don’t give him fifty percent of the money they stole. tt0054135,lV2XAU1JzuI,Josh is ecstatic when he successfully transports the money past a fleet of cop cars. tt0054135,14Et05Okf8w,Danny tries to win Beatrice back by telling her he’s about to become a rich man. tt0054135,npvFfvyT8Pc,Vince talks to Josh Howard about the big heist. tt0054135,klt86blKwaA,Sam distracts a drunk girl so that Tony can carry out his part in the heist. tt0054135,1D4VF4WqJSE,"When Adele accuses Danny of seeing his ex-wife, Danny makes it very clear that he does not owe anything to Adele." tt2349144,_eHwoQ4VQ1o,"Curtis leaves his money to his mother, while Gerry bets his last one hundred dollars on at the roulette table." tt2349144,pzG1ckuBqpg,Gerry and Curtis lose all their money on one final bet at the racetrack. tt2349144,E0i4dabbAcI,Gerry's luck turns when he loses everything on the final card of the game. tt2349144,wZcRiRs1x-8,Curtis finds Gerry on a huge winning streak at the casino. tt2349144,JbuGOroCWaI,Curtis buys Gerry a proper bourbon after beating him in a hand of poker. tt2349144,ePlb7b2nQm4,Gerry and Curtis decide to bet everything on a roll of the dice. tt2349144,VU3Tu4K4MOo,"After Vanessa shares her magic trick, Gerry plays her a song on the piano." tt2349144,gxhMfM0QlwM,"Gerry tells Curtis his plan to gamble down the Mississippi River, and then asks to be staked in the big poker tournament in New Orleans." tt2349144,iTQ4b0d3HxM,Curtis and Simone talk middle America trivia and then discuss their relationship. tt2349144,ovxjAnlr7qg,Curtis and Gerry meet up with Simone before playing a tournament on a riverboat casino. tt2349144,Tn44a8_14LU,Gerry reveals to Curtis that he lost everything they have back in Memphis. tt0264935,2l_mfcc2I8E,"After months of talking about it, Richard and Justin kill a woman." tt0264935,NCUOJMkDAyI,Justin and Richard briefly discuss freedom and crime in class. tt0264935,vlg5VPKbGQg,Richard considers confessing as Detective Kennedy tells him that Justin already is. tt0264935,0IQgjMYWVGc,Detective Kennedy explains to Richard how he thinks the murder was committed. tt0264935,yzera03y4_0,After running from the police Justin goes to Lisa and tells her what he did. tt2377322,jXKc-0nVIkQ,Ralph helps Mendoza through the first stage of Santino's exorcism. tt2377322,_zHhry-Ot0Y,Santino is successfully exorcised. tt2377322,L9x5p-s4zKs,Mendoza absolves Ralph from his most regrettable sin. tt2377322,Mgc3y6p-Bys,"When Jane's corpse falls on Ralph's car, it doesn't take long for him to discover that Santino is at his house." tt2377322,iVsfWht3zmo,Santino mutilates himself during Mendoza's exorcism. tt2377322,onO71_aItKA,Ralph gets bitten during an interview with a possessed inmate named Jane. tt2377322,X67GWsa_NNM,Ralph calms Mendoza down when Santino starts to get to him. tt2377322,HPir9pU9shw,Christina wakes up to scary noises and a strange man in her house. tt2377322,DooTtUcpKM4,"While watching military footage from a suspect's camera, Ralph discovers the words written on a wall match the ones he's been seeing at crime scenes." tt2377322,-Lrndfrc9yU,"While Ralph discovers a message painted on the wall in a suspect's home, across town his daughter Christina is awakened by scratching noises in the night." tt0102915,hRg2HEpwD5A,"Although exhausted and wounded, Kenner finally faces off against Yakuza boss Yoshida in a sword fight to the death." tt0102915,b7AjNXAF-7Y,Sgt. Kenner fights his way into crime lord Yoshida's home to stop Minako Okeya from commiting suicide. tt0102915,fmMPmWO6b4E,Johnny Murata faces off against Yoshida's right hand man as Kenner takes care of the rest of the henchmen. tt0367652,BRBSfKmp3vs,Deuce finds Heinz dead and brings him back to T.J.'s float crib. tt0367652,w71pHLUz2i0,Gasper attacks Deuce after he foils the killer's plan. tt0102915,beearAU0yn0,Kenner and Johnny crash a meeting between the Yakuza and local crime lords at a brewery housing a drug operation. tt0367652,fB_fwuJOx7I,Deuce finds the killer's outfit in Eva's closet. tt0367652,XcDzb6AeAI0,"Deuce and T.J. sneak into the Man Whore Society to find the killer, but T.J.'s farting gets them discovered instead." tt0367652,xM1MNPKYl5g,Deuce becomes a gigolo again in order to root out the murderer. tt0367652,b0KSEziycmw,Deuce and T.J. try to convince the European Gigolo Union to help them find the serial killer. tt0367652,hZPz4w3jLXI,Deuce disrupts a porn film set when he believes that Eva is the star. tt0367652,2_BwhA8M9-w,Deuce gets high for the first time and starts to hallucinate. tt0367652,_qh-4JFLd-s,A rude Frenchman disrupts Eva and Deuce's day at the aquarium. tt0367652,-kHMOXNsE2k,Deuce finds T.J. hiding out after being accused of murder. tt0102915,VnLaIBz4VMg,"After escaping from being tortured, Kenner and Johnny enter a scrapyard and get captured by the Yakuza yet again" tt0102915,ZIHWAugnBWI,"Sgt. Kenner and his new partner, Johnny Murata, show off their skills to each other while entering a night club full of criminals." tt0102915,YGwPTU-SvbI,"Police officer Kenner meets his new partner, Johnny Murata, while fighting the Yakuza in a Little Tokyo resturant." tt0102915,e3RDBiiOJaY,Sgt. Kenner attempts to break up an illegal fighting match only to get caught up in a shoot out between Japanese gangsters. tt0374536,vjmHq57MZso,Isabel gets jealous when Jack's wife visits the set. tt0374536,NHg_SEfj38M,Isabel tries to tell Jack that she is a witch. tt0374536,Q49KVa7jotI,Jack rushes to find Isabel before she leaves. tt0374536,T5p0IaOt3tQ,"Jack is visited by his favorite character, Uncle Arthur." tt0374536,HUKu_iqYDOA,Jack asks Isabel to audition for the role of Samantha after he sees her do the famous nose twitch. tt0374536,Jx-I8OfW0GI,Jack convinces Isabel to come back to the show. tt0374536,kZg0_oypRpU,Isabel gets revenge on Jack in the middle of filming an episode. tt0374536,fYNZsz9o3Sg,Isabel goes off on Jack after he throws a tantrum on set. tt0374536,KOBGjFHXnqY,"Isabel's father, Nigel, tries to persuade her not to give up being a witch." tt0374536,D_FRoxgOUNA,Jack falls in love with Isabel and takes her on a date after being hexed. tt0095925,b2hhdMiOTOE,"When Tracy shoots Ed, Pumpkinhead ignites in flames." tt0095925,gxacglqQMqE,"After Steve goes missing, the remaining men head out to find him, leaving the girls behind." tt0095925,hwb1MK66new,"As Joel fights Pumpkinhead, the creature drags Kim away and drops her from a tree." tt0095925,abTZPgqiEto,Ed Harley has an old hill woman use her powers to summon Pumpkinhead tt0095925,_oEolYMce4c,"While Steve has a heart to heart with Maggie, Pumpkinhead interrupts and kills him." tt0095925,cfB1QaweRKU,"When Joel shoots Pumpkinhead in the head with a rifle, Pumpkinhead takes the rifle and stabs Joel in the chest." tt0095925,ALYPTuyCxqI,Joel accidentally lands his bike right on young Billy after a big jump. tt0095925,YZ5Y_GhXMKw,Jimmy Joe is taunted by his kin who begin chanting the “Pumpkinhead” song. tt0095925,ek0jTQAdN8Y,Pumpkinhead attacks a ruined church while Bunt is attempting to help Tracy and Chris. tt0095925,fvNfhUZ-5z8,"Clayton begs Tom to let him in his house and protect him from Pumpkinhead, but Tom refuses." tt2788710,IsG-jJcrlr0,Dave tells the CIA that they are going about this assassination thing all wrong. tt2788710,OyziGbUQBIc,Dave and Aaron deal with the fallout following the announcement of their interview with Kim Jong Un. tt2788710,fnpUxSXWy6I,Dave and Aaron are approached and propositioned by Agent Lacey. tt2788710,dN1RMOrtK7A,"Aaron is sent on a mission to retrieve a package from the CIA, but meets a hungry tiger." tt2788710,EFtdTsawXK0,The CIA convinces Aaron to secure the package in his butt. tt2788710,B8dPQzwGcZI,Dave enjoys hanging out with Kim Jong Un. tt2788710,pb8pWn_yyF4,Dave and Aaron enjoy an evening with Kim Jong Un until one of his officers dies from their poison. tt2788710,eWP8JMcy3O0,Aaron is about to have sex with Sook when Dave comes in. tt2788710,Yo3rEGWrlws,"While Dave's interview with Kim Jong Un goes wrong, Aaron has a bloody fight in the control room." tt2788710,74PUHyVj4BQ,"Dave gets Kim Jong Un to poop on camera, proving that he is not a god." tt2170299,ssK4Uc8SXnU,Guy and Jenny bang out their frustrations with each other. tt2170299,0PtKzdvq7bc,Guy and Chaitanya intentionally misspell their words in order to make the other win. tt2170299,kg2o35acq4c,Guy gives Chaitanya some important life tips. tt2170299,3tMHSQGSUzc,A fed up mother is ejected from the spelling bee when she tries to get Guy removed from the competition. tt2170299,kzVO5JrnEJ8,Guy gets inside the head of Braden Aftergood before he goes up to compete in the spelling bee. tt2170299,GzL4f-4uQVM,Chaitanya introduces himself to Guy on the plane ride to The Golden Quill. tt2170299,s2Tpk6RnkaA,Guy has some harsh words for a mother who tries to confront him about his participation in the spelling bee. tt2170299,TSAdyzdX4eA,Guy sabotages Joyce's chances of winning the spelling bee by convincing her that she has become an adult. tt2170299,SWKDbfvyZMU,Guy tricks Chaitanya into winning the spelling bee. tt2170299,nifcKdVjpbw,"When Guy discovers that Chaitanya has been pretending to be his friend so that he can win the spelling bee, he gets revenge by burning Chaitanya's study guide." tt0243655,pEJHzQIMH5k,Andy gives Beth a hard time while Aaron tries to console Gail. tt0243655,YygwTWUI8vc,"Coop gives a stirring pep talk to the baseball team, but they feel that it's pretty trite." tt0243655,iYf3nqYQXDI,Gene helps Coop get over the pain of being dumped with a killer training montage. tt0243655,B9oxe-Dvvj0,"Henry explains to the kids what ""Associate Professor"" really means." tt0243655,VSdIYNSkQL8,"Andy and Lindsay make out, unaware of the kid drowning next to them. Beth tries to flirt with Henry, the astrophysicist." tt0243655,D-9zx3m6lLU,"Victor desperately tries to get back to Abby, but he crashes the van." tt0243655,E1e4f8YdkLg,Neil and Beth try to find Victor in order to save the kids about to die on the river. tt0243655,lYtc2lvkpTw,Beth takes the gang to town where they have a drug filled time. tt0243655,UyOxOyfX4uM,Gene has a conversation with a talking can of vegetables about being true to himself. tt0243655,glJzhylsfoc,Gene is finally honest and reveals to the whole camp that he likes to hump the fridge. tt0448157,SZ3oe7dJdMc,"In order to save Mary, Hancock fights to escape the hospital and leave Los Angeles." tt0118750,yr-gQl9CKIU,Lysterine is very unimpressed after meeting Bunz. tt0118750,Tt7qQmpLA2U,"Bunz encourages Rushon to dance provocatively, but it backfires on him." tt0118750,dTVEd7WtyAw,A game of footsie gets out of control when Bunz and Lysterine mistake each other for the dog. tt0118750,adatkf9XY44,Bunz and Rushon witness a robbery at a gas station. tt0118750,gIaqrkn0ymo,"When the admitting nurse refuses to help Rushon, Bunz pretends to be a nurse and helps him out." tt0118750,gDSrAm2CKdU,When Rushon and Bunz go out to get plastic wrap they get advice from Judge Peabody on how to behave with morals. tt0118750,wSpvR9B8QXw,Bunz discovers how kinky Lysterine is and Rushon finally has sex with Nikki. tt0118750,YG0VNVGxyYs,Lysterine gives Nikki advice on men. tt0118750,mlkWgiyQ-8g,Bunz and Lysterine end up bonding over Chinese insults. tt0118750,I2v7jlIBL1A,The girls think it's funny when Bunz and Rushon misunderstand the purpose of a dental dam. tt0110657,yRlyvNmVWK0,The monks join Julie for a dance session. tt0110657,lkoWhWGcVR4,Mr. Miyagi continues to train Julie. tt0110657,hprw4GtCu1w,Mr. Miyagi gives Julie a birthday show. tt0110657,7D_6z1EnSik,Mr. Miyagi and Julie run into a group of thugs at a gas station. tt0110657,czJL-TPz-5M,Mr. Miyagi surprises Julie with a prom dress and teaches her how to dance. tt0110657,LlK6pn4qyrc,Mr. Miyagi and Julie have a fundamental misunderstanding. tt0110657,zIKq7DqdZa4,Mr. Miyagi teaches a lesson. tt0110657,yGYPTb9T3MU,Julie is taught the value of life by the monks after nearly killing an insect. tt0110657,xc2Ctw8pGrc,Julie is forced into a match against Ned after the latter jumps her boyfriend. tt0110657,06DLNzLaTlE,Mr. Miyagi watches Julie grow into a strong student. tt0120686,JLvkvjU_iyY,Anna uses Isabel's advice to get back at Brad. tt0120686,mExTnHwAcYY,Jackie says goodbye to her daughter because she is dying of cancer. tt0120686,fQy1yr_K_L4,Isabel tells Jackie about her fear of taking her place as mother when she passes away. tt0120686,RmxqK1np7rY,Luke proposes to Isabel. tt0120686,dH3dqXHH0yU,Jackie is furious when Isabel loses Ben and they find him at a police station. tt0120686,Ghexrw8bpc8,Jackie tells her kids she has cancer and Anna does not take it well. tt0120686,iuPDl6n2vO0,Isabel gives Anna advice on how to get back at her ex-boyfriend. tt0120686,ns3j2exbdbU,Jackie tells Isabel that she has cancer. tt0120686,gj_BH6Suku0,Luke and Jackie talk with the school counselor about Anna's behavior in school. tt0120686,Gx1K7ynF1JM,"Jackie has some fun singing and dancing to ""Ain't No Mountain High Enough"" with her kids." tt0105121,9j3y-J8IzYo,Fool and Leroy find more than they bargained for after breaking into their landlord's house. tt0105121,1kPvrYaCi4c,"After discovering the truth about her parents, Alice attempts to stop the abuse from Woman once and for all." tt0105121,MQ2PrvpAT-k,Fool and Roach escape to Alice's room. tt0105121,EYdIrPSIgio,Fool and Leroy find themselves trapped inside the house as insidious forces chase after them. tt0105121,KnXZP5yMlgw,Fool is captured by Man and fed to the people under the stairs. tt0105121,IBTpVVTZJ5c,Fool and Leroy are chased by Man. tt0105121,UkamBJTqN8c,Fool is chased by Roach after going into the basement. tt0105121,mRIaK9Vf0Ns,Fool and Roach are chased through the walls. tt0105121,JOzVMqp3vMc,Fool and Alice are cornered by Man and his dog. tt0105121,cY8yXitzluU,Fool fights back against Man. tt2403021,iqZB7SIbeL4,Justine finally escapes the cannibal tribe. tt2403021,GwM5LleRnAI,"As the tribe tortures Daniel and Justine, another native arrives with evidence of invaders." tt2403021,13YnorzVWTE,Amy loses control of her bowels. tt2403021,VXDHzJ1LYRs,"When she realizes she is eating a part of her friend, Amy decides to end her own life." tt2403021,fJqWAvvKS1A,"Jonah tries to convince Justine that their activism had an impact. Then, their plane crashes and everyone is injured." tt2403021,t1SbH-c0m_0,"The activists chain themselves to the trees to stop the deforestation of the Amazon, but Justine's life is threatened." tt2403021,b5I9yFdAMzg,"Kara is killed by an arrow, and the rest of the activists are captured by natives." tt0102492,TVViHShXqC4,Vada and Thomas J. share an innocent kiss. tt0102492,woLbaFLoJI8,Vada becomes overwhelmed at the funeral of her best friend and runs away to see Mr. Bixler. tt0102492,c4w-IE-Hsqc,Vada gets teased by the local girls for hanging out with Thomas J.. tt0102492,iJKQl3uGg0I,Vada joins Mr. Bixler's poetry class. tt0102492,IE9S8CehYco,Shelly gives Vada a makeover. tt0102492,ukzIFp4Kj90,Shelly gives Vada a motherly talk about becoming a woman. tt0102492,kP5GKIrGoeQ,Vada's father tells Vada about her mother. tt0102492,fV-wb1gZOyo,Vada's father tells his daughter some tragic news. tt0102492,2vbGcYm8u1o,Vada reads her poem to her poetry classmates. tt0102492,6e4xlcfKHxY,Vada visits the doctor again and Thomas J. finds a beehive. tt0164912,xJb5tOlE1Fs,Stuart returns to the Little house to find only Snowbell home. tt0164912,VCLL9aD-VKw,George begins to warm up to Stuart when they play together in George's playroom. tt0164912,KdOgihoZjZY,Snowbell protects Stuart from the gang of hungry cats. tt0164912,K9z6npGGZAM,Snowbell's friend Monty comes over for a meal and meets Stuart. tt0164912,-MNpOKICOx8,Mrs. Little accidentally throws Stuart into the washer machine. tt0164912,YEdNAX9h_vI,Mrs. Little accidently throws Stuart into the washer machine. tt0164912,sPHeq8OM-dU,Camille and Reggie Stout reveal the truth to Stuart. tt0164912,P-KZ7N30lFY,Smokey and his gang find a lost Stuart in the park. tt0164912,OO4LqRUxinE,Stuart decides to pilot George's boat in the race after he accidently breaks the remote control. tt0164912,ICRVd--TY-U,Snowbell chooses not to give Stuart over to Smokey and his gang. tt0243585,N45Gbn2AtWk,Snowbell refuses to go home and Stuart comforts Margalo when she sees a flock of birds heading south. tt0243585,SVSzVDnvkHw,Stuart volunteers to go down the sink when his Mom's ring goes missing. tt0243585,nJ1hrmVHUJg,Stuart plays his first game of soccer. tt0243585,t9vWi2ItxMc,Stuart bandages Margalo's wing after they are chased by a falcon. tt0243585,Zd27SaRdxiE,Margalo says goodbye to Stuart and the Little family. tt0243585,yYCVu5ZSki0,George covers for Stuart while he searches for Margalo. tt0243585,3cdlwCCzujo,Margalo says goodbye to Stuart and the Little family. tt0243585,opWPxmr2h2s,Stuart introduces Margalo to the family. tt0243585,ilCjx9gigWI,Snowbell goes searching for Stuart and finds Margalo. tt0243585,CfRKGG52TPY,Stuart accidently turns on the airplane when trying to fix it. tt0439815,b58Zg_TRqn0,"After realizing that something is very wrong with her husband Grant, Starla Grant calls the police." tt0439815,ZQ6XwJOrBiE,Alien Grant starts to get a desire for Starla as she takes a shower. tt0439815,PfBi1PAfWcI,"While the entire town is at the local bar celebrating, alien infected Grant pays a visit to lonely Brenda." tt0439815,bOqZC-DXvk4,Bill and Kylie attempt to rescue Starla and destroy her mutated alien husband Grant. tt0439815,LWCK6VFF6n4,"Bill Pardy leads a stakeout, which includes Starla, to finally catch the very mutated Grant." tt0439815,71kAAVlpENY,"Bill Pardy, Starla Grant and other officers discover a barn where they find Brenda, a missing woman, huge and full of alien slugs." tt0439815,YqRnYf2cyI0,"One night while taking a relaxing bath, teenager Kylie Strutemyer is attacked by an alien slug." tt0439815,9CD23yDPEF4,Bill Pardy sneaks into the police station to get a grenade but is attacked by a zombie deer. Kylie saves him. tt0439815,UAa5Lw5lseQ,Bill Pardy saves Kylie from her infected family and then picks up Jack MacReady and Starla Grant. tt0439815,x0rCYl4e1Lw,"While making out in the woods, Grant and Brenda come across an alien parasite." tt3322364,MBSxl8y36zg,Dr. Omalu is frustrated about America's reaction to his medical findings and Prema encourages him to continue speaking out. tt3322364,_zPImuBvnOA,Dr. Wecht is indicted by the FBI and Dr. Omalu refuses to play government games. tt3322364,zFDNg1Swx0s,Dr. Omalu and Prema lose their child and decide to leave town. tt3322364,ab4MM9cHidM,Dr. Bailes tells Dr. Omalu that the NFL will not allow him to speak. tt3322364,S60NRfBYTl4,Dr. Bailes tries to explain why he put injured players back on the field to Dr. Omalu and Dr. Wecht. tt3322364,ryyEEyKD9EU,Dr. Wecht informs Dr. Omalu that the NFL is out to discredit him. tt3322364,NXTrMtrTjlI,Dr. Bailes warns Dr. Omalu what he's up against. tt3322364,RY1FQGd1Bb4,Dr. Omalu explains to Dr. DeKosky how Mike Webster died after a series of concussions sustained while playing football. tt3322364,Mdp4T_G0Xsc,Dr. Omalu speaks about CTE and the dangers of playing football at a NFLPA conference. tt3322364,59wvo9e2XQY,Dr. Omalu gets a meeting with Dr. Joseph Maroon a top neurosurgeon with ties and interest in the NFL. tt0448157,H5pj6ZuBgeE,Mary reveals half the truth about who they are and how long they've been alive to Hancock. tt0448157,tqmbgqyc1bc,Hancock is desperate to discover the truth about who he is but Mary refuses to tell him. tt0448157,yt1pZiuyKJE,Hancock attempts to diffuse the situation with Red. tt0448157,tG1crFI87ro,Hancock saves Ray from an oncoming train. tt0448157,p1dzglJEqac,Hancock nearly kills a one night stand with an unexpected superpower. tt0448157,dgM9V3lEZvE,Hancock visits Ray to get help with his public image. tt0448157,qEH9lnYIndY,Ray watches as Hancock completes his first act as a reformed superhero. tt0448157,E-MOzwWySaQ,Hancock fights crime with a fresh hangover. tt0448157,HKcDfO71N1E,Hancock finds himself in jail surrounded by men he put in there himself. tt1232200,IC21keB1yaM,Donny is seduced by his teacher. tt1232200,YdowX3H-hGo,Todd's buddies take him to a spa for his bachelor's party and Donny can't handle it. tt1232200,4XKZFS7EoCU,"Todd learns that his ""Uncle Vanny"" is actually the Vanilla Ice." tt1232200,ykBG9mW1yC4,Todd shows his dad how the back tattoo he got as a kid looks now. tt1232200,cfB9siDjpLk,Donny teaches Todd how to ride a bike. tt1232200,G64ubBUMVek,"Todd meets his fiance's military brother, Chad." tt1232200,ptOc-HdvEW0,Todd confronts Donny about his terrible parenting while he was growing up. tt1232200,fZNHk9DKvtM,Todd angers Father McNally and causes a fight. tt1232200,0GCwhGQEZ90,Jamie shares a secret with Todd which derails the whole wedding. tt1232200,AkaPD_qTmok,Grandma seduces Donny while Todd makes a series of mistakes with his fiance's dress. tt1564367,ZFMSluy-4gE,"Danny spends some quality time with his fake kids, Kiki Dee and Bart." tt1564367,4WdyyPhh4-k,Palmer invites Danny and his family to go swimming in a nearby waterfall. tt1564367,lMA48vIxajE,Danny convinces Maggie and Michael to pretend to be his kids. tt1564367,V6WWK1gvpjc,Danny asks his assistant Katherine to be his fake hot first wife. tt1564367,VXlMfWObFCA,Danny is challenged to express what he loves about Katherine. tt1564367,nJwGWiuonws,Danny sees a patient who is looking to fix a botched plastic surgery job. tt1564367,Xz-BR8gyPhg,"Danny meets the beautiful Palmer, but she flips out when she sees his wedding ring." tt1564367,Wmo60ltq-TA,Danny confesses his feelings to Katherine. tt1564367,qfq5VozCshY,Palmer proposes to Danny just as he realizes that he wants Katherine more. tt1564367,dgdEr-mXQT4,Dolph explains to Palmer what he does for a living. tt0960144,_1rqGyHtE4Q,The Zohan reigns over the beach. tt0960144,JAXij_5Rr0U,Pushups - Zohan impresses Dalia with his pushup skills and gets an assistant job at her salon. tt0960144,utYsQTUae5w,Zohan rescues Michael from a maniac driver. tt0960144,Yg1qC5VGoLw,Zohan searches for employment at a hair salon. tt0960144,NdGB1rnPcR0,Zohan shows his customers a little extra love and helps revive Dalia's business. tt0960144,Sb8ufI6z0zM,"Zohan takes down bad guys and confronts his arch-enemy, The Phantom with ease." tt0960144,8DkbFJ3uz54,Zohan is recognized by a cab driver with a grudge. tt0960144,5OfAMHeIr7k,Zohan chases after Phantom and they fight to the death. tt0960144,hl1z_vp3kXg,"Zohan, incensed after hearing of Phantom's success, decides to get a hair salon position at any cost." tt0960144,Or4t1d_h0Y0,Salim gets in touch with Phantom to get him to come to America and get rid of Zohan. tt0371246,ZT0-DtdC93w,A drunk John comes home to find Flor practicing her English. tt0371246,6GpeTJqqtG4,Deborah takes Flor's daughter shopping without asking asking for permission. tt0371246,VW_Bmy2Cm2c,Deborah tells John that she's been seeing another man. tt0371246,pCFld9GCy_Q,Flor finds out that John gave Cristina money for collecting sea glass from the beach. tt0371246,208MQEPGWLA,"Upset with her mother for removing her from her private school, Cristina yells at her mother in public." tt0371246,oeF5tq_zeqU,Flor and John have the conversation of their lives. tt0371246,nO7qxQsQK44,Deborah yells at John for not following her parenting style. tt0371246,-Ww_Bo5ghiw,Flor complains to John about the private school that his wife enrolled Flor's daughter in. tt0371246,CyAW5eAhhPo,John invites Flor to his restaurant to cook for her. tt0371246,6La5YCYlMZY,Evelyn advises Deborah on what to say to her husband. tt0389860,912ib1YghJ4,Morty shows Michael the powers of his universal remote. tt0389860,yywlulXZ0ls,Michael wakes up to discover that he has traveled another 10 years in the future and is now morbidly obese. tt0389860,VmZ1ni2IDdo,"Michael comes home with gifts for the kids to celebrate his promotion. Then, he travels back in time to his first kiss with Donna." tt0389860,pDj1GM3RRWs,Michael travels back to the last time he saw his father before he passed away. tt0389860,hjhBzRH-plo,Michael uses his remote to keep himself entertained during Ammer's sexual harassment speech. tt0389860,9O-NfAWrkDM,"As Michael passes away, he shares what he has learned from skipping through his life." tt0389860,CKIh_vKo7Fg,Michael returns to his home to find that his children are now teenagers and Donna is remarried. tt0389860,dVFDYCPO19A,"When Ammer tells Michael he hasn't been promoted yet, he uses his remote control to pause time and get revenge." tt0389860,9LvgzVmAFxo,"Michael uses the remote to skip through traffic, check out some boobs, and change his skin color." tt0389860,wUVJf2CkNNw,"Michael uses his remote to skip a fight with Donna. Then, he makes the make up sex go by in a flash." tt0106379,ZIdKsGWToLo,Lucinnius tells Hector that he must commit suicide by tomorrow morning. tt0106379,1QC88NQZM-8,Hector lets the invaders know that they are taking his family. tt0106379,bWo3nlFcH5k,Lucinnius explains to Hector why he has to die beside him. tt0106379,32Fz-BBjVXs,"Hector apologizes to Ursula, and lets her know he is leaving with the others." tt0106379,g3WSsm57iVM,Hector tells Beatrice that it is time for him to go home to his own family. tt0106379,hf1wQVWs0DA,Two deserters beg Hector to make sure they are not eaten once they die. tt0106379,WIZlfA5kV7Q,Hector investigates a claim that a tenant fell through the floor. tt0106379,HKRXTzENFa4,Hector explains to his children why he has been out of their lives the last few years. tt0106379,ZfyjpKP8zDk,"Hector spends time with his family, and it may be the best moment of his life." tt0088707,Qk1y1yVQkJQ,The final day of the race begins with David tied for first with Muzzin. tt0088707,SccBZYmyjxE,"Struggling to catch up to David, Marcus suffers an aneurysm. Sarah and Becky race to save him before he falls to his death." tt0088707,ngSM_wxh0lE,David races to the finish with Muzzin while his family cheers on. tt0088707,eZc3GMgzwyk,"David takes a hard crash, but Marcus, Sarah and Becky cheer him on." tt0088707,DGpJ1ndBxOA,David and Marcus embark on one of the most grueling bike races in the world. tt0088707,DEmZWy1aDuo,"David picks up Becky at McDonald's. Meanwhile, Marcus and Sarah have a much darker conversation in the van." tt0088707,TBHjt3AyALw,"Sarah and Becky have a run-in with Jerome and Muzzin, who is a jerk." tt0088707,V15AidhVCSw,"Marcus visits his mother for an awkward dinner, but learns some distressing things about his brother, David." tt0088707,evJPzjgv-2s,"David takes on the gym's hardest endurance test while Dr. Conrad, his girlfriend Sarah and his brother Marcus cheer him on." tt0088680,Hp93d2bsfQc,"Mistaken for art by Neil and Pepe, Paul gets a ride back to work." tt0088680,A-rs-kWL5-s,"Paul deals with an obstinate bouncer, but getting into Club Berlin only makes matters worse." tt0088680,MsKaN_QrVT8,Paul can't even make a phone call without Gail messing it up. tt0088680,ZPMDA9N1itk,"Paul tries his best to get away from Julie, who presents him with a gift." tt0088680,djTKMhvuXGM,Paul takes a peek at Marcy and leaves her body for the police. tt0088680,6iGsAYTmnLg,Paul grows impatient with Marcy when she shares some pot of dubious origin. tt0088680,zt4ek_5zQgY,Paul gives a relaxing massage to a sculptress named Kiki. tt0088680,-iK4M_EFvjc,Marcy tells Paul about her husband's strange sexual quirk. tt0088680,yEKOx9OHEz8,Paul starts to daydream while new co-worker Lloyd drones on and on about his publishing ambitions. tt0274309,ktt64clTkj4,Tony flirts with Miss United Kingdom as he tells her about his Factory Records. tt0274309,YH_vICd0WQ0,Tony is annoyed when he finds out that the new club manager's name is Tony. tt0274309,fwkzz6A_Qv4,Tony gives a speech about how he doesn't sell out after an offer is made to buy the company. tt0274309,3a6TxHEyLdo,"Tony's sanity is questioned when he buys a table for the office that costs 30,000." tt0274309,UoMiVPjDb10,"Tony does a televised report and goes hang gliding, causing multiple injuries to his body along the way." tt0274309,_B6AZdgQbeU,God dispenses some professional wisdom and compliments to Tony. tt0274309,SK4l-e7UvRs,Tony speaks to the people in the Hacienda and encourages them to loot on their way out. tt0274309,dfrJhivMJJY,"Tony tours the space for his new nightclub, but Martin severs their relationship." tt0274309,SYffGozxMbU,Paul and Shaun feed poison to pigeons and watch them fall dead from the sky. tt0274309,NQgAVrZRz3o,Tony begs his wife Lindsay not to leave him. tt0274309,90j6V8EjSuI,The irascible Martin Hannett records the Joy Division album. tt0274309,ghZ6ntXQp3E,Tony disparages jazz and jazz musicians. tt0101701,mbBhikLj86Y,"Janet reappears in a beautiful dress, only to tumble down the stairs as Jack watches." tt0101701,GusR6qF81kc,"Back in the real world, Jack reunites with Louise when he recognizes her strange lunch order." tt0101701,vD6FkjOtIIs,Jack is surprised to discover that Robert Wagner has been cast in the role of Jack Gates. tt0101701,_x3KSXMXzwM,Jack realizes that writing while drunk can lead to awkward and embarrassing moments in the soap opera world. tt0101701,XKNZy6gahyc,Jack blindfolds himself behind the wheel and forces Rachel to give him directions. tt0101701,pfOJfhbqJhY,"Jack writes himself into the role of hero to save Rachel on a wild horse ride, but he needs a little saving himself from Janet." tt0101701,VPXd9ANX3Bw,Jack jumps through a window and saves Janet from some thugs. tt0101701,E8x4G2WceJA,Jack tries to convince Janet that they're living inside a soap opera. tt0101701,_g-f7cZGqJ0,"When the cable repairman criticizes the quality of a soap opera, Jack admits to writing it." tt0101701,VXx_DVHO0go,"Nervous for her audition, Louise has an awkward run-in with Jack and a fellow actress." tt0101701,ARgghWSmq7Q,"Jack wakes up to find himself not only a character in his own soap opera, but also a patient to an actor who believes he's a doctor." tt0101701,nKuJ6UvlGek,"After filming a scene for ""Beyond Our Dreams,"" Dennis and Laura discuss acting technique." tt0100258,7AB4ab4LtFo,Barbara goes back to the farm after rejoining with other survivors. tt0100258,o5CBItcNkFs,Ben clears the porch and front yard of zombies. tt0100258,hH1TgDvC7sY,Barbara and Ben face off against Harry after he refuses to kill his daughter turned zombie. tt0100258,bLX_zt_MhW0,"Ben, wounded and trapped in the basement, has a final smoke." tt0100258,ETxIJN_avuM,Ben assists Judy and Tom in their attempt to get to the gas pump to fill the truck. tt0100258,aPUaHUwJJk8,"After everything starts to go to hell, Helen retreats to the basement only to find her daughter has become a zombie." tt0100258,QvdszN3x7M4,Ben helps Barbara get rid of the zombies inside the farm. tt0100258,NZ2qhFm6LO8,Barbara and Johnnie go to visit their mother's grave and make a grisly discovery. tt0100258,MrhV0mA-bWg,Barbara proves to the other survivors in denial that their attackers are in fact zombies. tt0100258,z1RLdJwkFZA,Barbara holds off oncoming zombies as the other survivors search a body for keys. tt1282140,-uPSVWxV6d8,After Marianne thinks she got through to Olive she quickly wants to become best friends. tt1282140,VBLIuICtHuo,"In order to get the school to turn into her live webcast, Olive performs, ""Knock On Wood,"" at the pep rally." tt1282140,KKD0B8uROMI,Olive signs off on her webcast and ride's off into the sunset with Todd. tt1282140,32I5RODje3o,Olive has a serious conversation with her mom after revealing to Mr. Griffith the truth about his wife's infidelity. tt1282140,EXwr6U_YypE,Olive is approached by Evan to fake another sexual encounter to increase his popularity. tt1282140,h9GHe5K0kOI,Marianne asks her religious group to both pray for Olive and simultaneously get her kicked out of school. tt1282140,ylvh800i85I,"Instead of admitting to skipping Riannon's camping trip for no reason, Olive lies and says she spent the weekend losing her virginity." tt1282140,wJZP20y0R2Q,Olive decides to embrace her role as the school's harlot by dressing provocatively and wearing a scarlet letter A. tt1282140,XFKhIBH23-Q,Brandon asks Olive to pretend to sleep with him so that his classmates will stop bullying him. tt1282140,S04wIhoGYQY,Olive and Brandon pretend to have sex at a party with all their classmates listening. tt0852713,R0HGeVmyI5I,Shelley makes an impassioned speech for the survival of the Zeta House. tt0852713,io-hA6pxffU,Shelley tries to have a Zeta house car wash to garner some male attention. tt0852713,jEKFfdQEbcg,Shelley goes on a date with Oliver to disastrous results. tt0852713,vBLcmGPbryg,Natalie awkwardly flirts with her crush Colby. tt0852713,QUI-9FAwA8w,Natalie gets a welcomed visit from Colby while the Zetas hope to recruit more pledges. tt0852713,OJyRbpjlrmA,Shelley tries to impress with her intelligence while on their second date with Oliver. tt0852713,61cBscxr69E,Shelley and the Zetas completely remake themselves and their house. tt0852713,wySz6ysIDhs,Shelley meets the Zeta house and shows off her disarming trick for remembering names. tt0852713,sL6gDhH7FpE,Shelley visits the Zetas to become their house mother and meets Natalie. tt0852713,YgnhijYmavY,Shelley runs into trouble after being kicked out of the Playboy Mansion. tt0879870,Vb6cuUI7B3E,"Liz writes an email to her ex-boyfriend, David." tt0879870,jsyzJJFZzsg,Liz tells Felipe her word. tt0879870,MGGGksL1ziM,Felipe confesses his love for Liz and tries to see if she feels the same. tt0879870,GbCytLu1-3k,Liz and Sofi eat pizza in Naples. tt0879870,uA1Kloz4Ics,Liz takes Felipe to get his palm read by Ketut. tt0879870,fJV0KtMZ7x8,"After being almost hit by a truck, Liz goes to see a healer named Wayan." tt0879870,mxz_RfabdUo,Felipe takes care of a hungover Liz. tt0879870,kRuKg_khl8Q,"After some hestitation from his failed marriage, Felipe falls in love with Liz." tt0879870,8Ojsvc_KsDY,Richard gives Liz advice on letting go. tt0879870,bvITByUy5fA,"Following her divorce, Liz decides to travel the world in order to find herself." tt1114740,F8Y0hCMWyFg,Paul fails his Police Academy test and washes away the pain with pie and peanut butter. tt1114740,EpcWBu5f2uY,Paul tries to save the hostages and fails twice. tt1114740,MeyU68qSBMI,Paul traps one of the criminals in a tanning bed and documents the code written on his arm. tt1114740,BvcBo3De8Hc,"Commander Kent turns out to be working with Veck, but Brooks steps in and saves the day." tt1114740,Yb4Lrplxq_A,"Paul tries to leap from a moving minivan to save the hostages, but fails." tt1114740,7EcK-LuhzAA,Paul accidentally eats a hot pepper during a nacho eating contest and washes it down with alcohol. He proceeds to get drunk and make a fool of himself. tt1114740,JjbIo_301ZA,Paul takes out Veck's henchmen one by one in the Rainforest Cafe. tt1114740,CfaPUQMa1gc,"While hiding from the bad guys, Paul falls out of a ventilation shaft and knocks out Vixen." tt1114740,ptAdtShJa_0,Paul observes the criminals at the bank and reports back to Brooks. tt1114740,gmSeaKdO9IQ,"After Paul's hypoglycemia kicks in, he must eat a sucker off the floor in order to bounce back and follow through with his plan to defeat Veck." tt0117008,Ey-zuaZV8pM,"Matilda Wormwood, a genius from an early age, learns to take care of herself without her parents help." tt0117008,mwMmZ8dtWNM,Matilda convinces her parents to let Miss Honey adopt her and the two live happily ever after. tt0117008,fqnhqkXclUk,Matilda finally gets rid of Ms. Trunchbull. tt0117008,rDTZ6A5zsYc,Matilda discovers the secret to controlling her powers. tt0117008,q289a8P8Ht8,"After sneaking into Trunchbull's mansion, Matilda and Miss Honey are surprised by Trunchbull's return." tt0117008,alE17GLFoQE,Matilda gives Trunchbull a taste of her own medicine. tt0117008,ntirWguFrfM,Matilda arrives for her first day of school and witnesses the terror of Trunchbull firsthand. tt0117008,EOQeU_6vbeg,Matilda watches as Trunchbull publically humiliates Bruce Bogtrotter in front of the entire school by forcing him to eat an entire gigantic chocolate cake. tt0117008,WoN5cCs0l2M,Matilda discovers that her father is a criminal and decides to teach him a lesson when they go to a fancy resturant to eat. tt0117008,IeCZqVq7_pY,Matilda gets a bit of revenge on Ms. Trunchbull during an aggressive visit to the classroom. tt0099204,sfWe6CUZUtc,Larry makes Joey call his mom. tt0099204,oyqIjdFcJVg,"Joey tries to calm Larry down, and then takes a quick sales call." tt0099204,j2ZsEQ4Fr4c,"When Lila sneaks into the dealership, the group glimpses the extent of Joey's philandering." tt0099204,ri8WqeTAUDE,"During a quiet moment, Joey and Larry discuss love, marriage and unemployment." tt0099204,MnLvPe6VSTM,Joey helps Larry communicate with the police. tt0099204,sdvrA5qnZo4,"Holding the crowd at gunpoint, Larry roots out his wife's lover: Joey." tt0099204,VVlECM2KyYg,Joey handles an assortment of would-be car buyers. tt0099204,yfg9cb_9NWQ,"Negotiating with the NYPD, Joey calls a time-out to determine Larry's demands." tt0099204,XLAGTl0Nnws,"At Joey's urging, Larry frees his female hostages." tt0099204,4ri_ybNiTPU,"Things get awkward for Joey when his mistress, Joy, brings her husband car-shopping." tt0099204,8gvuU-U64d0,Joey attempts to sell a widow a new car at her husband's graveside. tt0099204,VQjjlqVjiII,"Crashing his bike through the window, Larry assaults his wife and her coworkers with an AK-47." tt0097757,z_a4zak_zk0,Charlotte runs outside the house when she sees her mom kissing Joe. tt0097757,27moTiftkCc,Mrs. Flax teases Charlotte on how she drives. tt0097757,DTdDzcr-7UM,"Charlotte goes to the doctor because she thinks she's pregnant, but the doctor explains to her that she is still a virgin." tt0097757,blQ8Wi0VAn0,Mrs. Flax expresses her anger towards Charlotte for running away. tt0097757,7OIn2KFDWjM,Mrs. Flax and the girls dance in the kitchen listening to a Jimmy Soul song. tt0097757,tV7wQ19UBqg,Charlotte stands up to her mom and says that she doesn't want to move. tt0097757,kpYZ4G1AQ0c,Charlotte talks herself through a nerve-wracking fishing trip with Joe. tt0097757,rGAjkzbV8zw,"Charlotte is horrified when her mom speaks to two nuns in a shoe store, and wishes she could talk to them too." tt0097757,_sZ4U5aOee0,Charlotte feels as though she has sinned after her and Joe kiss. tt0097757,kswPGoPPdwE,Charlotte holds back her excitement when Joe tells her he used to live in her house and in her bedroom. tt0097757,3XZ9vtsDiuM,Charlotte secretly watches Joe from behind a tree and prays to God that she won't fall in love with him. tt0097757,FSlLXYohrJg,Charlotte is on edge as she makes sandwiches for her day with Joe and tries to ignore some advice from her mother. tt0409182,Vnp8CkPERus,Dylan tethers a fire hose across the lobby so that Robert and Jennifer can slide to safety. tt0409182,Fk69RQS7D8Y,Dylan tries to send a nitrogen tank through the window in order to destroy the propeller. tt0409182,qcYPASs4jMQ,Robert sacrifices himself to save the other survivors. tt0409182,njnCT6sD1Bk,Lucky Larry uses a lever to free Christian from under a girder. tt0409182,i3VNgECX8Ko,The survivors wait for one tank to fill with water so that the next chamber will open up. tt0409182,2HMLj2siVxY,Elena gets caught as she attempts to swim through the flooded chamber. tt0409182,oZ28XpWmN00,Conor saves the day when the survivors must find a passage through a flooding vent system. tt0409182,9VsHtn_RSHY,The luxury cruise ship Poseidon capsizes when struck by a giant tidal wave. tt0409182,-TqNDG7L__A,Lucky Larry insists on going first and ends up paying the price. tt0409182,b74611maYgQ,Dylan tells Richard to sacrifice Valentin in order to climb through the elevator shaft. tt0089175,kndeWhsNlJs,Charley has a final face-off with Jerry to save Amy's life. tt0089175,VNLN5xyxwAY,A transformed Evil Ed chases Peter Vincent. tt0089175,PvoBUI7uz-w,Charley and Peter Vincent begin their final standoff against Jerry. tt0089175,CxrQd6Sn5PA,Charley and Peter Vincent are stalked by Billy. tt0089175,vfc3TGvcjEY,Charley gives chase after Amy is kidnapped by Jerry. tt0089175,MBqT-UEySlI,Evil Ed is chased down an alley by Jerry and given a choice. tt0089175,68igl3sbzFI,Amy is seduced after waking up inside Jerry's bedroom. tt0089175,dshJG5PEOqY,Charley brings Peter Vincent to visit Jerry to test the possibility of Jerry being a real vampire. tt0089175,w98xbfLGWro,Amy and Evil Ed find out what Charley's been preparing for battle. tt0089175,gnWkYf8Peo8,Jerry visits Charley in his bedroom and during a fight has his true form revealed. tt2241351,UnllAPMRnKE,Kyle forces Lee to take responsibility for making a terrible stock recommendation. tt2241351,pUmu0VJuwOA,Lee Gates is interrupted mid-broadcast by a gun toting Kyle. tt2241351,OpwYfz6uFaQ,Lee tries to buy time by getting Kyle to talk about his personal problems. tt2241351,_pzN5x6Pepw,Lee and Kyle confront corrupt banker Walt Camby. tt2241351,L06qVvXrJus,Lee and Patty settle in after the hostage situation ends. tt2241351,IVRy-Jac660,Lee realizes that a police sniper is going to shoot him instead of Kyle. tt2241351,Bf6I7N-DC7g,Lee Gates is taken hostage by Kyle while hosting a live taping of his show. tt2241351,kt1aHAlXi4g,"When Patty tries to get an earpiece to Lee to communicate with him, her producer Ron is shot." tt2241351,EjAwbjng__4,Kyle gets a call from his wife Molly during hostage negotiations. tt2241351,58DPO_8Bd88,Diane discusses the banking algorithm at the center of the hostage situation with programmer Won Joon. tt0172493,F58XJgGx3DY,"Susanna and Lisa sing ""Downtown"" to cheer up Polly." tt0172493,6VhCGQODB5U,Lisa reads Susanna's diary to anger the other girls and push Susanna over the edge. tt0172493,DTexn9N2HMI,Susanna is tortured by Lisa to the point of breaking. tt0172493,Tq9zhCo-PTQ,Susanna searches for Daisy after an emotionally disturbing night. tt0172493,pvNA2JkMfSI,Susanna gets a personal sit down with Dr. Sonia Wick. tt0172493,GdrUYcOTUvY,Susanna watches as Lisa emotionally tortures Daisy. tt0172493,WnAVeKAUxPY,"Susanna tries to trade medication with Daisy, but is interrupted by Lisa." tt0172493,S3Po0Tld8Po,The girls from the ward have a day out and go to an ice cream shop. tt0172493,Gnpxe9kO_V8,"Susanna is placed into a mental institution and meets the fiery, frantic Lisa." tt0172493,GEAh4nF90iw,Susanna discusses her condition during a family therapy session. tt0112818,DubYVqV92OQ,"Sister Helen tries to help Matt realize that by refusing to take responsibility for the murders, he's making himself out to be a victim." tt0112818,_9qsxe5kHdo,Matthew's family comes to see him for the last time before his execution. tt0112818,pz6wAzZlnhE,Matthew says his last words and apologizes to the families of the deceased. He and Sister Helen share a final sentiment. tt0112818,UQmQ7d-wXQE,Sister Helen watches as the lethal injection process takes the life of Matthew. tt0112818,tG2qsoC_-hs,The Percy's are infuriated when Sister Helen visits them and says that she is going to be Poncelet's spiritual advisor. tt0112818,ryqyAX_lA7w,Matthew's recalls the murder and rape of his victims during his last moments on the gurney. tt0112818,qaAz6YklimY,"Sister Helen gets pulled over for speeding, but is only given a warning when the officer discovers she's a nun." tt0112818,qAfsU2gI408,"As Sister Helen Prejean goes to meet convict Matthew Poncelet, she remembers the powerful warnings she was given." tt0112818,vUbnqySPN8E,Sister Helen shares Matthew's final steps and comforts him before his death. tt0112818,exCuIisMWl0,Sister Helen sings a hymn for Matthew as time quickly runs out. tt0112818,6wyRTKGY2Tw,Matthew makes an emotional confession to Sister Helen about the murders and the rape he was convicted of. tt0310793,DC2QaWmat7A,Charlton Heston walks out of an interview after Michael Moore asks him about his decision to travel with the NRA to cities after a tragedy. tt0310793,rczP7CJB4Hs,"Michael Moore questions Charlton Heston about America's high murder rate, which Heston blames on the country's long history of violence." tt0310793,oeQ4HWhPEdA,"Marilyn Manson responds to Moore regarding his feelings about being blamed for youth's violent behavior, and discusses his feelings on the President." tt0310793,vJZe9sHz10M,A K-Mart spokesperson announces their decision to stop the sale of handgun ammunition in their stores nationwide. tt0310793,jY2PzzjO3zo,"Michael Moore opens up a new bank account, and in return, receives a free gun." tt0310793,0C4yBk6syOE,James Nichols talks to Michael Moore about gun control and shows Moore the loaded gun he keeps under his pillow. tt0310793,yEyQgxLmGmI,James Nichols talks to Michael Moore about the people's duty to overthrow a tyrannical government. tt0310793,djr5QNJG73k,Michael Moore interviews a Michigan officer about a case where a hunter was accidentally shot by the gun that he placed around his dog's neck. tt0310793,b4vpGhO2LwA,"Michael Moore talks to members of the Michigan Militia, creators of the Militia Babes 2002 calendar." tt0310793,58BDrZH7SX8,This animated sequence presents a view of American history not found in any textbook. tt0310793,0_-45EGFtA4,"Matt Stone, co-creator of South Park, talks about his experience of going to high school in Littleton, Colorado." tt0022913,NkmUIQL4spM,Madame Tetrallini defends the circus performers to Jean the Caretaker. tt0022913,hqqlSTB5CfU,Hans relents and alows Frieda to visit him in his mansion. tt0022913,CrlVTZFPnzA,"The Freaks turn on Hercules and Cleopatra, attacking them during a storm." tt0022913,knJ438gN25k,Hans catches Cleopatra putting poison in his medicine. tt0022913,39Bnk6VU53Y,"When the Freaks accept Cleopatra as one of their own, she rejects the invitation and sends them away." tt0022913,SF5EacV4NI0,"Koo Koo the Bird Girl dances on the table at Hans and Cleopatra's wedding reception, but Cleopatra is secretly poisoning Hans." tt0022913,NTswp_20tsA,The Living Torso lights a cigarette using only his mouth. tt0022913,-DXU2ZHuiTs,"Daisy and Violet Hilton, conjoined twins, demonstrate their ability to experience each other's physical sensations." tt0022913,RUUhcK3Pt14,"Josephine Joseph, a half-woman half-man, gives an alluring look to Hercules." tt1535109,yEeyJzItKAg,"Captain Phillips jumps out of the lifeboat and makes a swim for it, but Muse jumps in after him and drags him back." tt1535109,ng95gpwSjZU,Muse is arrested and Captain Phillips has his injuries examined. tt1535109,9z8uqVHf39M,"When the Maersk Alabama crew makes the trade and lets Muse go, the pirates kidnap Captain Phillips and escape in a lifeboat." tt1535109,bPiv1wP8q7g,"Najee threatens Captain Phillips and the pirates start to argue, but it's cut short when a rescue ship sounds its alarm." tt1535109,KgmFWHZXmiY,"When the Navy sends some officers to check on Captain Phillips in the lifeboat, Najee gets nervous and shoots his gun right near the Captain's head." tt1535109,XM3MRt89zy4,The Maersk Alabama crew captures Muse and forces him to make a deal with the pirates. tt1535109,j21idqW08wU,Captain Phillips delegates duties to his crew after the pirates board the Maersk Alabama. tt1535109,kSmAfIP9CoQ,The crew tries to defend the ship while the pirates try to find an entry point around the hoses where they can board. tt1535109,tf_RRItKJm0,"When pirates approach, Captain Phillips tricks them into thinking help is on the way." tt1535109,KHsn2smp4N4,"Muse takes command of the ship, demanding that Captain Phillips produce the crew." tt4178092,XuGD4tGeLFc,"Simon confronts Robyn about abusing prescription pills, which leads to an explosive argument." tt4178092,mmCjPdu2TC4,"When Simon tells Gordo to leave him alone, Gordo locks them in behind his gate." tt4178092,8gfk5E2iwdU,Robyn discovers that their fish are dead and dog is missing. Simon discovers that Gordo does not live in the house where they had previously visited him. tt4178092,R4ZGoNehEp4,"After taking a drink, Rebecca fears there is someone in the house. As she searches, she passes out." tt4178092,WzUMVMrEGnE,"When Gordo refuses to accept an apology, Simon loses his temper and attacks him." tt4178092,EtKt8Q32_Rk,Robyn learns that her husband used to be a bully. tt4178092,3vjTjf7m3Bs,"On the day he becomes a father, Simon loses his job and Robyn asks for a divorce." tt4178092,FnT4pAV1Cg4,"Gordo taunts Simon, leading him to believe he molested Robyn and giving him doubt that his newborn child is his own." tt4178092,5T4sIC7SB_4,"While Gordo visits Robyn in the hospital, Simon receives his final gift." tt4178092,TmnPP66kwwg,Simon is attacked by the man he sabotaged to get his promotion. tt2717822,Htp6crkePuw,"Hathaway and his team break in to Kassar's hideout, only to discover that it's a trap." tt2717822,b3lOpSXhT0c,"After discovering that they're being watched, Hathaway and Lien are attacked in a Korean restaurant." tt2717822,7HWfwLBqSQ4,Hathaway deceives a member of the NSA in order to hack into Black Widow. tt2717822,qB311wvyggM,Hathaway stalks the hacker and Kassar through a crowd to take them down once and for all. tt2717822,lCqHKRjIMu8,Hathaway gets his vengeance on the hacker who killed his friends. tt2717822,tru0WMH7yic,Hathaway leads a team into an extremely hot chamber to steal sensitive information. tt2717822,ngRthItc3Yc,"After a deadly shootout, Hathaway and Lien are forced to flee, leaving no time to grieve their losses." tt2717822,gPAI19a84KU,"After an argument in the car with his sister Lien, Dawai falls victim to an attack by Kassar and his men." tt2717822,Lr04AEabtnY,Hathaway drops a truck off the roof in order to cause a diversion and steal sensitive information. tt2717822,fPEGcx4MFHI,Lien uses her feminine charm and cunning to help Hathaway hack the bank account of a powerful terrorist. tt0155267,JcRuXU7cvmo,"Just as Catherine starts to cry on the plane, Thomas reveals that he is there with her." tt0155267,C3rDWENRI7c,"Just when the detectives think they've got him, Thomas makes things interesting when he employs a bowler hat." tt0155267,MODlCaeiT0M,Thomas and his look-a-likes continue to allude the detectives in pursuit. tt0155267,yCrq5v5cg1A,Things heat up on the dance floor for both the investigation and the relationship between Thomas and Catherine. tt0155267,2zSE8r8jU_U,"To show her distrust of Thomas Crown, Catherine burns a supposedly priceless painting." tt0155267,gp8OWUqg4r4,Detective Michael McCann is less than enthused to have Catherine Banning on the art theft case. tt0155267,ecmDPqCP8ms,Thomas and Catherine get to know each other over dinner and Thomas realizes he's met his match. tt0155267,kJKWjeMtEDM,Thomas steals a Monet from the museum and leaves undetected. tt0155267,GUDrinKzSus,Thomas and Catherine meet each other for the first time and she is straightforward about her objectives. tt0063688,KAE8h2rqA6g,"Crown is a no-show at the cemetery pickup, but sends along a message for Vicki." tt0063688,z21tJkx07J8,"Crown and Vicki's flirty chess match gives way to ""something else.""" tt0063688,k5bN73OnGmo,Crown and Vicki begin a game of chess. tt0063688,aWIcfkvKj9Q,Crown tells Vicki he intends to rob more banks. tt0063688,a6XtVMtUZI8,Vicki puts Crown in a room with getaway driver Erwin ; Crown keeps his cool. tt0063688,688uSEwvYnQ,"Reviewing photos of possible suspects, Vicki is drawn to Crown." tt0063688,bzSIHZcXwvQ,"Crown encounters Vicki, who promptly announces she's investigating him." tt0063688,6XRJuEv5Ya4,"The insurance company flies in a top specialist, Vicki, to investigate the heist." tt0063688,fwkB6wAxNVM,"On Crown's signal, the robbers converge for the heist." tt0063688,ut_z2-96X0o,Erwin is hired by a silhouetted Crown to drive a getaway car. tt0063688,Fw19beLDqn8,"Following the successful heist, Crown erupts in a fit of laughter." tt0114134,jHl4T9F9Vjw,"Nagiko returns home to find that Jerome has accidentally overdosed, and in her grief, she writes her next book on his dead body." tt1596345,2oDVJbZxmtk,Even Spassky is dazzled by Bobby's unprecedented chess techniques that win him the 1972 World Chess Championship. tt1596345,_aj999HtbtE,Bobby uses a new technique to beat Spassky in the third game of the 1972 World Chess Championship. tt1596345,ZqCnbtz5IgI,"Father Lombardy is frustrated with Bobby's attitude. Bobby panics at the airport and runs away, failing to appear at the opening ceremonies of the World Chess Championship." tt1596345,GlVzp0Ldv4k,"In the first game of the 1972 World Chess Championship, Bobby gets distracted by several things and loses to Spassky." tt1596345,tQQ2Cp7xQho,"Spassky refuses to win by forfeit, so he decides that he will play Bobby wherever he wants." tt1596345,FBhqtV3pVe4,"Bobby forfeits his second game against Spassky, refusing to play again until his demands are met." tt1596345,dluHLk1Hm64,Bobby freaks out with extreme paranoia when Paul mentions he had coffee with his sister Joan and Father Lombardy calms him down. tt1596345,ntVZPACMOYA,Bobby waits until the last second to play his anxious Russian opponent and after he wins he decides not to play again until all of his conditions are met. tt1596345,PgotX7s-2YY,Paul tries to convince Father Lombardy to be Bobby's second and Bobby shows Lombardy how he could have won a match he lost. tt1596345,Ma_h1r7VTME,Young Bobby is determined to win after he loses a game of Chess to Carmine. tt4183692,-7Qoxub52B0,Coach Gerelds stands up for the school after a tense racial conflict. tt4183692,M89zKEGFuME,"Tony scores a huge touchdown, upsetting the other team to win the game." tt4183692,UUD5-dcDdBw,Hank uses the story of David & Goliath to motivate Tony and the team to win the game. tt4183692,6VUothtoSeM,"Tony refuses to take a picture with the racist governor. Then, a man throws a brick through his window and burns his jersey in the front lawn." tt4183692,x26Mst06IoY,"When Tony gets emotional after losing, he finds inspiration from Coach Gerelds and the Lord." tt4183692,ws5scfTVUA0,Tony inspires Coach Gerelds to pick up his hat and become a coach again. tt4183692,Al3TIVxEPm4,Tony inspires the crowd when he scores a game-changing touchdown. tt4183692,H0Bzz3gzvk8,Paul gives Tony some words of encouragement. tt4183692,jSStdc_wWV8,Hank leads the crowd in prayer before the big game. tt4183692,L6ayQbTmoxg,Hank preaches the word to the football teams and their fans before the big game. tt0112887,OTjYvVfWORo,"As Jordan and Amy have sex, Xavier joins in and makes it a threesome." tt0112887,TShV3gWFAIY,"Jordan catches Xavier and Amy having sex, and instead of stopping them, he masturbates to their lovemaking." tt0112887,CyetT8hwwtk,"After Brandi mistakes Amy for a former lesbian lover, a fight breaks out at the Tinfoil Bar." tt0112887,Mq3CFDYCWfA,"Xavier introduces Amy to his tatoo of Jesus, and then seduces her." tt0112887,-vNo9qyUHho,"A drunk and confused Carnoburger Cashier threatens Jordan over the whereabouts of his long lost love, ""Sunshine"", aka Amy." tt0112887,5oEUU8YjUkg,"Jordan and Amy talk about the meaning of love, but are suddenly interrupted by a street fight." tt0112887,V0qYlLqMPNI,Absolute mayhem breaks loose when Xavier tries to save Amy and Jordan from an angry store clerk. tt0112887,x9GGBivRItA,"Xavier flirts with Jordan, but infuriates Amy with his rudeness." tt0112887,AMHSm2gTUmA,A routine ordering of fast food turns hostile when the Carnoburger Cashier mistakes Amy for a former lover. tt0114134,TlxOj02Wodk,"Jerome offers to be a messenger for Nagiko, personally delivering her manuscript to the publisher." tt0114134,aENEFwxcrBs,"Nagiko sends her final book to the publisher, and confronted with his crimes, he chooses to end his life." tt0114134,2thZKjnQnK4,A jealous Jerome begs to see Nagiko. tt0114134,p-0nV3vGvTQ,"When Nagiko is disappointed with his writing, Jerome challenges her to write on his skin." tt0114134,45MzBLAUUpk,Nagiko and Jerome engage in the body writing ritual that has been her obsession since childhood. tt0114134,t_GWHV52Tds,Nagiko lashes out at Jerome's mother when she suggests that he only liked her because she's fashionable. tt0114134,MFUZGrdKqtM,Nagiko meets Jerome at a cafe and asks him to write on her skin. tt0114134,uMWI1q_J3mk,Nagiko leaves her husband when he reads her diary and forbids her from wiriting in English. tt0114134,foPz4rJfgSQ,Nagiko recalls her first encounter with her future husband at the age of six. tt0114134,ATOpJHEjvlI,Nagiko's father marks his daughter as God once marked His creation. tt0070460,271ymG6B7aw,The film crew has a frustrating time controlling a cat. tt3569230,VvSlUEWVleo,Reggie is sad when his wife commits suicide. tt3569230,oYQWryzBuhs,Ron doesn't trust his business partners and Reggie tries to convince him it'd be crazy to kill people on their team. tt3569230,R7qVgpQEVBM,In a fit of Reggie stabs Jack to death. tt3569230,WXUGWaYOnUs,Reggie is furious with Ron for ruining their club while he was away. tt3569230,Qy6dBc-9HRQ,Ron kills Cornell in front of several witnesses and Reggie has to clean up his mess. tt3569230,84WvFryk-1E,Reggie starts a fight with Ron and feels guilty when he sees the damage they did. tt3569230,AxUh8zdgPeM,Reggie climbs up a building to propose to Frances at her window. tt3569230,y-gs5U3OMMM,"The Krays agree to a partnership with Angelo, representing the American Mafia." tt3569230,xNwPw7mQnpo,"When the prison guards beat Reggie to prove a point, Reggie cuffs one to his jail cell and beats him back." tt3569230,j1eQNUaOfZ4,Ron and Reggie severely beat some gangsters fighting on behalf of the Torture Gang. tt3077214,OYpO9k6l8Bk,"Thousands of people gather to mourn the loss of Emily Wilding Davison, a suffragette who will inspire a change in women's rights in the UK." tt3077214,0KZ6EPv2Gio,"Maud reads a book Emily gave her, and Edith reveals the only good news Emily's loss brings." tt3077214,uov-TD5osLM,Maud is subjected to force-feeding after going on a hunger strike for five days. tt3077214,syM_HVHMynw,Steed scolds Maud for her violent acts and Maud defends the suffragettes. tt3077214,9i9S12dwwKM,Emily is run over by the King's horse after trying to attach a flag to it as an act of political activism. tt3077214,cazTXFYZ9gw,Maud discovers that Sonny has given George up for adoption. tt3077214,tTlhLBjQdPc,Maud burns Taylor with an iron and Steed tries to convince her to give him information about the suffragettes. tt3077214,hsK4vleN-fE,Maud and other suffragettes are arrested after an accidental riot forms out of political outrage. tt3077214,ecRAEoKp51M,Maud gives her testimony to the court in regards to the upcoming vote on women's rights. tt3077214,buqRQWuVcw0,Mrs. Pankhurst gives the suffragettes hope with her inspirational speech. tt0318374,zKATih1nvVo,Shelly takes Larry to the bathroom to teach him a lesson. tt0318374,wRN8Q_Lts7k,Bernie and Natalie are about to be shot by a corrupt cop when a drunk driver saves the day. tt0318374,-2KG4lLGEl0,Shelly uses a colorful analogy to defend old-time Las Vegas against the family-friendly changes being suggested by Larry. tt0318374,RZKKrQ8y_Uw,Natalie seduces Bernie as his luck turns around in a big way. tt0318374,djh21tkgGJ4,Shelly tries to convince Bernie to stay in Las Vegas and work in his casino. tt0318374,AoKtg7t1Y0M,Natalie tells Bernie her dark secret about giving up her son for adoption. tt0318374,vkXY0EqahbY,"Wanting to improve business, the condescending Larry recommends some new tactics to old-school casino boss Shelly." tt0318374,W4kci76gyn0,Buddy shoots up and tells Shelly about the way that lions age in the wild. tt0318374,uWY60oFlfxs,"Bernie reunites with his estranged son, Mikey, in a Las Vegas diner." tt0318374,s33dP0ETrCo,"Shelly describes the Shangri-La of ""Lost Horizon"" and laments the changes coming to Las Vegas and his casino." tt0318374,5Ii0_2kAYlU,Bernie tries to save Mikey from getting beaten by Shelly for cheating at the casino. tt0318374,lzo2hgdDUDw,Bernie bets a large sum on his game of craps as Shelly watches nervously. tt0108026,PW3WxPo74c8,Matthew gets stabbed by Little Leroy as he is trying to escape from the homeless shelter. tt0108026,QwkW-Rbo3kE,Matthew meets Spits and Tamsen when he and Jerry take shelter at their apartment for the night. tt0108026,Joh9cLv0bp4,"After seeking out Matthew's grave, Jerry delivers an emotional goodbye." tt0108026,S1_AkfEVPpI,"Jerry fights back when the cops try taking him to the homeless shelter, but Matthew doesn't get away so easily." tt0108026,iJGazi2EdrQ,Jerry christens Matthew the 'saint of the homeless' after Matthew relieves Spits' pain with only the power of his touch. tt0108026,9ZEUnzRzvGg,Jerry tries to bring Matthew back to reality when he experiences one of his schizophrenic episodes. tt0108026,S1sbKYDgyWA,Jerry puts up a fight with Little Leroy when he catches him threatening Matthew. tt0108026,NQtL20JoP3Q,"Matthew struggles to get the hang of his new job, but Jerry helps show him the ropes." tt0108026,SuEt5n-k0e8,"When Little Leroy threatens to hurt Matthew, Jerry steps in and declares that Matthew is his son." tt0108026,ezOyoEG6GW8,"When Matthew tells Jerry about his schizophrenic episodes, Jerry argues that all of the great saints heard voices." tt0070460,jSnvLrw4YR0,Julie convinces heartbroken Alphonse to stay and finish the film. tt0070460,tlI--ATerwo,Severine and the Ferrand share their thoughts on filmmaking. tt0070460,zFxkzMB3qCE,Dr. Nelson and Alexandre discuss the vulnerability of actors. tt0070460,p4HqnBtsz1I,The film crew is given bad news about the death of Alexandre and how the production may be shut down. tt0070460,nBsxbjTIJxs,The director Ferrand answers many questions from his film crew and explains the definition of a true director. tt0070460,Dj9G_kEq5W8,The director Ferrand has one mission: he must complete his film the best he can. tt0070460,uFNIrs3jtEQ,The director Ferrand gets frustrated when Severine can't remember which door to open. tt0070460,kYFrx0jdcoY,The director Ferrand gets the take he wants from a car stunt. tt0070460,W6KRJEKYY7k,The film crew shoots a complicated take in a town square. tt1285016,JFeaWHDQzQA,Marylin advises Mark to settle his court case. tt1285016,y3NLNK72mzI,Eduardo and his lawyers recount the story of how he was betrayed by Mark. tt1285016,Dwiczhta4e0,"Mark shares exciting news about the business with Eduardo, all while he has a crazy fight with Christy." tt1285016,TGqOd_3mrr4,"Mark and Eduardo take advantage of their new-found fame. Then, Mark decides to expand Thefacebook after a chilly encounter with Erica." tt1285016,k5fJmkv02is,"Mark and Eduardo meet with the notorious founder of Napster, Sean Parker." tt1285016,6-_tIPShuwQ,"Mark and Eduardo argue about a cease and desist letter Mark received from the Winklevoss twins. Then, Mark and the twins argue over the rights to Facebook." tt1285016,VlSkPA60ujQ,"Mark acts like an arrogant jerk to his girlfriend, Erica, causing him to get dumped." tt1285016,rX6oUNKUbI8,"The Winklevoss twins meet with the Harvard president, Larry Summers, to discuss Mark's theft of Facebook." tt1285016,6KHyMISpE18,Sean gives Mark business advice while partying at a night club. tt1285016,-Koj9hvcBMk,Mark asks for recognition from the Harvard board instead of hostility for breaking security measures. tt1568346,9jL7oaQAPMI,Lisbeth helps tend to Mikael's wounds after he gets shot at. tt1568346,i2xyQnF1kro,Mikael recruits Lisbeth in his hunt for a woman killer. tt1568346,5enqrVvjxg0,Lisbeth saves Mikael from getting killed by Martin. tt1568346,63Lf9kwyWd4,Martin leads Mikael on an ominous tour of his house ending in a room full of poisonous gas. tt1568346,gTakZ13l8xY,Martin explains the art of his crimes to a restrained Mikael. tt1568346,vP7uKAQLwXc,"Lisbeth chases Martin on her motorcycle. She intends to kill him after his car flips, but then it catches on fire and she doesn't have to." tt1568346,YvNjJgJM728,Lisbeth tells Mikael why she's a ward of the state. tt1568346,mCSno4xODKY,Lisbeth deceives bankers into transferring Wennerstrm's money into her own accounts. tt1568346,DSaBwTpdfkQ,Lisbeth finds Mikael with Erika and decides against giving him her gift. tt1568346,iddBzE3syI4,"Lisbeth visits Nils to get money, but Nils has more sinister intentions." tt3850214,bwoxnQ4eLR4,William argues with Malcolm and his friends about using the 'N' word. tt3850214,P2eknXZ8aLk,Malcolm writes his Harvard application essay. tt3850214,TktPJgdwMtQ,Malcolm seeks help from a criminal who asks him to punch him in the face. tt3850214,ytHR10ZesTY,"The gang is introduced to their drug dealer, William." tt3850214,w-juhvM7yug,"Malcolm and his friends tease Jaleel about his less than impressive rap. Then, they record a song in his studio." tt3850214,MnMwbnAWawE,"While on drugs, Lily pees in broad daylight. Meanwhile, Jaleel causes a gang fight, causing a scene with Malcolm at the center." tt3850214,EHUO2DqnD-o,Malcolm and his friends run away from a drug lord who is tracing their iPhone. tt3850214,_4Od7V2mVG8,"Dom and his fellow gangsters argue politics. Then, they are shot up by a rival gang." tt3850214,rLNN6Kef3Yk,Malcolm and his friends deal with life as a geek in a tough neighborhood. tt3850214,8BplQQtTt_A,Malcolm blackmails Mr. Jacoby for admission into Harvard. tt2473602,7doKgPFilPg,James Brown opens for the Rolling Stones. tt2473602,7DP-JKwZrA0,James Brown and the Famous Flames travel to Vietnam to sing for the troops. tt2473602,IfecgEak80I,James Brown meets Bobby Byrd after a prison fight. tt2473602,pKsa_9TFG48,Young James Brown fights other young boys in a boxing tournament. tt2473602,p_wCMFyHeUE,"James Brown performs ""Night Train"" at the Apollo Theater." tt2473602,YYo5jJy61T8,Ben Bart and James Brown unveil the new band name to the group. tt2473602,_PSEaTZSZEE,James Brown convinces Ben Bart to consider new business practices. tt2473602,2rSnCcaMDdg,James Brown plays a show in Boston just after news of Dr. Martin Luther King Jr.'s death. tt2473602,4At_9_s2lDY,James Brown and Bobby Byrd sing Soul Power. tt2473602,9OlXAy0L0yI,The band confronts James Brown about their working conditions. tt0811080,5X_ZiFC5RMg,Royalton Industries' lead driver Cannonball Taylor cheats the race by using a spear hook to sabotage Speed Racer. tt0811080,qIs2PMXvAmQ,Speed Racer gets sharply aggressive on the racetrack while battling his competitors. tt0811080,YiCzTGRqCQ4,"In the middle of the night, a ninja attacks the Racer Brothers." tt0811080,O-QaGllHqN0,Speed uses the lessons he learned from his brother to succeed on the racetrack. tt0811080,gC672314kEU,Trixie reminisces about her first interaction with Speed. tt0811080,YYsdcBacV2U,"While racing to beat his brother's track record, Speed remembers his final days." tt0811080,gZ-QU3KT1PE,Racer X rescues Taejo Rogokahn from Cruncher Block and his goons. tt0243133,sR0wCC271s4,Ed Crane shares his thoughts about being a barber. tt0243133,GC9MkHzTnRg,Big Dave reveals to Ed that he knows he took his money and things turn violent. tt0243133,Zti44ptZTrc,"Big Dave Brewster makes a startling confession to Ed, who sent him a blackmail note." tt0243133,KsimmeikE7w,Ed meets the lawyer who will help him get his wife out of jail. tt0243133,BjsuTimPBAM,"Ed admits to killing Big Dave, but Freddy Riedenschneider takes it as a desperate lie to save his wife." tt0243133,gM8trQSURdg,Ed persuades Birdy to pursue her music career. tt0243133,f2Hz2k2PcfI,"Using the Uncertainty Principle, Freddy Riedenschneider puts together his defense against Big Dave to save Doris." tt0243133,XtduKM28ohU,Birdy Abundas thanks Ed for his interest in her music career in such a way that he crashes the car. tt0243133,ZLjp7ahdbWc,Ed thinks about his past life as he prepares for his execution. tt0243133,hOB4Qm1IiOY,"After Doris kills herself, Ed haunts his ruined life like a ghost." tt0119080,xPwAEt1Ajmk,Lenny threatens to kill Louis if he ever speaks to his wife again. tt0119080,IN0Nrftr8a0,Eve finds a letter that Louis wrote to explain his reasons for hitting Cisely. tt0119080,XzUFmbuyrCc,Eve visits Elzora for help ridding her family of an evil presence. tt0119080,DYt__vjvf9s,"Sick of being stuck inside the house all day, Eve talks back to Roz and steps out of line." tt0119080,B0vxLqX3oAQ,Mozelle recalls the deadly showdown that occurred between Hosea and Maynard. tt0119080,10f-q34JJZs,Eve asks Mozelle about using voodoo to commit murder. tt0119080,WUVa_vf09dg,Mozelle mourns the death of her third husband and laments her inability to predict her own future. tt0119080,kIPK3l5gd9g,Elzora upsets Mozelle when she reads her fortune and predicts more death. tt0119080,O60YQRhi0s0,Eve wakes to find Louis making love to Matty. tt0119080,6LBW-X4DnSU,Louis sends Eve out to play when Stevie requests some unorthodox medicine. tt0119080,DbUDOZoHYkU,Louis tries to reassure Eve after she catches him with another woman. tt0065112,MF_RlYTOmco,"Boris Kusenov exposes the identity of a spy and the code word, ""Topaz""." tt0065112,Nz4zu_fSHYY,"Rico discovers that Dubois has stolen private information. Before he can catch him, however, he stealthily passes the camera on to Andre." tt0065112,5SkzHjQrCXk,Nicole lets on that she knows about Andre's mistress. tt0065112,tS36ZnWoR70,"After discovering he is a spy, Rico threatens Andre and kicks him out of Cuba. Then, Juanita defends him." tt0065112,HLw1Og_JXK8,"Andre gives his mistress, Juanita, the tools she will need to help him spy on the Cubans. Then, they share a moment of passion." tt0065112,dkAv65bo8a8,Rico is forced to kill Juanita after discovering that she has betrayed him. tt0065112,FQoR9fu-CIE,Francois digs up valuable information from Jarre. tt0065112,jVu_cuFHZnc,"Andre tells his fellow agents about Topaz, the spy ring he discovered." tt0065112,7A6HQOrRDiw,"Francois reveals his drawing of the traitor, who Nicole recognizes due to a dirty secret." tt0065112,8yACSHANED0,"When their phone line gets disconnected, Andre and Michle rush to find Francois, only to discover the dead body of Jarre." tt0100519,ACcJF4BpXXU,Claudius announces the death of Rosencrantz and Guildenstern after their hanging. tt0100519,tdADTzvJtSY,Rosencrantz wonders if it would be preferable to be alive or dead once inside a coffin. tt0100519,zJ3hgBFfQy0,Rosencrantz tries to remember the very first moment in which he became aware of his own mortality. tt0100519,C_TfdNAXOwE,Rosencrantz infuriates Guildenstern with a seemingly endless series of correct guesses in a coin toss. tt0100519,g3FFfmWvyAk,Guildenstern pretends to be Hamlet so that Rosencrantz can practice questioning him about his affliction. tt0100519,exFv7Srgwpk,Guildenstern thinks he has killed the Player until it is revealed that he has faked his own death. tt0100519,fxVsGcxK1nc,Rosencrantz gets a surprising wake-up call when pirates attack the ship. tt0100519,7wniAznxp08,The Player describes the meaning of a proper ending. tt0100519,BLgX2oB_qn4,The Player leads the theater troop in the performance of a play. tt0100519,pf0erXl4pwQ,"Rosencrantz and Guildenstern debate the direction of the wind, and weather in general." tt0100519,u3xIs0aajN4,"Rosencrantz and Guildenstern play a strict, yet confusing, game of ""questions.""" tt0186508,5lCObNv4T5M,Emotions run high as Ibrahim Ferrer and Omara Portuondo reunite to sing a duet. tt0186508,yTq_QU464Aw,"Cigar smoking singer Francisco Repilado describes his childhood and affinity for smoking, then plays a duet with producer Ry Cooder." tt0186508,K8PDbQK7Jro,Rubn Gonzlez plays piano for a suit clad audience in New York and a group of adolescent gymnasts in Cuba. tt0186508,qzjPtczHQkU,Barbarito Torres rips a guitar solo behind his back. tt0186508,tdfhiqOFtjk,"As he listens to his record on an airplane, Ry Cooder recalls how he re-united the band." tt0186508,qodNg2Xr7mA,Eliades Ochoa and Puntillita explore New York City. tt0186508,e7uz82t68To,"As the band play ""Chan Chan"" in New York City, the music and culture of Cuba fuse in a grand finale." tt0205271,FJZR935H0hw,Dr. T races over to Bree's apartment to ask her to run away with him. tt1632708,LEq4-b61Hoo,Dylan finds Jamie on her rooftop and the two argue about their relationship. tt1632708,-SkeK7t74oo,"While trying to convince Dylan to take a job and move to New York, Jamie shows him her favorite spot in the city and a flash mob in Times Square." tt1632708,7fduMinwJZ8,"Before ever meeting, Dylan and Jamie are dumped by their significant others." tt1632708,q8nzGlXDvO8,"Despite agreeing to just be friends, Dylan and Jamie fall for each other and share a night of true passion." tt1632708,kzf7hr9O00k,Jamie rushes to meet Dylan at the airport. tt1632708,8Pd2fpoD0Xg,Dylan and Jamie agree to have sex with none of the complications. tt1632708,Y9b8tw9TR2k,Dylan stages a flash mob in Grand Central Station to profess his love for Jamie and get his best friend back. tt1632708,PI6Q87pjO0o,Dylan and Jamie watch a cheesy romantic comedy together in Jamie's apartment. tt1632708,PX5QjCErMgU,"Jamie's mother, Lorna, walks in on Dylan and Jamie in the middle of a hookup." tt1632708,qqSS99m2dQ0,"Dylan and Jamie agree to stop having sex and start seeing other people. Then, they both try to catch a date in Central Park." tt0205271,wJeeueogQQ4,Carolyn takes Dr. T's compliment as a sexual invitation while giving him a massage at the end of a long work day. tt0205271,LEQ9ISPbfyM,"At her wedding, Dee Dee leaves the groom at the altar and runs away with Marilyn." tt0205271,p9d7IXlAVUo,A distraught and heartbroken Dr. T drives straight into a Texas tornado. tt0205271,SRlJ2SMwwYg,"Dr. T checks on a new patient, Marilyn, who happens to be his daughter's lesbian lover." tt0205271,Z-DbvvyH6Q4,"Dr. Harper discusses the Hestia Complex with Dr. T and how it applies to his wife, Kate." tt0205271,K1ubjdkdmkc,Connie talks to her father Dr. T about how he can't let Dee Dee get married because she's a closeted lesbian. tt0205271,JZ5bvcWLEW4,"Dee Dee gets very excited once Marilyn arrives at her bridal shower, while Connie can't help but be jealous." tt0205271,QWPntJVp6cM,"Dee Dee tells Marilyn the tale of the lady of the lake, igniting past feelings they had for one another." tt0101698,Gae_um_eNZU,Daniel becomes self-conscious when his prosecuting attorney Lena walks in while on a date with Julia. tt0101698,wdS1l__SWms,"Risking his life to be with the woman he loves, Daniel breaks free of the train and chases after Julia, as Bob Diamond and Lena Foster watch the brave act." tt0101698,wfq7O3AgXdE,Daniel and Julia joke about how they died during their mini-golf date. tt0101698,N8QzCj1RdpU,Daniel goes out for a sushi dinner and encounters some very energetic chefs. tt0210358,baNc64S4DHY,June reads braille and gives some advice to Carol on dating her dad. tt0210358,QeWifFsvr8o,Christine tells her sick girlfriend Lilly the story of how they met. tt0210358,kZcr7bw6k_k,"Jay and his mom talk about their new neighbor, among other things." tt0210358,f8-6UgJ6dSo,A mother-son chat takes a surprising turn for Rose when she learns that Jay is sexually active. tt0210358,_DtsWj_e2vI,Kathy helps her sister apply makeup before a date. tt0210358,aL_6-dQCzwg,Rose is embarrassed when she's caught spying on her new neighbor Albert. tt0210358,YpDpOphD1zo,Rebecca shares a smoke and some conversation with a bum in a bank's parking lot. tt0210358,NKjZRRw3-Fs,"While Rebecca and Walter talk about the previous night, Nancy, a bum, interferes in their conversation." tt0210358,_5uHK-fVMcY,Christine reads Dr. Keener's tarot cards. tt0210358,U9t_bzEKBnA,Rebecca follows Walter to a bar to get a drink with him. tt0091934,bJ63bxSclsU,Mr. Wasey tricks Mei Gan into holding his belt just as it's timed to explode. tt0091934,4_mFP5qAVqM,Miss Tatlock gets drunk and falls into a pile of ducks when she feels shame for blackmailing Mr. Wasey. tt0091934,keTP_H6jqZk,Miss Tatlock and Mr. Wasey work together to escape from the crates in which they've been locked. tt0091934,2_ix6kre_tA,Miss Tatlock seduces Mr. Wasey to keep him obligated to help her. tt0091934,g0RJFzg31xY,Mr. Wasey and Miss Tatlock prepare to part ways on the eve of his return to America. tt0091934,5QEWc2zmxGE,Mr. Wasey meets with noted concubine China Doll in an attempt to learn more about Faraday's opium. tt0091934,8wx1XlXs4Ss,"Mr. Wasey and Miss Tatlock negotiate with Ho Chong, who betrays them with a dirty trick." tt0091934,P3YJLGWoPL0,"Caught trying to flee Shanghai, Faraday makes a run for it when his secret belt is confiscated." tt0091934,xW2pDmzhD4o,Mr. Wasey and Miss Tatlock flee from an angry mob via rickshaw through the back alleys of Shanghai. tt0091934,wbWWF1RwQU4,Mr. Burns and Miss Tatlock recruit Mr. Wasey to help them with their mission. tt0091934,Vk1Ca1ruQKA,Miss Tatlock catches Mr. Wasey using the money she gave him for food on rice wine. tt1307068,WL4kf1SZAE8,"When Penny gets pulled over by a cop, she pleads for some mercy." tt1307068,AtgkgRgn8Y0,"Dodge tells Penny what he plans to do with his last days, but she reveals some bad news." tt1307068,xAf9G9cqQbw,Penny and Dodge spend their last night together and declare their love. tt1307068,f6-8wpMn_8I,"Dodge reconciles with his father, Frank, who he hasn't seen in 25 years." tt1307068,PMLfJk1X64I,Penny and Dodge get to know each other until the staff at Friendsy's gets a little too friendly. tt1307068,YFnErcVxB-Q,Penny and Dodge have dinner at a restaurant where everyone is your friend. tt1307068,1yi8Mc-5kLc,Dodge and Penny hitchhike with a man who has ordered a hit man to kill him. tt1307068,Ot5G0Nh6EyY,Dodge's friend Roache explains how the last days have become the best of times for losers like them. tt1307068,EHqjx0MHej0,Warren and Diane argue over what Dodge should do in his last days. tt1307068,eT4bhNABlYM,Dodge goes to work on one of the last days of life and finds that everyone has lost interest. tt0091777,2kV2EVWNqXQ,"When it comes to the evacuation during the tear gas training, Cadet Zed takes a unique approach." tt0091777,wI1LRBDvSFs,"Lt. Proctor, naked as a jail bird, accidentaly stumbles into the gay club The Blue Oyster." tt0091777,N6jkWHo8D_s,"Cadet Nogata takes some advice from the ""Love Doctor"" a.k.a. Sgt. Jones in his approach to hitting on Lt. Callahan." tt0091777,srLwGlDe598,Sgt. Tackleberry and Sweetchuck help an old lady get her quarter back and then investigate a bank robbery. tt0091777,--ifbq2xY6I,Capt. Proctor is the victim of a practical joke from a hooker. tt0091777,1e_9GirqmoI,"Hightower, Hooks, and Jones are just some of the former cadets welcoming the new cadets to Police Academy." tt0091777,qo1cSaFhPiQ,"Sgt. Jones supervises a driving test, while Cadet Zed hotwires a car." tt0091777,cil6HFXlccw,"Zed, riding a motorcycle, taunts Sweetchuck who's riding a scooter on the way to the academy" tt0091777,7g5k1qwVLjw,Sweetchuck has difficulty getting some sleep with his roommate Zed. tt0089822,REwimg6y1Cg,"Mahoney has trouble breaking up a bar fight, but luckily, he has Officer Hightower." tt0089822,WqWefwlmFmI,Mahoney responds to a robbery in progress as does every other officer with a jittery trigger finger. tt0089822,kPNy_yGvpKI,Zed and the gang go grocery shopping for free. tt0089822,u7IXETT9OEQ,Mahoney appeals to Pete Lassard for another chance after his team causes some major property damage. tt0089822,TUMru_xqvMU,Tackleberry visits the family of Kirkland and sees their strange way of showing affection for each other. tt0089822,WFUAl0Nly7Y,Tackleberry and his new partner Kirkland compare guns. tt0089822,3EIqxstBVCs,Larvell Jones has some fun with an annoying couple eating a meal. tt0089822,hH0av1iDYVI,Larvell Jones channels Bruce Lee when two hoodlums mess with his green grocer. tt0089822,akSjCFfKAMo,Tackleberry and Kirkland confess their love for each other. tt0102395,3i7EvW15Lyk,Jason rescues Jessie from the evil clutches of Count Spretzle. tt0102395,LWvcLI0lcFQ,Montrose impersonates a military officer to spring Jason out of jail. tt0102395,OwfT8yTBPYs,"Riding on an electric toy car, Jessie and Jason narrowly avoid the soldiers and security." tt0102395,HRJ1g7i0Ob8,"Hollywood Montrose meets his new assistant, Jason." tt0102395,_525BmUkPmI,"Jason prepares breakfast for Jessie, but is stunned when he finds out that she has reverted back to mannequin form." tt0102395,4JtubCgodCE,Count Spretzle sends his goons after Hollywood Montrose and Jason. tt0102395,oToIYlwJY9I,Jason takes Jessie out on the dance floor where she shows him some moves. tt0102395,UxjYMYu0F8o,Montrose puts on the necklace and turns into a mannequin. tt0102395,q1SFvQhjK5I,Jason shows Jessie the restaurants and shops of South Street. tt0093493,J5K0XKyL3i8,Switcher meets the store's security team led by Captain Felix Maxwell. tt0093493,DGQkgqsHQns,Switcher and Emmy get married where they first met. tt0093493,p6HbXVaNFfc,Switcher and Emmy take advantage of an empty department store and some good tunes. tt0093493,vW7-H-GGYwk,Hollywood handles the cops while Switcher rescues Emmy. tt0093493,qA_zzk2c7G8,Switcher needs some career counseling after being fired from numerous jobs. tt0093493,Ug6yhGuDcUQ,Felix attacks Switcher after catching him rolling around with Emmy. tt0093493,z7gYF5LF-ec,Switcher freaks out when his creation comes to life in the form of a real woman. tt0093493,dIy6QpVNPuo,Felix and Richards engage in a reckless car chase. tt0093493,TeeNLFHot1Q,Switcher and Emmy run into Roxie. tt0093493,YvT0GTWPw0M,The bumbling duo of Felix and Richards kidnap Emmy. tt0093493,0RM_Ehtb5C4,"After her rescue, Emmy realizes she's become a real woman." tt0093493,ORV1uYzvZzo,Justice is served when the cops apprehend B.J. and his cronies. tt0102395,wBM9Aa_HG8g,Jessie transforms from a mannequin to a girl for the first time in one thousand years. tt0097758,QQFxcGwtEBY,"Eric is consoled by his parents when a ""monster"" scares him before hiding under his bed." tt0097758,MQ1YkJX4SJM,Maurice and Brian pay a special late night visit to Ronnie. tt0097758,wzYPC7FOJtc,Maurice shows Brian the ropes of life south of his bedroom. tt0097758,dHSjJmNISjs,Brian's parent's sit him and his little brother down to tell them they are going through a trial separation. tt0097758,_5HRlIFjZiw,Maurice accompanies his new human friend Brian to the monster world underneath Brian's bed. tt0097758,AbU-6GsTbyE,Brian traps Maurice with a light display. tt0097758,raGaJdEHjEI,"As they say goodbye, Brian tells Maurice that he's his best friend and Maurice gives him his jacket." tt0097758,IWZLSjyJPsU,Brian has a rough first introduction to Maurice and discovers that sunlight hurts him. tt0097758,75AdYZPT3nE,Todd tells Eric a scary story. Brian decides to scare them by tapping on the wall. tt0097758,AgCF4dXv2JE,Brian gets in a fight with a bully at his new school. The principal thinks Brian is the troublemaker. tt0097758,KVWBllfyysk,Brian's plans back fire and he and his friends get captured by Boy and his minions. tt0084745,KrBI7YdIPYk,Swamp Thing battles the Arcane Monster to defend a wounded Alice. tt0084745,osE84bZ1jNc,"Swamp Thing loses an arm, but crushes Ferret's head." tt0084745,71Nmq8VOKnY,"After drinking the formula, Dr. Arcane transforms into a mutated monster. Meanwhile, Swamp Thing regenerates his missing arm by using the power of super photosynthesis." tt0084745,1GfDQpfUaHQ,"After rescuing Alice from the bad guys, Swamp Thing shares a rare moment of tenderness with her." tt0084745,sISJ7r3kERg,Dr. Arcane secretly doses Bruno at a dinner party who transforms into a troll-like creature. tt0084745,bWQ1ekGzhwU,"Swamp Thing takes on boats, grenades, and gunfire." tt0084745,q42thgSKkpo,Swamp Thing saves a drowning Alice from Arcane's henchmen. tt0084745,Cony281khiE,Swamp Thing foils the bad guys by using his brute strength to protect Alice. tt0084745,zLkNUykewic,Dr. Holland accidentally spills chemicals on himself leading to self-immolation. tt0084745,cio6rIbCs-I,Dr. Arcane reveals his true identity by pulling off a mask of Ritter. tt0263488,T5cFTmim4Rw,The Creeper stalks Darry and Trish from behind a one-way mirror before attacking them. tt0263488,VBTrQhEwFqA,Trish tries to negotiate with the Creeper who takes Darry anyway. tt0263488,kJnH45GslL0,Darry confronts Jezelle about her dreams and predictions. tt0263488,vFD6BbYg0-0,The Creeper ambushes the police station and puts a hole clean through the chest of a police officer. tt0263488,BXXY48jjLtw,"Trish tries to runs over the Creeper, but the creature displays incredible agility as it dodges every one of her attempts with ease." tt0263488,5ZUgU9CsjDc,Darry and Trish are surprised by the Creeper's disguise. tt0263488,P5kDAUzl-T4,Darry and Trish watch in horror as the Creeper eats the tongue out of a decapitated head. tt0263488,nI6agjxMa2s,"Darry and Trish meet the Creeper again, this time, getting run off the road." tt0263488,oWSIUe5wYvc,Darry finds the wrapped up body of a mutilated boy who's still alive. tt0263488,6QYw68kf4sI,Darry and Trish are nearly run off the road by an aggressive truck driver. tt0263488,AZfCHDSJc8c,"Darry's curiosity gets the better of him, leading him to accidentally slide down the pipe." tt0097737,6loInvUSYEM,Dr. Thompson discovers a genetic altering virus on Sixpack's neck. tt0097737,5vFi7gu-g-w,Beck and his crew encounter bureaucratic resistance from Martin as they beg for a way off of the mining facility. tt0097737,RPW4sx3UYjU,"Fearing that the an unknown contagion has spread to crew, Dr. Thompson performs a skin examination to determine who is infected." tt0097737,3lex4AAgAfs,Dr. Thompson saves Cobb from an attack by the creature. tt0097737,wa1uJbTy6XE,"Just as they are about to be saved, Beck throws an explosive in the monster's mouth and blows it to smithereens." tt0097737,8IJEqeoPPs8,"During a fiery battle, Willie and Justin manage to make their escape, while Steven gets into his suit." tt0097737,NP2fSxIpvis,"Justin freezes, then runs for help, when DeJesus is attacked by the monster in the kitchen." tt0097737,KMI-Sxq9Npg,Dr. Thompson and Beck talk about the serious consequences involved with mutation experiments. tt0097737,zeSe5X9ALXg,Willie and the rest of the crew panic when the monster rips through Cobb's hand. tt0097737,ZP73cUcxidQ,"Just as the crew are about to flush the bodies of Sixpack and Bowman, something starts to wiggle around in the body bag." tt0097737,w9I7PBSMBZw,The crew is ecstatic when they stumble upon the Leviathan ship underwater. tt0144814,jqpkvCebSmU,"A year after the traumatizing party, Jesse, now in college, has a dream about Rachel." tt0144814,Jmls6360U9Q,An abandoned Rachel develops early signs of telepathy. tt0144814,E_14d8dHpns,Rachel wrecks telepathic havoc on partygoers. tt0144814,7SojZ1TuMsk,"Overcome with rage, Rachel confronts the last of the survivors." tt0144814,xTKfpU41hbY,Jesse confronts Rachel and expresses his love as the pool house burns around them. tt0144814,Rt3u4bU6EMU,Sue attempts to open Rachel up to her powers in order for her to gain self-control. tt0144814,UK0wGi3JHrY,Coach Walsh makes Mark drop his trousers in front of the team. tt0144814,qWiGcXSaKUc,"Sue recounts the events of a night over twenty years ago with Rachel's half sister, Carrie." tt0144814,ATU0Znam5Pw,Sue tries to console Rachel about her friend committing suicide. tt0144814,crIlIvBYMoc,Lisa jumps off of the high school roof. tt2334879,nm86_ZWeUzk,Cale takes on Stenz while Walker attempts to initiate a missle launch while holding Emily hostage. tt2334879,UF2c01_glHU,"Walker threatens to kill Emily if President Sawyer doesn't do what he says, while Cale gets a little violent help from Donnie." tt2334879,aucs5KRFzhE,Helicopters are shot from the sky by terrorists on the roof of the White House while Cale tries to stop them. tt2334879,c4ibjfBu1IY,Tyler hacks the missile codes and sends one to crash Air Force One and kill the Vice President. tt2334879,PZBy1m-MmlQ,Everyone watches as Cale fights Stenz on the roof of the White House. tt2334879,vqxbLAcIgiw,"When Walker and Stenz corner President Sawyer, he reveals that he has a grenade." tt2334879,WCaRP0aT9CU,President Sawyer shoots a rocket at a gate on the White House lawn so Cale can get them away from the terrorists. tt2334879,bp_GxHYCq90,"Cale protects President Sawyer by hoping in the presidential limo, Ground Force One." tt2334879,JV2dQauaWCU,Cale gets surprised by some mercenaries and President Sawyer realizes he needs to step up. tt2334879,_Mr6MQB8vRg,"While looking for his daughter, Cale saves President Sawyer from his rogue secret service agent Walker." tt1599348,snTvACYp8NA,"Matt Weston and Tobin Frost go to a new safe house in the country. Weston is attacked by the housekeeper, Keller." tt1599348,g9d1TR6Lb9g,Matt Weston tracks down Tobin Frost and helps him escape from the group of mercenaries who have been hunting him. tt1599348,KyfXb39rGT0,Tobin Frost attacks corrupt CIA agent David Barlow and his team of mercenaries. tt1599348,XJsuAUwGz0M,"Thinking they've escape the team of hired guns that want to kill them, Matt Weston and Tobin Frost are blindside by more mercs." tt1599348,Cn_nTq97C7Y,"Matt Weston, after escaping police, chases after Tobin Frost outside a stadium." tt1599348,mr3L2D4yv-0,Mercenaries attack the safe house where top criminal Tobin Frost is being held. Agent Daniel Kiefer leads the defense while Matt Weston freezes in shock and doesn't know what to do. tt1599348,mlpkQuvDJbs,"Ex-CIA agent turned criminal, Tobin Frost, is attacked by a team of mercenaries after he aquires important files from another agent." tt1599348,5asGTRoIqCw,"After escaping from a group of mercenaries, agent Matt Weston is attacked by criminal Tobin Frost who has broken out of the trunk." tt1599348,NkhIROsY7Pg,"After escaping the safe house with Tobin Frost, Matt Weston finds himself being chased by multiple mercenaries who are intent on killing him." tt1599348,qCYYMqHyPKk,"After mercenaries raid the safe house and kill everybody, only Matt Weston is left guarding Tobin Frost." tt2140379,BQ8vGslccwQ,Damian reveals to Madeline that he's living in her husband's body. tt2140379,nwQtd7csTKo,Damian finds the house of the man who's body he's inhabiting. tt2140379,LFVi_krq2PM,"Martin betrays Damien, who in turn reveals that Martin's son Tony is someone else's son." tt2140379,ohZ_J5yHSkc,Albright realizes Anton's shedding procedure didn't take and Damian is still in control of the body. tt2140379,M4LzhjtD3YQ,Mark wakes up confused in his own body and a video from Damian explains how he's back. tt2140379,8gIZMane5sI,Damian tries to lead the henchmen away from Madeline and Anna. tt2140379,nJIecTXKUrc,Damian experiences hallucinations while adjusting to his new body. tt2140379,EeQ_0rq-z1M,"Damian is taken into a lab for his shedding procedure, and he emerges as a young man." tt2140379,_wAX37x54hk,Damian saves Madeline from Anton and the other henchmen trying to kill them. tt2140379,_iMsHacXWd4,"After Madeline saves Damian, the second Anton reveals himself as a product of another round of shedding." tt0434409,jz6VC23rVTE,"Evey discovers a note written by Valerie, a former prisoner of Larkhill, that gives her comfort and hope." tt0434409,Z4RCK8LAFM0,V saves Evey from being raped and the two introduce themselves. tt0434409,a7KgMV3DXw0,"V, Creedy and his men have a final showdown with V ultimately ending up victorious." tt0434409,0IyuK069I-w,V breaks into BTN and speaks to the entire population about the problem with politics in London. tt0434409,6qxQ2l1DC6Y,Evey finds out that her captor was actually V and her prison was fake. tt0434409,_VEDJMixt3c,V shows Evey the train that will be carrying the explosives to Parliament and gives her the power to carry on as she desires. tt0434409,QO0K8wfZrHc,"After V cleverly takes over the newsroom at the BTN, the police can't determine who is a real hostage." tt0434409,3wXG_J4cPpg,V visits Lewis at his home and kills him. tt0114576,swEgflM5Ol4,"While escaping from terrorists, Darren steals a goalie uniform and ends up being in the hockey game." tt0114576,lQr3va8emXg,Darren McCord forces his way into the owner's box from above and rescues his daughter and the vice president. tt0114576,Ho0k513yN6E,Joshua Foss prepares to blow up the stadium while Darren kills the rest of the terrorists. tt0114576,2NNTVLRN-Ms,"After rescuing his daughter, Darren McCord stops Joshua Foss from escaping in a helicopter by shooting the pilot from below." tt0114576,WksivsiSF_o,"Darren McCord realizes that Hallmark, the Secret Service agent who has been helping him, is working for the terrorists." tt0114576,qFprLPWDd-Y,"While searching for his missing daughter, Darren McCord comes across a terrorist dressed as the mascot Iceburgh." tt0114576,5M4VIDlRYjQ,"After finding out there are terrorists in the stadium, Darren McCord calls 911 only to get connected with Secret Service Agent Matthew Hallmark." tt0114576,oRRupV-lwbU,Terrorist Joshua Foss explains the situation to his hostages. tt0114576,3tvpgXQ4y4Q,Darren McCord takes a moment to make an improvised weapon for himself before taking out another terrorist and disarming a bomb. tt0114576,Se38Z08pYS0,"After surviving a big fight with a woman who kidnapped his daughter, Darren asks a secuity guard for help only to discover that the guard is a terrorist as well." tt0101698,mdHpbI8Y7Oo,"Daniel witnesses previous mistakes committed by himself during his time on Earth - some are ""fear-based, others just stupid.""" tt0101698,V26hcTgoDLY,"At a comedy club named The Bomb Shelter, Daniel meets Julia." tt0101698,ZsqkTaYITKQ,"When Julia asks Daniel to spend the night, Daniel makes a decision that goes against his instinct and heart." tt0101698,x1FhrhoudSE,Daniel meets his lawyer Bob Diamond who describes the process of Judgment City. tt1648179,sILyPxN_1Dc,Bella fixes Scott's dislocated shoulder with a special move. tt1648179,4LvvutsvgrE,Scott is mortified when his opponent chooses his same entry music and Marty suggests a Neil Diamond tune for his entrance. tt1648179,xdnibOE5L40,"Even though Niko has concerns, Scott meets with Joe Rogan to discuss the possibilities of a real UFC fight." tt1648179,yKv7A92MoBY,Scott is put to the test by a potential new trainer. tt1648179,FAAKfmF5Jl4,Scott and Bella fight on their first date. tt1648179,JfEde8D6XE8,Scott and Niko train for their respective upcoming tests. tt1648179,NSTXoI3j4ko,"Scott wins his first semi-professional fight, but can't seem to hold in all his excitement." tt1648179,BTeAQ_QLObc,Scott prepares to train with his student and former MMA fighter Niko. tt1648179,euJyO4E3FzE,Scott prepares for his first fight in an amateur MMA ring. tt1648179,EvUbi66AGKI,Inclement weather threatens Scott's second fight. tt1204975,NuTbNeev0sk,"Sam gets a chance to cheat on his wife, but he doesn't go through with it." tt1204975,gPjQr9sSrmQ,Paddy fights Billy for Diana and ends up learning the truth about his deceased wife. tt1204975,mAhhCpdnVkI,The bachelor party is in full swing when Paddy punches a punk for messing with his friends. tt1204975,mJ7S9aUZgZA,Archie finally gets to dance and Lonnie turns 50 Cent away from the party. tt1204975,VhdCpMoShM4,The casino manager offers Archie and friends the penthouse and an assistant for the weekend. tt1204975,mmSNq3ELTDE,"Lonnie gets Dean to apologize and offer his assistance to the guys, who are pretending to be mafia gangsters." tt1204975,rDpyBEorPeY,The guys grab a drink with Diana after they hear her perform. tt1204975,7vx5baLs0NE,"A small peek into the elderly lives of Sam, Archie and Paddy." tt1204975,RCp2lpFkeeE,Billy tells his friends he's getting married and they insist on throwing him a bachelor party in Vegas. tt1204975,kK6P8gN99eo,Sam helps Archie escape from his overprotective son. tt1655460,aazXc06Oycs,"George is ready to have sex with Eva, but his nerves ruin the moment." tt1655460,GZxal1kvCfY,George and Linda say goodbye to the Elysium commune and get some good advice from Carvin. tt1655460,DaDZptGm6nI,Linda and George join the truth circle and learn some things about themselves. tt1655460,hIHC635Q9dc,Linda uses her assets to protest the construction crew and becomes a local celebrity. tt1655460,pbv02n_zKvo,"Eva offers to have sex with George, but he doesn't want to ruin his relationship with Linda." tt1655460,Kei4Jlhhz-Q,Linda trips out really bad on Ayahuasca. tt1655460,PAw7vAf6HMg,George and Linda learn how to yell away their fears and tensions. tt1655460,3k7E9zkTPLA,George finally breaks after being mistreated by his brother. tt1655460,cTQRH6MPV3A,"George and Linda get a new room at the commune, with no door." tt1655460,MAi6B_AFhH8,Seth shows off his flair with the guitar and then sings a song for Linda. tt3164256,ZF_2tUzPnvw,Richie tries to convince Tariq and his tribe to let Salima perform on Afghan Star. tt3164256,yw2hoxOuiaw,Richie tries to comfort Ronnie when she has a nervous breakdown on the flight to Afghanistan. tt3164256,N13exKaQgXo,Salima advises Richie about the void he feels in his life. tt3164256,XftKutOVjQs,"Richie, Jake, and Nick make a break for it when they are shot at in the streets of Kabul." tt3164256,TA4zkT8ov_Y,"While on a mission with Brian, Richie gets caught in an explosion." tt3164256,8FJZS4bwRrk,Richie discovers Salima hiding out in his trunk and she convinces him to take her to perform. tt3164256,hNiDZEwkT84,Richie falls for the mysterious prostitute Merci. tt3164256,SlwofvltpRw,Merci convinces Richie to fight for Salima. tt3164256,NWdhUnTq3gg,Salima becomes the first woman to perform on Afghan Star. tt3164256,Hhs2RLxDgok,"Richie tries to negotiate a deal to let Salima perform for him, and winds up shot. Then, Salima sings ""Peace Train""." tt0114852,xG6__eK9jIE,"Police and the National Guard arrive to kill the children, but only end up killing each other." tt0114852,CyhOZgd8ahs,"Mara and two others make Dr. Susan Verner kill herself, while the rest of the children deal with an angry mob outside." tt0114852,6Kfqy-8C3o0,Alan distracts Mara and the other children from finding out that he has a bomb with him. tt0114852,WOBy9Q8Gf9I,Reverend George tries to kill Mara while she talks about emotion with David McGowan. tt0114852,F-HZzW_NS88,"At 10 o'clock one day, everybody in the town of Midwich suddenly falls unconscious." tt0114852,PlkvQ0NbjUs,"After finding out that they killed another man, Alan asks Mara and the children why they can't just live in peace." tt0114852,e4Dlc6yqJuA,Ben Blum attempts to take his daughter away from the alien children. tt0114852,NVXDwL6XG_c,"While waiting for her friend Jill McGowan to arrive, Barbara Chaffee notices that the eyes of her young daughter are glowing." tt0114852,vaCI48KHW1k,"Now grown a bit, the Midwich children arrive for their eye exams." tt0114852,tD3vc9KZ9lQ,"After drinking a bit, the school janitor confronts the evil Midwich children." tt1284575,ujgbo-_khSM,Amy accuses Elizabeth of embezzling car wash money while Wally tries to go to the bathroom. tt1284575,jdd1py-ilwc,"Amy is arrested for her possession of drugs at school, but Elizabeth knows the drugs are actually hers." tt1284575,jmC2y7EsXqk,Elizabeth is frustrated with her students' lack of progress. tt1284575,SCR9s8egrmo,Amy gets frustrated when Wally refuses to use her inside information against Elizabeth. tt1284575,QsCBiq5cET4,Elizabeth poisons an apple so that Amy gets a rash and has to stay home from the class trip. tt1284575,uzMEc37DGZA,Mark ends his engagement to Elizabeth with the help of his mother. tt1284575,fbkfr-S420o,Elizabeth shifts gears in her classroom and makes her students learn whether they like it or not. tt1284575,XPsDyk5bJdE,"When Elizabeth ends up alone on Christmas, she gets taken in for Christmas dinner by Garrett's family." tt1284575,9HRIGCog9UQ,Elizabeth uses her sexuality to get money at the school car wash. tt1284575,Pk-zBUDgesM,Elizabeth is frustrated when Amy gets between her and Scott. tt1092026,2G5KN2wt048,"Agents, nerds and angry fathers converge at Tara's farm for an explosive showdown." tt1092026,b9pr0K7SuYk,The friends finally meet The Big Guy who fights them for Paul. tt1092026,Hwczxp7h7Gg,Paul gets Ruth and the others high on strong weed. tt1092026,2vJOE2qvIEM,Ruth gets some pointers on how to curse from Paul. tt1092026,P8ZCZJpluDA,Paul cheers up Clive while Graeme deals with a newly unleashed Ruth. tt1092026,lsmWjQdGHMI,Paul gets identified in a comic book shop. tt1092026,mz6dgt11n-E,"Graeme and Ruth try to kiss, but it turns awkward." tt1092026,9JTGNwLdSDA,Clive freaks out when he wakes and finds an alien in the RV. Then they hit a Secret Service road block. tt1092026,VrXUYjVCX2o,Paul brings a dead bird back to life. tt1092026,dtgOzzBMl2o,Clive and Graeme get to know Ruth Buggs and her religious beliefs. tt0102303,pS-KE1LXpXU,"Vance discovers Goddard's plans for the downtown slum district, and the two begin negotiations to buy each other out." tt0102303,tvxjJd08MMc,Goddard and Molly share a romantic dance and try to make love. tt0102303,-YiImyOVCj4,Molly tells how she became homeless and crazy. tt0102303,kpFSJhQ_30c,Goddard and Vance battle using giant machinery. tt0102303,apasYYh6nEA,Goddard and a man who thinks he's J. Paul Getty come to blows over who is richer. tt0102303,vndiMloYcYU,"Goddard is taken to the hospital, where the clueless doctor over-medicates him." tt0102303,4E55_uKSR40,Goddard is betrayed by his lawyers and attempts to collect some of his prized possessions. tt0102303,k6u3YvvvgjQ,Vance offers Goddard's attorneys a lot of money to betray their client. tt0102303,pYaJ7p8RrzM,"Goddard, now on the street, begs the church for shelter but is denied." tt0102303,BEsaqfzc6wQ,Goddard gets frustrated when his attempt to copy a dancing street performer falls flat. tt0102303,2VgamrBe_vM,"Goddard explains his visionary project, Bolt Center." tt0076489,nxmaYsZjnXo,"In order to get the court to believe in Him, God performs a miracle." tt0076489,rzIs51GUVgg,Jerry confronts Reverend Willie Williams in front of his congregation. tt0076489,puXiyRw_L6g,God answers when John asks Him to make it rain. tt0076489,6x0i-FfeA44,God appears to Jerry one last time. tt0076489,jPgV4d4ZmZo,A group of theologians present Jerry with a set of questions to ask God. tt0076489,onesjJyXdFQ,Mr. Summers threatens to demote Jerry if he doesn't stop speaking to the press about God. tt0076489,IBdgRBvFwlM,Jerry explains to God why he wasn't able to get God's message out in the newspaper. tt0076489,kheP3iy8-6E,"While driving back to work, God speaks to Jerry through his car radio." tt0076489,VVvKuI8oK3c,God manifests himself into an old man in front of Jerry. tt0076489,zd6ZUTrW5b4,Jerry sits down for an interview with God. tt0069495,yk5d161ytXE,Howard and Judy hightail it through the streest of San Francisco with a whole lot of cars in hot pursuit. tt0069495,oUo_8mKGHvY,"After a messy incident regarding Howard's hotel room and his relationship with Eunice, Howard decides that he wants nothing more to do with Judy." tt0069495,piTAjb8dd2Y,An argument between Howard and Eunice quickly escalates when a fire breaks out. tt0069495,PhkGK4ga-Gs,"When Howard meets his stalker, she refuses to let him out of her sight." tt0069495,gU886wmXhQo,Judy tests Howard's patience when she claims to be his fiance in front of Mr. Larrabee. tt0069495,dR0_tMYKwXE,"Before Howard boards his flight empty-handed, Judy uses her wits to win back Mr. Larrabee's grant." tt0069495,XYc1XujRb1w,Judy makes a move to seduce Howard. tt0069495,kbVtjc-ygTM,"When Eunice threatens to walk in on Howard and a towel-clad Judy, Howard sees no other option than to jump." tt0069495,PoIuiCAepLU,Howard denies knowing a manic and neurotic Eunice for fear that he will lose the grant from Mr. Larrabee. tt0069495,m-ETkZmPNiM,Howard discovers Judy in the seat behind him and finally confesses his love to her. tt2719848,hTzUYt__ogY,"After facing the horrors on the mountain, Beck comes home to his wife, Peach." tt2719848,34K-mcoEFuk,Jan calls Rob as he withers away on the mountain. tt2719848,fAdsL7AXW6A,"In the midst of a heavy ice storm, the team fights to rescue those left behind." tt2719848,MmBx8AMHTxE,A helicopter finally arrives to take Beck to safety. tt2719848,eA-V5wUcWos,A massive ice storm strikes the already exhausted climbers. tt2719848,XO4HxR3dPsI,Krakauer asks the climbers what motivated them to tackle Everest. tt2719848,Q54GdrlgRoQ,"With frozen hands, Beck falls while traversing a ladder across a deep chasm." tt2719848,pXrMAjB8ka0,"Despite being incredibly weak, Doug pushes onward and reaches the peak of Everest." tt2719848,j0iplsU1qa4,"Without oxygen, Rob struggles to get Doug down from the summit." tt2719848,wmXFSQdF3PM,The climbers achieve their goal and reach the summit of Mt. Everest. tt1121096,YZrVYAXYyws,"Master Gregory departs, leaving Tom with some final words of sage advice." tt1121096,uPFxRUeRfu8,Mother Malkin unleashes her mystical assassins upon the unsuspecting village. tt1121096,HSjPTdKWcLA,"While Alice, Tom and Master Gregory fight off the assassins, Mother Malkin and Bony Lizzie battle to the death at the height of the blood moon." tt1121096,rW59kLTHdBE,"Gregory, Tom, and Alice face Mother Malkin and her assassins during the height of the blood moon." tt1121096,Qzf3SFbaODw,Gregory and Tom are forced to flee from a Boggart attack. tt1121096,xPwq9go3HDc,Things get heated between Tom and Alice as they discuss their destiny together as a failed spook and half-witch. tt1121096,lLItY-Oyvt0,Master Gregory fights Mother Malkin's top shapeshifting assassin Urag. tt1121096,XCJxGxYDjQE,Tom is awakened by a mysterious noise and becomes embroiled in a battle with an enchanted suit of armor. tt1121096,RJEoUwZdwfk,Master Gregory loses his apprentice to the clutches of the evil witch Mother Malkin. tt1121096,ah_Egywb780,Tom discovers Alice swimming in the moonlight and they share a magically romantic encounter. tt0386140,KW1fyTqH0oE,"After taking care of Armand, the De la Vegas escape a train explosion and California is granted statehood." tt0386140,g_O0J66490k,Zorro and his horse come to his family's rescue on a moving train. tt0386140,Yg53M7TYpuo,Joaquin and his horse help his parents divert the runaway train from crashing into innocent people. tt0386140,QtQpMjuyHnM,Zorro takes on Armand while Elena fends off his henchman. tt0386140,DJWKWwfURtI,Zorro and Elena fight off bad guys side-by-side. tt0386140,uZpvHkGMn5k,Zorro stops McGivens from stealing the box of votes and fends off his henchmen in a sword fight atop the bridge. tt0386140,ZlzhOaHLFBM,"After stopping an explosive from detonating, Zorro is caught and unmasked by Armand." tt0386140,Z6SklaeTne8,"Zorro saves Blanca and her baby from McGivens, but is unable to save her husband Guillermo." tt0386140,m31MSgGEIAk,Zorro and Elena bump into each other while sneaking around Armand's mansion. tt0386140,Z2-9fWRAwMo,Elena helps Zorro lose a dangerous game of polo against Armand. tt0091530,NTUNJ7f0tHU,Cardinal Altamirano angers the Guarani chief when he tells him that his people must leave the Jesuit mission. tt0091530,P13rZWwIXmM,Father Gabriel plays his oboe in the jungle while he is stalked by the Guarani tribe. tt0091530,I0E-0kTdg-k,"Rodrigo asks Father Gabriel for his blessing during the battle, but he refuses because he can't live in a world without love." tt0091530,vVbXluPyrTA,"Father Gabriel argues for the spirituality of the natives in front of Cardinal Altamirano and the Spanish Governor, but Rodrigo embarasses him by losing his temper." tt0091530,EqRYx6Zgphw,"When Rodrigo decides to renounce his priestly vows and fight with the Guarani, Father Gabriel chastizes him." tt0091530,Pk_-jIncT5I,Father Gabriel challenges Rodrigo Mendoza to make penance for his sins and find a way to move on. tt0091530,CYt5p4a8YzE,Rodrigo learns to love the Guarani people and commits to serve them by becoming a Jesuit priest. tt0091530,mnXN-mRFoPI,"On his way to Father Gabriel's mission, Rodrigo hauls his armor and sword through the jungle as penance for his many sins." tt0091530,CYTRQAy2o4E,"Rodrigo makes it to the top of the waterfall with his burden, but then faces the judgment of the Guarani tribe which he previously enslaved." tt0191636,3HMU2k7i59M,"Pauline urges Neel to take the boat and flee, but he does not want to cause problems for her and her husband." tt0191636,FNKYIVZOjqs,"The Government tries to find an executioner, but Pauline works to protect Neel." tt0191636,tZ2yXL_RLEc,The Captain pleads with the Governor to reconsider their predicament based on the rebellions in Paris. tt0191636,VRN37FGgEic,The authorities manipulate a recently arrived man into performing the execution. tt0191636,nPGxeiD4mgM,Neel surprises Pauline when he volunteers to bring in the ship that is carrying the guillotine to execute him. tt0191636,SuoDkikuZjo,"Pauline tries to help Neel escape, but her husband cautions her about going too far." tt0191636,_9lOz8mySPk,Pauline tells Neel why she believes in him. tt0191636,6PumiBR18C4,"While moving a house, Neel becomes a hero for saving a woman." tt0191636,cY3aFhbBzoc,The Governor questions Jean about his wife spending time with the prisoner. tt0191636,5gQ3nWBmAak,"The Captain attends a get together with the upper crust, but is insulted by their accusations about his wife." tt3062096,9EOazpvA7-U,Langdon confronts Sienna and tries to stop her from causing an explosion that could rupture and release a killer virus. tt3062096,Z2-qppnyM3s,Langdon helps Elizabeth in stopping one last follower from releasing the virus. tt3062096,GzMBisWrn_M,"Langdon is saved from Christoph by Harry Sims, who reveals much of what has happened to Langdon was faked." tt3062096,7LxG9WBUbf8,The truth behind Sienna's allegiance to Zobrist is revealed. tt3062096,2ycw0UUyCm0,"Langdon wakes up in an Italian hospital with no memory, horrible visions and an assassin gunning for him." tt3062096,9oiFkoROlu0,Langdon and Sienna realize something may be off about Agent Bruder thanks to Langdon's returning memory. tt3062096,8UscACJkVxY,Langdon and Sienna are interrupted by Christoph right after they discover a new clue behind a bust of Dante Alighieri. tt3062096,cRZ7bc3nqwA,Clues lead Langdon and Sienna to a painting that sparks Langdon's memory of the past few days. tt3062096,f-EjBwpuVFI,"When Langdon and Sienna discover the death mask of Dante Alighieri is missing, they soon find out the thief is the last person they'd expect." tt3062096,WrZN5ouSodc,Langdon and Sienna are chased by Vayentha through the rafters of the musuem. tt2752772,5LX01_nSeZU,Clint abuses his son and beats and threatens the Ex-Deputy when he shows up to warn them that they're in danger. tt2752772,Ld8KOUtkHHY,Milo shows Dylan his murder film and Dylan is disturbed. tt2752772,G8_iVf44j-s,"Zach fails to make his murder film, so Bughuul takes his life." tt2752772,kJEvR6GEb7U,"Zach tries to make his murder film, but the Ex-Deputy interrupts him and makes a run for it with Courtney and Dylan." tt2752772,eoffuyXUhLs,"When Dylan refuses to watch another film, his brother Zach is more than willing to accept the challenge." tt2752772,o2wFqjb9AU0,Dr. Stomberg explains to the Ex-Deputy his findings regarding the innocence-corrupting demon called Bughuul. tt2752772,yDxNlPIFWHM,Peter shows Dylan his murder film and Zach gets jealous of all the attention Dylan's getting. tt2752772,p39lIRTEPY4,"The Ex-Deputy investigates the scene of a recent murder and, after being scared by a ghost, finds the symbol he's looking for." tt2752772,bqwS3qz3GhE,The ghosts try to convince Dylan that watching all of the films will make his nightmares disappear. tt2752772,Eh_0E0UdJcc,The Ex-Deputy feels something watching him while he researches mass murders in the area. tt3713166,qyZXW5Md1HM,Laura gets her revenge against Blaire for recording the drunken video. tt3713166,okdTt3VfJ6s,Laura's ghost confronts Blaire and Mitch over who posted the video of her drunken night. tt3713166,qzQdwPNUcME,Both Adam and Blaire receive a note that changes the game. tt3713166,SwCNp21CKes,"While the group continues to play Never Have I Ever, Billie posts an explicit video of Adam and Blaire." tt3713166,5Q52XfZ9no0,Blaire connects to Chatroulette to find someone to call the police and save Jess. tt3713166,wN1iAzPTBbM,Adam sends Blaire and Mitch over the edge when it's his turn to play the game. tt3713166,fQWMKUF7dvA,Blaire tries to share an intimate moment with Mitch. tt3713166,gNCkFkii-tA,Ken sends the group a trojan destroyer to remove Billie from their computers. tt3713166,eYrt5n8DA2M,Things get crazy after Billie's webcam is found in Ken's room. tt3713166,198uP07pieE,"When strange photos and messages begin to pop up online, the group realizes they're being hacked by an unknown user on Laura's old account." tt2870612,WLq3zSm5SkQ,Scarlett convinces the guys to take a literal leap of faith in order to escape the Catacombs. tt2870612,duEErwP8eds,Scarlett says goodbye to her father and uses the magic of the stone to heal George. tt2870612,m1p-vJzqPKw,Scarlett makes a terrifying sprint to return the false Philosopher's Stone and save George from dying. tt2870612,6IM3wUpXVfA,Papillon faces a demon from his past. tt2870612,ekqjBZdbYJU,"While the rest of the group explores the next leg of their journey, Benji encounters something frightening." tt2870612,W3cldIDgcoE,"The group finally finds La Taupe, but he's a much more dangerous version of himself." tt2870612,UtyiyBw401w,Inexplicable things happen when George finds a piano from his past and Scarlett gets a familiar phone call in the depths of the Catacombs. tt2870612,AwR1RawiBU0,"The group discovers the Philosopher's Stone. When Souxie gets hurt, they use its magical powers to heal her." tt2870612,tFBSGc3v7BI,Scarlett and George try to decipher the hidden message on Flamel's tombstone. tt2870612,bqvMCDQ3HEU,"Scarlett finds The Rose Key, a clue to the Philosopher's Stone her father had been looking for before he died." tt2239832,_mPOfQw2fmY,Michael confronts his mother for being mean to Candace and she finally admits that Candace is the perfect woman for him. tt2239832,C5UD270jxfs,Zeke begs Mya to forgive his past freakiness and marry him. tt2239832,vagva7xKyE8,Loretta is unimpressed when she catches Cedric dancing in his underwear. tt2239832,RmkFsYUz4cs,Michael and Candace finally get married under the fireworks in Vegas. tt2239832,7T5KMMZfc_U,The ladies distract Loretta with Uncle Eddie. tt2239832,iKS_327EF84,Michael freaks out when he sees Candace getting a lap dance and a fight breaks out in the strip club. tt2239832,Y15QXiFUV8U,"Everyone tries calling someone to help bail the gang out of jail and when Cedric calls Gail, he's surprised to hear Drake pick up the phone." tt2239832,mqYkD0nMs04,"Kristen puts pressure on Jeremy to impregnate her and when he's not up to it, she tries Game of Thrones roleplay." tt2239832,7oi0cS5tNRg,Cedric tries to establish his dominance over the criminals while Candace panics with her ladies in their jail cell. tt2239832,8VhgYX8xRuw,"The girls perform their rendition of ""Poison"" while the guys gamble." tt1621045,hM6KNsz7_mk,The guys put their book knowledge to the test and their ladies are impressed. tt1621045,AHV1LepZ2KM,Michael shows up to Candace's family reunion and professes his love for her. tt1621045,ZWszIB0z50k,Lauren apologizes to Dominic on the opening night of his food truck. tt1621045,qv4BPYX4B8U,Jeremy proposes to Kristen. tt1621045,7qi8llEviYY,Dominic impresses Lauren with a rooftop dinner surprise. tt1621045,r_ckU9PkTbM,Cedric begs Gail to let him come home. tt1621045,pLlcwabi5AQ,"Cedric tries to enjoy his divorce party, but the guys are still having troubles with their dating lives." tt1621045,wOSP7YOuOH4,Cedric explains the type of modern manhood. tt1621045,3A97Vc1eExE,The guys take their ladies on dates and the evening starts out rough for some of them. tt1621045,cmlELkvVPeQ,The guys give Dominic sketchy dating advice and the girls talk about how their dates went. tt1195478,AtcaQ4_DBOs,Tom can't perform sexually after Violet confesses that she kissed Winton. tt1195478,Gfc_7pOTR28,"When Tom tries babysitting, Violet gets shot in the leg with a crossbow bolt." tt1195478,UYYIYehBS_s,Violet allows Tom to pick a custom wedding from a number of choices. tt1195478,VWMSjhr1BZE,Tom and his buddies really enjoy planning the wedding while Violet pursues academia. tt1195478,pzE6SVUHAYE,Violet and Suzie have an argument using Elmo and Cookie Monster impressions. tt1195478,-LCqZeb1de0,Violet proposes to Tom and reveals that she has a surprise for him. tt1195478,njq3H2iy2X0,"Tom meets Violet's academic friends, but feels completely out of place." tt1195478,uU_ftZ6EfX8,Violet and Tom go to Alex and Suzie's wedding. tt1195478,2HwVVwlGHU0,"After living too long in Michigan, Tom has lost his fire, but found a new passion in hunting." tt1195478,rYHCZi-tmTE,Violet and Tom are embarrassed by the toasts at their engagement dinner. tt1135503,gx-03rUq-1Q,"After meeting Irma and learning about the business of publishing a book, Julia arrives home and learns that someone wants to publish her book." tt1135503,isFVKJA4E-k,Julie celebrates her 30th birthday with friends and Eric gets her a pearl necklace like Julia Child's. tt1135503,aSwH4lpuKE8,Paul admires Julia while she cooks. tt1135503,zXF0zcwPGuI,Julie pays homage to Julia and Julia gets her first copy of her published book. tt1135503,ApANYuSl7A0,"Julie gets the worst news about her idol, while Julia also deals with hate for what she's doing." tt1135503,ptcDoIfzLtI,Julia tells her pen pal about finding her calling as a cook. tt1135503,zPuVP5U-xag,Paul professes his love for Julia over Valentine's Day dinner with friends. tt1135503,AsR-WnELodI,"After requesting a professional cooking class, Julia is eager to prove that she's the best." tt1135503,czOgJJqehv0,"While blogging about her experience with cooking, Julie remarks about her love of butter." tt1135503,TSQ770iqDgY,"Julia thinks of ways to occupy her time, but struggles to find something that she truly likes to do." tt0457939,svAY8Rg8HFY,"While they try to figure out their plans for the future, Graham reveals to Amanda that he loves her." tt0457939,LKeegFM5SdU,Amanda tries to occupy her time on holiday by singing and dancing. tt0457939,coDyfoCUaSk,"On her way out of town, Amanda realizes she wants to stay with Graham and he happily agrees." tt0457939,5OGX-e6WT88,Miles plays Arthur's theme song for Iris. tt0457939,eZHlWaIYjNE,Miles is depressed about ending his relationship and Iris relates completely. tt0457939,J7_oE1uN1pU,Iris finally puts to rest her complicated relationship with Jasper. tt0457939,iraWz0XdffE,Iris accidentally talks to the wrong person during a confusing three-way phone call. tt0457939,GKNkucKoryE,Amanda breaks up with Ethan. tt0457939,1O9BbPEZRBs,Amanda gets to know Graham's children a bit. tt0457939,fY1s5Sn-GDE,Arthur gives Iris some good advice over dinner. tt2404435,vn8YIDxEGrw,Chisolm and Bogue stand off as the battle comes to an end. tt2404435,o-cA_1F05bU,Farraday sees that Billy is as skilled with a knife as he is with a gun. tt2404435,7uYoJwMuN_8,"Goodnight returns to the fight, but reveals that Bogue is about to unleash a Gatling gun to defeat the Seven." tt2404435,AwtSK1gLBBk,Jack and Red Harvest face the fearsome Comanche Denali during the battle. tt2404435,2X8O8PN7GOQ,The Seven face off against Bogue's army. tt2404435,9_T2VQgL2XY,Farraday makes a sacrifice in order to save the surviving town's people. tt2404435,D6MN7T-tnDw,The Seven shoot it out in order to rid the town of Bogue's men. tt2404435,bZhBhpm6m_A,Farraday challenges Goodnight Robicheaux to show why he's a legend. tt2404435,vNPCXKmF9LI,Farraday attempts to con his way out of certain death. tt2404435,zadI5ngwLsM,Chisolm searches for his bounty in a saloon. tt0090927,1rP402h6Euo,McCoy blocks Abdul's caravan with his motorcycle and its missiles. tt0172156,XR7br4b3gsg,"Syd and the boys force an explosion and kill Tapia, all while standing on a live minefield outside Guantanamo." tt0099399,LfL2xCfIMIU,McCoy shows off his Ph.D in ass-kicking at the expense of Cota's deadliest assassin. tt0099399,pJIGy4zHo6E,"When Cota tries to bribe McCoy into letting him go, he gets more than he bargained for." tt0099399,ByPtVBI4_MI,Cota's incessant taunting at McCoy falls on deaf ears after he plummets to his death. tt0099399,d2uvpiz5up0,"Cornered by General Olmedo's attack helicopter, McCoy is saved when a friendly chopper blows it out of the sky." tt0090927,BxB1Mpj8NiM,McCoy and the Americans infiltrate the terrorist school and shoot it up. tt0090927,Pf2LbcDDW5E,McCoy destroys Abdul with a missile from his motorcycle. tt0172156,TYA75RnDMGI,Mike and Marcus engage in a bloody shootout with members of the KKK. tt0172156,AIQHqvG9Ql8,Mike and Marcus engage in a shootout with a Haitian gang. tt0172156,v9Cq9nThaNs,"When Mike and Marcus pursue a van from the morgue, bodies start falling out on the road." tt0172156,LoRpJTD3HFY,Mike and Marcus get caught in an intense firefight before pursuing a criminal on a train. tt0172156,F2AbEJnPRYM,Mike and Marcus talk about some personal issues while on camera in a video store. tt0172156,nEf2ML7wkBE,"Mike and Marcus threaten Reggie, a teenager who has come to take Marcus's daughter on a date." tt0172156,XMPTy7Iaw9s,Mike and Marcus desperately race through Cuba to reach American soil and gain protection from Tapia's violent pursuit. tt0172156,edHmOaS0lRU,Mike and Marcus use guns and explosives to infiltrate Tapia's mansion and rescue Syd from being held hostage. tt0172156,cibZY1GwVQg,"After Marcus accidentally ingests ecstacy, he and Mike present evidence to Captain Howard." tt0099399,jeYdR_r0iGo,"When a Delta Force chopper lays siege to Cota's compound, McCoy uses the ensuing chaos to escape a deadly gas chamber." tt0099399,YZGetnQQU48,"Cota executes a suspected traitor, demonstrating just how far he will go to maintain power." tt0099399,IMPHXKW9ntw,"After the villainous Cota murders a young woman, McCoy drop-kicks him into submission." tt0099399,nqK7Kk3ZKvY,"As Delta Force sabotages the complex, Col. McCoy rescues the hostages." tt0099399,lkT9aqC6Tqw,"Lead by Col. McCoy, Delta Force goes to work in efficient fashion." tt0099399,cqHKducp4MY,Col. McCoy schools a bunch of would-be Delta Force operatives in how it's done. tt0099399,_O9lT22rCj8,McCoy manhandles a trio of skinheads when they make a ruckus at a restaurant. tt0090927,PJTb9EdYZDg,McCoy single-handedly clears the runway of terrorists so that the plane can take off. tt0090927,cSWMU_rISfw,Mccoy jumps his motorcycle into Abdul's safe house and beats the hell out of him. tt0090927,XssDZqS6WzE,Abdul and his terrorist partner hijack the airplane. tt0090927,TwnfJ8d9NqY,The Colonel and his men move in stealth and take back the plane from the terrorists. tt0090927,2yWYCKoqKmE,McCoy and Delta One ambush the terrorists when they arrive on the scene. tt0090927,hp3n_sA4Sqo,Delta Force retrieves the hostages while the Colonel and McCoy plan their next move. tt0090927,1ugiiAH40_w,Father O'Malley gives himself over to the terrorists when Abdul calls Jewish passengers to the front of the plane. tt0090927,udwKI7oFT6Y,Abdul and the terrorists shoot a hostage when the Colonel disrupts a covert strike led by McCoy. tt0090927,WFAu7jYslik,McCoy finds a terrorist hiding underneath a bed and kills him. tt0093164,5-Xw_z9dODw,"While inching closer and closer to his fate, a terrified Danny DeMarco ends his own life rather than face the wrath of Mex." tt0093164,eNZnCwkHaDM,"Mex admits his weakness to Cyrus Kinnick, that he is an addict, an addict for gambling." tt0093164,auMBMds7lQo,"When Danny DeMarco and his henchmen surprise Mex, Cyrus Kinnick throws himself into the line of the bullets." tt0093164,h4QvAd6nC10,"Mex takes on Danny DeMarco and his henchmen, electrocuting one and setting ablaze another." tt0093164,Gokp5Aq-Yuw,"To exact revenge, Holly threatens to pull a 'Lorena Bobbitt' on Danny DeMarco." tt0093164,9xS3XqTSRr4,"Mex's hot streak at the blackjack table ends when he bets it all, and goes bust." tt0093164,zMbx4rZOMig,"Danny DeMarco and his henchmen think they have the upper hand on Mex, but then Mex demonstrates who's number one." tt0093164,KXa2pXA7v6I,"At a blackjack table, Mex presses his luck, and succeeds, when he pulls out a '21,' after hitting on '19.'" tt0093164,R0jAHXVoZ4E,"At the bar, Mex is insistent on dancing with D.D. in front of her putz boyfriend Osgood." tt0093164,W3u0prIyDTs,"Mex tries to intimidate Osgood in front of his date D.D.. But the roles become reversed as Mex is no longer the tough guy he once was, instead he's become a soft, washed-up drunk." tt0162346,A83gS4JJXXE,Seymour attacks Josh after an informative conversation with Rebecca reveals Enid's feelings. tt0162346,abgTPYfdbOE,A sad Seymour is honored when Enid shows him the rest of her book and says that he is her hero. tt0162346,6nfXJd8nV9E,Seymour completes a therapy session with his psychiatrist and gets picked up by his doting mom. tt0162346,_XSFVQhMC5k,Enid tries to find out Seymour's taste in women. tt0162346,rQWpTKfljVg,"Enid's sarcastic shtick doesn't go over well with her boss at the movie theater, and gets her fired on the first day on the job." tt0162346,xHDeLp0sWBc,Enid gets Seymour to buy her a dominatrix cat mask which she wears to visit Rebecca at work. tt0162346,QoWIRCVeXBc,"Enid gets upstaged in art class when Margaret shares her ""political"" drawing, praised by the teacher." tt0162346,HLlaSoozZbM,Enid and Rebecca harrass Josh for a ride at work while Doug whips out the nunchucks. tt0162346,Cd1Q6LsOR8o,"Mrs. Allsworth shares her creepy film with her new art students, including a disinterested Enid." tt0162346,8lsl4cNrpzI,"Enid and Rebecca scoff at their graduation speaker, and Enid finds out that summer school is in her future." tt0162346,Ub88RPZnHQM,Enid meets Seymour at a garage sale and learns about his taste in music. tt0130018,cIscGgQD4uE,"Karla forces Julie to sing I Will Survive for the group, though the lyrics are more frightening than she remembers." tt0130018,D8NMSoCRPV8,Julie prepares for bed knowing the nightmare is finally over... or is it? tt0130018,LgKIQbxZZgY,"Julie and Ray have a final face off against the Fisherman and his son, Will." tt0130018,TYJ-1E4hKAU,"Julie, Karla and Nancy end up on the run after the vengeful fisherman kills Tyrell." tt0130018,pkqyDC9YnfM,Karla wakes to find herself trapped in the room with the killer. tt0130018,5VSg6c8TKNc,Julie discovers a horrible truth about Will as the fisherman takes care of Nancy and Karla. tt0130018,CShHiYrQPGM,Julie gets trapped in a tanning bed as her friends discover the entire resort has been murdered. tt0130018,h3g5B5JhFcY,Ben Willis attacks a dockworker in the middle of the night. tt0130018,Jd0XiJie7Lo,"While preparing for a relaxing night of getting high, Titus gets a suprise visit from the hooded killer." tt0130018,f9Wq05WVXiQ,"During a late night drive, Ray and Dave come across what appears to be an accident." tt0424136,2DdCmT_j5nE,Jeff escapes from a noose set by Hayley and comes to a realization about his true nature. tt0424136,sidgUs-5R64,Jeff breaks free and realizes that Hayley has faked his castration. tt0424136,58pw6PJAqZg,Hayley proceeds to operate on Jeff as he begs for her to stop. tt0424136,jJnJFGaJwV8,Jeff tries to manipulate Hayley into letting him go. tt0424136,GVGyBNIfPL4,"Hayley scolds Jeff, who attempts to defend his actions." tt0424136,aIKVAAfZZeM,"After Jeff Kohlver grabs a gun, Hayley asphyxiates him until he passes out." tt0424136,ZkZvK6v-L7s,Jeff attempts to dissuade Hayley from castrating him. tt0424136,RgaUubM7yyY,"Hayley suggests that Jeff photograph her, and as Hayley poses, Jeff feels disoriented and passes out." tt0424136,KGPW4PnJtoY,Hayley and Jeff drink screwdrivers and discuss his career as a photographer. tt0424136,SjbUk89pY7Y,Hayley and Jeff meet for the first time at a cafe. tt0424136,ab927ug4_xY,Hayley explains to Jeff that she's been tracking him in an attempt to expose him as a criminal. tt0118564,bwnrdj6zZfQ,"Glen finally shows some fatherly pride in Wade, but it's far too late to salvage their relationship." tt0118564,PIeiRgfL9e8,Margie tries to stand up to Glen while Wade extracts his own tooth with a pair of pliers. tt0118564,UcEl21V2btA,Jack takes out his hunting rifle after Wade forces him off the road. tt0118564,B7yi-MaUZaQ,Wade begins to spiral out of control when he gets fired by Gordon. tt0118564,lg0P7zox2V8,Wade and Rolfe have a difference of opinion about their father's effect on their lives. tt0118564,h72ZN-oKzTU,Wade talks to Margie about marriage despite his history of divorce and an impending custody fight. tt0118564,mc082fyyMQw,Glen lashes out at his adult children as they to prepare to leave for his wife's funeral. tt0118564,OaGLdGjlV7Y,Wade loses his temper when he gets into an argument with his ex-wife Lillian. tt0118564,iIP23U3q5FU,Wade interrogates Jack about the suspicious circumstances surrounding a deadly hunting accident. tt0118564,RZieTQla0dM,Wade tries to reassure Jill when she misses out on trick-or-treating on Halloween. tt0118564,AAE6HOrW3rk,Wade recalls a brutal memory of a drunken Glen forcing him to stack a frozen cord of wood on Christmas. tt1872181,V_dtlMkvp2Q,"As he is studied by an evil scientist, Electro learns his true strength." tt1872181,mNUnCTKwS8Q,"After Peter and Gwen share a kiss in a maintenance closet, they devise a plan to break her out of OsCorps labs." tt1872181,VflasoWmuoA,Spider-Man leaves a love message for Gwen and vows to never leave her. tt1872181,j0cqqCpIZHE,Peter discovers a message from his deceased father in a secret laboratory. tt1872181,U-R21NaE91o,Harry breaks Electro out of OsCorps and the two agree to work together to defeat Spider-Man. tt1872181,SD0eJL4D6q0,Harry forces Menken to give him a serum which transforms him into Green Goblin. tt1872181,msoyjm3gCBM,Spider-Man works with Gwen to defeat Electro once and for all. tt1872181,g1jO4_HQQX4,"Harry captures Gwen, leading to a battle with Spider-Man." tt1872181,JOw4LqyJKyg,Spider-Man squares off against a supercharged Electro. tt1872181,Xi3P8vUveVQ,"When Gwen falls during a battle at the clock tower, Spider-Man is unable to save her." tt0990407,Xdzv5V4MVus,Britt poorly attempts to drive the Black Beauty as Kato takes out the heavily armed vehicle chasing them. tt0990407,1x3IKujLO-E,"With Chudnofsky and an army of bad guys behind them, Kato and Britt drive the Black Beauty straight into The Daily Sentinel and park right on the printing press." tt0990407,yvzmLB30MwM,"Chudnofsky buries Britt and Kato alive, but when they escape they prove to be much more difficult to kill than originally planned." tt0990407,MdI5DrJ6V3k,Kato shoots a hole through the restaurant wall so he and Britt can escape Chudnofsky's henchmen. tt0990407,6wXeUrZ6p5E,Britt and Kato fight each other. tt0990407,3xtKas3-ctQ,Kato shows up ready to work for Chudnofsky as D.A. Scanlon threatens Britt. tt0990407,Wa3l6Q7e5aA,After much preparation Kato reveals The Black Beatuy to Britt and the two set off on their first night as vigilantes. tt0990407,Zbi-MbMsnIM,Britt and Kato pick their first fight as superheroes. tt0990407,lR8KTwcC8fc,Britt accidentally shoots himself with the hornet gun and passes out for 11 days. tt0990407,re_liKgRGew,Kato tells Britt his story and shows him the awesome car he built. tt0164052,6Gd4JbJxaf4,Sebastian attacks Linda in the elevator shaft and she tricks him into falling. tt0164052,2rPDGz_0qvw,Linda and Matt climb up the elevator shaft to escape the impending explosive destruction of the lab. tt0164052,aDq_JsN2Y6c,Linda confronts Sebastian over his attitude towards the team only to discover that his mind is on things far from recovery. tt0164052,ucYwV7EWIRU,Linda lights Sebastian on fire before he can escape. tt0164052,GCSbGFMWzC4,Linda comes up with a way to get out of the freezer while Sebastian makes bombs in the lab. tt0164052,JwAVnG8iemw,Linda and the team are successful in bringing back a gorilla from invisibility. tt0164052,CxQ4aL5IXZw,Sebastian is jealous when he sees Linda making out with Matt. tt0164052,CYgNbOsiKtk,Sebastian is successfully turned invisible. tt0164052,f7l5I6ZPt_Y,An invisible Sebastian hits on Linda while she's working in the lab. tt0164052,fVoHEZb6imE,Sebastian attacks his sexy neighbor and Linda fears the worst when she finds the mask and not the man. tt0101846,adjuOPzkpw4,Lt. Silak is terrified when he realizes that the helicopter pilot is Rollie's clown. tt0101846,n44APWaJZ58,"Liz begs Leo not to come towards her, but when he does, she shoots him in the stomach." tt0101846,KbRMCmnLU8o,Rollie knocks a henchmen out with a cue ball device on a billiard table. tt0101846,a_9dO9k2TPQ,Rollie sets an explosion of beans that goes off on the killer. tt0101846,tGg3h7NtiXs,Rollie vacuum seals the killer like he's packaged meat. tt0101846,cSSYFjtc4SY,Rollie uses the clown's motion suit to attack the killer. tt0101846,of7H9H_aPxg,Rollie distracts the killer by lighting some corn kernels on fire. tt0101846,Dd0f82f8ymk,"Leo saves Rollie, takes him for a ride, then finally scares him after so many years." tt0101846,AtWL0iQxE7U,"After Rollie sees Mike on a security camera, he runs out to chase down the killer." tt0101846,mhCiFB07I2w,"When the FX guys attack Fingers, it fights back and sends an explosion their way." tt0089118,GwdgbTQ5cgU,"Rollie and Andy evade the police, using the tricks of their trade to give them the edge." tt0089118,_KzpueROmto,"When Rollie's girlfriend is killed by an assassin, he goes ballistic and bludgeons the killer to death." tt0089118,rqdEaDM2PWM,Rollie uses his special effects expertise to play games with Mason's men. tt0089118,hE5rsmIsYPA,"Rollie slips out of the mortuary, but soon encounters McCarthy." tt0089118,MWxa84PirUc,"Rebuffing an offer to join him, Rollie sends Mason into a trap." tt0089118,RV0EbFEZpT8,"Demanding answers, Rollie takes Lipton on a violent ride." tt0089118,MrtT-vOpAfc,"After staging a public hit on a mob informant, Rollie is double-crossed by federal agents." tt0089118,Z8JHamH3gW4,"A restaurant massacre is revealed to be a movie scene, engineered by effects wizard Rollie." tt0089118,o-_ochO9CFQ,"After handing in his shield and gun, McCarthy furtively steals them back." tt3721936,UvojHP56dnQ,Krystal gives Star a dose of reality. tt3721936,iHkMTqikRg4,Jake melts down after finding out Star may have left with another man. tt3721936,lGTsRcHaMic,Star and Jake take their relationship to the next level. tt3721936,2fbk5E4JTkI,Star is stranded in the middle of an oil field with her friends. tt3721936,jV76HSEeAPQ,"As Star nurses her broken heart, the crew sings ""American Honey"" on the way to their next destination." tt3721936,uqn1bgQX1lg,Star and Shia LeBeouf continue their trek through Kansas City suburbs looking to sell magazine subscriptions. tt3721936,ynG2qpTbFP0,Jake rescues Star from a group of men she went home with in Kansas. tt3721936,4tVEuWxns6g,Star shadows Jake during a disturbing sell. tt3721936,WInIV1tcI28,Star meets a wild group of kids led by Jake. tt3721936,4GYKaKvJ4Ng,Star takes her siblings to their mother. tt0401420,Jb2egULZePg,Finn shows Maya and Bryce his father's anthropological film on the Ishkanani. tt0492044,H9bQdTtfGCU,The ghost of Jonah reveals his fate to Matt Campbell and Reverend Popescu. tt0098994,lensYsrpsVY,"After Collie takes care of the diabetic child they've kidnapped, things become heated between him and Fay." tt0098994,aRMHp-wDvnE,Uncle Bud admits to Collie that he's in over his head. tt0098994,dWWjjk3Ody8,Collie tries to convince Fay that he's brighter than he looks. tt0098994,XqtGRpyXGXg,"Collie, disguised as a chauffeur, kidnaps Charlie from an unsuspecting nanny." tt0098994,wdlhhgAT1EU,"Uncle Bud convinces Collie to continue with their original plan, as Collie's violent past as a professional boxer is revealed." tt0098994,HDPj29dAC-g,"Collie returns to Fay, against his better judgment." tt0098994,OQjvys5lLk4,"Eager to spend time with Fay, Collie rushes back to the house only to find it empty." tt0098994,Br0BUZWEDQg,Collie and Fay wait in the car for Uncle Bud to return with the ransom money. tt0098994,bsbgDqKys5g,"While having a drink, Collie has his first encounter with Fay and runs afoul of a bartender." tt0098994,IltqQORdPjY,Collie opens up to Fay about his history of faking mental illness to avoid responsibility. tt0098994,dBbxzOOGUqA,"Collie takes initiative by starting the kidnapping plan without permission from Uncle Bud, only to discover that he's made a big mistake." tt0401420,-CSIqCS1WIk,Maya walks in on Finn in bed with Jilly. tt0401420,PxKcm6wWUJ0,Finn starts a fight with Maya after she climbs in his window. tt0401420,2BofOahaB0w,Liz confronts Finn about his wild behavior and puts him to work. tt0401420,6xmaoTphmLY,Finn joins Ogden in a hot air balloon race. tt0401420,jqzTeVVmTvc,Maya invites Finn to undress and close his eyes as she covers his body in paint. tt0401420,-XggDv2QdHg,Ogden explains to Finn why the rumors that he is sleeping with Liz are untrue. tt0401420,1IyD0DjLrrc,Ogden entertains the crowd at a birthday party for Maya. tt0401420,V5P-1Vedt5E,"After Maya catches Finn in a bear trap, she takes him to meet her comatose father in the hospital and they kiss." tt0401420,rcA0MBnPPM8,Finn watches an anthropological documentary directed by his long-lost father. tt0401420,gm-sqEK2InM,Jilly is disappointed when Finn is more interested in Ogden than in making out with her. tt1457765,QlYSFCvUGoI,Lisa explains what happened to the Station Master to Heidi. tt1457765,dkDGK_eFw5c,The Station Master comes for Joyce. tt1457765,_liUxE_lefE,Lisa races to save Heidi from the Station Master's lair. tt1457765,rb_iLvMVihA,"Heidi makes a shocking discovery in the woods and later that night, Lisa gets a visit of her own." tt1457765,UJ12I9sHqK8,Joyce presents a series of old photographs for Heidi with startling results. tt1457765,3tbDLfgTAuI,"Joyce follows a presence into the woods, but the terror might be much closer to home." tt1457765,8dcA5NLO_GQ,"Lisa isn't sure what she's experiencing, but she's starting to suspect it might have something to do with Heidi's ""invisible friend,"" Mr. Gordy." tt1457765,LKVJLiiBlOs,Lisa Wyrick has a bone-chilling confrontation with the Station Master with her family's lives hanging in the balance. tt1457765,I7pOcssa5uE,The haunting over the family worsens when Lisa's dead mom and then Mr. Gordy make an appearance. tt1457765,KgbASFn2Pv8,"Heidi sees things by the broken-down RV, but her mother, Lisa, sees even more horrifying things." tt0492044,GMnwXB4A1iI,Reverend Popescu leaves a chilling message for Wendy at the worst possible time. tt0492044,6hfzPfOrftY,"With her son Matt trapped in a burning house, Sara Campbell makes a desperate attempt to rescue him." tt0492044,4VaSyU3yfMw,Matt Campbell has trouble distinguishing his visions from reality when he investigates the old mortuary in the basement. tt0492044,5Vo99FUjbrc,"An ominous power lights up a darkened house, scaring Sara Campbell and her family." tt0492044,hK62U-Gm_hI,"On the first night in the new house, Matt Campbell investigates a strange noise from the basement." tt0492044,MgYmK3cDFq8,"With the help of Reverend Popescu, Matt Campbell has visions of a seance that wrought ghostly ectoplasm out of a young boy." tt0492044,hfCRzaZuY6s,Reverend Popescu attempts to remove the ashes of the vengeful spirit from the house - but not without a fight. tt0492044,AjAJNPCQ1Fs,Matt Campbell suspects something weird is happening when dinner plates pull of a magic trick of their own. tt0492044,OYsV5RbHvA4,Matt Campbell has a vivid nightmare about the horrible events that occurred within the house's mortuary. tt0492044,EwsHFGh6fkE,Both Sara Campbell and Wendy find that sleeping in a haunted house can be difficult. tt3470600,lzJV7k-LiC4,Buster Moon helps Meena overcome her stage fright. tt3470600,UK-vT8iapA8,Mike returns to sing in the show while Johnny reconnects with his father. tt3470600,engSFG20kaA,"Ash sings her original song ""Set It All Free"" for her final performance despite interruptions from Judith." tt3470600,Z2xooz6844k,Rosita and Gunter shake it off for their final performance. tt3470600,ETC85CgzTHM,"Johnny sings ""I'm Still Standing"" for his final performance while his father watches from prison." tt3470600,bCOc7VCSox4,"After his theater collapses, Buster Moon tries to start over by opening a car wash with the help of Miss Crawly and Eddie." tt3470600,cUT0WQ9cTrg,Buster Moon invites Nana to a private screening of the show in hopes of convincing her to become a sponsor. tt3470600,WDAlAqy9WUM,Buster Moon arrives to work to find a long line of animals waiting to audition for the show. tt3470600,ukl9qBvRXfc,Eddie shows Buster the error on the flyer. tt3470600,10khF4-1rbU,Buster Moon holds auditions in his theater for the singing competition. tt4302938,15gPYqGlkwc,"Dropping the sword and armor, Kubo grabs his shamisen and along with the villagers shows the Moon King that love and memories are the greatest magic." tt4302938,q_VK4zsJWNw,"Kubo confront his grandfather, The Moon King, who transforms into a giant beast." tt4302938,Awr5m5-ocv8,"Monkey, revealed to be Kubo's mother, tells Kubo and Beetle the story of how her and Hazno met." tt4302938,hKTAeQKaKu0,"After falling into a trap left by the remaining Sister, Monkey and Beetle give their lives fighting her off to save their son Kubo." tt4302938,Kdr51Y91SQE,"Kubo, Monkey and Beetle must battle a giant skeleton to get ahold of the legendary ""Sword Unbreakable""." tt4302938,zjdesHuied8,"Monkey has a fierce battle with one of the Sisters while Kubo and Beetle attempt to get the ""Breastplate Impenetrable"" away from the Garden of Eyes." tt4302938,7Q6ywfDSm_0,"When Kubo accidently stays out after sundown, the Moon King's daughters find and attack him." tt4302938,dpKQxs7ashU,Kubo and Monkey meet a samurai Beetle who has memory problems. tt4302938,LfL_KOOZvLw,"Kubo, using his shamisen to magically manipulate origami, tells the tale of the samurai warrior Hanzo and his quest to defeat the Moon King." tt4302938,Qrl_BpahMRs,"During the long journey, Kubo starts to play around with his magic, much to the annoyance of Monkey." tt0479500,yg42xdVf9mM,Nancy Drew helps save the life of a girl at her birthday party but performing a tracheotomy. tt0479500,XqwQlCAM3P0,Nancy Drew gets caught by Mr. Biedermeyer and his henchmen. tt0479500,rzCeSHk3aVY,"While getting a ride home from the hospital with her father and his business partner Dashiel Biedermeyer, Nancy realizes Mr. Biedermeyer is the man who has been chasing her." tt0479500,Ece-FTMuKFU,"Corky, a young boy from her new school, arrives at Nancy's house to apoolgize for taking part in a prank the day before." tt0479500,PdzjDn5zVXo,Nancy Drew finds a bomb in her car and then attempts to chase down the suspect who put it there. tt0479500,DjNVqYjp3E4,Nancy Drew and her friend Corky are almost killed by a car attempting to run them over. tt0479500,dXNmLJXEgQU,It's just an average day for Nancy Drew as she solves a crime and catches two criminals. tt1219342,mHRbCgVCbIA,Soren and his friends meet the wise Echidna. tt1219342,PSWgZzUr_Yw,"After falling from their tree, Soren and Kludd are attacked by a Tasmanian devil and then kidnapped by two evil owls." tt1219342,PD4Gq5GPcN8,Kludd proves his exceptional flying ability to the evil queen Nyra. tt1219342,raDWhK7iSqU,"With help from Grimble, Soren and Gylfie escape the clutches of the Pure Ones." tt1219342,q9Wip3v8h40,"When a murder of crows captures Mrs. P, Soren stages a daring rescue." tt1219342,0YOmyGX2kmQ,"After escaping the Pure Ones, Soren and Gylfie realize they are truly flying for the first time." tt1219342,Xjp16xSdsp0,"When Digger falls from the sky during an ice storm, he is rescued by the Guardians, who lead Soren and the others back to the Great Tree." tt1219342,3NpYTks1mDI,The Guardians take to the sky to do battle with the Pure Ones. tt1219342,n94um7eDILg,"After betraying his brother Soren, Kludd falls to a fiery death." tt1219342,hRfF8Kes77E,Soren courageously defeats the evil Metal Beak. tt0183790,51reM6wq2XU,Jocelyn visits a wounded William after he proves his love to her. tt0183790,95N85bGdzw4,William's friends protect him when he is sent to the stocks for impersonating a nobleman. tt0183790,PVEIr4MGaT8,William faces Adhemar in the last round of the jousting tournament. tt0183790,Nj61hQhTwW0,William learns that Adhemar has discovered his true identity and his friends encourage him to run. tt0183790,1WwlHv69kik,William learns that his father John Thatcher is still alive. tt0183790,eAC2kNiKuEg,"After winning a joust tournament in his master's place, William convinces Roland and Wat to help him compete in other tournaments." tt0183790,yygNdTxoHus,Adhemar tries to embarrass William by having him show off a dance from his country. tt0183790,MBNiDwytFow,William enlists his friends to help him get ready for the tournament's banquet. tt0183790,mXz39lQAEmY,William writes a letter to Jocelyn with the help of his friends. tt0183790,yLFZcXeZymY,William follows Jocelyn in order to learn her name. tt0047795,gO6qemCFhEU,Freddie and Peter hide from the police by posing as a snake charmer and a beggar. tt0047795,2m-I23sWzEI,Freddie gets a date with a forward French showgirl. tt0047795,fcFKVVHQn7o,Freddie and Peter find the medallion that everyone else is searching for. tt0047795,kOe-yLCbA4E,Madame Rontru and her men try to steal the medallion from Freddie. tt0047795,-utei4CzIzc,Freddie and Peter try to pawn the cursed medallion. tt0047795,Yg6sZ2htZfc,Freddie and Peter try to slip the medallion of death to each other during dinner. tt0047795,CECosJ9_6MI,Freddie and Peter argue over picking a pick or a shovel. tt0047795,4WibEcqn1c8,"Peter dresses up as a mummy, but then they have to deal with two other mummies that show up." tt0047795,i_rch_cy7dM,"Freddie and Peter meet the mummy, who grabs Freddie." tt0047795,GRADFiFVLJQ,"At the opening of their mummy themed nightclub, Freddie charms a companion of his own." tt4263482,b6vOp7_rI6Q,Thomasin tries to scare her little sister into silence. tt4263482,iBptyagVaEQ,"With little to stay home for, Thomasin makes a pact with Black Phillip." tt4263482,LxAebgxJHyg,"William is violently attacked by the family goat, Black Phillip." tt4263482,ALhR_LDm5Is,Thomasin is accosted and threatened by her mother. tt4263482,YjJ2tMg4tTA,The family prays over Caleb as the witch's spell overtakes him. tt4263482,oS_Iap5D9jQ,An evil madness takes over Katherine while her children find something fightening is locked in with them. tt4263482,AE4RhPMAtp0,"William and Caleb return home from hunting to find the children playing with an escaped Black Phillip, a family goat." tt4263482,atQYOl5KL-o,Caleb stumbles upon the lair of the Young Witch while searching for his sibling. tt4263482,u7DV5coBXSA,Thomasin plays a game with her youngest sibling. tt4263482,aSajnx9QK-0,"The family watches as Caleb convulses on his sick bed, causing the children to confess that their older sister is a witch." tt0288477,cMmi5sRe8wc,"Epps prepares to sink the ghost ship when she is confronted by Jack, who she now knows is an evil spirit." tt0288477,n3D3JTzaiwA,"As Greer and Santos prepare their boat, the Arctic Warrior, for heading back to land, a ghost child warns Epps to stop them." tt0288477,RdTIzSuw-nI,Captain Sean Murphy attacks Epps due to an unseen force making him think that it's the ghost of Santos looking for revenge. tt0288477,hqhm_-sWbFg,Epps explores a meat locker only to find Dodge and Munder playing a prank on her. tt0288477,saTBYjmhcok,After the Arctic Warrior collides with the abandoned ocean liner Antonia Graza Captain Murphy explains the mysterious history surrounding the missing cruise ship. tt0288477,13wgcygv86Q,"While exploring the decaying ship, Munder falls through the floor only to be caught by Epps who catches him and a glimpse of a little girl." tt0288477,V5hfxgrLuoU,Epps and Jack continue to explore the abandoned ship only to open the wrong door. tt0288477,yNhbLL3Xvcw,Epps and Jack discover a box of rats and gold. tt0093091,7Fj5JAYfWVc,The carnival folk rescue two innocent teenagers from the evil ghoulies. tt0093091,bd0IiiCDDGI,Patty looks for her lost kitten in Satan's Den and is ambushed by ghoulies. tt0093091,PwgxGA6pLhc,Larry and Uncle Ned unknowingly acquire ghoulie stowaways while stopped for gas. tt0093091,vzzuOkCkHlQ,Young couples acquire mysterious injuries in Satan's Den. tt0093091,N-ZFty2-G7I,A young man searches for his friends in Satan's Den and is captured and tortured by ghoulies. tt0093091,T2ph28ghuEU,"Nigel, with Larry, recites a magical spell from a book and conjures a giant ghoulie from the ground." tt0093091,D4HGK-_5TkY,The Ghoulies succeed in killing a deranged Uncle Ned. tt0093091,H_sYBmKxmvs,Bozo taunts carnival patrons and finds a Ghoulie in his dunk tank who eats his arm. tt0093091,Y4SSkX4sRMQ,Hardin meets his demise while sitting on a toilet. tt0093091,H1TQv3qA7PI,Larry makes an explosive appetizer and feeds it to the Giant Ghoulie. tt0472458,ZG60oroE7AI,Kate loses a lot of blood and collapses on the street. tt0472458,6bxX5ZV1qn0,"Feeling rejuvenated, Mrs. Li gets intimate with her injured husband." tt0472458,gLWaU-LKIwQ,Mr. Li visits Aunt Mei for a forbidden taste. tt0472458,T535zq4Kpt8,Mr. Li presents Mrs. Li with a check to compensate for his frequent absence. tt0472458,n03zeBpWC0M,"When Mrs. Li panics at her fishy smell, Aunt Mei reassures her that the smell means the cure is working properly." tt0472458,8QPhWhQ6zS8,Mrs. Li quickly leaves the table when guests question the fish smell that coincides with her arrival. tt0472458,qC7HofT0v4g,Mrs. Li convinces her husband's mistress to abort her child. tt0472458,9-_TcYrv2YU,"Mrs. Li asks Aunt Mei for more potent dumplings, but she's disturbed by the main ingredient." tt0472458,pjKnwaYJi6Y,Aunt Mei shows Mrs. Li the rare ingredient in her latest concoction. tt0472458,OwDRBPO9eKw,Aunt Mei visits an old friend at the hospital to obtain her secret ingredient. tt0472458,LYBdGadPNz8,A pregnant teenager comes to Aunt Mei for help. tt1700841,1Jk8IZYcxmQ,Firewater and the non-perishables reveal to Frank the dark secret that humans eat food. tt1700841,g7bQ7ynurn8,"After breaking up with Brenda, Frank has a dream of her in the arms of strange vegetables." tt1700841,SWl87YF_hHQ,Frank tries to stop Brenda from being taken out of the store while the foods drug the humans with bath salts. tt1700841,VcnAtRLJS84,Kareem Abdul Lavash and Sammy Bagel Jr. argue over the idea of coexisting in the same aisle. tt1700841,vmynulColPI,Barry returns to the store with incredible news and a severed head. tt1700841,DI5t1Bxfy90,The foods fight all-out war against the humans in the store. tt1700841,4pSAjI9lOGY,Frank reveals to the entire store that humans are eating food in the Great Beyond. tt1700841,YKZRedzkeU8,"A druggie trips balls on some bath salts, causing him to be able to see and talk with the food." tt1700841,iqZmwwUvgVU,Barry learns the terrible truth that humans slaughter and kill food. tt1700841,MvIqR1cMbv0,All the foods in the supermarket sing about their human gods and their destiny in the Great Beyond. tt0119109,bxxHPYFtbE4,Dale and Jack overreact when they hear of Scott's bad choices. tt0119109,q_y6O1yflZI,Dale poses as a German record producer in order to get information on the Scott's whereabouts from the band Sugar Ray. tt0119109,44BkOqV2jDc,Dale practices the many ways of greeting his newfound son Scott. tt0119109,H79X1JQ_S30,"Dale and Jack give their ""son"" a shower, which sounds really bad to Jack's wife." tt0119109,HQCava8QqK8,Dale freaks out while driving over a bridge with Jack. tt0119109,XNUers0BuD4,Carrie finally catches up to Dale and Jack. tt0119109,qHA5R-Q1Od8,Dale and Jack have a heart to heart with their son Scott. tt0101745,1I2xNdoQXM4,Hank accuses Dr. Stone of stealing his girl. tt0101745,hQIL99lP484,Dr. Stone delivers a baby as his car gets hit by a truck. tt0101745,Qc3voNxG1NM,Dr. Stone receives an unusual form of payment from his first patient. tt0101745,SUfo49TsWOQ,Dr. Stone visits Lou at home to ask her out to dinner. tt0101745,1eN1O1j3LcY,Dr. Stone interviews with Doctor Halberstrom at his fancy Los Angeles clinic. tt0101745,CpIgfRGUpU0,Dr. Stone is urged by the locals to stay in town instead of leaving for Los Angeles. tt0101745,I0jOVXcnjdg,Dr. Stone destroys a fence with his convertible in a small rural town. tt0101745,xMjEmE1YLSU,"When Dr. Stone misdiagnoses a child's stomach problem, Dr. Hogue intervenes with an old-fashioned cure." tt0101745,vp7r-h8OLm0,Lou encourages Dr. Stone to urinate around the woods to foil the local deer hunters. tt0101745,jmuC1ebmYQg,Dr. Stone helps the townspeople with their ailments. tt0099077,Tv5BC6yJ61o,Dr. Sayer reflects on what he learned as his patients' conditions worsen. tt0099077,XtL5tGpGIN8,Leonard visits Paula one last time. tt0099077,q-nQtR-WbIs,The patients express their concern to Dr. Sayer about Leonard's worsening condition. tt0099077,fZflzybv5T0,Dr. Sayer tries to convince Dr. Kaufman for more money to put all the patients on the new drug. tt0099077,2yZlrJWBLac,Leonard begins to show signs of getting worse. tt0099077,vKhAdR1G9io,Leonard asks Dr. Kaufman and the board for permission to take a walk. tt0099077,OxKXKwijH_g,Leonard calls Dr. Sayer late at night after talking with Paula. tt0099077,Hj52vD7KGxs,Dr. Sayer discovers that Lucy can catch an object even though she is catatonic. tt0099077,kS_QskTI8WI,"After giving Leonard a large dose of L-Dopa, Dr. Sayer awakens to find Leonard gone." tt0099077,fNjMYPeG8IU,"After getting the funding to put all the patients on the new drug, Dr. Sayer finds the patients have awakened." tt0097236,VEsvArkVtYQ,"Joel holds Dumas at gun-point, while Bobby tries to talk him down with an inspired speech." tt0097236,JIvq1ObEOrs,"Bobby shows off his impressive dance moves to Lainie, and then asks her out on a date." tt0097236,_cZ-D5Q-26M,Bobby gets a serious beat down by Dumas and his cronies. tt0097236,415kITLNgvg,A drunken Joel gets into a fight with Lainie in front of everyone at the dance. tt0097236,qlyJNTOwkAI,Two sets of lives transform when Keller and Lainie collide with Coleman and Gena. tt0097236,oOBu3uqpW1A,Coleman meets up with Bobby in a dream to discuss where his wife is and how the two can switch back. tt0097236,_WE7Il9dZCE,"Trapped within Bobby's body, Coleman goes to see Ike, his best friend, to try and tell him about the results of the experiment." tt0097236,7LoHCPOvmuo,Coleman and Bobby realize that they are stuck in one another's body. tt0097236,mHgXG0tmomg,"Bobby, now occupied by Coleman's persona, meets his parents again for the first time, as well as his best buddy, Dinger." tt4382872,D3fVS2I9ZVM,Harry stops Ken from stealing the Condor. tt4382872,X0d8qyjQ20M,"Harry destroys the Condor, mourns his father's death and carries on his life with Victoria." tt4382872,SJdUJZ7odoU,"Leonard confronts Ivan about killing his wife, and he gives Harry the chance to get his revenge." tt4382872,UBnufwe-p_c,Kris drives as fast as she can while she and Harry chase Victoria. tt4382872,n1GlWng3oOQ,Leonard tells Harry about his CIA revenge plan. tt4382872,aDZSH05DM_c,"Leonard gives Ivan the Condor, but first Ivan wants a demonstration of its power." tt4382872,E67jk75CRWM,"Leonard is not able to save his wife from his adversaries, but Ken arrives just in time to save Harry." tt4382872,ArGWpUHkEmc,Harry fights off a CIA assassin while Victoria fights off Drake. tt4382872,o3ya6zEv3eM,Harry escapes from the CIA agents charged with keeping him home and Sitterson tries to understand how. tt4382872,0mjSZpCpsdc,"Harry gets into trouble looking for information at a biker bar, but Victoria arrives just in time to help him out." tt2923316,xMoCoTO3d-Y,James tries to buy more time for his brother and Ray shoots down a helicopter. tt2923316,oEddtexPCso,Ray and his crew break into the bank's vault. tt2923316,QmEz0udgJsA,James knocks out a paramedic to conceal his identity and Emily discovers that James was in on the robbery. tt2923316,2OrlbOFhcUs,Frankie stages James to look like his hostage. The cops shoot Frankie and James goes free. tt2923316,wytpJXfw86w,James refuses to escape without Frankie. tt2923316,MMxE41xM9ic,"When Spoonie steals the getaway car, the thieves panic and Frankie shoots a police officer." tt2923316,kPXFWplmSyA,Frankie comes home to visit his brother James after ten years in prison. tt2923316,NufzJ2YVJB4,Frankie asks James to trust his business partners because they saved him from sexual abuse in prison. tt2923316,wkoHQdbhfOc,"Frankie tries to explain that he's trying to look out for James' best interest, like he has done since they were young." tt2923316,sRUb0GR0ZiE,James gets dragged into a crime he didn't want to be a part of when his brother's business partners murder someone and James has to drive the getaway car. tt4195278,iAzMFB3QaBk,Tell and Ray get to know each other as they wait for their blackmail victim. tt4195278,5gtFQegr2xA,Ashton and Morton try to convince Tell that he is dying so they can discover where he hid the money. tt4195278,ToF0U78xIyA,Tell and Ray attempt to use a gun to open a safe. tt4195278,tXF23iSwW3I,Tell deceives the police and his fellow robbers and makes off with the money himself. tt4195278,9u6xaK00otk,Beverly gives Tell the truth about William's parents. tt4195278,oOWl14GlJx4,"Tell tricks Morton and Ashton into believing he's got the money, but it's really just a gun." tt4195278,h5KBS20Ke6U,Ray stabs Tell with what he believes is bleach. tt4195278,ye38FmLnLBo,"When the cops show up at their house, Beverly shoots Tell, but he makes off with the money." tt4195278,pzZ9UdUTRNA,"When Tell and Ray try to blackmail Huffman, it goes terribly awry." tt4195278,8OS1xorvbAs,Ashton and Morton kill Ray as they chase down Tell's stolen money. tt3503840,poU8QxFJjbo,John kills The Boss and Chi finishes off Colt. tt3503840,2uZV27BttLM,"John and Chi do clean up work for their bosses, and erase the Afahani from the equation." tt3503840,1BS3mo_yHvY,John returns the video camera to The Boss and a fight breaks out. tt3503840,G77UaCXuoOs,John saves Chi and gets his revenge on Van Horn. tt3503840,HYog4UvM1zI,"John and Nadia retrieve the video camera, but they are too late to save Chi from being kidnapped." tt3503840,gUKbFeHjYX8,John breaks into the mansion to save Chi while Nadia gets her revenge on Diana. tt3503840,hM1OunX-QBg,"After fleeing from her captors, Nadia begs John for help." tt3503840,gxsDfmzU-Lo,John detonates a bomb and heads for Club One so Nadia can find the video camera she hid. tt3503840,k2-SBnbz7pE,Chi interrogates some lackeys for more information about The Boss and his interest in Nadia. tt3503840,MkNhAG2CUso,Nadia tells her story and John vows to avenge her sister's death. tt3598222,yMe-7hW4evU,Ulrika sneaks on the getaway plane and fights Clay and her team to the death while Mei-Lin uses her pilot skills to wreck Raven. tt3598222,WK_rWzm86RI,"After recovering Elise, the team fights a dangerous car chase battle in order to make it to the getaway plane." tt3598222,VlCkdkzOwFk,"Clay must fight many foes on her way back to Ulrika's compound, where Mei-Lin and Kat are being tortured." tt3598222,vpTj6-4d5qA,Clay releases the girls from their cells and Kat arms them with weapons. Grigori's latest abuse victim gets to exact her revenge. tt3598222,acVDpeSHw44,Clay and her team use their special skills to liberate Elise from her jail cell. tt3598222,ZFGBlZw2kIM,Raven betrays her team for a better deal and Elise falls back into Ulrika's hands. tt3598222,VHF31ybakiM,The President of America's daughter is kidnapped. tt3598222,fbnpdWhOwIs,Mona gives the prisoners the lowdown on their mission to rescue the President's daughter. tt3598222,SEtuhB8LEZU,When a checkpoint guard sexually harrasses Kat the fight is on and the ladies leave no survivors. tt3598222,HuUhj-abydY,"The ladies use stolen missiles to force Ulrika's hand in a partnership deal, gaining them entry into the compound." tt3106120,djTx7slpfHI,"Seth, unable to escape, faces Jacob Goodnight head-on." tt3106120,gmnU4tK8GOo,"Amy and Seth try to outsmart Jacob Goodnight, but he's got a deadly strategy." tt3106120,OS0rZQtDsoc,"Amy tries to save Tamara from Jacob Goodnight, which doesn't go too well." tt3106120,sfCQQLSwz3s,Amy and Seth venture into the basement to save Will from Jacob Goodnight. tt3106120,N-v-x6qmtcc,"Jacob Goodnight corners Kayla in the bathroom, triggering some harrowing flashbacks with his mother." tt3106120,g9hEJv2uZLM,"The group runs from Jacob Goodnight, but one of them isn't so lucky." tt3106120,kBTPEpA8BzU,Seth has an unfortunate encounter with Jacob Goodnight. tt3106120,ymShdFJoqiw,"Tamara tells Carter about Jacob Goodnight, which is particularly exciting for her." tt3106120,YRdXmtGnwCI,Jacob Goodnight stalks Holden while Amy and company discover Carter. tt3106120,29D9SkdtVBU,"Tamara and Carter have sex in the morgue, unaware that Jacob Goodnight isn't as dead as they thought." tt1043791,KY-bRBsLLtA,"Webb decides to stay in the water a little longer with the skinny dipping Ketsy, which bothers Larri more than she could've possibly imagined." tt1043791,HBPQtYCDKrk,"Larri goes head to head with Ketsy, the forest spirit." tt1043791,-wqnmuzG51c,"Convinced she's seen Webb, Larri runs off to save him, unaware that the danger is much closer to home." tt1043791,Fecoe2kJdD0,"The group makes their way through the forest, running into something that chills them to their very core." tt1043791,LRHNkBU6YWw,"Beware the dreaded maiden of the forest, for she shall turn you into a tree." tt1043791,RxEkm4dDAL4,Ketsy's skinny dipping gets everybody excited. tt1043791,-KW0wz1xBfw,"Stalked by a dark force, Rob makes a harrowing run back to his tent." tt1043791,kTUnQubJMoc,"When Webb hits a fawn, he's left with no choice but to put it out of its misery." tt1043791,lcIuJs1vHrg,"While Webb and Larri get close, Milk and Jess attempt to do the same." tt1043791,UiQdZRBhBAE,"Milk makes the mistake of disturbing a beehive, creating a sticky situation." tt0279688,1YrP2ICd6ro,"Edward taps into Joe's mind, connecting his consciousness with that of the demonic Amducious." tt0279688,SdFZEeR8a2s,"Edward visits Joe's shack, only to discover the true nature of the horror afflicting his patient." tt0279688,_eyLdmCxtPo,Uncle Irving disapproves of Edward's uses for Ardelia. tt0279688,BWR9aK0vAAY,"Edward drills into Joe's brain to achieve connection to the eternal glory of Amducious, who waits in the land of the dreaming." tt0279688,2UK1aSp3bUY,Edward uses his electric neurology machine to make Ardelia experience unimaginable pleasure. tt0279688,nWd-gLPa5fs,"Dr. Wardlow performs an examination of the listless murderer, Joe Slaader, which hints at something far darker." tt0279688,4UOnDFoEPUQ,Edward prepares for the coming of Amducious with Ardelia. tt0279688,ti39GhRZkrw,"Edward forces Dr. Wardlow to his knees in preparation for the coming of his unholy master, Amducious." tt0279688,1dLZuGiJRXA,"A caretaker at the asylum is given disturbing protocols for handling Edward, committed after summoning a Lovecraftian horror." tt0279688,Tp9iK2u30qQ,"Edward uses the tumor in Joe's back, to open to rift to his dark lord waiting beyond the land of sleep." tt2396701,-Nj1XUtmKDo,Ray goes ballistic when the ghosts cause his instruments to break. tt2396701,sG_cgDlDyEg,Keith follows the spirit of a little girl and gets attacked. tt2396701,iaxDwgBzVFk,The house wants Penny and it will kill her and Jake to get what it wants. tt2396701,eYt5GYOLjNI,"Bethany mourns the loss of Penny, who finds out she is dead and imprisoned in the house forever." tt2396701,j4W7FAGrpiQ,Vanessa is convinced that all hope is lost and she needs to commit suicide. tt2396701,EnAegC2mT8I,Keith does his best to protect the group from a ghost called Yankee Jim. tt2396701,LiZ_h3tUmMs,"Two police officers arrive at the Whaley house and only one survives. Meanwhile, Vanessa's injury is getting worse." tt2396701,m2yxUTpM3IQ,Vanessa gets possessed by a spirit in the house and Craig is killed. tt2396701,eret8dNSTqo,The ill tourist returns to the Whaley House and a spirit persuades her to take her own life. tt2396701,pRlsbwGqx8g,Keith hears what the ghosts have to say - that everyone is in danger and Penny must come with them to the other side. tt2240312,9GBxXdJBSPU,McBride inhales the ghosts of Warden Wilkes and Van Claus and they battle within him until he explodes. tt2240312,bvEJjjYbgtk,"There are only three survivors left, but after Johnny stabs out Natasha's eye, it appears the spirit of Van Claus still exists." tt2240312,1UtDbLZsJ4Q,Jerry digs out Heath's eyes with egg beaters. tt2240312,ZsDOHhqqLCQ,"McBride discovers that Jerry is possessed by the spirit and when she gets away, he enlists Johnny's help to take her down." tt2240312,jzxMo2UKUKM,"After switching bodies, the spirits of Warden Wilkes and Van Claus finally break free and battle as ghosts." tt2240312,a6cUudbbHl0,McBride tells the story of how the spirit of Van Claus is able to possess people one night per year. tt2240312,vmOBZjVBCUo,Kyle is possessed by an evil spirit when he brutally murders a park ranger. tt2240312,QPaP-XRQeM8,Van Claus kills one last time and stabs out his own eye before his execution. tt2240312,15XqLhQ0_Oo,Kyle is possessed by an evil spirit when he stabs a park ranger. tt2240312,a2ZdXUZt3iw,"After being dared to sit in the electric chair, Tony gets stuck in it and a mysterious storm kicks up until he is freed." tt1658801,yquyze0QbPk,Laurel and Stacie make their love official and get a domestic partnership. tt1658801,mdgbtrpVBm8,Dane meets Stacie for the first time and discovers that Laurel is a lesbian. tt1658801,YjbYhnnEDRo,"After Laurel and Stacie are almost robbed on their date, Laurel suggests they go back to her place." tt1658801,PQbyl1vsn1o,Laurel opens up about her past struggles with her homosexuality in order to draw a confession out of Christy. tt1658801,rqKaJ4Yp_oU,Stacie competes against Jake's best mechanic to prove she can change a tire faster. tt1658801,QDroSLQiSRI,"After a pair of jerks taunt Stacie while she is at work, she get the horrible news that Laurel's state has worsened." tt1658801,Hgee-O7ZAnY,Steven speaks out against the freeholders and literally begs for them to reverse their decision on Laurel's pension. tt1658801,NrhBIkWlIfA,"After a hard-fought battle, the board votes to approve Laurel's motion to pass her pension to Stacie." tt1658801,1rJ_NvTBOmc,Steven lays out his plan to fight for Stacie and Laurel's pension. tt1658801,0Cufl5Gao98,"Dane addresses the board about Laurel's situation, but the request is denied." tt1489889,PqOlbM-zmuI,Calvin discovers the true identity of the Black Badger. tt1489889,VPOd_Y2qFJk,Bob is named the Homecoming King at his high school reunion. tt1489889,M3Jts1DPcWk,Calvin sees an opportunity to retrieve the codes in the middle of a shootout. tt1489889,BbyMGiPjDOw,Bob and Calvin's plane runs out of fuel. tt1489889,YjfLp0bll5U,Calvin helps Bob escape from being tortured by the CIA. tt1489889,ssxqmxjrx2c,"Calvin meets his wife, Maggie, for marriage counseling." tt1489889,3SsvC_2wKI0,"Bob and Calvin get help from Bob's high school bully, Trevor." tt1658801,yVRmafc7cqQ,The board of freeholders vote on whether or not to allow Laurel to assign her pension to her partner Stacie. tt1489889,MNQQS7QR9Vo,Bob fights off CIA agents at Calvin's workplace. tt1489889,bdJPnMKhsnY,Calvin and Bob meet up to get drinks. tt1489889,M4YOZHoDSyg,Bob has a plan to escape from the CIA agents tracking him. tt2113075,DxdOJYRdABY,Mister does an impersonation of his mother and Pete reveals what his mother did to him. tt2702724,NOACyJ1CYfo,"In order to keep the business contract, Michelle and Renault fight each other with swords." tt2702724,hAbVFxYi_q0,Michelle butts heads with one of the mothers at the Dandelion's meeting. tt2702724,aHQQs4D3krU,Michelle and Renault kiss and make up after a dangerous rooftop battle. tt2702724,xRw3fodr6jY,"After rejecting Michelle's Plan A, Plan B goes into full effect when Mike distracts Kenny." tt2702724,mG_G5waoSeo,Michelle teaches the girls about business and then a fight breaks out between the two troops. tt2702724,odvIh7iwK2E,Michelle helps Claire get ready for her date by adjusting her breasts. tt2702724,Eb9WH9OiKn8,Michelle apologizes for selling the business. tt2702724,ZLmRWzBjbtU,"Claire is having trouble with her new roommate Michelle, who has a little trouble understanding personal space." tt2702724,i1igdJh44yU,Michelle kicks off her business conference with some singing and dancing and T-Pain. tt2245003,sm5Zgj8kjD8,Milly shares one last moment with Jess before she dies. tt2702724,YRruOzr9_w0,Michelle gets some help applying her teeth whitener and Claire asks for a raise. tt2245003,EuZM3sfjqno,"Miranda sneaks Milly out of the hospice so she can make it to Jess' delivery. Meanwhile, Jago tries to patch into the birth from his oil rig." tt2245003,opyh8AAgisI,Milly lets down her guard and Ace makes her feel good about her body. tt2245003,jzhXtCHYrAM,Milly and Jess catch up over the news that Milly is dying. tt2245003,qR9MgJkOFJ0,Milly asks Jess a few final favors and then she gives away her best pair of shoes. tt2245003,dZmGh0bXqqw,Jess goes along with Milly on her spontaneous quest to see the moors from Wuthering Heights. tt2245003,fuwfQJrMgLI,"When Kit throws a surprise birthday party for Milly, she freaks out on her party guests and argues with Kit before she leaves." tt2245003,pKHAhc31MOI,Jess confronts Milly about her selfishness and tells her that she's pregnant. tt2245003,HLTpxttylTM,Milly tells Jess and her family about her cancer diagnosis. tt2245003,DLb9vR3Zu3g,Milly mourns her double mastectomy at a bar and Jess helps her get home safely. tt1767372,iJ_DrM05hp4,Isabella wraps up her success story with Judy. tt1767372,DcpIpj7RbxQ,Jane interrupts the rehearsal with information about Isabella that causes everyone in the room to argue. tt1767372,m9aEg5dlFOI,"Delta confronts Arnold about his cheating and finds Isabella in his room. When Seth appears, he and Arnold argue about Delta." tt1767372,91nX46JsnlU,Delta discovers that Arnold has been cheating on her and she storms out of the store in clothes she hasn't yet bought. tt1767372,uBP8cPLPWrQ,"Seth tries to hide his hooker before Delta arrives, but she gets discovered and Delta rejects Seth once again." tt1767372,7-H5Yu3_Py8,"Still hurt after finding out about her husband's affair, Delta tries to hurt him back by taking a scene with Seth a little too far." tt1767372,KTxT13DzNsc,Isabella is the source of a lot of stress for three men on dates in the same restaurant and private detective Fleet is there to witness the whole fiasco. tt1767372,TknTP23YYFI,"Isabella is surprised when she sees that her client Arnold is the director at her audition, and Arnold gets nervous when his lover acts out a scene with his wife." tt1767372,Cu5F2Z9mKmo,Jane is distracted when she gives Isabella a quick and thoughtless therapy session. tt1767372,bkhUe1txLoc,Isabella recalls her inspirational night with Arnold. tt2113075,TmFKGDfxH_4,"The day of the audition comes, but obstacles stand in the way for Mister." tt2113075,8z4QVBaCAJM,"While at the group home with Pete, Mister's mom returns after a long absence." tt2113075,djpX32_UUvc,Mister confronts Kris and asks if he's seen his mom around the neighborhood. tt2113075,ZYB22miPyjY,Mister and Alice talk about the future and share a special moment. tt2113075,zpccIJubm5g,Mister provides the entertainment for Pete and does a Will Smith impersonation for him. tt2113075,mZmMhrrh5vs,"Mister tries to push his mother in a postivie direction, but it only leads to another fight." tt2113075,WIQhvHsTDU8,While Mister and Pete take a ride with Alice they unexpectedly see Pete's mom on the corner. tt2113075,piJUrPp2U2Q,Mister takes responsiblity for Pete and tells him that they're staying together. tt2113075,pduwe6sUsu4,"Mister tries to tell his mom about Curtis and his son, but she's distracted by a man at the bar." tt2113075,ZNo6GHJYrFc,Mister and Pete hide while the Police enter the apartment. tt4019560,LW8M-U3Q8ug,Black tells Rocky to confess to Cullen's murder so the police stop bothering him. tt4019560,yB1w-AypA_s,"Black hears the police will stop investigating him, but he still wants to tie up loose ends by killing Rocky." tt4019560,--ABd2SeIGE,Isabel's husband Jose strangely is killed in action on the same day his dog dies. tt4019560,3nVP-DM1egA,"Isabel believes she is the instrument of immaculate conception, but her deceased husband's family is upset about her pregnancy." tt4019560,lOJnFwgpcMQ,Isabel remembers the truth about what happened that night in the subway station. She was raped by Cullen before she stabbed him. tt4019560,sMjmQzP9D6o,"Isabel kills her father after hallucinating the abuse of a little girl named Elisa, who is actually herself as a child." tt4019560,UJQvNi4m4LM,"After a sexual encounter with Scott, Janine confesses that her deceased husband raped Rocky." tt4019560,TZdCMfr0Um8,Isabel gets very worried about Elisa's home situation when she drops her off with her father. tt4019560,nlJqcYb65o0,Isabel witnesses a man floating over the subway tracks. tt4019560,ZW-xfRn8vFY,Isabel tries to understand her overwhelming visions. tt1274586,LagXmjL6EeM,"Banir sends someone to shoot Evan, who retaliates by killing Banir." tt1274586,IAb5uq3GzZI,Evan is commemorated after he dies in a car accident. tt1274586,-wSqiksvdD8,Evan has a breakdown and decides not to kill Banir. tt1274586,DCThJoIT-bY,"After 22 years, Evan finally confronts Banir about the past." tt1274586,WdzNa6wmtpw,"When Aasim catches sight of them, Evan and Milton must improvise to keep their plans from falling apart." tt1274586,roLboEc4M-w,Evan and Milton prepare for their meeting with Banir. tt1274586,tOcnYAE2i4Q,Evan finds out he has an aggressive disease that's affecting his memory. tt1274586,yLtC-gH6ktw,Evan is lost in the park when Milton finds him and tells him the latest news about their mission. tt1274586,rA69NDoXRhI,Milton demands Evan's complete honesty if he's going to jeopardize his job to work with him. tt1274586,9VY3OKScxP4,Evan's behavior gets out of control and he's forced to resign from his position at the CIA. tt2381991,1PkqpkQQmwg,Sara and the Huntsman share an emotionally charged moment of passion in the forest. tt2381991,1m8Ac21hxO4,"When Freya is betrayed by her lover, her heart grows cold and she gains magical ice powers." tt2381991,QM8StMC7V6Y,"Sara and the Huntsman fight for each other, but are overcome by Freya's icy powers." tt2381991,32iBCneCYcI,"When Sara and the Huntsman are attacked by goblins in the trees, Sara uses her superior shooting ability to burn them all." tt2381991,izP8mDH8XOc,The Huntsman and his crew fight a hideous goblin and steal the mirror. tt2381991,AxhQq_-31FY,"When the Huntsman is attacked by a group of Freya's men, Sara arrives at the last second to save him." tt2381991,2BaBf4EEO10,The Huntsman breaks the mirror and defeats the evil Queen Ravenna. tt2381991,aPdLYN69cfE,"Upon learning that Queen Ravenna killed her daughter, Freya starts a battle with her sister." tt2381991,TZ9xan53wuA,"When the Huntsman tries to kill Freya, Queen Ravenna convinces her to sentence him to death." tt2381991,XWAuh7S1zjk,Freya orders Sara to kill the Huntsman. tt1353997,FU0HEv8SNrs,Arkadi awakens to find that Katya has fallen under Kirill's spell and given him the pendant. tt1353997,zATNPZTinmM,Arkadi and Kirill battle their magical dragons while Katya fights off the guards. tt1353997,DflN8U5mO00,Anson obeys his master Kirill and tricks Arkadi into handing over his pendant. tt1353997,98O6geBet-w,"Arkadi spends countless hours loosening his chains until the moment is right to escape and, after fighting his way out and releasing all the prisoners, he's awarded a jewel for his diligence." tt1353997,SormU7hbgk0,Arkadi steals his pendant back from Anson and Maxim gives Arkadi his last bit of wisdom before he dies. tt1353997,wXzgVOU3Yrs,Arkadi must avoid a tempting sexual encounter in order to prove he is worthy of obtaining a virtue stone. tt1353997,tMQjzrxE2Kc,"To prove he is worthy of obtaining the stone of virtue at the bottom of the pond, Arkadi must avoid his temptations and quit smoking weed." tt1353997,UjjSZfAe8sE,"In the midst of a dragon attack, Grandfather hastily reveals to Arkadi his destiny before he dies." tt1353997,MwdekXx-4ls,Katya saves Arkadi from some thieves and leads him straight to Maxim. tt1353997,ORQ7CGUilMs,King Agmar sacrifices himself instead of revealing that Arkadi is the keeper. tt1999141,6lv7o-rzkWM,"Aerona is attacked by a gargoyle in the forest. Then, after the others arrive, Gerald rises from the dead." tt1999141,ZvytnyM6lRY,"When the evil dragon threatens to kill them all, John the Brave transforms into a gargoyle to take it down." tt1999141,aiN0_53Rwjg,"When the mountain villagers try to stop the knights from reaching the evil sorcerer, they engage in an epic battle." tt1999141,DkpNYjgUlhw,"The knights continue to fight the mountain villagers. Then, Eldred the Strong creates an explosive to drive the dragons out of their cave." tt1999141,ukZg66d96_Q,"Maldwyn arrives as a gargoyle to hold off the dragon, allowing the knights enough time to flee the cave." tt1999141,zksgFqKxbVY,"When they awaken the evil dragon, the knights desperately try to escape. Aerona climbs over a chasm to rescue Neem before the dragon kills them all." tt1999141,P1R_JOEIMS4,The first knight transforms into a beastly gargoyle and begins attacking. tt1999141,-O7sJe9k8w0,"When the knights raid a pirate ship, they discover that Neem has placed a terrible curse on them. Then, they are attacked by a gargoyle." tt1999141,kjMmwtxIRbg,"In the midst of a battle, Maldwyn agrees to stay back to hold off the enemy. Then, he transforms into a gargoyle." tt1999141,ZN_59UzKu-8,"When Maldwyn begins to change into a gargoyle, Sigmund wants to kill him, engaging the group in a deadly battle." tt0985025,1DGrM6qhZHY,The group encounters a woman who signals dark things to come. tt0985025,bdJcCwoJ4KQ,"Ben, his daughter Sarah and a few others board an elevator only for the supernatural to intervene." tt0985025,rKUEBIPe5F8,Ben prepares to fight off the forces of darkness only for Sarah to step in. tt0985025,hMbcMlAVxeg,Emily deals with a horrific creature in true nurse fashion. tt0985025,TlyHBaAJVbk,"Making their escape from the hospital, the group is beset upon by zombies." tt0985025,L_0imHGhC3o,"When Jon nearly gets himself killed and insults Sarah, Ben sets him straight, but none of that gets them out of harm's way." tt0985025,eTepvIyKhIo,"Ben and Emily race to escape from the hospital, but when a ghost attacks, Sarah, of all people, might be their way out." tt0985025,Vl3IiVDwgpY,Rick sacrifices himself to save the group from an unstoppable menace. tt0985025,rGnXd_krGA0,"When Ben's attacked by a monster, help comes from the most unexpected source." tt0985025,68av2-Ti-GU,"Jon attempts to sacrifice Sarah to the forces of darkness haunting the group, only to discover what a terrible idea it is." tt0985025,CTpAikAZ2aA,"Jon tries to escape the hospital, but it won't be that easy." tt0985025,mVUQ88T2S6E,The group runs afoul a shrieking ghost. tt3307726,GoDxjaW2if0,"After Dr. Zimmer gets attacked, he studies a piece of the monster and determines it's nonterrestrial." tt3307726,-fqOpmu8014,"Oliver's crew has trouble navigating The Prometheus through monster-infested waters, but Lt. Plummer's idea sets them free." tt3307726,5yGE_RpI45U,"While Admiral Hansen and her team battle the monster topside, Oliver and his team discover an underwater junkyard." tt3307726,_06GrnWiGqI,Oliver kills the alien spaceship and he and Warren make it out of the wreckage alive. tt3307726,-Bxv4jtiR-U,"Admiral Hansen orders Oliver to destroy the spaceship after it destroys a ship of 20,000 and a beach full of people." tt3307726,yRec3myBtsM,The President learns about Mya's alien civilization theory and the team fights their way through the monsters guarding their exit. tt3307726,B1uEaZ1xSaI,A spaceship emerges from beneath the ocean and destroys a ship. The President makes a plan to use nuclear weapons against the monster. tt3307726,81mLKFXLNSs,Oliver and his team find the President and attempt to move him out of hostile territory. tt3307726,hotQs5eawqM,The President of the USA escapes a plane crash in a life pod. tt3307726,9v9MVT2X0_M,All hands are on deck when a strange monster unexpectedly attacks Admiral Hansen's ship. tt3677466,pMFzy56i7RA,"Wheeler, Gordon, and Southard try to escape alien captivity and warn Earth of an impending attack." tt3677466,JPA1TtBEIbc,An alien shoots Lindsay and General Magowan destroys the alien asteroid. tt3677466,_g79FGuo2GE,Major Blake and his team are off to a rocky start with the natives when they arrive on the alien planet. tt3677466,J66HeAFlMV0,Wheeler leaves a message for the humans on Earth just before he's killed by an alien. tt3677466,1reD-PYDpvk,"The aliens reveal the imminent destruction of Earth, but Chris refuses to go down without a fight." tt3677466,QAJTgMZpigM,"Just before reuniting, Wheeler loses his daughter to an alien attack." tt3677466,26nqXIUqVhE,Wheeler and his crew come through the wormhole and try to figure out where they landed. tt3677466,otsIUxrcoXQ,"While Earth is attacked, Wheeler and his crew fight and follow aliens through a wormhole in space." tt3677466,DUU7WFTBgBM,"Wheeler and his team alert base to the hundreds of enemy aircraft that are deployed. Meanwhile, the enemy attacks and evaporates a civilian on Earth." tt3677466,M9p2ix0s-D0,Wheeler and his team get captured by the aliens. tt2493486,cP63R4QwDFI,Raiden and his men begin their attack on Geza Mott's fortress. tt2493486,TEvVc1vsO2U,"Raiden and the fallen knights storm Geza Mott's fortress, losing some men on the way." tt2493486,LE0TUN0Po7I,Raiden sees his wife one final time before he faces his sentence for killing Geza Mott. tt2493486,BdZN3EJVjo8,"After a hard fought battle, Raiden finishes off Geza Mott." tt2493486,bN1E4vf9FlM,Raiden and Ito square off in a deadly sword fight. tt2493486,qY7EPDCU5hc,Lt. Cortez briefs the knights on how to gain entry to Geza Mott's fortress. tt2493486,afBwkWnwlD0,"In an unexpected confession of his crimes, Bartok denounces Geza Mott." tt2493486,FcqJ2a3Dazs,"Without family or heir, Bartok bestows his sword and land upon Raiden." tt2493486,94J4AzRTLE8,"After Bartok defies the Emperor at his trial, Raiden is forced to kill him with his own hands." tt2493486,jJvvT_Sb0jo,"When Geza Mott threatens and beats him, Bartok breaks the law and draws his blade." tt2552498,tIy7sQGKtJA,Serena commands her beasts to descend upon earth with her. tt2552498,IMr_irerhRE,"When Jack is pursued by Serena's giant beasts, he climbs into Newald's flying castle to escape." tt2552498,6DmSVYtMoyQ,Jack uses his giant robot to defeat the beasts. tt2552498,1J-U8tLUlsg,"After Jack saves a woman from the vines of the beanstalk, he is swept high into the sky." tt2552498,kKUsYDTykUQ,Jess attempts to use his motorcycle to distract the beasts and draw them towards the weather balloons. tt2552498,Sd4y4XC-qvw,Newald tricks Serena into believing he is dead so that he may destroy her amulet. tt2552498,MZIPOu6WeGg,"When the military cannot quell Serena's beasts, Agent Hinton makes arrangements for a deal." tt2552498,FTGtcjSMjy0,"Serena arrives from the sky above and asks the military for their allegiance. When they do not oblige, she uses the powers of the beanstalk to send the General soaring." tt2552498,E-NXKcnsDJ8,"As the battle rages below, Newald's flying castle runs out of coal, causing it to plummet and crash on top of a giant beast." tt2552498,7EmNSHq1mh0,Newald's flying castle begins plummeting straight downward. tt4145350,uHd2oehKwuA,"Kikimora the witch stalks Hansel through a thick fog. With Gretel's help, Hansel finds a moment to strike off the witch's head." tt4145350,_a9IqPr1kdg,"Hansel and the witch Morai face off, leaving a tasty snack for Gretel." tt4145350,8QDZKTF75Zs,"During a shootout with the witches in the cemetery, Gretel is kidnapped." tt4145350,DUiEMltmojE,"Circa the witch seduces Hansel and tries to get him to kill himself. At the last moment, Gretel breaks the spell and Hansel stabs Circa through the eye." tt4145350,heoNF-PyZ8Y,Hansel interrogates a witch disguised as a cheerleader to discover where she is hiding a group of missing girls. tt4145350,_j0onVyO18I,"In order to save herself and prove her loyalty to the witches, Gretel serves a pie made of human meat and agrees to kill Hansel." tt4145350,1m_aN2-vauc,"When Willy turns out to be an evil witch, Gretel finds herself in over her head." tt4145350,Tt7LWRxtRcE,Gretel resurrects Lilith and murders Cthonia. tt4145350,Mw8bNmfoC48,Hansel and Gretel come to blows in one final showdown. tt4145350,9xp2F5kPbRQ,"In order to prove her loyalty and gain power, Gretel rips the head off of her Grandmother." tt1428538,oY1tp2HG06w,"When Lilith discovers that Gretel will not follow in her footsteps, she threatens to kill the siblings. Left with nowhere to turn, Gretel stabs her in the eye with a cross." tt1428538,-whQdRI7wUQ,"Hansel and Gretel's parents search Lilith's house for clues to their whereabouts, only to be brutally murdered." tt1428538,TXAJapM6E-U,"When Gretel discovers that Hansel is being held captive, Lilith begins to play with her head." tt1428538,31sP1-4GgsA,"As John stalks them through the forest, Hansel and Gretel catch him in a trap." tt1428538,e6B-T4KYIFQ,"When Jane is tied up and beaten, Hansel and Gretel devise a plan to rescue her and kill her captor." tt1428538,c7-u-fyUSkM,"When Jane is killed, Hansel and Gretel go on the offensive and follow the only escape -- through the oven." tt1428538,ovFDrgui4a0,"After breathing in the witch's poisonous gas, Gretel hallucinates that she is trapped in a room with a demonic Lilith." tt1428538,9_LX8b0kmiI,"When Gretel refuses to eat human meat, Lilith forces it in her mouth." tt1428538,ipb0Bfg_FTs,Hansel and Gretel trap Lilith in her own oven and burn her alive. tt1428538,JyQczb2eCf8,"Under the influence of the witch's gas, Jane has a hallucination that she is trapped in a room of taut wire with her disappointed father." tt1509767,Ot5T_oe47Xs,The Three Musketeers go undercover to break into the North Korean base. tt1509767,SCeW4Y-XPfo,D'Artangan faces off against General Lewis in a long awaited sword fight to the death! tt1509767,CShX9zc_Zgg,"To stop the assassination of the president and the outbreak of World War III, the Musketeers battle the Cardinal and his henchmen." tt1509767,-wHSMnaUzWY,Just when the Musketeers think they've made an easy escape they run into their nemesis the Cardinal. tt1509767,5Wpy4Luh_uY,D'Artangan and Aramis square off to see who's the toughest chick. tt1509767,-GRPXrEaqn4,"On the way to resuce the President, the Musketeers are attacked by the Cardinals drones." tt1509767,bhEMe--tKlY,General Lewis orders Dr. Kim to get the location of the Musketeers by any means necessary. tt1509767,MzvFEBBZuwA,D'Artangan searches for answers on the Cardinal at Athos's residence. tt1509767,sL0fO-3JquE,"Before Planchet can explain to D'Artangan how to stop a global war, the pair is attacked by the Carinal's henchmen." tt1509767,PdKfp8IWgGI,The Musketeers taken on the whole North Korean army while escaping from the base. tt1572491,1O9Sgq0FK4c,"Javier, who plays the sad clown, meets his counterpart, the funny clown, played by Sergio." tt1572491,WQwgtpaIVkE,"When captured by Coronel Salcedo, Javier is forced to act like a hunting dog." tt1572491,uMx7RJLn08w,Sergio tells a distasteful joke at dinner and Javier doesn't get it. tt1572491,Em-hPjFyY-w,"In the Valley of the Fallen, Javier declares his love to Natalia." tt1572491,tNnxJK7L3N0,"Mourning the loss of Natalia, Javier goes to the movie theater and sees Raphael singing ""The Ballad of the Sad Trumpet""." tt1572491,-cPDC0me1iM,Javier and Sergio have a final confrontation over Natalia. tt1572491,SHIG5bfYTs0,"Javier loses control at a diner when he hears ""The Ballad of the Sad Trumpet"" by Raphael." tt1572491,I9XmewMPVdo,"While captive, Javier has a vision of Natalia as the Virgin Mary who tells him to become the Angel of Death" tt1572491,iyVCFSW_W1w,"Javier goes back to save Natalia, but Sergio comes and has a different idea." tt1572491,0djt409Dqps,"While hospitalized, Javier has a vision of his father, sneaks out of the hospital and exacts revenge on his attacker Sergio." tt1031280,TEtlsYtj5-s,"After getting a flat tire, the group discovers that they ran over a strange splintered dog corpse and Dennis Farell gets pricked with one of the splinters." tt1031280,Mki2fo1Ou-s,Seth and Polly fend off the severed hand of the creature. tt1031280,TvQmXzgtOeQ,"The creature makes it inside the gas station, and Dennis Farell volunteers to stay behind and fight it off." tt1031280,r0MABEixxRM,Dennis Farell decides to sacrifice his own life so that Polly Watt and Seth Belzer can escape. tt1031280,eQ449GDHSA8,"The infection begins spreading through Dennis Farell's arm, so he's forced to cut it off." tt1031280,8QcReRkM8wQ,Seth Belzer attempts to get ahold of the police officer's radio so that they can call for help. tt1031280,Xc2OmGesDgo,Seth Belzer and Polly Watt are taken hostage by Dennis Farell and Lacey Belisle. tt1031280,oe59hoX10vU,"Lacey Belisle discovers a mutilated and moving corpse in the bathroom, and it comes after her and the rest of the group." tt1031280,1GHCAqKWA58,"Seth Belzer, Dennis Farell, and Polly Watt, discover that the creature attacking them is manipulated by an infested organism that feeds on the nutrients found in blood." tt1031280,m3UDahZjiK4,"Sheriff Terri Frankel arrives at the gas station to help Polly Watt and Seth Belzer, but she is overpowered by the creature." tt2872810,9T60vF2EZNg,"Daphne arrives at the house, but disaster strikes when she can't get in the front door." tt2872810,Gr18osLHHsE,The Killer vents his existential confusion on three punk Halloween pranksters. tt2872810,GV_pMBUT-24,Kaylie gives her would-be Killer a deadly surprise. tt2872810,Bg17-zWqpkU,Kaylie seduces her would-be Killer. tt2872810,M4YhJdAsgdU,The Killer tells Kaylie his origin story. tt2872810,5YbynyAXAL8,Kaylie pushes the Killer's buttons in hopes that he'll start pushing hers. tt2872810,EeNJbbrT8e8,"The maniac prepares to live out his Hollywood slasher fantasy, only for Kaylie to reveal her darkest secret." tt2872810,uj0x3TbEE7g,"Pinned down by the killer, Kaylie grabs anything and everything that isn't nailed down to hit him with." tt2872810,FzlxL1f-E54,Kaylie receives an uncomfortable visit from Mr. Smiles on Mischief Night. tt2872810,2nJCpOeT9x4,"Stalked by a killer, Kaylie attempts to force his hand by taking a night swim." tt1982735,PSDHvN95YgA,Cammi has a catfight to the death with Taylor while the Spider watches. tt1982735,jHw_p75_LfU,"The Spider attacks Taylor, but she's got a surprise of her own." tt1982735,PKG3eCpwYBM,"Trevor makes a deadly mistake with Cody, and Madison has a second encounter with the Spider." tt1982735,J3J92iSdERQ,Trevor finds Cody in a tight spot with a TV. tt1982735,dACX3WiPVU4,Cammi desperately attempts to evade the Spider as his massacre continues. tt1982735,g1R5DmGvMCY,Spider gets the best of Derrick while Taylor's otherwise occupied. tt1982735,mz4JJWjy-Uk,"Creepy amusement park or no, Taylor's getting her freak on." tt1982735,IzFSwZqBjFM,"Cammi gets a bad vibe about the abandoned Muerto Ride Land, however, that doesn't stop Taylor from kicking the gate down." tt1982735,0-vcQg70AX0,"Searching for Madison, Adam runs afoul of The Spider." tt1982735,SWrq6xYYIbs,Cammi and Dylan stumble upon a darker horror in the haunted house. tt0286306,_41AKvC_uGk,"Pfc. Charlie Shakespeare tries to comfort Pvt. Colin Chevasse, but finds that he's already too far gone." tt0286306,03jGqiF-0Gg,"Pfc. Charlie Shakespeare fails to save Cpl. Doc Fairweather from Bradford, but the worst is yet to come." tt0286306,uXG9v1_X8jc,"Pvt. Thomas Quinn resists Sgt. David Tate's discipline, but is powerless against sentient barbed wire." tt0286306,S-M0BOzttdg,"Capt. Bramwell Jennings attempts to discipline Pvt. Thomas Quinn, which goes very badly for him." tt0286306,UmRkYrYgnN4,"Cpl. Doc Fairweather races to save Pvt. Willie McNess from no man's land, but comes face to face with horror." tt0286306,ev-4cz3hlr0,"Pvt. Thomas Quinn goes off the deep end, crucifying German POW Friedrich and challenging death itself." tt0286306,AJQd_pt3-pk,"Sounds of phantom warfare drive the soldiers to madness, particularly Capt. Bramwell Jennings." tt0286306,X4JETt9w9Zw,Pvt. Willie McNess is assaulted by phantom shrieks and the presence of death itself in the trenches. tt0286306,6rDCHgWk7dI,Pvt. Barry Starinski's self-love gets interrupted by some disturbing sounds. tt0286306,dCyrhdW9e8M,"British forces storm the German lines in WWI, suffering horrible losses." tt0286306,LmK0bMGzHpU,"Pvt. Jack Hawkstone explores the trench, only to run into the Mudman." tt0443435,xgA6VKUVRWY,"Emily attempts to rescue Bobby, only to discover that he's further gone than she expected." tt0443435,qnD5qOyIonw,Dr. Benway performs open-brain surgery on Emily. tt0443435,RMaNfwSn-pw,"A group of friends mourn after a horrific car crash, only for a twist of fate to change their lives forever." tt0443435,7LraDj4Pjgk,Dr. Benway gives Emily more of a physical than she really needs. tt0443435,fcAhSCTiJm4,"While Dmitriy suffers through a live autopsy, Scott endures a bad trip." tt0443435,LrsnIyCjvB8,"Bobby pulls a massive shard of glass out of his stomach, throwing everyone into a panic." tt0443435,IWmzBLX4j8s,Dr. Benway surprises Dmitriy in the operating room. tt0443435,pLra48c-SuA,Emily has an eerie encounter with Gretchen. tt3384904,KAT5h_fimTM,"The volcano begins to erupt, raining molten rock on Mykaela and the other tourists." tt3384904,NhtvtnrHon8,Jeff and his fellow soldiers infiltrate an Italian military base so they can steal a helicopter and rescue his family. tt3384904,IT236O8f-J8,"Carlo shows up at the last moment to rescue Jeff and the others, bu their helicopter escape does not go smoothly as they fly through falling molten rock." tt3384904,-v_2hFPseDg,"Jeff uses a bomb to rescue Mykaela and the group. Then, Herricane's helicopter is struck by volcanic debris and he must jump out to survive." tt3384904,yWu4GUFpwWo,"When a mudslide strikes out of nowhere, the group is forced inside the nearest building. However, one of them doesn't make it and is swallowed by the sludge." tt3384904,uB-53DTWD3k,"Molten rock begins to rise, killing Alita and leaving the group with nowhere to go but back to the roof." tt3384904,boGgXcQIe-8,"The volcano creates a major heat surge, causing those without cover to explode. Mykaela and the rest of the group burn up as they hide inside the ruins." tt3384904,DzqzlpAo9s4,"When the temple they are hiding out in begins to collapse, the group is forced to flee. Paul catches on fire during the mayhem and is crushed by falling rocks." tt3384904,k3KR3Wz29FY,Jeff evades Carlo in a high speed helicopter chase. tt3384904,a_DO8nd7FeA,"When the group starts suffocating from the volcano's natural gas, they rush to escape. Mykaela uses her knowledge of science to help everybody breathe again." tt2300975,ZBvJyUTIU0k,Jessie is pushed into the river by her mother's ghost and resurfaces as...something else. tt2300975,vnL8uiqp6_k,"Jessie discovers a troubling truth about herself from the specter of her mother, Kate." tt2300975,4V4jhMSJRW8,Jessie and Preston find all manner of spooky paraphernalia in the bayou. tt2300975,WfAp-jZV5Bo,Jessie finds herself haunted by her demon after watching VHS tapes about her mother Kate. tt2300975,eDPbu2vNrWk,"Jessie and Preston pack up to leave, only to be attacked by the ghost." tt2300975,4QYYeDp44H8,Jessie and Preston exhume a corpse from the swamp. tt2300975,v3bWb5qZMu8,"Jessie has a rough time in the bath, which Leon seems to know something about." tt2300975,nudL_t9u78o,Jessie has a pretty traumatic nightmare. tt2300975,Ewpzngfnvcc,"Jessie watches, paralyzed, as Leon burns her mother's tape and, quite unintentionally, himself." tt2300975,6Tax5ajZYsY,"Jessie finds a VHS tape with her mother, Kate giving her daughter a Tarot reading." tt1331307,YDkE97uXjRo,Quaid flashes back to a childhood encounter with an axe-murderer. tt1331307,6w5n1TfIFjk,"Quaid concludes his study on the nature of dread, leaving one final test for Cheryl." tt1331307,83Lfw7BxsQE,"Quaid tells Abby how sexy she is, and then he shows her." tt1331307,WGxfP216OFI,"Abby participates in Stephen's fear study, but wants much more." tt1331307,ZPjREKxiNsQ,Quaid relives his horrific past. tt1331307,yuQipNK_BiQ,Cheryl tells the harrowing tale of how she became a vegetarian. tt1331307,nVvMBs0TFWA,"Quaid tortures Cheryl a vegetarian, by forcing her to eat rancid meat." tt1331307,iLFMRsi07_I,"Stephen stalks Quaid, little guessing that there's another one of his 'experiments' waiting in the wings." tt1331307,fRhJPuDCXRk,"Stephen, Cheryl, and Quaid hear more than they want to during their fear study's interviews." tt1331307,xR6jSh2HrAA,Quaid tests Joshua's fear of deafness. tt1331307,WxIgfDZXS4k,"Unable to handle her congenital defect, Abby takes a bleach bath." tt0492486,SBIKhBgxq6M,"After realizing she killed all her friends, Tara kills the paramedic who is trying to take care of her." tt0492486,99kt5BrTa4Y,"While on a drive in the woods with her friends, Tara hits an animal with the van." tt0492486,VIxumCmygzw,"Tara, Holly and Lisa look for their friend Bluto." tt0492486,E7AA7Qv9LkM,Jake gets attacked while Tara steps away to look for the killer. tt0492486,c2v3ZXKLzh8,Lisa gets lost exploring the river and is killed by a figure in the water. tt0492486,X2aVRBuYsNI,Bluto comes across a talking cow while tripping on shrooms. tt0492486,jS-7DpkGT_E,"After watching Troy get attacked, Jake jumps out the window to escape the killer." tt0492486,uwkMYWXtFu0,"After being found by the police and put in an ambulance, Tara realizes that she was the murderer the whole time." tt0492486,9RpdDbHL550,Tara spots a scary figure in the woods that seems to be after her and her friends. tt0492486,nry9GG4Z0CY,Bluto is killed while tripping on shrooms. tt0073260,SV6R0ym_s1M,"Frost wakes up to find that even though the submarine has left, his wife has stayed behind to be with him." tt0073260,Bmd8v7RypQk,Everyone pitches in to help get the submarine in working order. tt0073260,m0FsyBlZtkk,Frost is left behind fighting a dinosaur when the submarine takes off. tt0073260,KngGYZgu02o,"After the first plan fails, Cole sacrifices his life to kill the dinosaur." tt0073260,aPDfc08u_s8,"After the group is taken hostage, Captain Burroughs comes up with a plan that requires oil and teamwork." tt0073260,qFvJloqBYTQ,Captain Burroughs tests out his theory for making gasoline. tt0073260,bwH_nxsCKp8,"The group meets Conrad, who leads the group to a raft and the realization that they are in the Bermuda Triangle." tt0073260,rdCzBg9Xw8A,Captain Burroughs and Cole attract a dinosaur while out searching for food and water. tt0073260,CRPf4U_MRVw,Jude creates a distraction so he and Conrad can steal the boat. tt0073260,aPcCjI--Cz4,"After a terrible storm, Captain Burroughs and his passengers find themselves in a strange place." tt2175927,TXLZrVcUcq4,Juarez returns from battle with some serious injuries and some troubling news. Dr. Bilman finds a clue about their alien attackers hidden inside his body. tt2175927,GVzyzXZuzOU,"As the aliens continue their siege on the warship, Captain Winston calls for reinforcements and the Air Force arrives." tt2175927,r2C-3xQskdg,"A Navy Seal team goes deeper into an alien ship. When they start taking pictures, the aliens grow angry and attack." tt2175927,KlvWPWFYvo0,"More aliens attack the battleship, causing explosive destruction. When Lt. Bradley is pinned under a piece of shrapnel, Captain Winston comes to her rescue." tt2175927,9qwsfjnC0kM,"Captain Winston mounts his attack on the alien army, blasting them with the power of the USS Iowa." tt2175927,HCtR23MGwn0,"As Captain Winston and military personnel examine an alien body, it comes back to life, attacking and killing two officers before Winston puts it down." tt2175927,-QdBG7PfFeE,"The aliens bring out their biggest ship for one final attack, but it is no match for the mighty USS Iowa." tt2175927,up79gU3V8sk,"A team of Navy Seals infiltrate what they believe to be a North Korean warship, only to discover that it is inhabited by aliens." tt2175927,gsVcJ5gGsE0,A team of Navy Seals infiltrates the aliens invisible battleship. tt2175927,Oe4jP8WV9lQ,"The South Korean Army falls under attack from a mysterious source, causing many soldiers to lose their lives." tt3614530,pkwGEagSVT0,"Jem and the girls perform ""I'm Still Here"" and we see videos from inspired fans." tt3614530,6AWMlRhBN5U,The girls leave when they find out that Jem signed a solo contract. tt3614530,SV_eLd8wm70,Rio fires his mother and takes over Starlight. tt3614530,ybRy055wBsw,"Jem sings ""The Way I Was"" at her first solo concert." tt3614530,hKuh_h2nzN8,"When the lights go out at the Open Air Club, Jem keeps the show going with cell phone flashlights and pure enthusiasm." tt3614530,9I-FCJRX2Cc,Jem watches Synergy's holographic video message from her dad. tt3614530,2oFuSvs-WU0,Jem is disappointed with her music video and her sister encourages her to keep going. tt3614530,_t1yxHW97xE,"Jem and the girls sing ""We Got Heart"" and Rio joins in." tt3614530,qEb51O12XFw,Jem and her crew hit the red carpet for the first time. tt3614530,BwWzZtG_6fA,Synergy the Robot leads the girls to a clue at the Santa Monica pier. tt2005374,PF2hIgWupGU,"Cindy gets a scare when she encounters Robert at the strip club, but he's not thrilled to see her either." tt2005374,izLhF-Oodrg,"Jack asks Cindy about her family, but she expects him to open up about his dark past if they are going to be friends." tt2005374,FLjWVccRPOA,"While Jack tries to track her down, Cindy escapes to her pimp, Clate, but he has other plans for her." tt2005374,3oqt6V9aJIM,Jack and Von Clasen interrogate Robert at the police station while Haugsven tries to turn up a shred of evidence on him. tt2005374,vZHS1nXJaGU,"Debbie Peters tries to escape Robert Hansen, but she's in his hunting grounds." tt2005374,kcniTaNYikg,Robert Hansen tortures Debbie Peters when he gets an unexpected visit from his neighbor. tt2005374,pPCq9SIyHqE,"Jack and Von Clasen race to save Cindy before she's taken to the killer by Carl, a brutal hitman." tt2005374,y87LPJHRfOI,Cindy Paulson recounts her terrifying tale to Jack Halcombe. tt2005374,8ILiVgno0_0,"Cindy Paulson pole dances for cash, but runs afoul of her old pimp Clate Johnson." tt2005374,F6E2ojebPlA,"Desperate to nail a confession from Robert, Jack and Cindy try one last gambit." tt0382943,ybFMkEvDx60,"Ronnie, Ricky and Jenny discover Alan badly beaten as Sheriff Jerry then reveals himself to be Angela Baker." tt0382943,dDX_fyIlXXg,Bella finds that someone has made a few deadly modifications to her bunk bed. tt0382943,JVo7oslbnjA,Karen wakes up in the rec hall with a noose around her neck. tt0382943,yK9Y-rD7XGY,T.C. is killed by a wooden spear that comes through the floor of his cabin. tt0382943,GLBlIYIlND4,Camp counselor Randy gets tied to a tree with a wire noose around his penis while his girlfriend Linda tries to go for help. tt0382943,3oFSNCmEZyE,"After being set up to look crazy, Alan chases down two frightened girls to explain himself only to end up getting publicly humiliated." tt0382943,QlZ28Do9WmY,Frank is knocked out and wakes up with his head in a birdcage with some rats. tt0382943,4o1O6Pt7zr8,"Alan, a troubled kid, gets into a fight with Mickey the cook after being denied ice cream." tt0382943,5DaiI6epRCU,"Mickey, the camp cook, is killed by having his head put in the deep fryer." tt0382943,0tVy79pRaBs,Michael chases down his stepbrother Alan who has run into the woods after being yelled at by the camp owner. tt0382943,1asspYdV3as,"Late one night while getting high, the local camp stoner Weed is tied up and killed." tt1757742,PXokYGWGASA,Dr. Helzer asks Alan about his dead wife. tt1757742,8lnd2BulFkU,"While Dr. Helzer interviews Alan, they get an interruption of the paranormal kind." tt1757742,0vuS4vo4c94,Dr. Helzer tells Paul to keep filming as Alan attempts to save his daughter from a poltergeist. tt1757742,xV0HfZSFsiE,"When Dr. Helzer invites a psychic to contact the ghost, Caitlin ends up getting possessed." tt1757742,T4ZusOrLSoY,"Everybody leaves the apartment, but the haunting may not be over yet." tt1757742,JkW-iBe_WyQ,"Dr. Helzer, Paul and Alan notice that the ghost appears to be in Caitlin's bedroom." tt1757742,UZVhwFUQwcs,Alan answers the phone and the doorbell only to find that repeatedly nobody is there. tt1757742,6OYZi5KUFzg,Dr. Helzer and his crew quickly experience paranormal activity after begining to set up in Alan White's apartment. tt1757742,PPl4KzH-bGc,"Dr. Helzer, Paul and Ellen set up a device that uses a flashing light and a camera to catch a glimpse of ghosts." tt1757742,o33ZCLXEHIU,Paul and Dr. Helzer show Alan some recent findings. tt2474438,ijaNlufpcMs,Attila performs the ritual of the staff and bestows the power of immortal life upon Nomad and his sons. tt2474438,Jzr8lXSNRA8,"When Vito is unable to rescue his soldiers, Fleetwood and Meat secretly kill them." tt2474438,GJwsVhQHggU,"Nomad stalks the soldiers through the forest, killing off most of them one by one." tt2474438,mCfKPXX19Gw,"Nomad awakens and goes on a rampage, killing Dr. Bukingham and every soldier in his path." tt2474438,f8P51JbIp9g,"While Attila and Nomad face off in a final showdown, Vito and McVie try to escape before an explosive can detonate." tt2474438,C-uCzmnXn-g,"In an effort to become immortal, The General drinks blood from the Staff of Moses and transforms into Attila the Hun." tt2474438,z542q4dYk-0,"When Nomad catches up with the group, Burnett hangs back to face him head on in an intense fist fight." tt2474438,7S3biRDwbAc,"The General uses the Staff of Moses to reincarnate lost soldiers and fight off Nomad. However, it does not go as planned, and one soldier's head is lit ablaze." tt2474438,U714emx9EJQ,Nomad breaks in to the police station and kills officers Tazbury and Sharp. tt2474438,rbYJb_i2czc,"Nomad throws a spear in the air, stabbing Bulldog through the chest. With his dying breath, he uses a grenade to blow up the monster." tt1366365,nW92suQFQ5c,After the car crash Will is trapped and Carrack has the upper hand. tt1366365,BefYI15la84,Will fights to reclaim the briefcase from Carrack and Gorman. tt1366365,8gLOoFW3ke0,Will and Lucia play a game of cat and mouse against Carrack through the streets of Madrid. tt1366365,BxIcBWi4ETk,Will and Lucia look for a way to escape down from the rooftops. tt1366365,k_pB_zV6kVw,"While held captive, Will is offered a deal to save his family." tt1366365,sVZLKLWFDYs,Will discusses his father with Lucia and learns something surprising. tt1366365,FAnP3FAu5sU,"Will goes to Caldera's office looking for help, but is met by an unexpected guest." tt1366365,4Gs6pBwn5w8,"Unsure of where to turn, Will begrudgingly talks to Carrack." tt1366365,SqQmfQfAzzg,Martin asks Carrack if she had anything to do with his family's kidnapping. tt1366365,p0vZhGqM_Rs,Martin saves Will and reveals the truth about his job. tt2395199,BK5ad9GV4NQ,Xander and Henry have their final confrontation on the lake. tt2395199,7j5VT6oDcVw,Henry and Xander fight in the treetops. tt2395199,Gy9Wan4jskg,"Henry has a confronation with Xander's men in the woods, and just when all hope seems lost; he gets a little help." tt2395199,jmwfCk8MBhk,"Despite being shot, Sanderson refuses to help Xander find Henry and Clay." tt2395199,P8RUrH3UmPY,"Henry, Clay and Sanderson engage in a shootout with Xander and his crew." tt2395199,-a4N0JuAW8A,"Clay saves Kayla from Xander's men, but she is not who she seems." tt2395199,BSaGnAC8boM,Henry and Clay realize that they have to learn to work together to get out of this alive. tt2395199,OZJUtFROusE,"Right before killing Henry, he and Clay are seen by Xander and his crew." tt2395199,96CVkRhfoKU,"Henry welcomes in a stranger named Clay, but Clay has an agenda." tt2395199,bJbTcRnSFAA,"Xander, disguised as a mounty, takes out an American police station." tt1219671,E1k9eRHXFX8,"When Hartford seeminlgy kills Anna, he and Quatermain come to blows in the middle of an earthquake." tt2012665,2_W3saVv0qw,"Angel punishes Tommy for his escape attempt, forcing him to reveal his darkest secrets." tt2012665,BLejeXcxLdg,Angel tortures Tommy to get to the truth about why he is being haunted by his mother. tt2012665,2Dlgg0Yqsd0,"Angel holds Tommy and his family captive, hoping that Tommy will finally confess his dark truth." tt2012665,kgs8NvXfI9c,Tommy's psychobabble breaks down in the face of Angel's psychopathy. tt2012665,W09CmZtBFRQ,Angel kidnaps Maggie and tries to hide it from his daughter Francesca. tt2012665,IoRpcIVgtUc,"Angel offers Tommy, Maggie, and Ben a way out." tt2012665,p6AK2S2N6hA,"When Tommy discovers Ben looking for his money, he discovers just how deeply his brother's in trouble." tt2012665,dY9zZS6BNkU,Tommy takes Angel to his mother's grave to help him mourn. tt2012665,F1ZPE23KT_4,"Tommy drops Angel as a patient, but that doesn't go as well as he'd hoped." tt2012665,2cgMKpAGSQw,"Tommy takes Angel as a new patient, but complications soon arise." tt3036676,gwEoo0r_8EY,Juan flashes back to the night of the murder while the jury reaches a verdict. tt3036676,BjPUO_4HJeo,Jaxon cross-examines a key witness in the Torres case. tt3036676,G_Rd3TcODj4,Jaxon confronts Vincent Delacruz and is forced to make a horrible choice. tt3036676,4OEhuma-rrY,"Losing his court case, Jaxon attempts to withdraw, which Vincent Delacruz doesn't believe is an option." tt3036676,0ekAvNp_F9c,"Amanda reveals her secrets to Jaxon, but not before Tattoo finishes off his colleague." tt3036676,osLhRtHZ4Gw,Jaxon spies on Tattoo's sex slave ring while Vincent Delacruz works on his colleague. tt3036676,6oUzjN26DoM,"Jaxon cross-examines the victim, proving his client's innocence." tt3036676,rlaRlCFXUqk,Vincent Delacruz waives the conflict of interest clause and more to force Jaxon to take his case. tt3036676,TTOlRTmEdoY,"Jaxon is an ace defense attorney, but not everyone is as happy about the outcome of the trial." tt3036676,RdG9KwpjxA0,Tattoo explains to two girls their new life as sex slaves. tt1219671,QUtc_tjyrsI,Hartford makes a deal to sell Anna to the tribal chief. tt1219671,7taghufoJY4,Quatermain and his group are taken by natives. tt1219671,ZdNa-FoYEo8,"When Anna insults Quatermain, the two get in a tense argument and staring match." tt1219671,AW8Vxng7dDY,Quatermain and his group must escape the temple before it collapses from an earthquake. tt1219671,dh6yBmJDLpQ,"Despite being shot in the head, Anna is revived." tt1219671,1gjaw2BNg7U,"A swarm of bugs attacks Quatermain and the group out of nowhere. Then, Anna hurts her ankle." tt1219671,1rowOWuYacM,Quatermain and Hartford engage in a shootout over the map to the treasure. tt1219671,Xf2ZsLFeD24,"Hartford's men stage an ambush, leaving Anna trapped in the bathtub during a shootout." tt1219671,fZ99iSkvkec,A young jungle native gets his head plucked off for leading Quatermain and his group to his tribal village. tt1014763,A_n2FjVMiVY,Leo and Raisa are attacked by thugs at the order of Vasili. tt1014763,1q-FL1Wd0EE,"After her name shows up on his desk, Leo is forced to ask his wife if she is indeed a spy." tt1014763,eJPXQfvokV8,Leo and Raisa fight for their lives against Vasili. tt1014763,5DWrrqP_HNk,Leo tracks the serial killer into the woods. tt1014763,v7QfNBfZT3w,Leo reveals to General Nesterov that there has been a man killing children in Russia. tt1014763,rTlfnymyrrQ,Leo and Raisa are taken from their homes and brought to the ministry to await punishment. tt1014763,i7Jg_6-fYF8,Leo goes ballistic when he sees Vasili murder the parents of two innocent children. tt1014763,8zMlPNdRRLY,General Nesterov and his officers discover another victim in the Volsk forest. tt1014763,68CXG6t1mxU,"To keep in line with Soviet doctrine, Leo must report to Alexi and his wife that their son was not murdered, despite evidence to the contrary." tt1014763,hCN8UAdH55A,Leo helps lead his fellow soldiers to victory in the Battle of Berlin. tt2304953,FJStfF_7w9k,"Mitch and Jimmy investigate Clinton's assets, but he might just be two steps ahead of them." tt2304953,RgM_mn4oP04,"Mitch races to save Jimmy, but that's all a part of Clinton's sick plan." tt2304953,NawsWUndVQQ,Mitch receives a chilling call from Clinton that forces him to take drastic measures. tt2304953,8fBQzlJdubE,"Clinton threatens Mitch and his family, leading Mitch to pick up his own investigation." tt2304953,ELAfnYfUaAI,Clinton threatens to kill Mitch and his wife Rachel for threatening to stop his vigilante attacks on paroled criminals. tt2304953,xk9PtV1-Dl4,"Trying to evade the police, Mitch makes the mistake of a lifetime." tt2304953,hFZGh14H_J4,"Discovering similarities between a recent murder and his latest case, Mitch begins to suspect that there might be a serial killer on the loose." tt2304953,3hcHRAFPBVY,"After interviewing Clinton, Mitch confers with his associates as to whether they have enough to convict a man he knows is innocent." tt2304953,x17F1j6spHw,"Mitch looks into the suspect he knows to be innocent, but Detective Kanon thinks he might be a serial killer." tt2304953,BtvvvXRUks8,"Attorney Terry Roberts arrives in court with the anonymous caller's secret identity, which sets Mitch on edge." tt1730294,e1oUspIUHEw,Isaac and Yoni are reunited with their families. tt1730294,_J6ipSZnD2c,"While picking up drugs for Levi, Vince takes matters into his own hands and kills Red Parker." tt1730294,ZoYZl8-VEGU,"Hector captures Yoni, forcing Isaac to get involved and save his cousin." tt1730294,Hv3mUXCo46M,"After realizing that his family is in danger, Isaac goes after Micky" tt1730294,FY8vuvzZHl4,"Isaac helps Levi and Vince pull off a robbery, but has a change of conscience at the end." tt1730294,wmKfHN7NxeA,Levi and Vince have a business proposition for Isaac. tt1730294,DEeqxarMzg0,"When Levi finds out that Red is dead, he threatens Vince to get information out of him." tt1730294,Ny0jtHcjrbg,Isaac meets the beautiful Aline when she has some car trouble. tt1730294,G_5pbKwl4hE,"Isaac and Yoni have a date night but they run into their customer, Micky, who happens to be a drug dealer." tt1730294,G1OstoTh_Bo,"After Isaac threatens Micky, he realizes that he and his family are in danger." tt0269743,bgoBjzXp3ww,Janitor prepares his meal - fresh dog. tt0269743,wqQYEQ-fsLA,Yun-ju confesses to Hyeon-nam that he stole the dog. tt0269743,jF6mqjUiljk,Hyeon-nam runs from the homeless man on the roof and returns the dog to Yun-ju. tt0269743,_wU_3DGbYS8,Hyeon-nam saves the dog from being cooked. tt0269743,MBDyD5A2mQk,Hyeon-nam chases Yun-ju after she sees him throwing the dog off the roof. tt0269743,X-lp4KfK9Qk,Hyeon-nam and Jang-Mi see Yun-ju throw the dog off the roof. tt0269743,TYiEofdhOgQ,Eun-Sil Bae and Yun-ju argue over the distance to the store. tt0269743,bHoe-hfh9WE,"Janitor tells the story of ""Boiler Kim"", a man who was accidentally killed and was buried between walls in the boiler room." tt0269743,9Wy6ekMz_Yk,Yun-ju finally kidnaps the right dog from Granny. tt0269743,08zyIFMP-LE,Yun-ju realizes that he kidnapped and killed the wrong dog. tt0269743,Zp6CvBIvqZo,"Constantly annoyed by the barking dog in his building, Yun-ju takes matters into his own hands." tt3202890,UCac6K5YWns,Steven tries to save Shannon before Benjamin can kill her. tt3202890,vgEq476aHxk,Steven and his family are chased by Benjamin through the Puerto Rican countryside. tt3202890,jA83iWbczFc,"Just when the family thinks they are safe, Benjamin comes back to get his revenge." tt3202890,K2LCoTSVORY,Benjamin confronts Angie about his cut of the profits. tt3202890,jKIG_-544gY,"As the car hangs off the cliff, Steven races against time to save Shannon and Nina." tt3202890,wx-HWqbwssg,"Benjamin demands more money from Steven, and threatens Shannon's life in the process." tt3202890,ODeWs0Eu8n0,Steven and Shannon go searching for Nina after they discover she's gone missing. tt3202890,FmYGC2QdXd4,The detective informs Shannon that she and her husband have been scammed in a process called reclaiming. tt3202890,f1mbRj3ejAk,Steven and Shannon are kidnapped by Benjamin and his associates. tt3202890,3yVGaKmJrUY,Steven runs into Benjamin and his friends at the bar. tt0928375,Exw1_k7Hj6o,"While the Bog Body is distracted, David takes the moment to set the monster on fire." tt0928375,zjQSWtB7Kp4,"Mr. Hunter uses Hannah to bait the Bog Body, and everyone loses their heads." tt0928375,TgzbVMwrr7s,Deano confesses to Mr. Hunter a tragic story of secrets and death. tt0928375,DHk_bI_wMcY,Deano attempts to dislodge his car with disastrous consequences. tt0928375,ybDsC1DzIPk,"Mr. Hunter rescues Val from a mudhole, where an undying evil lays in wait." tt0928375,gm0I_zdgs8o,The Bog Body learns the dangers of hard liquor. tt0928375,F8vcszMAya4,The dinner conversation takes a dark turn to dead bodies and a heated debate about preserving the past. tt0928375,g1lpI9wZtiI,The Bog Body discovers the wild world of mooning and cars. tt0928375,X-VYaCvJwxY,Reilly strips and takes a shower but gets a nasty surprise. tt0928375,BB3VbfL6Xyg,The Bog Body runs into some hilarious troubles in the convenience store. tt0928375,xDe-990DWEw,"The Bog Body reforms on the edge of the swamp, taking a landscaper with him." tt2108605,07mbIgWikmQ,"Stephon, Davee, Shy make a terrifying discovery in a clearing." tt2108605,GrJGkWkkHZo,"Trying to find their way out of the forest, Stephon, Davee, and Shy suddenly find themselves running for their lives." tt2108605,e4EL5s__uC0,"Things go from bad to worse when Stephon, Davee, and Shy investigate the noises they hear in the night." tt2108605,s6QIbe248NI,"Stephon, Davee, and Shy, lost in the woods at night, encounter a violent redneck with a rifle." tt2108605,xEnYDuZSSy4,"Stephon, Davee, and Shy bumble in the woods with Travis." tt2108605,Rpr0n3A3_BU,Stephon gets to meet Bigfoot the hard way. tt2108605,w8mpECLURqk,Stephon rides out to meet a potentially dangerous hillbilly who claims that his dog was ripped in half by Bigfoot. tt2108605,BF6tMv04X9M,Travis tells his horrifying Bigfoot story to the interviewers. tt2108605,J_hkf20P6FM,"An creepy introduction to Siskiyou County, California, home of the most Bigfoot sightings in the world." tt2108605,1RsuQNxE43A,Stephon interviews the folks of Siskiyou County about whether they think Bigfoot is out there in the woods. tt1876261,or6rCLpiS10,"When a construction worker throws a cigarette in the forest, Bigfoot gets angry and goes on a rampage, killing everything in his path." tt1876261,Q2gFrTuZhFM,"When Bigfoot takes out a group of their hunting friends, Al and Harley attack back with explosives." tt1876261,ms_ERfOYnqI,Bigfoot chases down and kills Sheriff Walt. tt1876261,DoVnHRhvtKI,"The National Guard mistakes Al as a threat and shoots him dead. Then, a curious Bigfoot picks up Priya and breaks her back." tt1876261,_2vMtzWb6q0,"Harley and Simon attempt to subdue BIgfoot and end his attack, but he proves to be too strong." tt1876261,Mh51HEise7Q,"Harley and Simon try to capture or kill Bigfoot. The National Guard shoots the monster with a tank, lighting him on fire and forcing him back into the forest." tt1876261,_6RI-8Ia4do,"A team of rafters attempt to take a video of Bigfoot, but he destroys them all." tt1876261,961QhyKlg34,"Bigfoot attacks during an Alice Cooper concert, terrorizing and killing everything in his way." tt1876261,ROlSjAgE93Q,Sueanne cannot contain her excitement when she discovers one of Bigfoot's prints. He soon arrives to squash her like a bug. tt1876261,ZSQBKh64SJA,"Harley and Simon fight over Bigfoot at the top of Mt. Rushmore. As their lives hang in the balance, the National Gaurd shoots them down, killing all three." tt2457138,AYy3qj5Y84I,A platoon of soldiers is devoured by a pack of rabid werewolves during a full frontal assault. tt2457138,DvMB2pgYRMM,"In order to stop the spread of the Lupine virus, the President orders a bomb to be dropped on New York City. Despite being caught in the explosion, Hoffman and Ellen survive with the true cure." tt2457138,b3IInexeGWE,"A werewolf attacks Hoffman's plane, causing an abrupt crash landing." tt2457138,KKDCqTCoLQ4,"When they are attacked, Donna shoots a grenade into the mouth of a werewolf, causing it to explode." tt2457138,su9foi8t6NI,"Donna goes on a rampage after being revived, but Hoffman is able to calm the beast inside her." tt2457138,iDTYtgkzpZo,"When Captain Falcons finds Donna, she transforms into a werewolf and runs away." tt2457138,gm5nPntwGQA,"After Hoffman kills Captain Falcons with a grenade, General Monning is attacked by a werewolf." tt2457138,OTAO1MRbmNY,"Captain Falcons sends a werewolf after Hoffman, forcing him to kill or be killed." tt2457138,_6IlaKlrXbs,"After Hammond kills one of his men, General Monning uses him to test his idea for a new military weapon." tt2457138,cRc7p5HzKIQ,Donna's virus transforms her into a werewolf and spreads throughout JFK Airport. tt1956620,8ITOvb7Des0,"Howard blackmails Jay for $25,000." tt1956620,AHjOZLikqoM,Jay jumps off a balcony to prevent his sex tape from playing at Clive's school event and Howard gives the hard drive back so he can hang out with Clive. tt1956620,aRPInpAD3_o,Robby and Tess show up at Hank's door asking for used iPads while Jay runs from the dog. tt1956620,R1GZ5ajb_xc,Annie and Hank bond over a few lines of cocaine and Jay struggles to escape the attack dog. tt1956620,IvgFrEk1JqA,"While Jay runs from the house attack dog, Annie gets to know her boss a little." tt1956620,R2DhcfXooy8,Annie and Jay show up at Hank's house and pretend to be out collecting charity so Jay can search the house for the iPad. tt1956620,JyAbZxxgLw8,"Annie and Jay are happy and relaxed while hosting a party, but panic sets in for Jay when he realizes their sex tape is on the iPads he gave away." tt1956620,Xc3bqi1G5xk,Annie freaks out when she learns that Jay accidentally shared their sex tape with several other devices. tt1956620,LszhBmIWjeE,Annie and Jay visit their friends to see if they've seen the video. tt1956620,lxlwKE2-3fg,Annie and Jay have trouble getting started with their sexy date night. tt2166934,wC4MzUvxVa0,"After their awkward kiss, Mike leaves Clarissa a bumbling voicemail." tt2166934,cwOh20xN82E,Mike shares what he has learned and performs a song for his friends. tt2166934,r1NUy3Rq8n4,Mike gets into a fight with a guy at the club. Marty and Paul step in to help. tt2166934,4YuwbC-9aDI,Marty trying to connect with his wife Lianne crashes her ladies' day. tt2166934,HVlrXQ3qWqo,"Mike tries to show Marty and Paul how to be spontaneous, but it doesn't go over well." tt2166934,NqmZSSpvghU,Mike and Clarissa try to teach Paul and Marty how to cuddle. tt2166934,Yfqg-PxRCD8,"Mike tries to teach Marty and Paul the 3 L's: look, listen and learn." tt2166934,lUglQukweZY,Mike plays hockey with his friends Marty and Paul while giving the whole team relationship advice. tt2166934,zjdTL3Z77G8,"Mike takes Marty and Paul out to the club, but they are a little out of place." tt2166934,iKscMa0XRXo,"Feeling guilty, Mike tries to help Marty and Paul by giving them marriage advice." tt2166934,dfofju459FA,Mike gives Marty and Paul emotional movies to watch with their wives so that they can connect with them. tt3203890,S98AgHKyX8o,Alejandro takes Rachel out for a night on the town with his mariachi band. tt3203890,Yn_W5-xgf28,"After sleeping together, Rachel discovers that Alejandro had been lying and manipulating her." tt3203890,hY0SFHtFq9w,"Alejandro, realizing he loves her, rushes to the airport to stop Rachel from going to London." tt3203890,H0-STiAQTqQ,"Rachel makes a sacrifice to get Alejandro's possessions back, but he's still keeping a major secret from her." tt3203890,1WlF1nxQKgw,"Worried about her father, Alejandro, and his financial woes, Maria offers an adorable solution." tt3203890,p7CweK_hS90,Rachel begins to hint her feelings for Alejandro. tt3203890,hV6I03_cIks,"Alejandro warms Rachel's heart when he plays a song he wrong for his daughter, Maria." tt3203890,3BIyw7X0j74,"Rachel meets Margarito, who opens her eyes to various parts of her life." tt3203890,7LmO5fAuT8U,"Finding Rachel sleeping at a bus stop, Alejandro attempts to get her home, but it may not be that easy." tt3203890,OSeQk_f4hSY,"Recognizing Rachel from the U.S. Embassy, Alejandro sings his heart out to impress her, but she seems more interested in partying." tt3203890,nSCUWDt53fw,"Alejandro attempts to obtain a visa to the U.S. through Rachel, but she's a brick wall." tt3203890,tbMeRyWgdW4,"When Rachel can't find her laptop, Alejandro cooks up a scheme to convince her to give him a visa." tt2378281,H3jNVPIi5YQ,"When Maggie's biological mother, Julie, tries to take her away from Valentin, her father, they make a fateful decision." tt2378281,0_s8rbNokS4,"Julie's fallen in love with Maggie. So much so, that she'd like to introduce her to her life-partner, Renee." tt2378281,KarwL_yYLcY,"Valentin attempts to get information from movie director Frank, but disaster strikes when baby Maggie gets fascinated by the pool several stories down." tt2378281,5Ka1bqIBXH0,"Frank and Maggie help Valentin prepare for his stuntman work, but that might not be enough." tt2378281,naPW3XAHz0g,"For the first time in her entire life, Maggie meets her mother, Julie." tt2378281,pjHBTYOeSxE,"Maggie reads a whimsical letter from her ""mother.""" tt2378281,Yz6pNUcMwzo,"Valentin ""bonds"" with baby Maggie on the way to the U.S. border. Lupe, a truck driver, offers his services." tt2378281,qfKQJyqMnvw,"Maggie finally gets her perfect day with Valentin and her mother, Julie." tt2378281,hKH27VchVb4,"Julie, a one-night stand, arrives at Valentin's door with a surprise: he's a father." tt2378281,1NnwUUf3RMg,"Johnny tries to teach his son Valentin how to conquer his fears, but Valentin never outgrew his fear of commitment." tt1278449,nLpJ76VuXsA,"After fleeing the city, the anarchists are forced to make a living the only way they know how." tt1278449,6eV48Ir-RYc,"Atop the city power lines, the anarchists decide to comply with Amadeus and play his music." tt1278449,9_GelFK6rdw,The anarchists play Amadeus's music and the whole city experiences the piece. tt1278449,tpnUv93AAp4,"Fed up with all the music he's been forced to listen to, Amadeus demands silence." tt1278449,Y2NT0jeoBXk,"For their third movement, the anarchists use construction equipment at an opera house." tt1278449,fkQHKvo7ZAw,The anarchists use a patient and an operating room to perform their first movement. tt1278449,_pe3ht3F0A4,Amadeus realizes who exactly has been commiting the unusal crimes. tt1278449,blGRLfNok3E,The drummers have a competition to see who is the best. tt1278449,qS1MeoM8iA0,The anarchists play thier second movement at a bank. tt1278449,2iMVLR9jP1E,"While a police officer turns down the music, anarchists make some of their own." tt2382396,fDSyuyOtPRU,Joe arrives on the scene to rescue Dorothy and punish Willie-Russell. tt2382396,m3CMdoMIX2k,Joe comes across Gary's unappreciative father. tt2382396,XIhDPwuwQdc,A bruised Gary goes to Joe's looking to get revenge on his father. tt2382396,Q-X3-JDIQLM,Wade talks to a homeless man by the river before attacking him. tt2382396,3Ks6tKs541g,Joe talks to Connie about survival and the struggle of everyday life. tt2382396,ZJ1UwZPZN6A,Gary gets into confrontation with a strange man on the bridge. tt2382396,QRWluPmgyow,"Joe and his men are joined by Gary, who asks for a job." tt2382396,n6mWh_43Azs,"While Joe heads to the store, he's attacked by an enemy." tt2382396,uJDmoisR-28,Gary is forthright with his father about his disappointment in him. tt2382396,6ya4pGA6zPk,Gary learns a little lesson about break dancing from his father before they head to town. tt0107302,RybQmyBoWEQ,Early taunts Brian to shoot and kill a wounded police officer. tt0107302,egB-SG97EcI,"Early has a brief conversation with Walter, a convenient store clerk, just before he kills him." tt0107302,_pin0H9Udho,"Having survived the road trip to California, Carrie has good news that an art gallery wants to showcase her photos." tt0107302,1c5xWXSWSgo,Brian returns for Carrie and attacks Early with a shovel. tt0107302,J329mOtIQ_Q,Carrie and Brian investigate a slaughterhouse/torture room for their book on serial killers. tt0107302,YWJMmQUGP00,Early and Brian share their opinions on the Black Dahlia Killer. tt0107302,OqzgxMFTQfU,Early teaches Brian how to shoot a gun. tt0107302,UxHXWhEq5lo,Early mugs and kills a guy in a bathroom while Adele tells Carrie that Early beats her. tt0107302,yFSvuz5aHy8,Adele says that Early has accrued several lifetimes of bad luck by breaking mirrors and Carrie defines karma. tt0107302,x_BYzj4jQEM,"Separated by education level and upbringing, the two couples share an awkward first meeting." tt3093522,4cyZctbdFik,Iachimo convinces Posthumus that he has slept with Imogen. tt3093522,mmdPZs0Nvvg,"Imogen awakes in a ditch to find that she is not dead as she had hoped, and that she has been buried alongside Cloten's headless body." tt3093522,s6n8HGwboO4,"Posthumus discovers that Imogen is still alive, but that is not the only thing to be revealed ti tg Cymbeline." tt3093522,TAK8DeL_w00,Iachimo makes a wager with Posthumus that he can corrupt the chastity of Imogen. tt3093522,kZCgrTDVRbI,"Iachimo attempts to deceive Imogen into believing Posthumus has been unfaithful, in order to make his own advances." tt3093522,GYh7IHTeLus,"Iachimo admits his deception, leading Posthumus to accept blame for Imogen's death." tt3093522,99IsS-uXJzQ,Cymbeline tortures Pisanio to try to discover where Imogen has disappeared to. tt3093522,GylxYHpdxVQ,"An encounter on a mountain road leads Guiderius to behead Cloten. Meanwhile, Imogen's state worsens and she decides to take Pisanio's poison." tt3093522,5QFZ_Kh7vP0,Iachimo takes compromising photos of Imogen in order to win a bet and prove he has slept with her. tt3093522,g_wEMoy_wi0,"Though he has been ordered to kill her due to suspicions of adultery, Pisanio helps Imogen forge a plan to run away and disguise herself as a man." tt1396523,uzeSNmjxyNg,Sonny watches in horror as Chen executes Steven. tt1396523,FmEHRr23Hro,"Steven freaks out in a Chinese restaurant, making a big mistake." tt1396523,Sq7RMukT_sY,Paul comes to the barbershop with a unique proposition. tt1396523,U4fnEAu1--0,"Tina is forced to identity killers in court, which angers many of the Green Dragons." tt1396523,nGx3WY944DU,"The Green Dragons attack a family who killed one of their own, and things get even more violent than expected." tt1396523,wyifbBO6sAY,Sonny romances Tina while Steven makes a major play. tt1396523,sk0mjld_eow,Sonny and Chen help Steven get revenge on the White Tigers. tt1396523,Ubb88WMrdmo,"Sonny tries to put the moves on Tina, but things take a dive for the worse." tt1396523,4wv_1umbZ-w,Steven asserts himself to his mother and brother Sonny as a member of the Green Dragons. tt1396523,kHQq6ri9MDI,The Green Dragons send Steven on a hit against their enemies. tt1663207,vJ6XJtlqqZo,Mickey tells the gang of her impending divorce with Frank and together they hatch a new plan. tt1663207,n6H7zga2Ks0,Mickey and Frank talk about their upcoming divorce. tt1663207,SOR9UOc-alI,Mickey confronts Frank about the kidnapping. tt1663207,CFOC-_DYKXk,Mickey and Louis discuss the details of the kidnapping. tt1663207,MGRJhDyY9ls,Mickey decides to take action when she realizes someone is looking at her through a peep hole. tt1663207,rZs0ZkhzpsI,Louis tells Mickey all the things her husband has kept secret. tt1663207,THuOIvlbIjM,Richard tries to force himself on Mickey before she leaves. tt1663207,WeSHSxMfC0A,Ordell and Louis run into a little trouble while trying to kidnap Mickey. tt1663207,07GcBnddoMU,"While trying to kidnap Mickey, Ordell and Louis have an unexpected guest." tt1663207,RIInmRkYOXc,Louis and Ordell call Frank and demand a ransom for his wife. tt1663207,cMFosgxgPAs,Ordell helps Louis get payback on a two-bit thug who robbed him. tt1972571,u5hpQ0KeRgY,Annabel manipulates Issa into donating his father's money to Dr. Abdullah so Gnther can track where it goes. tt1972571,J6osFXTp7WQ,"After being betrayed, Gnther leaves the scene utterly defeated." tt1972571,B0nhCPv8VB8,Gnther chases after Issa Karpov and Annabel Richter. tt1972571,kqBMHRX-c-4,Gnther gives a report on his progress. tt1972571,oG-MKxVWwi4,Gnther threatens Tommy Brue into helping him find out Karpov's true intentions. tt1972571,vZ3nHOtlQiU,"Gnther's operation goes according to plan, but the other agencies get in the way." tt1972571,M9FAInQwCm0,"After capturing Annabel Richter, Gnther Bachmann questions her about her involvement with Issa Karpov." tt1972571,ilXtCX0-CkE,"Annabel Richter, an immigration lawyer, questions Issa Karpov on the authenticity of his situation." tt1972571,XvOKgNVwLes,Gnther and Martha discuss what Bachmann's plan is with Karpov and Abdullah. tt1972571,AoPqvTGZv6g,"Martha and Gnther talk about what they know of Dr. Abdullah, a potential terrorist." tt1754656,vOfFVhSiwiA,Paul faces off with Omar for the life of his daughter. tt1754656,6nZJPF_VgIQ,"Paul confronts Omar, who has Beth captive, but first he's got to deal with Mark." tt1754656,Hj12WETYG0U,Paul and Sam are powerless to protect Beth from Mark tt1754656,yLJ5hUWH0yE,Paul races to save himself and Angela from assassins on the highway. tt1754656,pizMaFdtY-s,"Paul confronts The Pharmacy, who won't let Beth go." tt1754656,IfNo8NJyy8U,"Paul flashbacks to a tragic moment with his family, but Angela has other plans for him." tt1754656,s_cz5JFWpzE,"Omar and Mark pay a visit to an agitator and devise a plan for dealing with a mysterious assassin known as ""The Prince.""" tt1754656,AUPdPriOg6I,Paul stops by the gun store to pick up a few things that used to belong to him. tt1754656,Z4G5St8apOQ,"While Paul looks for his daughter, Angela puts the moves on him." tt1754656,GLeGjBbLSJI,"When Paul can't get the information he needs to find his daughter, he gets it the hard way." tt1614989,Vh4rJorGhHQ,Roger sets up Clas at Ove's cabin. tt1614989,xHTAYPp_gzs,Diana tells Roger how sorry she is for cheating on him. tt1614989,C3ajmVuQPk8,Roger tells Diana what's truly made him affraid. tt1614989,7-juqE5ASnc,"On his way to work, Roger finds Ove's body inside his car." tt1614989,iiYX4JT6C_w,"While Roger is detained in a police car, Clas finds him and sends the car over a cliff." tt1614989,7UQFQ-FyV98,Roger interogates Lotte about her involvement with Cas. tt1614989,Xr3vKjP1PUg,Roger is forced to hide in the outhouse once he realizes Clas has found his location. tt1614989,8-S0Drs1N9Q,Roger attempts to take care of a poisoned Ove. tt1614989,dFuy0W8-Wj4,"While stealing a work of art in Clas's home, Roger learns that his wife may be cheating on him." tt0479162,RMdS3Hi-rMA,"After appearing on the news, Les is picked up by Jonas and Ted Exiler, two representatives from the drug company." tt0479162,DE6io8Y3FQQ,"After being severly beat up and realizing that the drugs are making him go crazy, Les goes to Maggie for help." tt0479162,R8UDjs0FAdI,"Les brings his friends Joey and Everett to meet Dr. Dobson, the man who gave him the experimental drugs." tt0479162,OrHgSvrG8Z4,"After Les makes Ted and Jonas ""disappear"", the now-invisible pair beat him up." tt0479162,nBGdf1uWu5A,Les is confronted again by the drug company representatives Ted and Jonas. tt0479162,hHRWVczf8d8,"Believing he has super powers, Les offers to help the local police." tt0479162,Vq5QdeqLYOw,"After going crazy while on an experimental drug, Les confronts Dr. Dobson over his refusal to help." tt0479162,wdwd_fCVhFM,Les visits Dr. Dobson after getting strange side effects from a new experimental drug. tt0479162,MUvtyyo1vdc,"Les is chased by Ted Exiler, a man he thinks is trying to take his powers away." tt0479162,8tnIy3PuDiY,Les uses his new powers to stop a man from robbing a grocery store. tt1056026,44zsdC87LJs,Captain Nemo loses the battle and the Nautilus explodes. tt1056026,XhWl0YaZKfY,Lt. Arronax and his team rescue the USS Scotia and LCDR Conciel reveals stolen blueprints tt1056026,EPFnZSvRq6s,The Aquanaut 3 survives Captain Nemo's robot squid attack and Lt. Arronax tries to find LCDR Conciel. tt1056026,L7rGRnu-2UE,Captain Nemo does his best to convince Lt. Arronax and his crew to give over the oxygenator and help build an underwater utopia. tt1056026,mRXz6hTAW88,"While the Nautilus crew fights an underwater battle, Captain Nemo reveals his plans for creating a new civilization and wiping out the old one." tt1056026,t8_p_4sqv4k,"When Lt. Arronax refuses to help Captain Nemo with the oxygenator, LCDR Conciel offers to save his life and go in his place." tt1056026,7Tx0kjtoAks,The team tries to figure out where they are and how they got there when Captain Nemo introduces himself and his ship. tt1056026,1LwSe_JnByw,Lt. Arronax is called upon to recover the missing USS Scotia. tt1056026,6rNaFgA6YlY,The crew is attacked by a sea monster and must negotiate with Captain Nemo in order to receive help. tt1056026,dfALZ10xUyA,"LCDR Conciel and her team lose power, and oxygen, on their submarine." tt1136683,vdwWjsJLaJQ,Erik leads the dinosaur to the tunnel and Frank sends it back through time with the rainbow device. tt1136683,gtmmKXgSUwo,"Erik and his team try to lead the dinosaur to the tunnel, but it doesn't work." tt1136683,nDrjVVyUjZo,"After embarking on the dangerous journey home, Jones gets swooped up by a pterodactyl and Erik protects the remaining soldiers from another attack." tt1136683,fN0w62AurJA,"After locating the dinosaur, Ruth and her fellow soldiers come up with a plan to trap it." tt1136683,B1uklxoaP24,"The soldiers return from the past successfully, but a dinosaur accidentally makes its way through the wormhole with them." tt1136683,aViOusNEtoU,Frank insists that he stay behind to close the wormhole after everyone else goes through it. tt1136683,6GEll0BI7ko,"Lt. Peet and his troop face the many perils of the prehistoric jungle, including water dinosaurs and poisonous flowers." tt1136683,0I8xeAEpb8E,CPO Lopes orders his troops to leave him behind to die and everyone else makes a narrow escape into a cave just out of reach of the dinosaur. tt1136683,sSLdFuRVlmc,Everyone scatters as dinosaurs pick off the troop one by one. CPO Lopes is severely wounded when three strangers come to his defense. tt1136683,wWpNqaKrq8o,Frank joins the soldiers through the wormhole to conduct a search and rescue mission millions of years in the past. tt1617661,3SVCkLf0NiM,"Kalique tries to convince Jupiter to claim her title at any cost, but Caine doesn't trust her." tt1617661,FE42Xc_laYU,Jupiter meets Balem. tt1617661,FeaVbBKg8tw,Jupiter refuses to abdicate her rights to Earth and Caine comes to save her from Balem. tt1617661,IQuxKuLkByg,Jupiter and Caine kiss and then fly off together. tt1617661,8SvHSEy3xCs,Jupiter discovers too late that her operation is being conducted by aliens and Caine rescues her. tt1617661,I2s3FG8KpKc,Caine survives Titus throwing him into outer space. tt1617661,BZTDkSXwBD4,Balem tries to kill Jupiter like he killed his mother. Then Caine saves Jupiter from falling. tt2223990,kKBsDfBDmG0,"Coach Penn sends Sonny a message by burning the draft analysis. Sonny's mom, Barb, calls Sonny to tell him about Vontae Mack's tweet." tt1617661,LDmKhGcB0Xs,"Alien groups come to kidnap Jupiter and when Razo's team succeeds, Caine manages to hitch a ride on their spaceship." tt1617661,LdRoFo6JuNs,Caine stops Jupiter from marrying Titus. tt1617661,L589GA-KKq4,Caine saves Jupiter from the aliens chasing her. tt2223990,M1hXX6aq1wA,Sonny and Ali celebrate after a huge Draft Day for the Browns. tt2223990,qjqJtri_EG4,Sonny surprises Tom Michaels by telling him that he has the sixth pick instead of the Jaguars. tt2223990,4kRRDuR7OBM,Sonny Weaver Jr. convinces Jeff Carson of the Jaguars to give them the sixth pick. tt2223990,S989EXPoZKs,Sonny and his team go over the footage from the Ohio vs. Wisconsin game and compare players Bo Callahan and Vontae Mack. tt2223990,QT1Tl6npLic,Sonny negotiates Tom Michaels for his first round picks back. tt2223990,COSkA00zJlo,Brian argues with Sonny regarding the possible draft of Bo Callahan. tt2223990,8CcVO0mQ1go,The Cleveland Browns have the first pick of the 2014 NFL Draft and Sonny makes a surprise choice. tt2223990,lnfpTgAQ0Ys,Barb comes to the field to pay her respects to her late husband. Ali asks Sonny why he hated his father. tt2223990,3UbNdsZot98,"Sonny tells his coaching staff about the trade with the Seahawks, but Coach Vince is not too thrilled." tt1621046,mKrFcdRLGQI,"After a five year strike, Cesar and the growers finally reach an agreement." tt1621046,8_oVkRFKukY,Cesar Chavez tells his brother why he is doing the fast. tt1621046,iMaL4la2Q78,Cesar goes to Great Britian to gather support for the cause. tt1621046,2cg4S8JO_hQ,"After Nixon becomes president, brutality against the cause increases." tt1621046,tNheq6EGWuU,"Due to the success of the boycott, the growers start to consider negotiating with the strikers." tt1621046,isY1TQ26Gnc,"When the Senate conducted hearings in Delano, Senator Robert Kennedy gets involved and shows his support." tt1621046,w01G5wVBQKs,"Due to the outbreak of violence, Cesar Chavez starts a fast that will only stop when everyone in the movement makes a pledge of nonviolence." tt1621046,JnlOLl7Ew8I,When things get violent Cesar makes his stance towards violence very clear. tt1621046,APxaNrWnSq0,Dolores convinces Cesar to take the next step - to start boycotting. tt1621046,2MFlcONJD-A,Helen Chavez offers herself to be arrested to support the cause. tt1621046,YACsFmbB9Ok,"While striking, Cesar Chavez and the strikers get sprayed with pesticide." tt1621046,NbSduHWUQDc,"When Cesar Chavez creates a credit union, the local law enforcement get involved." tt2103264,wzkoiXWdFzw,General Douglas MacArthur speaks with the Emperor about the future of Japan. tt2103264,y-m4KWfeyvs,General Fellers presents his report to General MacArthur. tt2103264,bmYXbieirM4,General Fellers and General MacArthur finally meet the Emperor. tt2103264,t8VC4GBHwds,General Kajima tells General Fellers what complete devotion means to the Japanese people. tt2103264,jBt5rfpIjws,General Fellers tries to figure out the mystery of Japan's power hierarchy. tt2103264,VP5nSFxqyxo,General Fellers asks General MacArthur for a new way to interview Teizaburo Sekiya. tt2103264,aKidFnGJDYA,General Fellers remembers an old discussion he had with General Kajima while dealing with the stress of his responsibility. tt2103264,FkjBXGnq8Jk,General MacArthur tells General Fellers that they have ten days to investigate the emperor's role in the war. tt2103264,x_Gr6RT8Aho,General Fellers recalls the bombing of Toyko and ponders the fate of Japan. tt2103264,5S8moDSqK0U,"General Fellers tells his men that they have a new mission, to investigate the emperor for war crimes." tt2103264,Kzw5aWCSZs8,General Fellers and Konoe discuss the emperor's role in the war. tt1811307,x5ajdqqytyA,Daniel and Matthew face some complications in their budding romance. tt1811307,bNiztacMAJ0,"All Daniel has to do is ""confess"" to his father, Admiral Lynch, that he was forced into homosexuality and that it was an isolated incident, but that's not how he feels." tt1811307,zElzcOQWLLo,John and Special Agent Jones interrogate Daniel and William over alleged homosexuality. tt1811307,w5mtX7FnO3M,Daniel and Matthew give into their feelings for each other. tt1811307,2EojVDDg3xM,"At his lover's funeral, Daniel comes out to his compatriots, only to be left alone in his grief." tt1811307,e1FWoMLjAU0,"Daniel and Matthew's relationship hits snags, stemming from each other and from a military investigation." tt1811307,jsUGvhq2MLM,Alcohol reveals Daniel and Matthew's feelings for each other at William's birthday party. tt1811307,4V9xYmVeNL4,Daniel and Matthew begin their flirtation. tt1811307,lP-A8UaVbLE,"Daniel makes the mistake of letting Charlie fly after a night of wreckless abandon, and the aircraft carrier pays the price." tt1811307,xkjfSZtHBXc,"On shoreleave, Daniel and Matthew have a fateful encouter in the club, and in their hotel room." tt2106476,Ll-Ff-PIPOQ,Lucas is disappointed when his girlfriend has doubts about his innocence. tt2106476,8o1QfQXKstU,Lucas takes his son on his first hunt and learns that the damage to his reputation will never leave him completely. tt2106476,lhzE7_0RSow,"At work one day, Lucas is accused of inappropriate sexual conduct with a child." tt2106476,vWNDTaQG9jE,"Lucas tries to get an explanation from his boss for the abuse accusation, but he is encouraged to leave the kindergarten." tt2106476,wdLfTMSAErQ,"Klara admits to her mother that Lucas didn't do anything wrong, but her mother believes she is in denial." tt2106476,lh8UIXq5ELc,"Lucas tries to work things out with his best friend Theo, but Theo believes his daughter is telling the truth." tt2106476,ByN3jkG-PzQ,Lucas is beaten severely when he tries to shop at the store that told him to stay away. tt2106476,i7Y0sXYRwhg,"Marcus comes to Theo's house to have a talk with Klara, but he is thrown out." tt2106476,JEbShXn2-Vs,Lucas has a rock thrown through his window and then discovers that his dog has been killed. tt2106476,iUuWyMhkd9A,Lucas hits rock bottom when he attends church on Christmas and sees Klara sing with the other kindergarten kids. tt1713476,UbQlBLCvOk0,Alex gets violently sick while Stephanie can only watch helplessly as they wait for help to arrive. tt1713476,7InJqZBrCuw,Dr. Abrams starts receiving multiple patients with an unknown infection. tt1713476,zIWGx1aneus,The police get a call about a woman covered in blood. tt1713476,v1ef0grzZWM,Stephanie wanders around the dead town while an officer of the CDC is advised to keep the whole incident quiet. tt1713476,w2z6YPTKVsA,Dr. Abrams makes a tape showing the hospital full of corpses and explains what he believes happened to the town tt1713476,O4fYclm_0As,The Mayor and a police officer go in search of two other officers who failed to make any contact after investigating a shooting. tt1713476,XztayplmOsE,"After encountering a dead body, Donna and her cameraman come across another." tt1713476,aELUig9qu3w,People start to get sick during a townwide 4th of July celebration. tt1713476,OdJlNbw8ru4,A police officer goes in search of his partner after hearing gunshot from inside a house. tt1713476,i3VHMIy8wHI,A teenage couple finds only horror when they go for a swim. tt1134854,L1hEpMsgttE,"Amidst an all-out zombie assault, the O'Flynns and the Muldoons stop fighting and attempt to destroy their mutual, undead enemy." tt1134854,VJgFWMPoK1M,The Muldoon clan does its best to deal with the local zombie population. tt1134854,m_udTXudsnM,Francisco asks Tomboy to shoot him before he can turn into a dead head. tt1134854,eiKrNt30jS4,Sgt. Crocket's group and the O'Flynn clan battle against the forces of the undead as they try and escape the dock. tt1134854,772oaU4DFTI,"After stumbling on to how the Mulroon clan is dealing with the zombie infestation, a firefight breaks out between families." tt1134854,sfqjgFBIBFQ,"A Fisherman pulls up a big catch, but the situation soon gets away from him." tt1134854,d82uV320Fzw,Francisco gets creative with his zombie disposal. tt1134854,JqwzeAkRcJA,"Matthew and his wife Sally try to defend their home from the O'Flynn clan, who are intent on exterminating all zombie life on their small island." tt1134854,Bl6M9MfRbcU,Sgt. Crocket and his fellow national guardsmen stumble onto an armored vehicle and a group of 'good ol' boys' with way too much time on their hands. tt1075746,gmJtNjLjsNQ,Renchard detonates the bombs and he and Brianna escape. tt1075746,I30x5dMvcA8,"Renchard thinks Brianna left him to fight off a horde of zombies alone, but she comes back to save him." tt1134854,h6usdPpiqho,Sgt Crocket lays down the law after a fellow serviceman endangers the lives of his fellow men. tt1075746,j-TPDJFWErg,"In order to save Brianna, Renchard must fight Vincent in a battle to the death." tt1075746,wmbN_BXQaho,"After planning an escape for Brianna and fighting off zombies, Renchard and the guys set off on their trip." tt1075746,Mge3npvF4R0,Brianna saves Renchard when his gun gets taken by a zombie. tt1075746,IORWBsyIivo,Vincent meets up with the group and reveals that his true intentions are to ensure this new zombie society stays as it is. tt1075746,4aKmbFnV-mI,Renchard makes contact with someone for the first time in a long time and he doesn't take it very well. tt1075746,1AhrD2-cvrw,Renchard is approached by two unsavory men that coerce him into helping them locate and retrieve Brianna. tt1075746,CGwzaIS-tLk,"When his alarms go off, Renchard checks his property for zombies." tt1075746,KxcKAGtHl3A,Renchard has a nightmare about what happened to his wife and son. tt3233418,218nJYQ3oMI,The boys get off to a rocky start in the robotics competition. tt3233418,DKqFCG3UTEs,Oscar convinces Dr. Cameron to join the Underwater Robotics Competition. tt3233418,ynC2_22yuGA,"After Oscar's mother warns him not to come home, Dr. Cameron offers some words of encouragement at the beach." tt3233418,UyKyxHFIT3A,Dr. Cameron tries to inform Lorenzo's father that his son has been arrested. tt3233418,6ldKc6yXTyg,Dr. Cameron and the boys try to maintain their meager budget while shopping for all the parts they need to build their robot. tt3233418,S3-atF715Mg,"Lorenzo must track down his brother Ramiro, who plans to rob a convenience store." tt3233418,xLZDij_-ZRw,Dr. Cameron makes it a teachable moment when his students tell him to ask out Gwen. tt3233418,DHYCHYsyqTc,"As the robotics competition continues, things turn around for the boys of Carl Hayden." tt3233418,RHmp-rhCrLo,The team from Carl Hayden Community High School finds out that they are the first prize winners of the US Underwater Robotics Championship. tt3233418,HgQDAW28DsA,Gwen confronts Dr. Cameron about dropping out of the robotics competition. tt2725962,By05PXEvGWA,Gordie gives Lottie some wise advice right before he dies. tt2725962,QMmxxD7h5-Y,Doug and Gavin say a few words to commemorate their father. tt2725962,IPPeDiU4Vdo,Lottie interrupts the adults' bickering with some wisdom from granddad while Mickey tries to explain things to the press. tt2725962,Fr1A3ok_kfw,Lottie and her siblings say goodbye to their grandfather with a funeral ceremony fit for a viking. tt2725962,hAU8AQ6xlw8,The kids explain their viking funeral to the adults and panic ensues. tt2725962,u1Pgftn5H94,"While the adults prepare for a party Gordie never wanted, Lottie and the kids decide to give him the funeral he always dreamed of." tt2725962,GvDcscZXfl8,The kids antagonize uncle Gavin and the family sits through Kenneth's performance. tt2725962,4I9-0dipqo0,Gordie tells stories and plays with the kids at the beach. tt2725962,5xnSzPHjw10,Abi and Doug try to keep their composure as they pack their lively kids into the car for a vacation to Scotland. tt2725962,ItMY_4RobkM,The family plays soccer and spends quality time together. tt1531911,213l0Kv26uQ,The Tharks force John Carter to eat a bug that allows them to communicate. tt1531911,nPRUkMAdukE,The Tharks force John Carter to show off his incredible enhanced jumping skills. tt1531911,-E0UUIoS5xU,John Carter and Sarka face off in a high-flying sword fight. tt1531911,ncErLtJBlHw,"John Carter attempts to rescue Sarka from a gang of drug smugglers, but is instead betrayed and seemingly killed." tt1531911,SOa5HP_FHoQ,John Carter is reunited with Sarka and is inspired to hurl a rock to kill the evil leader of the Tharks. tt1531911,_jF3JZMHL30,"John Carter and Sarka reach a final showdown, which is abruptly ended by an attack from a giant alien bug." tt1531911,P2NiGznbIcI,John Carter and Tars Tarkas are forced to fight each other. tt1531911,ez6GguY40SQ,John Carter and Tars Tarkas shoot up a swarm of giant flying bugs to protect the Princess. tt1531911,a1DuE8E4DpM,John Carter and Tars Tarkas take out a hoard of giant spider monsters. tt1531911,1Dd5HFJn88E,"As John Carter watches on, Tars Tarkas and the Tharks attack an airship carrying the princess." tt2756412,q30Pl1M6_DE,Capt. Crowe rescues Lt. Baum and Lea and they all escape the planet together. tt2756412,kL8e9CEgm6A,Lt. Baum saves TIM from a dragon monster while Capt. Crowe tries to secure a way off the planet. tt2756412,bBjLUZgx4WA,"TIM reveals that the planet they landed on is indeed Earth...325,000 years in the future." tt2756412,V300Gtn8NVs,There are casualties on both sides when the natives and the survivors from the Albert Einstein fight together to defeat the chameleons. tt2756412,xME4tintsqs,"When another air strike approaches, Lt. Baum sends the group into the river to hide from the chameleons." tt2756412,Hsg_ZUoSlCs,Lt. Baum spares TIM's life and allows Lea to come with them back to Earth. tt2756412,WIBrEMlCGSM,A horde of monsters leads the group to a native named Lea. tt2756412,l081UdHizvg,The group seeks help from Lea's hostile biological family and they reluctantly agree. tt2756412,J38c6k11K3U,Capt. Crowe and Lt. Baum have crash-landed on a strange planet and must fight off mysterious new creatures. tt2756412,M0iif-dNJus,"Capt. Crowe decides to launch the ship and put everyone into cryofreeze, but Lt. Baum insists on finishing his mission on Earth." tt0391024,jra4awMyUr0,Hassan Ibrahim explains how Americans are perceived among Iraqi civilians. tt0391024,yYUtAKXuicA,Samir Khader explains that history is written by the victors. tt0391024,toiIOy7q4xg,An Iraqi woman questions the conscience of George W. Bush. tt0391024,mo2-63epZAM,Josh Rushing explains how gruesome images of war affect him. tt0391024,s_h-ZXgEtNo,"Samir Khader talks about the loss of Tarek Ayyoud, an al Jazeera correspondent." tt0391024,5yGKubkHrio,Deputy Director of Operations Vincent Brooks reveals the most-wanted Iraqi playing cards to the press. tt0391024,QoT8ZUDDmKs,"America wins, though Iraqis does not share that sentiment." tt0391024,FsIaDwn2EtQ,Josh Rushing describe his experiences with Al Jazeera. tt0391024,oS3Bld83J_o,Samir Khader expresses his views regarding American media. tt0391024,gc19hOdR99c,Hassan Ibrahim explains the media bias in the United States. tt2017020,lEykI65QtSQ,The Smurfs plan Smurfette's birthday party. tt2017020,xbhm9F1ST6I,"Gargamel returns home to his mischievous experiments, Hackus and Vexy." tt2017020,fQ09ePfYLpU,Narrator Smurf recounts the controversial story of how Smurfette was created by the evil wizard Gargamel. tt2017020,a8EeFNXk1TE,Victor saves the Smurfs from falling and turns back into a human. tt2017020,6Xn4tr2grtc,Smurfette and the Naughties have a high-flying stork race through Paris. tt2017020,KEwC94CY-Go,"Hackus causes a scene in a candy shop, forcing Smurfette to be naughty in order to help him." tt2017020,WJOMiXmwfYE,The Smurfs travel home to their village and celebrate Smurfette's birthday with their family. tt2017020,WEfMDGtX3K0,Patrick and Victor destroy Gargamel's machine and save the Smurfs from his evil clutches. tt2017020,hn3XR4o8M4c,Smurfette reluctantly gives Gargamel the formula to turn Vexy and Hackus into Smurfs. tt2017020,pdmo-_KXg0Y,Smurfette reunites with the Winslow family and sends Gargamel sailing away. tt0472181,K2hcF1oOHb8,The Smurfs prepare for the annual Blue Moon Festival in Smurf Village. tt0472181,CVxgFZixwlg,"When Gargamel attacks Smurf Village, Papa and the other Smurfs escape through a mysterious blue portal." tt0472181,5Ugqj1RATYE,Gargamel uses his magic to make Odile's mother much more attractive. tt0472181,WsffSfKc-mw,"Patrick and Grace discover the friendly, yet mischievous, Smurfs inside their apartment." tt0472181,fLswSc81mw8,Clumsy makes a mess in the bathroom. tt0472181,GJ0-xGnrjBU,"With help from Patrick and Grace, the Smurfs use the toys in a toy store to outsmart Gargamel." tt0472181,IvGwIRIYlBo,"Gargamel reveals his evil plan to Papa. Meanwhile, Patrick and the Smurfs prepare for a fight as Brainy turns the moon blue." tt0472181,WSYe57h6YUE,"The Smurfs discover their history and how to invoke the power of the blue moon. Then, Gargamel captures Papa while the others make a quick getaway." tt0472181,x7qvOFN1QZg,Clumsy saves the day and helps the Smurfs take down Gargamel. tt0472181,HMUbL4Vgb2E,The smurfs team up and begin their attack on Gargamel. tt1130088,xNzE5UoQmZw,Edward listens to a recording of Clarence when he learns that Clarence has passed away. tt1130088,-Dny2rWieIA,Edward dances around a grave in an attempt to summon a spirit. tt1130088,bugH1m4LteI,Clarence teaches Edward a few magic tricks on the rooftop. tt1130088,noAefY8KRoQ,Edward takes Clarence to the grave of his late ex-wife. tt1130088,kjo_zi4cLJo,Edward plays a recording in front of his parents of his dad flirting with another woman. tt1130088,Zagt2ld1pwE,Clarence has an emotional breakdown in front of Edward when he realizes his life is in shambles. tt1130088,9gEtABdjiiI,An accident occurs when Clarence performs his old magic show. tt1130088,VpBuUC1P2jo,Clarence wrecks his truck when he takes his eyes off of the road. tt1130088,S88bgODlrbk,Edward and Clarence attempt to summon a spirit in the basement. tt1130088,7SBBMiyv0kY,Edward visits Clarence in the hospital after his attempted suicide. tt2094064,g3vxfUb7Sr4,"Despite their initial protests, Benedick and Beatrice realize that they do love each other." tt2094064,6AWo-9MFBug,"Beatrice amd Benedick proclaim their love to each other, but she asks him for a difficult favor." tt2094064,U6PrB5bbWRM,Benedick and Beatrice continue their battle of wits. tt2094064,KJI1SIvGZEY,Claudio publicly exposes Hero at their wedding. tt2094064,z4cGnSZQni4,"While interrogating Conrade and Borachio, Dogberry gets called an unpleasant name." tt2094064,KlC81iup2Jo,Benedick proclaims his love for Beatrice. tt2094064,8ZkCvzJqCUY,"Don Pedro, Leonato and Claudio trick Benedick into believing that Beatrice loves him." tt2094064,C919Gt7Yd2g,Dogberry give the night watch their charge. tt2094064,yzTbstnZYro,Leonato throws a masquerade party. tt2094064,jH1hWH-WvLg,Benedick proudly proclaims to his friends that he will never marry. tt2081255,4D1OVjTF1E4,The Queen orders her soliders to kill all of the elves and bring her Snow White. tt2081255,VMteZw9UU-U,Prince Alexander escapes from prison with a band of prisoners to join the tiny army of elves in the war against the Queen. tt2081255,eiuVC_cdyIA,"A magical beast stops Beasley before he's able to kill Snow White, so he cuts out the heart of a fallen comrade and presents that to the Queen instead." tt2081255,GuMg7x6_8No,Prince Alexander saves Snow White from the magical beasts in the forest. tt2081255,cRgXwpwVe4U,"Snow White and the elves seek out Isabella's knowledge of the Queen's plans, but instead the disguised Queen uses magic to put Snow White into a deep sleep." tt2081255,agzK8ig7rR0,Prince Alexander gets captured by the Queen's guards before he can gather an army against her. tt2081255,wvknCnZ8HJ0,Snow White awakens from a deadly slumber when Prince Alexander arrives just in time to break the spell. tt2081255,EJOewEP6tKQ,"Prince Alexander finally makes it to the battle, but he doesn't fight long before he's run through by a sword." tt2081255,vMs9qHAQaZE,"The Queen coerces Prince Alexander into marriage, but before the wedding ceremony is finished, Snow White intervenes." tt2081255,SH-HSmrjmBw,The elves use their magic to heal Prince Alexander and they all live happily ever after. tt1833888,c1K32XLhn1M,"After Michael tries to cheer up his son, he gets consoled by his mother." tt1833888,IrU4ze3VfD8,Michael finds himself in a church where Nick sings Amazing Grace. tt1833888,p9kL3O1TuMQ,David tells his father that he thinks he's responsible for this grandfather's death. tt1833888,_q1BSBGTR2M,Michael and Nick discuss the house over a glass of lemonade. tt1833888,jWP3sgGz2F8,"Michael tells his son, David, why his uncle isn't around for Christmas." tt1833888,JOXYV6UN3S0,Michael and Nick discuss the importance of memories and family. tt1833888,8knM2DiWkUk,Michael is told that his father and son have been in a car accident. tt1833888,uPcTCWfQbzQ,The Walker family meets their new neighbors who give them an unexpected gift. tt1833888,pgDUFZ9TfPc,Michael has a change of heart and decides to embrace the Christmas spirit. tt1833888,kC1Q45BQbY4,Michael and David decide to embrace Christmas and turn on the their lights. tt1815862,6Nb7rSggCns,Kitai stares his fears in the face when he learns there is an Ursa onboard his ship. tt1815862,1Zwl6vfqjNQ,Despite his warnings Cypher and the rest of the ship are thrust into an asteroid storm. tt1815862,SV8jbzudYJ8,Cypher tells Kitai the story of how he overcame fear and defeated an Ursa. tt1815862,dDGMTl1Ya78,"Cypher, Kitai, and the crew suffer a disastrous crash." tt1815862,t-lIuwPGT9w,Kitai is attacked by a swarm of angry baboons. tt1815862,eMgfTq1Z2n8,"When Kitai is bitten by an infectious parasite, Cypher talks him through the process of curing himself." tt1815862,4KICpbB5YQY,"Kitai confronts Cypher about the loss of his sister. Then, he jumps over the edge of a cliff in an effort to prove himself." tt1815862,0vcXvLUt1E4,"Kitai uses the focus he learned from his father, Cypher, to defeat the Ursa and send out the beacon." tt1815862,Hxc048RM18U,"When Kitai wakes up in a bird's nest, he defends the baby chicks from some vicious jungle cats." tt1815862,8M1kdeDluRE,Kitai is tracked and attacked by an angry Ursa. tt0490181,FllAsMCrdJE,Duval and Severian fight off mutants in an attempt to give Mitch time to destroy the ancient machine. tt0490181,XfeN42X2UHk,Hunter explains his philosophy. tt0490181,PS2CC6WdNMk,"In the middle of a war, Rooker, Mitch and other soldiers are attacked by mutants." tt0490181,9QHYm5IVhHI,Hunter is transformed by The Machine. tt0490181,VCDY6MTuU6Y,Hunter and Rooker contemplate the effects of the war. tt0490181,SNXqtm-WAh0,"Samuel, Duval and the others attempt to save Steiner." tt0490181,-05NPfkubKo,Juba makes a heroic last stand against the mutants. tt0490181,JrPRGahKOoI,Mitch makes more room on a space ship. tt0490181,Vfos_yqayxw,"Mitch, Brother Samuel and the others prepare for a crash landing after their ship is attacked." tt0490181,z3t0ltbfMJ8,"Mitch, Duval and the others analyze a captured mutant." tt1865393,XFHh8V9eIaU,The Hellbound Saints kick some demon ass. tt1865393,gSpHZ8Kuh4o,"Father Lawrence has a showdown with Surtr, who's possessing Father Angus." tt1865393,ufhTl0M3rn4,Things heat up when Clint shuts down the Hellbound Saints. tt1865393,Y8ML1TO5-JY,"Just when the Hellbound Saints thought it couldn't get any worse, Father Angus drops an atom bomb on them." tt1865393,ehyYdjaZnoA,The Norse demon Surtr might be more than Elizabeth and Macon can handle. tt1865393,lxl55rsNihE,"With demons running amok and the bishop excommunicating them, the priests turn to the only solace they have left: beer. Father Angus, however, has different ideas." tt1865393,Z4nVqjAr_n8,Macon and Elizabeth run into some trouble during a routine exorcism. tt1865393,ABrBbozUYaI,"Father Angus isn't too pleased when he learns that Father Lawrence hasn't been sinning enough to remain morally compromised. Clint, however, is livid at the prospect of more sin." tt1865393,8oZJuop-N_g,The priests get high while Clint tries to clean up the Hellbound Saints. tt1865393,3YGQ4oen7gM,Father Angus and Father Lawrence tackle a demonically possessed Rabbi. tt1183733,wMAAK7i1ib0,"George awakes to find he is still alive, and is trapped inside the body of an alien." tt1183733,QjJO-cEmxWg,"Hoping to find his son, George gets himself vaporized by an alien one more time." tt1183733,p8zwrVyJHxw,"With no hope left, George gets himself vaporized by the aliens while Pete watches on in horror." tt1183733,bp4HJ3JRxag,"George finally finds Alex inside the body of an alien. Then, he injects the alien's brain with his infected blood." tt1183733,CKtSDzT-SOo,"George and Alex find Major Kramer, who helps them escape the planet." tt1183733,mkSxYpK4ALw,The military fights their way through a massive hoard of aliens and asteroids to breach the atmosphere of Mars. tt1183733,4Q0eWJZIev0,The military fights their way through thousands of alien ships. tt1183733,SBW3d6oYdkU,George and the other victims search for a way out of the body of an alien. tt1183733,S5fwxvrutg8,The military prepares their siege on the alien attackers. tt1183733,q5ZwRphkFuc,"George begins to lose all hope after his son Alex is vaporized by the aliens. At the last moment, he remembers that there may still be a chance for Alex's survival." tt0407304,Jq0iZ5okXgU,Pastor Victor and George discuss their differences in opinion over the meanings of faith and religion. tt0407304,IwOoajZyRZU,"Pastor Victor tries to console a desperate mother who has lost her entire family, but he is unable to bring her to the light." tt0407304,8Chr00fm6AM,"When all hope looks lost, the aliens die and George is reunited with his family." tt0407304,jk1IJ5ggyQs,"George gets some disconcerting news from a young mother. Then, the aliens blow up a bridge and send the civilians scattering." tt0407304,sG41m7hVl9E,"When Lt. Samuelson threatens George, Sgt. Kerry tries to stick up for him, which earns him a bullet through the head." tt0407304,kzh2pWa1lzk,"The aliens continue their brutal attack on earth, killing and vaporizing tons of innocent civilians." tt0407304,0Ij2veeSsE4,"After Pastor Victor denounces his faith, he is attacked by an alien and his face is melted off." tt0407304,MkiewChfW9k,"The aliens release a noxious gas that kills all in its path, forcing George and Pastor Victor to get to higher ground." tt0407304,90EupUjxPIM,George and his brother Matt share a tear filled goodbye. tt0407304,edjnSDwMFXQ,"George fails to help a young woman rescue her boyfriend. The aliens begin their destructive attack, killing all those in their path." tt1321870,5dlDHt93ng8,O'Mara issues a warrant for Cohen's arrest and he and the other officers storm Cohen's hotel. A shootout ensues. tt1321870,2onL0hkBVJc,"Cohen tries to make his escape from the hotel, but O'Mara is determined to stop him." tt1321870,FOeyhFQK19c,O'Mara takes on Cohen in a violent fistfight before arresting him for murder. tt1321870,01Im5dacdqE,Cohen orchestrates the murders of several cops. tt1321870,OjmXuqNMrDY,Jerry tries to stop O'Mara from walking into a trap step up by Cohen's men. tt1321870,qG0W2UhUKRc,"While the guys prepare their next heist, Jerry sends a message to Cohen's thugs and helps Grace get out of town safely." tt1321870,Rdl0ApAeczQ,"After a life-threatening car chase, O'Mara violently informs Cohen's henchmen that they are retired." tt1321870,q5_LSGwd19k,Jerry and Keeler sneak into Mickey's house to plant a bug. tt1321870,z3H-ozBnwQ4,"Jerry is distraught when Cohen's men accidentally shoot Pete, but Jack saves him from making a big mistake out of revenge." tt1321870,mEmmWa3xK8k,"O'Mara and his squad attempt a robbery at Cohen's casino, but the police end up chasing them away and arresting O'Mara and Harris." tt1595656,gyRxos8xOyM,Neil falls in love with a woman who tragically lost her daughter. tt1595656,wMa7Xd9GuUo,Neil invites Marina and her daughter to come and live with him in Oklahoma. tt1595656,R_qiBsGsQfI,"Father Quintana struggles to feel God's love, even as he ministers to others in need." tt1595656,O-Odu2P8X1M,Father Quintana prays that God will reveal himself so he doesn't have to pretend to feel. tt1595656,9isn7V7c2gg,"As Father Quintana prays to find God's love, Neil observes his charity and begs for Marina's forgiveness." tt1595656,0K-qOSq4vz0,"Marina and Neil experience the ""wonder"" of Mont St. Michel abbey in France as well as the budding of new love." tt1595656,mt6D8QQ-nIY,Anna advises Marina to leave her husband Neil and be free. tt1595656,D97vMpPHzDg,"Father Quintana gives a sermon on love, but Marina can feel her love for Neil dying." tt1595656,MviysUwcItA,"Even though their relationship has ended, Neil and Marina are grateful for the portion of love that they have found." tt1595656,Qw9ltquDJRs,"Neil learns that his wife has slept with another man, which hurts him deeply." tt1667889,RuZhnKanGQ4,Jimmy tries to nail a big move to win the surfing competition. tt1667889,h0aovIIojck,JB leaves town and says his goodbyes. tt1667889,-bYLI4I8vkI,"Jimmy lands on the front page of the local newspaper, bringing big business to the surf shop." tt1667889,54CMOjYbovs,Andy tries to enter the big surfing competition. tt1667889,ZQfZtwole3U,Gus commits suicide and the group mourns his death. tt1667889,gjODxXACjnc,Jimmy tries to catch the big wave. tt1667889,M2AUEpmLf68,The boys discover that Gus has been importing heroin into the factory. tt1667889,LLeKCWFnlW0,Andy and the gang test out a couple of new boards they made. tt1667889,2bdQKmp6hc0,"With the help of their friends, the Kelly family sets up a shop for their surfing business." tt1667889,TU_iltXEntg,Bikers show up to JB's party and instigate a fight. tt1667889,Tyo-f87JA38,JB and Jimmy discuss what living the dream truly means. tt0097322,x7yAcIuyOb4,"After a rough start, Susie Diamond enlivens the Baker Boys' lounge act." tt0097322,gQNFCRom7c0,"Susie sings a show-stopping ""Makin' Whoopee,"" backed by Jack's accompaniment." tt0097322,BX-hxkRsaT4,"Jack trashes the set of a demeaning telethon, with Frank doing damage control." tt0097322,_4DRXSdPuCo,A long-brewing argument between Frank and Jack gets physical. tt0097322,QyeYgwO4ADg,The Bakers pour a wine they've saved for decades and play an old song. tt0097322,mbTKo5Ylypw,The Baker Boys have a falling-out after the show involving a kiwi and a pineapple. tt0097322,oZlQMLXqw0g,"Frank insists his spray-on hair isn't paint, though Jack remains skeptical." tt0097322,dyXlsD7Gx0Y,Jack relaxes Susie with a back massage. tt0097322,7hacgmRbdMM,"Susie and Frank argue the merits of ""Feelings"" and other creative choices as Jack stays mum." tt0097322,pxSjP6JkAis,The Bakers allow one final audition: the brash Susie Diamond. tt0097322,Hxtm9DG4k4o,"The Baker Boys screen potential singers for their act, but each is awful in her own way." tt1389096,BtL6iIh95ag,The old gang gets into a car chase with the police. tt1389096,MD9AvOexMWY,Val and Doc have their last hurrah. tt1389096,MI0ZlakXWFM,Doc and Val help Sylvia get her revenge on the men who through her in the trunk. tt1389096,aCqeaDIGLD4,Val dances with a beautiful young woman. tt1389096,4QCMLXFfJyY,The gang helps Hirsch get something he's always wanted. tt1389096,UUSLRRjc57o,Val gives a eulogy for Hirsch. tt1389096,vVaBlzQzmjQ,Doc calls Alex to tell her how much he cares about her. tt1389096,xKrzCRKABjY,The gang gets ready for action. tt1389096,fuyK26nKaPw,"Doc, Val, and Hirsch find a naked woman in their trunk." tt1389096,6FtMdJEg2ak,Doc asks Claphands when he needs to deliver the package. tt1389096,ziue9g2nXZ0,Doc takes Val to the hospital and they meet Hirsch's daughter. tt1389096,ca3ejioEyiE,Val tells Doc how much he appreciates him. tt2094018,eMru-ZnAzUk,"While Hurricane Katrina rages outside, Nolan learns some devastating news." tt2094018,h1wWMu4nyRE,Nolan finds his wife's body in the hospital and makes a shocking confession. tt2094018,FYUDzpVRYio,"In a race against time, Nolan attempts to radio for help" tt2094018,3rlz8tdE5Mg,"Nolan hallucinates about his wife Abigail, who gives him the strength he needs to persevere." tt2094018,yjQqsPi138w,"Hurricane Katrina has died down, but Nolan has to deal with a lack of power at the hospital to keep his baby alive." tt2094018,ekakyXFzHwM,"Power goes out in the hospital and, with the staff evacuating, Nolan's daughter's life rests in the hands of a single generator." tt2094018,ADy7gUvipWw,Nolan tells his daughter the story of his proposal to Abigail. tt2094018,RWm6781MWb8,"Dr. Edmonds introduces Nolan to his baby daughter, but she needs a ventilator and Hurricane Katrina's not helping things." tt2094018,TR6tZ5CKRVg,Nolan and his daughter's lives are on the line when violent druggies break into the hospital to plunder prescription drugs. tt2094018,rVQAt6GkMgk,"Battered, exhausted, and despairing, Nolan struggles to save the life of his baby daughter before it's too late." tt1747958,RZvJ5MoPjGs,Chris hurries to get to his brother Frank before Scarfo can get his revenge. tt1747958,p6SMuW5b91o,"Leon tells his son, Frank, how much he appreciates him." tt1747958,iKQIxiobVGM,Frank and his partner follow the criminals and the armored truck to the scene of a robbery. tt1747958,NOe3intBN0w,Chris and Monica set up a new business venture. tt1747958,jQVO3AWAgHU,"While enjoying a night on the town, Chris has a run in with Scarfo." tt1747958,0H3xMXZWU78,Chris asks Natalie for her hand in marriage. tt1747958,p0Iwafu7J4Q,Frank chases a criminal after a robbery goes bad. tt1747958,bCAXuyqUJzs,Frank kicks Chris out of the apartment which leads to a fight between the brothers. tt1747958,ylzTTNLGlD4,"After a heated argument, passion gets the best of Frank and Vanessa." tt1747958,IFVWE5XHflo,Chris takes a job from Mr. Ruby that pulls him back into the criminal underworld. tt1551621,I6JIv4ht8OU,"Deu fights the Gang Leader's lieutenant's, but the biggest challenge is yet to come." tt1551621,4qdHRWWX2gM,The Gang Leader attacks Deu and Sanim at their most vulnerable and with no chance of escape. tt1551621,BcRrXppXfEU,Deu fights to the death with the Jaguar Gang Leader. tt1551621,lBIi9tKMz2g,Deu faces her toughest challenge yet: an initiation fight with Bull. tt1551621,0EXwWYHzUNM,"Deu learns the dark secret of Meyraiyuth from Bull, and tries to make up for lost time with Sanim." tt1551621,Fb3LibJlRdM,"Having failed her previous test in combat with him, Deu confronts Bull for her place in the team." tt1551621,mClqKZl0KEs,"Using her newfound mastery of drunk-fighting, Deu fights to rescue several captive women from a hip-hop gang." tt1551621,5K-YqPyi3BA,Sanim races to save Deu from a psychotic gang of martial arts stilt-fighters. tt1551621,XRKrwa_--2U,"Confronted by an enemy gang, Pig-Shit, Dog-Shit, and Sanim kick into high gear, as does Deu." tt1551621,cSOwRJe9hSs,Deu plays hardball with Dog-Shit and Pig-Shit until they agree to teach her Meyraiyuth - drunken fighting. tt1846444,iv8bdd2-Y0w,"A crazed thief named Gary steals a van from Bill and the family. However, when he tries to drive it across frozen ice, the ice breaks and he sinks." tt1846444,vk3s_WgZl1M,"The ice storm tears through the city, literally freezing civilians solid. Then, Bill wants to help some victims at the side of the road, but they are crushed by falling ice." tt1846444,7x43p4KHLLI,"When a chain of volcanos erupts in Ireland, it takes Divya's life and causes a massive glacier to move towards North America." tt1846444,oHAtHxDF6DQ,"Bill flies an airplane through the thick of the storm, deftly dodging falling ice and the military." tt1846444,trKur9bR2aE,"As Bill and his family try to escape, the military bombs the glacier, causing massive hunks of ice to fall on the city below." tt1846444,hxwuvmJyM8s,Bill uses supplies he finds in abandoned cars to create a makeshift bomb and blow his way through a pileup. tt1846444,RbI_bPsWnmQ,"When their airplane runs out of fuel, Bill is forced to make a crash landing through the icy storm." tt1846444,W8tB9ZTiPpw,"When the military bombs the glacier, it does not go as planned. Hunks of ice fly through the sky, destroying Colonel Sinor's helicopter." tt1846444,U-FFwUkA2QU,The Hart family races across the frozen Hudson River to find refuge from the ice storm inside the Statue of Liberty. tt1846444,EpzearSkgOM,"Unable to see through the thick snow, Bill crashes the car, flipping it entirely upside down." tt1535108,zFIHYJAp2rc,Max undergoes surgery to receive his exoskeleton. tt1535108,60V3JFUPvIE,Max is subject to a lethal dose of radiation and is told he will die in 5 days time. tt1535108,1kNZdy-IxNQ,"Kruger arrives with a violent intent and even more violent weaponry, taking on Julio and Max." tt1535108,_BjawJWZIxo,Max and Kruger go head to head on a cat walk with nothing but their exoskeletons and some blades. tt1535108,3uUUeNqdMMU,"Max uses a grenade to blow off Kruger's face and take control of the spacecraft, leading to a crash landing on Elysium." tt1535108,f4gmgTebHog,"Thanks to Max's sacrifice, the people of Earth become citizens of Elysium." tt1535108,OzliqFzK36E,Max fights a pair of armed security droids to keep Carlyle from flying to Elysium. tt1535108,6j-vjtJ7PRI,"When Frey is taken away, Max breaks out of a laboratory to go after her. Meanwhile, Kruger's face is reconstructed after a brutal explosion." tt1535108,c_6SIVs_M5Q,"While being closely pursued by Kruger, Max rushes through the space station to complete his mission and save Matilda's life." tt1535108,2cJGGVlQ8X8,Max sacrifices himself to help the forgotten people of Earth become citizens of Elysium. tt1764183,VMLlpJdCYG0,"With Robert's fraud and criminal activies threatening to destroy the family, his wife, Ellen, proposes a new solution." tt1764183,VIlnM_wcw0w,Robert finalizes the deal to sell his company to Mayfield over lunch. tt1764183,a5AnZBVyCCw,Ellen Miller shares her suspicions about her husband with her daughter and encourages her to do what is right for her. tt1764183,1psPf8n2AKo,"Robert tries to cover his bases with Jimmy, but the situation's even worse than he expected." tt1764183,Og1Ptc7w7GI,"Robert explains to Brooke, his daughter and ""business partner,"" why he had to commit fraud." tt1764183,zJ08DhVEAiI,"Robert struggles to maintain a relationship with Jeffrey Greenberg, who's invested 412 million dollars into his business." tt1764183,gkStl7MVRnU,"Robert covers the best he can when questioned by Det. Bryer, but his story has a lot of cracks." tt1764183,vyVGOQCHbTA,"Robert Miller tries to make up with his mistress by escaping from the city, but disaster strikes." tt1764183,aBMH3MEYNIg,"Injured from a car crash he shouldn't have been in, Robert calls Jimmy, a personal friendto drive him home. Meanwhile, Det. Bryer and Det. Mills investigate the scene of the accident." tt1764183,OOfMTt2XfWU,Syd Felder advises Robert Miller on a hypothetical person who hypothetically committed involuntary manslaughter. tt1770734,W6Y6riI56Dg,"In the end, Colette chooses to leave, but not with Mac." tt1770734,Yb9EnN_gvu0,Colette agrees to become an informant if Mac will support her. tt1770734,1dcHIATBkS0,Colette has to war her handler when she realizes that she will be part of the assassination attempt. tt1770734,tjpRBPJGPjY,MI5 agent Mac pressures Colette McVeigh to turn informant on her own brothers who are IRA members. tt1770734,cvvBpQoiZpg,"Colette is forced to tag along on an assassination, but MI5 is there and kills the gunman." tt1770734,cPBHxDtI3Ok,"Colette fears that she is in too deep and that she will end up dead, but Mac assures her that he will protect her." tt1770734,fF8O4drwH-I,"After the IRA operation goes wrong, Colette is questioned by an enforcer known for his cruelty." tt1770734,Ntn3ksJwDpk,Young Colette witnesses the death of her little brother as a result of the Northern Ireland Conflict. tt1770734,-rMac-9Z66w,"Colette attends Brendan's funeral, where the IRA and her brothers show their rebellious spirit." tt1770734,2U2zhXAXdhQ,"Colette McVeigh attempts to bomb the subway, but is captured by MI5 agents." tt0079592,wbwXHxqxDwc,"As Sherlock Holmes tries to get information about the murders from Mary Kelly, the two are attacked from a cloaked man." tt0079592,_RWkRZDPnao,Sherlock Holmes reveals to Prime Minister Lord Salisbury the tragic story of Annie Crook. tt0079592,NvvU_4PsiKo,Sherlock Holmes finds the killers behind the Jack the Ripper murders. tt0079592,VAaeEoQq6jY,Sherlock Holmes and Dr. Watson investigate the scene of Jack the Ripper's latest victim. tt0079592,6EfYYxmfABk,Sherlock Holmes and Dr. Watson confront Sir Charles about freemasonry's involvement with the Jack the Ripper murders. tt0079592,yq571gv49HQ,Sherlock Holmes trails William Slade to the wharf where they come to blows. tt0079592,86sXLVakflE,Sherlock Holmes reveals that Inspector Foxborough has been the informant behind the secret messages. tt0079592,raM63LAHuwo,An anonymous stranger gives Sherlock Holmes and Dr. Watson information on the Jack the Ripper murders. tt0079592,cEezHIqQrEw,Sherlock Holmes and Dr. Watson watch as a rowdy crowd boos the Prince at the theater. tt0079592,h1aJoWg4vGo,"While Sherlock Holmes tries to figure out more information about a mysterious woman, Dr. Watson is distracted by his last pea." tt0079592,t5zrRGTShZA,Sherlock Holmes tries to help Annie Crook get out of the insane asylum. tt1325753,TXRHf6Hzg0g,"With Thor bargaining with Bruce Banner, Sif and the Enchantress make their last stand against the Hulk." tt1325753,kYlPBN4yMe0,"Trapped in Hela's realm with Loki, Thor teams up with him to stop the Hulk." tt1325753,d3HAOZbAj1Q,"Thor confronts the Hulk, only to learn that he's being possessed by his brother Loki." tt1325753,5vY-zNTuq8E,"Loki loses control of the Hulk, which makes things go even worse for Thor." tt1325753,ieVPPV5S0Ps,Loki and Enchantress separate Bruce Banner from the Hulk to fulfill their nefarious plan to slay Thor. tt1132130,DU1C6QrVmuU,The prophecy that Frank discovers comes true when Sarah shows up with Wakanna. tt1132130,fLFf012Auvc,"When the west coast gets hit with intense weather, everyone panics and Susan gets her mom out of town. Along the way, Susan feels compelled to go to the pyramid." tt1132130,Eur_GSTH4oA,"As Wakanna cradles her newborn baby, Sarah realizes that the end of this cycle on Earth means the start of a new one." tt1132130,WKoY2kS1UNo,A chunk of hail crashes through the windshield and kills Alex. tt1132130,S5EWvpoWIBk,"Lloyd gives Susan a ride to the pyramid, and Trish dies before she can make it inside." tt1132130,fXElquKFrMo,Jim agrees to fly Lloyd through the storm to Mexico so Lloyd can find his daughter. tt1132130,eBx_WJQ25Ec,"Sarah is convinced they need to bring Wakanna to the pyramid, which is exactly where Frank is headed with an injured Trish." tt1132130,hG2yx-PTxys,"Susan doesn't share her mother's religious beliefs, but she does start to wonder about the significance of the pyramid she's been seeing in her mind for years." tt1132130,Ei9RooSCn14,Lloyd and Susan are confused when their Christian loved ones go missing. tt1132130,A6b9rDbdOzI,Wakanna gives birth just as the world ends. tt1386703,hgGi1ODlBBo,Lori chases after Quaid and Melina with an intent to kill. tt1386703,qLoufJLKN6Q,"Harry tries to convince Quaid that he is still in Rekall and is hallucinating his entire reality, leading to a standoff with Melina." tt1386703,dzzijuZof1w,Quaid and Melina use guns to protect themselves and travel around The Fall as they float in zero gravity. tt1386703,ibAU8weiUOI,"When Quaid goes to Rekall to download the memories of a secret agent, he learns he actually has true memories of being a spy and engages in a shootout with Federal Police." tt1386703,d_A4tfEukp4,"After admitting that she is not really Quaid's wife, Lori chases him through the city and tries to kill him." tt1386703,Bf6FD5UbSns,"After being picked up by Melina, Quaid struggles to understand his reality in the midst of being chased by police." tt1386703,RgubwsCVg1o,"Quaid learns that Lori is not actually his wife of seven years, and is instead a special agent assigned to deceive him." tt1386703,dw95Qsj59NA,"Quaid squares off against Cohaagen in a fight, allowing himself enough time to detonate his bomb." tt1386703,_92v2IFT7WE,Quaid and Melina fight Lori onboard a series of high-tech elevators. tt1386703,68SlAT125f8,Quaid kills Cohaagen just before he and Melina destroy The Fall with a devastating explosion. tt0450336,wfAfwKUkfHU,Wirth revives Liese's bird using the power of the occult. tt0450336,5V-C6ziFKMA,Wirth reveals to Victor that he let him escape as it was part of his master plan. tt0450336,H4d8EcquSUM,Evan wakes from a nightmare to find his long lost brother Victor standing in front of him. tt0450336,o-6E3Hd2OW0,Wirth possesses Otto and Karl Wollner and uses them to attack Evan and Victor. tt0450336,BbbXgjwlOpI,Evan distracts Wirth while Victor goes to collect the sacred bones. tt0450336,A6oAEu3DbKk,Evan and Victor fight off a possessed horse sent to attack the farmhouse by Wirth. tt0450336,Tc7e-4kbDto,Victor makes his way into the Wollner house while Evan hangs back to provide support. tt0450336,nBZ39gX_FlU,Victor accidently releases an unstoppable force of evil. tt0450336,xuhl1rceZdE,"After poisoning Wirth with the blood of his elders, Evan and Victor slay him before he can regain his strength." tt0450336,8wY9r2cpbxQ,Evan finds out that the Wollners have been the same age since the 1940s. tt0450336,padXZANlFwE,Wirth uses his dog to keep Victor busy while he completes the next step towards his evolution. tt0450336,D8Cra7i2kGc,Evan and Liese set up a trap to stop Wirth's ever growing strength. tt0457572,K3dG3JrXAJc,"Thank you Zomcon! For winning the zombie wars, and building a company for tomorrow, that gives us a safer future today!" tt0457572,CfsveeSvZNw,Mr. Theopolis helps Timmy fix Fido's damaged collar. tt0457572,dK2oGZK490w,Helen brings Timmy and Fido a cool drink while they wash the car. tt0457572,6_yYxTkdIk8,The bullies try to frame Fido for attempting to murder Timmy. tt0457572,V2RKM83CQ_A,Helen and Fido try to arrive in time to save Timmy from the bully zombies. tt0457572,Y9OrRbeB-rU,"The Robinsons host a cookout, and Cindy brings her new zombie to the party." tt0457572,ERlyrvQbqP8,Helen has a big surprise for her husband Bill. tt0457572,dEqrnOk8P1Q,Mr. Bottoms comes to the classroom to answer questions about zombies. tt0457572,EDq1QNZ_JJo,"Timmy has a nasty run-in with bullies in the park, but a new friend is there to save him." tt0457572,5dE-JjnKznQ,Mrs. Henderson accidently shuts off Fido's collar which leads to disasterous results. tt0457572,jpTj6qTyIwY,The Robinsons come together to save Timmy from Mr. Bottoms tt0780607,qKT2-0WUbGY,"While Lewis is outside attempting to break the door down, Ben manages to get Clark to remember where Mya was headed." tt0780607,a1ewWPS5ULg,Ben comes across a bound and violent Lewis while looking for Mya. tt0780607,8I1qHr1kjF8,Mya and Rod leave the apartment building and attempt to drive to safety. tt0780607,tbu7lOVTric,"Amid the violent chaos, Lewis, Clark and Anna take time to appreciate what they have done." tt0780607,XQO-ftv4ePQ,Clark vists his neighbor Anna who has just killed her husband. tt0780607,81ZejwnzklY,Ben uses Lewis's own paranoia against him. tt1694508,4A-T8umqRYE,Ahab fashions himself a new leg after Moby Dick takes his a second time and the beach battle begins. tt0780607,eTGHFj1kdsI,Lewis suspects his wife Mya of cheating on him when she comes home late. tt0780607,hca09uawN_8,Mya prepares to take a shower while her husband Lewis suddenly starts to get very aggrassive towards his friends. tt0780607,Epzv2FLSjhk,Mya encounters Rod who explains that everybody has gone crazy and started killing each other. tt0780607,fthLa-kq3WI,"Anna, Clark and Lewis are on edge when someone knocks on the door." tt1694508,-V7_zk4wpQs,Ahab aggressively pursues his white whale and Boomer's plane goes down trying to take out Moby Dick. tt1694508,zpCCg4DtXCU,Ahab blows up the wrong marine animal and a helicopter chasing down Ahab ends up in the belly of Moby Dick. tt1694508,bc4_fCULOKk,"Ahab warns his superiors about a mysterious sound, but by the time they see it's a giant whale, it's too late." tt1694508,jdYgR4Vqwuw,Ahab gives a speech meant to encourage his crew to find Moby Dick and destroy him once and for all. tt1694508,s1-5EZM82lM,"Ahab puts the crew at risk by pushing the boundaries of what the submarine can do, all in pursuit of Moby Dick." tt1694508,GGVL7N6Wz8I,"Boomer intends to stop Ahab, but after he hears the story behind the mad pursuit of Moby Dick, Boomer decides to let him go." tt1694508,XkYj78aDy2I,"Ahab and his crew try to corner Moby Dick, but their first attack fails." tt1694508,_txmRGsX5ss,Ahab shoots Moby Dick and drowns. tt1694508,XjYQd3hE6xI,Starbuck shoots torpedoes that miss Moby Dick and end up blowing up the island instead. tt0942903,teoyewW1bUY,Maj. Gen. Landry makes it clear that he does not fear the Ori Prior's threat. tt0942903,N9EnEuH0Tgo,"After the crew finds the Ark and Teal'c falls in a battle with the Ori, the Odyssey must escape without beaming up the rest of their team." tt0942903,OSkFsRL177o,Daniel opens the ark and reveals the truth to the Doci and all the Priors and Morgan le Fay destroys Adria. tt0942903,1CXkATQLZGk,"Lt. Col. Mitchell blows up the Marrick monster, but the robot skeleton lives again until Lt. Col. Carter saves the day." tt0942903,ImO-q-hTdAc,Daniel gets some advice from Morgan Le Fay and Teal'c appears to help get Daniel out of jail. tt0942903,eRITzdlHJXA,Vala learns about the evil plans her daughter Adria has in store for humanity. tt0942903,2b-ip6hZYgE,"While Lt. Col. Carter tries to find a way to control the replicators, Lt. Col. Mitchell tracks them to the queen -- a replicator monster with a Marrick body." tt0942903,RU2IP_oUqyc,Lt. Col. Mitchell fights off a small herd of replicators while his team on the ground finds the ark. tt0942903,y2_oXPF2b3Y,"After discovering the ark is a fake, the team kills a Prior." tt0942903,huxXgcGvTPk,Daniel has a vision that may lead him to the ark and Marrick unleashes a replicator on the ship. tt0929629,grpGRWYL6mQ,The extraction process is finally complete as planned and the last of the system lords is dead. tt0929629,pPcxCk8YBVs,Lt. Col. Mitchell enlists the help of the Captain of the Achilles to kill Ba'al and his men in 1939. tt0929629,GeLDjQIIkdI,"While Lt. Col. Carter tries to figure out how to use Ba'al's time machine, the crew has to fight off Quetesh's henchmen." tt0929629,UCCkKfTVEy4,The Goa'uld attack as SG-1 is rerouted to Russia. tt0929629,kFbDy90VZQY,Quetesh kills Ba'al and takes over leadership of the ship and crew. tt0929629,AkjImI2Qpew,"Ba'al demonstrates power over the system lords, impressing Quetesh." tt0929629,Wv07oUFHGRQ,Landry tells the soldiers who they are in this timeline and that they will not be allowed to change back the altered timeline. tt0929629,f4LEgmt0roE,"Daniel, Lt. Col. Carter and Lt. Col. Mitchell try to explain the Stargate program, which apparently doesn't exist in this timeline." tt0929629,ry9yNbMVeMQ,"In the past, the Captain of the Achilles throws the bomb off the side of the ship and in the future, Lt. Col. Carter and her crew escape through the Stargate and into an alternate timeline." tt0929629,s1QgQny2o5E,"Ba'al travels back in time to a ship in 1939 Earth, meanwhile in present day a Ba'al clone kills Jack and people and objects start disappearing." tt0115985,9ltpGvaDfBM,"Ferris knocks the stuffing out of Joe, who finally accepts the staff of his destiny, but he might not know how to use it." tt0115985,I5RKRQcsDKU,"Joe thrusts his mighty staff into Ferris, which excites Laura." tt0115985,VV26lYf6VyM,"A.T. shows up to save Joe from Ferris, kicking off a crazy, trans-dimensional fight scene." tt0115985,prAOME_9oP8,A.T. holds the fort to prevent Rebo from getting his hands on the staff. tt0115985,CDQw1Ez9yOs,"Joe, A.T., and Laura continue their mission when suddenly their elevator starts to fall apart." tt0115985,1C84oQva04A,"Joe's gets shoved off a skyscraper, only to have a hallucinogenic vision of evil and of his destiny." tt0115985,wpxS1xSxUDY,Negotiations break down between A.T. and Ferris in a big way. tt0115985,h0i2KfT2SB0,Laura and A.T. teach Joe the dangers of dimension-hopping. tt0115985,CdppQAIYPzY,"Ferris attacks Joe, A.T. and Laura with magically animated suits of armor." tt0115985,KccpJ0xD-7E,Joe wakes up to find Laura on top of him. tt0480669,P4KHpL7ZHlA,"El Joven reveals just how deep the time-traveling rabbit hole goes with Hector 1, Hector 2 and Hector 3." tt0480669,g1axUa-NsEE,"Hctor sets events in motion that will restore order to the timeline, but nobody will ever be the same." tt0480669,Kxyzb-o56QQ,"Hctor returns to El Joven to fix the mistake he made, but the scientist is less than thoroughly cooperative." tt0480669,AqAm2IAg5Fw,"Hctor breaks into his house to see Clara, only to make an unthinkable mistake." tt0480669,9Q2UjqahNSw,"Hctor preserves time continuity, but at a shocking cost." tt0480669,m8KBXUCttEw,"Hctor accosts the girl in the woods to keep continuity in the timeline, and for no other reason." tt0480669,WQXNChLdnvI,"Hctor gets into a car wreck and, bandaging himself, makes a horrifying discovery." tt0480669,wVC_xkrm6kU,El Joven explains to Hctor how he and his past self can exist simultaneously. tt0480669,d5n-bZf3eVE,"Hctor wakes up dazed and confused in El Joven's laboratory, but discovers a shocking truth." tt0480669,YZ8k016_bvc,"Investigating an incapacitated girl in the woods, Hctor's attacked by a maniac wrapped in bloodstained bandages." tt1479847,1tryt4ddnWw,"When Kelvin learns that Dr. Ye is the masked assassin, he fights her to the death." tt1479847,-Kv4O5dyrzM,Kelvin and his family reunite after the supernova event. tt1479847,KmuxPl7RkK4,Kelvin makes a sacrifice in order to save Earth from the supernova. tt1479847,5N86yJbOjYM,The President addresses the nation while Kelvin and his fellow astronauts embark on their journey to the International Space Station. tt1479847,C-NaBwskUp8,Laura and Tina attempt to outrun a tornado. tt1479847,-4Qk4eACpXI,Kelvin is working in the lab when he gets attacked by an assassin. tt1479847,nf1DA90KAIY,Kelvin advises his family to get to safe place and alludes to the fact that he might not live through the project. tt1479847,U87C_o3_qOo,Kelvin loses contact with Laura when she's involved in an intense earthquake. tt1479847,N-dpQITO2fo,Assassins question Kelvin about his involvement with the nuclear weapons he's been taking to the International Space Station. tt1479847,4q5rmjaO9Cw,Kelvin explains the impending supernova threat and argues with his international colleagues about how to solve the problem. tt1758830,kAFxKPtwYuU,Debbie touches Desi's breasts to make sure they are real. tt1758830,jjpQORCD0ZU,"Debbie tries to changer her family's lifestyle, but her daughter Sadie makes it hard." tt1758830,GH-oJGZKmq8,"Jason and Ronnie try to seduce Desi, while Debbie has an awkward conversation with her family." tt1758830,-mlfefNP8cw,Pete and Debbie enjoy a weekend away from the kids. tt1758830,c4X58OjlVPo,Jodi admits that she has a drug problem. tt1758830,MIZSWO65BXQ,Larry accuses Debbie of anti-Semitism while Pete tells off her father. tt1758830,rrMvGHoW7aw,Debbie and Pete tell their children some of the new changes their family will be making. tt1758830,mFH_r2w28rM,"Pete and Debbie attempt to fight politely using their therapy skills, but the honesty really stings." tt1758830,6CBfg5X9Z3Y,"Catherine confronts Pete about his wife's behavior, but things get worse when he touches her." tt1758830,cT1iUwGGUAg,Debbie and Barb have a conversation with Jason about sex and the lack thereof. tt1931435,84UF11bJDFY,Missy O'Connor and Alejandro Griffin seek a blessing from Father Monaghan. tt1931435,6UNDrO9PrzE,Alejandro Griffin finds out the truth about his mother's past. tt1931435,TjMQwe-R_5Y,Lyla Griffin tells Don Griffin how she does not want to be like him. tt1931435,O_CorWKpGvU,"At the wedding, Don Griffin proposes to Bebe McBride and they get married on the spot." tt1931435,CbPAADCg6ns,"Running away from everyone, Missy O'Connor and Alejandro Griffin elope on the dock." tt1931435,6iOxj7Lgn4I,"Right before the wedding, Ellie Griffin's past mistake is revealed." tt1931435,3FeBwyb5g0U,"Trying to convince her to sleep with him, Jared Griffin does a series of romantic things for Nuria." tt1931435,MJ9QAW4LUEY,Don Griffin and Lyla Griffin share a father/daughter moment in his studio. tt1931435,x2jLrsMN6YY,"Madonna wants Don, Ellie and Alejandro to go to confession with Father Monaghan." tt1931435,vhv17audEAo,"The Griffins and the O'Connors have a lovely dinner outside, until the rain comes." tt1931435,NFgP1bVZCy4,"Ellie comes back to her old house only to catch her ex husband, Don, and her old best friend, Bebe, having some fun." tt1931435,cVGZCFgH-Dg,"Because of Alejandro's biological mother, Don and Ellie have to pretend to be married." tt1878942,ANXSdv-KaCQ,"After ruining things with Matty, Michael makes up with him the only way he knows how." tt1878942,gSZ82TOHWc0,Michael and Matty reconnect and share their much-abused pot brownie. tt1878942,XIPjMKd3-1U,"Marcus takes go-carting very, very seriously." tt1878942,ZyHoPZAsm60,"Having ruined everything, Michael consults Greg and Jared for a way to win his friend back." tt1878942,PbC7alhpFBE,"Michael researches ""gay dudes"" only for his father, Terry, to walk in unexpectedly." tt1878942,VvfIdmaKwfQ,Matty and Greg bond over amateur Mexican wrestling. tt1878942,XBCML9xJI8I,Michael takes Matty to another gay club where they get crazy with Jared. tt1878942,YDeGYXbeQV8,A date with Em takes a nosedive for Michael when he discovers who Matty's been seeing. tt1878942,HwaqZA54GTk,"Michael attempts to get Matty laid at the gay bar, but Jared might be more than they can handle." tt1878942,HOY92xiGY2M,"Matty reveals his secret to Michael, who doesn't quite understand." tt1839654,M3DlQK8xFBQ,Monte manages to get Finnegan to make up her first story. tt1839654,mbl4cWCn6z4,Monte opens up to Finnegan and tells her the story of finding and losing his one true love. tt1839654,h36L-NdLDhI,"Henry sets up his bitter writer of an uncle, Monte Wildhorn, in a cabin for the summer." tt1839654,PzUxcPh1zPI,Monte takes out a gun and scares off an angry Clown at Flora's birthday party. tt1839654,kVQN0ZDzIqU,Monte is introduced to a famous actor named Luke Ford that is interested in buying the rights to his western books. tt1839654,BxvRz4RftFY,Mrs. O'Neil asks Monte a personal question after getting to know him over dinner. tt1839654,eaFX0rKv2Fc,Monte by Al Kaiser. tt1839654,2haHRRfKLJ0,Finnegan gets her first lesson on imagination from Monte. tt1839654,x2EI9M1XFOA,Finnegan visits Monte and asks him to teach her about stories. tt1839654,VqYLWPoXeuc,Monte has a discussion with the dog that is now in his care. tt0057187,VXkEBRtERnA,"Nestor and Irma have a healthy baby girl while Moustache encounters a ""real"" Lord X." tt0057187,rxno2wz0eKc,"Under the impression that a rival prostitute has gotten fresh with Nestor, Irma attacks the woman." tt0057187,JvG1hHsOFUA,"To Moustache's bewilderment, Nestor plots the murder of a romantic rival his own creation, Lord X." tt0057187,Bi8Spey13uY,Nestor suddenly comes to life in his fight with Irma's pimp. tt0057187,kbGvnI1qIz8,Nestor has a rush of panic when Irma suggests he meet his doppelganger Mr. X. tt0057187,iMPV0eFLxbQ,"While Irma dances, Nestor frets with Moustache over his costly romance." tt0057187,k01VcZkKDME,"Irma spends an evening with the eccentric Lord X, Nestor in disguise." tt0057187,VXPxIwL1e5g,"In order for Irma to be monogamous with him and still have the satisfaction of being a working girl, Nestor transforms into a wealthy Englishman who can be become her only client." tt0057187,ZQ0JJpvMq-g,"En route to the police station, Nestor fends off a van full of wanton women, including Irma." tt0057187,ZH81ElJu-Jw,"After being fired from the police force, Nestor is advised by Moustache to try out pimping." tt0057187,lLbWBsRVUAU,Moustache educates Nestor about illicit love on the Rue Casanova. tt0094678,tXrxBy-CDPc,"Arthur tells Linda that he has lost his fortune, but she still loves him." tt0094678,dAoRRTPPIys,Arthur confronts Mr. Johnson with evidence of his fraud and Susan realizes she doesn't want to marry him after all. tt0094678,84gYIl6Zjks,Arthur and Linda rent a crappy apartment with I.O.L. in every room. tt0094678,kD0zHgK3BJ8,Hobson gives Arthur the inspiration to change his life. tt0094678,SqSZ5RSaT8k,Mr. Johnson manipulates Arthur to divorce his wife and marry his daughter Susan. tt0094678,vw44oj_STSw,Arthur and Linda meet with Ms. Canby to see if they can adopt a baby. tt0094678,UkIwAAKv_iA,Arthur tries to be thankful for his newfound poverty. tt0094678,an8Z9J29zWo,"Arthur teases his new butler, who has no sense of humor." tt0369672,S-Io377-jmE,"Drunken Bobby feels betrayed when Lawson reveals that he's thinking of moving in with his girlfriend, Georgianna." tt0369672,XYD3ysriZ3k,"Lawson reveals that Bobby has a serious health issue, but Bobby fights going to the hospital." tt0369672,rcWb_qea8Eo,Bobby asks Pursy what she remembers of her dead mother and the answer surprises him. tt0369672,W2QDEiF7SGU,Bobby proposes a toast to Pursy. tt0369672,1DSkJxktHFY,"Bobby, Lawson, and Pursy celebrate Christmas together as a makeshift family." tt0369672,0pPOxAQwRgQ,Pursy tells Bobby that he's her father. tt0369672,i_3ktf3XwNU,Bobby and Pursy argue over who does the most work in the household. tt0369672,i4l0vA9bzaw,Bobby tells Pursy and the guys about his youthful desires. tt0369672,z1e_c3E9ZR4,"Pursy gets to know her annoying roommate, Bobby Long, and his love of literature." tt0369672,KuLvoPT5PQM,"Pursy Will arrives at her deceased mother's home to find ""two alcoholic strangers,"" Bobby Long and Lawson Pines, still living there." tt0099797,sWCjRo30-Ls,"Harry breaks into Dolly's house where Dolly is waiting for him, hardly the lamb to his wolf." tt0099797,st8QRZbJdPY,"Dolly takes advantage of her husband's weak heart, tying him up and telling him the cold, hard truth before she screws him to death." tt0099797,7oqRCOYvOS4,"Harry waits for Sutton at his cabin, where he proceeds to beat him to a pulp for blackmailing Gloria." tt0099797,SJ1_epc6q2E,"Harry realizes by spending time with Gloria that she's not like the other women he's been with, she's ""a real lady.""" tt0099797,kd01w5eLVwo,Harry and Gloria take a dip in a gorge and have a picnic. tt0099797,rA6AZeHyw8Q,Harry quietly robs the local bank while the fire fighters and police are distracted by the burning building. tt0099797,RVu3EPJ4-jA,Dolly hides inside a car in a lot and waits for Madox. tt0099797,BANrqTBnEy4,Madox has regrets when he comes over to Dolly's house. tt0099797,3TzAJdCNpZw,Dolly and Madox share conversation and a kiss. tt1270262,lZltw3ubrGo,"Mistaken for Uday, Latif Yahia is nearly assassinated. Luckily, Sarrab wants to make it up to him." tt1270262,Kusz_-SyLfE,"Uday Hussein terrorizes the Schoolgirl he kidnapped and threatens his father's drunken friend, Kamel Hannah." tt1270262,Xa36SdTlCZE,"Munem brings Latif Yahia to Saddam Hussein for inspection, an experience that leaves Saddam oddly reflective." tt1270262,lGVU-OuhTlw,"Uday Hussein takes advantage of a war hero's bride, which brings Latif to the breaking point." tt1270262,P2qz2B9snxE,"Latif Yahia attempts to assassinate his captor, Uday Hussein." tt1270262,-ZTTZtzzbmI,Latif Yahia learns the price of attempting to escape Uday Hussein. tt1270262,xxxnlkTZlCk,"With his family's life at risk, Latif Yahia gives in to Uday Hussein's demand to be his body double." tt1270262,dDqhjzd8wXk,Latif Yahia undergoes extensive surgery and personality training to mirror Uday Hussein under Munem's supervision. tt1270262,E7CPLxlfKaw,Said Kammuneh teaches Latif Yahia the price of defying the Hussein family. tt1270262,QQe-fCLVBVU,"Uday Hussein ""asks"" Latif Yahia to be his body double." tt1629705,FgIgeE7C6bU,"Blackthorn crosses paths with his old nemesis, Mackinley, who's been living a quiet life in Bolivia." tt1629705,Ddj5oGNtezI,"The posse catches up to Blackthorn and Eduardo, resulting in bloody violence." tt1629705,SAQN4EyLqZk,"Blackthorn tells Eduardo about his past life as a bank robber, but what he values most is freedom and friendship." tt1629705,ffxg6IB27GM,Blackthorn is angered that Eduardo stole from the people and leaves him for the posse to find. tt1629705,MVZn5gTph6M,Blackthorn aka Butch Cassidy remembers what no one else ever knew - how the Sundance Kid died. tt1629705,fuXPZqYtnjo,Blackthorn remembers one time when he and Sundance were captured by Mackinley. tt1629705,_-GaobqA1LE,Blackthorn has to resolve some trust issues with Eduardo. tt1629705,h7i8GGtWf_E,"Blackthorn and Eduardo get the money, but have to shoot their way out of the mine." tt1629705,XB2CUyVSAq0,Butch and Sundance are rescued by the lovely Miss Etta Place. tt1629705,gj2Y2uEcubE,Two members of the posse attack Blackthorn at his ranch and his beloved companion is killed. tt1386588,aDJgv1iARPg,Hoitz tells Gamble all the reasons he doesn't like him. tt1386588,XP0SZTwlmMk,Gamble and Hoitz use their inside voices during a fight at a funeral. tt1386588,74Od5-Fmf60,"When Hoitz suggests they play ""good cop, bad cop"", Gamble misreads the situation and goes bananas on Ershon." tt1386588,g4FOpeshqA8,Gamble recounts the story of how he accidentally became a pimp in college. tt1386588,oeW9lZBY-VM,"Gamble ridicules his wife Sheila, which gets him kicked out of the house." tt1386588,eq3vD93GgLs,"When Gamble and Hoitz try to arrest Ershon, it goes wrong and leads to a massive shootout." tt1386588,MvkN3003iU4,Danson and Highsmith foolishly jump to their deaths during a criminal pursuit. tt1386588,xGeYzlEV5KY,Gamble and Sheila use Sheila's mother to talk dirty to each other. tt1386588,JdZHXwqDXB4,"Gamble talks Beaman off a ledge, but unfortunately it's in the wrong direction." tt1386588,jBotZTDEcP8,Gamble and Hoitz save the day and take Ershon and Wesley into custody. tt1531663,A8nTO1XWlME,Nick says goodbye to Kenny. tt1531663,f_8dti9p0f0,Kenny confides in Nick and the two share a laugh. tt1531663,B0sO3FekHUU,Nick finds out about his wife's affair and confronts Frank. tt1531663,Ex-eX7zpZno,Nick and Kenny sell NIck's belongings at the yard sale. tt1531663,QGRAdMGb5tw,Nick asks Samantha what makes him any different than his neighbors. tt1531663,0i1ihIW8eCY,Nick stumbles upon his neighbors having some embarrassing sex. tt1531663,slDxIGhBuIE,Nick tells Samantha how he got into his current situation. tt1531663,mEv2dXzZTV0,Kenny and a patron barter over items in the yard. tt1531663,h9HV76Jl2WE,"Nick meets a boy from the neighborhood, Kenny." tt1531663,4TBnG3RuU88,Nick and Kenny come to an agreement about Kenny's employment. tt1531663,Tanjysfo1SE,Nick returns home only to find his stuff thrown all over his lawn. tt0093693,a4OWkIrQUJw,Dean tricks Joanna into making them all dinner; the only problem being that she has no idea how. tt0093693,SM2LxRKqYR8,The sight of Grant triggers the return of Joanna's memory. tt0093693,dYafG2EuZjs,Joanna prances around in a thong bathing suit; Joanna and Dean get on each other's nerves. tt0093693,rKwnRWbuCx4,"Dean and Annie jump overboard and swim to each other in the middle of the ocean, and Annie makes a big confession." tt0093693,YtWJKXNMmhI,"Dean goes to the hospital to claim Joanna as his wife, ""Annie.""" tt0093693,jt2BPBAWiEQ,Dean tells Joanna off when she refuses to pay him for his construction services. tt0093693,j_z70ZaqWUE,"Grant sees on the news that Annie is in the hospital with amnesia, but has second thoughts about claiming her as his wife when he is reminded of her difficult behavior." tt0093693,QPbUj6Ks8j4,Dean convinces Annie that she sleeps on the couch because of her bad back. tt0093693,NpzigSg-YkI,"Dean throws a catatonic Annie into a bucket of cold water, but she still insists that she doesn't belong in this life." tt0093693,3S5E22b49-Q,Dean and the kids surprise Annie with a washing machine. tt0093693,12KcnPMV3OM,Billy lies to Annie in order to maintain the relationship between her and Dean. tt0093693,FBpzRIzISeY,Dean fools an unsatisfied Annie with doctored photos of their life together before the accident. tt0095684,_4juqo20ABE,Jeremy arrvies just in time to save Ralph from being killed by the vampire hunters. tt0095684,OosAKayGMj4,Jeremy is greeted by Mr. Blake and his wife Helen when he comes to pick up their daughter for a date. tt0095684,UBmxdy6C4JI,Jeremy tries to help Ralph score babes with his power of mind control. tt0095684,nToATRUkpMI,"Jeremy wonders why he became a vampire, and Modoc informs him of the advantages of vampirism." tt0095684,ti3HSBmEoVU,Jeremy tries blood for the first time and embraces the vampire lifestyle. tt0095684,o1RMSG4bnrg,"Jeremy tries to end things peacefully with the Professor, but is met with reluctance." tt0095684,NjfviAKKVj4,Jeremy reveals to Ralph that he got turned into a vampire. tt0095684,FkEU_g5u_1c,Jeremy recalls a dream he had about a mysterious girl at school. tt0095684,8jyiXMPl6EU,"Jeremy is in the middle of having the night of his life with Nora, when they're interrupted by unexpected guests." tt0095684,qyXpj-yVjVg,"While delivering groceries, Jeremy is seduced by a beautiful, but strange woman." tt0095684,L3aF2hwu8yE,The stranger that's been following Jeremy show's up in his bedroom to tell him he's become a vampire. tt1436432,rjLuhEOhj-I,Boomer sacrifices his life in order to stop the earthquake from spreading. tt1436432,h5WL8to9Gq8,"In the aftermath of the earthquake, Amy and her family are finally reunited." tt1436432,ccJ95yYf3Ms,The tectonic weapon accidentally triggered a super volcano that starts rapidly burning everything in sight - starting with Wyoming. tt1436432,dYaOu80atDo,"When an innocent family ends up in the line of fire, Amy and her team risk their lives to rescue them." tt1436432,w5WmCh-cRCA,"While they race against the earthquake, Dan must detach the trailer from the semi truck to prevent it from exploding." tt1436432,uqA0WkLSyKI,"Mark and Amy update each other on the status of the quake as the group flies to Boomer's mother's house in Lexington, Kentucky." tt1436432,h4XKQMfI3B0,Amy's plane tries to escape the crippling effects of the tectonic beam. tt1436432,OyUea4_exRU,General Banks offers Amy whatever she needs to help stop the earthquake. tt1436432,PIfFHypWnf4,Amy finds a survivor trapped underground and they both must run to escape an unexpected earthquake. tt1436432,ZJDgkjbsitw,Boomer is not ready for the surprise earthquake that occurs right after his routine demolition. tt1240982,NIMWmy-1l4Y,Fabious introduces Thadeous to a very creepy creature who reveals secrets to them. tt1240982,TFDiCTUAJuE,Fabious describes how much he loves Belladonna. tt1240982,FEiK98h1IDc,"Thadeous, Fabious and Courtney attack Leezar and his witches to save Belladonna." tt1240982,XeasXb98akc,"Thadeous threatens Isabel, but she is tougher than he thinks." tt1240982,NulXXh0cw4c,"Leezar intrudes on Fabious' wedding and steals his bride, Belladonna." tt1240982,koWhZSL1Kwo,Thadeous obtains the Blade of Unicorn and chooses to save his friends. tt1240982,XuNDB-xL6uc,Leezar taunts Belladonna with his many powers. tt1240982,jiHXahhmzjw,Thadeous tries to seduce the lovely Isabel by the campfire. tt1240982,P2rpcVDPZEY,Fabious and Thadeous try to convince Isabel to travel with them. tt1240982,rxC2ZWU4IPo,"Thadeous is supremely jealous of his brother, Prince Fabious." tt0087078,PdgSo4Ts7D4,"Conan must fight Dagoth, the Dreaming God, who was brought to life by Queen Taramis." tt0087078,nqF0yFLjiXs,"While trying to escape the temple where the Horn is kept, Akiro 'The Wizard' briefly battles another wizard." tt0087078,hEZcqWRB2iU,Conan rescues a powerful warrior named Zula at the request of Princess Jehnna. tt0087078,bLqJo78X3OI,Conan fights Bombaata while Zula and the others attempt to stop the sacrifice of Princess Jehnna. tt0087078,PLr1f84fj8U,Conan faces off against the wizard Toth-Amon. tt0087078,tEWLG9sG1VM,"After Conan helps set Zula free, she requests to join his group." tt0087078,mUVup2pr_eM,"While praying at an altar, Conan and his friend Malak are attacked." tt0087078,BDZK9B4Gu6g,"Conan, Princess Jehnna and the others find themselves surrounded by the Guardians of the Horn." tt0087078,be9FJeol_aQ,Conan rescues Princess Jehnna who was kidnapped by a soldier when Conan's group was attacked. tt0087078,sLKnt2jBax4,Conan and his group stumble upon a tribe of cannibals about to eat his friend Akiro 'The Wizard'. tt1181791,BL312TpdPQQ,Ulric introduces Osmund to the rest of his group and explains their true mission. tt1181791,0dC7aMWCULU,Swire tells Langiva that he will renounce God so that he can live. tt1181791,Gn7MHo0ZZg8,"Osmund, Ulric and the group come across a mob of villagers about to burn a suspected witch." tt1181791,Tg_Z2u4GShE,Dalywag refuses to renounce God and is chosen by Hob and Langiva to die first. tt1181791,rp07bmYWtog,"As Langiva has Ulric prepared to be dismembered by horses, he has Osmund help reveal his dark secret." tt1181791,Bxne2K4K5GM,"After being captured by the necromancer Langiva, Osmund, Ulric and the rest are given a choice." tt1181791,6fJ9PDZDS1M,"Osmund hides in the cave as Ulric, Wolfstan and the rest fight off a gang of bandits." tt1181791,TfGXctZRcLg,Ulric vists Osmund after the boy finds out the girl he loved has died. tt1181791,ppaA4P4tr88,"Wolfstan, Ulric and the rest of the group discover that Griff has been stricken with the plague." tt1181791,l3acfaQKSnk,Ulric leads the group into the village suspected of being run by a necromancer. tt1294699,6VeUp8hdqj0,Merlin uses magic to make dragons that will fight against Vendiger and his dragon army. tt1294699,BOKbcDdlAAc,Vendiger disguises himself as Merlin to get information from The Mage and a fight ensues. tt1294699,CnyvrkabX5U,Vendiger reveals that he is Merlin's brother in their fight to the death. tt1294699,dHaZflS9Qag,Uther leads the troops into battle against Vendiger and his dragons. tt1294699,T6ji12DwRQk,The Mage gives Merlin one final lesson before he dies. tt1294699,2CY78EjBHIY,"When newborn baby Merlin is thought to be evil, The Mage steps in and keeps him alive." tt1294699,uV-0kDRYYbU,"Merlin uses his magic to save the people from a dragon attack, but not before The Mage is taken out by a dragon's flame." tt1294699,cNuHBU3DIAk,Vendiger defies The Mage and Merlin gets painful visions of his true father. tt1294699,dbGKS4GQbv4,Merlin is healed by the magical Lady Nimue and learns that he is the son of a god. tt1294699,3WAg9OI2wn8,Vendiger proves he's worthy of joining an army when he demonstrates his control over dragons. tt0109835,klnVwzouc_k,Frank James turns himself in. Cole Younger shares where everyone ended up. tt0109835,wKPbi9oL5xU,Jesse James is shot in the back by Charlie and Bob Ford. tt0109835,4_p4EAmMa-M,"Frank and Jesse go their separate ways. Meanwhile, Pinkerton makes a deal with Charlie and Bob Ford to bring in Frank and Jesse James." tt0109835,8oq28m4uqe8,The Gang robs the First National Bank of Northfield but they are ambushed by Pinkerton. tt0109835,oLJ7246t3-c,Jesse and Zee share a moment on a ferry before they are threatened by Detective Whitcher. tt0109835,Fdq_l2-C1wg,Jesse James goes after the Lone Rider to seek revenge. tt0109835,fi7cppyGPPw,The Cole Younger gang pulls their first bank robbery. Jesse James kills John Sheets. tt0109835,2AoKTalyiUA,"After killing the railroad man, Jesse James and Frank James find themselves on the run again." tt0109835,ukOx2hZvXkE,The James-Younger Gang robs a train and meet Allan Pinkerton. tt0109835,refu69Hu5R0,"Frank and Jesse James relax after a long day, but they cause a little trouble with Annie." tt0109835,Gbvml-bH5Uc,Lone Rider burns the James farm after they refuse to sell the land to the Rock Central Railroad. tt0433412,xqb_BP27cMo,"Over some late night pizza, Ava and Henry get to know each other." tt1221208,Bcdz003oBg8,"While having a night out, Frankie suddenly becomes someone else." tt0433412,8qWfNcUZoW8,Ava and Tanzie end up happy in their careers and in love. tt0433412,Ju6_z5Wx9iY,Ava and Tanzie fail miserably in their interview at an employment agency. tt0433412,lwB834Vz_tA,Ava and Tanzie argue with a hotel receptionist when their credit card is declined. tt0433412,wrRy2TR4WtM,Fabiella offers the Marchettas their every desire if they agree to a business deal. tt0433412,5i-LMWpJ_E0,"Tanzie gives beauty tips in jail, while Henry helps Ava sort out the bail situation." tt0433412,bf0eKlTbGtI,Ava and Tanzie are ruined when a public scandal reveals one of their cosmetics causes permanent damage. tt0433412,ESv_Pi8qlE0,Ava and Tanzie quarrel just before bedtime. tt0433412,O4TI2Nx8RjQ,"Ava and Tanzie meet Henry, a representative from a free legal clinic." tt0433412,LxKahh3H-3U,Tommy proposes selling the company that Ava and Tanzi Marchetta are about to inherit. tt0094321,Ai5tZ8_dQUU,"When Nikki is pulled over by a cop, Louden has a heart attack and is rushed to the hospital." tt0114614,qItvl5cX4-A,"After being captured, Tank Girl offers an ""oil change"" to the guards who watch over her." tt0114614,ZLhyjNnrb6s,Tank Girl goes head to head with with Kesslee tt0114614,jFQAy28o7Kc,"T-Saint and the other Rippers morn for Deetee, after he sacrifices himself to attack the enemy stronghold." tt0114614,_XST7hft6k8,"In celebration for their accomplished mission, Deetee recites a poem for the group." tt0114614,2MxnokvI6c0,Tank Girl is on guard duty but she fails to see the surprise attack coordinated by Water & Power. tt0114614,Zlqovh9U5v0,Rippers interrogate Tank Girl and Jet by gassing them to find out if they're spies. tt0114614,YtktNetGOKU,Tank Girl refuses Kesslee when he offers her a position in his company. tt0114614,Q3n3k6XRQ8s,Young Rebecca tricks Rat Face into thinking she has silver with the help of Tank Girl. tt0114614,Cj80JkVCCpg,Water & Power defends against a surprise attack from the Rippers. tt0114614,bIfMAhK7Boo,"Kesslee has a toast with his military officers for a job well done, but he's not too pleased with Capt. Derouche." tt0094321,a46m8g3grB8,"Nikki stops two car thieves with her animal husbandry skills, but Louden can't get rid of her fast enough." tt0094321,KUMoWS98jXM,Nikki threatens Raoul and Benny and gets them to stop following her. tt0094321,R6nZpcweYXw,Nikki appears at the wedding and accuses the bride's father of murder and embezzlement. tt0094321,1Dvx_8APGEo,Nikki and Louden ride off together in love. tt0094321,ebHQ50ZRvM4,Sparks fly between Nikki and Louden when they get a tour of Montgomery Bell's amorous indoor rain forest. tt0094321,6T_01swH-OY,A ravishing Nikki surprises Louden at Montgomery Bell's mansion. tt0094321,IH8u5eKHNhs,Nikki pretends to be Louden's fianc in front of the co-op board. tt0094321,xm2ztDqbbZE,"Louden follows Nikki's lead to escape from some henchmen and the law, jumping from rooftop to rooftop." tt1221208,ieoN6CC-9ns,"In her final session with Dr. Oz, Frankie opens up about her past." tt1221208,b2jnKIitsx8,"Frankie comes back to the hospital, but she wants to be clear with Dr. Oz if they're going to continue treatment." tt1221208,6JIxbckE6MU,Dr. Oz goes looking for Frankie after she leaves the hospital. tt1221208,tcgo6nFJXmc,Frankie decides to continue her treatment with Dr. Oz. tt1221208,At_y4RGfW4g,"Frankie struggles with her alternate identity, Alice, while putting on face cream. Dr. Oz tries to talk her through it." tt1221208,0W_kwmGYIS0,A song causes Frankie to lose control of herself. tt1221208,1Y11eIVNgQA,Dr. Oz tells Frankie about her schizophrenia. tt1221208,mBAPx0F4e4k,"During one of their sessions, Dr. Oz meets Frankie's other personalities, a child genius and a southern white lady." tt1221208,JkC83ugjyNw,Dr. Oz sees some inconsistencies when going over Frankie's medical history. tt1221208,OppcXf2Vp6g,Dr. Oz tries to explain to Frankie what is happening to her. tt1221208,-45cXUSpOw8,Frankie meets Dr. Oz. tt0094321,txQcaXvbRB8,"Louden Trott picks up Nikki Finn when she's released from prison, but it's him that gets taken on a wild ride." tt0399901,Xh8fDMTvNew,Todd reveals his feelings for Michelle. tt0399901,tvxi9MyoiGE,Michelle attends the church revival. tt0399901,VAb8s41LLCs,Michelle takes her anger out on Reggie. tt0399901,WOSAa_l3azw,Cassey questions Reggie about what happened to her daughter. tt0399901,9y7hXwrVgpY,Cassey asks Reggie for the the truth about his past. tt0399901,im_-maHhOew,Michelle interrupts Cassey in the prayer room. tt0399901,_EPtenKdrDc,Todd sits next to Michelle at the revival. tt0399901,-GThoBQbPjI,Young Michelle meets Reggie for the first time. tt0399901,ctDyR3Nosis,Young Michelle tells Cassey what Reggie did to her. tt0399901,OUztRf_TSHE,Cassey gives Reggie an ultimatum. tt0399901,VBahsJrr01E,Bishop Jakes visits Michelle in prison. tt0111301,sjZ5I8l32CI,"Now a slave held in General M. Bison's private chambers, Chun-Li Zang recounts how her father was killed only for Bison to dismiss her pain in the most casual way." tt1155076,Pt6VzQ_0k_I,"Dre faces Cheng for one last point on his bad leg, and wins." tt1155076,QhZbpE7mdoU,Dre and Meiying have a dance-off at the arcade during a fun day together. tt1155076,DVR6p7Iopec,Mr. Han and Dre train harder than ever in preperation for the big tournament. tt1155076,IvAjNuhubIM,Dre loses a point and wins two points in his fight against Cheng. tt1155076,G6f0w5BRasw,"When Dre wants to quit, Mr. Han shows him how his jacket training has actually helped him learn some kung fu moves." tt1155076,5bWanpZTnSQ,"After Mr. Han tells Dre about his family's car accident, Dre tries to help through training." tt1155076,0pRYoClF9w4,Meiying and Dre share a romantic moment at the Qixi Festival. tt1155076,5WT1QRZ2z6A,Master Li forces his student to break the rules and hurt Dre badly. tt1155076,E-wr7dD1n5w,Mr. Han takes on Cheng and his friends in order to stop them from beating up Dre. tt1155076,8INjmc-WWSY,"Dre thinks kung fu training will be a breeze, but learns quickly that Mr. Han's methods are not what he expected." tt0111301,FoiZPbPUnlc,"Colonel William F. Guile, Chun-Li, Lieutenant Cammy and the rest of the team all celebrate as they watch Bison's base fall to ruins." tt0111301,CWwcW-iuP6c,Ryu and Ken take on Sagat and his henchman Vega. tt0111301,FKeJtRtug4Q,"During a raid on General M. Bison's headquarters, Colonel William F. Guile and Bison finally face off against each other." tt0111301,lPFulJcbm0c,Colonel William F. Guile finally defeats General M. Bison despite his advanced weaponry. tt0111301,8jIPR2QUl_k,Chun-Li attacks General M. Bison in his private chambers. tt0111301,CXOjc3b_FZ8,General M. Bison uses his defense systems against Colonel William F. Guile and his armored boat. tt0111301,hY6HUmWzaO8,Colonel William Guile is told that the invasion of Bison's base is cancelled and a ransom will be paid instead. tt0111301,rjc3Et5D-2w,"Con men, Ryu Hoshi and Ken Masters, lead a prison break and seemingly kill Colonel William F. Guile in the process." tt0111301,LNPf_P9svHQ,"Chun-Li Zang, Balrog and Honda infiltrate General M. Bison's base and blow up his weapons." tt1458175,pFXW-7VNngk,"When John tells Laura they don't have enough time to get their son, she makes a drastic decision." tt1458175,NBY0l7A2uLA,"John Brennan has some difficulty freeing Lara from police custody, and it only gets worse with Lt. Nabulsi hot on his trail." tt1458175,1zi4R4EklsI,"John visits the despairing Laura in prison and tells her he believes in her innocence, no matter what she says." tt1458175,QIIE8CobvEU,"John, Laura and Luke have escaped to Venezuela. Meanwhile, Detective Collero and Detective Quinn have an epiphany." tt1458175,QP3Pzr7UFE4,John runs into a snag when securing fake passports from Mouss. tt1458175,LbCGyHkR0ko,"John tests his bump key, but runs into major trouble." tt1458175,SVQDD7TK-qA,"Desperate for cash, John attempts to rob Alex, a drug lord, but it doesn't go like he planned." tt1458175,df2QdWqKC6Q,Damon teaches John Brennan how to break out of jail. tt1458175,X6keMEfkZok,"When John brings Luke to visit his mother, in prison, she realizes the ever-increasing gulf growing between them." tt1458175,mCsu9hGvNEc,A normal morning becomes a nightmare when Lara gets arrested in front of her husband John and her son Luke. tt0460810,qjl77Gp88RM,The mentalist/hypnotist Buck Howard is very angry because Jay Leno bumped him from performing on The Tonight Show. tt0460810,xerkgvDm4Ig,"After accomplishing a world record for mass-hypnotism, Buck Howard enjoys his new fame all over television." tt0460810,LRGzyb7-EeA,"Buck Howard performs his biggest show in Las Vegas. During the finale when he performs a ""find the hidden money"" trick, he fails for the first time in his career to find the money." tt0460810,VeGtHpQzC6I,"Troy has breakfast with his father to discuss Troy's career plans. Troy wants to be a writer, but his father wants him to do something more lucrative and practical." tt0460810,RPXI3xQ2aus,"During his job as a road manager, Troy endures difficult moments with Buck Howard and his quirky behavior." tt0460810,aaaPoObIxrM,"As part of the show's finale, Troy watches Buck Howard try to guess where money is hidden amongst the audience as part of a trick for his stage show." tt0460810,ueC2ZLsV5DI,"Buck Howard achieves a world record for mass-hypnosis. Unfortunately, the press does not cover the event because they leave to cover a car accident elsewhere." tt0460810,dmfgNHfdn8U,"Buck Howard performs a magic trick on the local news, but it fails, and he throws a temper tantrum from his embarassment." tt0460810,8_2tkIqD3Io,The once famous mentalist stage performer Buck Howard interviews Troy to be his road manager on his next tour of shows. tt0460810,pQZkA0jRiKo,"Mr. Gable finds out that his son Troy is not attending law school, but is working as a roadie for a stage magician and hypnotist Buck Howard." tt0486358,rgd8TC1Q09g,Rachael talks about dead churches and why God isn't present in them. tt0486358,xXi-6s-qrQM,Levi explains how the Holy Spirit comes through him when he's preaching to a group of children. tt0486358,r8swYmKUGJ0,Levi explains to Becky Fischer about how he became a Christian. tt0486358,_Vyg1SVaZu4,Mike Papantonio speaks with Becky Fischer on his radio show about pushing Evangelical Christianity on children and the effect it has. tt0486358,F55uFHs0d-o,Tory explains why she enjoys Christian music as well as what she tries to represent when she dances. tt0486358,oP07gJASrGg,Levi's mother teaches him about global warming and Creationism based on Evangelical Christian beliefs. tt0486358,gSsaIqwGR1E,Mike Papantonio discusses why some children are not taught about global warming in school. tt0486358,YxQJTlFyebM,Rachael talks to a woman at the bowling alley about God and discusses her views of Christianity. tt0486358,cNMRDmf3000,"Becky Fischer preaches to children about acting different at school versus when they are at church, calling them phonies and hypocrites, and telling them they need to be washed." tt0486358,NLfY3XAZ6c0,Mike Papantonio takes a caller on his radio show and discusses the new way religion is viewed with politics. tt0944835,PpxLYsi1Yk4,"After she's arrested, Salt chokes Ted to death." tt0944835,BQl4CNHsgvc,Salt kills Orlov and destroys his training facility. tt0944835,ZMlGZcr95To,Salt stops Ted from launching nuclear missiles and is subsequently arrested. tt0944835,k7_V-3ApEiM,Orlov has Salt's husband killed in front of her to prove her loyalty. tt0944835,dry7kY2BMlk,"While Salt tries to get to the President, the nuclear codes are activated and Ted reveals that he is a Russian spy." tt0944835,N_ooI6Wa0H0,Salt flashes back to her childhood and then escapes police custody. tt0944835,fC1zzL9DjdU,Orlov tells the CIA about an assassination plan involving a Russian spy named Salt. tt0944835,NY9q_Vfbi5Q,Salt shoots the Russian President before Peabody can stop her. tt0944835,wTGRsKLqkGM,"Salt jumps from truck to truck on the freeway, steals a motorcycle and successfully evades the agents chasing her." tt0944835,sGLXpKnQfSs,Salt makes a missile and shoots it at the agents trying to prevent her escape. tt0113855,uuTeJ6tbyB4,Frustrated action star Johnny Cage is invited to Mortal Kombat. tt0113855,i_uA0oZ3xnI,Liu Kang is attacked by Reptile while in the Outworld. tt0113855,KsYil1zPabA,"Lui Kang, Johnny Cage and Sonya Blade get into a fight with Shang Tsung's warriors only to be saved by Raiden." tt0113855,_AYtVmu9BkM,Sonya finally gets her revenge on Kano. tt0113855,qXKeIDlP-ys,Liu Kang accomplishes a flawless victory over Shang Tsung. tt0113855,YaUe_zBgQ9I,Sub-Zero challenges Liu Kang. tt0113855,q_v3jNjwHNQ,Johnny Cage and Scorpion engage in mortal kombat. tt0113855,mR0c0i1bCCM,"Goro has a sudden fall in his fortunes, thanks to Johnny Cage." tt0113855,zuqEfWjAAEM,"Liu Kang, Johnny Cage, Sonya Blade are welcomed to Mortal Kombat." tt0113855,xlAwSNbAY8E,"Liu Kang, Johnny Cage and Sonya Blade meet Shang Tsung, Scorpion and Sub-Zero." tt0397044,gHluHS9kX5A,Zen continues to battle through No. 8's men until she catches up with No. 8 and throws him off the third story of a building to his death. tt0397044,5NuvfSWbggc,"Zen's father, Masashi, makes it to the battle, but while he and Zen are fighting, No. 8 takes Zin hostage." tt0397044,tqTDKWhqvn4,Zen takes on No. 8's henchmen. tt0397044,CQ0Bt9PxosE,"Zen takes on No. 8's son, a fighter with Tourettes syndrome." tt0397044,uKtbfkmIT-A,"Zen fights through many of No. 8's crew, but he still takes Zin hostage." tt0397044,qPVePtS52Gc,Zen continues to use her fighting skills to collect old debts. tt0397044,8_4rJG5TmBg,Zen takes on a group of factory workers. tt0397044,N7CWWZi58bI,"Zin goes to confront No. 8 to save Moom and try to reach a solution, bringing Zen with her." tt0397044,x_-G1IuNv-o,Zen uses her martial arts skills to collect old debts owed to her sick mother. tt0397044,pfPBf3mKwFc,Zen and Mang Moom create a street performance act that displays Zen's amazing reflexes. tt1462758,TDsPAXyCA9A,"With little time left to live, Paul records a video for his last will and testament." tt1462758,3R7OdK-F91c,"While Paul is on the phone with Brenner, the area where he's buried gets bombed." tt1462758,RIzrkbF1-SU,Paul gets a gruesome video of his coworker Pamela sent to his phone. tt1462758,9LqrBRqFxmk,"As the coffin fills with sand, Brenner tells Paul help is on the way." tt1462758,HwZeiTzih4Y,"As the coffin breaks, and slowly lets in sand, Paul comes to the realization that he is going to die." tt1462758,1_CfcecGCVA,"Paul calls back a number on his phone looking for help, but the man who answers turns out to be his captor." tt1462758,bwj9ig-venA,Paul makes a ransom video to save the life of his colleague who has been kidnapped. tt1462758,dhNjb67EpIU,"Paul has to deal with a surprise guest in the coffin, a snake." tt1462758,wIC34lZi_NU,Paul calls the nursing home to talk to his mom for one last time. tt1462758,RN-F41EZQK0,Paul gets a call from his captor and is ordered to make a ransom video. tt0478188,8tdYFT9BIuE,"Just as Ed is about to be sacrificed by the natives, a giant ape attacks and spoils the cermony." tt0478188,FNX19RFNdGk,"As the group looks for a way to re-establish communication with the mainland, Lt. Challenger must fight off a native before he can dismantle the warhead." tt0478188,DlkXnN0cENI,Ed uses the nuclear bomb to finish off the giant ape. tt0478188,GcgIg6HEB7E,Lt. Challenger shows Ed the only way to kill the giant ape. tt0478188,guEyoPzTkQw,John rushes back to the cave to save the group from a pack of killer scorpions. tt0478188,lHgEqIvG14k,The group is attacked by another creature of the lost world: a man eating vine. tt0478188,mjbU4wy8VwE,Sumerlee and Ed learn that Lt. Challenger was sent to disarm a nuclear warhead. tt0478188,t5nPC50ST0A,A plane crashes on a distant island where the survivors will have to deal with more than mother nature to survive. tt0478188,Jey2YsDSyoI,John organizes a party to find the plane's radio and search for any remaining survivors. tt0478188,QqmSUjxUg1M,The group finds out just how dangerous the lost world can be when they cross paths with a giant spider. tt0305357,EYHLDJuEUoc,"While at a stakeout on the beach, Natalie meets the legendary Angel, Madison." tt0305357,t-t8eVDckH8,The Angels chase down a criminal in the midst of a motor bike race. tt0305357,bn_Df5UNy3s,The Angels do a striptease and use their powers of seduction to distract a thug and steal valuable information. tt0305357,XeGGNf_-nYM,The Angels investigate the history of the Thin Man at his old orphanage. tt0305357,jMvR4K4QICQ,The Angels take on O'Grady and his gang in a showdown for the precious rings. tt0305357,i6oNzS6kCR8,"Right before Pete asks a very important question, Natalie gets trapped in a bundle of balloons and bursts into a dance routine." tt0305357,cjy-8dXBljk,Alex and the other Angels use a flame thrower to escape O'Grady's clutches. tt0305357,0ACTvENkyD8,The Angels defeat Madison and send her to hell. tt0305357,fUKoBAi7qCg,"The Angels square off against Madison, O'Grady, and the Thin Man on an LA rooftop." tt0305357,vF-tPvPAqhQ,Madison shoots all three Angels and retrieves the rings. tt0338216,rpy7vhvX8jw,"Huck asks his friend Jack, a con man behind fake 1-900 numbers, for a loan." tt0338216,9n23ISvkbFQ,"Despite having the winning hand, Huck folds to his Dad, L.C. Cheever." tt0338216,4NGNbrLnvhA,Huck makes a bet with Ready Eddie that he can shoot a 78 for 18 holes in under three hours. tt0338216,6rGBqovePfY,"At the World Series of Poker final table, Huck takes out Ralph Kaczynski" tt0338216,DHnwNo7Z6Ts,"Billie walks away from Huck after letting him know that she will never ""lie, cheat or steal"" for anyone." tt0338216,_r6i8Ae0cvo,"Father and son, L.C. and Huck, play heads-up poker where the monetary stakes are considerably higher." tt0338216,Y0uLpcThaeU,"Huck and Billie encounter Lester, a gambler who loves action so much he got breast implants to win a bet." tt0338216,sqZ6ZrVIemM,Huck teaches Billie how to play poker. tt0338216,DEcY6WXL6_Y,"At the poker table, Huck Cheever bluffs out a Card Grabber Sharkey." tt0338216,vwbryjr2BKg,Old family rivalries emerge between Huck and his father L.C. as Huck risks his mother's ring. tt0104438,G9D_0pXaM68,Jack parachutes into Vegas to win Betsy back from Tommy. tt0104438,zjm_GqK-Kmo,Jack proposes to Betsy. tt0104438,BW1kpbOz5Eo,Jack is stunned to realize that he's onboard a plane with the Flying Elvises skydiving troupe. tt0104438,rx4sKoITt-Q,"With Jack desperate to find his fiancee, Chief Orman shares a drink and a show tune." tt0104438,iz3ETniN1NI,Jack has trouble with the local tongue; Tommy deceives Betsy. tt0104438,m4SWkyqSFxM,Jack erupts at an irritating airline customer. tt0104438,FZlm1ledK-I,"Jack puts everything on the line for a poker hand, but Tommy stuns him with a Queen-high straight flush." tt0104438,ElBy0fKa9Ic,"When Betsy learns of Jack's bargain with Tommy, she melts down in the casino." tt0104438,9tli2kwH5mY,"Parting ways for the weekend, Jack and Betsy trade heated accusations." tt0104438,T3zIklxWw44,Tommy makes Jack an indecent proposal: He'll wipe out Jack's poker debt in exchange for a weekend with Betsy. tt0104438,0CYdSfhwWVY,Jack's nutjob client believes his wife is sleeping with boxing champ Mike Tyson. tt0104438,IS-TH-YQbL8,"As she slips away, Jack's mother expresses a dying wish: that her son will stay single forever." tt1235796,gpLzES4A7zY,"Ondine explains that she is not a magical creature, just a very lost woman." tt1235796,ic7g820jOqI,Syracuse tells his priest that he is afraid that Ondine will bring something really good... or really bad. tt1235796,nzglM3ROd_8,"Ondine teaches Annie how to be comfortable in the water, but then finds something that belongs to her." tt1235796,bp0aVPeUCrY,Ondine and Syracuse make love. tt0460740,6FxHQNSukfM,Ben is hired to work the night shift at Sainsbury's. tt1235796,dTQORe5M1tY,Syracuse is boarded by the fishery inspectors and they find Ondine hiding in the hull. tt1235796,H85jp6COWak,Syracuse takes Ondine fishing and once again experiences a huge haul. tt1235796,LFg8eGuhlak,Annie interrogates Ondine who she believes is a magical selkie from the ocean. tt1235796,u6YtIOaN264,Syracuse finds a beautiful woman in his fishing net. tt1235796,T4v_27FwSbc,Syracuse has good luck catching lobster when the mysterious woman called Ondine sings. tt1235796,d6N8yKrG2Ps,Syracuse confesses to his priest that he is in love with a woman from the sea. tt0460740,DBooQQKsDac,Ben experiences his first real break-up. tt0460740,czLSpZb6aWo,Ben has severe insomnia due to his breakup with Suzy. tt0460740,L6Z80A-avdA,Ben freezes time in his imagination and observes the people in the store. tt0460740,IJe-gy5sR6I,Ben shares what work is like on the night shift. tt0460740,AapjOgixmfQ,The guys at work meet a new employee who is a martial artist. tt0460740,5GZbCRzKoTQ,Ben and Sharon get to know one another and their dreams of the future. tt0460740,c5ZISrFKFP0,Young Ben misses his first kiss with Tanya. tt0460740,HHc1myygH_A,Ben draws Sharon endlessly and realizes that she loves him too. tt0460740,gS5vt3ZE-jI,Sharon comes to Ben's art show and realizes how much he loves her. tt0286716,zha1tYGnAC8,"While Bruce Banner and his father, David Banner, are being held by the military, David reveals his inner monster." tt0286716,9j3KAnX0Nhk,Hulk appears to finally be defeated when General Ross attacks him with four well armed helicopters. tt0286716,qe8IY41zyCc,The Hulk comes face to face with some tanks the military has sent to stop him. tt0286716,NpoB6-TCGWw,The Hulk escapes from a high level military base despite the efforts of General Ross. tt0286716,uSZi8oPRUkE,"While being experimented on by Talbot at a military base, Bruce transforms into the Hulk and starts destroying everything." tt0286716,5jv7TlhbjAQ,David Banner experiments on himself after seeing what his son became. tt0286716,uEMTQYe1ro0,The Hulk arrives at Betty's cabin to defend her from three mutant dogs that his father created. tt0286716,Hj9q4NlwcXo,"While stressed and frustrated with everything going on in his life, Bruce Banner transforms into the Hulk for the first time and destroys his lab in a fit of rage." tt0286716,7ZUVMim8ebM,"Due to an accident in the laboratory, Bruce Banner gets blasted by gamma radiation while Betty Ross watches from another room." tt0286716,YdcWFWm4n6g,"Upon finding out that Betty is in trouble, Bruce Banner attempts to go save her but is blocked by Talbot." tt0352277,v2qDlGbaqSQ,"Cole Porter sings his love to Linda, who is dying." tt0352277,q6j_0vS_NNM,Cole Porter listens to his song and misses Linda. tt0352277,NWvUNDAsYqE,Bobby Reed blackmails Linda by threatening to expose photos of Cole in a compromising position with a man. tt0352277,SUKdlcCiE60,Cole tries to explain his extra-marital affair. tt0352277,ECirl_sSf-M,Linda tells Cole that she lost the baby. tt0352277,mM5dRMY2u28,"Cole Porter teaches Jack how to sing ""Night and Day"" with the passion behind its inspiration." tt0352277,aiJtAU0V_60,Cole and Linda talk about happiness and intimacy. tt0352277,UkH65BsZg_g,Cole Porter sings his love for Linda on a date in Paris. tt0352277,Oui5yj3OvxQ,Cole Porter rehearses and puts on one of his biggest hits. tt0077294,fQEGMNLTYPs,Brubaker and Caulfield are chased by the black helicopters through the desert. tt0077294,AZ0AsuZu4ds,"Dr. Kelloway explains to the astronauts how big the conspiracy has gotten, and threatens their families if they refuse to comply." tt0077294,jPH8I5QWFUU,"As the military agents attempt to capture Brubaker, Caulfield rushes to rescue him." tt0077294,S9EIFSWUoOc,Caulfield tries to hire the fiery Albain to search the surrounding area. tt0077294,35FF7e1-zCg,Caulfield tries to explain to his editor that he's on the verge of a big scoop. tt0077294,aVHgGXnna94,Charles and the other astronauts make their escape after realizing the world believes they are dead. tt0077294,ok6H1OFTmyA,Willis recounts an old joke while climbing up the rock face. tt0077294,d5Pc-tNsvT4,The astronauts are quickly taken off Capricorn One minutes before launch. tt0077294,Vx3I6XjqCho,"As Caulfield is driving down the street, he loses control of his car when the breaks stop working and the car won't stop gaining speed." tt0077294,UDq-H6B36g8,Dr. Kelloway reveals the Mars landing studio to the astronauts and explains the cover-up. tt0077294,2LhsuPLvtFk,Brubaker and his fellow astronauts fake the Mars landing while the world watches on. tt0055031,o9dLO77OSao,Hans Rolfe & Col. Lawson argue. Col. Lawson objects to the line of questioning. tt0055031,TyS98_jQIA0,Judge Haywood prepares to give his verdict. tt0055031,jRSw_0zpNE8,Dr. Janning and Judge Haywood speak after the trial verdict. tt0055031,SfMSiaxLslA,Hans Rolfe claims Dr. Janning stayed in his position of power to prevent worse things from happening. tt0055031,ptJ8x9AERwA,E. Hahn & F. Hofstetter defend themselves claiming to have upheld the law as it was written. tt0055031,lbqDuUjm4aU,"Hans Rolfe argues that anyone who ever supported, praised, or profited by Hitler is guilty, not only Germany alone." tt0055031,9_yf1HCH5CY,Dr. Wieck explains the changes made to the German judicial system. tt0055031,ALfuWSv9YVc,"Dr. Janning explains how the German people did what they did, believing it was temporary." tt0055031,4HB9b-ttI3I,Judge Haywood is shown his lavish apartment by Captain Byers and tries to downplay formality from his subordinates. tt0055031,di3Xh95aXp8,The prosecution gives its opening statement about the atrocities of the accused. tt0055031,WfCufFRo-hU,German judges are in disbelief that they could have condemned so many to die. Pohl explains how the Nazis killed millions. tt0053946,TSCcj7mYuhc,Drummond examines a student and pursues a line of questioning to show that an individual's very right to think is being threatened. tt0053946,v757jrOBkng,"When Hornbeck calls Drummond a hypocrite for believing in God, Drummond rips into him for believing in nothing." tt0053946,FRhbIIkLlFI,"Brady gives his impassioned speech, but no one listens. As he finishes the speech, he drops dead." tt0053946,3l3rJxuxpDo,"In the privacy of his home, Brady breaks down to Sarah." tt0053946,EsTniU7j_yw,"Drummond debates Brady on man's power of reason, and therefore, his privilege to think." tt0053946,8YUnOHihAU0,"When Drummond makes an impassioned plea to the court to stand up against fanaticism and ignorance, he is held in contempt of court." tt0053946,oqQGFh5yiWE,"A guilty verdict is delivered and the sentence is $100. Brady wants to read his speech, but the court is adjourned." tt0053946,IYfuTlTiixA,"Drummond belittles Brady with his own words, making him look prideful and foolish." tt0053946,FQLXXM-nktc,"In a highly irregular move, Drummond calls Brady to the stand as a witness for the defense." tt0053946,nepc-GLWtfc,Drummond excuses a potential juror who makes no attempt to hide his personal bias. tt0053946,FYDEheLGrKw,"Drummond arrives in Hillsboro and meets his old friend, Brady, who he will soon be fighting in court." tt0053946,vYtc_bS47oM,Cates is arrested in front of his class for teaching evolution. tt0061418,xjdKPS6-8XU,Bonnie reads a poem to Clyde that she wrote about the two of them and their crime spree. tt0061418,21b9Nr4VIcI,Clyde leads the now complete Barrow gang on a bank robbery. tt0061418,IL-_pNnEuk8,The Barrow Gang takes a young couple hostage and gets friendly with them. tt0061418,wjVPv5aO_no,The police ambush the Barrow Gang hideout and Blanche flips out. tt0061418,2GM0LKQ-ml0,Bonnie Parker and Clyde Barrow show compassion to a farmer who lost his property to the banks. tt0061418,Pb1N5TcA5to,Bonnie and Clyde rob a bank and C.W. Moss makes a stupid move and parks the getaway car while waiting for them. tt0061418,SLC0omm3N98,Bonnie and Clyde recruit C.W. Moss into the Barrow gang. tt0061418,FS3hFDdeX30,Bonnie Parker is having a restless afternoon until she catches Clyde Barrow trying to steal her Mama's car. tt0061418,9smHLhj75CU,"Bonnie Parker pressures Clyde Barrow to prove his ""gumption"" by robbing a grocery store." tt0062765,h7NG9ZEfyKo,The real Ross jumps out of his airplane and Bullitt chases him around the tarmac. tt0062765,tRx8N7mJU9g,Bullitt barely makes it out alive during this dangerous high-speed car chase between his 1968 Ford Mustang GT and the 1968 Dodge Charger R/T being driven by the hitmen. tt0062765,t-5usV6m4J4,"Ross defies his witness protection rules by letting in a bad guy and gets shot, along with Stanton, the officer protecting him." tt0062765,sWCQm58jJsk,Chalmers grills Bullitt about his apparent failure with the witness protection job. tt0062765,ik-n-L9UNTY,Bullitt chases someone who might be out to kill Ross. tt0062765,0xHe1zkABYo,Chalmers tries one last time to convince Bullitt that this situation could make their careers. tt0062765,Ovyfd29a1ik,Bullitt is forced to give up the whereabouts of the dead star witness. tt0062765,cWiljyh4NR4,Cathy wonders aloud how the violent nature of Bullitt's job will affect their relationship. tt0062765,no7XR7s8Z7o,"Bullitt refuses to back down when the Charger trying to follow him takes it up a notch, leading to a chase through the streets of San Francisco." tt0062765,MmtvzIGaH1I,Bullitt has to shoot the real Ross as he flees the airport. tt0032599,GrCmVFX9tyQ,"Earl appears at the press room and pulls a gun on Hildy, who disarms him and talks him down." tt0032599,x-_17t-v9dA,"When the reprieve arrives, Walter and Hildy are exonerated." tt0032599,_4EkJkuiwIg,Mrs. Baldwin returns to accuse Walter and Hildy of harboring a fugitive. tt0233277,OPuOk309lSE,"After being rejected by Lizzie, Stephen is heartbroken. Geradline manipulates him into stealing the key to the Secret Garden." tt0032599,9tHwS5Ymvag,Hildy calls Walter with the story of the prison break. tt0032599,WsaXEsBV6b4,Hildy calls Walter to tear up her interview and bid farewell to the newspaper game. tt0032599,rz2FxTVVJi4,Walter convinces Hildy to stay in town and finish the story. tt0032599,e5cg1EeFISo,Walter hires a poet just to keep him out of the press room. tt0032599,m8lzyaMZ-mA,Walter and Hildy reunite several months after their divorce. tt0233277,sbIfW_Pf9vk,"While having a tea lesson in the Secret Garden, Lizzie is taunted by Robert." tt0032599,FN3SPnr9EZg,Hildy introduces Walter to her fiancee Bruce. tt0032599,Eom_iOkd0-I,Walter joins Hildy and Bruce for lunch. tt0032599,gA3wJRuClks,Hildy bribes her way into a jailhouse interview with convicted murderer Earl and convinces him to change his testimony. tt0032599,v8UDjwdqzKY,Hildy breaks the news to Walter that she's getting married tomorrow. tt0109279,V32SkmBB1KU,"While at a fair, Joe recognizes his old friend Beauty." tt0109279,cBFrfA6TrB0,"While working, Beauty sees Ginger, who is also a cab horse. Little does he know, it is the last time." tt0109279,iga0_T5B8dU,"Lady Wexmire forces Beauty and Ginger to wear painful bearing reins. Until one day, Ginger has enough." tt0109279,SXVUCgoOcfs,Black Beauty and Ginger are caught in a stable fire. Thankfully Joe arrives to save the day. tt0109279,V-mlZvBRoOQ,"After being sold to Jerry Barker, Beauty finds hope and kindness in the Barker family." tt0233277,VZM1S9VcjAM,Lady Mary meets Lizzie Buscana and tries to convince her to come to England. tt0109279,zeV1-Ito9HM,"Joe leaves Beauty and Ginger at their new home, Earshall Park, with a tearful goodbye." tt0233277,gQ5KDSBMFRU,"When Martha realizes that Lizzie can see the secret door, she gives the key to the Secret Garden to Lizzie." tt0109279,Km2lbJKGAqA,"Due to Mistress Gordon's ailing health, the Gordons must move and say goodbye to Beauty and John." tt0109279,tkWWtYRbnq8,"With the help of oats, Farmer Grey starts training a reluctant Black Beauty to be ridden." tt0109279,Go55LztXeQA,"Black Beauty, Manly and Gordon run into trouble on a bridge coming home from town." tt0109279,q5RSKejDWo8,"Beauty meets his new family, Squire and Mistress Gordon." tt0233277,xcc3vzgR9QQ,"After Lady Mary leaves the key to the Secret Garden with Martha, Martha becomes quite distraught when she can't find the door." tt0233277,s3mwDA8sv8I,Lizzie helps Ms. Sowerby remember the fact that the Secret Garden in fact is a children's garden. tt0233277,DV5EHuaa23c,Robert makes fun of Lizzie and her affection for the Secret Garden. tt0233277,tD9DfbbK6OE,Lizzie lets all the other children play in the Secret Garden. tt0233277,w-6lVMklaKY,"When coming back from the Secret Garden, Lizzie sees a fire in Robert's bedroom." tt0233277,QqQYNj15OfI,Lizzie finds out that Steven threw the key to the Secret Garden in the lake. tt0233277,rNP5uIQxAfY,Lizzie taunts Robert about sneaking into the Secret Garden. She also recieves a package from Lady Mary containing a clipping of her mother's roses. tt0233277,ulALOA2LeNw,Lizzie breaks into the Secret Garden at night only to see that it's dying. tt1895587,AH4E6mdxZDw,Phil Saviano is frustrated with Robby and the team for not covering the priest abuse epidemic enough in the newspaper. tt1895587,csRJ-T2LNI0,The priest story is a great success and the spotlight team gets tons of calls from victims coming forward about their abuse. tt1895587,4pUi3hbXF2c,Mike is furious when Robby decides to wait longer before pushing the story. tt1895587,5Abq-DZrjB0,Mike jumps through hoops to access public records on the Geoghan case and then reads the damning files to Robby. tt1895587,8ilbyubEDhM,Garabedian tells Mike about public confession documents that the church has hidden. tt1895587,ogW6YDmEb1M,"Robby looks for answers at his old high school about alleged abuse claims, but Jack and Pete seem to want to keep things quiet." tt1895587,k60eGmxn7Rk,The team interviews Sipe and learns that there are probably 90 priests abusing children in Boston alone. tt1895587,CW2M1ZyYArk,"When Matty and Sacha interview abuse victims, Sacha gets an oddly casual confession out of Father Paquin." tt1895587,f5RQrcIrlBA,Patrick and Joe relive painful memories of the abuse they received from priests. tt1895587,kGQbCYm2kx4,Mike interviews Patrick and Sacha interviews Joe about the abuse they received from priests. tt1024648,d9TdwetEIQ8,"Iranian soldiers chase the airplane containing the six Americans, but the plane takes off and the Americans successfully escape." tt1024648,79WfcpXDbg4,"At the last checkpoint at the airport, Iranian officials question the six Americans about Argo and ultimately let them go after confirming the film with Chambers." tt1024648,EqFFgltjVbg,The CIA rushes to approve Tony's flight reservations for the six Americans. tt1024648,BleQjp9zglY,"Jack scrambles to get the Argo operation underway again after Tony informs him of his intent to proceed, against direct orders to the contrary." tt1024648,t2NytKIhd68,"When the six Americans pose as Canadians at the bazaar, tensions run high amongst the Iranians. Meanwhile, the Canadian embassy maid Sahar is questioned." tt1024648,5A98txE5nno,The CIA grants Tony's proposal to proceed with Argo and Tony gets dropped off at the airport on his way to Iran. tt1024648,PiMWCFay_sE,Tony discovers the script for Argo and Lester works on convincing Max to give him the option for it. tt1024648,Td_5-DJdFQM,"When Iranian protestors take Americans as hostages, six escape the embassy." tt1024648,8j4k-10bZC0,"A riot occurs outside the United States embassy in Tehran and when the protestors break through the gate, the Americans inside are worried for their safety." tt0810819,5qKySTAWpiY,"After a difficult and lonely night, Gerda begs Lili to bring back Einar." tt0810819,8Cyv7f65bbY,The doctor prepares Lili for her last surgery and Gerda wishes her luck. tt0810819,PXMASW5YQl8,"Lili is finally a woman after her vaginoplasty, but dies due to complications from surgery." tt0810819,C-FH-TOuFpQ,Einar tells Gerda about his affair with Henrik. tt0810819,JyEYiaZW3Ok,"Lili introduces herself to Hans, who was expecting to see Einar." tt0810819,TSclZRaacyA,"Dr. Hexler tries to treat Einar, but comes to the conclusion that he is insane." tt0810819,ejD-W0F0hr8,Einar poses as a woman for Gerda's portrait. tt0810819,8p6L3Vl8ezA,Lili gets a nosebleed after kissing Henrik at a party and Gerda helps get her out. tt0810819,2hcGeToc17I,"Gerda helps Einar prepare for a party, at which he will be posing as a woman." tt0810819,5Ackdv3pgmU,Lili is disturbed when she finds out that Henrik knows she is Einar. tt0048545,Uk1MJFwGMjI,"Jim lures Plato out of the planetarium, but the police shoot him before they find out the gun isn't loaded." tt0048545,ntnqp7-SG7k,Judy apologizes to Jim for her behavior. tt0048545,1AlMY9fDHu0,Jim participates in the Chickie-Run against Buzz and Buzz loses. tt0048545,7014C_6ABAg,Jim confronts his mother about her excuses and demands that his Dad stand up for him. tt0048545,_RHrQlqoTTA,Jim is ashamed of his father and Judy doesn't understand why her father doesn't want her to kiss him anymore. tt0048545,vJv647j5Ig4,Jim and Buzz get into a knife fight at the planetarium. tt0048545,hoKvbJSMShA,"Jim offers to give Judy a ride to school, but she declines and goes with her friends instead." tt0048545,_EpizUY_las,Jim confides in the police chief about his embarrassment for his father's passive behavior. tt0048545,UBOcWFBBB04,Jim is fed up with his parents' constant fighting. tt0048545,8JhRzlsZPas,Judy cries to the police chief about her cruel father and why she was wandering around at one o'clock in the morning. tt0049730,dc8glsGbIus,Ethan and the rangers engage in a shootout with Scar and his tribe. tt0049730,jTz_VNAGqog,Martin mistakenly buys a Native American wife. tt0049730,8Wgkpfa5HMw,Ethan and Martin discover the horrific aftermath of a Native American raid on the Edwards family. tt0049730,S6iFW-HoFwc,"When Ethan shares the terrible news that he found Lucy's body, Brad rides into the desert and gets himself killed." tt0049730,KAByPJJecxQ,"When Debbie comes to Martin in the desert, he must protect her from Ethan. Then, they are ambushed by Native Americans and Debbie is recaptured." tt0049730,99IRJoGX238,Martin and Charlie come to blows over their love for Laurie. tt0049730,rZpeepxXh7I,Ethan shoots out the eyes of a Native American corpse. tt0049730,5_j3NrcDiS4,"After many years away, Ethan returns home to his family." tt0049730,KvfIsbhIQLA,"Ethan carries Debbie home to the Jorgensen's ranch, but does not enter himself, choosing instead to wander back on the frontier." tt0049730,IC-u2-aQXS4,"Martin, Ethan, and the other rangers rescue Debbie from her Native American captors." tt0475290,xKaCxkf1Ccs,"Hobie keeps Carlotta entertained on their night out together, until they run into the Thacker sisters." tt0475290,S64LeYg3Tg4,"After getting advice from his priest, Eddie decides to keep working in the movie business." tt0475290,G629a_3MkkI,Laurence tries to teach Hobie how to act in his scene. tt0475290,N9v6VJLZ8_I,"Baird tries to give an outstanding performance, but messes up on a line." tt0475290,uSMxnpecSZM,Burt performs in a musical number about going out to sea with his sailor pals. tt0475290,mqhpZ30uNic,Burt catches a submarine back home and his Communist supporters offer their ransom money up for the communist cause. tt0475290,Rpt-fbpiTU8,"Baird tells his communist story to Eddie, who slaps some sense into Baird and sets him straight." tt0475290,TtALqoM5hkY,"At the filming of her water ballet, Eddie gives DeeAnna some PR advice on getting married before she has her baby." tt0475290,UbwxGgR-EAM,"DeeAnna flirts with Joe, the professional helping her conceal her pregnancy." tt0475290,8YQZMbgpmIo,Baird learns about the communist agenda behind his kidnapping. tt3203606,IXSNWvdkkic,Trumbo meets John Wayne while handing out leaflets on American rights and their ideologies collide. tt3203606,bubK4ybEy-Y,Trumbo announces that he is Robert Rich and that the HUAC's blacklist has done nothing helpful. tt3203606,apJLTO5T430,"Roy threatens Frank on behalf of the Motion Picture Alliance, but Frank just threatens him back." tt3203606,SUVN09kOsAo,Hedda reveals that Buddy named names in front of HUAC and that Trumbo was one of those names. tt3203606,5AstACoPo9w,Trumbo and Arlen testify before the House Un-American Activities Committee. tt3203606,0dGLAOaTgyw,Trumbo remembers the blacklist in his acceptance speech for a WGA award. tt3203606,COy16bTI_zE,"When ""The Brave One"" wins an Academy Award, everyone starts asking if Trumbo owns the mysterious Robert Rich pseudonym." tt3203606,nTs76MbxqEM,"Hedda encourages a boycott of the movie ""Spartacus"" after Kirk announces Trumbo is the writer, but people see the film anyway and it looks as if the blacklist is over." tt3203606,vwrWW26_JHY,Trumbo offers to write movies for the King brothers under a false name. tt3203606,ssS5S_E37G8,"After Trumbo returns Eddie's money, Eddie tries to explain why he betrayed Trumbo and the others in front of the HUAC." tt0033467,Y4XiKFvQ1rM,"Kane's political opponent, Gettys, tries to blackmail him out of the race for Governor." tt0033467,ttTyXqwsP0o,"Kane speaks at a political rally, assured of his eminent victory, but unaware that his opponent has schemed to blackmail him into dropping out of the gubernatorial race." tt0033467,oqquLzHmH5k,"A drunk Jedediah Leland confronts Kane on his self-centeredness, the day he loses the gubernatorial election because of his extramarital affair." tt0033467,FSj-BCOlGPY,"Kane trashes his wife's room after she leaves him. During the destruction, he finds something that he lost long ago." tt0033467,z9OUZNicTGU,Kane stands up to Thatcher when he tries to tell him how to run the Inquirer. tt0033467,2LX27W51kB0,"Kane's Mother signs over guardianship of her son to the bank, despite his Father's protests." tt0033467,BFSjHBVx-xk,"On his deathbed, Kane utters his last words, ""Rosebud.""" tt0033467,3v-e25d34pY,"Kane finds Jedediah Leland passed-out drunk at his type-writer, in the middle of his negative review of Kane's wife's operatic debut. Kane decides to finish the notice, just the way Leland started it." tt0033467,Rfl2M8B9WA8,"The marriage of Kane and his wife, Emily evolves and grows cold over a series of breakfast conversations." tt0033467,fr93wwtiKQM,"Before ""Rosebud"" is finally revealed, Thompson muses that discovering the truth behind ""Rosebud"" would not have explained anything about Kane." tt1790885,GfBsuOuUdoI,Terrorists in Pakistan shoot at Maya as she tries to leave her home. tt1790885,ijjYDSqZOyA,"During a casual dinner at a hotel in Islamabad, Maya and Jessica are involved in a bomb attack." tt1790885,YXFkCH90yYQ,SEAL Team Six secures the target and takes down Osama Bin Laden. tt1790885,nq33k1fFyK0,"While hanging around the military base with Justin and the rest of SEAL Team Six, Maya gets the call that the assassination raid is a go." tt1790885,NgLepPDh5tY,Maya gets confirmation that the target she has been chasing for so many years is finally dead. tt1790885,DsSvkC4X4Ko,Dan uses controversial techniques to try to gain intelligence information from Ammar. tt1790885,2ZO0CFb3eys,Maya confronts CIA supervisor Joseph Bradley. tt1790885,HdbL45I6VqM,Maya briefs SEAL Team Six on their operation. tt1790885,qiDGtIbWRVY,CIA Officer George voices his frustration with the intelligence team's failure. tt1790885,2rJqM-hodGQ,Maya's friend and colleague Jessica is killed in a bombing at the Camp Chapman military base. tt2456594,HrYK4U_a6y8,"As the group gets closer to the home of the Rock Men, they come to find the trail is full of hazards and heartaches." tt2456594,Wla8a89Vm8I,Amthar leads his fellow humans in the battle against the Rock Men. tt2456594,n0Cg6MnUw20,Tak Tek comes to Varm's rescue when a giant spider attacks the party. tt2456594,IZ-VZCROw_4,"Amthar is wounded when doing battle with the Rock Men's giant, poisonous, lizard." tt2456594,KCg0cDrNQvo,"Just as Tak Teck is about to be sacrificed to the Rock Men's gods, Amthar arrives to save his friend." tt2456594,Bjcu7KBoaNg,"While the family tries to escape from their ransacked village, Suta is abducted by the Rock Men." tt2456594,bCD25qkPSwQ,Varm makes the ultimate sacrifce while defending Omi from the dragons. tt2456594,Pt2wNC6SYnE,Tak Tek tries to reunite his family while his village is under attack from the Rock Men. tt2456594,YXzjSJDDRIc,Tak Tek helps save Amthar and his huntering party from an ancient rhino beast. tt2456594,l_ZRivM0lSY,"While human reinforcements arrive to battle the Rock Men, Tak Tek searches for a way to save his wife." tt4438848,1ccMqOW6LMs,"After Kappa Nu kicks him out, Teddy decides to switch sides and help the Radners fight their sorority neighbors." tt4438848,MQ1E_qYia9Q,"Just as the sorority's about to split, Kelly helps encourage the girls to stay strong and fight for themselves. Then, Paula gets strong evidence that the baby is indeed coming." tt4438848,nCWBxPh4dGo,Mac is chased throughout the tailgate by Kappa Nu after stealing their weed. tt4438848,dZb8CGMC1zA,Teddy and Mac try to escape the garage after getting locked in by Shelby. tt4438848,h6iHbAju1cI,Mac and Kelly try to keep appearances perfect as they try to sell their house to another young couple. tt4438848,ItHtrNSJwDo,"When Mac goes missing, Kelly goes to extremes to find him." tt4438848,uta8BACjLNk,"Seemingly out of options, the girls turn to Teddy to help them create their sorority." tt4438848,pikAt8prREE,"While the guys catch up over a poker game, Pete gets a surprise proposal from his boyfriend Darren." tt4438848,9C0B94fFZkQ,Kappa Nu decides to get revenge on Mac and Kelly after they call Shelby's parents. tt4438848,h5D7aOzmDec,"In order to give Mac enough time to steal Kappa Nu's weed, Teddy does a dance to distract the girls." tt1971352,7lL9YOO31Ig,"Sandra and Becky are questioned by Officer Daniels over the phone, but Becky maintains her innocence." tt1971352,Fu82oMZobYQ,Officer Daniels makes Sandra get a male employee to provide security until the police arrive. tt1971352,VZRUqjnEPSk,Officer Daniels orders Kevin to do a cavity search on the nude Becky. tt1971352,fyl1lmsVuQU,Officer Daniels tells Sandra's fiance Van that he must assist him in searching the nude Becky. tt1971352,GcVogDQ4VBY,Officer Daniels almost loses his phone connection when his card expires. tt1971352,0v4aJAsXjCA,"When Harold refuses Officer Daniels' strange requests, Sandra realizes that she has been duped." tt1971352,22hhTrBAFRA,Sandra makes Becky strip off her clothes to find the stolen money. tt1971352,T-OmaEI2xrs,Sandra is interviewed by tv reporter about her actions during the ordeal. tt1971352,W2gWVhYRyXI,Officer Daniels orders Van to spank Becky for insubordination. tt1971352,AC2swLcXfwQ,Officer Daniels threatens Becky with jail if she doesn't agree to have Van inspect her nude body. tt0100935,w_e5kx3ONfs,Sailor meets the Good Witch and gets some sage advice. tt0100935,ZpmCdIS3TKc,"Lula bets Sailor not to leave her, but he knows he has to go." tt0100935,n2YCseaZK0Q,Sailor and Lula have an off-putting meeting with Bobby Peru. tt0100935,kZz5k_xsG0Q,Bobby tricks Sailor by putting fake bullets in his gun in an attempt to kill him. tt0100935,KnPfaGzmt4M,Sailor and Marietta have it out in a bathroom stall when she tries to keep him away from Lula. tt0100935,v_lHiT6UVCE,Bobby terrorizes Lula but backs off at the last minute. tt0100935,aEfAFo99jEs,"Unable to find the words to tell Sailor, Lula writes a confession on a piece of paper and gives it to him." tt0100935,alYZ8jQ5L3A,Marietta remembers being rejected by Sailor during a conversation with Johnnie. tt0100935,melCNhYmwII,"Marietta forbids her daughter Lula from seeing Sailor, but Lula rebels and picks him up from jail." tt0100935,1y7cZSWu93k,Lula tells Sailor the frightening story of a man named Jingle Dell. tt0100935,FtPj029E3Qk,Marietta hires Santos to kill Sailor. tt0056193,PZeVTlloWxw,Lolita flirts with Humbert and invites him to play a game with her. tt0056193,3SKk58UngIk,Humbert becomes overwhelmingly infatuated by Lolita. tt0056193,lMXVWQCa_MY,"After attempting to kill Charlotte, Humbert finds that Charlotte has found his diary." tt0056193,UfoHq1-vpss,Quilty poses as the school psychologist and convinces Humbert to allow Lolita to take part in the school play. tt0056193,4k1Vx0equfE,"Although indifferent to his wife's death, Humbert is consoled by his neighbors." tt0056193,6zfXkQ5QkrE,Humbert shows his jealous side when he interrogates Lolita about her activities outside of the house. tt0056193,5ODDHpmqyWE,"Humbert reads the note Charlotte left for him, professing her love for him." tt0056193,wIb3cRvQYw8,Quilty pretends to be a police officer and proceeds to have an awkward conversation with Humbert. tt0056193,lHqGIe8AZ1g,"Charlotte gives a tour of her home to a possible tenant, Humbert, and introduces him to her daughter Lolita." tt0056193,VRXkf4--IXw,"Humbert tries to kill Quilty, but Quilty insists on a round of ping pong." tt4530832,k6kWvjAJHh4,Dallas and his crew face off with Reaver and his crew. tt4530832,MHyA5fJ18HA,After testing Kevin the group learns that Thorne is infected - and Orsini infected him. tt4530832,ihJ8mtOVfmM,The camp discovers that Nakada has been endangering everyone by hiding her zombie boyfriend. tt4530832,PSjEQHBkcq4,"Although Thorne tries to surrender, nearly everyone gets killed in a standoff between the infected and the uninfected." tt4530832,l0PUssYO5A8,Dirk dies in a zombie attack while thieves attempt to steal the group's car. tt4530832,2WgBKaFO7wk,Nakada makes Macon drink water to prove she's not a zombie. tt4530832,iCmT0IRM9Z0,Macon and Dirk come across an amnesiac in the desert and turn him over to their leader. tt4530832,uJw5rPEUblc,Nakada must kill her boyfriend Kevin when he gets bitten by a zombie. tt4530832,buDmlhm8mKE,Dallas talks about the virus and Thorne's potential immunity. tt4530832,3fotxrK_Spg,Orsini is chased down and captured by road warriors. tt1232829,5qWIaxikcbc,Schmidt and Jenko must shoot through the One-Percenters to rescue Molly and catch the bad guys. tt1232829,92WjYrR0PEA,Schmidt has to take desperate measures when his cover is almost blown by Phyllis. tt1232829,ZE5ddEN5Nbk,Schmidt and Jenko struggle to adapt to the changes of high school on their first day. tt1232829,UuuzF8Pyh0s,Schmidt and Jenko chase down Mr. Walters and the One-Percenters. tt1232829,k7oRzwLIgbo,Schmidt is forced to confront his anxieties when he has Mr. Walters in his sights. tt1232829,7OsEWB35fPE,"After forgetting to read the perp his Miranda rights, Schmidt and Jenko are reassigned to a revived undercover police program." tt1232829,iwZN1N7Denc,"After being forced to ingest HFS, Schmidt and Jenko try to help each other remove the drug from their systems." tt1232829,nC2HOMOxdkY,Schmidt and Jenko chase after the One Percenters after finding drugs in their bag. tt1232829,C2JaJ_FLYiM,Schmidt and Jenko report to 21 Jump Street where they meet their new Captain and learn of their upcoming duties. tt1232829,5AQC5oeDhDg,HFS starts to kick in as the guys are stopped by Mr. Walters on their way back to class. tt3534282,LRc6Awco5aU,Don tricks Carol and Boaz into believing they have discovered the Skull of Goliath. tt3534282,N_3_HB0AfdY,Boaz finds out that Don fabricated the discovery of the Skull of Goliath. tt3534282,G3TWgClyD9E,"Boaz and Don are finally arrested for all of their deception. Before he is taken in, Don professes his love to Carol." tt3534282,0GYwcr3RD_k,Pastor Fontaine preaches to his congregation about the evils of breakfast cereal. tt3534282,vTTzWRdAN4M,"Don uses ridiculous tactics to try to locate the Skull of Goliath, and ends up hitting Carol in a very sensitive spot." tt3534282,-7mzQx0ebqk,"When Don unveils the fake Skull of Goliath to the press, Boaz convinces him to lie even further." tt3534282,0tq44zxA0Ao,"Boaz attempts to seduce Carol on a date, but things go wrong when she mentions that she has a son." tt3534282,ThdpcnGKsVY,Don and Boaz trick Poon-Yen into believing he has found the Holy Grail. tt3534282,r8uOQupi1iQ,"Don and Boaz continue to deceive Poon-Yen by making him believe they are being shot at. Then, one of them takes a bullet for real." tt3534282,lRpBlNgu8j4,"Don and Tony unveil their discovery to the congregation of the church, a statue they claim is Lot's wife." tt3457734,LpDRf3h6OHw,Harper and Allie get kicked out of a car when the driver learns who Harper's father is. tt3457734,egrmjjy2Pgo,Allie informs Ebb that she will not be returning his bicycle. tt3457734,Zle2EnAj0Ms,Harper confesses their kitten abandonment to the police and writes a check to the stranger driving the car. tt3457734,QCsjm6QI4WM,"Allie asks to borrow a car from her friend Marin, but it turns out Marin's car is vandalized." tt3457734,088CLxgnr8w,Allie breaks down when Harper gets on her last nerve. tt3457734,OliOEVSIsmY,Allie accidentally hits a baby stroller with her bike while riding through a Brooklyn neighborhood. tt3457734,xqmqskVELNs,Harper and Allie sit through a bad performance their friends put on. tt3457734,bGXeYGkiQDo,Harper talks to Benji while Allie chats about her future with Benji's sassy friends. tt3457734,_4otc_6WtmQ,Allie endures a very awkward conversation when she borrows a bike from her neighbor Ebb. tt3457734,dy3yjv2YLh0,Harper and Allie watch someone steal their bike. tt1783732,dbnWDDp4s1c,Dave takes some of the soy sauce drug as a detective arrives at the house. tt1783732,wC2iSGzmdKI,"Dave, John and their dog defeat the evil organic computer called Korrok." tt1783732,9PLm3XZsotA,"Dave, John and Amy are forced to get violent when the rest of their group gets possessed." tt1783732,yIG_egCmhTw,Dave questions his friend John who is under the influence of a new drug. tt1783732,59rdzSTXs5c,Arnie admits he doesn't believe Dave's story. tt1783732,oIyXMnHWjIE,John and Dave meet a sentient organic computer known as Korrok that wants to rule their dimension. tt1783732,qNOk4yyxE38,"As David kills a zombie, he tells the viewer a riddle." tt1783732,r8I0oejVPJI,While helping out a mysterious girl Dave and John realize things are not what they seem. tt1783732,abBd7mEUNwA,Dave gets a call from his dead friend while being held at a police station. tt1783732,6PPNd2HqmoA,Dave is attacked by a strange man named Roger North. tt4094724,Q85twbu-Vvk,Leo Barnes and Senator Charlie Roan run into a group of murder crazed tourists as they flee to safety. tt4094724,WFdOIU2jKpo,Leo and the group rescue Senator Charlie from the clutches of the New Founding Fathers. tt4094724,1HfZYZ2sDwE,Leo Barnes and Dante Bishop face off against Danzinger. tt4094724,x39ZG34sn28,"As the Senator frees imprisoned victims, Harmon James arrives armed and angry, but after a long night Joe isn't about to let harm come to the hopeful politician." tt4094724,cRuYB2gXpM8,"After being betrayed by other security officers, Leo attempts to get Senator Roan out of the house and away from assassins." tt4094724,aUAVPdrvwoA,Senator Charlie is forced to watch as The New Founding Fathers offer a sacrifice for the Purge. tt4094724,6GhSM3Gu9VU,"Joe, Marcos, Leo and the Senator are holed up in Joe's store as psychotic schoolgirls outside try to break in." tt4094724,l8MFxT9ILKY,Leo and the group find themselves trapped between a violent gang and an assassination squad. tt4094724,V25QF11MwDU,Joe and Marcos are terrorized by a group of murderous schoolgirls. tt4094724,Kw6gubNxWQ4,Laney drives a triage vehicle through the Purge. tt3079016,rAdvJOAGEmc,Devon and Quinn share a romantic evening in Paris. tt3079016,2ZTrUc824oI,"Kelsey follows Quinn to a date. Back at Leah's apartment, he makes a jerk out of himself." tt3079016,zaHU1FW_RZk,"Quinn and Jameson spend a day at the Dutch Village doing ""guy stuff""." tt3079016,-QT_Af7RLjU,Quinn and Kelsey have a disappointing and strange sexual encounter. tt3079016,0mmSi-63Y9U,Quinn has very bad timing when he tries to break up with Devon. tt3079016,Ch1DsDy-osI,Quinn learns he has a unique problem with his eyes. tt3079016,8QzFJA3QM7E,Quinn meets Devon's host family in France and professes his love for her. tt3079016,n_ci8BbMilc,Everything goes wrong when Quinn tries to impress Devon. tt3079016,xLLOmh2nxWQ,Quinn completely blows his proposal to Devon. tt3079016,N0gOaE92ogg,"After botching his proposal, Quinn begs Devon for another chance." tt1440732,2BQoPPpt_9o,Virginie informs Georges that her husband and Laroche are taking Morocco. tt1440732,IMTJSKr7yJA,Georges makes it his mission to seduce Virginie Rousset. tt1440732,ltcp0jylvgQ,Georges takes Suzanne away for the night to ensure consent for their marriage. tt1440732,Ft-7riREEaA,Tensions rise in Georges and Rousset while they play a game of poker. tt1440732,hJ6_nbGdWT0,Georges explains to Clotilde why he has to marry Suzanne. tt1440732,5-2eKvFCqw8,Georges tells Clotilde that he is marrying Madeleine. tt1440732,DuYmyHWZqwE,Georges and Clotilde share sweet moments in bed. tt1440732,QRwiLuz2olI,"While Georges and Madeleine think of new ways to gain prominence, passion takes over." tt1440732,ddVQoF2TvNQ,"After her husband's death, Georges asks Madeleine for her hand in marriage." tt1440732,7ktZEjwyFhQ,"Georges and Clotilde meet to start an affair, but soon realize they need a place more discreet." tt3746298,4Cw7JHJuTt8,Mason takes on dozens of prisoners in the riot. tt3746298,lPrJqB8ljAE,"During the riot, Mason takes care of Victor and has a message for the warden." tt3746298,57eIYneEz7E,"With the riot taking place all around them, Mason and Abbott come to blows." tt3746298,_-4Xy6CjAbw,"Mason faces off against Victor's right hand man, Drexel." tt3746298,CE8VRLW8Zw4,Mason watches as his partner and friend is jumped by Victor's men. tt3746298,uB6JMgU50J0,Mason sets a plan in motion to get revenge for his wife's murder. tt3746298,-QZzReak2Ck,Mason takes out the last of his old attackers in brutal fashion. tt3746298,BbHxQ77anjQ,Mason gets his revenge on the men that attacked him. tt3746298,7XaThsXXj_M,Abbott breaks into the Danvers' house to get his revenge. tt3746298,Ss5HAL8j7p8,Mason tracks down notorious criminal Victor Abbott. tt1791528,UDhWyFDDrUg,"Roy intends to arrest Kelly and Evan, but decides to offer Kelly a chance to bring down Vice." tt1791528,6xCIhFtDtx0,"Kelly learns more about her origin from her creator, Evan." tt1791528,TmTq2M6xgEs,Kelly's plan to kill Julian fails and Roy works on his side of the deal. tt1791528,xkzlZGohQ_4,Chaos ensues when Roy's device allows all A.I. to become self-aware. tt1791528,ih9NffWqWgM,Kelly escapes and Chris reports back to Julian for further instruction. tt1791528,YejzV_nWN1M,"Roy goes to the church to interview Evan about Kelly, but it turns out the Vice henchmen had the same idea." tt1791528,kaJbWpMZdwM,Kelly escapes when Reiner begins a painful experiment on her brain. tt1791528,I5ohJ4BBHzo,Kelly experiences unprecedented A.I. flashbacks and Julian brings her in for a software fix. tt1791528,3Iy44xwjtQA,Detective Roy meets with Julian to question him about the attack on Vice. tt1791528,57u_LsqMoys,"After two Artificials get taken down, Vice creator Julian sends in the sweeper team to clean up the mess and get them back in the field." tt2869728,iP7_QcV9Q9s,"James gives a heartfelt toast at Ben and Angela's wedding. Then, Ben falls off a speedboat as they drive away." tt2869728,LyGXFcfRyAQ,Ben chases AJ through a series of crazy obstacles. tt2869728,YRCIuvKg4tc,AJ uses a shootout at Ben's bachelor party as a distraction to make a quick escape. tt2869728,ra42YS4NRlY,AJ tricks Ben into eating old nachos from the trash. tt2869728,3XD34HIx-00,Ben uses ringtones to draw information about AJ out of Tasha. tt2869728,-yyoLJuNIJU,Ben imagines he's in a video game to handle a real life car chase. tt2869728,7ezYV1mOdh0,Ben uses a forklift to cause an explosion and trap Pope in the shipping yard. tt2869728,ENC7ueK93Ow,"While trying to gain information about Pope, Ben is attacked by an alligator." tt2869728,WmFiW2CSiO4,Ben pretends to be a Nigerian prince in order to infiltrate Pope's party. tt2869728,SLL5ziDWc6k,James uses Ben and his bulletproof vest as a shield and takes down Pope. tt3760922,-vBO8PStfEg,The family catches Ian and Toula having sex in their car. tt3760922,mSsrdFBpuqU,Gus accidentally tries to set Paris up on a date with a child. tt3760922,PI82pNmQodk,The family attempts to teach Gus how to use a computer. tt3760922,P1EIIQ0tZUE,"As he is taken away to the hospital, Gus proposes to Maria." tt3760922,fR8fl1fJftU,The family struggles to get Gus out of the bathtub. tt3760922,gFDIKfe91mg,"Paris gathers the courage to ask Bennett to the prom. Then, she shares a tough decision with her parents." tt3760922,UkF508FI9ws,"Toula agrees to give Paris space before she leaves for the prom, and gives her blessing for Paris to go to NYU." tt3760922,oxml1eY8urE,The family convinces Maria to continue with her wedding to Gus. tt3760922,vlwrxfIiDBs,Gus and Maria get remarried while Toula and Ian secretly do the same. Paris shares her first kiss at the prom. tt3760922,0LQZpUHbjDM,Gus and Maria begin their wedding. Toula and Ian decide to get married again. tt1334537,Npdj1jv8JKo,Ben and Andrew chicken out at the big moment. tt1334537,9h6w198Yg_Q,"Ben and Andrew psych themselves up to kiss, and then gradually admit their disappointment." tt1334537,9vn3DZZHC4s,Andrew freaks out when Lily and Monica pull out the sex toys during a potential three-way. tt1334537,xD1OPkq6-Vg,Andrew and Ben reconnect and discuss the ways their lives have diverged. tt1334537,MR8hXM7_6EQ,Ben is relieved when Anna admits that she's too tired to have sex. tt1334537,Ctux2wyz_W8,Ben and Andrew decide to establish their heterosexuality on camera before getting down and dirty. tt1334537,heqpyT4kudQ,Ben and Andrew try to recover from a night of heavy drinking. tt1334537,xax--zcAdss,Ben welcomes his old friend Andrew into his home for a visit. tt1334537,zkX8cKUFOvk,Andrew accidentally reveals to Anna that he's planning to make a porno with Ben. tt1334537,oIymf1Bgmqg,Andrew and Ben refuse to back down from their drunken decision to make a porno movie together. tt1334537,liDkvm3hMtw,Andrew and Ben dare each other to make a pornographic film together for the HUMP film festival. tt1334537,3_2F9m4Rvw4,Ben tells Andrew about a secret crush he had when he first moved to Seattle. tt0083739,0_7vIOvdKqY,"Jonathan admits to falling in love with Ellen, who wants to visit Jonathan at college." tt0083739,3J0d3ZwHy-Y,Skip forgives Jonathan after a brawl that leads from the woods to their dorm room. tt0083739,u3oi4L5tWQg,Jonathan gets punched in the face by Skip when questioning him about why he didn't turn him in. tt0083739,eFrS6uCoMsw,Ellen seduces Jonathan in a glass elevator. tt0083739,SrNNEi50cl4,Jonathan gets even with Skip after lunch. tt0083739,UeV6eAtHp0M,Ellen takes Jonathan to the roof for some intimate conversation. tt0083739,nM0h6QXTpHQ,Jonathan learns that the woman he's seeing is actually Skip's mother when invited over for dinner. tt0083739,SzlHzRvw-MI,Skip tells off Balaban when brought into his office and questioned about stolen SAT tests. tt0083739,Y6jBV4wDoO4,"Skip pulls a huge prank on Jonathan, a new student on his first day of school." tt0083739,k8bJrJ7_LKI,"When Jonathan is banished from the all-girls school, Skip buys him a bus ticket to Chicago." tt0083739,IywRc7bHziQ,Skip surprises Jonathan only to find out that he is engaged in a love affair with his mother Ellen. tt0071517,sp0O70Q5FAQ,Foxy exacts her revenge on Steve by removing something very important to him. tt0071517,odNZhZSydNc,Foxy pays back the rednecks who imprisoned and sexually assaulted her. tt0071517,tlJM0tgXu5Q,One of Foxy's friends shows how he cleans the streets of drug pushers. tt0071517,GCc99Gh-IEM,Foxy whips out a gun she has concealed in her hair and shoots up the room in her quest for revenge. tt0071517,rMczYrlPwaw,Foxy seeks help in getting justice for her boyfriend's death. tt0071517,JWXgBi3HDac,Foxy wants to join the mile high club with Hays even though he has to concentrate on flying the plane. tt0071517,1UXl3LGnRR4,"Foxy and Claudia show off their ""black belt in bar stools"" during a fight at a lesbian bar." tt0071517,yBd_y4V7vtc,Foxy interrogates her druggie brother Link about the men who killed her lover. tt0071517,Qf_EPkVA31c,Foxy and Claudia speak dirty to Judge Fenton before humiliating him. tt0071517,cTR9Hnxfk7A,"Link complains that his ambitions for life exceed his means, as he tries to get on Foxy's good side." tt0071517,AxBkurGlhHg,Foxy rescues her brother Link and shakes an unwanted passenger from the car. tt3960412,WRlIDIu2qpg,"The Style Boyz reunite at the Poppy Music Awards and blow the crowd away with their new song, ""Incredible Thoughts.""" tt3960412,DAPrbiJaej4,"When everyone starts to betray him, Conner tests his crew to see who's a true friend." tt3960412,W95X207kQxU,"Conner4Real brings two of his biggest hits to the stage with ""Finest Girl "" and ""Mona Lisa.""" tt3960412,1EcAcWe08NU,Conner botches his newest magic trick and ends up naked in front of ten thousand screaming fans. tt3960412,QC0kTcAlf64,Owen gets a new helmet and Hunter is brought in to give the tour a little more pop. tt3960412,pLooDtjrhv8,The most romantic wedding proposal of all time goes downhill fast when wolves get loose. tt3960412,t1Wk3H5Xur0,"Conner reads some ""mixed"" reviews about his new album, and then reflects on his breakout moment on ""Turn Up the Beef.""" tt3960412,xGAAMQLb4ZE,Conner4Real sings to promote equal rights around the world. tt3960412,KzUKcXxbU4U,"Conner4Real performs his hit song, ""I'm So Humble,"" with Adam Levine's hologram." tt3960412,Tht98G49dos,Three childhood best friends take over the rap game and the music industry forever. tt0366551,_ZLAt3zwEpQ,Harold and Kumar get inspiration to go to White Castle from a crazy Burger Shack employee. tt0366551,cN2VCBTYgHI,"Harold and Kumar get trapped in the bathroom with a pair of sexy women who play a game of ""battles***s""." tt0366551,Y4-vFWxvdjs,"Harold and Kumar are mistaken for doctors by a male nurse, leading Kumar to save a man's life." tt0366551,HNajZgCe5Pg,"A creepy guy shares a bush with Kumar. Then, he and Harold are attacked by a rabid raccoon." tt0366551,Zk5K-Z2enGA,Harold and Kumar are picked up at the side of the road by a disgusting man named Freakshow. tt0366551,VMhwOytHUsU,"Freakshow's wife, Liane, begs Harold and Kumar to have sex with her." tt0366551,zPWwORb6PW8,"Harold and Kumar pick up a drugged out, horny Neil Patrick Harris at the side of the road." tt0366551,aVUhnzQmx_A,Things go horribly wrong when Harold gets a ticket for jaywalking. tt0366551,fzRvMylDVi8,Harold and Kumar finally make it to White Castle. tt0366551,SNwh7RP56S8,"Harold and Kumar make friends with a cheetah, which they take for a ride through the forest." tt0910936,Uj6eiUsNwvU,"Saul sets out to rescue Dale by stealing a police car, but the pair are quickly pursued by Officer Brazier in a high-speed chase." tt0910936,AnGVJ8Gv8aU,"After Ken detonates a bomb, Dale saves Saul from burning in the fire." tt0910936,o6FUdj0_fGY,"Red, Dale and Saul reminisce about their adventures at a restaurant." tt0910936,vOoyaqLrZnE,Matheson kills Budlofsky and gets run over by Red just as he's about to kill Saul. Then Carol shoots Red as he's basking in his victorious moment. tt0910936,18Qa__JYKdc,Angie's parents are not amused when Dale tries to get them to run from the bad guys. tt0910936,aDvjCbdyEHw,Dale finds Red dying in his bathroom and asks him to help save Saul. tt0910936,HKJOcRnkRQ4,Red gets shot after giving information to both Dale and Ted's henchmen. tt0910936,4DD8QRsms1s,A fight breaks out when Red reveals that he's giving Ted's people information about Dale and Saul. tt0910936,eI1dAmDZrZE,Saul introduces Dale to the trifecta of joint smoking. tt0910936,uX7CAoxBNOU,"Private Miller tests out marijuana for the military and when he demonstrates defiant behavior, General Bratt deems it illegal." tt4196776,5sNY4Rn7bYI,The Asset pursues Bourne and Nicky through the streets of Athens with help from the CIA. tt4196776,fbR1gtlY7FM,Jason Bourne chases The Asset through the streets of Las Vegas. tt4196776,AnJm-acXQCo,The Asset shoots Nicky as she and Bourne are making their escape. tt4196776,5c3tOFFEcU4,Jason Bourne faces off with The Asset in a final confrontation. tt4196776,NzJH4towI_A,Jason Bourne interrogates a lead with the CIA while The Asset is in hot pursuit. tt4196776,yvtb9A9ai9Q,Jason Bourne tries to stop an assassination attempt by Dewey and The Asset. tt4196776,FWznyZ9Znuw,Jason Bourne confronts Director Dewey in Las Vegas. tt4196776,zb5RJyrk4gc,Jason Bourne and Nicky attempt to evade police in Greece after being spotted by the CIA. tt4196776,Wnocz8UrhQw,Jason Bourne and Nicky attempt to escape the CIA in Greece while a riot rages around them. tt4196776,yunEcgw8va0,Jason Bourne only needs one round when he fights in an underground boxing ring. tt0149261,HsRwyJw5o7k,"Susan makes a fatal mistake trying to distract the last shark, as Carter and Preacher aim to blow up the sharp-toothed killer with a car battery and explosively charged harpoon." tt0149261,nA1lAszNSoI,"Returning to her quarters to get her research, Susan is attacked by one of the killer sharks she created, but thankfully, due to some quick thinking, a quicker undressing and an electric cable, she solves the problem." tt0149261,q6ObhNBURyY,"With shark-infested water below and fire above, Carter, Susan, Scoggs and Janice start to feel the jaws of death coming down on them." tt0149261,BS8I9H07wKw,"As their options get worse and the group starts to argue, Russell steps up, takes lead and and gives the team a motivating speech on unity... right before getting eaten by the largest shark." tt0149261,gfXns_cU8I8,Preacher finds himself trapped in an oven with a killer shark just on the otherside of the glass. tt0149261,-v8l6cCrf0w,"Preacher attempts to escape the water filled kitchen along with his pet parrot, but the sharks have other ideas." tt0149261,m2aC-nkV1Zg,"Susan and Jim test the brain fluid from the biggest shark with the rest of the team, but unfortunately while celebrating, Jim gets a little too close to the beast." tt0149261,rvqm61CcOLo,"Shortly after the topside part of the facility explodes, one of the sharks uses Jim's gurney-tied body as a battering ram to break the laboratory's window." tt0149261,i31XFSORRfc,"Susan, Russell and the others watch as Carter attempts to capture one of the sharks, who seem to have gotten smarter." tt0149261,5lPGiKG9VI8,Four teens out having a late night on the ocean encounter a party crasher with very sharp teeth. tt0107362,dfWdmxCHwfc,Ripper lures Jack to the roof of the premiere and throws Danny off before getting electrocuted. tt0107362,9Eont_yEGZs,Jack Slater stars in a violent version of Shakespeare's Hamlet in Danny's daydream. tt0107362,Br9zd0KkFTU,Benedict shoots Jack and then Danny distracts Benedict long enough for Jack to kill him. tt0107362,gzPiBOc_Nfs,Jack drops the corpse bomb into a tar pit and the detonation is supressed. tt0107362,Jo1OjI4Yfv8,Benedict kills Vivaldi and uses the magic ticket to escape into Danny's world. tt0107362,hwTf9WurF4U,Jack must get a corpse rigged with a bomb away from the funeral before the bomb detonates. tt0107362,IXmWL4J2wwI,"Through the magic of his ticket, Danny is brought into the world of his favorite film with his favorite character Jack." tt0107362,5kQCpsPnnew,"When Benedict threatens Danny and Whitney, Jack shows up to defeat him and his henchmen." tt0107362,u_z2ttNkL24,"While Jack humors Danny with his drug dealer theory, the two meet Benedict." tt0107362,3yjYPrkMGdk,Jack defeats the bad guys in a game of chicken and Danny figures out that he's actually in the movie. tt1290471,fiP6h4VL-wE,A crazed man forces Myron and Sky to hand over their car. tt1290471,nhDX2exjhGU,"Per authorization from the government, the military bombs and destroys a small island in an effort to eradicate the aliens. Sky grows weak as she feels the pain of those who died." tt1290471,EMbzESGsxoY,"After Sky and the Man return to their home planet, Myron reflects on all they taught him." tt1290471,-u0yhzYlhFA,"When Myron refuses to stand down, he is shot dead. When all hope looks lost, the Man uses his powers to revive him and Sky." tt1290471,83Ax_EIMDVk,"As the Earth begins to crumble, Myron and Prewitt rescue Sky and attempt to get her home safely." tt1290471,KMr9bWPy7u8,"When Myron shows Sky the power of humanity, she uses her abilities to show him visions of her home planet." tt1290471,ZdmU6mM0Gog,"After being shown the true value of life, Sky revives a dead mother and reunites her with her husband and infant." tt1290471,y3L-a3R9OQE,"When Myron and Sky are pursued by the military, Myron is forced to shoot his way out to rescue her." tt1290471,LZD-86lIgYg,"When the military tries to torture Sky, she uses her abilities to attack them and keep them at bay. Myron tries to rescue her and is relieved of duty." tt1290471,rnkIsbFHoB4,The aliens' giant robots cut Earth's power. Myron rescues Sky from Prewitt and the government. tt2191701,xhgWGU6cQ00,"Lenny comes face to face with Tommy Cavanaugh, the bully that tormented his childhood." tt2191701,fq5JFon-LOs,The janitor gets everyone in yoga class to warm up for him and then all the ladies melt over the beautiful yoga instructor Kyle. tt2191701,os7KKfG3QE0,Cavanaugh does Lenny a favor and backs down so he can make a good impression on his kids. tt2191701,xkMijsfMZBU,"Everyone has fun at Lenny's party and when the music cuts out, the crowd discovers Charlotte is a talented singer." tt2191701,1jK2Y8vAM1A,Officers Fluzoo and Dante help the guys get to the ballet recital on time. tt2191701,af1gSplQfPU,"After Lenny accidentally lets Higgins slip away in a giant tire, Officer Fluzoo stops it with his body." tt2191701,JU_Vqys3Kp4,"Everyone attends the children's ballet recital, but the only person the guys are looking at is the dance teacher." tt2191701,x2K8I28zejw,Lenny takes over driving the school bus for Nick and intervenes when his son gets bullied. tt2191701,JaMejPOFVCc,The guys tease their childhood rivals at Kmart and McKenzie chokes Malcolm for his comments about their kids dating. tt2191701,KPOx5tioLeY,Lenny uses Becky's stuffed animal to lure a wild deer out of their house. tt1375670,JjfbxBMmXTI,The guys face off with their rivals in a game of basketball while their wives and kids cheer for them. tt1375670,PhRyzmcEOVA,"After a successful night with their women, Lenny and Lamonsoff mess with Higgins in his sleep." tt1375670,GHZSYBkKec4,The sexy water park man is not as sexy up close and Hilliard defends the honor of his daughters by pushing a rude attendant down the water slide. tt1375670,gNbqn47rt3M,Sally shows off her body to entice a sexy water park patron and Lamonsoff gets his son to drink milk out of a carton. tt1375670,SOwJJPZKIys,The guys talk about relationships and Hilliard loses a game of Arrow Roulette. tt1375670,wZl5uWOpepU,"After a dangerous game of arrow roulette, Hilliard snaps at Gloria." tt1375670,wKiW5OYjels,The guys stare creepily at Hilliard's daughter until Gloria comes in to help fix the car. tt1375670,rezZBgaJGoM,Lamonsoff hits a tree and falls when he tries demonstrating a rope swing by the lake for the kids. tt1375670,--QCZKgJt6o,The guys make fun of Hilliard for singing Ave Maria at the funeral and everyone's a little uncomfortable when Bean drinks his mother's milk. tt1375670,hQmDmh3qA6s,"Lenny, Eric and Kurt get the bad news about their coach's death." tt3499424,QggV4W5BTkM,"Overcome by a potion given to him by Nikos, Hercules begins attacking and killing his friends." tt3499424,uTIfsQ15LPM,"Nikos overthrows and kills King Demetrius, causing Queen Evenya to kill herself rather than live under his rule." tt3499424,S0wF9tshsyk,"In an effort to force Theodora to love him, Nikos orders her to watch the murder of a woman and child." tt3499424,I8_tVvzJ1xg,"When Arius and his men are captured and sentenced to death, Hercules appears to rescue them." tt3499424,qtRfpAJHi3U,"When they are ambushed in the desert, Hercules, Arius and Horace annihilate a group of soldiers." tt3499424,e9nVeZ8UE5M,"Just before he kills Horace, Arius defeats Hercules and forces him to dispel the potion that has turned him evil." tt3499424,GY0btkKshOo,"As the battle rages on, Arius confronts Nikos and is defeated." tt3499424,GJVYWd_3tzU,"As Nikos reaches the brink of victory, Hercules crushes his skull and defeats him once and for all." tt3499424,oq0Aj9JsmMQ,"As Arius makes his way to Nikos' bedchamber, Hercules defeats and murders Cyrus." tt3499424,07I2_etOYhM,"When Arius does not show his face, Nikos takes the life on an innocent man." tt1663662,9Pn6NgaX8I0,"Raleigh and his brother Yancy suit up and step into their giant fighting robot, the ""Gipsy Danger""." tt1663662,yzwheD19-PQ,"While attempting to harvest a Kaiju brain, Newton and Hannibal Chau come face to face with a baby Kaiju." tt1663662,R5a3sZiNuu4,"After Striker Eureka is critically damaged during the final attack on the Breach, Pentecost realizes there is only one way to clear the path for Gipsy Danger... detonate the Jaeger." tt1663662,BiuCpXg_jgU,"Gipsy Danger finds itself in trouble when it's taken to space by the wing-revealing Kaiju named Otachi, but thankfully they have a very sharp secret weapon." tt1663662,-7Sow81yi24,"As the Shatterdome prepares for one final mission to save Earth from the Kaiju, Marshal Stacker Pentecost reveals that he will pilot a Jaeger and gives the team a speech." tt1663662,AYQjmj7cSM0,Gipsy Danger tracks down the quick and acid spitting Kaiju named Otachi and do their best to beat it to a pulp. tt1663662,oDcNKpBgd_0,"Being the last Jaeger standing, Gipsy Danger takes on Leatherback." tt1663662,Uy-L94Tio9w,"Crimson Typhoon, Cherno Alpha, and Striker Eureka are all sent out to defend Hong Kong against two powerful Kaiju code-named Otachi and Leatherback." tt1663662,s4esaE679Wg,"Raleigh and his brother Yancy, piloting the jaeger ""Gipsy Danger"", defend the Alaskian coastline from a Kaiju named Knifehead with heavy sacrifice." tt1663662,E7i4pNsqnls,"While sparring with other pilots to discover who he is drift compatible with, Raleigh discovers that the best option is Pentecost's adopted daughter, Mako Mori." tt7069210,JhMWopjJiI8,Carolyn is tormented by the spirit of a little girl in the house. tt7069210,wHqQzF4JXdE,Ed and Lorraine investigate a case about a torturous doll named Annabelle. tt7069210,16op1FeUX1A,Brad is attacked by a ghost as Cindy is led away and disappears. tt7069210,rRuulhJ2ARQ,Lorraine discovers a ghost that had formerly been tormented by the demon who possesses the Perron house. tt7069210,nLMkSN2F2xs,"Ed and Lorraine's daughter, Judy, is attacked by the demon after it takes control of the doll Annabelle" tt7069210,zS41k2xmQUI,"Lorraine discovers the nature of the demon right as it attacks Nancy, dragging her by her hair." tt7069210,OcS7veELZ0c,Ed begins the exorcism on Carolyn and the demon begins to reveal itself. tt7069210,lPYFkRoFM-A,"The group arrives just in time to stop Carolyn from killing her daughter, and begins the fight against the demon inside her." tt7069210,Yke_Lkmm5Bc,"As Ed attempts to exorcise the demon out of Carolyn, she rises in the air and tries to kill everyone." tt7069210,V4rzoRzqmyc,Ed and Lorraine help Carolyn expel the demon inside her. tt3276924,kzxSZ5zCfXs,SWAT finally makes their move against Vaughn and Cox while the bus is still in motion. tt3276924,kbb1MUQmusU,The Pope shares with Vaughn a little life wisdom and smokes one last cigarette before he dies. tt3276924,hjyWtmbAyco,Vaughn reveals his true plan to The Pope and Dog as they prepare to light him on fire. tt3276924,FxcIBbXalVg,Vaughn is determined to save his daughter and Bernie knows how to make it happen. tt3276924,DJZqFXSHyvc,"After the bus crashes, Cox threatens to kill a hostage on live TV, but Marconi won't back off." tt3276924,d_hNjBBdcyU,"After Detective Marconi kills Dante, he reveals to Vaughn that he works for The Pope." tt3276924,5Y7gOcsg0Xk,Vaughn trades hostages for gasoline and Kris meets Cox. tt3276924,CScFydObPJA,Vaughn diffuses a violent situation and contacts the police to strike a deal that involves bringing Kris on the case. tt3276924,zSw2bGgrIQQ,Vaughn convinces Officer Kris to clear the road block so they can get the bus of hostages on the freeway. tt3276924,tpsGUGc8Ri8,"When Vaughn, Cox, and their crew attempt to steal money from The Swan Casino, not everything goes according to plan." tt2547172,LwSsrFFa2Wc,Larry successfully completes an urban landing on a freeway in Los Angeles. tt2547172,QN8ln3Hx1mc,Larry returns Donnie home and pledges his love to April. tt2547172,Bwpvq4JhqY4,Larry reads an excerpt from his book and has an almost-touching moment with his father. tt2547172,D-gTnaF9LVA,"Larry is tasked with emergency landing the plane, but first he must deactivate Sally." tt2547172,0o9Fm3hnpYQ,Larry tells Nathan the story of how he met April. tt2547172,AgNH9Ktkrqk,Larry is no match for the new robotic flight attendant Sally. tt2547172,qYCEXS6Ws_c,Larry teaches Nathan how to be an all-star flight attendant. tt2547172,O4TmwflckcU,Larry reluctantly accepts his invitation to compete against Sally in a flight attendant competition. tt2547172,jvBp6TqoHWw,Larry proposes his book idea and the publishing executive is absolutely uninterested. tt2547172,_LzgxVd1wF8,Larry's sex tape accidentally plays for all the passengers while he tells Nathan a story about his father leaving. tt3393070,PM8-Hmfy6OU,"Hammond, Andi and Helen decide to do all they can to save Helen's body, including jumping a car right through the hospital window." tt3393070,5UnmqCr95HI,Hammond and Andi have to fight through the gang of One-Eye to make it to the rooftop for extraction. tt3393070,Hl1iN3hP-60,"Confronted by the corrupt cops behind all their troubles, Andi, Helen and Hammond realize a shocking mechanical truth." tt3393070,XndQbcPIsI8,"Hammond, Andi and Helen find themselves under attack by the first of many gangs that want revenge." tt3393070,muMv1K99l64,"When the criminal Dexts gets the drop on Officer Hammond, they both discover there is a new metallic sheriff in town." tt3393070,6xYx1k3O8X8,"While attempting to gather some information, Hammond finds his new android partner plays frustratingly by the book." tt3393070,qIAWFde0FO0,A Granny with a handgun is just the first of many fully loaded problems for a team of officers attempting to capture a drug lord. tt3393070,AoWXSOx502Q,Tragedy strikes when Hammond and Reynolds chase down a criminal in the ruins of Beverly Hills. tt3393070,lJjxm4xTVKk,"After going deep into dangerous territory, Hammond and Andi realize they should leave, as long as that is still an option." tt3393070,XLqh2vpx6BI,Hammond and Andi have different views on how to handle being surronded by armed and angry thugs. tt2709768,lYCq6x3AHYw,Max and Duke wait for Katie to get home. tt2709768,JvclIUy-JlA,"Max thanks Gidget for saving his life, after getting a ride back home." tt2709768,HPGSDBjsSWI,Max tries to save Duke from the falling truck. tt2709768,rLZ5aVNxV84,Pops leads Gidget to Snowball's hidden lair. tt2709768,v5nIRiA5W-E,Gidget comes to rescue Max after he gets trapped by the Flushed Pets gang. tt2709768,Gl5GVViqvjo,Max and Duke enjoy their personal Heaven - a sausage factory. tt2709768,GAozArqKtGQ,Pops leads the pets through New York City as they look for Max. tt2709768,RbsNzYdNM5I,Max and Duke are rescued by Snowball. tt2709768,HR2-PHuh3W8,"Max's owner, Katie, brings home a new dog." tt2709768,6_u456zQtkY,The pets get into trouble when their owners leave for the day. tt0400717,j8cGENcePl0,Boog and Elliot have fun and make a mess inside a mini-mart. tt0400717,-u1uwI5qJ74,The crowd panics when it appears as though Boog is killing Elliot backstage. tt0400717,a2qE4hG9XCk,Shaw chases Boog and Elliot down rushing rapids. tt0400717,QvfcWxGZv9M,Elliot fails to teach Boog how to live in the wild. tt0400717,gJvoeKHjuvE,Boog is tormented by McSquizzy and the Furry Tail Clan. tt0400717,zgrvS0PJDrA,Elliot teaches Boog how to go to the bathroom in the wilderness. tt0400717,V-9fQTUix6I,"Boog and Elliot lead the charge against the hunters, leading to a massive explosion." tt0400717,uCsRqsNpF60,Shaw hunts Boog as he hides inside his cabin. tt0400717,oGV14YsOvWo,Boog and Elliot defeat Shaw and save the forest animals. tt0400717,agrpQQWiX48,Boog chooses to stay behind in the forest with Elliot and says goodbye to Beth. tt0423294,5m9Bf48pWc0,The filmmakers interview Cody and he shares his story about the history of surfing and the legendary Big Z. tt0423294,BWT3i-fgw0s,Cody agrees to his first surfing competition and loses to Tank. tt0423294,G2ngOQwMMek,"When Cody steps on a sea urchin, Big Z pees on his foot to stop the poison from spreading." tt0423294,e96_1NxL9no,"Big Z gives Cody a training lesson and the two, along with Lani, finally go surfing together." tt0423294,YHirkSmJcEU,Cody and Lani share a day of fun and go boarding inside a volcano. tt0423294,HGrPKwsAvqE,Chicken Joe is kidnapped by natives and cooked in what he believes is a hot tub. tt0423294,VD8UttNfU60,Big Z tries to help Cody build his surfboard. tt0423294,uhBhYnRrOg4,Cody proves everyone wrong when he enters the surf competition and rides an amazing wave. tt0423294,8fzGR29bKjY,"During the final wave of the surfing competition, Tank knocks Cody into the rocks." tt0423294,kn5Sc8o9YTM,"After being gone for many years, Big Z returns home to his friends and fans." tt0787470,1mLEN1SN9Eo,Jimmy uses his beautiful singing voice to captivate Thad and steal the football. tt0787470,bSm3d9ftiJA,Caleb gives his team a motivational speech and Dick tries to pump up his team with verbal abuse. tt0787470,gFocZQa78ho,"The Panthers win the football game, Caleb gets the girl, and Grant reveals he's been lying about his disability." tt0787470,kr2k20G3hCc,"Caleb takes Meredith on a romantic roller skating date, but Homeless Bob and his terrifying friends cut the date short." tt0787470,OXUmjMKCR_c,Dick reveals his new strategies to win at intramural football and then he ruins Caleb's relationships with both of his women. tt0787470,aKtrjeCFCAg,Grant describes his training methods through montage. tt0787470,95fAKnIgqmM,Vicky proposes to Caleb at her birthday party and he accidentally says yes. tt0787470,hkEXnpQ_c5I,Grant gets paralyzed from the waist down in a game of flag football. tt0787470,bqwH3cQUlNA,"Caleb is too afraid to complete the Triple Z play, so he runs the ball in himself." tt0787470,bDcFILIfHU4,"Caleb tries to get the old team back together for intramural flag football, but Grant resists." tt1276419,sX8SScsA8TM,"Caroline's son, Frederik, is taken from her as she is arrested." tt1276419,bsoa3DBmelk,"Away from the crowded ballroom, Struensee and Caroline give in to the passion flowing between them." tt1276419,twdd-yhC2vw,Caroline gives birth to a baby girl. tt1276419,mkIwuziqr0k,At dinner Christian VII has an outburst over the paternity of his daughter. tt1276419,19h6CYFMUBU,Struensee interviews to be the king's personal physician and meets Christian VII for the first time. tt1276419,20Q3Qa51MUs,Struensee and Caroline share an intimate moment on the dance floor. tt1276419,2BbpnPOIKIM,Struensee is executed in front of the Danish people. tt1276419,tBVoGbg2ocA,"Fed up with those in charge, Christian VII dissolves the council, and saves Struensee." tt1276419,vtu0TbT35UY,Struensee performs a smallpox inoculation on Prince Frederick. tt1276419,aWUJI1UPuHs,Struensee and Caroline discuss the potential of freedom for Denmark and all mankind. tt1276419,1EJYZ1IlTF8,"Shortly into her marriage, Caroline realizes how terrible her life with Christian will be." tt0803096,PX3By_Y0jTA,"King Llane leads the human army against The Horde in an attempt to free their people, while Khadgar and Lothar confront Medivh." tt0803096,Ax83IEcbUwU,Lothar and his Gryphon arrive at the battle too late and discover the body of the king. tt0803096,S0ymo6QHMc0,"Realizing that the battle is lost, King Llane Wrynn tells Garona that she has to kill him and not let Blackhand have the honor of doing so." tt0803096,4sOjksh8vX8,Khadgar and Lothar confront the demon-possessed Medivh and his clay Golem. tt0803096,nD6DMtXc3mY,"Durotan challenges Gul'dan to Mak'gora, a battle for the position of leadership over the entire force of Orcs, while Khadgar confronts the possessed Medivh." tt0803096,lfObLA5H4Rg,"After Medivh casts a lightning barrier spell, splitting the battlefield, Lothar realizes Callan, his son, is trapped on the other side with the evil orcs." tt0803096,yuQW4F1siis,"King Llane Wrynn, Lothar and Garona secretly meet with Durotan to discuss a truce between humans and orcs." tt0803096,ECDKjStq8Eg,The secret meeting between Durotan's Frostwolf Clan and the humans from Stormwind is interrupted by a large and angry force of evil orcs led by Blackhand. tt0803096,xI4s1uyYIX4,"Lothar and his men go chasing after the Orcs and their Worgs, while Khadgar has a run in with the half-orc slave, Garona." tt0803096,m0DbfOnOBQo,"Lothar, Medivh and Khadgar lead a scouting party investigaiting traces of fel magic when suddently they are brutally attacked by a group of Orcs." tt1133985,KKsVK5R9q80,"Green Lantern activates the power within his ring and speaks the oath of the Green Lantern Corps. Meanwhile, Hammond inspects the alien corpse of Abin Sur." tt1133985,vUrgn1Vm86I,Sinestro trains Hal on the influence of fear. tt1133985,Z0FKMJQR9RU,Green Lantern discovers a dying Abin Sur and receives the ring. tt1133985,lP8EYYjPEmc,Hal's mask does little to stop Carol from recognizing him. tt1133985,EpCLoqVPwqw,"After being ambushed outside a bar, Green Lantern learns the true power of the ring." tt1133985,9KkV_swvE2Q,Kilowog teaches Green Lantern how to use the power of the ring. tt1133985,_I_F4a-oUyA,"When Hammond tries to crash his father's helicopter, Green Lantern builds a race track to save the day." tt1133985,h0qniQTX3r8,"Green Lantern and Hammond battle it out in the lab. Then, Hammond kills his own father." tt1133985,QnX-Xgbi37I,Green Lantern uses the power of the sun to defeat the evil monster Parallax. tt1133985,nQeov6j0bsQ,Green Lantern squares off against the evil beast Parallax. tt3672840,e3BZn-XJ4mU,"Huo An leads his fellow warriors to freedom and mounts an attack. Meanwhile, Tiberius faces off against Yin Po in a deadly sword battle." tt3672840,mRwKWTGCd7Y,"Believing he is to meet reinforcements, Lucius is ambushed and captured in front of Publius." tt3672840,nwt-V8xfwkQ,"Huo An and his fellow warriors try to fight their way out of the city, which leads his wife's death." tt3672840,SwjKQrYpe-g,"Huo An tries to protect the Silk Road and prevent conflict among the trading nations, but is instead drawn into battle by Cold Moon." tt3672840,p9XIPtizl3s,Huo An and Lucius square off in a sword battle in the middle of the desert. tt3672840,Pve6cemkiDg,"When several nations show up to protect the Silk Road, Tiberius's army proves to be quite strong, killing many top warriors." tt3672840,KaLpXs1SDWo,"Huo An and his fellow soldiers fight back against Tiberius' army, using stones and spears to craft a massive battering ram." tt3672840,1xXjjahIwr8,"When he discovers Lucius tortured and without any eyes, Huo An decides to kill his friend before he is burned alive." tt3672840,1mqubJrf6KA,"Huo An loses ground against his adversary, the strong-willed Tiberius." tt3672840,taL06OVt4kQ,"Just as he is about to be executed, Huo An regains his strength and murders Tiberius." tt1758570,Ga9WsLD5LV4,"When aliens invade the city of Los Angeles, they reprogram the military's weapons and use them against the pilots trying to take them down." tt1758570,pmuDcYB17E0,"Despite strong threats from Commander Wakes, Arnstead can't muster up the courage to make his plane take off, which gives the aliens just enough time to attack." tt1758570,jTnDuMlebNU,"When Solano and Tyler are captured by a massive alien beast, she convinces him to throw her a grenade, sacrificing herself and bringing down the monster for good." tt1758570,PENNRVb6OBM,"When Tyler and his company get their backs pinned to the wall by an alien attacker, Captain Smaith drops in to rescue them with her katana." tt1758570,TSxB1wKzjhE,"When Arnstead loses control of his mind to a mysterious light source, Solano is left on her own to handle an alien attacker." tt1758570,B9pucpn_NOE,"When all hope looks lost, Tyler uses the power of his mind to engage the shields on the spaceship and rescue himself and Captain Smaith." tt1758570,KbOr1buhh-Y,Tyler and Captain Smaith take down an enemy spaceship with a rocket launcher as they barrel through the ruins of Los Angeles in a tank. tt1758570,aYTP2-S8fxk,Tyler must use the power of his mind to pilot an alien spaceship and defeat an incoming invasion. tt1758570,gOw5myC1PBI,"When asked to communicate with the alien they are holding captive, Rodgers lets out a horrendous squeal and reveals that he is actually a robot." tt1758570,iypUHnZ-9TM,"When a robot emerges from Rodgers' severed head, it attacks the soldiers and puts a hole in Newman's chest." tt2216240,ZuCKjnYIRYQ,"As the pirates prepare to leave, one of them notices Mikkel's ring." tt2216240,CzugC2PxerE,Peter finally reaches a deal with the pirates. tt2216240,L-5U2tIfxAg,"The pirates let Mikkel call his wife, but it turns out to be just another negotiation tactic." tt2216240,jvh9Kw3NbMs,Peter goes against the advice of everybody around him and gets emotional when talking to the pirates. tt2216240,m83iX-zbiGU,"The ship's cook is chosen by the pirates to negotiate with Peter, the CEO of the shipping company." tt2216240,iI5M8zwvki0,"After the pirates let them out to get some fresh air, Mikkel and another sailor decide to fish for a bit." tt2216240,0y-Y83y4kKo,Mikkel informs the negotiator that the crew needs food. tt2216240,GrWc2UKDo-s,Peter meets with the families of the men who are being held by pirates. tt2216240,YOlt7yp_QIs,Connor Julian advises Peter on how to go about negotiating with pirates. tt2216240,ZhAeutRIUzI,Peter and Connor continue to negotiate with the pirates. tt2310332,tJPokP3FVl8,"Azog kills Fili, leading Bilbo and the other dwarves into a frenzied battle." tt2310332,CBbH4CVp1S0,"Azog and his orc army begin to overpower the alliance of elves, dwarves, and humans." tt2310332,v5llnbqhLZM,Bard pierces Smaug's heart and defeats him once and for all. tt2310332,tb9kVTItw3I,"Bard protects his children and the village of Dale, using a wagon to defeat a massive, hideous orc." tt2310332,qPkKjKAyJ8I,Galadriel revives Gandalf and fends off the Necromancer with the help of Saruman and Elrond. tt2310332,WYi4Bp1hmC0,Thorin rallies his troops and heads into battle. tt2310332,tnwarNcu3fc,"Kili is killed by a vicious orc named Bolg, leading Tauriel into the thick of battle." tt2310332,3kNqc5Hrh0M,"Legolas fights Bolg and goes on an orc killing spree, while Thorin begins his final battle with Azog." tt2310332,uHuDwL4XEUE,Bilbo shares Thorin's final moments with him. tt2310332,tuXSqMrfVW8,"Thorin finally defeats the evil orc, Azog." tt1170358,UC6sKTqfgg8,"After escaping the giant spiders, the dwarves are captured by the Mirkwood elves led by Legolas." tt1170358,-QfKnft9uWY,"Bilbo uses the ring and his sword to defeat the spiders in Mirkwood, coming up with a name for his blade in the process." tt1170358,AutuCkT54KI,Bilbo helps the dwarves escape elven captivity by hiding them in barrels. tt1170358,khK3EggW2DY,"While rushing down a river inside barrels, Bilbo and the dwarves fight a swarm of angry orcs." tt1170358,SeYgMYijdz4,Gandalf is overpowered by the darkness of the Necromancer and sees the Eye of Sauron. tt1170358,n59mG9_X35Q,"When Smaug begins to attack, Bilbo uses the ring to hide." tt1170358,KLkD0H3K5Zk,Legolas protects the village of Laketown and faces off against Bolg and the orcs. tt1170358,Rf82VHBcoYY,"When orcs attack Bard's family, Legolas and Tauriel arrive just in time to save them." tt1170358,aBxlJkcHDSM,"Thorin attempts to take down Smaug once and for all, but fails and unleashes him upon the citizens of Laketown." tt1170358,v9pZdy4lZ7U,Thorin and the dwarves trick Smaug into igniting a massive furnace. tt0903624,pxQNKJWZ-t0,Radagast tries to distract the orcs while Gandalf leads the dwarfs and Bilbo to safety. tt0903624,YV-vi9NuyTw,Radagast warns Gandalf about the evil that has taken over Dol Guldur. tt0903624,RcC6K2k6cwk,Gandalf leads the dwarves out of the goblins' cave. tt0903624,IQWtTLEslg8,"Just as all hope looks lost, Bilbo rescues Thorin and Gandalf's eagles arrive to save the day." tt0903624,TeSzBaedb2Y,Bilbo gets captured by a group of dim-witted trolls. tt0903624,gW7ozVNSL8k,Gollum realizes that Bilbo has stolen his precious ring. tt0903624,qHisKG66fLI,Balin recounts the story of Thorin's valor on the battlefield against the evil orc Azog. tt0903624,s8cVCsIcGAE,Bilbo tells the story of the arrival of Smaug and how the dragon drives dwarves out of their mountain and takes it as his own. tt0903624,UFFWH8N9SLk,Thorin pledges to win back his homeland. tt0903624,e0HzBST_794,The dwarves create a mess and tease Bilbo with a playful song. tt1507566,KQlR_8YkRKg,"Daniel and Kelly reunite, while Mr. White steals the painting." tt1507566,ZYaLloEakCg,Daniel tells Mr. White where the painting is. tt1507566,5hocAgn07-U,Mr. White has a new project for Daniel. tt1507566,2QKuy-mlQfI,Mr. White vists Murphy at his art gallery in order to get his payment. tt1507566,wJzWgX63LRs,Agent Tom Kozinski asks Dr. Kelly Monaghan for her help in his investigation of Daniel. tt1507566,Aaj_WEYZJN0,Daniel explains he and Tay sold their forgeries. tt1507566,XuLHSjIXpJk,"Daniel, under the guise of Signor Renoir, tries to sell his forgeries to Tay but he can see they are fakes." tt1507566,pa1ZFxgQmUY,Mr. White tells Daniel that he works for him now. tt1507566,DNpBEvHATIs,Daniel explains how forgery has been around as long as art. tt1507566,XhwgtlCns34,Daniel describes how he first got into art. tt1507566,BFaqEfhGj4Y,"Daniel tries to sell his paintings to Mrs. Needham, but she is not convinced to buy." tt0988045,0NUDP-gxGyM,Holmes shows up at Irene's hotel in an attempt to convince her to leave London. tt0988045,ZXyLYqWUffA,Watson and Mary hear what Holmes has discovered after they find him hanging from his bedroom ceiling. tt0988045,iA_KZwlnrcI,Sherlock Holmes is attacked by Lord Blackwood in the final showdown. tt0988045,eBVqcDJbl5A,"After Sherlock saves Irene, Watson trips a wire that sends the whole dock bursting into flame." tt0988045,1DTrvZ3wxy0,"Holmes, Watson and Irene try to disarm Lord Blackwood's weapon." tt0988045,N_c0y8BcKBU,Holmes discovers a shocking weapon while fighting Blackwood's henchmen. tt0988045,wdVtcHMYAM4,"Sherlock follows Irene Adler through the underbelly of London, disguising himself along the way." tt0988045,l6TGERgrXmA,Mary meets Holmes and makes the mistake of asking him to tell her what he can conclude about who she is. tt0988045,u-z5139CW1I,Holmes predicts the pattern that his boxing match will take in his mind. tt0988045,dVzFy-4c-AY,Holmes and Watson catch Lord Blackwood and get him arrested for kidnap and attempted murder. tt1261046,DlJKjlgWFu0,"The Reaper threatens Dr. Shank, giving him two weeks to complete his task. When he discovers there is a spy in their midst, The Reaper sends the Metal Machine Man after him." tt1261046,NS8z60XHJdk,"When Violent J discovers he has been stabbed through the leg, Shaggy 2 Dope is forced to leave him behind." tt1261046,YC0tFqipqpI,Violent J and Shaggy 2 Dope attack the Reaper and end up caught in an explosion created by Homeland Security. tt1261046,YM4Of8J6gLE,"Things heat up between Fred and Double Dee, but when Queen B is assaulted by the Metal Machine Man they take him down once and for all." tt1261046,WZrXR5HAEVw,"Violent J, Shaggy 2 Dope and the rest of the racers take on the Metal Machine Man." tt1261046,RjyCXfloRJk,"The Governor explains the rules of the Death Race to the racers, but when Danny steps out of line he blows his head up." tt1261046,rl6soHoCV8k,The racers begin their slaughter as the death race gets underway. tt1261046,-08xWZTUbNI,"Violent J and Shaggy 2 Dope try to take down the Governor and the Reaper, but instead get their heads blown up." tt1261046,o0HHjpIa8fw,"Queen B and Fred come to blows, each killing the other as Double Dee watches on." tt1261046,K3VNZOc_Wo4,Violent J and Shaggy 2 Dope take on some criminals who attack them in the street before discovering that Homeland Security has been blown up. tt1656186,GjhHy-kMAw8,"Will strains to save Alison from a sinking cab, but Vincent's got other plans." tt1656186,Rsd5rA1MJSw,"Vengeful at being shot in the leg and not getting his ten million dollars, Vincent kidnaps Alison, offering Will an ultimatum." tt1656186,Y9H1jFdPzD8,"While Vincent deals with a meddlesome police officer, Alison makes a run for it." tt1656186,gLzsj4U96oM,"Desperate to save his daughter, Will lashes out against the police detaining him." tt1656186,gv0zKrCQscA,"With his daughter's life in the balance, Will chases down the killer's taxi cab, but he might've made a massive mistake." tt1656186,JNkxfdR9dXk,Will uses the many resources at his disposal to get what he needs from the FBI. tt1656186,Y3NbUilKutU,Vincent loses his patience with an unwelcome passenger while Alison works to escape from the trunk of his car. tt1656186,SplRDi4FOfs,Will races to save Alison while Vincent lays out his demands. tt1656186,QS-7heS_70c,"Will, ten million dollars in hand, leads the police on a high-speed chase." tt1656186,aBxruaQibgE,"Will and Vincent break into a bank while the Agent Tim Harland closes in, but he might not be smart enough to catch these two." tt1656186,oYuI54XUXkg,"Will prevents Vincent from shooting a witness, and makes an escape, but his actions will have far-reaching consequences." tt2097307,GKAPU5e7miY,"Mike buys time for his son to escape, and confronts Luke." tt2097307,kbS0Wkxr49I,Daniel and Mark rescue Emily from the bad guys. tt2097307,glrsnwHe_ng,"Whiel Mark and Daniel argue, the bad guys capture Emily." tt2097307,9glAGvMjZiw,The police chase Daniel throughout the high school. tt2097307,1X2YeXs8FE4,"While their home is invaded, Mike buys time so that Daniel can escape." tt2097307,Tctmuish8xI,Daniel and Emily have a unique first date. tt2097307,MhCI7MtnO3w,"When a rescue attempt goes wrong, Daniel must decide between exposing who he truly is and saving his friends." tt2097307,2oLedbPVWzY,Daniel and Emily share a romantic moment after a date. tt2097307,tfiIjZGirC8,"After breaking in to the pawn shop, Daniel does some sightseeing across the city." tt2097307,Q93k0-I6RC4,Mark and his friends show Daniel what they do for fun. tt2097307,_ODUt36beOo,Daniel evades the police throughout the rooftops of Detroit. tt1951265,zYZIHnjnGSQ,Top figures in Formula One discuss how much safer the sport has become in recent years. tt1951265,YKYtIhbcyuo,The men of Formula 1 discuss Senna and the accident that took his life. tt1951265,bCZVLjurkyY,One of the biggest rivalries in Formula 1 history pitted James Hunt against Niki Lauda. tt1951265,phwcul7F-Ro,Formula 1 drivers talk about Niki Lauda's fiery crash. tt1951265,O_rneC4S2G0,The Formula 1 drivers discuss Francois Cervet's death and the effect it had on them. tt1951265,-ryd97UQcrI,The drivers reflect on Roger Williamson's gruesome death and the danger involved in Formula 1 at the time. tt1951265,IyFhDTUhX80,"Instead of being fierce rivals, Formual 1 drivers shared a bond that made them a family." tt1951265,U3ua5aIvPNg,"One of the first major deaths of a Formula 1 was that of Jim Clark, at Hockenheim race track in 1968." tt1951265,kUMB4-8MTio,A first person view of Ayrton Senna driving in the Monaco Grand Prix. tt1951265,zdHVp6JC0mQ,"Martin Brundle gets into a terrible Formula 1 accident, but walks away without a scratch." tt1951265,wQFjbrojx4I,"Formula 1 icons talk about the first great driver of their sport, Juan Manuel Fangio." tt0844471,uuWIaDATbnE,Flint brings joy to the town as he makes it rain food every day. tt0844471,iGVsptoMsKE,"To his surprise, Flint's machine begins to work and hamburgers fall from the sky." tt0844471,xAkmG6uqBd4,"When Flint makes it snow ice cream, everyone goes out to play." tt0844471,pHrp2OM19t4,Flint struggles to shut down his machine and prevent a spaghetti tornado from destroying the town. tt0844471,8xZ0jOhAHMk,Flint and the others take to the skies to fight off the attacking food. tt0844471,HlyzLOPYuKc,Brent finds his place and fights off a swarm of attacking rotisserie chickens. tt0844471,FKW1h53hSxs,"When the dam breaks, Earl saves the town from total devastation." tt0844471,z-fCbA2aAyg,"Sam admits she has feelings for Flint. Then, she and Brent rush to make an escape while Steve fights off a pack of angry gummi bears." tt0844471,MwcXLL103vE,Flint uses one of his inventions to shut down the machine once and for all. tt0844471,1Qd2hicvxBc,Dad finally manages to tell Flint how he feels about him. tt1766094,HyY-bOuj9SY,"Molly is captured by Armon, but she's not giving up without a fight." tt1766094,OBErTpjVCQQ,"While investigating at Professor Talloway's house, Molly is attacked, but uncovers the key to the investigation." tt1766094,qV0h46fpZeA,Molly confronts the FBI and rallies her sorority sisters. tt1766094,5Qfba1tSw4k,"At the sorority party Molly has to deal with Nicholas and Cotton's cheating boyfriend, all while trying to tail Alex." tt1766094,zYeRo6OtrYU,Molly and Nicholas get to know each other better as they walk around the block. tt1766094,tDzuDRGP0z8,Molly gets a surprise wake up in the middle of the night. tt1766094,0E1TIcc29vw,"Molly makes plans for a date with Nicholas, awkwardly." tt1766094,PkqrMMqSNaA,Molly unpacks her belongings and meets her roommate Becky. tt1766094,v7r2OuigZoQ,While walking through the campus Molly meets a handsome young man with a motorcycle. tt1766094,itIt0nSWDGI,Molly gets a warm welcome entering the KKZ sorority house. tt1766094,4cH4xyezQv8,Molly gets caught snapping photos of the state senator and his lovers. tt2024506,i9OLZ8rhtlk,Katherine and William learn that Scott has actually been battling a brain tumor and that he is now in a coma. tt2024506,zEGnL7wKzXE,"After visiting Scott, Katherine realizes that she should try to connect with her husband William." tt2024506,60QyvomMug0,"The Henderson family has a strained lunch together, but realize that at the end of the day they are family." tt2024506,GZACBCZQFt8,Charles gives his presentation on the Aztecs in front of the whole school. tt2024506,ZLIY6uk1pxI,Katherine scolds Scott after he throws a party at her house without her permission. tt2024506,AcOMZUiVuJM,Scott and Katherine reminisce about their past relationship while smoking a joint. tt2024506,qK-5zQpICPw,Scott gives Charles some advice about talking in front of a crowd. tt2024506,MFbZe0ZJn04,Scott visits Charles at school to make amends. tt2024506,P785O3-r7A8,"When Scott misses dinner, Katherine confronts him." tt2024506,sOmJgmCvISY,"Scott surprises the Hendersons, by coming to visit after eight years." tt2024506,5N8eh_84W4w,Katherine confronts Scott and asks him why he is even there. tt1374992,rCLzT9M7rCE,Adam and Eden try to evade being captured by the border guards. tt1374992,WefEB2u3fwI,Eden is reunited with Adam and she surprises him with amazing news. tt1374992,MsHusoTYzTA,Adam and Eden reunite at the edge of their worlds. tt1374992,aBFi3S-t9R8,Adam and Eden travel to the edge of their worlds to meet one another. tt1374992,fS4vBoC4Di0,"Just as Adam and Eden are reunited, border guards arrive to take Adam." tt1374992,nXqveIQdCvE,Adam's shoes start to burn after staying in Up too long. tt1374992,kgYskjeMVOA,Pablo confronts Adam about the thought process behind his plan. tt1374992,mj04qm_DEp8,"While enjoying a wonderful day in the woods, Eden and Adam are discovered and must escape." tt1374992,kv9QW8UYCDE,Adam gets into an argument with Albert about working for TransWorld. tt1374992,xfdye3eXF8s,Aunt Becky makes her incredible flying pancakes for a young Adam. tt0770828,FGL4-sXko9w,Superman tries to save Metropolis from Zod's wrath. tt0770828,5h9E5SmLCVM,Jor-El tries to retrieve the Codex before General Zod. tt0770828,kjtPUnPa0LQ,Colonel Hardy sacrifices himself to destroy the World Engine and Superman saves Lois. tt0770828,lpod4qQzO7Q,Superman and Zod fight to the death. tt0770828,A6PpUgfZcRU,The humans' effort to intercede in the fight between Superman and the Kryptonians proves to be futile. tt0770828,sQA199D8U2g,Superman learns how to control his power and fly. tt0770828,BIdtUDoR5A0,Superman battles a couple of Zod's Kryptonian soldiers in Smallville. tt0770828,U2SdWVntd-o,Zod kills Jor-El out of anger when Lara launches their baby off Krypton with the Codex. tt0770828,yodVQ5QAc88,"To keep Clark's powers hidden, Jonathan refuses his help when a tornado is about to engulf him." tt0770828,S9U3ajjpH5A,Superman destroys Ludlow's truck after resisting the urge to fight him in the bar. tt0067992,fpK36FZmTFY,Willy Wonka venomously explains to Grandpa Joe why Charlie will not receive the lifetime supply of chocolate. tt1646987,Tkjw0XB9Xuc,Perseus rises to the challenge when a fire-breathing Chimera attacks his village. tt1646987,BKgd8Q3X0AA,"Zeus fails to convince Hades to rebuild Tartarus's walls to contain Kronos. He's then attacked by his brother, and betrayed by his son, Ares." tt1646987,-IV-ZZwXUkw,Perseus and his fellow warriors battle a clan of angry Cyclops. tt1646987,CsukLjjPv-U,"When Ares begins an attack, Hephaestus sacrifices himself so that Perseus and the others can enter the labyrinth." tt1646987,EQqdhMcUSAw,Andromeda and Agenor lead the charge into battle against Kronos and the Makahi. tt1646987,xihdBpPICZY,"Zeus, Perseus, and Hades use their power and might to defeat the volcanic monster Kronos." tt1646987,CgmI90T4Efk,"Ares and Perseus come to blows in a devastating battle, while Andromeda tries to lead her army against the Makhai." tt1646987,jNPBfvcLIMs,Perseus struggles to free Zeus as Kronos awakens. tt1646987,Q6jbNsSNxf4,"Perseus defeats the vicious Minotaur, allowing him to escape the labyrinth." tt1646987,qmJiZfD6n9M,"When Ares nearly attacks Helius, Perseus rises to protect his son and defeats the god once and for all." tt2383068,CjqKicoWqZ0,Caroline poisons her brother Patrick as the whole commune commits suicide. tt2383068,uYBCAaCGGcc,Jake looks through the dying commune for his friend Sam only to find a frantic Caroline instead. tt2383068,AYxHnjsJOik,Jake finds Sam tied to a chair with Father blaming them for everything. tt2383068,nIsM8bP-GHQ,Father convinces his followers to commit mass suicide by poison. tt2383068,byrLv_402BU,Jake and Sam start to get suspicious of the commune when they can't find their friend. tt2383068,m5dfATd_ZY8,"Jake, Sam and Patrick meet up with Caroline who shows them around the commune." tt2383068,56F_nTxTQj8,"Father, the leader of the commune, turns the interview around on Sam." tt2383068,mGJ-2YWYrgE,"Jake, Sam and Patrick have some difficulty making their way to the commune." tt2383068,OGG3HuI6HcY,"As Jake, Sam and Patrick prepare to leave they notice a bunch of commotion in the middle of the commune." tt2383068,2pFBwbyyNac,"Sam interviews Father, the highly praised leader of the commune." tt0105698,vf2EeAvsHAU,"Brian gets skewered by a Universal Soldier and Ellison puts him out of his misery, much to the dismay of the other soldiers." tt0105698,KJ7Fv2QvzpI,"After a close encounter with a Universal Soldier and Kate's booby trap experience, Major Clifton sets the course for the next leg of their journey." tt0105698,h6jcrXOs088,"Tensions are running high as the soldiers argue and the scientists voice their frustrations. It appears things might be looking up, though, when Lt. Clarke gets a call from their rescuers." tt0105698,0Cpa6Zn7ffA,Kate finds a way to destroy the nearly indestructible robot. tt0105698,66f94DU8ab4,"Kate and Joe think their work is done, but Kate must destroy a Universal Soldier after it kills Joe." tt0105698,MOA_WeKu76o,Lt. Clarke blames Dr. DeMicco and makes him explain the Universal Soldier project just before another attack forces the troops to scatter. tt0105698,3JF7tS3pxmc,"The guys are no match for the Universal Soldier, but Ellison manages to escape after fighting him one-on-one." tt0105698,m8A9XOElA2o,Kate learns that Anne has been testing them the entire time. tt0105698,yQYUTyaODfE,Lt. Ash kills himself after he's mortally wounded by a Universal Soldier. tt0105698,xPYQOuxYES0,Lt. Clarke and Lt. Ash make it to the armory and Kate fights the Universal Soldier. tt0067992,4EF1zYFHbus,Augustus Gloop's craving for chocolate gets him stuck in a tight spot. tt0067992,Oa6OoTVXG6E,Grandpa Joe hops out of bed upon hearing the news that Charlie has found the golden ticket. tt0067992,HcpDdWIaAuE,Bill shares his candy with the children and teaches them the wonder of Willy Wonka. tt0067992,8Yqw_f26SvM,An impetuous Violet ignores Willy Wonka's warnings and tries a piece of his experimental chewing gum. tt0067992,LIYNk4ARUR8,Willy Wonka sings a tune as he welcomes the five lucky kids and their parents into his chocolate factory. tt0067992,5wAlQf4WdiE,Veruca breaks into song to let everyone know about her insatiable desires. tt0067992,pvS3j8VtanM,Mrs. Teevee gets an unexpected surprise when her son Mike becomes the first human to be transported via WonkaVision. tt0067992,XB401RfGMlM,Willy Wonka guides the group into a dark tunnel full of strange kaleidoscopic imagery. tt0067992,1Fxq_n8e1qA,Charlie finds the last golden ticket after buying a Wonka Bar at Bill's Candy Shop. tt0024216,p03u3v6GF-Y,"While Kong is distracted fighting another dinosaur, Jack makes his move to save Ann." tt0024216,1vNv-pE8I_c,"While the crew flees through the jungle, they are attacked by the monster known as Kong." tt0024216,0JVZ0bE8hpk,"While searching for Ann, the crew is attacked in the swamp by a Brontosaurus." tt0024216,DujyJ1EDft8,"After breaking free from captivity, Kong climbs the New York City hotel in search of Ann." tt0024216,8qkahQVFzMI,King Kong climbs New Yorks' Empire State Building with hostage Ann Darrow and a battle ensues. tt0024216,zct1tPK1Zk0,Panic and chaos ensue after Kong breaks free of his chains to wreak havoc throughout New York City. tt0024216,MMNICLfHE3M,King Kong falls to his death after an aerial attack. tt0024216,m2cUbp6Vkfs,Denham captures Kong after the giant gorilla goes on a rampage through the island. tt0024216,yvD3X3RcK3Y,Kong protects Ann Darrow from an attacking Tyrannosaurus Rex. tt1709143,XvZhDq1NRhk,"Vincent searches for Lane, who has decided to commit suicide after discovering that she is infected." tt0024216,rnaCi4rBfqw,Ann is sacrificed by the island's natives to be Kong's new bride. tt1709143,N1HQEIaRZxk,Vincent discovers an infected Irwin on the rescue ship. tt1709143,93Kzx7azL6c,Vincent sees the rescue crew land on Mars and all the zombie-like monsters waiting for them. tt1709143,eyvwHF7NIGc,The air is sucked out of the base at the same time one of the zombie-like monsters breaks in and attacks Kim and Irwin. tt1709143,7lQT4xGTpIA,"When their rover gets low on power, Irwin volunteers to investigate a nearby second one, leaving Vincent and Lane to wait for him." tt1709143,blWwfkSF89o,"Vincent, Lane and the others try to help the Captain after he was attacked by one of the zombie-like monsters." tt1709143,GLOcJyFEXIw,Vincent investigates the cause behind the power failure at the second base. tt1709143,EbMddMJU97g,Kim fends off the zombie-like monsters while Charles and the rest of the crew arrive at the base unaware of the danger. tt1709143,19j24of8C_w,Kim and Richard prepare for the arrival of two crewmembers they previously thought were dead. tt1709143,SEQuHP-wL5Y,Scientist Marko Petrovic and crewmember Richard Harrington investigate a discovery after lying to the rest of the crew about it. tt1578882,kJ-wkP8Xm40,"When Curtie Church confronts Boss Katha about Mae, he finds out that Mae has actually been dead thirty years." tt1578882,7HZj_fM4yTg,"With the help of Mae, Curtie Church decides to stay in Bangkok to help the girls." tt1578882,2as1htsiNxY,"Curtie Church successfully kills Advisor Bhun in the woods, only to realize that it was a dream." tt1578882,pjJU7RkSrr8,Boss Katha tortures Jimmy to get information out of him. tt1578882,qerH8bjHVnI,Curtie Church visits a brothel to confront his employer Rajahdon. tt1578882,tp_TZ--JHEA,Curtie Church talks to Boss Katha over the phone and coerces Jimmy into giving him a new gun. tt1578882,RLsGDXjTW2w,Curtie Church goes to the Chang Cao Gang building and tries to take everyone out. tt1578882,f6kcBGKxGtE,Curtie Church runs after Jimmy to ask for a favor. tt1578882,F-q3C6jSZYQ,"Jimmy shows Curtie Church his gun collection, which features guns used in movies." tt1578882,3nDCPEcEuPs,Jimmy shows Curtie Church his exclusive gun collection. tt2279339,AGY5gNpoPfI,"Eleanor and her parents argue about their relationship and her ""engagement"" to Joe." tt2279339,DECt9uTxaLE,Eleanor and Joe flirt while making up the story of how they fell in love. tt2279339,9dmlcGZta9E,Sam and Charlotte argue about their past and the state of their marriage. tt2279339,RAsK38Vdep4,"When Sam and Charlotte pick up a hitchhiking teenager at the side of the road, it causes them to reminisce about their past and the beginning of their relationship." tt2279339,SELFeneZL04,Joe envisions the beautifully romantic moment he wishes he could share with Eleanor. tt2279339,jPfje0jZeMo,"Charlie shares his first kiss with Lauren, only to be tormented by a bully at the mall." tt2279339,LAk5KEGLzmc,Emma tries to help Percy process his past and his sexuality by pretending to be his mother. tt2279339,KwWHPqidGuA,The Coopers finally realize all of the happiness they have in their lives and share a heartfelt moment dancing together in the hospital cafeteria. tt2279339,zzORtbUYE4c,"Eleanor realizes she has feelings for Joe and chases after him through the hospital. Then, they share a kiss and a romantic Christmas moment." tt2279339,uRjbDsGz2tc,Bucky follows Ruby into the kitchen at her diner to express his feelings for her and tell her how great she truly is. tt2279339,z7fOP7aW1P4,"Sam shares an emotional toast with his family. Then, Joe begins to say grace, but is interrupted by a special gift from Rags." tt5323662,ZMplRnotp8M,"Jerry kidnaps Dr. Warren and takes her to a remote field, where he forces her to give him the therapy he needs." tt5323662,Gk_2euKF9MY,"Jerry passes on and succumbs to the voices in his head, who perform a cheery song and dance number." tt5323662,xllpnvAmnHE,"Jerry talks to his cat, dog, and Fiona's severed head to determine if he is truly a serial killer." tt5323662,bJSDrRcwwKQ,Jerry recalls his involvement in the gruesome death of his mother. tt5323662,SaaTUj7m8e4,"After Jerry kills Alison, all the voices in his head offer an opinion." tt5323662,ml_zSw6yWOE,Jerry tries to get Lisa to calm down after she discovers that he murdered Fiona. tt5323662,Ax-iwIoIxjY,"When the police arrive at his apartment, Jerry escapes through the vents, causing a gas leak and explosion." tt5323662,pYmo3PXF_T4,"After he hits a deer with his car, Fiona runs away from Jerry, causing him to lose control." tt5323662,UY0nYr-dXEI,"After a meeting with his pyschiatrist, Dr. Warren, Jerry participates in an office conga line and talks to his pets about the woman he has fallen for." tt5323662,H5I1DyJ3w1g,"Jerry cleans up the mess he made from killing Fiona, but her severed head begins speaking to him." tt0800320,o4ARk91_ptU,"Sent by Hades, Calibos attacks the soldiers and tries to kill Perseus." tt0800320,38AYeNGjqg0,Zeus orders Hades to unleash his monster on the world. tt0800320,jdp_wn_UrcE,"After Calibos stabs Io, Perseus uses his Olympian sword to seek vengeance." tt0800320,GrIJLWISdlQ,Perseus defeats the Kraken just as it is about to devour Andromeda. tt0800320,MUEhAUpa7iA,Perseus banishes Hades back to the underworld and rescues Andromeda. tt0800320,Bx9JRDKjrwA,"Perseus, Io, and the Argos soldiers visit a group of witches to find the answer to killing the Kraken." tt0800320,GWxf8Hb-Xis,"Hades comes to Argos and threatens to release the Kraken on its people unless they sacrifice their princess, Andromeda." tt0800320,FY00zwMZsqM,Perseus defeats Medusa and takes her head. tt0800320,2OXtHJgLJr0,Perseus watches helplessly as his family is murdered by Hades. tt0800320,K57aIbpF_Co,Perseus and the Argos soldiers fight off giant scorpions. tt0120912,kRNhyHiBUXs,J is forced to take Frank into the field with him as his new partner. tt0120912,lr7pyggTmmY,J visits K at the post office and re-introduces him to alien lifeforms. tt0120912,W_EYrVGI7LQ,J saves the passengers of a New York subway from a massive attacking alien. tt0120912,F4QzrKakPmU,Jeebs uses his deneuralyzer machine on K to bring his memory back. tt0120912,nwrLvq5W58o,J fights a gang of aliens looking for K. tt0120912,A9sd10CHAP8,K and J visit a tiny civilization inside a locker. tt0120912,5NY_8ulSutc,J goes toe to toe with the alien Jarra to rescue K from Serleena's clutches. tt0120912,KNdmBWoCfAc,K switches the car to hyper speed during a chase with Serleena. tt0120912,ZdhqVdIsBSE,K and J go to battle against Serleena and Jarra. tt0120912,PhLfIqO2SLI,"When they are attacked by a giant tentacled alien, Laura is forced to leave J behind to save the planet." tt1392190,Mk_C5QH2Eb8,Max and Furiosa face War Boys using harpoons to stop the War Rig and poles to snatch the wives back. tt1392190,QJX3XvkTJQk,Max convinces Furiosa to do the unthinkable - go back and take over the Citadel. tt1392190,q38QzB5dw0A,"In the midst of battle, Furiosa faces off against Immortan Joe." tt1392190,y1gkMNjkFiQ,Furiosa and Max try to survive the onslaught from Immortan Joe's forces. tt1392190,AWvRcWDr5y8,The Bullet Farmer ceaselessly attacks Max and the women at night so Max takes matters into his own hands. tt1392190,KS_KStIPiwU,"Immortan Joe tries to take back his wives from Furiosa, but tragedy ensues." tt1392190,ZnIkMhuNmjo,Furiosa and Max try to survive an attack from a motorcycle gang. tt1392190,Vcgn4EY5_S8,Max meets Furiosa and the five wives in the desert and tries to get them to cut off his chains. tt1392190,W28kNzz50pw,Max tries to escape while Nux tries to stop the War Rig inside a sandstorm. tt1392190,k4Lpr1sqKbQ,"Furiosa fends off an attack on her War Rig, with a little help from Nux and Slit." tt1985949,l7FkN4ooYvA,Red meets his bizarre new anger management classmates. tt1985949,BGEFW4kc5EQ,Red loses his temper and ruins a child's hatchday. tt1985949,lF3IIOXn5qU,The pigs introduce the birds to the slingshot by sending Red flying through the air. tt1985949,FUWdPWW4csI,Leonard arrives from Piggy Island to make friends with the birds. tt1985949,LCljgWh4L8Y,Red and the guys head out to find the legendary Mighty Eagle. tt1985949,Boona4-qLSE,"Chuck and Bomb play in the Lake of Wisdom, only to learn that Mighty Eagle uses it as his personal toilet." tt1985949,KKfz8C48EJk,Red and the birds fight Leonard and the pigs to save the eggs from being eaten. tt1985949,Jj-mAiTMvX8,Red and the guys try to sing Mighty Eagle's terrible theme song. tt1985949,dmqo-EuR8Cw,Red uses a slingshot to fly and smash the pig's castle. tt1985949,T5CoWL_wdC4,Red uses dynamite to defeat Leonard and save the eggs. tt2379713,y_eZw262fhM,Bond tries to survive an attack by Hinx on the train to Oberhauser's base. tt2379713,iM0hP-LZIvI,Bond tries to rescue Madeleline before the bomb detonates. tt2379713,bOP-THNe4m8,Madeleine takes the time to help Bond escape from Blofeld's compound. tt2379713,Ih-zPWi9INA,Oberhauser explains his past relationship with Bond and reveals his new identity. tt2379713,wOuk6V3Dj5A,"After stealing a plane, Bond aims to rescue Madeleine from the dangerous Mr. Hinx." tt2379713,A7HmqwyZ3oA,Bond is pursued by Hinx throughout the streets of Rome. tt2379713,g9S5GndUhko,Bond tries to finish off Marco Sciarra while surviving a bumpy flight. tt2379713,9eosfNwMpMs,Bond infiltrate the Spectre meeting in Rome. tt2379713,kEnK0ZdMThc,Bond takes out a city block while trying to take out Marco Sciarra. tt2379713,J-OLwCyAtBc,Bond saves Lucia from her exectioners and then seduces her to get more information on the Pale King. tt1409024,zUL_yawY6Ks,"J, having just returned from the past, makes sure the universe is back in order and thanks K for all he's done." tt1409024,bCLTAaa3qMM,"With help from his girlfriend, Boris the Animal breaks out of space prison." tt1409024,JLH_smT7Qog,J and K reprimand Mr. Wu for using illegal alien food at his Chinese restaurant. tt1409024,M3FtlKHZXhs,"K makes a less than moving speech at Zed's funeral. Then, O makes a speech in an interesting alien language." tt1409024,WIr_dCgNAjM,J and K fight off a gang of aliens in a Chinese restaurant. tt1409024,Y-cCAY2hGPs,"Boris the Animal meets a pair of hippies at Coney Island. Then, J is racially profiled by a pair of cops." tt1409024,nSO22k4XGUo,J and K draw information out of an alien by bowling with his head. tt1409024,gDPJG9FP3iM,Jay learns the truth about his father and his past. tt1409024,a3Xm0KpUYj4,J and K pursue Boris the Animal on a pair of high-tech motorcycles. tt1409024,Xd5ESRqpz3E,"J uses time travel to predict Boris the Animal's fighting tactics and defeat him. Then, K shoots off the other Boris's arm, ending the battle." tt0120685,xP7yIQladb0,"Nick and the others get trapped in a tunnel by Godzilla. Then, the beast catches their cab in his snapping jaws." tt0120685,jB9WGpVrYBs,Animal nearly misses being completely squashed by Godzilla's giant foot. tt0120685,VV97_cn54bQ,Godzilla emerges from the river to reign destruction upon New York City. tt0120685,f_LDdElm9fc,"The military uses all their firepower on Godzilla, to no avail." tt0120685,xiwtX0NC0uA,"The military tries to take Godzilla down with a pair of missiles, but instead destroys the Chrysler Building." tt0120685,_Z_n2Ray64o,"The military takes their battle with Godzilla underwater, attacking with submarines and torpedoes." tt0120685,4IsISIQpKTc,"The military uses all their weapons and might, but they are unable to take out Godzilla." tt0120685,DnGpfWa6FAQ,Nick and the others are attacked by a swarm of newly hatched Godzilla babies. tt0120685,GKuPSf9P3tw,The military is left with no choice but to annihilate Madison Square Garden to kill Godzilla's babies. Nick and the others make it out just in time. tt0120685,_JcFaIDdphE,"Godzilla gets caught on the Brooklyn Bridge, leading to his defeat." tt1985966,3PBo1ef-18Y,Flint and the gang discover an island of living food animals. tt1985966,kJlqNXhZE_I,Flint and Sam find a mischievous living strawberry and name it Barry. tt1985966,YjewWZ3JWiE,Flint and Sam recruit their friends for a new mission in Swallow Falls. tt1985966,o-OKsTWIVxk,Flint and Chester V use their inventive underwear to get the hard drive they need and avoid getting electrocuted. tt1985966,V3Tlo0EutEQ,Flint and his friends are attacked by a rampaging cheeseburger spider monster. tt1985966,ZawJ9EBOLVk,Flint and the gang are attacked by a giant taco monster. tt1985966,Ew8AJsPAyLg,Flint and Dad work together to build a fishing boat. tt1985966,xswJpwb7Afs,"Sam discovers that the foodimals are nice, not mean. Then, she and the gang are frozen by Chester V's Safety Sentinels." tt1985966,8osP7KRacWk,"Flint and the gang bring the machine back to life and create a happy world for the foodimals. Then, Flint goes fishing with Dad." tt1985966,DHWbxxpKb04,Flint and the gang use friendship and science to defeat Chester V. tt6343314,jv6-p4kphmc,Rocky and Adonis climb to the top of the stairs at the Philadelphia Museum of Art. tt6343314,4WgLRH-FpWQ,Adonis and 'Pretty' Ricky Conlan fight in the final round of the championship bout. tt6343314,rvOq4hFIRJg,"After getting knocked down, Adonis gets a second wind and sets out to prove himself." tt6343314,W4efgyM82kE,Rocky gives a last minute speech to Adonis and then the Creed team makes their entrance into the stadium. tt6343314,esFVrrZCvwA,Adonis brings the city with him on his run to Rocky. tt6343314,wnwsSOrmEKI,Adonis finds out about Rocky's cancer diagnosis. tt6343314,YYPpg3_Y4XY,Adonis takes on Leo 'The Lion' Sporino in his first professional fight. tt6343314,UQ15FRltlsY,Adonis and Bianca get to know each other over some cheesesteaks. tt6343314,jyNtMzHeJ6I,Rocky starts to train Adonis by using his old school approach. tt6343314,Fjr_CQHJiCo,"Adonis asks Rocky to become his trainer, and reveals himself as the son of Apollo Creed." tt6343314,W-cZK60yWbY,"Adonis sets out to prove himself to ""Little Duke"" and the rest of gym." tt0097647,3Sz7dbX2kTY,Daniel shows Mr. Miyagi the location he has chosen for Miyagi's new bonsai store. tt0097647,C58_gjlogWY,"Daniel and Jessica get trapped at the bottom of a steep cliff by Mike. Then, Mike does the unthinkable and breaks the bonsai tree." tt0097647,ymbKDavsVaU,"Daniel and Jessica climb down a dangerous cliffside to retrieve Mr. Miyagi's bonsai tree. Then, Mike steals their ropes and traps them in a cavern below." tt0097647,xCWkAXGz8W8,"Mike attacks Daniel during a date with Jessica, but Mr. Miyagi arrives to save the day." tt0097647,MPhIzvgB31Y,"When Mr. Silver bribes a young punk to pick a fight with Daniel, Daniel loses his cool and punches him in the face." tt0097647,e2dAiCB6igE,"When Mr. Silver teaches Daniel to channel his rage into his fighting, Daniel loses it and destroys the training dummy." tt0097647,TcndF9QpYAU,"When Daniel grows upset with his own behavior, Mr. Miyagi uses a bonsai tree to teach him about his inner strength." tt0097647,SPMpDCxhKGU,"When Mr. Silver and Mike attack Daniel, Mr. Miyagi arrives to put them in their place." tt0097647,7GrURVFAC2I,Daniel takes a beating as his competition with Mike gets underway. tt0097647,_S6GYF1B8Yk,"With inspiration from Mr. Miyagi, Daniel overcomes his fears and defeats Mike in the karate competition." tt0091326,U2HWD9dymUk,Kumiko performs a traditional Japanese tea ceremony for Daniel. tt0091326,7KF4iJzBVWM,"After Daniel's legendary karate fight, Mr. Miyagi teaches Kreese a lesson." tt0091326,XemAlj9_qKE,Mr. Miyagi teaches Daniel a technique to help him focus. tt0091326,gmElew2NIS8,"When Chozen attacks Kumiko at the Obon Festival, Daniel agrees to fight him to the death." tt0091326,TSPaaPqteCU,Daniel helps Mr. Miyagi deal with the death of his father. tt0091326,iKRpMjVJKZc,Chozen bets Daniel that he can't karate chop through six blocks of ice. Mr. Miyagi takes the wager and Daniel proves himself. tt0091326,-JNyHnAi8zk,"During a torrential downpour, Daniel rescues a little girl trapped at the top of a tower." tt0091326,DPmHrgbe3xo,Daniel and Mr. Miyagi venture into the thick of a dangerous storm to rescue Sato from being crushed. tt0091326,K7I9ERiBZrc,"When Chozen attacks Daniel with a spear and destroys his training dojo, Mr. Miyagi uses his superior karate skills to teach them a lesson." tt0091326,nKISdYhQcvw,Daniel defeats Chozen in a life or death karate showdown. tt1234721,UFuxiZFwDPs,Dr. Norton shows RoboCop the true state of his body after his accident. tt1234721,GlCN1EPAoHI,"When RoboCop wakes up, he begins to panic at the sight of his new form." tt1234721,ti9jg0JOK2I,RoboCop aces a high-level training simulation. tt1234721,gvuZShYhzX8,Dr. Norton succeeds at stripping RoboCop of his emotions just moments before his unveiling. tt1234721,_emU23tTUAw,RoboCop begins to short circuit when his emotions conflict with his programming. tt1234721,QLTlJDjPfHI,"In a laboratory simulation, RoboCop dismantles an entire drug operation." tt1234721,TxvqZhVwrSY,"Despite his robotic nature, RoboCop apprehends Sellars in the name of protecting his family." tt1234721,GtSNSaW9IRI,RoboCop breaks his way through heavy forces in an effort to rescue his family. tt1234721,sTbJQwezQZY,RoboCop confronts his police force for betraying him and working with Vallon. tt1234721,qyvR5lglbTE,RoboCop infiltrates Vallon's hideout. tt1217613,7jz_uA1dv9w,Nantz and the other officers are attacked by the aliens for the first time. tt1217613,m49ub45c8AI,Lenihan is ambushed by an alien hiding in a swimming pool. tt1217613,rd8JDPjEoE0,"Nantz bravely fights his way through alien fire to destroy a spacecraft, only to learn it was an unmanned drone." tt1217613,JYVhLnjKKC8,"During an intense shootout with the aliens, Rincon is shot and Nantz is forced to leave Martinez behind." tt1217613,Q0okgIEkRJM,Nantz and his fellow officers save a bus full of civilians while taking heavy fire from the aliens. tt1217613,TjY8crETM6s,The military uses their tanks' brute force to run right through the aliens. tt1217613,t6nqp5MdMp0,The military hits the aliens with a devestating blow. tt1217613,yrfpRh2SqIw,Nantz and his fellow officers take down the aliens. tt1217613,xSNkZYKC_c0,"As Nantz and the other officers attempt to travel secretly through the sewers, they are discovered by the aliens and engage in a firefight." tt1217613,06Its9LhIHQ,Nantz and the military continue their explosive battle with the aliens. tt2637294,X5HvuYGCyzQ,"At an extravagant party, Lou gets shot in a sensitive area." tt2637294,ttOuvmYYeps,"Lou, Nick, and Jacob are interviewed for a TV special about their success." tt2637294,LGnwTTGzjpk,"The guys meet Adam Jr.'s fiance, Jill." tt2637294,62z8SYqpuZ4,Lou picks a fight with a highly advanced smart car. tt2637294,GN1LhsTj5CQ,A studio audience votes to make Nick have sex with Lou. tt2637294,UzTveNwweRM,Adam Jr. takes a crazy drug at a party and has an epic hallucination. tt2637294,lKqS8lnlJsc,"Lou does some drugs at a party while Nick sees his music video for the ""Webber Strut""." tt2637294,rnTrWINYDsM,"Just before they have sex on TV, Lou uses a lifeline and replaces himself with Adam Jr.." tt2637294,_KC5AJdRgBs,Lou and Nick get sprayed in the face by a strange medicine inside Adam Jr's testicles. tt2637294,gYdm3PIHyaM,"Adam Jr. attempts to kill Lou, but is unable to do it. Then, he meets Jill, his future wife." tt2967224,9AtlQm1jVpM,"When Riva learns that her husband is dead, Cooper fails to control the situation." tt2967224,wXer1Hj8hR4,"Despite the fact that he is a fugitive, Cooper falls for Randy." tt2967224,NpSkrZRlGbk,"When Cooper falls under the influence of some ""baking powder"", she and Riva go shopping for disguises." tt2967224,BiukHSW8Az4,Cooper rescues Riva from a shootout at her mansion. tt2967224,tdvj1iOOUE0,Cooper picks up Riva after 3 months in jail. tt2967224,VnAmEovifpU,"Cooper and Riva use their feminine charm to distract a redneck, causing him to shoot off his own finger." tt2967224,UUzW7NqutUg,Cooper and Riva escape the police. tt2967224,Fy988XyqFhM,"While being chased, Cooper commandeers a bus full of seniors." tt2967224,lwhQK2kDfBM,"When Riva turns on Cooper, the two get in a cat fight over Cooper's gun." tt2967224,xpFArzEh9Dk,Cooper helps Riva take down the man who killed her brother. tt1355630,giGWC-o1mvw,"Just when life goes by like any normal day, Mia and her family get into a horrible accident, and suddenly everything has turned into chaos." tt1355630,2aqgKA3uUwM,"Mia discovers that her little brother, Teddy, did not survive the car accident." tt1355630,hhRIhD6BvMo,Mia discovers her passion for the cello. tt1355630,oUpzcxwFI6o,Adam sneaks into Mia's bedroom and the two share secrets about their family. tt1355630,TajTfrf2yXs,Mia and Adam share a special moment together on Halloween. tt1355630,-PFdr0SiAEw,Mia auditions for the Juilliard School of Music. tt1355630,9OhXJOQioeU,Mia and Adam argue about the future of their relationship. tt1355630,ZNnk9L2LSZI,Gramps tells Mia that it's ok if she wants to pass on. tt1355630,EBnn_Y29Pks,Adam plays Mia a song he wrote for her and she chooses to wake up. tt1355630,IYVg4o3KVPo,Mia shows off her prowess on the cello at a family bonfire. tt0089853,sNrOsj0xDPs,"Cecilia is heartbroken when she realizes Gil left without her, so she finds solace in a new film." tt0089853,vR1WPNzcXHE,Cecilia chooses Gil and Tom returns to the screen for good. tt0089853,nfzJCrxKVMU,"Tom heads back into the movie, but changes the story when he brings Cecilia back with him." tt0089853,vZlWLj1-eC4,"Gil starts to fall for Cecilia, who is enchanted, but confused about her feelings." tt0089853,bryVfEK0U4k,"Emma and the ladies try to convince Tom to accept a free sex session, but his heart belongs to Cecilia." tt0089853,QanZzw7zh7M,Tom defends Cecilia in a fight against Monk. tt0089853,_T6r7w_m504,"Gil's worried that Tom is out in the world messing up his life, so he's thrilled to meet superfan Cecilia to learn what his character's been up to." tt0089853,pLC_hRDO7Hk,"Tom notices Cecilia watching his film over and over again. Curious, he steps off the screen and leaves the theater with her." tt0089853,cyEqzALZmeA,"Tom learns that his money is useless in the real world, cars need keys to run, and lovemaking doesn't include a fade-out." tt0089853,75ovyrTzuYY,The actors panic and don't know what to do when Tom walks off screen. tt3850590,yXyrZImvR7c,"Just as the Engel family think they've won the fight, Elves arrive and kidnap Aunt Dorothy and the baby." tt3850590,ElvTXO2A3Uw,The Christmas holiday is upon us and all the joy and care that comes with it. tt3850590,sl1Jjq82XUA,"Tom, Sarah and Linda find a child eating Jack-in-the-Box in the attic while Howard battles homicidal gingerbread men." tt3850590,UVGzuUm3uzs,"After Max wakes up to find everyone alive and things back to normal, he starts to think it was all just a horrifying dream..." tt3850590,U0xf89hs1Mc,Howard fights off gingerbread men in the kitchen while Linda goes on a rampage against all the evil toys in the attic. tt3850590,mFkxrTfAkq8,One by one Max's family is taken from him by Krampus's minions until he's the last one. tt3850590,oUXPpeE2pv4,"When the family decides to escape house, Omi stays behind to face Krampus." tt3850590,M8s2txilG08,Omi tells the story of how she came to lose her family to Krampus. tt3850590,oA-dHypOn9M,Howie Jr. gets lured up the chimney by an evil gingerbread man and Sarah and the others try to save him. tt3850590,aPQcQ4IhHNE,On a dark and snow covered street Beth is stalked by a large and mysterious monster. tt0119282,huI39DZ4b44,"The warriors bow down to Hercules as their hero, regardless of his status as a God." tt0119282,Xiki4aOO4tw,Tydeus sacrifices himself to help Hercules win the war. tt0119282,hSvJRk5OH_o,Amphiaraus apparently isn't yet meant to die and Rhesus fails to kill Hercules. tt0119282,Lrr_z_4VLdU,Hercules completes his final labor and saves Ergenia from execution. tt0119282,tFeew6TgM8w,Hercules kills King Eurystheus. tt0119282,5EeD0NiVALs,Hercules gives his troops an inspirational speech before he leads them into battle against Rhesus. tt0119282,xNu0qNfOoGY,Hercules and his men claim victory in their first battle against Rhesus. tt0119282,oc8Hm_t5BRo,Hercules and his men fall into a trap set by bewitched warriors. tt0119282,5ACVz6Cmo3M,Hercules has nightmares and Amphiaraus gives him advice. tt0119282,K4fpErUdp3k,Iolaus tells his tormentors the legend of Hercules. tt0296572,SUMtjCypolU,Riddick reunites with an old friend who believes Riddick could be from an extinct race that could stop a new threat to the universe. tt0296572,RARFpfBt66M,"After hiding out on a frozen planet for five years, Riddick is finally tracked down by a bounty hunter named Toombs." tt0296572,ilG8mzbHNNI,"After invading the planet, the Lord Marshal of the Necromongers forces the citizens to bow to him. Left standing in the crowd, Riddick is only there to get revenge for the death of his friend Imam." tt0296572,h9Rb7mT3juI,The prison guards release Hellhounds into the prison to devour anyone who doesn't make it to safety in time. Riddick manages to tame one of them. tt0296572,RmqqNrg2cKg,"Riddick walks in on a few prisoners attempting to rape Kyra. He warns them to stop, but they don't seem to believe a man armed only with a teacup." tt0296572,otk_S_5inBM,"On the planet Crematoria, Riddick is dropped into a triple-max underground prison, while Toombs argues to be paid more money for dropping him off." tt0296572,5kGTDvVTAOw,"Riddick, Kyra and fellow prisoners fight off Necromongers and prison guards in an attempt to steal a spaceship and get off the planet." tt0296572,yX5TsLuIEy8,Riddick kills the Lord Marshal before Vaako gets a chance and gains control over the entire Necromonger army. tt0296572,98I5LTPcRnw,"While Riddick, Kyra and other prisoners attempt to escape from Crematoria, the deadly heat from the Sun catches up to them." tt0296572,39HR8ZjQnYA,"Riddick confronts the Lord Marshal, leader of the Necromonger army, after finding out he converted the last remaining person Riddick cared about, Kyra." tt0259324,TeDEtT7YjYY,"Ghost Rider battles Blackheart, who is now powered up with a thousand souls." tt3628584,-oPHsR72Lfo,Some barbers in the shop have a problem with One-Stop and his multipurpose business practices. tt3628584,p_ixTZLD7k0,The ladies in the shop criticize the men for the way they treat women and the men explain how it is to be a man. tt3628584,T6BDCLnWSes,Raja talks race and politics with the rest of the shop. tt3628584,e5SbxMFk6Vo,Even with mixed emotions in the shop it looks like the ceasefire might actually be working. tt3628584,cW23WpOvC6A,Everyone gets excited and starts dancing when they hear a shout-out to the barbershop on the radio. tt0259324,1iCqTxtsqvw,Johnny Blaze discovers that Mephistopheles wasn't going to let a little thing like a parent stand in the way of their contract. tt3628584,b-2p52a82UM,"Terri misunderstands what she sees between Rashad and Draya, but Rashad reveals he does have problems with their marriage." tt3628584,zbkojhq6Ryw,Calvin calls off the ceasefire and talks about leaving the South Side after he hears about their young friend dying. tt3628584,KGW0LbnEraM,A discussion about the ethics of adultery emerges after Bree confronts Draya about her love life. tt3628584,NR-BaVehxrA,Calvin wants to put the ceasefire back on and Anthony Davis gets a haircut at the shop. tt3628584,EonKIlrj7t0,Jalen apologizes to his dad and Calvin expresses his love for Chicago. tt0259324,tyyPSnHcthg,"Johnny Blaze uses all his stuntman tricks to stop a van Roxanne, his childhood sweetheart, is riding in." tt0259324,10X4Th3YE30,Johnny Blaze performs a dangerous record breaking motorcycle stunt by jumping over a football field full of helicopters. tt0259324,Rj5XdwnuQ80,Johnny Blaze painfully transforms into Ghost Rider for the first time and destroys the fallen angel Gressil. tt0259324,riDe28hGBuo,"After being arrested for murders he didn't commit, Johnny Blaze realizes that a criminal filled jail cell is the perfect place for the Devil's bounty hunter." tt0259324,-fvfHqNEmGU,"Ghost Rider interrupts a mugging and tries out The Penance Stare, the ability to make the mugger feel the pain of all his victims." tt0259324,OsgEdYjoqUI,"Carter Slade, the previous Ghost Rider, fires up and leads Johnny Blaze to San Venganza." tt0259324,a4QlQy31HIk,"While escaping from police, Ghost Rider ends up battling Abigor, a fallen angel with air powers." tt0259324,EnBWc20FGuc,Ghost Rider arrives with the contract so that Blackheart will let Roxanne go. tt0948470,V0UBmkWw5Oo,Peter decides to break a promise and then flies over the streets of New York as Spider-Man. tt0948470,BXx51SR_3Sk,Peter uses his new abilities to humiliate Flash in a game of basketball. tt0948470,psB3Ta-5XWY,Peter awkwardly makes plans with Gwen and then tests his new powers with his skateboard. tt0948470,4331uXY0nxA,Peter reveals his true identity to Gwen and the two share a kiss. tt0948470,4_23t4NzAMk,"Spider-Man reprimands a car thief, but receives no thanks from the NYPD." tt0948470,hvACHvnVCbw,"When The Lizard attacks a bridge, Spider-Man saves a child from falling to his death." tt0948470,ltmHZiXkb9c,Spider-Man sets a trap for The Lizard in the sewer. tt0948470,EauDkPyyz8I,The Lizard attacks Peter's high school. tt0948470,7pD2vZ28a3E,Captain Stacy learns Spider-Man's true identity. tt0948470,4uc2qplSyss,Spider-Man battles The Lizard to try and stop him before he releases his toxin above New York. tt0413300,rDGRAHBojWE,Peter Parker enjoys his newfound confidence and exhibits a new spring in his step. tt0413300,N_O0XDnM2AM,"Harry, dressed as New Goblin, attacks Peter in an act of vengeance for the death of his father." tt0413300,WE4iNhRivzc,Spider-Man attacks Sandman in the New York subway system. tt0413300,5A9D-XVmK10,"When a loose crane smashes through the window of a New York skyscraper, Spider-Man swings into action to save Gwen Stacy from being crushed." tt0413300,OJNBsuHFdM4,"When Harry taunts Peter about his relationship with Mary Jane, the two engage in a violent fist fight, which ends with explosive consequences." tt0413300,iX23r272kqg,"While under the influence of the symbiotes, Peter performs a jazzy dance routine to impress Mary Jane." tt0413300,GVt3XFTYp-0,Venom and Sandman work together to overpower Spider-Man. tt0413300,m8LWjDS3IkQ,"Despite warnings from Spider-Man, Venom succumbs to the power of the symbiote suit, leading to his death as well as Harry's." tt0413300,IPdtCQV4Dz8,"When Peter rips the symbiote suit off, it attaches itself to Eddie and turns him into Venom." tt0413300,dwh6SShhnVI,Harry arrives in the nick of time to help Spider-Man take on Sandman and Venom. tt1872181,DgUvg4sBGcs,Spider-Man rushes to deliver a pizza across town. tt1872181,5wUezm-K0Bw,"While swinging around New York, Peter's powers begin to fail him." tt1872181,q292IDwEWZ0,"When Doc Ock throws Aunt May off a ledge and threatens to kill her, Spider-Man swings into action to save her." tt1872181,R4CiWP08yes,"Doc Ock wreaks havoc and robs a bank, leading to a showdown with Spider-Man." tt1872181,m8Jm9_iR6cg,"Peter tells Mary Jane that he doesn't love her. Then, Doc Ock destroys their coffee shop and kidnaps MJ." tt1872181,yRhRZB-nqOU,Spider-Man uses all his strength to stop a speeding train full of passengers from going off the rails. tt1872181,HStPxrLfM9k,Spider-Man and Doc Ock go toe to toe on top of a New York subway train. tt1872181,0TvKsVxgbF4,"When Doc Ock kidnaps Spider-Man and brings him to Harry, Harry learns his true identity." tt1872181,QbwYDkPwfUM,Spider-Man saves Mary Jane and defeats Doc Ock. tt1872181,aGAInDBQOoE,"Mary Jane leaves her wedding to tell Peter that she needs to be with him, even if he is Spider-Man." tt1038686,xcqbp1ysN1M,Archangel Michael is confronted by two LAPD officers after raiding a large cache of automatic weapons. tt1038686,0SDvqDdbhSc,Michael returns to save Jeep from Gabriel and to show Gabriel the mercy that God really needed to see. tt1038686,Mp6aKCE3jSc,Michael and Gabriel have an Archangel fight to the death. tt1038686,Z0l0sXacQ9Y,The angels use a little boy to trick Kyle and Audrey into coming out from the diner and into the open. tt1038686,onNv1u-qdZY,Michael shoots Sandra when she threatens to sacrifice the baby but its too late because the Archangel Gabriel has arrived. tt1038686,LFT504CjJFA,A vicious possesed child gets into the diner as Charlie goes into labor. tt1038686,P5Q7apxWucc,The Ice Cream Man arrives at the diner and Michael shoots it dead. tt1038686,4kNNwEV5XJI,Percy is killed after saving Sandra from her husband's exploding sores. tt1038686,tWEBbYoDaU8,A kind elderly woman named Gladys surprises everyone at the diner when she violenty bites Howard in the neck and crawls up the wall. tt1038686,wFg1qWPryvI,Michael arrives at the diner with weapons and a warning. tt0091167,5LE2vO_aQgU,"While Hannah and Holly quarrel over Holly's future, Lee is wracked with guilt from having lan affair with Hannah's husband." tt0091167,REXJhZBFD1w,With their troubles seemingly behind them the family settles into their third Thanksgiving. tt0091167,j6qjibwpEzM,After a failed suicide attempt the Marx Brothers help Mickey realize life isn't so bad after all. tt0091167,WVed9LPelUw,Elliot makes his move on Lee. tt0091167,wU7TupjcCbo,Mickey struggles to find enjoyment in rock music on his date with Holly. tt0091167,9VLcxXz-0w4,In order to find out his meaning in life Mickey converts to Catholicism. tt0091167,8KJkEQx2lKI,Mickey tries to deal with the chaos of running a TV show. tt0091167,rLtmIBRWQVQ,"Mickey, a hypochondriac, goes to the doctor complaining of hearing loss." tt0091167,MPqg9uMHTDQ,"Mickey and Hannah asks Mickey's old partner, Norman to be their sperm donor." tt0091167,JauxWp4eWnM,"Eliot swoons over his wife's sister, Lee." tt0091167,QYHTRRmkung,"Elliot buys Lee a book of poetry by E. E. Cummings, and reveals his infatuation with her through a poem." tt0079522,7mwZYGcbQCo,Isaac writes the beginning of his book about New York City. tt0079522,sZU26D42s2M,"Isaac pays an unpleasant visit to his ex-wife, Jill." tt0079522,GE64zY42bUA,Isaac and Mary spend an evening getting to know each other along the riverside. tt0079522,CZO8Dh7dXvM,Isaac and Mary's relationship continues to develop. tt0079522,jf9d3cwVWBY,Isaac shares a conversation with a group of quirky writers at an equal rights benefit. tt0079522,P2oF9-9UpbQ,Isaac and Mary share an intellectual conversation at the planetarium. tt0079522,KQbGttprUMA,Isaac tries to convince Tracy not to go to London. tt0079522,2dD7upKpLks,Isaac confronts Yale about his relationship with Mary. tt0079522,FLCvFcaZW3Q,Isaac breaks up with Tracy. tt0079522,63fCYTWuVoA,Mary admits to Isaac that she's still in love with Yale. tt0316654,kb4jEHmH_kU,"Despite his deep feelings for Mary Jane, Peter is forced to break her heart to keep her safe." tt0316654,hHKUBg_c9no,Spider-Man and Green Goblin go toe to toe in one final showdown tt0075686,MEBibAHnEK4,Alvy and Annie attempt to do cocaine at their friends' insistence. tt0075686,iLBL-XeNrRI,Alvy and Annie find cooking live lobster is more difficult than they were prepared for. tt0075686,vTSmbMm7MDg,"While stuck in line at the movies, Alvy grows frustrated listening to the intellectual opinions of the man behind him." tt0075686,5h5zurZsIQY,Alvy explains to the audience his view on life and relationships. tt0075686,Qp3NWzLzaek,Duane Hall confesses a dark secret to Alvy before driving him home. tt0075686,lXy9Lp8bu98,Alvy gets a terrifying ride from his awkward new love interest Annie. tt0075686,JduADWt0XMI,"Alvy awkwardly gets to know Annie on her apartment balcony, as their true thoughts are revealed by subtitles." tt0075686,p32OEIazBew,"Annie sings ""Seems Like Old Times""." tt0075686,1eTXG8FReno,Alvy kills a spider for Annie and criticizes the changes she's made in her life. tt0075686,kIUgcwJeN5A,"Alvy doesn't understand his breakup with Annie, so he asks passersby for their opinions on love." tt0075686,1VIBA_mPdPA,Alvy remembers his childhood and surmises where his fellow classmates ended up as adults. tt0075686,WYY9Epog0rs,Alvy has Easter dinner with Annie's family. tt0316654,jM7Eou4bV-Q,"Peter uses his new abilities to win a fight against the school bully, Flash Thompson." tt0316654,zlwaUJzGqns,Peter discovers his new web-slinging abilities. tt0316654,UDSfJaVC0KY,Spider-Man uses his powers to compete in a cage match against the wrestler Bone Saw. tt0316654,9LglzW3HFyg,Peter discovers that Uncle Ben has been murdered by the thief he let get away. tt0316654,TvoWGxM8TU8,Spider-Man defeats the Green Goblin. tt0316654,K_a1_SO8hu0,"When Green Goblin attacks a festival in Times Square, Spider-Man swings into action." tt0316654,aBpwrORhKWU,Spider-Man saves Mary Jane from a gang of thugs and receives a romantic reward in the rain. tt0316654,Xt0Fv0W-CSo,Green Goblin makes Spider-Man choose between saving Mary Jane or a cable car full of children. tt1289401,FJ7rx8LeTgg,The Ghostbusters battle a giant incarnation of their logo that is wreaking destruction on New York. tt1289401,jYpYTpKuT_k,"The Ghostbusters battle an army of ghosts, using Holtzman's custom made weapons." tt1289401,RRLisRc0j1c,The Ghostbusters capture their first ghost at a rock concert. tt1289401,YW6VrETYUfU,"Abby gets possessed by an evil ghost, but Patty has something to say about that." tt1289401,LMViEmB4_Fk,The Ghostbusters hunt a ghost backstage at a rock concert. tt1289401,aGcvpWAhP6I,Erin falls head over heels for the hunky applicant for the receptionist job. tt1289401,3mw9rXZv4tY,The Ghostbusters get their first job and roll out with their new costumes and vehicle. tt1289401,Gl4bRwYs1tI,The Ghostbusters battle a scary apparition in the subway. tt1289401,HfKAC6eOlXg,Erin tags along as Abby and Holtzman investigate a haunted mansion and has an unpleasant encounter. tt1289401,zoSzqHlvN6s,"Patty joins the Ghostbusters and provides them a car, while Holtzman tests out her new ghost fighting equipment." tt3530002,svytEWJK6Qk,"While hallucinating and talking to an inanimate nativity scene, Isaac runs into his wife Betsy." tt3530002,kptIt3LwGWc,"Isaac attends church on too many drugs, causing him to throw up in the middle of the service." tt3530002,3IiKTJztqFY,The guys reconcile their friendship and Mr. Green ascends to the heavens. tt3530002,oQjMZTetuEg,Chris and the guys chase after the Grinch who stole his weed. tt3530002,IgrJkJ8NYrw,"When Isaac's drugs react poorly, he begins to panic." tt3530002,VLXwMhs4ODU,"While tripping out on drugs, Isaac meets with Mr. Green and gets some strange advice." tt3530002,w4-b-D0iByQ,Mr. Green freaks Chris out while selling him marijuana. tt3530002,b-_C0lWgga0,"The guys perform Kanye West's ""Runaway"" on a toy piano mat." tt3530002,NHDA6rk-bek,"Ethan catches up with his ex, Diana. Then, Isaac accidentally gives Sarah a drink with his blood in it." tt3530002,wwDCSzZx37I,"Chris flirts with a fan. Then, Isaac panics about becoming a father and leaves himself a message about the baby." tt1430607,t_wR8zbM5VI,"All of the Santas come to deliver Gwen's gift, but Arthur is chosen to be the one that puts it under the tree." tt1430607,YpnqA-vr53Q,Arthur tries to catch the sleigh while Grandsanta and Bryony try to wait patiently in the boat. tt1430607,mqpQgFfidcA,"The government goes after the sleigh, so Grandsanta sacrifices her to their missiles, allowing Arthur to escape with the last Christmas gift." tt1430607,IRRYuq7qYk4,Arthur and Grandsanta escape from a pack of lions chasing them in Africa. tt1430607,v-OKZSh7tQ4,"Grandsanta gets a bit turned around using his old map to navigate the sleigh, and ends up losing a reindeer in the process." tt1430607,vF3sZj6ge18,Steve gets help communicating with Arthur while he and Grandsanta face lions in Africa. tt1430607,QpqCLenOeAM,"The North Pole bustles with busy elves ensuring a smooth Christmas. Steve runs a tight ship, but his brother Arthur makes a big mess in Mission Control." tt1430607,Hi_NmfSbE3g,Steve walks the elves through saving Santa from being seen by a child. tt1430607,AxpzOZT_C0o,Grandsanta brings out the old sleigh so Arthur can deliver the last present on time. tt1430607,oLUmNV0tmMo,"The elves help Santa deliver presents in a speedy, stealthy manner." tt1430626,bVKJscj58DI,The pirates celebrate ham nite and discuss the best part of being a pirate. tt1430626,KLIB40d6Pz8,"When The Pirate Captain tries to steal gold from Charles Darwin, he is upset to learn that he has none." tt1430626,8HO4C01n00c,The pirates use a bathtub to stop a mysterious figure from stealing Polly. tt1430626,M1uBjOpTa6Y,Charles Darwin attempts to steal Polly from The Pirate Captain. tt1430626,7SClmJTqKo0,"The Pirate Captain blows his cover and reveals that he's a pirate, not a scientist, leading to a near execution." tt1430626,Eva9_scd290,The Pirate Captain reveals Polly the dodo to a group of esteemed scientists in London. tt1430626,ajb31pJMQmw,The Pirate Captain and Queen Victoria face off in a sword fight for Polly's life. tt1430626,ip1igmoPSD8,The Pirate Captain lives a lonely life after all his friends abandon him. tt1430626,g3svdzmBtic,The Pirate Captain saves Polly from Queen Victoria's evil clutches and becomes the world's most renowned pirate. tt1430626,TZ2ryw04fx4,Black Bellamy reveals that The PIrate Captain has been pardoned by the Queen and is ineligible for the Pirate of the Year award. tt2510894,awkGgPALfho,Mavis and the family have fun at the werewolves' birthday party. tt2510894,ft9XnHcLYiI,Jonathan tries to teach Dracula how to use social media to promote the hotel. tt2510894,8fGU90-I_H4,"Wayne gets distracted by a frisbee and fails to kill a deer. Then, Mavis discovers the wonders of the mini-mart." tt2510894,7y9stFHCvEY,Murray throws out his back while trying to summon a sandstorm. tt2510894,NNouwnR8QQw,"Dracula tries to teach Dennis how to fly, but instead throws him to a near death." tt2510894,RkINjKcnVuY,Dracula is disappointed to learn that the camp he went to as a child has been child proofed. tt2510894,n1lQR-GjWYw,Dracula and the family fight a group of angry bat monsters. tt2510894,D4_CGzg3fmQ,Dracula and the family celebrate Dennis's birthday. tt2510894,oOp7Q_xw94I,Dracula and Vlad argue about monsters and humans. tt2510894,Cf5dlMw2d7s,Dennis finally grows his fangs and protects Winnie from the monster Bela. tt0837562,gpkncObsNqY,Dracula welcomes his guests and friends to his hotel made exclusively for monsters. tt0837562,Axru07JeBig,"Dracula raises his little girl, Mavis." tt0837562,uBPs4AHD52Y,"Mavis is eager to visit the outside world, but Dracula struggles to let her go." tt0837562,vHBKdIq9RGs,"Johnny poses as ""Johnnystein"" to hide his human identity from the monsters, and in the process, accidently becomes the life of the party." tt0837562,tj3Trywp_zk,Dracula reveals the true story of his wife to Johnny. tt0837562,2JMmof1eg1s,"Much to Dracula's dismay, Johhny accidently starts an amazing pool party." tt0837562,zjiAUjrvTrw,A kiss between Mavis and Johnny at the birthday party draws Dracula's ire. tt0837562,El0_VgXqgXU,"On the way to catch up with Johnny, Dracula and the monsters pass through a monster festival where they find out humans have come to accept and love them." tt0837562,_AgBIeTHzTM,"Mavis, Johnny, and Dracula sing about the zing that comes with true love." tt0837562,JtuMPxXQ2l4,Dracula and his friends try to catch up with Johnny before he can fly back to America. tt1051904,XRx0KtjPoX0,R.L. Stine saves the kids from the Abominable Snowman by pulling him back into the book. tt1051904,v3H9-sHDZSA,Zach accidentally opens a Goosebumps book and the Abominable Snowman comes out of it and attacks the kids. tt1051904,JIqfgLLZhAk,R.L. Stine and the kids fight off violent gnomes and then decide to flee when they realize the gnomes are indestructible. tt1051904,AtJ5phl1iVE,Slappy lights his book on fire and tells R.L. Stine about his plan to unleash all of the book characters. tt1051904,HmwZxnQbox8,R.L. Stine and the kids work together to escape from a werewolf stalking the grocery store. tt1051904,wk-P07PoFAk,R.L. Stine has trouble driving when the Invisible Boy and a giant praying mantis attack his car. tt1051904,c0-3FQ-_SAg,"When Slappy sends in the whole troop of book characters to attack the high school, Champ saves Taylor from a werewolf attack." tt1051904,me9Vweatkto,"Zach must say goodbye to Hannah after she opens the book and all of the monsters are sucked back in, including her." tt1051904,gEC1WbYzZYk,Slappy releases The Blob That Ate Everyone on R.L. Stine and Zach must finish writing the book. tt1051904,QxNZJZrkdM0,"Slappy orders the book characters to chase down R.L. Stine's bus, but they end up triggering an explosion on a decoy bus instead." tt1288558,i7hF7BAKV_I,A now possesed and one armed Natalie attcks David and Eric with a nail gun. tt1288558,ykeqEK7m5oI,"Mia, one handed and armed with a chainsaw, confronts the demon hoping to end the weekend of terror once and for all." tt1288558,mk2OptcsXuo,"As the sky starts to rain blood, a demon rises from the ground and chases Mia, who frantically tries to protect herself" tt1288558,s6lrBldtwVk,"After having crashed her car, Mia gets entangled in evil tree branches and is brutally violated and possessed by a Demonic girl." tt1288558,5PikP1s15F0,A possessed Mia shoots at her brother and vomits all over Olivia before Eric traps her in the basement. tt1288558,XAuxvhZzUhE,Harold must kill his daughter to destroy the demon inside her. tt1288558,FHXzsBsOVjY,A possessed and mutilated Mia molests Natalie. tt1288558,t4pLZtTuryE,Eric is stabbed after discovering a possessed Olivia carving into her face. tt1288558,8k9h0yE0XIg,"David discovers Mia, now possessed by a demon, taking an extremely hot shower, burning her skin." tt1288558,IMOAEKRuaeI,"When Natalie feels the demon's possession take over, she tries to stop it by cutting off her arm." tt4052882,pVfx0OQcmBk,"As the tide covers up her rock, Nancy is forced to swim through jellyfish to make it to the buoy." tt4052882,ydFjplhKYng,Nancy uses her jewelry to close the open wound in her leg. tt4052882,DzpGeXWsQKY,"Nancy makes one final, desperate attempt to kill the shark." tt4052882,ohoPpyAG0zA,"Nancy fights the shark using a flare gun, but the shark is unstoppable." tt4052882,W9DAFX_ieak,Nancy tries to retrieve the surfer's GoPro camera in 30 seconds before the shark has time to return. tt4052882,1UqGimF2hkI,"As the tide closes in, Nancy makes a final recording to say goodbye to her family." tt4052882,GwyuRxkac2Q,Nancy is knocked off her surfboard and then bitten by a massive shark. tt4052882,ru_PLKD7w4c,"Nancy tries to warn two surfers about the shark, but they don't listen to her." tt4052882,vT4HrbzMVgI,"As the whale carcass is consumed by the shark, Nancy makes a dangerous swim to an exposed rock." tt4052882,w8IS7igzQxw,Nancy begs a man on the beach for help and then tries to protect him from the shark. tt1496025,zdTmdoeLgAc,"Selene tries to make it to the port in time for her and Michael to escape, but law enforcement catches up with them." tt1496025,6OizpcahOZA,"Selene wakes up in a laboratory and escapes, killing everyone standing in her way." tt1496025,ujcglOdwI1E,"While searching for Michael, Selene discovers a vampire and a mysterious child in a tunnel filled with lycans." tt1496025,A5fwu8OlNG0,"Lycans attack the van and Selene, David and Eve fight them off." tt1496025,4HSdmiu24xQ,Dr. Lane makes his way to the garage to escape with his patient and Selene fights lycans on her way to stop them. tt1496025,M5F8dw_FfPc,The vampires are surprised when lycans attack instead of humans. tt1496025,ow0vNLhDNzI,Quint drops an elevator on Selene and Detective Sebastian tries to stop Dr. Lane from driving away with Eve. tt1496025,tWuBw5082gI,"While Selene fights Quint, David helps Eve kill Dr. Lane." tt1496025,ZtQD3EqQAC0,"Selene punches a grenade into Quint's stomach, which heals up instantly and explodes inside him." tt1496025,o0wTt_xDlpk,Selene is knocked out by a giant lycan and then wakes up to learn that Thomas has given her child over to the lycans. tt0834001,_-JtvyLvSlo,Lucian breaks the rules and transforms into a lycan in order to save Sonja. tt0834001,19u6S4Fqnss,"After losing Sonja, Lucian angrily transforms into a lycan and runs to the wall to try and escape." tt0834001,VDGKUOjQ-Zs,Viktor orders 30 lashings for Lucian to punish him for his betrayal. tt0834001,2tWRTtI7huk,Lucian encourages his fellow lycan prisoners to defy authority and be more than animals. tt0834001,4frYhsIGjJU,"After thwarting their escape, Viktor is disgusted when he learns that Sonja is pregnant with Lucian's baby." tt0834001,51Kfo8X3V18,"As a punishment for their betrayal, Lucian is whipped and made to watch Sonja burn to death." tt0834001,emW6TopzEe0,The lycans rush the castle to defend Lucian. tt0834001,bmeh1eFkyHg,"While the lycans fight the vampires, Lucian fights and defeats Viktor." tt0834001,Xq_9TDk-hj0,Lucian defies Viktor and escapes with a few other lycans. tt0834001,xZXOBmW-7Jk,Lucian begins his escape by killing Kosta and freeing the other lycans from their cells. tt0401855,tqqSIT1D0vU,"Marcus joins his brother William in the fight against Selene and Michael, but the brothers lose." tt0401855,L9pxOwibtWQ,Michael rises from the dead to help Selene fight William. tt0401855,DNAwkyyq3kM,Selene takes on William alone. tt0401855,Pw8FO7eRAoY,Selene discovers that William has been set free and Marcus tries to stop her from interfering. tt0401855,StS0_Y5Dh4Q,Marcus takes the pendant from Michael and drinks Selene's blood for her memories. tt0401855,EegnTsyPDF4,Marcus stabs his father and steals William's key. tt0401855,9PllxjcicFo,Michael and Selene fight off lycan and vampire slaves to get to Tanis. tt0401855,LCD5BDaqANw,"Marcus chases Selene and Michael through the woods and on the road, in search of Michael's pendant." tt0401855,KwIg2QMWVOU,"When the vampires capture William, Viktor orders that he be imprisoned for all time." tt0401855,R0p6s2L8yk4,"Michael tries to save the humans from his transformation, but when they hunt him down, Selene protects him." tt0271263,FQjvyy8gOS0,All the jerks in the banquet hall recall the times they were mean to Whitey. tt0271263,esHXIrYgSzo,Whitey is finally recognized by all of his peers for his contributions to the community. tt0271263,mA1FWjriD60,Whitey and Eleanore explain the rules of the house to Davey. tt0271263,t-dJ4I7rGp8,Whitey doesn't get the Dukesberry All-Star Patch and his friends are very disappointed. tt0271263,Q-MVoUlU-OY,Eleanore is nervous when Whitey shows up with their house guest Davey. tt0271263,s3PbszHh8vE,Davey and Jennifer reminisce about their childhood together and then Whitey offers to help Davey when his trailer catches on fire. tt0271263,bGQ9QznPQ_M,Davey gets in trouble with Jennifer after he and Benjamin win the game and act like jerks. tt0271263,f7vRR8-n_Rc,"Davey escapes from the police singing a song about his hatred of everything, including himself." tt0271263,fVVoh_Xh0xo,"Davey makes a bet that he can beat a couple of tough guys at basketball and when Whitey gets taken out, Benjamin takes his place as Davey's partner." tt0271263,ehNNyfvhcto,"When Whitey tries to teach Davey how to be a referee, Davey does a terrible job and makes everyone upset." tt0385880,31ZCtppXSoU,Both the officers and the kids locked in the police car are consumed by the house. tt0385880,xLD9iygFMgA,"The kids work together to throw the dynamite at the heart of the house, destroying it completely." tt0385880,M_HMbS9bEhM,"When Nebbercracker tries to demolish the house with dynamite, the house grabs him and Chowder swoops in on a bulldozer to save him." tt0385880,41FRwoAJkpw,"When DJ suggest that Nebbercracker let Constance go, the house angrily uproots itself and chases the children." tt0385880,ycyXqWAMzZ8,Nebbercracker retells the story of how Constance became the spirit of the house after her death. tt0385880,jBxnTnikZEo,"When the kids get swallowed by the house, Jenny pulls the uvula and the house throws them up." tt0385880,JXxF-_0u_qU,"Just as the kids are about to send in their vacuum cleaner dummy, Officers Landers and Lister show up and ruin their plan." tt0385880,ATDt5EBims4,Chowder and DJ save Jenny from getting eaten by the haunted house. tt0385880,TE4ZWi6xkZo,"When DJ tries to get Chowder's ball back, Nebbercracker faints in the middle of chasing him away." tt0385880,4VX7ZvbbLrE,"Chowder tries to prove DJ wrong about the haunted house, but ends up running for his life." tt0119345,vdED1lRQ-N8,Julie is terrified when she gets a familiar note on her bathroom mirror. tt0119345,IE1ZeXC4vtg,Julie finds Max's corpse in her trunk and then panics when it disappears. tt0119345,TGoICPqXjAY,Ben is about to kill Julie when his hook hand gets stuck in a rope and chopped off. Then the rest of his body is thrown overboard. tt0119345,OgaJLKX1sUo,Helen disrupts the pageant when she sees Barry get attacked by the killer in the balcony. tt0119345,UDcu3Pg8LiI,Ray accidentally hits a pedestrian when Barry drunkenly distracts him in the car. tt0119345,xGCLACE7SUI,"The group decides to dump the body into the sea, but before they can carry out their plan, their classmate, Max stumbles upon the scene." tt0119345,g3a9qZnTzJQ,Officer Caporizo and Helen fall into the killer's trap when they are diverted by the roadblock. tt0119345,tdMF1i45oks,"The corpse turns out to be alive, but they dump him in the water anyway. Barry jumps in to retrieve Helen's crown and then makes everyone swear to remain silent regarding the whole event." tt0119345,gLLgGSdfy3I,"Helen fights off the killer long enough to escape the store, but he catches up with her just before she makes it to the parade." tt0119345,TAZ3_IuoGew,"After showering in the locker room, Barry discovers a photo left by a mystery man who ends up chasing him down in his own car and threatening him with a hook." tt0115963,dx07n7Eov0o,Nancy tries to force Sarah to commit suicide and then Sarah does a spell that scares the other girls. tt0115963,IXXv4DMkBpM,Sarah does a spell turning her eyes brown and her hair blonde. tt0115963,sHFXRjwKOG8,Sarah defeats Nancy with her magic. tt0115963,8EUTXbhTFg8,Sarah scares Nancy with visions of bugs and snakes taking over her body. tt0115963,HUJtn_Bwm-w,Nancy tricks Chris into thinking she's Sarah and then uses magic to push him out the window. tt0115963,yuochlbdRmQ,Nancy makes Sarah see snakes and other things that she fears. tt0115963,arf7Bi4CCmU,Nancy walks on water and considers all of the beached sharks as gifts from their god Manon. tt0115963,kZMKLwtkLrI,Nancy's spell works when Ray dies suddenly and leaves her and her mother money from a life insurance policy. tt0115963,6FVwlgBDCo0,"The girls do a spell, each asking for something they want more than anything else." tt0115963,GBTN4LA7pTs,The girls play a game and Rochelle ends up floating in mid-air. tt0808151,LxxFi7igv2A,Langdon and Vittoria discover a secret message in the Diagramma Veritatis. tt0808151,99dOPdlLIw0,Landgon and Vittoria make an important discovery at the Roman Pantheon. tt0808151,Ur1StpqHA1M,"As Langdon looks for clues in Saint Peter's Square, a child discovers a mutilated priest." tt0808151,B98YODkeEqY,"With his oxygen quickly depleting, Langdon struggles to free himself from being trapped in the Vatican Archives." tt0808151,41AhzyLUBFM,Langdon fails to save Cardinal Guidera from being burned alive. tt0808151,Pw0CzPQdaE4,Langdon saves Cardinal Baggia from drowning. tt0808151,I_v5km4eDik,The Camerlengo bravely flies the antimatter explosive in the air to prevent it from detonating in St. Peter's Square. tt0808151,wQ5uso-R6aY,Langdon discovers that the Camerlengo was the man behind the plot to murder the Pope. tt0808151,9F9KKPakio4,"When the Camerlengo learns his plot to become Pope has been uncovered, he burns himself in the name of God." tt0808151,xzW255065XQ,"Langdon receives the ""Diagramma Veritatis"" and the church ordains a new Pope." tt0373051,OY5yOdITL-8,Harnet rescues Emily from being stuck and then struggles to bring oxygen levels back to normal. tt0373051,kp2u8LURkgQ,Kristen and her team must run across a bridge suspended over molten lava. tt0373051,H2cgoxJHSPs,Harnet and Emily finally break through to the center of the Earth. tt0373051,LYsdYDbW_Iw,Case and Jansen get in a fight in the girls' locker room. tt0373051,V0dVNpmzCyg,Harnet and Emily brace for impact as they breach the center of the Earth. tt0373051,zMzCxBRDhlA,The team rushes to escape a spider and reach the teleportation beacon. Case is forced to leave Jansen for dead. tt0373051,O2hN7307Nio,"Intending to go to Germany, the soldiers teleport away. Afterwards, Harnet is unable to find their location." tt0373051,av5eE5HTVzs,Emily and Harnet are attacked by giant magma-dwelling slugs. tt0373051,3O13oeNWWfU,"A dinosaur attacks the soldiers, forcing them on the run." tt0373051,sQcgpyPhaIA,"Kristen, Case and Gretchen are attacked by giant spiders." tt2130142,4tEfbGzxI-E,Paige and Lucas take down Hitler once and for all. tt2236182,l3zxPrDoN74,"Marshall gets his arm amputated after a zombie bite, Dr. Arnold discovers his vaccine works, and the whole group escapes on a helicopter." tt2236182,61LA1soyYkg,The group discovers that Dr. Arnold is so far unsuccessful in perfecting a vaccine for the zombie plague. tt2236182,GMXgGPnbnow,Lynn delivers Pauline's baby too late and it turns into a zombie. tt2236182,jhvqJs7apdo,"As the group fights off the zombies, Marshall leads the charge in electrocuting the horde." tt2236182,jDnp-EKD-Qw,"Ashley loses all hope for survival in a zombie society, so she commits suicide." tt2236182,Q9NJiwYZt4Q,The survivors at Alcatraz instate a lockdown when the island gets overrun by zombies. tt2236182,phTSTiwPBUk,"Dr. Halpern cuts off skin from his own arm to feed his starving zombie daughter, but she turns against him." tt2236182,zxO4SgwCONk,Kyle must kill his newly zombified father figure Caspian. tt2236182,HtC2c6DQvSE,"The survivors escape the zombie-infested Alcatraz on a raft, only to be attacked by zombies in the water." tt2236182,7jrjZ5DIEzU,"Lynn and the group fight zombies on the Golden Gate Bridge, but Jud doesn't make it through." tt2978716,cbBTkI-JxVg,Patrick gives Tracie a weapon and tells her to do whatever is needed to survive in a zombie filled world. tt2978716,7RAzClJ4XLk,Patrick and Birdy battle the zombies until sunrise. tt2978716,ek_w1fGGUT0,Birdy hides the kids in a coffin to keep them safe until sunrise. tt2978716,S8HUYXl6grQ,Joseph and his wife contemplate killing their recently zombified son when suddenly the bloody-thirsty corpse takes the choice away from them. tt2978716,HJwSvsEaai8,Tracie and Birdy come across Nathan and his mother in the deadlist place to be when zombies rise. tt2978716,R-Rc1lQMjQc,Tracie must kill her zombified boyfriend in order to prevent him from killing others. tt2978716,MiQsEACG7_w,Joseph faces off with his zombie nanny after she decides to smother Nathan with flesh-eating love. tt2978716,DFgmFM-w0Rk,Patrick and his family find themselves trapped in a greenhouse surrounded by very hungry reanimated corpses. tt2978716,kRZxEorotnY,"While a violent danger spreads outside, Birdy and her mother find they have a visitor at the door." tt2978716,6EM223j0wls,Birdy has to kill her mother when she turns into a zombie. tt2130142,9V8IRFmXcQI,"When Silje goes after Lucas in an Arctic cavern, they discover a lost continent at the center of the Earth." tt2130142,B9aW-CumBFg,Paige discovers that Mark's flesh has been removed and that they are prisoners in a Nazi laboratory. tt2130142,VwB6p1A-FwA,Lucas squares off against the decaying Dr. Mengele. tt2130142,VtGNNvJF5Qk,"Hitler pursues Lucas and Paige. Silje sacrifices herself, causing an explosion on board the Nazi UFO." tt2130142,d7vy5NkiJJE,Dr. Mengele explains how he has stayed alive and reveals that Dr. Reistad is a Nazi. Dr. Blechman is vaporized for being Jewish. tt2130142,tn24Ca1sslc,Hitler addresses his followers before slicing the head off Rahul as he tries to escape. tt2130142,oKTtRDYwIG4,"After learning she is pregnant, Dr. Reistad and Dr. Mengele take stem cells from Silje's unborn child in order to bring Hitler back to life." tt2130142,8jWoq1fTwJ8,The Nazi scientist Dr. Mengele slices and rips off Mark's face. tt2130142,9dDKx-vREdQ,"Using the stem cell they extracted from Silje, Dr. Reistad and Dr. Mengele resurrect Adolf Hitler as a giant robot." tt2740710,RF2gzBNsZQ4,Jim saves Tracey after a hard hit and Red flies the monster into outer space to blow it up with a nuclear bomb. tt2740710,lBs_nLdio1M,Tracey and Jim keep the monster busy while Red jams the nuclear missile. tt2621126,ndZVwNuTYa4,"Mindless Behavior performs ""Mrs. Right"" on their last day on tour. Walter discusses the impact the group has on young teenagers." tt2740710,glNH68Iaa3E,"Even with their melee weapons the team has a very tough time fighting the monster, so Geise orders a nuclear strike." tt2740710,krBjSShSxu0,The team struggles to fight a giant monster destroying Manhattan when a new problem presents itself - damage to the robot suits causes pain in the pilots. tt2740710,F8lEfmjN9C0,Margaret teaches the team how to use the new biogenetic enhancements in their robot suits. tt2740710,pDCzYY0bjbc,"Geise argues with Hadley about the use of nuclear weapons, Red escapes with the help of his friends and a jet takes out the monster." tt2740710,eCXv9LnSKeA,Red reveals Project Armada to the public and fights a giant monster with little success. tt2740710,YAhyJTSt_9o,"Tracey, Red and Jim prepare to test out experimental robot suits for an oil rig rescue mission." tt2740710,04BZh6E-Nck,"When a monster hatches and wreaks havoc on the city, Red tries unsuccessfully to get out of the brig and join the fight." tt2740710,AVpd8G_48FM,Red wrestles the monster into a position where Spitfire can swoop in and destroy it. tt4296026,EwWuQOBBcFA,"During their search for the missing piece of the magic mirror, a group of Rumpelstiltskin's enchanted thralls comes after Snow and the princesses." tt4296026,EN7SYqdbsm4,"When Snow refuses to make a deal with Rumpelstiltskin, he sends them both flying through the magic mirror." tt4296026,sS1L9wZXFic,Red uses acrobatics and cunning to escape the clutches of Iron John. tt4296026,tUr2KIu-nvE,Snow makes a sacrifice to take down Rumpelstiltskin. tt4296026,SnKEQA88PXg,"As the fighting continues, Rapunzel convinces Iron John to help close the portal. Meanwhile, Rumpelstiltskin captures Snow." tt4296026,VPXC2aQZyEs,"Cinderella explains to Red what it means to be an avenger. Then, Iron John arrives and all hell breaks loose." tt4296026,taAwMJ4hsdk,"With help from Cinderella, Red rescues Sleeping Beauty and kills The Wolf." tt4296026,V8oMGhl8FFg,"The princesses square off against Red, Iron John and the rest of their foes as they try to infiltrate City Hall." tt4296026,6Z5bmj561YM,Red and the princesses showdown with The Wolf over a piece of the magic mirror. tt4296026,7a-OSvw0tjg,"As they search for Red, a SWAT team descends on Snow and the princesses." tt2518926,kAyPdsYr2K0,A massive dinosaur attacks and destroys the News Team's helicopter. tt2518926,JaEv5uq8sJs,"At their unveiling, the dinosaurs break free from their cages and begin attacking the civilians." tt2518926,3pjwMG4hrFw,"Jade and Gabe are forced to flee into the streets, where a gigantic dinosaur fight soon breaks out." tt2518926,RQZFCcsvtew,"When a dinosaur stalks Jade and traps her, Gabe arrives and chops its head off with an axe." tt2518926,ioKNba1RRys,"When they are trapped inside a store, Gabe and Jade protect themselves by beating some dinosaurs senseless." tt2518926,VwSWeeg9RSg,"Doug's attempt to reincarnate a dinosaur is successful, but things go awry when he refuses to open the doors for his technicians to get to safety." tt2518926,LtGQwP3jiUk,"When Jade falls as she tries to jump to rescue, she is swooped up by a Pteranodon. Gabe pursues her in a helicopter." tt2518926,Jch6T39j20E,"Gabe and Jade drive as fast as they can away from an angry dinosaur. When they run out of gas, Leo sacrifices himself for their protection." tt2518926,gvBe38KoiVc,The police showdown with deadly dinosaurs as they break out of the Natural History Museum. tt2518926,qoftQY-P85o,"When a Pteranodon captures Jade and attacks his helicopter, Gabe takes it down once and for all." tt1020558,BS82G9f2Xaw,Quintus Dias faces off against Etain while his comrades take care of her men. tt1020558,8kAtef-L6do,Quintus Dias realizes the Roman Governor has betrayed him when he is attacked by guards. tt1020558,fG1_01gDUoc,"Quintus Dias, Bothos and Brick make a final stand against the Picts." tt1020558,YrIvuBpSGio,Etain and the Picts catch up to Quintus Dias and his group. tt1020558,38Zst1IDgIs,Macros and Thax run from a pack of wolves. tt1020558,0M0dGWXQt6Y,Quintus Dias and Brick launch a night raid on a Pict camp. tt1020558,CRbtvxbu6fg,The Picts force Roman General Virilus to fight against Etain. tt1020558,LpP3_e3ioiQ,"The Ninth Legion, led by General Virilus, falls into a trap set by the Picts and are massacred." tt1020558,B4jUZUgKhFQ,Quintus Dias leads Bothos and a few others on a mission to rescue General Virilus from the Picts. tt1020558,XS7Tpc7yY8Y,General Virilus and some soldiers rescue Quintus Dias from a group of Picts. tt1020558,toe0MwxNN1o,The Picts attack a Roman fort that is run by Quintus Dias. tt0108149,AMOb_w6Jfug,"Paul impresses Flan and Ouisa by noticing their double-sided Kandinsky, and by telling stories about their children at Harvard." tt0108149,EUB6R41g7cA,Ouisa tells her daughter Tess about the theory that everyone on the planet is separated by only six people. tt0108149,wkyZ8pJD0Uo,Paul talks his way into the home of Flan and Ouisa by claiming to have been mugged. tt0108149,7rGY9Tw2hSw,"Ouisa and Flan invite Paul to stay the night, and after some convincing, he accepts." tt0108149,QnMDpNk1DFY,"Flan and Ouisa ask their kids for help, but Woody is hung up on his pink shirt." tt0108149,9e06PDg1pgs,Paul explains his thesis about 'The Catcher in the Rye' and its strange connection to famous assassinations. tt0108149,DUJHFbmzhtQ,Paul tells the story of Sidney Poitier's legacy in a rehearsed speech of memorized facts and anecdotes. tt0108149,m5Qi_YVxd5M,Ouisa practices tough love with Paul over the phone and convinces him to turn himself into the police. tt0108149,Rq-hSPn_Elc,Ouisa has an epiphany about her marriage and her life and walks out on Flan. tt0108149,HXtYMxtMlhI,Rick tells Elizabeth about his night with Paul and the daring adventures they shared with each other. tt0108149,PnZpYoBuiGw,Paul finds a clever way to convince Trent to give him the names and stories of families in his address book. tt0108149,QzzcHhFa66Q,"Flan recounts his dream about his passion for art, student geniuses, and the pain of losing a painting." tt1623745,KtHucDG9t9k,"Lily pressures Alison into making out with Louis, but she can't change how she feels." tt1623745,XXcdcrn7usw,Lily pays the price for trying to scam the wrong man. tt1623745,AtZDj7gset0,Things go bad for Lily and the gang when she tries to scam a psycho. tt1623745,s0bZ80iuZdQ,Alison has a falling out with Alison. tt1623745,XVyVUZrzGrE,Lily leads a pedophile into a deadly trap. tt1623745,pQ7F6S4FrdY,"Alison calls her Uncle Hogan, scared and homesick." tt1623745,sfObDKSfaZA,"When Lily cusses out a passerby, she and Alison begin to see how deep the rabbit hole goes." tt1623745,2ul7iwAUMN8,"After Lily steals a bag of chips, Alison tries to undo the damage, but things go horribly wrong." tt1623745,KtDkR9YdBS0,"Romance blooms between Lily and Jesse, but Alison doesn't entirely approve." tt1623745,H5ocMbhjb-M,Lily is resistant to her therapy sessions with Dr. Heron. tt1623745,fi3K18p1Pww,"Lily and Alison are two friends on the desolate Salton Sea, one full of life, one teetering on the edge." tt1692084,NUI_ZNu-GXM,James and Officer Fogerty ask Monica a few questions. tt1692084,QGq7H8ku2cI,Fitz lays out his love for Monica while Barry tries to beat him up. tt1692084,DhW1_LX5xZg,"Arnie scores points with his song, but not so much with his son." tt1692084,M6aTyZE_Zss,The Doctor assures Fitz and Jimmy that he's seen thousands of naked boys. tt1692084,AtDwOreXh-k,Fitz gets cussed out by a rude hooker. tt1692084,Q1ITCuUHAnY,"Monica begs Tommy to use his car, but he's extremely unhelpful." tt1692084,Tn1YK5UEr_c,Fitz borrows Richie's van while Jimmy gets some misguided advice from Sheila. tt1692084,38tBs7AinQA,"Monica goes to Barry for help, but he's interested in more." tt1692084,lAebdantAPM,Fitz sells weed to a Hollywood producer who's kind of a jerk. tt1692084,LHEPabAiiTo,"Fitz races to clear his house of weed when the cops arrest one of his clients, and Jimmy has bad luck with his father." tt1692084,XLJwlFShttg,"Officer Fogerty tries to help James, but just winds up freaking him out." tt1692084,dH5RKJLZ7HQ,"Tommy has many deep, complex, and disturbing feelings about vaginas." tt1634121,bzoIipqEbXE,John saves Mia from the ghost of his father. tt1634121,JHlNsy6rMUI,Ghostly tentacles assault Mia in her bedroom. tt1634121,DeoXtC4c5Ck,John investigates noises in Mia's closet and comes face to not-face with Hollow Face. tt1634121,ABAYY_S63CE,"John discovers, to his horror, that Hollow Face has returned for his daughter." tt1634121,69yTsxMTNnQ,"Father Antonio tries to help Juan with what Luisa believes is an overactive imagination -until she starts ""seeing"" Hollow Face too." tt1634121,h1vDFFr7nNs,"Father Antonio visits Juan, hoping to assuage his fears, but he might not be prepared for the depths of Juan's horror." tt1634121,i7eR-SzImZQ,Mia and John have some eerie experiences with Hollow Face. tt1634121,6dySVi75n7M,Juan and Luisa are yet again assaulted by ghosts. tt1634121,QfNYdXHjGV0,"When Juan's haunting continues, Luisa consults Father Antonio." tt1634121,KtZQO636AQw,"Mia finds the story of Hollow Face in a tree, and recites it to her petrified class." tt1634121,EY18WYrcYHw,"Juan tries to save his mother from a Ghost, but he may not be able to save himself." tt1634121,VhTqGpjZzfk,"Drawn out into the storm by the meows of his cat, Juan comes face to face with terror." tt0988849,U6CQhcLjjfY,"Sean, Marcus, Josh and the others decide what to do after a girl is accidently killed on their yacht." tt0988849,mwVsJoafaP0,"Josh and Tammi, the last two alive, decide to escape the yacht, but both are still suspicious of each other's plans." tt0988849,GnAKqKB8ryc,Kim comes upon Tammi on the floor with Sean above her holding the shotgun and misinterprets the situation. tt0988849,m6-AzGII9Ts,"When Tammi goes to rescue Sean from the engine room, Josh attempts to get the shotgun away from Kim." tt0988849,sCSUnot0u30,"Out of frustration of not finding the video tape that proves he killed someone, Josh tortures his wounded friend Bluey for answers." tt0988849,wojHQib2wn4,Kim and Tammi attempt to break out of the room they are locked in and escape the boat. tt0988849,tcH0KwS_YEA,"To get them back on the yacht, Marcus threatens Kim and Tammi with a shotgun." tt0988849,yLj0FvavCe0,Marcus and Sean attempt to throw Lisa's body overboard while Kim grabs a knife and tries to stop them. tt0988849,sHhFAITCEPs,After disposing of Lisa's body the group has a very tense dinner where Bluey just can't stop antagonizing Kim and Tammi. tt0988849,u0aPph3nUwQ,"After a girl is accidently killed during sex, Sean and Marcus explain to her friends what they plan to do about it." tt2621126,oX5iDM-DnQ4,"While in Michael Jackson's old neighborhood, Mindless Behavior performs ""My Girl"" for the locals." tt2621126,dlwR6MhC2Hc,The moms come and surprise Mindless Behavior on stage. tt2621126,08UMKwdtWk8,"After their show, Walter takes them to Michael Jackson's childhood home." tt2621126,FxwaraxX89Y,"Mindless Behavoir performs ""#1 Girl""." tt2621126,-D3PMCmZot0,"Mindless Behavoir talk about how grateful they are. And Princeton talks about meeing Anaya, a little girl who was was almost knocked over during one of thier shows." tt2621126,ouN3vJJmPgw,"Walter asks them if they want to be famous or successful. And due to their hard work, they acheive both." tt2621126,b_5M03JfdQo,"Prodigy's father, Prodigy and Walter talk about how Prodigy got into Mindless Behavior." tt2621126,iab2tzXfWsU,Ray Ray shares his how he got into Mindless Behavior. tt2621126,LPEVs0FV7Os,Princeton describes how he got into Mindless Behavior and his audition experience. tt2621126,y-PhkF8e4rc,Roc Royal's family reminices about his childhood and how he got into Mindless Behavoir. tt1016268,1_uvjP9QZcE,The retirement accounts belonging to tens of thousands of people evaporate in the wake of Enron's demise. tt1016268,eYR0zgfAcQk,"The employees of Enron are told about the bankruptsy and are given 30 minutes to vacate the building after years of perceived, unrivaled success." tt1016268,_08wo4Rxayk,Pressure mounts as Enron's financial instability becomes more and more apparent. tt1016268,puGracMskK8,Enron's lurid relationship with major U.S. financial institutions is revealed. tt1016268,9ejzBYus8qE,Enron traders celebrating California wildfires that spike the price of energy in their favor is aptly compared to the findings of the infamous Milgram experiment. tt1016268,sHAoAwDUkBo,Enron's ability to lie diversifies as rapidly as the company itself. tt1016268,gaZOIAJJ6Kk,Journalists working for Forbes magazine begin to sense something fishy about Enron's financial stability. tt1016268,IUu1T75RjTo,Enron's political ties provide cover for illegality that ended up putting tens of thousands of employees and pensioners into the poor house. tt1016268,vBasqtPRco0,The philosophy of those in charge of Enron's illegal practices are deconstructed. tt1016268,jm7zMNBEgmA,Cliff Baxter's suicide as a result of the Enron fiasco is discussed. tt3064298,EFlCixq_HEM,Jack makes a grand romantic gesture that wins Nancy's heart. tt3064298,kZgaz49f5aE,"Sean offers to help Jack find Nancy, but he lies and finds Nancy for himself instead." tt3064298,Vjc0wdQtl64,Jack searches for Nancy while she suffers through spending time with her stalker Sean. tt3064298,gsYcnpq1HBc,Nancy and Jack argue about relationships while dancing. tt3064298,1Gnmq6nB1ws,Nancy helps Jack start to get over his divorce. tt3064298,mwrMEQnMRCQ,Nancy tries to prove a point and races Jack to the bar. tt3064298,Ux6L0eRqDGY,Jack catches Nancy in the bathroom with Sean and she confesses her true identity. tt3064298,XKrIeZTVBQ4,Nancy agrees to kiss Sean in order to keep her identity a secret from Jack. tt3064298,RDrZm6eEY6E,Nancy meets Jessica on a train and ends up getting dating advice. tt3064298,0bRr_MER6Vg,Nancy tries her best to keep up with Jack on the blind date she shouldn't be on. tt2051894,zTh8P8BTQVE,Cory address the congregation about his new direction in life. tt2051894,RCzgkvkbVI4,Cory tells Emma that he wants to be more involved with the family. tt2051894,Z1MsMWSkKWE,Tyler asks Cory if he really is his father. tt2051894,2rq0nLbL5fg,Cory tells Emma that he wants to be more involved with Tyler's life. tt2051894,D6SVqGVTlFU,Cory has an idea that could win the team the baseball game. tt2051894,utHcPvSz6AM,Cory gives Tyler some words of encouragement for the baseball game. tt2051894,u5gSeZQbbq8,The baseball team discovers Cory and Emma's high school yearbook. tt2051894,Yz0YrG0oJQU,Cory has his photo-op with the press to help repair his image. tt2051894,cUy-J4YGxcE,"After an initial reluctance, new details help Cory embrace coaching." tt2051894,UIdm6BTefb8,Helene reveals that Cory will be coaching his brother's baseball team. tt2051894,BIW6tF1dE50,Helene reveals to Cory the repercussions of his actions. tt2051894,PuI5bs7mZG8,Cory blows up after an umpire calls him out for missing third base. tt4034228,n1X2w0tinkg,Vanessa gets lost in the moment as she dances with Roland. tt4034228,SWYmSp9wxUM,Roland explains the adultery situation to Lea and comforts his guilt-ridden wife. tt4034228,JkeXMSrRsYI,Roland beats up the neighbor when he finds him touching his wife and Vanessa admits her reason for wanting to break the neighbor couple up - she's barren and jealous of them. tt4034228,EcDcNDlil_A,Roland watches Vanessa play cards with Franois and confronts Vanessa about what kind of game she's playing. tt4034228,YCIt5jn2XPk,Lea talks to Roland about his writing and her marriage. tt4034228,U-42oAzybn4,Roland and Vanessa get a little bit closer and talk about their new fetish. tt4034228,77326fqWeR4,"Roland comes home drunk and tries to make love to Vanessa, who pushes him off." tt4034228,zWtQ2tYVagg,Roland finds Lea playing cards with Vanessa and fears that Vanessa is trying to push them together. tt4034228,ySwvsZ3KWhc,Vanessa wakes up Roland in the middle of the night to interrogate him about his feelings towards the girl next door. tt4034228,6MDRk-oDzAE,Roland discovers Vanessa looking through the peephole in their room and then looks on at their neighbors having sex. tt2345112,NgQmrSNWY0U,They watch Abraham Zapruder's film for the first time. tt2345112,m_adoXQ7GT4,Robert Oswald asks a police detective what he and his family should do. tt2345112,q4FzgqjlrVY,Zapruder talks to Dick Stolley from LIFE magazine about selling his film. tt2345112,RYgoemOYknw,Agent Hosty is confronted by his supervisor because he missed the opportunity to arrest Lee Harvey Oswald two weeks before he assassinated the President. tt2345112,ARSK76A2xts,"While Robert Oswald buries his brother, Agent Hosty destroys evidence regarding Lee Harvey." tt2345112,WvJZlC93jVM,Robert Oswald goes to talk to his brother Lee. tt2345112,IUBx1ZoP6PA,Robert Oswald confronts his mother Marguerite about his brother Lee. tt2345112,IR7xuySx1v0,The funeral of Lee Oswald is juxtaposed with footage from the funeral of President Kennedy. tt2345112,KGPl7ahFDEc,Dr. Earl Rose puts up a fight when Secret Agent Roy Kellerman wants to take the body of the President. tt2345112,g5wB0DNvM8M,The Secret Service find Abraham Zapruder and ask him for his film. tt2345112,ddrQKAMzUGI,"After JFK comes into Parkand Hospital, it is up to medical resident Jim to treat the President." tt2345112,aRAHfPrf7C8,"At one o'clock in the afternoon, the President is pronounced dead." tt0038109,-fnJhOLKjv0,"Constance uses her wits to escape Dr. Murchison, who has threatened to shoot her." tt0097239,3V2gt6bAYxM,"Daisy becomes convinced that Hoke is stealing when a can of salmon goes missing, and insists that Boolie take some action." tt0097239,HJK28cWPvH4,"Daisy and Hoke argue about Daisy's wealth, and Hoke proposes that they maintain a strictly business relationship." tt0097239,SQNzOyXHbYY,Hoke speaks up for himself when Daisy refuses to let him pull over for a bathroom break. tt0097239,9bjpF066edk,"Hoke visits Daisy at the nursing home, and the two share a sentimental moment together." tt0097239,NuEXMD5przE,"When Daisy realizes that Hoke can't read, she offers him some basic pointers to help him learn." tt0097239,omFpUjAzM9M,"When Hoke tries calming Daisy down after she suffers a delusional episode, Daisy confesses that Hoke is her best friend." tt0097239,HqquGvHwicg,"After Daisy hears news that her temple was bombed, Hoke shares a memory of a lynching to try to empathize with her." tt0097239,zp-g3uxoQeE,Hoke quickly learns how overbearing Miss Daisy can be when she criticizes his driving and instructs him to go fifteen miles below the speed limit. tt0097239,p4z5ZU-dHr8,Miss Daisy denies Hoke's offer to drive her to the grocery store. tt3168230,GMk7xOOzK4E,"After telling Mrs. Munro Ann's story, Holmes reveals that he's leaving the house to her and Roger." tt3168230,SD86_k19Rx8,Holmes reveals to Mrs. Munro that the bees were not the ones who attacked Roger. tt3168230,1fM9KjHmVNw,Holmes discovers Roger's lifeless body covered in sting sores. tt3168230,BGyHgJ9DunE,"Although he understood all the facts of the case, Holmes was still unable to fully comprehend the depth of Ann's anguish." tt3168230,mvYdMO5ZfYM,Holmes reveals his understanding of Ann's plans. tt3168230,_zjqM0Hmk2A,Roger learns of his mother's decision to move through Holmes's deductions. tt3168230,QHYatXsRFEI,"While trying to regain his lost memories, Holmes falls and loses consciousness." tt3168230,hiREoiox0Tw,Holmes follows Ann to the park and uses his knowlege about her to read her palms. tt3168230,PGTXynHmp_o,Holmes gives Roger his first lesson in beekeeping. tt3168230,Q91iEtSRiwU,Mr. Kelmont tells Holmes the emotional story of his wife Ann. tt3168230,aNQL0s6v8nI,Roger get his first lesson in detective work from Mr. Holmes. tt3168230,_aePd1mFn7M,Dr. Barrie confronts Holmes about his deteriorating memory. tt0038109,YCAW0hzka8I,Constance pleads with Dr. Brulov to help her save John from the authorities even if he has committed murder. tt0038109,KTFG9YDV_8o,"While skiing, Constance helps John make a psychological breakthrough." tt0038109,tEptrqj1R50,Constance realizes that Dr. Edwardes is not who he seems. tt0038109,E8MitqqUuBI,"Constance visits Dr. Edwardes late at night, but realizes she has deeper motives to talk to him." tt0038109,4wPqQUl2y5A,Constance goes out to the country with Dr. Edwardes and finds herself attracted to him. tt0032976,OTX8quF1g4I,"Maxim promises not to lose his temper at the inquest, and laments the loss of innocence in the Second Mrs. de Winter." tt0038109,gnqyCM42fOU,Dr. Edwardes recounts his dream to Constance. This scene was famously designed by surrealist painter Salvador Dali. tt0038109,p8lLNtyeSz4,Contstance tells Murchison her theory about the murder and puts herself in real danger. tt0038109,s2gjCGRLfKM,"Constance unravels John's psychological problem, but fate steps in to break up their new romance." tt0038109,8ZLUn8xHbiM,Constance remains with John even after the truth comes out because she loves him. tt0032976,N-2stIHQ12U,Maxim returns to Manderley to find that Mrs. Danvers has set the place on fire. tt0032976,t2ydTbUJ__8,"The Second Mrs. de Winter meets her new sister-in-law Beatrice, who warns her about Mrs. Danvers and her bitter jealousy." tt0032976,whEcud8GBTo,"Although Maxim tells his new wife to relax, she is unnerved by Mrs. Danvers." tt0032976,JZGQiDSJRWw,"The Second Mrs. de Winter confronts Mrs. Danvers about her behavior, and Mrs. Danvers encourages her to commit suicide." tt0032976,BTUIaeLGBPk,Jack threatens Maxim with the letter that Rebecca sent to him on the day she died. tt0032976,S2NZ6XCtqMQ,Maxim confesses to the Second Mrs. de Winter that he faked the details of Rebecca's death. tt0032976,dGVvqcGBn_E,"Mrs. Danvers corners the Second Mrs. de Winter, and questions her about the afterlife." tt0032976,izbOPZezYiQ,Mrs. Danvers shows the Second Mrs. de Winter Rebecca's dressing room and wardrobe. tt0032976,7SaFvv-XoIM,"Faced with the imminent departure of his new companion, Maxim proposes to her." tt0032976,ijkNii0A80I,Maxim tells his young companion why he's been inviting her on so many day trips. tt0032976,7IsskjJnGN0,The Second Mrs. de Winter recalls her days at the now ruined country estate Manderley. tt1876547,UppZwnbIvZI,"Henry and Cassie shoot up a group of zombies with a turret, allowing them to finally reunite with the rest of their group." tt1876547,kfYzoHzwZZY,"After being separated from their group, Cassie and Henry are attacked by a monstrous zombie. Luckily, Henry finds a chainsaw and fights him off." tt1876547,GCQrTxMgMiM,"Henry and Cassie use a grenade to quell a zombie attack, causing a distraction and allowing the others a chance to escape from the van they have been trapped inside." tt1876547,2k2hQ4dI5Zs,"Myrah distracts a group of zombies by shooting one with a bow and arrow. When Julien tries to use a Porta Potty, a zombie attacks, forcing the group to run and hide in an abandoned van." tt1876547,sSMoOPktKsQ,"When a zombie tiger attacks the group, Henry takes it down with his giant hammer." tt1876547,fOdzgxEe1u0,"After they are ambushed by a hoard of zombies, Mack loses sight of Henry and Cassie and is forced to leave them behind." tt1876547,AUxAITobkNA,"Julien begins to turn into a zombie while the group is trapped inside a van, forcing the others to kill him or be killed." tt1876547,uwEFn60u9SE,"A hoard of zombies attacks the group as they search through a high school, devouring Billy in the process. Ramona takes down a zombie that has stalked her into the bathroom." tt1876547,son5FnMtr_8,"When a hoard of zombies attacks, killing Kevin, Henry and his crew show up to save the day." tt1876547,pxWCOG2v42c,"When the group is attacked by zombies while raiding a store, Julien uses an air horn to distract the hoard and make an escape." tt3567288,y2DC74NT5G8,"Becca jumps out of a closet and scares Tyler. Then, Becca panics when she finds Nana acting strangely and laughing at a blank wall." tt3567288,dLVgEWrfdSg,Tyler raps about the horrors he experienced at Nana and Pop-Pop's house. tt3567288,sQPrjgzEcAc,Mom tells Becca the story of when she left her parents. tt3567288,zJ4owMQIKuQ,Tyler interviews Becca about some very sensitive subjects. tt3567288,OzWA6M7VnGg,"While Tyler and Becca play hide and seek under the house, Nana goes crazy and chases them." tt3567288,L2GbnErVDqk,"Nana asks Becca to crawl inside the oven. Then, she freaks out when Becca asks her about her past." tt3567288,o3s4QiK4MSM,"Becca discovers a hanging corpse in the front yard. Then, Pop-Pop and Nana go crazy during family game night." tt3567288,0B1NRC3WYEs,Nana goes on a crazy rampage in the middle of the night and tries to break in to Becca's bedroom with a knife. tt3567288,W_0WRTR2vSc,"Pop-Pop shoves his dirty diaper in Tyler's face. Then, when Nana attacks, Becca is forced to kill her." tt3567288,y6u4QEi3n2g,Tyler and Becca make a shocking discovery about Nana and Pop-Pop. tt1623288,I5xqeX3lAgk,Mr. Prenderghast appears to Norman during a bathroom break to inform him that he must be the one to break the witch's curse. tt1623288,PczVuk7L0MU,"When Norman fails to break the witch's curse, he and Alvin are attacked by zombies." tt1623288,LxOEBk9PqQQ,Norman and his friends try to convince the angry townspeople that the zombies aren't actually dangerous. tt1623288,o6NxwI5Sbbw,Norman tries to open Aggie's eyes to the evil she is causing. tt1623288,SVUcZ0sAf9c,"In the midst of a zombie attack on their car, Norman calls Salma for advice." tt1623288,wZUKOxIXZ8c,Norman helps Neil communicate with his dead dog. tt1623288,WCO594skLRA,"While searching for her younger brother, Courtney, Mitch and Neil literally run into a zombie." tt1623288,wehE7YLFmGI,"After Norman calms the vengence of Aggie's ghost, he reveals that he understands and relates to her." tt1623288,QbMcPeuQsfE,"Norman has a more interesting walk to school than most kids, although once he gets there, things get less fun." tt1623288,oK0u0F_Y2EU,Courtney asks Mitch on a date as Norman and the rest of the town deal with the aftermath of the witch's curse. tt0063350,JBc-gNIjGuc,"Ben awakes to find that a posse has arrived, but when he approaches the window with a rifle, they shoot him right between the eyes." tt0063350,komxaWgJ8O4,"Ben shoots the untrustworthy Harry, who stumbles into the basement with his flesh-eating daughter Karen." tt0063350,n5HtgUGCM30,"When Harry fails to open the door, Ben gives him a beatdown, and the zombies outside feast on human flesh." tt0063350,ViIuvUSF3YU,"Tom accidentally spills gasoline on the torch, and his attempt to drive away from the pump results in a deadly explosion." tt0063350,d8Gg9rPHKNU,"Ben gets grabbed as he walks by a window, so he and Tom defend themselves with a rifle and a knife." tt0063350,727NnSLXsxc,Harry creates a distraction with molotov cocktails as Ben and the others make a run for the truck. tt0063350,ct7Ox_OKe-s,"Ben leaves the house to take care of some zombies in the yard, unaware that another has entered the house with Barbra." tt0063350,p8L6CtsqDE4,Ben and Barbra come to blows over whether or not they should leave the house to look for her brother. tt0063350,_d68kyNY0jI,"Johnny mocks Barbra for being afraid in the cemetery, when suddenly they're attacked." tt0063350,SWxdW9jlHqM,"Barbra searches inside an abandoned house, and the undead continue to approach until Ben arrives." tt1204977,Ia7el1fEff8,Laine and Sarah reflect on the loss of their friends. tt1204977,m3262E3sfb8,Laine and Sarah try to vanquish Doris. tt1204977,-zxyN9-P9_c,Laine confronts Paulina about misleading her. tt1204977,CDiosBMzR_c,Laine and her friends try to sever their connection with the spirits. tt1204977,4932enSiFRA,Isabelle gets possessed by a spirit. tt1204977,KVGVHjX_bkg,Laine discovers Debbie's flashdrive. tt1204977,VVAlND4mt5s,Friends discover a dangerous spirit while trying to contact Debbie in the spirit world. tt1204977,gEdTciZtW4o,Debbie's friends attempt to communicate with her spirit. tt1204977,XY2mzqw0vR0,Isabelle has a frightening experience and calls Pete for support. tt1204977,KSfYdl24m7s,Debbie feels a presence in her empty house. tt0298388,WxIIpvpAEEM,Jonah tries to avoid going to Nineveh by sailing to Tarshish with the Pirates Who Don't Do Anything. tt0298388,7umeeSjxQl0,"Twippo performs ""Jonah Was a Prophet"" for the gang." tt0298388,Tw99DKA5tss,Jonah tells the Ninevites the message from the Lord and they repent. tt0298388,WGy01KGFK7I,Jonah and the Pirates Who Don't Do Anything are captured by the Ninevites and are condemned to the Slap of No Return. tt0298388,lot6apnbKk4,Pirate Pa tries to determine who God is angry at in a scientific manner - by playing Go Fish. tt0298388,Jr4HhX_kbf4,"While he is in the belly of the whale, angels from God come down to tell Jonah that God is a God of second chances." tt0298388,emnU7uOpYtk,"When God asks Jonah to go to Nineveh, Jonah refuses." tt0298388,AY1ze9t3lus,Jonah meets the talkative and friendly caterpillar Khalil. tt0298388,BgkEy5fF1rM,Jonah shares his message from the Lord with the townspeople. tt0298388,iAMImEbSpDk,The gang is stuck at a seafood restaraunt and they try to make the best of it. tt0298388,ivZaXeAv5X4,Bob the Tomato loses control of the car when the steering wheel falls off. tt0339291,WrfxIymvEhQ,"Violet, Klaus, and Sunny finally receive the lost letter from their parents." tt0339291,tsIYleoAQpY,"Violet, Klaus, and Sunny get stuck in the house during a hurricane." tt0339291,nh8mjiSlAws,"The Baudelaire children arrive at the home of their paranoid, grammar-crazed Aunt Josephine." tt0339291,mIvQRRVbt9E,Klaus and Violet decode the clues in a note left by Aunt Josephine. tt0339291,6zqeWbDCXMM,"Lemony Snicket introduces Violet, Klaus and Sunny Baudelaire, each with their own talents and interests." tt0112642,WMWI2FTLbhg,Casper tells Kat how he died and stayed around to console his father. tt0112642,01ClRWyf9I4,Kat's deceased mother temporarily grants Casper his wish to become alive and then visits her husband to impart some wisdom. tt0112642,uA7BbE1cF2U,"After Carrigan crosses over, Casper decides to use the machine on Dr. Harvey instead of himself." tt0112642,DXH2BXpwCAo,Casper and Kat talk about their childhood memories. tt0112642,5IPCNRlCYP8,The guys play a prank on Dr. Harvey during their therapy session. tt0112642,odUsOcEqT4g,While Kat introduces herself to the class Casper plays a prank. tt0112642,rxCuYueuyxM,Casper gets in trouble when he tries to serve a nice breakfast to his new friends. tt0112642,UEEIFRxwHSM,Casper accidentally scares his new house guests. tt0112642,vZKaVV0ZyFs,Dr. Harvey has a rough first encounter with his feisty new paranormal patients. tt0112642,o94LScznlmY,Carrigan tries to rid her newly acquired mansion of the ghosts haunting it. tt0134847,YLjkzy7nhc8,"When escape from the dangerous world is finally within reach, Fry decides they can't leave without Riddick, who is trapped and injured by the monsters." tt0134847,PlSt57BseA8,"As Riddick prepares to leave the survivors behind, Fry shows up and tries to get him to reconsider." tt0134847,wyuPoWs79fo,"When Johns decides they should sacrifice Fry, Riddick has a different idea of who should die." tt0134847,TjGfTL6l-HM,"As they lose sources of light, the creatures get fiercer and Riddick decides to show one of them what a real monster looks like." tt0134847,luuYRrPaEpM,"As the world slowly falls into darkness, Riddick, Fry and the rest notice flying monsters pouring out into the sky." tt0134847,Eum-rR934sQ,Riddick uses his nightvision to lead the surviving group through the dark alien world that is just waiting for anyone of them to step out of the light. tt0134847,2ZGmI0V_Hgo,"The group discusses what possibly happened to the settlers, while Ali discovers the truth first hand." tt0134847,1c7FYxTa2mQ,"After his recapture, Fry decides to talk to the famous killer himself, Riddick," tt0134847,G1BREAJI3E0,"Upon realizing their are deadly monsters on the planet, Johns approaches Riddick with a deal." tt0134847,KAZVdaHzWNc,"Left alone, Riddick uses his talent of dislocating both his arms to escape his current captured state." tt0905372,tz-XJMspLOA,"As Kate and Carter make their way back to base, Kate realizes that Carter is not human." tt0905372,FFGm__skOH4,Kate and Carter track what's left of the Thing back to it's spaceship. tt0905372,DZwobit-Zy4,Kate and Dr. Sander do an autopsy of the alien with the body of Henrik still inside it. tt0905372,A8GRnS_49gs,"Carter is attacked by the Thing, but Kate arrives in time and burns it." tt0905372,4TgJgyypajE,"Kate, Carter and the rest scramble to escape the rec room when Edvard starts to transforms into a monster." tt0905372,6-PJPTcT-o4,Kate and Carter try to hunt down the Thing. tt0905372,3PRuMx1gqdM,Kate comes up with a way to determine who is human and who might not be. tt0905372,ZMURdEkb_3Y,"While Kate and Juliette look for the keys to the vehicles, Juliette starts to transform." tt0905372,KL5rXhSkP34,"After Kate finds tons of blood in the shower, she tries to flag down Carter's helicopter as he leaves." tt0905372,o7zebTh4tHo,Lars disappears and everybody suspects Carter and Derek since they were not with the group. tt1440129,w0BK_hLT-Wo,"Alex Hopper commands the USS Missouri, a decommisioned ship run by old vets and uses it to defeat the alien mothership." tt1440129,ZQsCM4wE_es,"The battleship, John Paul Jones, is destroyed by two alien shredder drones." tt1440129,1KBy8-7nc1M,"Without their radar, Lieutenant Alex Hopper and Captain Yugi Nagata use NOAA's tsunami warning buoys to search and destory two alien ships." tt1440129,yWuZtDeeZmc,"Realizing that the aliens can't stand sunlight, Lieutenant Alex Hopper decides to use the sunrise as a way to defeat that last alien ship." tt1440129,dGz9C2xMADc,"An alien soldier manages to infiltrate the ship but Lieutenant Alex Hopper, Raikes and Beast fight back." tt1440129,7yjowqaIUnU,"After having their radar disabled, Captain Nagata and Lieutenant Alex Hopper creatively use tsunami warning buoys to track enemy ships on a grid." tt1440129,3a7e-npyunY,Alex Hopper and Nagata inspect the body of an alien that was fished out of the water. tt1440129,JCVLrJfjsIo,The alien ships fire off shredder drones that destroy the military base and roads in Hawaii. tt1440129,y7T5Ea-WGII,Alex Hopper gets back to his damaged ship and takes command. Out of anger he decides to attack the aliens. tt1440129,YUaq56T5qSo,"Alex Hopper, Raikes and Beast watch as aliens destroy two of their fellow Navy ships, including the one that is commanded by Alex's brother Commander Stone." tt0023245,j40IcG_BZuc,"As Imhotep nearly sacrifices Anck-es-en-Amon, she prays to the god Isis to save her." tt0023245,MnZJSCtPQtY,Helen fights against her impulse to go to Imhotep and her caregivers decide to let her go so they can follow her. tt0023245,ikWTYTomQI4,"Imhotep recalls his sacrfices for Anck-es-en-Amon, when the Pharaoh orders Imhotep to be buried alive in an unmarked grave." tt0023245,cEJhVm0TJUQ,Helen returns home from a trip she can barely remember and Frank vows to protect her. tt0023245,pvZXE-e5Yo4,"Imhotep brings forth the spirit of Anck-es-en-Amon within Helen, burns her ancient corpse and asks her to die once more so their spirits can be together." tt0023245,N2A4tcaMl9c,Imhotep reveals to Helen his memories of Anck-es-en-Amon's death and his attempt to bring her back. tt0023245,TnkyKOn81nA,Dr. Muller and Sir Joseph discover that Ardeth Bey is Imhotep and then Imhotep uses his powers to kill Sir Joseph when he tries to burn his scroll. tt0023245,3ce2e-d1ZEc,Imhotep visits Sir Joseph and recognizes Helen. tt0023245,f187FGFi1AM,"Imhotep calls for his beloved Anck-es-en-Amon, and an entranced Helen responds." tt0023245,VAp8WVZm3cc,Imhotep comes to life after Ralph opens a scroll with a curse. tt0085636,yOWS9e_r5OI,"Daniel plays the magic hour commercial early and uses Silver Shamrock buttons to destroy the control room and activate the monolith, killing Cochran." tt0085636,VX3u1HUl2Zw,"Daniel discovers Ellie has been replaced by a Silver Shamrock android when she suddenly attacks him again and again, even after losing multiple limbs." tt0085636,goKRpR4XNg8,Daniel desperatly pleads with TV stations to take the Silver Shamrock commercial off the air before it kills all the children watching it. tt0085636,vsfjzfGZVyQ,Cochran explains to a tied up Daniel the pagan plan behind Silver Shamrock masks. tt0085636,u2D0kDFKaxE,Cochran uses the Kupfer family as a live demonstration of the true sacrifical power of the Silver Shamrock masks when the TV commercial is played. tt0085636,b_tZKOxNR7o,"After discovering strange mechanical parts among car wreckage, Teddy attempts to call the Sheriff only to be stopped by a Silver Shamrock henchman." tt0085636,mQpZdtspStY,Daniel discovers the Silver Shamrock henchmen are actually androids built by Cochran. tt0085636,4bB-IJBlZms,"While Ellie and Daniel have sex in a neighboring room, Marge accidentally triggers a Silver Shamrock button, firing a laser that disfigures and kills her." tt0085636,dUFtkBtGIgg,Harry is violently killed by a mysterious man who then walks outside and lights himself on fire. tt0085636,O2RUT5J7T4E,Starker warns Daniel about Cochran and is beheaded by henchmen shortly after. tt0082495,zlVbQsf7vpk,"After Jimmy and Jill start to wonder where everyone in the hospital has gone, Jimmy discovers the body of Mrs. Alves and knocks himself out after slipping on her blood." tt0082495,AI752yUQd1o,"Hospital security guard, Mr. Garrett, investigates a break in at the storeroom." tt0082495,COZxvXx4bSg,"Laurie finally fights back after Loomis is stabbed and shoots Michael Myers in the face, giving Loomis enough time to kill Michael with fire." tt0082495,e4-STTC0pNc,"When Laurie goes catatonic, Janet goes to find a doctor but runs into Michael Myers instead." tt0082495,FyuQ13ZZNIQ,"Upon hearing the news that there were murders just down the street, Alice Martin finds herself becoming one of the victims." tt0082495,Ht3gFCqpFkE,Michael Myers survives multiple bullets from Loomis only to kill the Marshall and continue stalking Laurie. tt0082495,PP8BpNVk8JM,"When Jimmy falls unconscious after a head wound, Laurie tries to get Loomis' attention for help." tt0082495,OuacLAbhxqc,Loomis and Sheriff Brackett think they spot Michael walking towards a group of kids. tt0082495,QaSr6mpkTII,Michael kills Nurse Franco and chases after Laurie. tt0082495,h0w6WywbohM,"Waiting for her boyfriend to come back from turning down the hot therapy tub, Karen instead gets a much more violent visitor." tt0116365,lCyS2Gxxzfg,Frank finds himself stuck between the creepy Dammers and the crazy Patricia. tt0116365,alh8b1lYuRU,Frank cons Lucy and Ray as he investigates their house for poltergeists. tt0116365,Y91jebCjFBE,Frank fights Death and soon finds out who is behind the evil apparition. tt0116365,qz0rKdYiqDQ,Lucy tries to escape Patricia and her evil boyfriend Johnny Bartlett. tt0116365,E81RLAQyhCA,"Still out of his body, Frank tries to rescue Lucy from Death." tt0116365,YZPkrplfycM,"Death tries to take Lucy, but Frank and his frighteners help her escape." tt0116365,1xFsHF8ZF2Y,"Frank tries to save Magda from Death, but he only delays the inevitable." tt0116365,yYF0oK8oXSk,Frank sees Death take a victim in the bathroom. tt0116365,CQvEBaLYHJE,"Frank meets Sgt. Hiles, a militant ghost, at the cemetery." tt0116365,mdsLJ_ciPHI,"Frank's frighteners, Stuart and Cyrus, complain about his treatment of them." tt0780653,hRBRb2eiK4I,"Lawrence, as the wolfman, chases down Gwen." tt0780653,Y5pRDzBxZtY,"Lawrence Talbot confronts his father, Sir John Talbot." tt0780653,4i3CEXiGKgU,"During a full moon, Dr. Hoenneger presents Lawrence to his fellow doctors to prove that he is not a werewolf." tt0780653,ba9YG9xCC7A,"After being arrested, Lawrence Talbot is sent to the same asylum he was committed to when he was a child." tt0780653,vEd2sU65NQI,"Inspector Abberline chases down Lawrence, who has transformed into a werewolf and is causing chaos throughout London." tt0780653,wJZHc5SJ9eE,"Lawrence Talbot, now fully transformed into a werewolf, slaughters a group of hunters who had set out a trap for him." tt0780653,-lX6P0PFKy4,Sir John Talbot locks himself in a room as his son Lawrence starts to transform into a werewolf. tt0780653,YiE8wDRFfvM,"A group of men arrive with intent to arrest Lawrence, suspecting him to be a werewolf, but Sir John Talbot scares them off." tt0780653,tbdHhLOzT-Y,"While Lawrence Talbot visits the gypsies during a full moon, a werewolf suddenly attacks." tt0780653,BktKAiQQ_tw,"After a werewolf attacks the gypsy camp, Lawrence grabs a gun and follows it into the fog." tt0103956,gG1XmKlqhIU,"During the local military school's war games, Chucky causes chaos after putting live ammunition in the team's rifles." tt0103956,8w4UZGP7OGo,"In the middle of a carnival's haunted house, Chucky begins the ritual to possess Tyler's body. Andy arrives just in time to shoot Chucky through the chest and toss him into a large fan." tt0103956,i4M2tehIejI,"Chucky is discovered by Sgt. Botnick, the school's barber. Chucky kills him after the Sergent decides to cut the doll's hair." tt0103956,nFRuYV4QrnE,Tyler finally realizes that Chucky is not a toy you want to play with. tt0103956,7OpujffVbUQ,"Chucky chases Tyler into a haunted house ride at a nearby carnival. Right as he captures Tyler, he gets half his face cut off by an automated scythe." tt0099253,ttU5gs0lj38,"Andy and Kyle believe they have finally destroyed Chucky, only to find him still alive. Kyle ends Chucky's life by putting an air hose in his mouth." tt0103956,SwPPG_B3ArY,"While unpacking and starting his new life at military school, Andy gets a visit from an old friend." tt0103956,azot-mIuW3Y,Colonel Cochrane is startled by Chucky and dies of a heart attack before Chucky can kill him. tt0099253,zjFMyK_bRso,"While Chucky chases Andy and Kyle throughout the factory, he comes across a lone repair man." tt0103956,tQl5ypxi69U,Chucky kills a Garbage Man after being thrown away. tt0103956,pwL0PcIHtxQ,"Returning in a new body after eight years, Chucky kills the CEO of the company that makes Good Guy Dolls." tt0103956,ic9PvDGkzf8,"Tyler opens a package that was supposed to go to Andy. Inside he finds Chucky, who at first is rather angry until he realizes that he has a new child he can possess." tt0099253,41VUCQfnnco,"With Kyle as his hostage, Chucky arrives at the Foster Center. He gets Andy alone in a room after killing Grace, the woman who runs the center." tt0099253,PM5TJ6vZ9YM,Kyle and Andy are trapped in the Good Guy Doll factory with Chucky. tt0099253,pDnPZ0Ccdus,"Chucky takes Andy to the Good Guy factory and attempts a voodoo ritual to transfer his soul to the boy. Kyle arrives and saves Andy, just as Chucky realizes it's too late and he is forever stuck in the doll." tt0099253,TuafKNbgTCA,"Holding Kyle hostage, Chucky tells her to drive to the Foster Center to get Andy. She decides to crash the car instead." tt0099253,PHFG3ZC0fZI,Kyle finds Joanne dead and is attacked by Chucky. tt0099253,Qe5hop7o4ZI,"Andy takes matters into his own hands and hunts down Chucky in the basement. Chucky kills Phil, his foster father, and everyone assumes it was Andy." tt0099253,UvFclgKfUQA,"Miss Kettlewell returns to detention expecting to find Andy, but gets Chucky instead." tt2230358,OvbvCOM89Ew,Nica fights Chucky for her life. tt0099253,3AfqCkqJVt0,"Chucky hijacks the car of Mattson, a Good-Guy Doll executive." tt2230358,AuGJ_SZEXFI,Tiffany steals Chucky from the police and sends him to the next victim. tt2230358,WnBzLtUAnIg,Chucky tells Nica his origin story. tt2230358,BzMaqlt74NY,Ian tries to prove Nica is guilty by looking through footage from the nanny cam he hid in Chucky. tt2230358,WVDrmwtooj4,Ian suspects Nica is a killer. tt2230358,AP_hr5nmo9M,Nica runs away from Chucky and finds Ian to tell him she can't find Alice. tt2230358,f505OHOUHoU,"Barb looks for Alice in the attic, but instead she finds Chucky's true self." tt0387575,iFEr1xsuksI,"Despite promising to never kill again, Tiffany can't help but kill Redman after realizing he just used actress Jennifer Tilly for sex." tt0387575,7RsohcD0tS8,"Tiffany and Glen try to put their souls into Jennifer Tilly and her children, but Chucky crashes the party and the family comes to a bloody end." tt2230358,_7pkwL7yY5g,Barb tucks Alice in for bed. tt2230358,71FkH7FwfFg,Father Frank is involved in a severe car accident. tt0387575,WSADpIlmqQ8,Jennifer Tilly wakes up to find herself with a full pregnant belly. She tries to call her friend Joan but Chucky and Tiffany interrupt. tt2230358,rdEbjNy5BNs,Alice meets Chucky. tt0387575,lN4oFlIKm7A,Chucky takes Glen with him on a mission to kill a paparazzo who took their picture. tt0387575,5lBfYlWmDC8,"Glen tracks down his parents, Chucky and Tiffany, who are now animatronic dolls in a movie." tt0387575,ARKPBJdE_QU,Chucky and Tiffany find out that Glen is missing some rather important anatomy. tt0387575,NtQdJIeh2ho,"While having a boys night out, Chucky gets cut off by Britney Spears. He responds by running her off the road." tt0387575,I8yAmR1UymM,"While putting Glen to bed, Chucky and Tiffany are asked why they kill." tt0144120,sggwHnudtH0,"After Tiffany betrays Chucky, Jade takes the opportunity to shoot him through the chest and leave him in the grave of his original body." tt0144120,37yJV-YPBJY,"Chucky and Tiffany reveal themselves to Jesse, Jade and their friend David." tt0144120,Snt_FLn3dwM,"While being held hostage, Jesse and Jade manipulate Chucky and Tiffany into fighting with each other." tt0387575,YPQJOKn0I0s,"After being given as a gift to a little girl, Glen wakes up in the middle of the night and gives in to his murderous instinct." tt0144120,cqD8XBONBHY,"While Tiffany is watching TV and taking a bath, Chucky escapes from the pen she put him in and electrocutes her to death with the TV. To get further revenge, he casts a spell to put her soul in a doll." tt0144120,p4yCboEAjLk,"A police officer searches Jesse's van for drugs. Chucky and Tiffany decide he is too close to interrupting their plans, so they blow him up." tt0144120,lniVpfK5SW8,"A police officer is bribed to bring the remains of Chucky to an abandoned warehouse. Once there, he is killed by Tiffany, Chucky's former girlfriend." tt0144120,nID1enI2xW8,"After Chucky and Tiffany manipulate her neighbor, Jesse, into transporting them, they find corrupt police officer Warren Kincaid attempting to ruin their plan." tt1850457,W_CvL_fMIm4,Jane forces Maura to ask the good-looking neighbor James to the party. tt1850457,Uw1WGruy_KI,Maura struggles to say Hae Won's name. tt1850457,IyN025OadaE,Jane and Maura try on sexy dresses for their upcoming party. tt1850457,GyhrH5E6B6g,Jane and Brinda argue about their past rivalry in high school. tt1850457,-3RMOO6mHr4,"As the party starts to fade, Jane makes a speech and cranks things up." tt1850457,GJsTqU9Ujxo,Jane and Maura perform their favorite dance from high school. tt1850457,jx757TP9spg,"During a sexual encounter, James falls and gets a music box stuck inside his butt." tt1850457,AqMWvk5DMcU,"When their entire house is destroyed, Jane and Maura get in an epic cat fight." tt1850457,_XAKjc2gIfo,Jane and Maura buy drugs from a very prepared drug dealer. tt1850457,KhtepI51wuo,Jane and Maura compare their vastly different diary entries from high school. tt3321300,tv_xMisf9oc,"Will chases what he believes to be a terrorist through an airport, only to discover Harry waiting for him with an explanation for his disappearance." tt3321300,nVKSBDddFxM,"Harry gives Will his father's wedding ring, and explains why he felt the need to decommission him from MI-5." tt3321300,W2roZO0kTUs,"When terrorists mount an attack on MI-5, Harry is left with no choice but to let Qasim go free, leading to the death of a CIA operative." tt3321300,YkYqKiASqJM,"When Qasim threatens to take down all of MI-5, Will breaks free and takes him out once and for all." tt3321300,nNKsj8rQGHc,"Harry reveals that he knows Maltby was the real MI-5 traitor, and that he has used a deadly poison against her." tt3321300,EGqPXMAThig,"Left with nowhere to turn, Harry reveals that he gave Qasim the location of MI-5 headquarters. Then, the agents are attacked and killed by the terrorist." tt3321300,XtFr2BdLrv0,"Will and Harry fail to trick Qasim into believing they have his wife, leading Hannah to be shot by a sniper." tt3321300,XS2yOMGv5to,"When Will and Harry discover that June tricked them and killed Vass, they hold her at gunpoint to draw out more information." tt3321300,dStxLpnwvWs,"When Will and June investigate Vass' apartment for clues of corruption, it leads to a standoff and the end for one of the agents." tt3321300,plcl4YShR5Q,"When Harry tries to strike a deal, Qasim uses Erin's life as a bargaining chip." tt0091778,309Cnimrm5A,Diane feels the story of Kane and the followers of his cult. tt0091778,Atyyr6d7-u8,"Coping with the trauma, Steve's drinking leads to a nasty ""bug""." tt0091778,7WjOFzTTiHY,Diane is terrified when a possessed Steve attacks her. tt0091778,sjWdByLxTuI,"The family journeys into the dark, creepy cave which is the resting place of Kane's people." tt0091778,Yp2w2XxXKD4,Carol Anne returns safely to her family after they nearly lose her in a battle with Kane. tt0091778,UtSE9OXHIgw,"As the Freelings try to escape the house in their car, they are terrorized by a floating, vicious chainsaw." tt0091778,FSB26l-iDEw,Diane frantically searches the house for the children and gets spooked when she's attacked by a closet full of skeletons. tt0091778,ZMQCyJ2lhu8,"After Steve throws up a giant alien-like creature, he and Diane chase after it as it heads towards the children." tt0091778,ayOLECuygTQ,Robbie's mouth full of metal turns evil as his braces come alive and start to attack his body. tt0091778,zqTxw0eiZaE,Steve gets a creepy visit from the man named Kane who predicts death for Steve and his family in their home. tt0091778,8l-HZqArmXU,"When Carol Anne gets separated from her family, she has a frightening encounter with Kane for the first time." tt0091778,ofWdRHOZpV4,Diane wakes up in a panic from a terrible nightmare about zombies attacking her and burying her underground. tt0092076,U5fkvkaFqt4,"Armed with three chainsaws, Lefty goes to town on the ""Saw Family""." tt0092076,CqHyrmbiD1E,The psychotic family line up their dinner for grandpa. tt0092076,9RrN7k_5fl4,"Stretch meets Chop-Top, a burnt out hippie Nam vet cannibal and brother to Leatherface." tt0092076,AebCDidbqI8,Stretch tries to escape from Leatherface by seducing him. tt0092076,QPmSOAIRsj4,"The Cook gets a standing ovation for his award winning chili, made with the best ""beef""." tt0092076,tkDK_YLfTO0,Leatherface can't kill Stretch because he might be in love. His family messes things up as she pleads for her life. tt0092076,-yEE_toKFxc,Lieutenant Lefty storms the home of the evil cannibals and they face off. tt0092076,QjrvHsFzbvI,"Leatherface is given the choice ""sex or the saw"", but before he answers, Chop-Top ""bones"" Stretch." tt0092076,WfQ8qbtS63s,"Lieutenant Enright visit the Chainsaw Store and finds some suitable weapons. Then he ""test drives"" them on a tree." tt0092076,Rv1MSTB7QeA,"Chop-Top recovers from Leatherface's accidental chainsaw blow, which was deflected by the plate in Chop-Top's head." tt0092076,cIG0COsZmjg,Chop-Top creeps out Stretch while she's alone in the radio station before getting slashed by Leatherface. tt1659216,FXhW_IAJ_Yg,Jason and Rachel run for their lives as the Spider Queen attacks. tt1659216,vAJ_RdlVzgw,Col. Jenkins finds that his marines are woefully underprepared for the onslaught of spiders. tt1659216,2N4Tq6Zpx3g,Jason and Rachel run for their lives as the spiders escape into Manhattan. tt1659216,4kQr8dkriIg,"Trapped in a warehouse by mutant spiders, Jason gets behind the wheel of a forklift and stabs, impales, and crushes his way to glory." tt1659216,vnJE2OLp55w,Dr. Darnoff explains the potential of the Queen Spider's power and military applications while Col. Jenkins hints at a deeper game. tt1659216,gbr7Qazpy2E,"Rachel gets carjacked, and worse than taking her purse, the carjackers also take the mutant spider eggs." tt1659216,ivlV5kanNFE,"Nothing in New York can stand up to the wrath of the Spider Queen, not even the military." tt1659216,ihOU-LC0ue8,Dr. Darnoff explains to Col. Jenkins how to care for the Spider Queen's eggs if they intend for her to become a military super weapon. tt1659216,yB_0DHi3Z4k,Jason tracks his dead worker's attack to an abandoned subway where awaits a much deeper terror. tt1659216,frxxz1Nx3x0,Jason makes one last desperate escape against the Spider Queen. tt1659216,xb4rFYLKzHA,"Jason defends his family by fighting the Spider Queen head-on, but he may be grossly out of his league." tt1659216,A8WBlVOcSs8,"Emily manages to escape to a toy store, but with the spiders closing in, it may take all of her wits to survive." tt0860462,mRRLEgHhu3U,"In his ultimate showdown, Mercury Man fights a losing battle against his arch-enemy's sidekick, Areena, who now has ice powers." tt0860462,7cJS4h5_KJ0,"Nikolai sets a trap for Mercury Man, but he was born ready." tt0860462,xzwBLuOLjzA,"Nikolai informs Mercury Man that he ""will be lose because of the electricty,"" but Mercury Man doesn't go down so easily." tt0860462,4009LQ96f4E,"Mercury Man cleans up crime around the city, surprising everyone as he goes." tt0860462,XdPLA-egIeQ,Mercury Man saves a crowd from psychically-controlled elephants. tt0860462,Mu4AuoaIuHg,"Mercury Man vanquishes a handful of criminals, while Osama vanquishes a mountain." tt0860462,olg8NTkDXrI,"Chan trains to hone his fiery powers, but Osama and Areena are doing some training of their own." tt0860462,LZcSMyk5Obo,Areena pays Chan and Grace a most unwelcome visit. tt0860462,t-DJLPtSaHw,"Osama begins his wave of anti-American terror, which happens to impact an American playa." tt0860462,00Tazm9Z6XU,Everything you ever wanted to know about Sacred Amulets but were afraid to ask. tt0860462,eX7t2x1F5wA,"Inheriting fire powers, Chan has a mystical experience with Guardian Purima, a sacred guru of fire." tt3453772,6uRycxZgotc,Lt. Rudy sacrifices himself to save the world from an asteroid. tt3453772,HLJHW3slPW0,The team is on a mission to deposit the nuclear warheads in a volcano when Metal steps on a land mine and blows himself in half. tt3453772,j6SBSViczK4,"While Marissa launches her sub, their submarine gets hit by torpedoes and Captain Rogers dies." tt3453772,6R_37O7HwMI,"After surviving a tidal wave made by the Hong Kong impact, the team sets off the bombs in the trench to try shift the Earth off its axis." tt3453772,Jfk2QR-qyZk,"A piece of asteroid hits and destroys Hong Kong, but the impact isn't strong enough to move the Earth out of the way of the giant asteroid." tt3453772,SWnqUVFoQ9w,"As General Masterson and international delegates work to destroy the asteroid, they accidently break off a piece and send it hurtling towards China." tt3453772,KTes0O7QBR8,Lt. Rudy and his crew save the nuclear weapons from a nearby volcanic eruption. tt3453772,CyXxBjk4UaQ,"Just after a major storm, Major Sera picks up General Masterson for an emergency mission." tt3453772,5_C7GNWPinI,General Masterson debriefs Marissa and Chase on the impending asteroid disaster. tt3453772,ubD8vf5WvnE,Evan explains to General Masterson that the only way to avoid the asteroid is to move the Earth. tt0068762,aDrR7riBeLA,"Jeremiah Johnson has his first meal with his new wife and ""son.""" tt0068762,bLbLsjRVm9Y,"Jeremiah Johnson encounters Bear Claw again, this time as equals, true mountain men." tt0068762,ux9JHznPT8E,"Jeremiah Johnson must marry Swan, the daughter of a Native American chief, or risk being murdered for insulting the tribe's honor." tt0068762,7NMQnDrBp60,"Jeremiah Johnson meets a fur-trapper, Bear Claw, who asks him if he can skin a grizzly bear." tt0068762,qJ_EsjyYevs,"In true pioneer spirit, Jeremiah Johnson builds a log cabin alongside his new wife and son." tt0068762,WrGf03jRHSE,Jeremiah Johnson is attacked twice by Crow warriors. tt0068762,pYhlVR9GzjA,Jeremiah Johnson meets Del Gue who was buried in sand by Native American warriors. tt0452694,Lt7yltFpVyE,"After Henry has a vasectomy, Clare sleeps with a younger version of him and gets pregnant." tt0452694,k10DDJ4L2lc,Clare is overwhelmed at meeting Henry for the first time in years. tt0452694,6WArrD9VPJE,Henry proposes to Clare so he doesn't have to be alone anymore. tt0452694,OlPauBNIDAQ,Henry meets his mother on the subway and tells her about the girl he's in love with. tt0452694,L8cLSkIAgJ4,Henry introduces Clare to some of the benefits of time traveling. tt0452694,uV-u-N8RkKs,Henry and Clare realize that this is the last night he will be alive. tt0452694,5D4D0Hby47o,Henry and Clare have their first kiss after he travels back in time after having a vasectomy. tt0452694,iRd63BXG6nE,Henry meets his daughter Alba for the first time when she is nine years old. tt0452694,BdC4os4SOH0,"After his death, a younger Henry returns and tells Alba how he met Clare." tt2554274,FvJp6IklZUA,"Alan reveals the dark truth about the Sharpe siblings, which leads to disastrous consequences." tt2554274,UkDKxprXy_0,"After learning the evils that Lady Sharpe has done, Edith escapes." tt2554274,toctHJpW6no,"As Alan discovers a secret about Thomas, Thomas and Edith share a passionate evening." tt2554274,bZ7ZsN1FXuI,"When Edith discovers a clue about Crimson Peak, a ghost crawls up from the floor and attacks her." tt2554274,hJErQ3vUD24,"When Edith wakes up coughing blood, she sees a ghost who warns her about Thomas." tt2554274,e434wHYilA0,Edith discovers evidence that Thomas killed all his past wives. tt2554274,5xx4Ha3kGtg,"When Edith discovers Thomas having sex with his sister, Lucille pushes her over the balcony." tt2554274,rkPT_6JWenQ,"Lucille discovers that Thomas has true feelings for Edith and, unable to live with the grief, stabs him in the face." tt2554274,6mtG2DSbR3g,Edith sees the ghost of Thomas and leaves Crimson Peak. tt2554274,Kcf2d8epCXY,"With help from Thomas' ghost, Edith defeats a murderous Lucille." tt2581244,vV3RTL40nmw,Zach takes Beth on a hike and says his final goodbyes to her. tt2581244,9b32VkOh2nQ,Kyle arrives at the Slocum's and tells Zach that he must kill Beth before she eats him. tt2581244,XHJI9tya2cM,Zach arrives at the Slocum's to find Beth eating Geenie's fingers to curb her growing appetite for human flesh. tt2581244,aIau-DQHI3Y,Maury tries to convince Zach to calm down an increasingly aggressive Beth. tt2581244,EegoLE6n-Gk,"Zach arrives home to find his dead grandpa resurrected, and his family in turmoil." tt2581244,cJ4mSB-0OA0,Beth gets a little aggravated after she finds out about Zach's friend Erica. tt2581244,Kpomd1Lwn6Y,"Zach reveals to Beth the truth about her accident and her ""resurrection.""" tt2581244,X9A5UFJ1iZk,Beth gets a little too aggressive after listening to smooth jazz music. tt2581244,PWfgDuO0vmI,Zach goes to the Slocum house looking for the truth about Beth's return. tt2581244,6bDF7ZQgkZA,"Zach tries to take Beth out for a romantic night at the beach, but things go crazy after he starts to play a song for her." tt4685096,SXOm6AEArjo,"After all the work he has done to ruin everyone's day, the mutated shark decides he deserves a hand and he picks Stanley to give it to him." tt4685096,K04WrySpUH8,"As Maggie leads the group to safety, the mutated shark comes across something as deadly as him, the machete wielding Max Burns." tt4685096,nBlkMaEmWeI,"Maggie and her friends meet Max, the man who definitely, no doubt about it, killed the 3-headed shark." tt4685096,rpE_9A4LXWs,"As the rest of his friends attempt to escape the sinking party boat, Ryan finds his inner action hero and decides to take on the shark with an ax." tt4685096,gIQWTB6lNlw,"When people on the boat aren't falling into the water fast enough, the mutated shark decides to speed up the process." tt4685096,Od9Z1C8dboY,"When the 3-headed shark finds a party cruise, the young partiers go from having fun to being food." tt4685096,Jz0Ueh_tkFg,Dr. Thomas decides to distract the shark so that the others can make it to the boat. tt4685096,3Rayb1Y5SmA,"When the research base is under attack from the mutated shark, no one is safe, not even in the bathroom." tt4685096,mY-6iHAZZoo,"While visiting a marine life research center, Maggie, Greg and the rest of the group get a much more gruesome experience than they expected from the tour." tt4685096,wT2zu8zPXHQ,"It's the worst day ever for a group of young, sexy and drunk college students when a mutated shark interrupts their time at the beach." tt2043757,XGg85Qv_gK4,"When Jeff and Mike inspect a severed limb they see in the water, the 2-headed shark pulls them in the water and kills them." tt2043757,8yXl1yKbBiU,"During a boat race between Kate and Cole, the 2-headed shark attacks. When Ryan falls out of the boat, he is attacked and eaten." tt2043757,VPzrMnBW_JY,"A 2-headed shark attacks the boat, causing it to take on water." tt2043757,B7rcsBCaMI4,"As Kate tries to mend their escape boat, the shark attacks land, forcing some to run before tearing others to shreds." tt2043757,xaYlkjfpdG0,"Cole jumps ship to get away from the pursuing shark, leaving the others for dead." tt2043757,cl1Yl57gCW4,Kate uses the only remaining boat as a bomb to finish off the 2-headed shark. tt2043757,qq3C3psItOo,"When they get trapped inside a flooded church, the rest of the students are eaten alive, providing an opportunity for Kate, Kirsten, and Paul to escape." tt2043757,bQ9vlCKo04g,Kate faces her fears and fights the shark head on. Kirsten draws the sharks attention and is devoured. tt2043757,s8BQXJxRw10,"Just when they think they are safe, Kristen and Dana are devoured. Then, left with nowhere to run, Professor Babish and Anne share a kiss before being eaten as well." tt2043757,qFbklFTJlCs,"Cole steals the boat, leaving the other students stranded on the island. However, when it does not go as planned, he is forced into a raft and then devoured by the shark." tt1491044,5MB15iYADy0,Kuklinski reveals the only regret he has is hurting his family. tt1491044,o36MJbiMMH8,Kuklinski and Pronge reconsider their partnership. tt1491044,gQ1o6y8iYXs,Roy pays Richie a visit during Richie's daughter's birthday. tt1491044,9FuvuHFUeoE,Kuklinski confronts Leo on what he is owed. tt1491044,qr6vDBiESB4,"When Richie and his family get in a car accident, Richie loses control." tt1491044,LKXQQmMdiws,Pronge and Kuklinski are given a new job. tt1491044,RJ2waor6V0g,"After Demeo closes the porn lab, he gives Kuklinski a new line of work -- if he is up for the job." tt1491044,5HbKxlvyiLk,Richie and Deb get into a fight because she thinks he does not care anymore. tt1491044,8APhdryZ6m4,Kuklinski goes to Pronge with a business proposition. tt1491044,4LY3sXlBbk4,"Kuklinski is ordered to kill Marty, but he asks to pray first." tt1491044,oX3g90bTn1g,Richard Kuklinski starts to lead a double life of crime and being a family man. tt1341341,mkEMQ9OK088,Zoe explains that she has grown up and can't be with Sam anymore. tt1341341,80xURylcWpI,Marshall explodes at Sam for using him and leaves. tt1341341,lLxVEs_X_9k,Teddy gives the heartbroken Sam some friendly advice. tt1341341,QtSzDCV1CHI,"Sam tells Marshall that he needs his help because he's at war with Whit, but Marshall feels betrayed by him." tt1341341,nqIhzUUH6Ts,"Sam spends all night talking at Zoe's door about marrying him, but she only catches the end of his speech." tt1341341,FCv0BgoGj0g,Sam keeps trying to win Zoe back and they sleep together. tt1341341,vI48ZXLGoBk,Sam enjoys breakfast with the colorful characters at the estate. tt1341341,SRoBDfwS2xU,Sam kisses Zoe the day before her wedding and declares his love for her. tt1341341,KOAAIBdD3bM,Teddy makes a drunken toast at the wedding dinner and then Whit makes a very narcissistic one. tt1341341,9dSVd8ISfl8,"Sam crashes Zoe's wedding weekend, making her very nervous." tt0093223,6mJk2i7Lfjs,"Margaret shoots Mike, and as he continues to degrade her, she shoots him until he dies." tt0093223,gPv4C6gIdOo,Margaret puts the heat on Mike as soon as he realizes she knows the truth. tt0093223,sp2FvfOi928,Margaret secretly listens in as Mike and the other men talk about the con they pulled on her and the money they made. tt0093223,WSBO1fuXCCE,"Margaret tries to escape the hotel room past the cop, but he doesn't budge and the resulting struggle results in his death." tt0093223,PW-I6rrNzyM,"When Mike realizes the briefcase full of mob money is gone, Margaret offers to give him the missing $80,000." tt0093223,5FHPI2NlOm8,Mike tells Margaret what he wants during an intimate moment together on an evening stroll. tt0093223,rC9LfNF_CW8,"Margaret convinces Mike to let her in on the sting, and in the process, they stumble upon a briefcase full of bills." tt0093223,N27gumJNHP0,Mike shows Margaret a con at Western Union when he manipulates a marine. tt0093223,GLmTfdkWZp4,Margaret calls out the con men and doesn't buy their gag during a crooked game of cards. tt0093223,FTJcaJziQ1I,"When Margaret's instinct on a poker player proves wrong, Mike loses the hand, but she offers up the $6,000." tt0093223,ftNK4JPSoto,"Mike teaches Margaret about ""tells"" and enlists her help during a poker game." tt2292182,yUrcH6c-FX4,Reagan gets her own revenge on Tiburon. tt2292182,VScQtueKnXM,"In their final battle with the great white shark, Cal sacrifices himself for Reagan, who ultimately wins Tiburon's game." tt2292182,UdRma1qSMGo,"Elena tries to kill Reagan, but Reagan outwits her." tt2292182,SVYv9SJAr2M,"In order to get a boat, Frankie leads the group in an attack on the shark." tt2292182,Y9_k4iGJMco,"When Holt steps on a bomb in a minefield, Cal helps him while the rest of the group escapes." tt2292182,olj-IIjnxLY,"Francine tries to help Cal by distracting the shark, but she doesn't make it." tt2292182,f-mlUVx01MA,"Layla sacrifices herself for the good of the group, setting off an explosion in the mouth of the shark." tt2292182,9uRPfjWwOL0,"The group battles their next shark, the hammerhead." tt2292182,6Dg8xn6Rdwo,Tiburon teaches his hostages a lesson by pushing Roger into a pool of shark pups when he questions authority. tt2292182,HycJFYsUxaU,Tiburon forces his hostage to play a game that ends in a fatal shark attack. tt1927093,yZWEB9JWLHM,"Fred, with the help of Bertha and Talia, trick Kevin and his friends into thinking that he is actually a vampire, not Mr. Devlin." tt1927093,vkX9jHBsmwM,"In a dream, Fred and his imaginary Dad fight Mr. Devlin and Kevin in an all out WWE boxing match." tt1927093,4pHgq_uwXjs,Fred envisions himself taking out Mr. Devlin publicly at the piano recital. tt1927093,BoGZH9krgjE,"While trying to gather objects to expose Mr. Devlin, Fred runs into Derf and a little bit of trouble." tt1927093,vMwfVOf1-vM,Fred's Dad helps Fred make a plan to expose Devlin. tt1927093,w6USFL0JYAU,Fred believes Mr. Devlin is probably a vampire. tt1927093,-78FgmNwyD4,Fred finds out that Talia is actually Kevin's sister. tt1927093,7MJd-RSHTqs,"Fred's Mom tells Fred that he has to go to a party at his archnemesis' house. Fortunately, he gets a pep talk from his imaginary dad." tt1927093,JegIRfX4LJQ,"Fred is asked by his new music teacher Mr. Devlin to play his piano piece in front of the class, but Fred duels his archnemsis Kevin in his imagination." tt1927093,hEH49mSRWGw,"After seeing Talia disappear suddenly, Fred thinks that she is a ghost." tt2236160,RmSIKuobH10,Robin is possessed when she kills Nia and jumps off a cliff. tt2236160,PbndU1PQlPk,Robin enters the church and asks Ethan for forgiveness. tt2236160,jS7XOEttewM,Robin and Nia find an article about the forest that explains the symptoms they've been experiencing. tt2236160,NmsLAaKjKEE,Chris and Amelia are killed by a possessed Nia in the haunted church. tt2236160,9hXnvqJ7uxQ,Robin tells Nia the story of Ethan's suicide in the forest. tt2236160,no5XxM0OY4o,Nia and Robin are approached by a mysterious force in the middle of the haunted forest. tt2236160,vIrRt0vaySY,Robin panics when she finds Nia passed out and the rest of her friends missing. tt2236160,Xe8LJ4g7Dpg,Chris discovers Robin and Nia passed out and decides to call for help. tt2236160,rXyyr3kSB3s,Ben gets lost looking for his friends in a game of Nightlight. tt2236160,oKCF_TzQ6Pk,Chris proves that some unknown thing in the forest controls lights. tt2490326,--vFXH3mH3A,Wade lights the Cootie Kids on fire and saves the day. tt2490326,uvAd-GbYBVw,"In Danville, the group discovers that the virus spread into a pandemic and Doug finds an infected nugget to create an antidote." tt2490326,G6EzUGdelYg,Clint kills Patriot to save everyone in the car. tt2490326,SQ9JOrG0mUM,The teachers battle the Cootie Kids and Wade sacrifices himself so the others can get away. tt2490326,x6jUAU8hoBk,Wade prepares the team to battle the Cootie Kids. tt2490326,_oFhIKlIBr0,"Wade kills a Cootie Kid, Doug examines the corpse and Rick learns that this zombie issue is real and it's widespread." tt2490326,ZMZxDJb5V8o,Clint is chosen to go through the air duct to get the keys and Lucy decides to go with him. tt2490326,jR3JlEXdBIo,"Vice Principal Simms gets killed when he tries to stop the children from eating a teacher, but Wade gets away safely when he makes a run for it." tt2490326,y5cSt5uqt3E,"The teachers pick up Calvin, who is not infected, and hide from the other kids." tt2490326,c7AescgZzEg,On Clint's first day as a substitute teacher at his old elementary school he meets his fellow coworkers. tt0093300,i-VM7_DJlkQ,"Ellen and Carla notice a shark in the water, where Carla's daughter Thea is playing." tt0093300,wrkeOayCv6E,"While Michael blasts the shark with electical impulses that drive it mad, Ellen heads straight for the beast." tt0093300,5kgYUoeOPj4,"Michael, Jake and Hoagie use a plane to search for Michael's mother, Elllen." tt0093300,UbrDTO9asW4,"While Michael is underwater doing research, the shark appears and chases him through a sunken ship." tt0093300,Fl9Cexw3ACk,"When Michael, Jake and their crew are attacked by a great white, Michael's mother, Ellen, seems to be able to sense the attack." tt0093300,sf2eXsM6Kik,"Jake along with Michael and his crew, attempt to put a tracking device on the shark." tt0093300,8CCr6_Xqt1k,Hoagie fixes the boat as Jake makes them wait for the shark to reappear so he can place an explosive in its mouth. tt0093300,MG_ZMkTJ1dA,"Sean Brody, a police deputy, attempts to clear a log from a buoy only to get attacked by a large great white shark." tt0085750,QQsH99EAwoE,Mike and Kay are attacked by the shark while they attempt to repair the underwater tunnel that has trapped a bunch of visitors. tt0085750,bLi52djkRTs,"After a corpse appears in the park's water Mike and Kay inspect it and realize not only is it body of a missing worker, but it was killed by a bigger shark then the one they captured." tt0085750,a4Td_W5dc1w,"After a huge killer shark gets inside the marine park, visitors in the new underwater tunnel section are advised to calmly exit." tt0085750,_CWSn-Zdi5w,"While attempting to trap the shark in the filtration pipe, FitzRoyce gets eaten whole." tt0085750,arsAllZIa1Y,The shark smashes into the control room and eats one of the technicians while Mike and Kay try to swim away. tt0085750,Gw8uD1xHhBc,A SeaWorld mechanic is attacked and killed by a shark. tt0085750,IMzMccLiMIc,The shark starts to cause mass chaos by attacking any and everything in the water at the marine park. tt0085750,lRAsSTNZD8g,"Mike, Kay, and Philip along with other SeaWorld employees attempt to capture the great white shark that made its way into their water." tt0085750,Cdgq2SQcKcQ,Mike and Kay are attacked by a great white only to be rescued by Kay's trained dolphins. tt0077766,ciL0tWi56tM,"A helicopter arrives to help tow the teenagers to the shore, but right as they rig up a rope line, the helicopter is attacked by the shark and dragged underwater." tt0077766,pfVP6HBoflg,Brody gets the killer shark to bite an underwater power cable and electrocute itself. tt0077766,qy_ZclSCUwA,The shark attacks a group of teenagers who are all sailing together in seperate boats. tt0077766,rqWz0oKJQ5E,"While underwater, a diver has a close encounter with a great white, only to get hurt by rushing to the surface too fast." tt0077766,a6CsW4dCk_8,Teenagers Eddie and Tina encounter the shark while out sailing. tt0077766,N92pfxjHXkg,Police Chief Martin Brody finds a burned corpse in the water. tt0077766,cVPTibn-ewI,"During a popular day at the beach, Body spots a large underwater shadow, he believes it's a shark and orders everyone out of the water." tt0077766,yr923CbtKsU,A female water skier and her friend are killed when they are attacked by a large great white shark. tt0077766,D3PcFuLPhG4,"After getting a blurred photo of a shark, Brody tries to convince the town council that they have a real problem on their hands." tt2080374,2fweZsmH4Tw,Woz demands that Steve acknowledge the importance of the Apple II team during the presentation of the iMac. tt2080374,1To7zCTHAv4,"After Lisa reveals that she read the Time Magazine piece about her paternity, Steve tells her the truth about the Lisa computer." tt2080374,JhNznuSZ1n8,Joanna demands Steve fix his relationship with his daughter. tt2080374,moeAot5_Q_U,Steve's dramatic exit from Apple leads to a heated confrontation with Scully moments before the NeXt presentation. tt2080374,ya0uliWzUTI,"Facing an ethical dilemma over the voice demo, Steve explains to Joanna the importance of the Macintosh saying, ""Hello.""" tt2080374,mLKA_BX6xKo,Steve threatens Andy with humiliation if he can't find a solution for the voice demo. tt2080374,AeZQ4Oi1wu8,Woz confronts Steve over their changing relationship and the impending failure of the NeXT Computer. tt2080374,C6MgTAuqpXc,Steve explains to Lisa the meaning of coincidence. tt2080374,XS-R1raNESI,An irritated Steve demands solutions after the Macintosh's voice demo fails. tt2080374,-b-EFcA7ing,Joanna tries to quell Steve's high expectations for the Mac. tt0061747,DHL2KTvQ_eQ,Cooper agrees to continue serving as Marshal for Judge Fenton. tt0061747,1yMhC0o3y_0,Bliss cuts Cooper down from a tree and brings him back to life. tt0061747,BocJIlRPVvU,Duffy addresses the crowd at his hanging about the evils of alcohol. tt0061747,8-0dpreHXFM,Miller tries to convince Cooper to let him go. tt0061747,zDQueu9EF6M,Miller attacks Cooper in an attempt to break free. tt0061747,2QRFeV4rPZE,Cooper questions Judge Fenton about his decision to hang some innocent men. tt0061747,rqS6CaouXwE,"While the town watches the hanging, Cooper is ambushed by three men." tt0061747,-pEKUJ9MADs,Bliss shoots The Prophet when he makes a run for it. tt0061747,ZgbGOBeeaD8,Judge Fenton offers the job of marshal to Cooper. tt0061747,frIi1u8PAlc,Rachel tells Cooper about the men who raped her. tt0061747,eB46dRO0YZ8,Cooper tracks Reno down in a bar and kills him. tt0061747,vl5LaKMkhYw,Cooper gets hung by a posse despite proclaiming his innocence. tt0468492,uk2ovL8llCw,Park Gang-Du attempts to save his daughter from the monster. tt0468492,djquKsYMo74,Park Hyun-seo tries to escape from the monster using a rope made from the clothes of its victims. tt0468492,jQTtJ71PkKE,Hyun-seo prepares her escape from the sewer just as the monster returns. tt0468492,ZGha6pmwigQ,"As Park Gang-Du races to save his daughter, the government uses Agent Yellow to incapacitate the monster." tt0468492,_GksGDm__8U,Park Gang-Du takes a hostage and threatens to inject her with the virus. tt0468492,fXGEXg5q5HM,Park Gang-Du watches as his father makes a last stand against the monster. tt0468492,SN9LQ05sQEU,The Park family finally kills the monster with a flaming arrow. tt0468492,4V7dPXjZJC0,Park Gang-Du and his family cry over the death of his daughter. tt0468492,LkkVEYz6y20,Park Gang-Du helps his family escape from the hospital. tt0468492,j4mo1ywVR_M,A doctor asks his assistant to pour toxins down the drain. tt0468492,lGcW9Egfm2M,Park Gang-Du tries to fight back when a strange amphibious creature runs amok. tt0079261,r1fp_NVGr6Q,"Soldiers sing, ""The Flesh Failures,"" as they are marched onboard the transport plane to deploy." tt0079261,kzueHOeJk40,The cast sings about the difference between black boys and white boys. tt0079261,UTKrefMHcJQ,"The cast sings ""Let the Sunshine In"" both in celebration and in protest, as they march on Washington." tt0079261,q1D9i-d1m4Y,"Hippies in the park sing and dance, ""Ain't Got No,"" about all the stuff they don't have, including all the bad stuff." tt0079261,DOrvXyOMjhQ,"Claude laments, ""Where Do I Go,"" as he walks down the crowded Manhattan streets." tt0079261,LepvQqFvoWc,Claude is welcomed by the hippies with a song about him. tt0079261,t3XewsVnx9E,"Sheila sings ""Good Morning Starshine"" while she drives with the others in a convertible." tt0079261,BTZArvbmG_o,"Claude walks through the park watching the hippies dance and sing ""Aquarius.""" tt0079261,U45CzgrLE9s,"When Hud leaves his fiancee and son, Hud's Fiancee sings, ""Easy to Be Hard.""" tt0079261,5P2p_4ftJjE,"Hippies perform the song ""Hair"" in the park and in a prison." tt0988045,73F6wZrDxao,"After Watson stops Anesidora from blowing up Buckingham Palace, Holmes kills his brother in order to save Watson." tt0988045,6QEYgLKNZd0,Thorpe sends his robot off to blow up Buckingham Palace and he offers Watson a chance to work together. tt0988045,fI5qOb-otrs,Holmes saves Watson and they both set out to stop Thorpe. tt0988045,cKJ6Jyo_9to,Thorpe explains his plan to get revenge on Lestrade and Holmes is shot when he tries to intervene. tt0988045,SxMetYMwzUU,Holmes and Watson sneak into a mansion and discover Holmes' brother is the villain they've been hunting. tt0988045,RqNXT7abtQQ,Grolton is attacked by a dinosaur and thrown from an exploding building while Holmes and Watson wait for him outside. tt0988045,AjXsoJGi1fo,"Holmes and Watson come across a terrifying, unidentified beast, giving Watson a reason to believe the newspaper stories are true." tt0988045,07k4FaH9dTc,Anesidora seeks out Watson to secure medications for her uncle. tt0988045,crX0CMJ_aIQ,"John tries to buy a prostitute, but gets a surprising interaction with a dinosaur instead." tt0988045,SiOImcd9L2c,Holmes quickly solves the mystery of Watson's autopsy in the interest of saving time. tt1094162,x94XSdW6eEE,"Lee, Hilary, and Tammy survive and The Hunter reveals himself to be human." tt1094162,ZfKsbOpsea4,Half of the group is killed by The Hunter and Lee kills The Alien. tt1094162,8YaSWlYa9u4,"The Hunter uses invisibility and super strength to fight off the group, and The Alien ends up killing Styles and Valentine." tt1094162,aCx3jrZJjPM,Figgus jokes around on the spaceship while Freckles tries to come up with a survival plan. tt1094162,btug5ZMTWuk,The group discovers that Valentine is alive and Tammy's mother is dead. tt1094162,xiXiMxTbu5k,Garrison is lost in the tunnel and leaves one last message for his wife before he's killed by The Alien. tt1094162,_8dcjZCqilE,The group seeks help from a hostile old friend named Valentine. tt1094162,VaQo1PTIzXs,Valentine takes on The Hunter alone while the others escape. tt1094162,c_lWrv5E18A,"The group tries to hide in the tunnels, but Javier gets eaten by The Alien." tt1094162,1OXNsIjuAnk,Joel is killed by The Alien and Lee joins Tammy on her search for her mother. tt1586261,lq2V4EnoY68,"When Samantha goes missing, Thomas finds her disoriented in the attic." tt1586261,rFBErC8napg,"Dr. Lauren tells Samantha and Thomas about the origins of ""maron"" and the ghost's obsession with Samantha." tt1586261,DLUx3hDY2wI,Ellen attempts suicide while possessed by the ghost. tt1586261,0KtJi_MLKqY,Ellen tells Thomas about how the ghost followed them to their hotel room and attacked Samantha in her bed. tt1586261,6CO4uEdr8p4,Something sets off the traps that Thomas set for the ghost. tt1586261,5BBhXUaqDZQ,"After odd noises wake up everyone in the house, Thomas and his family find mysterious footprints on the ceiling that lead to a ghost encounter." tt1586261,wQlyX4xKYeU,Thomas follows footprints on his ceiling to their place of origin - his father's ashes. tt1586261,_ZpONi1-f24,"Thomas is alone in an empty house when a familiar voice leads him to a piece of paper labeled ""maron""." tt1586261,u34dzFKx4Rg,A ghostly presence moves things around while the house residents sleep. tt1586261,P8Cv5p0cgG0,Ellen is completely unaware of what she's doing when she becomes possessed by a ghost. tt2195548,itk5hcD2sFs,Alvin and Lance let their inhibitions go and have a good time together. tt2195548,u5qpNA4ZIFA,Lance admits that he is also dealing with a very serious dilemma. tt2195548,n8r0JS4Z9tI,Lance tries to cheer up the heartbroken Alvin. tt2195548,S7yCsHLwg30,Alvin injures himself and admits that he feels like he wants to die sometimes. tt2195548,tSYhESdFisA,Lance goes on strike because he doesn't like how Alvin is treating him. tt2195548,xWZtwOffj1o,Alvin is very upset when he realizes that Lance read the letter where he got dumped. tt2195548,ACr98cpjXnE,Lance recounts how he lost his chances for sex on his trip to town. tt2195548,6Knf2lu45Yw,Alvin meets a woman who is still devastated by the loss of her home in the fire. tt2195548,5ZxVaJcxkMo,"Alvin tells Lance why he prefers being alone, but Lance is very horny." tt2195548,YVmZ5gRR_zc,The guys meet an old dump truck driver on the road who shares a stiff drink with them. tt1536410,Z9QsVa8r5Fk,"Anna and Sam stop Tearjerk Jack, but at a high cost." tt1536410,8skrIns6h6I,"Anna's inability to recognize faces proves disasterous with Sam, and even worse with Tearjerk Jack." tt1536410,KuebMqpuoEg,Dr. Langenkamp guides Anna through hyponotic meditation to find the killer's identity. tt1536410,uvUaNcx7mlg,Anna connects with Sam. tt1536410,LFB_SKdGuLk,"Anna's therapy to recognize faces improves, but it's still not enough to help her identify Tearjerk Jack." tt1536410,eAvVsXliFxo,"Anna Marchant tells Francine and Nina about how she's learning to recognize people, though her husband is still a challenge." tt1536410,rXDhJmUGdiM,Anna breaks down when she's unable to even remember what she looks like. tt1536410,Td6UanhjhVs,"Convinced she's being stalked by Tearjerk Jack, Anna races to escape from the subway train." tt1536410,OFcprqLHg-M,"Sam tries to get Anna to reveal information about the killer, but her condition makes that impossible." tt1536410,9pcfdiFrBEQ,"Anna visits Dr. Langenkamp, who gives her some deeper, albeit troubling, insight into her condition." tt1536410,s1pDel1G9Eg,"Anna discovers, to her horror, that she can no longer differentiate between faces." tt1536410,kePIiYeH2Ko,Anna Marchant's night becomes a nightmare when she takes the wrong way home. tt1524575,TaYnzfexuFg,Cardinal Bruun pushes the demon inside Angela to a volatile point. tt1524575,ybq8gINMdBs,"Vicar Imani shows Father Lozano the Vatican archives, and the news of the Antichrist's work on Earth while Father Lozano has been recovering." tt1524575,eIAiu9_4JDs,Angela is revealed to be the antichrist and her first murder will be Cardinal Bruun. tt1524575,LiI1LdPRcQM,Cardinal Bruun tests Angela to see if there's a demon inside her. tt1524575,dpg077fR9Mc,Angela commands her cohabitants to do insane and violent things until Father Lozano finally stops her. tt1524575,jAwlK8vL8OQ,Cardinal Bruun prepares for the exorcism. tt1524575,OIFEMSfu4pk,"After questioning Angela, Det. Simmons stabs his own eyes out." tt1524575,yCUaXGVdi_k,Angela makes Dr. Richards uncomfortable in her therapy session. tt1524575,ooiimi7zkoE,"Father Lozano prays over Angela as they take her off life support, only for her to come back to life." tt1524575,IwA5uSA5ZBI,Something overcomes Angela and causes her to create a car accident that leaves her in a coma. tt3605418,iQoNLmqqMQA,The girls leave Evan buried in the ground watching a disturbing sex video of himself posted on Facebook. tt3605418,zCttJu0ZFpw,"The girls blackmail Evan into having sex with Bell, and when he escapes, Genesis stabs his surgery scar until he passes out." tt3605418,52sXSYdNPsg,"Evan tries to escape while playing hide and seek, but he doesn't make it." tt3605418,2Qx3hHEoqMs,The girls tell Evan that his punishment is death and Evan freaks out. tt3605418,7TY3DFSCrOc,The girls force Evan to play their own made-up game designed for pedophiles. tt3605418,FvUs8613_TM,"While Evan is tied to the bed, Bell punishes him for things her own father actually did to her." tt3605418,VvGhOtoy5iE,Evan tries to bargain his way out of a statutory rape situation and Vivian catches him with Genesis. tt3605418,l-aUy9_L22o,Genesis and Bell disobey when Evan asks them to leave. tt3605418,Le-bfbn43WE,Genesis and Bell come to Evan's door asking for help. tt3605418,hK2Em4D7fhU,"Bell tries to seduce Evan, but they are interrupted when the Uber car arrives." tt2473682,koWVPnRRGlA,Hector escapes the demonic Jesse through a strange portal that takes him into the house of Katie and Micah in 2006. tt2473682,zvdLSI3-j-A,"Marisol and Hector explore the witch's house, but things go from bad to worse." tt2473682,Y4fkp_IINqo,Jesse's grandmother attempts to exorcise the evil spirit that has taken him over. tt2473682,v7kRQXWpSdE,"Jesse gets trapped in Anna's basement and comes face to face with evil, including a young Katie and Kristi." tt2473682,C42zpLSVjCY,A possessed Oscar appears to Jesse and warns him about the mark on his arm. tt2473682,gw4Sj4hJy4s,Jesse's lover discovers a hidden trapdoor in Anna's apartment while waiting for Jesse. tt2473682,OhncteZCJWE,Jesse sees something in his eye and fears that he is possessed by something evil. tt2473682,4nEsHsxsjew,Jesse is astonished to discover that he can defy physical laws. tt2473682,63KhwUcX8dE,"When Jesse is jumped by two gang members, he exhibits super strength." tt2473682,9Fu4muqAsBM,Jesse realizes that his childhood toy may be possessed. tt2109184,CLfY0oLo7o0,Alex wanders through Katie's house trying to save her father from the witches. tt2109184,Gko7aal3o7U,"Alex finds Ben's body in the closet, along with something else." tt2109184,rXpCjDg0RT0,"While Katie tries to convince Wyatt to come out of the closet, Alex is being slowly killed by the evil presence." tt2109184,qBdgJs4tf60,"Wyatt has a conversation with an evil spirit in the middle of the night, while another presence creeps up behind him." tt2109184,CtARWCZGiag,A possessed Katie takes out the unlucky Ben. tt2109184,b56RExAdg7s,Alex investigates the opening garage door and is trapped by an evil presence. tt2109184,OW1bbk4wVqo,Alex sees Robbie awake at night conversing with a strange presence. tt2109184,CYXBxG1COzQ,Wyatt sneaks out of bed in the middle of the night and levitates his sister with evil powers. tt2109184,WOcSwhJCnr8,Wyatt receives an unwanted visitor as he takes a bubble bath. tt2109184,W1U_sJhDIXI,Alex investigates a strange trail of toys into Wyatt's room and then is almost crushed by a falling chandelier. tt2205697,sfh3DVzcGAI,When Rusty sees Glen push Kate he punches him in the face. tt2205697,lTyNEv7TXmk,"After three years of waiting, Erica comes to the home for Thanksgiving dinner." tt2205697,_s2FEVQePMg,Lou shares the tragic news of his mother's passing with Sam. tt2205697,pfk_iBQzECI,Lou and Sam share their first kiss. tt2205697,iekeU-w3im0,Tricia helps Bill choose a profile picture for his dating site profile. tt2205697,Ipf6Zg3UFTk,Sam opens up about her parent's divorce to Lou. tt2205697,SCp3HsyGqeo,"Erica runs into her ex-husband, Bill, while Christmas shopping." tt2205697,SAMMLF75HmM,Lou tries to woo Sam at a bar by taking her jacket. tt2205697,LP22LQEq-tY,"While getting coffee with Lou, Sam realize that they may have a connection which scares her." tt2205697,Xq_a8AYpKYA,Sam meets Lou at a bar and they both have different intentions. tt2205697,yF0HUzSCd84,"Erica confronts her ex husband Bill about her non-existent relationship with her daughter, Sam." tt2205697,6ljUgAVSu0M,"Samantha gives her brother, Rusty some sisterly advice." tt2708254,H8nX1mhYFk8,Tahime and J. Thomas Gaines match each other in the final round of the tournament. tt2708254,6MtwwUfJ8IE,Eugene and Searcy try to give Tahime some insider tips regarding his upcoming tournament. tt2708254,V2M1t7HAj1A,Eugene and Tahime go on air in a radio show to talk about their past tournament. tt2708254,cx2YdJwQaeU,Eugene confides in his daughter his doubts about the Chess Club. tt2708254,BDYgCu8m5dQ,"Clifton, Tahime and Peanut go out for a drop off and things go awry." tt2708254,5LXDBdoZfy4,"When Tahime wants to kill his mother's boyfriend, Eugene advises him to think about the consquences by using his own life as an example." tt2708254,3bcNygIQfMU,Eugene buys a run down house to become a home for the Chess Club. tt2708254,OqnFSU27fuE,"Upon learning that Eugene is an ex-convict, Ms. King has to fire him and cancel Chess Club." tt2708254,m4qQ9IIo23c,Eugene teaches his students the basics of Chess. tt2708254,N7urptsSqNY,Eugene challenges Peanut to a game of cards. tt2708254,f4D3R4tJNMo,Clifton stands up to Eugene in detention. tt2226519,keymL9b6W4g,Hayley and Enzo's twisted relationship comes to a bone-chilling conclusion. tt2226519,JDnjiQCk2JQ,"Carter confronts Hayley about her infidelity, becoming increasingly violent." tt2226519,sdc-LNkYA78,"Annie and Enzo love the new music video, but Hayley is haunted by it." tt2226519,TFGYMpZUv4Q,"Enzo shows Hayley some of his early films, and introduces her to heavy bondage." tt2226519,D_1bty7dttk,"Enzo plays Hayley a mix of her voice distorted and ambient, and one thing leads to another." tt2226519,q1V_8cCX5Vg,Tensions rise in Hayley's house over a present from an obsessive fan who may be closer than anyone thinks. tt2226519,Ern5-LGeU50,"Hayley returns home to her loving husband Carter, but he may not be the subject of her fantasies." tt2226519,gx4ZNttML0M,"Facing writer's block, Hayley turns to Enzo to help her in a particularly decadent way." tt2226519,hh7_pDbACts,Enzo ravishes Hayley in the forest. tt2226519,yYhuz0q21_4,Enzo helps Hayley work off some stress. tt2226519,EFhZ72P48bc,Hayley runs into a stalker fan who doesn't think much of her new look. tt0781008,AFJ_QnfENd4,Stifler accidentally ruins Elyse's band routine by slipping ipecac in their drinks. tt0781008,zSd5uTUpuAY,"Matt and Elyse finally kiss, but the moment ends prematurely." tt0781008,gijYgnVD9vo,Elyse rips Stifler for being such a douchebag. tt0781008,rWe5nzPq1JA,Brandon makes Stifler drink spit. tt0781008,nlH_5ejw7Gs,"Stifler plays his triangle during his duel, but then brings out the big guns." tt0781008,oSc-5smBhRQ,Stifler learns to play the triangle and then challenges Brandon to a band camp duel. tt0781008,imcPspMbcL0,Matt Stifler plays a horrible prank on the band nerds during a performance. tt1602472,rlXTyrGsiHQ,Mingus considers breaking up with Marion. tt1602472,OjGiHy7VIhI,"Marion attempts to get her soul contract back from Vincent Gallo, who bought it at her art show." tt1602472,MDsC2TNfF3g,Marion comes home after a rough night only to find Mingus waiting up for her. tt1602472,FrH_IKiZTOc,Marion listens to Mingus's radio show. tt1602472,8tfmRZV1vnI,"When Ron, a caring neighbor, stops by the apartment, Mingus finds out that Marion has been telling people she has a brain tumor." tt1602472,TPdR8MCjRGQ,Mingus runs into a friend while out to eat with Marion and her family. tt1602472,19moJ8AP49o,"When a neighbor threatens to get her evicted, Marion decides to lie to keep that from happening." tt1602472,ZrCtTXl-84I,"When Mingus and Marion attempt to have sex, her sister comes home with a friend and the two get it on in the bathroom." tt1602472,0GsFiFVwfBE,Mingus and Marion have a very interesting dinner with her family. tt1602472,_ilh4ZR3aUo,Mingus meets Marion's family. tt1350512,QA34Dlela4Y,"A TR-4 breaks in to a government science facility, killing all in his way." tt1350512,u1CmSdzgYiY,"A TR-4 completely destroys a van with nothing but a pole. Then, a group of the robots go on a murderous rampage." tt1350512,5cxSYatteJ0,"When the TR-4s begin attacking Earth, a team of soldiers takes on the fight in space." tt1350512,NK_Gt07WU5o,"TR-4 units begin going rogue, killing everybody aboard the spacecraft." tt1350512,BcfTPLZTAog,"When all the TR-4s shut down, they begin feeding power to an even bigger robot. When it kills everyone but Chloe and the Sheriff, Chloe is forced to make a difficult decision." tt1350512,L1bqqCJlCpg,"As they are chased by a TR-4, Kurt flies the spacecraft into the atmosphere. Then, Chloe shoots down a pack of attacking ships." tt1350512,d-Sk3AvyR24,"Chloe hotwires a van and rescues the Sheriff and his group, but not before a TR-4 kills one of their own." tt1350512,2QB-g-9tuEk,"When a TR-4 starts annihilating Bronson on the back of a truck, Pallas throws herself at the robot to knock him off the vehicle." tt1350512,ZeMzb1DXoFM,"When Kurt tries to get his spacecraft in the air, a TR-4 catches them and brings the ship crashing back to Earth." tt1350512,ztEcn3h90g0,A TR-4 stalks the Sheriff and a group of panicking civilians. tt1640571,gFsyI1eps-U,"After James rescues Amy, she tries to revive Hayden." tt1640571,_41uCWOabEU,Hayden and Amy must avoid being electrocuted to get off the ship alive. tt1640571,rgFfioIzPgs,Hayden sets Amy up with what she needs to survive while James prepares to rescue her. tt1640571,vssoBfErh5w,"James loses communication with the Titanic II when it explodes. Meanwhile, the helicopter refueling doesn't go as planned when a giant wave takes out the refueling plane." tt1640571,gvAl9GR1kDs,"Upon trying to escape, Amy's friend Kelly gets stuck in a heavy door and dies." tt1640571,Y9ajaBIbzYI,"When the Titanic II is hit by an iceberg, the passengers go ballistic and the crew tries to get things under control." tt1640571,_jkSWElBWf0,"A larger part of the glacier breaks, sending a massive wave and iceberg towards the Titanic II." tt1640571,Q1XwIK9Ykvs,The owner of Titanic II argues with James over the reliability of the ship in the impending natural disaster. tt1640571,OAMxHdzk0EU,"When the glacier collapses under their feet, Kim and James make a narrow escape with the help of the helicopter pilot." tt1640571,C1QL0e4B7N8,Kim meets James and explains the severe consequences of the glacier collapse. tt1640548,auMWOnofBSI,Dave talks to his lawyers Bill and Joan. tt1640548,_6iwpd8yeQc,"Officer Brown records a confession for Kyle, but it is not the confession Kyle wants." tt1640548,ayplsqakP80,"Officer Brown gets in a car accident and brutally beats the man who hits his car, thus causing the media to lash out against him." tt1640548,P94nUxbIgs0,Dave tells his daughters Helen and Margaret that all the rumors they are hearing about him are true. tt1640548,1kAMrmDG-68,"Dave Brown tells homeless man, General Terry, to call lawyer, Linda Fentress and sue the LAPD." tt1640548,hK9v_6lK_lw,Investigator Kyle Timkins talks to Officer Dave about what happened the night of the shooting. tt1640548,Y0SFyVdPfO8,Cop Brown investigated after a suspicious shooting. tt1640548,aGActTYN93E,Dave confronts Linda regarding her true identity. tt1640548,Yd_u2G_ucCU,Cop Dave Brown talks to Assistant District Attorney Joan Confrey about his options after the beating scandal. tt1640548,CHz--mmu5RA,Dave meets up with an old friend Hartshorn to talk about the response to the beating. tt1640548,RPS05ujl9FM,Dave meets Sarah at a bar and she asks him about his moniker. tt0480271,nW-iQzgmyeI,"When Taj is put on the spot to recite some English poetry, he uses lyrics from various rock 'n roll songs to make up his own poem." tt0480271,WrCCnZaSlKE,Taj's father admits that the stories about his youth were lies. tt0480271,0gAMfKzCJsc,Taj encourages his students to throw their old textbooks out of the classroom window. tt0480271,snRRa2Z3DFo,"As Taj and Charlotte share a tender moment, he is shot in the crotch by a barrage of paint balls." tt0480271,HcadJjFOhcg,Taj's membership at the Fox & Hounds house is cruelly rejected by Pip. tt0480271,jKa9O33GXLI,Taj defeats Pip in a frenzied sword fight. tt0480271,WPrJDDvstbM,Taj and Pip's fencing competition turns into a real sword fight. tt0480271,kRwFOUeh-Ro,"After Pip insults Taj and his students, Taj retorts with some childish name-calling." tt0480271,4GUliPk7fK0,Taj inspires his students with a new residence hall and a new attitude. tt0480271,0WOnDEx4QLc,Charlotte shows Taj a trick or two during their fencing challenge. tt0480271,AiZf4-eJQUA,"Taj meets Seamus, Gethin, and Simon for the first time." tt0974959,loVYzYPJBTE,Beta House and the Geek House go head to head in a beer chugging competition. tt0480271,fw5N8DF4js8,Taj meets the well-endowed Sadie and tries to cheer up the students under his charge. tt0974959,fk0O_cdBbMg,Beta House beats Geek House in a Russian roulette game loaded with horse semen. tt0974959,7AkMzkl0r4E,Bobby chases after a greased pig against a parkour runner from Geek House. tt0974959,3wsMRsZ2Q3I,The frats send their champions to fight in a lightsaber duel at the pool. tt0974959,muVopS3Yn7s,"Dwight advises Erik to enjoy the women on campus, but it's not as easy as it seems." tt0974959,XcE9IUjMtOE,"The boys meet with their attorney, Mr. Levenstein, in jail and he gives them valuable advice." tt0974959,qtKtxLmxl24,Dwight shows Erik around the frat house and he likes what he sees. tt0974959,7yVV04Hi1Ms,Dwight describes the rival fraternity run by total geeks. tt1748179,QDurduePMWE,"Tom Buckley has one last confrontation with Simon Silver, revealing true psychic powers." tt1748179,Q9-NzGEY90w,"While Sally Owen and Ben investigate Simon Silver's potential psychic fraud, Tom Buckley deals with the consequences of getting too close to the truth." tt1748179,6S__xAKQcF4,Dr. Shackleton records his psychic experiments on Simon Silver tt1748179,PkLE7uHqRt4,"As Tom Buckley's investigation of Simon Silver continues, his mental state continues to deteriorate." tt1748179,Oe_sEQkEIZw,"Tom Buckley questions Leonard Palladino about Simon Silver, but he doesn't get too far." tt1748179,6bNyU9A9LlM,"Tom Buckley attempts to expose Simon Silver as a fraud in the middle of a faith healing, but Silver might not be as much as fraud as expected." tt1748179,i3u7nvpgDTM,Margaret Matheson and her team race to expose fraudulent faith healer Leonard Palladino before he can do more damage. tt1748179,CcLJWUzDSbA,"Paul Shackleton thinks he's stumbled onto a psychic breakthrough, but Margaret Matheson thinks not." tt1748179,aRr8QkQ9Qrw,Tom Buckley reveals the dangers of psychic fraud to Sally Owen. tt1748179,bfn9-AjAJCU,Margaret Matheson reveals her own personal struggle with the unknown. tt1748179,dpIyHx-GsbA,Margaret Matheson lectures about fraud psychics and responds to Sally Owen's challenges of outright disbelief. tt0970866,0t1TFwXKL2E,Jack and Greg get into a fist fight at the birthday party. tt0970866,SqY9GVVUo4w,Jack and Kevin meet Andi Garcia and Greg finally snaps. tt0970866,lyuqs9s8134,Things get really awkward when Greg's introduces his wife to the lovely Andi Garcia. tt0970866,7478n46dKCg,Andi Garcia seduces Greg. tt0970866,6SoBKiO5mlY,Henry doesn't do so well at his evaluation for the Early Human School. tt0970866,Hx3l8vu5L6Q,"Greg confronts the workers at his house, but ends up getting Jack buried in dirt." tt0970866,_Y8RUTZ6CKc,Greg gives Jack an adrenaline shot to counteract the erection he got using the new drug Sustengo. tt0970866,BgvJlZKbqlw,Jack grills Greg on what it takes to be the head of the family. tt0970866,o6V1Ov1GCuQ,"Kevin Rawley, Pam's ex-lover, continues to make Greg feel uncomfortable." tt0970866,7nZ0VyXfpec,"Greg does his best to be the head of the family, but ends up slicing his finger at dinner." tt0068897,j2SPawJewxA,The Marshal and the Magnificent Seven wage a bloody battle against de Toro and his men. tt0068897,qVS1E2L7DYg,The Marshal and the Magnificent Seven kill De Toro and save the town. tt0068897,tTFOv5oFe3E,"The Marshal instructs his posse to choose a woman to help load, feed and care for them during battle." tt0068897,ucBnN5N2fn8,The Marshal offers full pardons to prisoners who are willing to fight in his posse. tt0068897,Wk9-oZ9OGjw,"The seven assault De Toro's hacienda in broad daylight, but Pepe takes his time blowing up the Gatling gun." tt0068897,W9vPRj-c6VQ,The Marshal comes up with an idea to help the women De Toro wants to abduct. tt0068897,nB95pK8TgYw,"Despite their sincere protests, the Marshal shoots Hank and Bob when they wake up." tt0068897,3ynO7Oaj2oY,"Shelly and his friends rob a bank, shoot the Marshal and kidnap Arilla." tt0068897,z-KB47AFQAY,The Marshal has a gunfight at the mission and finds a shocking discovery. tt0068897,KbZQdFPxeXE,"The Marshal shows no sympathy towards Shelly, his latest 18-year-old prisoner." tt0068897,vkFKHF9Fs_s,The Marshal decides to set Shelly free at the last moment. tt0068897,q_y1Qe8dyCw,The Marshal guns down two outlaws and saves Jim's life. tt0805564,1MVR4GmqfHg,Lars kisses Bianca before carrying her into the lake to die. tt0805564,0j9yDnytwPU,The whole town comes out to celebrate Bianca's life as Lars comes to terms with her death. tt0805564,wSdltnqDWV0,Karin finally snaps at Lars when he becomes jealous of Bianca's social engagements. tt0805564,qfwei0pOLVs,Dagmar gets Lars to open up about his discomfort with touching other people. tt0805564,ZfcfpjiFZAQ,"After Kurt upsets Margo by hanging her stuffed bear, Lars revives the bear and cheers her up." tt0805564,IMuAOVTXtLM,"As Lars grieves and lets the past go, he finds comfort and a new beginning with Margo." tt0805564,DKp509HHG0w,"When Bianca is rushed to the hospital after Lars finds her unconscious, Dagmar has some unsettling news about her condition." tt0805564,Pu1vplwgGAY,Lars asks Gus how he first knew he was a man. tt0805564,gHWnmlpmub4,"Lars brings his mannequin girlfriend Bianca to dinner, but Gus and Karin struggle to accept it." tt0805564,Ej_fgugvtRg,"Lars takes Bianca to the doctor who advises regular treatments for her, and Lars eventually accepts it." tt0805564,MB5zQ9X-2tY,"Karin encourages Gus and Lars to talk after dinner, and Gus reluctantly invites Lars to move in." tt0805564,2W9aISYBJXY,"Gus and Karin are speechless when Lars brings his ""girlfriend"" over for dinner." tt0091983,nIuuhtJM_Dw,"At a gas station, while keeping his eye on Audrey and Ray, Charlie gets a whole new wardrobe with the help of the gas station attendant Nelson." tt0091983,D0Rs2n8eCPQ,"When Charlie panics, Audrey re-assures him that she has his missing wallet, and that they should make the most of their last night together." tt0091983,FKPNubrWp0A,Audrey takes Charlie to visit her mama and introduces him as her husband. tt0091983,4nSkJZ3i2-g,Charlie delivers a final blow to Ray after a messy fight in the bathroom. tt0091983,ueNjp9QfQFM,Audrey convinces Charlie to spend the Christmas club money on a motel room so they can make love. tt0091983,vtyIGp8uv8w,Audrey and Charlie get back together on the streets of New York City. tt0091983,23Xxotom7bI,Charlie gets uncomfortable when Ray asks how Audrey is in bed. tt0091983,PsAtoPJeiys,When Audrey's car is confiscated by the police she goes to a used car dealership and buys another one. tt0091983,LHTaiCLZO3s,"Audrey catches Charlie trying to skip out on his restaurant bill, then offers to give him a ride." tt0091983,_mzI1HQ0cYE,Audrey distracts a liquor store owner and steals all the cash from the register. tt0102744,b7wurDomuVs,Quigley bids farewell to Cora as he heads off for Marston's ranch. tt0102744,r9mcNXIJFbY,Marston reveals to Quigley why he recruited him. tt0102744,0sUHxfXKUas,Cora meets up Quigley before they leave for America. tt0102744,NtxR-xgJWwo,"Just before Quigley is to be shot by the Queen's men, the natives arrive and save his life." tt0102744,pGxyOeypYFs,"Quigley guns down three men during a duel, including Marston, with the help of a nearby native." tt0102744,K0xwTAJROW4,Quigley is far from intimidated when Marston challenges him to a duel. tt0102744,7UvSGe2Md6g,Cora protects the native baby from the attacking dingos. tt0102744,j95Tk1SLXOA,Quigley and Cora get a cultural experience when they eat some of the native's food. tt0102744,7Lj3LydT1uk,Quigley meets Cora for the first time when he fights off some bullies that are harassing her. tt0102744,TTXjgOan_KI,Quigley pulls out his gun in front of a skeptical crowd and showcases his skills. tt0102744,-cFW3A13o8s,"Cora and Quigley spend a day together with the natives, sharing traditions and learning new ones." tt0098577,QGNI11LEG54,"A one-night stand for Peter seems quite the success, until Rachel takes a bite into his neck." tt0098577,s0eHgfzlrF8,"Rachel overwhelms Peter both sexually and by sucking his blood, all the while making him profess his love to her." tt0098577,0isiQvOb874,Peter berates his secretary Alva for failing to find a contract. tt0098577,V5Np7vmtIYc,"Peter, in a state of delusion, imagines his confession of vampire acts to Dr. Glaser." tt0098577,W1W5JF4lRIQ,Peter with fake vampire teeth tries to make an appointment with Dr. Glaser. tt0098577,n2ZkOcq4vWU,Peter eats a cockroach during his morning routine. tt0098577,xB1tKdhnGaE,Peter informs Alva that she has the worst job because she's the lowest on the totem pole. tt0098577,fOONIlhXFh4,Peter lectures Dr. Glaser on the simplicity of filing documents then proceeds to recite the alphabet. tt0098577,gbXZzvvp2uc,Peter goes off the deep end in berating Alva for her work productivity. tt0098577,ShCW6mr_rsM,Peter tries to explain being turned on by a bat to Dr. Glaser. tt0098577,Q1-jHyQHGl8,Peter explains to Dr. Glaser that he was turned on more by a bat than his date. tt0095082,X7ME7WkPyC8,"The new Commissioner of baseball bans the ""Black Sox"" from the game forever." tt0095082,cMxPAkZgoy0,"At a minor league game, Buck tells some New Jersey fans that he saw Joe Jackson play." tt0095082,hOnolgR_8tc,Buck talks to some kids about the glory of baseball and the politics behind it. tt0095082,BKtBN0KHq5A,"The White Sox players are found ""not guilty"" on all charges." tt0095082,J2ugazPv__M,Buck gets upset in court when he isn't allowed to take the stand in his defense. tt0095082,hFjIRET64r4,"Buck talks to some kids on the street about his game, then shows them a few tricks." tt0095082,oEUB2LSsbe8,"Eddie, Hap, and Shoeless Joe experience different emotions in the aftermath of the scandal." tt0095082,v3bQ1GiWhJk,The White Sox win Game 3 with excellent pitching from Dickie Kerr who is not in on the scam. tt0095082,-_Bdf9C0SAU,Swede convinces a reluctant Shoeless Joe to join in on fixing the game. tt0095082,0fBA7VUZEgY,"When Commie refuses to give Eddie the bonus he deserves, Eddie considers another option." tt0095082,LlJx0tWUuGY,"While some fans and fellow players support Shoeless Joe, many more still heckle him as he plays." tt0095082,S9ryLG-cAHo,The White Sox players get shafted once again by their penny-pinching manager. tt0089504,4E_jCd4LZL8,David hits rock bottom when he accepts a job as a crossing guard. tt0089504,pVssi5x6rxI,"Having just been fired, David tries to convince Linda to quit and live out their dream." tt0089504,ULLpy_WyJds,"Desperate for money, David visits a small town employment agency looking for a high-paying job." tt0089504,cZumS81KSw8,David wakes up to find that Linda has been gambling all night long. tt0089504,rFy2252ierA,David and Linda plan out the first day of their new life on the road. tt0089504,7moP2oVrQ7Q,David learns the proper amount to bribe a front desk clerk. tt0089504,pf2q0HemaFs,David attempts to get his money back from the Desert Inn Casino Manager. tt0089504,xdMilnKGJdA,David goes a little too far in explaining the nest egg to Linda. tt0089504,rXwdnHnLvms,David unloads on his boss after learning he's not getting a promotion. tt0089504,MnIzvH5GvOA,"Still angry at Linda for blowing all their money, David loses his temper at the Hoover Dam." tt0106387,uPQlrPGbD6k,"Benny is upset when he finds out that Joon lost a poker bet to his friend, Mike, which means he'll have to take Mike's cousin, Sam, off his hands for a while." tt0106387,pQ68ImO9dBU,Benny visits Joon in the mental hospital and tries to make amends by offering her a way to move forward and out of their co-dependent relationship. tt0106387,8YMGQMcNu2s,"Sam performs a hat trick in front of an audience in the park, and after some reluctance, Benny gets into it." tt0106387,UnM6dPbV9Ng,Joon has a moment of clarity when she sees Sam swing by her window. tt0106387,w0X84fml-Bc,Sam helps Benny sneak into Joon's room by diverting the attention of the hospital staff. tt0106387,olTfms7kJIk,Benny and Joon watch in awe as Sam performs in the park. tt0106387,QUP62JKYg2I,Sam and Joon almost kiss during a fingerpainting session. tt0106387,74c-fV_AjAQ,Joon spots Sam on the side of the road during a drive with Benny. tt0106387,F6mWKtfNVA0,"While the gang watches ""Prom Queen Mutilator"" together, Sam recites every word." tt0106387,tkj3klWMn5E,Sam causes a ruckus in the diner and charms the waitress Ruthie when he recognizes her from a horror film. tt0106387,0QoGNA_9zqQ,Benny looks on curiously as Sam prepares grilled cheese sandwiches with an iron. tt0106387,uJlhwWFAAxI,Joon dons some snorkeling gear while she makes a smoothie and prepares to meet the day. tt1368116,vQ-bN0fv4Uw,Yuda faces off against Ratger and Luc at the shipyard. tt1368116,fp4Rib-6cm0,Yuda defends himself against the attacks of Ratger and Luc who arm themselves with crowbars. tt1368116,UUnnQwVC0rk,"Ratger gains the upper hand against Yuda, and forces him to listen to the cries of the captured women." tt1368116,xB-h2YkIP0Q,Yuda is forced to fight Eric in an elevator. tt1368116,dZtW9n3C2gg,Yuda faces off against Ratger's henchmen at the shipyard. tt1368116,KYeZm7yCOaE,Yuda fights off Johni's men while trying to escape. tt1368116,EYpR4aksH3g,Yuda saves Adit from Johni's men who try to take him. tt1368116,DHww3Tdh26o,"On a mission to find Astri, Yuda fights Johni's men in a go-go club" tt1368116,GjJzcjwVF8s,Yuda tries to rescue Astri from Johni and his gang. tt1368116,AbkZAbJqcIA,Yuda intervines when Johni threatens Astri. tt1368116,Qrg2m5OnJT0,Yuda gets his wallet stolen by a little neighborhood thief. tt0997147,I5tF_zv73vk,"Masaru tries and fails to negotiate his contract, only to have to combat the formidable Evil Stare Monster." tt0997147,yuvBcB1oLI8,Masaru's Grandfather can become a 60 foot warrior and he's got serious dementia. tt0997147,F2CVL2cAV80,"Masaru Daisato goes through the ritual of becoming Dai-Nihonjin, but nobody's heart is in it anymore." tt0997147,-ZDt52_mxS8,"Dai-Nihonjin confronts the Strangling Monster, who only seems to want to reproduce." tt0997147,YYsc7jslsc0,"Dai-Nihonjin has his hands full with the Leaping Monster, but not as much as he needs to; he has to keep his his sponsor's logo visible." tt0997147,2GGLMLNbZpE,"Dai-Nihnojin comforts the Child Monster, at least until it tries to suckle him." tt0997147,dWhKh27tEHQ,The Super Family gives the Evil Red Menace the wedgie of his lifetime. tt0997147,2-i06SAeWs8,Dai-Nihonjin runs into a problem when he runs into an obstinate Female Stink Monster and an over-excited Male Stink Monster. tt0997147,kbLP4mKMTYg,"Dai-Nihonjin meets the Super Justice Family, who aren't exactly typical heroes." tt0997147,L92EFtI5VxA,"Dai-Nihonjin fights the Evil Red Menace, or, to be more precise, gets pummeled by it." tt1634122,4x1rlz-IYUk,Johnny English has an explosive showdown with Simon Ambrose. tt1634122,MC_Wv7-i2Es,Johnny English tries to find Pamela while stuck in a body bag. tt1634122,cA9k-dz7Bqw,A wounded Johnny English steals a souped-up wheelchair and gives MI7 a wild chase. tt1634122,cU2j_kP6U0w,Johnny English has to battle himself to resist Ambrose's mind control. tt1634122,SQrD5lkN18o,Johnny English attends a meeting with the Prime Minister where he has issues with his chair. tt1634122,cighZsv-N2E,Johnny English flies a helicopter badly in order to get Karlenko to a hospital. tt1634122,KZt-mGmTpZI,"Johnny English attacks an old lady he thinks is an assassin, but it turns out to be his boss's mother." tt1634122,aj71pJABFFU,Johnny English shows off his impressive hand to hand combat skills. tt1634122,W_WSGHIPSrM,"Johnny English chases after a much younger and physically fit man, but he is more experienced." tt1634122,ZAF804tkZ8o,Johnny English tests out the new gadgets in Patch Quartermain's lab. tt1959490,_pzghUqM1QQ,Ila reminds Noah that God chose him for a reason and he has not failed him. tt1959490,CRXtW09cufc,"Noah attempts to kill Ila's newborn girls, but cannot at the last minute." tt1959490,gSHomdp3o2U,Noah and the Watchers try to stop Tubal-cain's army from taking the ark. tt1959490,o2sjOBiBXSc,Noah explains how the violence of men broke the world and thus the need for utter destruction. tt1959490,PWf0rLp7sUY,Noah watches as the fountains of the deep explode and cover the face of the earth. tt1959490,B_FpV0CZjxY,Noah tells his family how the world was created and how man came to be. tt1959490,8pUjbhH7A7M,Methuselah heals Ila's infertility. tt1959490,jm7xE-OyJUY,"Noah reveals to Tubal-cain that he is building an ark, but only to save the innocents - the animals." tt1959490,r2e-9oBXk0o,"While visiting his grandfather Methusaleh, Noah learns more about his mission to save Creation." tt1959490,LbkjkJzREd4,The Watcher tells Noah's family how his kind were punished by the Creator for trying to help mankind. tt1156300,_W1RJXCb0xo,"George comes home to find Audrey in bed with Dr. Flesch. Problem is, they're both dead." tt1156300,JHpXWiJJbL0,"George can barely keep up with Audrey's manic sex drive, but that's not the only mania seizing her." tt1156300,H_GApJWNWiw,George will do anything for his wife -even commit murder. tt1156300,QVNrihP8ME8,"In Jeff Monahan's segment ""On Sabbath Hill,"" Alison haunts Dr. Carson, revealing one last terrifying surprise." tt1156300,i5JmxPGoM7U,"George's wife, Audrey goes into heat after an experimental chemical cures her disease, but there may be a hidden cost." tt1156300,2kLkwWVB9Wg,"In Jeff Monahan's segment ""On Sabbath Hill,""Alison pays Dr. Carson a visit in class. The problem is, she's already dead." tt1156300,q3kcQHhvOWA,"In Jeff Monahan's segment ""On Sabbath Hill,"" Dr. Carson returns to class after the holiday, but Alison, his jilted lover, is waiting for him." tt1156300,xsHeAaSmoe8,"In Jeff Monahan's segment ""On Sabbath Hill,"" Alison comes to Dr. Carson's class with a surprise for everybody." tt1156300,n1r4aOeOxgo,"In Matt Walsh's segment ""The Gorge,"" after 17 days trapped underground, rats are starting to look pretty tasty, along with the other spelunkers." tt1156300,gd9ZzDgPVFo,"In Matt Walsh's segment ""The Gorge,"" death visits the spelunkers in the second day trapped underground." tt1156300,aMOraCoYToI,"In Matt Walsh's segment ""The Gorge,"" the surviving spelunker has a traumatic flashback to her cannibalism." tt1156300,f4OPBNbNWnw,"In Matt Walsh's segment ""The Gorge,"" the starving spelunkers carve off a slice of their friend for food." tt1334526,W2z88979aKM,"In Tom Savini's segment ""Housecall,"" Mrs. Norman discovers Dr. Marsten dealing with her son, Jimmy." tt1334526,exo_QZ07_BU,"In Tom Savini's segment ""Housecall,"" Mrs. Norman relates the hearsay of her son's wicked deeds to Dr. Marsten." tt1334526,i_qYwD16FXc,"In Michael Fischa's segment ""Wet,"" Swan finds Jack after his night with the Mermaid, but he's not out of danger yet." tt1334526,u-ywf1_Aqy8,"In Michael Fischa's segment ""Wet,"" Jack gets a visit from the Mermaid, but it might not be all he was expecting." tt1334526,OU4AuLhWTv8,"In Jeff Monahan's segment ""Valley of the Shadows,"" Paul meets a grisly fate deep in the jungle." tt1334526,6COCjzLI5kU,"Swan murmurs tales of horror at sea, all at the hands of Mermaids." tt1334526,g2h4ycVI7AQ,"In Jeff Monahan's segment ""Valley of the Shadows,"" Angela and her band of explorers stumble upon a massacre, all seeming to revolve around a forbidden fruit." tt1334526,k2ih0cR-fEI,"In Michael Fischa's segment ""Wet,"" Swan gives Jack some creepy advice about a dessicated hand he found by the sea." tt1334526,5Nw5r8_YCFw,"In Jeff Monahan's segment ""Valley of Shadows,"" Angela's expedition comes to a horrific end." tt1334526,3aJHkdlvdHM,"In Jeff Monahan's segment ""Valley of Shadows,"" Disaster strikes Angela's expedition." tt1653690,kaPdOgl1s7k,The fight between Tien and Bhuti continues. tt1618442,OEf-Lee0YnE,"The Witch Queen kills the 37th Dolan for being human, as Kaulder finds the strength to defeat her." tt1618442,8aegfjXaTmY,Kaulder faces the Witch Queen in battle and learns that the 37th Dolan is loyal to the Queen. tt1618442,C-c8T2hNNoo,Chloe wakes up in her apartment to find that she is under magical attack from unseen forces. tt1618442,2Nd_TsVQwgA,"When Chloe goes with Kaulder into his memories, he learns that the Axe and Cross has been lying to him about the Witch Queen." tt1618442,x4oAO_kDHTY,Kaulder loses his immortality when the Witch Queen takes it back from him. tt1618442,ZTi7bZGkJk4,"Kaulder and the 37th Dolan try to stop the Sentinel, while Chloe goes inside Ellic's mind to stop his dark chanting." tt1618442,0NHFYpXhiiY,"Danique tricks Kaulder into taking some bad memory potion, but with Chloe's help, he's able to get out alive." tt1618442,zt-zQ_EzPsY,"With her final breath, the Witch Queen curses Kaulder with immortality." tt1618442,6qAar5htD0g,Belial yanks Kaulder out of his memory spell before he can learn what he needs to know. tt1618442,e-6fZ7wiPQk,Kaulder fights a witch he suspects of killing the 36th Dolan. tt1705773,dlxT9ot5Bi8,Nero saves the day when it takes control of the Mecha and blows up the Mega Shark. tt1705773,k9mzgW758k8,Dr. MacNeil warns Admiral Engleberg that the Mega Shark will be much more aggressive while it pursues a mate. tt1705773,ayLJJZh7RRo,Rosie gets stuck trying to escape the Mecha and Jack sets off to save her. tt1705773,UeKhKcL5efg,Rosie tries to stop Mecha Shark from the inside while Jack leads Mecha out to sea. tt1705773,l94WdhJc8ZM,Nero frees Mecha Shark from the rubble while the Mega Shark sinks a Navy ship. tt1705773,swcFDa5jYfw,"Jack saves Stacy from Mecha Shark after it initiates amphibious mode and cannot be controlled, even by Nero." tt1705773,8tnQxuIPgXQ,"Nero navigates Mecha Shark on its own when Rosie is incapacitated, but Mega Shark knocks it offline." tt1705773,Jj6S3vtJPaA,"Rosie manages to stop Mega Shark from attacking an airplane, but when she launches a torpedo, he smacks it away and takes out a naval ship." tt1705773,-jFiu3zG8dc,"Rosie launches a torpedo at Mega Shark and he smacks it back, destroying the USS Virginia." tt1705773,qgcQxJuBfY4,"The mega shark breaks free from his icy asylum, and knocks it's ride to Egypt into the Great Sphinx." tt0843873,dcB5igj1k6w,"When Chico and his thugs threaten Alma, Brujo uses smoke, slime, and magic to take them down." tt0843873,Qwi6MbaOBME,"As punishment for taking advantage of Crystal, Barat threatens Hoover, forcing him to remove his shirt before shooting him in the face." tt0843873,iCTkYP-7by0,"During a showdown, Brujo stabs Chico and pushes him off the train." tt0843873,L2ozJHHf1ec,"The conductor of the train, Frank, attempts to call for help while the passengers are being attacked, but is instead eaten by a snake." tt0843873,qE_SJYfhUc0,"The snakes and serpents run rampant throughout the train, bringing terror and death upon the passengers." tt0843873,T1jK-kQgdeo,"When Brujo discovers that the snakes have gotten loose, he begins gathering them up and searching for Alma. Meanwhile, the little girl Lani is completely devoured." tt0843873,Df3535-5wE8,Alma swallows the snakes that have come out of her and transforms into a giant python. tt0843873,nvnag6ta7LA,Alma and Brujo desperately plead for help to get treatment for the curse that has been plaguing her. tt0843873,DxVqAcNKMNk,"The giant snake attacks and swallows the runaway train, forcing the passengers to jump off in order to escape." tt0843873,CdAJ9-36cAM,"Thinking he has scored some pot, Julio gives Juan a box filled with snakes, which then crawl inside of their arms." tt1350498,dGIyVafU14c,Seiji and Emma sneak away to a supply closet where they share a romantic moment. tt1350498,wh9ZsEMo0-o,The Giant Octopus destroys an oil rig off the coast of Japan. tt1350498,Z2yt_J6z2FQ,"Per Baxter's order, a pilot flies in to attack the Giant Octopus, but is knocked from the sky like a bug." tt1350498,HkNa8r5E770,"The US Navy believes they have defeated the Megalodon, but it returns with force and destroys their ship." tt1350498,3ycDiqPVBqo,Emma and the submarine crew come to blows just as the Megalodon and Giant Octopus begin their deadly battle. tt1350498,dLc8QqtMhYQ,"Emma and the submarine crew face off against the Megalodon. Then, the Giant Octopus destroys an entire US Naval fleet." tt1350498,Ma5iacR9d74,Emma leads a submarine attack on the Megalodon. tt1350498,KNol4Te8mCs,"The Megalodon and Giant Octopus finally engage in an epic battle, with Emma and her crew caught right in the middle." tt1350498,ViWgPQKgQYU,The Megalodon attacks and destroys the Golden Gate Bridge. tt1350498,KsU5oT6FhE8,A giant shark jumps from the ocean and swallows an airplane. tt1653690,qB26s5dx_sQ,Tien defeats most of the guards only for Lord Bhuti to take matters into his own hands. tt1653690,p76b_u00SSU,Lord Rajasena discovers just how dangerous Bhuti Sangkha really is. tt1653690,jsLRdkCMvxI,"Held captive and chained, Tien finds himself in a difficult situation where he must defend himself against the lord's guards." tt1653690,r6AmK5ecvRE,Tien faces off against all of the Lord's guards. tt1653690,_ZiRPpAgOlY,"After discovering that the village has been destroyed, Tien is attacked and must defend himself." tt1653690,SpaZXamzgwA,Pim recognizes Tien from a previous encounter and does her best to protect his wounded body from assassins. tt1653690,UNvtKMt78aY,Lord Jom Rajasena's power is threatened when he comes face to face with Bhuti Sangkha. tt1653690,iHDhfU-N87E,Mhen leads the guards to Tien and accidentally helps him defeat the attackers. tt1653690,PTwqLCxIMiU,Tien and Bhuti face each other in a one-on-one battle. tt1582248,IwQVcVqDUqE,"Paul goes to see Mike, who is broken by the case." tt1582248,bjUMh2wObW8,"With Paul and Jeffrey still mourning Mike's death, an unexpected reprieve comes in the form of Mark Lanier." tt1582248,iIcbE_xFIuw,Mike's addictions catch up with him when Senator O'Reilly deliberates taking the case. tt1582248,SKMgjxAgidE,"Mike Weiss visits Vicky in the hospital, who, despite her battle with AIDS, lifts his spirits." tt1582248,K_0hl7Yc0fI,"Falling into despair, Mike Weiss calls Nicole Morris, a ""sex therapist.""" tt1582248,qKrNYYuf7Z4,Mike and Paul dine with Nathaniel Price who tells them just how bad their situation is. tt1582248,SNCyMweQ_8c,"Mike investigates the medical suppliers purchasing organization, only to attract some unwelcome attention." tt1582248,4_3PUB38zJU,"Just about everybody likes Mike Weiss with the notable exception of his wife, Jaime." tt1582248,w_V5UPmEH_s,"Mike and Paul visit Jeffrey Dancort about his safety needles, only to discover a disturbing conspiracy." tt1582248,Rb3em4rmYxs,Mike Weiss does cocaine while practicing for an upcoming trial with some local miscreants. tt2231253,_iw7PLtjjow,Cyrus asks Nick to teach him how to be brave. tt2231253,o1DgvimHOvw,"Holly gets retribution for her beating, and gives DeMarco a chance to save the envy of all mankind." tt2231253,kmr68ZevIrM,Nick has to defend himself when DeMarco accuses him of murder. tt2231253,nBRTe09eseE,Nick goes off on a rampage when DeMarco tells his men to kill Cyrus. tt2231253,EJCaAADpCuQ,Nick fends off DeMarco's henchmen in a casino brawl. tt2231253,2tWroNJp2zI,A new client asks Nick his qualifications to be a chaperone. tt2231253,KINtZPTjGOM,Lady Luck is on Nick's side when he hits a big winning streak at the casino. tt2231253,rxme5eLoK5E,Nick puts over a half million dollars on the line in one final bet. tt2231253,iB8eR7GugQY,Nick shows a new side of himself when DeMarco pushes him to the brink. tt2231253,MBY84LUh7s4,Nick helps Osgood impress the beautiful DD. tt0044081,P_VgDHPDtK8,"As Blanche is taken away to a mental institution, her sister Stella decides to leave her abusive husband Stanley." tt0044081,vLxUYa47OXE,Stanley lashes out at Blanche after she refers to him as swine. tt0044081,Napj_I8kdHY,Stanley erupts in a fit of rage after Stella tells him to clear the table. tt0044081,BfniNOclXKs,Blanche begs her sister Stella not to get dragged down by her abusive husband. tt0044081,kYA9hvcLekg,Stanley screams for Stella to come back to him after he abused her in a fight. tt0044081,9UMiW3dzW8g,Stanley yells at Stella about the loss of her family's estate. tt0044081,Sp_ZkjTIRiI,Mitch treats Blanche roughly after finding out about her questionable past. tt0044081,V6TrgQxf3lk,"Blanche encounters her sister's brutish husband, Stanley, for the first time." tt2870708,VWX9yxvtjxo,Aidan teaches his children about cursing. tt2870708,I_Ld8Rtl-Gc,"Aidan confronts the man whose been harassing his wife at work, which plunges him into a fantasy and forces him to confront the impending death of his father." tt2870708,j_a_zvQOrIE,"Gabe passes away, surrounded by his family." tt2870708,YkYypI0-OAY,Grace tries to convince Noah to come see his father in his final moments. tt2870708,BaSUY4geCtE,Sarah goes to the hospital to offer Gabe some advice she believes he's forgotten. tt2870708,xXjPITaIjPA,Aidan and Sarah discover that their daughter Grace has shaved her head. tt2870708,Dh6M4SEdLdU,Aidan takes his family to visit his dying father in the hospital. tt2870708,ivzvZlKaKAs,Aidan gets frustrated with his brother Noah after finding out he does not plan to visit their dying father. tt2870708,V0Y4f1UoH9o,"Aidan recalls his mother's bedtime advice, and takes Grace shopping for an amazing new wig." tt2870708,u_4L7Dx1rIg,Aidan finds out that he doesn't fit the description for the role he was hoping to audition for. tt1666801,Rz0JV0WUjPo,Wesley chooses Bianca over being homecoming king. tt1666801,4YFz0PJernc,Bianca tells Wesley how she feels and confronts Madison about her bullying. tt1666801,NVCvHb1UK_g,Bianca can't focus on her date with Toby because she's constantly thinking about Wesley. tt1666801,FK7N96w_3FU,"Wesley advises Bianca on what to wear, but she has a hard time taking it seriously." tt1666801,lKwghMLo0AY,Wesley goes over the game plan for Bianca's upcoming date. tt1666801,MIpPd7IhPNA,Madison releases a very unflattering video of Bianca that goes viral. tt1666801,eXVVSJUhDmo,Bianca confronts Casey and Jess about being their DUFF. tt1666801,-o-C21COWIQ,Wesley tells Bianca she's a DUFF. tt1666801,sHt3TElCugg,"Bianca may not be the most popular at Malloy High School, but her friends are." tt1666801,qwUgyrgP9H4,Mr. Arthur assigns Bianca a piece on homecoming for the school newspaper. tt3045616,CGHuALdM57s,"After securing the painting they have been searching for, Mortdecai and Johanna share a romantic bath." tt3045616,zUvgi8Rxl9Q,"When men threaten to cut off Jock's finger, Mortdecai comes to his rescue." tt3045616,70zF5FTAfAE,Mortdecai showcases his questionable fencing skills in a showdown with Emil over a stolen painting. tt3045616,TqVLkE4Lr8U,"As Mortdecai and his friends chase Emil, Jock finds himself very sick from eating shellfish." tt3045616,Br3e2gRhBZw,"When paying a visit to Krampf, Mortdecai is introduced to his flirtatious daughter, Georgina, and discovers the lost painting hidden in his car." tt3045616,1H_5SNtiMIs,Mortdecai must find a way out of a sticky situation when he is threatened by Romanov. tt3045616,Uk4tuWVB-ho,Mortdecai and Jock escape from the Russians on a motorcycle. tt3045616,8lRysx2QaZg,"Mortdecai tries to seduce his wife Johanna, but she is too disgusted by his mustache." tt3045616,kAd-K7nteyI,Mortdecai and Jock try to fight Emil out of their moving vehicle. tt3045616,6yuDWX2prJg,"When he is ambushed, Mortdecai accidentally shoots Jock, which reminds him of similar blunders from the past." tt1674784,GECuST_cjC8,Avery has to convince the security operator to call off the police dispatch. tt1674784,NBhmNRq0uU8,Kyle burns the shed so that Jonah does not get the money he saved for his family. tt1674784,YCIO_JbmcZ0,"When Elias finds out that the diamond necklace is fake, he tells Kyle the real reason why they are there." tt1674784,uZhJYIZthNg,Kyle finally opens the safe only to find that it is empty. tt1674784,k4sAUqI-y8A,"Through a series of flashbacks, it is shown that Sarah and Jonah have a history." tt1674784,aGk88ZwiLRs,Kyle loses it after seeing his wife Sarah at gunpoint. tt1674784,EyqjJVgnJMo,Kyle tries to figure out what the robbers are going to do with the stolen diamonds. tt1674784,CKQiEEWqW-0,The robbers assert their dominance over the Millers. tt1674784,UUPZ8Bzq1wA,"""Police"" break into the Miller residence and Sarah tries to escape, but they take Kyle hostage." tt1674784,oe6nOL82mmU,"Avery tries to convince her parents, Sarah and Kyle, to let her go to a party." tt1778304,c7RyGNzyGB4,Toby attacks Katie to make Kristi do his bidding. tt1778304,t3dmXdp2O0Q,Dennis discovers something horribly wrong in Grandma Lois' house. tt1778304,uzIEsj6Me9g,Dennis and Kristi try to escape Grandma Lois' house. tt1778304,qYEceRHS8jM,Julie refuses to leave her house until Toby forces her hand. tt1778304,42tGOQelinA,"Randy agrees to play Bloody Mary with Kristi, unprepared for the supernatural ramifications." tt1778304,76gNp5rkFX0,"Lisa watches the kids for Dennis and Julie, not realizing that she's being watched too." tt1778304,6_ZBUhBx3w8,"Dennis doesn't believe that Toby is real, but Kristi does." tt1778304,BqcHbcPo7zk,"The building supernatural powers in Julie & Dennis' house causes a lamp to explode, scaring the hell out of them." tt1778304,Li8ROpFUD4E,"When Dennis hears phantom bumps, he and Randy investigate their horrific origins." tt1778304,j2aGGNQW_7M,"Dennis and Julie get intimate, but they may not be alone." tt1536044,ISt_AN1f0Xw,A possessed Katie breaks into the family home and kills Daniel and Kristi. tt1536044,hTF5JMKgI1I,Daniel tries to resuce his son and exorcise the demon from his wife. tt1536044,yjrwCXMRh24,Daniel tries to use the blessed cross on Kristi to remove the demon from her soul. tt1536044,7PfDjA-3RP4,"When Kristi tries to check on the baby, the demon assults her and drags her to the basement." tt1536044,NerShU5K9Ac,"The family's dog tries to fend of the demon, but gets attacked for its efforts." tt1536044,IqJSc4WySE8,The demon makes its presence known to Kristi as she sits in the kitchen. tt1536044,TCK-ODyUwoM,The demon starts to get aggressive and locks Ali outside of the house. tt1536044,L4kxEO7Okhc,The demon pulls Hunter out of bed and tricks him into opening the basement door. tt1536044,PBBZHnc8Jxk,While the family is asleep the demon starts a fire in the kitchen. tt1536044,YCleI91Af3s,Mysterious things start to happen when Kristi comes to calm Hunter down in the middle of the night. tt1748122,qnyoHZa5rrQ,Sam makes a special connection with Suzy at the play. tt1748122,HhP2rEHWxCI,"Social Services comes to the island looking for the runaway boy, but is met by sheer incompetence." tt1748122,g2py3Bx0Nr8,"Sam and Suzy find Scout leader Ben to ""marry"" them, but he needs them to take it seriously." tt1748122,z5xRXKOAu-Q,"The Khaki Scouts find Sam in the woods, but he won't come quietly." tt1748122,BlC3yzpzATY,Sam and Suzy discuss their futures and have their first kiss. tt1748122,i6XlRCrUvxU,Sam and Suzy enjoy the freedom of their tiny inlet and make homemade earrings. tt1748122,sorSQzGGdv0,Sam and Suzy exchange a series of letters as pen pals. tt1748122,3l4Uuh_byns,Sam and Suzy meet up in a field and run away into the woods. Sam shows off his scouting skills. tt1748122,5bBti58el_g,"Suzy shows her books to Sam, but is upset when he laughs at her depression." tt1748122,JQoNhRN9CiI,"Scout Master Ward inspects the troops, but finds one rebellious Scout missing." tt0072067,nKBE3U4mwuY,Firat tries to get Hadji to confess to murder while being pursued by the FBI. tt0072067,KbaqSn9LDiM,Becker sits down with Acar and Firat and speaks a little Kurdish with them. tt0072067,oHB3yg1vFAQ,The Turkish officers raid the terrorist hideout. tt0072067,N1Jg10AGbGk,Hadji explains to the terrorist the true words of Allah. tt0072067,I_oKf3IEGmQ,Hadji tells Marcus not to worry because he does not fear death. tt0072067,XfKq2_EzkE4,Hadji discusses Islam and terrorism with Acar and Firat. tt0072067,ha40ifVCakk,Hadji questions the Turkish police officers and offers them a deal. tt0072067,JfFRCGgpkSg,Becker and the FBI agents arrest Hadji at his home. tt0072067,wTqPJaupccs,The Turkish officers start their operation to capture the terrorist leader. tt0072067,H_CVt8o2GAc,Firat confronts Hadji about being a murderer. tt0072067,HfiKoIVr3T0,Hadji explains to Firat what really happened in 1973. tt0089017,K9Z6ZZIZPFw,Roberta is disappointed when Gary insults her 'Jimi Hendrix' jacket. tt0089017,3TAoWo3kBkw,Roberta follows Susan into a thrift store and purchases the jacket that Susan just sold. tt0089017,OWRqJA31H_E,Dez watches Roberta assist in a magic act and then become attacked by an audience member. tt0089017,lnQRXfjI664,Roberta visits Dez in the projection booth of the theater to re-introduce herself proper. tt0089017,wEzZX_MFu4w,Roberta's two worlds finally collide when Dez and Gary meet for the first time. tt0089017,ZwlQdSE1LdM,"Gary nervously watches Susan take a tour around his house, and offers some advice about Roberta." tt0089017,5mbqW5rZaCI,Dez confesses to Jim that he was the man who jumped him in the dark... and he also slept with Susan. tt0089017,xyiG9P_Vc7A,"At a dance club, Gary meets Susan for the first time, hoping that she has information about his wife's whereabouts." tt0089017,8HI62qvNWPU,Crystal storms out of her job after she's fired and Susan takes her to see a movie. tt0089017,wt0_m5mUsbo,Gary worries about Roberta and ravages the kitchen for food while Leslie lectures him about orgasms. tt0089017,rtsis0lgx7k,Roberta kisses Dez after asking him about Jim. tt0089017,XZXg3WkUGPw,"Roberta reads the personal ads, where she lives vicariously through two strangers named Jim and Susan." tt0810817,PC_O4NLvktE,"After breaking into the De Korta Residence to steal Da Vinci's sketches, Archer finds himself betrayed by his choice of partner." tt0810817,wRCiwDkYtVo,"Coven tries to cash in on Michael's treasure discovery, but a freak oil accident foils his plans." tt0810817,gVIdf-kZJXk,Michael and Giulia discover a key inside the artifact and they use it to open a secret door. tt0810817,CbM6muvlHOw,Michael and Giulia try to outrun a helicopter full of Coven's henchmen. tt0810817,gsXRITF5hcI,Michael and Giulia discover Da Vinci's treasure. tt0810817,VOgIyusLSOA,Michael and Giulia examine photos of Christ's shroud with Da Vinci's optics to determine the location of their next clue. tt0810817,iMigt5aPvPQ,"While Michael has a dangerous encounter with Coven, Giulia finds and steals the glasses they need." tt0810817,aKNOSJT3vCo,Michael and Giulia steal a bus and try to outrun Coven's thugs. tt0810817,LDDFccHEa3s,Samantha and her crew catch Michael and Giulia in an alley and steal Christ's shroud. tt0810817,l4Ws4ou6UO0,Coven chases down his ex-associate Michael and steals the Da Vinci artifacts he just stole from someone else. tt0061811,S5x3QGlo22M,Gillespie and Virgil bond while drinking. tt0061811,cXfD-Ai_QuA,"When Virgil decides to leave town as soon as possible, Gillespie does what he can to keep him on the case without rubbing his ego." tt0061811,Kc2EYuV33Ns,"When Gillespie locks up Virgil, Virgil uses the time with Harvey to decipher if the man is in fact innocent." tt0061811,2UrB8TI5El4,"When Endicott slaps Tibbs for implicating him as a suspect in the murder, Tibbs slaps him right back." tt0061811,cmBN-X701Gg,A call from Virgil's Captain leads Gillespie to ask him to look at a recent case. tt0061811,LoLBuoPL7nI,Tibbs says goodbye to Gillespie at the train station. tt0061811,RisSaXLB5ok,Gillespie defends Tibbs while Tibbs examines the corpse of Philip Colbert. tt0061811,i6n8VyqaCQ4,Tibbs defends himself against a racist Gillespie while Mrs. Colbert grieves her late husband. tt0061811,iI8w5AQJcN8,Tibbs explains his circumstance to Jess when he gets dropped off by Gillespie. tt0061811,g-g4vCbZsDM,Gillespie is furious when he finds that a police officer Tibbs was wrongfully brought in as a suspect in a crime. tt0785035,nAK7Uyg_Y7Y,Tien is left with no choice but to fight his mentor Chernung to the death. tt0785035,1S3Vom2V2lY,"Tien fights Lord Jom Rajasena's men, but even he might be enough to fight the Crow Ghost." tt0785035,vL5LepmOUQk,Tien fights for his life against a crocodile while Chernung and his men watch. tt0785035,k92e50obPsQ,Tien undergoes a strenuous martial arts test. tt0785035,o02NQhYm4lU,"Tien uses his mastery of agility, strength, and presence to calm stampeding elephants." tt0785035,6kxFTk_Yoq0,"Tien begins his test of the mind, which forces him to make a deadly decision." tt0785035,PEOiWoM2q6Y,Tien takes down wave after wave of slavers with his epic drunken boxing skills. tt0785035,sWd44kgjkeE,"Tien returns to his village, only to face his father's killer -and a wave of other assassins." tt0785035,4QOA-TyD42o,Tien ambushes slave traders attempting to make off with a sacred statue. tt0785035,1u7U16N_yJg,Tien attacks Rajesena during his coronation ritual. tt0081455,4hAjAP6kPg4,"Ambushed by Revok's assassins, Vale uses his scanner powers to neutralize the threat." tt0047472,goAo5dC8P1s,The brothers and their girls sing about the beauties of spring. tt0047472,QbzJtP75NqM,The Pontipee boys compete with the local fellas for the gals at the town dance. tt0047472,smwBZ-3HAPY,The fathers of the girls consent to them wedding the Pontipee boys when they all claim Milly's baby is their own. tt0047472,6_gHh5IEgi0,"Back on the ranch, the Pontipee boys are sure lonesome without the town girls to keep them company." tt0047472,SqaM88u082Y,"The Pontipee boys try to control themselves to impress the women at the barn raising, but there is only so much they can take from the men in the town." tt0047472,846by3LOKlA,Adam tells his brothers the legend of the Sabine women in Roman times and how it might apply to them. tt0047472,G87BCljOeuA,Milly teaches the Pontipee brothers how to woo a woman in the gentlemanly way. tt0047472,khfeRoRCp7c,"Milly shares with her new husband, Adam, her feelings about love." tt0047472,z7OEKs7hAEk,Adam sings about the type of women he is looking to marry. tt0047472,dvJqm3PFKLk,Adam tells everyone that his currently in the market for a wife. tt0274166,8VItLIW2D4g,"Johnny English plays a DVD of his ""evidence"", but it is actually a recording of himself lip syncing to an Abba song." tt0274166,Ab3QDSj2ws0,"At the coronation ceremony, Johnny English pulls down the pants of the Archbishop of Canterbury to prove that he is a fraud." tt0274166,mVdTVvgW4EM,"Johnny English is attacked in a garage, but succeeds in capturing his assistant, Bough." tt0274166,_FurW3BTcjw,"Johnny English uses muscle relaxant and truth serum on the bad guys, but gets them mixed up." tt0274166,n3Y6B_UKam0,"Johnny English meets Lorna at a sushi restaurant, but gets caught in the conveyor belt." tt0274166,7ELmyf41TnQ,Johnny English rides an Aston Martin on a tow truck to chase the thieves. tt0274166,WZxFIAFTfEU,Johnny English describes the imaginary assailant for an artist. tt0274166,93TnnyxGBqI,Johnny English interrupts what he thinks is a fake funeral. tt0274166,U6CGGUJKymk,Johnny English fights with an imaginary assailant. tt0274166,2uyy1EOBBm4,"Johnny English goes to meet Pegasus, but accidentally incapacitates the secretary." tt0085382,h_JeXTLSCQk,Donna tries to revive a dehydrated Tad after escaping from Cujo. tt0085382,sVg5_6gjzlg,"Joe goes to pick up Gary, and finds that he's been killed by Cujo." tt0085382,5CS1t_QtZOU,"Donna tries to escape from her car to get into the house, but Cujo stops her." tt0085382,T37ezlBVMME,Donna and Tad panic when Cujo attacks the car. tt0085382,WyKHdjh7_2E,"Donna and Tad go to get the car fixed, and a rabid Cujo tries to attack them." tt0085382,qNnfnI8ai6o,"Vic takes his family to get the car fixed by a mechanic, Joe Camber, and they meet Cujo." tt0085382,VN-AkfFZwfI,Brett goes into the fog to look for Cujo. tt0085382,awPDaFp70yI,"Cujo chases a rabbit, and gets bitten by a bat with rabies." tt0086525,uGrrtkaWoU8,Randy tries to cross paths with Julie every opportunity he can. tt0086525,h0qWin97VyI,Julie breaks it off with Randy. He realizes it is because her friends disapprove of him. tt0086525,FcEchaH6EJk,"Randy and Julie fall in love, 80's style." tt0086525,s59yqpV0ICo,Julie and the girls discuss the events of the party during Driver's Ed. The girls don't approve of Julie's interest in Randy. tt0086525,bKkJKMjnYf4,Julie comes home the morning after the party to her hippie parents. tt0086525,s9FoorJGkrA,Randy appears in the bathroom and convinces Julie to ditch the party for a night with him. tt0086525,xZ_GOyfnTTs,Randy fights Tommy at the dance and escapes with his Queen. tt0086525,TuOYe44bL0U,Randy comes to see Julie at her parent's health food restaurant. tt0086525,3ExJ909lWds,"The girls have, like, a totally tubular slumber party." tt0086525,L-xNqfIXuaM,"Julie sees Randy for the first time at the beach. Randy learns of the party in the Valley, but doesn't want to go." tt0086525,SKoj1Its8vo,"Randy is angry that Julie's boyfriend interfered with his plans at the party, so they head back." tt0086525,uhH9ewIEbnU,Julie tells off Tommy at the mall before Suzi's party. tt0081455,M8T58oBOsAU,Kim tells Vale that she was scanned by an unborn child. tt0081455,uTINsxfQwUw,Revok uses his scanner ability to kill his captors with the power of his mind. tt0081455,Cy6I9ydBSWc,"Revok and Vale battle to the death, the Scanner way." tt0081455,7lAIabgWtbI,"Kim uses her formidable scanner powers to thwart Revok's assassins, thereby allowing Vale to escape." tt0081455,F9puQXwExbY,Dr. Ruth shows Vale classified documentary footage of Revok to better prepare Vale for the unstable threat he will face in the future. tt0081455,yKNauUKkW9Q,Keller uses a computer to try and shut down Vale. tt0081455,yWGL8RTONpM,"Dr. Ruth oversees an experiment where Vale takes control of a man's heart rate, the consequences of which become rapidly threatening." tt0081455,qnp1jfLhtck,"At a Scanner demonstration, Revok volunteers himself and blows up the head of another Scanner." tt0081455,XFosHLSA03w,"Keller murders Dr. Ruth, abruptly severing the psychic connection between he and Vale." tt1480295,NvKOhmZA9bU,"With Emil right where he wants him, Benjamin prepares him a very special drink." tt1480295,yp1luet0nkU,The blood feud between Benjamin and Emil comes to an end on a lonely bluff. tt1480295,wC-N_KnYNLw,"Benjamin, shot through the calf, flees from Emil, whose agenda goes deeper than simple assassination." tt1480295,W3s4HSqODSE,Emil forces Benjamin to drive a bolt through his calf before hanging him from it to torture and interrogate him. tt1480295,dJcvUGXOMMw,"Emil gets the upper hand with a flare gun, but Benjamin manages to grab a shotgun." tt1480295,zdKxziIlC-c,"Surviving Emil's first attack, Benjamin dresses his wounds and prepares for a hunt of his own." tt1480295,YOuQ9V-tzps,The gloves are off when Emil threatens Benjamin's family. tt1480295,0XZlgVrxKfg,"Emil and Benjamin compare their hunting equipment, each hinting something without saying it." tt1480295,g5iR3s9FA_g,"With his jeep on the fritz, Benjamin makes a fateful acquaintance in Emil, his would-be assassin." tt1480295,2xH234D7lao,Benjamin's reluctance to shoot a buck prompts a startling revelation from Emil. tt1480295,HSQl1nhi3N0,"With Emil incapacitated, Benjamin finally gives him what he wants." tt1376460,X3Ujc0YaltE,"When a woman won't stop talking on her cell phone while driving, the phone turns into a robot and shoots a laser through her head." tt1376460,TdffyS619Qw,A pacemaker turns into a robot and bursts out of someone's chest. tt1376460,i4zxmn6_aRA,"Clay is pierced by a laser through the chest and head, killing him instantly." tt1376460,ML1hxH1yQb8,"The Transmorphers return and begin attacking, forcing Jake and Madi on the run." tt1376460,e3BQROKhvgo,"When all hope looks lost, Hadley saves the day by sacrificing himself and crashing his helicopter into a Transmorpher." tt1376460,Hk-_1SD1pic,"The Transmorphers begin their siege on the military base, killing all those in their path." tt1376460,B1Y4s89sBpY,"As they fight the Transmorphers, Madi uses herself as a distraction, leading Jake to believe she's been killed." tt1376460,204zPTniPrU,"Hadley pursues an unmanned SUV, which turns out to be a Transmorpher." tt1376460,5CfzQ1956jw,Jake and Madi reunite and Jake explains the aftermath of the fallout. tt1376460,hTdBkXMvY6o,Jake and the group devise a plan to take down the Transmorphers once and for all. tt0960835,FPgDrHxAntE,Mitchell and his team enter the lead transmorpher to hack the mainframe. tt0960835,phOJkEJled8,Karina alerts General Van Ryberg that there's an air strike as the team takes the fight to the air. tt0960835,YGmK5uMOgZ0,Mitchell sacrifices himself to stop the giant transmorpher from destroying the humans. tt0960835,3YWCnhDDMac,"The battle continues as Itchy, Nadir and others start putting a real dent in the robotic army." tt0960835,FIjtDcICyIE,A fight breaks out between soldiers after an argument over loyalty and respect before Lux pulls rank and steps in. tt0960835,wxRSLer7VIg,Mitchell and his team have some success in their first battle with the robots. tt0960835,3TN3wohDAXg,Mitchell learns that he is a robot and he volunteers his life for the upcoming mission. tt0960835,60d2lmx8LQM,Mitchell is highly dissatisfied after he tests his new team and enlists Itchy to find more volunteers. tt0960835,BW3ZFYQQXb8,"Earth finally made contact with aliens from another planet, but five years later they responded with a much less peacful message." tt0960835,FVTtA6m68rg,Blackthorn and his crew fall into a fatal enemy trap and General Van Ryberg chooses to let them die instead of exposing the position of the rebels HQ. tt0089907,NJzij2bw0f4,"When Frank and Freddy wake up after the toxic spill in the company warehouse, they discover that their medical research has come back to life." tt0089907,yhjD1CmE9gs,"Freddy turns into a zombie and attacks Tina, but the gang stops it with a face full of acid." tt0089907,2NhF6zphSx8,"A zombie breaks through the wall, killing a punk before Ernie manages to capture it for questioning." tt0089907,KkV42m5wVTk,"The punks comes to Tina's rescue, but while saving her, one gets eaten by the zombie." tt0089907,d6zX6-Rf4JY,"Tina comes looking for Freddy, but finds a zombie instead." tt0089907,K7bA4PB0zdk,Burt shows Ernie that what's moving in those trash bags aren't weasels after failing to convince him that they are. tt0089907,I9npL6x8oFQ,Frank shows Freddy the frozen zombies and accidentally breaks open a container. tt0089907,D_xUviDPUOE,"When a blow to the head doesn't kill the first zombie, Burt saws off its head, only to have the headless body attack them." tt0089907,8mZEPgvvd4I,"Frank tells Freddy the real story behind ""The Night of the Living Dead"" and the chemical responsible: 245-Trioxin." tt0089907,Hdh3npiRip4,"Frank shows Freddy around the warehouse, including the freezer with the fresh cadavers." tt1605630,ajRRS6NzMBU,The guys apologize to Stifler and he tells off his prick boss. tt1605630,U97UagTDW_0,Jim asks his dad for advice on sex after marriage. tt1605630,38jPEmoNjAw,"Heather goes after Oz's new girlfriend, Mia." tt1605630,qnVGIFPFry8,Oz watches some embarassing video from a dance competition he was on. tt1605630,5Xbdu0wnun4,Jim tries to give his dad some dating advice. tt1605630,nQLSbuSZzE8,Jim and Stifler try to hide from Kara's dad. tt1605630,a469ezsg86A,"To get revenge on some guys who splashed them, Stifler takes a dump in their cooler and trashes their jet skis." tt1605630,ZvG2Q_KNCOA,"Oz is very happy to run into Heather on the beach, until Stifler ruins the moment." tt1605630,JQLBuA1JCfg,Jim drives a drunk Kara home and she comes on to him. tt1605630,utS5IxGpAPI,Stifler catches the guys having a reunion drink without him. tt0068833,_dVAPmlzo7g,"Mari and Phyllis think they are going to buy grass, but Junior and his pals have different plans for them." tt0068833,8_mRYeBdwcc,The gang tortures and kills Phyllis while Mari calls out to her from the woods. tt0068833,p4TZcBFacUg,John Richard Towers) & Estelle kill those who murdered their daughter. tt0068833,4UgTUqi3Xxk,"Phyllis is humiliated and frightened as she is forced to first pee in her pants, and then take off them off in front of the group." tt0068833,fTMY9OkzTBA,The gang catches up with Phyllis in a cemetery and surround her with weapons as she tries to escape from the woods. tt0068833,NJtOmLkUSKs,"Fred's moment of pleasure with Estelle turns very, very ugly when she castrates him with her teeth." tt0068833,ZAhwNITS1WQ,"The group tortures a hysterical Mari by capturing her in the woods, slicing into her chest, and showing her Phyllis's chopped hand." tt0068833,8rN5CaA7OUI,"When Junior pulls a gun on Krug, Krug convinces him to kill himself instead." tt1649444,QaxQWGA3wys,"After a bizarre encounter in the tunnels, Natalie makes a tearful confession to Clara." tt1649444,JaTnlFHOkZ8,"The last survivors of the zombie wedding massacre, Koldo and Clara have their wedding kiss while they still can." tt1649444,LydYnbMzIGA,Koldo and Clara experience a true test of love when she is bitten by a zombie. tt1649444,ucqBb8FMJ74,"Koldo won't let a zombie, not even his uncle, come between him and his bride." tt1649444,MB-oElVuFoc,Father Cura demonstrates the power of prayer over a pack of demonically possessed zombies. tt1649444,h0lUVSpj310,"When Koldo's attacked by a zombie, ""Royalties"" shows off his survival skills." tt1649444,Or3JIDwWgH4,Uncle Victor gets Koldo and Clara's wedding reception going with a zombie attack. tt1649444,Nds71RtsnxY,"With zombies hot on their trail, Koldo races to free Clara from a tunnel." tt1649444,p9Iw3217IRs,Disgruntled Bride Clara takes a chainsaw to the zombies that are messing with her wedding day. tt1649444,n5wiHK9V_ss,Koldo discovers how deep the zombie outbreak goes. tt1655441,Jxs8p22Pq_Y,Adaline finally tells Ellis the truth. tt1655441,ZQ146HsyzE8,Adaline discovers that she's finally starting to age. tt1655441,kTKIACVqDzQ,William confronts Adaline about her condition and begs her to stay. tt1655441,d5nAgnojNgk,William notices a scar on Adaline's hand - a scar he remembers from their time together in the sixties. tt1655441,4Em53e2p7HQ,The Jones' play Trivial Pursuit and Adaline learns that William named his comet after her. tt1655441,k8VqG4ftlK0,William remembers how he met Adaline. tt1655441,ivGfI_8TE9I,"On their first date, Adaline decides to temporarily give in to her desires and let Ellis in." tt1655441,zkR_E8jw6qE,"Ellis introduces Adaline to his family. As it turns out, Adaline and William knew each other in the past." tt1655441,Q59V4qwZI14,"When Adaline begins to get noticed for the disparity in her age and looks, she moves away to study more about her condition." tt1655441,CmssRVrBMxU,Ellis pursues Adaline despite her many attempts to end the conversation. tt1245112,7Ce8fa-b_m0,"Ori, Tito, and Mire have a novel approach to demon zombie disposal." tt1245112,cwkEbwJR0aM,"Father Owen attempts to communicate with demonically possesed Jennifer, which doesn't go as well as he'd help." tt1245112,t9_VbtJdDSQ,Larra has the worst minute and thirty-eight seconds of his entire life. tt1245112,sS8ECvGKWT4,"Larra goes into the ventilation shafts to retrieve a vial of demon blood, but he's not alone." tt1245112,_lJxUhMK4ZE,"Facing an onslaught of zombies, things go pretty badly for the GEO squad." tt1245112,epbmsvL_da8,"The GEO Squad is horrified, discovering the religious experiments performed in the apartment, but Father Owen worries about bigger problems." tt1245112,ZG5aSjd3ejo,Martos investigates the apartment's lower levels despite Dr. Owen's warnings. tt1245112,MATnKRvs8K8,The GEO squad learns the truth about Father Owen and that they might be dealing with demons. tt1245112,QYtcftNU7Gs,"Dr. Owen, Rosso, and Angela attempt to track down Tristana, a demonically-possessed girl." tt1245112,yLJU7uywTXc,"Angela, possessed by the demon, dispatches Rosso and reveals the scope of her powers to the hapless Dr. Owen." tt0816711,cP4Q_O_ZKWA,Gerry leads his wife and daughters to safety through a zombie-filled building in New Jersey. tt0816711,4rGu9dMtQWA,Gerry and company make their way through a research lab to find a virus that could deter zombie attacks. tt0816711,YqjCnk31_Ss,"Gerry runs for his life from countless zombies, but makes a game-changing discovery in the process." tt0816711,uU0DNCV22dU,Gerry realizes too late that singing is attracting the zombies - and that they can climb. tt0816711,GDhe2vbzjwU,A poorly timed cell phone ring utterly destroys a stealth mission against the zombie horde. tt0816711,BLIuci6IBIg,Gerry watches in horror as a commuter becomes a zombie in a mere 12 seconds after being bitten. tt0816711,YdhnqI-beNo,Getting stuck in traffic gets even worse for Gerry's family with a violent zombie outbreak. tt0816711,mvbLx0pbohk,"Trapped on a plane with zombies, Gerry and Segen take desperate measures to survive." tt0816711,PAkRrp46SBE,"After injecting himself with a virus, Gerry tests whether or not it's a zombie deterrent." tt0816711,0mwkZUkwEHw,Gerry narrates how the world has changed since the zombie outbreak. tt1925518,bFrORNp20Js,"After finding out that there are bombs attached to his elephant, Kham and Ping-ping fend off LC and No. 2." tt1925518,MMcWHkb8Ank,Kham takes on some henchmen as the temple starts to burn around him. tt1925518,TVPDfLM9zIw,LC decides to take matters into his own hands and attacks Kham. tt1925518,EgkBHCLS0cA,Kham and Ping-ping are attacked by No. 2 and some henchmen. tt1925518,l2zPMIA3SYk,Kham and Ping-ping go up against No. 2 after he kills Ping-ping's sister. tt1925518,6hxZUTUMkf8,Kham and No. 2 face off on an underground railway. tt1925518,X4b1jFHAC98,Kham runs into a very large moped gang that seems intent on catching him. tt1925518,Acmav3U4xOE,No. 2 and some henchmen find Kham at the same time the revenge seeking sisters Ping-ping and Sue-sue do. tt1925518,suz-NZ9GZ80,Kham attempts to escape from a large gang that is chasing him through the city. tt1925518,iWrr0qhRNaA,Kham is attacked by a gang of moped riding punks. tt1925518,t0hEHI9fcsU,The gangster LC organizes a fight between No. 20 and another fighter. tt1932767,2ZMYorajMhk,"While Susanna is recording a new track, Lincoln spends time with Maisie." tt1932767,9qmOMFvxI2I,"After Margo is forced to pick Maisie up at school, a stranger arrives to pick her up on behalf of her mother." tt1932767,SIgiRJmMz1A,Susanna and Beale argue bitterly over the custody of Maisie. tt1932767,OkiJH2Y4z08,Maisie gets to know Lincoln better and shares him with her classmates. tt1932767,dbu7AfaXHvE,Maisie and Lincoln share a fun day at the High Line. tt1932767,2f2hB_pRG24,While at breakfast Beale tells Maisie that he's moving back to England. tt1932767,IcawiMd_kkM,"While picking up Maisie, Beale meets Susanna's new husband, Lincoln." tt1932767,lhY7RZxINlY,Lincoln and Maisie find an emotional Margo at her apartment. tt1932767,J-AftfYVSI8,"While on the way to the store, Susanna appears and takes Maise back." tt1932767,aQobE1tPeGw,Lincoln returns to join Margo and Maisie at the beach. tt1932767,rLh0UcN75A4,"Susanna comes to take Maisie away, but is met with reluctance." tt1932767,vSCT2CffKDI,Lincoln comes to pick up Maisie while she's sick. tt3316948,lYEy4it6m3Y,Mike finds the perfect moment to propose to Phoebe. tt3316948,Z1Cv11vpjhQ,"While Phoebe tries to escape from Yates, Mike learns more about Laugher." tt3316948,Kz6J6Y2DpL0,Mike fights his way through aisles of Tough Guy operatives to rescue Phoebe. tt3316948,AJWkS8Ja9YA,Mike uses a creative approach to wipe out his newest threat. tt3316948,LODjoHqYzyw,Laugher tries to finish off Mike for good. tt3316948,z-glL87s5lg,Mike searches for answers from Phoebe after he nearly dies from the chemical gas. tt3316948,u-M2Zb_B7BY,Mike and Phoebe try to escape from Rose's basement before more Tough Guy operatives can find them. tt3316948,1lYlFbsVOjI,Two Tough Guy operatives come to kill Mike and Phoebe at the police station. tt3316948,Cgow0KNc4Hc,Rose discovers that Mike might be involved with the super disease that has put the town on lockdown. tt3316948,OzVZMadRoSQ,Mike surprises himself when he's able to fight off two attackers. tt0029947,xAmgUnwxCUc,"Baby, the leopard, shows up at the police station, revealing to David and the rest that Susan is out hunting for a different dangerous leopard." tt0029947,5h8EbDuS0so,Dr. David Huxley and Susan Vance learn about mating cries from Major Applegate. tt0029947,0JoIRmQW2es,"Susan Vance apologizes to Dr. David Huxley, but ends up bringing down his precious dinosaur." tt0029947,aAkF2Du59Qw,Susan and David try to get George the dog to find the dinosaur bone. tt0029947,9P-MtbTe3O4,David doesn't know how to handle Susan. tt0029947,yPzAML0fs2o,Constable Slocum tries to get the truth out of David and Susan tt0029947,EQDbDIz1Y0E,Susan keeps David around by sending his clothes to the cleaners. tt0029947,CiWjwS4lqLY,"David asks the butcher for 30 pounds of uncut sirloin steak, while Susan is nearly arrested by Constable Slocum." tt0029947,BVrZAIo3wX4,"First, Susan rips David's jacket. Then David rips Susan's dress and they try to avoid embarrassment." tt0993846,6K7Xjdfc0bA,"Jordan tries desperately to get Donnie off his tapped phone, but they are both high on quaaludes." tt0993846,DuGfgv_eDEo,"Jordan needs to get home quick, but has a hell of a time just getting to his car because he took a huge dose of quaaludes." tt0993846,5mMnqYaXDk4,Jordan inspires his troops to work as hard as possible to be rich because being poor really sucks. tt0993846,rasqcYuX80A,Jordan argues with his wife about his cheating and other issues. tt0993846,2foDdTT3cG8,Jordan shows his new company how to use his script to close a sale. tt0993846,l8kCCIoP1jg,Mark Hanna teaches Jordan how to stay relaxed in the high pressure world of Wall Street. tt0993846,86TpCwZ4FvY,Naomi tells Jordan that because of his mistakes she's not going to sleep with him for a very long time. tt0993846,xbBD7VIJ4cc,Mark Hanna teaches Jordan how to make money on Wall Street. tt0993846,TxHITqC5rxE,Donnie Azoff asks Jordan what he does for a living and decides to quit his job right there and work for Jordan. tt0993846,I13gMF50oqE,"Donnie explains to Jordan that he married his first cousin, but it's not really as bad as everyone thinks." tt3397884,VF_-AB2-Ux4,Matt gives Kate an explanation for what is really going on with Alejandro and the drug traffickers they are pursuing. tt3397884,h-UqMU-MIig,Alejando and Matt use questionable tactics to pull information out of Guillermo. tt3397884,Jig6r9FAwAY,Alejandro and Matt interrogate Ted about his involvement with the Mexican drug trade. tt3397884,u-pvs7gVNHo,"As Kate inspects a crime scene, an explosive is detonated, killing some of her fellow agents and leaving her shaken." tt3397884,aa2agiADM04,"When Kate, Alejandro and their fellow agents spot a waiting ambush by criminals at the border, things quickly get out of hand." tt3397884,GYPwh07eWok,"When Kate takes Ted back to her place for a hopefully good time, she discovers a heart-stopping secret about him." tt3397884,RwuhnfKnTYY,"Kate and Reggie take part in an FBI raid to discover missing hostages. When their enemy returns fire, they make a horrifying discovery." tt3397884,qcGEIq1AEGM,"When Kate discovers Alejandro breaking the law for his own personal agenda, she tries to stop him." tt3397884,4RKjRiO1FPU,Alejandro uses Silvio as a pawn to get at Manuel Diaz. tt3397884,aDJJBMXiwiI,Alejandro threatens Kate and forces her to sign a document stating everything they did was by the books. tt3397884,vv84nq5_ZY4,"Alejandro finally gets his revenge on Fausto, the man who killed his wife and daughter." tt1592281,X9YOhb0FiIM,Margot is disappointed when Lou rebuffs her while he is cooking chicken. tt1592281,UKvQEHlkqJU,Daniel asks Margot what she is going to do with him and later shows him an artwork he made of her. tt1592281,zeTYlUcrfRY,Margot and Geraldine have a great time exercising until Margot pees in the pool. tt1592281,Q1Yz3J6OGQQ,"Margot realizes that, because of her choices, she can never be Lou's partner again." tt1592281,t3aYQKl1qbc,Lou reacts badly when he realizes that Margot is leaving him. tt1592281,D6AzQTg_bPA,"Geraldine falls off the sobriety wagon, but reminds Margot that she has made just as bad of a mistake with her life." tt1592281,vioUisPavvA,"Geraldine celebrates with her friends, but Lou invites Daniel over as well." tt1592281,xxmnK05iITY,Daniel meets Margot's husband and takes them on a rickshaw ride on their anniversary. tt1592281,HhBAeTBIj0U,"Margot and Lou go to dinner on their anniversary, but have a hard time having a normal conversation." tt1592281,jMHH-fH6oBc,Daniel tells Margot what he would do to her sexually if he had the chance. tt1592281,1SnNjUe_vuQ,Daniel catches Margot staring at him and asks her what she is afraid of. tt0787474,gaLJooLoKjE,Eggs is raised by the Boxtrolls in their undergound home. tt0787474,ENsr9cH6irs,Winnie fails to teach Eggs how to be a proper gentleman. tt0787474,MJNG_rYJPV0,Eggs and the Boxtrolls attempt to dismantle Mr. Snatcher's machine to take him down once and for all. tt0787474,hggAh6GibqQ,"When Mr. Snatcher and his henchmen come looking for them, the Boxtrolls flee to their underground cave." tt0787474,cudA9HUl6AA,"Winnie tries to tell her father Lord Portley-Rind about the Boxtrolls she saw, but he is too busy discussing cheese." tt0787474,L1DsFsUlgwM,The boxtroll exterminators chase Eggs and his friends through the village and capture Fish. tt0787474,wNhse5NZgR8,"Dressed up as Madame Frou Frou, Mr. Snatcher performs a song and dance routine to tell the story of the Boxtrolls." tt0787474,7iM1XM9SvdQ,Eggs chases after Winnie in order to find information about his missing friends. tt0787474,vicOpIdpQVM,"Despite a sincere warning from Eggs, Mr. Snatcher eats the fanciest cheese in the world, which leads to explosive consequences." tt0787474,Vz2OwX1XETQ,"In an effort to be sophisticated, Mr. Snatcher and his henchmen sit down for a fancy cheese tasting." tt4547120,dlEoKlncQsQ,"In an effort to avoid being detained by the military, Nick and Molly head underground into the prohibition tunnels, but they soon find themselves trapped below." tt4547120,Lbq1U6X78Io,"A major earthquake hits as Molly works on her science project, destroying her house and killing her father." tt4547120,0mT5xT39Zvs,"When Molly and Nick are forced to drive over a closed bridge, it begins to collapse and they attempt to rescue a woman and her son." tt4547120,u-LCigQRPdk,"Trapped in a collapsed tunnel, Molly and Nick begin to run out of air. At the last moment, Molly discovers a way out and leads Nick through an explosive escape." tt4547120,UxIpYfsTkew,"When another earthquake hits, Molly and Nick escape by the skin of their teeth. Meanwhile, Ali and the hotel guests get stuck in an elevator just as Mr. Lowenstein has a heart attack." tt4547120,sJOA_CvMqvg,"Just as all hope looks lost, Hank arrives in his helicopter to rescue Molly and the kids." tt4547120,7ZbYv65cJ1M,"A desperate mother holds Nick at gunpoint, threatening to shoot him if he does not give up his car." tt4547120,_9xxKArFYfo,"In an effort to make everyone evacuate before an earthquake, Molly fakes that Nick has a gun in his backpack. When no one believes her, Nick must rescue the barista." tt4547120,oaSLgsnsrBk,"As they rush to the roof to meet a helicopter, Nick and Ali fall out a window. Then, Molly and the kids must fight their way through smoke and fire." tt4547120,CMFFeWPy-NM,"When Nick hits a baby hippo with his car, its angry mother goes on a rampage." tt0290747,lOR8JBFySr8,"Sheriff Williams, Teri and Rene confront the Man-Thing, trying to set its restless soul to peace." tt0290747,rITjAbXej3o,"Sheriff Williams questions a pair of rednecks, but they're less than thoroughly hospitable." tt0290747,hfOL-PefOz4,Frederic Schist meets an extremely ironic end at the claws and tentacles of the Man-Thing. tt0290747,z_3ODalPzT4,"Sheriff Williams has a bad night in the swamp, but not as bad as a worker at the Schist oil refinery." tt0290747,LDWuu8GZnkM,Sheriff Williams and Deputy Fraser meditate on fear as they plunge into the swamp while Wayne and Rodney come face to face with it. tt0290747,X-t_25jG36E,"Rodney finds his brother Wayne deep in the swamp, along with something much worse." tt0290747,598QZf6lkKw,"While the town prepares for war over the Man-Thing killings, Pete Horn enters the swamp to boost its power." tt0290747,P94WndY58eg,Sheriff Williams learns from Pete Horn about the origins of the Man-Thing. tt0290747,hmYIR6v-oVE,"Sheriff Williams learns from Rene part of the Man-Thing's origin, escaping just in time to witness the creature attack Deputy Fraser." tt0290747,QImoaNjTtng,"Frederic Schist and Jake Schist head into the swamp to kill Rene and Ted Sallis, not knowing that one of them is laying in wait." tt0290747,hAQ2xTr4U64,Deputy Fraser gives new Sheriff Williams a sense of how bad his new job is going to be. tt1529572,UoM7CdIs2b0,"When Annie finds outs that Charlie had other girls, she finally accepts the truth of her situation." tt1529572,NQ1-De19txE,Will tells Annie how much he admires her confidence and how much he loves her. tt1529572,7yhDJzI-hjg,Will and Gail talk about some of his issues. tt1529572,vk9wMNmKk6Q,Will and Annie get in argument over her feelings for Charlie. tt1529572,jsTtWLXjHZM,Annie goes to her first therapy session with Gail. tt1529572,iCfplC1mMoI,Will and Lynn find out that Annie has been raped and they go to the hospital to pick her up. The FBI also get invovled. tt1529572,txbmUDJcF6k,"With the urging of FBI, Annie Agent Doug Tate tries to contact Charlie again." tt1529572,_azX1Pr0vkA,"Annie meets Charlie, and he is not who he seemed to be." tt1529572,YHTyGMYFsU0,Charlie convinces Annie to go with him to a motel. tt1529572,BTbo7NyijNA,Charlie tells Annie the first lie about his age. tt0096787,HhEyYbmTh_Y,Charlie says an emotional goodbye to Anne-Marie when the Angel calls him home to Heaven. tt0096787,9YFfoCKHAQQ,"Charlie and Itchy use Anne-Marie to win bets, so that they can make enough money to build their own casino." tt0096787,pHB8Z35H29k,"Itchy searches the Mardi Gras parade to warn Charlie about Carface's plan to kill him, but he arrives too late." tt0096787,oX3PL_u2LbQ,Anne-Marie overhears Charlie telling Itchy that he doesn't care about her. tt0096787,whCKn6cV-0k,"Charlie rescues an orphan named Anne-Marie, who has the ability to speak to animals." tt0096787,y_3OE_uIS8I,Charlie sacrifices himself in order to rescue Anne-Marie from a fiery disaster. tt0096787,27U6dyYE9rA,"Ken Page comes close to eating Charlie Barkin, but stops when he realizes that he has an excellent singing voice." tt0096787,wufYHJkbl7k,"Charlie tricks the Whippet Angel, and winds back his own clock in order to get back to earth." tt0096787,1PLIzuZNuJI,Anne-Marie daydreams about the thought of finding her parents. tt0096787,qe5s8UTNw4c,"Charlie Barkin finds himself in heaven, and realizes that he's been murdered." tt0096787,5KaMqmlEcJQ,Charlie B. Barkin and Itchy return to their old digs after Itchy rescues Charlie from the pound. tt0238546,gS6ibQuZIS8,Maharet and Lestat defeat and kill Akasha. tt0238546,6yXY1OKtYPY,Lestat turns on Akasha and gives the other vampires a chance to attack her. tt0238546,Ze4qFn-a-2E,Lestat is instructed to kill Jesse Reeves. tt0238546,FuJsy0k28tk,"Queen Akasha and her new king, Lestat, confront the Ancient Vampires who don't agree with her plans." tt0238546,kdDH7Ynw5Lc,"While Lestat and Marius fight off other vampires during a concert, Akasha, the first vampire, arrives to help." tt0238546,xW0Babu_t8U,"Lestat de Lioncourt is kidnapped by a man named Marius de Romanus, who reveals himself to be a vampire." tt0238546,BWMFLJwEVyQ,"Jesse Reeves is attacked by vampires after entering their club, but is saved by Lestat." tt0238546,kr5skPIftSY,Lestat shows Jesse what it's really like to be a vampire. tt1453403,SlYRjU2KBfk,William Vincent goes on a collection for Victor that doesn't go as well as anyone expected. tt1453403,g7kdpW2hZOI,"Victor performs his duty with William Vincent, leaving Ann to her fate." tt1453403,sIPWv4xB9-0,William Vincent's money-collecting job gets dark when he realizes what he's delivering to Juliette and Cindy. tt1453403,Tolt_g4y_tI,Victor comes to William Vincent with a business proposition and dark hints about his employer. tt1453403,Q1B3sGDIxtg,William Vincent has an oddly existential first encounter with Ann. tt1453403,v9AtWaaaShE,William Vincent and Ann bond over a kimono. tt1453403,MlACEw_4JXY,"Victor introduces William Vincent to his boss, who has a unique way of dealing with him." tt1453403,Tf3r8Bty06I,William Vincent gets caught pickpocketing with far-reaching consequences. tt1453403,R8JhC8HArkQ,William Vincent broods over dinner while the Gangster sleeps with Ann. tt1453403,Sei2JdiJ5Ic,"Ann reads her letter from William Vincent, detailing his ""death"" and ""rebirth.""" tt1825157,plEvMJ44Exs,"Simon goes out with Hannah, who admits that she was being stalked by the man who committed suicide. Simon is equally smitten with her." tt1825157,AFCv59zRbGo,James advises Simon on women. tt1825157,EdC7U0ZRALs,"Simon and James go to dinner, where Simon is impressed by James' confidence." tt1825157,11qpNfXStVI,"Simon meets the new employee, James, who looks exactly like him." tt1825157,CKMpPpuKLFI,"James helps Simon get a relationship with Hannah, but she actually likes Simon better." tt1825157,IEA7PR8i5Gc,"Simon pretends to be James on a date with Hannah, but things don't get going until James takes over." tt1825157,GM8DRazH4ck,Simon has an awkward conversation with Hannah and then gets his project stolen by James. tt1825157,vjMRE5A5tVc,Simon confronts his double at work. tt1825157,ogEjqyO09yg,"Simon tries to get Hannah to break up with James, but James still has the upper hand." tt1825157,HrIyLLIHrDA,Simon jumps from his building in order to kill his double and be free. tt0453451,bXS1LMaU7TM,Bean finally reaches the beach and everyone bursts into song. tt0453451,ueAsO0Gq8vI,Bean makes a romantic connection with the lovely Sabine. tt0453451,BgjJ00HhyCQ,Bean hijacks Carson Clay's movie premiere with his own videotaped masterpiece. tt0453451,cA-laLpcLIw,Bean tries to keep himself awake while driving to Cannes. tt0453451,55d4Hx_kaGc,"Bean and Sabine hurry to the premiere of Carson Clay's new movie, but have to pass a police roadblock." tt0453451,t5eRT32QWdg,"Bean tries to steal a scooter on the road, but it doesn't work." tt0453451,wUEYIhP_9ag,Bean lip syncs to various types of music while trying to earn money. tt0453451,eH7EyPs_Va8,Bean chases after a truck on a bicycle. tt0453451,P-3iw8l0lB8,"After making a father miss the train, Bean has to find a way to comfort the son left alone." tt0453451,MCJcxb_RtII,"Bean tries oysters and lobster for the first time at a French restaurant, but doesn't like it." tt1270792,FjKQ2_lTY_c,The Crossroads-Hawthorne choir performs together at the state finals competition. tt1270792,gzyR9eQJMvQ,"The Church of the Gospel Youth Choir wins the competition and bequeaths their award to the true winners, the Crossroads-Hawthorne choir, and Hawthorne gets enough money to keep its doors open." tt1270792,2MYB0Gp7RLs,"The Church of the Gospel Youth Choir performs ""Praise"" during the state finals competition." tt1270792,W6aifznLeXE,Mrs. Howell tells the church choir that Hawthorne must shut down due to lack of funds. tt1270792,yq7rSvWzhNQ,Zachary convinces the two choir groups to play nice and work together. tt1270792,SfN8z2mHAmw,Zachary encourages the choir students in his new school to express their individuality with their music. tt1270792,BzeKxlcKil4,Savannah and Miles argue over who is in charge. tt1270792,ujhnKE7fscw,Zachary has just learned that his father will be on deployment for another six months and he sings a song about feeling overwhelmed. tt1270792,THe7-5-D-gM,"Zachary tells Aundrea that he has to move, which means he won't be competing on her team for the choir state competition." tt1270792,Jhho1OqCSiY,"The Hawthorne Community Church choir performs ""This Little Light of Mine"" in the district choir competition." tt1853739,FxzaTk1VwGs,Crispian reveals Erin's part in his master plan. tt1853739,HNxe49fa2p4,Things heat up between Crispian and Drake at the dinner table. tt1853739,QrbBBAXBPE4,Erin's grisly confrontation with Felix and Zee ! tt1853739,wtnRz9SIZAY,Felix gives several hard truths to his brother Drake. tt1853739,hphPtQjqfQQ,"Erin overhears a chilling conversation between Felix, Zee, Fox Mask, and Lamb Mask." tt1853739,gjUN_o1mtW4,Felix and Zee startle Paul while he's clearing rooms and an important discovery is made. tt1853739,gQjGFMTbNxU,"Kelly runs to the neighbor's house for help, not knowing what's waiting for her." tt1853739,pR5to9mS2cg,"Aubrey grieves in bed while Erin attempts to fortify the house, but intruders are lurking everywhere." tt1853739,rUW2mfL---k,"Aimee's the fastest runner in the family, but even she might not be able to outrun death." tt1853739,rqwx9NRpmHc,Tariq's nasty demise at dinner puts the entire family in danger. tt2039345,yc8UHdsuy68,"Tom Selznick begins his concert performance, but soon discovers a threatening message on his sheet music." tt2039345,UYpqBY5DTUI,"During the concert, the killer explains the rules to Tom through an earpiece." tt2039345,xjCbC99HMdo,"Tom texts a message to Wayne while performing, but Wayne meets the killer." tt2039345,VMO06PHDR9E,Tom makes a call to Wayne in the middle of his performance to save his wife's life. tt2039345,C1_BoN9f1hw,"Tom tries to save his wife, but comes face to face with the killer himself." tt2039345,nvRcQGBL7Cw,"Ashley goes looking for Wayne, but she finds more than she wanted." tt2039345,pgae5kDwHT0,The killer forces Tom to play the piece that he is most afraid of playing. tt2039345,W4Zj0uwpIwo,Tom and the killer face off in the rigging above the stage. tt2235108,yygkcTQjw7s,Lionel crashes the racist party and Samantha hangs Coco with her weapon of choice. tt2235108,9cwWiC6Gs80,Lionel gapes in horror at the frathouse party while Coco exploits the nightmare she unleashed. tt2235108,W2EZOorGpI0,"Lionel takes Samantha's guided tip test, while the Dean and the President have an unfortunate conversation about race." tt2235108,ObyANYT5y_c,"Samantha shuts down Gabe on race rhetoric, but she loves him anyway." tt2235108,QZ9b-TPTC_U,Gabe speaks from his heart about Samantha's conflict between her black and white heritage while Reggie bangs on her door. tt2235108,tpkTStVMv_Q,"Coco seduces Troy, which exposes both of their inner demons." tt2235108,qRahFLj59bc,"Samantha explains the concept of Ooftas, Nose-Jobs and 100s, with Troy, Coco, and Reggie standing in for each, respectively." tt2235108,yShrBo6NiI8,Samantha and Coco each make inflammatory videos to spark emotions on campus. tt2235108,tKjyNywkBEQ,Samantha and Troy go head to head for the student head of the Afro-centric Armstrong Parker House. tt2235108,cypqB_GKzjA,"Kurt picks a fight with Samantha, and isn't prepared for what comes next." tt0084649,85PCzIbeQGU,Mrs. Brisby uses the power of the necklace to save her home and family from sinking into the mud. tt0084649,1OV3T6GWhIg,Nicodemus explains hows the rats of NIMH gained their intelligence and gives Jonathan's necklace to Mrs. Brisby. tt0084649,umIBbT6uwZI,"When Jenner tries to steal Mrs. Brisby's necklace, Justin comes to her defense." tt0084649,UlddepR-iRg,Mrs. Brisby finally meets Nicodemus and learns the truth about her husband's death. tt0084649,GfH27NmFVSw,"Mrs. Brisby and Jeremy narrowly escape a run-in with the farmer's cat, Dragon." tt0084649,SI_DOVqlJA4,Mrs. Brisby's search for Nicodemus is thwarted by a rat guard. tt0084649,Mr7Ned_vQgU,"When the plow threatens their homes, Mrs. Brisby and Auntie Shrew take action." tt0084649,Dd0PTNGBFUM,Mrs. Brisby goes to the Great Owl to plead for wisdom and help in saving her son's life. tt0084649,eqv02JDVQ1o,Mrs. Brisby seeks a remedy for her son's illness from Mr. Ages. tt1302067,mGq0iyW-f7A,"After capturing a rare turtle that could save the park, Ranger Jones stalls the mayor's Chief of Staff so that Yogi Bear and Boo Boo can fly close enough to get it." tt1302067,riXp9rJ90Xw,Yogi Bear and Boo Boo attempt to steal a picnic basket. tt1302067,c5zKpr5gmgk,"Boo Boo tracks down Yogi, who is failing at being a normal bear." tt1302067,8R9KLz7qDIY,Ranger Smith confronts Yogi Bear and Boo Boo after they ruined the festival to save the park from being closed. tt1302067,e9cysHm38Kg,Yogi Bear and Boo Boo find Ranger Smith at his new job and convince him to help save Jellystone Park. tt1302067,iwAciIQDE4A,Ranger Smith catches Yogi Bear and Boo Boo in the middle of stealing a picnic basket. tt1302067,NLDt8Iyh5f4,"Ranger Smith, Rachel, Yogi Bear and Boo Boo escape from the mayor's guards by going down the river and into some rapids." tt1302067,oqEm8mihoA4,Yogi Bear shows Boo Boo his new glider which is specifically for stealing picnic baskets. tt1302067,H37dm_eRkLU,"Ranger Smith introduces Yogi Bear and Boo Boo to documentary filmmaker, Rachel Johnson, who wishes to film them." tt1302067,DvX8DbtVspE,"After making a promise to avoid people for a few days, Yogi Bear has Boo Boo handcuff him to a tree." tt0379786,AUBx-geW0Tg,River fights the Reavers while The Operative learns the truth about them. tt0379786,tBMAuUeeqdE,"Mal beats The Operative, but shows him the truth instead of killing him." tt0379786,2PQw2qw3BDw,Mal explains what keeps him and his ship going through all adversity. tt0379786,kgu59EAXbic,"After watching her brother and friends fall back before the Reavers, River takes matters into her own hands." tt0379786,BnnCQlp2msk,"Wash successfully saves Serenity, but at the cost of his own life." tt0379786,X_VSJfHiNPA,Wash (Alan Tudyk tries to safely pilot Serenity through an intense space battle. tt0379786,WERocs57QaE,"Mal meets The Operative, but Inara helps him escape." tt0379786,mXLSLzeu-mM,River threatens Mal and his ship. tt0379786,hXCaF68sDPU,River sees a strange video which makes her attack everyone in the bar. tt0379786,AC9SF7TOyHQ,The Operative kills Dr. Mathias for leaking classified information to River. tt1705773,YnsmoUntOzI,"The military takes a full frontal assault against a Megalodon attack, but it is not enough. McCormick discovers that his fiance Corrine has been killed." tt1705773,H6FYQzuVMfA,"The Megalodon swallows an entire submarine, causing it to go nuclear." tt1705773,jtHIEO1Zdfk,The military attacks the Megalodon and the Crocosaurus as they ravage their way through Miami. tt1705773,8s4TDbX1B_s,Putnam and McCormick race across the beach to get to a raft and stop the destruction being caused by the beasts and the military. tt1705773,WD2I5Jpe9bk,"When the Megalodon attacks their ship, Putnam and Jean jump overboard, allowing the Crocosaurus a chance to escape." tt1705773,KapEcfMelL4,"When a Crocosaurus destroys their helicopter, Hutchinson is knocked unconscious. McCormick loses control and believes she is his dead fiance." tt1705773,DMhcIrShxec,"As they investigate the Crocosaurus, Legatt becomes a quick snack and Dr. Putnam barely makes it out alive." tt1705773,n0MW9qK_xlY,"In an attempt to force the Crocosaurus back into the ocean, McCormick devises a plan to execute an arc flash and electrocute it." tt1705773,MLFzROHNLmM,"In one final showdown, McCormick and Putnam lure the Megalodon and Crocosaurus to a volcano, which they use as an explosive to defeat them." tt1705773,yBM4SCBZ7qM,"The military attempts to trap the Megalodon and Crocosaurus in a dam, but they are too powerful. The beasts engage in an epic battle, completely destroying the country of Panama." tt0087365,Tsk9gCcchg8,Jane turns down Esker's marriage proposal and Tarzan makes things worse by protecting a friend. tt0087365,_AmKz3iZ1K8,D'Arnot teaches Tarzan how to speak English and shave with a razor. tt0087365,MCN-beeZSKk,Tarzan returns to his Grandfather's estate in Scotland. tt0087365,zOiq-2Jpy-U,Tarzan sneaks into Jane's room and romances her. tt0087365,NiVB-n5b0hE,Tarzan returns to the jungle to live out his days in his true home. tt0087365,JgPlgAnASbY,D'Arnot teaches Tarzan his real name and that he has a family far away. tt0087365,EkE_bNKYqCM,"Tarzan shows off his lack of manners and then his perfect mimicry at dinner with his grandfather, the Earl of Greystoke." tt3181822,TPgdAesH76E,"As Noah rushes back home to stop her, Claire makes an alarming discovery about what he has been hiding in his basement." tt3181822,wvVrDGmqHjI,"When the school bully won't leave Kevin alone, Noah comes to his rescue in an extreme way, leaving Vice Principal Vicky helpless to stop it." tt3181822,BvXUga4d3Zc,"Noah's plan to build a happy life with Claire goes terribly awry, leading to his violent demise." tt3181822,y9ZcKltnEx8,Claire desperately tries to clean up photographs of herself having sex that have been plastered all over her classroom. tt3181822,V5DgQr_g6SY,Claire awakes with instant regrets after a passionate night with Noah. tt3181822,3QyEUXjHzOc,"Noah seduces high school teacher Claire, and the two spend a passionate night together under the covers." tt3181822,lIVO6oEk4Hk,Noah threatens Claire after he feels the deal they made with each other has been broken. tt3181822,uaLxw2PDnmk,"Lured by Noah, Claire heads to Vicky's house, only to discover that she has been mutilated." tt3181822,kKC8076NZOY,"Noah provokes Kevin about his parents' relationship, causing him to almost die from an asthma attack." tt3181822,asNSRS-UbHM,Noah causes a scene in the school bathroom to lure Claire into his arms. tt4566574,yKloyDDxo7g,Dane announces to the world his plans to use Kolossus and Mega Shark to create a new world order focused on environmental cleanliness. tt4566574,b0VU3j1hp70,Spencer and Agent King find and interview Dr. Abramov hoping to discover a way to stop Kolossus forever. tt4566574,xDC6IlQdTLs,Kolossus and Mega Shark battle to the death! tt4566574,mcp6KbG_5rg,Agent King and the others distract Mega Shark with a Kolossus fight so they can search an underwater lab for what they need to destroy Kolossus. tt4566574,rpWuKoDm_9o,"Mega Shark turns Dr. Bullock's against him, tossing the whale's explosive-filled corpse aboard the ship upon detonation." tt4566574,npWeWCC06fU,"When Dane loses control of Kolossus and Mega Shark, Kolossus kills Dane and destroys his ship." tt4566574,T2jMiMTHY80,Dr. Gray leads Mega Shark to an inlet and with the help of Lt. Parker and Agent King they are able to trap Mega Shark and save Dr. Gray. tt4566574,G_v8xjmxtLY,"Agent King grabs the remote they need to control Kolossus, but celebrations turn sour when Dane reveals he is a traitor." tt4566574,LxnWduj4P-g,Agent King's plane gets caught in the crossfire when Dane and his team seek out the Mega Shark just as Admiral Jackson and his crew try to kill it. tt4566574,53vQBW_4hzw,CIA Agent King's mission goes awry when Benedict turns out to be a traitor and Kolossus escapes and roams free. tt0975645,0_hajel24IE,"At the premiere of Psycho, Hitchcock watches from behind closed doors and dances to the dulcet tones of fright." tt0975645,2AHF50fxTNw,"Hitchcock and Alma meet with Janet, which sparks enmity between Alma and Hitchcock." tt0975645,3iZ1TVOskhA,"Hitchcock works with his wife, Alma on the final edit of Psycho." tt0086856,OwQCAyUyuSs,Buckaroo and John Parker fly an 8th dimensional spaceship and defeat Lizardo. tt0086856,8jK3RW6rSCM,Buckaroo and his team tests a rocket propelled Ford in attempt to break past Mach 1 and into another dimension. tt0086856,g95ZXrh2oK4,The commendable Buckaroo reaches out to a suicidal Peggy or Penny in the middle of his band's set. tt0086856,ah6TYuJ1iQg,"Having saved the planet yet again, Buckaroo and the crew check out in style, awaiting their inevitable next adventure." tt0086856,2H2c3F_rzqw,"Buckaroo and the gang meet up with Sydney, an old colleague of Buck's from his medical school days." tt0086856,1w_JdfgygYY,"On the phone with Buckaroo, Dr. Lizardo demands a working overthruster in exchange for sparing Penny." tt0086856,f6hhVIV_LPs,"Before launching an attack, the president reviews the necessary paperwork." tt0086856,VQSA2-NbbL8,Two duck hunters discover a massive space pod. tt0086856,GjA92f_iCHQ,"When his experiment goes awry, Dr. Lizardo is possessed by reptilian aliens." tt0086856,mh7fUlkkX68,"Buckaroo and his team receive a clear ultimatum: Stop Lord Whorfin, or watch the earth be destroyed." tt0086856,1egkqpDOn2A,Buckaroo warns the president of the Red Lectroid threat. tt1951266,QyOM1rQ7iT8,"When Johanna visits Katniss in the hospital, she taunts and mocks her about her role in the rebellion." tt1951266,cZKYcRqPh-o,Katniss and President Snow discuss how they were deceived by President Coin. tt1951266,-CXBIAH4Kgo,"When Katniss is held hostage by a refugee, she speaks out against President Snow, causing her to be shot." tt1951266,SBq1FLgZJug,"When Katniss blames herself for the deaths of all her friends, Peeta explains what their deaths truly meant." tt1951266,ZGM5Y16SSb8,"Years after the war, Katniss relaxes in a field with Peeta and their children. She explains to her baby how she managed to survive after all she went through." tt1951266,xCQ3ZdnptUM,Katniss makes a shocking decision at President Snow's execution. tt1951266,tvj61hwINaE,"When Finnick is overcome by the Mutts, Katniss is forced to let him go. Then, she and the other victors race through a series of deadly traps." tt1951266,H6bQXth1CEs,"The Capital plays a horrible trick and drops a load of bombs on a group of innocent children, leading Katniss to lose the one person she holds most dear." tt1951266,y03_LmnDaTY,Katniss and the other victors are ambushed a swarm of hideous creatures called Mutts. tt1951266,OF22NIhPKgE,"When Leeg 2 accidentally activates a booby trap, a flood of horrible black ooze rushes after the victors, killing some and forcing them on the run." tt2908446,uEV9jxF2tOo,"Peter betrays his friends and exposes them to Eric, forcing them on the run and causing chaos at the Amity compound." tt2908446,wyMDViXXXXU,"When a fight breaks out with the Factionless onboard a train, Tris is nearly killed, only to be rescued by Four at the last second." tt2908446,ns9WcZlqv_I,"Under the influence of a truth serum from Candor, Tris admits her hand in the deaths of her parents and Will." tt2908446,ADXqDq5zCTg,"Thanks to help from Peter, Four and Tris are reunited." tt2908446,ST7mR3xLdys,"In an effort to get to Tris, Jeanine uses mind control devices to force her friends to walk over a ledge to their death." tt2908446,n-5bVE4K2Ls,Four comforts Tris and they share a romantic moment. tt2908446,2RYNIbNVFhg,"Tris undergoes a rigorous simulation designed to test her for dauntlessness, in which she is tricked into believing her mother is in grave peril." tt2908446,hqJxDiGXTWc,"After passing all five personality tests, Tris finally opens the box and reveals the hopeful message inside." tt2908446,irhRobBI3BE,"During a simulation, Tris is tormented by Jeanine, causing her to lose her temper and fail the Amity test." tt2908446,KQa_SiTfU34,"Tris takes on her biggest demon, herself, so she may pass the Amity test and open the message in the box." tt2872750,w-A750XbFAo,Shaun and his friends dress like humans in order to evade aggressive animal control officer Trumper. tt2872750,7tUYeqOLuYU,"In order to check on The Farmer, Bitzer disguises himself as a doctor and sneaks his way into the hospital." tt2872750,TPiRiwKEz28,"Bitzer tries to catch the farmer's runaway trailer, but it's moving too quickly and headed straight for the busy city." tt2872750,2SiwZWhmbS0,"Regardless of Trumper's dangerous pursuit, The Farmer is finally returned home with the help of his animal friends." tt2872750,ulLxPcOmDmU,Shaun and his friends trick their farmer into sleeping so they can have a day off watching movies in the farmhouse. tt0470752,v3JlEi3CbGI,Nathan tells Caleb about his project. tt0470752,0Gq5R5ffrtE,"Ava finds freedom, leaving Caleb trapped inside the compound." tt0470752,jGAsihLnYqM,Ava warns Caleb about Nathan. tt0470752,mAtmopQxu0o,Caleb meets Ava for the first time. tt0470752,lOgPGO4JnaA,Caleb and Ava talk about the power cuts. tt0470752,8cQVspzP0Ms,Ava shows Caleb how she would like to look on their date. tt0470752,b7C69HqnV8s,Nathan avoids Caleb's question about Ava by dancing with Kyoko. tt0470752,Kbsi0KOunj8,Nathan reveals his true plan for Caleb. tt0470752,LxXrccK4S3I,Ava and Kyoko get revenge on their creator. tt0470752,ruOXWHbyfjo,"Nathan shows Caleb his laboratory, and explains how he created Ava." tt2872750,oAheN_ARn1U,The Farmer defeats Trumper after finally getting his memory back. tt2872750,74BF0nnqO5o,"Trumper discovers Shaun and his friends inside their trojan horse, disrupting their rescue mission." tt2872750,WazcuKEk2to,Shaun and his friends sing a song to help the baby get to sleep and the Farmer hears it and recognizes the tune. tt2872750,dKPw9-jpA3Y,"Shaun meets his fellow prisoners in the animal shelter, including a disappointed Bitzer." tt2872750,bzGDMtX1IU0,Chaos ensues when Shaun is revealed and ultimately captured by Trumper. tt1356864,hW_NzisexqU,Joaquin Phoenix muses about the fraudulent life he's been living and desires to be more truly himself. tt1356864,4GCBqzsWF_M,Joaquin Phoenix performs his new hip-hop song and then gets into a fight with a heckler. tt1356864,oLQ5NOAIAw0,"Joaquin Phoenix meets with Ben Stiller about a part in his new movie, but he has no interest in acting anymore." tt1356864,MvFkGlAqYYc,Joaquin Phoenix joins other celebrities at rehearsal for a performance that will honor the late Paul Newman. tt1356864,XzSBAvxA5GE,Edward James Olmos drops by to give Joaquin Phoenix some cryptic advice about drops of water and evaporation. tt1356864,2v0aoYD6OOM,"Looking for a fun night, Joaquin Phoenix calls an escort service." tt1356864,5Q1f6Oij1NQ,Joaquin Phoenix meets up with Sean 'P. Diddy' Combs to discuss the actor-turned-rapper's music. tt1356864,H177TSRFiTo,"After one of his first live performances in Venice, CA, Joaquin Phoenix reflects upon the unexpected reaction of the audience." tt1356864,-xCS0zZPAoA,"After his bizarre appearance on the Late Show With David Letterman, Joaquin Phoenix breaks down and begins to regret his career change." tt1356864,mCbY7cAv7r8,"After being verbally attacked by Joaquin Phoenix, Anton wants revenge and shows Joaquin a ""bit"" of his own." tt1356864,9Dd423YO56c,Joaquin Phoenix notices the changes that have occurred in his life and shares a fun moment with his friend Larry McHale. tt1356864,n-omBTsCIDE,Joaquin Phoenix meets with Sean 'P. Diddy' Combs to discuss the reality of his latest career move. tt1116184,TyXD96iAjuM,Johnny Knoxville pushes the plunger on an explosive pinata. tt1116184,Y4HSQKUAPKM,Steve-O answers the age-old question of what happens when you bungie jump in a port-a-potty. tt1116184,33NlZaZVCgw,Wee Man gets into a little fight at the bar. tt1116184,pIyrp5Aj7LY,"Will the Farter pays the Jackass crew a visit to show his many, many talents." tt1116184,09m9ltjwuJU,Steve-O and Dave England have a not-so-great time with a beehive tetherball. tt1116184,lEFx1qmW4ts,Ryan Dunn reenacts the iconic Maxell cassette tape commercial from the 80s. tt1116184,t4M3hbVh3U4,Johnny Knoxville and his friends go hunting for some human ducks. tt1116184,nXjnagPujjE,Steve-O and Ryan Dunn attempt to calm a territorial ram with music. tt1116184,rMS4ESFlfDk,"Johnny Knoxville pranks his friends with a giant, swinging hand." tt1116184,293PMWaznLM,Welcome to Jackass 3D. We hope you survive your experience. tt2626350,XX2EpE8SLK4,"During their final performance, Sean and Andie share a passionate kiss." tt2626350,uJnIaD7gDlQ,LNMTRIX and The Mob go head to head in an elmination round. tt2626350,ma7zprvD7UA,"LMNTRIX, The Mob and The Grim Knights compete in the first round of the dance competition, The Vortex." tt2626350,-WrDbBvPN00,"While walking around, Sean and Andie find an old school carnival ride." tt2626350,NXH48hZ6798,"The crew performs ""High Voltage"" as their audition video to The Vortex dance competition." tt2626350,bX-o8WaWp2Q,Moose introduces Sean to Andie. tt2626350,mn6Wmceebfc,"Chad wants to join the crew, but they don't think he has the proper moves. He surprises them all." tt2626350,AZtman1rdUw,Jasper taunts Sean into a dance off in the club. tt2626350,J8JhG2j8E_w,LMNTRIX performs their final routine for the last round of the competition. tt2626350,RUox4o5J5x4,Alexa announces The Grim Knights in the final round against LMNTRIX. tt0107983,h5RMM02YE3U,"Jack hallucinates first Mona, and then Natalie, walking into his diner." tt0107983,mZzkE03B64o,Jack gets some vengeance on Mona by killing her in the courthouse atrium. tt0107983,kYA44FTePNQ,Jack falls for Mona's seduction one last time. tt0107983,CZRn7cU3UsU,Jack shoots Mona on the docks after she tries to strangle him. tt0107983,utFeHmJ1iUw,Mona attacks Jack in the car by wrapping her legs around his neck. tt0107983,GiykTnvV8Mo,Mona has a risky proposition for Jack. tt0107983,OE5CnBYFkZA,Falcone takes one of Jack's toes. tt0107983,EvWX1drAfhg,Don Falcone gives Jack a philosophical lesson in pacifism before threatening him. tt0107983,z7_AwjQz_AY,Jack recounts a terrible dream set in an amusement park with Natalie and Mona. tt0107983,t_BSGcc9XkY,Natalie points a gun at Jack in a dinner game. tt0107983,W1GrNDtRkgE,Mona seduces Jack in the motel room before federal agents arrive. tt0107983,PLPb1pB0vJg,Jack meets Mona for the first time and takes her to the safe house. tt1229340,P4JGOWnX9VU,The fierce battle of the news teams commences while Walter's recital takes place across town. tt1229340,-zAp8NOpVKU,Jack Lime and his news teams prepare to do battle against Ron Burgundy when other news join the rumble. tt1229340,ZLJX6CEkgto,Ron makes an ass of himself with racial and sexual comments at dinner with Linda's family. tt1229340,65N3OBBrImc,"Ron has a run-in with the god of news anchors, Jack Lime." tt1229340,ZdkOLsRkjBU,"Brick defends his newfound love, Chani to her insulting boss." tt1229340,VHz5xaHrCCU,"Brick meets the attractive and quirky Chani, his potential soulmate." tt1229340,GKNv1vjCnQI,Brick freaks out when he can't see his legs during the weather report. tt1229340,MMigS6B4t3Q,Mack Tannen has a creepy exchange with Veronica and then fires Ron for his many failures as an anchorman. tt1229340,lwkdeQQiCms,"Ron meets Linda Jackson his new boss, but he can't get over her skin color." tt1229340,IfY49zx7RU0,The news team reminisces about old times until they realize that no one is driving the RV. tt1229238,PhbkMQ89QPM,Ethan and his team go to great lengths to stop the nuclear missle from blowing up San Francisco. tt1229238,zh5VtQ-x4QI,Ethan tries to recover the briefcase before Hendricks and so he can stop a nuclear missle. tt1229238,Bi75jrN5yDk,"As Jane gets the code from Nath, Brandt tries to escape the server room." tt1229238,J4me49IF70k,Ethan chases Wistrom though a sandstorm in Dubai to recover the nuclear codes. tt1229238,2nZBPdh9_Jc,"While Ethan tries to catch Wistrom, Jane deals with Moreau." tt1229238,Ep85AkCkk-U,Ethan finds the quickest way to get back down to the the hotel room. tt1229238,cYGVkLGyGqE,Ethan tries to escape the Kremlin before he can be captured. tt1229238,wr4rZEPQ09Y,Ethan climbs the Burj Khalifa Tower to break into the server room. tt1229238,p-5nqrOtaug,Benji helps Ethan escape the Russian prison. tt1229238,7DkV8WE7DFA,Ethan and Benji deceive a Kremlin guard to sneak into the archive room. tt1583421,HcuptmqW_kA,Lady Jaye and General Colton rescue the President. tt1583421,P0A0LnjsGSA,Roadblock must go through Firefly to stop the Zeus missles from demolishing the Earth. tt1583421,LgMEyrPhq3k,"Storm Shadow, Snake Eyes and the rest of the Joes try to stop Cobra Commander from launching all of the Zeus missles." tt1583421,zDdHlO3v8Kg,"Just as Roadblock is about to take out the imposter President, he's attacked by Firefly." tt1583421,zVzeXqLbqug,Snake Eyes and Jinx try to keep Storm Shadow's body away from the Cobra ninjas. tt1583421,22bHxTTLcdc,Zartan and Cobra Commander show the power of Project Zeus by destroying London. tt1583421,82wvQMuzbow,Duke and the rest of the G.I. Joes are slaughtered by a miltary air strike. tt1583421,ZMROlNs8iWw,Snake Eyes and Storm Shadow face off at the Cobra temple in the Himalayas. tt1583421,Nr6NPOkDbpU,Storm Shadow frees Cobra Commander from the maximum-sercurity prison. tt1583421,nn1qvGiHvLc,Duke leads his team of G.I. Joes through the warehouse to secure the nuclear missle. tt0493430,3gLU99wxUyA,Johnny Knoxville dresses up with an old man with a set of very low-dangling balls. tt0493430,zaYgv8likRs,"Ehren McGhehey thought he was pranking Jay Chandrasekhar posing as a cab driver, little realizing that he's the butt of the joke." tt0493430,UwPJMQwo2xw,How to spice up your teeter-totter experience: add a bull. tt0493430,Mb1kLqoiDuA,Here's an example of why never to stand in front of riot control devices. tt0493430,8MoQTjNnlmA,Johnny Knoxville and Bam Margera surprise their friends with a swam of bees. tt0493430,FPnF0-VdHNk,Bam Margera gets a painful present from his good buddy Ryan Dunn. tt0493430,4nSA_B8pC_s,Johnny Knoxville and the crew wishes the audience a fond fairwell. tt0493430,7wSQMwlqy0s,The Jackass crew takes part in a running of the bulls. tt2333784,ooXE33T2Dls,Barney tries to make it onto the helicopter before the building collapses. tt2333784,4VKym1WU9go,Barney faces off against Stonebanks in a showdown that has been long since overdue. tt2333784,bDAdgXd7Znk,"With Stonebanks's reinforcements coming in, the Expendables make their way to the roof." tt2333784,2hqwpvVHly4,Drummer brings some much needed support to the Expendables. tt2333784,u54-0h7QZN8,"Christmas takes on big Krug, while the rest of the Expendables fight Stonebanks's army." tt2333784,IpW3LbAEypo,Stonebanks tells Barney's new recruits the origin of the Expendables. tt2333784,6kk46qE9oWk,Barney and his new recruits capture Stonebanks at the art museum. tt2333784,QhVvJyCaQS0,Barney's old group of Expendables get into an altercation with the new crew. tt2333784,E-g_up1kWt0,Barney and Bonaparte get tricked by the rambunctious Galgo. tt2333784,9b1Ii-U2lao,The Expendables flee the docks to retreat from Stonebanks and his henchmen. tt2333784,kuAwUNzVX2I,"Barney and the Expendables run into an old nemesis, Stonebanks." tt2333784,2CxV_NKhsgY,"The Expendables break Doc out of captivity, but not before Doc gets his revenge." tt0286788,MPu6DXTG2ps,Daphne dances with Armistead but it is Ian on stage who makes her swoon. tt0286788,wVAL10Zb9Q4,Daphne shares a few words with Clarissa after being told to leave. tt0286788,DQaHIFC9034,"Late at night in the kitchen, Daphne and Henry bond over chocolate cereal." tt0286788,y6i9UH65q2g,"Henry Dashwood learns that he has a teenage daughter, from America." tt0286788,0D5EL4HLd3g,Daphne gives Armistead a dunk in the river.k tt0286788,KprKHSAAn7U,Henry Dashwood informs the press that he is bowing out of the political race. tt0286788,vVPtQKHiWwM,Daphne asks Ian to help teach her to become a proper lady. tt0286788,8-9wlwVvR1M,Henry meets Ian before he takes Daphne out on his motorcycle. tt0286788,2YbvpD3WQnk,Daphne argues with her mom Libby about deciding to go find her Dad in Britain. tt0120800,Tw_kFAuhkbI,Kayley sings about her father and her dreams for the future. tt0120800,1V53lOLjgiw,Ruber sings about his evil plan to take over Arthur's kingdom. tt0120800,f57Vat6YZUI,Garrett sings about why he lives as a hermit in the woods. tt0120800,CEvHsuyVfRo,Garrett and Kayley meet a friendly two-headed dragon and then are chased by very mean dragons. tt0120800,RR5kEQ9LgvU,Garrett and Kayley sing about their love for each other. tt0120800,_lpIHzRR1xY,Kayley and Garrett try to retrieve Excalibur from the giant ogre. tt0120800,GUWxHgIn91w,Kayley and Garrett work together to defeat Ruber. tt0120800,UfHqN7KPZ5s,"Garrett, Devon and Cornwall join Kayley in the fight against Ruber and his minions." tt1571249,Hda6MwCdwI8,"Maggie attempts to drown herself, but Milo comes to save her just in time." tt1571249,V7gceiThJ6U,Milo goes over to Rich's house to get some answers about their past relationship. tt1571249,RKt17dM8eFk,Maggie tells Lance about her affairs and then confronts Milo for leading Lance to the truth. tt1571249,QEQp25xImoA,Maggie confronts Milo about resuming a relationship that he had with his English teacher in high school. tt1571249,yP9sbfNwtv0,Milo and Maggie go out for Halloween. tt1571249,0npouzhhZTo,"Milo lip synchs ""Nothing's Gonna Stop Us Now"" by Starship to cheer Maggie up." tt1571249,UZnEqDr9PKE,Maggie tells Milo about being on birth control and her affairs. tt1571249,5X_mnh-S0pU,Maggie and Milo have some fun while she cleans his teeth. tt1571249,TNVwN7IfVAw,Maggie invites her depressed brother Milo to live with her in New York. tt1571249,Sl1G9Jxc9hI,Maggie gets angry at Judy for being an absentee mother. tt3899796,lntqgt5jbjg,"When Claudia shows Billy how to take on a Sharknado, the two share a romantic moment" tt3899796,VV55v_IKVJI,"When their spaceship is unable to take off, Fin and his family call for back up from Nova." tt3899796,lh3WF7shhlM,"As Fin fights off a hoard of space sharks with a laser chainsaw, April goes into labor and is then devoured." tt3899796,J6i7WPT1cFk,April emerges from the inside of a shark to present Fin with his newborn son. tt3899796,9Ipb0xcxdqk,"When a mysterious masked hero rescues him from the strong winds of a Sharknado, Fin discovers that it is Nova." tt3899796,hSe-_6hmDgI,"A storm of sharks bring bloody terror to Universal Theme Park as April, Nova, Fin and Claudia all try to surive." tt3899796,eKrrYByQTQI,"Sharks bite off all of Lucas' limbs, leaving him with nothing but his chin to detonate a bomb and clear the way for Fin and Nova." tt3899796,mvFQciz5wRc,Fin and Nova save the day as sharks rain from the sky upon a Nascar race. tt3899796,zu9vz_Krzb0,Fin and the President take on a hoard of sharks that are descending upon the White House. tt3899796,wBFzZM9YqEo,"As Fin and April search for their daughter, Fin gets trapped on a rollercoaster full of sharks." tt1680138,BBXUqYlAK6o,"As Nikki and Terry continue their fight in the water, alligators and snakes terrorize the party, causing all out mayhem." tt1680138,nftQNmMRqG8,Tom and Zeke attempt to blow up a python with some dynamite. tt1680138,Z6rYB0AOMjA,RJ and Ray discover a huge batch of python eggs. tt1680138,_UhMIImQ-Bo,Justin and Billy come across much bigger game than they expected while hunting. tt1680138,ejRc7XEbAQI,Justin is completely consumed by a swarm of snakes before Terry is able to rescue him. tt1680138,m6U7qRsCp6M,"Giant snakes and gators run rampant, causing destruction throughout the city." tt1680138,-zEXV5oiWgc,"When Terry discovers that Nikki has crashed her party, they get in a food-filled cat fight." tt1680138,3I44VJIIzKM,"When Nikki is cornered by a massive alligator, Terry uses her car as a bomb to defeat it and rescue her." tt1680138,eG4B_DIenu8,"After celebrating that she has survived falling from a helicopter, Nikki is devoured by a gigantic snake." tt1680138,dP9mVoZ-cmQ,"Diego arrives for a daring rescue, but the mutated gators won't let Terry and Nikki escape that easily." tt3063516,0DnThxPfhJE,Irving gets the help of two unsuspecting movers to help him put his wife's corpse in his trunk. tt3063516,smUy5NzszX0,"Desperate to find some satisfaction, Irving gets himself stuck inside a soda machine." tt3063516,DoqPEhVHdBM,Billy does a special dance for his final performance of the beauty pageant. tt3063516,bQXJoR6tLao,"After Irving reluctantly agrees to take Billy to his father, a fight with his daughter leads to his wife's body falling out of the casket." tt3063516,1fVPS7eLbME,Grandpa has an accident while at breakfast with Billy. tt3063516,FqYJIUS39Ck,Irving gets more than he bargained for when he tries to sell his wife's old bed. tt3063516,IV0hoLATbJY,Irving tries to ship little Billy to his father in North Carolina. tt3063516,TaJeShUtQjc,Irving gives all the ladies at the strip club a show of his own. tt3063516,IbkWZDej_v8,Billy and Grandpa have a bunch of fun on their last day together. tt3063516,vQSkLuEOdMM,"Grandpa tries to fix a coin operated ride for Billy, but instead gets sent through the store window." tt1450321,qgbSfZMR99w,Bruce tries to get a closeted detective to out himself with some bathroom graffiti. tt1450321,aPkfoqjZXog,Bruce misses his wife and so calls his friend's wife Bunty for some intense phone sex. tt1450321,BH3ApQHJslA,Running into the wife whose husband died makes Bruce descend into painful memories and drug-induced hallucinations. tt1450321,e37vIq1VL0I,Amanda tells Bruce what she really thinks of him. tt1450321,z6FcMyuo0R4,Bruce comes face to face with a killer who is not afraid of wasting a cop. tt1450321,d5CmbbyeDco,Bruce uses his power to gain sexual favors and threaten people for information. tt1450321,jQPKeltJ-Vk,"Bruce is disappointed when Amanda takes over his investigation, but is surprised by a visit from the woman who he tried to help." tt1450321,IMYTK5IyZ9E,Bladesey watches a video where Bruce says goodbye. tt1450321,LrIJa8zJs_0,"Bruce hallucinates of Dr. Rossi, who accuses him of killing his younger brother." tt1450321,RsSl85y9JN4,Bruce harasses a flower shop worker until she gives him information on a murder suspect. tt1587807,iRLGo522K5A,"Fitch tries to charge the battery to his phone by sucking on it so that he can call in military assistance, all the while being chased by Ayudante and his soldiers." tt1587807,YK7cNXMRifo,"Fitch tricks a giant piranha into eating a helicopter manned by Diaz, killing him and allowing an opportunity to eliminate the angry fish once and for all." tt1587807,gCnWKrvrCNw,A vicious school of piranhas attack Fitch as he scuba dives and follows him onto land as he tries to escape. tt1587807,xiVeUn1rF3E,"An angry school of piranhas spontaneously attacks a group of party-goers and politicians, eating them alive and disintegrating their boat." tt1587807,bJXBNZ7FU40,Fitch rescues an injured woman by bicycle kicking a swarm of attacking piranhas. tt1587807,XSTakNMoF2s,"Fitch steals one of Diaz's helicopters in an effort to defeat him, leading to an explosive battle in the air." tt1587807,iUi2XKRnJD0,Monroe and Fitch watch helplessly as a school of angry piranhas devour an entire warship. tt1587807,fn1dNeTNduk,"When an enemy soldier falls into the river and is attacked by piranhas, Higgins tries desperately to rescue him, but Gordon knows it is too late." tt1587807,pShuaMA2rY4,"As Fitch, Sarah and the scientists try to escape, massive piranhas begin throwing themselves out of the water and causing explosions." tt1587807,YjF4rd3J58U,"Grady orders a submarine attack on a school of ravaging piranhas, but even an explosive missile is not enough to take them down." tt0110989,VazRhsh6uys,"Richie Rich tries to play baseball with Tony, Omar, Pee Wee, and Gloria Pazinski at the sandlot." tt0110989,kFFuJQRlm38,"Richie Rich tells Lawrence Van Dough that, until his parents are found, he will run the company himself." tt0110989,-ZlL0LLfjKY,Richie Rich attends a posh business school where they learn the ins and outs of making money. tt0110989,ROzcf7QoDjU,"Cadbury gets into a fight with a prisoner, but escapes through the window." tt0110989,bhYOGuozHd4,Ferguson forces Richie and his friends into a cage which will scramble their molecules if Professor Keenbean can't find a way to stop him. tt0110989,uQlKjRScXww,"Regina Rich shows Richard Rich the new family portrait, Mount Richmore, while Richie Rich tries to tell his dad about his recent baseball game." tt0110989,myOTp1wr3Bg,Professor Keenbean shows Richie Rich the newest inventions he's working on in the lab. tt2637276,yb5FDpFLc1M,"Ted begs to drive the car, but then crashes into a barn." tt2637276,8YDVV75itA0,"Sam throws a cookie in a rude guy's butt crack, but then learns that he is blind." tt2637276,P0JUY_IEZts,Sam tries to get help from a powerful lawyer while Ted and John fight over a beer. tt2637276,f0wEV9jySXg,Sam shows to the court that Ted has a soul and is capable of love. tt2637276,us_GLuu2SAc,"John, Ted and Sam prepare for Ted's trial in an 80's inspired montage." tt2637276,z6ViDZpVoYc,A paranoid Liam Neeson asks Ted if Trix cereal is exclusively for kids. tt2637276,ER6BpmtBLkk,Ted and John have a mishap in the storage room of the sperm bank. tt2637276,jot1h4tgY6M,Ted and John sing the Law & Order theme song and then Ted discovers a rather disturbing porn stash. tt2637276,83xaGtnlvR0,John and Ted infiltrate quarterback Tom Brady's bedroom to steal some of his sperm. tt2637276,3TWv-3cC9NM,"Ted meets his pot-loving new lawyer, Sam L. Jackson." tt0104040,LMGAxyUnURI,"After a night of celebrating, a very inebriated Kate makes an awkward pass at Doug." tt0104040,Equ4D2mZDHc,"With the pressure of the Olympics mounting and her friends and family at each others' throats, Kate confesses to her past failures." tt0104040,XcMH5ntEWGQ,"With the competition at the Olympics at an all-time high, Coach Pamchenko convinces Doug and Kate to practice an intense and possibly illegal figure skating move." tt0104040,m946LkLieG8,"A hungover Kate stumbles upon Doug during a ""morning after"" moment with their female competitor." tt0104040,TrRogqsarno,"After Kate sees Doug with another woman, she goes into a fit about her missing ""lucky"" earring. Her fianc soon realizes that her antagonism has nothing to do with the earring and everything to do with Doug." tt0104040,YmbXanCiB-U,"Kate agrees to perform the controversial ""Pamchenko move"" in-competition because she loves Doug." tt0104040,Zm0f0oFUxVA,"During their first practice together, Doug learns the hard way what a ""Toe Pick"" is from Kate, but he gets his revenge." tt0104040,PwSihgp_iTE,It's a match made in hell when Kate meets a potential new partner in Doug for the first time. tt0104040,hl31RQCC_Bc,Kate panics when she discovers Doug's pre-competiton jitters as he vomits moments before they go on. tt0104040,5sr-kuYhYGU,Sparks fly between Kate and Doug as the New Year rings in with a bang. tt2109248,dOzGnmkbahw,"Optimus, Hound and Bumblebee attack KSI headquarters." tt2109248,Y9isIphHz2w,Optimus Prime reunites with all the remaining Autobots. tt2109248,9C_429woeJ0,"While Optimus battles Lockdown, Cade is confronted by Attinger." tt2109248,qzZegCkbJAw,"Optimus releases the Dinobots, and asks them to join him in the fight against the Decepticons." tt2109248,WHu2355LLQc,Cade and his family teams up with the Autobots to fight Lockdown. tt2109248,8koQ3N3w7aw,Optimus and the Dinobots arrive just in time to save the remaining Autobots. tt2109248,yDd3xayehVg,Cade and his family try to escape from Savoy and Lockdown. tt2109248,cxRYIDsZzuE,Optimus finds himself outnumbered when Lockdown joins the fight. tt2109248,4rzrz48Fa_o,Savoy goes to extreme lengths to get Optimus's location from Cade. tt2109248,Vcxvmi26Kfw,Cade fights Savoy in a Hong Kong apartment complex. tt1399103,FYm6LTv7PKk,Optimus has a final battle with Megatron and Sentinel Prime. tt1399103,RonS_bJ7mcU,Sentinel Prime makes a daring escape from Cybertron on the Ark. tt1399103,5qzsQMiYINo,Sam watches in horror as the Decepticons execute their autobot prisoners. tt1399103,RzngZOLn-bk,Lennox and Epps set up a brilliant attack against Shockwave's team of Decepticons. tt1399103,mLk_txo4sYc,Three Decepticons attempt to assassinate Sam and his Autobot escort. tt1399103,oUleBi3j0o8,"Hunted by Shockwave in a collapsing skyscraper, Sam and company desperately fight for survival." tt1399103,0vtLA9LFkSs,Sam uses all the tools at his disposal when Starscream attacks. tt1399103,btwtChuzeaA,"While Optimus battles Sentinel Prime for betraying the autobots, Sam confronts Dylan." tt1399103,a_UjNi8M_bw,"Faced with overwhelming Decepticon forces, Optimus flies in to kick some butt." tt1399103,CDbpKJDcbQ8,Lennox investigates a Chernobyl refinery when Shockwave attacks. tt1055369,Oneax2fARKs,"Scalpel aka ""The Doctor"" gets to work on Sam to learn his secrets." tt1055369,svXObgE9fXc,A joint task force of U.S. Marines and Autobots take down Decepticons. tt1055369,j8Sb4-hMhCg,Optimus lays down his life to save Sam from Megatron's forces. tt1055369,2V_LmUEtPMs,"Alice seduces Sam, but there's more to her than meets the eye." tt1055369,YejpJgtQtuU,"When Sam discovers a shard of the Allspark in his room, he triggers the menace of the appliancebots." tt1055369,fjAnmRjjY3E,Major Lennox tries to keep Sam and Mikaela alive as they cross the battlefield. tt1055369,C73kXYUTC14,"With Ramage and Ravage holding Sam's parents hostage, Bumblebee leaps into action." tt1055369,UzPRCUNCoIA,The hapless Mudflap and Skids protect the even more hapless Leo and Simmons from Devastator. tt1055369,0pbdha7w0V0,Ravage infiltrates a NEST military base containing a shard of the Allspark. tt1055369,cneoNgk9dhM,"Using Jetfire's Upgrades, Optimus faces off against The Fallen, Megatron, and their Decepticons." tt1792794,rWLEdpLkmrc,"Odin and Loki square off in an intense sword battle, which leads to devestating consequences for Baldir." tt1792794,yjuTLT5OWko,"When Thor takes a beating from Loki, Jarnsaxa arrives to offer an unexpected rescue." tt1792794,kBI3jfVTQ04,"As Loki ravages their city in his search for the hammer, Thor and Baldir take on an attack from his beastly demons." tt1792794,nM1xpUM4uUs,Thor engages in an epic sword battle with the Guardian of the Tree of Life. tt1792794,gpEiNwKpq1U,Loki uses his powers of deception to disorient Thor. tt1792794,CNYtVjUf5uc,Thor and Loki face off in one final battle. tt1792794,38mMNp3gyYs,Loki and Thor square off in a battle for the hammer. tt1792794,N2EC0gAi2lk,"Loki and Thor battle over the hammer as Jarnsaxa takes on some angry lindworms. As they try to escape, Jarnsaxa stabs Loki through the face." tt1792794,dEqZRPnfSqo,"Loki destroys the Tree of Life, bringing destruction upon the Earth." tt1792794,QiVqI3oxdtw,"Thor tries to bring his father back from the dead. Instead, Loki appears and Jarnsaxa shoots him in the face." tt0113243,H9Anw9hFNQE,"Dade reveals to his friends that he is ""Zero Cool"", the child hacker who had caused the biggest stock market crash in US history." tt2246549,dgXARu_D5d8,"On the run, Lincoln finds shelter for his men in an unlikely location." tt2246549,ZLbDKSo2QLA,President Lincoln leads the fight to wipe the nation clean of the undead. tt2246549,DOeYRNcSjWM,Stonewall Jackson sacrifices himself to kill off the zombies for good. tt2246549,gu_ckpTcrBI,"After being infected by Mary, President Lincoln decides to send an anonymous message to John Wilkes Booth in order to prevent another zombie outbreak." tt2246549,r_Bdli4c8TA,"With most of the party slaughtered by the zombies, the survivors flee to the fort to escape the hoard." tt2246549,Hc6cJ6xmfM0,"While fighting off the zombies, Mary is splashed with their contaminated blood." tt2246549,pF67F-hlVaA,"As the zombies' numbers increase, the group struggles to move forward with thier mission." tt2246549,UczoOVtUsDA,"After Major McGrill is lost, President Lincoln concludes that it is his duty to rid the union of the zombies." tt2246549,sNi3hwriXyE,President Lincoln leads his men on an assault to reclaim the fort from the zombies and the Confederate survivors. tt2246549,TCIgI-AObzk,"With the town overrun by zombies, President Lincoln and his party fight their way back to the fort." tt0337579,hdrvg0jmL8s,Calvin stands up for the values of his community. tt0337579,iY5fvk3H2Js,Calvin is angry to learn a franchise barber shop is opening across the street. tt0337579,EqEDcrYPp3U,Terri realizes she misjudged RIcky. tt0337579,EKLCchi0iCI,Things get tense when Jimmy goes to Terri's barber chair. tt0337579,85PpxPJ52us,"In an effort to compete with Nappy Cutz, Calvin sets new standards for his employees." tt0337579,wBIVUUflNb4,Gina and Eddie engage in a verbal smack down. tt0337579,L-y9V-gpj9U,Eddie gives some unsolicited advice to a disgusted train passenger. tt0337579,FInHKeP2UoU,Alderman Brown's publicity stunt at the barbershop ends in a brawl. tt0337579,9MDbaBqAqMg,Calvin and his employees let curiosity get the best of them. tt0337579,lRQXQXsXIm8,A customer is scolded by a scorned lover. tt0337579,CoFFpId2-Ak,An argument between Terri and Ricky turns to passion. tt0113243,h_Awe6CI91k,Ramon is arrested for using a hot disc and hacks a phone in jail to warn Kate. tt0113243,pxiwqleE9Do,Dade meets Kate on his first day of school and becomes the victim of her practical joke. tt0113243,r38fEGep2yU,Emmanuel makes his worldwide television broadcast debut and vindicates his friends by presenting new criminal evidence. tt0113243,2son-vLime4,Dade hacks into the school sprinkler system and gets revenge on Kate for the pool prank. tt0113243,SFEc7iy6zmI,Dade wins the bet and Kate is forced to wear a dress on a date. tt0113243,eL2DjnXT4wQ,"Gill and the feds finally catch up with ""Mr. Babbage""." tt0113243,5y_SbnPx_cE,Dade gets arrested and yells a coded message to Emmanuel before he is taken away. tt0113243,GIKfEAF2Yhw,"Dade and his friends beat Plague, retrieve the garbage file, and kill the Gibson." tt0113243,Bmz67ErIRa4,Dade and his friends attempt to hack the Gibson supercomputer while Plague and his team try to stop them. tt0113243,0T0QWPRBau4,"Dade, Kate, Emmanuel, and Nikon prepare the course for their upcoming hack." tt0113243,bcAACOrgVKE,Dade and his hacker friends crack the code to discover that the Da Vinci virus is actually a worm. tt0113243,peBuMWtkw8s,"A young Dade is caught, tried, and sentenced for the malicious hacker crimes of 1,507 crashed systems." tt0388500,y6mlssn2bl0,Gina has an awkward moment when she is found fondling Joe's spear. tt0388500,xCLCNJpKLx8,Lynn and Joanne get into an argument when Joanne tries to make a move on James. tt0388500,07YuuA_2O9w,"Fed up with Jorge's attitude and management style, Gina quits." tt0388500,AwXJIHFo84c,Gina and James step in to defend Darnelle when they witness her boyfriend mistreating her. tt0388500,0CQi2Bb7WE8,Gina is encouraged to offer waxing in her beauty shop by some while others say their man likes things natural. tt0388500,zs5bqvL5Wh4,Gina confronts Jorge in his salon and presents him with some incriminating evidence. tt0388500,hSwy6UI-djc,The Beauty Shop is back in business when Gina keeps the support of her staff and gets some clients in the front door. tt0388500,iNa97wFdFyE,"Ms. Josephine preaches to the beauty shop, and they all join in." tt0388500,Jp9IN_iver4,DJ Helen gives advice over the radio about how to get rid of a man. tt0388500,PHj4OVnU6EY,"Mrs. Towner comes to the beauty shop expecting the former owner, but is treated by Lynn instead." tt0388500,jnoCeqeNM3g,Gina encounters hostility from her new employees when she introduces herself. tt0388500,3FOUAKr22K4,"Gina introduces Lynn a white girl to the beauty shop staff, but she isn't given a very warm welcome." tt0097576,q0vvYHuA10U,Indiana and his father fight off two German fighters with no weapons of their own. tt0097576,mG1vn39lP3M,Indiana fights off several henchmen and tries to get the truth of his father's whereabouts. tt0097576,AwH6-Yh7_SM,Young Indiana fights his way through a circus train while he tries to evade a group of grave robbers. tt0097576,hl8e9i6YiA8,Indiana's and his father's plan of escape goes up in smoke. tt0097576,Np4OojYGixI,Henry believes Indiana dies when the tank goes over the cliff. tt0097576,o4lq3SOB8sw,"While in Berlin recovering his father's diary, Indiana comes face to face with Adolf Hitler." tt0097576,U6tzqlxOr2U,Indiana tries to rescue his father from General Vogel and the Nazis. tt0097576,ilV5Qt01eyc,Indiana and his father fend off Nazi motorcyclists while escaping Germany. tt0097576,s0vNsH81YeA,"Even in disguise, Indiana takes his job as a ticket checker very seriously." tt0097576,VA7J0KkanzM,Walter Donovan drinks out of what he believes to be the Holy Grail. tt0367882,PT3Wpc71ebk,Mutt and Col. Spalko fight between two moving cars for the crystal skull. tt0367882,VbdaoAYveUA,Mutt swings to the rescue as Spalko tries to run Indiana off al cliff. tt0367882,ohnkD-gjNVQ,"After returning the skull, Col. Spalko meets an alien fate." tt0367882,K1R4hHq8yr4,The group is attacked by really big flesh eating ants. tt0367882,fcfYrTFbM94,Col. Spalko tries to manipulate Indiana Jones into helping them so she uses Marion Ravenwood as leverage. tt0367882,iGIooJXEu9E,"After geting stuck in a sand pit, Marion thinks it is the best time to tell Indiana that Mutt is Henry Jones III, his son." tt0367882,sR_xG8DNCSI,Indiana and Mutt try to elude the KGB by driving through a college campus. tt0367882,PHHgumL4rUI,"Surrounded by Irina Spalko and Russian agents, Indiana finds a way to escape." tt0367882,jn4Vhkmb4Lw,"Indiana finds himself in a town full of mannequeins waiting to be decimated by an atomic bomb. Thankfully, he is a little resourceful." tt0367882,npaJix_AarM,A captured Indiana is forced by Col. Spalko to gaze into the crystal skull in order to gain its knowledge. tt0071360,EyexoSJ1tsg,Harry records a seemingly innocuous conversation between Mark and Ann. tt0071360,dWhFW021gwM,"Harry makes a late night visit to Amy, who questions his suspicious nature." tt0071360,7ocMJfJATEw,Harry refuses to take payment from Martin without seeing the director personally. tt0071360,vROih4weKoM,Harry makes a startling discovery when he isolates one audio track of the recording. tt0071360,KRfJqmecqUQ,Bernie demonstrates his telephone interceptor to an unimpressed Harry at a convention of surveillance experts. tt0071360,SH4vCrz5Pb4,Harry dreams of an encounter with Ann where he opens up about his anxieties from childhood. tt0071360,GcPyVMO8bcA,Harry kicks everyone out after Bernie records his intimate conversation with Meredith. tt0071360,YGOmoGwJbTk,Harry collects his payment from the Director but has concerns about his intentions. tt0071360,btXmzToD3W4,Harry completely dismantles his apartment in a desperate attempt to locate a recording device. tt0071360,zbN6F4tfbgo,Harry checks a hotel room for evidence and finds the toilet clogged with blood. tt0077745,wTP_SdjD5ms,"When Matthew is approached by Nancy, he points to her and screams - he has become one of them." tt0071360,nkmg10eebk4,Harry grows impatient with Stan when he questions the purpose of their assignment. tt0077745,es83ejXi5wg,"Matthew and Elizabeth are injected with a sedative by Kibner, but they fight back and escape." tt0077745,LIhdfU4RIdo,"After sabotaging the pod plant, Matthew manages to escape and hide." tt0077745,vdyYR85RNkk,"Matthew and Elizabeth try to take a cab to the airport, but are identified by the Taxi Driver as ""Type H.""" tt0077745,ktEW65QQFgQ,Matthew and Elizabeth are nearly caught when Elizabeth screams at the sight of the dog-man hybrid. tt0077745,eT5XhG7qLcU,Matthew destroys the pod doubles and then leads the gang away from the pursuing horde. tt0077745,3Iambpg_8w4,"As Elizabeth tries to convince her superiors to study the mysterious flower, Matthew is given the runaround by the authorities in his attempt to warn the public of a hidden menace." tt0077745,8mYlqWefu-8,Matthew and the rest of the gang are nearly taken over by the pod people before Nancy wakes them up. tt0077745,0BXa52qz-kU,"Matthew brings the police to Howell's place to show them the pod body, but it has disappeared." tt0077745,q4VIMzhfeYc,Jack calls Matthew over to show him what he's found - a pod body. tt0077745,z_G7CS4mJqc,"When the pod body opens its eyes, frightening Nancy, she wakes up Jack to show him." tt0077745,w2XWa1XuKSI,Matthew and Elizabeth are accosted by Dr. Bennell who tries to warn them before he is killed. tt1137470,1CJuzTFRGhE,Pam opposes Howard's bill primarily on his sexual escapades with lobbyists. tt1137470,3izQonrYukE,A bump on the head triggers a powerful lust in Alice for Howard. tt1137470,DmDtPzG5aU0,"Struggling with her chronic head injury, Alice stands up for her beliefs." tt1137470,EuUUunxYat8,"Distressed at the prospect of a health care reform bill, Senator Bramen chokes on his cookies." tt1137470,cK2a6BzrUO0,"Threatened by Marsha's viral campaign, Pam comes up with a smear campaign of her own." tt1137470,KcPIEP0GpSo,Scott tries to talk Howard out of... whatever the hell he's doing. tt1137470,OLgi3eAwNGE,Alice co-opts a funeral to push a piece of legislation. tt1137470,BtEfmxkeEcY,"Although she really wants health care reform, Alice argues passionately for a military moon base." tt1137470,8pEobIigs5Y,Alice is without hope until she sees a political commerical by Howard. tt1137470,-pCVsB4Dghk,Howard and Alice get to know each other as much as possible before getting it on. tt1137470,iOhZLY0cDV8,Keyshawn reveals what his girlfriend thinks of him... and the stories he's been telling her. tt2023587,YKFQfaDL9gQ,"Mama comes for Victoria and Lilly, but Annabel will not let them go." tt2023587,yGGZUbqbTWg,Mama appears in the house and takes out her anger on Annabel. tt2023587,dUoKiRrGu4c,"Annabel sees what she thinks is Lilly, but Lilly is actually downstairs." tt2023587,yayNXxs76vE,"Dr. Dreyfuss questions Victoria, but gets spooked away." tt2023587,o3w6MouV4NE,Dr. Dreyfuss goes to the cabin in the woods at night to communicate with Mama. tt2023587,qWOQp-rJ0Vc,Annabel feels certain that she saw someone in the house and Lucas is knocked down the stairs. tt2023587,gFES6-SLD_s,Annabel senses the ghost of Mama in the house. tt2023587,yxiNPHXAH0s,"Two men find the abandoned girls in the cabin, but they have become creepy and feral." tt2023587,Eo87byVKgfo,"Jeffrey tries to kill his family in a cabin in the woods, but he is dragged away by an evil spirit." tt2023587,Frwrlztd8C4,The ghost of Mama plays with Lilly while Annabel is in the house. tt1440161,Bdc_wuMUpP8,Marley walks into an advertising meeting and knocks it out of the ballpark. tt1440161,1-70_Trz7M8,"Marley meets God, who grants her three wishes." tt1440161,1Wm5NiRIKB4,"While at the hospital, Marley flirts with her doctor." tt1440161,bHGyGED8qCc,"Marley's funeral goes off with a bang, leaving her to revel in the afterlife with God." tt1440161,1-pgYgfRbZE,"Marley meditates on her short time left, but has time to enjoy some music and flirt with Dr. Goldstein." tt1440161,NJe9WplQKN4,Marley breaks the news of her cancer to her friends much more cheerfully than her doctor did to her. tt1440161,b-7IuyhoAxg,"Vinnie, a male prostitute, pays Marley a visit, but things get a little deeper than the innuendos." tt1440161,MoHQNC_-45U,"Marley bonds with Vinnie, and joins him in pranking a neighbor." tt1440161,8MVN6SVnO_o,Marley's third wish comes true with Dr. Goldstein. tt1440161,7FK6P0sTBrs,Marley's wish to fly comes true. tt1403981,sO6DX9YCIPw,"After a night of clubbing, Tyler and Aidan get into a brawl and end up arrested." tt1403981,zbZmKqU90pE,"Tyler befriends Ally, the daughter of the police officer who arrested him." tt1403981,cQigrDa8S60,Ally explains her rationale to Tyler as to why she has her dessert first. tt1403981,71cKzwJPI5g,"After having dinner, Tyler and Ally have a playful water fight." tt1403981,6Cf1MeHEZn0,"After spending the night at Tyler's place, things turns violent when Ally gets into an arguement with her father, Neil." tt1403981,nxnkxubWt5A,Tyler and Ally open up to each other and share their traumatic pasts. tt1403981,k39MKOaoDhc,"Tyler is lost in the September 11th attacks, but his parting words resonate with his friends and family." tt1403981,PJQgGszBO9s,"Tyler storms into Charles's office and makes a huge scene, ridiculing his father for not showing up to his sister's art show." tt1403981,vxloU1qqM_w,Caroline has a bonding experience with Ally. tt1403981,NOVhlDQthwM,Tyler confesses to Ally that he originally befriended her to get back at her father. tt1403981,0pfqzjPMnoE,"After his sister Caroline endures ridicule at school, Tyler flips his lid, trashes the classroom, and ends up in jail." tt1699755,xbHSfACHWQE,"After finding out the truth, Grace finds Wade and proposes." tt1699755,DkVjSKOdczM,"While on a trip to the market, Wade begins to notice certain things about her family." tt1699755,DOqHpCInxQ4,"After Wade leaves, Grace confronts Virgil about Wade's accusation and slowly everyone's secret is revealed." tt1699755,WOG22C6GDMA,"Virgil challenges Wade to stay in the sweat teepee, while Gloria tries to have sex with Chris." tt1699755,SUQaxkWkB0s,"In order to not go to bed angry, Grace dresses up as a naughty school girl for Wade." tt1699755,px2rxAmJNHU,"After accidentally tripping on shrooms, Wade thinks that Virgil is insulting him and then threatens him with a harpoon." tt1699755,hE7Nc_la-l0,Grace Peeples tells her boyfriend Wade that she is going away for the weekend to visit her family and Wade is not too pleased. tt1699755,eiKSmbxn4UY,Wade and Chris pretend to be thugs to confront Simon and then they give him so friendly advice. tt1699755,DUMW--Zlrcs,Wade Walker finds Gloria's old headpiece and he is transported to the 70's in spirit. tt1699755,OKR7b6NL6IU,"Wade tries to surprise Grace by coming up to visit her, but things go awry." tt1699755,_9rqQ-bOcLc,"While seeking out Virgil Peeples to talk to him about proposing to Grace, Wade finds out that he is part of a nudist community" tt2024432,wwxjFuoLYzQ,Sandy tries to stop the Skiptracer who has kidnapped Diana. tt1649419,UV5zCTfvurQ,Maria dreams of the tsunami while going through surgery. tt1649419,J-7LezqtuMY,The villagers help Maria and drive her and Lucas to safety. tt1649419,LalslCf2kLQ,Henry calls his family back home to tell them what happened. tt1649419,tagDBoX24S0,Maria sees her family before being taken off for surgery. tt1649419,vEFoOcev00s,An aid worker tries to help Lucas. tt1649419,l0RkrxY9mH8,An old woman explains to Thomas the beauty of the stars. tt1649419,4d-EYIZAqXc,"The tsunami bursts through the resort, taking Maria's family with it." tt1649419,FnahBy4Od9Q,Maria and Lucas find each other in the chaos. tt1649419,LfSLyM9XiCw,The family leaves Thailand and realizes they are finally safe. tt1649419,T5-LhZ2YpGc,The boys and their father are reunited after a long search for one another. tt2024432,azkJMOVoNys,"Diana tells Sandy her true life story, but doesn't know her real name." tt2024432,gEq_wldXBww,"Sandy and family visit Diana in prison to congratulate her on her progress, but she is still a bad girl." tt2024432,FOWZ7B1QenY,"Sandy's boss asks him to cut him a bonus check, even though no one else in the company is getting a bonus." tt2024432,1shru4620TE,Sandy tries to arrest Diana at her home and a throwdown fight occurs. tt2024432,YXt8RmeU_AA,Sandy tries to convince Diana to come with him to Denver and explain the misunderstanding to his boss. tt2024432,8pi1bm3890U,Sandy meets his identity thief in a highway accident. tt2024432,s8hKbzuOAQY,"Diana picks up a cowboy in a bar, to Sandy's disappointment." tt2024432,mszPMVP_qcw,Sandy is amazed by the lies that Diana tells a waitress at a diner. tt2024432,fjodt2JnWT8,Diana annoys Sandy by singing to every song on the radio. tt3062074,Hu-xJbVwgPM,"After a final showdown with the Sharknado, Fin proposes to April with the ring he removed from her severed arm." tt3062074,GA_4dJb-nQg,"The New York subway system floods, causing a deadly shark attack that costs Bryan his life." tt3062074,S8aigz2j7-o,"After an inspiration speech to the people of New York, FIn, April, and Skye start taking down the Sharknado." tt3062074,Jipo-s5DGj8,"When a shark jumps on their boat, Ellen pulls out her self-defense weapon, but it is too late for Chrissie." tt3062074,xHgLwzZ2_8s,Skye sacrifices herself in order to create an explosion and destroy the Sharknado. tt3062074,-BNqJHOxNp0,"As the citizens of New York fight back against the sharks falling from the sky, Fin hacks and slashes his way through the center of the Sharknado." tt3062074,1iwBRoAb_Cg,"Flaming sharks start falling from the sky, trapping Fin and his friends inside a rapidly flooding building." tt3062074,sRFINj9g1iI,"The head of the Statue of Liberty becomes dislodged, crushing an innocent business man and rolling after Ellen, Mora, and Polly." tt3062074,C_0W1Q51_z8,"When a sharknado interrupts their flight, Fin attempts to make a safe landing while April loses her hand to a shark." tt3062074,FmPwgLX9fAQ,"When Fin and April's plane flies into the eye of a sharknado, the passengers begin to panic." tt2724064,SQzC9SO66pc,"A swarm of sharks begin terrorizing Fin and the other beachgoers, forcing them to run for their lives." tt2724064,naCL7BZb4Lw,Fin uses his car as a bomb to stop the final Sharknado. tt2724064,LhbPVQUZV0A,"While Fin saves a retirement community from falling sharks, Nova is taken down by an angry shark in the sky." tt2724064,OtBnQ30-Iio,"As Matt and Nova continue to neutralize the tornados, angry sharks start falling from the sky." tt2724064,udcb-kQs-GU,"An angry storm washes sharks on land and causes the Santa Monica Ferris Wheel to break, bringing death and destruction upon Fin and his friends." tt2724064,0slaW0ARW1Q,Matt and Nova use bombs to successfully quell the first Sharknado. tt2724064,uYDdBUasjxM,"Everybody panics when a shark bites through the roof of their car, leaving Fin and Nova to save the day." tt2724064,nsR0Z8f6QAM,"After Colin is devoured, Fin and Nova take on a relentlessly attacking shark." tt2724064,0eBDwVSU56s,"After diving head first into the mouth of a shark, Fin saws his way out, rescuing Nova in the process." tt2724064,qlX5rnpp0iA,FIn rescues Robbie the Bus Driver right as the storm gets worse. tt1772925,En3JBEKvxr4,Jiro explains that in order to be great one has to fall in love with their work and dedicate their life to their craft. tt1772925,eF9nKXO2Zdg,Jiro perfects the traditional Japanese three course traditional meal. tt1772925,ovD51p3YDFk,Jiro explains how he trained his sons harder than his other apprentices so that they can keep up the quality after he's gone. tt1772925,m1HazoM2hOY,"Tuna vendor, Fujita, explains his methods of buying tuna." tt1772925,XYwGKDK87DI,Working in Jiro's kitchen is like working in an orchestra. tt1772925,tWHVvdPw2t4,"Although there is a long history, Jiro dedicated his life to the creation of new sushi dishes." tt1772925,0x0muJjYzp4,Jiro and Yoshikazu describe the taste of umami and the balance of sushi and rice. tt1772925,1LoKbaf2vrU,Jiro's apprentice describes his experience making egg sushi and winning Jiro's approval. tt1772925,f9qQfURhph4,Jiro and Yoshikazu explains the different types of tuna. tt1772925,tyUJnwrI-FU,"Yamamoto expresses how Jiro's son, Yoshikazu, will have a difficult time filling his father's shoes." tt1772925,8nOx6uj46XQ,Food writer Yamamoto explains the five attributes of a great chef and how Jiro has them all. tt0094074,v53yiG9-_xs,Superman addresses the world about how to have peace and then takes care of Lex Luthor and Lenny. tt0094074,9jxlrFSiLCk,"Nuclear Man succeeds in scratching Superman with radioactive nails, which weakens Superman." tt0094074,uQLeZO2Z1YQ,Superman fights Nuclear Man on the moon. tt0094074,0ezPVizHpY0,Nuclear Man asks Superman to take him to Lacy or he will hurt people. tt0094074,lMilbGNSGtI,Superman is interviewed by Lois Lane while Lacy tries to keep track of Clark Kent. tt0094074,f5mcMmE3RL8,Superman battles Nuclear Man who flies around the world causing havoc. tt0094074,-jiQdqoe1cU,Clark works out with Lacy and pretends to have a hard time. tt0094074,P-3Aca5nRn0,Superman takes his beloved Lois on a romantic flight and then kisses her. tt0094074,zWQIwJsqXrI,Superman addresses the United Nations about nuclear arms and then rids the world of them. tt0094074,2KLf6pNcizk,"Lex Luthor meets his newest creation for destroying Superman, Nuclear Man." tt0086393,O9zWwhJYQNc,"Clark Kent defeats the corrupted Superman, and is reborn as the one true Superman, standing again for truth, justice, and the American way." tt0086393,fQ5sMUzf2bo,"Corrupted by kryptonite, a drunk and angry Superman engages in an existential battle against his squeaky clean alter ego, Clark Kent, for control of his soul." tt0086393,1UpUjmKJaso,"Superman freezes a lake and drops a massive ice shard over a raging factory inferno, creating a rainshower that extinguishes the flames and saves the day." tt0086393,5gf0f8WioTM,Superman swoops in to save Ricky at the last second from a harvester combine. tt0086393,rpZI9it2rJM,Gus recounts a series of events where Superman and his do-goodery have ended up foiling Ross's nefarious plans. tt0086393,xrggI-ISIQc,"Disguised as a three-star general, Gus gives ""thanks"" to Superman by offering him a shard of Kryptonite." tt0086393,Ig5uMkprqEk,"Lorelei uses her feminine wiles to seduce a corrupted Superman into disabling an oil tanker on behalf of her boss, Ross Webster." tt0086393,05GysooKs0g,"With his fancy new supercomputer, Ross and his cronies use the machine's built-in defenses to attack Superman with rockets and missiles." tt0086393,Dye66uJlLRc,Superman destroys the supercomputer by using a volatile chemical to melt its circuitry. tt0758752,pesYeCruSyI,Jamie and Maggie conflict over his Parkinson's Disease. tt0758752,LZDir3e680o,Jamie bears his soul to Maggie. tt0086393,p1aWpCsLn40,"Superman flies Gus back towards Metropolis, as the two spend some quality hang out time together." tt0758752,ShwCEMe6wFs,Jamie finds a VHS tape of Maggie professing her love to him. tt1263670,5vZ-SYX-4oY,"Tommy plays ""The Weary Kind"" to an excited crowd while Blake watches from backstage." tt1263670,Z1sTQ3g7V-U,"Jean worries about Bad Blake's poor health, but he thinks he's perfectly fine." tt1263670,RX4-U2r4lS0,Tommy joins his idol Bad Blake on stage to share in one of their famous songs. tt0162222,HLi_w5rCH1I,Chuck watches in horror as his plane goes down. tt0162222,zaQa4ttIyNo,Chuck wakes up at sea to realize that Wilson is gone. tt0162222,PKLVAeI7MU8,"After Chuck reveals his suicide attempt on the island, he talks about the profound sense of hope his failure gave him." tt0162222,5zXWLbr1LyY,"After much trial and tribulation, Chuck makes fire and is elated." tt0162222,mgh0nSkIy04,"Chuck gets into an argument with Wilson over the escape plan, and makes a devastating mistake." tt0087469,U8x2PcmL4pg,"When there are no parachutes in their falling plane, Indiana makes due with a raft." tt0087469,8YzEce7XN_E,Indiana gets into trouble in Shanghai over a diamond. tt0087469,KjdjDz8jhN4,"Indiana, Short Round, and Willie watch in horror as Mola Ram sacrifices a Thuggee to Kali." tt0087469,wAZ6dSIMivk,"While Indiana discusses the Thuggee cult, Willie and Short Round have a surprising dinner." tt0087469,WQXqhk-8h7o,"Indiana and Short Round find themselves in a deadly trap, and worse, Willie is the only one who can save them." tt0087469,7YYge4b8MBk,"With Indiana battling the brute force of the Chief Guard and the voodoo of Zalim Singh, Short Round steps in to help." tt0087469,nPGxSotEa-c,"Indiana drops the bridge on Mola Ram, but he's not out of danger yet." tt0087469,5rkWzIzJiiA,Indiana fights Mola Ram for possession of the three sacred Sivalinga stones. tt0087469,DFa_oIuRDQ8,"Mola Ram floods the mine in an attempt to kill Indiana, Short Round, and Willie." tt0087469,hVGl1d8hRBI,Indiana fights for Willie and Short Round's lives in a death-defying mine cart chase. tt0082971,lH7EYLWHT4Q,Belloq and the Nazis seal Marion in the Well of Souls with Indiana. tt0082971,FRP0MBNoieY,"Indiana and Dr. Brody bristle at the bureaucratic fools who don't know what to do with the Ark of the Covenent. Luckily, Marion knows what to do with Indy." tt0082971,JGB0ZvO8J5k,Indiana tries to fight off the Nazis and get away with the Ark of the Covenant. tt0082971,YcR9k8o4I0w,"When Belloq and the Nazis open the Ark of the Covenant, the fearsome power of God is unleashed." tt0082971,CjCmtqPIRp4,Indiana chases the truck holding the ark and attempts to take it back from the Nazis. tt0082971,SFzxuEm9MyM,Indiana makes a romantic connection with Marion as she soothes his wounds. tt0082971,vdnA-ESWcPs,"When Indiana and Marion are attacked by assassins in the Cairo market, they use all the weapons at hand to defend themselves." tt0082971,jW1CeAVPhVg,Indiana has a brutal hand to hand fight with a Nazi mechanic while trying to escape the dig site. tt0082971,c6XHLe94SJA,"Indiana Jones steals a golden idol from an ancient temple, but then has to outrun deadly booby traps." tt0082971,854Zlz5-vXQ,Indiana tries to save Marion from the evil Major Toht who is after her father's artifact. tt1305583,opt5yQqMIdc,"When the Ramirez family plans to slaughter a goat for a traditional meal, things go very, very badly." tt1305583,Tggs6HJxghE,"It's hate at first sight for Miguel and Brad, but little do they know that they'll be seeing much more of each other soon." tt1305583,lt3h5Ez9t4g,The Boyds and the Ramirezes plan around their families' idiosyncrasies at the wedding reception. tt0814255,mLl9jkYywZY,"Annabeth beats the hell out of Percy, but she doesn't know about his greatest power." tt0814255,wAE_PelhISM,"Grover, Sally and Percy attempt to escape from a charging minotaur." tt0814255,HPjZKKV37do,"Percy, Annabeth and Grover confront Medusa in her lair." tt0814255,9hoSF_oY8Jw,Percy makes the mistake of decapitating a Hydra. tt0814255,tJBeQ9Ewo3o,Percy and his friends find themselves trapped with Hades and Persephone. tt0949731,GltdSC_5Zzw,"Elliot realizes that the plants are killing people, so everyone runs for their lives through the field." tt0949731,m9PEvezB8Nc,"When Private Auster begins murdering his charges, Elliot struggles to discern why." tt0949731,uLtUl4pDmOs,"Elliot manages to make Jess laugh, but his success is very short-lived." tt0949731,_WovFZ_MDW0,Elliot makes a disturbing discovery about Mrs. Jones. tt0949731,5y4ZUMVTGcI,Elliot tells a plant that he comes in peace. tt0416212,NUdXYkBhHkQ,August teaches Lily the etiquette of beekeeping. tt0416212,0OKdy3Hpzp8,August recounts the inspirational tale of how the apiary chose the label for their honey. tt0416212,5mL4wT8DEuU,"Lily accompanies Rosaleen to register to vote, but the regressive forces of the South meet them along the way." tt0311429,_WWIiTlGyYQ,The League of Extraordinary Gentlemen displays its considerable ability in fighting off the Fantom's men. tt0311429,_N1L7UsUeuo,"Mina, a vampire, battles Dorian, an immortal, to the death." tt0311429,gCFBkXA374Y,Tom fights for his life against an invisble man. tt0311429,Z1RHhhCqpqs,"Quartermain, Dorian, Tom, and Mina evade Fantom's snipers." tt0311429,l1SZ4ccagFQ,"While Quartermain fights Moriarty, Mr. Hyde and Captain Nemo deal with a Hyde-Behemoth." tt0056197,Go6CJ0JVOUc,The British land on Sword Beach with Private Flanagan at the front and Captain Maud tt0056197,ZFuV5x1drXU,U.S. Army Rangers scale the 100-foot cliff of Pointe du Hoc in hopes of seizing the German artilliary pieces fortified on top. tt0056197,elwNOiCaRIs,"When his parachute catches on a church, Private Steele watches in horror as the rest of his paratrooper squad gets slaughtered by Nazis." tt2553908,Jq19-ZzDlc4,The Mexican Army faces off against the French Army for the first time at the Battle of Acultzingo Summit. tt2553908,I6uZjdjkRVg,The Count of Lorencez starts his takeover of Mexico by blowing up a munitions supply. tt2553908,LurparxqlNI,"While Juan and Citlali make their escape, Artemio is captured by the French." tt2553908,u0c_2Mk4rJA,President Juarez prepares his people for war against the French. tt2553908,ctU1dN0Js1M,The Battle of Puebla starts as the Mexican and French armies clash against one another. tt2553908,N2IfyUBU9_M,"While the soldiers wait for battle, a woman sings a beautiful melody." tt2553908,t75KclV8x0U,The Mexican Army surprises the French and gains the upper hand. tt2553908,9sSXNopytKQ,Before the Battle of Puebla General Ignacio Zaragoza gives a speech to rally his troops. tt2553908,UCgvftiw0t0,The Mexican Army gathers itself to fight off the French soldiers. tt2553908,tX6-gQGKm40,"After being overwhelmed by the Mexican forces, the French army is forced to retreat." tt0848537,ETchiCkaaYE,Nod protects MK from a bloodthirsty mouse. tt0848537,sT7nVSNlpTE,Nod protects MK from a bloodthirsty mouse. tt0848537,Jz7ZWKumqfQ,Ronin defends Queen Tara from an onslaught of Boggans. tt1389137,x03pWg-naqg,"When a bear escapes from his zoo, Benjamin heads out to track it down." tt1389137,WFGyCzl7_zE,"The zookeepers need to yell Star the Tiger off a rock, but the yelling reveals that someone else may need more help." tt1389137,aaaIdkgVahY,"On the day of their zoo's opening, Benjamin gets close with Kelly in the supply long." tt1033575,yTNjsgJ1wwc,"Julie visits Elizabeth, but she's not there to mourn." tt1033575,5ke6m-Y8DHE,Matt cusses out his comatose wife Elizabeth. tt1033575,EjWWHD7bN3A,Brian reveals how he met Matt's wife. tt1033575,6n99ZpSgKg4,"Matt confronts Kai and Mark about his wife's infidelity, demanding her lover's identity." tt1279935,nna-IuI5SDk,"Phil and Claire aren't great at stripping, but it's good enough for Crenshaw." tt1033575,dXqs6yH3KF8,Alexandra reveals why she had a major falling out with her mother. tt1279935,tDW4X-r1dQI,"After accidently attaching their Audi to a taxi cab during an escape, Phil and Claire find themselves chased by corrupt cops and the entire police force." tt1279935,5TSXq6wBPVM,"When Collins and Armstrong arrive locked and loaded, Phil and Claire attempt to escape in an Audi, though find they are new to the car chase game." tt1279935,8s2lUiTRbpU,"Taste's insecurities come out during an argument with Whippit, while Phil and Claire watch, not sure what to do." tt1279935,QYLjbRd1_DE,"Phil is a little uncomfortable with Claire's former client, Holbrooke." tt1033643,8Dw3DomVuwI,"Given an opportunity to sabotage Joy, Jack chooses another option." tt1033643,GjZ2eEcUTrE,"When Jack tries to trick Joy out of going to their court-approved marriage counseling, it leads to a crazy chase across New York City." tt1033643,TmdzJyoeQls,"Jack and Joy visit their marriage counselor, Dr. Twitchell." tt0429493,xMJFie7JfbY,B.A. fires the opening shot that sets off a mission to steal counterfeit money plates. tt0429493,rTBkVOYzVZA,"Trapped in a parachuting tank, the A-Team finds a unique way to save themselves." tt0429493,IhdEKY1b0tk,"While stuck in a mental hospital, Murdock prepares for his team to pay him a visit." tt0429493,6FqUyxVD4qc,Murdock's crazy helicopter piloting saves the team from a barrage of missles. tt0429493,_ia3xfBh5Pc,Hannibal and B.A. save Face from General Tuco tt2345613,iKzLZIbUM8o,The Leprechaun's hunt of Sophie comes to a head. tt2345613,zkRC3GX5BEQ,"Sophie hits the road, but the Leprechaun hitches a ride." tt2345613,JTgbdnNC5ZE,"Sophie finds herself trapped between Sean and his father Hamish, but the Leprechaun isn't far behind." tt2345613,x22ZX9dGaKk,"The group prepares a trap for the Leprechaun, but he's more wily than any of them could've guessed." tt2345613,6VdHec3IAn8,"The group makes a run for it with the Leprechaun in hot pursuit, but not everyone is so lucky." tt2345613,d3GeSiD2HIs,The group awakens to find themselves bound and left for death at the hands of the Leprechaun. tt2345613,SVZubVb2L8U,Sophie and Ben flee from the Leprechaun. tt2345613,s1s6SqHLUQA,"The Americans flee from the Leprechaun, but David's injury really slows them down." tt2345613,OOgShYNNtn4,"Jeni is awakened by noises and discovers, to her horror, more than she bargained for." tt2345613,WajS0jEmEG0,The Americans make the horrifying discovery that they're locked in with the Leprechaun. tt1194173,4oJlFH_1q3Q,"After stealing a motorcycle, Aaron Cross and Marta try to escape a deadly operative intent on killing them." tt1194173,mBUdGRqiIR4,Aaron Cross and Marta find themselve pursed by the local authories and by a special operative sent to kill them tt1194173,8QYlXDYOhM0,Special operative LARX #3 continues to chase a wounded Aaron Cross and Marta. tt1194173,RvClpuFmfm0,A drone attacks Operative #3's cabin right as Aaron Cross leaves it. tt1194173,EBSjabRNztY,"After bluffing their way into a chem factory to get what they need, Marta and Aaron Cross find that they've been discovered." tt1194173,eWirsPiHnA0,Dr. Donald Foite goes on a killing spree in a bio-genetics lab where Dr. Marta Shearing works. tt1194173,ThbFbz_0qhc,"Four operatives posing as federal agents attempt to kill Marta and make it look like a suicide, but thankfully Aaron Cross intervenes." tt1194173,CrYqMX-T7G8,"While on a training exercise in Alaska, Aaron Cross tries to have a conversation with a fellow operative." tt1408101,Oozc5zchP98,Spock goes after Khan with a vengeance. tt1408101,AQkLWa6J3dM,"With the ship in free fall, Khan attempts to crash the USS Vengeance into Starfleet Headquarters." tt1408101,JFwhPbsr5RU,"While Spock asks Spock Prime about Khan, Kirk starts to get his own ideas." tt1408101,OvdQYzRHlO0,Khan reveals his true identity and origins. tt1408101,tYf5ENc39dQ,"After Kirk sacrifices himself for the Enterprise, Spock arrives just in time to say goodbye." tt1408101,qcVr2eztQEk,Krik and Khan fly through a debris field attempting to board the USS Vengence. tt1408101,w6zGX2qpxzU,Kirk turns to his crew to find answers about the torpedos on his ship. tt1408101,TwQ1KE0CRrI,"While in a shootout with the Klingons, Khan saves Kirk, Spock and Uhura." tt1408101,XDI3snWDWuo,Kirk violates the Prime Directive to save Spock's life. tt1408101,41T9HTzQ92w,"When a mysterious stranger attacks Starfleet Command, Kirk must take control to save his comrades." tt0083550,iQ-P3eRhpKI,"Father Adamsky recites the rite of exorcism to Sonny, who is under the possession of an evil entity from within the house." tt0083550,PSvMn5gSLWs,"When the possession firms its grip on Sonny, he unloads on his family in a harrowing act that became the haunting tale of the house." tt0083550,ZSrz2g2kmb4,"The Montelli's suspect a trespasser on their first night in the new house, but when supernatural forces intervene, the family turns on each other." tt0083550,pQOcRJKuXd0,Patricia confronts her brother Sonny the day after he rapes her. tt0083550,J9aEPBqeLr8,"When Father Adamsky is asked to bless the Amityville house, things don't go as expected." tt0083550,DWyzPO2x67E,Dolores uncovers a previously undiscovered room in their house on moving day. tt0083550,lq13hsPI-yY,Demonic disturbances emerge when Father Adamsky comes to the Montelli residence. tt0083550,r7ApEmhlxro,"An entity in the Montelli residence in Amityville takes possession of their eldest son, Sonny." tt2293640,iJHyw2pjpWA,The Minions finally find a boss despicable enough to complete them. tt2293640,ax3ZNv5jqQY,Kevin must make a tough choice to defeat Scarlett Overkill and save his friends. tt2293640,h-Ss_FvzZcs,"On the quest to get the crown, the Minions kidnap the Queen, and drive her throughout London." tt2293640,1TGWdRK-Ykk,Kevin accidently turns himself into the ultimate weapon just in time to save Stuart and Bob. tt2293640,7booh4V0jaA,"While the rest of the Minions make their way to London, Bob is crowned as the new King of England." tt2293640,zGdF6OXr6t0,"One the way to Orlando, Kevin, Stuart, and Bob learn that the family who acts evil together, stays together." tt2293640,EB74RP-oZqE,The Minions get a surprising amount of entertainment out of the Overkills' torture devices. tt2293640,-1U0LH6dPfw,The Minions find themselves in an epic struggle to become Scarlet Overkill's henchmen. tt2293640,m0XrO4YJyeI,"Kevin, Stuart, and Bob must find a way to sneak into the Tower of London and steal the Queen's crown." tt2293640,Ei5IEWld1xw,"Throughout time, the Minions have had many different bosses that they have tried to support." tt2911666,L5SM0HY5-vw,John and Viggo square off in one final fight. tt2911666,77X1yGjjHvQ,John Wick enters the bath house to try and get his revenge and kill Iosef. tt2911666,XURWRujGTNk,With the help of his souped-up muscle car John takes out Viggo's remaining henchmen. tt2911666,yu3iX6zxbm0,John fights through dozens of Russian henchmen while pursuing Iosef through the club. tt2911666,NYo4WkYNLn4,John fights his way to Viggo to find out Iosef's location. tt2911666,tM47HMT8GGE,John methodically takes out henchmen to get his revenge on Iosef. tt2911666,Y0LuDSiX63M,John contends with a sniper out his window and Ms. Perkins who is trying to claim the bounty placed on his head. tt2911666,51t2_o_H_Rw,Viggo unleashes a fury inside John before ordering his death. tt2911666,4S8_1PIolnY,John deals with the rest of the henchmen sent to kill him. tt2911666,CdHKXmEn4l8,Iosef and his henchmen break into John's house. tt2235779,TU00uzqJGKw,Jane discovers Professor Coupland's duplicity and lashes out with all her demonic power. tt2235779,tpzp6-BkkIU,"While Brian researches the cult associated with Jane's fixation, Kristina's bath gets hotter than she'd like." tt2235779,DDClFYXZmtM,"Brian is disturbed to find Jane covered in bloody symbols, but he is powerfully attracted to her." tt2235779,kymk0SPNe7c,"Professor Coupland atempts a seance with Jane, with disastrous results." tt2235779,vSa0UepuyTo,"Jane, under demonic possession, attempts to seduce Brian, but is there more to it than that?" tt2235779,9xEXh16KupI,"While Kristina and Harry have sex, Jane seduces Brian." tt2235779,oE_FGufcMpI,"Brian rushes to save Jane, but something evil remains." tt2235779,7xMhKadE7gU,"Professor Coupland begins to make progress with Jane, but that doesn't entirely sit well with Brian." tt2235779,atNVzztHoUc,"Professor Coupland moves Jane to a new facility, but is unable to get ""Evey"" to speak to him." tt2235779,Q1ACWidWmjo,"Brian meets Jane, who scares and intrigues him." tt1807944,bfgRDarWFnk,Darl says his last words to his family before getting taken away by the officers. tt1807944,CsOFvj63I2c,Anse reveals that in order to get a new team of horses he had to sell Jewel's horse. tt1807944,918j6y6IMY8,The Bundren brothers face dangerous conditions while attempting to ford the river. tt1807944,5azSB3B9dgU,Addie talks about sin and salvation in her life. tt1807944,Ew9wk3EGlJc,The Bundren family finds out that Darl burned down Gillespie's barn. tt1807944,-zD7CZtUNbA,The Bundren family deals with Addie's death. tt1807944,MiBcK87oWBU,Everyone watches while Jewel runs into the barn to save his mother's coffin from burning. tt1807944,ISeGBx2JvGs,"After Darl decides to leave, Anse talks with his neighbor Vernon about burying Addie." tt1807944,MH7EgG6Y5kc,Jewel argues with Anse about leaving for work while Addie Bundren is sick. tt1807944,H08d5DSdT6U,The doctor reveals to Cash that his foot has to be amputated. tt1932718,KNh81oYmq7A,Dede takes Neil to a free dance. tt1932718,qI-CTJnYdBs,Phoebe finds out about Adam's sex addiction. tt1932718,0dbyPr97N48,"When Dede's ex-boyfriend comes back into town, Neil tries to talk her out of having sex with him." tt1932718,lKU5GNOEj3Q,"When Phoebe finds Adam on the phone at 2 in the morning, she thinks he is hiding something." tt1932718,mryo27tUcJE,"While Phoebe tries to arouse Adam, Adam tells her that he needs to take it slowly." tt1932718,Yxa48jQBfLc,Neil gets to know Dede at her salon. tt1935179,QNCuoEO3jFY,Mud rescues Ellis and takes him to the hospital. tt1932718,WFhKV35sbCE,"At the meeting, Dede tells the group why she is there." tt1932718,PZrRQrPE-Y0,Adam and Phoebe get intimate at Adam's apartment. tt1932718,g7pwgA-oyYY,Adam meets the lovely Phoebe at a bug-eating party. tt1932718,JhTVkpj8g_o,The group celebrates their sobriety as they start a new life. tt1935179,Ht6uQH8qIf0,Ellis and Neckbone learn more about the stranger named Mud. tt1932718,Z4zy9tTPl2c,"After visiting Neil's apartment, Dede gets rid of all his porn." tt1932718,4dVIxwhMYL8,Mike and Katie rush to the hospital to see their son Danny who was hit by a car. tt1935179,gNT4N5W81Hc,"Mud admits to the boys that he killed a man, and tells them about his plan for escape." tt1935179,YlF1gLpUZp8,An emotional Ellis confronts Mud. tt1935179,zz0w0KDwhWg,Ellis and Neckbone discover a boat stuck in a tree. tt1935179,xMuWufwEZiA,Carver attacks and threatens Juniper ; Ellis tries to intercede. tt1935179,wyzpqpXHcSE,A stranger tries to make a deal with Ellis and Neckbone. tt1935179,7FGCTdYcdIM,Ellis and Mud talk about love by the campfire. tt1935179,yKhHoh_H350,Tom takes Mud to the mouth of the river. tt1935179,1hag3avWVXs,Ellis and Neckbone find out someone has been in their boat. tt2051879,KsmXgmhjUic,"The crew attempts to launch away from Europa, but they are forced to crash land on the moon again." tt2051879,ZmOUutOuqn8,"Katya investigates a light in the distance, but the discovery is more than she can handle." tt1935179,6lRIgVCdLP4,Bounty hunters attempt to kill Mud. tt2051879,OnExOgppDJc,"Rosa and Andrei fix the communications equipment, just in time to capture evidence of alien life on Europa." tt1935179,CWBwJk1f-gs,Mud visits Juniper and says goodbye. tt2051879,3uzjEETq9oM,Katya discovers a one-celled biological organism under the ice - evidence of alien life on Europa. tt2051879,583Eukgz0QQ,"The crew escapes the orbit of the giant Jupiter and lands successfully on the icy moon, Europa." tt2051879,ctsrpWvUQB4,A spacewalk goes horribly wrong when Andrei rips a hole in his spacesuit and James is sprayed with a toxic substance. tt2051879,Iwye0A9pCVk,"James saves Andrei's life, but pays the ultimate price." tt2051879,TzpamJ6GsFw,"After a quake rattles the ship, Andrei sees a light moving outside." tt2051879,S6Ze8IndlBo,The crew experiences strange sounds and lights when they send a remote controlled camera under Europa's ice. tt2051879,ZAtw0w5b_1o,Dr. Unger honors the memory of the astronauts that were lost and praises their discovery of alien life. tt1155592,_o490P6zeZ4,Philippe's tightrope walk across the World Trade Towers draws to an end when the police threaten to bring him in with a helicopter. tt1155592,G_r06v8SswA,The team realizes their first attempt at getting Philippe to tightrope across the World Trade Towers is too ambitious for the amount of preparation they have put in so far. tt1155592,q1QELI37duI,Philippe Petit performs on a tightrope at the top of the World Trade Towers. tt1155592,zU9rHffZVBE,Philippe takes his first step off of the World Trade Center and onto the wire. tt1155592,5Q8BbiDiI5c,Annie and Philippe begin their love affair. tt1155592,jJohoC479no,Jean-Louis and Philippe recall some of the obstacles that threatened to get in the way of them achieving their goal. tt1155592,HJCm9e0Q2Yc,Philippe shows his concentration while preparing to walk a tightrope across the top of the World Trade Towers. tt1155592,5kvHTPJfo7o,"Philippe tightropes across the Sydney Harbour Bridge in Sydney, Australia." tt1398426,uBAd6Nfv3uE,"Ice Cube and N.W.A refuse to give in to authority and play, ""F*** Tha Police.""" tt1155592,ZCMwz1K-Cso,Philippe states his belief on the way life should be lived. tt1155592,Io1xroeJoBM,Philippe Petit reveals how he got inspired to wirewalk across the World Trade Towers. tt1155592,euCE7LJZxvE,Philippe and Jean-Francois are arrested and taken in for a psychiatric evaluation. tt1398426,1WA_d9qBf4E,Eazy-E hits the booth to try his hand at rapping Boyz-N-The-Hood. tt1155592,6s_lBln0kzg,"After walking a tightrope across the World Trade Towers, Philippe, Jean-Francois, Jean-Louis and Annie's lives go in separate directions." tt1398426,VBYiVoNwzQo,"N.W.A is harassed by the police for, ""looking like gang members.""" tt1398426,dyCbGaYPSIY,"N.W.A performs ""Dopeman"" for an audience full of music executives to try to earn a record deal." tt1398426,UStNNBG5K0Y,"Ice Cube makes his own diss track to get back at N.W.A for insulting him on the record, ""100 Miles and Runnin'.""" tt1398426,LGmthB51XUc,"Ice Cube's new song, ""F*** Tha Police,"" pushes N.W.A to a new level of success." tt2975578,dIv1kqivuZc,Carmelo Johns arrives to liberate the victims of the Purge. tt1398426,4KFtwqYA_kE,Dr. Dre brings Ice Cube up to the stage to help bring a new sound to an old club. tt1398426,YDh2u5hneLE,N.W.A shares an emotional moment after Dr. Dre reveals to the group that his brother was killed. tt1398426,PnjkPSAncPc,Things quickly go downhill for Eazy-E when he tries to make a drug deal. tt1398426,aY6ZwMZqaBk,"The doctor informs Eazy-E that he is HIV positive, and only has months to live." tt2975578,0x6usdVsGbI,Sergeant goes to the home of the man who killed his son to exact his revenge. tt2975578,OlAEXT0Hg70,A group of wealthy Purgers begins hunting Sergeant and his group for sport. tt2975578,moH3FSt88FY,"The wealthy Purgers call in reinforcements, bringing death upon Sergeant's group." tt2975578,edBNDiSwnlg,Sergeant rescues Carmen and Cali from being murdered at the hands of the Purgers. tt2975578,BOo2x6MlAtI,Shane gets himself caught in a trap laid by a group of Purgers. tt2975578,4a3OH0EcieY,Lorraine attempts to kill her husband after discovering he has been cheating on her with her sister Tanya. tt2975578,dsTyKFkGPuM,"As they prepare for the evening, Purgers startle Shane and Liz." tt2975578,kYHCKF2WLA8,The annual Purge begins. tt2975578,7fkatAePOnI,Big Daddy teaches Sergeant the rules of the Purge. tt2093977,KxRDIx23Xmg,"Bess shows up to see how Andie's doing, but gets a nasty surprise." tt2093977,IvwJ-KwPATw,"Scott patches up Andie's leg, but she's got other things on her mind." tt2093977,YBrFMKQOqDc,Andie makes a demand of Scott. tt2093977,jla2i4bOfjg,"While Scott swims laps, his stalker has fun with a topless photo of Jules from his phone." tt2093977,MzFCoTidaDI,"Bess' obsession spirals toward violence, as does Nancy's daily run." tt2093977,19KoXOFVCCM,"Everyone wants to get in Scott's pants. Unfortunately for Bess, her method lacks a little finesse." tt2093977,ietWI5HT_nA,"Jules tries to sleep off her drink, but someone tries to snuff her out." tt2093977,sOxAN1jqfpQ,"Scott kisses Jules, but doesn't realize he's being watched by someone who is not happy about it." tt2093977,gQ2HC6eotDg,"Scott returns home, little suspecting that someone's lying in wait in his room." tt2093977,aLVjmX-ottU,"Jules seduces Scott, but she's got something else on her mind." tt2093977,o3f8UMtGyoA,Childhood crushes can be more dangerous than they seem. tt1196948,ZV7UY6RYG6M,Charlie is held captive by Nigel and his men. tt1196948,O0Q3TOvvZNY,Charlie confronts Nigel about what he saw on the videotape. tt1196948,ElXKzY-3DoU,Gabi tells Charlie the story of her and Nigel. tt1196948,WoACzZ_FUzs,Charlie is chased by Darko's men throughout Bucharest. tt1196948,W_Aq6Mu-bQU,Nigel shows up to the theatre to see Gabi and meets Charlie in the process. tt1196948,F0tBvKtpT-I,Charlie and Gabi say goodbye after a wonderful night together. tt1196948,pLKhG9v_0fk,Charlie wakes up to a crisis: Karl has taken too many male enhancement pills. tt1196948,PbnhCazvuts,"Charlie meets Gabi, the daughter of the man who died next to him on the airplane." tt1196948,rk0WkrT6L1k,Charlie's mom is taken off life support. tt1196948,0WwbRHBAg9w,"After waking up, Charlie discovers that the man next to him has died." tt0044953,lZ4ouD3RVKU,Lina pleads with Howard to leave Ben's body behind and start a new life. tt0044953,RQlXH-KzlXg,"Ben tries to kill Howard and Roy, but Lina stops him." tt0044953,GzsGxfcPyTI,Howard and Roy get into a fight at the river. tt0044953,TH0d-3NnNUM,The men have had it with Ben's shenanigans and threaten to bring him back more dead than alive. tt0044953,BKER7E61cvs,"Howard practically proposes to Lina, but Ben uses the distraction as a chance to escape." tt0044953,qgv_7j1_CdA,Ben tries to knock Howard off his horse and over a cliff. tt0044953,7rVMT0xklto,Lina and Howard have strong feelings for each other. tt0044953,nQBrfPjwAfQ,Howard cries out in his delirium and Lina learns about his sad story. tt0044953,5p9BA72SfkY,Howard's group meets with some Blackfeet indians and Roy starts a shootout. tt0044953,OA1pcNFRhXY,"Howard captures Ben Vandergroat, but is pressured into hiring Roy and Jesse to help bring him back." tt0120654,SFy70juGAHo,Mitch and Sam pay a group of homeless men to distract the security guards so they can sneak in to see Cole. tt0120654,ROy7gCg3hJE,"The guys rally the homeless guys, the whores and Gary Coleman to take down the evil Cole." tt0120654,9z5YYwpysWs,Mitch ruins Cole's opera with his horny father and some skunks. tt0120654,Sczun-f_Uiw,Mitch gets violated in prison and he gives the attackers a piece of his mind. tt0120654,OG9EDE_bnws,"The guys get revenge on some noisy neighbors, but the plan goes awry when a terrible shooting takes place in the mansion." tt0120654,Sqj803KC3T4,"Even though Sam gets Mitch to admit that he likes Kathy, they still head off to destroy her grandma's building." tt0120654,nOkJXxd0cNg,The guys get revenge on an abusive bearded lady for a midget client. tt0120654,oD-1eCD7lkE,"When Mitch and Sam get a job at the movie theater, their new boss starts out with a belittling speech." tt0120654,BlWpx55Mo5s,"Mitch films a ""Dirty Work"" commercial by interrupting a spot at a car dealership, and Jimmy seeks revenge on a hooker." tt0120654,qWEaCJlKZXs,Mitch describes the pranks he and Sam used to pull as kids and how they learned to not take crap from anyone. tt0120654,F-gTRiA6Ncs,"After getting fired and dumped by his girlfriend, Mitch also loses his shirt to a hairy dude." tt0120654,4tehW9FH9aw,"During a brownie taste test, Sam feels no side effects, but Mitch has a face full of rash and hallucinates about Satan." tt0040872,E5KigabenVg,Bowie takes one last look at Keechie before he's gunned down by the authorities. tt1294970,J3Uq3-vH_I0,Henry Altmann lists the thing he hates while sitting in traffic. tt2458106,9kcwYNK9cp8,"While searching for a long-buried cache of ninja weapons, Casey runs afoul a group of Goro's men. Or, rather, they run afoul him." tt1294970,wi1iG6DIFOA,"Before dying, Henry spends time with his family." tt1294970,izRUBt3oeMw,Henry finally gets to see his son Tommy. tt1294970,tIZfD-LANtA,"While trying to get to his son, Henry Altmann and Sharon Gill get pulled over by police officer." tt1294970,qZD-BA_Cxus,"While riding in a cab, Henry and Sharon run into the angry cab driver, Ulugbek." tt1294970,sW1_A07itgQ,"After Henry does not die from jumping off the Brooklyn Bridge, he has a new perspective of life." tt1294970,9fs03_cdppQ,Dr. Gill tries to stop Henry from jumping off the Brooklyn Bridge. tt1294970,jqvMzCLAE0g,"Henry tries to buy a camcorder from Ruben, but he has a bit of a stutter." tt1294970,uZC4v8_fApA,"Henry tries to leave his son, Tommy, a video before he dies." tt1294970,NP5PcpEDjS0,"When Henry rushes home to have sex with his wife, Bette, he gets a little bit of a surprise." tt1294970,ewvkTkHfJqQ,"While at meeting with some business partners, Henry Altmann asks his brother Aaron for advice." tt1294970,OrxsZHRGxRc,Dr. Sharon Gill tells Henry Altmann that he has a brain aneurism and he only has 90 minutes to live. tt2458106,0GBAUGvKy2A,"While Goro's drug empire burns, Casey fights his lieutenant, Myat, to the death." tt2458106,6UY9MtqSMgs,"Casey confronts Goro, the man who placed a hit on his wife." tt2458106,QvUl28vA8oM,"Faced with his wife's true killer, Casey makes the ultimate decision." tt2458106,YcT_oPYKOw4,"While Casey sleeps, his dream of Namiko's murder proves startlingly prophetic." tt2458106,2nrHffYUXqQ,"Casey hopes to cool his jets at the bar, but winds up letting off some steam with some local thugs." tt2458106,gnfJ4wcpQsk,"While sparring with Nakabara's students, Casey's grief boils over into rage." tt2458106,LX4AIei6zUw,"Realizing that two thugs had a hand in his wife's death, Casey pays them a visit." tt2458106,ygNoJlu743w,Casey has a disagreement with a couple of thugs. tt2458106,VMkhYJEjv7I,"Casey goes undercover while on the hunt for Goro, which leads to him having to fight a gang of drug dealers while high on meth." tt2458106,gMODOv68SGE,Goro deals with a crony who was skimming a little too much from off the top. tt0040872,iFKyzbCLQQA,Keechie breaks the news to Bowie that they're having a baby. tt0040872,4J0fchFqprw,Bowie waits in the getaway car as T-Dub and Chicamaw rob a bank. tt0040872,e8mmLcViaGI,Bowie and Keechie make an impulsive decision to get married by Hawkins on the cheap. tt0040872,tRwyOQw5zcw,Bowie and Keechie rent a cabin from the nosy Lambert and his son Alvin. tt0040872,--oCWVOBuvA,Keechie tries to convince Bowie to go straight and live a law-abiding life. tt0040872,f8a97iauRtw,Bowie gets a ride from Keechie and reunites with Chicamaw and T-Dub. tt0040872,f6m4J0AfEOo,"Bowie, T-Dub and Chicamaw flee on foot when their car breaks down following their escape from prison." tt0040872,0REROw4SOGc,Bowie agrees to help T-Dub and Chicamaw rob a bank. tt0040872,CK3cE7N1pzU,Bowie reunites with T-Dub and Chicamaw as they prepare for a bank robbery. tt0082332,Xpy157qTtng,Frank and Mary Ann are attacked by a Ninja that shows no mercy. tt0082332,XWxNXRPHQIQ,"After Cole wins the final fight against Hasegawa, he helps him die with honor by chopping off his head." tt0082332,cRoIsrSzapo,"Mr. Parker takes Mary Ann hostage in hopes of protecting himself and his boss, Venarius, against the deadly white ninja, Cole." tt0082332,ZrKUk6S3XSc,Cole goes full on ninja and displays his many skills in the art of death while taking out Venarius's henchmen. tt0082332,Xm5eKjy5MTg,Cole does some serious fighting in order to save Frank and Pee Wee. tt0082332,FARHf9b8zyk,Cole and Frank take down a group of thugs. tt0082332,BXq-jB4MZdU,A Ninja performs a demonstration of his talents for Mr. Parker. tt0082332,eYx5m_iT-1U,"When The Hook insults Cole and tries kicking him out of the bar, he shows him who's boss by fighting all of his men." tt0082332,G_1jQkCRF58,Mary Ann points a gun at Cole when he steps on her property. tt0082332,pKjMt3cBv6g,Cole protects Mary Ann by fighting off some bad guys. tt0082332,wu-RfHKCK7Y,Cole makes his way through a series of ninjas and obstacles. tt0082332,-IIHYIZSFbk,Cole reviews the Nine Levels of Power to Komori and receives his ninja certificate. tt0082332,4RsVOfPT_is,Cole tests his limits in the jungle fighting numerous other ninjas on land and in water. tt1809398,jOLLiuCk420,"Louis and the prisoners are allowed to bathe in the Hokura River, where they get final confirmation that the war is over." tt1809398,a2_9fQ0U57w,Mac runs out of energy after being lost at sea for over 40 days. tt1809398,XrBTDbxOZE8,"Weak, starved and exhausted, Louis lifts and carries a plank above his head, in defiance of Watanabe." tt1809398,I6f8bYDvpKY,Watanabe forces Louis to run a foot race. tt1809398,qhgkpZecrTY,The Japanese government allows Louis to announce that he is alive on international radio. tt1809398,7ru6HnpJJP4,Watanabe orders all the American POWs at his camp to punch Louis in the face. tt1809398,1l1qpOrjsi4,"At the Olympics, Louis Zamperini is the first American across the finish line, setting a record in the process." tt1809398,gpgsfivrruk,"At the most trying time, Louis asks God for help, and relief comes in the form of rain." tt1809398,xSvW3Gxd-h0,"When what seems like rescue is revealed to be a Japanese attacker, Louis, Phil, and Mac are forced to hide in shark-infested waters." tt1809398,QU677HiXf6M,"After their plane crashes over the ocean, Louis, Phil, and Mac board a raft and attempt to survive on the open sea." tt1470023,lQ2RStfZii0,Vicki and MacGruber defeat Cunth with a little distraction from Piper. tt1470023,KTugpKzfZJk,"MacGruber shares intimate information with Piper, but then uses him as a human shield when they are attacked." tt1470023,nrqg6wxuqFo,MacGruber realizes that Vicki loves him. tt1470023,iJiQsEZXz_8,MacGruber has sexy sex with Vicki St. Elmo. tt1470023,0WoyXBXCqdg,MacGruber and Cunth exchange insults at the party. tt1470023,9FKgmafi1p8,"Vicki poses as MacGruber in a coffee shop, but the operation goes south fast." tt1470023,jWHcIO4y8kk,MacGruber shares his plan and his feelings on guns with Piper and Vicki. tt1470023,ZHCd8doza2M,MacGruber begs Piper to join his team. tt1470023,0kgLLa9gnsU,"MacGruber assembles the best team of operatives ever, but it ends in disaster." tt1470023,zFbHwupcqpQ,Col. Jim Faith finds MacGruber in a monastery and asks him to come back into the service. tt1139797,vapcFQlS6Qo,Oskar is surrounded by bullies at the local fitness center swimming pool but he is saved by the vampire Eli. tt1139797,bdJt1Mggjl4,Virginia suffers after being bit by the vampire and asks to be exposed to sunlight. tt1139797,BUrDm2GmJ5I,Oskar protects Eli from a neighbor who wants to find the truth. tt1139797,AcJq5nGwm4U,"During an ice skating field trip, the children find a frozen corpse of a murder victim and Oskar smacks a bully with a stick." tt1139797,JLTtgzY_7-Y,Oskar asks Eli to come in without an invitation and she almost dies. tt1139797,6i0sEgnPLms,Eli drops from above onto her victim. tt1139797,lmqQPyNsXpU,Virginia visits a friend's house and is immediately attacked by ferocious cats. tt1139797,J9z4myiIVww,Eli visits the hospital to see her burned helper Hakan. He helps her one last time. tt1139797,w-_BMZo7mik,Oskar asks Eli if she will be his girlfriend. tt1139797,GYJ-Z5o9gUM,"Oskar buys Eli a candy and declares his love for her, but things are... complicated." tt1139797,u31Fyx8g5ZY,Eli gets to know Oskar as they play with a Rubik's cube. tt1139797,hiO38yFF-Q8,Eli murders a man and drinks his blood to satiate her thirst. tt0378109,XFTJJtOtFtI,"Jared kills Bates with an oxygen tank, and Sam is nearly killed until a shark kills her attacker." tt0378109,8hGqSM0OV9U,"Jared and Sam kill one of Bates' men, and the battle for control over the ship continues." tt0378109,KpM_NyYKwkE,Bates finds half of his cocaine floating in the ocean and Jared jumps into the water to destroy the rest. tt0378109,PzL7MICU_OI,Jared and Sam fight a bloody fight to take control over Bates and the boat; Sam delivers a nice final blow. tt0378109,93njceSaOMM,"Primo chases Jared and causes an accident, but then Jared decides to face him man-to-Land Rover." tt0378109,k-RHqxyYzMo,"Jared escapes from Bates and his men, and finds a clever hiding spot under the bow of the boat." tt0378109,UeCpUca9VUs,The group starts to research the treasure and finds some very valuable clues. tt0378109,gHQV6AMclGA,"During an evening at home, Sam talks with Jared about treasures and love and what money can buy." tt0378109,-qijwXk_bnk,"When Jared does some underwater exploring, he finds a wrecked airplane and brings his friends down to check it out." tt0378109,x2CizSzk9s4,"The group argues about whether to keep a brick of cocaine that they found, but Sam wins in the end when she throws it overboard." tt0378109,WquPun-ky2Y,"When the group explores the plane crash wreckage down below, they find not one, not two, but a giant stash of cocaine-filled packages." tt2322441,_msjEt4-jZc,Christian is unable to control himself when left alone with Anastasia in the elevator. tt2322441,JWLd18_ViOM,Anastasia realizes she's not cut out for Christian's desires. tt2322441,HOrCBUADkMM,Anastasia considers the terms of the contract that Christian has asked her to agree to. tt2322441,VkJAnikGNCQ,Anastasia tries to understand what makes Christian the way he is. tt2322441,xJOME7D6-ow,Anastasia and Christian argue about the complicated nature of their relationship. tt2322441,SeiltyhdQGg,"After a night of heavy drinking, Anastasia wakes up to find herself in Christian's hotel room." tt2322441,RMRJQL65AqA,Christian takes Anastasia on a ride to Seattle in his helicopter. tt2322441,IWjPXaM20kY,Christian lets Anastasia in on his deep dark secret. tt2322441,XFK5SV1-Pzg,"While conducting an interview for the school paper, Anastasia is introduced to the mysterious Christian Grey." tt2322441,X8YOtEocd6I,Christian visits the hardware store where Anastasia works to pick up some intriguing supplies. tt0478304,ICPNrxD783c,"With his life crumbling around him, Mr. O'Brien tries to reconcile with his son, Young Jack." tt0478304,1PoAz1WNBdM,"Young Jack plays a mean prank on his brother R.L., and broods on why he'd do such a thing." tt0478304,wsIybRQaDE4,"In a surreal vision, Jack reconnects with his mother, and makes peace with his younger self." tt0478304,D4TfTzW8GVg,"When Mr. O'Brien asserts his authority at the dinner table, his children stand up for themselves, much to his chagrin." tt0478304,c4Wls5pZlxQ,"Mr. and Mrs. O'Brien fall in love and have a baby, perpetuating the cycle of life." tt0822832,EOO8TwyVFYI,John says his final good-bye to Marley. tt0822832,w9sO9o8LNvQ,"Despite the multitude of problems with raising Marley, John finds himself oddly attached to the dog." tt0822832,99-v2bOxnJU,John surprises Jennifer with a puppy for her birthday. tt0822832,2jgk4c5V3b4,John begins to realize that Marley might be a bit of handful. tt0822832,Pn7M9PpQEgo,John and Jennifer take Marley to dog school with disastrous consequences. tt1131734,LQnfBdZnLmI,Needy explains the curse placed on Jennifer to her boyfriend Chip. tt1131734,_uhtsUzb7fg,Needy arrives just in time to find the demonically possessed Jennifer attempting to get a taste of Chip. tt1131734,k1MdKI8kiXU,"When Jennifer shows up in Needy's bed, the two get very close." tt1131734,EVIsqHrME68,Jennifer enjoys her new possessed body and tells Needy all about it. tt1131734,_NcD2k_QmgQ,Jennifer is sacrificed to Satan by an indie band. tt0432283,ELqdLvz60zA,The animals' meeting with the Wolf proves a borderline religious experience. tt0432283,Mp1_PuUoSaM,"When Rat threatens Ash, Mr. Fox and Mrs. Fox come to his rescue." tt0432283,AEocciZMBjc,"With Bean pinning Mr. Fox down with rifle-fire, Ash finally wins his father's pride." tt0432283,HNPyZsPH8TI,"Coach Skip teaches Kristofferson the ins and outs of Whack-Bat, much to Ash's chagrin." tt0432283,iuKNXP9LcSg,Badger explains to Mr. Fox the precariousness of his realty decision. tt1698648,zI6U8UWPhWk,"When The Bousche comes home, the family gets an unexpected visitor." tt1698648,1hyzWfYu6J0,Imogene runs into her ex boyfriend Peter and she finds out who her true friends really are. tt1698648,-28eBo0EDDg,Zelda apologizes to Imogene for lying in her own way. tt1698648,t7mMEDZkDlY,Lee takes Imogene out clubbing. tt1698648,bJwzDAtwJQU,Ralph tries out his Human Shell in the Big Apple. tt1698648,C0uo35iCk0A,"After a night at the club, Imogene and Lee spend the night together only to be caught in the morning by Zelda." tt1698648,swnHnXKbQPM,Imogene goes to see Lee's show. tt1698648,hYwxyijuhOQ,Imogene tries to convince Lee to take her to New York City. tt1698648,zQX5VL1XU5c,"Imogene runs into an old high school friend, 'T-Rex' Rinaldi after accidenally running into a Porsche." tt1698648,VUqea11tvH0,Imogene and Ralph find out that their mother Zelda lied about their father's death. tt1698648,UsonrKXJoas,Imogene asks her mother Zelda about what happened last night. tt1698648,fhgqKH6V34k,"After attempting suicide, Imogene is forced to go home with her eccentric mother, Zelda." tt0109370,aJVHnyq7Nz8,A newscaster's report from the border is heavily censored by the U.S. Government. tt1659337,4MTf0k1vqTk,"While the gang plays Truth or Dare, Charlie reveals his true feelings towards Sam and the truth about his relationship with Mary Elizabeth." tt1659337,OMSkavUrzHM,"After his breakdown, Patrick and Sam visit Charlie and revisit an old spot." tt1659337,9rTcIUk9Aio,"After Sam leaves, Charlie has a mental breakdown." tt1659337,Ix8ShPSjmtE,Patrick and Brad get in a fight and Charlie intervenes. tt1592873,4DAJ2QupBUc,Lola gets angry when she finds out her mom read her diary. tt1592873,5DEINY4WTVY,"Lola's devastated when she discovers Kyle having sex with Ashley in the school bathroom, but there might be more to this than meets the eye." tt0109370,o6hrLFJq63E,Gus briefs Stu on everything Canada has done to hurt the United States. tt1592873,kO3MXkSKwZs,"Kyle's band sets Lola's heart aflutter, sparking romance." tt0109370,pbfBzWJVbX4,America broadcasts anti-Canadian propaganda to inflame its citizens. tt0109370,uxXMshs5exs,The President worries about the national polls and wishes for another Cold War to bring back his popularity. tt1659337,XO3-PumyjoI,"Patrick, Sam and Charlie dance to ""Come On Eileen"" by Dexys Midnight Runners." tt0109370,8Q-DUxHMLvg,Boomer and his friends raid Canada to commit heinous crimes. tt1592873,-X9XaNXkvCI,"Lola tries to make Kyle jealous by making out with Jeremy, an old flame, but even she can't hide from her heart." tt1659337,b10LyOeq5Hs,Charlie says goodbye to Sam. tt0109370,IWpThrDfQEI,The team looks for Honey at a Canadian jail. tt1659337,tMaXLU_KG-k,Sam gives Charlie a birthday present. tt0109370,_nk2ZNKOxCY,The President considers starting a war for a boost in the polls. tt1592873,sXrZaiADkTU,"Lola's party moves things forward with Kyle, but sets her back with her mom." tt1592873,1KPTpxxZJRs,"Lola gains a lasting relationship with Kyle, Anne gains a lasting relationship with James, and Lola and Anne gain a lasting relationship with each other." tt1659337,0YDejqKggWA,Charlie and Sam kiss for the first time. tt1659337,axcECZzlPVI,Charlie joins in as Rocky in the gang's performance of The Rocky Horror Picture Show. tt1592873,yVAFP91HfBs,"Lola realizes who Anne, her mother, has been sleeping with: Allen, Anna's ex-husband." tt0109370,SRMuzjyoMRg,The President and his staff try to convince the Russians to stage a little tension with the United States. tt1592873,z0bO_2sgBZA,"In the heart of France, Lola sleeps with Kyle for the very first time while Lloyd gets acquainted with Lily." tt1659337,MmPU9OjE2X8,Patrick and Sam welcome Charlie to their friend group. tt1592873,Ve1oHq8JIwo,"Young love is in the air for Lola, Kyle, and Emily, but will everything work out?" tt1659337,kMalrBgdRvI,"Charlie, Patrick and Sam drive through the tunnel." tt0109370,eCS7qPuOXQI,Boomer starts a brawl at a hockey game when he insults Canadian beer. tt0109370,eZXgYKx0aQI,Stu Smiley convinces the President of Canada's evils. tt1592873,iWII1mMM9HY,"Lola gossips about Ashley, her ""enemy"" with her friends, leading to friction with Chad in gym class." tt1592873,U8VDmQw-FAo,Lola's first day of school is a bit of a downer. tt0109370,UdZi8K3PLs0,Kabral wonders why the black guy always has to die first in movies. tt0109370,jyO1ILQAGsU,A Canadian officer forces Bud to paint French graffiti on his truck to go along with the English graffiti. tt1735898,eRqgQiBel8I,Snow White confronts Queen Ravenna while the Huntsman and others fight off glass monsters. tt1735898,Ehaogw2TNOQ,"Drunk and mourning, the Huntsman vists Snow White's body." tt1735898,LoDGQLw_iLM,As The Huntsman and the Dwarves travel through a Fairy Sanctuary with Snow White they realize that she is the one destined to defeat the queen. tt1735898,VHsRuDuQKo8,The Huntsman faces off against the Queen's brother Finn. tt1735898,104ZQtfYDso,"At the edge of the Dark Forest, Snow White and The Huntsman run into a Troll." tt1735898,G0y14S8h4ic,Queen Ravenna reveals herself to Snow White after tricking her into eating a poisioned apple. tt1735898,d9YfIZP8qPE,Queen Ravenna keeps herself youthful and powerful as she deals with two captured criminals. tt1735898,FHDq1ehz_cg,"After taking over the kingdom, Queen Ravenna brings in her magic mirror." tt1735898,kaWU7XlPxV4,King Magnus leads an attack against a dark and mysterious army that breaks like glass. tt1735898,VGA1SZwZC7A,"The Huntsman finds Snow White, but is then betrayed by the Queen's men." tt1935896,GxA7BICC_zM,"Jon Schnepp struggles to find a subject for W, leading to a short,""W is for WTF!,"" that pretty much speaks for itself." tt1935896,keumDslluNk,"Srdjan Spasojevic's expressionistic and experimental ""R is for Removed"" explores the gruesome and often sacrificial nature of filmmaking." tt1935896,iIUhwUKRg28,"Lee Hardcastle's ""T is for Toilet"" is a pants-wetting take on the horrors of potty training." tt1935896,BNHVkYhC8Po,"Kaare Andrews' ""V is for Vagitus "" portrays a horrifying dystopia where human reproduction is strictly controlled by the government." tt1935896,pv7lZRQDygc,"A woman tries to outrace Death in Jake West's ""S is for Speed.""" tt1935896,0JRdzrh9in4,"Noboru Iguchi's ""F is for Fart"" explores love and metaphysical relationships through lots and lots of farting." tt1935896,w2fpC1izWPA,"In Marcel Sarmiento's ""D is for Dogfight"", a dog-fighting boxer confronts a dog that might be more than a match for him." tt1935896,zZSiCTrPiXU,"In Thomas Malling's ""H is for Hydro-Electric Diffusion,"" A Bulldog Fighter Pilot gets more than he bargained for when he visits a Vixen's strip club." tt1935896,jBuygQyZbf4,"Andres Morgenthaler's ""K is for Klutz"" deals with one devilish turd." tt1935896,2COP58ej7QA,"In Nacho Vigalondo's ""A is for Apocalypse,"" A woman's rage for her husband boils over, but much later than she'd expected." tt0113161,O31rBYqYkuQ,Ray Bones threatens Harry and blows away Ronnie. tt0113161,bkeLkORd2y4,"Chili is a producer on his movie directed by Penny Marshall, staring Martin and Harvey Keitel as Ray Bones." tt0113161,zSBXBMVa_Y0,Chili shows Bear that he is working for the wrong man. tt0113161,0H8EmzfVSbg,"Chili challenges Martin to play a loan shark, then gives him some true-to-life direction." tt0113161,r1scNthC8NI,"When Chili's lunch gets crashed by Bo and his stuntman heavy, Chili throws Bear down the stairs." tt0113161,mohoyRj_VpU,Chili shows Martin Weir his rental car. tt0113161,EP74OZdI5d8,"After breaking into Karen's house, Chili works his way into her good graces by complimenting her B-movie work." tt0113161,h_htCIiCXfE,"When Bo pays a fact-finding visit to Chili, their conversation turns to making movies until Chili blows him off." tt0113161,IsKNaQuuL1g,"When some investors pay an angry visit to Harry, Chili sends a message of his own." tt0113161,HHSAml1BAR4,"While trying to close the books on a dead man, Bones gets into a semantic argument with Chili about ""i.e."" and ""e.g.""" tt0113161,VNUBj_27Z-A,Chili surprises Harry at his house to collect an outstanding debt. tt0113161,rh8OdlSXiDo,Chili goes to get his coat from coat check only to find that it's been taken by Ray Bones... so he pays Bones a visit. tt0408524,cjIv83h6Tcc,The Bears celebrate second place with non-alcohlic beer after Coach Bullock gives a condescending post-game speech. tt0408524,O87gR6xJ9Hw,Garo bats for the Bears on their last out of the championship game. tt0408524,7WzJb1l2wtg,The benches clear after Amanda takes a hard hit from a Yankee player. tt0408524,yan-Tdiyrig,A rivarly is sparked after Coach Buttermaker refuses to reciprocate Coach Bullock's apology. tt0408524,5aBVbBiojuM,Coach Buttermaker looks on as the Bears lose miserably to the Yankees in their first game of the season. tt0408524,XOUauBpPRNk,A new player arrives after Coach Buttermaker distributes athletic cups to his team. tt0408524,PwfZYNFfEfM,An intoxicated Coach Buttermaker throws batting practice while drinking some beers. tt0408524,h2Fbdx7N2Kw,Lupus gives Coach Buttermaker a scare while he drives the team to batting practice. tt0408524,fCuYlKKFAO8,Coach Buttermaker holds the first practice with his new team. tt1496422,9Fj1STjqFDU,"Jack eludes Hillary and sees that he comes to justice, but at a heartwrenching cost." tt1496422,iso415ggxMg,"Hillary, Charlotte's paramour, finally gets out of prison, but he's much more than she can handle." tt1496422,F5Hme0QUyXI,Jack races to Ward's aid after he's raped and tortured. tt1496422,2l1u5Q9AYjM,"Jack James tries to stop Yardley Acheman from publishing an incriminating article, but gets more than he bargained for." tt1496422,PeFLEFUNxzc,"Anita lets Jack have it after he used the ""n"" word, and he tries to make amends." tt1496422,pzrbB0XK9eI,"Charlotte seduces Jack, which is an oddly metaphysical event for him." tt1496422,JyVZgdLjGOo,"Charlotte meets her beau Hillary in prison, and the two get as acquainted as they possibly can." tt1496422,OtsMWS5Z2Oc,Charlotte has an unconventional remedy for Jack's jellyfish stings. tt1496422,QQCeQOAVWFw,"Ward and Jack question Tyree van Wetter about his nephew Hillary, but he's even less approachable than he looks." tt1496422,J2vVweGS13Y,Charlotte cures Jack's depression by dancing with him in the rain. tt1496422,GiQJxD_bQCI,"Jack daydreams about Charlotte's stunning attire, but reality might be better than fantasy." tt1496422,ucuU6zGryPE,"Jack drives Charlotte to prison where she can be close to her paramour-by-correspondance, but she gets excited when she learns that Jack's got a dark side." tt0120184,3k9G5rq86PU,Beth locks Norman in the laboratory believing him to be manifesting bad things just like Harry did. tt0120184,xnV6hJs2Zu0,"Norman, Harry, and Beth get trapped in a fear manifested illusion while trying to make it to the surface." tt0120184,l6cFM5Ubilw,"Alice, a Navy technician, is attacked by an unusually large group of jellyfish while Captain Harold Barnes and Ted watch helplessly." tt0120184,evWlSySuiII,"While coming back from the emergency sub, Norman has some trouble with his diving suit and then is attacked by a sea snake." tt0120184,iY2xD9VKDiE,A fire starts to destroy the Habitat after an attack from a giant squid. Ted and Harold are both killed in the chaos. tt0120184,jCXcE6DvgLw,Norman and Beth investigate a sound outside the station only to discover it is the corpse of the other technician. tt0120184,2GLDqvA6tKI,"Harry, Norman, Ted and the others communicate with what they believe is an alien being that has taken over their computer." tt0120184,M5UXOwphsLk,"While investigating what they thought was an alien craft, Norman, Harry, Beth and others come across a strange object." tt0120184,vrVDJcw40BU,"A team made up of a psychologist, marine biologist, mathematician and an astrophysicist is asked to investigate a crashed spaceship." tt0120184,KOxmixap5yw,Harry explains his theories about the alien Sphere to Norman. tt0078227,qkVImymH0A0,"Shake says ""I don't"" instead of ""I do"" and a riot in the church follows between the guests in attendance." tt0078227,NeTnaYH-08o,Billy Clyde Puckett runs into the end zone for the game winning touchdown. tt0078227,PSG5uNsnkks,Dreamer and Billy engage in a pre-game spiritual discussion. tt0078227,01OfrTMVeD8,Billy gets advice from Big Ed about the big game. tt0078227,0zROMB5cxBA,Billy gets a visit and a big announcement from Barbara and Shake while he's on the toilet. tt0078227,uF7ftHMCN1w,"When T.J. holds a girl over the edge of a house, Billy sends Shake to help talk him down." tt0078227,746lMCHNZeU,Billy Clyde has a debate with Bud about the lives of athletes versus the lives of intellectuals. tt0078227,69bd2hhDLF0,"The night before a big game Billy Clyde Puckett puts the move on a big beautiful woman, Earlene Emery at the bar." tt0078227,nFJvGENqc20,Shake pulls a few gags as he acts in a commercial for Mitchum deodorant. tt2450186,x63YlKqGZhI,"A teen girl, her brother and their dog hide from aliens that abducted their friends." tt2450186,fyXyDW0pU7s,A sister and her boyfriend interrupt her younger brother's slumber party only to find out that some new guests have arrived. tt2450186,_7aTnDiBVEQ,The only surviving member of a news crew attempts to escape from a cult that has turned into zombies after releasing a demon. tt2450186,F_BH945RjPM,A Biker comes across a screaming woman while going for a ride in the park. tt2450186,ZmNGTR9Y7f0,A news crew gets caught up in the chaos of a cult commiting mass suicide. tt2450186,BhSNoxyn9ao,A news cameraman attempts to rescue a pregnant friend from a cult. tt2450186,9-NoQwwRDJY,A couple biking through the woods stops when they see a body on the ground. tt2450186,PDSgyYfLpdo,Zombies attack a little girl's birthday party in the park. tt2450186,lYZKtD3RwAw,"After a news crew infiltrates a cult, things start to go very wrong." tt2450186,MUlVu0L0A0I,"Herman's new ocular implant allows him to see ghosts, but they can also see him." tt2105044,Rdxv6jaQZKM,"Tyler, Matt and two other friends attempt to rescue a girl from a cult that they've stumbled upon." tt2105044,60gXuCsTsPE,"After rescuing a mysterious girl from a cult in a haunted house, Tyler, Matt and their friends run into problems trying to find a hospital." tt2105044,ilYccsPDTXM,Wendy thinks that she has finally killed the mysterious force that murdered her friends. tt2105044,Ge-zBQLa7FY,Emily attempts to contact the beings in her apartment while her boyfriend James watches through a video chat. tt2105044,HAW15MhSWuM,Wendy reveals to Joey that she brought him and his friends to the woods to lure out a mysterious killer. tt2105044,E7fcdG_azPE,"While Sam and his wife Stephanie sleep, someone breaks into the motel room and stabs Sam in the neck." tt2105044,q2vaQZMf7LI,Emily tells her boyfriend James that her apartment is haunted while they video chat. tt2105044,6NbloMPJuRY,Emily calls up James late one night when she starts to hear nosies coming from her living room. tt2105044,DslpNlhAfLo,Spider and Samantha are attacked by a figure that shows up on video only as a tracking error. tt2105044,5ql5X72wS0I,Sam and Stephanie sleep while someone breaks into their motel room. tt0835418,n2GAcA_P9Tk,"Tommy and his friends enlist the help of Ron Jon, who may be more volatile than they anticipated." tt0835418,TGAHQorruwA,"Everything works out in the end, allowing Tommy and Audrey to bet on their baby in the first annual baby races." tt0835418,fpgKY0I3taA,"And so began the great sperm bank caper, lead by the unhinged Ron Jon." tt0835418,SjfMBu6JQ-0,Audrey stuns Tommy with some big news. tt0835418,rvImiPkES20,Things get heated between Tommy and the Sperm Bank Receptionist. tt0835418,JupxjoCyrBE,"Ron Jon tries to strategize, but Tommy and his friends make that difficult." tt0835418,A-zeWjOl0rE,"Tommy attempts to get his sperm back from its surrogate family, Leslie Jenkins and Jefferey, who make a startling deal with him." tt0835418,X2zBKcPda98,Audrey makes the mistake of telling Karen and Mona about Tommy's troubles in the sack. tt0835418,6df7al2Ez0U,"Dr. Hickery details Tommy's low sperm count with him and Audrey, and lays out a few troubling objects." tt0835418,O5TthS_9-9s,"Tommy has a glorious fantasy about Audrey, but some Christians would rather have him bask in the glory of Jesus Christ." tt1155056,RKcDDLS3aqQ,"When Sydney and Peter see Lou Ferrigno eating with Tevin, Sydney decides to confront them." tt1155056,HnKmwbVpRno,"After a run-in with an irate jogger, Sydney teaches Peter how to yell." tt1155056,MvDNoWSnSsU,"Peter admits to Zooey that he's been trying to make male friends, and that one of them kissed him." tt1155056,f_zpkjkB8ac,Peter and Zooey take Sydney and Hailey on a double date to play golf. tt1155056,kH6SUxCwXzs,"As Peter tries on a tuxedo, Sydney encourages him to loosen up and enjoy himself." tt1155056,K6bTibRdNxE,Peter meets Sydney at Lou Ferrigno's open house. tt1155056,SV6dKGbbkIk,Peter overhears Zooey and her bridal party discussing his lack of male friends. tt1155056,GCM5SoA82w4,"Peter builds up the nerve to call Sydney on the phone, and he ends up leaving an awkward, rambling message." tt1155056,sb8IU6c5obc,"Peter takes Zooey to his parents' house for dinner, where his family confirms that Peter never had any close male friends." tt3152624,Y7gTgzqJD-w,"With an awkwardly romantic gesture, Amy proves to Aaron that she's willing to do what it takes to be with him." tt3152624,4WCDgJSCQpc,LeBron asks Aaron about his relationship details when Aaron unexpectedly scores. tt3152624,-y6RPL5v1bU,Aaron gives Amy's dad Gordon stitches and Amy gets a little closer to accepting Aaron's request to date her. tt3152624,dQQd6s5gYhk,Amy doesn't understand her feelings for Aaron and is even more shocked when she finds out they're mutual. tt3152624,zie94YV7W4Y,LeBron encourages his friend Aaron to date using some slightly irrelevant examples. tt3152624,iHheroBxkuE,"After Amy and Aaron have sex for the first time, Amy adjusts to sleeping in someone else's bed." tt3152624,ZDbhvMyusZ8,Amy and Steven have an awkward sexual encounter. tt3152624,JNRFWtS0LlM,Amy jokes around while Aaron tries to show her some physical therapy equipment. tt3152624,8wyhEmMY_yc,Amy interviews Aaron for the first time. It's rather awkward. tt3152624,OCvg2G2SEhU,Amy and Steven get into a disruptive argument in a movie theater. tt2872732,sUad0ZL-nBU,Lucy hits 100% cerebral capacity and vanishes into the spacetime continuum. tt2872732,7Dxxk1az9Uo,Lucy races to the hospital to get the drugs before Jang's men can escape. tt2872732,LWG3aFFhg8k,Lucy nearly reaches 100% cerebral capacity and travels through spacetime. tt2872732,vwObck9twes,Lucy explains to Professor Norman and his colleagues the truth about the universe. tt2872732,GXumhcRLN_E,Lucy begins to disintegrate after her body fails to process a taste of champagne. tt2872732,aIBT3l54BAg,Lucy uses her new telekinetic ablities to retrieve the case from Jang's henchmen. tt2872732,Dvi6n89JWUY,Lucy breaks into Jang's hotel and uses her telepathic abilities to find the locations of the other drug carriers. tt2872732,nELxnSK1SHk,Lucy looks to Professor Norman for advice on her ever growing wealth of knowledge. tt2872732,dTGuyNnJJFs,"While the doctor removes the bag of CPH4 out of her abdomen, Lucy makes an emotional call to her mother." tt2872732,tsQS1b-fNSs,Armed with her new abilities Lucy kills her captors and escapes captivity. tt2004420,Vx357DNh0vw,Mac and Teddy duke it out throughout the frat house. tt2004420,03WbdaZCGAA,Mac and Kelly try to rid themselves of Delta Psi forever. tt2004420,vKMMeOLK9Y4,"While Mac distracts Teddy with a dance off, Kelly manipulates Pete and Brooke into hoooking up." tt2004420,xrbaFa8zV_o,"When Delta Psi's party gets too loud, Mac and Kelly call the cops to shut them down." tt2004420,J1wEoCLDl9Y,Teddy gets his revenge against Mac for trying to ruin Delta Psi. tt2004420,1uX_OAhcgb0,"Delta Psi throws a Robert De Niro party, and Mac and Kelly deal with the aftermath." tt2004420,bLD14JwSiYs,Mac and Kelly relive their younger days and party with the Delta Psi bros. tt2004420,OMHAwJjp-YI,Teddy and Pete explain the Delta Psi's legacy to their frat brothers. tt2004420,89qTnQ_TK4c,Mac and Kelly introduce themselves to the fratty new neighbors. tt2004420,jfA6jr-y7_A,"Struggling with the restrictions of parenthood, Mac and Kelly try to reclaim their younger days by taking their baby to a rave." tt2096672,uIEr1T_jZlQ,Harry reveals the prank he played on Lloyd. tt2096672,aWaZMXiimms,Lloyd and Harry play a prank on Ms. Sourpuss in order to get free drinks. tt2096672,ULCyXL8cTFU,"Travis plays a mean prank on Lloyd and Harry, but they get their revenge." tt2096672,VUZBpBTqRJY,Lloyd convinces an elderly woman to give up her hearing aids. tt2096672,6v098-aMBj4,Lloyd fantasizes about making Penny his girlfriend. tt2096672,DdGYUf-E48g,Lloyd and Harry teach Travis a new car game. tt2096672,p6dUf7YRWao,Harry and Lloyd set off on a road trip to meet Harry's daughter. tt2096672,Qwyo6C87zdE,Harry visits his ill friend Lloyd who has been playing a prank on him for 20 years. tt2096672,EJFm05MPSDQ,Harry fantasizes about what kind of dad he would have been. tt2096672,1y20NC1_MGQ,Lloyd comes up with a plan to find Harry's kid. tt1596350,C5pZipJa09s,Foster interrupts Tuck's date with Lauren with explosive consequences. tt1596350,7d7J-rlXWvc,"In the middle of a high speed shootout, Lauren realizes that she's smack in the middle of Foster and Tuck's partnership." tt1596350,_n3aOgYXQ6o,Foster and Tuck eavesdrop on Lauren's conversation with Trish about their romantic and sexual potential. tt1412386,VUv6vjIidho,Graham explains to Evelyn that he is gay and is in India in an attempt to reconnect with a lover from his youth. tt1412386,gIdOE4SoDfU,"After professing his love to Sunaina, Sonny stands up to Mrs. Kapoor's refusal." tt1412386,EWQsR8em1BM,Evelyn teaches Sunaina and her coworkers how to successfully negotiate a telemarketing call. tt0356680,3lgcViU45Fs,Everyone's bitterness comes to a head when Meredith's insecurities come out at the same time as questions about her late night activies with Ben. tt0356680,MB5PMwcYLqg,"Meredith makes the mother of all insults when talking about Thad's homosexuality, and inadvertantly his deafness." tt0356680,Mhev_TsgOBw,"When Meredith creates a massive social faux pas, the family steps in to cover." tt2382009,lWERfZYWdA4,"P learns the truth behind Joe's manipulation, but instead of being angry, she is in love with Joe." tt2382009,KY7hswfdxI4,Joe is excited to share with P what her father taught her about soul trees. tt2382009,Yauy9nMQU04,Joe goes to see a sadomasochist who finally accepts her into his twisted world. tt2382009,x2cNjm0VUmY,"When Seligman objects to Joe using the word ""negro"", she argues that political correctness is another form of hypocrisy." tt2382009,b_2-97kqlzs,Jerme is jealous of the time Joe is spending with K and neglecting their family so he gives her an ultimatum. tt2382009,xQ6yM4Dxpbs,Joe admits that she had pity on a pedophile simply because he had repressed his sexual desire his entire life. tt2382009,zdbOXyz1gpg,"Joe attends a sex addiction therapy group, but realizes that she is not ashamed of her lust." tt2382009,KRyazQjCRD8,Joe exceeds Jerme's challenge to place a spoon in her vagina. tt2382009,_RD0zpFbSmY,Jerme admits that he cannot satisfy Joe sexually and allows her to see other men. tt2382009,HLpC0bnO5_o,Seligman explains that he is asexual and has no sexual desire. tt1091191,2cRMH4HXfzg,Marcus recounts the lessons he learned from the battle with his brothers on the mountain. tt1091191,3bmDhfEtNh0,Military personnel fight their way through the village to bring Marcus home. tt1091191,f69ceThb6ec,"Alone and exhausted, Marcus is rescued by a kindly Afghan, Gulab." tt1091191,Q_j14lseORE,Terrorists discover where Marcus is hiding and attempt to murder him. tt1091191,Hdmi1UbW4Yk,"After their evac fails, Axe engages in a deadly firefight with the terrorists." tt1091191,8PzQmtwNeXM,Mikey fights his way to the peak to make the call for evacuation while Marcus and Axe back him up. tt1091191,6cxpiPSZHmE,"Rescue copters arrive for Marcus and Axe, but they are forced to evacuate." tt1091191,QJwdXqGBEPQ,"Marcus, Mikey, and the rest of the team discuss how best to handle the hostages they have taken." tt1091191,iNLZ1J_Gslg,Petty Officer Shane Patton recites his creed as he is initiated into his crew of Navy SEALs. tt1091191,c_k5BK-ONiE,"Under heavy fire, Marcus and his brothers in arms are forced to fall back to the only space they have left, over a cliff." tt1937390,fJpdVdl29Mw,"Joe has trouble balancing her life, but is happy to run into Jerme again." tt1937390,ficjws23Qjk,Joe says goodbye to her father who is dying in the hospital. tt1937390,sKHJuOqcvOg,"Young Joe gets a new job and discovers that her boss is the man who took her virginity, Jerme." tt1937390,5C7dB-dOS_U,Mrs. H continues the emotional barrage of her husband and his mistress. tt1937390,FB1Go2JVVqc,"Joe admits that she didn't care about ruining Mr. H's marriage, but she still felt lonely." tt1937390,0mE11Cy_xAo,Mrs. H finds her husband has left her for Joe and brings her children to say goodbye. tt1937390,Kcv1B1aZIvs,Young Joe and B form a club against traditional notions of romance and love. tt1937390,pxOZAWSn-dc,B challenges Young Joe to have sex with a married man. tt2349460,OJiN41xn8iY,Grace finds fulfillment being engaged to Quentin and performing again with her father. tt1937390,GexB78wQ6Qw,Joe is shocked that Seligman does not judge her morally for her sordid past. tt2349460,7kGm_xBgi1k,"Grace returns to her family, singing a song of faith, love and apology." tt1937390,KsZ3SpIoNos,Young Joe and her friend B have a competition to see who can have the most sex on a train. tt2349460,8cAlXSNQeUY,"Praying in her moment of deepest need, Grace finds the strength to play the hardest show of her life." tt2349460,H1rttoUCeUg,"Grace turns to her friend, Quentin, who gives her the advice that she knew all along in her heart." tt2349460,GKsKm9KYbaU,"Grace blows away her first concert, but isn't ready to face her father." tt2349460,C4UKfmu_m8I,"Grace's first performance starts a little weak, but her voice and spirit soon kick into high gear." tt2349460,xpKYkGHWB7E,Grace learns some harrowing truths from her idol Renae Taylor and Jay Grayson. tt2349460,qB78U2aWihU,"Realizing that Frank Mostin's record company might just want a cover of her father's- song, Grace records one without his knowledge." tt2349460,5rkVGXHv2Ow,"When Grace disrespects her mother Michelle Trey, her father Johnny Trey gives an ultimatum." tt2349460,1YklLet-e8s,"Frank Mostin gives Grace a warm welcome to Los Angeles, but not everyone is happy with the way she got there." tt1821694,9nvHAma_Lh0,Victoria and Han dispatch bad guys while Frank and Marvin try to disarm the bomb in their helicopter. tt1821694,M2_cj-txN9A,"Frank, Marvin, Victoria, Han and Sarah get the last laugh on Dr. Bailey." tt1821694,uf-v_lzbcp0,Frank has a brutal fight with Han in a Moscow airport. tt1821694,RlPspkeaFrU,Marvin gives Frank relationship advice for Sarah before Han arrives to ruin everyone's day. tt1821694,2ZpWLuAc7LE,"Han gets the drop on Frank, Marvin and Sarah in Moscow." tt1821694,9UNV2c-A4BU,Victoria has a smashing plan for breaking Dr. Edward Bailey out of an asylum for the criminally insane. tt1821694,rCCCJ2tXF7A,Sarah and Marvin compete with Frank and Katja to capture The Frog in a high speed chase through Paris. tt1821694,PurkHHO7Gcc,"Jack Horton interrogates Frank Moses, threatening his wife." tt1821694,xP7ctkX_Nm8,"Sarah isn't too thrilled to meet Katya, Frank Moses' old flame." tt1821694,M9F-ZtKswww,Sarah surprises everyone with her excellent interrogation skills. tt1879032,UrRDXFXZUhw,Lindsey and Ben stand back and watch the fight between God and Satan. tt1879032,EV3y3ehKePA,God scolds Ben and Lindsey for ruining his plan for humanity. tt1879032,mEiLmu1IF5E,Ben and Lindsey accidently shoot Jesus out of the sky. tt1879032,obeGwYOdAPc,Lindsey and Ben struggle to keep the Beast down for good. tt1879032,o3vv1SPEv1c,The Beast lets Lindsey know exactly how much he wants to touch her booty. tt1879032,drTH0CDFgx8,Lindsey and Ben try to get the help of their undead neighbor. tt1879032,dDH3nlKHRQ8,Ben is ashamed that his father completely supports the Anti-Christ because he is paying the bills. tt1879032,-i6m1i3JLaM,"The Beast wonders, who really is a sexy beast?" tt1879032,wDsYB_uRbaE,Lindsey is given an ultimatum by the Beast. tt1879032,G4OAR22W7Sc,Lindsey's mom gets sent back to Earth after being raptured. Then they experience a plague of annoying locusts. tt1879032,KVu2o2fTKlc,Lindsey and Ben try to warn Trevor about the fiery rocks falling from the sky. tt1879032,ddQniqjrVdo,One thing that wasn't predicted in the Book of Revelation: foul-mouthed Crows. tt1913166,hsxRROsF4D0,"Abby Russell manages to escape the hospital, but she may not be able to escape the law." tt1913166,x8tbSHuoB9E,Danni and Steve race to stop Abby Russell's massacre. tt1913166,CBS7b7HPuCo,Dr. Morris learns the hard way why he should never blackmail Nurse Abby Russell. tt1913166,FrGGFHPDN3A,"Danni confronts Abby Russell in the hospital, only for it to spiral out of control." tt1913166,Rl-Fx-2zzdQ,Danni learns young Abby's horrifying origin story tt1913166,faEbd7LEDOw,"Abby Russell's harrassment of Danni deepens, but even she's not prepared for the new HR woman, Rachel Adams." tt1913166,r1mN6K60148,Danni is awoken in the middle of the night by a video chat from the psychotic Abby Russell and a very drunk Rachel. tt1913166,9qrDi2o-eEw,Abby Russell gets all of Larry Cook's engines going. tt1913166,i8BG2g9YJAo,Abby Russell makes sure Fred's night ends in a climax he'll never forget. tt1913166,eKCpwUXh_Qs,Abby Russell's sexual manipulation of Danni intensifies. tt1704573,25CbQ5zMNfU,Bernie tells his friend that jail isn't that bad. tt1704573,6ObWyt4Hfaw,"Bernie tries to cover up Marjorie Nugent's death, but Lloyd Hornbuckle gets suspicious." tt1704573,3IklTegWKfw,"After finding her body, Bernie confesses to Mrs. Nugent's murder." tt1704573,KQz3KBKMFg4,Bernie confronts Marjorie after she fires her black gardener. tt1704573,iSIDCcqERkI,Lloyd Hornbuckle and Sheriff Huckabee break into Marjorie Nugent's home and find a surprise in the meat freezer. tt1704573,GVmIqRcglvE,A townsperson of Carthage describes how Texas could actually be five different states. tt1704573,7H_6ZZLNsvc,Marjorie Nugent becomes increasingly dependent on Bernie and tension grows in their relationship. tt1704573,U1WzINCahpw,"The townspeople of Carthage, including Prosecutor Danny Buck, speculate on the nature of Bernie and Mrs. Nugent's relationship." tt1704573,3GvvMpMUwQc,One day Bernie snaps and takes it out on Marjorie Nugent. tt1704573,oI2bCE3FNZk,"Bernie meets Marjorie Nugent at her husband's funeral, but the townspeople really hate her." tt1704573,cr18oXaI02Q,Don Leggett reminisces on his first impressions of Bernie. tt1704573,n2dBpP0yhUs,Bernie Tiede gives a demonstration on how you properly cosmetize a corpse for viewing. tt1297919,zVBa2vcgozs,"Brant pursues Weiss all over London, leading over rooftops, bridges, and into a trainyard." tt1297919,fbS0gOz76iw,"Beaten to a pulp by the police, Weiss thinks he has Brant and Nash right where he wants them." tt1297919,t1-maJWU3ag,Radnor breaks into the killer's car and reports his findings to Dunlop. tt1297919,oQ39ssiQ-4A,Radnor pays the price for poking his nose in the business of the killer. tt1297919,52QPxxtu1-s,"Weiss attacks Falls, but it ends badly for both of them." tt1297919,0Y_kftjPpUc,"When Brant reports his fatigue and woes, Nash responds with his own surprising tale of darkness." tt1297919,Z1Zrfm1Ylro,"When Brant encounters some thugs stealing a car, he introduces them to the Irish sport of Hurley." tt1297919,SoFgHbVPrSk,"The killer, Weiss, follows Roberts home with chilling results." tt1297919,JTJKIuXBey0,"News reporter Dunlop gets a disturbing phone call fom the shooter, and makes an even more disturbing decision." tt1297919,XN0tr43oqjI,"When Radnor isn't forthcoming with information, Brant has means of loosening his lips." tt0087985,Xt2JzDaHiNM,"When Matt is wounded in the attack on the station, Jed carries his brother's body past the enemy Captain who shows mercy." tt0087985,a1iQDKCkh6k,Andy's daring assault on a Russian tank gets him killed by a grenade. tt0087985,3xmFjLSU7MA,"Two Soviet gunships make a surprise ambush on the Wolverines, fatally shooting Toni." tt0087985,p4JPMo4bMa4,Robert faces down two Russian gunships as he makes an heroic last stand. tt0087985,a1Bx9nyw35w,"The Wolverines employ the art of guerilla warfare, ambushing the enemy and quickly disappearing before reinforcements arrive." tt0087985,0f2bU9SzCzs,"Following an attack plan designed by Andy, the Wolverines ambush a prison camp, liberating the American prisoners and destroying the Russian's jets." tt0087985,S7GMNTJa5zQ,"The Wolverines set a trap for three Russian soldiers, who are visiting a national forest." tt0087985,MVqK6wNkSxA,"In the middle of history class, Russian paratroopers land and attack the school, killing Mr. Teasdale." tt0087985,W6qWnmb_22s,Jed and Matt visit their father Mr. Eckert in the concentration camp for the last time. tt0101764,tX3qqCP99Tw,"Separated from one another and without the upper hand, Chad and Alex must fend for themselves as they fight Zhang and Griffith in one last confrontation." tt0101764,5ktmcS1L3-A,"After infiltrating a Triad warehouse, Alex and Chad engage in an intense shootout with the gangsters, resulting in elevated levels of testosterone and a very high body count." tt0101764,uat-LZ3t7i4,Alex engages Kara in a brutal hand-to-hand fight. tt0101764,cCpDJlAnHsg,Chad and Alex take the fight to Zhang and the Triads as they smuggle bombs into the Klimax Klub and bring it to the ground. tt0101764,-WbsnXGKkIg,"Drunk, jealous, and angry, Alex thinks that Danielle is having an affair with Chad and fights him over her." tt0101764,5CgpROI6ivM,Chad battles the strongman Moon in a man-to-man fight to the death. tt0101764,c2HZzrcEbZc,"Tailed by the police while on the high seas, Alex and Frank throw cars into the ocean and blow them up, thereby giving them time to escape." tt0101764,wyRq2S8BTVM,"Kara suspects that Danielle is hiding something, and confronts her in a very forward way." tt0101764,FwkbHnPwEYc,Chad flirts with a group of women as he teaches them the joys of stretching but the moment is interrupted when he's summoned to lead a karate class at the last second. tt0829150,fLWjUBClszw,Vlad fulfills the promise he made to his dying wife to keep their son safe. tt0829150,s1nXXro4Aio,The villagers learn what their prince has become and desire to kill him. tt0829150,-dMBMU9FCQU,Vlad and Mehmed fight to the death. tt0829150,I6KZlznXyiY,Mirena insists Vlad drinks her blood in order to stop the Turks. tt0829150,VIKvQVph07A,"Armed with his new powers, Vlad fights the Turks on his own." tt0829150,RxhenI5eUDI,Vlad uses his bats as a weapon against the Turks. tt0829150,WNZNGn_nkOU,Vlad and his son reflect on Vlad's situation. tt0829150,dRz8OjNEtaI,Vlad has trouble controlling his impulse to drink human blood. tt0829150,Ge-ilEFgJ34,"Ingeras introduces his father, Dracula." tt0829150,LeA8ojVy8Fc,Vlad seeks out a master vampire in order to get what he needs to defeat the Turks. tt1065073,iASBdbiKSHU,"Olivia deals with the emotional burden of her youngest child, Mason, leaving for college." tt1065073,sh0UuxRgqgk,Mason and Nicole discuss life's precious moments as they gaze across the desert sunset. tt1065073,PMmvUWqeS80,Dad shares his wisdom after Mason's break-up with his high school sweetheart. tt1065073,_V0CWwyrJUw,Mason receives a Bible and a shotgun from his grandparents for his 15th birthday. tt1065073,B86JJELi5Tg,Dad sings a song he wrote about Mason and Samantha before he puts them to bed. tt1065073,PX-PzFNkU50,Mason and Sheena discuss the challenges of life as a high school student. tt1065073,Y5oZr-5C1eM,Mason's stepdad Bill spirals into a fit of rage at the dinner table. tt1065073,oDDexxBBWXQ,"After he learns that she has a boyfriend, Dad gives Samantha and Mason ""the talk""." tt1065073,ePaK5-b1oec,Dad tries to get Samantha and Mason to talk to him like a real family. tt1065073,9diokRIKGT8,"Mason's provoked by his sister, Samantha, and explores the world around him." tt2481480,BhWg1G0czSQ,Tommy and Rosie share a romantic moment in their car. tt2481480,Ua0oqZfJFN8,Big Al tells the members of his organization that solidarity is the only way to stay strong. tt2481480,iZqKmtk6Vlc,Cardozo tries to warn Tommy and Rosie of the impending danger. tt2481480,hZZG0M8zj_8,"After failing to keep a low profile, Tommy and Rosie are found out." tt2481480,wb8HFGVE218,Tommy and Rosie call the mobsters to tell them they have the list. tt2481480,gHr0P3Px91c,Tommy and Rosie rob their second social club and get the attention of more than just the mobsters. tt2481480,XTLruQ3tl4U,"After robbing the mobsters, Tommy and Rosie make their escape." tt2481480,avQ9Wvp5wZQ,Tommy robs an Italian social club filled with mobsters. tt2481480,ZwVuw2rvu4s,Tommy and Rosie agree that they're going to have to move to Plan B in order to make money. tt2481480,ev_UF24O-oM,Rosie gets Tommy a position at her new job. tt2274570,k-e5rthOQdQ,"While trying to work out their problems, Duncan and Roger accidentally let out Milo and Ralph." tt2274570,fQmbxg6z5ic,"After finding out that Sarah is pregnant, Milo goes after her and Duncan has to save her." tt2274570,nuNIO9LLqYY,Duncan leaves Sarah and starts living with Milo. tt2274570,KGk6xZWTgBQ,Sarah tells Duncan that she is pregnant and he does not take it well. tt2274570,NPS356u_u08,"After finding out that he has a monster living in his intestines, Duncan goes to Highsmith for advice." tt2274570,WJpSAnt7s98,Duncan confronts Phil after being investigated by the FBI. tt2274570,4gYG7purQPk,Duncan bonds with Milo and lets him back home. tt2274570,uvyPBpxL8ZY,"Thinking that it is stomach pains, Duncan gives birth to Milo, a monster who lives up his rear, and who exacts revenge on Ken's cubie, Allistair." tt2274570,JY9Iq3-iD7s,"At the urging of his wife, Duncan goes to visit a therapist, Highsmith. It was not what he expected." tt2274570,7iLdxVgHWlM,"After being moved departments, Phil shows Duncan his new office and his new ""cubie"", Allistair." tt2265398,_NQec_YluKU,Luke is surprised to learn that Jill kissed Chris and never told him about it. tt2265398,6Uz7wmX_6nY,"Even though they can't be lovers, Kate and Luke find that they can still be close friends." tt2265398,mfqzWZW_kkM,"While Kate and Luke have fun with each other at the cabin, their significant others find romance on a nature hike." tt2265398,OGXdRrvCW2E,Luke helps Kate pack up her apartment for a move and she longs for a deeper relationship with him. tt2265398,jJ9VFThsqtU,Kate and Luke are frustrated that they can't take the next step in their relationship because Luke has a girlfriend. tt2265398,NFdvt3FQRoQ,"Kate spends the evening with Jill and Luke, who are happy in their relationship." tt2265398,WXVmCSMEpP0,Luke is jealous and disappointed when he learns that Kate slept with one of his co-workers. tt2265398,yef2bvCU2Tw,Jill broaches the topic of marriage with Luke. tt2265398,uO1YBHAbBSQ,Luke and Kate build their friendship late one night on the beach. tt2265398,_6G-jfNOkIc,Luke is suprised to learn that Kate has broken up with her boyfriend. tt1211956,fxJ9dLfp9k8,Breslin and Rottmayer try to evade Warden Hobbes and escape the ship. tt1211956,udTmoc-i1Q8,"Before making his escape, Rottmayer decides to take out some bad guys." tt1211956,q0YOdmVSceU,"After getting detained, Breslin tries to explain to Warden Hobbes that he doesn't belong there." tt0469021,hVyVNcP83Sw,"When Alan finds out that it is either him or Pat to be fired, he makes the case for the executives to fire Pat." tt0469021,R1f88CiYzes,Alan realizes that the cops want him to enter the siege and communicate with Pat. tt1211956,AdjVK4hPaOo,"While Hush and Abigail try to figure out the location of the Tomb, Breslin discovers the routine of his guards." tt1211956,AInSCWWY14Q,"After getting dropped off on the beach, Breslin discovers Rottmayer has been keeping a secret from him the whole time." tt1211956,gjRCN-nrEl4,In order to get into the isolation area Breslin and Rottmayer stage a fight. tt1211956,61ZwsdoEI9U,"With the help of Javed, Breslin and Rottmayer start phase one of their escape plan: the riot." tt1211956,b8wlb-8zFSQ,Breslin and Drake fight in the boiler room of the ship. tt1211956,Fi4ixdzoA7I,Rottmayer is brought in and interrogated by Warden Hobbes. tt1211956,7g4XFGQutFM,Breslin explains the three things that are required to break out of prison. tt1211956,ZizMOl5Xllw,Breslin meets Rottmayer after a run in with another inmate. tt0469021,vm29fXJWuOA,Alan tries to deal with the emotionally charged Pat and the ineffective cops in an armed standoff. tt0469021,myJttzKxu64,"Alan tries to escape from the radio bus, but only succeeds in getting himself stuck in the septic system." tt0469021,gwFW3icyEZk,Alan finds that hosting a siege can be good for his career. tt0469021,LPRHiok3nzs,"Alan has the opportunity to take the gun away from Pat, which results in a bloody shootout." tt0469021,FTjFM9edoD4,"Alan tries to break back in to the radio station, but loses his pants in the process." tt0469021,3DsoxW8AUEE,Alan leads the hostages in writing a new zjingle for their captor's radio show. tt0469021,VMXUsPGKzfQ,"Alan tries to manage the hostage crisis, but there is high stress on all sides." tt0469021,1X1shl06ZPo,Alan tries to figure out Pat's mental state during the hostage crisis. tt0114508,XAw8Qpr0NK0,Preston shoots Sil into the fire while Dan holds on for dear life. tt0114508,l97NtEMUx0M,Preston and Dr. Laura save Dan from being dragged into the fire by Sil. tt0114508,db50XeSEtv4,"Sil wakes up next to a bound woman who watches, terrified, as Sil cuts off her thumb and grows another." tt0114508,MFvi1YVig8w,Xavier pushes Dan to use his ESP skills to find Sil. tt0114508,0cPT4zspVc0,Preston and Laura get stuck in a room about to burst into flames when the alien escapes. tt0114508,NAEDVsrKk5s,Sil kills another lover in the jacuzzi when she hears someone at the door. tt0114508,IerddGM-xO0,Xavier explains the history of Sil to the team and shows them the growing fetus. tt0114508,FEAfMv14l5Q,"When Sil has second thoughts about being with a man, she kills him." tt0114508,79hXvDohqgI,"A young girl wakes up in quarantine to the sight of a man, Xavier, apologizing as cyanide gas fills the room." tt0114508,CNuEPee1qOU,Sil eats a woman on a train and breaks free from her shell. tt0114508,9FyqTQ9ywnc,"Stowed away on a train, Young Sil has strange nightmares, and wakes up to an equally horrifying reality." tt0089200,x2yXtHyhu-k,Wolfgang saves Jonathan and confronts Malcolm in a final magic duel. tt0089200,3T-wqo8lamY,Grizzel and the Ghoulies disguise themselves in a prank attack on Eddie. tt0089200,Z3yJF1FX9hY,Jonathan hosts a dinner party for his friends and the Ghoulies. tt0089200,0BQZb44R_IY,A zombified Malcolm Graves transforms into a temptress and seduces Dick with her giant tongue. tt0089200,_zFjP61xNb0,Robin awakens to an ambush of Ghoulies. tt0089200,5mAI-v1nfOw,Jonathan performs a sance and brings his father back from the dead. tt0089200,PnmtF6EqeXU,Mark and Donna try to retrieve a submerged bracelet and are attacked by Ghoulies. tt0089200,LCWzLnaJqBw,A flustered Rebecca tries to leave Jonathan but can't when she falls helpless to his new powers. tt0089200,r7J-Qx2InoU,Jonathan summons the Ghoulies and declares himself Master. tt0089200,Ho-Sv55Yh20,Jonathan summons Grizzel and Greedigut and puts their allegiance to a test. tt0089200,EdJRbvXr4zs,Malcolm attempts to sacrifice a baby in ritual but is thwarted off by a magical protection. tt1637725,i_qI6LOc54w,John gets his dream of meeting Flash Gordon. tt1637725,Rw-EoS3td0c,Ted is kidnapped by the creepiest father ever. tt1637725,GHOgErGvyTE,Ted and John have a brutal fight in a hotel room. tt1637725,AgZbPNlvHe0,Ted introduces John and Lori to his new girlfriend. tt1637725,04uN57jOg-Q,John tries to guess the white trash name of Ted's new girl. tt1637725,bc84pYZICbk,Ted flirts with a hot cashier at the supermarket. tt1637725,f5e73A39TF4,Ted is forced to move out of John's apartment and get a job. tt1637725,IqfczS-tx_4,"Lori finds Ted partying with hookers, one of whom took a crap on their floor." tt1637725,foPh0pXXq-A,Ted joins John and Lori in bed when the thunder scares them. tt1637725,s9nYXJweTPU,Young John makes a wish for a best friend and his teddy bear comes to life. tt0780622,A_ry95V0zNw,Dawn just can't seem to escape the male creeps in her life. This time -- after hitching a ride -- an Old Man is in the mood for a little sexual horseplay. tt0780622,j2u3UksivgA,"Dawn seduces her evil step-brother Brad so that her ""vagina dentata"" can bite off his private part." tt0780622,PIAzmZ3FFy0,"In mid-coitus, Ryan unwisely admits to making a bet that he could lay Dawn. Dawn's ""vagina dentata"" settles the score." tt0780622,gusrRGgXCJg,"Dawn accepts Ryan as the ""conquering hero"" to her vagina dentata when the two go to bed together." tt0780622,_ZIpnWucimQ,"When Dawn goes for a check up with the OB/GYN, Dr. Godfrey gets a toothed surprise." tt0780622,E9paF0XzmtA,"Ryan comforts a nerve-wracked Dawn with a hot bath, some pills, and some champagne." tt0780622,yTKHZcQlMP0,"Tobey learns the hard way from Dawn, and her snatch teeth, that 'no' means 'no' when it comes to date rape." tt0780622,6vtpmEd3SNk,"Dawn studies up on the mythology of ""vagina dentata"" also known as ""the toothed vagina.""" tt0780622,9WQnbIVJZjs,"Dawn desires to touch herself in bed, but her vagina strikes back." tt0780622,ghtGcGtVtho,Dawn talks to a bunch of young students about sexual abstinence until marriage. tt0780622,1GvlSPJ37Hw,Brad feeds Melanie a dog biscuit after some sex play. tt0780622,FaWvQNVeDag,"During sex education class, the students discover that the picture of the female reproductive organ is covered up in their text books." tt1213663,0oHT-rtiFZk,The mates prove to one another that they're still human and not replaced by robots. tt1213663,PJYZAww0pgI,"Gary meets his own double, but has some choice words for The Network." tt1213663,l9LOKUiY0Dg,Gary and Andy have a brutal fight at The World's End and bitter truths are revealed. tt1213663,gRBOrpdfsiM,Gary helps Sam escape the robots and they break up forever. tt1213663,Fhhbua6ELxo,Andy Knight and his mates take on a whole bar full of robots. tt1213663,UOsM81pRVWo,"Gary, Steven and Sam have a fierce battle with the creepy twins." tt1213663,tYs7uguB_JQ,The five friends are attacked by blue-blooded robots in the Gents bathroom. tt1213663,Gtt2ibEe1NY,Gary can't stop making a pass at Sam even after learning that the bar is full of creepy robots. tt1213663,dshmyllg2HE,"The four friends arrive in Newton Haven and are met by Gary and the ""Beast""." tt1213663,-JERO2LQSKc,"Gary King tries to convince Andy Knight to come back to Newton Haven with him, but Andy has some unresolved issues with him." tt2557490,J4ciEVJMzIE,Albert and Clinch meet for a final showdown to win the hand of Anna. tt2557490,w3sv1-F1JeI,Albert takes a potion supplied by a tribe of Native Americans in order to determine his destiny. tt2557490,FHL1AJ0wbck,Edward and Ruth make love for the first time. tt2557490,4diIC2MRjiA,Foy suffers from a stomach bug at the shootout with Albert. tt2557490,ARTwLLhQZHw,"Foy dances and performs to ""If You've Only Got a Moustache"" at the town dance." tt2557490,DTZ1bgOIaAY,Albert discovers somebody doing some secret work in a shed. tt2557490,oTx_o5B0J1Q,Anna bets Foy that she can out shoot him for one whole dollar. tt2557490,k-m4QOtv-rQ,Edward tries to convince Albert to leave his house. tt2557490,vRXk74BCp-Q,Albert explains to Edward and Ruth all of the ways you can die in the West. tt2557490,wlwh5x9eHBM,Edward waits for his girlfriend Ruth to finish work at the whorehouse so they can go on a date. tt2318527,jrhB_dBxc-8,"Vanessa finally gives birth, but nobody is prepared for the unspeakable horror of the Hell Baby." tt2318527,Ajc5z4sg-O4,Father Sebastian and Father Padrigo wait for papal authority to perform an exorcism in the usual ways: playing medicine ball and going to a strip club. tt2318527,GXnlDTh9sCU,Nobody reacts well to seeing police photos of Dr. Marshall's dead body. tt2318527,UAfx1pipLQg,Marjorie's weed-fueled seance goes from groovy to gruesome in a hurry. tt2318527,Ah5f0zWgfvQ,"Father Sebastian relates the bittersweet tale of how he became a priest, and of, in particular, bullet-sucking nurses." tt2318527,mL-M04A1D0g,"Father Sebastian and Father Padrigo are men on a mission, but they're also out for a good time." tt2318527,quaACkqyF3M,"Jack attempts to take a nap, only for things to get exciting, then terrifying, then stressful." tt2318527,vUTQexv1mzM,"What's the best way to relax after investigating a disemboweling? Pizza salad, of course!" tt2318527,pbWOEIzQ_r4,"Jack identifies the body of Mrs. Nussbaum, which goes even worse for him than expected." tt2318527,TPlxZPhOsQM,"Vanessa and Jack move into their new home, and it might've been a good deal for a reason." tt2318527,Fr-ilDHT3gM,"Jack and Vanessa meet Mr. Marshall, who is very happy to meet them. Very happy." tt2318527,cFjGykszgK0,Things get creepy in a hurry at Vanessa and Jack's new house. tt2017038,EBPZaYv0_AM,"Just when all hope is lost, something catches the man's eye." tt2017038,ZCphcTQguUY,The man tries to get the attention of a ship by starting a fire on his raft. tt2017038,G4WgfNcZgo4,The man tries to get the attention of a passing cargo ship. tt2017038,5vecZ4JxUZU,The man finds a surprise when he thinks he has caught a fish. tt2017038,QOb4mg7oXO0,The man discovers that he has no fresh water left on his raft. tt2017038,9l_USfDRi2E,The man says goodbye to his boat as it sinks into the ocean. tt2017038,aq45c8eGVoA,The man flees his boat for the safety of the life raft. tt2017038,ElFzH0wPql4,"While the man is inside the cabin, the violent storm overturns the boat." tt2017038,JA9ZcCBGQ-M,A huge wave knocks the man overboard and demolishes the boat. tt2017038,R4vRfIL-Cv4,The man is knocked overboard while weathering the storm. tt1247640,MUgLPMuwDfU,"The gangs confront Gassman, but he takes the President hostage." tt1247640,FtykdGuzX-4,Leito and Damien infiltrate French Military Headquarters with the gangs from B13. tt1247640,AUBAs5rWsaY,"The cops attempt to capture Leito, but he leads them on a wild chase from roof to roof." tt1247640,0OdOZTw1sAo,Tao takes on a group of soldiers. tt1247640,zqWR21AIFJA,Leito and Capt. Damien Tomaso escape from the Police precinct. tt1247640,UixHUUJXcSw,"Damien takes care of his nemesis, Roland." tt1247640,TMVem9xHaHY,Capt. Damien Tomaso and Leito attempt to escape from the police station. tt1247640,S8XR0_wlYUA,Leito breaks Capt. Damien Tomaso out of prison. tt1247640,xk3clsiBnRE,Leito knocks out a police chief to get into the precinct. tt1247640,N1GwJt7fEGI,"After the shooting in District 13 is televised, an enraged officer fires shots at a gang member from that area." tt1247640,2hZFC6Q8zk0,Capt. Damien Tomaso wards off henchmen with a two-hundred million dollar painting. tt1247640,Jmlx4p_9MfA,Capt. Damien Tomaso fights his way out of the club and ends up with a time-bomb on his hands. tt0120241,uCMat1QDt6k,"Having learned that Elise was behind the whole kidnapping hoax, Charlie and Lono bring swift punishment to her and her lover, Max." tt0120241,ud421fnpmYs,"Lono arrives to rescue Charlie, but Avery's fear and distrust get in the way." tt0120241,-G_I8dQHN5s,"Under extreme duress, Avery finally comes clean about the whole plan, the revelation of which breaks the will of the group." tt0120241,QHuTlVI2zgQ,"Charlie cajoles Max into revealing that he is a fraud and that in capturing Charlie, the gang has kidnapped and tortured the wrong man." tt0120241,gEhB7HuQk7M,"Max tells Charlie Barret a story of how Brett lost some serious cash at poker game when an unscrupulous dealer, The Widowmaker, beat Brett's hand, sending Brett and the group into major debt." tt0120241,IBjOZQCPPXQ,Brett tries to break the spell that Charlie has cast over the others by telling Avery a story of how Charlie got rid of his neighbors by using attack dogs. tt0120241,J0SN6An2yCg,Lydia recounts the time when Charlie saved her from the glutches of Nick The Nose. tt0120241,NHiG4hmxkjQ,"Over a game of poker, Charlie tries to size up each of his captors as a means to gain their sympathy, but Brett doesn't buy Charlie's ruse." tt0120241,grEV7MeCTsg,"When Charlie Barret tells his captors that he has to urinate, the gang gets into an argument on the logistics of helping Charlie pee." tt0120241,GI8Vrbnwre4,"Finding himself tied up and surrounded by four young hooligans, Charlie Barret tries to find out what's going on and why he has a mysterious blood stain on his shirt." tt0120241,guWGxRXZbis,"Charlie Barret tries to convince Max to let him go by appealing to Max's memory of his girlfriend, Elise." tt0120241,UmpctrXzd1E,"Intercutting between preparation and execution, the gang makes a bungled attempt to kidnap Charlie while ostensibly driving him to a dinner engagement." tt0377471,SCiMcDcoi3E,Elliot spares Chili and Edie when he learns he has an audition; Elliot turns on Raji. tt0377471,swo423cXQuE,Aspiring performer Elliot auditions for Chili and Edie. tt0377471,9k2nstrtUs0,"When the Russians storm into Nick's office, their poorly-chosen words infuriate Sin." tt0377471,51euUliFZ-w,Chili literally dodges a bullet when Sin drops his grudge and agrees to produce Linda's album. tt0377471,HprI62nr3GI,"Emboldened by FBI surveillance, Chili clobbers the Russians in their own pawnshop." tt0377471,2_pqFqYME68,"When a fed-up Elliot comes after him, Raji talks fast." tt0377471,DcfEOMgI_5o,Chili rants to Tommy about the movie business and receiving an R rating from the ratings board. tt0377471,FwCOP-yKD5w,Chili strikes a deal with Sin to prolong his life. tt0377471,Jqa0bO9PSqI,"Feeling disrespected, Raji beats Joe to death with an aluminum bat." tt0377471,6qqJOQltyTY,"Chili steals Linda from Raji, leaving the manager flat-footed. Elliot shows off his acting chops by giving the ""look,"" a.k.a. raising his eyebrow." tt0377471,Yfof0ch3R7k,"Sin thrashes a radio programmer with a spatula, upset at his records' airtime." tt1478338,KXldzNF7Y4Q,Annie tries to get Officer Rhodes' attention by breaking every traffic law she can. tt1478338,s9prJba2vkw,Megan slaps Annie around and lectures her about her pity party. tt1478338,ILqwaOR70mU,Annie Walker and Lillian have a huge fight at the bridal shower. tt1478338,sf9038zMVgo,Annie takes a sedative and acts completely drunk on the plane to Vegas. tt1478338,PP9l4LP0WPI,"The bridal party gets food poisoning at the dress fitting, with awkward results." tt1478338,ba5F8G778C0,Annie gets into a verbal sparring match with a teenager shopping in the jewelry store. tt1478338,lyQ1m8xbJW0,"Annie and Helen play doubles tennis, but it turns very mean-spirited." tt1478338,qWsC4YHbOlw,"Annie gets pulled over for drunk driving, but she is just a bad driver. The cop does find her attractive though." tt1478338,7kihC0VFaQE,Annie meets Lillian's colorful friends at the engagement party. tt1478338,g2iWVWVSb6Q,"Annie sleeps over at Ted's house, but the morning is quite awkward." tt1981677,vOTtCjGqXYo,The Bellas bring the house down with Beca's arrangement of popular songs. tt1981677,zRFatzj_5do,The Treblemakers perform at the finals and Benji finally gets his chance to shine. tt1981677,KfUxknvLpwY,The Bellas confess their secrets to one another. tt1981677,wlFo4ydbP7c,Beca helps the Bellas sing about sex at the Riff Off. tt1981677,cKpV6Wb81Ak,The Bellas revolt against Aubrey's controlling ways and turn to Beca for help. tt1981677,jki2_TXdG_Q,Beca leads the Bellas in a rehearsal where she remixes the songs. tt1981677,m5-bSlttk18,Chloe reveals that she has nodes on her vocal chords. tt1981677,eO1Jm4N4rlA,Beca has an awkward encounter with Chloe in the showers. tt1981677,Ixi9imJZ40M,Beca auditions for the Bellas with her own version of the Cup Song. tt1981677,sMWnN_9GiX0,Chloe and Aubrey try to recruit Fat Amy to join the Barden Bellas. tt2398249,4nEpmBhIy1w,Molly leaves Eggbert at the altar while Joel rushes to stop the wedding. tt2398249,MpiqRi2JW4M,Joel asks Molly to give him another chance. tt2398249,dUi0j-vedRE,"Molly and Joel, in relationships with other people, attend the same parties for Thanksgiving, Christmas and New Year's. Molly's boyfriend Eggbert proposes to her and she accepts." tt2398249,cFvxjIsjwoc,"Molly and Joel break up, but a recently dumped Tiffany is waiting at Joel's apartment looking for a little bit of sympathy." tt2398249,lHNgUHi-WPM,After their date Joel and Molly destroy the apartment while making out and then have a romantic montage. tt2398249,VkwwtlAGSwk,Joel and Molly go out on a date. tt2398249,sCG88QHentc,"Joel and Molly go on on their coffee date, but have pretty complicated orders." tt2398249,Sqb85Gfj0Fw,Joel and Molly run into each other at bookstore and they end up going out for coffee. tt2398249,jVGX-_Iodwc,Joel and Molly set up their story. tt2398249,zLKCXUGISSQ,Joel and Molly run into each other en route to the Halloween party and it is hate at first sight. tt2398249,ZEwg4041Q9M,"Before proposing to Tiffany, Joel runs it by his buddies Tommy, Teddy, Bob and Oliver." tt0351977,QjLYqCsggvg,Chris and Jay have a brutal grudge match in the drug lab in the mill. tt0351977,b60vt92AzKQ,"Chris and Jay grapple in the woods, with control of the town at stake." tt0351977,82dHCGddOSU,Chris and Ray turn the tables on their attackers. tt0351977,tr97dNKSBao,Chris and his family come under simultaneous attack at home and at the sheriff's station. tt0351977,rqc2lyHj63A,A vengeful Chris hammers the security goons at the Wild Cherry. tt0351977,N_xWF7HBpJk,"In the hospital, Chris's family has questions for sheriff Watkins, while Ray visits Chris." tt0351977,vSLOINP7w0s,"When Chris stops Jay's car, the two rivals trade threats." tt0351977,613uBNehFWQ,"At the craps table, Chris exposes the stickman's loaded dice; a brawl ensues." tt0351977,1y1cthozBuc,"Pleading his own case, Chris delivers a speech to the jury." tt0351977,PJ8v0jwQGXc,Chris is carved up by casino security. tt0985694,fRs243dwWkw,Machete shows what he can do with a minigun and a motorcycle. tt0985694,yP5TAs29e0U,Machete leads his army against a mob of violent border patrolsmen. tt0985694,bR4b3meiMlw,Machete uses an assortment of medical equipment and human organs to escape an assassination attempt by Sniper. tt0985694,FJv4vY954UU,Padre defends his church from Osiris and his henchment tt1013743,oMWqB05lpRU,"Roy and June race to save Simon, but run into a dangerous obstacle." tt1013743,xSVasSOEG28,Waking on an island paradise June begins to worry about how she wound up in a bikini. tt1013743,8wUtvaL4G9s,"While June fools around with a gun, Roy discovers the next step on their journey as assassins close in." tt1022603,ARoB1nWPsxo,Tom and Summer play husband and wife at a home furnishing store. tt1022603,bBLKvPSgQ2A,"After running into each other, Tom and Summer have one last conversation about true love." tt1022603,-fL94BTrFhs,"Tom arrives at Summer's for a party, only to find that his expectations don't match reality." tt1022603,4rGia6hIWmk,Tom gets his card-writing inspiration from Summer. tt1022603,DomJHvbM7qE,Summer surprises Tom at the copy machines. tt0327850,j-dYZPMpoqI,"Beck fights the last of Hatcher's men, while Travis goes after the stolen Gato." tt0327850,bq_WJS_HlPc,Beck takes control of the fight to save Travis from certain death. tt0327850,WJXF9gcUcNU,Beck tries to prove his innocence while defending himself against the whole rebel camp. tt0327850,W_Piq1uGGfs,Travis tiptoes his way through the booby trapped cave to try and recover El Gato do Diabo. tt0327850,VdYPqVZIB9M,"Trapped in the jungle, Beck and Travis come face to face with a group of aggressive monkeys." tt0327850,25yR3OUlVbI,"Just when Travis thinks he's escaped, Beck is there to re-capture him." tt0327850,jKyhNbLEKxY,Travis takes matters into his own hands to prevent Beck from taking him back to America. tt0327850,qoxMZtAmAiI,Hatcher tries to explain the concept of the tooth fairy to his Brazilian henchmen. tt0327850,23v-gPJiaZs,"Before Beck can head back to America with Travis, Hatcher intervenes so he can find the missing artifact." tt0327850,DkMA0rGCU3s,Beck fights through a team of NFL players to collect his debt from Walker. tt0947798,8qyhhOM76Rg,"Nina's obsessions drive her to the brink of insanity when she witnesses Lily seducing David, her dance partner." tt0947798,iOaD5cZNw0E,"At the fitting, Nina begins to hallucinate strange visions and to make matters worse, she learns that Thomas has made Lily her understudy." tt0947798,dwD4JZsAuew,"Nina auditions for the role, but Thomas can only see her as the perfect white swan, not the dangerous black swan." tt0947798,-XCvw6NPfVM,"When Nina doesn't perform to his standards, Thomas shows her how to be properly seduced." tt1542344,6KqG8CYcMKk,"Cracking under the stress of his entrapment, Aron mocks himself on an imaginary radio show." tt1542344,qDFzVZklg1Q,"Aron hallucinates that he's in a flash flood, leading to his escape." tt0947798,Kd-81VRVQXw,"In a dream sequence, Nina's dangerous obsessions of perfection manifest in the form of the demonic Black Swan." tt1538819,MgFF-JBCHUg,"Aron falls, discovering to his horror that he is stuck." tt0451079,MoOwbXap6LM,"With Kangaroo threatening to boil the speck, Horton pleads with Mayor to have all the citizens of Whoville to make as much noise as possible to prove their existence." tt0451079,8eC08uGwWiw,"When Kangaroo tries to destroy the speck, Horton gives a rousing speech about ethics and humanity." tt0451079,vP8C80lIRt0,Horton daydreams about how amazingly he'll protect the speck. tt0451079,7FkWC2S0MfY,"The Mayor gives as much time to this many children as possible, but none interests him more than his heir, Jojo." tt0451079,InIEECDCSYU,Horton demonstrates to the Mayor how small he really is. tt0098206,E_RNZFm1mls,"Dalton is treated by Doc Clay, but refuses anesthesia." tt0098206,uCZStp0Z_xg,"After Dalton pummels Brad into submission, the angry townsfolk finish the job." tt0098206,c0JxgKT4jZc,Dalton pins Tinker with a giant taxidermic polar bear. tt0098206,NGhqTwxz4eQ,"When Jimmy attacks Dalton, Dalton fights back and rips out his throat." tt0098206,2KvZqLVSL9c,"After finding Wade dead, Dalton retaliates against the killers by crashing a car through their compound." tt0098206,xuLi1MdUKQw,Dalton knocks Jimmy off his motorcycle and then proceeds to whoop his butt. tt0098206,jDMfIPRm7jY,Brad gets even with Stroudenmire by driving a monster truck over his lot of cars. tt0098206,7aW8QnLYxY4,"Wade visits Dalton while he trains on a punching bag, as they share a moment of understanding." tt0098206,SeKVwumCmBE,"When Dalton spots a guy with a blade hidden in his boot, he kicks him out of the club and then beats him to a pulp for being too stupid." tt0098206,6ZGvkZAP4lY,Wade shows up just in time to help Dalton win a fight. tt0098206,-QJsljIDKkk,"Dalton states the rules of the bar and tells his crew to ""be nice"" to customers, even when they're rude." tt0050825,dGmuICb8a7Y,"The hardened French troops are moved to tears when a young German woman sings a folk song entitled ""The Faithful Hussar.""" tt0050825,UHPq25mUJwk,Col. Dax is offended when Gen. Mireau and Gen. Broulard speak casually about the death of his men. tt0050825,VICyZk-XSLA,Col. Dax is surprised and angered when Gen. Broulard offers him Gen. Mireau's command. tt0050825,75UHGiJjNuw,"The soldiers become nervous and lose hope that their lives will be spared, but Pvt. Ferol remains confident and optimistic." tt0050825,G2mYFXmFQPw,Col. Dax wonders why the men need to be executed and Gen. Broulard explains how he maintains discipline. tt0050825,0niEZsahtEo,Lt. Roget has a difficult time offering blindfolds to the prisoners just moments before their execution. tt0050825,VkUKAtzE0r0,"With mortars exploding all around, Col. Dax leads his troops out of the trenches in an attempt to take the ant hill." tt0050825,UqLq7sMS2sU,Col. Dax agrees to take the Ant Hill on Gen. Mireau's order. tt0050825,AApQkNSViGg,Col. Dax begs the court to show mercy to his men and explains the inadequacies of the court for not allowing a fair trial. tt0050825,G7Mvs5Ic8us,Capt. Rousseau refuses to obey Gen. Mireau's order to shoot down his own men unless he receives the order in writing. tt0050825,PU4PQ3OJn58,General Mireau strolls through the trenches checking up on the soldiers and comes across a shell-shocked coward. tt0095690,YPZqfRINveI,Daisy endures the snobbery of Charles's parents during an elegant dinner at their home. tt0095690,FIyHh9pO464,The Mystic Pizza staff is elated as they watch a highly complimentary televised review of their restaurant by critic Hector Freshette. tt0095690,ikqDLmNc678,Daisy dumps fish garbage into Charlie's Porsche when she mistakes his sister for a mistress. tt0095690,HhFqWgJrtb0,Bill tells Jojo that he's fed up with their relationship because all she loves about him is his dick. tt0095690,8mmqyI9CVWI,"Daisy judges her sister Kat's relationship with a married man, while Kat slanders Daisy's reputation." tt0095690,SAWm5lLfGZ0,"When Bill tries to convince Jojo to marry him during a heated make out session, her parents catch them in the act." tt0095690,kQI3S3inEXg,"In an empty house, Daisy leads Charles up to the master bedroom one piece of undressed clothing at a time." tt0095690,LSlXOh60wk0,"When the Porsche gets a flat tire, Daisy and Charles use numerous tactics to hitch a ride." tt0095690,JwgvbLF28fE,"Jojo describes her love of Bill's wrists, while Kat and Daisy discuss their opposite paths in life." tt0095690,FaLsWjMiIrI,"After watching a Fireside Gourmet review on TV, Leona lectures the girls about the honor of tradition." tt0095690,WLqx522tlYU,"During the wedding ceremony to Bill, Jojo faints on the alter in front of the entire church." tt0091217,TdT_PiRLsaI,"With the game on the line, Coach Dale puts his trust in Jimmy, who sinks the final shot." tt0091217,Ao50y1xdfW8,"In the locker room before the game, Coach Dale thanks his team for the journey, and the Preacher leads a pre-game prayer." tt0091217,_gEt3iNmLyw,"With seconds left on the clock, Ollie sinks two underhand free throws and wins the game." tt0091217,iE9CEAzLPKg,"When the team is overwhelmed by the massive gym, Coach Dale has them measure the court, reassuring them that it's just a gym." tt0091217,C2ILSuQOmEg,"With the game on the line, Shooter pulls it together and runs the Picket Fence, winning the game." tt0091217,X-HeG5tFKUo,"Feeling the Good Lord's strength in him, Strap plays some inspiring basketball." tt0091217,zFaEUnrsjL4,"Jimmy crashes the Town Meeting with a bombshell: ""I play, Coach stays."" The town re-votes and Coach Dale is reinstated." tt0091217,676TpKq_6Ok,"When his star player Rade won't pass the ball, Coach Dale benches him, even if it means his team must play one man short." tt0091217,z1F9D6LVTkA,Coach Dale offers Shooter a job as his Assistant Coach on the condition that he sobers up. tt0091217,WUujUq9VHVs,Coach Dale meets his short-handed team and promptly loses two players. tt0091217,l1jCg_FmQmQ,"After losing the game on principle, Coach Dale gives his team a locker room speech where he makes clear that his word is law." tt0091217,Do7U7AkA5jA,Coach Dale dismisses George at practice in front of the whole team. tt0106856,x1-axqBZdNk,Two golfers get rowdy when they see William 'D-Fens' Foster walking in the middle of their course. tt0106856,hlzm7-gvTRg,William 'D-Fens' Foster loses his cool at Whammy Burger when informed that they stopped serving breakfast at 11:30 am. tt0106856,9OhIdDNtSv0,William 'D-Fens' Foster gives the construction crew something to fix. tt0106856,0jSVwZ8w3C4,"Nick, the Nazi Surplus Store Owner gets into an altercation with William 'D-Fens' Foster." tt0106856,yooamJf-T_8,William 'D-Fens' Foster shoots up a phone booth in a reaction to a rude bystander waiting in line. tt0106856,pZfva5xDNLU,"After a failed drive-by shooting, William 'D-Fens' Foster takes the gang's weapons and walks away." tt0106856,1iWqn89nvJs,Gang members attempt to kill William 'D-Fens' Foster during a drive-by shooting. tt0106856,-UZY16_K3Pw,Mr. Lee stops by the police station to report the assault at his convenience store. tt0106856,hlKMLkrSrDo,William 'D-Fens' Foster is approached by two Mexican gang members who don't take kindly to strangers. tt0106856,Z4tC4qfv92Q,William 'D-Fens' Foster gets himself into an altercation at the local Korean convenient store. tt0048028,dy9fKXNAhA0,Cal tells Adam what he revealed to his brother. tt0048028,Ro_k0jgMvKU,Adam forgives Cal and finally asks for his help. tt0048028,VfOrY7CidTA,Cal tries to give Adam his birthday present but he rejects the gift. tt0048028,f2SskRLd4F4,"Cal takes Aron to see Kate, the mother they thought was dead." tt0048028,I3hVaKO5olI,Aron tries to stop a fight among the townspeople but Cal only makes matters worse. tt0048028,gw_zwDaiuJs,Abra confides in Cal about her relationship with his brother. tt0048028,dG6C9JuB4YA,Kate tells Cal why she left his father. tt0048028,ud1tMFmSp2I,Roy instructs Adam on how to start an automobile. tt0048028,Z6_Ti4ntV7g,"Cal tries to speak with his mother, Kate, but she responds with fear and anger." tt0048028,WpO_eNT9StE,Cal tries to talk to Adam and understand the truth about his mother and himself. tt0059113,2EKDKks9qtA,"Dr. Yuri Zhivago and Lara get ready to escape with Komarovsky, but Zhivago stays behind." tt0059113,zvA-7VuKQCU,"In his last minutes of life, Dr. Yuri Zhivago thinks he sees Lara on the street." tt0059113,P4kQvkvGi9M,Soldiers rebel against their generals as the Russian Revolution begins. tt0059113,4ipKK450XwM,"After years of separation, Lara and Dr. Yuri Zhivago meet again, and Lara shows him her house." tt0059113,TrwIvCFIMZA,"Lara laments to Zhivago how lovely it would have been for the two of them to have met at another time, under different circumstances." tt0059113,ozpct8zUA_U,Strenlikov interrogates Dr. Yuri Zhivago. tt0059113,rzs0681gdf0,Dr. Yuri Zhivago helps a woman jump onto the train. tt0059113,eYMbAHC6RxU,Dr. Yuri Zhivago's attraction to Lara grows towards the very end of their six months in seclusion. tt0059113,j-v6XtJFNQE,"At a Christmas Party, Lara tries to assassinate Komarovsky." tt0059113,xvQLAg16ZD0,Dr. Yuri Zhivago watches Russain soldiers disrupt a peaceful protest. tt0250494,GQmt9W6Ky7U,"Trying to help her friend move her romance forward, Elle teaches Paulette the ""bend and snap!""" tt0250494,GSu7BGbyJqc,"While questioning her witness, Elle makes a startling discovery about a perm that saves her client." tt0250494,8rNVaY7Stt4,Elle and Paulette visit Paulette's ex-husband and Elle uses fake legalese to get custody of the dog. tt0250494,I6uGId-a758,"When a key witness in the murder trial insults Elle's shoes, she discerns that he is gay and helps discredit him." tt0250494,HZtQl0lF3OE,Elle is awarded an internship with Callahan's firm along with Warner and Vivian. tt0250494,xs3_hNYAVRw,"After Elle impresses Professor Callahan, he asks her to apply for his internship." tt0250494,gwY85_MC_AY,"Conspiring with Vivian, Professor Stromwell asks Elle to leave class." tt0250494,EVmLV7swH2k,"Elle decides that in order to win Warner back, she must go to Harvard Law School." tt0250494,rLcAQVgMTSY,"Elle ""accidentally"" runs into Warner for the first time at Harvard and announces that she now goes there." tt0250494,IrDm-HzK2y8,"To gain admittance into Harvard Law School, Elle puts together a video essay showing off her finest assets and qualities." tt0250494,yfy4and2vPg,"Believing that Warner is about to propose marriage, Elle is shocked when he unexpectedly breaks up with her." tt0479143,5HksV7ZFuhM,"The last round is a nail-biter as Rocky struggles against Dixon's speed and strength, but Rocky's memories and the support of the crowd drive him to finish the fight." tt0479143,TuTOzEYtgzQ,"Rocky prepares for the fight with a series of rough and tough training methods, including the classic punching meat." tt0479143,yg6v5Ur4pcM,Rocky pushes through a grueling fight with reigning champion 'The Line'. tt0479143,QrmQqEg4isU,Rocky reproaches his son for not believing in himself. tt0479143,CkqAe9DL56w,"A confident Rocky isn't phased when 'The Line', the reigning champ, tries to intimidate him." tt0479143,ENRq7P9lAtg,Dixon loses his cool during a press conference when there is speculation about his credibility as a fighter. tt0479143,ZR2txV7X8sE,"In a televised ESPN simulation, 'The Line' gets nervous as he watches the simulated Rocky knock out his own character." tt0479143,XXk8J83A25A,Marie gives Rocky guidance concerning his opportunity to fight one last time. tt0479143,wTk1noW_8Lo,"Rocky and Marie are harassed, but Rocky won't stand for them insulting her." tt0479143,Et_Bdct1T0U,Rocky stops by Paulie's factory and opens up to him about his intense feelings. tt0479143,6CxSbcM0vw4,Rocky gives a stirring speech about rights before the Pennsylvania Athletic Commission. tt0113321,SLn4BL4gP_w,"Leo surprises Claudia on her flight, suggesting they share the two hour flight with no expectations." tt0113321,3iJMdVAsPpc,Leo seduces Claudia with an anecdote about freak occurrences around the world. tt0113321,vOaX_Naqxb8,Joanne has a fit when Tommy launches the turkey in her lap; the situation quickly escalates to an exchange of personal insults. tt0113321,XVYzO4IEKro,Claudia reassures her mother in the pantry. tt0113321,5AZ2yDKNEXM,Claudia and Leo bond over the frustrations of dealing with their family members. tt0113321,Cl-BpGO92Lo,"Aunt Gladys announces that she's always been in love with her sister's husband, Henry." tt0113321,7rI4qKw_X5g,Claudia gets saved by Leo after having an embarrassing run-in with her old friend Ginny. tt0113321,RQV-8HxVB44,Claudia and her brother Tommy pick up their quirky Aunt Gladys for Thanksgiving dinner. tt0113321,JOD_65vh8GI,Tommy and Leo spy on Claudia while she talks to Russell. tt0113321,kIrQoHQzxnY,Tommy tries to annoy Walter and his family by jumping all over their car. tt0113321,Hrztxo5t4Ic,"While flying home, Claudia makes a desperate phone call to her brother." tt0113321,032myLDgIqw,"After losing federal funding, Peter has to fire his youngest employee, Claudia." tt0311648,pf1K2ACmGKY,"While buying a new used suit, Bobby talks to Latrell about love and how it can transform a person." tt0311648,CE8HyH5ldEY,"Wayne, an oddball neighbor of April's, crowds her in the kitchen." tt0311648,9RfC79nFT3U,Joy's funky music puts her in a sexual mood. tt0311648,SCcBom6117E,"When April appeals to her neighbors for help, Evette is highly amused until she hears the whole story." tt0311648,n7mNY2F938Y,"April receives some wisdom from a disturbing, cat-loving neighbor." tt0311648,-BuN5efFTXA,Joy gets a thrill from misleading her family with a mock-sincere speech. tt0311648,dxMTCKAWIJg,"Joy readies herself for an unpleasant visit at April's, but Jim remains optimistic." tt0311648,-_HF-nKeabs,"As April inspects Bobby's salt and pepper shakers, she's reminded of her mother and her childhood." tt0311648,RuPWLi5ifL0,"When April refuses to get out of bed, Bobby throws her in the shower. Meanwhile, April's family prepares for their big trip." tt0311648,ya84jIkf3b4,"April's family arrives in her low-income neighborhood for Thanksgiving, but are scared off when they meet her boyfriend Bobby." tt0311648,5s5GkWkrX5Q,"Joy attempts to share memories of April with her husband and family, but they can't seem to get them straight." tt0311648,ot3mRlgseio,April tries to explain the meaning of Thanksgiving to her Chinese neighbors. tt1731141,kfJINAKOgEY,Ender has a new strategy that he believes will end the game for good. tt1731141,qwMUlFU1Db4,Colonel Graff and Mazer Rackham tell Ender the truth about the simulation. tt1731141,6RVyL8lNtj4,Ender leads his team against the Formics in the final battle simulation. tt1731141,DSmDEMdKauI,Ender leads his unit in increasingly complex battle simulations against the Formics. tt1731141,M6rf7s7NXnc,Ender learns the full story of how Mazer Rackham defeated the Formics on Earth. tt1731141,3E9TWmE3dfI,Ender disobeys his commander Bonzo's orders and helps Salamander Army to victory. tt1731141,2NPSwpdx6iQ,Ender leads his Dragon Army against two teams in the Battle Room and tries an unexpected tactic. tt1731141,79kT7fUtLD0,Ender gets into a fight with Bonzo and then deals with the aftermath. tt1731141,oDRFKZVZwcA,Ender plays a video game that is made to lose and shows ingenuity and a killer instinct. tt1731141,XPcqVHZo22M,"After realizing that the Formics were communicating with him telepathically, Ender discovers the last survivor of the species and makes a promise." tt1670345,Qd4hB_s-GzA,"Merritt McKinney, J. Daniel Atlas and Henley put on one last show to say goodbye." tt1670345,Is4mo3dbWvs,"Agents Alma Dray, Fuller and Rhodes engage in a car chase with Jack which does not end well for Jack." tt1670345,Vx9EOI4RyBs,The Four Horsemen stage a bank robbery for the final trick of their show. tt1670345,8cLtNUD4Hcw,The Four Horsemen rob Arthur Tressler in front of their audience. tt1670345,kJzOYZNQv6M,"Jack, Agent Fuller and Agent Rhoades get in a fight at the apartment." tt1670345,GSQpio_F0Vc,"J. Daniel Atlas, Henley, Jack and Merritt realize they all have been summoned together." tt1670345,AQX2Q-V2Uh8,FBI Agent Dylan Rhodes and Interpol Agent Alma Dray interview Mentalist Merritt McKinney and J. Daniel Atlas tt1670345,2bpkd6hwH6U,Henly performs her first trick - to escape from a tank before she is eaten by pirahanas. tt1670345,h4u9pO-98ZM,"The Four Horsemen are welcomed into the secret society of magicians known as ""The Eye""." tt1670345,aJ67Fz1Jf6E,J. Daniel Atlas explains how magic works and he performs his first trick. tt1670345,HraqSpgcdgM,Agent Dylan visits Thaddeus Bradley in jail. tt1418377,ib-1a-0LHh0,Adam goes to Naberius' headquarters to get back his father's journal from Terra. tt1572315,qNoGZiSKCaY,Heather Miller makes a series of eerie discoveries. tt1588173,fZNPbMu2Ge0,R shows up at Julie's house. tt1418377,W_hzD9mTSpc,"While trying to search for Sarah, Adam runs into Gideon." tt1588173,x2lBq3c3AIY,Julie kisses R after he saved her life only to discover that he has become human. tt1588173,jpIVQIuoX1g,R and Julie meet up with M and a large group of changed zombies who are prepared to help the humans fight off the Boneys. tt1588173,rYVsdfE_Wh8,"Julie and R attempt to tell her father, General Grigio, about how the zombies are changing." tt1588173,NdcXHqLPufg,R discovers Julie surrounded by a group of hungry zombies after she grew restless and attempted to go home. tt1588173,ZS5K9DzFIco,Julie attempts to escape from the saftey of R's airplane home despite his warnings. tt1588173,YAcZjKbm2tk,R reveals to Julie that he is the one who killed her boyfriend. tt1588173,4zT1vWidAJ0,R runs into M and other zombies who have started showing signs of life just like him. tt1588173,ZD5vHtlpl3Q,"Julie is saved by a zombie named R after most of her group, including her boyfriend, is killed." tt1549920,RTnR82EswKE,Sheriff Owens chases Gabriel Cortez through a cornfield. tt1549920,bDm5fnJ1Hg0,Sheriff Owens makes his last stand on the bridge to Mexico. tt1549920,c2HEnbmtknM,Sheriff Owens and his deputies get into a firefight with the bad guys. tt1549920,FhnVceTIOTw,"As Frank tries to help Sarah, an old lady teaches a bad guy a lesson on trespassing, protecting Sheriff Owens." tt1549920,_jru7QsVP2Q,Sheriff Owens gets into a shootout with Burrell. tt1549920,HxdxfEN2v9s,Sarah and Jerry Bailey are pinned down by the henchmen's gun fire. tt1549920,D9SLyzcYXw8,Sheriff Owens fights Gabriel Cortez on the bridge to Mexico. tt1549920,fYb0fQOH11g,Cortez's men destroy the roadblock set up by the police. tt1549920,ryRzxiWudaA,"While in FBI custody, Gabriel Cortez escapes with the help of his henchmen." tt1549920,1Yh8ZXaDY00,A few members of the deputy's department practice shooting Lewis's new gun. tt1572315,VEc6d81jgQ0,Heather saves Leatherface from a grisly fate and he returns the favor by bringing Mayor Hartman to his. tt1572315,rGDHR_rveJc,"Bound and helpless in a slaughterhouse, Heather has a harrowing encounter with Leatherface." tt1572315,02uIi7094E8,"Heather Miller, Ryan, and Nikki make a desperate escape, but Leatherface is hot on their heels." tt1572315,I2qyEk67i4Y,Kenny makes the classic mistake of checking out the basement alone. tt1572315,v_wQqiFXgkY,"Drayton Sawyer tries to protect Leatherface from a police posse led by Mayor Burt Hartman, and even Sheriff Hooper is powerless to stop him." tt1418377,6nTk0X-QW_0,Adam tries to run away from the demons who are hunting him and in turn he starts hunting them. tt1418377,cHRpQP_dp8Y,"After accidentally causing the death of a human, Leonore has Gideon capture Adam." tt1418377,rbYJ1-y-sk8,"Operating under the name Charles Wessex, Naberius has his scientists, Terra and Carl, try to bring a dead rat back to life." tt1418377,H9PhEc4cgVw,"Naberius tries to have a demon possess Adam, but Adam has other plans." tt1572315,i7Bx0--TioI,"Heather wakes up trapped in Leatherface's chop shop with Kenny, and things quickly go from bad to worse." tt1572315,Fm4WFtwxJ9g,"Heather barely escapes Leatherface's attack on the van, only for him to pursue her into a carnival." tt1572315,0ROOrIJuhJw,Heather and Officer Marvin each make a shocking discovery. tt1572315,6F-zsgYCXwQ,"Verna writes a letter to Heather about her inheritance: an estate, a history and her cousin, Leatherface." tt1418377,FX4J_vERu9I,Gideon leads the gargoyles against a horde of demons sent to attack Leonore's cathedral to capture Adam. tt1418377,eXGYvqetC18,"While burying his creator Victor Frankenstein, Adam is captured by gargoyles." tt1418377,WJs5SraEnMM,"Gideon makes a trade to save Leonore, his queen, as Adam watches from the shadows." tt1418377,K8IgSndDsjs,Adam and Helek fight to the death. tt1650043,hQD_fanPkns,"Rodrick's band performs, but his mom is the real star." tt1650043,Z5nYySfvSi0,"Rodrick picks a bad time to steal Greg's diary, and Greg picks a worse place to hide." tt1650043,2tVvgJbqH7U,"Rowley's awkwardness threatens to stop the party, but his charm more than makes up for it." tt1650043,TKkrgiTpj1c,"Greg unwittingly sits on a chocolate bar, making it look like he sat on something else." tt1650043,_kyTyYh6LZ0,"When Rowley's magic act fails, Greg finds the x-factor: comedy." tt1408253,WhWW2IXg_-E,Ben discovers he's been shot in the leg. tt1408253,bb9m4vvEkHc,Ben and James find themselves in a shoot out with Omar and his crew. tt1408253,J0uhG-I0GZ4,Ben and James interrogate Jay to find out where the Serbian arms deal is going down. tt1408253,B3ECx3J3LTQ,Ben attempts to talk psychopath Crazy Cody out of a rampage in a supermarket. tt1408253,F2Bw4OLZHq8,James rescues Ben after he intimidates some Serbian troublemakers at the strip club. tt1408253,hnCQCX3AHzY,Ben tries to teach a lesson to a gang of loitering bikers. tt1408253,_NVC5g_Yngg,Ben practices his shooting at the range with James. tt1408253,35D2hJCrDVw,Ben enlightens young Ramon and convinces him to stay in school. tt1408253,A0R1F_FhwRg,James catches Ben and Angela in the act. tt1408253,BzEjGy7EPIc,Ben and Angela discuss the future of their relationship. tt2848292,lX4H0NmDMck,The Bellas perform at the World Championship competition. tt2848292,rSCm0viS2mM,Fat Amy serenades Bumper. tt2848292,pCQ0k_WvwvQ,Aubrey leads The Bellas in a series of trust exercises designed to help the girls get their harmony back. tt2848292,dLXri8sYr6Q,"The Bellas share their dreams and sing ""Cups"" around the campfire." tt2848292,5EFY3vpKDII,"The Bellas, the Treblemakers, the Tone Hangers, Das Sound Machine and the Green Bay Packers have a riff-off hosted by an acapella enthusiast." tt2848292,lssQ4w2V4XM,"The Bellas watch the German collective, Das Sound Machine, perform at a car show." tt2848292,U7xQuGf5QHA,Fat Amy has a wardrobe malfunction during a Bellas performance for the Obamas. tt2848292,MCFqMGgv1YY,Beca mashes up Christmas songs with Snoop Dogg. tt2848292,C_BolURdHXo,Das Sound Machine and The Bellas trash-talk each other after the performance. tt2848292,2wdQcUUgce0,Emily tries out for the Bellas. tt0369610,sXHsY1eoIzA,Claire releases the T-Rex to help fight Indominus. tt0369610,oPS8-oRvVh4,Blue returns and joins the T-Rex in the fight against Indominus. tt0369610,0FkeGnobtfo,"Owen regains leadership of the raptors, and together they attack the Indominus Rex." tt0369610,WqFEn5wQhBI,Beth and the boys try to outrun the pursuing raptors. tt0369610,d0x7-oo9NAk,Owen and the raptors hunt for the Indominus Rex. tt0369610,LBTE3aH5gpw,Madness ensues when the freed pterosaurs attack the park visitors. tt0369610,5ywvhn6Y4aE,"While exploring in the gyrosphere, Zack and Gray are attacked by the Indominus Rex." tt0369610,zGzurjIEhNA,"Led by the Indominus Rex, the raptors betray Owen, and attack the soldiers." tt0369610,OjxcWhQYMKw,The control team discovers that the Indominus Rex is still inside the cage with Owen and the other workers. tt0369610,Q3znhTOUqi8,Owen steps in to save a young handler after he falls into the raptors' cage. tt2820852,5KnFcsSIzbg,Dom remembers all the special times he's shared with his brother. tt2820852,2bWostOI7uo,"Dom risks it all to save his family, and finish Jakande." tt2820852,bjqsWtO5Xjg,"Just when the predator drone locks on to Letty and Ramsey, Hobbs arrives to save the day." tt2820852,pQeZSHyCe4Q,Dom and Shaw settle the score in an old fashioned street fight. tt2820852,Ff_G9EYI1xY,"On his way to the roof, Brian is attacked by Tran and his henchmen." tt2820852,JVg5X7dUlLM,"In order to escape with the God's Eye, Dom takes a huge leap of faith." tt2820852,UCYjKqnTM_U,"Brian tries to escape the bus before it falls over the cliff, and Roman provides support to Dom." tt2820852,2uRRExAY-8g,The team's plan starts to head downhill once the prince's head of security finds Letty snooping around. tt2820852,0Wt72bHrHFo,"As the team rescues Ramsey from the terrorists, Shaw shows up to get his revenge." tt2820852,1XqI8Lyp21A,Hobbs doesn't take too kindly to Shaw breaking into his office. tt2980516,Aap_UtTuzYs,Jane and Stephen reflect on their life together. tt2980516,KLp6N46er6Y,Stephen answers an audience question about beliefs. tt2980516,EK9aDAUBBhE,Stephen and Jane end their marriage. tt2980516,28MSXeKCm00,Stephen tries his speech synthesizer for the first time. tt2980516,_r-SkfDZphk,"Stephen, Jane, and Jonathan discuss Stephen's new boundless universe theory." tt2980516,pU3klLr1CPA,"After Stephen has his surgey, Jane teaches him how to communicate." tt2980516,q6XF66xysgQ,Jane makes a life-changing decision regarding Stephen's health. tt2980516,62tZR_Z_y08,Stephen learns that he has motor neuron disease. tt2980516,8kaJJGWYXxs,Stephen forms his thesis after hearing Penrose discuss his black hole theory. tt2980516,xG4b0-DSLrI,Cambridge professors approve Stephen's theory about a space/time singularity. tt0066995,vCo2uqlAi4s,"Bond goes to Whyte's mansion, but instead finds two attractive and deadly ladies, Bambi and Thumper." tt0066995,i2MdefwrjCQ,James Bond tries to sabatoge Blofeld's plan but Tiffany inadverntly switches them back. tt0066995,FVqRqUIDG-A,Bond hijacks a moon buggy. tt0066995,UyzhnEqtWAc,Tiffany goes to Circus Circus to retrieve the missing diamonds. tt0086006,JGyNRQzR_Vg,Bond claims to have given up his old ways. tt0066995,qraA12BrzVo,"While looking for Whyte, Bond runs not into one Blofeld, but two." tt0066995,X33UjqGVc18,James Bond is cremated after being knocked out by Mr. Kidd and Mr. Wint. tt0086006,m1AuOoDw25g,Bond escapes from a dungeon to rescue Domino from an eager group of North African slave buyers. tt0066995,wLPEeDsZwGs,"While undercover as Peter Franks, Bond meets the alluring Tiffany Case, a diamond thief." tt0086006,JghXTjexZpE,Bond steals a kiss from Domino to provoke Largo. tt0086006,8RlDsORXN7c,Bond uses Q's newest motorcycle to pursue the evil Fatima Blush and evade henchmen. tt0086006,nuVfizTRHZs,Bond proves he is full of surprises when held hostage by Fatima Blush. tt0086006,wUT5CpgYXMM,Maximilian Largo challenges Bond to a high-stakes game of world domination. tt0086006,CCwUD5fwJwc,Bond is attacked by sharks after Fatima Blush places a homing beacon on his wetsuit. tt0086006,rF2GB1UYxtw,James Bond and Fatima Blush cannot withstand their attraction as they prepare for a deep sea diving expedition. tt0086006,qH3jaW3YJ9o,Q takes Bond down to his shop to show off a few of his newest gadgets. tt0086006,F5gztKbIoaY,James Bond is ambushed by Lippe in the weight room of a convalescent home. tt0062512,iKqEJ2xeATo,"Bond uses one of his handy gadgets to attack Blofeld's men, and open the crater door." tt0062512,dp5dgNKh77M,Bond uses all of Little Nellie's tricks to take out the bad guys. tt0062512,0ay2sO6tWbE,"Bond meets Ernst Stavro Blofeld, a new power in the world." tt0062512,-Cc7j0yr2BY,Bond gets his latest gadget from Q. tt0062512,VVLlZy4m23c,An assassin sneaks into Bond's bedroom hoping to poison him while he sleeps. tt0062512,GaGIb91Mi2w,Bond and Aki evade Osato's henchmen with unusual efficiency. tt0062512,f5wOz-3L1jQ,Bond fights off several dockside henchmen while gaining intel on the Ning-Po. tt0062512,IBqY6eBSQZw,Bond is betrayed by the beautiful Helga in mid-air. tt0062512,PtlmPi0DXws,Bond enjoys learning about Japanese culture. tt0062512,uIQL79UQG40,Bond wrestles with one of Osato's henchmen. tt0246460,yJlbyxOHrdI,"Miranda Frost and Jinx have an epic sword fight, while Bond and Graves fight to the death." tt0246460,P3CF3QER_h4,Bond goes over a cliff while trying to outrun the power of Icarus. Thankfully he is very resourceful. tt0246460,oNGZFJUThHY,"Just as Jinx is about to be killed by laser, Bond comes to her rescue." tt0246460,DvoPZUYUdEM,"Bond confronts Graves after finding out his true identity and that of his betrayer, Miranda Frost." tt0246460,GhTOt1_Miag,"Before Graves gives his presentation on The Icarus Project, Bond flirts with Miranda and Jinx." tt0246460,Y6SIARg-j5c,James Bond engages in an exhillirating hovercraft chase while on a mission in North Korea. tt0246460,fNxA27iQkGw,Bond and Graves fight the old fashioned way - with swords. tt0246460,lViscSQzK8Q,Q gives Bond his gadgets for his upcoming mission - including an invisible car. tt0246460,LzKWVeX9qQU,"After breaking out of the hospital, a hairy Bond swims to Hong Kong and checks into the Yacht Club." tt0246460,-4kio7152q4,"While on a mission in Cuba, Bond meets the sexy Jinx." tt0057076,4Vlw-NzSvoc,"After hijacking Grant's getaway truck, Bond and Tatiana are spotted by an enemy helicopter." tt0057076,XlvqgnIkzZU,Grant holds Bond at gunpoint and explains how much of a fool the famous British spy has been. tt0057076,jbdRO4BSXSU,"Bond, Kermin and Tatiana steal the Lektor from the Soviet consulate." tt0058150,VshyrsRdoF0,Bond wakes up on Goldfinger's personal plane being flown by the one and only Pussy Galore tt0058150,GvyKxUL0x0M,"Thinking that the adventure is over, Bond is surprised to find that his inflight service will be provided by Goldfinger and a loaded gun." tt0058150,r449aYwQvE8,Bond finds himself chained to a bomb and locked inside the vault of Fort Knox with Oddjob and his deadly hats. tt0058150,5p8meeqGJbg,Bond breaks out of his prison in time to spy on Goldfinger explaining his master plan. tt0058150,fZPyHZo5oDE,"Bond wakes up to find himself tied to a table in the direct path of a large industrial laser, while Goldfinger watches from the side." tt0058150,AAbtiIrTqCE,"Frustrated with the outcome of his two encounters with Bond, Goldfinger has his henchman, Oddjob, show the spy what happens to people who meddle in his affairs." tt0058150,SpSnm6rxTqU,"Bond notices Goldfinger cheating at cards, and decides to play with him a bit, along with his sexy accomplice Jill Masterson" tt0057076,-SXbmeFCnTM,"As Bond and Tatiana enjoy themselves in a Venice hotel, Rosa Klebb arrives disguised as a maid." tt0058150,USD2Y7wRNgk,"After Bond and Jill Masterson get to know each other better, Bond finds himself knocked unconscious and finds Jill dead, covered in gold paint." tt0058150,hON2sYpnJoQ,Bond gets a little more than he bargained for when he visits Bonita for a good time. tt0057076,zyTVafoAylI,"While escaping by boat, Bond and Tatiana find themselves being pursued by SPECTRE." tt0057076,cBiLSCP95Nk,"When SPECTRE assassin Red Grant gets Bond at gunpoint, James uses his final moments to pay Grant for one last cigarette." tt0057076,jaA7_aOD2ig,Bond returns to his hotel to find Tatiana Romanova in his bed. tt0057076,xsL7T32XG3M,Bond and Kerim Bey are visiting a gypsy settlement when they are attacked by a truckload of Russian assassins. tt0057076,1XEn8W3UA3w,"While visiting a gypsy settlement, Bond witnesses two woman, who are in love with the same man, fight over who gets to be the man's wife." tt0057076,MDJ7Du14G-4,M brings in Q to equip Bond with a very special briefcase. tt0830515,fAfd4y1IY-U,"As Bond chases after Greene, Camille tries to get revenge against General Medrano." tt0830515,EANmB0vOPqo,"Bond and Camille struggle to find a way out of the burning inferno, while Greene tries to escape into the desert." tt0830515,C6hIucqz4_A,"While surveying the Bolivian land, Bond and Camille are attacked by Quantum's henchmen." tt0830515,i0yWgvRAqTU,"Bond tracks down Mr. Slate, one of Mitchell's contacts, to Haiti where he searches for answers." tt0830515,_vHFGZXqIis,Bond heads to Russia to get revenge for an old friend. tt0830515,q8sWDRO5C4Q,Bond takes a forceful approach to rescuing Camille from General Medrano. tt0830515,lVdSRz3Jsjo,"After gaining intel about Quantum, Bond tries to escape the opera with his life." tt0830515,y88S2uDB1ks,"After betraying Mi6 and attacking M, Bond seeks to get revenge on Mitchell." tt0830515,P056r-oeODU,Bond discovers Mathis's lifeless body in the trunk of his car after being pulled over by the Bolivian police. tt0830515,7TG6R36bkgs,Bond and M find out just how little they know about the capabilities of Mr. White's organization. tt1074638,eTeBFTlR0VI,The end draws near for M as she finds herself in Silva's grasp and 007 out of the picture. tt0059800,9MdivySyCng,Bond joins and finishes the underwater battle with Largo and his men. tt0059800,COqQwiq4uA8,"In their final confrontation on the boat, Largo is about to take out Bond but Domino comes to his rescue." tt0059800,zkTbNH79i9A,Largo and his henchmen engage in an underwater battle with US Navy Seals. tt0059800,SR6W8_yd3yM,"Largo shows Bond his mansion, including his pool full of dangerous sharks." tt0059800,n6rv6RO9ZFY,Bond tells Domino about Largo's involvement in her brother's murder and she agrees to help him stop Largo's plan. tt0059800,JPDhxTbWjuc,Bond is forced to escape Largo's mansion through a swarm of flesh eating sharks. tt0059800,KzCVggIa4uE,"While on a spinal traction machine, an attempt is made on Bond's life." tt0059800,aQsyA4n7GZI,'Q' comes to give Bond his gadgets. tt0059800,z39yOZpcji0,Blofeld holds a meeting with his SPECTRE operatives. tt0059800,4pUeurfZ5n8,"After taking out a SPECTRE operative, James Bond escapes via jet pack." tt0381061,UfmbUwrXatE,"In a suspenseful final round of poker, Bond wins with a straight flush." tt0064757,uO47LgAVYCc,"Bond continues his nighttime ski escape, with only one functioning ski." tt0064757,MochwVdcaEk,Bond and Blofeld have their final confrontation on a luge track. tt0113189,C09knP1SAyA,"As Grishenko attempts to figure out the password, Bond counts clicks on Q's exploding pen." tt0113189,DdktDH98D_g,Natalya watches in horror as Goldeneye vaporizes all she knows. tt1074638,roaWSb9xc8I,Bond falls into icy water and uses his ingenuity to avoid certain death. tt0113189,p0udEu1z-jg,Bond and Trevelyan pit their MI-6 training against each other in a no-holds barred battle of brutality. tt0113189,vAJAM1jm2xI,Bond pits his tank against an armored Soviet train to stop Trevelyan. tt0113189,wGmDAjRRNXs,Bond fights to the death with Trevelyan atop the Goldeneye satellite platform. tt0381061,YsQEo4ja5Z8,"As the villa crumbles into the canal, Vesper locks herself in the elevator and drowns to death, despite Bond's efforts to save her." tt0113189,Of7LHW5cCBQ,Xenia Onatopp rappels down to squeeze the life out of Bond. tt0113189,JA4fL1qiQTU,"Bond encounters his former partner, Alec Trevelyan, who has a bone to pick with MI-6." tt0113189,lCCeLue8owM,Bond sabotages a Soviet chemical weapons facility and makes a quick retreat. tt1074638,beAc5oqxBHw,"Bond tries to rescue M, before Silva can get his revenge." tt0120347,seFIcguvgXk,Bond and Wai Lin make a daring retreat from Stamper. tt0090264,-qVNWgbzbS8,"Bond investigates Zorin's oil rig, but gets caught in the water intake turbine." tt0090264,UBPOSCR4el4,"Stacey holds Bond at gunpoint, but soon realizes that he's not her enemy." tt1074638,kG8GuXOjIPA,Silva has one more trick up his sleeve to evade Bond. tt1074638,m4a6jkZiOkM,Severine warns Bond about the dangers of her employer. tt0071807,H07vHL7APyU,Nick Nack tries to ruin a good night for Bond. tt0064757,oSo9Wu-jAyY,Bond proposes to Tracy. tt0071807,ZVQNsHBi9oA,Bond and Scaramanga face off in a duel to the death. tt0071807,D2HaKTqp4fQ,"With J. W. Pepper's help, Bond tries to catch Scaramanga and rescue Goodnight." tt0071807,SlL11KaxU7w,Scaramanga shows Bond the power of solar energy. tt0071807,6B-QUGSCV6c,Scaramanga evades Bond with a new innovation. tt0064757,LKp3HoZGP2E,"While Bond and Draco attack Piz Gloria, Tracy fights one of Blofeld's henchmen." tt0071807,IVhxiyqp4do,"With Hai Fat's henchmen in hot pursuit, Bond takes matters into his own hands and splits." tt0071807,WCKRXHDI9Ro,Bond fights his way out of Hai Fat's dojo with the help of Hip and his nieces. tt0071807,f__qWwak6Zg,Bond and Scaramanga come face to face at the kickboxing fight. tt0071807,hpaXyCsOZUg,Andrea pays a visit to Bond's room while he's having Goodnight. tt0071807,b1KjK4fd3ZU,Bond finds Andrea in a very exposed position. tt0097742,HZEaFYQecn8,Bond has his final showdown with Franz. tt0097742,8KFPOKVSi7M,Bond evades the stinger missle with a resourceful strategy. tt0097742,RFTI9DnYSpY,Franz and Dario put Bond on a conveyor belt to death. tt0097742,ter7pAZF_nY,Bond sets up Krest to take the fall for the missing money. tt0097742,_CO3CMXf19A,Q surprises Bond with some new gadgets. tt0097742,dCCo8xDMsJE,"Bond attempts to assassinate Franz, but he's stopped by a pair of ninjas." tt0097742,84k1F9o1g7k,Bond fights off henchmen in air and sea after he escapes the Wavekrest. tt0097742,GHZnuSLPSG4,Bond tries to find out more about Franz from his new card dealer. tt0097742,9F_FhwkKdSw,Bond does a little fishing for druglords before dropping into his friend's wedding. tt0097742,Zl9yu2xvv78,Franz gets his revenge on Felix by feeding him to the sharks. tt0064757,I_4ZduVVJrc,"When Bond goes to meet Ruby, he is met with an unexpected surprise. Blofeld tells Bond his plan to take over the world." tt0064757,JzPOYDni_FQ,Bond tries to escape Blofeld's lair by skiing down the mountain. tt0143145,VDWYVgMxBss,"While meeting at Zukovsky's caviar factory, Bond and company are attacked by Electra's sawing helicopters." tt0064757,ZhBCiQ49Iz8,Bond flirts with Tracy until he is attacked by bad guys. tt0064757,BG59rpilakA,"While driving away from thier wedding, Bond and Tracy are attacked by Blofeld and Irma with tragic results." tt0064757,QBip3RFko4I,"Bond, posing as Sir Hilary Bray, enjoys dinner with beautiful women." tt1074638,YpHAGZoV1ds,Silva forces Bond to test his marksmanship skills on Severine. tt1074638,-gZPZLSUZZ0,"Bond comes face to face with the man behind the attacks, Silva." tt1074638,m5p1wM1ZHQ0,"Before he can leave the casino, Bond has to evade more than just Severine's bodyguards." tt1074638,yV8-IGY64pE,Bond and Eve chase a mercenary throughout the streets of Istanbul to recover a stolen hard drive. tt1074638,9NG5mJgw6Yg,"Eve finds an opportunity to take out the mercenary, but it comes at the risk of shooting Bond." tt0381061,UQRxN8qagG0,Bond and Vesper confess their feelings for each other. tt0381061,ifFEIzFztAo,Bond meets Vesper and instantly they can see through each other's facades. tt0381061,xAPOeXEUwnk,"After finding his target, Bond blows up the Nambutu Embassy." tt0381061,38nBkookHsI,James Bond enjoys a swim at The Ocean Club in the Bahamas. tt0381061,J11TVWwQNvI,James Bond chases Mollaka through the streets of Madagascar. tt0381061,IsGdB6a1Evc,"After being poisoned by Le Chiffre, James Bond goes into cardiac arrest. But Vesper Lynd comes to save him just in time." tt0381061,0quEnseH0zo,Bond goes to take out a double agent in his first mission as a 00. tt0381061,BI_Vx6y7xG8,James loses to Le Chiffre in a game of high stakes poker. tt0143145,3opX0w7T_qo,Elektra tightens her grasp on Bond and reveals her true intentions. tt0143145,Q1WdlXsvk3U,Bond and Christmas try to stop Renard before he can set off the nuclear reactor. tt0143145,7DmN0--tZcE,M and Elektra watch as Bond and Dr. Christmas try to defuse the nuclear bomb before it destroys the pipeline. tt0143145,HJV1Cqh8M5M,Bond tries to catch Renard before he can escape the silo with the bomb. tt0143145,XhT1nAzegiE,Bond fends off a team of assassins in paraglider-equiped snowmobiles. tt0143145,K7p93XsmJ0c,"After escaping captivity, Bond gives Elektra one more chance to end the attack." tt0143145,m1Q_m9pvy2A,"As Elektra gambles on her future, Bond plays the riskiest game of all." tt0143145,bQyfZXYp7Mg,Bond takes full advantage of his X-ray glasses while he makes his way through Zukovsky's casino. tt0143145,yk-b5jvZjLM,Bond uses the Q Boat to chase King's assassin throughout London. tt0120347,gappVpWfuCA,Bond investigates Elliot's newspaper printing company until Wai Lin blows his cover. tt0120347,RB_-9bINJCM,Bond and Paris rekindle their romance. tt0120347,5fAASR7YMDE,"Bond and Wai Lin investigate a sunken ship, only to find themselves sinking as well." tt0120347,Ws4ETwvXFw0,Bond allows civilians to escape from a Russian base before a missile atomizes it. tt0120347,7PqjhsPYyy4,"While Elliot announces his journalism magnate to the world, Bond gets accounted with his subordinates in the backroom." tt0120347,NweXJhbk9P0,"Elliot corners Bond, but Bond's the one writing the obituary." tt0082398,X8J0iWSsYV0,Bond and Melina lead an assault on Kristatos' mountaintop monastery to keep a powerful device out of Soviet hands. tt0082398,5fg1GTRuYHg,Bond and Lisl are attacked on the beach. tt0082398,yuBFthJcBiA,Bond and Melina meet an armored assassin in the sunken ship. tt0082398,PPwud5IUnYs,Bond and Melina are tortured with a vicious keel-hauling. tt0082398,gSN6EodbL1c,Kriegler gets another shot at Bond on the ski slopes. tt0082398,4z9TimZytDI,"Bibi gives Bond a little too much information at the ice rink, interesting some aggressive hockey players." tt0082398,T-KYqRfLg4U,Bond jokes around Q's lab again. tt0082398,YBgsfgkgtqk,Bond eludes Kriegler on the bobsled course. tt0082398,AH25lc44Og0,"Bond is captured by Hector Gonzales, but a deadly assassin changes everything." tt0082398,SM-Y8FPMqzg,Blofeld traps Bond in a remote-controlled helicopter. tt0090264,RCzC3ZeMxws,"Zorin details his evil plan for his clients, but not everyone is as on board as he'd like." tt0090264,tSZtoveaa0A,Bond battles with Zorin high over the Golden Gate Bridge. tt0090264,dezECMjxlCI,Bond chases May Day all over Paris. tt0090264,do6yVKI5M-o,"While Bond and Tibbett investigate his laboratory, Zorin and May Day get hot and sweaty." tt0090264,yC4LZXraLBM,"Bond dangles from Zorin's blimp, determined to put an end to his mad schemes." tt0090264,BbryMMaAUKo,Bond and May Day work together to stop Zorin's bomb. tt0090264,2j6I87SIfbM,"Zorin makes a wager with Bond to survive his steeplechase course, but there's no way for Bond to win." tt0090264,f4-sMr967Jw,Bond escapes from Soviet soldiers and warms up with his submarine captain. tt0086034,PzuBG7VmIlk,Bond fights with Gobinda atop Khan's airplane. tt0086034,pHQsot2suvI,Bond impersonates a clown to infiltrate a circus and defuse a bomb. tt0086034,zBeW_hheeGo,Bond and Q aid Octopussy's sisterhood in a hot air balloon. tt0086034,_qVs22tSUnA,"Attacked by General Orlov, Bond risks life and limb to stay with the bomb aboard the Octopussy Circus train." tt0086034,_v1FiZlF3bU,Bond survives against Gobinda and a knife-throwing assassin on a moving train. tt0086034,4gB-5OngLWQ,Bond desperately evades Khan's hunting party. tt0086034,jF5_WqbTmW8,Bond and Octopussy fight for their lives against a buzz saw yo-yo-wielding assassin. tt0086034,MK1fYMxkkTA,"Gobinda chases Bond all over India, allowing for some creative uses of culture." tt0086034,M4oJLImqZds,"Bond fools around in Q's laboratory, much to Q's chagrin." tt0070328,dLl5PQg_Hag,Bond and Solitaire are both captured by Kananga who intends to lower them into a shark tank. tt0086034,2xLWJOG7dO4,Bond eludes a heat seeker missile and lands with style. tt0070328,xQFsE2WoXL0,"As Bond and Solitaire are getting some much needed down time on a train, Tee Hee and his metal arm decide to pay them a visit." tt0070328,KTQnnwDN3eU,Bond blows up Kananga's poppy fields as he rescues Solitaire from being sacrificed by Voodoo God of Death Baron Samedi. tt0070328,TBRqPFkAQCM,"Bond battles Adam, one of Mr.Big's men, on the Louisiana bayou, while Sheriff J.W. Pepper races to confront the man tearing up his territory." tt0070328,vmyGlOoCbp0,Bond is taken to Kananga's crocodile farm that doubles as a drug lab. tt0070328,upQ-MXF_ZgI,"After stealing a speedboat, Bond is pursued by Kananga's men throughout the Louisiana bayou, much to the frustration of local Sheriff Pepper." tt0070328,sojzO-UWObY,Bond and Solitaire steal a double-decker bus while attempting to escape from police controlled by Kananga. tt0070328,70kZeFs721U,"When Bond and Solitaire are captured by Mr. Big's men and brought to the airport, Bond, unarmed, decides that a grounded airplane is just what he needs." tt0070328,IP7jsmECPbs,"After sneaking into Solitaire's house, Bond uses a stacked deck of tarot cards to seduce her." tt0070328,3GlfIStWMSY,"After arriving in San Monique and finding a room reserved by his ""wife"", Bond discovers a slithery killer in the bathroom." tt0076752,FvEi2U7IKRE,Bond and Anya get to know each other better in the escape pod after their successful mission. tt0076752,3vDe4jJvC_o,Bond throws Jaws into the shark tank by his teeth. tt0076752,cGN5hLGphX4,"Stromburg attempts to kill Bond, but Bond gets the better of him." tt0076752,yFlxYvgV3VQ,Stromberg shares his plan to blow up Moscow and New York with Bond and Anya in order to create a new underwater world. tt0076752,sHqb1FwBP2Y,"While traveling by train to Sardinia, Jaws attacks Anya but Bond comes to the rescue." tt0076752,DDQzRai6Uao,Agent XXX and Bond fight Jaws for the microfilm. tt0076752,CDeNNNPzUlg,"After dealing with a double agent, Stromberg's lair gracefully rises out of the water." tt0076752,n1gQ-1zEljg,"While looking for the stolen microfilm, James Bond encounters Jaws for the first time." tt0076752,nR532k8M35g,Bond skis his way out of danger. tt0076752,3JySRf9aTPA,"Bond and Agent XXX, aboard the Lotus submarine, engage in an underwater battle with Stromberg's henchmen - ending with them driving onto a beach full of stunned bystanders." tt0093428,w0ijJ45l-kM,"As Shah's forces take out their Soviet oppressors, Bond and Kara make a death-defying escape in a military cargo plane." tt0093428,l6qtq8aC2Cg,"Eliminating Shah's threats, Bond and Kara have to resolve their own problems in the falling airplane." tt0093428,TD8G-aSlweI,Q provides Bond with a handful of nifty gadgets and Moneypenny reveals the identity of Bond's latest obsession. tt0093428,TDhk_Xhxc3c,"Bond and Kara escape the Soviets with the aid of a Bond car, a sled, and a cello." tt0093428,ITdkeKIFqL8,Bond discovers that the British war games are a well-concealed assassination attempt. tt0093428,Qo1WkD59F_w,"High above the ground, Bond has a final showdown with Necros." tt0093428,JvZ5nh7sIzU,Bond and Kara blaze through Soviet defenses in his souped-up Bond car. tt0093428,J7M8LuEC99k,Rosika has a unique distraction for getting Koskov out of the USSR. tt0093428,LAmOoIdTjsw,Bond takes out the assassins and sets his eyes on a new conquest: Linda. tt0093428,McIJxpY89Kk,"Impersonating a milk man, Necros infiltrates a British safehouse to kidnap General Koskov." tt0055928,S5jj3vqPau8,Bond and Honey Ryder barely escape the destruction of Dr. No's base only to find that they have a lot of time to kill waiting to be rescued. tt0055928,0u0SEECyGlM,"On his way to see Miss Taro, Bond gets a very aggressive driver on his tail." tt0055928,Mh2Tf40llqw,"Disguised as one of Dr. No's henchmen, Bond sneaks into the villain's control center and overloads the nuclear reactor." tt0055928,Fyo66z0NtHY,"After arriving at Crab Key, Bond comes across a gorgeous, white bikini wearing, local named Honey Ryder coming out of the ocean." tt0055928,iedK7wzunWo,"Quarrel and Honey Ryder finally show James Bond the ""Dragon"" of Crab Key island." tt0055928,rsT1bLR2sfM,"During dinner in the underground lair, Dr. No reveals to Bond that he is part of an evil organization known only as SPECTRE." tt0055928,zF-3wgcDRk4,Bond is awoken in the middle of the night by a deadly spider. tt0055928,nLXoZ69ce-I,James Bond introduces himself to Sylvia Trench over a game of Baccarat. tt0079574,xx4t4fBIY88,"Hugo Drax explains his vision for a new master race, but Bond and Jaws are determined to stop him." tt0079574,S4p8_i1lcCc,Bond uses his new speedboat's defenses to escape Jaws and his henchmen on the Amazon river. tt0079574,FFGAP7FxZKQ,Bond discovers that Dr. Goodhead is in fact a CIA agent and they share an intimate evening. tt0079574,cUX2Mj4SN7o,Bond escapes assassination in Venice with a tricked-out gondola. tt0079574,lTiCL83_dR4,"In Earth's orbit, Dr. Goodhead and Bond attempt to destroy Drax's globes to prevent the deaths of millions." tt0079574,v5N1Aukm4Bo,"Drax's assassin Chang tries to kill Bond in the centrifuge chamber, but Q has prepared Bond with a special wristwatch." tt0079574,sXnYoBCJGwI,"Bond, Jaws, and Dr. Goodhead work together to stop Drax while U.S. forces battle his men." tt0079574,2MdAw_f5pAU,"Bond battles the giant assassin Jaws while on a tram, high above Rio de Janeiro." tt0079574,tdXshjACQx8,Bond enters MI6 headquarters in Brazil and witnesses Q's latest inventions. tt0079574,87MO-gtYFT8,"James Bond makes an airborne love connection, but is soon ejected from the plane without a parachute." tt1436562,zTlfN8HuEJA,Nigel sings about his TV show past and his current villainy. tt1436562,Gt4t3ZZsAnQ,Pedro and Nico welcome Blu and Jewel to Rio. tt1436562,gGxrQOUaM_E,Blu's fear of flying causes some serious problems for him and Jewel. tt1436562,PZheNUuK8jg,"A flock of tropical birds welcome you to Rio, Brazil." tt1436562,oz6wjc6xLFU,Blu and Jewel's first encounter isn't as romantic as anyone had planned. tt1318514,T_HWlDa9t6o,Caesar leads his apes through San Francisco to reach safe haven in the forest. tt1318514,mKDqrUqOe8Y,Buck the Gorilla sacrifices himself to take down Steven's helicopter. tt1318514,_kz6s5Yi5Ns,Caesar leads his attack on the humans barring his path to freedom. tt0477347,o2oR9qYeySU,"Putting out the Neanderthal's fire, Larry runs into his nemesis: Dexter the monkey." tt0477347,WeBy3_xqYtM,"During his first night at the museum, Larry is captured by the miniature Old West exhibit, led by the cowboy Jedediah." tt1318514,JDbwEQG2cqI,"Dodge tries to put Caesar in his place, but he's in for a big surprise." tt1318514,wS9RtY8dVpo,Caesar reels in horror with the first death in the great ape revolution. tt0477347,f-DgdMpSo7c,Larry loses his keys and worse to the mischievous Dexter the monkey. tt0489099,ahP1JZwHSh8,David fights with Griffin all over the world. tt0477347,nAgSecmB9lM,"After getting harassed by an Easter Island Head, Larry's night continues to go downhill when he encounters Attila the Hun." tt0477347,JRloSmzWBOg,Larry discovers that something's amiss in the museum -but at least there's a unique solution for taming the T-Rex. tt0489099,M2hhUTxFLWA,David and Griffin go joy-riding - and teleporting - in a Mercedes-Benz. tt0489099,aWyYZ3-8oAM,David gets caught in Roland's trap. tt0489099,gwTTsc0zMco,David confronts Griffin in the Colosseum only to get a nasty surprise. tt0489099,Fm7B7WzAA1M,David realizes what Roland wants the second it's too late. tt0455499,1u0rQ7J3oS4,"Garfield and Prince's paths finally cross, but neither realizes it at first." tt0455499,97hoM2qv05s,Garfield and his animal cohorts carry out their plan against the villainous Lord Dargis. tt0455499,75PCq-Wcdhw,Garfield shows the animals how to make his favorite dish: lasagna. tt0455499,SswN494Jxr8,Garfield humbling accepts his duties as ruling prince. tt0303933,2-7Jdip2Pfw,"At the Classic, A&T has a final face off against the Morris Brown Drumline." tt0455499,FTV4FUlcIwQ,"Garfield and Odie sight-see around London, looking for their owners." tt0303933,JaGoM25tGVA,Devon battles it out with Sean for best drummer in the band. tt0303933,2fsMce1OvXY,"Baited by the opposing drumline, Devon kicks it up a notch." tt0303933,yAhuaFMTSKM,"Devon shows his stuff to Sean, but Sean's got experience and humility on his side." tt0303933,EQW38-aU5gI,Devon tries out for A&T's marching band to slightly hostile judges. tt0098621,0JnpUYMPEiw,Oliver falls in love with the beautiful and flexible Barbara on a trip to Nantucket. tt0120461,21Dc8a8X8qg,Mike and Amy attempt to rescue a homeless man from the approaching lava using a fire ladder. tt0120913,g9U0df6KJiA,Akima and Cale Tucker fight off the Drej until they are absorbed by one of the ships. tt0098621,fCuS78YHrOY,Oliver is astonished and disgusted when Barbara feeds him his own dog. tt0114885,oMpgPQbRt8U,Bernie ransacks John's closet and burns his clothes along with his car. tt0098621,LxMYNhlh0Tk,"When Oliver catches Barbara, she pretends to pleasure him, but ends up biting him in a tender place." tt0114885,IaOlL5WMFI8,Robin confesses to Savannah that she once had an abortion. tt0114885,1FXO-XToURQ,Marvin convinces Gloria that she's worthy of love. tt0120902,4xVAvx5hTic,"A Texas boy drops into a deep cave, where an inky plague infects him." tt0098621,4Iza5db5Zvk,Barbara really angers Oliver when she runs over and smashes his beloved car. tt0120913,1MWZ3mZ-tUM,Capt. Korso saves Cale after all the ships guns are taken out. tt0105812,ajBHZKoKYbU,Gloria gets very upset when Billy brings her a glass of water to quench her thirst and they discuss their issues. tt0120461,LkWeBzzBUXY,"With Mike giving the order, the entire L.A. fire department combats the river of lava flowing down Wilshire Blvd." tt0473308,F2Zm-637bQQ,"Jenna calls Dr. Pomatter on his strange behavior, but realizes that she is also intensely attracted to him." tt0105812,yDtGS3G3xtY,"Billy bets all his money that he can dunk the basketball, but Sidney assures him that he can't because he's white." tt0120902,RfltPijijjA,"Mulder revives Scully with CPR, and they flee the fierce alien hatchlings." tt0105812,fgJ2CaTfaxU,Billy beats Sidney in a basketball shooting competition. tt0120902,esJNnh-d2E0,Mulder's tender moment with Scully is cut short by a bee sting. tt0096463,SEWMcT6bIi8,Tess listens on as Jack desperately tries to leave while Katharine clings to him. tt0120913,JQO8MTlO69U,Young Cale and company escape Earth just in time before it is destroyed by the Drej. tt0084855,qjYP7J3oP9Q,Frank gives a moving statement to the jury about faith and justice. tt0096463,PE-3JxqiV7M,"When Tess arrives at her new job she expects to be the secretary, until Alice shows her to her window office." tt0096463,JKD_ZN2VC3g,"Tess meets Jack at a work function and they share a few shots of tequilas, but no personal information." tt0096463,JjgKkluHXJM,"When Trask's questions reveal that Katharine had lied, he tells her in no uncertain terms that she will be fired." tt0105812,t7DgbPjFOfY,Sidney blows up at Billy for constantly trying to distract the opposing teams with insults. tt0096463,FTHoIehOkK0,"After Bob makes an inappropriate pass at Tess, she finds a creative way to teach her boss a lesson." tt0105812,0XCqc9fIGJ0,Sidney and Billy get a knife pulled on them when they try to hustle some street ball players. tt0473308,n5ArS3Got4U,"Upon seeing her beautiful new baby, Jenna gains the courage to divorce her abusive husband." tt0473308,8EcrxgHLhIg,"Dr. Pomatter tries to apologize for his bad judgment, but ends up making out with Jenna." tt0114885,pUO9-h182d4,"Savannah, Gloria, Robin and Bernie drink and complain about men." tt0120461,CD0k2oB61h0,The volcano erupts near a mall and thousands of civilians. tt0120461,R01bex9Ejvg,"By deciding to save the train driver, Stan makes the ultimate heroic sacrifice." tt0120461,M49PmHt8PEc,Lava erupts from the tar pits and Mike and Kelly must make a daring leap to safety. tt0250797,8iI9iC2OgFY,Ed loses control of himself and beats Paul with his wife's snowglobe. tt0250797,RH2IK1jcLuY,Ed confesses the murder of Paul to Connie. tt0250797,j-V12tL78Mc,Connie learns that she is not the only woman in Paul's life. tt0120902,_QUAEFiNatE,Mulder is awestruck as a massive spaceship launches into the sky above him; Scully is barely conscious. tt0120902,orhrsjDwamY,"In a giant dome tent, Mulder and Scully are set upon by a swarm of bees." tt0098621,S_PMSA9fgiI,Oliver humiliates Barbara at her dinner party by disgusting her clients and pissing on her main course. tt0084855,u-2jqTXKQyU,"Frank confronts the judge about his unfair treatment, but refuses to give up." tt0084855,5lkqZP5rBvg,Frank shares his views on justice as he gets to know Laura at the bar. tt0084855,ME2S71b553U,Kevin Doneghy confronts Frank and blames him for destroying his life. tt0084855,Asm-9UXAOog,"Frank decides that he cannot take the settlement money, but must fight for the victim's rights." tt0117979,_BeHUjskbZo,Brian and his dog reconcile with Abby. tt0117979,zlfMo6Qe2o8,"As Brian recites a list of reasons he's smitten, Abby insists that beauty matters." tt0316732,zal_hU83ruo,Andy and Belle try to trade Lt. Robbins for the money while driving down the freeway. tt0117979,QjLwuMqSb7s,Abby and Brian engage in a candlelit phone-sex session. tt0316732,NMKgdzm1pWs,Lt. Robbins offers herself in exchange for the hostage and Vanessa enjoys frisking her body. tt0316732,OcoatqJqmX0,Belle tries to help Andy relax while driving by turning on some music. tt1753584,De2BarsD4jU,"With Andrew raging out of control, Matt's forced to take him down." tt1753584,B5vXrSsvqqs,"Matt tries to talk Andrew down from his psychic mental breakdown, but he's already too far gone." tt1753584,blWBATSOCtA,"Desperate to find money for his ailing mother, Andrew turns to robbery, and things quickly get out of hand." tt1753584,-YV8tJhGojY,"Andrew realizes that his powers make him stronger and better than those around him, including a bully at school." tt1753584,sBSibz9xdic,The gang tests their growing psychic powers in a department store. tt0988595,OI2JPJj1d6s,Jane makes a heartfelt confession to Kevin. tt0988595,0-HM2VCdrC0,"After a disastrous engagement party, Kevin attempts to apologize and support Jane." tt0988595,ts4gt7f_rek,Jane's engagement party speech for Tess and George takes a dark time. tt0988595,eiLeBJUf1iE,Jane tries on all of her bridesmaid dresses for Kevin. tt0988595,r4K7eNzseCI,Kevin grills Jane on how to say no. tt0094291,oDD1tW59Mjg,Bud finally questions the ethics of Gordon Gekko's view of capitalism. tt0094291,NDV-ryLLkiU,"Gekko speaks to the shareholders of Teldar Paper and declares that ""America has become a second-rate power.""" tt0094291,VVxYOQS6ggk,"At the shareholder's meeting, Gekko announces that ""greed is good.""" tt0094291,sLAan2iZs_Y,"As the sun rises over the beach, Gekko gives Bud his ""wake-up call.""" tt0094291,-TLCaDbBv_s,Gekko lays out his creed of business ethics and how to get ahead in business to Bud. tt0358273,dvloIUSHogs,"John asks June to marry him one last time on stage, and she finally says yes." tt0358273,Tf7suGi96l0,"John performs on stage, wasted, and collapses in the middle of a song." tt0358273,g-uc5_QEmuM,"John performs ""Cocaine Blues"" and gets the prisoners revved up in Folsom Prison." tt0358273,y_fgX9MUfVM,"June and John perform ""It Ain't Me, Babe.""" tt0293662,qAw0VczZGC8,"Frank hijacks a small plane, skydives onto a truck in the escaping convoy, and quickly dispatches the truck driver." tt0293662,BeAtRdD4roE,Frank and Wall Street fight for control of a semi truck while driving it down the freeway. tt0293662,bjLdEjOL1s8,"While fighting a group of thugs in a bus station garage, Frank covers himself with oil to give himself an advantage." tt0358273,4akqi6YYIJw,"After John and June have a fight on tour and part ways, John records ""I Walk the Line.""" tt0293662,bCKgFFmf_iI,Frank leads the cops on a wild car chase through streets and sidewalks culminating in a jump off a bridge onto a passing truck. tt0117509,KJZLcsAmLbM,"After seeing Romeo die, Juliet shoots herself to be with him again." tt0293662,56djkHojg2g,"Frank bursts into Wall Street's lair and fights his henchman, two of whom attack him armed with axes." tt0117509,yClVlc_niac,"Romeo declares his love for Juliet, but discovers that she is a Capulet." tt0117509,Oic7kJRg_F0,Romeo and Juliet exchange vows and find it hard to say goodnight. tt0117509,8JoOpx6VwHk,"While crashing the Capulet party, Romeo is entranced by beautiful Juliet." tt0117509,xcSwBHs1uD4,Romeo drinks poison just as Juliet awakens. tt1323594,gAmo3FcaovM,"Gru finally lives out his dream of stealing the moon, but the ticket to the girls' dance recital forces him to set his priorities straight." tt1323594,Z4DDrBjEBHE,Gru tries to get the girls to go to bed with a bedtime story. tt1323594,tLiM-49DJ7k,"After the carnie cheats the girls out of winning a fluffy unicorn, Gru takes matters into his own hands." tt1323594,YgXPN03oxkc,"The girls interfere with Gru's business meeting with fellow evil-doer, Mr. Perkins." tt1323594,xOYb0ZdJCQs,Gru and two minions steal Vector's shrink ray while avoiding the killer shark. tt1323594,8R1OS5jPh2s,"Dr. Nefario shows Gru two new inventions, and the girls find out that Gru is not actually a dentist." tt1323594,YsMdkGG2b0k,"Gru has planted ""Cookiebots"" in the boxes Vector ordered, unbeknownst to the girls." tt1323594,x8HjCP3LqHo,Gru gives the girls a tour of his child-unfriendly home and lays down some ground rules. tt1323594,428tr8ixT3Q,Vector shrinks Gru with the ray gun he just stole from him. tt1323594,ej6dxNrh3Dc,The girls report their cookie earnings to the cruel Miss Hattie. tt1323594,fdrR3NbPARs,Gru addresses the minions about his next big plan. tt0059742,pLm07s8fnzM,"Maria and the children ride throughout Austria singing ""Do-Re-Mi.""" tt0059742,kxjwb5cXTI0,"The Von Trapp children say goodnight at a party by singing ""So Long, Farewell.""" tt0059742,DGABqdbtQnA,"Maria sings ""My Favorite Things"" to the children during a thunderstorm." tt0059742,AePRD1Ud3Lw,"Maria sings out ""The Sound of Music"" to the mountains of Austria." tt0059742,pcj4boVT4fc,"Liesl tries to convince her crush Rolfe that she's old enough for him with the song ""Sixteen Going on Seventeen.""" tt0048605,fIh6HDeXKGY,The girl enjoys the breeze from the subway and kisses Richard tt0048605,aqsJPtd8Cis,Richard gets his finger stuck in the champagne bottle. tt0048605,ofmssjTsGnE,The girl explains that she likes the shy guys. tt0048605,pCiwEO_6xS0,Richard has a dream of seducing his neighbor by playing Rachmaninoff's 2nd Piano Concerto. tt0048605,LxWJ4QT74hA,Richard's breath is taken away by his gorgeous new neighbor. tt0117887,8EdOdfCM1hM,"When their song hits the airwaves, the band members converge to celebrate wildly." tt0117887,O10NcrfHaT0,Guy plants a smoldering kiss on Faye. tt0117887,FDektpHARj4,"In the band's dressing room, a broken-hearted Faye breaks it off with Jimmy." tt0117887,7o40za1wAlI,"When the band performs for the first time with Guy on drums, he plays at a faster tempo, which gets the crowd dancing along." tt0117887,fg-43OlaJtE,"After the band fractures, Mr. White offers Guy a few parting observations." tt0427944,10fn13Q4wAA,Life goes on much the same as before after Nick stops working for Big Tobacco. tt0427944,RK-RPsc0czc,Heather's article revealing all of Nick's dirty little secrets is front page news. tt0427944,xuaHRN7UhRo,Nick explains to his son the moral flexibility required in his job as a lobbyist. tt0427944,xT7F0eKfctg,Nick has a stimulating meeting with Hollywood product placement guru Jeff Megall. tt0427944,yrxRCTUt6OY,Nick Naylor shows off his spin skills on Joan Lunden's talk show. tt0120169,aQHOzbF0qH0,Ahmad explains the significance of soul food. tt0120169,IayveLLh-HQ,"Teri attacks Miles with a knife after she reveals that she knows he slept with her cousin, Faith." tt0120169,dj5zbxA4bEI,Ahmad explains the backstory of why his mom and Aunt Teri don't get along. tt0120169,ZHRWbydTGrI,Bird gets fed up when her husband dances with another woman on their wedding day. tt0120169,RRcYHJ1uTro,Ahmad reveals that he lied about the existence of a stash of money in order to get the family together. tt0119313,Jt0kFbvL7yg,Justin sweeps Birdee off her feet at a country hoedown. tt0119313,j3d3mrWBTpM,"Birdee meets Justin, a flame from her past." tt0901476,gQwpd1247J8,Emma and Liv's scheming comes to an explosive end. tt0119313,7T9nzAu7orw,"Birdee meets her best friend Connie on the Toni Post Show, and things go downhill from there." tt0901476,hk6Vxhx28bo,Emma wreaks havoc at Liv's bachelorette party. tt0901476,LVm_DbyklO0,"Tired of waiting for Daniel to propose, Liv just straight-up asks him if it's ever going to happen." tt0901476,Q16cb-O1kTA,Emma and Liv sabotage each's pre-wedding beautifications. tt0901476,d87eHGVaoc8,Emma and Liv attempt to convince another bride-to-be to change her wedding date. tt0455824,x7RM1MOhSic,"After Lady Sarah, Nullah and Drover reunite, an upset Fletcher arrives with a gun with the intent on killing Nullah." tt0455824,Vz56mS8Zz6A,Nullah and his mother Daisy evade deportation by hiding in a flooding water tower. tt0114887,hnsP1etZkr4,Paul watches Victoria participate in the traditional grape stomp and begins falling in love with her. tt0455824,gmedATt5viM,"With the stampede flattening everything in sight, only Nullah stands between the cattle and a towering cliff." tt0455824,4Z5rOXxjRWI,The people of Australia watch helplessly as the Japanese bomb Mission Island and Darwin. tt0455824,1adrUPgj7QQ,"Lady Sarah discovers that Australia's not as idyllic as it seems, but Drover just might change her mind." tt0114887,sYk8M_ZTNlY,"The grapes in the vineyard frost over, so Paul and Victoria help Alberto and the rest of the workers defrost them." tt0114887,Gyxw8a2hTMg,"Paul and Victoria become passionate, but the guilt of his marriage pulls him from her." tt0129387,4PcxtcrI9_U,"Ted has fun going out with Mary and her brother, until he gets a fish hook in his cheek." tt0129387,fdOrjwuILCE,"Leaving Mary's apartment in tears, Ted is surprised when Mary chooses him over Brett Favre." tt0129387,jX09Cesfxo8,Puffy the dog attacks Ted. tt0129387,Sj_A7OZz8TI,"Ted gets his ""frank and beans"" caught in his zipper while picking up Mary for the prom." tt0129387,mbFx0CbaIlY,Ted is disgusted when Mary borrows some of his home-made hair gel. tt1216496,fohry-3J4dQ,The Ragman tells Mother he saw who killed the young girl. tt1216496,Du82ML6YGRE,Mother freaks while visiting Yoon Do-joon when he tells her he remembers her trying to kill him when he was a small child. tt1216496,jTNoDcmRc0g,Jin-tae interrogates the potential killers of the young girl. tt1216496,RCEgNkU7flA,Jin-tae gives Mother some advice on how to solve the murder her son didn't commit. tt1216496,7Za7WMgQqKY,Mother visits the wake of Moon Ah-jung. tt1216496,gi3gqlWetJU,Do-joon gets beaten up in jail and reminds his Mother of what she taught him. tt1216496,6a0at61sWkE,"Do-Joon and Jin-tae hunt down the men driving the ""Bents"" who Hit Do-Joon and drove off." tt1216496,GhIDZhPP7d4,Do-joon is arrested for the murder of a young girl. tt1216496,YyWG5DAJc6s,Mother uses acupuncture to help her forget all the dark memories. tt1216496,TwgvEloIXVc,"Do-Joon is hit by a car, so he hunts down the drivers with Jin-tae." tt0101889,zpdFj0w6Eg8,Jack scales the wall of the castle to obtain the Holy Grail for Parry. tt1216496,evCesc80vho,Mother freaks out when the Ragman tells her he witnessed her son murder the dead girl. tt0101889,BevEBQsAoPk,"Anne asks Jack if he loves her, and when he says he doesn't know, she questions his reasons for staying with her." tt1216496,l3n95qTa5ko,Je-mun comes to Mother saying that they caught the kid who killed the young girl. tt0101889,0p9yD4E2hQw,Parry tells Lydia that he loves her and they share their first kiss. tt0101889,nPXMny-9Ntk,"Jack and Anne take Parry and Lydia out on a double date, and discover that they're perfect for each other." tt0101889,NW5u4cCsNUY,"Jack tries to reach through to Parry, who is terrified by a vision of the Red Knight." tt0101889,TyB1CcaiPbQ,Jack meets a disabled veteran with a unique perspective on his place in society. tt0101889,jrPvugl_NVA,"Jack asks Anne about her religious beliefs, and Anne presents her theory about men, women, God and the Devil." tt0101889,aW4x-PAnrO8,Parry tells Jack that he is a knight on a special quest and that he needs Jack's help. tt1196141,ro74_tScvSA,"Greg's embarrassment enrages Patty, which leads to an exciting presentation of ""The Wizard of Oz.""" tt1196141,wW0L86VZScs,"At wrestling, Greg tricks his way into a higher weight class, only to confront his nemesis: Patty Farrell." tt1196141,Ky5Y99wb_00,Chirag saves Greg from a fate worse than death: the Cheese Touch. tt1196141,bAI6N5Uo7SQ,"After Greg knocks his Wizard of Oz audition out of the park by singing ""Total Eclipse of the Heart"", but he's not wild about the role he's offered." tt1196141,YMwZaMNf3L4,"When Roderick catches Greg and Rowley in his room, he pledges to murder Greg." tt1201607,_ihVsEYQP8E,Harry Potter and Lord Voldemort face off in the ultimate showdown. tt1201607,VmVWuswEBSk,Harry speaks with Dumbledore in a place that looks vaguely like King's Cross Station. tt1201607,lJ83ILGA8yI,Harry Potter gets a look inside Snape's memories that completely changes everything. tt1201607,uk04S-0HOXY,"Hermione and Ron destroy Hufflepuff's cup with a basilisk fang, and makes a move that has been a long time coming." tt1201607,NVovWtkGbCc,"Voldemort brutally murders Snape, but Harry is able to speak with Snape one last time before he dies." tt0952640,PsWbydM-u8w,"Alvin, Simon, and Theodore perform ""Witch Doctor"" at their first concert." tt0952640,XrEpuPzxk9k,Dave discovers chipmunks raiding his kitchen. tt0952640,delffcg5VZU,Alvin and the Chipmunks tried to help Dave on his date with Claire. tt0952640,p0BpMFTYFpU,Dave makes a very musical discovery about the chipmunks. tt0952640,KWK3PRNjZdI,"Alvin, Simon, and Theodore sing their classic Christmas song, ""The Chipmunk Song,"" for Dave." tt0111257,Z3m-Ht3_tFc,Jack and Annie barely escape the bus before it explodes into a plane. tt0111257,WlS2xnW-LY8,Jack and Annie survive a subway crash and kiss passionately. tt0111257,4qLgo75Lfhc,Jack finally succeeds in stopping Howard for good. tt0111257,dKJa-KQNjQU,Annie successfully jumps the bus over a gap in the freeway. tt0111257,1cNBL3OOMRY,Jack leaps from a car onto the moving bus. tt0247745,JNPW2wZ4D2s,"The Captain warns the troopers about their shenanigans, but it doesn't do much good." tt0247745,U0s0czlJ4xA,Rabbit gets really turned on by a sexy German. tt0247745,1rlSjdnAKY4,"Foster tries to fit the word ""Meow"" into a routine traffic stop." tt0247745,0zgTcrZ5030,Officer Farva runs into trouble with a smart-ass burger boy. tt0247745,xPHXfJZpSms,Thorny and Rabbit have a syrup chugging contest. tt1840309,uUuTz9Hjc34,Tris and Four try to stop Jeanine. tt1840309,_snQsFAwjxQ,Tris undergoes her final test in her fearscape. tt1840309,4_hEef258iI,Four and Tris run away and start a new life. tt1840309,7UhFzTWxzBo,Tris fights a programmed Four to remind him of who he is. tt1840309,zrc1us4sDcE,"Tris is kidnapped, but Four saves her." tt1840309,u0fi902X3qo,Four and Tris share a moment and a kiss. tt1840309,5ttoICpH0Vc,Tris vists Jeanine Matthews at the Euridite Headquaters. tt1840309,kOBAOfh46Nk,"Tris is initiated, Dauntless-style." tt1840309,wIqMqkMIjEE,"While trying to get a good vantage point, Four and Tris climb a ferris wheel." tt1840309,5FQ7xVuqOJM,"While training, Four give Tris some pointers." tt1840309,qU0Y6zo68t4,Tris enters Dauntless for the first time and meets Four. tt1840309,Ko0E8tEu7HU,Beatrice chooses Dauntless as her faction. tt1951266,VqTMLtDj83c,Katniss watches Peeta's broadcast where he tries to warn District 13 from an impending attack. tt1951266,lGFrkYzbfoU,"Peeta is brought to District 13, but Katniss learns he has been programmed to kill her." tt1951266,MfHiFaZIc7Q,"Katniss tries to stall President Snow while the rescue team searches for Peeta, but he is one step ahead of the rebels." tt1951266,LJhKwaZEEy4,Katniss sings with the mockingjays at the quarry and sends the districts a hopeful message. tt1951266,X236AeHt5RY,Katniss witnesses the massacre of innocent civilians and sends a strong message to the rebels and the Capitol. tt1951266,AbCowKGckKM,Gale recounts how the Capitol forces massacred District 12 and he is in no mood for Katniss' kiss. tt1951266,dLxtD4f_DA4,Katniss and Gale risk their lives to save the people from a bombing. tt1951266,lUQJN1xzKpc,"Katniss visits the wounded in District 8 and brings them hope, but also puts them at risk." tt1951266,Op_fgLBxUQE,"Katniss films a propaganda spot for Plutarch, but does not come across as believable." tt1951266,KrHaRP-Y588,Katniss presents her conditions for being the Mockingjay to President Alma Coin and Plutarch Heavensbee. tt0376994,tqtqEZqGg5A,"Juggernaut bounds after Kitty, smashing a series of walls." tt0290334,wXWoyVboDpI,"Jean holds back the floodwater to allow the X-Jet to depart, sacrificing herself." tt0290334,up5GI3Sp7Lo,Logan and Deathstrike engage in a fierce battle. tt0290334,19fWdIvK9mU,"When Logan is wounded by the police, Pyro decides to retaliate." tt0290334,StnmzjqMKRo,Nightcrawler flips and fights his way into the Oval Office. tt0290334,QL__AjJr688,"When Bobby reveals to his family that he is a mutant, his brother Ronny does not react well." tt0376994,8QMRQeYNd7M,"Logan destroys Phoenix out of love for her alter ego, Jean." tt0376994,U-RYUQZFIhI,"Beast injects Magneto with the mutant cure, rendering him frail." tt0376994,XeU6SJorcvw,"Following a psychic struggle, Phoenix obliterates Professor Xavier." tt0376994,ITMren3I3WM,Magneto uproots the Golden Gate Bridge and points it toward Alcatraz. tt0120903,VagrTsi5vsw,Logan and the X-Men battle Sabretooth atop the Statue of Liberty. tt0120903,XIcTr-m-R9U,Magneto and his henchmen find their getaway hampered by Professor Xavier's thought control. tt0120903,MJ_32rbrHdk,The X-Men battle Magneto's minions: Toad and Mystique. tt0120903,YVjyXY_mcl4,Logan tangles with locals in a bar as Rogue looks on. tt0120903,sidn04cetvU,"After toying with the metal-boned Logan, Magneto captures Rogue." tt0120179,x2vhOIjmS2s,Alex and Annie escape just before the oil tanker along with Geiger's plane combusts. tt0120179,38yH4yeJM2I,"Desperate to rescue Annie, Alex hooks Geiger's seaplane with a fishing rod." tt0120179,gBxaGB65TB8,The cruise ship hurtles through a coastal town. tt0120179,9s84zV2VCgI,"The cruise liner scrapes the side of the oil tanker, narrowly avoiding an explosive collision." tt0120179,DXA3GJb6V-M,Alex talks Annie through the dismantling of a grenade-rigged door. tt0256380,vG_FLK4K_T8,Mauricio makes a shocking admission that Hal must see to believe. tt0256380,2R1lEWNNsV0,Hal has a series of dates with Rosemary and is continually surprised by her. tt0256380,oARVdCyRT98,Hal tries to get to know Rosemary but experiences a series of awkward moments because he only sees the inner Rosemary. tt0256380,G3BQd2K3maI,Hal stalks beautiful Rosemary while she shops for underwear. tt0256380,K4j25DUQLgE,"Mauricio can't believe the ugliness of the girls that Hal has taking to dancing with, but Jack is having a great time." tt0268380,tQJTJdTM0Wk,Diego turns against his pack and defends Manfred and the baby. tt0268380,mu-YLZpB6is,The herd dives down an ice cave when the baby goes for an impromptu slide. tt0268380,4RhqR2ZGkc0,"The herd tries to get food for the Baby, but runs afoul of Dab and his pack of klutzy dodos." tt0268380,8dXF7y1QUxU,"Manfred, Sid, and Diego have a lot to learn about child care." tt0268380,_LKe8V-h7h8,Scrat has trouble trying to bury his acorn. tt0133952,268ZUL4dnn8,Hub enforces Federal law over military law and General Devereaux. tt0133952,szNrOdjjhkw,Sharon finds herself face-to-face with the last terrorist cell. tt0244970,G_OMV0N_Ls4,"On live t.v., Jane confesses to inventing Dr. Charles as a way of expressing her heartbreak towards the opposite sex. During her confession, she comes to the realization that she has fallen for Eddie." tt0244970,nM0u8GRt_hU,"Late night in the kitchen, Jane performs a cheer from back in her cheerleading days for Eddie" tt0120831,E6KKYD3eGlE,Vivian tells Rita about her shame in the family in the airport restroom. tt0244970,hFH6FoRzSpM,"Jane and Ray have a torrid night of lovemaking. The next morning, they unexpectedly run into their co-worker Eddie on the street." tt0120831,5WGQCJmdEoM,Murray has a disagreement with his daughter concerning her clothes at a steak house. tt0120831,9D9RXt18Qq4,"After hiding her physical development, Vivian is given a fitting for her first brassiere." tt0375063,aLDrW2AXClk,"After trying to cheer up his pal, Jack's nose is broken by Stephanie." tt0375063,PPKdHP8zWuo,"After receiving bad news on his book, Miles releases his anger at the winery." tt0375063,HEMqddRGVBY,Miles blows up at Jack on the golf course and they have an altercation with the golfers behind them. tt0375063,YSkZieDG5U4,"Maya turns on Miles with her wine talk, but he blows the mood." tt0375063,QCS1Gnwbtp0,Miles waxes poetic on his favorite wine. tt0117628,yqdfje9b9WI,"When Renee fails to seduce Francis with some new lingerie, Molly, Mickey and his dad debate whether or not Francis might be gay." tt0117628,IlLkXPTm6ig,"Francis continues his affair with Heather and is upset to learn that she faked an orgasm with him but not with her other, older lover." tt0117628,E--mNnOvCm0,Renee threatens to use a vibrator when Francis is reluctant to have sex with her. tt0203119,VZrBzpfh6hM,"Don fumes and swears at Gal and the others, then turns violent." tt0995740,sGCjNn2uJr4,Don refuses to extinguish his cigarette on the plane. tt0203119,rfeDWXk1jso,Don leans on Gal to join him in a heist. tt0133952,J4LB77duP_0,"Despite Hub's attempt to negotiate, terrorists detonate a bomb on the bus." tt0073629,t4WP3bODmfo,Brad Majors sings of his love for Janet and proposes. tt0107977,G59JnM4JKNQ,"Little John, Blinkin, and the Merry Men perform a rollicking song and dance of ""We're Men in Tights.""" tt0081609,ataOtn-F5s4,"Pete protects the President, and when Sarah is taken hostage, Pete takes out the gunman." tt0443632,CqgTNaplJdg,"After Pete secures the house and the other agent leaves, Pete and Sarah begin kissing passionately." tt5093452,dWQ3B8qTpes,"Pete arranges to meet his informant at the mall, but an assassin foils the plan." tt0073629,wb1HDnYPPoo,A jealous Frank corners ex-delivery boy Eddie and kills him. tt0073629,-w0WPkB3XJ4,Brad and Janet watch as the Transylvanians sing and dance. tt0073629,ZCZDWZFtyWY,Dr. Frank N. Furter introduces himself and invites Brad and Janet to his lab. tt0073629,JKMpRikJeLI,Janet seduces Rocky Horror. tt0069113,aNOmTuwnGYg,"Rev. Scott sacrifices body and soul by turning off a critical steam valve, before plunging into the fire down below." tt0069113,r_9PgiNuwDc,"When Linda falls into the flames, Rogo has an emotional breakdown and blames Rev. Scott." tt0069113,3MKwR7JipEc,"After the ballroom guests ignore Rev. Scott's warnings, an explosion goes off and they are hit with a massive flood." tt0069113,TxuEWb4b_gU,"With the water rising rapidly, the group climbs up a set of stairs and follows Rev. Scott into a small air vent." tt0120772,Q49LEs_bhaU,"Nina finally accepts what George wants, which is not her." tt0120772,quEBzmchcwc,George accepts Nina's offer to help raise the baby. tt0069113,6kKCbDw7lR4,"The ship's Captain watches helplessly as a massive tidal wave crashes into the Poseideon, sending crew and passengers into total chaos." tt0120772,oKYBGq7pt3M,George and Nina become more comfortable with each other on the dance floor. tt0098258,dyqDd8esYdc,"On the way to England, Lloyd helps Diane overcome her fear of flying." tt0098258,_Ib_lBGuoUQ,Diane appears at kickboxing practice to tell Lloyd that she really loves him. tt0098258,Pvuv2sn5fDQ,"At dinner, Lloyd shares his career plans with Mr. Court and his friends." tt0098258,S5Y8tFQ01OY,Lloyd uses a meaningful song to call Diane back to him. tt0098258,UUZsR3rFjEU,Lloyd nervously tries to convince Diane Court to go out with him. tt0343818,AwLRD7iEEKI,Rodney and his friends defeat Ratchet and his evil mother. tt0107977,hr0hb0gc2eQ,"In the middle of Robin and Marian's wedding, King Richard returns and restores order to the kingdom." tt0343818,IthAv1JkF-0,Rodney leads his motley crew of robots against the villainous Madame Gasket. tt0107977,tI4RvWvgulc,The Sheriff of Rottingham abducts Marian to the tower but her chastity belt thwarts his plans to deflower her. tt0343818,hM6ItEXb_Us,Fender introduces Rodney to transportation in Robo City. tt0107977,QNpPmiU7BBs,Robin and Ahchoo give inspirational speeches to the villagers to prepare them to enter battle. tt0093822,ouXz_ETh2eI,Gale and Evelle freak out when they realize the baby is missing. tt0107977,5xIU6_w6ohg,Robin arrives to find Ahchoo getting pummeled by a group of Rottingham's men and steps in to save him. tt0093822,CQ67ZyZtKjU,H.I. has a terrifying nightmare of the fury he has unleashed by stealing the baby. tt0093822,dWJuJlmcabY,H.I. is completely overwhelmed when Glen and Dot come over with their brood. tt0093822,Ypa0vpmCzdc,Ed is not happy when two escaped convicts show up at two in the morning. tt0093822,lixII1thTO4,H.I. commandeers an old man's truck as he tries to outrun the law. tt0100403,bHwiXFc9MOw,"With nothing left to lose, Lieutenant Harrigan gives The Predator a taste of its own medicine." tt0100403,Dw5W0T5fV70,"Dangling perilously from a high-rise ledge, Lieutenant Harrigan cuts his way out of a jam." tt0100403,kyGcsRDBJLM,The Predator shows off a deadly new toy at the expense of Peter Keyes. tt0063442,mDLS12_a-fk,Taylor understands that he's on Earth when he finds the wreckage of the Statue of Liberty. tt0100403,nzz_3bQHyiY,"After taking down The Predator, Lieutenant Harrigan removes its armor and realizes that the alien is not going to win any beauty contests." tt0063442,DruCG3LJiiU,"The apes round up the humans, killing some of them in the process." tt0063442,0_m8AmAm-XE,Taylor speaks to the apes for the first time. tt0100403,eiQD0Wk6Ekg,The Predator gets the jump literally on Keyes and his men. tt0063442,3BSdoHadj2w,"Taylor attempts to communicate by writing in the sand, but his efforts are quickly thwarted." tt0063442,gzRy-pvwdL0,Taylor tries to speak in front of Zira and Dr. Zaius. tt3305316,9CjMbFa2Oj8,"Kate interrupts the wedding Nick is videotaping and, while the congregations listens in, asks him out on a real date." tt0119896,Re5WOfcJg5A,Kate proclaims her love for Nick while she and Sam stumble into her bed. tt0183649,4uaPFQxS6pU,"When pressure mounts, Stu decides to hang up the phone and surrender." tt0183649,6xaUD1jKFWg,The mysterious caller provokes Stu in order for him to reveal a secret to his wife. tt0183649,3lkG_MD7T9U,"Losing control of the situation, Stu makes a personal confession to everyone nearby." tt0119896,yvC60Y-AqLc,Nick makes an impression on Kate when he charms her mom on the phone. tt0183649,JiI91igl180,"Fed up with the sick joke, Stu prepares to hang up until he finds out just how serious the mysterious caller is." tt0183649,88YBTmbAaoY,Stu attempts to call 911 unnoticed by the caller. tt0066206,PehCORojjtw,General Patton commissions a weather prayer from the Third Army chaplain before engaging in the Battle of the Bulge. tt0265459,Jipg0KQ4id0,Sy messes with his former boss' head by giving him an envelope of pictures of Bill's daughter. tt0265459,OdU3vEh3qfs,Sy explains his troubled motivations to Detective Van Der Zee. tt0066206,YrtS2_TfbeY,"While making his way through a military hospital, Patton encounters a shell-shocked soldier, slaps him in front of the other wounded men, and demands that the coward is placed back on the front lines of combat." tt0066206,dObTXYa-_n4,Patton and his men attack and annihilate Rommel's battalion of tanks and infantry during the Tunisia campaign in Africa. tt0066206,sv9XNFpRdhg,General George S. Patton Jr. gives a rousing and inspired speech to the troops in which he lays out his partriotic values and traditional American virtues. tt0265459,BRccUGaFz2s,Sy follows Nina to the mall and tries to get to know her better. tt0066206,XpEtHWMpiFc,"As Patton and Sir Arthur discuss air supremacy, the headquarters are ironically attacked by German planes. During the attack, Patton is fed up and takes the matter into his own hands." tt0265459,bJNpX5bfXcw,Sy plants a photo in Nina's envelope that reveals that her husband is cheating on her. tt0265459,URquvu9F3jo,Sy fantasizes that he is a trusted friend of the Yorkins. tt0151738,hEY2L9sXjwU,Josie is relieved when Sam meets her on the baseball field and gives her the much-awaited kiss. tt0151738,Y4g859J_920,Josie shares a special moment with her teacher Sam during a ferris wheel ride. tt0151738,47IVX23yRyQ,"When Josie arrives for her first day of high school, she has trouble with the security guard and a menopausal Spanish teacher." tt0151738,SippOkFBMAE,"Josie gets stoned off of some pot brownies at a reggae club and dances her heart out in front of all of her new ""cool"" friends." tt0151738,WqYtAApeiDA,"Josie is relieved, but emotional, when she finally reveals herself as an undercover reporter to her classmates at prom." tt0110638,c0P_u-zs5-I,Dr. Lovell attempts to penetrate the language barrier with Nell by demonstrating his relationship with music. tt0110638,X8slBBJG-x0,Nell learns a thing or two about sexuality while Dr. Olsen and Dr. Lovell discover a thing or two about each other. tt0110638,pytH_ezVouk,Nell speaks for herself in a court hearing concerning her well being. Dr. Lovell translates the words. tt0374900,b58fAt0MdgI,Napoleon and Pedro talk about girls and dating. tt0374900,NZJrGuC92U8,Napoleon complains that there's nothing to eat while Kip claims to be in training to be a cage fighter. tt0374900,xL-VX3WbA9U,Uncle Rico mourns for his lost football career and asks Kip about time travel. tt0374900,mJYE0HuKNfI,Napoleon's neighbor Lyle picks the worst possible time to put down his cow. tt0374900,pO09fucTEuk,"Napoleon checks out Pedro's bike, but ends up hurting himself." tt0151804,_KinUMIS3Yc,The guys take their printer to a field and murder it. tt0151804,F7SNEdjftno,Joanna finally has enough of her boss' demands and quits. tt0151804,uiik3zS4y4I,"Samir, Michael and Peter have a rough Monday at work." tt0151804,cgg9byUy-V4,Peter has a candid discussion about his typical work day with the Bobs. tt0151804,jsLUidiYm0w,Peter gets grilled by his bosses for not having the right cover sheet on his T.P.S. report. tt0093773,xEvb7B4O698,"In its final moments, the predator detonates an explosive device which Dutch must run from to survive." tt0093773,80EaBRgGylo,The predator takes off its mask to reveal its true face to Dutch. tt0093773,TU7CDejp6Lw,Billy stays to fight the predator while Dutch tries to get to the chopper. tt0093773,mGLXbK2XWMY,"Dutch, camouflaged in mud, goes one-on-one with the predator at night." tt0093773,wgzxSr6l9Y4,"Blain gets shot, but Mac picks up the gatling gun and blows the forest to smithereens." tt0433416,-kFJKQvCrkY,"At his mother's urging, Gogol meets Moushumi for a drink." tt0051878,bNdddrIe6dQ,"Ben gets Clara to kiss him, but she calls him a barn-burner and runs off." tt0433416,Jgv93j5xcpQ,Ashoke tells Gogol the events that lead to Ashoke coming to America and giving Gogol his name. tt0433416,wsYNpHaKJIc,Ashima and Ashoke and their families meet to determine if the two will make a suitable match. tt0051878,qTa5iKsbAno,"Will threatens to lock Ben up if any fires break out, and Ben asks for a decent job." tt0051878,7tK-k8UURYk,"Ben encourages Clara to loosen up, but she shoots him down." tt0104691,sYVz2G-r01U,"Uncas attempts to save Cora and Alice, but fierce Magua kills him." tt0104691,okGQj644_Ds,"After Uncas' death, Alice decides that she will not go with Magua and jumps off the cliff." tt0104691,eRRG_PNOQmA,Chingachgook kills Magua and then realizes that he is the last of the Mohican tribe. tt0455590,JRU1SrdXEZc,"After mending Idi's hand, Nicholas shoots a sick cow in order to put it out of its misery." tt0455590,UyzInzm8gW8,"At Idi's order, Nicholas gets hooks jammed into his chest and is lifted in the air." tt0104691,k2edI8Gu6k8,Cora convinces Hawkeye to save himself. He vows to find her again and then jumps into the waterfall. tt0455590,F7_aagPOpUU,Idi gives a rousing speech in the village where Nicholas and Sarah are working. tt0203009,OeSwSYmipqo,Christian tries to woo Satine by singing love songs. tt0203009,a1REfTIc5po,"Satine, the sparkling diamond, is lowered into the Moulin Rouge and presented to her adoring fans." tt0104691,q75FfwmyF4I,Hawkeye finds Cora and they share a passionate moment. tt0104952,3nGQLQF1b6I,Mona Lisa proves her automotive knowledge to the dismissive D.A.. tt0104952,Dh0210A-VZo,Mona Lisa brings up the little issue of marriage at the worst possible moment for Vinny. tt0104952,K6qGwmXZtsE,"The judge asks Vinny what he means by ""yute.""" tt0104952,Da7GSy-6mJY,Mona Lisa disagrees with Vinny's decision to go deer hunting with the D.A. tt0104952,2-FvDteymnM,"Vinny comes to jail to help Stan, but Stan thinks he's there to have sex with him." tt0107614,AqNEZ_QgvI4,"Mrs. Doubtfire engages in various activities like fending off a mugger, playing soccer, and gazing at chicks." tt0107614,7m8_QLnRBFo,"While making tea for Mrs. Sellner, Daniel must disguise himself as Mrs. Doubtfire by sticking his face into the frosting of a cake." tt0107614,tGxxl7LOe_4,Mrs. Doubtfire cooks dinner for the first time and accidentally catches on fire. tt0203009,UVmSx9Vv5M8,Despite the Duke's interruption and failed attempt to kill Christian the show's finale is a great success. tt0107614,7hsAbjmNpKU,"Daniel gets help from his brother, a makeup artist, to transform into a woman." tt0107614,6wC2DqFJ7UE,"Daniel does various voice impersonations during a meeting with Mrs. Sellner, the social worker." tt0203009,F8dW1ddAC_4,Toulouse-Lautrec prevents a gunman from shooting Christian when he comes back to Satine. tt0039628,M2sjRRcONOc,Susan sees the house Santa promised. Fred wonders if he made the best decision. tt0203009,lgRkMyW_J5U,Christian proclaims his love for Satine with a song. tt0039628,jagJeaLXRRQ,Mr. Kringle's face glows when thousands of children's letters to Santa are presented in court and his case is dismissed. tt0039628,--uyzf7X_0c,"Doris begs Mr. Kringle to tell her daughter that Santa doesn't exist, but he cannot tell a lie." tt0039628,OvE_mDtTj20,Santa speaks with Doris about the Christmas spirit and she notifies him about an upcoming company test. tt0039628,vJCHzRIOOL0,Mr. Kringle is unhappy when Mr. Shellhammer gives him a list of overstocked toys to push on undecided children. tt0183505,GyaIF1iTs-Y,Charlie gets into a messy fight with himself. tt0203019,gh2apPe9pSI,"When a salvaged nuclear bomb snaps the line, Carl makes a life-changing decision." tt0203019,QhCISxbO7rg,Carl must take 12 steps in heavy diving gear to prove that he is capable of performing his job despite losing one of his legs. tt0203019,FixQE61iSDg,Racist Pappy orders Chief Sunday not to bring Carl back up from his diving test until he stops moving. tt0183505,lCUBQnsS9go,Charlie has an adverse reaction to his medication. tt0183505,YWRzPLzHJl0,"After a mother takes advantage of Charlie, the evil Hank appears." tt0183505,2UYrsFeBZoI,"After ditching their car, Hank comes up with a foolproof plan to get some money." tt0183505,JJeNvH2hmPM,Hank picks a fight with a little kid and insults the albino waiter. tt0066026,TRHN5vxnZrI,A last supper is thrown in honor of Walter 'Painless' Waldowski before he ingests the black 'suicide' pill. tt0066026,LXtVS8SFmJw,Frank gets taken off the military base in a straight jacket after losing his cool while being provoked by Hawkeye. tt0066026,45X0_m1KYQM,"Following the show prank, Hot Lips complains about the antics of the MASH unit to Lt. Col. Blake." tt0066026,HpmdYRs4lEs,"As a practical joke, Frank and Hot Lips' love-making session is broadcast throughout the military base." tt0066026,uYTl9G6HoW0,"Hawkeye, Duke, and Trapper John play a prank on Hot Lips when she goes to shower." tt0100114,zHoZ2Ti6xco,Hatcher and Max pursue Screwface's henchmen through the busy city streets. tt0100114,OANpF6uHmBQ,Agent Hatcher and his partner pose as drug buyers until their cover is blown and carnage ensues. tt0100114,H0BUIYk2irQ,Hatcher uses his hand-to-hand expertise to neutralize Screwface's henchmen. tt0100114,ZObnyBWAZSI,Hatcher fights Screwface's twin brother in a fight to the death. tt0328107,Hur4Esxuurk,Creasy is badly wounded as he tries in vain to save Pita. tt0100114,oHOnldgbjy8,"After an ambush by two bulldozers, Hatcher gets some face time with the elusive Screwface." tt0328107,dtOaXCoryQo,Creasy takes his war for justice to the streets of Mexico City. tt0328107,5JU326dvQ2g,Creasy threatens Fuentes with a bomb in a very uncomfortable place. tt0328107,crB4KD3p8HU,Creasy sees that Pita is alive at the exchange. tt0328107,izxkFm060yU,Fuentes spills his guts all over the freeway underpass. tt0337978,jsz79bztNJI,A F35 jet fighter attacks McClane's big rig with explosive results. tt0337978,2wXBmSecjDo,McClane and Rand duke it out on the ice-covered steel over deadly spinning fans. tt0337978,rdzVVp7e_0Y,"Suspended by an SUV teetering over an elevator shaft, McClane fights with Mai." tt0449059,ECfvSmDe_-0,"When the pageant official demands that Olive be removed from the stage, the family joins in on the dance instead." tt0337978,r1gBq45CkgI,Matt is highly impressed when McClane takes out a helicopter with a car. tt0337978,cHT2zdQT3Ps,Gabriel makes the mistake of his life by letting John McClane anywhere near a gun. tt0449059,7VbYokM9dY4,Frank and Dwayne have a heart-to-heart talk about the importance of suffering and doing what you love. tt0449059,akMZQpIbTm4,"When Frank breaks some very difficult news to Dwayne, he starts to have a breakdown in the van, and the family pulls over." tt0449059,-QNxYSDdpig,"At the dinner table, Frank explains to Olive the series of events that led him to attempt suicide." tt0449059,0jTSJ6NK6-4,Olive cannot contain her excitement when she hears that she has qualified for the finals of the Little Miss Sunshine competition. tt0240468,LxXjsQbCZR8,The Chosen One doesn't follow the advice to avoid the meadow and engages in battle against a cow. tt0240468,63IwUcBK_Rs,"The Chosen One spars with Whoa, the one-breasted woman." tt0240468,941z56i7QJE,The Chosen One's powers grow as he fends off an endless stream of attackers. tt0240468,4bAPlP2HX7o,The Chosen One finds himself surrounded and gets help from some gopher-chucks. tt0240468,Dz6Pe77tpPg,Master Pain kills Master Tang with his claw. tt0264761,uy_2GCNyzgk,An intense discussion about personal happiness leads to a kiss between Helen and Jessica. tt0264761,E25WrYP_1tU,"Martin accuses Helen of pretending to be gay, and Sebastian comes to her defense." tt0320661,zzgvxdPlUwA,Balian leads an inspired defense of Jerusalem that impresses the great Saladin. tt0320661,sBJ2jguXBes,"Balian leads a brave charge against the enemy, but his force is soundly defeated." tt0264761,1nKBe0dzhvg,Helen and Jessica ask a couple of guys at the bar their thoughts on lesbian relationships. tt0320661,c8wj-v1Jdyc,"After Guy de Lusignan becomes King, Balian is forced to defend himself from assassins." tt0320661,qG8YoqrNMEA,Balian pumps up his soldiers while the enemy army breaks down the wall of Jerusalem. tt0305711,HTjeSsgZVW4,"Disaster ensues when Sarah tries to join the ""mile high club"" with Tom." tt0305711,TKBQuK1988w,A cockroach ruins Tom and Sarah's intimate moment. tt0320661,6p1EuLz9Fes,Balian takes his knight's oath from his dying father. tt0305711,gRLpvojaVBM,An aggressive Wendy is all over Tom until he declares that he is on his honeymoon. tt0091306,te-hhtqatQk,Terry brings espionage to her workplace when a henchman opens fire and her coworker Marty turns out to be a CIA agent. tt0091306,B6-nYQbUteA,"Terry goes snooping in the computer room at the British consulate, only to get her dress caught in the shredder." tt0091306,4kC1v_wKF7M,"Still under the influence of truth serum, Terry tells off her boss and pulls the toupee off his head." tt0091306,jKC6UsetwN4,"Terry tries to convince a detective that she was thrown in the river and that a dead body is still floating there, while her coworker Marty tries to take her home." tt0091306,iyHNryKojDY,"Terry tries to decipher the lyrics to ""Jumpin' Jack Flash"" in order to determine the code key for her mysterious new contact on her work computer." tt0359517,mgSDir-wcGk,"After Destiny squirts Nate with ketchup, he asks Chrishelle to continue blessing the food, not knowing she would use black magic spells. Nate finds the chef cooking something nasty in the bathroom." tt0359517,mR4FXksKdKg,Dorothy leaves Nate naked in the hot tub and he has to talk his way back to the room. tt0359517,iv1eE7qxDXA,An unexpected guest slips under the sheets and interrupts Nate and Dorothy's sleep. tt0036613,gP_GbzDWoY0,"Mortimer is surprised to find Jonathan and his associates including a corpse still in the house, and Jonathan threatens Mortimer with the reveal of one of the other corpses in the house." tt0036613,s8WzJJoKq_4,"When Jonathan returns to his childhood home, his aunts are unable to recognize him because of the work of his plastic surgeon partner Dr. Einstein." tt0036613,tg2X2RZsGy4,"As Mortimer describes to Dr. Einstein what saps the characters in plays can be, Jonathan prepares to tie up his sap of a brother." tt0036613,BGyfOMCRBn0,"Trying to explain to Elaine why his family's history of insanity should stop them from being married, Mortimer falls in love with her again, and then back out." tt0036613,In_UKcRXzHs,"When he discovers that he is not actually a Brewster, Mortimer's last doubts about marriage are erased, and he sweeps Elaine out the door and onto their honeymoon after she discovers the bodies in the basement." tt0036613,qj0L0g36IXU,"With the police at the house and Mortimer tied, Jonathan tries to tell the police about the bodies buried in the Brewster basement." tt0036613,KPAnWhVV5dI,Mortimer slowly uncovers that it's his aunts Martha and Abby who have provided the dead body in the window seat. tt0036613,BDLvzvFFRu8,"When Jonathan and Dr. Einstein prepare to bury Mr. Spenalzo's corpse, Aunt Abby and Aunt Martha object, and spill the beans on their own collection of stiffs." tt0036613,KWAQRU2PeeM,"Elaine is trapped in the house with Jonathan and Dr. Einstein, who realize that she may have seen them unload a corpse from their car." tt0036613,LVflxqHuw2I,"While Mortimer tries to get a connection to Happydale Sanitarium, his Aunts Abby and Martha prepare to dispatch another lonely soul with their arsenic-laced wine." tt0107034,RiaUv2MwZ3E,Henry pushes his mother Susan over the cliff's edge after she asks him if he killed his baby brother. tt0107034,o2J59hT1Vto,"Henry introduces Mark to Mr. Highway, a homemade mannequin, which Henry drops from an overpass into oncoming traffic." tt0107034,xqsDUwDwdUM,Susan is forced to choose between saving her son Henry or nephew Mark from falling off a cliff. tt0107034,yKguB1M0JFU,Henry demonstrates his homemade crossbow for Mark by shooting a bolt at the neighborhood cat. tt0107034,a-h2glY0jyg,Henry tells Mark's therapist that Mark is the one that has been acting strangely. tt0454841,hVPSsxFKDLM,"The mutant Ruby tackles Lizard, saving Doug and the baby." tt0454841,RFjVbXNMsNk,Doug finds a creative way to take care of the mutant Pluto. tt0454841,7SU4vD1T4oI,"As Doug searches for his baby daughter, he meets a mutant with a large head and barely survives breakfast time." tt0454841,zFxq7CCpzss,"Doug, Bobby and Ethel are horrified to find Bob set on fire." tt0454841,bz8JoC9BpV0,Lizard kills Lynn and shoots Ethel while Brenda watches. tt0054997,fRQsuCJ-g4I,Eddie stands up to Bert after beating Minnesota Fats and is banned from stepping into a big time pool hall. tt0054997,mUxLZWWRKUI,Eddie passionately describes the feeling of playing perfect pool to an enraptured Sarah. tt0054997,bpc3TKhS6MU,"Eddie waits for an opening in the game against Minnesota Fats, then gets on a hot streak, winning gameafter game after game." tt0054997,F8QVrLcmRdA,"After hours of billiards, Eddie declares that the pool game is not over until Minnesota Fats says the game is over. Bert calls Eddie a loser." tt0054997,I5XMnxp2S9Q,Eddie is impressed with Minnesota Fats's billiard play as they battle it out during a marathon session of pool. tt0120703,0PCcz5_8IEI,Stella surprises Winston at the airport and accepts his marriage proposal. tt0120703,qS2Np6zxXm0,"When a bartender believes Stella to be Winston's mom, Winston surprises her by kissing Stella." tt0120703,T_SHaqh4NdQ,Stella loosens up on the dance floor and gets her groove on with Winston. tt0120703,ITicydPuKRI,"Stella and Delilah walk through the resort, checking out the available men." tt0120703,NH_wHu33CMw,Winston's flirtation with Stella becomes rocky when they disclose their age. tt0465494,li2zByHeanQ,"Agent 47 shoots down all the guards to capture ""Belicoff"", then defeats another hitman in hand-to-hand combat." tt0465494,cFVtyYzs48I,Agent 47 engages in a massive shootout against Udre Belicoff and his henchman. tt0465494,XQdE3ydNvCU,Agent 47 outduels three other hitmen who confront him in a subway car in a high-octane sword fight. tt0465494,6T_cb2U5lro,"Agent 47 takes on the forces coming after him, then evades Whittier by leaping several stories into the hotel pool." tt0465494,OjIh7FHeH8c,"Agent 47 describes ""The Organization"" of hitmen, and his skill is demonstrated by an assassination in Niger." tt0101410,P_8O-iDvlmA,"Charlie returns as Madman Mundt, kills the detectives, and sets the hotel on fire." tt0101410,yeBM3nwwmlE,Lipnick denigrates Barton's screenplay and makes it clear that he owns Barton's ass. tt0101410,0CrSOPGvblI,"Barton hears from Geisler that Lipnick has taken ""a interest"" in the wrestling picture, which is a bad thing." tt0101410,LiN26NHb4ao,"Barton goes on a condescending rant about theater to his ""common man"" neighbor, Charlie." tt0101410,VN54kkl_nTI,Jack Lipnick puts Barton on a wrestling picture - with a few requirements. tt0356721,vO6EKe8gVXk,Albert and Brad have an altercation in the elevator and meet Shania Twain. tt0356721,9EilqfAIudI,Tommy and Albert try an illuminating new therapy involving hitting each other with a ball. tt0356721,fjqjWC3Ycr4,Albert confronts the existential detectives and Bernard explains about the connections between all things. tt0356721,w2eNQ75wdq8,Albert and Tommy insult Steven's adopted family at dinner. tt0356721,hSdrwqLUpD0,Bernard presents his theory of how everything is connected... With a blanket. tt0119381,2BNVMvzHvT4,Doug gets in trouble when he tries to sneak a peek under Eleanor's skirt. tt0388125,Yd1Bx8u7Om4,Maggie shares a special thought at Rose's wedding. tt0119381,KQt2qAPhUAI,"After Pamela tells him she likes him, Doug kisses her." tt0388125,YP2dblWITA0,Maggie reads an inspiring poem to the blind professor. tt0119381,kgNMy-k2VnA,"After giving Eleanor the silent treatment, Jacey kisses her passionately." tt0388125,6sMjSp6yOBY,Rose discovers Maggie living with their estranged grandmother in Florida. tt0455967,RsmcYTQsgIM,The girls get in a fight when they all realize they are dating the same guy. tt0455967,Lh7bN_qJz8U,Kate gets John caught in an embarrassing situation with Coach Williams. tt0455967,BHIg0d4KQMc,"When John offers Kate a ride home, Beth is forced to give her a quick kissing lesson." tt0116705,188YJIcBUkQ,Howard destroys Ted's home while stealing a Turbo Man doll. tt0116705,jWyeugspkUA,Howard has to fight off a group of incensed Santas after he insults their pride. tt0116705,blbqbdPFfns,"As Turbo Man, Howard defeats Dementor and saves Jamie." tt0116705,VsZ4L4HwUFs,Myron and Howard escape the cops by using a fake bomb that turns out to be real. tt0116705,YTcFsdIJ_Xo,"At the toy store, Howard and Myron are mocked for their lateness in buying a Turbo Man doll." tt0119349,BKTyV8Msk8o,"When Janey picks the keys of another man at the key party, an inebriated Ben tries to object." tt0119349,MeRtEy1FVAU,"After sharing a drink, Wendy and Sandy get under the covers and disrobe, then talk innocently about sex and love." tt0119349,4uDUNAPdYb4,Wendy offers a prayer full of sarcasm when asked to say grace at the Hood family's Thanksgiving dinner. tt0298845,QtrJ6ojRtik,A hysterical Sarah asks Johnny to save her baby and he promises he will. tt0298845,S7rZsWVUAFI,"With Christy's help, Johnny is finally able to let go of his grieving." tt0089370,c_TXof1C-OI,"Amidst the burning rally for Omar, Ralph lends a hand to Jack in order to save Joan." tt0298845,ze-aAIzwD_E,"After being confronted by Johnny, Mateo admits that he is dying." tt0089370,JAHLYTVcm5M,Jack gets more than he bargained for when he wrestles a giant in the Nubian village. tt0089370,dDQ0rUdj0KM,"With Omar's men on their trail, Jack, Joan and their new friend make a daring escape." tt0089370,IFc2QKCnGEg,"Cornered by Omar's men, fate shines a light for Jack, Joan and their mysterious friend when an bazooka explosion leads to a rock fall." tt0089370,w5PGP9-_x5E,Ralph surprises Jack after a six month stint in jail. tt0343818,EJ5ywAAmiU4,Sonny saves Susan while Spooner destroys the evil computer. tt0343818,L1UxZJ9owXY,Spooner is attacked by an army of robots on the road. tt0343818,iz3l5GLSWJk,The evil robot is surprised to learn that Spooner is part robot himself. tt0343818,rkaXuC5hrCE,"While searching for clues at Dr. Lanning's house, a giant demolition robot almost kills Spooner" tt0343818,Ouht1xip9NQ,"In a roomful of robots, Spooner attempts to find the murderer." tt0116629,bhGfpwfae-k,Captain Hiller welcomes the downed alien to Earth. tt0116629,ZlawibQ_QKI,"The President communicates with the alien, but is dismayed by its message to mankind." tt0116629,vjFG-4Ge668,"The President barely escapes the White House as alien vessels open fire on Los Angeles, New York and Washington D.C." tt0116629,NyOTaHRBTXc,Russell Casse realizes that the only way to deliver his bomb to the alien ship is to sacrifice his own life. tt0116629,9t1IK_9apWs,The President of the United States gives a stirring speech to those going to fight the alien invasion. tt0449010,zsqpY4w2e1Q,Eragon faces Durza in battle in the air. tt0449010,M_bzbtdfaik,Eragon realizes that his baby dragon is a carnivore. tt0449010,shj7YP98Yxs,Eragon tries riding Saphira again and does better. tt0449010,51iAljD9Q7Q,Saphira tells Eragon why she chose him to be her rider. tt0449010,K0xpWKgNCk0,"Eragon kills Durza, but Saphira is critically wounded." tt0104431,a2872XpfqKY,"Harry and Marv try different methods of entering the house, both resulting in injury." tt0382077,sqhPvOlgzjo,"Katherine has to kill ""Charlie"" to protect Emily." tt0382077,zbJwjn4p0cQ,Elizabeth finds Charlie hiding and he pushes her out the window. tt0382077,r-ddXOrPiZ0,"When the Sheriff comes to investigate, he meets the evil Charlie." tt0107144,6zFeIaPbJwM,"In this flashback, Topper and Ramada share romance and spaghetti." tt0107144,sAwwDhNJJO0,"Topper, Michelle and their limo driver enjoy some alone time." tt0107144,9aqopEQr7wI,Topper puts up impressive body count numbers. tt0102059,zgYGbR8f1PA,"The pilots make their landings at the aircraft carrier, with the guidance of Wash Out." tt0102059,ECiut2qgJck,"During Dead Meat's emergency rescue, Wash Out gets dragged alongside the ambulance." tt0102059,3JkBKGttM_U,Dead Meat has a visit from his wife before take off and experiences a number of bad luck superstitions. tt0102059,dZwnXa6XHSI,Topper has a traumatizing first visit with his new therapist. tt0102059,5ogVT5mpg6c,Topper cooks a sensuous breakfast on top of Ramada's sizzling hot body. tt0120681,q437KEcmwmM,"Inspector Abberline, kidnapped by the Freemasons, escapes when the horse carriage gets into a street accident." tt0120681,ryvvNrcMh-c,"Inspector Abberline realizes that Sir William Gull is the murderer he's been looking for, a.k.a. Jack the Ripper." tt0120681,mphHRcrJfNE,"Inspector Abberline ""chases the dragon"" one more time and has visions of Mary Kelly's murder by Jack the Ripper." tt0120681,o2xprwwIMXM,Inspector Abberline and Mary Kelly kiss passionately in the alleyway. tt0120681,fluJSCbNpDM,Inspector Abberline investigates a crime scene with another prostitute as the victim. He discovers grapes and places money on the victim's eyes to pay the ferryman. tt0377062,nhP_9bFQvjg,"Frank pilots the Phoenix into the sky, escaping their pursuers." tt0377062,NEJtJu--hto,Frank confronts Elliott for murdering a nomad. tt0377062,_KCXk-BhTd8,The crew is concerned when they realize that Elliott designs toy airplanes. tt0377062,fWP17t95S2k,Frank saves Elliott's life during an electrical storm. tt0377062,QMJfw8aF90Y,"After losing his propellor in a sandstorm, Frank crash lands the plane." tt0107144,BP6N_JrLUIM,Topper and Ramada's goodbye is interrupted by Dexter. tt0107144,TNkvLDF7JOY,Col. Walters and Michelle visit Topper at a Thai kickboxing match. tt0099785,mDUSjBiHYeY,"Harry and Marv close in on Kevin, but Kevin gets help from an eight-legged friend." tt0099785,S7OWoc-j8qQ,Kevin keeps laying down the punishment on the would-be bandits. tt0099785,ddXUQu9RC4U,Kevin's booby traps work perfectly against the bungling home invaders. tt0099785,_qu4ZBCU6Fc,Kevin talks to himself in the mirror as he washes up and gets ready for his first day alone. tt0099785,tpfOhYRYv80,Kevin tricks Marv into thinking that a shooting has happened in his house with a movie clip. tt0104427,bI9CAfqY3hk,"Bobby watches a young kid kill Jimmy Hoffa, who is waiting in a car at a roadside diner." tt0104427,JY6N-tEppkg,Hoffa leads the striking teamsters into a violent riot against RTA. tt0104427,zE2-th0lNbg,"While Hoffa and D'Allesandro negotiate, Bobby kills a deer." tt0104427,9h9W4c2YLCg,Hoffa squares off against Senator Kennedy over a subpoena and charges of corruption within the teamster union. tt0104427,FVg9En9jYSo,"When trying to set a building on fire, an accidental explosion leads to Billy Flynn catching on fire." tt0356634,hwpHOq3Xbks,"Garfield tries to chase after Odie, but his unorthodox means of transportation sends him flying out a window. Fortunately, a lasagna truck breaks his fall." tt0356634,SgqfufV0AL0,Garfield has a tumultuous ride through the ventilation shaft of the Telegraph Tower. tt0356634,tUuzV9kwSBE,Odie impresses the crowd with a dance while Garfield is chased by dogs. tt0356634,6_5QkJsNCho,"When Garfield falls victim to his own scheme, Odie saves him." tt0356634,Pojd3KNQq68,"Garfield must make a show of catching his friend, Louis, for Jon." tt0067116,ZvvlFocf6LU,Doyle viciously interrogates and insults a drug suspect while dressed as Santa Claus. tt0067116,MYv8K_joa6A,Doyle and his partner Cloudy shake down a junk-house bar. tt0067116,JD-K9Exe8jw,"After a cat-and-mouse chase, Charnier gives Doyle the slip on the subway." tt0067116,wYMJal35N0o,Doyle catches up to the elevated train and kills Nicoli. tt0067116,2TVyJ-51jzc,Doyle races through traffic to keep up with the elevated train. tt0104431,E3RQVcNUcTA,Kevin throws bricks at Harry and Marv on the street below. tt0104431,h_bUcNjmuSk,Kevin uses an old movie to intimidate Mr. Hector and the hotel staff. tt0104431,Dh1V8GyyNYE,"Kevin runs up to the second floor, while Harry and Marv underestimate his booby traps." tt0104431,DTPq0mNS0-0,"Marv tries to wash the paint off and gets electrocuted, while Harry tries to put out the fire on his head." tt0242423,ghDDdQxgXRw,Jesse and Chester meet Fabio on the street and try to one-up his studliness. tt0242423,G2Mbj06Ns2Y,"While changing in a dry cleaners, Jesse and Chester discover that they both have brand new tattoos." tt0242423,uL2gxb-TcLM,"Jesse and Chester crash a cult meeting and are forced to find the ""Continuum Transfunctioner.""" tt0242423,ADRGgyhX4YE,Jesse and Chester are entertained by Nelson's stoner dog. tt0242423,oqwzuiSy9y0,Jesse gets caught up in some Chinese food mind games at the drive thru. tt0099487,szLCkEBB6xs,The neighborhood women line up to have Edward cut their hair. tt0099487,G1DG6f_6nZ8,"Kim tries to stop Jim when he attacks Edward, but Edward eventually fights back." tt0099487,d9PlKlirxT4,Kim tells her granddaughter the story of Edward Scissorhands and why she believes it snows every year. tt0099487,64IwbhFYuUM,"Kim goes out to see the snow Edward created, but when he accidentally cuts her, Jim overreacts." tt0099487,pu523TrIMpg,Kim is hysterical when she finds Edward in her bed. tt0137523,eCKRI2wEw7I,The Narrator comes to the stunning realization that he and Tyler Durden are the same person. tt0137523,6pJC0FLA3Sk,The Narrator beats himself up to a bloody pulp in his boss's office. tt0137523,zvtUrjfnSnA,"Tyler Durden gives The Narrator a chemical burn to teach him the lesson that ""it's only after we've lost everything, that we're free to do anything.""" tt0137523,CR5Jp_ag2M8,Tyler convinces The Narrator to hit him as hard as he can. tt0137523,dC1yHLp9bWA,"Tyler Durden lays down the ground rules for Fight Club. First and foremost, you don't talk about Fight Club." tt0838221,faX23LNpQGg,Mother gets defensive when her sons confront her about leaving them and not making it to their dad's funeral. tt0838221,Wy6ANzdhy1s,A fight breaks out between the brothers after Francis sees Peter shaving with their deceased father's razor. tt0838221,mVybomocIw4,"The Whitman brothers have a low moment together about their estranged mother, contemplate their spiritual journey, and decide to get high." tt0838221,1j8l24hHhgA,"When the train gets lost, Francis reveals to his brothers the real purpose for their trip." tt0838221,Em4igIXJRgw,Jack lures Rita into the bathroom to share a cigarette and a make-out session. tt0357277,spbfax8dOTk,Elektra protects Mark and Abby from a team of ninja assassins. tt0357277,IYcgbsw7yc4,Elektra is brought to her knees by a mystical kiss from Typhoid. tt0357277,Y-zjMdsTYyw,Elektra and Kigiri battle through flying linens. tt0357277,mlcBwNHilHE,"Elektra and Kigiri engage in a final, epic battle." tt0332047,ebj_l5icPPg,Lindsey delivers some shocking news to Ben. tt0332047,XqmCa8WjX5Q,Ben explains why he is such a huge Red Sox fan. tt0357277,A3WWrwBRH_w,Elektra disposes of DeMarco. tt0332047,6qIBzPrHoVk,Ben and Lindsey get to know each other on a first date. tt0332047,zPN9c-AIezE,Lindsey explains the state of her relationship with Ben. tt0332047,KpOUP8mC9fk,"On a field trip with his students, Ben is impressed with Lindsey." tt0120631,J03lpGKZ0xc,Danielle helps Prince Henry see the bright side of his royal status. tt0120631,ZpkIPtYw01k,Danielle finds a creative way to protect Prince Henry from gypsies. tt0120631,TrxJeKnKaAk,The Baroness breaks Danielle's heart by telling her she never loved her. tt0120631,chBVj94zYDM,Danielle meets the prince at the river and gets to know him better. tt0120631,ZGFHY5JjTZQ,The prince proposes to Danielle and sweeps her off her feet. tt0364725,-4QqksHXUCc,The Average Joes meet the Purple Cobras in a heated final match. tt0364725,sT47KfDlwI8,A helpful instructional video on the history and rules of dodgeball. tt0364725,BXveaReACHs,White and Pete fight for Kate's attention. tt0364725,peUyLXrgYZ0,Patches O'Houlihan gives the Average Joes their first dodgeball lesson. tt0164114,E4e_QytNF4I,Chase spends a day tubing with the cool crowd and has a heart-to-heart with Dee Vine. tt0164114,s6DlYFmuJXw,"At the Centennial Dance, Chase and Nicole share a slow dance to The Electrocutes version of ""Keep on Loving You.""" tt0364725,KqQ1UmDPvgA,The Globo Gym dodgeball team throws down a challenge to the Average Joes. tt0164114,SPiSR_YDfXc,"If Chase is believably going to take Nicole to the dance, he needs a makeover. His new look fails to impress his friends or Dulcie." tt0164114,gRyEkrwnyaI,"After the basketball game, Nicole and Chase go cruising on Broad Street." tt0164114,D6DPbztWi8U,"In an act of desperation, Nicole asks Chase to take her to the Centennial school dance." tt0099423,P0Tt7VUMLs8,McClane succeeds in taking down the terrorists' plane. tt0099423,acnUb2KcgdU,McClane fights Major Grant on the wing of the escaping plane. tt0099423,jZiR9MHumCk,"The terrorists try to kill McClane in the cockpit of the plane, but he makes a creative escape." tt0099423,3_zKy7ygsHY,"McClane chases the terrorists on a snowmobile, but their superior firepower ends his ride." tt0099423,g-P53rME1xE,McClane saves Barnes and single-handedly takes care of the terrorists in the Annex Skywalk. tt0095016,I6wRZCV7naE,McClane gets Sgt. Al Powell's attention by throwing a dead body out the window and down onto his police cruiser. tt0095016,cnQEo4bazIo,McClane has one final showdown with Hans sending Hans out the window and to his death below. tt0095016,LVpnmOXvBR0,McClane has to escape the roof that's been rigged to blow and the feds that have mistaken him for a terrorist. tt0458352,2PjZAeiU7uM,Andy watches as the Runway Magazine office turns upside down when it is announced that Miranda is on her way. tt0095016,BSRrzrQtmto,Hans thinks he's dealing with just another American cowboy and McClane agrees with him. tt0095016,L0CL__Tvp-o,McClane sends Hans a Christmas greeting in the form of Tony's dead body in an elevator. tt0458352,b2f2Kqt_KcE,"Andy interviews to be Miranda's assistant and despite everything going against her, makes an impression." tt0458352,-qdHE9-8spU,"When Miranda tells Andy that she is like her, Andy walks away and happily tosses her mobile phone into a fountain." tt0043456,HQSGHbbDR_Q,"Klaatu, the alien visitor, emerges from his flying saucer and greets the Earthlings." tt0458352,Ja2fgquYTCg,Miranda sets Andy straight when she laughs at their debate over two seemingly similar belts. tt0043456,K6iF5sINVns,"After the military attacks Klaatu, the robot enforcer Gort descends from the spaceship and melts their weapons." tt0043456,ASsNtti1XZs,Klaatu gives a warning to the human race about aggression. tt0458352,HSPYgwP9R84,Emily is speechless when she sees Andy after a makeover with the help of Nigel. tt0043456,M9phuyRknPw,Klaatu leaves a final challenge and leaves Earth in his flying saucer. tt0043456,5NZXmq-E2tM,Helen goes to the robot Gort and utters the phrase to stop his destruction. tt0092115,sKNAfihSpnk,Harry Potter Sr. is starting to get the feeling that something weird is going on in the building. tt0092115,1e7FILJsiZA,The Troll transforms Peter into a magic pod that turns his apartment into a mystical forest. tt0092115,iGhEOyypT2A,The Troll spawns an elf creature from a pod. tt0092115,DfW_3qH9G5M,"The Troll captures Wendy playing in the basement, while her brother Harry Potter Jr. looks for her." tt0092115,Loo5BhidY-4,"As the fairy world merges with the apartment building, Harry Potter Jr. attempts to rescue his sister from a glass coffin." tt0092115,pMPJV8sYt7k,"As Malcolm tells an ancient poetic tale to Wendy and her mother and father, the monsters growing in the building start to sing." tt0092115,34c473tq72E,"William visits his girlfriend Jeanette, only to find her apartment has become a magical forest and her a happy nymph." tt0092115,Q6luiTx1pM8,"When the Troll's monster goes after Wendy, he is left with no other choice but to destroy his own creation and end the merging of the two worlds." tt0092115,ZS7BASI6gpM,A young Eunice goes looking for the Troll in order to face him. tt0092115,nRLP98lG1YA,Wendy transforms into the Troll when Barry is unable to explain what death looks like. tt0116282,kPHbIyDTPHU,Police Chief Marge Gunderson investigates the murder of three people while dealing with morning sickness. tt0116282,R4lxBhDtvXQ,"When pulled over by a policeman, Carl tries to handle it, but Gaear takes the matter into his own hands." tt0116282,RM2N1w6t1KM,"Jerry asks his father-in-law for a $750,000 loan and is denied." tt0116282,bbpQmRxCYUU,"After trying to strike up a conversation, Carl decides to give Gaear the silent treatment." tt0116282,MY5NspwaVgk,"Gaear really wants pancakes, and the only way he convinces Carl to stop is if they finish them off with some sex." tt0116282,0hL-fpCsGR8,Marge tells Gaear that there's more to life than a little bit of money. tt0116282,WGxTMoDAI7M,"Jerry practices his ""frantic"" phone call to Wade after finding his wife kidnapped, and his house a mess." tt0116282,TqNaJxRC9NM,Jerry is caught off guard when Marge questions him about possible vehicle thefts. tt0116282,0YzsWVUO-_o,Marge finds Gaear putting his partner in crime through a wood-chipper. tt0116282,MXcxWsdjYHA,Carl pays $4 for staying 5 minutes in airport parking and shares a few choice words with the parking attendant. tt0116282,8ltYYXhGCBo,Marge takes Officer Lou to task over sloppy police work. tt0116282,B2LLB9CGfLs,Jerry Lundegaard sells an irate customer undercoating on a new car. tt0286499,T3nGqPQJqlQ,"As Pinky's wedding celebration goes on, Jess kicks the winning goal in the championship game on a penalty shot." tt0286499,MnUGqPzLojs,Jess excitedly informs Joe that her parents have allowed her to go to America. tt0286499,Dk5SrjFVQIM,"Jules invites Jess to try out for the Harriers. At the tryout, Jess meets the coach, Joe." tt0286499,uopLUlluf-I,"When Jess tells her family she wants to go to America to play soccer on a scholarship, her dad encourages her to live out her dreams." tt0286499,oZoXYuatXzI,"While clubbing in Germany, Joe is obviously more interested in Jess, which hurts Jules." tt0319262,ZZyXtEMFfaw,"As the eye of the storm approaches, Sam comes up with a plan to escape from the wolves and return to shelter." tt0319262,GmjAp2eRDH0,A massive tidal wave rises from the Atlantic and floods the streets and skyscrapers of New York City. tt0319262,dkErNkX2HKM,Dozens of tornadoes suddenly form in Los Angeles and destroy several Hollywood landmarks. tt0319262,L2PdSg-w5T8,"After Sam emerges from underwater, Laura uses her body heat to warm him, while Jack plans a rescue." tt0319262,MKf_SL_owsY,Sam reveals his feelings for Laura while they are seeking shelter from the storm in the New York Public Library. tt0088944,Dus8r5l5cys,John and Bennett have a violent brawl until John impales Bennett with a pipe. tt0088944,HjNQLXXwYfw,John attacks Arius' compound with all of his firepower and resourcefulness. tt0088944,zB6pvQt0I8s,"After wrecking Sully's car, John lets him go off a cliff." tt0088944,YcSXHU0zktM,"When mall security converges on John, he takes care of them all and chases after Sully." tt0088944,hopRenk1oaQ,John kills his escort and finds a way off the airplane bound for Val Verde. tt0452598,M3u94uEBq9o,"Tom goes kneeboarding to keep an eye on his daughter Sarah and her crush Eliot, but his age and inexperience in the water pays a price." tt0452598,FccBG82Ocds,"When some raw meat is placed in the seat cushion intended for Jimmy, the Baker's dog runs rampant destroying the table setting and attacking Tom." tt0452598,djUYiJu6K48,The clam blake goes horribly wrong when a backpack full of fireworks accidentally ignites on the buffet table. tt0452598,5e7c30eNNy4,The Baker Family and the Murtaugh clan have competing camp out sing-a-longs from across the lake. tt0349205,5SrayNqew08,The kids crash Dylan's lame birthday party. tt0452598,LRD16Y5xR9Y,"As the Baker's settle into their vacation house on the lake, they are greeted by an unexpected mouse nicknamed The Chisler." tt0349205,ZWLQiviq7SM,Tom lies and tells Kate that everything at home is totally fine. tt0349205,1ZVwo_elP7Y,Tom has trouble keeping up with his kids while his wife is out of town. tt0349205,I-OaeRbZtk8,The neighbors can't deal with the havoc at the Baker home. tt0349205,oIjgZ-i9v_k,Mark's frog wreaks havoc at the Baker's breakfast. tt0115857,4Y9X5wDG4Dw,"As the reactor gets set to blow, Lyman kills Chen and threatens Eddie and Lily." tt0115857,P4BRIozjuKg,"Eddie and Lily escape Yusef, but barely survive an explosion at the base." tt0115857,xCKGA9yDNgQ,"After finding Dr. Barkley dead, Eddie tries to escape a massive explosion at the hydrogen lab." tt0118798,jZtlV8eroS8,L.D. explains how he helps young black kids by giving them drug jobs. tt0118798,Pwv4avomXYo,Bulworth forces a racist cop to apologize for bothering some black kids. tt0118798,Id0cqNWZ50Y,Bulworth raps his political beliefs at a Beverly Hills luncheon. tt0118798,XA62refAB2w,Bulworth throws out his prepared speech and tries brutal honesty for a change. tt0118798,f5umSa_YYX0,Nina shocks Bulworth with her knowledge of politics. tt0297037,bdft59iqlKQ,Dre calls in the radio station to profess his love to Sydney on-air. tt0297037,hnfpujruuv4,Sidney tries to take control of the situation after she and Dre sleep together. tt0297037,eLdQluY23UI,Francine tries to convince Syd to step forward and stop Dre from marrying Reese. tt0297037,fa4IKrf2YHI,"Dre and Sidney hang out after catching his wife on a date with another man, and finally sleep together." tt0297037,___OJkS9RK0,"Sidney comforts Dre when he is worried about ""selling out"" for his career, which leads to a kiss." tt0120620,ITu2LTUPniQ,Alice and Darlene learn the hard way that Thai courts judge character above crime. tt0120620,-3KCgSpt3hU,Alice falls before a Thai Judge and claims full responsibility for all drug smuggling charges. tt0120620,WkjEuV1fTrk,"After being detained, Alice and Darlene experience a cultural shock in the Thai system." tt0092699,MTEXVT8P354,Jane checks Tom's interview tapes and sees that he faked his on-camera tears. tt0092699,A5xTu6AMxq4,The station tries to assist Aaron during a news segment when he starts to sweat uncontrollably. tt0092699,2zTqIJeCd3c,Jane impresses everyone at the station when she helps Tom pull off a successful news piece. tt0092699,ZTCtiADVAWs,Aaron confesses his love for Jane and tries to explain the truth about Tom. tt0092699,zPtKevwg7Ko,Jane and Aaron say a difficult goodbye. tt0078902,pWYPN21XIEU,Dave pulls out the race at the finish line and the Cutters celebrate their victory of the Little 500. tt0078902,VTZ0N7VTDtY,"During a bicycle race, Dave is able to keep up with the vaunted Italian squad until they employ cheating tactics." tt0078902,6DQTWY9wTO8,Mike and Moocher find the guys who beat up Cyril. A fight ensues between the Cutters and the frat boys. tt0421729,a1GeB9y9zzo,Big Momma gets her groove on at the cheerleading competition. tt0421729,C3ZMp57PKEA,Big Momma struts her stuff on the beach. tt0421729,HZzHIl9mBsI,Big Momma crashes the Fuller's babysitter interviews. tt0421729,u2107BTcDbs,Big Momma goes to a spa and is overwhelmed by scantily-clad women. tt0421729,le6AAhqa_8U,Big Momma hot massage makes her literally melt. tt0208003,wZaCK0PDUMI,Malcolm saves the day when the bullets start flying. tt0208003,kGot2YelCpE,Big Momma brings her A-game to the basketball court. tt0208003,9W5MiCLa9DU,Big Momma is forced to deliver a baby. tt0208003,a9biNJwX3OA,Malcolm/Big Momma has an unexpected gentleman caller. tt0208003,noT3bA3Ibyk,Malcolm has to hide in the shower when Big Momma takes a dump in the bathroom. tt0065466,SwtSrzKWoK4,"Ronnie goes on a manic killing spree, beheading Lance and stabbing Otto to death on the beach." tt0065466,hpDjzODXpBQ,"During a live TV performance by The Carrie Nations, Harris attempts suicide by leaping from the rafters onto the stage." tt0065466,DvSmeQSDTco,"When Emerson confronts Randy after catching him in bed with Pet, Randy runs him over." tt0065466,zh4yF8r5uJI,"Harris is seduced by Ashley St. Ives in the back seat of a Rolls Royce, while Kelly has her own affair." tt0065466,Y10g9umKQcM,"At Ronnie's insistence, The Kelly Affair performs ""Sweet Talking Candyman"" at one of his parties." tt0163978,pMx5aSV7qFg,"Alone in the jungle, Richard eats a caterpillar and hallucinates that he joins Daffy in war against the island." tt0163978,-N2mhlvygq0,"To the dismay of the other travelers, Sal shows her willingness to shoot Richard to keep their location secret." tt0163978,GpQTd7WhT-Q,Richard and Francoise swim amid glowing shrimp and kiss for the first time. tt0163978,Yc9vYLgQb4E,Richard tells the assembled community of his encounter with a shark earlier that day. tt0163978,oNmhgpAGlBs,Richard and Francoise sit on the beach flirting and taking photographs of the night sky. tt0280460,5KderLI5hEc,Hannah gives an inspiring graduation speech about being genuine. tt0280460,Om_HVqAXZYY,Lavinia and Suzette enjoy their photos of rock star penises. tt0280460,-Jzi-2lYWEw,Lavinia and Suzette argue over life changes while at the DMV. tt0280460,yGUwdRBZ4-8,Lavinia comforts Suzette and they bond high up on a billboard. tt0280460,f_sRtGI7Y0g,Lavinia's daughters receive some hard truth from Suzette. tt0042192,5tu_42LmfEw,Eve describes what she loves about working in theater. tt0042192,CBOzczGQh9w,Addison confronts Eve with the truth about herself. tt0042192,1orN1oGScbk,Eve resorts to blackmail to secure the role of Cora in Lloyd's new play. tt0042192,LPPJdOGshUM,Margo's bad feelings toward Eve become apparent; Addison introduces a young starlet. tt0042192,eWL0obbYYOE,Bill reassures Margo that he loves her despite her paranoia and tantrums. tt0168786,-5be_UPkLRw,"While spending Thanksgiving with Dr. Davenport's family, Antwone shares a poem he wrote." tt0168786,ucQmXLgGIVA,Antwone blows off some steam in Dr. Davenport's waiting room. tt0168786,LW8CpOzdT5Q,"After waiting more than 20 years, Antwone finally meets his estranged mother." tt0118583,14Mf_nTyWBc,The crew tries to escape an alien inside a shaft. tt0118583,L4_-rVenLVs,"After connecting with the alien, Ripley and Annalee force it out into space." tt0118583,UsJjfS-i2zM,A new alien mutation investigates Ripley and finishes off Gediman. tt0118583,cv7_7dSbaOk,The team is pursued by aliens even when they try to escape underwater. tt0118583,LFN4NtioY8Q,"The aliens get loose from their chamber, which spells the end for Dr. Gediman." tt0103644,L3vbfkRB6gQ,Ripley falls back into a pit of lava in order to make sure the alien race does not live. tt0103644,DZFydcYiOtQ,Dillon sacrifices himself as molten lead is poured down on the alien. tt0103644,DNuzmKc7mq4,"The alien kills Clemens in a surprise attack, yet leaves Ripley alone." tt0103644,hmF_IO6Aiag,Ripley searches out the alien in the grimy basement. tt0103644,dCTd1XHbliU,Andrews protests Ripley's hysteria in the mess hall and is subsequently killed by the alien. tt0311113,GmvpP26J-40,"Stephen confronts Captain Aubrey about his order to flog a disobedient man, but the Captain's order stands." tt0311113,Vy-simXeFBc,"With the day won, Captain Aubrey gives his 2nd Lieutenant orders and then proceeds to play a musical duet with Stephen." tt0311113,Isx0GBj1fxU,Captain Aubrey and his men board the Acheron and brutal hand to hand combat commences between the two crews. tt0311113,G95g0vzTAKI,"Captain Aubrey gives the order and his ship fires on the Acheron, destroying it's mast." tt0198021,b7NJkxnU7xI,Novalee encounters a friendly woman named Sister Husband who thinks she is someone else. tt0283026,ai1wUoboyNM,Madison gets caught in a trap set-up by Ben. tt0283026,apo0KrJVXMk,Ben makes a startling discovery in the pool when he finds Josh's dead body. tt0283026,d_FUI6kf1b8,Madison confronts Ben in the locker room. tt0283026,Jj0UuTkXIyA,What begins as an innocent swim lesson between Ben and Madison turns into something a little more serious. tt0283026,441D9uXF1ac,Ben opens the wrong email at the wrong time. tt0311113,5f0cBrCTeis,"When he is shot in the stomach, Stephen must perform surgery on himself." tt0467406,1QvItdreFLk,Juno and Bleeker sing a song and share a kiss. tt0467406,jPF_mENo1Fw,Vanessa runs into Juno at the mall and feels her baby kick for the first time. tt0467406,B2CEGhwMjkQ,"Juno confronts Bleeker at his locker about prom and the ""planet"" growing under her shirt." tt0467406,GOqTRPdrXgc,Juno tells her parents about her plans for adoption and the couple she is considering as the adoptive parents. tt0467406,NocIDIeLTqA,"Juno takes multiple pregnancy tests at the local convenience store, but all signs point to pregnant." tt0166396,OwYH_j7c9gE,"As Lizzy prepares to call the National Lottery office, fate intervenes, sending the phone booth she's in off a cliff." tt0166396,GQJMW4W_278,Jackie tries to delay the lottery claim inspector while Michael races to Ned's house so he can pose as Ned. tt0166396,S_yY1PaFEok,Jackie pretends to have the winning lottery numbers in order to get Annie to bring in his apple tart. tt0198021,31t8eDmC1BU,Novalee travels to Forney's college to tell him that she lied about not loving him. tt0198021,CJIECQdjuLU,"Novalee visits Forney after his trip to Maine, and tells him she does not love him back." tt0198021,o0Y7v_EbE70,Novalee almost gets blown away when she looks for Sister in a tornado. tt0198021,i2isplJSa8E,"After naming her daughter ""Americus,"" Novalee gives an interview for the local TV station and opens mail from people inspired by her story." tt0388482,4ybEyyoBxts,"With Lola and Jack in tow, Frank leads a fleet of police cars on a wild chase." tt0139414,DTMVpuLIp18,Kelly sees Mrs. Bickerman feed an entire live cow to the giant crocodile in the lake. tt0139414,IRZrsNC5jpg,Hector finds himself face-to-face with the giant crocodile and yells to Sharon to help him escape via helicopter. tt0112864,RDnvXAkMnx8,McClane meets Zeus while wearing a highly offensive sign in the middle of Harlem. tt0112864,dNlMe4kU9TA,McClane escapes a flood in a tunnel. tt0112864,8RVVJmuoAQ4,McClane and Zeus manage to evade Connie by driving their cab through Central Park. tt0112864,crPJvv2Y3hk,McClane confidently takes out Simon in a fiery blaze. tt0112864,Q0yQbpoQ0hY,McClane notices some suspicious cops in the elevator and finds a clever way to grab his gun and kill them all. tt0139414,GMCKHfREAPA,"Sheriff Keough spots a scuba diver flopping around in the lake and when he helps pull him out, something is missing." tt0139414,cONYIjOytm0,"Just as the group is about to be attacked by a giant grizzly bear, the crocodile flies out of the lake and eats it." tt0139414,EsFrRaMQMPA,The group makes a fast break to the boat when they sense the crocodile is near. tt0388482,qr7oBpkkxIQ,"Battling ax-wielding goons in a garage, Frank uses a length of pipe to knock them into a trash bin." tt0388482,Hpc8yqHTq-I,Frank finds many uses for a fire hose as he takes out his aggressors. tt0388482,-HPjEz0u-9Q,"When a posse of thieves attempts to steal his car, Frank teaches them a lesson." tt0388482,RUpKMSWPjZw,"Frank shields Jack from a gun-toting, lingerie-clad villainess." tt0333766,D2XKjKc8DKg,"After leaving Sam in the airport, Largeman has a change of heart." tt0333766,GZQMDeQs0-k,Largeman reveals that he can't cryor swim. tt0333766,qSGfcCO_h4I,Sam shows Largeman what she does to feel original. tt0333766,cncKzAr-jis,"Largeman takes Sam on a ride, but she doesn't like his friend Jesse." tt0094737,11Kv8mnxdCM,Susan comes on to Josh at the company party. tt0094737,3ERuhks3GNk,Josh has a few opinions about the company's new toy. tt0090728,dME9-07ZvJI,"Jack, Wang and Egg Shan have an epic battle with Lo Pan and his minions." tt0456554,sZTpI9Q71rs,"While getting high with Dante and a chimp, Alex finds out he has to get back to the office to save his Grandma." tt0456554,HgmE4x7yg3c,"At a house party, Grace tells a revealing tale about Charlie Chaplin and Samantha shoots a double shot of tequila." tt0333766,agRBVqecl5Y,Largeman meets a horny dog and quirky Samantha at the Doctor's office. tt0456554,wdWM3tzzH08,Samantha gets introduced to the video game break room with J.P. as her escort. tt0456554,a2Th8JGsJuo,"J.P. rides his robo-scooter through his office, re-fuels his body with lunch, and listens to a message from Samantha." tt0456554,DuKvU5jh2os,"Alex gets caught masturbating to a Lara Croft action figure by his friend's mom, Mrs. K." tt0094737,gxeIvClLpKI,Susan is shocked by Josh's apartment. tt0094737,CF7-rz9nIn4,"Josh and his boss play a huge electronic piano, to the delight of shoppers." tt0094737,9pX1hxYW3YY,Josh realizes that his wish to be big came true. tt0159273,d-RR_vV7qDU,The Serbs attempt to shoot down Chris and Stackhouse's jets because they've flown over a mass grave. tt0115759,gS56O-aHEMs,Deak detonates the first nuclear bomb in a mine shaft. tt0115759,De2qscGlWX4,Deak and Hale fight to the finish until the bomb launches into Deak and the train explodes. tt0115759,zW7btaVY-Lw,Hale fights Deak and his henchman aboard a moving train. tt0159273,pTvbSVyWP9I,Chris tricks and kills Sasha. tt0159273,5dL4tZZ-Jq8,"The US task force, led by Admiral Reiga, rescues Chris with a daring helicopter maneuver." tt0064115,tNZKO_68_WI,Sundance tries to cover Butch during a shootout with the Bolivian authorities. tt0064115,w9KBOhPXhds,"Harvey challenges Butch's authority in the gang, but Butch isn't ready to give it up." tt0064115,geOqbM03Hf0,"Butch and Sundance make a plan to go to Australia, then go out shooting." tt0064115,8_JPDEHU1ok,Butch shows off his bike skills to Etta on a carefree morning. tt0064115,KyR7XB0VBPM,"To escape their relentless pursuers, Butch and Sundance take a leap of faith." tt0090728,XBJSfGM5dGY,"Jack goes in disguise to a Chinese brothel to rescue Miao Yin, but meets Lightning." tt0090728,fWcPwWR4C_w,"While Jack and Wang are caught in a gang war, three sorcerers arrive." tt0090728,A65Jq6NKdeI,Jack uses quick reflexes to kill Lo Pan and Thunder blows his top. tt0090728,eMURCJgRJYM,Wang kills Rain while Jack rescues Gracie. tt0118617,m3s7ZwpFCsc,"While learning how to dance, Anastasia and Dimitri share a tender moment." tt0159273,XFdEntyO6TY,"As he works his way toward the extraction zone, Chris must maneuver his way through a minefield." tt0370263,Xh1TwRilcLo,A predator and an alien engage in a vicious fight. tt0118617,Qxju05tBuLM,Sophie shows Anastasia around Paris. tt0118617,lrGIfJdbUHY,"Just as Rasputin is about to take his revenge on Anastasia, Dimitri comes to save the day." tt0118617,qA7XKmC5QbQ,"While visiting the Royal Palace, Anastasia starts to remember her past." tt0159273,JaeHMEw9KAg,Admiral Reiga orders Chris to re-locate to a new extraction point in order to be rescued. tt0370263,crZXwRmMq2k,The team is trapped inside the temple when facehugger aliens attack. tt0370263,-64q4HpZyaY,Sebastian and Alexa witness how the predator marks himself with the blood of his prey. tt0370263,1sE-YwK6_PI,Alexa and the predator battle the gigantic alien queen. tt0370263,oh4GYHtq2hY,"Alexa is honored with a spear from the Predators, but aboard the Predator ship, a new menace is born." tt0118617,XPwdUzG03SQ,Rasputin vows to kill Anastasia. tt0078748,3YTIMGmZUr4,"While looking for the cat, Brett meets the alien." tt0463854,yLz4NXK6jkU,Doyle puts himself in harm's way to push start the car and allow Scarlet and the children to get away. tt0463854,iDrYp0LApwU,"Flynn refuses to allow anyone other than Doyle onto his helicopter, the blades of which he turns on the infected." tt0463854,Xh2kwqss0dQ,Don abandons his wife Alice and runs for his life when a group of the infected overtake their cottage. tt0078748,AdBu6VAESeI,"A baby alien bursts from Kane's chest, to the horror of the crew." tt0078748,gEqHJ1tomnk,"When Ash tries to sever the alien off Kane, the blood that gushes out burns a hole in the ship." tt0078748,CRXyWtv-huc,"Crawling through the vents, Dallas meets his untimely end." tt0078748,U-mmbStFrAA,Ripley blows the alien away and begins her journey back to civilization. tt0463854,xi7nytFOO2k,"When Don kisses Alice, he becomes infected with the virus and kills her." tt0463854,v0i-Th0bvPw,Doyle and the other snipers are ordered to shoot everyone on the ground right as Andy finds himself in the middle of the crowd. tt0289043,S6bKFjxPbC4,Frank is infected by a single drop of blood and the military eliminates him before Jim can. tt0289043,j9h6JvfCOOs,Jim rescues Selena from a soldier. tt0289043,rDbMqG0EObM,The group manages to change their tire just as an infected horde arrives. tt0289043,j-a68r1d9iQ,"When an attack leaves Mark infected, Selena has to take action." tt0289043,eCdRFMp8Xwo,"Jim wanders the streets of London, baffled by its emptiness." tt0086998,ad65spfln8w,The Electro Rock crew beats Turbo and Ozone at the dance battle. tt0086998,s8jfw7FxNqA,"While sweeping the street, Turbo starts breakdancing." tt0086998,Y15DS1LKh4g,Ozone takes Kelly back to Venice Beach to show her what dancing really means to him. tt0086998,x26YFcaLiNk,"James is a little out of place at the dance, and Ozone nearly gets into a fight." tt0086998,wdB2lzxIfGg,"When Kelly asks James to help get her crew into the contest, he's skeptical, but agrees to come and watch." tt0086998,8-q2CNPDfOU,Turbo and Ozone teach Kelly how to break dance. tt0086998,ZgIp4Y5NoZk,"Ozone, Turbo and Kelly show Electro Rock their moves while a young Ice-T raps." tt0086998,bPNkEztLgeo,"Turbo crashes Kelly's jazz dance class and starts a dance circle, until Franco kills the music." tt0086998,bt6-F11LZsQ,Adam introduces Kelly to Ozone and they dance at Venice Beach. Look for action star Jean-Claude Van Damme among the spectators. tt0086998,N2HtiOaOGx8,Turbo shows some neighborhood kids how to breakdance. tt0086998,cqiQmO5frrE,"At the dance audition, Kelly, Ozone and Turbo win over the stuffy judges with their moves." tt0095159,6zquYbMbFNk,"While searching Ken's apartment, Otto seduces Wanda by speaking Italian." tt0095159,MuWwCUXGzWE,"Otto questions Ken about the location of the diamonds, gulping Ken's prized fish to motivate him." tt0095159,fSu5W0BtXG8,"Archie hurriedly interrogates Ken, but can't get much out of him." tt0095159,02DzpeBF4es,Otto goes off on another tirade against the British and discovers a private letter from Archie. tt0095159,2j3adcbEwSM,"Wanda corrects a few of Otto's ""intellectual"" misconceptions." tt0095159,YgJvgESR920,"Avenging his departed fish, Ken plows over Otto with a slow-moving steamroller." tt0095159,PoaOwSPJPHw,"When Wendy calls him stupid, Otto goes off on a tirade against the British." tt0095159,7WdGe1bDiuU,"As Otto eavesdrops, Archie and Wanda make out and revel in his utter dumbness." tt0095159,lwfuUyTMpVY,Otto demands an apology from Archie while hanging him out the window by his feet. tt0095159,9Z3eCKZ69eM,Wanda uses her feminine wiles to soothe Ken's stutter. tt0095159,GfHOoFVUk9Y,Archie's seduction of Wanda ends abruptly when an unsuspecting family arrives. tt0103596,BBkzG9_vrZg,"Though his brothers insist that he loves Emily, Rocky is adamant that the two are not an item." tt0103596,aHV7IUgaCy8,"Grandpa faces his rival, Snyder, while the boys root him on." tt0103596,gRadASOF2m0,The boys show off their ninja skills during a surprise attack on Grandpa. tt0103596,OqGUDvVYqlM,The kidnapping is sabotaged when Fester's dudes succumb to the power of medicinal laxatives. tt0103596,xqcSo_Yb7OQ,Rocky and Colt play a game of basketball against the playground bullies. tt0103596,DMbglmaMzB8,The boys have no problem protecting themselves from Fester and the kidnappers. tt0103596,8Y_Vepe_rVA,Grandpa presents the boys with sacred masks to accompany their new ninja names. tt0103596,ReFW-5bgoCI,The boys' dad finally appreciates the value of Grandpa's teachings. tt0103596,ql5i_tg-wZY,Fester and his buddies take a casual approach to armed robbery. tt0103596,hcBF8zYH0s0,The boys' practice pays off when they face Snyder's colossal henchman. tt0075066,PruSWq_FycA,Clouseau's investigative prowess leads him to find the gymnasium. tt0075066,qxFHPIFGFmk,"Clouseau tries out the parallel bars and drops in on some suspects, literally." tt0075066,vCuU2y6qR2s,Clouseau and Dreyfus take laughing gas and Clouseau extracts a tooth. tt0075066,yc-qretrU8Q,Clouseau is misunderstood by the Hotel Clerk and gets bitten by a dog. tt0075066,rKfOjJJ1ql4,Clouseau tries and fails to circumvent the castle's moat. tt0075066,e7Efjj3_uME,"During his interrogation, Clouseau wrecks a piano, burns his hand and nearly shoots Superintendent Quinlan." tt0075066,Tu1RZaFnkKs,Cato ambushes Clouseau and the grand battle that ensues destroys much of the house. tt0075066,dApRtXZRw1Y,"Clouseau's hot air balloon trick saves him from Dreyfus' bomb, but sends him flying over Paris into the river." tt0075066,9l07Tr1w4Ls,"Impersonating a dentist, Clouseau makes a house call to Dreyfus and falls down the stairs." tt0075066,dTM13gYxkoQ,Clouseau is twice surprised by a beautiful woman in his bed and a dead man in his bathtub. tt0075066,5wS_6ok9u2c,"Clouseau finds a ""cleu"" and then discovers the closet." tt0075066,Z4wZt4J3Q5k,"Clouseau sabotages Dreyfus' master plan and zaps him with his own device, erasing him." tt0120841,13zrff9V3Tk,"Dennis finally gets to rest from killing aliens, but something has survived" tt0120841,SwGjsWSn8ak,Press discovers Eve mating with a huge alien. tt0120841,o7_kf3hUg30,"Press, Dennis and Laura succeed in destroying the monster." tt0072081,oknpBL5cNOc,The Inspector and his bellhop accomplice attempt to escape Lady Litton's suite undetected. tt0072081,O-LGISfFS4Y,"The Inspector shows up to arrest Lady and Sir Litton but is interrupted by two men looking to kill him, including Chief Inspector Dreyfus." tt0072081,G8EUObgUFvc,Inspector Clouseau gets stuck in a revolving door when he refuses to let the bellhop take his suitcase. tt0072081,tAbYODvO524,Cato attacks Inspector Clouseau in a Japanese restaurant. tt0072081,RcsaFXhuAwc,Inspector Clouseau attempts to infiltrate Sir Charles Litton's property by means of his swimming pool. tt0072081,ryuW22MWnOU,"Cato, hiding in Clouseau's refrigerator, attacks the unassuming Inspector." tt0072081,K5eVu2qDISM,"Clouseau, now an ordinary police officer, hassles a blind musician and his monkey while a bank heist happens in front of them." tt0072081,X_nUklmV_kM,Inspector Clouseau searches the suite of Sir Charles Litton only to get tangled up with a vacuum. tt0072081,m7aDde36EpM,"The good Inspector explains the virtues of instinct while accepting a bomb at the front door, then relays the situation to Chief Inspector Dreyfus." tt0072081,BrXDDicE1VE,"After failing to notice a bank heist in front of him, Officer Clouseau is suspended from duty by Chief Inspector Dreyfus." tt0111282,OeA9yeqG91A,"O'Neil, Jackson and the rest of the team step through the Stargate and travel through a wormhole." tt0111282,_JuHsTbZKqA,Jackson tries to free Sha'uri while O'Neil kills a Horus guard. tt0111282,RWIS7olVbGE,The soldiers help the people overthrow the Horus guards while Jackson and O'Neil try to disarm the bomb. tt0111282,x-FLqiu9nTs,"When the ""natives"" see Jackson's pendant, he and the others are mistaken for gods." tt0111282,3Ds0DRCNXN4,"Jackson figures out the seventh symbol and the Stargate is activated, opening a wormhole." tt0111282,HCLQRZmD1EE,"Giza, 1928: On an archeological dig headed by Professor Langford, the Stargate is discovered." tt0111282,r4vQbzdjQW8,Jack and his crew chase down Jackson who has been taken for a ride by an alien creature. tt0111282,tmZiGfLVs8w,Ra tells Jackson that he will destroy Earth. tt0111282,_q36_9BaH4g,O'Neil and Jackson infiltrate the pyramid in disguise and attack the Horus guards. tt0111282,7ALP_3eWKZg,"Deciding to stay behind with Sha'uri, Jackson says goodbye to O'Neil and the soldiers before they return home." tt0111282,Z-hoEoga8no,"When Jackson and O'Neil are taken to see Ra, O'Neil's secret intentions are revealed." tt0111282,xTebNVZEvT4,The soldiers are ambushed and quickly dispatched by the Horus guards. tt0120841,AgsxHmawNqU,The alien DNA creeps up to the unsuspecting astronauts and infects them. tt0120841,TiSGxWluH-g,"Patrick's father apologizes for not listening to his son, but it is a little too late." tt0120841,9lCBRKyCsVg,Eve escapes from her detention facility using creativity and power. tt0120841,OaZa0tw3Fuw,Eve uses her psychic powers to help Press find Patrick. tt0120841,FcfsKx3pADI,Eve senses Patrick nearby and experiences intense sexual desire. tt0120841,VeghLYlAYxo,"While performing an autopsy on Anne Sampas, Dr. Baker has an unpleasant surprise." tt0120841,vxTyxT5z0hs,"Patrick kills himself, but the alien DNA has other plans for him." tt0120841,yOItNhVYC3I,Dr. Orinsky drops a flask of infected blood and is attacked by the alien. tt0120841,y03ITmppyMI,"Anne Sampas makes love to her husband, but the alien DNA inside her erupts." tt0095444,I3LIwgA7Qpk,Dave and Mike rescue Debbie and run for their lives from the Killer Klowns. tt0095444,F5GWqOrzQ3g,Some harmless shadow puppetry at the bus stop turns harmful. tt0109831,A4iXXQr7tqw,"After a one-night stand, Carrie plays a trick on Charles." tt0109831,mw3M1fIiegc,"Standing in the rain, Charles asks Carrie to NOT marry him." tt0093409,uh677-ClXCY,Sgt. Murtaugh and Mr. Joshua have themselves a mexican standoff involving a grenade while Sgt. Riggs waits in the wings with a sniper rifle. tt0093409,-37Mhsak-XI,"Missing his dead wife, Riggs contemplates suicide, but can't pull the trigger." tt0093409,cy2Xj8Pz2Tk,Sgt. Riggs and Sgt. Murtaugh are both tortured for information. tt0093409,3aSdLAndoJU,Riggs impresses Murtaugh at the shooting range. tt0093409,F12X8zh4aCE,Riggs goes mano-a-mano with Mr. Joshua. tt0093409,aKojFoPzQoQ,"Riggs and Murtaugh try not to harm a drug dealer, but the situation ends badly." tt0093409,cBHvRuBtJqI,Murtaugh confronts Riggs about his suicidal tendencies. tt0093409,1v38MMDYEMw,Riggs handcuffs himself to a suicide jumper and then jumps! tt0093409,7dw45dGMGNY,Riggs busts some drug dealers at a Christmas tree lot. tt0093409,vcxEgyiu16Q,"Sgt. Murtaugh meets Martin Riggs, his new partner, over a judo toss." tt0078872,bdYiJgwzumg,Alec finally mounts the black stallion and learns to ride him. tt0078872,01RWw-3AKaE,"During the race, Alec remembers riding the stallion on the beach and the horse passes the competition." tt0078872,0O5CcvLk-uE,Alec takes the black stallion out for the first time and almost loses control. tt0078872,i6klSHVWbrk,"Alec falls off the sinking ship, but is then saved by the black stallion." tt0078872,8TM2yB381fc,Alec watches as a group of men try to tame the wild stallion. tt0078872,amtxyPO7At8,The black stallion is entangled in ropes and Alec cuts him free. tt0078872,SDW2CT5neyM,Alec and the black stallion bond while they frolic along the beach. tt0078872,7GRQKoapDIU,"Alec tries to reclaim his stallion, but can't do it without a fight first from Henry who spent all night bringing him in." tt0078872,Cty2dqTZSTY,Alec is saved from a poisonous snake by the black stallion. tt0078872,KnzWMPHQ7Nk,Chaos erupts as the boat is consumed with fire and begins to sink. Alec hears the cries of the stallion and goes to him. tt0078872,IZcMgDET-fY,Alec is in trouble when he's caught sneaking sugar cubes to the stallion. tt0095444,PC4wbTAa5SI,"The Klowns take their evil parade through town, collecting bodies." tt0095444,KTHJmfCHWc4,A teenager watches a deadly puppet show put on by an alien Klown. tt0095444,plUXguATsTQ,"After discovering a cotton candy cocoon facility, Mike and Debbie run for their lives from the Killer Klowns." tt0095444,dIw0nCJpAqE,Farmer Green has an unfortunate encounter one night when he runs into the alien Klowns. tt0095444,gLD9INIOo00,"The group of friends discover something scarier than alien Klowns, a giant monster alien Klown." tt0095444,d9ykU9FkH-g,Debbie is trapped by Klowns of all shapes and sizes. tt0095444,M7Ot2vswJLE,A security guard meets the business end of a cream pie when he comes face to face with the Klowns. tt0095444,kLovCSv9-Ks,A Klown plays ventriloquist with Mooney's corpse. Dave finally defeats it by shooting its nose. tt0095444,hFoLv3bTLSc,A Klown strikes back at a bullying biker. tt0107616,PJ7W-dz1OvE,Benedick vows to remain a bachelor when Claudio expresses that he is in love. tt0107616,Dw_6CTZVb7c,"Claudio publicly accuses Hero of unfaithfulness and impureness, despite her convincing otherwise." tt0107616,YkjS7wTVKB4,Benedick and Beatrice publicly exchange mutual barbs. tt0107616,_z3Pfq49wYA,"Benedick professes his love for Beatrice, but she asks him for a difficult favor." tt0107616,zmaZsAPGd5U,Beatrice decides that she will love Benedick while he dances in a fountain nearby. tt0107616,J2gKEelDYpI,Don Pedro and Leonato trick Benedick into thinking Beatrice loves him. tt0107616,jOAHxkUMseY,"Despite warnings about her temperament, and his own reservations, Benedick is joyful about Beatrice's love for him." tt0107616,_-D3PfhuF5o,Dogberry conducts an unusual examination. tt0107616,tXSER8y44do,Benedick reveals a lengthy list of attributes that his perfect woman would possess. tt0107616,4xcUJXRCRWI,Beatrice and Benedick are outed by their friends with love letters and make their love public. tt0107616,sdNtnZbJBRw,Dogberry instructs his men on the duties of the night watch. tt0100054,INE0g4kvXLc,"The Hunters leave a gift for the ""monster.""" tt0100054,TabNBDP679U,Jack and his hunters raid Ralph's camp and steal the knife. tt0100054,wB-4zgJ2LLs,"Roger and his team play an angry game of role play, and mock Piggy and Ralph." tt0100054,0B0YWUYWHS8,"After their plane crashes into the ocean, the boys struggle to find the life raft." tt0100054,2aiVI2zBW3g,"Simon is mistaken for the monster, and killed." tt0100054,rZsQJGk__DQ,Ralph starts a fire using Piggy's glasses. tt0100054,ipkF3xkP63M,Ralph leads the boys in a discussion about how they should set up camp. tt0100054,Y1vBIQiyh80,Ralph calls an assembly on general misconduct and Jack undermines his authority. tt0100054,0MHIzgCZcxc,"When Ralph blames Jack for letting the fire go out, Jack declares that he's starting a new camp for hunters." tt0100054,TQCgzi4j3eM,"Just as Piggy begins to gives a speech about working together, Roger kills him with a boulder." tt0100054,LIIz82ZUCQY,"Ralph runs for his life as Jack and the others hunt him down, but is saved when he runs into a marine officer." tt0333780,0XesK2hB_Wk,Elle and Stanford discover that their dogs are gay. tt0333780,7ppcbkjmuk4,"In a moment of disillusionment with Washington politics, Elle visits the Lincoln Memorial to look for inspiration." tt0333780,zXmrYueNCC8,Elle meets the office staff in Washington D.C. including Rep. Victoria Rudd. tt0333780,OViadirUIp8,Elle tries to smooth over an office argument by using a snap cup in which you dole out compliments to your fellow co-workers. tt0333780,_tBJcD9jxvE,"Elle realizes that instead of fighting the fabric, she has to change it." tt0333780,uSO45koeLhk,Elle presents Bruiser's Bill to Chairman Stanford Marks and wins him over. tt0333780,uXsQ8IIi6YI,Elle and Bruiser find Bruiser's mom at a testing facility. tt0333780,P04IYEOIr38,Elle talks about the importance of speaking up and using your voice. Bruiser's Bill is passed. tt0333780,k8Do9tamQSM,Elle and Congresswoman Hauser bond when they find out they are both Delta Nu. tt0333780,uZ0YGah7MsE,Detective Finchley has found Bruiser's mom and gives Elle the file with all of her information. tt0333780,G4lzPC22k8A,Elle's friends surprise her for her birthday. They catch up about her fiance Emmett and work. tt0212985,tgg-Fay2zzs,Hannibal Lecter kills Inspector Pazzi. tt0212985,ih_V1Ns2UFg,"Hannibal and Clarice escape the hungary boars, Mason Verger on the other hand, isn't so lucky." tt0212985,_Zfqh2OxGFg,Clarice meets with Mason Verger to talk about his involvement with Hannibal Lecter. tt0212985,Q-bDppEz23c,"Mason tells Clarice about the time he had Hannibal over, cut off his own face, and fed it to the dog." tt0212985,-T0PH7Wv3eo,"Hannibal engages Inspector Pazzi, then drugs him just after announcing that he plans to eat his wife." tt0212985,KEoQM4Q-FFY,Clarice thoughtfully studies a security camera video of Hannibal biting a nurse's face off. tt0212985,IhJbjhlRPSk,Clarice tracks Hannibal through a public place while on the phone with him. tt0212985,YWDTyG3z3VA,Hannibal cuts the top of Paul's head off and feeds him his own brains. tt0212985,PuCu1XUGntA,"When Clarice handcuffs herself to Hannibal, he is forced to cut her." tt0212985,wwQev_zC0y0,"When a curious little boy investigates Hannibal's food on an airplane, Hannibal gives him a taste of some brain." tt0085862,0P4h2-R9Rak,McQuade slaughters many men and rescues Kayo from captivity. tt0085862,7enE0xOxDQ8,Kayo watches McQuade practice with various guns. tt0085862,pIPr7nbUCAw,Kayo receives on-the-job training when McQuade decides to pay a local snitch a visit. tt0085862,Ki6bBFE0o88,McQuade struggles to be the lethal man he once was before his injuries. tt0085862,Ah8ALKwclVk,McQuade and his crew launch an assault on Rawley's headquarters in the desert. tt0085862,NTJXKGOgN-k,A quarrel erupts and McQuade shares a few short words with Rawley Wilkes. tt0085862,ZBRK8rVHVW0,McQuade has to save Snow's life after chasing him down on a deadly escapade. tt0085862,pfLTbzU0FXo,"Buried and left for dead, McQuade cracks a beer over his head and escapes like a real man." tt0085862,FstG27JuaRg,"Lola steps into the line of fire to save McQuade, but McQuade finishes Rawley with a grenade." tt0085862,hfNvGT9X-7Q,McQuade and Rawley face each other in hand-to-hand combat. tt0085862,JgqoFj8yVqg,"McQuade shakes down Falcon, but comes up a little ""short.""" tt0085862,NSOB8nt1Uc8,Rawley avoids getting double-crossed when his precautionary measures get called into action. tt0092675,hKr4-rNmLFo,Frank and Chong Li square off In the final match of the Kumite. Frank has the upper hand until Chong throws quicklime into Frank's eyes. tt0092675,Z6vsW2RH8kA,Frank's training of mental and physical discipline to ignore pain continues with Tanaka as his mentor. tt0092675,bT6NizTtXug,"During the final match, after being blinded with quicklime, Frank makes an incredible comeback to overcome his visual handicap to defeat Chong Li, and forces him to yell out ""matte.""" tt0092675,ijrCSknWjeI,"During the Kumite, Frank takes on and defeats the Muay Thai kickboxer Paco while Janice cheers him on." tt0092675,wNibi-NWW4o,"To prove he is part of the Tanaka clan, Frank performs the ""Dim Mak"" otherwise known as the 'death touch' in which he breaks a brick with his bare hand. His perfection of this move grants him an invitation into the Kumite tournament." tt0092675,fsUKVpvzMHk,Frank remembers back to meeting his master Tanaka and fighting off school bullies. tt0092675,hLbozjgBIE0,"After Shingo's death, and despite some initial resistance, Tanaka agrees to train Frank as a member of the Tanaka clan." tt0092675,-yG7Wp5-8EI,Frank learns the way of martial arts from his mentor Tanaka during the course of a training montage. tt0092675,2kymD_HxRfA,Frank uses a quarter trick to settle a dispute with Hossein over the affection of Janice. tt0103074,_p0nSJeyRcw,"A smitten Thelma asks Louise to give J.D. a ride, but she says no." tt0103074,SXbUNuTQJds,Thelma tells Louise that there is no going back for her. tt0103074,SwITnQv183g,Thelma fools around with J.D. and gets a lesson on robbery. tt0103074,EQOuGXTYAj8,"Louise opens up a little when Hal Slocumb tries to convince to her that he's on their side, but Thelma cuts the conversation short." tt0103074,GeqKdTZugxs,Thelma makes a nerve-wracking call to Darryl and finally stands up to him. tt0103074,-dUYR2apxdA,"Thelma and Louise hold hands and drive their car off the cliff, leaving their lives and the police behind in the dust." tt0103074,10r3vyu-zDM,Thelma talks about her husband with J.D. and Louise gets nervous when they see a cop. tt0103074,WnZWACO4OOc,Thelma finds out she has a knack for robbery when she and Louise politely rob a state trooper. tt0103074,0Dc0Oj08S7M,"Louise asks Thelma to reevaluate their situation and reveals her plan to ""haul ass"" to Mexico." tt0103074,0JDyXQvCsOM,Thelma robs a store using what J.D. taught her in order to get her and Louise back on their feet. tt0103074,cAIHoTstrTg,Thelma and Louise make a truck driver very sorry for his lewd behavior by blowing up his truck. tt0032904,gXRw45jyIsE,Dexter tells Tracy the honest truth about what he doesn't like about her. tt0032904,htCHOTJBiSc,Tipsy Tracy and Mike get to know each other. tt0032904,I-RrVLbC-q4,Dexter and Tracy remember the ship they used to sail. tt0032904,NxSdB2L-Ffk,Tracy is frustrated that her fianc puts her on a pedestal. tt0032904,WCl3EnHnm_c,Mike declares his attraction to Tracy. tt0032904,sWKTV0ScR9k,Mike attempts to get Dexter to admit that he still loves Tracy. tt0032904,fpE3kI1HOWQ,"Tracy breaks off her engagement, with a little help from Mike and Dexter." tt0032904,-Ot948zIr0s,Dexter tells Mr. Connor more than he wants to know about his ex-wife Tracy. tt0032904,cNW7dRdPPC8,"George is appalled to find Mike emerging from the pool, with an inebriated Tracy in his arms." tt0032904,f-vA6GMMKgQ,"Tracy goes through with the wedding, but to her former husband Dexter." tt0379725,6hiEMyCIoQ0,When Truman visits Perry and Dick before their execution he is overcome with emotion. tt0379725,WmOiz8rBlmw,Nelle tries to connect to a drunken Truman at the bar after a screening. tt0379725,hAiiaFAJ1mY,Perry recounts for Truman the emotions he felt during the violent murder of a Kansas family. tt0379725,oLPTh_DaPa8,Laura lends Truman her diary as research. tt0379725,H8ToqWfFevw,Nelle calls Truman's bluff when he secretly pays a porter to give him a compliment in front of her. tt0379725,m-OaVzrf_vc,Truman is frustrated and leaves when Perry still won't talk about the murder. tt0379725,zXroRe--2QM,Truman talks about his experience overseas with celebrities and his mother's death. tt0379725,AFMFZiFr458,Truman asks Perry for his notebooks so he can understand him better and inform the public. tt0379725,fFUR02kaGTQ,Truman talks with Nelle about his relationship with Perry. tt0379725,5AJvo1pc3sw,"Perry is angry about the title of Truman's book, and they discuss their friendship." tt0379725,QDdroG4R9hE,Truman bribes the Warden with an envelope of cash so he can have unlimited access to Perry and Ricardo. tt0080745,aaGlVyyFOl0,Dale and Princess Aura engage in a pillow fight but soon learn that they need to work together. tt0080745,Y--MuIgwfQ4,Flash convinces Princess Aura to teach him to use the thought amplifier to contact Dale telepathically. tt0080745,ILLkD7hTxms,"After landing on planet Mongo, Flash, Dale and Dr. Zarkov are captured by armed guards." tt0080745,qjFCVTpsIps,Flash uses his football moves to put up a fight as they prepare to take Dale away. tt0080745,x0Ev2qiY08M,Princess Aura is whipped by Kala for information regarding the whereabouts of Flash Gordon. tt0080745,80sCD2p0W1Q,Prince Barin challenges Flash to a deadly ritual involving a hollow stump with a poisonous creature inside. tt0080745,Y6B9nkrSuMI,Flash leads Vultan and the Hawkmen into battle against the war rocket Ajax. tt0080745,RxFBi3z1i3k,"Ming gives Flash the option to rule over Earth as a slave colony, but when he refuses, Ming destroys Sky City." tt0080745,1Oq6vztcjgg,"Flash is forced to fight Prince Barin to the death, but Flash decides to spare his life." tt0080745,UfeogSVgTsU,"Flash crash lands the war rocket Ajax, interrupting the wedding ceremony of Ming and Dale." tt0116778,AClQyr2koxc,Ernie bowls three consecutive strikes to win the million-dollar tournament and Roy is left empty-handed. tt0098627,WvITkVaOpUs,Larry and Richard watch as party-goers are oblivious to the fact that Bernie is dead. tt0116778,Ta2vBD-qOwk,Ishmael freaks out when he wakes up after partying all night and discovers that he's desecrated his body with a tattoo. tt0050083,H-xjMjmrdl0,Juror #8 reprimands two disengaged jurors who are busy playing Tic Tac Toe. tt0098627,W0ThLQIEwxk,Richard tries to explain to Gwen that Bernie is dead and she is in a lot of danger. tt0098627,2kDPrNRTuQE,"Larry and Richard try to drive a boat, but get into more trouble." tt0098627,I0jSE4K2jH8,Richard gets an unexpected visit from Bernie while making out with a girl on the beach. tt0098627,n3Ubm7iCzuA,Richard and Larry lose Bernie and get harassed by a little kid. tt0098627,jzzrFFivBKk,Larry and Richard are oblivious when Bernie falls out of the boat. tt0098627,c5aNkzn_8Bc,Larry and Richard are shocked when Tina returns satisfied after making love to Bernie. tt0098627,CkN1FvtBg2k,Richard tells Gwen that his half-naked dad is actually his butler. tt0098627,gUuOvBQoaHA,Larry is irritated when he and Richard realize that Bernie is dead. tt0098627,xd1f5GeUWpg,Larry and Richard panic as they try to sneak Bernie upstairs during a busy party. tt0116778,gPlxDB94t80,"When Roy tries to ditch Claudia, they get into a no-holds-barred brawl." tt0116778,eRI0kASoaqI,"Encouraged by Ernie, Roy hustles a bowling priest." tt0116778,20IyieiS-TE,Roy has nauseating sex with his landlady to settle his debt. tt0116778,E4sgImaJTlA,"Living with the Amish, Roy finds out that milking cows can be brutal." tt0116778,mt5IvL1Uw7g,"Roy comes face to face with his old nemesis, Ernie, who nearly baits Ishmael into a fight." tt0116778,P8zlYvk98gE,Roy's rubber hand lodges in the ball and goes hurtling down the lane. tt0116778,KTpzQ8vWHTo,Ishmael tries to convince Roy that he can figure some things out for himself. tt0116778,0R_0E-YNBrY,Roy sees Ernie groping single moms in a TV commercial for a charity. tt0116778,M7V-9UG5Pn0,Roy gives an honest answer to a TV interviewer. tt0116778,9j4v32pp0m4,"Roy and Ishmael arrive at the big bowling tournament, but run into financial trouble." tt0245574,bnHKWNBCKQk,"Tenoch is chatting with his cousin Jano about writing, when Julio deliberately spills wine." tt0245574,gYMmTK1rFvA,Tenoch and Julio try to convince Luisa to join them at the beach. tt0245574,WKDoWddM0vg,Luisa leaves the boys when she gets fed up with their immaturity. tt0245574,QXUXlzzOl44,The boys confess that they slept with each other's girlfriends and Julio admits that he had sex with Tenoch's mom. tt0245574,twPFRVuWNjo,"Agreeing to get back in the car, Luisa lays out her manifesto to the boys." tt0245574,Zypt5adu71Q,Luisa dives into the blue waters having dispensed wisdom to the boys returning home. tt0245574,ZptjN0wzIdA,Luisa gives the boys some tips on how to be better lovers. tt0245574,CsZmsu_-53E,Tenoch and Julio return to the campground on the beach to find that wild pigs have rendered it uninhabitable. tt0245574,hHsWQA500NU,"Tenoch, Julio and Luisa find the famed Heaven's Mouth beach with the help of a fisherman and his family." tt0245574,XcFFaRpPdzs,Tenoch's anger escalates on hearing the details of Julio sleeping with his girlfriend. tt0245574,jaIVHdFwqnQ,A drunk Jano informs Luisa that he's cheated on her. tt0245574,GAsqObV4ExM,Chuy gets excited as he plays soccer as a famous goalie. tt0070849,OFPi1vG6A90,"Searching for a new apartment, Jeanne is surprised to find Paul sitting in the dark." tt0070849,fAenzYV3Cmc,Paul sweeps Jeanne off her feet and makes love to her against the wall. tt0070849,kTsFXQ2Y_dI,Paul convinces Jeanne that they should refrain from learning each other's names while they are having an affair. tt0070849,QY3RIezZPks,Paul and Jeanne invent names for each other using guttural animal sounds. tt0070849,DIt0_zQY00w,Paul reminisces about his childhood and struggles to recall any happy memories. tt0070849,h-r9Q-YItnk,Jeanne enters the apartment to find Paul making a strange request. tt0070849,-n4RtjEtFUE,Paul addresses his dead wife's body and contemplates the impossibility of truly knowing her. tt0070849,HTa0oe5Ntvw,"When Jeanne finds a rat in the bed and panics, Paul pretends to eat it." tt0070849,891M2sACu0U,"Paul tells Jeanne that he loves her, and she responds by shooting him." tt0070849,dQGlAzHgPw8,Paul and Jeanne get drunk and interrupt a tango competition. tt0050083,TXlHKTPfLVA,"Juror #10 goes off on a racist rant, showing his true colors and turning off the rest of the jurors who turn their backs in disgust." tt0050083,5s8dYeDZPAE,Juror #11 explains to the others why he feels jury duty is their sworn responsibility. tt0050083,RGF6Qyvz2no,"Juror #4 changes his vote when Juror #9 convinces him that one of the witnesses wore eyeglasses, and most likely did not wear them while she was in bed, during the time of the murder." tt0050083,46kWbFAMHoc,Nature versus Nurture is discussed before Juror #3 reveals his abusive relationship with his estranged son. tt0050083,EqDd06GW76o,"When one juror changes his vote during the secret ballot, Juror #3 is hell-bent on finding out who it was." tt0050083,TUzp2XUhskY,"Juror #8 debunks the ""one knife theory"" by revealing that he has one just like it." tt0050083,1fsFQ2gF4oE,Juror 8 does a re-enactment of the old man's story which leads to a showdown with Juror 3 and a dramatic revelation. tt0050083,0jxVnlRdelU,"Faced with his own short-comings and failures as a father to his own son, Juror #3 finally breaks down and pronounces ""Not Guilty.""" tt0050083,U44_sEUJROI,"Jurors #3, #5 and #11 debate how the Defendant might have used the switchblade by demonstrating on Juror #8." tt0424345,Ur3JKxaUvUc,"When Dante and Emma make out in the restaurant, Randal can't help but comment on Emma's oversized sexual organ." tt0424345,fYKLuSKW4ao,Jay and Silent Bob philosophize and sell a nickel bag to some brand new customers. tt0424345,ZtrhzVGMWZc,Randal can't understand Elias's excitement over the news that Transformers is being made into a live action movie. tt0424345,H8zCwVOT1U4,"Dante is horrified to learn that Randal has participated in ass to mouth play. Meanwhile, Becky privately informs Dante that in the heat of the moment she'll occasionally dabble in ass to mouth play." tt0424345,SX9tVVvLb2I,"Dante and Randal get a visit from an old high school classmate, Lance Dowds." tt0424345,HKDxpkV14IA,"Randal is shocked to learn the reason why Elias has remained a virgin. Specifically, a troll named Pillow Pants lives in the vagina of Elias's girlfriend." tt0424345,IYITxGniww4,"Randal sparks off a debate over racial slurs when he uses the term ""porch monkey"" in front of a customer." tt0424345,RPl5MeXIM8E,Randal argues with Elias and a Hobbit Lover over the merits of Star Wars versus the Lord of the Rings tt0095560,KI-GzP94V8o,The alien family gets sucked into a NASA spaceship and taken away from their home planet. tt0095560,DDueSsFUqc4,"During a malfunction in the laboratory, the alien family manages to escape." tt0095560,SXeVjXg9BFU,Mac saves Eric from drowning after a wheelchair malfunction. tt0095560,UB8wk3MOgVU,Mac escapes from the laboratory and causes a pileup on the highway. tt0095560,c_GNsQnPdi4,Mac tries to evade the neighborhood dogs by driving a mini truck. tt0095560,tPgRnFg8ZTU,Mac has a great time dancing at the McDonald's until the authorities come looking for him. tt0095560,xuVz2BPLRBY,Eric escapes with Mac on his lap while the police chase after him. tt0095560,PhKy0fGOJz0,Eric and Debbie capture the alien with some Coca Cola and a vacuum. tt0095560,DXdQoyWxHZs,Eric comes up with a creative way to hide the alien. tt0095560,g0yYxO89lQA,"Eric tries to talk to the aliens, but when the police fire at them, a giant explosion erupts and Eric becomes the victim." tt0095560,lPE1uBdcB8Y,Mac's and Eric's families join forces to bring Eric back to life. tt0087803,XvGmOZ5T6_Y,"During the morning's 'Two Minute Hate', Winston Smith notices the especially emphatic Julia." tt0097499,bvFHRNGYfuo,Henry V gives an inspirational speech to his men as they go forth into battle on St. Crispin's Day. tt0097499,rv7NsGCDVDs,Henry V travels through the camp in disguise and converses with men who speak critically of the king. tt0097499,mNVB-qi0qyY,Henry V responds with bridled rage to Dauphin's insult. tt0097499,F0uwp_eoMW4,Henry V answers Mountjoy's offer with bravery and defiance and wishes his men strength as they go into battle. tt0097499,eqC9wr776KM,Henry V is filled with rage upon seeing the young pages murdered. tt0097499,HS7OG9zcV-M,Chorus delivers the play's prologue. tt0097499,-nFHhXrXWzY,A joyous greeting between Falstaff and Henry V ends on a solemn note as the two part ways. tt0097499,vIwfwyjbP4g,Henry V reveals his knowledge of his subject's treachery. tt0097499,ynwah7YV2LY,"Henry V makes a humble proposal to a nervous, yet joyous Katherine." tt0097499,urpXO9VLU0U,"In dire times of battle, Henry V musters the strength to inspire his men once again to continue on." tt0087803,2BuU0LMgxl0,Winston and Julia have an intimate meeting in the forest. tt0087803,jmmawolzwCs,Julia shows Winston her hidden provisions. tt0087803,pX0LbjUM5Uo,Winston and Julia are caught for thought crimes. tt0087803,UmAVyowgDVE,"O'Brien describes the vicious behavior of lab rats to Winston, who gets a cage-eyed view." tt0087803,RyR51MqOl5I,"A despondent Parsons talks to his new cellmate Winston, and wonders what will become of him." tt0087803,cAKtpCo8fPE,O'Brien questions Winston under the duress of a torture device. tt0087803,c0wH6YDfCzg,Winston learns about war and control from Emmanuel Goldstein's book. tt0087803,v79foBIrar4,O'Brien explains Winston's mortality. tt0087803,PoLLgzdPkss,O'Brien explains the party rules to Winston. tt0087803,0A0VANPUG-g,"O'Brien educates Winston about The Ministry of Love, a place he was brought to in order to become ""sane.""" tt0090142,i-9K5-x7_so,Scott goes through a wild metamorphosis in his bathroom. tt0090142,d4Ljj8W1hE8,Scott shows Stiles his alter ego. tt0090142,_6FnlEiyZ08,"Scott, fearing he may soon change to his wolf form, abruptly leaves the classroom to find an empty bathroom." tt0090142,QBghpl5FZXk,"When Scott arrives at the dance with Lisa, Mick confronts him over Pamela." tt0090142,LeVEbbheUck,Stiles shows Scott the new 'Wolfmobile' and the two decide to show it and the wolf off around town. tt0090142,YZ11hDE35QQ,"Pamela and Scott chew up some scenery as they rehearse for the school play. Back in the dressing room, Pamela seduces Scott." tt0090142,kiEe33aAucU,The coach defends his team; Scott gets aggressive on the court. tt0090142,hWRJQvuhs9w,"In a scrap for the ball, Scott turns wolf and pulls off an impressive slam dunk." tt0090142,Gt5xBpmHS5Q,"When a liquor clerk insults him, Scott lets his inner wolf do the talking." tt0090142,fiqJGHbv3ys,"When Scott cozies up to Pamela at the bowling alley, Mick confronts him." tt0040724,E-bYTMU6Dks,"When Dunson decides to hang two deserters, Matt and the rest of the men rebel against him and take over the cattle drive." tt0040724,Wjc5NqqF-1o,"Thomas warns Matt that he'll catch up, and when he does he'll kill him." tt0040724,XBPrLU4Zspo,Dunson claims the land from Diego by killing Fernandez. tt0040724,ww_lUn3jUoA,Young Matt meets Dunson and Groot after surviving an Indian attack. tt0040724,zBe5T01yBUI,Matt and Cherry try out each other's guns. tt0053291,I0EUKDhQ7vk,Joe poses as a millionaire to win over Sugar. tt0040724,BwnOv84Uaf4,"Dunson and Matt finally face off and beat the hell out of each other, at least until Tess steps in with a gun." tt0040724,1_BNy6W4sRg,Matt and his men help a wagon train fight off an Indian attack. tt0040724,AabFChK-X1w,Groot enunciates his desire to ride the chuck wagon. tt0040724,enLijb7P9tg,Matt and Tess become romantic. tt0040724,aN0alpNLQak,"Bunk, while stealing some sugar, accidently starts a stampede that Dunson and Matt rush to stop before lives and cattle are lost." tt0040724,7s91-5542Zg,"After Bunk starts a stampede, Dunson aims to make an example out of him." tt0053291,FBi8SGpLTGI,Josephine is pleasantly surprised to learn that Sugar has a thing for saxophone players. tt0053291,1wP9Mu1NKXk,"When Joe and Jerry hear about two openings in a female band, they do exactly what they need to do" tt0053291,qdq07pa6sPA,"Daphne is a little irritated when ""Junior"" shows up and steals Sugar Kane's attention." tt0053291,xq1QFVrNxfk,Daphne's party for two with Sugar is spoiled when all of the other girls join in the party fun. tt0053291,UgjzHp4TVtk,When Daphne and Josephine meet a drunk Sugar they realize being in a female band isn't so bad. tt0053291,h55rTtbCy7o,"When Jerry gets pinched in the elevator he tells Joe that he wants to leave immediately, but Joe convinces him otherwise." tt0053291,8-n-ybKQ_X0,"When Daphne is on top of the world about her recent engagement, Joe has to step in and remind her that she's a boy." tt0053291,spAkj5YYnIo,Sugar hops into bed with Daphne and Daphne does everything she can to remember she's a girl. tt0053291,yD3r8xx3iX8,"""Junior"" tricks Sugar into seducing him with a story about how he can't get excited by women anymore; meanwhile, ""Daphne"" keeps Osgood busy on the dance floor." tt0053291,-mHhr-aaLnI,"The happy couples, Joe and Sugar and Jerry and Osgood, speed off together in Osgood's boat." tt0109831,TVjIzlCjKcQ,The wedding guests search for replacements during the ceremony when Charles forgets the rings. tt0109831,GSwNuK9xedg,"After Charles gets Carrie to invite him into her room, she shows him how they kiss where she is from." tt0109831,eeXePDLKsmU,Charles listens in shock as Carrie lists her past lovers with descriptions of each. tt0109831,xn3J0iYO7sw,"Unable to find the words himself, Matthew recites a poem by W.H. Auden to express his sorrow over the loss of his lover." tt0109831,XrZN8Sy-z6M,Best man Charles toasts Angus and Laura at the first wedding. tt0109831,ZYzQFudZ70k,Father Gerald ruins Lydia and Bernard's wedding vows. tt0109831,MBIIKCaK5PM,David objects during Charles' wedding and has him translate a shocking message to the group and the bride. tt0109831,tvy0nfXbStY,Charles is horrified while Henrietta cries about their past relationship and the way she wishes things would have gone. tt0109831,8Ut9pZyyS44,David meets Carrie for the first time and secretly talks about her while signing with Charles. tt0109831,Ogl0mA_15ys,Charles flubs his words while nervously trying to express his love for Carrie. tt0114814,3OLIgEua4PU,Verbal tells Kujan a story about the vicious Keyser Soze. tt0114814,BQpfa9RZbTk,"When the puzzle finally becomes clear, Kujan realizes that Keyser Soze has slipped through his grasp." tt0114814,aU3KvhyJk-w,"Kujan explains that Keaton was Keyser Soze, but Verbal doesn't buy it." tt0114814,Zh1yLx3srtQ,"Keaton, McManus and Hockney attack the drug traffickers at the pier." tt0114814,GIa5OfDBSBE,"Keaton can't pull the trigger when a guy won't give up the case, so Verbal has to do it for him." tt0114814,Dp5YwZCGpm0,"Each of the ""usual suspects"" gives their unique take on the dialogue provided at the police lineup." tt0114814,keth0g3CMK4,"Agent Kujan promises ""Verbal"" Kint that he will get what he wants out of him because he's smarter." tt0114814,eUL9XgE3G4k,The suspects get to know each other while stewing in jail. tt0114814,dxNL9-YlUk0,The suspects teach a hard lesson to the dirty cops in the NYPD. tt0114814,MneFTo1gRq0,Kobayashi surprises the suspects with his knowledge of their activities and a new offer. tt0101587,IqX6z6djbD4,Mitch tells his son's class to enjoy their childhood because it's all downhill from here. tt0101587,PunAKEccqyU,"Curly tells Mitch that the secret to life is ""one thing."" What that one thing is, is up to you to figure out." tt0101587,rClviS6MMvk,"After Mitch gets stuck in the butt by a bull in Pamplona, he has to fly home with a giant bump on his rump." tt0101587,IA0v8pCN8cQ,"Just when Mitch was getting to know Curly better, he passes away, leaving the group to give him an impromptu memorial." tt0101587,2PPNVF1tT6o,"When T.R. and Jeff instigate a quarrel, Phil steps in and puts them in their place." tt0101587,1j4ITRCTJL4,The city slickers bond when they reminisce about the best and worst days of their lives. tt0101587,PCXI31d3vlE,"Mitch gossips to his fellow ranchers about crazy old Curly who, of course, is right behind him." tt0101587,1PwmcgK9qno,"Mitch, Phil and Ed arrive at the ranch and get acquainted with the other guests." tt0101587,-CKzCdneg04,"When Nancy surprises Phil with news that she's pregnant, Phil and Arlene fight, ruining the party." tt0101587,7s3dzArIVok,"When Mitch stands up to T.R., Curly rides up and sets things straight." tt0101587,2ATYV1LOIH4,Mitch stands up to Curly and the two end up playing a campfire song together. tt0100157,2KOuM_aZ1-A,"Paul convinces Annie to delay her planned murder-suicide in order to ""give Misery back to the world.""" tt0299117,xNGdLsWV0_k,Roger tries to help his nephew Nick have sex for the first time. tt0299117,TxouT-qgqwU,Roger explains his theory on the evolution of sex and natural selection. tt0299117,VhCQj6D3JQY,"Roger discusses attraction, body image, and sexuality with Sophie and Andrea." tt0299117,FgrVh865bX8,Roger motivates Nick to be confident at picking up girls. tt0299117,kFsoiAa-ulY,Roger visits Nick's high school to give some advice on talking to girls. tt0299117,QwrGZWHTbt0,Roger regales his colleagues with his theories on eventual male obsolescence. tt0299117,Egb6g_c7Nek,Roger provides his nephew Nick with tricks and methods to check out women's bodies. tt0299117,9GQZ2hl5oQY,Roger tells a woman at a bar how obvious and transparent her life choices are. tt0299117,BHQdl3iBhkE,Sophie tells Nick the story of losing her virginity. tt0299117,eUELANo1Fic,Roger gets uncomfortable when Sophie and Andrea turn the tables to analyze him. tt0299117,Y3nUE1cWM8o,Nick says goodbye to Sophie and Andrea as they head home for the night. tt0264616,_v5zFIqjEZg,Fenton tells Agent Doyle that the God's Hand Killer is his brother. tt0264616,dyaqk3LFlBM,"Fenton's dad captures his first demon, Cynthia Harbridge." tt0264616,CVdZXuc265w,Adam has a vision of Agent Doyle's murderous past. tt0264616,UeC962qKMrI,Adam explains to Agent Doyle how he killed his brother Fenton. tt0264616,6O9GrKXP46o,Fenton's dad prepares the demon for his son to destroy. tt0264616,dFxzdwS4yE8,Fenton explains to Agent Doyle the promise he made to his brother. tt0264616,FhtwCGpDs-0,Fenton leads Sheriff Smalls to the cellar to show him his father's victim. tt0264616,TRDdgGdGfbE,"Despite his reluctance, Fenton helps his father with the second demon." tt0264616,R1k_1p3mitg,Fenton's dad reveals to his sons that he had a vision sent from God. tt0264616,1x4SX6FUEUo,An angel of God comes to Fenton's dad in a vision and gives him the first list of demons. tt0100157,Br5umHOm3TM,"Annie demands that Paul start his novel over, lest he cheat his readers." tt1046163,ZzBJxdyktNQ,"Ami advises Alexis to have as many one-night stands as possible, in order to find her eventual Prince Charming." tt1046163,UG215AsHyBg,Dustin quickly makes a bad impression on his date. tt1046163,km7CMB9s8ok,"Tank takes Dustin to a salon to get ready for his big date, but he comes out looking worse than before he went in." tt1046163,vj3mnCSJq7E,Dustin crashes the wedding reception while exposing who Tank really is to Alexis and the guests. tt1046163,GkTXRgNHzug,Tank declines Alexis's seductive offer to go up stairs with her. tt1046163,4WfCOqrgbSk,Tank unknowingly speaks to an angry Alexis on the phone during a customer training session at work. tt1046163,QvKGF4DN9RE,Professor Turner gives his son Tank some questionable relationship advice. tt1046163,1VGOy2dylYE,Dustin gets mistaken for a gay pal when he spends some time together with Alexis. tt1046163,LwXuIb6j_e8,"Dustin apologizes to Tank and convinces him to go after Alexis, while Tank's father attempts to help." tt1046163,PxsbL4Q0Lmk,Tank commits a series of embarrassing wedding faux-pas. tt1046163,GOjeFlHlPwU,Dustin finds out that his best friend Tank is hooking up with Alexis. tt0100157,4-8adc39DV0,Paul sets fire to his book and grapples with Annie. tt0100157,fmZhcaq6QV8,"Annie introduces Paul to her favorite beast in the whole world: her sow, Misery." tt0100157,tURhk-5mDpE,"Annie performs a ""hobbling"" operation on Paul to prevent him from leaving his room again." tt0100157,oZ51e9IJjjQ,The rain makes Annie melancholy and she admits she's afraid of losing Paul. tt0100157,ZkPfZTLecL8,"When Paul requests smudge-proof paper, Annie flips out." tt0100157,SeOMiErBnks,"Paul rushes back to his room, desperate to return before Annie discovers he's gone." tt0100157,gKRyD4CSjto,Annie forces Paul to set his manuscript on fire. tt0100157,HrRSo3a1ZYU,"After learning that Paul intends to ""kill"" a beloved character in his book, Annie explodes." tt0100157,SyQSH3XmQCE,Annie strongly objects to the swearing in Paul's latest book. tt0100157,mGGwDmCTha8,"Paul regains consciousness in the care of a fawning woman, Annie Wilkes." tt0151568,CFQKJOXdXJw,Lely objects to the short length of the costumes designed by Wilhelm at the behest of Gilbert. tt0151568,-fQs640Ehfw,"Gilbert reluctantly visits the dentist, who fancies himself a theater critic." tt0151568,unrqBYYTZI0,Gilbert receives a jolt of inspiration when the katana sword he recently purchased at a Japanese exhibit falls from the wall. tt0151568,GuX7TUIGvRM,Gilbert tries to convince D'Auban that his choreography is inaccurate by bringing real Japanese women to rehearsal for The Mikado. tt0151568,glkk39pJQQI,"Gilbert and Sullivan visit their nervous actors on the opening night of The Mikado, including Grossmith, who struggles to conceal his morphine addiction." tt0151568,QFzkyceRlW8,Temple is visibly disappointed when Gilbert decides to cut his solo number in The Mikado. tt0151568,90KNvOsvEiY,Gilbert and Barker struggle to communicate through a rudimentary telephone. tt0151568,T6Lor5hg5nI,Jessie is disappointed to learn from Madame Leon that corsets will not be incorporated into the costumes for The Mikado. tt0151568,0mtMkMvdwBw,Gilbert bristles at a dismissive review of his opera Princess Ida. tt0151568,ljGqb2loshQ,"Jessie, Leonora and Sybil perforrm an aria from The Mikado." tt0092654,Lt-Suz8LGEM,"While Det. McSwain tries to seduce Anne, his brother Bobby gets shot." tt0092654,ESvZ51pBN14,Det. McSwain tries to win back Anne at a Cajun BBQ. tt0092654,MH6W76ILmEQ,Anne tells Det. McSwain she wants their relationship to be strictly professional. tt0092654,ZxhqyHBujFc,Det. McSwain's lax treatment of a local gangster fires up District Attorney Anne Osborne. tt0092654,xfnmRVym22U,Det. McSwain and Anne talk about a murder case which leads into a much more personal and physical discussion. tt0092654,eVPIMety0MA,Det. McSwain confronts Jack Kellom about corruption in the police force. tt0092654,kNrid4Vvxkk,Det. McSwain finds out his police department is corrupt. tt0092654,b7fFwDI39Co,Lamar Parmentel fights Anne Osborne to free Det. Remy McSwain. tt0092654,G_tk-vS61to,Det. McSwain fights corrupt police officers Det. DeSoto and Ed Dodge. tt0092654,EgXDPt3eW3Q,Anne leaves Det. McSwain after they have dinner together only to run into two robbers. tt1081935,5KeGGAzEkNE,Cicco bites to fight and to earn a living. tt1081935,VP-S-KGKn1k,Nino takes Aunt Ciccina to vote. tt1081935,3w-MGV1cC78,Nino attempts to snag a meal by taunting a man gorging himself. tt1081935,cZcI8QATy2k,Peppino purses Mannina even though she is promised to another man. tt1081935,6cseBu1zBC4,"Peppino and Mannina dance together for the first time, despite parental concerns." tt1081935,QhGtm2E07w0,Peppino throws a stone and manages to hit all three boulders in front of him. tt1081935,ls8-S57SGSQ,Both timelines intertwine as Peppino is able to see into the past. tt1081935,1ccZkqYIluU,"Peppino informs a ""dying"" Nino that his election looks more than probable." tt1081935,DcETqjNSB4U,Peppino steals from a safe amongst a mob of looters. tt1081935,q5VokxxNaHw,"A group of kids steal fruit from a man they call ""The Cripple.""" tt1081935,qkIEwsirwBU,The unemployed protest in the streets while the Mayor looks on. tt1403177,fq-wBS0z4NQ,"When Hesher realizes that T.J. has a crush on Nicole, he teases the boy by blatantly encouraging him to have sex with her." tt1403177,kGK73er3UdE,"Nicole saves T.J. from getting beat up by Dustin, and then gives him a ride back home." tt1403177,BnPQSD0Pg4E,"Hesher helps Nicole out of a jam, then tells her a sordid story about how he had sex with four women at once." tt1403177,DKQXxsio-Gs,Paul explodes at T.J. when his son challenges his authority. tt1403177,xSc5s5MKarM,"Hesher suddenly throws T.J. and Nicole into the swimming pool of some random resident, and then proceeds to populate the pool with debris and flames." tt1403177,yyrC-l87Sdc,Hesher crashes the funeral and delivers a bizarre speech about how losing one's testicle relates to losing a loved one. tt1403177,BctOA1EbnPg,Hesher chastizes T.J. for not going on morning walks with his grandmother. tt1403177,1V-vD4bHKR4,"When T.J. sees Hesher having sex with Nicole, he retaliates by bashing up Hesher's van." tt1403177,qYwrQOJ2eAE,Hesher takes T.J. with him as he burns Dustin's car. tt1277737,5CuKjYdDd50,"Ali gets the first hit on Soraya, as the stoning begins." tt1277737,SVHcUk9WH_s,"Soraya politely declines an invitation to dinner from her lonely employer, Hashem. Elsewhere, Ali tries to convince Ebrahim that Soraya is having an affair with Hashem, a lie which doesn't escape Zahra's ears." tt1277737,6mdAoQZkrjY,"Prior to her execution by stoning, Soraya angrily chastizes the villagers, and even her own family, for turning against her on account of baseless gossip and lies." tt1277737,FKY8Wsd3fDM,"Soraya tries to defend herself against false accusations of adultery, but in doing so, she learns that the burden of proof falls upon the woman." tt1277737,gr_2UA-6hIw,"When Hashem declines to attack Soraya, she is stoned to death by an angry mob of villagers." tt1277737,Hc35xCKXOrs,"Ali and the Mullah pressure Hashem into making up a lie about Soraya by threatening to implicate him with infidelity, an infraction that carries a high cost: stoning." tt1277737,A6Mwoov-lGc,Ali berates and beats Soraya in front of the children after she tries to stand up for herself. tt1277737,g1RVgC8Vw0A,"Zahara rescues Soraya from a beating at the hands of her husband, Ali, who makes trumped-up claims that his wife has committed adultery." tt1213012,hONljrAJrH0,Humphrey and Kate howl a duet while riding the train. tt1213012,B1dK_oxzaX0,Humphrey tries to give his buddies a lesson in flirting. tt1213012,zuKBp_n_o14,The rain causes some trouble for Humphrey and Kate during their journey home. tt1213012,4otU-hfAOO0,The wolves celebrate a double wedding as Humphrey and Kate sing a duet. tt1213012,I8xuqClrB3Y,Humphrey and Kate try to escape from three angry bears. tt1213012,bGWyL-vJAn4,Garth shows off his talents in an attempt to impress Kate. tt1213012,IpW3QbVzNCI,Humphrey and his buddies take a sled ride that gets a little out of control. tt1213012,k6eXuHmQoiM,The wolves meet up for their nightly ritual at Howling Rock. tt1213012,z9P5NdzCcJo,Kate's hunt doesn't go as planned and the hunters become the hunted. tt1213012,4F9i0gj9KKc,Garth teaches Lilly how to hunt and admires her eyes. tt1213012,-qSADHn4nqw,Marcel is disappointed when his hole in one is ruined by a woodpecker. tt1213012,kk8MNQHBJkY,Winston and Tony plot to set up their children in marriage in order to unite the wolf packs. tt0164181,2oGfncb2usc,Tom sees a vision of how Samantha Kozac was killed. tt0164181,QqVgAIcPfXo,Tom begins seeing haunting visions of an unknown girl in his house. tt0164181,qeytg9JLx-o,Tom senses that the new babysitter is kidnapping his son Jake. tt0164181,jsGX_I6mFvc,"Tom Witzky has a dream that Adam shoots himself, and when he wakes up, he realizes that his dream is actually occurring in real life." tt0245238,yZQYClpkJ1M,Pauline challenges Jake to a duel over the affections of Victoria. tt0245238,hgAlSQ4Ckz0,Pauline spikes the punch to get the party started. tt0164181,KaCyEft6EmA,Tom asks Lisa Weil to hypnotize him again so that he'll stop seeing violent visions. tt0245238,Z46LYLKuros,Mary has an adolescent sexual awakening when she spies Victoria with a guy. tt0245238,eN1XH8BQGqI,"In the classroom, Pauline gives an impassioned plea to the nature and power of love which impresses her teacher." tt0164181,rWvqkw0_xFA,Harry Damon and Kurt Damon try to kill Tom and his wife. tt0164181,hfKhRRdMrVc,"Lisa Weil hypnotizes Tom Witzky, and when he awakes he has no recollection of what happened." tt0164181,-HwMH2_-oKA,"Tom Witzky digs through his basement floorboards, and accidentally discovers an opening in the wall where he finds Samantha Kozac's body." tt0367913,18ogMe0oYvg,Kyoko and Keisuke research the circumstances surrounding the haunted house. tt0367913,7Mbfa0caPBQ,"After returning from the hospital, Kyoko comes home to find her mother asleep, or so she thinks." tt0367913,K7l3r0bdlms,A very pregnant Kyoko and her fiance Masashi find an uninvited guest in their car. tt0367913,NbT7rgb2QSU,"Kyoko visits the Nerina house when suddenly, her unborn baby starts kicking. Hard." tt0367913,8uAUNIySn_4,Chiharu begins hallucinating while on a bus with Hiromi. tt0367913,L1Z7sGSUhaA,Megumi gets up close and personal with Kayako. tt0367913,D8e5MaEaWJw,"Keisuke finds Kyoko, who's giving birth to something frightening." tt0367913,mFktba3DL8g,Tomoka comes home to find Noritaka hanging from hair - lots of hair. tt0873886,QTI8XMmOjE4,"As agents Keenan and Brooks discuss their next course of action, a sudden shot fired from the church instantly escalates the situation." tt0873886,7okueIbuBDE,Pastor Cooper gives a scorching sermon on what's wrong with the world and how America has turned away from God. tt0873886,2_g-cXgaDhE,"Pastor Cooper preaches to his congregation about the wrath of God, and then gives them a violent preview of what he believes is in store for the human race." tt0873886,yK78AHB5dSs,"A shooting in the compound sets off a violent chain of events culminating with Pastor Cooper ordering the death of a deputy, and then threatening Sherif Wynan with blackmail." tt0873886,YmbeYlShWZc,Cheyenne begs Jarod to help get the children out of the house before the feds raid the compound. tt0873886,zOTlBEbI7eM,"When loud trumpet blasts are suddenly heard throughout the valley, Pastor Cooper confronts Keenan and begs him to shoot." tt0873886,I1LFslpgsRw,"Facing heavy resistance from the Cooper clan, Agent Keenan leads his men in a raid against the compound, when suddenly, a loud and sustained noise fills the air." tt0873886,x5m9etGofg8,"Keenan argues with a colleague about how to best approach the domestic terrorist situation, while another ATF agent engages in a tense stand-off with Cheyenne." tt0090837,7O-kshviycI,"The gang comes up with a way to distract and attack the Killbots, but things take a turn for the worst when Linda Stanton gets shot by a laser." tt0090837,GV3Rt3A7TAQ,Ferdy Meisel comes to the rescue of Alison Parks and takes out the Killbots laser. tt0090837,dqG51nM9k9g,"A promotional film for the new robotic security invention ""Killbots"" is shown at an event revealing their addition to the local shopping mall." tt0090837,8myrr8HPt_I,"While the boys are off setting up a trap, the girls get tracked down by a Killbot and Suzie Lynn gets burned alive." tt0090837,53uT454cHiU,"After killing Leslie, the Killbots turn their attention to the rest of the teenagers and attack the furniture store." tt0090837,F9ZeSn27MMY,"Rick Stanton, Greg Williams and Ferdy Meisel loot a sporting goods store for guns to use against the Killbots." tt0090837,AD3JQD0N_iA,Walter Paisley is quickly trying to clean up a spill in the middle of the mall when he has an unfortunate run in with a Killbot. tt0090837,m2lBtBvgiHQ,"It has come down to just Alison Parks and the last Killbot in the mall, but thankfully she's got an explosive plan to take it out." tt0090837,oeGwe_Y07_k,Leslie Todd goes searching for her boyfriend only to find his corpse and the Killbot who killed him. tt0098141,hcIZa8FePZk,The Punisher infiltrates an abandoned amusement park to find the kidnapped children. tt0098141,SnjxkiSs1Dg,The Punisher teams up with Gianni Franco and assaults the Yakuza's dojo. tt0098141,Gqc-VRIHfuk,The Punisher shoots up a Yakuza-run casino. tt0098141,UemGzlKVwsk,Lady Tanaka neutralizes her Mafia rivals in one fell swoop. tt0098141,vR3yb8mNLYo,The Punisher and his friend Shake are tortured by Lady Tanaka and her goons. tt0098141,dFIuG_DTVOw,"The Punisher dispatches mob boss Dino Moretti and his henchmen, one-by-one." tt0098141,q6HYlg_dJRI,The Punisher fights Lady Tanaka and her daughter in the final battle. tt0098141,e0lfNxwgszA,The Punisher drives a bus full of children so he can save them from the Yakuza chasing them in hot pursuit. tt0098141,xHd5cUGpJs4,The Punisher gets into a close-quarter combat situation with a pair of angry Yakuza henchmen. tt0098141,F-IumwPd6b4,The mysterious Ninjas attack The Punisher and leave him for dead. tt0173716,Qe5bvae8I2k,Cecil leads his group of underground cinema terrorists in a kidnapping of Hollywood superstar Honey Whitlock. tt0173716,mDnYsc5SIJk,"Cecil introduces Honey Whitlock to each member of his team, an underground filmmaking terrorist group known as The Sprocket Holes." tt0245238,Cj71TWcfot4,Mary recalls the letter she wrote to her mother who has passed away. tt0245238,yJXZwWi2NdE,"Mary, the new girl, is introduced to her roommates Victoria and Pauline." tt0245238,j3WOgT1A0XI,"Victoria tells Pauline that they will never be together, but that she will love her forever." tt0173716,nwvUihSxHGs,"Cecil leads his underground terrorist organization on a major raid of the Hollywood film, ""Gump Again"", resulting in a shootout between his group and the Teamsters on set." tt0245238,UFcmai6iKzA,Mary catches Victoria and Pauline making out. tt0245238,0SUcAyNL198,"Jogging through the woods, Pauline comes across a regal eagle and Victoria is asked out by Jake." tt0173716,woboXYiH548,"Forced to show her loyalty to the cause of Outlaw Cinema, Honey agrees to lead an attack on the Maryland Film Commission, believing Cecil when he tells her that her weapons are props and her bullets are blanks." tt0173716,ujJ8talVp90,"After completing the last shot of their film, the surviving members of The Sprocket Holes unleash their pent-up sexual desires in front of a sea of adoring fans, as well as the Baltimore SWAT Team. In the ensuing fracas, Cecil self-immolates in a final act of defiance against mainstream Hollywood." tt0173716,ERvEZwe88JU,Cecil gets the final shot of his film when he convinces Honey to set her hair ablaze as a symbolic protest against the cinematic sludge of mainstream movies. tt0173716,FIlBqZ0fksM,"Basking in the aftermath of their first successful outlaw cinema attack, the group enjoys their downtime, rapping about hardships of independent and underground filmmaking." tt0173716,YkBuZCr1O4U,"Cecil leads his terrorist organization in their first ""outlaw cinema"" attack: a raid against a sleepy neighborhood multiplex." tt0173716,woBSpMcgW4g,"When Honey is ordered to undress for her wardrobe fitting, the rest of the crew, entirely sex-starved, salivates at the chance to see sexy Hollywood flesh." tt0090713,b44FCgewbdc,Reno Hightower comes out of halftime sporting his famed white shoes as he mounts a comeback. tt0090713,184hH4AknlM,The guys need to get in shape for the big game and try out a new aerobic workout. tt0090713,GNCOjiBvwCo,Jack Dundee and Reno Hightower try to act classy and sophisticated on a double date with Gigi and Elly tt0090713,ILfjXR8rMgY,"In the 2nd half, Reno Hightower sends Jack Dundee into the game for the final possession." tt0090713,nEcnNSQZpoE,Jack Dundee catches the winning touchdown pass thrown by Reno Hightower. tt0090713,CR462LcwVBU,Jack Dundee relives old high school football memories to Reno Hightower to get him to play in the reunion game. tt0090713,GHWClE2g3Ew,Elly uses all of her feminine charm to keep Jack from playing in the game. tt0090713,5wxD59EtYks,Jack and Reno Hightower share a slow dance with their significant others at their high school reunion dance. tt0090713,m-Wccy-Mijg,"While on their double date, Jack and Reno try to listen to their women and watch the football game on TV at the same time." tt0100196,IhdqG2gOvvg,Richard Francis Burton and Dr. David Livingstone share their battle scars from and admiration for their time in Africa. tt0100196,hXiTQfzucK8,"John Speke is humbled by his time in Africa but has trouble articulating it to the crowd. Then, at the request of the crowd, he leads everyone in the British anthem ""God Save the Queen.""" tt0100196,WVqv9kKOfvA,"Under the cover of darkness, the camp is ambushed by bandits and in the chaos, Richard Francis Burton is injured and separated from John Hanning Speke." tt0100196,NbhfbT2aU0k,"Richard Burton sees an runaway slave, Mabruki, being hunted by a pride of lions and goes to help him. But when a male lion ambushes Richard, John Hanning Speke saves the day with a sure shot from his rifle." tt0100196,X967_4L8pmc,"The group encounters a local tribe during their travels and exchanges goods with them. To celebrate the success of the barter, the tribesmen spit in the faces of their partners, much to the chagrin of John Hanning Speke." tt0100196,YNaTu-8atDw,"Richard Francis Burton begs for the life of Mabruki, as one of Ngola's courtiers seeks to execute the man he deems to be a runaway slave." tt0100196,snpoOWqCy3k,"Burton and Speke must give a bounty of gifts to the king of the tribal region if they are to be granted further access. However, the gift that the king likes the most happens to be a lethal weapon." tt0100196,S7gyibsEUAI,"John Speke returns to tell Richard Francis Burton about the discovery of the Nile's source. But Burton is despondent, scarred by the death of Mabruki and the iniquities of slavery." tt0107492,exsURQ8bUkg,Clive Walton gives Soupy Sales his motivation as Moses. tt0107492,hge2AkSJSIw,Clive Walton and Marvin Handleman see a variety of bizarre actors for the role of God. tt0107492,Nae0ywUHE-c,Clive Walton and Marvin Handleman show the studio brass a rough assembly of their movie. tt0107492,QdDQrp0xXWU,Opinions and reviews of the film are not kind. tt0107492,WSxjWLWu1WE,Clive and Marvin get some bad news after a big-budget scene doesn't go as planned. tt0107492,HwYyKEu2_Mg,Noah and Mrs. Noah share a little bit about themselves while the rest of the crew prepares to film the scene about Noah's Ark. tt0107492,1_GUmXl_dcg,Clive and Marvin realize they need more actors to act as Jesus' disciples. tt0107492,F5XztYH-X-o,Ray Mann talks about his role in the film as Jesus Christ. tt0107492,9Hcl6jzgFu4,Marvin resorts to product placement in an attempt to earn more money for the film. tt0107492,9lCOuDWaGHM,"The film faces some setbacks, but Clive and Marvin find clever ways to deal with the obstacles." tt0107492,rZRX4JMxQMs,The actor playing Abel has a slight misunderstanding about his role in the film. tt0107492,8XREKqJr9mo,Clive kicks off the first day of filming with a prayer. tt0119576,1lBbY5sLWno,"After a night of prolonged seduction, John Gray finally gets to have his way with Lea." tt0119576,0R3pEe2OW6M,"John Gray sees a woman wearing a piece of attire that he once gave his former lover. The woman introduces herself as Lea, who happens to be a friend of Gray's lover." tt0119576,wbfsRXuNwDY,John Gray finds himself as the outsider when he visits an exclusive and very sensual party for the fashion elite. tt0119576,QU882zzREY0,"At an auction for Elizabeth DeGraw's artwork, John Gray thinks he sees his former lover sitting in the audience." tt0119576,iMOquId9FGU,"Lea enlists the help of her assistant, Claire, to give John Gray a night he won't forget." tt0119576,JtFkc9jD5KI,John Gray reveals a painful secret from his past to Lea. tt0119576,IOK6qpQ1vg0,Lea almost loses a major hand after luring John Gray -- and his money -- into an underground gambling game. tt0119576,qb37bdNexuI,"John Gray sees Lea dancing seductively in a nightclub. But his gaze is broken when he sees Claire being accosted by a sexual predator, and thus, John steps into the fray to do something about it." tt0081398,8YGn0l9zfew,"Jake destroys pretty boy Tony Janiro, winning by unanimous decision." tt0081398,JXq2nnnhqRw,Jake opens a nightclub and performs stand-up there to a full crowd. tt0081398,fdSW39wQL_8,"After Jake knocks down Sugar Ray Robinson, he loses the fight to a unanimous decision favoring Sugar Ray." tt0081398,9yHJcx89XXk,"Jake and his wife fight over the steak she is cooking him, amongst other things." tt0081398,9Eo8snaeDJs,"Jake asks Joey to hit him in the face, teasing him until he finally complies." tt0081398,ybst6CAzXCo,Jake defeats the undefeated Sugar Ray Robinson. tt0081398,Z9mMBj-yFuE,Jake practices his Marlon Brando lines in his dressing room before going on to perform. tt0081398,lfrC_mA6o8o,"When Vickie goes to have a drink with Salvy, Joey goes crazy and beats him badly." tt0081398,cNqstBuw5ZY,"Jake hits rock bottom in jail, punching the walls and breaking down." tt0081398,Tx-kB1KKLJ0,"Sugar Ray Robinson beats the hell out of Jake to win by TKO, but Jake never goes down." tt0081398,NOXp0ABEFC4,Jake accuses Vickie of cheating with Joey and then beats them both up. tt0081398,PVMnl4sBl8A,"Jake knocks Reeves down, but loses his fight in a controversial decision that sends the crowd into a riot." tt0125879,qkfcZ4zdrfA,Izzy Maurer and Celia Burns share a quiet moment on the roof. tt0125879,vB-sBJ_DrGo,Izzy Maurer notices Lou Reed but it is Not Lou Reed. tt0125879,o2K5JzEAzcs,Pillow talk leads Celia Burns to question Izzy Maurer on if he's 'an ocean or a river?' tt0125879,LkCHcg-UOfM,Celia Burns and Izzy Maurer become entranced by the mystery inside the suitcase. tt0125879,kQLYkEvyReQ,Philip Kleinman relays a sticky situation to Izzy Maurer about a turd sitting on top of an airplane toilet. tt0125879,fLjZJgc1nvo,Izzy Maurer attends a dinner party with notable actress Catherine Moore. tt0125879,Ib1awvls274,"After being shot, Izzy Maurer questions the meaning of life if he can't play music." tt0125879,TOSUY8Jmjzk,"Dr. Van Horn introduces himself to a locked-up Izzy Maurer, but he's not there to release him." tt0125879,qN7dJ2r3zoc,"Dr. Van Horn interrogates Izzy about his tastes, and breaks into a verse of the Gene Kelly song 'Singin' in the Rain.'" tt0151582,P1o2faxmQYQ,Vann gives a ride to a junkie named Casper and then kills her at a rest stop. tt0151582,sGS5r7NK5ZA,"Vann stalks and then poisons Gene, the town's star football player." tt0151582,exl6XfbWP0s,"Vann is bothered by his conscience in the form of two imaginary federal agents, Blair and Graves." tt0151582,BShi3Dn0cRs,Vann goes to a nearby diner and decides to poison a man eating alone. tt0151582,2EWQ4s0Z5oI,"While having a dinner date, Ferrin starts flirting by play wrestling with Vann. Caught up in the moment, the killer side of Vann comes out to play as well." tt0151582,ypEtxZjRJz0,"Vann finally decides to leave town and move on, though as he drives away a cop starts to follow him." tt0151582,t8DHTGsC528,Vann imagines himself being interrogated by federal agents Blair and Graves. tt0151582,HKUXzME_3ew,"While cleaning his bedroom Vann faints and is visited by the two imaginary federal agents, Blair and Graves, that serve as his conscience." tt0217355,PEU2sirKyiA,"When Jasmine tries to get time off for the weekend, her boss Eddie loses his cool because he thinks she's being deceptive." tt0217355,OxKtn3THP58,"Stormy reminisces about her past lover, Sully." tt0217355,QtWhkoqRKqw,Jo gets under Jasmine's skin in the dressing room of the Blue Iguana strip club. tt0217355,Z0myXa48shI,"Angel puts on a performance on stage. Meanwhile in the dressing room, Jessie becomes acquainted with the other dancers." tt0217355,SRJsBidnCV4,"After finding a used pregancy test in the bathroom, Angel thinks she's pregnant when she thinks that she may have accidentially ""dribbled"" on it." tt0217355,i7iLNcJKoE4,Jo explodes at a woman as they wait in the doctor's office. tt0217355,BZjSJ6AVd74,Jo goes ballistic on stage and is kicked out of the strip club. tt0217355,RHMKRQocaQ4,"Playing dominatrix, Jo's session with her submissive client is interrupted when Jessie shows up drunk and sporting a black eye." tt0217355,flWMIVVknEs,Jasmine has doubts about continuing her still-nascent relationship with Dennis when the subject of her stripper lifestyle comes to the forefront. tt0218922,VdXfnWThrek,Julia tells Luis her true history and that her real name is Bonny Castle. tt0218922,f92X44rgum0,Luis and Julia meet on the beach and are immediately drawn to one another. tt0218922,JqoqnJ6VNgE,"When Luis confronts Julia at gunpoint, she confesses everything and they reconcile." tt0218922,mvTjdnz3s_4,"Defending Bonny and himself, Luis shoots her con partner Billy." tt0218922,0xWOfczSAe4,Luis confronts Bonny about how she can seem so callous in light of all that has happened. tt0218922,5Mx0JL_2YKQ,"Luis admits that no matter what has happened, he still loves Bonny and to prove it, he drinks poison." tt0218922,uwHPOHdscwM,Luis and Bonny kill Billy and run before the police arrive. tt0218922,WwrlI3z89Pg,Luis and Bonny make a new life in Morocco. tt0218922,gKEaLU9m0Gc,Luis persuades a possible suitor to leave his wife alone. tt0218922,8iQfU3VUrOs,Billy threatens Bonny to leave Luis and come back to him. tt0218922,LcjR2Z2iI-E,"Luis discusses his love and lust for Julia with his friend, Alan." tt0218922,DI_2i5BZcwI,Luis and Julia dance at their wedding party. tt0234354,0wngG1BlZNI,Actor Lance Phelps follows Detective Lunt around researching for his next movie role. tt0234354,xUMqM8hl6F8,Actor Lance Phelps encounters Frank Sangster as he escapes from the police station. tt0234354,_32En06MgeU,"Crawling around a motel, Frank Sangster falls through the ceiling and spies a couple getting down & dirty." tt0234354,Fgl7tImKroU,"Harlan taunts Jean, but in the end, he's the real idiot." tt0234354,-rmALJkEprY,Frank Sangster switches identity with his brother Harlan by pulling out his own teeth. tt0234354,GO4ExuqatyE,"Harlan Sangster appears to be dead when his brother Frank discovers him on the kitchen floor, but it is only a goof." tt0234354,NiOPGDo5UJ4,Susan seduces Frank Sangster late-night in the dentist chair. tt0234354,k6YFnGzHfKk,"Under suspicion for murder, Frank Sangster is forced to give a set of impressions of his teeth." tt0067093,D1TC1n9lhXU,Tevye dreams of fabulous wealth. tt0067093,F9E_PTTHvgI,Tevye introduces his village and its citizens. tt0067093,kDtabTufxao,The townsfolk of Anatevka celebrate their traditions in song. tt0067093,09oumdE0UFI,Tevye and Golde grow wistful at their daughter's wedding. tt0067093,RH3xL8H8tu4,Tevye and Golde offer a loving family prayer. tt0067093,ZhdlKgAakHw,Lazar Wolf and Tevye celebrate the upcoming wedding of their children with drink and dance. tt0067093,_oSK6l24buk,Tevye waffles on allowing his daughter to marry the poor tailor. tt0067093,jVGNdB6iEeA,Tevye's daughters yearn for a perfect romantic match. tt0067093,CvVeJJ-TnK4,Motel hails the miracle of winning Tzeitel's hand in marriage. tt0067093,kHRe9qdfLsw,"As part of the wedding festivities, the men perform a traditional bottle dance." tt0226935,vbKfMbxFfJo,"Bud and Greta express their mutual need for help, intimacy, and trust." tt0226935,wE4I9l7Sc_o,"Audrey reunites with Val, an ex-lover at the Chelsea Hotel." tt0226935,jWUnIBHVLYQ,Frank and Grace share a silent moment of attraction with one another. tt0226935,KhAs8aaZNok,"With a few drinks in his system, Bud opens up to Greta, as Skinny Bones sings a downbeat but heartfelt song about loss and jealousy." tt0226935,fUnQuA1z_CE,The artists in the Chelsea Hotel experience solitude and loneliness. tt0226935,Tz4liX-da7E,"Audrey writes a poem for her lover, Val." tt0226935,4bb7URQIpcA,The voices of the hotel's residents resonate as they offer their parting thoughts and observations. tt0226935,VqlqOiOST78,"Drunk and lonely, Bud tries to reach out to Grace." tt0250202,BdYd8q4jbqE,Tom and Eli get back together and celebrate with Jackie and Brett. tt0250202,qvo_HDqOKww,"When Tom shuns Eli for getting too intimate, too fast, the burgeoning lovers have their first real quarrell." tt0250202,2OmHGM9zHqU,"Tom reveals his ambivalent feelings about his date with Eli to Jackie, who instantly dissects his problem: fear of commitment." tt0250202,kui9LWtON_k,Eli and Tom bond after talking about their dysfunctional families. tt0250202,t5zLt-NZrtI,Eli gets into a passive-aggressive argument with Tom about Fuzzy Wuzzy the bear. tt0250202,63nDBr_Qavw,Eli tries to salvage the date with Tom when he notices the glint in Tom's eyes. tt0250202,r-xcvVWqny0,"After a fight between his parents, Tom explodes at Eli, taking out his rage and frustration upon his lover." tt0250202,dxfqu-v68IM,Tom allows his self-loathing to remain an obstacle between himself and Eli. tt0250202,7CmJFYoSgII,"Eli sees Tom with another man and leaves in despair. Meanwhile, after his one night stand, Tom realizes his mistake and tries to call Eli to apologize." tt0250202,9kJBc4o_3k8,Eli confesses his love to Tom as the two get back together. tt0250202,rNmmNleiY_4,"Jackie uses her cutting wit to flirt with Brett, a salesman and designer, after she reveals that she wants to buy one of his pieces of furniture." tt0094812,MAXHXJ2WgrQ,Crash gets into a war of words with the umpire and gets thrown out of the game. tt0094812,LveQLUDjnaw,"Annie says she doesn't want to seduce Nuke, but then does exactly that." tt0094812,pWRCxdh4PTM,"Annie confronts Crash about his questionable advice to Nuke, but he turns the tables on her." tt0094812,SB_LjL0lUJ4,"Crash gives Nuke tips on his post-game interviews, and advises him to ""never f*ck with a winning streak.""" tt0094812,PlwmOgcEry8,"When Crash strikes out, Annie sends a note with advice on his swing. Crash delivers a surprisingly upfront reply." tt0094812,G-guv9Pd_RA,"Crash advises Nuke to throw some more ground balls, and not try to strike everybody out." tt0094812,RjtmKIWa4tY,Manager Joe Riggins gives the players a piece of his mind about their losing record. tt0094812,85RZMIAL7vM,"Nuke learns that it is not wise to shake off Crash's pitches after a home run ball bounces off the ""free steak"" bull." tt0094812,mn5crhTusSA,Crash lays down his beliefs to Annie after she explains her dating rules. tt0094812,EroyjPcw3sg,"Riding on the bus, Crash tells his teammates about life in the major leagues, and gets into a fight with Nuke." tt0094812,diX4myfR6vU,"When Nuke starts throwing wild, Crash holds a meeting on the mound to discuss roosters, curses, and wedding gifts." tt0094812,yL3JcykFL40,A conversation about past lives and reincarnation leads Crash and Annie to make love on the kitchen table. tt0372334,FPBY03u-5Zg,"At the school dance, Tommy shows up to take Melissa's hand for a slow dance." tt0372334,BFeySGJ75WM,"Tom Warshaw remembers his best friend from childhood, a mentally-challenged man named Pappass." tt0372334,GY0xXOTwWoA,Tommy befriends a Lady who is imprisoned in the House of D to get some relationship advice. tt0372334,ZSL_Z4FFmjo,Tommy and his fellow students laugh at their French teacher Madam Chatquipet. tt0372334,6z1TOMdI0i4,Pappass hits a home run when he plays street ball with some local kids. tt0372334,2QD3ND3XiL4,Melissa and Tommy hang out together with Pappass uncomfortably acting as a third wheel. tt0372334,QErELQ48OOk,"Lady teaches Tommy how to slow dance as she belts out a few lines of the song ""Melissa.""" tt0372334,GJdCx-hCKsI,Tommy tries shaving for the first time. tt0363473,W7uOKhmp00g,"Bobby Darin courts the hand of Sandra Dee to a montage of his classic hit song ""Beyond the Sea""." tt0363473,XeGQr6g1i9I,"When Bobby learns the truth about his mother from his sister, Nina, the magnitude of the reveal hits him harder than he expected." tt0363473,Ie6YmUGcPYg,"Bobby Darin performs his first big hit, ""Splish Splash"", to the delight of his fans and his family." tt0363473,lnN9r-mmKXw,Bobby Darin fulfills his dream of performing at the famous Copacabana nightclub in New York City. tt0363473,wFBlmb2beQI,"Bobby Darin talks about the power of music, how it helped him surmount his illnesses as a child, and how his mother gave him the best advice of his life." tt0363473,ZXhrgVj--6Q,Bobby Darin seals the deal with Sandra Dee when he successfully goes in for the kiss. tt0363473,thyfYONK0Hs,"When Sandra expresses frustration about not seeing Bobby because of his busy work schedule, Bobby tries to ease her tension by seducing her. That seduction, however, is interrupted by Bobby's busy schedule." tt0363473,ChcCflTm4-k,"After being denied an Oscar at the Academy Awards, Bobby Darin unleashes his anger upon Sandra." tt0363473,xRFVqsmbLWY,"Bobby Darin returns to Las Vegas and performs a rousing version of ""Simple Song of Freedom"", rousing the crowd to their feet." tt0363473,V0gKBcEoVdg,Bobby Darin performs a duet with a younger version of himself. tt0098635,cTVafG4_CaY,"After meeting Sally again on a flight, Harry continues to pursue her even though they are both in a relationship." tt0098635,MQRZuEppgT0,"At the Giants game, Harry tells Jess that his wife asked him for a divorce." tt0098635,lNEX0fbGePg,"Trying to make a point to Harry, Sally fakes an orgasm in a crowded restaurant." tt0098635,iEV_pQIf3Og,"After coming on to Sally, Harry explains why men and women can never be friends." tt0098635,y4Eo2_YMZtE,"After Harry and Sally make love, they call their friends for advice." tt0098635,jDP0UCV21Ew,Harry and Sally try to overcome the consequences of sleeping together at Jess and Marie's wedding. tt0098635,iNvdewR9znk,"Harry and Sally trade some brutally honest feedback about each other's lives, then apologize." tt0098635,0zuRe3QwPG8,"Harry and Sally take a walk, sharing their recurring sex dreams." tt0098635,mp8chvACVBk,"On their drive to Chicago, Sally and Harry soon discover they are about as different as two people can be." tt0098635,zGw4fC_Dxo4,Harry and Sally discover that they have nothing in common with their dates. tt0098635,ovkiChacfc8,Harry finds Sally on New Year's Eve and declares his love for her. tt0430919,zJNfkO5ujy0,Murray does his best to stall the wedding between Sarah and James. Olly Pickering finally makes it to the wedding and confesses his love to Sarah. tt0430919,4cSZVMEi710,Sarah finds some sexy underwear that isn't hers in the bedroom and confronts her fiance James. tt0430919,z2QvrmvECo8,Olly Pickering goes to a film test screening that Sarah is running. tt0430919,o-0PQaLy0lc,Olly Pickering does his best to mingle with rich and successful people at the engagement party for his friend James. tt0430919,G-fyxbtiDDo,Olly Pickering and Sarah Marie Barker have a discussion about what falling in love is while shopping for the wedding. tt0430919,zR7e8cPlhzQ,"When Olly realizes that James has been unfaithful to Sarah, he threatens to stop the marriage." tt0430919,kWjZx3bSDHI,"Becka convinces movie focus group expert Sarah to rate her own fiance, but the results are not promising." tt0430919,SxztUnejrvI,Olly is truly surprised when Murray throws him a fake birthday party to impress Sarah. tt0430919,sOPwbePhOXs,"Olly is attracted to the lovely Sarah, until he realizes that she is James' fiance." tt0430919,J7zl9A6-xHY,Murray poses as a realtor to get into James and Sarah's apartment so he can plant evidence against James. tt0426615,aCaTMqs_Qsc,Dolly has Darrell drive her to lunch with her friends. Once there she finds that all her friends want to do is talk to Darrell. tt0426615,9lYe-ez83H8,"Dolly convinces Darrell to take her to the club. After dancing pretty close together, another one of Dolly's bodyguards tries to interrupt the couple." tt0426615,BKR1-S8aRaQ,"Darrell, Dolly and Frank are held captive by former bodyguard Jackie. Busta and Frankie Junior show up and help rescue them, though Darrell gets shot in the process." tt0426615,WYliK36fyCU,Darrell brings Dolly back to his apartment where they end up sleeping together. The little girl from the next apartment over finds them the next morning. tt0426615,vSBQt-6fDr8,"Darrell brings Cherise, a girl he's been seeing, back to his apartment. Lexi, the daughter of his neighbor, interrupts their romance and has some fun getting rid of Cherise." tt0426615,UdYapy35qJ8,Darrell and Dolly go for a late night swim and talk about their love lives. tt0426615,BT5Z6_xe86k,"While at a coming home party for his friend Dolly, Darrell spots hitmen aiming for her father, Frank." tt0426615,sFJmNKLW-2A,Darrell shows Dolly the building where he wants to build his dream record label. The two end up sharing a kiss. tt0090756,V_tlFZCiIHo,Dorothy discovers Jeffrey hiding in her closet and forces him to strip. tt0090756,b-QlCUByMcE,"At the diner, Jeffrey recruits Sandy for his investigation." tt0090756,Is5sRHNIAwE,"Jeffrey fools Frank into thinking he's in Dorothy's bedroom, while he hides in the closet with a gun." tt0090756,senNDipdmPo,"Jeffrey spies on Frank and Dorothy and their ""blue velvet"" ritual." tt0090756,BeYx_CBH700,Jeffrey finds a human ear in a field and brings his discovery to Detective Williams. tt0090756,2iWKnf3C8ZY,"Sandy gets cold feet, but Jeffrey goes into Dorothy's apartment, undeterred." tt0090756,36LnnBNcETk,"When Jeffrey stands up for Dorothy by punching Frank, Frank drags him out of the car." tt0090756,z2G1Ht59cpM,"Frank forces Jeffrey to go on a ""joy ride"" with him, Dorothy and his boys." tt0090756,ncnq2pu4PlE,"Sandy tells Jeffrey of her dream of the robins, and how there will be trouble until they return." tt0090756,kuVLtcqiPrY,"Sandy shares some details of the police case with Jeffrey, and he demonstrates the chicken walk." tt0090756,GacX6Le_uDM,Jeffrey poses as the pest control man to fool Dorothy and gain access to her apartment. tt0357507,54jjaJTov6s,"Tim chases the Boogeyman through his closet network and keeps trying to save his victims, including childhood friend Kate Houghton." tt0357507,GPJNP0RvWHs,Tim makes a last stand against the Boogeyman and figures out a way to beat him. tt0357507,VNBzjYyGcd0,"Young Tim sees the Boogeyman, but his father tells him that he doesn't exist. He's proved wrong." tt0357507,EhsfKBbm1f4,Tim walks through a closet and ends up in a motel room where his girlfriend Jessica appears as she is attacked by the Boogeyman. tt0357507,p4IUUBVAUJA,Tim seemingly receives a ghostly visit from his Mother. tt0357507,SauYDhRS8qQ,Tim finds a backpack full of missing person posters and realizes the Boogeyman has been stealing children for a long time. tt0357507,yth5JoZKnGQ,"Tim gets trapped in a closet in his childhood home, and he might not be the only one in there." tt0357507,W98LPZXSzHE,"While driving back to his childhood home, Tim hits a bird and almost crashes." tt0397401,w13Y3PHCqVQ,Frank gets Spider and Harkness together and reveals everything. Though it doesn't go quite as planned since everybody brings a gun. tt0397401,I8ltv_SROgc,"While at home waiting for Frank to show up, Eddie gets kidnapped by Spider and his goons." tt0397401,OUfJ9E9zfjg,"Eddie recognizes the corpse as a stripper he used to see, much to Frank's surprise." tt0397401,G6zOqkX6qTo,Frank and Eddie have a few problems when they dig up a rich woman's body to steal an expensive necklace. tt0397401,M_y-ZHpKCqs,Frank and Eddie bring the corpse of Crystal home and hide it in Frank's room. Eddie has an interesting dream while sharing a bed with the body. tt0397401,AbyNlvzydeA,"Frank and Eddie are given a job to do by Spider, a local crime boss, that they don't pull off as well as they hoped." tt0397401,XhxddKZYvH4,Frank meets with the local crime boss named Spider. tt0397401,ytd6Q9IxEzk,"While trying to blackmail Harkness, Frank and Eddie realize they need to send him proof that they have the dead girl's body." tt0086979,FAOoSmjHsog,Ray buries the still breathing Marty who tries to shoot him with an empty gun. tt0086979,Fk_NuqIXhtA,"Marty offers Visser $10,000 to kill his wife." tt0086979,nLykrziXGyg,Visser gives an opening speech about human nature and how things are in Texas. tt0086979,p6XV7oYBMG4,"Marty tries to rape Abby, but she retaliates by kicking him hard in the balls." tt0086979,1pJdFkkeu0U,"Trying to hide the injured Marty from a oncoming truck driver, Ray stashes him in the back seat of his car." tt0086979,vVfLenSAj8s,Abby has a dream where Marty warns her that Ray will kill her as well. tt0086979,4mC5CUTwjno,"Abby surprises Visser with a sudden stab to his hand, pinning him against the window sill." tt0086979,qLwEQ_18_V8,Marty warns Ray about the consequences of the affair that he's having with Marty's wife. tt0086979,RpbUeRN_rcQ,"Abby mortally wounds Visser, who can only laugh maniacally as he dies." tt0086979,z2ZqFFFcXmg,Visser betrays Marty by shooting him and then absconding with the money. tt0086979,Cn6TkV9mxmY,Abby dodges Visser's sniper fire after he shoots and kills Ray from long range. tt0100507,vkj3RBOD3cA,Rocky remembers training with Mickey and the inspiration he gave him to survive in and out of the ring. tt0100507,KAEUeqJRxB8,"Tired of being a ""robot"" and living in Rocky's shadow, Tommy challenges him to a fight." tt0100507,NjjDcdIAK60,Rocky passionately watches the television as Tommy wins the fight and takes the championship. tt0100507,0Tv6PQbWvJA,Adrian is frightened when she finds Rocky in a disoriented state after his punishing fight with Drago. tt0100507,hlx-FULnwJs,"Rocky is nearly defeated by Tommy, but finds the strength inside to go one more round." tt0100507,I7nWj8Q_FgI,Rocky has a heartfelt moment with his son atop the museum steps. tt0100507,2XV-EU8JlNI,"Rocky advises Tommy against selling out, but Tommy makes it clear that he wants a quick way to the top." tt0100507,8H9u7P1d87Y,"When Duke provokes Rocky, Rocky punches him out." tt0100507,PUXHIqGfkXs,"Rocky fights Tommy, and almost loses, but is inspired with the cheers from his family and fans." tt0100507,g7yAbv_u-FA,"Adrian breaks down to Rocky and tells him that Tommy has no heart, and that he should look to his son instead." tt0100507,kpS1Pghejt8,"Tommy tries to celebrate his victory, but gets attacked by the press and remains stuck in Rocky's shadow." tt0089927,wWrB-Gbjnik,"Apollo boasts for the cameras, prompting insults from Drago's Russian handlers." tt0089927,fWa-h0maM1w,"The Russians show off Drago's curious strength, denying accusations of doping." tt0089927,hHC_R7ATGuI,"Ditching his Soviet chaperones, Rocky literally and figuratively scales a mountain." tt0089927,wICMOVrSal0,"In his first round with Drago, Rocky gets clobbered." tt0089927,qZRbStnLn3c,"Rocky lands a slashing punch, cutting Drago for the first time." tt0089927,3cTyY36ENxY,"As Rocky and Drago continue their slugfest, the Russian crowd begins to root for Rocky." tt0089927,EiTYwecY41c,"As Rocky watches in horror, Drago puts Apollo awayfor good." tt0089927,5rvk07eB9wk,"Once Drago starts landing punches, Apollo is quickly overwhelmed." tt0089927,bbVqciFRioA,"Rocky knocks out Drago, then wraps himself in the American flag." tt0089927,1AmiFfP9u5c,Drago lashes out at his handlers. Rocky and Drago trade jabs in their final round. tt0089927,wVP1wO_E4yk,Drago hones his physique with sophisticated gadgets while Rocky chops wood and pulls sleds. tt0089927,Uc6tQH8yHF8,"After his win, Rocky gives an emotional speech that brings the Russians to their feet." tt0084602,ONit4ATZmhw,Mickey warns Rocky about Clubber. tt0084602,eNnr60_UZtg,Clubber heckles Rocky while he gives a press conference and challenges him to a fight. tt0084602,-edZKfoS2V4,Rocky says an emotional goodbye to Mickey just before he dies. tt0084602,jm73CCe1e4o,"When Clubber crosses Rocky before the fight, Clubber gets aggressive and gives Mickey a heart attack." tt0084602,8DrsMeY29Kc,A passionate and determined Adrian gives Rocky an inspiring speech about being true to himself and having no fear. tt0084602,8KRzqPxR5zs,Apollo is tough on an exhausted Rocky during a training session before his fight against Clubber. tt0084602,CJKeL-ziA_A,"During a pre-fight interview, a confident Clubber predicts pain for the fight against Rocky." tt0084602,rxGjeoSRNQU,An aggressive Clubber tries to intimidate a more subtle Rocky during their pre-fight introductions. tt0084602,kQ65F_pf868,"During a brutal fight, Clubber knocks out Rocky and takes the championship title." tt0084602,_3GmO3aiBKY,The crowd goes wild when Rocky picks up Thunderlips and throws him out of the ring. tt0084602,lu2-RuTwlto,"After a rough start, Rocky fights back and beats Clubber." tt0084602,4kVGdo53gwY,Rocky and Apollo watch press about the upcoming fight and Clubber badmouths them both. tt0084602,3ESS6HqOuoc,"Rocky trains with Apollo, and after numerous attempts, finally outruns him." tt0079817,UCZNyjhoINE,"During a snowy day at the zoo, Rocky makes a modest proposal to Adrian." tt0079817,B2g2yYkNegE,Rocky bombs an aftershave commercial. tt0079817,U1ngzzlFqgQ,"Rocky wants to fight again, but Mickey tells him that he doesn't have it in him anymore." tt0079817,bchPm7InHcg,Rocky calmly speaks to the press about the upcoming fight while Creed fumes with anger and determination. tt0079817,eM3CovgD8Bo,Mickey trains Rocky by having him chase a chicken. tt0079817,ui3pnIeA_HM,Adrian wakes from her coma and Rocky meets his baby son for the first time. tt0079817,thhYv6-lz9A,"After winning the championship yet again, Rocky gives an emotional speech to the public, and a loving message to his family." tt0079817,GEDL7dCxWvs,"Determined to shed the humiliation brought on by his last fight with Rocky, Apollo instructs his team to do whatever it takes to get Rocky back in the ring." tt0079817,z_hfmThW4fs,"Rocky himself struggles to get up after knocking out Apollo Creed, but makes it up and wins in the end." tt0079817,JBNOsPP2yhw,"Rocky attracts a crowd of young fans on his morning run, leading him to his famous set of stairs." tt0079817,RGdgqkgcvCs,"An apathetic Rocky gets yelled at by Mickey, but wakes up when someone tells him his wife is sick." tt0079817,4uRK1MPvUps,Mickey's pep talk empowers Rocky to start giving Apollo a real fight. tt0099348,THaIWPlHvLY,"The natives fight back in a brutal attack, and Sergeant Bauer is killed." tt0099348,y1kqd_RgNac,Wind In His Hair steals Dunbar's horse and declares that he has no fear. tt0099348,uZRTLpXXlds,Dunbar tries to communicate with Wind In His Hair and Kicking Bird. tt0099348,cH_nhvO8stg,Dunbar receives a promise of friendship from Wind In His Hair. tt0099348,DvcLVg4rz-c,"When Dunbar saves Smiles A Lot from a buffalo, he is offered the animal's heart in thanks." tt0099348,g6q_n-SZg-A,Dunbar refuses to cooperate with Lieutenant Elgin. tt0099348,Cr4KHgNuxcA,"At Dunbar's request, Major Fambrough sends him on a knight's errand to the frontier." tt0099348,Cq_Fag11NRg,Timmons is dumbfounded when Dunbar orders him to set up their belongings in his deserted post. tt0099348,uNSSfdkcppw,Stands With A Fist panics when Dunbar tries to stop her from killing herself. tt0099348,PnffktauNZw,Dunbar joins the warriors in a thrilling buffalo hunt. tt0099348,oK_wtjlQcns,"When Dunbar attempts suicide in front of the enemy, his life is miraculously spared and he gains leverage for his soldiers." tt0429573,npI-xPUygXY,"Betsy Bell is again attacked by the ghost, though much more violently this time. The incident is also caught by her parents, John Bell and Lucy Bell, who now know the evil they are dealing with." tt0429573,UpsxCiyuxGM,The spirit hunts down the sleeping Betsy and proceeds to rape her. tt0429573,Pb3QUVXfKto,A young girl is chased through the woods by an unseen entity. tt0429573,W5_sieIOe88,The ghost attacks the carriage that is transporting Betsy Bell. Richard Powell and John Bell Jr. try to get her away from a spirit controlled wolf. tt0429573,yBsFjC1fVx8,Betsy comes across a young girl in the woods that wants to play. tt0429573,t9QcyYlB7Ac,The evil spirit decides to make itself known to the entire family of Betsy Bell. tt0429573,ET1bH9TqwCE,"In the middle of the night, Betsy Bell is visited by a ghost." tt0429573,lrViTBpl8_A,"Betsy Bell and a friend are both tormented by the ghost, who this time uses all its tricks to scare them." tt0433386,pRyH7gS__WI,Karen tries to escape from Kayako while in the hospital. tt0433386,On6-ADTS-g8,"Trish, under the influence from Kayako and the dark energy around her, kills her husband, Bill." tt0433386,RUJeDvZRsps,"After getting the news that her friend is missing, Vanessa is hunted down by Kayako and Toshio." tt0433386,78WFIwR9FrY,"Miyuki checks into a hotel room with her boyfriend, but unknown to her, the ghost of Kayako has checked in with them." tt0433386,t31U3QAkClM,Eason develops some photographs he took of the Saeki house. Kayako emerges from one the photos and kills him. Aubrey awakes the next morning and finds his body. tt0433386,VbJgsN5PcyM,"After Jake discovers his family and the neighbors are all dead, he confronts the hooded stranger from next door, who turns out to be Allison." tt0433386,5poOduTF5pM,Allison runs to the school counselor for help only to find that the counselor and her missing friends are waiting for her in a now ghostly form. tt0114436,_DWgvYbpexM,A sniffling Nomi is comforted by a tissue from her rival Cristal Connors. tt0114436,qoVuQxxeAl0,"Al gives the new girl a rundown on lap dances, then questions Nomi about not showing up for work." tt0114436,XECoJa7AU-c,Nomi stops by Mr. Moss's office and gets secretly laughed at for her mispronunciation of a designer dress. tt0114436,i60a-KYSCno,"Nomi gets a taste of Tony Moss when she lands an audition, but makes some adjustments before meeting him." tt0114436,3QWd5rCd-R8,Nomi learns a few things during dance rehearsal and is cleared to perform in the show that night. tt0114436,CHyJRCF3sEc,Nomi auditions to be Cristal's understudy in front of Zack which raises jealousies within the ranks. tt0114436,VvH6ZeCJNHA,"Nomi spits in Zack's face when he pays her a nasty, backhanded compliment." tt0114436,UKaGbPJZicM,James shows up at Nomi's trailer and tells her that she's a dancer with too much natural talent to be stripping. tt0114436,-9T4jMND-4E,"Cristal compliments Nomi over a glass of champagne, talks business, and then calls her a whore." tt0114436,BB_1LSxIC4o,"When Nomi visits an injured Cristal in the hospital, they make peace, and then they make out." tt0114436,fIleQPfCec0,Nomi's excitement about her promotion is tarnished by her disapproving peers and a jealous Cristal. tt0114436,hEZKrsmIGyg,"Nomi is excited to introduce her roommate to Andrew Carver, but disappointed when he makes a pass at her." tt0472160,ats6Rg3WPbM,Penelope and Johnny live happily ever after. tt0472160,cXjzLXjLBTo,Penelope forgives her mother and leaves home with her new nose. tt0472160,arJc5qABgO8,Penelope finally learns the secret to breaking her curse. tt0472160,rRWT4FRDq2U,Penelope passes out at the bar and finds herself the darling in the middle of a media frenzy. tt0472160,SxtPzI76s3E,Penelope sells her picture to Lemon. tt0472160,Tzmt5YLzDXQ,Penelope reveals herself to Max and mistakes his reaction for rejection. tt0472160,KBbowtlzD88,Penelope escapes while her parents are discussing her future. tt0472160,4g4fmiFvXmk,Penelope tests Max's willingness to stay and realizes they might share a genuine attraction for one another. tt0472160,eI4FXLtPBL0,"Penelope reveals herself to a room full of suitors, but they all run away, all except for one." tt0472160,2-Y-e_9P8ko,"One of Penelope's suitors, Edward Vanderman, escapes the mansion after seeing her snout and reports it to the police station." tt0472160,DMUnxdly1zI,Penelope's parents fake her death to protect her from the public. tt0472160,tTsOHmaiMq8,Penelope narrates her family lineage and how she came to be born. tt0804516,flOMk-bWIxQ,Thomas beats Jim Harper for making sexual advances against Angela. tt0804516,IaAhl7maKhk,Angela finds herself locked in a parking garage with an obsessed stalker. tt0804516,SpZfI5x9PyE,Angela tries to turn the tables on Thomas when the two come car to car in the parking garage. tt0804516,QcqrOIxjeOA,Thomas makes Angela watch as he teaches one of her co-workers a violent lesson. tt0804516,7q5lFxaC2f4,"Angela makes an attempt to escape from her deranged captor, Thomas." tt0804516,C2s_9Cx4AG4,Angela ends her night with Thomas by handcuffing him to a car and setting him on fire. tt0804516,eKmMFRdNCEw,Thomas forces Angela to call her mother and explain why she won't be coming over for Christmas. tt0804516,ggC1uf1QTjw,"Thomas dances to Elvis' ""Blue Christmas"", while Angela destroys the security cameras in the parking garage." tt0804516,VASm7dDXDcw,Thomas sets his Rottweiler loose on Angela. tt0804516,IFTljGCli5U,Thomas fills an elevator with water to flush Angela out of her hiding place. tt0079501,b8ZW-98Zn-w,"While Max talks with the mechanic, Jessie and the baby go get ice cream not far from where Toecutter and his gang are hanging." tt0079501,oh2MX0EftaU,"A toddler is nearly run over during a high speed police car chase with the Nightrider, while Charlie and Roop are forced ""out of the game, unable to continue pursuit.""" tt0079501,JfJVmzthD3Q,"Max gets prepared for his ride, while Nightrider flies through with his lady." tt0079501,qUi5Lo9SHTY,Max checks out the Underground Mechanic's car the last of the V-8s and gets ready to take a ride. tt0079501,lkAYkfIqivc,Toecutter's gang chases down a young fearful couple. tt0079501,dHwJ6zB8B-4,Johnny Boy is forced to show his loyalty to Toecutter by burning Goose alive. tt0079501,KGoS1jrmgHg,Jessie gets run down with her baby by Toecutter's gang. tt0079501,K1YndrF8GiU,"Toecutter intimidates the train station master instructing him to ""remember the Night Rider when looking at the night sky.""" tt0079501,uAHjDGPOQEQ,"Max runs down a confident Nightrider, leaving him in tears, and ultimately, in flames." tt0079501,sE0hL32wswo,"Max gets ambushed by Bubba and Toecutter, the very same gang members he is looking for." tt0079501,1UbSL3Bri4E,"Johnny the Boy is given two options by Max : Burn to death in the explosion, or saw through his own ankle and escape." tt0079501,VUNpJBzAyXk,Toecutter gets hit and run over by a truck when Max maneuvers him in front of it. tt0097659,9M_shJ1_q68,Tong Po defeats Eric in a brutal kickboxing match. tt0097659,Zyl9lO3o9_0,"Drunk as hell, Kurt is gently goaded into dancing at the bar by Xian Chow, when suddenly, he's attacked by Tong Po's henchmen." tt0097659,u9gzHfq9RsQ,"As Tong Po gains the advantage over Kurt, Xian Chow leads a one-man assualt to save Eric from a slew of thugs." tt0097659,8IG_Y8BrorA,"At a sleazy stripclub, Taylor dispenses some useful advice about life to Kurt, and agrees to help him get his revenge." tt0097659,xbhR3UYKLws,"Tong Po pummels Kurt, and then taunts him by revealing that he had raped Mylee." tt0097659,dadFHEMhfxo,"Prior to his fight against Tong Po, Kurt is given a ""recommendation"" to throw the fight, otherwise his brother will be killed." tt0097659,u4bLh7SN53U,Kurt gives in to his passion and finally kisses Mylee. tt0097659,WHFy_iSnR4M,"With the crowd chanting ""Nok Su Kow"" -- ""White Warrior"" -- Kurt embraces the ancient ways of combat and proceeds to destroy Tong Po with unbridled ferocity." tt0097659,NBJhQqGxJBE,"Under the tutelage of his mentor, Xian Chow, Kurt overcomes his fear of pain and begins to fulfill his destiny as a kickboxing badass." tt0097659,IicsG0Br1q4,"Xian Chow takes Kurt to the ruins of an ancient warrior temple, now known as ""Stone City,"" to elevate Kurt's abilities to the next level." tt0498353,ZHS4xXmL87I,"Beth, trapped in a house, discovers a hidden room with decapitated heads on display." tt0498353,5OZPyf-QseQ,"Laying in a hospital bed, Paxton recalls surviving the hostel to an Italian detective. That is until the interrogation goes haywire. But luckily it's only a dream." tt0498353,PvwjtOewYu8,The bubblegum gang don't take too kindly to Lorna's offer of a Smint. The price: a loogey to the face. tt0498353,dcIVsX1-Aio,"The Italian Cannibal prepares his meal like a surgeon. On the menu : leg, ligaments, and tendons." tt0498353,upGmHcSsGmc,"Stuart 'accidentally' buzzsaws Whitney's pretty face while torturing her, which displeases him immensely." tt0498353,88qGMm1AoGQ,Whitney takes a bite out of the Make-Up Woman's nose. tt0498353,d90YEOlhtRk,"Going down to the kitchen for some cereal and orange juice, Stephanie finds her boyfriend's head chopped off and the cat licking the stump." tt0498353,DDlHzP-SYFw,Rich men and women from around the globe bid on the opportunity to torture the flesh of three cute Americans. Todd wins the auction. tt0498353,Rs28rq81pGo,Beth takes her revenge on the deceitful Axelle by decapitation. tt0498353,-ip57avHn8E,The captive becomes the captor as Beth turns the tables on Stuart and jams a needle into his ear. tt0060196,kpjWox_c9Ig,Angel Eyes has a light conversation with a bedridden Baker before shooting him dead. tt0060196,p9shpHAh8uc,"Blondie shoots three intruders that come into his room, but Tuco is waiting behind him with a loaded gun." tt0060196,nouLQZCXW4A,A mistake by Tuco forces him and Blondie to be captured by Union soldiers. tt0060196,rXs41JvueZY,Blondie leaves Tuco stranded in the middle of the desert with his hands tied and moves ahead on his own. tt0060196,E303pbjYRdo,"Angel Eyes gets the name ""Bill Carson"" from Stevens, along with some dough, just before shooting and killing him." tt0060196,o36m-2TPwck,"Tuco swings, terrified from a hangman's noose as Blondie points a gun at him then shoots, and sets him free." tt0060196,D7Ax5jr6mDM,"After Blondie saves Tuco from hanging, they split the reward and Tuco delivers him a warning." tt0060196,thSPQDFYyiE,"Tuco's crocodile tears don't fool a near-death Blondie into giving up the location of the $200,000." tt0060196,Xsa_dy0w84Y,Tuco shops for revolvers and steals all of the storekeeper's money while he's at it. tt0060196,_yMeXMRn9KU,"While a choir sings outside, Tuco gets beaten to a bloody pulp by Angel Eyes." tt0060196,5PgAKzmWmuk,"Blondie shoots Angel Eyes, knocking him into an open grave while Tuco fumbles with his gun." tt0060196,JrYtD7gSWsI,"When a one-armed bounty hunter thinks he has a bubble-bathing Tuco right where he wants him, Tuco shoots and kills." tt3602442,PO8fJeJP8AU,The Leprechaun pays a visit to Postmaster P's blind mother. tt3602442,hEzyoeRuxYk,"Mack Daddy and his partner let loose The Leprechaun, but thankfully Mack Daddy has a bunch of weapons hidden in his hair." tt3602442,Fz9Y72jbsxU,"While looking for his stolen flute, The Leprechaun finds himself seduced into a bedroom." tt3602442,jhz2fVM1rMA,The Leprechaun tracks down Mack Daddy and then accepts an offer to try some weed. tt3602442,jMAy36cl6w8,Reverend Hamson gets a vist from a very sexy sinner who is under the spell of The Leprechaun. tt3602442,XzWlhLSitJ8,The Leprechaun busts out some rhymes while putting a bunch of girls in the audience under his spell. tt3602442,rU3GNIhA7fk,"The Leprechaun brings back the wife of Jackie Dee, though she doesn't look quite the way she used to." tt3602442,Ol5eFltyhLE,"Mack Daddy,The Leprechaun and Postmaster P. fight to kill each other." tt0116861,1hiv8o-SRZ0,The Leprechaun has some fun getting rid of Harold and taunting Dr. Mittenhand. tt0116861,1m3y_pIJ304,The Leprechaun gets sucked out into space. tt0116861,FKwYBGdhUpc,Delores confronts The Leprechaun with minor success. tt0116861,--aqjaJyZLk,Danny finds himself trapped in a room with The Leprechaun. tt0116861,XrnUNfRvAho,"The soldiers and crew finally get to meet Dr. Mittenhand, the man with the power." tt0116861,NsjUpOTLrr0,The Leprechaun decides to pop up during an intimate session between Kowalski and Delores. tt0116861,epBGWHCrfr4,The Leprechaun attacks Mooch while inside the flesh-eating bacteria chamber. tt0116861,IHVBdcgvTaM,A squad of space soldiers come across The Leprechaun's cavern of treasure and engage him in a firefight. tt0116861,JtW17JUoeUs,Tina accidently causes The Leprechaun to grow gigantic. tt0058461,jM8cy3uB5N8,Joe kills a room of Rojo's gunmen and rescues Marisol and her family. tt0058461,2mbvrOmirQg,Joe uses his wits and resources to escape the Rojo complex. tt0058461,G-50M2Wex20,Rojo and his men beat the hell out of Joe and crush his shooting hand. tt0058461,ABUroSunjEY,"Rojo gives Joe some shooting lessons with his Winchester, but Joe prefers his.45." tt0058461,vsPVyvwwVns,Joe and Silvanito witness Rojo's men double cross and massacre Mexican troops by the river. tt0058461,Sv_GcxkmW4Y,"When some gunmen refuse to apologize to his mule, the Stranger shoots them all." tt0058461,CbB6CosDNV4,Joe practices his left-handed shooting and tests some makeshift armor. tt0058461,Y9nW4w5tHVM,"Joe tricks Rojo into shooting at his armor, then kills all of his gunmen at once." tt0058461,jQPhLeyzkLY,Joe faces down Rojo and they test Rojo's statement that a rifle will always beat a pistol. tt0805570,wreBOqv-y3Y,"After killing Mahogany, Leon is confronted by the sinister man who reveals the true -- and outlandish -- purpose behind the Subway Murders." tt0805570,R6oNHDPMOKQ,Leon fights Mahogany in a battle to the death. tt0805570,6GAilUIUtpw,Maya and her friend Jurgis search Mahogany's apartment for a missing camera which would provide clear-cut evidence for the subway murders. tt0805570,0IyGdSEdk3g,"Compelled to learn more about the mysterious Mahogany, Leon quickly finds himself on the run when the butcher senses his presence." tt0805570,tOpPh1MQ9sM,Mahogany gets into brutal and bloody fight with Guardian Angel. tt0805570,KoDrm4b6SH8,"Leon saves a woman from being attacked by some teenage gangbangers using the power of his still camera and his wits, but when she boards the subway, her life is in even greater danger." tt0805570,2oMW26rEZUk,Mahogany slaughters three yuppies on the subway train. tt0805570,ZIOGfLuHu3Y,Leon takes photos of Mahogany as the butcher engages in a grisly field dressing of his most recent victims. tt0113636,rETUKp1A-xo,"The Leprechaun captures Tammy, while Scott, becoming more a leprechaun himself, uses his newfound powers to escape from the hospital." tt0113636,aQq3mHLZ-X0,The Leprechaun gets explosive revenge against Loretta for stealing his gold shilling. tt0113636,HTbSaYy2Bhk,"The Leprechaun manipulates Mitch into getting in bed with a robotic woman, which then electrocutes Mitch into a most ignominous death." tt0113636,RFpNZ_n9rcI,"The Leprechaun attacks Scott in his hotel room, thinking that Scott had stolen his missing gold shilling." tt0113636,xMOzBw0mrcc,"The Leprechaun leaves Fazio in pieces, but then meets his maker when Scott melts the pot of gold." tt0113636,9iPH8MXkPEE,"The Leprechaun murders Gupta over a missing gold shilling, which ends up in Scott's possession, who in turn makes a wish and ends up on a roulette winning streak." tt0113636,i-2EJ-HDYg8,The Leprechaun is awakened from his slumber and wreaks havoc against Gupta. tt0113636,e2Odq49gEbs,"The Leprechaun arrives at the Las Vegas strip, taking in the sights and sounds, and leaving a pile of crap in his wake." tt0092086,N3qEvEGFdKE,"When they get a telegram from the infamous El Guapo, the Three Amigos debate the definition of ""in-famous"" and then decide to steal their costumes." tt0092086,GPdEP_fFQhk,The Three Amigos see a plane and Ned makes a joke about it. tt0092086,iB89FIStq7Y,"The Three Amigos sit around the campfire and sing ""Blue Shadows "" complete with animal accompaniment." tt0092086,e9vPvHO8Kp4,"The Three Amigos find the Singing Bush and summon the Invisible Horseman, who Dusty accidentally kills." tt0092086,okiMnLyCMbA,"When they are denied beer at the bar, the Three Amigos try tequila instead." tt0092086,T6wetejGqh0,"Trying to break the ice in the Mexican bar, the Three Amigos perform ""My Little Buttercup.""" tt0092086,fw7p7tAdVuE,"The Three Amigos make a grand entrance to the village and ""run off"" the bandits." tt0092086,pUWlaORsqw4,"When a woman invites Dusty to kiss her on the veranda, he tells her that ""Lips will be fine.""" tt0092086,L08fJmbHcPo,"Ned and Lucky run out of water in the desert, while Dusty has more than enough." tt0092086,P8ROhP_3-Qk,"El Guapo and Jefe argue about the meaning of the word ""plethora"" until Jefe cleverly changes the subject to Carmen." tt0092086,1l7e9BD_gos,"Dusty's disguise is discovered by El Guapo, punctuated by Ned falling from the sky." tt0092086,ZoZ_4nNNn9M,"Lucky gives an inspiring speech to the villagers, urging them to stand up together and conquer El Guapo." tt0059578,18QXG4aUP60,"Monco adds up the dead, then rides off to collect his bounty." tt0059578,GkkdbPYW5QU,"Once Monco evens the odds, Mortimer kills El Indio." tt0059578,I2E8wW-YGBA,"Challenged during a meal, Mortimer outdraws Wild." tt0059578,3ucBVz_IFGk,Monco and Mortimer shoot each other's hats. tt0059578,k7Awv1n438I,"At the saloon, Mortimer seeks out Wild and provokes him." tt0059578,XsiXAckgh6I,"Using an array of firearms, Mortimer guns down a fugitive." tt0059578,_GsQYT-btPA,"Monco lays down a winning poker hand, then kills Red and his men." tt0059578,xpkA68e5HN4,"El Indio duels with an enemy, using the chime of his watch as a cue to draw." tt0059578,p5Lzdntomy4,"When Monco and Mortimer show off their uncanny marksmanship, their opponents scatter." tt0059578,d66vE__YWME,"Just as El Indio's watch concludes its tune, Monco arrives to help Mortimer." tt0094012,FPZ4yah3ROU,Pizza the Hutt threatens to come after Lone Starr if he doesn't come up with the money. tt0094012,aeWbTffMq-A,Captain of the Guard finds out his men have mistakenly captured the gang's stunt doubles. tt0094012,nRGCZh5A8T4,"Colonel Sandurz explains to Helmet ""everything that happens now is happening now"" thanks to new home video technology." tt0094012,B-NhD15ocwA,King Roland gives Dark Helmet the combination to the air shield when he threatens to reverse Princess Vespa's nose job. tt0094012,wHNB8IHfHdU,Dark Helmet realizes he is surrounded by assholes literally. tt0094012,NAWL8ejf2nM,Space Ball One goes to plaid when Helmet insists on taking the ship to Ludicrous Speed. tt0094012,rGvblGCD7qM,The Radar Technician demonstrates that the radar is jammed. tt0094012,fgRFQJCHcPw,Yogurt explains where the real money from the movie is made: merchandising! tt0094012,hD5eqBDPMDg,Dark Helmet and Colonel Sandurz supervise the troops combing the desert. tt0094012,eGoXyXiwOBg,Dak Helmet acts out his fantasy of winning over Princess Vespa using action figures of the movie's cast of characters. tt0094012,pPkWZdluoUg,Lone Starr meets Dark Helmet for the first time for the last time and they compare their schwartzes. tt0299981,DvS1BdiVC7o,Duncan MacLeod fights The Guardian and has to decide between taking the source or giving it up. tt0299981,Rb5mk6TfzoM,Joe Dawson fights against The Guardian and he loses. tt0299981,RZCFh9yDIOs,The Elder tells the group the origin of The Guardian. tt0299981,uOPuo29uzFk,Duncan MacLeod has flashbacks of his failed relationship with Anna Teshemka. tt0299981,ze-GArhI0iM,The Guardian and Duncan MacLeod face-off for the first time. tt0299981,mj-34Q3fCHs,Zai Jie fights The Guardian and loses. tt0299981,7j9gs7xZ-9M,Zai Jie tells the group that The Guardian of the Source has risen. tt0299981,RAFmFyb1siI,Duncan MacLeod saves a girl from two attackers and mistakes her for his lost love Anna. tt0299981,ZEliNNDLyUg,MacLeod and his allies take on a gang who are trying to light an innocent man on fire. tt0887912,njyllF8b_W4,Staff Sergeant William James shares various mementos of bomb parts that almost killed him tt0887912,rviQWy48B_w,"Sergeant JT Sanborn and Staff Sergeant William James return fire against an insurgent sniper, and then have to wait it out in the hot desert." tt0887912,lA1bgUYjJ0I,"With the clock ticking, Staff Sergeant William James attempts to disarm a bomb that has been strapped to a man's chest." tt0887912,LxmnOxCk3dM,Contractor and the rest of his private security team become under attack by an insurgent sniper. tt0887912,Bnmo8X2kwpk,Colonel Reed praises Staff Sergeant William James's heroism in the face of danger. tt0887912,nuNQY06FEOc,Staff Sergeant William James diffuses a car bomb while Sergeant JT Sanborn and Specialist Owen Eldridge provide cover. tt0887912,WiXoeYPz1LY,Staff Sergeant William James opens the trunk of a car to find it rigged with an enormous amount of explosives. tt0887912,IsgHQHIeiBk,"After disarming one bomb, Staff Sergeant William James discovers that there are way more explosives in the area than he had originally anticipated." tt0887912,Jc_h1ufAXYs,Staff Sergeant William James is walking towards a bomb site when a mysterious man comes speeding in his direction. tt1023111,y5oIDeR0YjA,Ryan confronts Jake in the bathroom and demands that he participate in a fighting tournament. tt1023111,yPAPYhU_zsQ,Baja gives an injured Jake some extra motivation before his next fight. tt1023111,Ekl021fmWGc,Jake opens up to Roqua about his past while asking him to continue his training. tt1023111,QQq6L1Sw4Ck,An inconsiderate driver and his friends become victims of Jake's uncontrollable temper. tt1023111,-mjnbKL7fHQ,"Roqua demonstrates the power of proper breathing to his new student, Jake." tt1023111,ghpYpbgtLIs,Ryan introduces Jake to mixed martial arts when the two square off in the middle of a party. tt1023111,F656vZAFGdM,Jake underestimates the shorter Miles when Roqua pairs them up to spar. tt1023111,9LiQ5MZKYUY,Jake faces off against Dak-Ho in the first round of the underground Beatdown tournament. tt1023111,aJ7NA4hNNc0,Baja asks Jake to show her some of his moves before they are interrupted by his little brother. tt1023111,M3byaFhO18Q,Jake and Ryan have their final showdown in the parking lot of a crowded nightclub. tt1023111,5OZbydb0FdY,Jake prepares for the Beat Down Tournament with intense workouts at Roqua's gym. tt0430912,KdkEzfozXss,Glass attacks Catherine after she taunts his lack of willpower in stopping her mass murder spree. tt0430912,bDT3nUjN2fs,"As bodies mount, Detective Washburn pressures Glass to come clean with what he knows." tt0430912,dzw9h7GnERM,Detective Washburn talks to Glass about the murder victim. tt0430912,FGSmKV6K__o,"Catherine recounts her experience in San Francisco with Nick Curran, as well as her sexual encounter from the night before." tt0430912,LTS4bKTgyik,Catherine visits Michael at the psychiatric asylum. tt0430912,cf_0FH_2934,"Catherine delivers dirty talk to Michael during their session, leaving him utterly speechless." tt0430912,SfQAxD8v6Mc,Catherine meets with Glass for the first time and sizes him up. tt0430912,_ZrJXN_vrBs,Catherine starts flirting while being interrogated by police inspectors. tt0430912,PXEuRW2cOqE,"Catherine is aroused by her passenger while driving a very fast car, causing them to drive off into the ocean." tt0430912,pWhT-4m-4ro,Catherine seduces Michael while discussing murder. tt0430912,B96DjgGIxv4,"Glass stands trial for psychiatric testimony, offering his opinion on Catherine." tt0486321,xEOHMxA4C-E,The boys help the astronauts correct a computer malfunction by using an olive to fix a hot plug. tt0486321,wM-OyBwhuOk,The boys take off on the space shuttle to the moon as their mothers watch in horror. tt0486321,UuRb2YYEYfc,Nat convinces his friends to go to the moon with him. tt0486321,UhRriAA2Kf0,Grandpa talks to Nat about adventures. tt0486321,q2rT8XyVHhA,Nat saves Scooter from being left behind in space and Scooter vows to go on a diet after his near death experience. tt0486321,Pz1OFqEVi3c,The boys dance to The Blue Danube during their time in space. tt0486321,maWca5IRGt8,Grandpa tells Nat about the time he flew with Amelia Earhart. tt0486321,UuuyzaRWiA0,Grandpa fights Yegor and Nadia comes to the rescue with her big foot. tt0486321,qFiFKP6Jxoo,The boys are freed from the test tube and everyone celebrates the landing of the space pod on the moon. tt0486321,_E84Vp8Rnfo,Nat takes a ride in Neil Armstrong's suit and walks on the moon with him. tt0486321,GRjqtMFumZk,Buzz Aldrin makes an announcement at the close of the movie. tt1124048,HnyvaqsAcVQ,"Possesed by evil, an old man tortures a girl he kidnapped. Just then the local townspeople show up to confront him." tt1124048,tLadr2v8AAA,"Sophia confronts the only one of her friends left, Kathleen, who is still possesed by evil and looking to kill some more." tt1124048,WEJZDUTGV8s,"Sophia and Rob are looking for their friends when they find a possessed Amber eating the remains of another friend. An evil, blood lust filled Kathleen joins the party soon after." tt1124048,rCmp3o84w6A,"While on a guided tour, the girls get a harsh surprise when they find out their tour guides are actually there to rob them and leave them in the desert." tt1124048,5USau0NMAxU,"Sophia, Rob and Jeremy discover that the tour guides driving them around are the ones involved with the disappearance of Sophia's friends." tt1053859,6mQAgXT_lVM,"In the midst of a ritual to stop the curse, Lisa and Rose have a final controntation with the ghost of Kayako." tt1053859,RdU8F4C9oDw,"After getting into a fight with Max, building manager Mr. Praski goes back to his car, but he is not alone." tt1053859,tab4Nxd8GlY,Dr. Sullivan investigates the halls of the asylum. The only thing she finds is that the ghosts that Jake spoke of have now become residents. tt1053859,YMA_1YDqjYc,Gretchen spends her night finishing a painting only for vengeful ghost Kayako to interrupt in the scariest of ways. tt1053859,IsG-tXSQRX4,"Despite being locked in an asylum, the ghost that killed his family still manages to get to Jake." tt1053859,4dm-ZfP3fbs,"After Lisa leaves Rose's room, Toshio appears." tt1053859,3jNEs5M1Sik,"After getting possessed by the spirit of Takeo, Max goes after Naoko with a vengeance." tt1053859,7tg6TqW7u-A,"A mother suggests her daughter take a bath, not knowing that the ghost Kayako plans to join her." tt1053859,Up1eNda6Rt0,Lisa and Andy are so into making out they don't notice they have stumbled into an apartment with a dark past. tt0093870,9cySKHPqIjw,"On his first night patrol, RoboCop stops a robbery and prevents a rape." tt0465580,QjUkgodriIo,Henry tests Agent Mack's mental fortitude by manipulating him to put a gun in his mouth and pull the trigger. tt0465580,6OEA4J0sobo,Henry and Kira head back to the United States when Kira finds out that Henry was lying to her. tt0465580,KAOlo7Ijo5k,Nick sacrifices himself in an attempt to save Kira from Henry's mind tricks. tt0465580,NNfMLLVwiN0,Nick battles Agent Holden. tt0465580,bYUJuCsymVM,"Henry, Victor, and Kira head to the top of a building to collect the suitcase, but are attacked by a Chinese gang." tt0465580,tjRYZON0o9w,Nick goes to see Wo Chiang to have his memory of the last two hours erased. tt0465580,nhm5xXXqzqE,A discussion at gunpoint between Nick and Henry Carver dissolves into a telekinetic shootout with Victor. tt0465580,fU-ICxohwSc,Kira Hudson convinces Agent Mack that he had a brother and Agent Holden murdered him. tt0465580,gpCFk7jK810,Cassie speaks with Teresa while she fixes Nick's injuries. tt0465580,Ki5TEx2nIHQ,Nick and Cassie run through a fish market to escape the Asian gang who are trying to kill them. tt0465580,0Ba6y1Y8JjU,Cassie believes she can see her own death through her drawings and Nick tries to comfort her. tt0093779,rMz7JBRbmNo,"Westley tricks Vizzini and poisons him, allowing Westley and the Princess to escape together." tt0093779,rUczpTPATyU,"Westley beats Montoya in a sword fight, but instead of killing him, he respectfully knocks him over the head." tt0093779,lISBP_fPg1s,"Westley fights Fezzik, and narrowly defeats him, knocking him out with a strangle-hold." tt0093779,XeO3jMZphhs,"Montoya, Westley, and Fezzik devise their plan to break into the castle and break up the wedding." tt0093779,3odMTPuzLwY,Montoya and Westley devise a plan to sneak into the castle and stop the Princess's unwanted wedding. tt0093779,niul8Hy-3wk,"The Princess mistakes a masked Westley for a cad and pushes him down the hill, but then realizes that he is her lost love." tt0093779,d4ftmOI5NnI,Miracle Max gets yelled at by his wife Valerie while he tries to bring Westley back to life. tt0093779,XCHKYNFH9Lk,"After kidnapping the Princess, Vizzini gets angry when his men are reluctant to kill her." tt0093779,wUJccK4lV74,Westley tricks Humperdinck into surrendering by telling a chilling tale of how he plans to dismember his body. tt0093779,JFo6iLDNzX0,Westley gets tortured in the dungeon by the Count. tt0093779,D9MS2y2YU_o,"Westley chases Vizzini as they climb a rope up the Cliffs of Insanity, but Vizzini cuts the rope before Westley reaches the top." tt0093779,I73sP93-0xA,"Inigo avenges his father by killing his murderer, Count Rugen." tt1232783,DyYuDAmUqRk,Mrs. Crenshaw hunts for the killer to protect her girls. tt1232783,0PIbNyzb5YM,"The girls have a violent encounter with Garrett, who they believe is the killer." tt1232783,el6nzbxrsD0,Cassidy hears Maggie's cry for help and runs to find her in a room surrounded by fire. tt1232783,IThWCij8W0k,Kyle attacks Cassidy but Andy saves her. Jessica and Cassidy find out Andy is the killer. tt1232783,70gIBwjO49M,"Jessica, Claire, and Ellie lower Cassidy into the well to see if Megan's body is still down there." tt1232783,shehrh353Oo,"Ellie freaks out about Megan's accidental death. Jessica, Claire, and Cassidy discuss what to do next." tt1232783,ChPLYyubXiE,"Chugs lays down on a couch and drinks some wine, waiting for Dr. Rosenberg when the Killer sneaks in." tt1232783,nCzYHB_8hXU,Garrett puts a tire iron through Megan's chest after a sorority prank goes on too long. tt1232783,ZoJqs349ahs,Jessica is insulted by Maggie and some truths are uncovered. tt1232783,TJmgMmjx2eU,Mickey is brutally killed at the party. tt1232783,yPg84oVPnE0,The girls tease each other and toast to their sorority. tt1232783,e72atw7hctA,The sorority sisters play a wicked prank on Garrett for cheating on Megan. tt2091473,qcdR-kyqqHs,Steve Butler and Sue Thomason start persuading land owners to let the natural gas company drill on their land. tt2091473,LX8mxeGuqi4,"After finding out that Dustin Noble's entire activist campaign has been based on a lie, Steve Butler confronts him." tt2091473,6ZSsIZ40GAQ,"Steve Butler has a conversation with Frank Yates, the man who was the first to stand against the company." tt2091473,uW7Pev3qG1k,Steve Butler is confronted by some farmers in the local bar. tt2091473,THPVDNnsVT4,"Steve Butler tries to acquire a farmer's land, but finds that the entire town has figured out his game and won't be selling." tt2091473,aU6KHvuvxBw,"Steve Butler confronts Dustin Noble, an activist who took a bribe but is still fighting the company." tt2091473,ih0GAi4HWwA,Steve Butler and Sue Thomason deal with an activist that has shown up in town to stop the natural gas company. tt2091473,vbbHaMTLrbg,"During a town meeting about natural gas, Frank Yates, a science teacher, questions the saftey of fracking. Steve Butler does his best to argue, but it doesn't go well." tt2091473,LMQd7xw1Wf4,"Steve Butler meets with a local offical, who wants to be bribed." tt2091473,5pLpIsdg50c,Steve Butler has a meeting with a few top people from the natural gas company he works for. tt0100502,TTUvtnPvN8k,RoboCop faces Cain head-on in a game of chicken. tt0100502,IoavfE6TCbw,Cain lures RoboCop into a trap where his men rip the cyborg apart. Literally. tt0100502,-9DrPi3ki0g,"With RoboCop clinging to the hood, Cain rams his vehicle into walls and telephone poles." tt0100502,_m90Rm0RX-8,Dr. Faxx murders Cain and then has his brain surgically removed so she can use it as the central nervous system for RoboCop 2. tt0100502,moYXL6hX8vI,The dark and dystopian world of a future Detroit is illustrated through the latest episode of the news program Media Break. tt0100502,Yr1lgfqygio,"RoboCop has been reprogrammed to dispense platitudes, manners, and lessons in not smoking." tt0100502,msaelEZ_eEs,RoboCop and RoboCop 2 battle it out at OCP headquarters. tt0100502,xrJkcV4DGZ4,"RoboCop defeats a band of thieves, then questions the survivor about the hyper-addictive drug, Nuke." tt0100502,xRkZAfoaEw8,RoboCop rips the brain from RoboCop 2 and pummels it. tt0100502,7ke8XUZSYLw,"RoboCop 2, wired with Cain's drug-addled mind, goes berserk and attacks everything." tt0100502,NJIjNs_s2NI,The Old Man is not impressed with the RoboCop 2 prototypes. tt1477855,UXK7kf1wmqI,Franklin D. Roosevelt and Daisy have a moment alone amid all the chaos in the house. tt1477855,UvJ8UDYipAg,"After arriving at the president's mother's house, the King and Queen of England discuss the rooms they have to stay in." tt1477855,_5p4QdtkbC8,"On their trip to visit to President, the King and Queen of England decide to make a stop so they are not too early." tt1477855,2I5V3zd1J8M,King George VI and his wife have an argument about what a king should do. tt1477855,i5ogNBaY2BY,"During a big picnic, the time has come for King George VI to eat a hot dog, something everyone has been fretting over." tt1477855,N18AtSAxJ1I,Franklin D. Roosevelt and King George VI finally have a private and very frank moment. tt1477855,H4PpclIJZHA,Missy reveals the truth about Roosevelt's many women to Daisy. tt1477855,ioCaBQBjEBU,"Franklin D. Roosevelt takes his cousin, Daisy, out on a drive and makes a pass at her." tt1477855,KuMy7-yMXO8,"Daisy is invited to visit her cousin, the President of the United States, Franklin D. Roosevelt." tt1477855,1fxRMQLYRWs,Daisy confronts Roosevelt after finding out that she is only one of many women that he is having an affair with. tt1814621,jnN4PnoJ1vw,"Portia finally tells Jeremiah, a student she has been helping get into Princeton, that she believes she is his biological mother." tt1814621,gawe9W5HYtQ,Portia visits her mother and finds out there are some things her mother has failed to mention recently. tt1814621,O6Obigg85oo,"While doing a presentation on Princeton at a school, Portia gets into an argument with some outspoken students." tt1814621,kcONgsdSLq8,"After helping a cow give birth, John and Portia meet in the showers." tt1814621,OVXpH5cKWf0,Portia and her mother go to a birthday party for John Halsey's adopted son. tt1814621,8jN4i-6ikWY,"After dinner, John kisses Portia and the evening goes downhill from there." tt1814621,MHpGJ-jtGy4,"Aftering having her heart broken, Portia decides to confront her mother about her life choices." tt1814621,f4vVtsfEMRI,"Portia reads Jeremiah's touching college essay, but the moment is ruined by her ex." tt1814621,KFASQKT9JSs,"When Portia gets home from the birthday party, she finds Nelson in her back seat and returns him to his father, John." tt1814621,Wi41GDMQxr0,"While hosting a party for all their friends and colleagues, Mark breaks up with Portia." tt0082846,0eQBa4JQzDI,"Norman asks Billy what a thirteen-year-old does for recreation in California, but doesn't like the answer." tt0082846,JHACE2LTz_s,Bill asks Norman if he can sleep with Chelsea while staying in his house. tt0082846,ocyplDqvhuo,Ethel comforts an angry and scared Norman. tt0082846,kHTAJHod8-g,Ethel gets angry when Chelsea speaks poorly of her father. tt0082846,irkGAhW7wlQ,Norman and Billy catch their first fish together. tt0082846,f20aUH5IG9s,Chelsea shares her frustration about her father while Ethel tries to put things in perspective. tt0082846,MIjkFrmSCYU,Chelsea tries to make peace with Norman. tt0082846,Jkk2ai88ED0,Ethel is relieved that Norman feels better. tt0082846,Vyrr1vSRYjs,"Norman lets Billy drive the boat, but when Billy crashes into a rock, Norman gets thrown into the water." tt0082846,ARLZaZd3fAg,Ethel and Norman convince Billy to go fishing. tt1272878,_SVAzrGlEmc,"Undercover agent, Bobby, goes to Stig's apartment, his former partner in crime, but finds that he has company." tt1272878,5wRnpjDfEz8,"Bobby chases down Stig and after a tiring fight, they decide to be truthful with each other and realize they are on the same team." tt1272878,7Vhxv6URu5I,"Criminals Bobby and Stig rob a bank, but they decide to take care of the police first." tt1272878,3lqYg7jpjfI,"After robbing a bank, Stig follows orders to betray Bobby and escape with the money." tt1272878,m_KtsgEoK4Q,Quince and his men try to kill Stig. tt1272878,Um-Nj5FvfE4,Stig helps Bobby get out of his apartment when it is invaded by a hit squad looking to kill. tt1272878,EeYI0V2j12g,"Bobby and Stig go after the man they think set them up. The only problem is, they don't want to work together." tt1272878,DcwhTBEcbBw,Bobby and Stig interrogate a prisoner at Deb's house when they are attacked by a hit squad led by Quince. tt1272878,BLFU01WKeBs,"Bobby and Stig get their enemies together with the promise of the $43 million dollars that was stolen, but Bobby has a suprise in store for them." tt1272878,jbeyKcGqxyI,Bobby confronts Quince on a military base about the stolen money. tt1231587,vuJrsCBt0rQ,"Working at a pet store which specializes in dog care, Nick finds a set of car keys up a pooch's butt." tt1231587,Xwmvrx1wq4s,Adam and Nick visit their old friend Lou in the hospital after his unsuccessful suicide attempt. Lou's eagerness to start the vacation weekend leads him to pull out his own catheter. tt1231587,nVRCznRsCgY,"After losing a bet, Lou has to perform oral sex on Nick." tt1231587,ic7F0sCFcZ4,"When Phil has his arm ripped off by a passing truck, Lou finds it hysterical." tt1231587,T3iSphEl9WI,"The guys discover that they are inhabiting the bodies of their younger selves in the '80s, except for Jacob, who hadn't been born then." tt1231587,jVS8e7I6Co4,"When waking up in the hot tub after a night of debauchery, Lou proceeds to projectile vomit all over a friendly squirrel." tt1231587,clP9p1ipHEw,Lou has sex with Kelly who is Adam's sister and Jacob's mom. tt1231587,CQuB7dB-elg,"Despite crashing on the ski slopes, Adam, Nick, and especially Lou feel like their 19-year-old invincible selves." tt1231587,m9pdH02FxPY,"Once the guys realize they have time traveled, they debate what they are going to do next." tt1231587,eSDTJ1sE29E,Lou scolds his friends for letting him down once again. tt1231587,qU93Cguv4W0,Adam opens up to April as they fall for each other. tt1231587,pqzMo6SfXX4,"Adam convinces Lou that he can be the hero and face down his nemesis Blaine, but it doesn't quite go as planned." tt2083355,1BimnTWx1b8,"Lance gets upset that Harper was secretly writing a biography of him and his wife, Mia, does her best to calm him down." tt2083355,ntsuIs20RW0,"Lance, Harper and Candace rush to the hospital when Robin's water breaks, but they get stuck in traffic and Lance delivers the baby in the back of his SUV." tt2083355,KKOR6WC_fUg,The ladies watch the big football game at Mia's home while the guys go to the game. tt2083355,aPeZmPcpiu8,Lance finds out that Harper has been writing a biography on him and confronts him about it. tt2083355,Cqc48kDMG0Q,"While heading to Lance's football practice, Quentin and Julian get into a fight in the backseat." tt2083355,J_L4nLBweuQ,Shelby insults Candy about her slutty past and a catfight breaks out. tt2083355,ESSsStp3pFU,"Quentin, Julian, Lance and Harper entertain the girls by performing ""Can You Stand The Rain"" air band style." tt2083355,cG0ZIxenJY8,"Julian shows his friend, Quentin, an internet video showing Julian's wife stripping at a college party." tt2083355,tXNMNMLQzwg,"Harper meets Jordan's new boyfriend, a white guy." tt2083355,0U-kaLEaThU,Harper gives the eulogy for Mia and Lance finally breaks down as her casket is lowered. tt1103275,QR4x2_6qzXg,Leonard consoles Michelle after Ronald leaves. tt1103275,Lf93YLs4004,Leonard and Michelle plan to run away together after he professes his love for her. tt1103275,JcWawUzwoL0,Leonard and Sandra kiss as they look at his family photos. tt1103275,IvagCOQJuYg,Leonard shows Sandra his collection of photographs and opens up about his ex-fiancee. tt1103275,q1ogthNk040,Ruth gets emotional when she realizes that Leonard is leaving home for good. tt1103275,tdvq6Usjydg,"Leonard tells Michelle that he loves her, but Michelle has a hard time hearing it." tt1103275,FOYr5wApG3k,Leonard invites his new neighbor Michelle into his apartment until her father calms down. tt1103275,V_qYvdPSRto,Michelle tells Leonard that she cannot go to San Francisco with him because she's getting back together with Ronald. tt1103275,8Fgz5cARQZo,Leonard gets upset when Michelle does not reciprocate his feelings for her. tt1103275,mqJxvhBThw0,Leonard comforts Michelle after she begins to panic about her relationship with a married man. tt0093870,fEpjHtkttYg,"When RoboCop intervenes in a gas station robbery, he comes across one of the criminals that ended his old life." tt0093870,LMT8UN9bSiA,"RoboCop roughs up Boddicker but cannot kill him, because that would violate one of his Prime Directives." tt0093870,2J8mkHUsiXY,RoboCop takes out Emil in a flood of toxic waste while Anne runs Boddicker off the road. tt0093870,I2JSXKFWqGI,Bob Morton's make-out session with a pair of sexy models is interrupted when Boddicker arrives. tt0093870,IvDNfFVpvZI,RoboCop blows away an entire factory full of criminals and gunmen. tt0093870,GLQiskRb02o,Dick unleashes ED 209 on the weakened RoboCop and the two battle it out through the halls of OCP. tt0093870,Ip7GGf2_b6Y,"When Dick Jones takes the Old Man hostage, he's fired, thus negating ""Directive 4"" and clearing the way for RoboCop to take him out." tt0093870,UY89o4QFvQM,"Buried under a pile of scrap metal, RoboCop fends off a final assault from Boddicker with a gruesome stab to the neck." tt0093870,5FcTzH6A4a4,Boddicker and his thugs torture Officer Murphy before blowing him away. tt0093870,TstteJ1eIZg,Dick's boardroom demonstration of the Enforcement Droid 209 goes awry when the droid opens fire on Kinney. tt1172994,aofM4j2teCw,Samantha breaks free during the satanic ritual. tt1172994,KNby2wixjzg,"While sneaking around the house, Samantha gets a scare when the doorbell buzzes." tt1172994,tCFb_FossHk,Megan is creeped out by Mr. Ulman but Samantha wants to stay. tt1172994,-8CnljMrH3k,Samantha and Megan are welcomed into the house by Mr. Ulman. tt1172994,QimMZHQFaXk,"Hearing noises from Mother's room, Samantha climbs the stairs to the attic, becoming dizzy and fainting." tt1172994,421eYc8zCtk,"Samantha awakens to find herself about to be sacrificied in front of Mr. Ulman, Victor Ulman, Mrs. Ulman and a Demon." tt1172994,kS9NLX0pFVs,Mr. Ulman chases down a bloody Samantha in the cemetery as the moon ascends. tt1172994,lsOQqbPYVHY,Mrs. Ulman meets Samantha before the night begins. tt1172994,Aac0krsfzSQ,Samantha and Mr. Ulman try to come to an agreement on the babysitting position. tt1172994,PnbVXrBlmJ4,Samantha gets a weird phone call from Mr. Ulman in regards to the babysitter position. tt1612774,DMyBC0gLSgg,"After witnessing his fellow tires being burned, the evil tire retaliates on humankind, leaving a litany of headless bodies in its wake." tt1612774,nAp6q0q84vc,"Zach tries to convince Hughes and the police that the tire is alive. Naturally, no one believes him." tt1612774,OtXieOlT7SA,The evil tire stalks Sheila to her motel and watches her shower -- as does the audience watching from afar. tt1612774,vldYVG_5cZY,The evil tire follows the Truck Driver to the gas station and gives him a telekinetic splitting headache. tt1612774,WV12BpbBrro,Lieutenant Chad gives the audience a bizarre introduction to what they are about to witness. tt1612774,HEYktlQpnGE,Lieutenant Chad and Sheila try to trick the evil tire into its own destruction. tt1612774,rrzV0FvYypE,Lieutenant Chad continues his investigation of Martina's death by interrogating the inn's owner. tt1612774,ae6HngmeUq0,"Lieutenant Chad attempts to convince his fellow police officers that the show they have put on is over, and that they exist in an absurdist world where reality does not matter." tt1612774,uB4qHneHB1E,"The audience awakens to a new day and a new kill, as the evil tire sets its sights on an innocent little bunny." tt1612774,Ats9HUDVBxE,The tire becomes aware of its ability to destroy. tt1640459,ej_hfok3bEc,"The Hobo goes on a shooting spree in Hope Town, killing criminals left and right." tt1640459,1k1r2zFnwQc,The Hobo addresses a group of newborn babies at the hospital with a dire warning. tt1640459,mp_oRA5-HLM,"The Hobo takes Abby to the hospital to get her fixed, as The Plague gears up to hunt the Hobo down." tt1640459,LNqOTIBKycE,The Hobo sacrifices himself for a town that will never care about him. tt1640459,0vXx2vS4iC0,Abby tries to rally support for the hobos. tt1640459,cZZJMc6QPR4,The Hobo and Abby are attacked in Abby's apartment tt1640459,4WizLeIdckw,The Hobo stops some thugs from robbing a pawn shop. tt1640459,hRBkyOT8ZPk,"The Hobo needs money to make money, so he takes up an offer to eat glass for cash." tt1640459,07rlBwvlBDk,The Hobo is welcomed to town by Slick and Ivan. tt1640459,cKe4qiOYFyM,The Drake teaches his brother Logan a lesson in front of the people of Hope Town. tt1640459,rtQQwsPJeBY,Abby tucks the Hobo in for bed while he warns her about the danger of bears. tt0074285,fxYkJbBKxZE,Carrie gets her period for the first time in the school's public shower and is taunted by the other girls. tt0074285,12wHDwNXBL0,Carrie is punished and beaten by her mom for getting her period. tt0074285,v-WZINgHnFQ,Billy slaughters a pig while Nancy and Kenny watch. tt0074285,ZpX0rril7QA,Carrie begs her disapproving mom Margaret to allow her to go to the Prom. tt0074285,IIBg9UQ_mMU,"Carrie sets fire to her school's Prom, killing and terrifying her classmates." tt0074285,XgBvOoE5uG0,"Carrie gets her revenge on Billy and Chris by blowing up their car, killing them both." tt0074285,I7XHygPKbYI,"Carrie fights back when her mother attacks her, for the last time." tt0074285,YOhPdUMzXjY,"Moment's after being embarrassed at Prom, Carrie uses her powers to begin terrorizing her classmates." tt0074285,DJcTG-VnLrI,"After winning Prom Queen, Carrie is doused with a bucket of pig's blood." tt0074285,oDA4sUtM9B8,Carrie and Tommy are announced as Prom King and Queen. tt0074285,ImZ2LrvQcCY,Carrie gets ready for Prom while her mom Margaret tries to convince her not to go. tt0074285,I68rpTRe8CE,Carrie affirms that she is going to Prom while her mom disapproves of her powers which she believes are from Satan. tt1912398,8kssysjyPl0,Frank storms the American Superstarz TV studio and holds the entire stage hostage as he delivers his lecture to the nation. tt1912398,p1tcs_fTz8k,"After wounding cable news TV blowhard Michael Fuller, Roxy does her best to finish the job." tt1912398,wKbZcaU-83E,A shady gun dealer tries to sell Frank a bunch of firearms. tt1912398,rjsre1tcGWU,Roxy makes an impassioned speech to Frank as to why Alice Cooper is all kinds of awesome. tt1912398,yaxDM67F72o,Frank and Roxy form a stronger bond as they target practice together. tt1912398,V2NGM0LYqss,"Roxy seeks validation from Frank when she asks him if he is attracted to her, despite their vast age difference." tt1912398,1ZA2qfP3oPc,"Roxy tries to convince Frank that if he kills himself, he'll end up killing the wrong person." tt1912398,yg0yDvEqfw4,Frank is inured by the epic vacuity of American TV shows. tt1912398,Ix8Gxp7XlDs,Frank hates his neighbors and wants to brutally murder them with a shotgun. tt1912398,viSCkcVXoR4,Frank rails against the inanity of modern American life. tt1172570,uSYD6YSaKgQ,"Bronson makes his art teacher, Phil, into a living work of art against his will, while the prison guards wait helplessly outside." tt1172570,19qTZoeOEZg,"After taking a lowly prison guard captive, Bronson threatens the Prison Governor that he will kill the hostage if his demands are not met." tt1172570,oEPNSzLHZ2w,"Alison seduces Bronson by straddling him, wearing nothing but a loose-fitting sweatshirt and panties." tt1172570,e9LJG1JcXDE,Bronson concocts an escape from the asylum using his offbeat imagination. tt1172570,1l30kkPQfJM,"Bronson takes his art teacher, Phil, hostage." tt1172570,7JOey0CIgMM,Bronson flourishes as an artist while in prison. tt1172570,1idxZC0VSxE,"Bronson urinates on his opponent after winning a fight, and then tries to negotiate his pay as a fighter." tt1172570,AYWEjOf5pBM,Bronson talks about the various prisons where he's been incarcerated as an inmate. tt1172570,S_FAk6ykdvw,Bronson recounts his childhood and young adult endeavors in crime and violence. tt1172570,afifn22_IR0,"When Alison tells Bronson that she is leaving him, he tries to win her back by getting her some jewelry." tt1175709,MLZ4KzVPlHM,A surprise pregnancy causes a rift between David and Katie. tt1175709,fWallK7KgrY,David tries to stop Katie from moving out after he assaults her at a party. tt1175709,XF-736UPy0k,"Katie has an awkward moment at lunch with Lauren, and then meets with a divorce attorney." tt1175709,lOwjq5Cuo-w,"David moves to Galveston, Texas and starts dressing as a woman, years after his wife's mysterious disappearance." tt1175709,WCDmhXz9Gsc,David is visibly uncomfortable as Katie celebrates her graduation and acceptance to medical school. tt1175709,sTWdAdhTfYw,Katie tries to talk to David about whether or not he wants kids. tt1175709,09-K2ec8lyc,Katie searches David's office for incriminating evidence she can use in a divorce. tt1175709,xV-Sj_rjJjE,David surprises Katie with their new apartment in the city. tt1175709,srJAamXGepU,Sanford encourages David to return to New York and join the family business. tt1175709,I7NtDM6eJq0,Katie and David enjoy a meal with the McCarthy family before David proposes to Katie. tt1175709,dw9seHSkfw8,Sanford does not approve of David and Katie moving in together. tt1175709,TLhaRe7Wvww,David meets Katie when he comes to fix a leaky sink in her apartment. tt0365485,nAZi4yusqlk,Julian recounts a bad experience while on a job in Manila. tt0365485,kpzlCDIwzEk,Danny and Bean are interrupted during some impromptu lovemaking when a tree falls on their house. tt0365485,V2j_JLlNU-I,Julian begs Danny to help him with one last assassination. tt0365485,RY_kXET2cyc,Julian surprises Danny and Bean by showing up at their house in the middle of the night. tt0365485,gbbnGtoH37o,Julian has a crisis of conscience while on assignment in Budapest. tt0365485,qCG-yxYUgJU,Julian frightens Danny by almost murdering an innocent man. tt0365485,Ks2OUiW2_QI,Julian explains to Danny how he would pull off a theoretical hit at the bullfight. tt0365485,aTJiK1i4iEQ,"While at a bullfight, Julian tells a disbelieving Danny that he's a hitman." tt0365485,tyoB7bjdzgE,Julian gets suspicious when Danny tries to make small talk at the hotel bar. tt0365485,8pvAI1uDW9U,Julian tries to get rid of a boy and his mother while waiting for a target. tt0365485,OBuai_Vg6BQ,"Julian is overcome with doubt while on his final job, despite Danny doing everything right to help him out." tt0365485,MeY7MlJJOdo,Julian turns some heads when he saunters toward the pool in just a Speedo and boots. tt0790736,EEF7cXH7BWo,Hayes sacrifices Julia to start the Staff of Jericho as Nick and Roy try to stop him. tt0790736,Bl6eouVUsCI,"Nick and Roy question a suspect who picked up a suitcase full of gold, but before they have a chance to arrest him, the deado escapes." tt0790736,bNg1XX5ofhw,"After being shot to death, Nick is given a new opportunity to serve." tt0790736,MhMqjcT7frc,"Nick, Roy and other officers try to chase down Hayes but get caught up in a shoot-out with a bunch of deados." tt0790736,YXQ11lY6v7E,"After Nick and Roy arrest Hayes and bring him to the station, they realize that it was all part of his plan to get the gold they had." tt0790736,czU3M9Ye268,"Nick is introduced to Roy, a lawman from the 1800s and Nick's new partner at the R.I.P.D." tt0790736,fEocj1eLsmg,"On Nick's first assignment to arrest a deado, Roy let's Nick take the lead. It doesn't go well." tt0790736,a_i-mCZH5bo,"Roy finds a way to stop the Staff of Jericho just as Nick finally gets revenge on his ex-partner, Hayes." tt0790736,rZlzxsrv4ow,"Detective Nick Walker and his partner Bobby Hayes lead a raid on a warehouse. During the chaos, Hayes betrays Nick and shoots him." tt0790736,5evtdZtPixQ,"Nick and Roy rush to stop Hayes, who is assembling the Staff of Jericho. Some deados in cars try to keep them from reaching Hayes." tt0443536,6UKeesKIuZA,Nicky Flippers explains to everyone how Boingo is the real culprit. tt0443536,uiuioAkuDro,Red tracks down Boingo in his secret lair in an attempt to retrieve the recipes. tt0443536,zVw5a4OjcIE,"In order to help him catch up with the bad guys, The Wolf gives Twitchy a cup of coffee." tt0443536,gGmzT-Km9-4,Granny competes in an extreme winter sports race and gets attacked by the opposing team. tt0443536,tzybulrxn3g,Twitchy and The Wolf find a shortcut around the mountain and then accidentally blow it up. tt0443536,WT1ae3uyKmI,"Red falls out of the cable car and encounters The Wolf, who has many questions about Granny and her recipes." tt0443536,yclP414CLEM,Red pays a visit to Granny and gradually realizes that The Wolf is playing a trick on her. tt0443536,mmOGHo7MYK0,Red dreams of leaving the woods to explore the world beyond. tt0443536,HUIP208nZZs,"When Red needs a quick way around the mountain, Japeth the Goat sings about the benefits of preparation." tt0443536,-rHnyOJuB0w,The Woodsman sings a song as he drives his schnitzel truck through the woods. tt0443536,V9hO8rmmaXc,"Suddenly distrustful of Granny, Red takes a walk to clear her head." tt0443536,JG7S1-DC_KY,Boingo describes his evil plan with some help from a catchy song. tt0426459,HFWG8MMnr3Q,The monsters breach the defenses of the survivors. Bloodshed ensues. tt0426459,qv-kBgAcyUA,The survivors use teamwork to get Honey Pie out of the bar and to the escape vehicle. tt0426459,z2y29L0uG-U,"The new heroine, Tuffy, tries to inspire the survivors to keep hope alive, but that moment is interrupted when the monsters make a grusome snack out of Boss Man." tt0426459,9sngqjpu920,A panicked Bozo accidentally shoots the Heroine during another monster attack. tt0426459,z_gsKwtCy4I,"When Boss Man and Bozo learn that Harley Mom is still alive, they argue about whether they should sacrifice her to the monsters as per their plan." tt0426459,CkgFvisOr_o,Beer Guy has his eye ripped out by a monster when he peeks outside to look for help. tt0426459,FEEIJNnfoVI,"The Heroine recalls her first encounter with the monsters. Later, Beer Guy loses his cool when he realizes his skin is melting." tt0426459,gt3ntYidpvs,"After hanging the carcass of a dead monster outside of the bar, a group of larger monsters create a replacement batch in swift fashion." tt0426459,VtW2yWZHaO4,"The creatures attack, killing Tuffy's son and puking some serious filith on Beer Guy." tt0426459,OF-1RqeBf7w,"The bar and its patrons are hit with a monster attack when one of the smaller creatures breaches the defenses, bringing chaos and bloodshed." tt0462519,frFwwg5GJ4A,Sergeant Moorehead reads aloud a love letter supposedly written by Roger. tt0462519,8V18ashYdDM,Roger takes out his aggression on Dr. P on the tennis court when playing doubles with Amanda and Becky. tt0462519,gJGMeacAmec,"Roger visits Lonnie, a cat loving hermit with major issues." tt0462519,A0mUARG3EzE,"As the losers engage in paintball combat, Roger comes to the rescue of Diego, Eli, and Walsh from the perverse wrath of Lesher." tt0462519,VvcANYZCseI,Dr. P introduces himself to the class and makes sure everyone knows that this is not a Tony Robbins seminar. tt0462519,ZTo-aIIxihc,"On the first day of class, Roger and the other losers get an earful from Dr. P." tt0462519,NnxqVjeZzZw,"Roger tries his best to flirt with Amanda, but Becky does her best to make the elevator ride uncomfortable." tt0462519,FAaogkawcOk,"While waiting for the arrival of Dr. P, the losers discuss what it means to receive a 'swirly' -- namely having your head dunked in a toilet and having it flushed." tt0462519,5BkF6NzmHTQ,Dr. P and a dressed up-in-drag Lesher demonstrate some lessons on how to reel in the ladies. tt0462519,2PdWkXbnArk,"Despite the impending repercussions, when Roger and the other losers receive the 'initiate confrontation' page, they all successfully initiate a confrontation." tt0462519,fqDTy6JWcqE,"As the losers celebrate at a bar, Dr. P pulls Roger aside and gives him a pep talk." tt0489237,ih2vstLiKps,Annie gives Mrs. X a piece of mind on the nanny cam. tt0489237,xsnWRnOdpS4,Harvard Hottie improvises on the date with Annie by grabbing pizza on the steps of a New York City museum. tt0489237,MSIKLnc1CSQ,Annie takes Grayer to the Museum of Natural History. tt0489237,Pr6lspmWBQs,The Harvard Hottie catches Annie with her pants down. tt0489237,rMlkN-7GRDw,"Annie goes over the list of the nanny rules, and is surprised by Mrs. X while taking a bath." tt0489237,CpdolY2GNYI,"When Grayer knocks over Annie in the park, she unexpectedly gets offered a job to be a nanny by Mrs. X." tt0489237,QznOO8Oo0Aw,Grayer chases after Annie as she drives away in a taxi after being fired. tt0489237,42YiyEjitsI,"During a big time interview, when Annie is asked ""who is Annie Braddock,"" she realizes some soul searching is in order." tt0489237,9sAv5P29YIY,"Harvard Hottie approaches Annie about a goodnight kiss, and things heat up from there." tt0489237,QkL9783wNOE,"Grayer wishes upon a star, and Annie assures him that they will always be friends." tt0489237,hBXcQhkyRE4,Annie and Lynette run into Harvard Hottie and some of his obnoxious friends at a bar. tt1979320,v8pFeR0jO38,"Niki Lauda wins the first two races, but James Hunt finally beats him in Spain. He gets disqualified, though, when it is discovered his car is too wide." tt1979320,3smxtEacf40,"Niki Lauda, now with the Ferrari team, races James Hunt again, while their wives watch nervously." tt1979320,FDDEVXimR2I,Niki Lauda has his first race since the horrible crash that left him burned and scarred. tt1979320,o0lDxz0-Ukg,Niki Lauda has his first press conference since the accident and one reporter asks an inappropriate quesiton. tt1979320,iH0GlpUQYJY,"At the German Grand Prix, a suspension arm in Niki Lauda's Ferrari breaks, sending the car flying into an embankment before it bursts into flames and is hit by other cars on the track." tt1979320,KrIUn0qTaCE,"After heavy rain, Niki Lauda calls a meeting and suggests they cancel the race, but James Hunt disagrees and sways the room to his side." tt1979320,6f24cpQ_Q3k,"James Hunt finds out that his wife, Suzy Miller, is involved with another man and wants a divorce." tt1979320,vXrH5Nk8r0U,James Hunt tells Niki Lauda that he only won the last race thanks to the car he was driving. Niki responds by telling James why he will never win. tt1979320,DdG74P7j6h8,Niki Lauda proves to Marlene Knaus that he is a race car driver when her car breaks down and they are picked up by two of his fans. tt1979320,EBu1PyU04FE,"In a Formula Three race, James Hunt is almost beaten by a newcomer named Niki Lauda." tt0884328,BgfcwELYxUA,Norm gets attacked by massive tentacles that drag him into the mist. tt0884328,OH1mI4-LqHs,Mrs. Carmody incites the mob to kill Private Jessup as a human sacrifice to what she says is the abomination brought about by the wrath of God. tt0884328,858FWgtLMZU,Pterodactyl-like creatures and giant bugs invade the grocery store. tt0884328,AhaulXxlqCQ,"The group encounters an enormous creature, hundreds of feet tall that dwarfs and bounces their SUV as it walks by." tt0884328,kjJUffVZtDs,"A Biker volunteers to try to reach a truck in the parking lot, with a rope tied around his waist." tt0884328,GsbHL_lQy44,Ollie shoots Mrs. Carmody when she tries to have young Billy Drayton killed as a human sacrifice. tt0884328,EEPTRC2OP4w,"While trying to retreive medical supplies from the nearby pharmacy, the group finds an infestation of monstrous spiders." tt0884328,fy9XNAkyfoc,David Drayton and the gang try to make it to his truck in the misty parking lot. tt0884328,CRnadHP5JOo,The mist descends upon the small seaside town as the residents hide out in the local grocery store. tt0427309,yIj06I32Gao,Tolson puts his students through their paces as they compete for a spot on the Wiley College debate team. tt0427309,k95b72QHu60,James informs Dr. Farmer that he has been chosen as an alternate for the debate team. tt0427309,xsrkNeInaiw,Henry tells James to prepare to take his place for the debate at Harvard. tt0427309,aVv3r2pUtFo,"Henry, James and Samantha arrive in Boston and get a glimpse of the venue for their debate at Harvard." tt0427309,YmoTJu2iOfc,Samantha rises to the challenge when asked to debate whether or not blacks and whites should attend college together. tt0427309,XhrT25xehqs,Henry puts down his scripted remarks and speaks from the heart to win a debate for Wiley College. tt0427309,HEB1OaFSaRg,Tolson questions the debate team from a row boat as they recite their answers in unison. tt0427309,_yotZXdH09k,Dr. Farmer confronts Tolson about the rumors surrounding his Communist sympathies. tt0427309,z0MOAFFBXEM,Tolson and the debate team stumble upon a lynching on the back roads of Texas. tt0427309,fNNMKJ1f9JM,Tolson recites a poem from Langston Hughes and inspires his students with news of a revolution in Harlem. tt0427309,YaSPWpKQzKE,Henry challenges Tolson to tell the debate team about his father. tt0386032,iKn6FEEToy4,Michael Moore finds the one place in the United States that has universal healthcare: Guantanamo Bay. tt0386032,dLgbWZYjYfU,"Patients who cannot pay their hospital fees are dumped by LA area hospitals in front of the Los Angeles Mission, discarded like garbage." tt0386032,ifPpI0fXMlw,"Former British Parlimentarian Tony Benn articulates why democracy is a threat to those in power, and Michael Moore illustrates how those in power exploit democracy in the United States." tt0386032,PWjl2vignic,"Michael Moore explores the Canadian healthcare system to see if it's as ""evil"" as it's made out to be by politicians in America." tt0386032,QtJwMKMz6-M,"Michael Moore interviews Becky Malke, a health insurance salesperson, who breaksdown when she recalls the time she had to decline a family health insurance because of their pre-existing conditions." tt0386032,PA3kETvUXJg,White House tapes of Richard Nixon reveal the origins of managed care in the United States. tt0386032,2GSGR3yaFss,"The insurance industry has had a long-running narrative about the alleged ""dangers"" of universal healthcare." tt0386032,irNr2fMIvTQ,Michael Moore takes a group of 9/11 first responders to Cuba to get the healthcare they cannot receive in the United States. tt0368794,iX5_-FORI1I,Jude answers questions from the journalistic establishment in England. tt0368794,7NjHdqTSahU,"Arthur lays out his ""seven simple rules for a life in hiding.""" tt0368794,0H0br7XdsYY,Jude comes across Allen Ginsberg riding on a golf cart. tt0368794,F_NkBmFzs4s,"In the early 1960s folk scene, Jack -- labeled the ""Troubadour of Conscience"" -- is fondly remembered by Alice Fabian." tt0368794,c4S5JKBUYHs,"At the New England Jazz & Folk Festival, Jude stuns the folkie crowd by plugging in and going electric." tt0368794,3HtWFx3oHTo,"Passing through the old, weird America of Riddle County, Billy comes upon a funeral, and the sounds of the song ""Goin' to Acapulco.""" tt0368794,pNo2v1jE8R4,"Jack Rollins transforms into a born-again Christian in the form of Pastor John, and declares his faith to his congregation with the song,""Pressing On.""" tt0368794,F2r8a3juyr0,"While hitching a train to his next locale, Billy talks about the notion of ""freedom,"" as Bob Dylan blows his harmonica." tt0368794,j9JfUXYQY2s,"In the autumn of 1964, Robbie and Claire fall for each other." tt0367959,jbXNiAQHn_A,"Lady Murasaki trains Hannibal in the martial arts, and he puts his knowledge to the test when a butcher insults her at the market." tt0367959,WVE-c9ghcww,Hannibal corners Kolnas and threatens to kill his children if he does not reveal the location of Lady Murasaki. tt0367959,sKnZBUh-Lx4,"Hannibal is nearly killed while seeking revenge on Grutas, but a well-placed time bomb enables him to escape." tt0367959,iMIWQRhrAmU,Hannibal traps Milko in a cadaver tank and lets him drown in the embalming fluid. tt0367959,5Ji_OS5Q17s,Hannibal incapacitates Milko with an injection after he breaks into his laboratory with a gun. tt0367959,Z8GFmshpZ0I,Hannibal tortures Dortlich for information on the whereabouts of the militiamen responsible for killing and eating his sister. tt0367959,uMp_5iP13r0,Lady Murasaki discovers the severed head of the butcher and decides to help Hannibal hide his involvement in the crime. tt0367959,N7FKW_RLs3c,Hannibal slaughters a butcher who refuses to apologize for making an anti-Japanese remark to his aunt. tt0367959,D-NH8NiKb54,Hannibal and MIscha watch as their lodge is destroyed and their parents killed during a battle between a Russian tank and a German bomber. tt0367959,rKfcW5cTU6o,Hannibal realizes that the starving Lithuanian militiamen are planning to eat him and his sister Mischa. tt1817273,FCMMjNlNSuc,"After his son is arrested for drugs, Avery Cross goes to get him out of jail, only to find out that the kid he was hanging with and was getting the drugs from, is the son of the robber Cross shot and killed years ago." tt1817273,Uv4Wpz-N9Gc,"After finding out how his father was shot and killed, Jason takes Avery Cross hostage into the woods." tt1817273,bHMka69DJZ4,"After finding out about corruption in the police force, Avery Cross records a fellow officer asking him to remove cocaine from the evidence locker Cross supervises for use in a separate case. Cross uses the recording to turn in a bunch of fellow officers and get himself a position as an assistant district attorney." tt1817273,rry383W_mJU,"After recovering enough from a shootout with a bank robber, office Avery Cross starts seeing a therapist where he admits to feeling remorse about shooting Luke. He especially feels this upon discovering the robber had a son, as Cross has an infant of his own." tt1817273,zS6OX5d-ZYM,"Luke does one last robbery, but it doesn't go as planned. The police are on to him the second he leaves the bank and a chase ensues." tt1817273,qs0Fyp2bqsA,"After a bank robbery goes wrong, Luke is pursed into the bedroom of a stranger's house by Officer Avery Cross." tt1817273,EF2WHYOjGhE,"Luke buys a crib for his son and brings it to Romina's boyfriends house and starts building it. When Romina and Kofi arrive, they are not happy to see Luke. A fight breaks out and Luke hits Kofi with a wrench." tt1817273,tCLO2N6IqJc,"Luke spends some time with his ex-lover, Romina, and his child, Jason." tt1817273,90vUFwUp6mw,"Needing more money to support his new family, Luke and his friend Robin decide to rob a bank. Thanks to Robin's planning, it goes well." tt1817273,qc1k6uf-Mbg,"Luke Glanton visits his ex-lover, Romina, after finding out that he has a child she never told him about." tt0373883,w9WoH1MlgvE,Michael Myers rudely interrupts Big Joe Grizzly during his bathroom break. tt0373883,20gzgK-Z5Yw,Michael Myers runs into a few bullies in the bathroom. tt0373883,YLID2odh-WA,Michael bashes in Steve's head with a baseball bat. tt0373883,lpgQU4piAYw,"Michael Myers stalks and kills his first victim, Wesley Rhoades, who was bullying Michael at school earlier." tt0373883,BRHFpsNB1PI,"Michael Myers brutally murders his mother's boyfriend, Ronnie White, on Halloween night." tt0373883,GnRb5AHOcuc,Michael Myers dons his infamous mask and murders his sister Judith. tt0373883,hwN_h9eiy_0,Dr. Samuel Loomis has a talk with Michael and evaluates his mental health. tt0373883,gJDosSrvlJ8,Michael sinks deeper into his dark abyss and murders Nurse Wynn in cold blood. tt0373883,5yCSPi05MyA,Michael Myers breaks into the Strode residence and murders Mason and Cynthia. tt0373883,ys16MvJ2XVU,Michael Myers stalks and kills Bob Simms. tt0848557,QfS7XUWUgL0,Jason tries to make a scary movie despite the limitations of shooting on a film school budget. tt0848557,dEgTjVHmjdc,Debra becomes disgusted with herself after she films Eliot killing a zombie. tt0848557,AUDCrt3eXyc,"Debra returns home, only to find her family reanimated." tt0848557,Jb0_V7JCbbk,Jason refuses to join the others in the panic room and runs into a zombified Ridley. tt0848557,eurjNgZtg-g,A bottle of acid comes in handy when Tony is cornered in the warehouse by a zombie. tt0848557,boaKhP_0KwA,Samuel sacrifices himself with a farm implement for the greater good. tt0848557,q3CTxWUxHUg,"Jason and his friends come across Samuel, a deaf Amish farmer with an old-fashioned method for killing zombies." tt0848557,3-16Bov2JfQ,Debra turns the tables on Jason by forcing him to answer questions on camera. tt0848557,-s0ov88pD0s,Debra gets creative when faced with a zombie surgeon and a zombie nurse. tt0848557,FuzefcAKLmY,Mary is forced to drive on through when a reanimated state trooper and several motorists appear in the road. tt0848557,iL1JlXnbnt0,Jason visits a panicked Debra in her abandoned dorm. tt0848557,elng_KRvuqY,"Brody and Bree file a routine report on a murder/suicide for the local news, but the situation quickly turns from bad to worse." tt0421082,ani6MlnXj2g,"Ian goes to work at the employment agency, wearing his emotions on his jacket." tt0421082,nBnICWrKboM,Ian confronts Tony Wilson and challenges him to book Joy Division on television. tt0421082,WbsZeLsYgGI,"Joy Division performs ""Transmission"" during their first television appearance." tt0421082,Nus1mepMrDc,"Inspired by the death of a fellow epileptic, Ian writes ""She's Lost Control.""" tt0421082,RP941IJJEx4,"Ian records the vocals for ""Isolation"" but the bleak lyrical content seems to fall on mostly deaf ears." tt0421082,qFbjSxE1xzU,"Ian suffers an epileptic seizure during a performance of ""Dead Souls.""" tt0421082,JDC1IK7TWZA,Ian describes his feelings of alienation in the face of the band's growing success. tt0421082,IK5-KZnzxwA,"Joy Division performs ""Candidate"" from their album Unknown Pleasures as Annik watches from the crowd." tt0421082,IixTpVt9Enw,Annik interviews Joy Division and feels an immediate connection with Ian. tt0421082,s6WV534Sfss,"Ian admits to Deborah that he's fallen out of love with her, and Joy Division records ""Love Will Tear Us Apart.""" tt0421082,yM7iQ_plcpA,"With Ian unable to go on stage, Rob pays Alan from Crispy Ambulance to take his place, with disastrous results." tt0421082,0dsEkpDiwBQ,The members of Warsaw take the stage for their first live performance. tt0790636,nXmtkGrPEuU,Ron interrupts an FDA meeting for the public. tt0790636,1p8KG7IdzPM,"After the club runs out of funds, Rayon sells her life insurance policy and gives the money to Ron." tt0790636,jKGudyrV0v4,"After a heart attack, Ron is confronted by his doctor and the FDA, who have learned about the alternative medicines he's been using and selling." tt0790636,SqpBUHMR99M,"While at the grocery store with Rayon, Ron runs into an old friend who disrespects Rayon." tt0790636,Vt-VF8GzQvU,Ron reluctantly goes into business with Rayon. tt0790636,SrbO1c8QBSg,Ron poses as a priest to smuggle unapproved drugs to the U.S. from Mexico. tt0790636,Aqo9z6lp4GY,"During a hospital stay, Ron meets Rayon, an HIV positive drug addict." tt0790636,73b7dIqGdUg,"After being diagnosed with AIDS, Ron goes to the local bar to find himself ostracized by his friends." tt0790636,WpZ4kY3AJWU,Ron visits Dr. Eve Saks and asks for the new drug AZT. She explains that all the drugs he wants aren't FDA approved. tt0790636,X32pSJrgF3Q,Electrician and rodeo cowboy Ron Woodroof is diagnosed with AIDS and given 30 days to live. tt0795493,e6E5v6jLGpM,Terry breaks the news to Ian that he wants to turn himself in. tt0795493,STKWsvhZSjc,Ian and Terry work up the nerve to kill Martin Burns in cold blood. tt0795493,haN_gCgewXQ,Ian and Terry panic when their target Martin Burns comes home and he's not alone. tt0795493,PXetdfRsmwk,Ian is overcome with jealousy when he sees another man leaving Angela's place early in the morning. tt0795493,EfT-5v5YIt4,"After Ian and Terry beg him for money, Uncle Howard asks them to do the unthinkable by committing murder." tt0795493,YwqlCZ5mCdg,"Terry admits to Ian that he lost 90,000 pounds in a card game." tt0795493,dlhTO_Pqq9s,Ian stops to help Angela with a little car trouble. tt0795493,qAZcl9BFd38,Ian and Terry try to negotiate a better price with a boat owner. tt0795493,AQUEnmFhk7s,Ian takes Angela out for a drink after she gets him a ticket to her play. tt0795493,-CyRDSP_b5U,Kate meets with Ian about Terry's deteriorating mental health. tt0450385,CR8tgmpmgIk,Mike makes a disturbing realization when he visits the post office and discovers he's really still in Room 1408. tt0450385,HuSM3bZf0R4,"Mike smashes a painting in Room 1408, causing it to flood with water." tt0450385,RL6JZfQq_qI,"As Room 1408 freezes over, Mike contacts Lily through his laptop and learns that the police have found the room to be empty." tt0450385,-IZLCY2_esQ,"Mike attempts to escape via the air duct, but a reanimated corpse blocks his path." tt0450385,8BNvCu2iqmM,Mike climbs out on the window ledge and discovers that all the other windows on the hotel are gone. tt0450385,yeMemdNO_2Y,"When Mike is unable to open the door, he looks to another building for help and sees only himself." tt0450385,dEHht_iK6qY,A faulty alarm clock causes Mike to panic and injure his hand on the window. tt0450385,xK_P_l75a7Y,Mike arrives in Room 1408 and is disappointed by its banal appearance. tt0450385,lM8xJqeAEGI,Olin makes one last ditch effort to stop Mike from staying in Room 1408. tt0450385,4MyVJn56UFY,Mike reveals his disbelief in the paranormal at a poorly-attended book signing. tt0450385,CaGEzKJKMTs,"As a last resort, Mike sets fire to Room 1408 and watches as it burns." tt0450385,--b-8xt2PeE,Olin tries to prevent Mike from staying in Room 1408. tt1266029,9knEvoHQfEw,"Paul McCartney introduces George to John, and he immediately joins the band." tt1266029,9FqZ2BMv_RU,"John, Paul, and George perform the song ""In Spite of All the Danger"" at a recording session" tt1266029,N5L2PXUdQg0,"At his birthday party, John inquires into his father's whereabouts to his mom Julia." tt1266029,a1YFvMDu0M8,"John debuts his new band, The Quarrymen, at an afternoon picnic. Paul McCartney happens to be in attendance." tt1266029,x_9lcdX85Pg,Paul McCartney impresses John during his audition to be in The Quarrymen. tt1266029,NTGOA6lPP5w,"While practicing with Paul McCartney, John tries on a pair of glasses worn by Buddy Holly." tt1266029,N6CNJBPPVyk,Julia teaches John how to play the banjo. tt1266029,7Zx5tpFmv9M,"John informs Mimi that he's off to Hamburg, Germany with his new band, later known as The Beatles." tt1266029,-34RUyP-DH8,"Julia and John listen to the Screamin' Jay Hawkins version of ""I Put a Spell on You.""" tt1266029,G6tC5Mp9NVA,Julia and John spend a fun day together on the boardwalk. tt1007028,Gqbrt_dz_TQ,Zack has a moment of inspiration as he comes up with the idea to shoot the porn film in the coffee house. tt1007028,uq4bRVYBdts,Zack and Miri discover the special skills of Lester the Molester and Bubbles. tt1007028,Cg5dSosn_fk,Zack and Miri hold auditions for the porno. tt1007028,zZab0Lq7_vU,"Delaney takes offense to Mr. Surya's request to work on ""Black Friday.""" tt1007028,QKq7tIL9aOQ,Zack and Miri announce the porn title of Star Whores to the cast & crew. tt1007028,4iNd-1IPrGI,"When Delaney brings Zack by the house, Delaney's Wife acts quite surly and aggressive towards him in front of her house guest." tt1007028,0zfQoHORIFc,"At the high school reunion, Miri hits on Bobby Long" tt1007028,_IdlZCqJ8kk,"Miri is twice embarassed at the high school reunion when she learns that Bobby Long is gay, and that she is very popular on the internet wearing granny panties." tt1007028,CpFUyd_7XIM,Zack meets actor Brandon at the reunion. Brandon acts in male gay porn in Hollywood. tt1007028,TPESLZ0sGak,Zack and Miri finally do it on the set of the porno film Swallow My Cockuccino. tt1007028,N-MWa0s5iFQ,Zack and Miri sign in to their ten-year reunion. tt0976051,6vjDZQtAKuc,Young Michael Berg reads to Hanna. tt0976051,NzbdfpYUxNM,Young Michael Berg reads excerpts of Homer's The Odyssey to Hanna. tt0976051,lVZNAyNWcgs,Young Michael Berg is stunned to discover that Hanna is on trial for participating in war crimes. tt0976051,t3XiTgsmyZc,"Full of shame over her illiteracy, Hanna decides to take full accountability for the actions that happened during the death march." tt0976051,IjtqQ-ojgcU,Professor Rohl teaches the class the difference between morality and the law. tt0976051,RHasf1LEG3Y,"Michael records books on tape for Hanna who is in prison, so he can continue to read to her." tt0976051,wrRkC8RYqMI,Young Michael Berg gets caught staring at Hanna as she gets ready for work. tt0976051,FmOvzaWdpXI,"Hanna is interrogated by the judge over her accountability while working at the concentration camp, Auschwitz." tt0976051,1UOLqmhi3AE,Michael visits Hanna in prison for the first time in twenty years. tt0976051,ESkmmFHikgg,"Michael visits Ilana Mather, a survivor of the concentration camps, to offer her the money that Hanna left in her will." tt0443559,GaNKOew-TLE,Blackbird grows impatient with Richie and his incessant talking. tt0443559,1nmWEA68h6U,Richie forces Carmen to undress and then forces a bullet into her mouth. tt0443559,I-wCCN3yowU,Richie torments Carmen by spraying her with buck lure. tt0443559,jxID8oHnCW0,Carmen returns home to find Richie and Blackbird waiting for her. tt0443559,xHCQd9zv3ak,"In order to leave no witnesses, Richie shoots Donna as he and Blackbird prepare to leave town." tt0443559,oZnFQrIavwc,Richie tracks Wayne down in a convenience store and shoots the place up in an attempt to kill him. tt0443559,aTUTnjUBitc,Wayne and Carmen unwittingly witness a crime when Richie and Blackbird attempt to shake down a real estate agent. tt0443559,RKui0n6Z7cU,"Richie pulls a gun on Blackbird in order to get a ride, unaware that his victim is a hitman." tt0443559,F1hMkfopHfc,Richie is driven mad with jealousy when Donna shows Blackbird her Elvis memorabilia. tt0443559,huCdZLvSyBI,Richie kills Lionel in cold blood after he and Blackbird get a lead on their witness. tt0443559,-HI25-gfvxE,"Blackbird pays a deadly visit to Papa, who accepts his fate with dignity." tt0403702,F4dOAIo0rrM,Nick gets in a heap of trouble when Francois causes a fiery explosion in Berkeley. tt0403702,TAX4AOdqFD0,Nick gets into bed with Sheeni with a little assistance from his bad boy alter ego Francois. tt0403702,wCHqch4ILBU,Nick poses as a girl to get in to see Sheeni and profess his love for her. tt0403702,gBjC4SgMKDA,Nick misjudges the depth of a lake and bungles an attempt to fake his own death. tt0403702,xf3htc2iZ9Y,"Nick makes a move on Sheeni, who shoots him down because Vijay and Taggarty are in the room." tt0403702,mEPcdSaEXEo,Nick creates a bad boy alter ego named Francois Dillinger in order to impress the love of his life. tt0403702,qmzYvuFtlM8,Nick can't hide his excitement when Sheeni asks him to apply suntan lotion to her exposed areas. tt0403702,h5Qri9_giqQ,"Nick describes life with his mother Estelle, his father George, and his friend Lefty." tt0403702,MfBr9ylnuX0,Nick and Vijay concoct a story in order to get a ride from Mr. Ferguson. tt0403702,y9d6Tblt1kE,Nick catches Sheeni reading his journal when they go for a hike in the woods. tt0403702,TUw1XgBLILA,"Nick and Vijay visit Sheeni at her new school, where Vijay practices his French with Taggarty." tt0403702,hAnmYHMCkRQ,"Nick, Estelle and Jerry return home to find Jerry's car in the living room." tt2184339,_j_ufc9wHmY,The purgers break into the Sandin house and try to kill the family members. tt2184339,RyotYUKsVyw,Purgers try to break into the Sandin house and the family prepares to fight back. tt2184339,ZEfbID-2TlQ,Mary keeps her neighbors prisoner until the Purge is over. tt2184339,_qfIfbYkBUk,"After James is wounded, the leader of the purgers comes forth to finish the job. Then the neighbors arrive with another surprise." tt2184339,l51fnzJxYUE,James defends his home from the purgers. tt2184339,Zo70vB9nubo,"James finds the stranger holding a gun to his daughter, Zoey." tt2184339,QBMv724lzZI,"While looking for the stranger in his house, James Sandin is requested at the front door by the leader of the purgers." tt2184339,e3mwmwPhr08,"After their son let in a stranger during the Purge, James and his wife find a masked killer at their door asking the family to release the stranger or die." tt2184339,5tSi-wyuccs,"When James goes to investigate the disarming of the security system, he is confronted by his daughter's boyfriend, who snuck inside the house and intends to kill him." tt2184339,vbUTbqwKtEE,The Sandin family prepares for the Purge and locks down their home. tt0898367,oHeh8nSghcE,"The Man and Boy finally reach the coast and discover that it's as lifeless as the rest of the world. Later, the Boy becomes ill and the Man takes care of him." tt0898367,aDCXE4Np1OI,The Old Man and the Man discuss whether God can exist in a world so desolate and forsaken. tt0898367,OoSOmcTZ1ok,"The Man remembers his last moment spent with his wife, before she went off to end her own life." tt0898367,BgUQldQC440,The Man shoots a Gang Member after the thug takes the Boy hostage. tt0898367,ByLhxX3WUxY,"The Man hunts down the Thief, who had earlier robbed him, and takes all of the Thief's belongings at gunpoint." tt0898367,WEP25kPtQCQ,The Man narrates the hoplessness of existence as he and the Boy try to live in a dying world. tt0898367,qf2p-tkn7cE,The Man and the Boy discover captives hidden in a cellar and quickly realize that these prisoners are food for a roving band of cannibals. tt0898367,5EEMxJOxXr8,"The Man and the Boy enjoy the simple pleasures of hot meal, a bath, and clean clothes." tt0898367,0yKd37DXIVQ,The Man and the Boy witness the slaying of an innocent woman and her child before enduring a sudden earthquake in the middle of the forest. tt1742650,heeS8J_KFt4,Kate apologizes to Richard for not being around more and for letting work dictate her life. tt1742650,ccyYHEuCHKE,Kate and Richard argue about the dedication to her work life at the expense of her family life. tt1742650,As70qOtE3Cg,Kate and Allison talk about how Jack signs his emails. tt1742650,fcnYQxHinu0,Clark gives Kate good news during a business meeting that her proposal was picked. tt1742650,DX3oTDhDOXE,"Kate discusses juggling her home life with her professional life, all the while making sure to keep up the proper demeanor." tt1742650,jawZFND4Bfc,Kate finds out that her whole family has lice just as she walks into a business meeting with Jack Abelhammer. tt1742650,vfutImUbN7M,Momo reveals to Kate that she is pregnant. tt1742650,97wa5FUtuG4,Kate checks on her kids before lying in bed making a mental list of all the tasks she needs to get done. tt1742650,ue_EAEC12X0,Kate tries to make a store bought pie look homemade for the school bake sale. tt1742650,Xh-8LVuPArw,"At the bake sale, Kate and Allison run into Wendy and Janine, who they refer to as 'The Momsters.'" tt0497465,RlOcas4K61c,Juan Antonio invites complete strangers Vicky and Cristina to fly with him to Oviedo. tt0497465,E5aXYsk787U,"After a day of sightseeing, Juan Antonio floats the idea of sleeping with Vicky and Cristina." tt0497465,Rd87CKvUHjU,Juan Antonio and Cristina finally consummate their desires. tt0497465,pTqtWm_DTKk,Maria Elena mocks Juan Antonio for falling for two American tourists. tt0497465,ga5qeKd7oxM,Juan Antonio and Cristina share an awkward breakfast with a disapproving Maria Elena. tt0497465,nOpwufXdkIk,Cristina is disturbed to find Maria Elena giving Juan Antonio a massage. tt0497465,BtTX4ExS5sk,Cristina and Maria Elena bond over their love for photography. tt0497465,gNSs_gF1T_Q,Cristina tells Juan Antonio and Maria Elena that their living arrangements are untenable. tt0497465,ElD6Vos6Jbk,Vicky has a close call when Maria Elena pulls a gun on her and Juan Antonio. tt0497465,bO7iMQGQjhY,Cristina recounts her experience of sleeping with Maria Elena. tt0497465,NnrweogniK0,"After listening to some Spanish guitar, Vicky lets down her guard and lets Juan Antonio kiss her." tt0497465,ntNMz754DEg,"Cristina stops by for a quick drink with Juan Antonio, but he correctly surmises she's there for something more." tt1483013,-QOahlrO8Yo,"As the human survivors prepare to execute their plan, the base is attacked by three drones." tt1483013,--Jiv5iYqT8,Jack and Julia discover that the reprogrammed drone with the bomb is damaged. There is only one thing left to do. tt1483013,k2QekuUhgIM,"After crashing in the radiation zone, Jack meets Tech 52, an exact copy of himself." tt1483013,Boq7rlWzVRI,"After being captured by ""Scavs"", Jack meets Malcolm Beech who tells him that thay are not aliens, but human." tt1483013,lxKvt5Z9Bok,"While attempting to repair a downed drone in the underground ruins of a building, Jack Harper is attacked by Scavs." tt1483013,vUuAbRVVZwA,"At the ruins of the Empire State Building, Julia reveals that she was Jack's wife before the war." tt1483013,GHKtN9jPK1w,Jack enters the Tet and finds Beech while Julia awakens at Jack's lake house. The two men trigger the nuclear bomb and destroy the Tet. tt1483013,nDBs6ywP9ZE,"Jack investigates the crash of what appears to be a spacecraft from before the war. He finds humans in pods, but before he can do anything, the drones show up and start killing the survivors." tt1483013,7mGr4Uc7ebA,"A jealous Victoria refuses entry to Jack and Julia when they return to the Tower and informs Sally that she and Jack are no longer an ""effective team""." tt1483013,o1_U-Iem8fA,"Jack and Julia try to flee in his ship but are pursed by drones, they defeat a few of them but still end up crashing in the radiation zone." tt0426592,kk14nhuvBIM,"Rick Riker uses his new-found superpowers to save an old woman from a runaway semi-truck. Well, kinda." tt0426592,SyNzTdVQIno,Mad hijinks ensue when Rick Riker starts to manifest his superpowers at the school science fair. tt0426592,T2Qc-56h_J0,"When Rick Riker accidentally sprays himself with animal pheremones, he finds himself sexually assaulted by a bevy of wild beasts." tt0426592,vMUONm4ihP0,"Professor Charles Xavier takes Rick Riker to his school for superheroes and introduces him to other ""gifted"" people with their own unique superpowers." tt0426592,tw6zV9CtczA,Rick Riker reveals to his Uncle Albert that he has superpowers. tt0426592,95SKqMz1Wdg,"Having become The Dragonfly, Rick Riker meets the Human Torch, who ends up rather surprised that he can light himself on fire." tt0426592,Xob7w4hR5Rw,"Rick Riker, dressed as The Dragonfly, battles the supervillain The Hourglass, aka Lou Landers." tt0426592,MpFrgOc9KLU,"Rick Riker finally gets a kiss from the lovely Jill Johnson, but only as The Dragonfly." tt0426592,gFb8e3uaeIg,"Caught off-guard, Rick Riker does his best to hide from Lou Landers while simultaneously trying to hold in his piss." tt0426592,OhO7kPNJJn0,"After Jill Johnson takes a bullet for Rick Riker, The Dragonfly confronts The Hourglass in the final showdown." tt0426592,R84dKkPAVpg,A tender moment between Jill and Rick is shattered when Aunt Lucille lets loose with gas from her ass. tt0362120,ZcD75L4QLrM,Cindy uses her limited knowledge of Japanese to communicate with a ghost boy. tt0362120,STrE338cTBk,Tom appears with Oprah to announce his all-consuming love for Cindy. tt0362120,fzRk8ovZ06s,"Cindy, Brenda and Tom wake up inside the tripod, attached to some gruesome torture devices." tt0362120,iFm-KZgioX8,President Baxter Harris gives a speech at the United Nations and accidentally destroys everyone's clothes. tt0362120,L3VyRESBqek,"Henry decides to let Cindy and Brenda stay in the village, provided that they never leave." tt0362120,1YmOfCZ3ZIM,President Baxter Harris receives word that the planet is under attack from aliens but fails to respond to the gravity of the situation. tt0362120,EzLXmzcs1Ho,Cindy recalls the tragic fight that ended her boxing career. tt0362120,vuR9pDhXPqk,Tom grabs the wrong pills during a suicide attempt and suffers a hard fall. tt0362120,HLnNY2KiQEQ,Shaq needs to make a free throw to save himself and Dr. Phil from a deadly trap. tt0362120,94cC4uVE_HI,Mahalik and CJ recall a fishing trip that turned surprisingly romantic. tt1077258,S58poUaNwiw,"After Abby adds to his testicle collection, Lt. Muldoon decides to renegotiate his deal." tt1077258,A1p4HnyG3Rs,Dr. Dakota Block administers a series of shots to Joe to prepare him for amputation. tt1077258,rgVm_KasYQc,Tammy has some car trouble but soon realizes her problems have just begun. tt1077258,VuVAsd9jMjo,Wray creates a makeshift leg for Cherry when he finds her in the hospital. tt1077258,bMg6mfghJHw,Dr. Dakota Block makes the mistake of leaving her son Tony in the car with a loaded gun. tt1077258,6WGP7utz8uA,Wray and Cherry make sweet love despite the challenges of her new wooden appendage. tt1077258,ILbPhe1Wg9U,Rapist #1 compliments Cherry on her resemblance to Ava Gardner and threatens to alter her looks forever. tt1077258,z7Zevt3riNc,Lt. Muldoon explains how he killed Osama Bin Laden before he succumbs to the zombie plague. tt1077258,8fRq0mDBzi4,"Wray watches with pride as Cherry fulfills her one-legged, zombie-slaying destiny." tt1077258,YC-2vmyKkV4,"When Rapist #1 forces Cherry to dance, she gives him an eyeful." tt1077258,XYiiAHc3CXQ,"Wray and Cherry team up to slaughter zombies, as Abby meets a violent end." tt1077258,TsyLQX9NH18,"Sheriff Hague orders everyone to give their guns to Wray, as Deputy Tolo gets torn to pieces." tt1411250,_YfbSVO6nz4,"At the Merc Station, a chained up Riddick flirts with Dahl while waiting for the storm to reach the station. Johns tries one more time to get Riddick to confess what happened to Johns' son." tt1411250,tuq5JMwWRSg,Riddick and Johns fight through mud demons to get back to the ship. tt1411250,dt38_iS6u64,"Riddick, Johns and Diaz recover the power cells that Riddick had buried, but Diaz betrays them both." tt1411250,hV9ArqfKqw0,"Johns decides to let Riddick loose, but is stopped by Santana. Riddick keeps his promise to kill Santana with his own blade in five seconds." tt1411250,jZYr6ALcDy4,"When the storm finally reaches the merc station, large numbers of mud demons emerge from the ground and attack the station." tt1411250,cTOlg3u_fZk,"Riddick gives Johns and Santana a deadline to take the deal he is offering, but the conversation turns out to be an ambush." tt1411250,mnEpL-H7pms,"Both merc teams come back to base to find that Riddick has been there and left a note on the locker containing power cells to the ships. Santana and Johns are suspicous that the locker has been rigged, but it has to be opened." tt1411250,tjrB1BtTnB8,Santana and his merc crew are on a night watch when Riddick attacks. tt1411250,f15ob_n_tfM,"To get to a passage to a better area, Riddick has to fight poisonous, scorpion-like mud demons." tt1411250,ifkFfWmEc_Q,Riddick arrives on a desolate planet where a group of Necromongers attempt to assassinate him. tt1028528,mILfbvj0xtk,Dov and Omar try to pick up the girls as Stuntman Mike offers a pretty Pam a ride home. tt1028528,F37WD6OCu7s,"On the car ride over to Guero's, Jungle Julia, Shanna, and Arlene discuss hooking up." tt1028528,kWz4LQXH6bE,"Stuntman Mike gives Pam a ride in his car. The catch is, the car is only death proof if you're sitting in the driver's seat." tt1028528,tNGuXckF_sc,"As the girls rock out to Dave Dee, Dozy, Beaky, Mick & Tich on the radio, Stuntman Mike plays a fatal game of chicken plowing his death proof car straight into theirs." tt1028528,xvOaMA9l4Sg,"Zoe plays the dangerously reckless game known as ""ship's mast,"" with Kim as the driver." tt1028528,Mq0xthZjW-s,"With Zoe stuck on the roof playing ""ship's mast,"" Stuntman Mike in his ""death proof"" car rear-ends the Dodge Challenger, catapulting into action a high-speed adrenalized chase." tt1028528,ee6jqUkxkZs,"While parked at a roadside conveinent store, Stuntman Mike takes the opportunity to unsuspectingly lick Abernathy's feet." tt1028528,QBps5R-4JrY,"Jungle Julia texts back-and-forth with her elusive boy toy, and Warren sends over a round of Chartreuse shots for the table." tt1028528,aSZoCaL7HIo,"Full-on revenge is taken on Stuntman Mike by Kim, Zoe, and Abernathy as they t-bone his ""death proof"" car and then beat him to a bloody pulp." tt1028528,TIP0eokPc5c,Arlene gives a lap dance to Stuntman Mike. tt0281322,NUOag7luIOE,George 'Iceman' Chambers challenges Monroe Hutchen in the cafeteria. tt0281322,mv3qeSxmp68,'Ratbag' makes the mistake of disrespecting 'Iceman'. tt0281322,_Nz64htsk9I,"Darlene Early evaluates Monroe Hutchen in solitary confinement, who reveals a surprisingly sound worldview." tt0281322,MmIk10arVaI,"'Iceman' turns down an ""offer"" from Saladin, which has dire consequences." tt0281322,7xSB_efH2N0,"The prisoners riot over their hatred for 'Iceman', forcing Mercker and the other guards to intervene." tt0281322,5kopF-bCBC8,"When the Warden threatens to cancel the boxing match, Mendy tells him a story of some significance." tt0281322,EqDntjV9GIY,The fight for glory between Monroe Hutchen and George 'Iceman' Chambers begins! tt0281322,01tx72R0gP8,"Jim Lampley interviews George 'Iceman' Chambers, who isn't too worried about his prison sentence." tt0281322,z67zZuCIL-s,"'Chuy' and Mendy try to talk Monroe into fighting 'Iceman,' but he's got some pretty strong demands." tt0281322,j85FRIQigrg,The final showdown between Monroe and Iceman. tt0281322,Z1N_U1c-fUo,Monroe lays the hurt on Vern Van Zant. tt0281322,fkC99C2w4-o,George 'Iceman' Chambers reflects on his last fight and on what landed him in prison. tt0118643,coWFeBI9XoQ,Gabriel breaks out of hell and finds himself back on Earth. tt0118643,nZWo6dP2zVw,"The angel Gabriel, back from hell, tries to get information from a monk who has visons." tt0118643,KKiVFZcwx6g,Gabriel goes to a dry cleaning store with hopes of finding the name of the woman he's after. His lack of experience with computers makes this difficult. tt0118643,SxCUyc_brKA,The angel Gabriel asks a suicidal teen named Izzy to help him on his quest. tt0118643,KvAVAKE_pRQ,"Gabriel and his helper, Izzy, chase down a human woman named Valerie that is pregnant with the child of an angel." tt0118643,QOWkXpnwlek,The angel Gabriel gets himself a gun and a radio and asks Izzy about them. tt0118643,aumRE2Eq88o,"After the angel Gabriel finds Valerie Rosales, he finds himself surrounded by police with his helper Izzy hoping they will fire." tt0118643,EMpPWRLRQZY,"Gabriel interrupts the meeting of two angels and kills one while the other, Danyael, gets away." tt0183678,ESmtdvc5zk4,"While giving a sermon about how God doesn't care anymore, a preacher is shot and killed." tt0183678,WwzmDbzboQM,"The evil angel Zophael tracks down and finds Danyael, the son of a human woman and an angel." tt0183678,a51EYR5AeNk,Gabriel stops the angel Zophael from killing Danyael. tt0183678,XL4aLIj7q9M,Evil angel Zophael fights the half-angel preacher Danyael. tt0183678,zMFxbMh7JYY,Evil angel Zophael takes a woman hostage because he needs her help. tt0183678,VRTb5eck250,Half-angel preacher Danyael finally confronts the evil angel Zophael who has been chasing him. tt0183678,Yk84fGy3q-8,Danyael finally meets the angel Pyriel who plans to overthrow God. tt0183678,zdSMdOcyfOU,Danyael fights the angel Pyriel and wins with the help of God. tt5711820,lOmeZW0N10k,"Now a private detective, Juni solves crimes for the common kid." tt5711820,grn62a_8fZ4,Gurdy comes to visit Juni and they talk about family. Then the President of the United States reveals that his sister is missing. tt5711820,QWepLWTflW8,"Juni finds out he has to save his sister, and the world, from the evil Toymaker." tt5711820,xGugDtX55CQ,Juni faces off against Demetra in the robot arena. tt5711820,eS47L5yU2k8,The Toymaker has a brainstorming session with three other versions of himself. tt5711820,UpiqcjnWZB8,Juni takes on the beta-testers in a Mega-race in order to proceed to Level 3. tt5711820,L4PPqiuDNK0,Juni fights Arnold in Level 3. tt5711820,aF_Ijr621tM,"While making their way to Level 5, the group meets The Guy, who they hope will lead them to victory." tt5711820,Rj9fUYRr81A,Juni and the group find out Demetra has been deceiving them the whole time. tt5711820,mFoZz6PG72k,Grandfather confronts the Toymaker about his actions. tt5711820,oCHEAaCGj7k,The Cortez family comes together to salute strength in unity. tt0280778,-9UJGi_b2UI,Iris Murdoch gives a speech about the importance of education and concludes with a significant song. tt0280778,q-hS7nZ1Ok0,Iris describes her book to John and expounds on how there are more ways to communicate than with words. tt0280778,TIQP5uv3D3Q,Fear sets into Iris along with the early signs of Alzheimer's. tt0280778,H02B31zvSKQ,"Alzheimer's sets in, leaving Iris worried and John beside himself." tt0280778,6NmCTA1AK54,"Iris shares her novel with John, as well as her affections." tt0280778,usyxBVGLU74,"John reads to Iris, making a breakthrough of sorts." tt0280778,q6nz3GR5Ano,"John and Janet attempt to break through to Iris, but her pages and her words may already be long lost." tt0280778,Y-4pm9C-jeE,"John wakes to Iris singing a familiar tune from happier, though nonetheless poignant, times." tt0280778,-QiOCO5-ZPA,"Although Iris' Alzheimer's becomes unmanagable, her love for John will never change." tt0280778,VSnBrgm2PM4,Tempers flare over dinner and sexual tension with Maurice. tt0280778,9UZ8XOTp19c,"Distraught after discovering that Iris was unfaithful, John hears a recitation of her past lovers followed by a most heartfelt admission." tt0229440,Vz6AlIZAe2s,Det. Joseph Thorne solves the puzzle box he found at a crime scene and ends up being seduced by two mutilated female Cenobites. tt0229440,nsyud-sEm-w,A stranger gives Det. Joseph Thorne an unmarked videotape. tt0229440,8O06gqOG3fE,Det. Joseph Thorne chases a suspect into the woods only to come across more Cenobites and a cowboy helping the serial killer he's after. tt0229440,ePhMSnfYanI,Det. Joseph Thorne goes to visit his father in the hospital but ends up being subjected to a disturbing hallucination. tt0229440,IYmiSXEQ7ys,"Det. Joseph Thorne comes home to find his wife and child strung up and being frozen to death by psychiatrist and serial killer, Dr. Paul Gregory." tt0229440,7lbPHodrgC4,Det. Joseph Thorne somehow ends up back in time in his family home though things are not as cheery as they appear. tt0229440,lI8p0rzq2R4,"Still going through a surreal nightmare that Pinhead created for him, Det. Joseph Thorne comes across undead versions of all his friends." tt0229440,2ad7SgwLNXo,Det. Joseph Thorne is shown the truth by Pinhead tt1650554,BHJ5KGh-Xnw,Kick-Ass and Hit-Girl gather all of their superhero friends and finally confront the supervillains. tt1650554,cBzuWSSTTs0,"After Dave Lizewski is kidnapped, Mindy Macready finally becomes Hit-Girl again and rescues him." tt1650554,PrzgybNYBs8,"While her boss is busy hurting a member of Justice Forever, Mother Russia takes on multiple cops that are coming to the rescue." tt1650554,OA-SQ7lCV2I,"Chris D'Amico and his supervillain gang find the Justice Forever hideout and trash the place, but not before killing Colonel Stars and Stripes." tt1650554,rny3UdYPDn0,"After getting humiliated by the popular girls at school, Mindy realizes she doesn't need to fit in and be like the rest of them. She also manages to get some revenge, thanks to a special weapon her father left her." tt1650554,w78NFd5q_0k,Colonel Stars and Stripes leads Kick-Ass and the rest of Justice Forever on a night raid of a poker game attended by criminals. tt1650554,H44YauhtGPU,"On the suggestion of Brooke and her friends, Mindy tries out for the varsity dance team. Not knowing how to dance like the other girls, Mindy just pretends she is in the middle of a fight and ends up doing an amazing job." tt1650554,oAJYONuey_8,"Kick-Ass joins a superhero team called Justice Forever. It's led by Colonel Stars and Stripes and includes Dr. Gravity, Battle Guy, Night Bitch and more." tt1650554,dd_IWBNSKY0,"Mindy Macready is forced by her father to go to the house of Brooke, the local popular girl. After a rather awkward few moments, Brooke and her friends accept Mindy and decide to help turn her into one of them." tt1650554,b6X5bVMoCJc,Dave Lizewski asks Mindy Macready to join forces with him and be partners. tt0116514,8OWCY47wOAI,Phillip L'Merchant secretly watches a wealthy aristrocrat and his apprentice use a dead woman's body to summon a female demon named Angelique. tt0116514,oLLfx_GN73I,"After taking over a space station that he designed, Paul Merchant uses a robot to unlock the puzzle box that holds Pinhead." tt0116514,hF4ErLUEW9E,Two security guards stumble upon Pinhead having a discussion with Angelique. tt0116514,uzcyJ9sN98c,"Bobbi Merchant figures out the puzzle box while Pinhead and Angelique force John Merchant to use his larger, more advanced puzzle box invention." tt0116514,xN0R2xFmcYU,"Two hundred years after summoning her and being together, Jacques manages to upset Angelique." tt0116514,S3HubCxt0hM,Rimmer and Dr. Paul Merchant attempt to escape the space station while also setting in motion a plan to get rid of Pinhead tt0116514,Y-szf9FRi8M,"Toymaker Phillip L'Merchant attempts to steal back the puzzle box when he is confronted by the apprentice, Jacques, and the female demon Angelique." tt0116514,qzkFTptrfbw,The demon Angelique makes a man solve the puzzle box to bring forth Pinhead. tt0171359,6Wk1Sob8Quo,"In the opening scene, Hamlet wonders how man works and how it can be capable of such atrocities." tt0171359,BZjqqKqaw60,"Hamlet mourns the loss of his father, while blaming his mother for remarrying his uncle so quickly." tt0171359,n13FhFrtu_8,"Before embarking on a trip to France, Polonius gives his son Laertes some fatherly advice." tt0171359,D_84bHFra4s,"The ghost of Hamlet's father comes to Hamlet to tell him how he was murdered by his own brother, Claudius." tt0171359,1Up-oGfiosE,"Hamlet ponders one of life's biggest questions, ""to be or not to be""." tt0171359,EzxET3KpvSM,Hamlet starts to open up to Ophelia only to find that she is wearing a wire. tt0171359,oBfLI1WWrAI,"While viewing Hamlet's film ""The Mousetrap"", Claudius is overcome by guilt." tt0171359,pMrk3l8El24,Hamlet accidentally kills Polonius while he is confronting Gertrude. tt0171359,BOwOiWDD_SM,Claudius confronts Hamlet about the location of Polonius' body. tt0171359,0XjLzDVi03c,"In the final scene, Hamlet kills Claudius and dies." tt0171359,kR8Xje2x0sA,Hamlet tries to write Ophelia a love poem. tt0312004,b854qv-Z-ZQ,"Ellie and her brother, Jimmy, attempt to help Becky out of a car crash when they are attacked by a vicious beast." tt0312004,VH6D36VQ_uo,Ellie has a nightmare about her boyfriend Jake. tt0312004,wRM5Flw2nXY,Jenny finds that she is not alone in the parking garage. tt0312004,7AjmrbE-NTM,Jimmy's dog turns into a beast right as Bo shows up at the house. tt0312004,YG_z4RpxKWA,Joanie turns into a werewolf and searches the club for Ellie and Jimmy. tt0312004,8Qklz6BqVxU,"Jimmy, Bo and Ellie are trapped in a Jake's new club with a werewolf." tt0312004,Mgf5jaQO9sQ,"Jimmy and Ellie struggle to fight off Joanie, now in werewolf form, when the police arrive to help." tt0312004,wqMPRiWvJEs,Jimmy and Ellie find out the werewolf that has been causing everything is Ellie's friend Joanie. tt0312004,-QyAhZv-o_U,"Jake, the original werewolf, attacks Ellie and her brother when they are in the middle of transforming." tt0091431,i_FoR7ZV2EU,"While Alan is performing at one of his concerts, a group of men kidnap his girlfriend at a fashion show. They kill anyone who attempts to stop them." tt0091431,CatwTirgWZg,Asian Hawk and Alan agree to meet the kidnappers while being backed up by new partner May. Things go wrong very fast and soon they are in a fight and then a chase. tt0091431,lNla5rf4idU,"When Asian Hawk is surrounded by an army of the evil monks he pulls out his last trick, a jacket fulled of dynamite." tt0091431,7WXKfXCiWW8,Asian Hawk and Alan are caught up in a life or death chase with the evil group that kidnapped Alan's girlfriend. Thanks to a high-tech car they defeated the last of their pursuers in a large scale explosion. tt0091431,sXPBgnBxTFM,Asian Hawk rescues Alan and helps him and Lorelei escape. Though Asian Hawk has some difficultly getting out of the room himself once all the monks unleash their own fighting skills. tt0091431,G5qPGKpTzXU,Asian Hawk interrupts a sacrificial ceremony and steals an artifact from the tribe. tt0091431,Vhc7iBAAawA,"Just when he finds the armor of god, Asian Hawk is attacked by four dangerous female assassins." tt0091431,qVzfIUAzda4,"All of the outtakes from the movie, including the stunt that almost killed Jackie Chan." tt1596343,gN1BjYlhKvc,The crew makes a million dollar bet on a race when they realize their next job is an everything or nothing deal. tt1596343,eFnw_27t9-o,"Dom, Brian and Mia rob some DEA-seized sports cars from a moving train." tt1596343,S8Vu6A9LW20,"Dom rescues Brian from the moving train, but they end up going over a huge cliff into the river below." tt1596343,k2PsfXZ3wyY,"Hobbs tracks down Dom and they have a knock-down, drag-out fight." tt1596343,TIbZNmvyLBI,"Hobbs threatens to arrest Dom and Brian, but they are not ready to go quietly." tt1596343,xEAsC8A1Ins,Dominic clears the bridge of his enemies using some the vault and some Nitro. tt1596343,vmm8P0V1W4g,"Dom, Brian and Mia are chased over the rooftops of a Rio favela." tt1596343,9aldDI2WF7g,"Hobbs and his entourage are attacked by Almeida's men in the street, but Dom and Brian help them fight back." tt1596343,6w0F9xVXn_E,"To Han's surprise, Gisele uses her feminine tools to get Herrnan's fingerprints." tt1596343,OurCnuyC8zo,Brian and Dom steal the bank vault by dragging it through the streets of Rio Janeiro. tt0104409,8l7lDn2hUTw,Joey witnesses the powers of hell first-hand when a patient is destroyed by demonic forces. tt0104409,b_FQEg7ScU0,J.P. is frozen with fear after he sees his heretofore inanimate statue come to life and devour a young woman in grisly fashion. tt0104409,F0KcFyR2uAc,Pinhead manipulates Terri into freeing him by offering J.P. as a sacrifice. tt0104409,G21su-YdW5k,Captain Elliot Spencer reveals to Joey the origins of Pinhead. tt0104409,PPNHvoOU1kE,Pinhead wreaks hellbound havoc in The Boiler Room nightclub. tt0104409,HehUdDtSt1U,"Joey confronts Pinhead in his lair, defying him when he demands that she hand over the Lament Configuration box, the source of his power." tt0104409,0W9jZQetuB0,"Cornered by Pinhead and his Cenobite slaves, Joey masters the Lament Configuration box, sending the demons back to hell." tt0104409,kmigfm9ZONk,"Pinhead makes a mockery of religion as destroys a church, taunting Joey and a priest." tt0104409,87YM78J6ebQ,Joey escapes the cavalcade of chaos as Pinhead uses his demonic powers in resurrecting the dead to hunt her down. tt0104409,88UgHHl7W7A,Captain Elliot Spencer fuses himself with Pinhead in order to destroy the demon from within and save Joey's life. tt0068935,YADVuSMFS2M,Tang Lung and Colt continue their fierce battle of the fists until there is only one man standing. tt0120604,85WDSyWnTZg,"After killing Grendel, Beowulf has to face off against the beast's mother." tt0120604,sUxkumq9UJY,Beowulf interrupts the sacrifice of an innocent girl by a bunch of warriors. tt0120604,-PWyO04IJYQ,"Roland, the castle's top soldier, puts other soldiers through combat practice as Beowulf watches." tt0120604,CCGpFb4lNgI,Beowulf finally confronts Grendel on his own terms. tt0120604,m8CkFFna7Ew,Will starts his job as head weapon master with the help of his uncle's friend Karl. tt0120604,BFaNTh5aqls,The weapons master runs into Grendel while walking around the castle late one night. tt0120604,0iwVPWstvGo,"Beowulf hunts Grendel with the king, his daughter, and soldiers following close behind." tt0120604,tPkmKcc-LAM,Grendel's demon mother confronts King Hrothgar and his daughter Kyra. tt0122541,N6mFvYxmiM8,Gertrude reluctantly invites Mrs. Cheveley to a party at her house that evening. Lord Arthur Goring gets ready for the party as well. tt0122541,aAMVebfAZ7I,Mrs. Cheveley exposes Sir Robert Chiltern to Lady Chiltern. tt0122541,zD5BdMcO4yo,Lady Gertrude and Sir Robert reconcile as Lord Goring proclaims his love for Miss Mabel. tt0122541,ZxcUzbEJx98,Mrs. Cheveley attempts to blackmail Lord Robert in exchange for political support. tt0122541,w4RGgEi7T8E,Lord Goring playfully tells Miss Mabel that she should be in bed instead of out partying. tt0122541,-3upqhXz0nE,Mrs. Cheveley reminisces with Lord Goring about their past relationship. tt0122541,zpFlShhUcIo,Lady Chiltern tells Lord Goring to take Miss Mabel to an art gallery tonight. tt0122541,XadVTfPZ6yc,Lord Goring tries to convince Mrs. Cheveley to give him back the letter that will expose his friend's secret. tt0122541,EYh8GOoyv-M,Miss Mabel tells Lord Goring there is a difference between looking and seeing. tt0122541,rVjV3FNsMtk,Lady Gertrude admits to lying and Lord Goring and Miss Mabel get married. tt0122541,t78EgRBYIh0,"Lord Goring proposes to Miss Mabel and instead of giving him an answer she tells him to wait by the ""usual palm tree"". Lord Caversham visits Sir Chiltern to share some news." tt0122541,HMUnEpn0n9U,Sir Chiltern reinstates his opposition of the canal scheme. tt0068935,1ZpqDhQJhFA,Tang Lung takes on some thugs who are harassing his friends in their restaurant. tt0068935,TEpJFWUw2ts,Tang Lung shows off some of his moves to friends who doubt his skils. tt0068935,O5TE0yg-mEA,Tang Lung walks into the restaurant and finds the place taken over by the mafia. tt0068935,HysSQiXYjdE,"After having some of his thugs defeated, the boss of the mafia sends out the rest of his gang to defeat Tang Lung." tt0068935,dp_aLWPZY8I,Tang Lung leads his friends into the mafia headquarters where his girl is being held captive. tt0068935,sEycv_wZaIA,Tang Lung and friends are led into a trap where they must face off against two deadly opponents. tt0068935,0VJnFDz4VP0,"Tang Lung faces off against the hired killer, Colt, who is just as deadly in the art of martial arts." tt1690953,5vvtNVnzxaA,"When Gru is surrounded by an army of evil minions, his whole family arrives to help in the battle." tt1690953,CZZEp8EaO6g,"A mutated minion attacks Gru's house and chases the girls around, but they are saved by Dr. Nefario and his antidote." tt1690953,JjSpGeBqJR8,"Gru and his minions move into the new headquarters for their mission, but one of the minions falls hard in love for Lucy Wilde, his new partner." tt1690953,-kYzHmPDZwo,"Gru dresses up as a Magical Fairy Princess at Agnes' birthday party, since the real one he ordered couldn't make it." tt0102370,93lz5IE7Z0c,Madonna gets pissy when Warren Beatty doesn't pick her up on time. tt0102370,scDWdIV7Fes,Madonna performs the smash hit song Vogue. tt0102370,toT3JGFEwmw,Madonna perfoms a sexually-charged version of the song Like a Virgin. tt0102370,ujJJyIKIAjg,Sandra Bernhard hangs out with her friend Madonna and the two discuss their love lives. tt0102370,KAVqLKDwSOo,Madonna is disappointed when she learns that her crush Antonio Banderas is married. tt0102370,t-JFogFsPHQ,"Madonna performs her hit song, ""Express Yourself.""" tt0102370,s1Qz6N4-tEY,Warren Beatty hangs out post-show with his then girlfriend Madonna. tt0102370,cNKYmHmy9OQ,Madonna participates in a game of Truth or Dare. tt1690953,2tzvi3Xp6sw,Lucy spots Gru on a bad date and decides to help out a little. tt1690953,4H1Lc_JHF7I,"Gru investigates a wig store, trying to track down the stolen chemical." tt1690953,UsKSjKrIEq8,Gru learns that Dr. Nefario has decided to leave him for new employment because he misses being evil. tt1690953,QCJ_a5AYVEY,Gru rushes to stop Margo's date with Antonio and learns that he is the son of a suspected supervillain. tt1690953,_uRGjnG3G3o,"While tucking the girls into bed, Gru has a horrible flashback and talks to them about dating and boys." tt1690953,4lNoSUurdKc,"Gru and Lucy break into Eduardo Perez' restaurant, suspecting him to be a supervillain, and run up against a security chicken." tt0110027,LpOc7D4G1TM,An archaeological dig in Japan has allowed Kane and his followers to escape the cave they had been trapped in for over four hundred years. tt0110027,ifl_AGVJee8,"While Connor tries to escape from a hospital, he finds himself being stalked by the last of Kane's henchmen." tt0110027,LJq_hnR6CHc,Connor finally gets the upperhand and manages to kill Kane. tt0110027,_s5fgacYzjA,The evil immortal Kane rides into a japanese village looking for directions to Mount Niri. tt0110027,kMRM-0GvaQk,"Kane and his men finally find master immortal, Nakano, despite Connor trying to stop them." tt0110027,Tsi-yH9juC8,Kane leads Connor MacLeod into a power station to begin their final battle. tt0110027,CglQW97hCe0,Kane follows Alex Johnson and she leads him straight to Connor who is training at a temple in the city. tt0110027,QxK_EsMjCQE,Connor MacLeod goes to pick up his son from the airport when Kane surprises him there. tt0133046,kCb1R69h92Q,"Mrs. Tingle fires the crossbow at Leigh Ann but instead hits Trudie. Realizing the scope of her folly, Mrs. Tingle collapses, devastated." tt0133046,EKdQ1jASEmw,Leigh Ann is cornered by Mrs. Tingle and Jo Lynn. tt0133046,hq-vTEalnj0,Mrs. Tingle uses her cunning to manipulate Luke into revealing his feelings towards Leigh Ann. tt0133046,YczVaT_czPE,"Mrs. Tingle snatches a copy of her final exam from Leigh Ann's backpack, reveling in the fact that Leigh Ann's personal integrity -- and her graduation status -- now hang in the balance." tt0133046,2Y41IMoi1TU,Mrs. Tingle tears a new one into her students as they showcase their history presentations. tt0133046,G1x0zmX-PEw,"As Leigh Ann attempts to clear her name to Mrs. Tingle, Luke escalates things rapidly when he threatens to shoot Mrs. Tingle with a crossbow." tt0133046,prLok_8YD8w,"Bored out of her mind guarding Mrs. Tingle, Jo Lynn conjures a virtuoso performance from ""The Exorcist"" to help pass the time." tt0133046,-it68CFJkNg,Leigh Ann and her friends arrange their blackmail tableux to make it look like Coach Wenchell and Mrs. Tingle are having an affair. tt0133046,P4fFh-wHWl0,"Leigh Ann finally seduces Luke. Later, at Luke's urging, she changes her grade and that of her rival, in order to give herself the title of valedictorian." tt1905041,yHf9QshbQeE,Dom and Owen Shaw finally meet face to face. tt1905041,-DF-MgSuhQ0,"After tracking down Letty at a street race competition, Dom challenges her to a race." tt1905041,4rwJ3BnGrl0,"After being disrespected at a high-class car show, Tej buys all of the cars and has them delivered. Hobbs and Tej have a little fun getting revenge on the snobbish salesman." tt1905041,nxWj-7FF4CI,"While chasing down members of Shaw's crew, Riley gets into a fight with Letty while Han and Roman take on Jah." tt1905041,uzHwlt3dmmo,Owen Shaw's team attacks a military convoy and commandeers a tank in the process. Dom's crew jumps into action to try and stop it. tt1905041,NGeFA2fWzX8,"Dom, Brian and Roman try to stop a tank that's being driven by Owen Shaw, Letty and Jah." tt1905041,km3VtR6mqmg,"Owen Shaw and his team make their escape on a plane with Mia Toretto as a hostage. Dom, Brian, Letty and the rest of their crew try to keep the plane from taking off and stop Shaw." tt1905041,iz2ro0h_TmQ,Dom and Hobbs chase after Owen Shaw. Dom pulls away when he spots Letty in another car. Shaw gets away and Letty shoots Dom the minute she sees him. tt1905041,Atb5LNPuxyU,"As the plane starts to crash, thanks to Dom's crew pulling its wings down, Dom decides to make sure Shaw doesn't get away." tt1905041,Y92N7SFJ0Fo,"International criminal, Owen Shaw, escapes from police and destroys his hideout in the process. All of it turns out to be a distraction for the police as Shaw's own crew is finishing a heist elsewhere. Hobbs and Dom's crew chase down Shaw and his team." tt0120915,2Pkky-Dncw8,"Sheriff Bryce Hammond finally finds the heart of the creature, which has taken the shape of a boy the Sheriff accidently killed years before." tt0120915,JYp5uIodwEE,Dr. Timothy Flyte calls out the creature so that Sheriff Bryce Hammond and Jennifer Pailey can fire at it with their special weapon. tt0120915,H843vNJgIaQ,Sheriff Bryce Hammond has to go from one military trailer to another and get a special weapon to kill the evil enemy. tt0120915,_vNaSVn6qSk,Dr. Timothy Flyte leads a team of scientists into a church to search for clues. tt0120915,RKn6FWvaVBM,The army finally shows up in the empty town and has a team of scientists explore the buildings for clues. tt0120915,2pVPaPFm5iI,"Sheriff Bryce Hammond, Deputy Stuart Wargle, Lisa Pailey and her sister Jennifer try to survive until daybreak." tt0120915,9I1aM1EQZ7o,Jennifer Pailey and Lisa Pailey face off against a monster version of Deputy Stuart Wargle. tt0144964,Z0iCcI1Owys,Jin Ke and the rest of his gang attack the Sanctuary and appear to lose. tt0144964,AmAklov1ewQ,Connor MacLeod and Duncan MacLeod have fun defending a carraige in 1712. tt0144964,U89NOSQdgqo,Duncan MacLeod is attacked by the gang of Jacob Kell. Duncan seems to be winning until Jin Ke shows up. tt0144964,-iuSE7NVc8c,"Jacob Kell and Connor MacLeod finally confront each other, while Duncan and Kate MacLeod watch." tt0144964,DegHehO_nfc,Connor MacLeod forces Duncan MacLeod to engage in a sword fight. tt0144964,16hnbNPCFBo,Duncan MacLeod confronts Jacob Kell and they begin the ultimate fight between immortals. tt0144964,_tYTcz52ZB8,"After a long battle, Duncan MacLeod finally kills Jacob Kell." tt0246544,PGU_sBj_q5g,D'Artagnan climbs up a tower that holds The Queen and Francesca Bonacieux in it. tt0246544,b5whTkIQ32c,"D'Artagnan finally has his fight for revenge against the Man in Black, who killed his parents." tt0246544,5QGrgYkudfo,D'Artagnan and an army of Musketters attack the castle that holds the Queen. tt0246544,A1mYM5yA6oI,"While escorting the Queen and his love, Francesca Bonacieux, D'Artagnan has to fend off a group of mercenaries." tt0246544,-e_vbnd9bV8,D'Artagnan and a few other Musketeers rescue the Queen and King after the palace is attacked by a mob of peasants and mercenaries. tt0246544,5eC6VCiJYq8,D'Artagnan along with two other Musketeers break their captured leader out of jail. tt0246544,0Ihq2_hNnX8,D'Artagnan stops into a bar for a quick bite to eat. He defends a small beggar child and gets into a sword fight with some local thugs. tt0193560,XG-c6CmPo4k,"Randolph Douglas Scipio, Lincoln Rogers Dunnison, George Durham and the other Texas Rangers attack a small camp of bandits." tt0193560,nxvXYa6n0pY,Lincoln Rogers Dunnison goes to Leander McNelly and tries to join the Texas Rangers. tt0193560,VGGxaRYEfO4,Lincoln Rogers Dunnison arrives in a new town with his parents and brother the same time John King Fisher and his gang of bandits show up. tt0193560,qG-B9IzugQM,"Lincoln Rogers Dunnison and George Durham come upon a group of men are preparing to go after the bandits, but Texas Ranger Leander McNelly puts a stop to it." tt0193560,rcjujixxfdY,Suh Suh Sam gets Lincoln Rogers Dunnison to set up a meeting between him and Leander McNelly. tt0193560,ALsbjcqNdRo,"Leander, Lincoln Rogers Dunnison, Randolph Douglas Scipio, George Durham and the rest of the Texas Rangers ride into the main camp of outlaw John King Fisher." tt0193560,6rAcjVEXvSg,Lincoln Rogers Dunnison and George Durham argue over who gets the bath while also fighting over who Caroline Dukes likes more. tt0193560,8jkM1zBTJIA,Leander McNelly and Lincoln Rogers Dunnison lead the Texas Rangers on a final attack against John King Fisher and his gang. tt0193560,KYQELfxxAck,"In the middle of the battle, Lincoln Rogers Dunnison finally gets his revenge on John King Fisher." tt0252299,NrLSAjP5Ibw,Ray Elwood asks Robyn out on a date fully aware that she is the Sergeant's daughter. tt0252299,jOf4crp-WVs,"As retribution for taking his daughter out the night before, Sergeant Lee orders Ray Elwood and company to shoot up Elwood's car." tt0252299,UTEUIdcqSfo,Sergeant Lee shows there's a new authority on the base when he discovers all the expensive contraband in Ray Elwood's room. tt0252299,qlJ2951IShM,Colonel Berman makes a minor critique to the letter written by Ray for a fallen soldier. tt0252299,tXDoydLr3YQ,Ray Elwood experiences his recurring nightmare of falling. tt0252299,_Q9JnjhXRyA,Three stoned soldiers accidentally take a tank on a destructive and explosive joyride through Germany. tt0252299,pzeu5peH2n0,Ray Elwood and Robyn Lee pop some ecstasy at a German dance club. tt0252299,GBXYXp04Los,Robyn Lee tempts Ray Elwood to jump off the high dive by diving off of it first. tt0220506,AWmHgNv0xUc,"Freddie and Sara fight Michael Myers, knocking him out of a second story window. But the victory is only temporary as they learn that Michael Myers still lives." tt0220506,T4Z1mnjLwiA,"Dressed in a ""Michael Myers"" costume to scare the reality show contestants, Freddie runs into the real Michael Myers, but mistakes him for one of the other crewmembers in disguise." tt0220506,g-bxs_daoCI,Rudy tries to fend off Michael Myers to give Sara time to escape. tt0220506,I64nwvRliGY,Donna is stalked and impaled by Michael Myers. tt0220506,TEq446woKOo,Jen and Jim meet a grisly demise at the blade of Michael Myers. tt0220506,VxwsEqiptwo,"Left for dead, Freddie returns to save Sara from certain death at the blade of Michael Myers." tt0220506,oL8QGyo50_M,"Laurie Strode has Michael Myers dangling over the edge of a building, but before she can kill him, she must confirm that he really is Michael Myers and not some imposter." tt0220506,qJkMktF_QUE,Charley's death is recorded on camera while Nora is distracted by a fancy mocha and a phone call. tt0220506,bTrFBrULLmM,The gang goes into a panic when they hear a blood-curdling scream from the other room. tt0220506,v-8bLcH0iD4,"Michael Myers begins his killing spree, sending Bill to meet his maker." tt0290212,MJBoXI6pVQ8,Arty talks to his actor about how to approach the role of Hitler. tt0290212,dZt3TeTClV8,Arty directs Hitler during play rehearsals. tt0290212,Jg7LxmHGNd4,Nicholas discovers a love letter that he believes was written by Francesca. tt0290212,Ha-aaENx0Fg,Catherine and Nicholas play a flirtatious back-and-forth game involving a love letter. tt0290212,Euld6YN5liw,Lee is a little taken aback by her sister Linda's birthday gift of a sex toy. tt0290212,bfzJMOBenVA,"On set, director David Fincher directs Brad Pitt and Nicholas on the streets of Los Angeles." tt0290212,S5-Beq8JVsw,"Gus tries to the convince Linda, a masseuse, for a happy ending." tt0290212,GWL0Cj7bAf4,Linda and Arty meet at the food court of the airport on their way to Tucson. tt0282209,bTx918Kpg30,"While Regina is being held captive by her grandfather, her father is over taken by evil and goes after her brother and mother." tt0282209,BXLhK4ra6tQ,"While visiting her grandfather, Albert Rua, Regina realizes that he is the one behind all of the evil things that have been happening to her family." tt0282209,M8gGpyKPAFQ,"While Regina goes to her grandfather for help, the designer of the family house is stalked by the darkness." tt0282209,XGCcothBtRs,"Regina and her little brother, Paul run into an evil version of their mother as their real mother is facing evil versions of them." tt0282209,mIpX6PnT9UY,Regina starts getting the feeling that she is being watched. tt0282209,ytCAMgdi9sw,"Mark gets taken over by anger and rage while his son, Paul gets trapped in his room. Regina and her mother do their best to calm everything down." tt0282209,oLO_o48BejY,Regina comes home to find her mother trying to save her father who is choking on pills. tt0282209,Y3Y3HySArOU,"Mark is driving his son, Paul, to school when Mark starts to have a panic attack and needs medical help." tt1139328,79tBbaqvbjM,Chaos erupts after former Prime Minister Adam Lang gets off his private jet and is assassinated. tt1139328,LmxUk-KxjoI,"Things get tense after The Ghost shows Paul Emmett a picture linking him to the former PM, Adam Lang." tt1139328,yCIgtidXAnQ,The Ghost meets with Robert Rycart about the former Prime Minister's potential war crimes. tt1139328,g6Hf6Wbk6B4,The former prime minister Adam Lang is briefed on what the next steps are after a formal investigation of his possible war crimes is announced. tt1139328,zD_yR7ixRmo,The Ghost and former Prime Minister Adam Lang sit down to discuss the start of the PM's memoirs. tt1139328,HzLYedqOPIY,"The Ghost meets Ruth Lang, the former Prime Minister's wife." tt1139328,jFEvKqbayIQ,The Ghost makes a compelling argument on why he's specifically suited to handle the biography of the former Prime Minister. tt1139328,-x8fqJDLsu8,"The Ghost is tailed off the main land, onto a ferry, and has to make a daring escape." tt1139328,ax59TmvzCEg,The Ghost confronts Adam about his C.I.A. past. tt0427470,3GiWce_xXzA,"Bone is about to kill Lewis, when Chris Pratt comes to the rescue of his friend." tt0427470,x2W8BqPt7mI,"Chris turns the tables on Gary letting him know that he ""holds the power.""" tt0427470,xKffjQ-iU9E,Chris Pratt puts a plan of attack together to save his friend Lewis. tt0427470,n3BgbwW6PXc,Chris Pratt becomes smitten on site with the lovely Luvlee. tt0427470,1tclZvb40QA,Luvlee can't resist Chris's charm and Don Juan way with words of love. tt0427470,_nmYaR_ZllQ,"Suspicious of Luvlee, Lewis questions her intentions of hanging around Chris Pratt." tt0427470,9AmyJhS8WWc,Deputy Ted's suspicion of something going on in the bank ends in tragedy. tt0052618,at0yN2HBrt8,"Judah Ben-Hur goes to the Valley of Lepers to find his mother and sister, but he's not allowed to see them." tt0052618,frE9rXnaHpE,Judah Ben-Hur wins the race while Messala is left bleeding in the dust. tt0052618,k6TUgccyzNs,Pontius Pilate takes his seat in the arena as the chariot racers make one lap around the racetrack with uniform precision before they begin the race. tt0052618,AjmbgZ2wZvk,Quintus Arrius pushes the rowing men to the brink of exhaustion. tt0052618,lPr_GBMu4O4,Judah Ben-Hur and Commander Quintus Arrius meet… and they don't share the warmest of welcomes. tt0052618,ytTSb8302aI,Messala gives Judah Ben-Hur an ultimatum to chose a side in the struggle between Rome and the conquered people of Judea. tt0052618,5Bv5yv0n9Tc,Messala tries to convince Judah Ben-Hur to betray his people and speak out against rebellion so the Roman empire can take over. tt0052618,Fbt2UUthWg0,Ben-Hur gives water to Jesus on his way to his death. tt0052618,DPl05d5mi54,Messala gives Judah Ben-Hur his last words and reveals that his family is still alive. tt0052618,cDoyywKt1_0,"In his time of need, Judah Ben-Hur, calls out to God to help him and his prayer is answered when a mysterious man offers him water to drink." tt0417741,Xsa1B-RyyXQ,Harry uses a devastating spell during a fight with Draco. tt0417741,KmdBHOUCDnM,Dumbledore rescues Harry when the inferi drag him underwater. tt0417741,lmlX39gM9-c,Snape keeps the promise of the Unbreakable Vow and kills Dumbledore when Draco can't. tt0417741,UwTKqqfS8FQ,Harry and Ginny share their first kiss in the Room of Requirement. tt0417741,8DbzvqOPUIk,Snape reveals to Harry that he is the Half-Blood Prince. tt0377818,bJuDofIoW34,Sheev helps Bo and Luke crack Boss Hogg's safe with explosives. tt0377818,meEN8tfT7b4,Bo and Luke meet some gangsters with their redneck flag and soot-stained faces. tt0377818,5HoL98HNOr8,Bo and Luke spend the night in jail and are further provoked by Boss Hogg. tt0377818,sAtsZPmjExo,Daisy helps Bo and Luke escape from the cops. tt0377818,6R__cRZAVCA,Bo and Luke have a large disagreement while trying to escape from the police. tt0377818,8Kfr7BvVmlU,Daisy seduces Enos to find out where Boss Hogg is hiding. tt0377818,pGZtlbYLpck,"Bo races in the road rally, while Luke and Uncle Jesse clear the road of policemen." tt0377818,BvjorMEnuUI,Bo wins the road rally and then tries to make it to the courthouse for the strip mining vote. tt0377818,EIzFKMtPjH0,Bo and Luke meet Katie and her hot Australian roommate. tt0377818,RbMtPUPVZ_s,Bo and Luke pose as Japanese scientists to find out what kind of substance Boss Hogg wants to mine on their land. tt0348836,1w4rZE1A-fc,Chloe Sava welcomes Miranda Grey. tt0348836,9O0D63xWNLE,Miranda Grey has a flashback of the murder. tt0348836,reKMIuxFqzY,Miranda Grey is haunted by a ghost. tt0348836,-RuK7XKbefY,Miranda Grey receives questioning from Sheriff Ryan. tt0348836,_3w-4zC9FHU,Miranda Grey has a flashback of the murder of Dr. Douglas Grey. tt0348836,92YrRetDlCg,Miranda Grey is haunted during her escape from the hospital. tt0348836,uYWlWG9d4LE,Sheriff Ryan meets his demise at the hands of Miranda Grey. tt0348836,TAZulrjrEDo,Miranda Grey calls Pete Graham from prison. tt0348836,CTVWHGj92Xo,Pete Graham examines Miranda Grey. tt0348836,m99cHo5NBZ8,Miranda Grey is attacked by a ghost in the shower. tt0112462,wW0WRqnLYMw,"Dr. Edward Nygma uses his boss, Fred Stickley, as a human guinea pig to test out his new experiment: a machine that makes him smarter." tt0112462,pGhBFh0cXRU,Batman and Robin team-up and prepare for the final battle against Riddler and Two-Face. tt0112462,Zc3wIAs3coU,Bruce Wayne meets Dr. Edward Nygma during a routine inspection of the technology division at Wayne Enterprises. tt0112462,2FxpNCvBV_s,Batman answers the call of the Bat-Signal only to find out that it was used by Dr. Chase Meridian in order to seduce him. tt0112462,YGQZwZadSfI,"After stealing the Batmobile, Dick Grayson picks a fight with some local thugs only to get rescued by Batman, whom he blames for the death of his family." tt0112462,SMuET3l5cbc,"After being saved by Robin, Bruce Wayne lashes out at him for risking his life. Later, Batman pays a nighttime visit to Dr. Chase Meridian." tt0112462,E5vZWrsaYWU,"Batman saves both Robin and Chase, thus foiling The Riddler and his twisted scheme." tt0112462,CY2ruk5Vkq8,"Bruce Wayne suits up as Batman and tells his butler, Alfred, that he'll be getting fast food tonight." tt0112462,11tbL8l5Av8,Bruce Wayne tells Dr. Chase Meridian the events that happened to him after his parent's death and the dark figure that became his destiny. tt0112462,wG5Lt-pineg,"Riddler has a great time destroying the Batcave and the Batmobile, while Bruce Wayne and Chase right off Two-Face's henchmen." tt1120985,GqECd_A7qhY,Dean obsesses over his chance encounter with Cindy. tt0120891,LDC0ii3Rwww,Jim West teaches Gordon what a breast feels like. tt0120891,zV3AZFuaJVQ,Loveless makes a grand entrance to his party. tt0120891,yQ0FgE-WKi8,Jim West runs into General McGrath's men while making out with Belle in a water tower. tt0120891,EPJGFrntGfU,Jim West fights Loveless' henchmen on the mechanical spider. tt0120891,HvIGrLYKRh8,Jim West and Gordon run through a corn maze to avoid getting beheaded. tt0120891,gmbInMp4ioU,Jim West and Gordon get stuck together when their magnets switch polarity. tt0120891,SrJEWL6QHzo,Jim West and Gordon are very distracted when Rita Escobar spends the night on the train. tt0120891,_ItWcGtaJro,Jim West uses one of Gordon disguises to rescue him and others from Loveless. tt0120891,Uc21Z4ffSns,"When Miss East tries to get Jim West shot, he goes on a shooting spree." tt0120891,NHRtlXDOqOU,Jim and Artemus discover Spider Canyon and the mechanical beast that lives within. tt0289879,zgQsfeosMf0,"At age 13, Evan comforts Kayleigh about her father's abuse, but her brother Tommy is supremely jealous." tt0289879,cNiuEFffzf4,Evan visits Kayleigh to ask her about some memories from their childhood. tt0289879,Jf8OtaR_9MM,"Evan wonders if Kayleigh still loves him, even though in this reality she is with Lenny and he is crippled." tt0289879,EkptyQec_LM,Evan and Andrea go to a psychic named Madame Helga to have their futures read as a joke. tt0289879,1TqRcAl_928,Evan meets Kayleigh in an alternate reality where she is a drug addicted prostitute. tt0289879,ixYWkDAPPzA,"Evan performs the last act he can to save the people he loves, strangling himself with his umbilical cord at the moment of his birth." tt0289879,2L2dyDpd7LA,Young Evan stands up to Mr. Miller when he orders him and Kayleigh to take off their clothing. tt0289879,LimvO4zrETM,Tommy follows Evan and Kayleigh across campus before attacking them. tt0289879,1zWf02vGl3M,"Evan saves the mother and her baby, but ends up in an alternate reality where he is crippled and Kayleigh is now with Lenny." tt0289879,z-3ETV74ygs,"Evan visits Lenny in an asylum. He is determined to fix everyone's lives for the better, but his father warns him that it is impossible." tt0329101,2gzMbWXWIA4,Freddy instills fear in everyone and uses Mark to pass on a message to the others. tt0329101,bAjGVN4f6wM,Lori Campbell pulls Freddy out of her dream where he squares off with Jason in the real world. tt0329101,WRF2fIzwT6k,Freddy Krueger and Jason Voorhees viciously battle it out at the lake. tt0329101,7SZs2Qr0zvE,Jason viciously murders Trey while Gibb is taking a shower. tt0329101,NQhm9xmVHdU,Jason Voorhees and Freddy Krueger continue to battle it out. tt0329101,at6F59Zfqlw,Lori brings the fight between Freddy Krueger and Jason Voorhees to an epic conclusion. Or does she? tt0329101,0NRYcIcHfV4,Jason Voorhees crashes a rave and unleashes his mayhem. tt0329101,Qa_hiWmXFUA,A tranquilized Jason comes face-to-face with Freddy Krueger in the nightmare world. tt0329101,FlaH13fnXk0,"Blake has a terrifying nightmare, only to wake up to see his decapitated father sitting next to him." tt0329101,t-Ojbv20L80,"As the group looks for the Hypnocil, Freddy takes control of Bill and orders him to dump all of the pills down the drain." tt0251160,ORQgPS4lxmg,John Q. holds the hospital hostage to save the life of his son. tt0251160,edgiUq5ymRE,John Q. talks with his dying son as a sniper moves in behind him. tt0251160,AYS6V3rDT6c,John Q. negotiates with Lt. Grimes for the life of his son. tt0251160,oceYG6ogT_E,The hospital hostages debate the nature of healthcare. tt0251160,IGVwlBTTqYM,Dr. Turner explains Mitch's heart condition. tt0251160,6sQWxbE2RAk,John Q. says goodbye to his family after being sentenced to prison. tt0251160,dIu418Y0TGY,Mikey collapses on the baseball field. tt0251160,QxcCdLaKhd8,"As John Q. prepares to kill himself for his son, Denise receives news that a matching heart is available." tt0251160,LjiRvVUmets,John Q. informs his son that a new heart is available for him and says his last words of advice. tt0251160,1WnfdpZYp_s,John Q. offers to sacrifice himself for his son. tt0331632,ulGMlIZNr6M,Shaggy and Scooby Doo run into the cotton candy glob while trying to escape other monsters. tt0331632,9rj02jWyo94,The gang searches Wickles' mansion for clues when they are attacked by the Black Knight Ghost. tt0331632,bLsnl_fdBoI,"Fred and Daphne defeat two ghosts while Shaggy, Scooby and Velma run into monsters of their own." tt0331632,yz8GjHOA2xo,"After the gang confronts the Evil Masked Figure, they all get captured by the Tar Monster. Scooby manages to find a way to defeat all the monsters." tt0331632,kHk2-mOOYQg,Velma hides when Patrick shows up at Mystery Inc. tt0331632,Md12rwlpeFU,Shaggy and Scooby Doo talk about how they do nothing but mess things up for the gang. tt0331632,0oxx_2M6Ctw,The gang goes to investigate Old Man Wickles' house but end up in a trap. tt0331632,ylvCOlF5RLI,Shaggy and Scooby Doo stumble upon a lab full of potions. tt0331632,vZyIBlDO-E8,"At the opening of the Mystery Inc. exhibit, one of the monsters comes to life as an Evil Masked Figure threatens the gang." tt0331632,uen_1bL_TXc,"Fred and Daphne hold off the Black Knight Ghost and the 10,000 Volt Ghost so the rest of the gang can sneak inside." tt0267913,_qjEm2ll0qc,The gang fights back against Scrappy Rex and the island goons. tt0267913,xby81m1GtH8,A possessed Fred chases after Shaggy and Scooby Doo. tt0267913,WC60ALoX_Nk,"Pamela Anderson crashes into the toy factory in the Mystery Machine, followed by a mob of reporters and fans." tt0267913,u455yxBv35A,The gang has a run-in with the Luna Ghost. tt0267913,Pf4RjsdJE0I,Velma figures out how to destroy the creatures that are possessing everybody while Daphne and Fred accidently switch bodies when their original souls come back. tt0267913,JC2TvxRIR4Y,"Mondavarious is unmasked, and revealed to be a robot controlled by Scrappy Doo" tt0267913,mEzXLJL48nA,The gang runs into some trouble while snooping around the castle on Spooky Island. tt0267913,Ia8LqyDsdbo,Velma reminisces about the old times in a flashback sequence where Scrappy-Doo is introduced. tt0267913,iEattbpjGG4,"While enjoying their day at the beach, Shaggy and Scooby-Doo are invited to Spooky Island to solve a mystery." tt0267913,FgYr00Scelc,Scooby Doo and Shaggy have a burping/farting contest. tt0186566,Jr9tBcUO68M,Frank and Hawk realize that the only solution for getting the nuclear missiles away from Earth is to have Hawk fly them to outer space. tt0186566,uu4tB54Uw5I,Hawk Hawkins makes the ultimate sacrifice when he volunteers to fly the Russian nukes out of Earth's orbit. tt0186566,-Pf1f0pZdnQ,Frank Corvin takes a moment to let the majesty of space soak in. tt0186566,LruyfJJT7qY,Hawk Hawkins shows Frank Corvin and the younger astronauts how it's done during a shuttle landing simulation. tt0186566,BLbh7T1mPZ4,Ethan Glance defies Frank's orders and accidentally activates the satellite carrying 6 nuclear missiles. tt0186566,xpXxwJNaZDY,"To Frank Corvin and Hawk Hawkins, a high-G training centrifuge is just another place for a grudge match." tt0186566,zQTDoxrgBeU,Hawk Hawkins gives a birthday boy the ride of his life. Jon Hamm appears as a young pilot. tt0186566,rKHW39mShF4,"With the onboard computer malfunctioning, Frank Corvin, Jerry O'Neill, and Tank Sullivan are forced to land the shuttle manually." tt0186566,Dh__Anjhn6M,"If they are going to become astronauts, Frank Corvin, Hawk Hawkins, Jerry O'Neill, and Tank Sullivan first have to pass their eye exam." tt0186566,xIMi15Erjvo,"After crashing another test plane, young Frank, Hawk, Jerry, and Tank get to meet their successor." tt0244244,FDwpGLz3Mr8,Gabriel Shear pays a visit to Senator James Reisman. tt0244244,qkHSTpTqlug,Stanley Jobson meets the sexy Ginger Knowles. tt0244244,mYS3zyHIxqA,The police pursue Gabriel Shear in a bus that is being lifted by helicopter. tt0244244,QAMDKK5sfd0,Gabriel and Stanley argue over the ethics of what Gabriel is doing while on a bus filled with hostages. tt0244244,L8Ig4HbgA0c,"Stanley offers Gabriel a new deal, but Gabriel threatens Ginger Knowles to make him cooperate." tt0244244,k6_TBuGcwzA,Stanley Jobson discovers Ginger's secret. tt0244244,WjDLin6Egyw,Gabriel Shear discusses the problem with Hollywood films. tt0100944,Rtf8uPmgq0A,"The Grand High Witch tricks Bruno into eating a ""special"" candy bar. Very special." tt0100944,TrjLNpfDTi0,"The Grand High Witch orders her fellow witches to remove their wigs, and makes an example of an unruly witch." tt0100944,P-GgTCUYjhw,The Grand High Witch captures Luke and turns him into a mouse. tt0100944,QsuIp03FENc,Luke successfully poisons the entire coven of visiting witches with their own transformation potion. tt0244244,VsLUFKIRr1s,Gabriel Shear and Stanley Jobson are pursued through Los Angeles until Gabriel breaks out the big guns. tt0244244,hiHZWeeoEUg,Gabriel Shear has strapped his hostages with C4 and stainless steal ball bearings. tt0244244,mWqGJ613M5Y,Gabriel Shear gives Stanley Jobson the ultimate hacking test with his life in the balance. tt0105695,pbzjsBcOuB8,"When Little Bill comes to Greeley's to disarm the town's new arrivals, William Munny is too sick to fight him off." tt0105695,7_uvEuNwUj4,William Munny takes his revenge on Little Bill and the town of Big Whiskey. tt0105695,PmFEdtB8eNw,"Little Bill tortures a captured Ned in order to get him to talk, and Ned's story starts to fall apart." tt0105695,GnWalWAmryk,"William Munny and Ned reminisce about their younger days, and William regrets the bad he's done." tt0105695,HdcT33sKbn8,"When W.W. Beauchamp swears by one of the accounts of English Bob in his book, Little Bill walks him through what really happened that night." tt0105695,X5Vb_FUuRDE,"With the cowboys pinned down, Ned finds he no longer has the stomach for killing, and William Munny has to finish the job." tt0105695,4x_MfkJvgbU,William Munny and the 'Schofield Kid' are ready to leave with the money when they're informed of Ned's death at the hands of Little Bill. tt0105695,cAYVS8aRQ1U,"Waiting outside of town for their money, the ""Schofield Kid"" and William Munny discuss the act of killing." tt0105695,Mjkt4UgcTmg,Will Munny takes his revenge on Little Bill for killing his best friend. tt0105695,rsyw13yrRoo,Little Bill disarms English Bob and W.W. Beauchamp and proceeds to send a message. tt0089791,xO7O6zwFZ1k,"Pee-wee sits down for his morning breakfast, which he tops off with Mr. T cereal." tt0089791,xfeLsPRl3so,Francis tries to convince Pee-wee to sell his prized bicycle. tt0089791,urnRVr1P2bc,Pee-wee gets carried away when performing tricks on his bicycle. tt0089791,XC3yGH4nETQ,Pee-wee shows his feminine side in order to help a fugitive elude the police. tt0089791,lPMSGTfK4Aw,Pee-wee hitches a ride with a disturbed truck driver known as Large Marge. tt0089791,cJOqz6CPxLY,Pee-wee watches his big screen debut with friends at a drive-in theater. tt0089791,7eTl05KHwFI,Dottie tries to score a date with Pee-wee when he comes in to pick up a part for his bike. tt0089791,0PdeHy_87OM,Pee-wee arrives at the Alamo with hopes of finding his stolen bicycle in the basement. tt0089791,QoJrjjy0WeU,Pee-wee conducts an excruciatingly long meeting with his friends regarding the theft of his beloved bicycle. tt0089791,gwjAFSu_VKM,Pee-wee accuses his rich nemesis Francis of stealing his bicycle. tt0195945,D0Gxk6zCSFQ,Day-Day introduces Craig to Mrs. Ho-Kym. tt0195945,z_Bx500h-DQ,Joker is interrupted while counting his money. tt0195945,yVlOitZ19Wc,A customer comes into Pinky's to complain about a CD that he bought earlier. tt0195945,3wft012b2tk,Day-Day talks to Craig about his problems with his baby mama. tt0195945,5Mb6xTtmtuA,"Craig Jones introduces himself to Karla, and ends up getting chased by the dog." tt0195945,kQrU0KRsCNo,Craig gets high with his Aunt Suga and Uncle. tt0195945,sL1b7ZnItoI,Craig sneaks into Joker's house to talk with Karla. tt0195945,gVseixK20cM,Debo and Tyrone devise a plan and sneak into Mr. Jones' truck. tt0195945,Aok-54MlYFk,"Uncle Elroy introduces Craig to Suga, while D'wana keys Day-Day's car." tt0195945,KU8y7u-xqHg,Pinky mistakenly takes Craig for a robber. tt0066999,yr-HmSz421c,Harry comes face to face with the killer and almost dies himself. tt0066999,IKFthgUbCdY,Inspector Harry Callahan clashes with the Mayor about how to handle the Scorpio Killer. tt0066999,RitnM9n0jTY,"Harry is assigned a new partner, Inspector Chico Gonzalez." tt0066999,38mE6ba3qj8,"After shooting down their getaway car, Inspector Callahan confronts one of the bank robbers who is reaching for a gun." tt0066999,0wAtjDAyv4M,The Scorpio Killer hires a thug to beat him up and then frames Harry for it tt0066999,8WQG1IHkv4k,Chico and Harry have a shootout with the Scorpio Killer on the rooftop. tt0066999,buNwwAximcE,Harry catches the Scorpio Killer on a football field and interrogates him. tt0066999,dKC2CPS9AFI,Inspector Callahan employs some reverse psychology to get a man threatening to jump off of the ledge. tt0066999,kh62SjGdI0s,The District Attorney takes Harry to task for ignoring the suspect's rights and not getting a search warrant. tt0066999,Ky7rHZmk9Yw,Harry Callahan catches up to Scorpio Killer in the final showdown. tt0327056,zm2fF6nj6W8,"Annabeth Markum supports her husband, Jimmy." tt0100944,in5f7RMtnoU,Helga shows Bruno's parents what the witches have done to him. tt0327056,gTgm44dkSCY,Jimmy confesses the depth of his loss for his daughter to Dave. tt0327056,13_ffd4CiG4,Dave Boyle tells his wife about his abduction when he was a boy and how it has affected him ever since. tt0327056,-yvnWPZy1FQ,Brendan Harris confronts his brother Silent Ray Harris about the murder. tt0327056,RYlKhpi--QQ,"Jimmy Markum breaks into the scene of the crime as Sean Devine discovers the body of his daughter, Katie Markum." tt0327056,rbFIs5-Rn_Y,Whitey Powers and Sean Devine have some questions for Dave Boyle. tt0327056,pkylHxUSxLM,"Dave Boyle comes home covered in blood, to his wife Celeste's surprise." tt0327056,W_URoElm3Ts,"After his daughter's murder, Jimmy Markum wonders about small choices that can have big consequences." tt0327056,s9k-uO50300,"After apprehending the killers, Sean questions Jimmy about the whereabouts of their friend Dave Boyle." tt0327056,IGlBlA7Vr0M,"Jimmy confronts Dave about killing his daughter, but Dave admits to killing a child molester." tt0770752,TYC_FD2YXro,Tess confronts Finn about his debts with Big Bunny. tt0770752,ygU2QenlIvU,Finn tries to negotiate with Bigg Bunny about his cut of the treasure. tt0480249,aK1r7tBWnro,Robert and Anna realize that the infected have followed them home. Robert uses his last line of defense in hopes that it will be enough to save their lives. tt0480249,LEDYzJazfw0,Robert sees a strange sight while driving through the deserted city. tt0480249,ueR0lJzIxWo,"After his dog saved him life during an attack by the infected, Robert has to do the unthinkable." tt0480249,lO8EJQzkYxg,"Out of grief and anger, Robert lures the infected to the pier with the intent to destroy them, even if it means destroying himself." tt0480249,er6wSXJC57U,Sam risks her life to save an injured Robert when a pack of infected dogs attack. tt0480249,MbbKc8GJtFA,"Once he knows their whereabouts, Robert sets out to capture an infected." tt0480249,sWEvLBzMpYE,Robert follows his dog Sam into an abandoned warehouse where they stumble upon a group of the infected. tt0480249,kPSk30qzgFs,Robert realizes that the infected still have a shred of humanity and that he is the one who has been the monster for taking and experimenting on them. tt0480249,-YykCz0f3Vk,"Anna, and Ethan take refuge in the laboratory when the infected attack." tt0480249,BHZKSYLAecQ,"While driving through the city, Robert and his dog Sam spot some deer and chase them through the deserted city." tt0366548,b1jqSRnqLMw,"The ""aliens"" arrive, and Mumble leads the other penguins in a dance routine in an attempt to communicate with them." tt0366548,ymA7OFZ9lF0,"Mumble and the amigos cause an avalanche, which dislodges a strange contraption from the ice." tt0366548,qVNAGVSKEBQ,Mumble fights to get a fish for Gloria in an attempt to show his affection for her. tt0366548,xGj_wbPl-6w,Mumble finally finds a way to communicate with the zoo patrons. tt0366548,PFbxA5HjwyQ,"Mumble takes a leap of faith to follow the ""aliens"" into the unknown world and save his family." tt0366548,NkaJFlr5Fhk,Noah the Elder forces Mumble to leave the group because he believes that he's responsible for the famine. tt0366548,-0f67QE-HP8,Mumble narrowly escapes being eaten by a hungry leopard seal. tt0100944,x1H6pD3vNwQ,The Grand High Witch finds a devious way to get Luke to come out of his hiding spot. tt0066434,nkQAhpLBok8,"Imprisoned in the White Void, THX is tortured by the Chrome Robots for his alleged crimes." tt0066434,ik_WAfUpVKQ,THX has a hard time focusing as an accident occurs in another test chamber. tt0066434,U0YkPnwoYyE,THX visits a Unichapel and makes a confession to a computerized religious entity known as OMM 0910. tt0066434,4bY-bFqj97k,THX climbs to his freedom. tt0066434,J5nmxHjPuvY,THX flees in an autojet as two police bikes engage him in hot pursuit. tt0066434,Ysdz8bIuyWY,A Control Officer orders a mind lock on THX when he violates protocol. tt0066434,0MUWDGcRCOQ,"SRT helps THX and Sen escape the white void, only to lead them into a massive sea of people." tt0066434,a-SnsqKFHLY,"THX and his roommate LUH go about their routine workday, afflicted with something that they can't quite comprehend." tt0066434,XmGKlWjQHic,THX endures a torture of the bungling variety as a pair of disembodied prison monitors play around with THX's motor functions. tt0066434,DfSToqJxCSI,"THX is subjected to a battery of medical tests, with the end result indicating that some of his organs are suitable for harvesting." tt0366548,WTMcikRZcBk,"Mumble, the amigos, and Lovelace are attacked by two hungry killer whales." tt0366548,kMkxtj-mu14,"Gloria comes to join Mumble and the amigos on their journey, but he pushes her away in an effort to keep her safe." tt0366548,q-H62GgHjeg,"Miss Viola teaches her students the importance of their heartsongs, but Mumble has trouble discovering his." tt0100944,ngeORuhnajc,"A witch detects the presence of Luke in the meeting room, and the chase is on." tt0100944,jTHFCMuIrzQ,A Woman in Black attempts to lure Luke out of his treehouse with a disappearing snake. tt0100944,2AeJ2VHssPI,"Helga tells her grandson Luke about witches, and how to spot them." tt0100944,ZEshWoP9if0,Mr. Stringer chastises Luke Eveshim and his grandmother Helga for bringing mice to his hotel. tt0100133,tCtZfBVS1Tg,Danny recites a poem for his fellow crew members. tt0100133,GNdpxi9F1AA,Val is finally able to let the bombs drop when he gets a clear shot at the city below. tt0100133,Q3LcGb0DGM8,The crew attempts to land the Memphis Belle with malfunctioning landing gear and only one working engine. tt0084917,rj7e6WvyClY,Jenny Fields purchases a prostitute for Garp. tt0084917,xVT46mh22iw,Roberta Muldoon tells Garp about her desire to have kids. Garp attacks the reckless plumber who speeds through his neighborhood each day. tt0084917,hRoE2HRnpkk,"Jenny Fields tells Dean Bodger how she conceived her son, Garp." tt0084917,bUWnZAFfxYc,"Garp discovers that Helen Holm has been sleeping with her student Michael Milton, and in his rush to get home, he crashes into Michael's parked car." tt0084917,GTqz4duPdYQ,"Garp and Helen find a new home to buy, and then a plane crashes into it." tt0084917,p7bpv3zs8Dk,Roberta and Garp play with the kids. tt0084917,ypw7AA7tf-4,Garp imagines flying and fighting villains with his father. tt0084917,hdhW0bChQwg,"Garp and Roberta Muldoon attend Jenny's all female memorial service, where Garp is spotted and attacked for being a man." tt0084917,YUSxYNj_kM0,"Garp coaches wrestling practice, when suddenly, Pooh comes in and shoots him." tt0084917,XlZUBUSKbFk,"Garp meets transsexual Roberta Muldoon, who is the most sane person in his mother's circle." tt0037913,aKnvOP-1U00,Mildred recognizes what a bad influence Monte is on Veda and asks him to stay away from her. tt0037913,gI1_6ob3hio,"Mildred gives her daughter Veda a brand new car for her birthday, but she responds with a sense of entitlement." tt0037913,ozf32hrXGiY,Veda embarrasses and berates her Mildred for being a waitress. tt0037913,kjzRZCxQ1EE,Veda tries to convince Mildred to marry Wally for his money. tt0037913,JSmcnUcLVHA,"After Mildred and Bert get into an argument, they decide to separate and Mildred kicks him out of the house." tt0037913,-ASYRiRflDM,Wally makes a move on Mildred once he knows that Bert is out of the picture. tt0037913,Il1NzkQ3rYs,Monte and Mildred spend a romantic day together and confess their feelings for each other. tt0037913,x4CEkYJNir0,"After Mildred discovers Veda's scheme, she starts to see her daughter in a new light." tt0037913,70NH2okaBY4,"After returning from a vacation in Mexico, Mildred catches up with Ida and admits that she wants to reconcile with her disrespectful daughter." tt0037913,GPuCrJujOkk,"Mildred is shocked to find that Veda and Monte had been involved in an affair. Then, in the heat of an argument, Veda shoots Monte with Mildred's gun." tt0100133,YER_g7jph94,"While manning the plane, the boys discuss their post-war plans." tt0100133,RmhSgZ106Wg,Col. Harriman shows Lt.Col. Derringer letters written by the families of the deceased. tt0100133,6MrxdKGZaWI,Dennis and Luke receive a scare when a bag of tomato soup explodes in the cockpit. tt0100133,djIvmaYI9LQ,"Luke shoots down an enemy plane and watches in horror as it crashes into their fellow plane, Mother & Country." tt0100133,ypvzo6iiM7M,The Memphis Belle is attacked by a fleet of German planes. tt0100133,59Ntwoot4_s,"After the plane leading the fleet goes down, the Memphis Belle takes over." tt0100133,85CcD6t5cx4,"When an engine catches fire, Dennis and Luke have to think of a way to put it out quickly." tt0036098,jVsXMF9sbVQ,"Exhausted after swimming across the river, Lassie is saved by Dan'l and Dally Fadden's kind hospitality." tt0036098,P6PLrI4R4x4,Lassie is almost home when she encounters a couple of determined dog catchers. tt0036098,voYRf2GVXbc,Lassie escapes her new home just in time to meet Joe after school. tt0036098,2H7XknY3PMA,"After being taken to Scotland against her will, Lassie manages to escape her new owners with a little help from Priscilla." tt0036098,NBRHljOdrh0,Tootsie and Lassie risk their lives to save Rowlie when two bandits attack from the woods. tt0036098,P7JKRDjM_Vk,Rowlie and his dog Tootsie put on an entertaining show with help from Lassie. tt0036098,VRxRsbDfLaw,"After her first escape, Lassie is returned to the kennel, but she resorts to jumping the fence." tt0036098,BV1Nyf_u1AA,"Like every morning, Lassie wakes Joe up and escorts him to school." tt0036098,O2VkpNsOM4o,"After a long journey home full of perils, Lassie is finally reunited with Joe." tt0036098,TvSS_-BohSc,Lassie is mistaken as a danger when she passes through a herd of sheep on her way home. tt0770752,gX57uKMrxp4,"After their divorce, Finn tells Tess that he found the treasure, but that their boat is gone." tt0770752,VY4Bo_Mcws4,Tess and Finn attempt to fly Bigg Bunny's plane. tt0770752,IMF8PvqFN-c,Tess runs into Finn on Nigel's yacht the night after they get divorced. tt0770752,hHibPPRQB40,"Tess and Finn realize that the treasure is buried in the cemetery, which sparks their excitement for each other." tt0770752,0vlBQqEc5YA,Finn makes up with Tess before he tries to land the plane. tt0770752,XUwybDr5HlQ,Bigg Bunny and his henchmen chase Finn and Tess through the woods. tt0770752,LCsNRcdlAkw,Gemma tries to distract Moe's crew while Finn breaks up his grid. tt0770752,h8E3sSTc11E,Finn gets thrown off a boat and left for dead by Cordell and Curtis. tt0239395,vAd0QlUaIBY,Mr. Tinkles explains to his minions his plan to rule the world. tt0239395,XQUKOgrir0A,"Mr. Tinkles sends the dogs an evil message, forcing Butch to turn to Dog Headquarters for support." tt0239395,gknobwKAStE,The ninjas didn't finish the job so Mr. Tinkles must send in the Russian. tt0239395,nC-it_V8df0,Lou the Beagle battles a pair of ninja cats. tt0239395,45RmWBZsU1Y,Mr. Tinkles visits his owner's factory to fire all the workers as the next step in his plan. tt0239395,DBa4fJc9rE0,Mr. Tinkles reveals himself and his plan to spread a mass dog allergy to the world. tt0239395,aIZsVuaUWB4,"Buddy chases a cat down the street, but ends up getting catnapped." tt0239395,MuFfh15AMLU,Butch and Lou are attacked by a Russian assassin trying to destroy the canine allergy formula. tt0239395,AQa015gBmro,Mr. Tinkles talks to the maid so she freaks out and will not let anything stop his evil. tt0239395,aeF3Q6eTU5k,The Russian Blue breaks in to steal the formula from Mr. Brody and the dogs try to stop him. tt0103776,UcaPMGGla4o,The Penguin collapses to his death and his penguin friends carry him to his watery grave. tt0103776,eIo_S0aHyfI,Catwoman and The Penguin carry out their plan to frame Batman as a wanton murderer. tt0103776,wNWy3YmM3Kw,Max Shreck introduces Oswald Cobblepot to his campaign team for mayor. tt0103776,aokJADOVMC0,"While The Penguin speaks to the press and warms the hearts of Gotham's residents, Catwoman kicks some tail and announces herself to the world." tt0103776,UqStvc107-M,Max Shreck pushes Selina Kyle out the window because she knows sensitive information about his diabolical plans. tt0103776,A08XpT2q4Xc,"After her feline resurrection, Selina Kyle destroys the possessions of her former meek persona and becomes Catwoman." tt0103776,c4ux2NclHoE,"Batman chases down The Penguin and uses his ""babies"" — actual penguins — against him." tt0103776,kWrOmEtXk0k,Catwoman blows up a department store. tt0103776,2aN2OU0pk-Q,Batman tries to dissuade Catwoman from getting revenge against Max Shreck. tt0103776,R66c0UiUCZ8,The Penguin presents his plan to kidnap the firstborn sons of Gotham City and toss them into the sewers. tt0443649,lYxVM8oNxRM,"Guards discover D'Leh's camp, but Tic'Tic valiantly defends them with his spear." tt0443649,c-NDI-HvYd4,"During the battle at the pyramid, D'Leh tries to save Evolet from her captor." tt0443649,mVzdHEhC8YI,"On the massive pyramid, D'Leh starts a mammoth stampede and slave revolt against the wicked masters." tt0443649,4NKk7BYl0Rk,D'Leh helps a trapped sabretooth tiger escape a pit and hopes that he will not be eaten. tt0443649,DoKxkx0bYRk,D'Leh and his tribe take on a herd of wooly mammoths. The hunt master Tic'Tic takes the lead in herding them into their trap. tt0443649,k3yUlJtCkJg,"D'Leh, Evolet and Baku are chased by hungry prehistoric birds." tt0443649,EzqRc-RLJfU,The Pyramid God is not pleased with the slaves' progress on his construction and teaches them a lesson. tt0443649,wJJDM675Ypw,"With a bit of good fortune, D'Leh brings down a mammoth and claims the white spear and Evolet as his reward." tt0443649,SRlmBs7EwMk,D'Leh faces down the Pyramid God and proves that he is no deity. tt0443649,zGrIGZifpwg,D'Leh convinces the warriors to fight as one to bring down their godlike enemy. tt0448011,RDdc0-JD8Dk,John Koestler returns to his estranged father's home and embraces his family before the end of the world. tt0448011,mb63Ds-XWQE,"John Koestler is refused entry on the alien ship, but allows his son to leave with the The Strangers." tt0448011,1YrG1iLwEWk,"While John Koestler argues with Diana, Caleb and Abby are kidnapped by the Strangers." tt0448011,iojZt-Ht4Nc,John Koestler confesses to Phil Beckman that the world is going to end and there is nothing he can do about it. tt0448011,kq-GLDVKqMU,"While their parents are inside looking for clues, Caleb Koestler and Abby get a visit from The Strangers." tt0448011,yw7tuJeWXlA,John Koestler explains to Diana why he must protect the ones closest to him. tt0448011,E6gWFTv3xE8,John Koestler happens to be at the location of the next predicted disaster -- a cataclysmic plane crash. tt0448011,_pWW7Xmat6o,"John Koestler notices the numbers on the page have a specific set of sequences, which refer to the times of fatal disasters over the last 50 years." tt1136608,LS4oNHk0tlk,"The women in Guido's life are introduced including Mamma, Carla, Stephanie, Luisa, and Claudia." tt1136608,R-chvFgDLnM,"Guido sings ""Guido's Song"" as a reaction to the hounding questions of the journalists." tt1136608,ymZFsUBiKJA,Guido Contini talks about the nature of filmmaking at a press conference. tt1136608,W1KhvPZmTgc,"Liliane La Fleur sings about the Folies Bergères, a Parisian theater with showgirls." tt1136608,it_WqpOBfWI,"Luisa comes to the realization that she's just another woman to her husband Guido, and lets him know it." tt1136608,KNO5Mhxm8G4,"Claudia sings about how Guido fails to love her, despite her love for him." tt1136608,bmmxeZEnsL0,Stephanie lavishes praise on Guido for both his style and his movies. tt1136608,nfC8sEnM_5A,"Saraghina, a prostitute, teaches Guido the art of love and sexuality." tt1136608,3_dOw0UilDY,Carla seduces Guido over the phone. tt1097013,w8txE148NNI,Chita and Jesus mistake Eric for their intended target. tt1097013,oIEtwZK04wM,Guch and Brody argue about who messed up the bank heist the most. tt1097013,fO8-yVmcQCo,"During a stand-off, Guch fires the first shot which leads to all hell breaking loose." tt1097013,I2gqWarrj-Q,"When Bodega realizes that his shipment has gone missing, he orders Jesus to track it down... or else!" tt1097013,xdQyp5ewyew,Ms. Jackson gives Leo another chance to prove he's a good worker or else she will fire him. tt1097013,cWMP0aAueQY,Guch and Brody discover a cache of cocaine. tt1097013,l1OgTkhFJn8,Guch and Brody negotiate a drug deal with Shavoo. tt1097013,1-rmOabireo,"Bodega catches Jesus and Chita off-guard, and puts the couple in a compromising position." tt1097013,qAdNnZqKGiQ,Jesus and Bodega interrogate Leo as to the whereabouts of the missing cocaine box. tt0448011,EzocwDE3VK4,"Determined to stop another disaster from happening, John Koestler chases down a suspected terrorist, only to realize he's wrong." tt0448011,wrO6W6vTjV0,Caleb Koestler is awakend by a mysterious stranger and sees a terrifying vision. tt0464154,FPDAxknJFW8,"Jake rescues Kelly and shares an intimate moment with her, while Novak tows them to a minimum safe distance." tt0464154,XUxsLiSEi9w,"When their boat crashes into the rocks, Derrick looses one of his girlfriends... as well as something far more personal." tt0464154,71GRwoL1tdA,"The panic and the bloodshed are kicked up a notch, as spring breakers take matters into their own hands to escape the piranha onslaught." tt0464154,ITN9541Gd8Y,The piranhas attack the spring breakers in a massive feeding frenzy. tt0464154,AFBqbhNngJo,"Mr. Goodman is stunned by the presence of a prehistoric pirahna, and warns of the difficulty of destroying the species." tt0464154,LUe27-RMDX4,A freak beer bottle accident sets off a feeding frenzy of piranhas for poor old Matt. tt0464154,FHSwbggymEU,"When divers from the USGS accidentally disrupt the piranha's underwater breeding ground, they become a tasty meal." tt0464154,ifDBVFHT1DU,"Jake allows himself to get caught up in the spring break debauchery until Kelly, the girl he has eyes on, catches him in the act." tt0464154,4vOQu8rERuo,Kelly and Jake get talked into doing body shots while being filmed for a Girls Gone Wild-like TV show. tt0892318,tUZYyuHIbJw,"While spending the day with Juliet's secretaries, Sophie makes an exciting discovery." tt1655420,Qp4Vo2bMgJk,Colin watches as Marilyn sings in the bathtub. tt1655420,tANIXMqv77U,Colin professes his love to Marilyn and gets her to promise to return to set and finish the movie. tt1655420,nfoIqJWYqX4,Marilyn convinces Colin to shed his inhibitions and take a dip in the lake. tt1655420,cErG8_neSa4,Marilyn invites Colin over to get his perspective on how the film is proceeding. tt1655420,zx0PxIdo_pw,Sir Laurence Olivier grows increasingly frustrated with Marilyn and her reliance on Paula Strasberg. tt1655420,aJY0vUsHL9Y,"When Sir Laurence Olivier grows frustrated with Marilyn, Dame Sybil Thorndike offers to practice their lines together." tt1655420,mD7NPkG9kwg,Marilyn struggles with her lines as Sir Laurence Olivier tries to keep the table read moving along. tt1655420,MoJqPqmjxUM,Marilyn arrives in England to work on a movie with Sir Laurence Olivier. tt1655420,Lf1ORGBLKtc,Vivien Leigh stops by the set and watches Marilyn's dailies with great jealousy. tt1655420,MRTCRVf4ppc,"Colin visits Marilyn in her dressing room, and she questions his allegiance to Olivier." tt1655420,NwZlSjkXWnk,Marilyn demonstrates to Colin how easy it can be for her to turn on the sex appeal. tt1655420,cGgPJKE_jSs,Colin watches Marilyn perform a number in There's No Business Like Show Business. tt1637706,M-_XQTwadHg,Natalie and Miranda try to get Liz to see that she's let herself go. tt1637706,tc4zPfUtP8A,Ned stupidly tells his parole officer that he just got high. tt1637706,euffalJGKn4,"When Ned goes to grab the car keys, he discovers Dylan and Tatiana 'interviewing' in the buff." tt1637706,H63L0VBnCDA,"Ned unwisely sells marijuana to Officer Washburn, and is immediately arrested." tt1637706,4oJk7-aMiNY,A game of charades goes dark when Ned unleashes a wave of anger following the continual mocking and teasing from his sisters. tt1637706,LdHfwFIuXtw,"Operation Free Willie goes off track when Ned accidentally reveals to Cindy that her girlfriend is having an affair, and is pregnant." tt1637706,7kikXTi4fFs,Natalie and Ned express their feelings in the steam tent. tt1637706,58C7ep68GMw,Ned accidentally reveals secrets concerning Jeremy and Miranda's feelings for one another. tt1637706,GgtGlyKIMh8,"Cindy helps boost Ned's confidence by having him recite the phrase, ""I'm the man.""" tt1637706,VQnDBor2tWg,Ned and Jeremy eye potential women in a coffee shop. tt1262416,JEcfknHqMyc,The Ghostface Killer puts Kirby through an intense horror movie pop quiz in order to save Charlie. tt1262416,p5n3koQZVDY,"The Ghostface Killer breaks one of the ""rules"" of new pop culture cinema when he kills Robbie Mercer, who claims to be gay, and therefore, exempt from attack." tt1262416,UG7lwsjxwz0,Deputies Hoss and Perkins discuss the fate of cops in movies. tt1262416,Urj46blH8vo,Gale Weathers is attacked by the Ghostface Killer and it's up to Dewey to save her. tt1262416,BdOG2-Gn044,"Sidney is the special guest of the high school's Cinema Club, and it's here where she and Gale Weathers learn about the new rules of horror movies for the 21st Century." tt1262416,QhZ86T_nh3Y,Rebecca is stalked and hunted by the Ghostface Killer in a creepy parking garage. tt1262416,GTRAmbo04JA,"Ghostface taunts Kirby, daring her to open her closet door." tt1262416,4gehr6BLqRU,Ghostface claims another victim in young Jenny Randall. tt1262416,XRxL8KW7dbo,A series of movies-within-movies and murders-within-murders for your viewing enjoyment. tt1655442,mbj-OpDla5A,"As George drinks himself into deeper depths of self-loathing, he has a hallucination where he sees the characters from his failed movie taunting him." tt1655442,EC20KdIDiEY,"George and Peppy give the dance performance of their lives -- and in synchronized sound, too." tt1655442,tSWhP2gwhms,"With George trapped in the fire, his dog Jack, saves the day by alerting a Police Officer." tt1655442,HAqKJv1ndXo,"With his career in rapid decline, a despondent George burns his old silent films, which have now become a painful symbol of his obsolence in the era of sound." tt1655442,_58I2YrkKdk,"George finds himself trapped in world full of sound, but his own voice remains mute and powerless." tt1655442,TC_3tiLJC8E,George gives Peppy something special to make her stand out from all the other actresses. tt1655442,Vsx0zX06F_c,"As George and Peppy work together, their attraction towards one another grows stronger." tt1655442,qWlS0TrvHXE,"George is mesermized by a pair of sexy, dancing legs and is stunned when he realizes that those legs belong to Peppy." tt1655442,gUjOiNR6HWo,Peppy struts her stuff at an audition and wins a part. tt1655442,7_WoelQbZyM,George finds himself as the object of affection for young Peppy when she spontaneously kisses him in front of the cameras. tt1270761,eCyr2_QTNVc,"Kim and Sally fight off the creatures while Alex recovers and realizes whats going on. They all win the fight, but at a heavy cost." tt1270761,v_R9dxNFKWY,"Convinced that their are creatures in the house, Alex and Kim decide to pack up and take Sally far away from there. But the creatures are onto their plan and decide to take out the parents first." tt1270761,4Zb-n9MXbPE,"Alex and his girlfriend Kim throw a dinner party at their new home. During the party his daughter, Sally notices one of the creatures and chases it into the library. The creatures lock her in and attack her as she tries to get photographic proof of them." tt1270761,iReLGcSZtwI,"In the middle of taking a bath, the lights turn off in the bathroom. Sally gets out to go turn them back on, only to find herself surrounded by the creatures armed with sharp objects." tt1270761,IKrh9Q6RU8M,"Sally tries to make friends with the creatures in the cellar but is inturupted by Mr. Harris, a workman who knows the history of the house. Mr. Harris plans to close the grate that keeps the creatures in but they escape and show their displeasure at this plan." tt1270761,yrUXPvP3Gk0,Sally is awoken in the middle of the night by the creatures scurring around her room. She grabs her flashlight and tries to find them with a terrifying result. tt1270761,HSJRevnIGww,Sally notices some odd things going on in her bedroom as she gets ready for bed. tt1504320,sRPTqsO_SoM,King George VI engages in some last-minute speech preparation with help from Lionel. tt1504320,ToDDs9twuno,The Queen tries to comfort King George VI as he becomes overwhelmed with his new responsibilities. tt1504320,l65KNW2ZGV8,Elizabeth pays a visit to Lionel in order to secure his services to help her husband's speech impediment. tt1504320,_gwHTYw2ThM,Prince Albert confronts his brother about his relationship with an American divorcee. tt1504320,KIqqvICYqUg,"Lionel tells Prince Albert that he would make a good king, and in return is accused of uttering treasonous thoughts." tt1504320,nVpfljH55TQ,Lionel points out that Prince Albert doesn't stutter when he curses. tt1504320,ZcjvH_shI5I,Prince Albert comes over for a night cap and tells Lionel about his childhood trauma. tt1504320,SQj4HtDOjkg,Lionel teaches Prince Albert the simple mechanics of speech therapy to master his stammer. tt1504320,yjMXMAKF-Rg,"On his first visit with Lionel, Prince Albert is taken aback by his unconventional methods." tt1504320,8djvfSfVPO4,"Lionel convinces King George VI that he has what it takes to be a leader, independent of the shadow of his father and brother." tt1504320,Tp84-New5aA,"Myrtle, comes home early to find King George VI and The Queen visiting her husband Lionel." tt1504320,f7131IkiSCg,"King George VI confronts Lionel about his lack of credentials, and comes to realize the depth of his own potential." tt0361748,6m5KyzSNu3s,"The night of the Nation's Pride premier, Shosanna tidies up all the little details to exact revenge, and dons her war paint." tt0361748,uIBDomdpK7Y,"At the basement tavern, Major Hellstrom plays a card game with Lt. Archie Hicox and Bridget von Hammersmark where you guess the real or fictional character. He is the character King Kong." tt0361748,a3uqv0eP7Tg,"When Sgt. Werner Rachtman refuses to disclose information to the Basterds, he is introduced to Sgt. Donny Donowitz a.k.a. The Bear Jew." tt0361748,O5s3Oj2cPgc,Col. Hans Landa divulges his intentions of letting the Basterds kill Hitler in exchange for immunity from a potential war crimes trial. tt0361748,BN4GI97RoSw,Lt. Aldo Raine and two other Basterds try to pass for Italian members of the film industry at the premier of a Nazi propaganda film. tt0361748,qLGjjHXyiOQ,"Shosanna and the Basterds wreak havoc at the Nazi film premier of Nation's Pride, killing Hitler and blowing up the theater." tt0361748,7LFtoz9sERo,Lt. Archie Hicox blows his cover by using the wrong fingers when he orders three glases of scotch. A chaotic bloodbath ensues. tt0361748,QfSjs_6MZOQ,Col. Hans Landa explains to the French dairy farmer how he is successful at finding Jews in hiding. tt0361748,eOcimzsviFA,Lt. Aldo Raine gives a rousing speech outlining the parameters of the Basterds' mission. tt1311067,6cwTpQj9E4U,Laurie and Mya return home to find Annie the victim of a brutal attack. tt1311067,MOEy-Da4ra8,Harley makes out with Wolfie in his van until Michael Myers interrupts them. tt1311067,LqDoPnJn9vg,Loomis makes a talk show apperance while Michael Myers goes trick or treating. tt1311067,0vklrunpo7c,Howard has a run in with Michael Myers behind a strip club. tt1311067,BPWhOdRSQ6U,Laurie hallucinates about killing Annie. tt1311067,DYOqsNNCOLQ,Michael Myers is reborn after taking a beating from Sherman and Floyd. tt1311067,zgXQFwcTJsY,Loomis holds a book signing in Haddonfield one year after Michael Myers terrorized the town. tt1311067,ctdY2KcX-lM,"Laurie runs away from Michael Myers, but Nurse Daniels is not so lucky." tt1311067,kzGR27NzXKA,Michael Myers is placed inside an ambulance as Laurie is taken to the ER. tt1311067,ujwZug46-tc,Scott and Hooks hit a cow as they transport the corpse of Michael Myers. tt1311067,WTaUYNnX91g,"Laurie waits for Buddy to return, but their reunion is short-lived when Michael Myers appears with an axe." tt0489049,06OkoPlUGm4,The Head of Security at Skywalker Ranch forces the gang to prove their fandom by answering a series of questions. tt0489049,jj0765rFtxQ,Windows faces off against a THX security guard in the Lucasfilm archive room. tt0489049,EcRdEs_Vxtk,Eric and Linus obtain classified information on Skywalker Ranch from none other than William Shatner. tt0489049,R4cgP1_M8ts,"Zoe bails the boys out of prison, but only after they have a word with Judge Reinhold." tt0489049,buVMAoBMl34,"With the cops in pursuit, Hutch makes the jump to hyperspace." tt0489049,IfNhqLwtuA0,Harry Knowles challenges the fanboys with a pop quiz of Star Wars trivia. tt0489049,X0FxwPfYz0Q,The Chief serves the fanboys some peyote-laced guacamole. tt0489049,Os49ky9Aiqg,Admiral Seasholtz and his fellow Star Trek fans attempt to defend their statue from the Star Wars fanboys. tt0489049,0_aAMNEqylU,Eric approaches Hutch amd Windows with his plan to drive cross country and break into Skywalker Ranch. tt0489049,b4CDHFMO1R8,"Linus refuses to let his illness derail the mission, and kisses his doctor for good luck." tt0976222,EYoO_t1M-Sg,Will manages to take a rag tag bunch of teenagers and form them into a band. tt0976222,UkObc3-RKYg,"Discussing a new name for the band, Will throws out the suggestion of ""I Can't Go, I'll Go On.""" tt0976222,HO6yGAV4G0A,"Will, unsmoothly and awkwardly, attempts to make his first romantic move on Sam." tt0976222,THFVJBcv7W4,Will shares the significance of the club CBGB with his girlfriend Sam. tt0976222,xsNboBgmN38,The band and manager Will get into a good groove during a rehearsal. tt0976222,v96ND45Aqmo,A romantically inexperienced Will gets tips on kissing from Charlotte. tt0976222,DXT4GZfUONw,"Through a classroom video presentation, Will apologizes to Sam for fogetting their date." tt0976222,qEJNox8TCOw,"The band rehearses with Charlotte on lead vocals, as Will and Sam watch on with impressed eyes." tt0976222,7EHVvWxKKro,"During the Bandslam competition, I Can't Go On, I'll Go On plays their big song." tt0375568,1afEpntCGXk,The inventive and creative Astro Boy builds small aircraft based off of Leonardo da Vinci's work. tt0375568,Ls4Ua-QtHYE,Astro Boy uses the power of the Blue Core to resurrect the giant robot Zog. tt0375568,ijnfTK6LgMA,Astro Boy evades the pursuit of military aircraft. tt0375568,RB2mOFx7jfY,Robots combat in a stadium for the entertainment of the crowd. tt0375568,DLf5iJ2jOZ4,"When Astro Boy falls from the window of a skyscraper, he discovers rocket-boots that can make him fly." tt0375568,UXjZbdc79dU,Astro Boy and General Stone clash in a devastating robot battle. tt0375568,At6Q3fUFU1o,Astro Boy is brought back to life and met with celebration. tt0375568,zi7HyTbmVe4,"Astro Boy and the robot Zog are pitted against each other in the robot fighting arena, but Ham Egg is displeased with their lack of obedience." tt0375568,qF5BMKYv94Q,Dr. Tenma creates a robotic replica of his deceased son. tt0375568,KZHIVNGrtLM,Astro Boy meets the Robot Revolutionary Front who want to free robots from slavery. tt1315981,ew5-ui5CvJI,George reflects on his life before suffering a heart attack. tt1315981,JMmp4T6mbkw,George and Kenny head to the beach for a spontaneous round of skinny dipping. tt1315981,bTuSlICST0Q,"George shares a drink with Kenny, a student who has followed him to the bar." tt1315981,sfVRk14aLtE,Charley admits to never understanding the relationship George had with Jim. tt1315981,TDCa_16CiCU,George and Charley lament the breakdown of culture and manners in America. tt1315981,ukTcTd6wUD0,George recalls an intimate moment reading late at night with Jim. tt1315981,0HjAT5lo4Ts,"George has an unexpected connection with Carlos, a Spanish prostitiute." tt1315981,kXBTh2sv4Lg,George has an encounter at the bank with the precocious little girl who lives next door to him. tt1315981,KoxDD5gYIYk,George speaks to his students about the persecution of minorities and the prevalence of fear. tt1315981,8_iFDOIkRFk,George receives the news from Mr. Ackerley that his boyfriend has died in a car accident. tt1315981,BL-d6jqZ858,George goes through his morning routine and ponders his own mortality. tt0892318,8b0SHCBsDRM,"Claire recalls the the first time she saw Lorenzo, and the regret she's felt for fifty years for not acting on her impulse." tt0892318,b9KIXCf4U48,"After Sophie says her goodbyes, Charlie realizes that he doesn't want to make the same mistake as his grandmother, Claire." tt0892318,mNcyNmX9B_A,"Curious, Sophie follows a woman she sees at Juliet's house and meets a charming group of secretaries." tt0892318,a75Ywerim8M,Sophie visits Juliet's house and discovers a heartfelt tradition. tt0892318,vZ2jwhdnmw4,"Sophie follows Charlie around the streets of Verona and meets his grandmother, Claire." tt0892318,ACh4ghU9eok,Sophie shows her writing to Charlie for the first time. tt0892318,tSJ3DYrCdNk,Sophie and Charlie share a romantic moment under the starlit sky. tt0892318,UeIxzCUMEsg,"After 50 years and days of searching, Claire finally finds what she's been looking for -- Lorenzo." tt0892318,a0n9iFb4i70,"At her wedding reception, Claire reads Sophie's letter out loud." tt0892318,sZI5ebqgfaw,Sophie and Charlie find themselves in a familiar romantic situation as they profess their true feelings for each other. tt1951264,wcenhpP37sg,"While visiting District 11, Peeta and Katniss go off the script and pay tribute to Rue and Thresh." tt1951264,2V6d3f8W-oc,"Katniss and Haymitch are selected for the Third Quarter Quell, but Peeta volunteers for Haymitch." tt1951264,4_zn64bRf6Q,Gale and Katniss stand up to the Peacekeepers and Gale gets whipped for his insubordination. tt1951264,Lma2LDjYf5k,"Peeta dies when he is electrocuted, but Finnick resuscitates him." tt1951264,JPbkeLf4zU0,"Katniss wakes to find that Plutarch Heavensbee, Haymitch and Finnick are part of a revolution -- that has only just begun." tt1951264,D6_ZC6BywXs,Katniss remembers who the real enemy is and destroy's President Snow's Hunger Games arena with an electrified arrow. tt1951264,I44NZgYW6_4,Katniss and Peeta share an intimate moment on the beach. tt1951264,OC82kTAQZew,"Katniss unveils her Mockingjay dress and Peeta tells everyone that not only are they married, but they are expecting a baby." tt1951264,RsnwTCPo9RI,"Haymitch, Katniss and Peeta meet the uninhibited Johanna Mason who strips in the elevator." tt1951264,RrDdgbo_NaE,Katniss meets the pompous Finnick Odair and then makes her grand entrance with Peeta. tt1951264,E9v4TSOvOIc,Cinna is killed for his defiance just as Katniss is raised to the arena and the Hunger Games begin. tt1951264,AhH1Yqw-gmA,"Wiress reveals that the arena is set up as a clock of death, but the Careers attack and the Gamemaker has a special trick up his sleeve." tt0977855,Mnw2rmLB4_I,Joe Wilson implores Valerie Plame to go public and help defend their names publically before they're buried by the White House. tt0977855,4-Ml8OEXLbE,Scooter Libby intimdates a CIA analyst into agreeing with him on the probability of Iraq having created weapons of mass destruction. tt0977855,zyIccO0lXiQ,"Joe Wilson and Valerie Plame reunite in the face of enormous political pressure. Later, Joe gives an impassioned speech about the nature of the truth." tt0977855,L0yOTA3Wq_E,Valerie Plame has new troubles in her life when her identity as a CIA operative has been leaked to the public. tt0977855,SpMvmtj35y8,Valerie Plame disputes with a co-worker about the legitimacy of aluminum tubes that can be used to build nuclear weapons. tt0977855,wmlNvVvfXNA,The undercover status of Valerie Plame is revealed in the newspaper. tt0977855,opxtApiyARs,"While having lunch with two businessman, Joseph Wilson is harassed by a right-wing reporter trying to make a scene. Afterward, a cab driver recognizes Joe, as his anonymity gives way to noteriety." tt0977855,RyObt_1eT8M,Joe argues with Valerie that they need to fight back against the White House in order to change public opinion in their favor. tt0977855,cv36jml_lAE,"Valerie tells her father, Sam Plame, that her marriage is on the rocks." tt0977855,HFZSTBmWyd8,Joseph Wilson and his wife Valerie Plame engage in a drunken conversation about terrorism and racial profiling. tt1120985,cBvFsIF5GNE,Dean begs for Cindy to consider their daughter as she tells him she wants out of their marriage. tt1120985,4D20x3Pfg6E,"A drunken Dean shows up at the clinic, where he harasses Cindy and punches Dr. Feinberg." tt1120985,XjjZyyzdOvs,"Sensing something is wrong, Dean gets Cindy to admit that she is pregnant." tt1120985,rGqSj0MA4eM,An argument ensues when Cindy provokes Dean about his lack of ambition. tt1120985,_AdhEPNDxeg,Dean runs into Cindy on the bus and manages to insult and compliment her simultaneously. tt1120985,NgcEbuMsrS4,Dean and Cindy check into a motel without their daughter in a last ditch effort to save their marriage. tt1120985,s-te8zRj4WY,Dean tries to convince Cindy that he's a good guy with a real job. tt1120985,tDVlpRBhtWQ,Cindy asks her Gramma for advice so that she can avoid the mistakes her parents made. tt1120985,26cjR330Ceo,Dean becomes jealous when Cindy admits to running into an ex-boyfriend. tt1120985,p9BRNz08eUs,Cindy dances as Dean sings a goofy song. tt1120985,aHw-fJZ7mD8,Dean gives Cindy a CD containing a romantic song just for them. tt1860355,ySpuo4tFo20,Coach Bill Courtney talks about the history of Manassas High School football on the first day of practice. tt1860355,De-dBcPZlIM,"When Montrail ditches practice after an incident with another player, Coach Bill Courtney convinces him to be the bigger man and come back." tt1860355,ABW5RN51NqA,O.C. goes to assistant coach Mike Ray's house in the suburbs for tutoring. tt1860355,q40Kh2-q6X0,"Losing at halftime, Coach Bill Courtney gives an impassioned speech about character and teamwork that rings loud for troubled player Chavis Daniels." tt1860355,B4ppeyE6UyU,The 'uncommon man' honor for the game is bestowed upon player Chavis Daniels. tt1860355,oJJM7GnED2E,"Down 20-0 at halftime, Coach Bill Courtney fires up the Manassas football team towards an impressive comeback victory." tt1509767,hTOzxqecG7o,Milady decieves a Venetian guard to gain access to the castle. tt1509767,x-HRlq5Oldw,"D'Artagnan and Rochefort face off. Meanwhile, the Three Musketeers descend upon Rochefort's airship." tt1509767,lDWXlJG-FDI,Rochefort and D'Artagnan fight to the death. tt1509767,sHTtCAH7l6Y,"After a prisoner exchange, the Three Musketeers battle Rochefort's forces in a sky battle." tt1509767,QB4WFBsaeus,D'Artagnan talks with the Three Musketeers about their current predicament. tt1509767,n2eSLdqwSYY,D'Artagnan reveals that he is the decoy. tt1509767,GM0rZv1Lii0,D'Artagnan demands an apology for the insult made to his horse. tt1509767,Paut4zNx-3c,"Outnumbered, D'Artagnan and The Three Musketeers fight Rochefort's men." tt1509767,yqCFtEZRFPE,The Three Musketeers come before the King after brawling with the Cardinal's guards. tt1007029,UqnjC1YM5pk,"Margaret holds her ground during an economic crisis despite the concerns of Geoffrey, her most trusted advisor." tt1007029,FgF-RJYNzzY,Margaret visits her doctor and expounds on the problem of feeling at the expense of thinking. tt1007029,FdVyibVMumc,Margaret decides to run for Leader of the Conservative Party despite the concerns of Denis. tt1007029,Wx7IOoX7l8Y,Margaret fights to gain respect in Parliament as some sexist colleagues dismiss her views during a labor strike. tt1007029,EubG9_KSoGo,"After Margaret loses her first election, Denis proposes to her and she accepts, on one condition." tt1007029,H-cxAVTmQ0I,Margaret struggles with her dementia when asked to comment upon some recent terrorist bombings. tt1007029,fJjBf7yY1P8,Margaret gives a rousing speech in Parliament to celebrate Britain's victory in the Falklands War. tt1007029,5-afmnViCr4,Margaret defends her decision to retake the Falkland Islands to Secretary of State Alexander Haig. tt1007029,_qqw8iHQASs,Margaret receives image and voice advice from Airey and Gordon. tt1007029,OOGcesOHlDs,"Faced with unrelenting pressure to step down, Margaret offers her resignation as Prime Minister." tt1007029,XF7QaSY-8lY,Margaret rails against European integration and humiliates Geoffrey during a Cabinet meeting. tt1093357,TFrdPPdwY2I,"As Sean and the group searches for Natalie, they encounter an alien and team up to destroy it." tt1007029,2p-FeYouCx4,Margaret transforms into a poweful and motivational Leader of the Conservative Party. tt1093357,4Q8CqPioUFA,"As Sean rescues Natalie, an alien causes havoc aboard the trolleybus speeding randomly around the city." tt1093357,GukkVxrTLaM,"An alien light beam destroys a building right next to the river, capsizing the boat, and throwing Sean and the others into the water." tt1093357,mxgE7XEbc48,"The Russain survivors agree to help Sean, Natalie, and Ben get to the submarine after a passionate plea about returning home." tt1093357,2b3mwmOTR3s,"Sergei attempts to fend off the alien light by using his homemade microwave gun, but falls victim, as does Anne in front of a powerless Natalie." tt1093357,JuKhaVdSGms,Sean and Natalie barely dodge an alien attack by hiding on the other side of a glass wall which helps to disguise their electrical pulse. tt1093357,oTTfW63fY6A,"Ben and Sean try to find supplies in an abandon cop car, but soon they're forced to hide when the alien notices their presence." tt1093357,abyFD6LO05w,The group run into the Russian police who manage to wound an alien with conventional weapons. tt1093357,Z5Hmi5x6JA8,"The group wanders outside to witness what appears to be an Aurora Borealis. But on contact, the light disintegrates a policeman into particles, causing a frenzy." tt1093357,TETjB2zHhAE,"Ben and Sean go to a night club and meet Natalie, an attractive American woman, and her Australian friend Anne." tt1045658,og36vWGn5CU,Tiffany shows up at Pat's house angry that he never showed. She then turns that anger on Pat Sr. for getting his son to go to the game. tt1045658,Vyq3eN0DUU0,"Pat finishes reading A Farewell to Arms and is so angry at the ending that he barges into the bedroom of his parents, Pat Sr. and Dolores, to complain about it." tt1045658,DicBrlK4pEU,"Pat Sr. has an emotional moment with Pat, where he confesses his thoughts on his role as a father." tt1045658,4EYZfAO5ZWs,Pat is introduced to Tiffany during a nice dinner set up by Veronica and Ronnie. The dinner does not go as planned. tt1045658,2ceG37UZvzQ,"While looking for his wedding tape, Pat has a mental breakdown and accidently hits his mother, Dolores. Pat Sr. ends up getting into a fist fight with him." tt1045658,3I0AP-HwDnU,"While going on a jog, Pat is joined by Tiffany much to his annoyance." tt1045658,8p0YBrmfLyA,Pat and Tiffany get into a big argument that spills out onto the street. tt1045658,z__IAJ1Q9lk,"Pat holds up his end of the deal and shows up for his first dance lesson with Tiffany. Before they begin, Pat finds out just what happened to Tiffany's husband." tt1045658,y1lzIInBQOs,Pat and Tiffany do their dance in the competition with everything riding on it. tt1673434,t4fqGbC2mQM,"Bella Swan and Edward Cullen get a cabin of their own as a present from the Cullen family. Finally with a quiet romantic moment to themselves, they decide to break in the new bedroom." tt1673434,d4MZPbERTFs,"After getting to see her baby for the first time since it's birth, Bella Swan finds out that Jacob Black has imprinted on her child. Bella does not take this news well." tt1673434,FEWZFq14JiU,"Jacob reveals his werewolf side to Charlie Swan, so that Charlie can be prepared for the supernatural when he finds out about his daughter." tt1673434,2P3uaREypD4,The battle rages on as each side loses people. Benjamin decides to finally use his control over the elements and Alice Cullen goes after Jane. tt1673434,Ls2be_G7bHc,"As Bella and Edward spend time alone in the meadow, Bella gives Edward a peak into her mind and memories." tt1673434,cP7WEGuVwig,"Nearing the end of the battle, Edward Cullen and Bella Swan go after Aro." tt1673434,C7qekGisCs4,Bella Swan and Edward Cullen share a moment as Bella gets used to being a vampire. tt1673434,CB-a6fmj21U,"Edward Cullen takes Bella Swan hunting in the woods, which ends up becoming complicated when she smells a nearby human." tt1673434,5u5ixEyjZng,Edward Cullen and Bella Swan share a romantic moment as they talk about the obstacles ahead. tt1673434,3qp3AeWmt38,"Despite Alice Cullen showing up with evidence, Aro and the rest of the Volturi still decide to wage war. With the killing of Dr. Carlisle Cullen, the battle begins with Bella Swan, Edward Cullen and the rest of the family retaliating." tt1321860,ZiGf0aDV688,Norah shows Porter the mural she made in honor of her deceased brother. tt1321860,KLYlTxCTu20,The Beaver catches Walter on the phone with Meredith and attacks him in a jealous rage. tt1321860,OEiioh2L3jQ,"Walter talks to Matt Lauer on the Today Show about depression and why he ""wiped the slate clean.""" tt1321860,k87Hk4JNqGY,"Meredith gives Walter an anniversary gift that is meant to remind him of the life they used to have, but The Beaver is less than willing to give up." tt1321860,1QJXKLwmN14,Walter presents a new idea for a toy that may prove successful for his company. tt1321860,fEZuzz0KmN0,"Walter introduces his employees to their new boss, The Beaver." tt1321860,LjKZiPNHRUU,"Walter introduces ""The Beaver"" to Meredith, and claims that the puppet was prescribed to help him correct the unbalanced and negative aspects of his personality." tt1321860,AHw_6AOK7bg,"After a T.V. falls on his head, Walter Black wakes up with a new ""life coach.""" tt1321860,-zXmGloh-P8,"Walter Black finds a beaver puppet in the dumpster, and tries to hang himself from the shower curtain in the hotel bathroom." tt1321860,yV0IgLYLoC0,Walter Black attempts to kill The Beaver. tt1321860,4SPwmO5wHjM,The Beaver aka Walter makes a chilling confession to his business associate. tt1517489,DwbFUmWjd3g,Juni reunites with Carmen after seven years and the bickering begins. tt1517489,6CwHxJUF8DQ,Juni enlists Cecil and Rebecca to help save the day. tt1517489,KCbte6Zhaqc,"Cecil uses his spy gloves to take out the bad guys, while Rebecca plays a prank with jet packs." tt1517489,zRYmoB7ayDU,Rebecca challenges Cecil to a race as they avoid the deadly hands of a giant clock. tt1517489,spI-9R3B6zk,Argonaut helps Cecil and Rebecca get rid of the bad guys. tt1517489,d7ye5zFyuso,Marissa tracks down Tick Tock and uses some baby products to avoid capture. tt1517489,cniwN1YsUW8,Rebecca and Cecil evade capture in their escape jets by reusing Cecil's barf bags. tt1517489,CmPZjdlK3Qw,Rebecca and Cecil discover that their stepmom is a spy when their house comes under attack and their dog Argonaut starts to talk. tt1517489,7uvW1U9UXKQ,Argonaut enters attack mode to help Carmen and the Wilsons escape. tt1517489,USLznFhxNF4,Marissa foils the evil plan of Tick Tock while going into labor. tt1517489,GvRD2YqBi74,Rebecca feels bad about pulling a prank on Marissa after she tries to connect with her as a friend. tt0945513,CVs-LAC1zrQ,"While Colter Stevens is inside the Source Code, he finds out that he was declared killed in action by the military." tt0945513,LcWRSHD3cAE,"Confused as to where he is, Colter Stevens goes off on Carol Goodwin for being evasive." tt0945513,rZAnSJl6VKA,"Driven by a desire to mend his mistakes, Colter Stevens asks Goodwin to be sent back into the Source Code." tt0945513,ay1pxLNtdxE,"With a bomb on the train, Colter Stevens scans the passers and tries to deduce who the most likely suspect is for planting and detonating the explosive." tt0945513,SPSP9BHo1_c,Colter Stevens calls his father to talk to him one last time. tt0945513,V07Z_XYMnmM,"Having previously experienced the bombing scenario, Colter Stevens realizes he needs to steal a handgun from the vault in order to help neutralize the terrorist threat." tt0945513,GcSfbaac9eg,"Dr. Rutledge explains the science of Source Code to Colter Stevens, who is inside the Source Code program." tt0945513,BjJxoKtYj_w,"Colter Stevens attacks a suspected terrorist at a train station, but soon realizes the magnitude of his mistake." tt0945513,oKWpZTQisew,Colter Stevens confronts the terrorist suspect Derek Frost and discovers that Frost has created a dirty bomb. tt1502404,_TkhbfmrmD0,"Beaten up by her now ex-boyfriend, Piper gets a helping heel from Milton in the form of his boot into her ex's face." tt0945513,L-3Kx6xAUTM,"Having foiled the terrorist threat, Colter Stevens enjoys a romantic walk with Christina. Meanwhile, Goodwin gets a mysterious message from Colter, and learns that the Source Code program has gone far beyond its initial success." tt1502404,oQotF_oLWTU,Milton suddenly comes back to life and immediately proceeds to kick Satanist ass. tt1502404,7A8pZX7GjR4,"As King begins his Satanic sacrifice, Milton destroys the cultists with his car and shotgun. Nearby, The Accountant proves that there is a price — and a limit — to everlasting life." tt1502404,9B7Y2tMDlEA,"Piper goes toe-to-toe with King in the RV, while Milton redefines the phrase 'reckless driving'." tt1502404,AwUpqAQNZCY,King shoots Milton in the eye and then kidnaps Piper into his cult. tt1502404,L3eM2_0KE2A,Piper fends off King's attack as Milton races to rescue her in his Dodge Charger. tt1502404,RVM5hFMx2Kk,"Milton threatens to kill King, and does so in awesome fashion." tt1502404,vT3kQdSXrMw,"Milton fends off an attack by The Accountant using a mystical, badass shotgun." tt1502404,cr-rgM1-wXs,Milton takes out a trio of lowlifes in brutal fashion. tt1502404,a_nd6odxaHI,The Accountant opens up a path for Milton by using a hydrogen fuel truck to blast away all of the police cars in the barricade. tt1682181,sPZ2Ukl7EPU,"David Long talks about how his son Tyler grew more socially isolated as he got older, which made him an easy target for bullying." tt1682181,-TuZo-mugDw,"After coming out as a lesbian, Kelby talks about what it's like to be isolated and hated not only by her fellow students, but by the faculty as well." tt1682181,-iM3hKlLS5E,Alex returns to school and endures threats and intimidation from fellow students along the way. tt1682181,xRT4EyI63jw,"Tyler's father, David, recounts the kind of bullying his son endured prior to committing suicide, and how the school administrators failed in their attempt at creating a safe environment for the students." tt1682181,lyrv1rNWg0o,"The vice principal tries to mediate a recent incident when one of her students, Cole, refuses to shake hands with another student over a case of incessant and relentless bullying. Later, Alex recounts the day-to-day misery he goes through, revealling that he now wants to become a bully just to avoid the pain of being the victim." tt1682181,YbABtps7aY0,"Alex's parents discuss their concerns about their son's inability to fit in, as well as their own shortcomings as parents." tt1682181,TVMg2iM-XQg,"Kirk Smalley leads a vigil against bullying, giving a voice to those children who have taken their own lives as a result of bullying." tt1682181,l3vcMU002rk,"As Alex endures an escalation of the bullying, the filmmakers feel compelled to show footage of the bullying to Alex's parents. Later, Alex's mother confronts her son about what he's going through and why he's allowing it to happen." tt1682181,7y8pbljhMQs,Ja'Maya recounts the time that she brandished a firearm on a school bus because she was pushed to the edge by all of the bullying she had endured. tt1586265,iK6cDwd3yH4,"Skyler, Wendy, and Jules all go into labor with their husbands by their side." tt1586265,GhisL6dCqV8,Wendy has a pregnant public meltdown during a seminar. tt1586265,yNkcLZ0BPuc,Gary gets caught gorging himself on pork by Jules at a food truck. tt1586265,mokXxWsIsWg,"Gary announces to his Dad, Ramsey, that Wendy is pregnant. Turns out, Skyler is pregnant, too." tt1586265,F_3zkj4QVvA,"Holly is hesitant to show her Las Vegas wedding photo to a social worker, but Alex jumps at the chance to show it off." tt1586265,9d8VhjIG6No,The flirtation heats up between Marco and Rosie when they compare cooking scars. tt1586265,Jx401J_oG2I,Marco gets irritated when the competing food truck run by Rosie starts serving bacon. tt1586265,M5IO69jDb2M,"In front of millions, Jules and Evan win Celebrity Dance Factor, but not before it becomes apparant that Jules is pregnant." tt1586265,AEhitq9yTss,Vic leads the pack of men who gather and babysit their children on a weekly man-play date. tt1586265,EPCFcnp0R3M,A golf carting race between father and son lands Gary in the Margaritaville pool with a victory. tt0431021,uztZUqKrHVo,"Tzadok leads the family in an excorcism to banish the demon from Em's body, but the demon is no pushover." tt0431021,aJHRyOrRnQk,"With the demon now possessing Clyde, Tzadok excorcises the evil spirit back into the Box." tt0431021,oY0IQEEQ35g,"As Em gets an MRI to see if there's an abnormality in her brain, Stephanie and Hannah discover a chilling stowaway inside Em's body." tt0431021,LZhbH4pHMQ8,"Possessed by a demon, Em uses her evil powers to decay Brett's teeth from his mouth." tt0431021,qGf3--y_rcQ,Stephanie encounters Em in the midst of a full-on spiritual possession during the middle of the night. tt0431021,4SD245xSSVk,"Having done research on ""Jewish exorcisims,"" Clyde makes an attempt to rid his daughter of an evil spirit by recitiing a prayer from an anicent scripture." tt0431021,CuAXqRNpFdo,"Having thrown out the Box, Clyde is confronted by Em, who demands he return it. When he refuses to do so, Em's behavior takes a turn for the deranged." tt0431021,Mmcr5WLNtZA,"A mysterious voice from The Box summons Em in the middle of the night. The next morning, with her behavior strangely altered, she stabs her father Clyde with a fork." tt0431021,D-QqctD6nCw,"As Em gets ready for bed, she starts to convulse and realizes that there's something far more sinister than a frog in her throat." tt0431021,d5MJBYofzhs,An onslaught of creepy moths overtakes the household as the demonic for within Em grows in power. tt1764651,qYxJ5YvIJX4,Ross and Vilain engage in a brutal fight to the death. tt1764651,_gb6yX-Uiqk,"Having teamed up with Trench and Church, and with some timely assistance from Booker, The Expendables make their final assault against Vilain and his mercenary thugs." tt1764651,fpqwsexDM0I,The Expendables are single-handedly saved from The Sangs by the mysterious Booker. tt1764651,8X26PR7abAU,"Jean Vilain holds Bill The Kid hostage, forcing Ross to give up vital information in a desperate bid to save the Kid's life." tt1764651,_P6ywXKM8kc,"Trapped in a collapsed mine, The Expendables are rescued by Trench." tt1764651,rlXL9FlYW8k,"The Expendables dive bomb Jean Vilain's base in order to save the villagers, who have been conscripted to slave away in the mines." tt1764651,et7jz9CSPqo,The Expendables blast their way into an enemy stronghold to rescue Trench from the bad guys. tt1764651,VXobEyKCykQ,The Expendables decimate a group of Sang mercenaries -- stopping them from terrorizing a local village. tt1259521,rL1VrbSK0IA,Marty Mikalski and Dana have a brief moment of peace before the giant evil gods take over the world. tt1259521,43DN-b_k4ZU,Curt Vaughan and Jules get hot and heavy in the woods. tt1259521,tdMQZ0g9ykE,Chaos rains down on all including Steve Hadley and Richard Sitterson when ancient and mythic monsters and creatures are freed. tt1259521,a0dkF8CZxks,"Marty Mikalski and Dana open the doors of hell, allowing creatures of all sorts to bounce out, pounce, and kill." tt1259521,ufF5p8VBsVk,Marty Mikalski and Dana ride the elevator downward to the pit of hell where all the creatures are held. tt1259521,qb4e_GJzmrI,"Richard Sitterson has a brief moment of sympathy for the victims, but that quickly passes when he spots a bottle of tequila." tt1259521,S-xuQp2fW7I,"Holden and Dana try to stay calm, but that notion is upended when Holden's throat is thrashed." tt1259521,ZGcMRCaBh_s,"Marty discovers that he's on a reality t.v. show...that is, until the 'Buckner' shows up." tt1259521,Io8nlxyMTd8,Richard Sitterson and Steve Hadley have a little fun with Mordecai when they put him on speaker phone. tt1259521,xwN0ZIe-cG8,"Marty Mikalski appears on the scene, toking on a bong, and feeling groovy." tt1259521,bjqjgoiV6BQ,"In a game of 'truth or dare,' Jules responds wholeheartedly when dared to make out with a wolf head." tt1800741,jE5w-Jl5BSE,"The Mob concludes their epic flashmob to stop Anderson from pursuing his development project, which would tear up neighborhoods across Miami." tt1800741,b3lLWO2d7b0,The Mob strikes a dance at the heart of corporate headquarters in order to make their presence known. tt1800741,5RMx6st2-js,The Mob makes a dramatic comeback at the unveiling of Anderson's new development site. tt1800741,ElyptgRxg0M,Sean and Emily realize that their attraction for one another goes deeper than their affinity for dancing. tt1800741,HbWxE7l4F3g,"Emily and Sean learn more about one another, and then share their first kiss together." tt1800741,SJZ_LT4GwQE,"The Mob dancers infiltrate an art show and impress the guests, as well as Emily." tt1800741,vtxo451I_Qk,The Mob busts out a flash mob dance to some whack dubstep on the streets of Miami. tt1212450,2myyH9c7mYM,"With Forrest about to follow his brothers into a dangerous stand-off, Maggie confesses that she rescued his life once, and won't do it again." tt1764234,Xvs1TPM9g2s,"When Driver refuses to pay Jackie Cogan what he is owed, Jackie lets his attitude be known concerning the American ethos." tt1599348,DogM3vTZsuo,"Moments before commiting suicide, Luke notices that lonely Mei is in trouble when he sees a group of Russian mobsters chasing after her. Instead of throwing himself onto the subway tracks, he jumps aboard a moving subway car in an attempt to rescue her." tt1599348,KmlUAuGhy24,"Mei is kidnapped by the Russian mafia in an ambush, while elsewhere, Luke resists indimidation by corrupt NYPD detectives who are in league with the Russians." tt1599348,cxFXMll7PWI,"Luke returns home and finds his wife dead at the hands of the Russian mafia. The leader of the Russian group, Vassily, threatens Luke that they will kill anyone else that Luke comes into contact with should he decide to turn snitch." tt1599348,5D7JRwROZ0E,"Luke meets up with an old war buddy, Alex – who happens to be the mastermind behind the whole sordid affair – to make one final attempt rescue Mei once and for all." tt1599348,YI02lc3SxXs,"Luke kidnaps Vassily and holds him hostage, and then coldly threatens Vassily's father, Emile, with a fate worse than death." tt1599348,eCu_yXPkwGc,The Triads locate Mei at a hotel and Luke must fend them off with lethal brutality in order to keep her alive. tt1599348,CQlI4zJnxho,Luke battles the Russian mafia and corrupt NYPD detectives in order to save Mei's life. tt1599348,5-MjWWLPdqE,"Luke dispatches the Russian mobsters with expert ability, saving Mei." tt1599348,nEFAuOF_8YQ,With 30 million dollars – and a little girl's life on the line – Luke leads a group of corrupt NYPD cops into a raid against the Triads. tt1568338,jgOMHLuBup4,Nick makes a daring jump from the roof a high-rise in his attempt to stop Englander from escaping. tt1568338,m6eVFDJA9EM,"Nick surrends both himself and the diamond in exchange for Joey's life, but he's double-crossed by Englander and his corrupt cop henchman, Dante Marcus." tt1568338,pyvthgZdQhc,"Nick suspects his friend Ackerman as a traitor, but when SWAT intervenes, he's forced to make a tension-filled escape twenty stories high." tt1568338,6krgl6GpIbM,"Detective Mercer joins Nick out on the ledge, and soon realizes that he is involved in an elaborate heist." tt1568338,BYh-iVr55EA,"Nick guides Angie over the radio into cutting off the building's security systems. But if she cuts the wrong wire, all hell will break loose." tt1568338,5tMAe05kTXo,"Nick buys more time -- literally -- by throwing out cash to distract the bystanders and slowing down the police, which in turn gives Joey and Angie a better chance to evade capture." tt1568338,RZ9Od4LBqDg,"As Detective Mercer tries to calm Nick, a news helicopter performs a sudden and dangerous flyby, causing Nick to lose his footing. Meanwhile, Joey and Angie rappel down an elevator shaft as they continue their infiltration." tt1568338,HrK6dbGxq-E,"Nick distracts the police and bystanders by faking a jump to his death, while Joey and Angie detonate an explosive on the roof of another building." tt1568338,S85RSn20wJ0,Joey and Angie share a sexy moment. Meanwhile Det. Mercer discovers a possible motive to set-up Nick Cassidy from within the NYPD. tt1212450,9cR2Rh00ndA,Jack witnesses the notorious gangster Floyd Banner shoot-up a rival gangster. tt1212450,NKaENwBlGFQ,Howard Bondurant comes to the rescue of his younger brother Jack during a raid led by Special Agent Charlie Rakes. tt1212450,59ZImWWRR50,"The evil, psychotic Special Agent Charlie Rakes makes his presence known to Forrest Bondurant." tt1212450,OS8NUnMpllc,Jack Bondurant finds out that Cricket forgot to put gas in the truck. tt1212450,5-Al98JQSUM,"When making eyes with Bertha Minnix during a church sermon, a drunk Jack Bondurant becomes overwhelmed and unexpectedly flees." tt1212450,FkoI5jde2es,"Jack takes Bertha on a driving date, and gives her a dress as a gift." tt1212450,-PAIOy41SjQ,The bootlegging business is booming for Jack Bondurant and Cricket with Special Agent Charlie Rakes still on their tail. tt1212450,Vkrb_0DiD4E,Maggie introduces herself to Forrest Bondurant and asks for a job. tt1212450,XnEKbUbww9s,Forrest and Howard Bondurant come to the aid of their little brother Jack in a shootout with Special Agent Charlie Rakes. tt1764234,qX0rYjUdFik,Jackie explains his ethos on killing to the Driver. tt1764234,h1q5X5asH7c,Jackie Cogan arrives on the scene to clean up the mess in the aftermath of the poker heist. tt1764234,C7Y3b732UVw,Frankie and Russell make their final preparations before the poker game heist. tt1764234,XX8y_mQIewU,Dillon and Kenny rough Markie up a little bit following the poker game robbery. tt1764234,YBmz0YGT2kI,"Mickey arrives in town, with his full-on appetite for booze." tt1764234,ve1Brtly9Y4,Frankie and Russell shoot up following their successful heist of the poker game. tt1764234,pbd1pcdHRVE,Frankie and Russell rob the poker game. tt1764234,WTtAAYgzMjo,Jackie takes out Johnny Amato -- the brains behind the poker heist. tt1764234,c6TNgqIAYyE,Mickey admits that he's become too soft to go through with the job. tt1838544,Ux4y_2RNi_E,Jill tries to convince Sharon to help her find her sister. tt1838544,HUcO7rqSLEw,Jill reunites with Molly and lies to the police about her rendezvous in the forest. tt1838544,Bt_VjoF2lGo,"Jill returns to the scene of her abduction and turns the tables on Jim, the man responsible for her nightmare." tt1838544,GWrQ2H3LhI4,Jill recalls how she escaped from her captor by stabbing him with the bone of a previous victim. tt1838544,ocVeenCXGaM,"With the police watching her car, Jill acquires a vehicle from a custodian." tt1838544,QW1kAlnQLd4,"With the police hot on her trail, Jill uses her wits to escape from a hardware store." tt1838544,8PDbRr_7bI8,Jill pulls a gun on Nick when he catches her snooping around in his van. tt1838544,wbrTwrgyOrg,Detective Hood offers to help Jill despite the casual dismissal given to her by the rest of the police department. tt1838544,Yh7Qz4fiKxw,Jill becomes suspicious when Detective Hood tries to meet with her privately. tt1838544,OkrJTqGkSWI,Jill tries to convince the authorities that her sister has been abducted by the same man who kidnapped her. tt1838544,-ayGBx5Igyo,Jill manages to escape from the police using some defensive driving skills. tt1838544,clslrqHA26U,Jill returns home to find that her sister Molly has disappeared. tt1343727,eApCe2z67Gk,"Wounded by one of the corrupt Judges, Judge Dredd finds himself boxed-in and on the run." tt1343727,UlT2oHT2RGY,"Judge Dredd taps into the slum's central PA system and issues a dire warning to Madeline 'Ma-Ma' Madrigal, her criminal organization, and to any citizens who aid and abet her." tt1343727,26mzWqdJnis,"Judge Dredd takes his rookie partner, Cassandra Anderson, on a drug raid in a massive slum apartment complex." tt1343727,dv_26E-a_mA,Judge Dredd corners a criminal and dispenses swift justice at the end of his gun. tt1343727,d5bK1xSr2dY,"Judge Dredd issues his final judgement upon Ma-Ma for all of her crimes by getting her high and throwing her out the window, far away from the detonator's transmission range." tt1343727,uNqwzdw5uKE,"Cornered by Judge Dredd, Ma-Ma threatens to destroy half of the super slum with a time bomb set to her heart beat." tt1343727,yK3DX2F0JWQ,"Judge Dredd realizes he's in an ambush when one of the other Judges, who have come in as back up, starts acting suspicious." tt1343727,3mN85wFz_Vk,"With a bounty placed on their heads by the drug lord Ma-Ma, Judge Dredd and Cassandra Anderson must shoot their way out if they stand a chance to escape the super slum known as Peachtrees." tt1343727,O2U0qOzibf4,Cassandra Anderson uses her psychic powers to interrogate Kay about Ma-Ma's drug syndicate. tt1343727,SG7voVeJRC0,"Judge Dredd chases a trio of Slo-Mo drug addicts, taking down out their van in a spectacular rolling car crash." tt1343727,OLkKMHRUB9A,Ma-Ma tries to kill Judge Dredd with an overwhelming volley of firepower. tt1920849,iVojYtEpstY,Clyde plays Gena an old mix-tape from when they were sweethearts. tt1920849,n39lwOfvb2E,"Katie, Gena, and Regan fool around in the oversized wedding dress until it rips." tt1920849,FdMEJqe55dc,Becky gets a surprise visit from a police officer at her bachelorette party. tt1920849,lqbzUCMEK0o,Gena explains her theory on giving oral sex to the passenger next to her on an airplane. tt1920849,p4t0OpJJ0MI,"A brief, hot fling occurs between Regan and Trevor." tt1920849,5Gmliz8GsG4,"Gena, Katie, and Regan take in the wedding from the sidelines." tt1920849,WlwLa7Jh3HY,"Becky re-unites with the bridesmaids Gena, Regan, and Katie. Only her partying ways have toned down, much to the disappointment of Katie." tt1920849,hML3kvOUVZU,Gena and Katie can't help but give inappropriate speeches about Becky at the rehearsal dinner. tt1920849,4ln7gkWQXys,Resentment bubbles up immediately when Becky tells her friend Regan that she's getting married. tt0795461,cQHAH3t5oJI,Charlie Sheen and Lindsey Lohan play themselves in this parady of Paranormal Activity and their celebrity status. tt0795461,YwzGw_SMwAc,Jody takes some drugs and ends up having sex with Kendra. Things gets a bit crazier than expected. tt0795461,9NKu_Kyi1qY,Snoop Lion and a friend look for a place to hide when they find a scary cabin in the woods. Inside they find some creepy abandoned children in a spoof of the film Mama. tt0795461,HM1U0PSGMn0,"Dan tries to convince his boss, Martin Jacobs, that the ape program is working, in this spoof of Rise of the Planet of the Apes." tt0795461,CkNjOs-7Sv8,Dan and Jody called in a psychic to help them with their demon problem. tt0795461,CkW8xFVXPqI,Jody tries to get the kids out of the house before mama gets them. Mama shows up and beats up Dan. tt0795461,B5D_aDaMqkk,"During the auditions for the Black Swan musical, Kendra manages to go first and does a very sexual version of the dance." tt0795461,7rTb-n96yS8,"Jody and Kendra go in search of a book of evil. They come across a cabin with four bible-loving friends in it, David, Mia, Eric, and Natalie." tt0795461,hnXqavr1ZMQ,Dan accidently lets out the apes in this spoof of Rise of the Planet of the Apes. tt1327773,WBuXu-20LZs,"While living on a plantation, one day Cecil's mother is raped by the owner. His father gets the courage to say something only to get himself shot." tt1327773,Q92raMBaQ4o,"After Louis Gaines admits that his father is a butler, Martin Luther King Jr. explains to Louis how important that role has been in recent history." tt1327773,rkD3FLsiUiU,Cecil Gaines reacts to the news of Kennedy being assassinated. tt1327773,UtS2awRAf5E,"Gloria Gaines decides to end her affair with the family friend, Howard." tt1327773,7_AiHZa026w,"While celebrating one night at the White House with other servers, Cecil see's his son on the TV getting arrested. Cecil goes to see his son, Louis, and they get into an argument about Louis's new path in life." tt1327773,rft59wPnoqk,"While working late one night in the kitchen, Cecil, Carter and James are visted by Richard Nixon." tt1327773,lj66AQ2uzug,Cecil Gaines is given an interview at the White House for the position of butler. tt1327773,yYCW5Eo72VU,"After being there for two decades, Cecil Gaines asks for all of the black workers at the White House to get a raise." tt1327773,buOVuDwsbOM,"Louis and his girlfriend visit home and over dinner tell his father that he's joined a radical political group called the Black Panters. Upset over his son's new views, Cecil orders them to leave, an argument breaks out that ends when Gloria Gaines slaps Louis." tt1327773,8FX2FZ0fFlo,John F. Kennedy has a discussion with Cecil Gaines about Cecil's son. tt2334649,CHV9FhjbFLQ,"While on the subway with his friends, Oscar gets recognized by someone who was an enemy of his back in prison. A fight breaks out and the police are called." tt2334649,sytZ2amRbpk,"While picking up some food from the store, Oscar helps a customer get what she needs for a dinner." tt2334649,A6ZOCb2gaqs,"While stopping to get gas, Oscar befriends a stray dog. Moments later, the dog is hit by a car." tt2334649,SIwi5PRNTfg,Oscar tells Sophina that he lost his job and has been lying about it for a few weeks. tt2334649,PwuTr5z4Bec,"Oscar goes to pick up his daughter, Tatiana." tt2334649,QRACf_ehgis,"Wanda vists her son, Oscar, while he is in jail." tt2334649,KhAtVQuAjVc,"On New Year's Eve, Oscar tries to convince a store owner to let his girlfriend use the bathroom." tt2334649,26ISV0QFWPU,"While at the grocery store he used to work, Oscar asks the manager for his job back." tt2334649,2tcG49k5vdw,Oscar and another man talk on the street while their significant others are inside a store using the bathroom. tt2334649,BXa-BfF9qGc,Oscar gets his daughter ready for bed before him and his girlfriend go out for New Year's Eve. tt0075148,RSUmB80GqDM,Rocky gives Champion Apollo Creed his first knock down with one good punch. tt0075148,_YYmfM2TfUA,Rocky's intense training pays off as he ascends the steps and overlooks the City of Brotherly Love. tt0075148,jK4lxjvrhHs,Rocky and Adrian have a date at an ice rink and share stories about their upbringing. tt0075148,fxriLTLhyyY,"Paulie loses it with Adrian and Rocky, breaking things around the apartment." tt0075148,pjX20gL-rnc,Rocky displays his fierce fighting style for a television broadcast as he takes his anger out in a meat locker. tt0075148,Tc7H9s4PdSI,"Rocky goes the distance with Apollo Creed but in the end, he only wants one thing — Adrian." tt0075148,4NLUpuo3HGo,Mickey warns Rocky about the dangers of chasing women and losing focus. tt0075148,Lxfe0cKOx3g,Rocky has a heated argument with Mickey through the doors of his apartment. tt0075148,g6mF_yokyiA,Mickey gets angry with Rocky for wasting his talent over the years. tt0075148,snqs566G_Zg,"Rocky wakes up early, ready to train, and starts his day with a big glass of raw eggs." tt1245526,bRilciIycJQ,"As VP Stanton tries to make his escape, Marvin Boggs shows up with a bomb strapped to his chest." tt1245526,3rFMyjGI4cg,"All hell breaks loose when someone fires an unauthorized shot, forcing Frank Moses and his team escape from the Dunning estate." tt1245526,buH0CUEx-_Q,Frank Moses and William Cooper square off in hand-to-hand combat. tt1245526,qyMVXU7qMGw,"Frank Moses has a sit-down with Russian secret agent, Ivan Simanov, to help him break into CIA headquarters." tt1245526,6HXgPGZcXe4,"Frank Moses and Sarah track down Marvin Boggs, a former black ops agent and a paranoid conspiracy theorist." tt1245526,iiMNb99KaYk,Victoria and Marvin Boggs unleash some major fire-power as they engage in a shootout with the Secret Service. tt1245526,5ijEAMP_zW4,Frank Moses and his team interrogate Alexander Dunning as to why they're being hunted down. tt1245526,eXHdqulNiBs,The CIA tracks down Frank Moses at the airport and attempt to dispose of him and his crew. tt1245526,M96f_K13joo,Frank Moses neutralizes a CIA assault team. tt1245526,JDxlbYa_THM,Frank Moses saves Sarah from being abducted and has a shootout with CIA operative William Cooper. tt1245526,FpKhobkTOyY,"After an intense shootout with the Secret Service, Victoria is wounded and left to fend for herself." tt0102753,cV0Db20loyg,Mother leaps to Rose's defense when Daddy and Dr. Martinson conspire to operate on her. tt0102753,VjdgqT_xtEo,Buddy watches as Rose walks across the bridge to his house. tt0102753,2WGvnOdTfGw,Rose works up the courage to ask Mother if she grew up an orphan. tt0102753,Y-YsM2a_N5Y,Daddy scares off a a pair of Rose's jealous suitors with his shotgun. tt0102753,nuUuXO8D9mo,Daddy fires Rose when he catches her sleeping with a local boy. tt0102753,Fjl9b_vVVnk,Rose puts on a tight dress and causes a stir in the Hillyer household. tt0102753,qHD4H60rCfA,"Rose slips into bed with Buddy, who uses the opportunity to explore his natural curiousity." tt0102753,iaIYk3DZKwE,Willcox Hillyer returns to the house where he grew up and reminisces about the vivacious worman who changed his life. tt0053604,SeqT3GyDb2k,Miss Kubelik wonders why she can't fall for a nice guy like Baxter. tt0367085,4L62b92Prk0,The airline goes into an uproar when a Middle Eastern man steps onto the plane. tt0102753,34_4OMd4I2I,Rose turns many heads downtown when she goes out walking in her homemade dress. tt0102753,3sr3yQ4mGbs,Daddy and Mother welcome Rose into their home. tt0102753,rZsLiY_Yyhk,"Rose loses control and forces herself on Daddy, who has a moment of weakness." tt0067411,cDI9o67o7bo,"On the bridge to the general store, Kid manipulates Cowboy to show him his pistol so that he can gun him down." tt0478197,Orwz44-_XSg,"Leonard Cohen talks about his father's death at the age of nine, and the McGarrigle sisters play the tune ""Winter Lady.""" tt0117108,3iZIOZrzbYo,Doug overcomes his fears and is successfully cloned. tt0226009,7X47UIYChis,Adam daydreams about Gynger and her friends dancing in the hallway at school. tt0226009,NzzSr5StuCE,Gynger and Adam accidentally implicate themselves to a police officer. tt0226009,yzSfVpQ-1ns,Adam has sex with a sophomore named Gynger in a restaurant bathroom. tt0226009,0uYmyOuu5xs,Adam and Gynger try a series of misguided tactics in order to take care of her unwanted pregnancy. tt0226009,oMvMqeThVPk,Adam meets his incompetent lawyer Chuck Clopperman. tt0226009,EYO__x8qn2w,Adam seeks advice about pre-marital sex from local youth pastor Reverend Olson. tt0226009,CrFsSJPnHj4,Adam literally goes behind Amber's back to cheat with Gynger. tt0226009,7qfgWGJpbgA,"With no one else to call and desperate to avoid a night in lockup, Adam calls Amber to bail him out." tt0226009,vNgB9PxOAdI,Lydia searches for an issue to prove she's passionate about something besides being elected mayor. tt0226009,m5Qn-tIKwD8,Chuck Clopperman presents the Fishers with his ultimate legal strategy. tt1341167,RNMZD_WiAvU,Omar has to think on his feet when his coworker Matt observes some strange behavior. tt0226009,Hg_aGQjwjmo,Gynger and Adam break the baby news to his parents Al and Patti over dinner. tt1341167,kSKnJn8gksc,Waj and Omar discuss the ways they would kill each other. tt1341167,awHrfxqEofc,Barry is not happy that Omar and Waj are going to Pakistan without him. tt1341167,FqJJfBeuxUE,Barry grills Fessal about some stupid decisions he's made while buying twelve bottles of bleach from the local shop. tt1341167,ou4WG7HhFZM,Waj does his best to make a threatening terrorist video with his toy machine gun. tt1341167,zWzRkf2uwQk,Omar tries to blend in with the running crowd in his Honey Monster costume. tt1341167,uVNCyp4Verc,Omar and Waj take it upon themselves to destroy an enemy drone. tt1341167,5WnobKuNaO4,Fessal blows himself up while running with explosives. tt1341167,1NfrTfIPl9Q,Hassan scares the audience at a university debate on Islam. tt1341167,NEcaoimX3qY,Omar has good news concerning Pakistan as Barry convinces everyone to eat their SIM cards. tt1341167,wEvrmiK_WlY,Hassan snaps under pressure and tries to turn himself in. tt0348333,PdmE-Ga0f5s,"Mitch unleashes a tongue-lashing of epic proportions on his new co-workers, bringing the house party to a grinding halt." tt0348333,M3j9drozqlM,Serena gets into an argument with Monty about his supposed unbelieveable sexual abilities. tt0348333,6Cz2mIx0y5k,Bishop dispenses his folksy yet vulgar life advice to Dean. tt0348333,Ul0qToCSdfQ,Bishop helps Calvin visualize a way for him to urinate successfully and to overcome his phobia. tt0348333,jvAZ0bjChvk,"Dan hits on the underaged Natasha, while Dean and Monty hurl insults and advice towards Calvin." tt0348333,UMjzEWOWXk0,The gang at Shenaniganz exact gross-out revenge against a rude costumer by spoiling the food. tt0348333,2JHbw-BXN5s,"The waiters and waitresses of Shenaniganz go about their business, while Raddimus and Danielle get down and dirty." tt0348333,3dzw4t_dB5M,Raddimus uses pieces of raw chicken to show Mitch the various ways a man can play around with his genitalia. tt0348333,ckremwNAupg,Monty and Dean talk about women and relationships. tt0348333,U1usNHIi-L8,Monty and his mother have a cordial conversation with each other during supper. tt0348333,QVw-cRLFWOI,"Naomi advises Dean about the dangers of becoming an assistant manager, and then, moments later, flips her lid when she learns that the next set of customers are foreigners." tt0338095,i1hu0ErzPc8,Marie exacts her revenge on Le tueur. tt0338095,qUwfcycK5X0,Marie hides from Le tueur as he brutally murders Alex's mother. tt0338095,KSOhzWTWuxA,Alex's mother goes downstairs to find Le tueur in her home and her husband dead. tt0338095,UPnwEYjEMP8,Marie attempts to escape from Le tueur while he's filling up his gas tank. tt0338095,h6nVYkTWTZw,Marie trails Le tueur into the woods and quickly ends up the one being followed. tt0338095,1nIPSxCzfVY,Le tueur enters Alex's house and murders her father. tt0338095,r8759Q-oR3E,Marie and Le tueur face off in the woods. tt0338095,0E4d_pXA7dI,Le tueur uses a decapitated head for his pleasure. tt0338095,Z97maI23aNg,The Police Captain discovers the real identity of the killer. tt0338095,vVzx25uDVaM,Le tueur kills gas station attendant Jimmy. tt0344510,bzRIeXSIS_w,Young Manech shows Mathilde the lighthouse and later proposes to her. tt0338095,ymWU7EuLXNc,Le tueur uses a concrete saw on an innocent motorist to prevent Alexia from getting away. tt0344510,YGenu4ZFnmQ,Tina Lombardi confesses the motives behind her killings to Mathilde. tt0344510,MIxtdrML0rE,Elodie Gordes tells Mathilde her story. tt0344510,o3sj7nGzC64,Mathilde is reunited with her Manech. tt0344510,AuF1AN-ugM0,Celestin Poux recounts the deaths on the trench and what he knows about Manech. tt0344510,DYfo3nt-O_U,Mathilde plays a game to prove her lover is still alive and she fantasizes about her masseuse in his absence. tt0344510,r3Owzt1HZkY,Tina Lombardi gets her revenge against Thouvenel. Mathilde receives promising news. tt0344510,2N73a3SRqyE,Mathilde races down the hill to promise herself that Manech will come back to her alive. tt0344510,sjPnuqcrL70,"Manech injures his hand to get out of the war. With every throb of his wound, he feels the heartbeat of his love, Mathilde." tt1226236,jnuQMlB2uyw,Emma follows Antonio on a whim and is startled when he recognizes her. tt0344510,gacB8xCQ09s,Tina Lombardi gets her first bit of revenge against a man who hurt her lover. tt1226236,BaccIrZHkno,Antonio makes a special dish for Emma. tt1226236,dqbddxpASRk,Betta returns from college and tells Emma that she's a lesbian. tt1226236,tojv7SZkBOc,The Recchi family is in a state of upheaval as Emma leaves and Eva announces that she is pregnant with Edo's child. tt1226236,ZjC0F-xFL5s,Antonio takes Emma aside and seduces her. tt1226236,SYM7Js4_I_4,"Through a note meant for her son, Emma discovers that her daughter is a lesbian." tt1226236,0tyZ_m6t2Qs,"Antonio has his daydream interrupted by Edo, who's come on business." tt1226236,96T06Ema-Fc,The affair between Emma and Antonio comes to light when Edo recognizes his mother's soup. tt1226236,Gtg2d74VHH4,"On his birthday, Edoardo Recchi Sr. announces to his family who his successor must be once he retires." tt1226236,CdMDIBgp638,Emma admits to Tancredi that she loves Antonio. tt1226236,y1O2kicdfzo,Emma cooks for Antonio and he cuts her hair. tt0048356,ktXm7CRXbsE,"Marty tells his mother that he's just a fat, ugly man and will never find love." tt1226236,QUVXO7h3-mQ,Emma has a look around the property belonging to Antonio. tt0048356,ns_HTpxc-g4,"Marty gets propositioned by his friends to ditch his date for a sure thing"" with Leo, but he says no." tt0048356,O3bTMw3bb5o,Marty calls a girl he once met for a date and after a painful blow off he finally takes the hint and sadly gives up. tt0048356,l6e1M2d4BJ0,"Clara tells Marty that she believes in him, that he's a good butcher, and that he can do anything he wants to do." tt0048356,TzAnOnVKwzk,Marty dances with Clara and talks optimistically about how they're better than they think they are. tt0048356,lQbw0_5O8CQ,Aunt Catherine warns Mrs. Piletti about her son Marty's interest in a college girl. tt0048356,LyszyKhpc88,Angie gets frustrated when Marty won't hit the town with him. tt0048356,1fNnMtn7BiU,"Marty is broken up when Clara won't give him a kiss good night, but she explains that she does like him very much." tt0048356,zGa7K2HO1-Y,"Marty, fed up with his no-direction friends, has an epiphany about his feelings for Clara and gives her a call." tt0048356,ecmRksfy--I,Marty explains to Clara how he got the reputation of being the best shot in his battalion. tt0420757,3D2hC2C_Wpw,Jack Giamoro is welcomed back to the office after having his teeth replaced. tt0420757,hwu3LxjW22o,Jack Giamoro gets back at Jimmy Dooley for beating him up. tt0420757,weqGiMyn8AU,Jack Giamoro gets a surprise when Brynn Lilly offers to audition using a scene from Basic Instinct. tt0420757,tCDZOw9BoPU,Jack Giamoro tries to sign successful writer David Lilly to his agency. tt0420757,tjSf6v-dztQ,Dr. Primkin encourages his students to search for the truth via their journals. tt0420757,IQ4Yt16z2PY,Jack Giamoro explains to his business partners that he is taking a class on journal-writing. tt0420757,PWeRWbuEN7Q,Jack Giamoro steals back his private journal from Barbi Ling and must outrun her and her family. tt0420757,-w4bcJF68u8,Jack Giamoro has an awkward encounter with a former classmate from high school. tt0420757,z4QNCQD7LvU,Jack Giamoro finds his senile father submerged in a fish tank. tt0420757,waOQ8ECkEcQ,Jack Giamoro recalls the tragic accident that created a rift in his family. tt0420757,cuMmCpE7-pg,Jack Giamoro describes the self-motivation and determination that led him to succeed in his career. tt0070355,uki4lrLzRaU,"The vigilante cops are dead, but Inspector Callahan has one last score to settle with Lt. Neil Briggs." tt0070355,WQnv22Qnp8s,Inspector Callahan poses as a pilot to thwart a group of hijackers from flying away with a plane full of passengers. tt0420757,Blz6dosZ5oc,Nina Giamoro tells Jack Giamoro that she's been cheating on him with one of his clients. tt0070355,8kmCFBwTmGY,"After finding a bomb in his mailbox, Inspector Callahan frantically tries to warn his partner, Early Smith." tt0070355,-oRm-YxsEH8,"Inspector Callahan competes in a shooting contest against Officer John Davis, a top suspect in the case." tt0070355,sEWuVNk2TKA,Lt. Neil Briggs gets upset when Inspector Callahan pays a visit to a crime scene. tt0070355,TCrV8NUSTsc,"Inspector Callahan puts his partner, Early Smith, at risk when a gang holds up a store." tt0070355,C8l7cD_YI4Y,Inspector Callahan escapes from the aircraft carrier and demonstrates why he's the best there is. tt0070355,CQtbqB7NcXc,"Inspector Callahan meets Sunny, a neighbor with a pressing question." tt0070355,CgHWwYQ3XSg,The vigilante cops confront Inspector Callahan with a proposition. tt0070355,TAkyNyQBnyo,"After a shootout results in the death of a cop, Inspector Callahan gets an earful from Lt. Neil Briggs." tt0892782,vAalnLmiZrc,Samantha and Andrew find out what has been growing in the trees. tt0892782,YeNQ5WEKggc,Andrew and Samantha watch as two of the alien creatures connect in the night. tt0892782,_KpfRDVjsKI,Andrew arrives at the hospital to pick up Samantha. tt0892782,1ISntRHuJ4Y,Samantha and Andrew discover a new perspective on the American border. tt0892782,w9SWbpW5bNo,Andrew and Samantha watch helplessly as their convoy is attacked by a giant alien. tt0892782,eF77Id3wbZQ,Andrew and Samantha make their way to the infected zone. tt0892782,JZsF7-7VBYs,Samantha and Andrew cross the border into the United States only to discover an evacuation zone. tt0892782,NCh2VGy8AR0,Samantha is startled to find alien tentacles exploring the inside of a gas station. tt0892782,BbYPFSGnPZs,Samantha and Andrew bargain to get back into the United States. tt0892782,q3LxjwTz-b8,Samantha and Andrew make their way to the coast through a country afflicted by monsters. tt0892782,hq-jlSdx5Ck,Andrew walks Samantha back to her hotel room and fails to get an invitation inside. tt0117108,tQlujXWP-5c,Doug bribes #4 for information on his wife with some Coca-Cola. tt0117108,JpdTx3k0VoQ,Laura is astonished by Doug's attention to detail with food preservation and hair. tt0117108,hm9ZzMSoPB4,"Doug fights to get his daughter ready for picture day, but upon arriving at class, realizes that he's got the wrong day." tt0117108,VAh7ZGHEp-c,Doug lays down Rule #1: none of the clones can have sex with his wife. tt0117108,hSAx87qd-fs,Doug finally fires an employee who is habitually late. tt0117108,NwqIdPSNr6E,"After bickering with the first and second clones, Doug realizes that there is a third clone in the room." tt0117108,oyYuYNnSq9E,The little league football coach has enough of the meddling parents and leaves the team in Doug's hands. tt0064665,D0rFBU7pVL4,"Just before they reach Miami, Joe discovers that Ratso has died on the bus." tt0064665,uKZQEDh_KAA,Ratso and Joe fight about the appeal of Joe's cowboy schtick and the Ratso's lack of sexual experience. tt0064665,_Z-tCU-sULA,"Ratso explains the value of proper management to Joe and agrees to introduce Joe to Daniel, the middleman." tt0064665,xd7SESj-nfA,Joe corners Ratso in a diner and demands his money. Ratso makes excuses and invites Joe to stay at his place. tt0064665,afnlOjES53Y,Ratso steals a high-class client from another gigolo for Joe then waits outside the hotel like an expectant father. tt0064665,3izxrCNCbUQ,"Rather than seeing a doctor for his illness, Ratso wants Joe to put him on a bus to Florida." tt0064665,X6UG7H2dcos,Cass breaks down when Joe asks for money for his time. tt0064665,gjliVll3Uyw,Joe keeps things light after a deathly ill Ratso wets his pants on the bus en route to Florida. tt0064665,IC2crLlclNA,Ratso daydreams about the new life his imagined riches will bring him in Miami. tt0064665,AO_944kf0RA,Joe beats and robs an old man to get the money for his and Ratso's bus ride to Florida. tt0064665,bwTe_vZ_2dg,Ratso and Joe lose their home then visit Ratso's father's grave. tt0795426,x1dA_SM1vxE,"Lefty drives through security, and steals supplies from his old job." tt0795426,_Fw6TuACCKY,Mary and Kirk discuss the difficulties of taking care of disabled loved ones. tt0795426,R4ODWXEmvKQ,Lefty offers to take his mother to the Christmas Eve service at her church. tt0795426,alvAo3qQRQE,"To his surprise, Mitch sees Eva and her son, Lefty, at the Christmas Eve service." tt0795426,BUAUwc7g_gY,Lefty borrows a stranger's cell phone and calls his ex-wife. tt0795426,06gTnB_5-Tg,Lefty shows up at his Mother's house so she can wish him a Merry Christmas. tt0795426,igD13c0l8Sc,Lefty shows up again at the gas station and apologizes for his last visit. tt0795426,bmIx71yf944,Lefty is fired when he shows up late for work one too many times. tt0795426,SiLFLIp8I14,Mitch tells Pastor Mark that the caroling trip was a waste of time. tt0795426,kjx9LAJ6Wu4,Lefty explains his current situation to his wife's divorce lawyers. tt0795426,5-kyVZ5swXE,Carolers arrive at Eva's house right before she plans to commit suicide. tt0095953,cKw1b2-4aeU,Charlie loses his temper when Ray insists on going back to Cincinnati to buy boxer shorts from Kmart. tt0095953,G4Hwsz1sQmc,Ray has an attack in the airport when Charlie tries to force him on an airplane. tt0095953,DH6S0wKKGBM,"Charlie makes the connection that Ray is ""Rainman,"" the childhood friend he had growing up." tt0095953,kthFUFBwbZg,Charlie is amazed when Ray correctly guesses the number of toothpicks that fell out of the box in one glance. tt0095953,wAadouGkwMQ,Ray and Charlie scope out the casino and get their first winning streak. tt0095953,Bp9AClR8qCY,Charlie takes Ray to a farmhouse to watch People's Court. tt0095953,tDpyGID-qHI,Charlie teaches Ray how to slow dance. tt0095953,7zDmlkn1gbQ,Charlie says an emotional goodbye to his brother before Ray boards a train back to Cinncinati. tt0095953,Lz-ihW8RXSM,Ray acts out when Charlie visits his room and touches his belongings. tt0095953,LU1A0sHWYQg,Charlie discovers that the stranger sitting in his car with his girlfriend is actually his brother Ray. tt0095953,gN2ZP-q_qpc,Charlie is impressed when he learns that Ray memorized part of the phone book. tt0935075,Xw2cUrd_Zt0,Gaby and Howie Corbett smoke pot before support group. tt0935075,O7LsLRMEg1Y,"Becca calls up her mom Nat, and the conversation takes a turn towards the topic of religion." tt0935075,qDYuDtyvVVQ,"At a support group, Becca Corbett questions why God takes away little children from loving parents." tt0935075,Cbijjb5aLYo,Howie tries for some physical intimacy with his wife Becca. tt0935075,RgofngIgfsY,Nat recounts a story of an old friend to her daughter Becca. tt0935075,zKWgTSNMESI,"Sitting in a park, Jason expresses his grief and regret to Becca over the accident." tt0935075,RAG1b0H8nv4,Emotions full of grief come to a head between Becca and Nat at Izzy's birthday party. tt0935075,zn9pjQIMQVQ,Becca takes comfort in Jason's idea of a parallel universe. tt0935075,sDB0bxWhS4A,Nat expresses the nature of grief as time passes to her daughter Becca. tt0935075,i1jS0AMWtgg,"Jason shows Becca his comic book named 'Rabbit Hole,' inspired by the idea of parallel universes." tt0935075,KK2MOKkkp4M,An argument between Becca and Howie over an erased video reveals repressed emotions. tt0396184,s_zget0Z7Xc,"After screwing up a drug deal, Kusse-Kurt and Tonny argue about how best to cover it up and who's to blame." tt0396184,fU3enCcXY80,"After engaging in a lousy drug deal, Kusse-Kurt, aka Kurt the C**t, accidentally flushes his stash down the toilet." tt0396184,lPJzoxKtSxY,"Frustrated at Charlotte for her demeaning attitude and for being constantly coked-out, Tonny tries choke her to death." tt0396184,8svIExZz6Dw,"Smeden makes a toast to the groom while insulting his own son, Tonny." tt0396184,gtHCnru414Q,"Tonny makes an agreement with Charlotte to cover the child support payments for their infant son, including what he owes for his time lost in prison." tt0396184,iWFpqo0_43o,"After helping Kusse-Kurt trash his own apartment in order to make it look like it was robbed, Tonny learns that he has been duped into double-crossing his own father." tt0396184,AIHlnQOkZiU,Tonny takes pride in changing his son's diapers for the first time. tt0396184,RnWxwJxpDig,"After being mercilessly berated by his father, Smeden, for yet another failure, Tonny snaps and strikes back with savage fury." tt0396184,FSbcZ85iPvU,Tonny takes his infant son and escapes into the night. tt0396184,CBP-t2AJ8M8,Tonny helps his father's associates pull off a car heist so he can prove his worth. tt0396184,ks2GU3XYXvM,"Just before he is to leave prison, Tonny gets some sobering advice from an underworld kingpin." tt0307351,vMrWJki0r8g,"Sally and Jacki open up to one another about their abusive pasts, and how music was their saving grace." tt0307351,EdDMvB9Y20o,Jacki and her sister upset their mother when they joke about their father's abusive behavior. tt0307351,GUclZ3JhJoM,"After a night of drugs and heavy drinking, Tracy finally admits to Jacki that she needs help, but it lands on deaf ears." tt0307351,dPfKQTaEcEA,Jacki contemplates whether or not she is getting too old to keep following her rock'n'roll dreams. tt0307351,fhGy66B0CIU,Tracy and Sally convince Jacki not to quit the band. tt0307351,NJz68D8NcE0,A drunken Nick assaults Sally in an effort to live out his rape fantasy. tt0307351,6GC872xb5dI,Jacki aks Faith if she ever has any doubts about being a musician. tt0307351,IBRvIQdd6UE,Jacki worries that the grant given to her band will be for a lot less money than expected. tt0307351,fjnGwAftnDE,Animal comes clean about the reason he was in prison and about his attraction to Jacki. tt0307351,UwslgPscal8,Jessica walks out on Jacki after she puts the band before their relationship yet again. tt0307351,EVPxub5VJMg,"Animal and Jacki teach Nick a lesson by tattooing the word ""rapist"" onto his forehead." tt0307351,rKjMBYlak2M,The all-girls band rehearse a song that Jacki wrote based on her experience with the issue of rape. tt1262981,V1dPrmENIVg,Andrew confronts Lance about the discrepancy between Kyle's reputation before and after his death. tt1262981,ccyTJYkiGqE,Lance listens to Jason recite a poem that sounds suspiciously familiar. tt1262981,WOLfIBsXq4s,Lance drives Kyle to school and tries to talk about their awkward encounter. tt1262981,pwlgVnituhw,Lance and Claire bring Kyle along on their dinner date. tt1262981,kNOz8Bcb9v0,"Lance and Claire, trying to keep their relationship a secret, kiss in the stairwell at school." tt1262981,Nx0Qte8Wfgg,Lance admits to everyone at the library dedication that he wrote Kyle's suicide note and journal. tt1262981,hpfufHZI0yQ,Lance finishes another novel and walks in on Kyle at an embarrassing moment. tt1262981,QaKCmtbKf8g,Kyle watches his elderly neighbor and accuses Lance of getting high. tt1262981,dEfBtVYzWks,Kyle gets into a fight with Chris after making a derogatory comment about a classmate. tt1262981,W1N-a0SDw0k,Claire keeps Lance and the chauffeur waiting as they prepare for a talk show appearance. tt1001562,8ExIPKUEZ-4,"Deputy Larry Stalder believes that the men in black suits, driving black Suburbans, must be drug dealers or smugglers." tt1001562,A7iVMwpaYmk,Deputy Larry Stalder gets stopped by TSA officials. tt1001562,edDfsrTAI1k,Madeleine plays dead in the funeral parlor. tt1001562,k4WEx4-yh-g,Deputy Larry Stalder hits the diner and hits on Connie. tt1001562,f3mAVsy7WbM,Deputy Larry Stalder doesn't have a credit card to put on file at a motel. tt1001562,jSbmgZG-0Ng,Deputy Larry Stalder and Madeleine flee from the men in black. tt1001562,poQL9Yw2kNI,TSA officials perform a body cavity search on Deputy Larry Stalder. tt0245562,OywTdKpHE8M,Sgt. Joe Enders' men are gunned down one by one on the battlefield. tt1001562,NWO-iP_Sbtk,"Ricardo Bodi sneaks into Connie's home to find Larry, who's not there." tt1001562,ajj5MxJEJ1Q,Deputy Larry Stalder threatens to blow everyone up with a fake grenade. tt0245562,UniUFSan3Bg,Yahzee learns that Enders killed Whitehorse. tt0245562,IwC3OUA8_s0,Ben leaves his family for the army. tt0245562,H3h2opMD6rM,Pvt. Yahzee comforts Sgt. Enders in his final moments alive after the battle. tt0245562,ZsL0rDZPGb8,"When Pvt. Chick goes too far with his abuse, Pvt. Yahzee goes after him physically." tt0245562,qsdgNxuhPgc,Yahzee makes an unfortunate first impression with Enders when he ruins his chow. tt0245562,hQogMjsahWU,"Despite enduring some stereotypical remarks, Pvt. Yahzee is happy to join a game of poker with the guys." tt0245562,ah-M2AYI4Ac,Yahzee holds a Navajo ceremony in memorial to Enders. tt0245562,zQHhbhtpJ3M,Yahzee speaking in Navajo language communicates the proper coordinates for the attack. tt0245562,hrZxBMTQO0c,The marines land on the Japanese island of Saipan under heavy fire. tt0114938,fSOh-vTjWk4,"Wild Bill is in search for Dave Tutt, to take back his watch and woman, Susannah Moore." tt0114938,nZy7fW9IO0s,A saloon fight breaks out when a soldier threatens Wild Bill. tt0114938,zCfnEpand6k,Charley Prince tries to persuade Jack McCall to forgive Wild Bill for any wrongdoing. tt0114938,XAORGJKfEcU,Wild Bill and cripple Will Plummer have a duel with both men confined to chairs. tt0114938,y4nFzow4tLQ,"McCall sneaks up on Wild Bill in an opium parlor, but Bill still unnerves him." tt0114938,7iWEk7k_kio,Jack tricks Wild Bill with an unloaded pistol. tt0114938,gm2PdV3UPfc,Jack McCall threatens to kill Wild Bill in a fit of youthful recklessness. tt0114938,hdt5QAIC81Q,Jack McCall tells Wild Bill about his deceased mother. tt0114938,8MnF5ok8llg,"In a chaotic moment, Will Bill accidentally shoots his own deputy." tt0114938,mb2bzOdITdU,"After a shootout, WIld Bill shows mercy to Jack McCall and lets him go free." tt0486674,1eQh2-2W_1Q,Dick doesn't respond well when Ben asks him to deliver some bad news. tt0486674,yQAICCf1oug,Bruce Willis eulogizes an agent as various Hollywood power players mourn their colleague. tt0486674,ZCYbGGfwbfk,Jeremy does not respond well when Lou tells him to change his ending. tt0486674,QslzL-DhXDY,Ben misses his plane out of Cannes. tt0486674,8bAvbwlCsHU,"Ben attends a test screening for his new film, but the audience reaction is less than stellar." tt0486674,QgYPzXlF1xM,Ben grills his daughter Zoe about her relationship with a deceased agent. tt0486674,IyT1ogi3fE0,Bruce Willis reacts violently when Ben tells him to shave his beard. tt0486674,1US29KtfPrQ,Ben fantasizes about telling off Scott. tt0486674,obbz_0P1wVs,Jeremy shows Ben the new ending for his movie. tt0486674,iGAwKHHaRAA,Ben tries to calm Jeremy by providing medication. tt0486674,G92KKZEiWy8,Ben wants Kelly to confirm his suspicions of her affair. tt1465522,GJgKIC581V0,Tucker gives Dale an uplifting speech. tt1465522,bXq9Pa9Txg8,"The Sheriff warns Tucker about their predicament, but ends up slightly dead himself." tt1465522,WSoMlpQ6yz8,Dale and Allison start hitting it off…only to be interrupted. tt1465522,poZubOWaras,Allison attempts to diffuse the situation between Dale and Chad. tt1465522,zKSDHbVKY7Q,Dale comes to Allison's rescue. tt1465522,IX3hYYzIyoY,"Tucker tries to run, but he can't hide from the face of pure evil." tt1465522,gYTKHHhPk08,"Tucker and Dale reach their vacation cabin, which is just perfect - aside from it's horrific contents." tt1465522,JJ0PocoUWVI,"After much hesitation, Tucker convokes Dale to approach some college students on vacation." tt1465522,TdOMp1LuvJg,Dale finds his buddy tied up and missing some digits. tt1465522,AdGVl3AP7fw,Tucker hits a beehive while working on the house and scares the crap out of the college students. tt1465522,MjC0kVIUGYU,Tucker and Dale unwittingly cause Allison to fall and hit her head. The other college students read the accident the wrong way. tt1465522,Y4yQoJ-LBVE,Tucker and Dale try to explain their situation to the Sheriff. tt0084814,nODBN75vrH0,George and Charles Litton try to escape the law while dressed as gorillas. tt0084814,Cpxs390x5N4,Clouseau has a miscommunication with the hotel clerk over a message. tt0084814,zvry_GtQIeU,Young Clouseau tries to blow up some Nazis crossing a bridge. tt0084814,IRMNacEVuT4,Clouseau tries on a variety of noses for a new disguise. tt0084814,JnXCZbZipJg,Clouseau blows up his car while trying to fix the cigarette lighter. tt0084814,7fOYHqR2Gyo,Clouseau's bad disguise causes problems when he tries to disembark the plane. tt0084814,uq1JHKlUtOU,Clouseau insults Marta when he thinks she is wearing a fake nose. tt0084814,uF_721BvdJE,Cato attacks Clouseau while he is in bed. tt0084814,gL3mN-UpSyQ,Clouseau is repeatedly knocked out a window while trying to receive his message from the hotel clerk. tt0084814,oaqTzvd4aq8,Clouseau puts forth his theory about the Phantom and burns his hand in the process. tt0084814,zE0vrRRohs0,Clouseau accidentally starts a fire in his office and uses his resources to put it out. tt0070814,ydYaph8BQkE,Tom Sawyer sings about what he'd do if he was God. tt0070814,aBgs1Kxh9nM,Tom makes up a lengthy lie to get out of trouble with Aunt Polly. tt0070814,BahgFrLFgpk,Tom finds Huck at the fishin' hole and tries to learn him some responsibility. tt0070814,Jah71XURbIg,Tom tricks some kids into doing his chores for him. tt0070814,4KX9Ojp-yic,Tom takes a whipping for Becky at school. tt0070814,yZLkEOM1CQ0,Tom persuades Becky to get engaged to him. tt0070814,pKdszbbvQGc,"Muff Potter, the town drunk, sings to Tom Sawyer about his destiny." tt0070814,2yXz1r5kn_k,Huckleberry Finn and Tom Sawyer enjoy their free time with nothing to worry about. tt0070814,u8TwN5M1fEY,Tom meets Becky Thatcher and is mighty impressed. tt0070814,wRbKDoyN5oc,Tom and Huck are quite moved by attending their own funeral. tt0070814,lVg2pm0YdQ0,Tom Sawyer and the boys sing about their job satisfaction as they whitewash the fence. tt0070814,i5mSHPKEbas,Tom testifies against Injun Joe to his own peril. tt1293842,3jBfvv_lBEU,Bill gets rejected when he asks a waitress out for a drink. tt1293842,WDq967Y_e3U,Bill tells the girls to start taking the game more seriously if they don't want to look like idiots. tt1293842,gMBkkaB0pp0,Bill drags Wendy back to basketball practice when he finds her making out with an older man. tt1293842,7jO1tzRBFFw,"After Bill takes one look at the girl's basketball team that he's been hired to coach, he asks Terry if a joke is being played on him." tt1293842,hbki4pbNi10,Lisa defends Kathy after two girls on the opposing team mutter a few racial slurs towards her. tt1293842,tfsPfimgjFU,"The girls get emotional when they lose the season championship, but Bill provides some words of encouragement to lift their spirits." tt1293842,laWUdsC-3Pk,Abby breaks up with Damon after she realizes that he has extremely shallow ambitions for his future. tt1293842,QCTgWRNnfZM,The girls bring a drunk Bill back to his apartment and ask about his secretive past. tt1293842,jXqcrXqphIo,"Bill coaches his team from his daughter's cell phone, as he simultaneously runs from the cops." tt1293842,3IAUIQJXHUM,Molly runs away to her mother's house after Bill embarrasses her in front of her friends. tt1293842,FPyap6DbfHw,Bill lectures the girls about keeping their personal issues with one another off the basketball court. tt1293842,92h5_0bE8Nk,The girls send Bill on a guilt trip for abandoning the team. tt0120520,gfF5C7j-2jk,Kate sneaks off to see Merton and they get caught in the rain. tt0120520,GBGdp2p0T30,Kate visits her destitute father for advice. tt0120520,_OzammfDblc,Millie and Merton are overcome with passion upon viewing a ceiling painting in Venice. tt0120520,tvaROfCgPPE,Kate is overcome with jealousy as Merton dances with Millie. tt0120520,6J4faUNOGuI,"Kate and Merton meet in secret, causing Aunt Maude to grow suspicious." tt0120520,pu0pYw6lG_c,Kate and Merton reunite after several months of separation. tt0120520,gUccqktilDU,Kate encourages intimacy between Merton and Millie by making them share a gondola in Venice. tt0120520,mjPh_oYqKPM,Kate and Merton reunite after Millie's death and consider a future with her money. tt0120520,A8PVoyIiqrw,Kate wonders if Merton is still in love with Millie's memory. tt0120520,YRi3-AbHXbU,Kate tries to convince Merton to join her in Venice. tt0051036,55gq831fmzE,J.J. uses some clever negotiations to convince Sidney to help him get Steve. tt0120520,qw34BbyVK7c,Kate drags Merton away for one last rendezvous before she leaves Venice. tt0051036,9uA8c4XGVxk,"When Sidney comes over to check on Susan, J.J. turns against him and tries to beat him up." tt0051036,U0FBVju7fVI,Sidney interrupts J.J. Hunsecker at a dinner he is having with a senator. tt0051036,OhH4bYnAdzk,Susan walks out on J.J. and leaves him with some thoughts to consider on her way out. tt0051036,Wh4U2TtNn-g,J.J. gives Sen. Walker a warning. tt0051036,8xsYjrLw-Qk,Rita confides in Sidney when a columnist tries to take advantage of her. tt0051036,VIVMDMDxnQY,Sidney steps in just in time to save Susan from throwing herself over the balcony. tt0051036,oCq7TUmVmt8,Sidney convinces Rita to make nice with Otis. tt0051036,3CeKpU2WaBQ,Sidney attempts to blackmail columnist Leo Bartha by disclosing his relationship with Rita to Leo's wife in order for him to print a smear on Steve Dallas. tt0051036,Xv_qHFUItVo,J.J. gets in between Susan and Steve and forbids her from ever seeing him again. tt0098384,iZx1W6cHw-g,"M'Lynn grieves for her daughter, and when she expresses a desire to hit something, Clairee suggests slapping Ouiser." tt0051036,e1bMBM_rgwQ,J.J. is surprised by Sidney's evil ways. tt0098384,juw328OfWnM,Annelle tries to comfort M'Lynn at Shelby's graveside by reminding her that Shelby has gone to a better place. tt0098384,ybbS5_qlkaQ,"When Shelby suffers a diabetic attack at the salon owned by Truvy, M'Lynn gives her daughter juice and tells Clairee and Annelle that Shelby will be unable to have children." tt0098384,hn09SKCZgtI,M'Lynn refuses to leave Shelby as the doctors pull her off life support. tt0098384,cWuFfrettMY,"Truvy prepares for Shelby's funeral, and Spud decides to go with her to offer his sympathies." tt0098384,TlB_1W-qc14,Shelby tells M'Lynn that she's going to have a baby despite the dangers caused by her diabetic condition. tt0098384,eTVHMQb2OyU,"Drum announces that Shelby is pregnant, but M'Lynn is more worried than excited." tt0098384,BXloUAxs2wI,"Shelby reminds Ouiser of an old friend who is now eligible again, but Ouiser is not receptive to Shelby's matchmaking." tt0367085,DLFB0sj-xkc,The Hunkee family notices they're the only white family waiting for the flight. tt0367085,Lva7xOJRRCA,Captain Mack prepares the passengers for take off. tt0367085,frgfTkjkcxo,The Hunkee family is impressed with Terminal Malcolm X which features custom shops and a couple of very feisty security workers. tt0367085,cCoD237oWtg,Blanca shows Nashawn how to take control of the plane with her sexual memory. tt0367085,9XVy6vDxQDk,Jamiqua takes an attractive man back for a body cavity search. tt0367085,YfUodLRuU-A,Watch NWA Airlines' musical safety video. tt0367085,Geneo4_3VbE,Heather Hunkee embarrasses her family by talking loudly about what types of sex she will have when she comes of age. tt0367085,cLc_O-kQOoc,Nashawn has a bathroom emergency on the airplane when he's forced to eat the Beef Stroganoff. tt0367085,FvsbTxZZgxM,Nashawn realizes that Captain Mack is afraid of heights and has never flown a plane before. tt0367085,n5PnSNCFBYs,Nashawn meets two wild airport security guards who don't recognize him as the owner of the airline. tt0367085,LFc-p5H9AJI,"Nashawn meets Captain Mack, a real smooth pilot, who may or may not be qualified to fly the plane." tt0120788,MRCXvZjeOx8,Jerry hits rock bottom when he begs for drugs and shoots up with his baby daughter in the car. tt0120788,HB7ienz0_IA,"After Kitty announces that she's moving to Alaska, Jerry realizes how much he cares about her." tt0120788,PSNqibKHIys,Jerry can't cope with social interactions without getting high. tt0120788,NrXQSp7Uz0A,Jerry recounts a typical day as a junkie. tt0120788,yThTYeRr5BM,Jerry embarks on a drug binge with Gus. tt0120788,h0z4HetQWME,Getting high is more important to Jerry than pursuing a relationship with Sandra. tt0120788,OWXlfOnU6tc,Jerry has a drug-fueled rant about realism and Expressionism in a writer's meeting. tt0120788,EI_QlYraNl8,Sandra kicks Jerry out of the house after he reacts poorly to her pregnancy news. tt0120788,lmDII7sMIF8,Jerry recounts the embarrassing aftermath of sharing his story with the world. tt0120788,1HfdZj-RzI0,Jerry visits his daughter for the first time since becoming clean. tt0120788,rsmsMeT8EYs,"Jerry interviews for a writing position on the show ""Mr. Chompers.""" tt0839880,m8oSm88EIhM,Tanya arrives and Amy is suspicious of the new girl tempting her unfaithful boyfriend Bill. tt0839880,0p1OYPs14T4,"Brielle informs her sister, Samantha, of their grandfather's funeral and their inheritance." tt0839880,Ay4MOACH9tQ,"Ben retrieves his wallet with his eyes closed, unaware that he's diving near a corpse." tt0839880,2F64BSpClag,Gloria introduces Brielle and Kelly to their family tradition. tt0839880,tx8GFMF8Pd8,Samantha drinks some wine from the bottle and then gets attacked. tt0839880,jthkBksMaXY,Sheriff Chuck Lake gives his mother Gloria an update on the situation and then a kiss. tt0839880,2wctAnLU_cE,Amy runs off into the forest as Brielle and Kelly make their getaway in the RV with Ben at the wheel. tt0839880,vsSTRzIow2c,Gloria pleads with Willard to preserve their secret family tradition. tt0839880,TfeZeRIdyNM,Ben and Brielle meet Gloria and discuss the future of the motel. tt0839880,kBgO6ctmq8M,Brielle slaps her father for keeping secrets about their family. tt0839880,HFUCwBt4pK0,Bill and Tanya are attacked after a little infidelity in the forest. tt0839880,7kAoU7bwDFM,Gloria orders her sons to include their sisters in the family tradition. tt0363276,IziNmIErmWw,A young patient escapes from a mental health facility but falls victim to a motorist. tt0363276,yga9OU5yuKE,Dr. Morton gets more than a midnight snack when he visits the kitchen after hours. tt0363276,SHvBT5RXeeA,Sara has a confession and a grisly discovery is made. tt0363276,JVfMbJjbIpw,Clark accuses Sara of the murders that have been occurring throughout the facility. tt0363276,TbgusehY_sQ,Nurse Hendricks goes to investigate when she and Sara hear strange noises in the hallway. tt0363276,rFPCkGmuUO4,"When Clark Stevens has some suggestions for the facility, Dr. Franks puts him in his place." tt0363276,yFX-95l18ng,Sara attempts to calm Clark after his rampage. tt0363276,LkLvZZiL3Vo,Clark goes to ask the patient in cell 44 a few questions. tt0363276,ZC2SlM2Eqa4,Sara introduces Clark to the Madhouse and its inhabitants. tt0363276,Boi5obDmX-g,Clark gets a tour of the Cunningham Mental Health Facility. tt0227005,QpoiFakmREc,Ricky and Bobby enjoy the perks of flying first class. tt0363276,yJUGxCV5OiQ,"When he returns to his office, Clark finds that he has a strange visitor waiting for him." tt0227005,urN3pAtiXdg,"Ricky steps in to save the day when the deal goes wrong, but his starter pistol doesn't fool anyone." tt0227005,tPJ_rBWLOxA,Ricky fails to close the deal with one club girl as Bobby gets stuck hanging out with another. tt0227005,-WBeglzkZNQ,Ricky tries to convince Bobby that they need guns to survive their next assignment. tt0227005,F4d_PYyHSOM,Bobby and Ricky take orders on a job site from a flamboyant designer. tt0227005,FaH-7N7iRjI,"The more things change, the more things stay the same, as Ricky and Bobby argue about Chloe's schooling at her birthday party." tt0227005,GeqbeBDtYkE,Ricky tries to negotiate a room upgrade from the Hotel Clerk. tt0227005,jTFSVXpq1Fg,Bobby and Ricky try to talk business while painting pottery with Chloe. tt0227005,iImMlbzg5Qc,Ricky gets in trouble with Ruiz for talking too much. tt0227005,y3wTKua41bk,Ricky and Bobby try to talk their way into a hot nightclub. tt0227005,fXcIZFeYivQ,Max explains the rules of the assignment to Bobby and Ricky. tt0234137,opyCsftx7D0,Kate's boyfriend Joey Santino shows his penchant for Robert DeNiro impressions. tt0234137,ettu4zJOh3M,Kate receives a singing telegram from a Tiny Man sent by Adam. tt0234137,Vn5ilm1jMgA,"In a screening of Nosferatu, Kate runs into her ex-boyfriend Adam and his new girlfriend Peaches." tt0234137,mXwYp2IwFFw,It is love at first sight when Adam approaches Kate at an art exhibit -- turns out that he's the artist. tt0234137,uuAGxjrG_gs,Adam and Kate fight over what movie to rent at the video store. tt0234137,F5U5PKWgHQo,Kate Welles gets a tongue lashing from her editor Monique Steinbacher when she turns in a lurid piece about oral sex. tt0234137,3daIUo8UtM4,A high school-aged Kate loses her virginity to her French teacher. tt0234137,v75c0QugkBI,"Eric gets caught with Kate, who becomes heartbroken, when his wife unexpectedly comes over with his daughter." tt0234137,M09CkmDfntY,"Kate's attraction to much older men continues with Eric, a married music video director, after they get into a car accident and are arrested." tt0234137,4nGA9zBslBg,"On their first date, Adam asks some standard ""getting to know you"" questions, while Kate goes for the jugular with questions about Adam's sexual history." tt0478197,cR7GV9Fdkuk,"Leonard Cohen and U2 perform the song, ""Tower of Song.""" tt0234137,dZushQttfzY,"Kate meets her next boyfriend, actor Joey Santino, at Earl's Porn-O-Rama." tt0234137,QU2qTjAFWKQ,"When Kate takes out a video recorder, Adam busts out his best strip show." tt0478197,BHx0kYdl9Nw,"Leonard Cohen reminisces about his experience living in the Chelsea Hotel in New York City, and Rufus Wainwright sings the song of the same name." tt0478197,tlhxBAhYnS8,Nick Cave covers 'I'm Your Man' and discusses the influence of hearing a Leonard Cohen record when growing up in Australia. tt0478197,JQAyLEhEoQw,"The Leonard Cohen song ""Suzanne"" is sung by Nick Cave, Julie Christensen, and Perla Batalla." tt0478197,QTHImytcib0,"Rufus Wainwright and his sister Martha sing the classic Leonard Cohen song, ""Hallelujah.""" tt0478197,eqQtfjs7YGg,"Rufus Wainwright recalls the first time he met Leonard Cohen, and sings the song ""Everybody Knows.""" tt0202677,4xBY09_9H6g,Longbaugh and Parker get into a shootout with Sarno and his henchmen over the ransom money. tt0202677,5XWG3eNY298,"Sarno interrogates Jeffers and Obecks on how they lost Robin, and then threatens them to do their job or be ""adjudicated""." tt0202677,AV5hAxICHsc,"As Longbaugh drags Parker to safety, he's ambushed by Sarno and shot in the legs." tt0202677,tteCp4cbON4,"Parker and Longbaugh try to kidnap Robin, a very pregnant woman" tt0202677,NdDOmuWz92I,Parker and Longbaugh sit in separate interviews to determine if they are viable candidates for sperm donation. tt0202677,ZIjuiq25Lzk,"Longbaugh snipes the local Mexican police, as well as Jeffers and Obecks, in order to stop them from taking back Robin." tt0202677,90li7tw4CCM,Parker and Longbaugh beat the crap out of a pair of obnoxious hecklers. tt0202677,5rKn9BNhQ0Y,"Parker and Longbaugh shoot their way into a whorehouse to rescue Robin, who is the midst of a Caesarean section." tt0202677,AGCDh4gBj8U,"When Mr. Parker has doubts about the kidnapping, Mr. Longbaugh tests his loyalty by sending him into a near-ambush." tt0040897,RAapNGRfaBI,Curtin and Howard laugh together over the fate of their gold. tt0040897,8_phNWJu9BY,"A stranger lays out the gang's options, they can either kill him, run him off, or make him a partner." tt0040897,dkcsqI6hZz8,Dobbs is surrounded by banditos at a watering hole in the desert. tt0040897,TArcc_WduhE,Dobbs and Curtin get into a bar fight with the man who conned them into working hard labor for free. tt0040897,Wy3IoFyvWOs,"Dobbs waits for Curtin to fall asleep so he can murder him, but he didn't plan on his pestering conscience." tt0040897,_pWx7N8gSoY,Dobbs wants to give up the search just when Howard's found the gold. tt0040897,rpdnpip1X4A,"Dobbs and Curtin think they're stumbled upon the motherload, until Howard sets them straight." tt0040897,rEAbZTpV47E,"Dobbs believes Curtin has stumbled onto his stash, when in reality a deadly gila monster has found it first." tt0040897,vKEWdfB8yo8,Dobbs makes a bet that Curtin will fall asleep before he does. tt0040897,4OcM23Hbs5U,Dobbs and company defend themselves against bandits posing as Federales. tt0117774,dcKdr89ngtI,Mr. Smith makes a visit to Matt Wolfson on the jai alai court to beat some information out of him. tt0117774,mW3KEJNsT2Y,Mr. Smith lays down the law in his classroom with a little physical authority. tt0117774,1L-4-XQYxrs,Principal Claude Rolle offers some teaching advice to Mr. Smith. tt0117774,Y6uj9ZZl2LI,"Mr. Smith violently explains to Principal Rolle the lesson that somethings aren't about money, that somethings can't be taught." tt0117774,6E26ye_66xE,"Mr. Smith unleashes his wrath, and adds one of the 'flunkies' to his demo reel." tt0117774,OCV4kaP_0-k,Mr. Smith teaches a lesson about books to Juan and his posse in the library. tt0117774,peRHtqEZMLk,Mr. Smith gets to know the students on his first day as a substitute teacher. tt0117774,b1s-ewwrpQY,Jonathan Shale interviews for a mercenary position with a highly flatulent Matt Wolfson. tt0117774,JMpTeDvOnLA,Things heat up between Jonathan and Jane when her leg cast begins to itch. tt0117774,VSiiYMgJ3h8,"Mr. Smith tries to convince the other mercenaries to help him weed out the drugs, money, and corruption that has infested the high school." tt0120802,BFkcX4Qi11g,The red violin passes through the hands of several generations of gypsy musicians after it is stolen from the grave of Kaspar Weiss. tt0120802,VBgDKUVxAyI,"Anna expresses concerns about her pregnancy to Nicolo, who presents her with a violin for their baby." tt0120802,-cvGAF7LbqE,"Frederick Pope performs a new composition inspired by his lover, Victoria Byrd." tt0120802,YKce1fkBRrc,Young Kaspar Weiss demonstrates his prowess on the violin to Georges Poussin. tt0120802,5oe8grtUxI8,Kaspar Weiss succumbs to the pressure of auditioning for Prince Mansfield. tt0120802,a4DTqmln40c,Georges Poussin watches as Kaspar Weiss practices with a metronome. tt0120802,Ckem1kbmJdQ,Morritz switches out the red violin with a copy as Williams creates a distraction. tt0120802,BR2Bcczm9EI,Morritz gets impatient when a concierge neglects to inform him of an important delivery. tt0120802,mGpalRiltP8,Xiang shows her forbidden violin to her son Ming and plays him a tune. tt0120802,AUqVNqZdqRw,Victoria Byrd breaks the news to Frederick Pope that she must travel to Russia for research. tt0120802,cqZVc6GtV8A,Morritz makes a startling discovery when he arrives in Montreal to appraise a set of violins discovered in China. tt0120802,jW9D4lY0TUU,Morritz and Williams marvel over the exquisite craftsmanship of the red violin. tt0981072,Us7XgnZ5OHE,Colee gets into a bar fight with some local college girls. tt0981072,-scWJO2h1ak,"After escaping a tornado with Colee, TK discovers that he is no longer impotent." tt0981072,ynZqnGTUHcM,"With Cheaver passed out in the back seat, TK becomes distracted and nearly gets impaled in an accident." tt0981072,8TlVDn0j98E,TK finally tells everyone where he was wounded and why he was lying to his girlfriend. tt0981072,bluBJ-eeBBs,"Colee, Cheaver, and TK share some war stories on their road trip." tt0981072,KXo_Enhm-xM,Colee tells the pastor the problems that TK and Cheaver are facing. tt0981072,gQRANiw4JLw,"TK, Cheaver, and Colee discuss the war with some party guests." tt0981072,Bzd07cbr3y8,Pat tells her husband Cheaver that she wants a divorce. tt0981072,i0KnbzRHwaM,"At a diner, Cheaver finds out that he can't get his old job back." tt0981072,GVuaTdn9TnY,"After Cheaver's disappearance, Colee discovers his whereabouts in the bedroom with a married woman." tt0981072,LtkstS3KlIA,"TK, Cheaver, and Colee have a few drinks in the motel." tt0070334,HKNo8yzXxyM,Marlowe is interrogated by Detective Farmer regarding the disappearance of Terry Lennox. tt0070334,r6dLxmPng8o,Marlowe tracks Terry Lennox down in Mexico and shoots him dead. tt0981072,tM4qhFW0FPA,"Cheaver, TK, and Colee take a ride with a Hummer car salesman." tt0070334,ObAOGLArxGA,Marlowe locates Wade and frees him from Dr. Verringer's clinic. tt0070334,CwBH6g7UEI4,Dr. Verringer pays a visit to Roger Wade during a party to pick up his check. tt0070334,c3zRfKmcqv8,Marlowe looks for Roger Wade at the clinic run by Dr. Verringer. tt0070334,A6zqLx8tii4,Marty insists on everyone taking off their clothes as an intimidation technique to frighten Marlowe. tt0070334,P9fOKOsEX8A,A guard does his best impression of actor Walter Brennan for Harry who is nonplussed. tt0070334,7t7gG3XVqW0,Marty smashes a glass bottle into his girlfriend's face to scare Marlowe. tt0070334,847dUNGFwsM,Roger Wade drifts off into the ocean as Marlowe interrogates Eileen. tt0165854,2G-BNvZvz8I,Terry Valentine waxes poetic on the experience of the sixties to his much younger girlfriend Adhara. tt0070334,CU0lA1M1_3I,Marlowe tries to chase down Eileen through the streets of Los Angeles. tt0165854,T7uncpUQ4GE,"Arriving at a party in the Hollywood Hills, Wilson mistakes the valet attendants for body guards, only to be corrected by Eduardo Roel." tt0165854,0UrClwjpNA8,"Before killing Terry Valentine down on the beach, Wilson insists on hearing about the death of his daughter Jenny." tt0165854,E9yuGEux_OI,"After getting roughed up by some thugs in a warehouse, Wilson lays down his own wrath of vengeance." tt0165854,qPbOVPtdaZs,Wilson and Eduardo Roel flee Terry Valentine's house through the Hollywood Hills with Jim Avery in hot pursuit. tt0165854,5hete-GzD9I,"The record mogul Terry Valentine is introduced at his Hollywood Hills home, as well as his beautiful girlfriend Adhara who takes a swim." tt0165854,tJLdaKUBGzo,"Returning to London, Wilson recalls his trip to Los Angeles, before drifting off into a memory of his younger days in the 1960s." tt0165854,VKcpoyC6RMA,"Wilson attempts to explain who he is to the Head DEA Agent, but the conversation is lost in translation." tt0165854,euvUARojiiI,"Wilson eyes Terry Valentine at a party, and imagines the possibilities of shooting him dead." tt0165854,S76IuL89zVY,"While scoping out Wilson and Elaine on the set of a television show, Stacy the Hitman makes some wise cracks about shows he'd like to see on the air." tt0165854,sPgl1DyIn3U,"When the bodyguard Gordon comes to toss Wilson out of Terry Valentine's party, Wilson tosses him over the patio ledge." tt0097613,_2EQFo-vIH0,Christine refuses advances from Nick and mocks his taste in wine. tt0097613,Vtpo8d2mME0,"Nick struggles to capture the January Man, who puts up a fight all the way down the staircase." tt0097613,TsGOIi6JI1c,"Bernadette enters the victim's apartment as a decoy, but Nick is slow to come to her rescue." tt0097613,v5qwMeiEF0M,"Nick and Bernadette find the pattern in the serial killer's victims, to the tune of ""Calendar Girl.""" tt0097613,vTy2bx3jmrs,"Nick and Christine try to have a civil conversation over dinner, but their past keeps getting in the way." tt0097613,lVMviKEztGw,"Nick tells Christine that he doesn't love her, and then promises to cook dinner for Bernadette." tt0097613,01ovMSvDohw,Nick follows Bernadette onto a skating rink and makes a fool of himself. tt0097613,BZVmJdnVVBw,"Nick questions Bernadette about her friend, but before long things get personal." tt0097613,E_UyAj2V4pI,"Nick discovers the serial killer's pattern for picking dates to kill, but Alcoa is fed up with his quirky ways." tt0097613,AridlIyM9ak,"Nick prepares dinner for ex-girlfriend Christine, but he's clearly nervous when she walks in the door." tt0097613,s9IqypZYH6A,Alcoa refuses to work with Starkey until Mayor Flynn convinces him otherwise. tt1594562,r1NHFfwmJZQ,Luke and Claire kill time during the last night that the hotel is open by searching for ghosts. tt1594562,DLyLE2LUpOo,Claire finds a surprise in Room 353 where the Old Man is staying. tt1594562,yUXdDmn9wP4,Claire and Luke try to conjure up the spirit of Madeline O'Malley down in the basement. tt1594562,JIfu8g9EUzo,Claire can't hold back her enthusiasm when she brings hotel guest Leanne Rease-Jones a set of towels. tt1594562,HFbgT-GSYhk,"After a few beers, Luke reveals his attraction to Claire." tt1594562,g_tQ__pEoPs,"Claire trips down the stairs into the basement, and becomes trapped with the ghost of Madeline O'Malley" tt1594562,RxogsPx7JwQ,Claire tries to fall asleep but is greeted by a strange presence in bed. tt1594562,mHA7T9yOI3A,Claire freaks out when the piano starts to play by itself. tt1594562,LWRuMnDhCy4,Claire's mission to get coffee is stumped by a talkative Barista. tt1594562,7uO7VSK2XMo,Luke pranks Claire showing a video featuring evidence of a paranormal spirit lingering in the hotel. tt1038919,2gKXgAzFV8Q,Martin attempts to capture a Tasmaninan Tiger by setting traps throughout the forest. tt1038919,S0_2LuMWicY,"Martin is led out to begin his hunt by Jack, a guide who believes that Martin has come to Tasmania to conduct research for a university." tt1594562,bvuDpEE2MQM,"During the graveyard shift, Claire hears a mysterious banging." tt1038919,B8rq--5MbZ8,Martin takes a hard fall while pursuing an animal through the forest. tt1038919,1AZuIPGAQ_s,Martin goes to Jack's house looking for answers on the whereabouts of Lucy and her kids. tt1038919,_epn5foR_Ts,Martin accepts the assignment of hunting the rare Tasmanian Tiger on the condition that he is allowed to work alone. tt1038919,V-PNT54Z2ig,A captured Martin lures a rival hunter into a trap after he is forced to reveal the cave of the Tasmanian Tiger. tt1038919,aIekhk4NDA4,Martin awakes to find that the near-extinct Tasmanian Tiger is within his sights. tt1038919,7JICPsjLMis,Martin talks to Lucy about the disappearance of her husband. tt1038919,kGXKWSmXrEk,Martin finds himself unwelcome when he enters a bar in a remote Austrailian town. tt1392170,oISBveQNkzA,Katniss Everdeen enters the Games and tries her best to survive the initial bloodbath. tt1038919,-R2UHh9T0ck,Bike gives Martin a valuable clue in his search for the Tasmanian Tiger. tt1038919,gbPolHxofuo,Martin finds his rented lodging unsatisfactory when he is given a tour by two unsupervised children. tt1392170,gaoMc6MgvNA,Katniss Everdeen uses a hive of genetically engineered wasps to escape from the tree. tt1038919,TtWqejfxiVU,Martin and the family find themselves in a confrontation between environmentalists and angry loggers. tt1392170,mtuBqolFOVs,President Snow explains to Seneca Crane why the Hunger Games needs a winner. tt1392170,KAal6-tvckw,Katniss Everdeen promises Prim and Gale that she will try to win. tt1392170,WCbXSTBBueU,Peeta Mellark explains that he doesn't want to be changed by the Games. tt1392170,mgr2tLYYha4,Katniss and Peeta decide to eat poison berries instead of kill each other when the rule allowing two victors is revoked. tt1392170,Ed5xIjGdqb4,Katniss comforts a dying Rue when she's fatally speared. tt1392170,v98Rh9qzmPs,Katniss Everdeen volunteers as tribute in place of her little sister Primrose. tt1392170,G9VI6SExDms,"Katniss Everdeen makes a big impression with the judges, for breaking the rules." tt1392170,7ikLl_nUM2A,"Katniss takes care of Peeta in a cave, but decides to venture into danger to get him medicine." tt1392170,Z92aHy9-fkk,Haymitch Abernathy gives the tributes some life-saving advice. tt1615091,vVTASz4W2hA,"When Sophie finds a phone number on a piece of artwork and calls Marshall, they have a surreal conversation and realize they could be neighbors." tt1615091,dzO8DzLZAuU,Sophie confesses her adultery to Jason. tt1392170,XrvB53IDIqM,"Peeta Mellark tells the nation that he has always had a crush on Katniss Everdeen, but Katniss believes he is only playing the game." tt1615091,QCXgvx0vPZk,"Sophie uses her old yellow t-shirt to perform an interpretive dance, to the confusion of Marshall." tt1615091,L4x1S9WYV9k,"Sophie, a ballet instructor in the midst of a mid-life crisis, films herself dancing for YouTube." tt1615091,7nHXSTzcVX4,Sophie tells Jason to look up anything important because their internet access is being shut down for the next thirty days. tt1615091,m4MdMCS5EeE,Sophie feels like her life is standing still as those around her mature at an alarming rate. tt1615091,J4Mq0xr4gwU,Jason buys a used hair dryer from a chatty man named Joe. tt1615091,xcYzjbIVlX8,Jason and Sophie agree on a musical signal to find each other in the event of amnesia. tt1615091,8GtyX55FtTs,Paw-Paw writes a letter to future owners Jason and Sophie. tt1615091,anQHZRrZHYc,Sophie visits Marshall for a barbecue and spends the night. tt1615091,gMIvHGdpQpE,"Confronted with impending responsibilities, Jason and Sophie discuss age, time, and the future." tt1615091,m0gUcNGsGYU,Jason has limited success on his first day soliciting door-to-door for a special program to plant more trees in Los Angeles. tt0106664,F63pia00pLM,A swarm of sparrows attack Stark and pick him to the bone. tt0106664,4SCJoMT1FCY,"Thad stabs himself in a trance while his alter ego/nemesis Stark, does the same." tt0106664,x5bONeuC6BY,George Stark ascends from the caverns of Thad's conscience into Thad's nightmare. tt0106664,aAg3LPuwfJM,George Stark confronts and kills Mike. tt0106664,xoRXgE6j9po,George Stark attacks Miriam in her apartment. tt0106664,QhYydmeQ2Yw,A stranger approaches Thad with a theory that the author has a pseudonym for a series of pulpy novels and blackmails him to keep it a secret. tt0106664,wdrhl_I3-E8,Sheriff Pangborn visits the Beaumonts with New York police when Thad is suspected for murder. tt0106664,k0XGlpR6iLc,Thad's agent brings the police home due to suspicious threats. tt0106664,0p1fLn6_ExE,"Thad's evil doppelganger, George Stark, attacks the photographer of the author's magazine article." tt0106664,jr8BKtgMJA0,"Expecting to find a tumor, doctors instead discover the remaining exposed developments of a twin in Thad's brain." tt0106664,PioVmXuOv7c,Thad and Stark finally exchange fists when Thad's family is threatened. tt0115685,z-0rKpuvnT4,"Albert comes to dinner with the Keeleys in drag, pretending to be Val's mother." tt0115685,TZjB7MW9Q-E,"After Val's biological mother comes over, Val reveals the truth about his family." tt0115685,1_7FYr4JsF0,Armand frantically serves soup to prevent the Keeleys from seeing nude men designs on the soup bowls. tt0115685,LEQNosAHrD4,"After discovering that Val's family isn't as normal as he thought, Senator Keeley tries to leave the party." tt0115685,Akr33uOKP8M,Armand gets very nervous when Albert and Senator Keeley discuss gays in the military. tt0115685,kO0kWTR_7tQ,Armand coaches Albert on how to act like a straight man. tt0115685,Q5o7eYFRp_U,"When Albert's wig threatens to fall off, Barbara and the others suspiciously usher Albert to the bathroom." tt0115685,TmO1R-GqD50,Armand encourages Albert to think of John Wayne when he tries to walk like a man. tt0115685,rU8cUBCZn9c,Albert is so depressed that he refuses to dance in Armand's show. tt0115685,YlAmk5w3qZw,Albert overreacts when he learns that Val is getting married. tt0189584,s4KQbOrnRYs,Each man imagines himself to be a big shot as they nervously await for the arrival of their high-powered client. tt0189584,DwyqcEjMMI8,"Phil tells Bob about the value of honesty and acknowledging, truthfully, one's personal shortcomings." tt0189584,9dnvta78Oc8,"When Bob reveals that he spent his business meeting talking about religion instead of sales, Larry becomes furious." tt0189584,F8RkAzAX2-g,"Larry argues with Bob over the significance of business, lust, and religion." tt0189584,Xr4ZDbix55Q,Phil talks about his dreams and thoughts on God. tt0189584,2S8FhT1CLOQ,Larry schools Bob on how to detect someone else's B.S. tt0189584,XbuSTq9TZSI,Phil tells Bob about his perspective on women. tt0200465,VtnxXJy01ag,"Police arrive during the robbery, causing Terry Leather and the gang to panic." tt0200465,0WY4XiwS8Lc,Lew Vogel threatens murder if his demands aren't met by Terry Leather. tt0189584,b_W5rtfzadQ,"Larry loses his temper when his attempts to find ""the Big Kahuna"" turn up empty." tt0200465,mTNkmMUcQfc,"When the team has a surprise visitor or two, Guy Singer decides to take control." tt0200465,64Kac5hYLBM,Martine Love sneaks into the bank vault while the rest of the team is asleep. tt0200465,BcCzxUMcrVc,Martine Love talks to Terry Leather and his mates about the bank job. tt0200465,q14F8WFr7EY,A showdown between Terry Leather and Nick Barton ends with some surprising arrests. tt0200465,k3sfGEvPoHs,Terry Leather confronts Martine Love about some incriminating photographs. tt0200465,aMwqijj857s,Terry Leather introduces the group to Guy Singer and they get a thermic lance demonstration. tt0200465,nCLxHi2oZVM,Terry Leather and the crew infiltrate the bank vault and begin inspecting the safety deposit boxes. tt0200465,8G84xAalZiY,Dave Shilling gets picked up by Lew Vogel and his goons. tt0200465,eIvl2bRW9S8,Terry Leather deals with some thugs who have come to collect money. tt0042208,Mlv16s4DxwI,Angela cracks under pressure and admits to lying to the police for Emmerich. tt0042208,3SYMh5owQcA,Doc refuses to acknowledge that the cops are closing in as he watches Jeannie dance to the jukebox. tt0042208,p2fHtpp_umI,Commissioner Hardy illustrates the necessity of the police force to a group of reporters. tt0042208,2RA-7QUYrHA,Lt. Ditrich knows Cobby has the inside scoop on the jewel heist and gets it out of Cobby the only way he knows how. tt0042208,48kV7uKAzEU,"Dix gets a call for robbery work and meets with Doc, who breaks down the plan." tt0042208,GllksI139DM,"In transit to a safe house, Dix and Doc run into a suspicious policeman." tt0042208,-nboVp_nTkg,"Alarms from nearby buildings go off, leading to a confrontation between Dix and a policeman." tt0042208,cUEc9ZF3G3M,"After returning with the jewels, Emmerich and his private dick Brannom double cross Dix and Doc." tt0042208,EkRzpc98bwc,Emmerich explains to May that criminals are not all that different from regular people. tt0078767,SQGwcLUuQUs,Carolyn discovers the source of the house's evil. tt0078767,lJuxU-aVeT4,"When the babysitter finds herself trapped in a closet, her cries for help fall on deaf ears." tt0042208,ewEreSjPyC4,Emmerich wakes Angela on the couch and convinces her to go to bed after a goodnight kiss. tt0078767,ptBGusJjkTU,"George, by his own admission, is coming apart." tt0078767,C1zseVrJQLk,Aunt Helena is barely in the house for two minutes before she is overwhelmed by an evil prescience. tt0078767,3rrfqXl52tc,Greater despair ensues when Father Delaney can't talk to Kathy. tt0078767,9LpOzLU5k70,"George stalks the bleeding halls of his house, axe in hand." tt0078767,adFRKm9ezw4,"When Father Delaney comes to bless the house, he is greeted by a swarm of flies." tt0078767,2CM_ZbYvMDI,"Kathy learns about ""Jody,"" an invisible friend with plans for Amy." tt0078767,DVAIrYCyB1w,Father Delany makes a passionate effort to stop the evil in Amityville. tt0078767,944Xo94Owx4,Nothing stands between George and a pile of wood. tt0078767,6l60PJOMu3U,A window seems to have a mind of its own when it crushes the hand of Kathy's son. tt0125659,WqyvGyBJbcQ,César meets a mysterious man who tries to convince him that he's living in a dream. tt0125659,IANjTUtZimk,"César is shocked to find Nuria in his bed, claiming to be Sofía." tt0078767,pDEJr2Sqhxc,Kathy is startled by what she sees outside of Amy's window. tt0125659,GU0BYEZb-Xo,César has an oddly familiar sensation upon reuniting with Sofía. tt0125659,fgp77jbQkW0,César and Sofía take turns sketching each other but refrain from taking things further out of respect for Pelayo. tt0125659,vli6rJX8Xac,César tries to convince Pelayo that he is the victim of a strange conspiracy. tt0125659,w2T2xsIYH0I,Nuria takes César for a drive as her emotions spiral out of control. tt0125659,rJ9zBV97d5M,César must choose between continuing to live in a dream world or waking to a strange and uncertain future. tt0125659,3zW1STojfq4,César is driven mad as he becomes unable to differentiate between Sofía and Nuria. tt0125659,E6W4v8DYh4c,César is surprised to find Nuria waiting for him in his bedroom during his birthday party. tt0125659,r1UKhlSdV-M,Sofía visits César to remove his mask after surgery. tt0125659,iBptW_7wlwQ,César wakes to find the streets of Madrid completely devoid of people. tt0368909,QsveFtQaP7c,Ting takes out a guy who likes to fight with whatever is handy. tt0368909,MNBd97oTtq8,Ting runs from the gang that George has angered. tt0368909,Vjo0hn0kAvY,Ting is driven to intervene when the fighter Big Bear begins to beat up innocent people. tt0368909,Jd86VeZU89A,"Ting runs through the city, leaping huge obstacles to escape the pursuing gang." tt0368909,GVjV1SKLJ9E,Ting stumbles into a fighting circle and lays his opponent out with a high knee. tt0368909,ZVHIsLK07ak,Ting and George attempt to get away from Don's cronies in three- wheeled taxis. tt0368909,wZAxWIJZmo4,"Just when the gangsters think they've blown up Ting, he lands a flaming spin kick to their face." tt0368909,04tTXJeE8Gg,"After escaping from Komtuan's men, Ting takes on Saming." tt0368909,oYDde0u4TT4,Saming and Ting have a vicious fight in the ring. tt0368909,hU0v5lzJzXo,Ting and Humlae rescue Ong-Bak from Komtuan. tt1598828,tp_djeJB9sQ,"Stephanie finds herself on the business end of Ramirez and his fist, only to be saved at the last moment by the crack shooting of Morelli." tt1598828,Ic5tk6Afu0g,Jimmy Alpha reveals himself as the mastermind behind the heroin-running scheme. tt1598828,6bECCbRJ_UM,"During an awkward family dinner, Grandma Mazur plays around with Stephanie's new gun and accidentally shoots it off." tt1598828,xhhfBsq7qao,"When Stephanie tracks down Joe Morelli, a parole violator and her former flame, he uses his charm to his advantage." tt1598828,ykdrEYrEaZE,Stephanie uses her pepper spray to stop Ramirez from twisting Joe Morelli into a pretzel. tt1598828,xXTuhmtvXNg,"When Morty Beyers returns to take his claim on the bounty for Joe Morelli, Stephanie stands her ground and ends up avoiding an explosive situation." tt1598828,DkIr_I_E1dE,Stephanie gets a lesson in marksmanship from Ranger. tt1598828,Q3gK7Oe5gbM,"Joe Morelli fixes a wire onto Stephanie, while admiring her physical attributes." tt1598828,9UtRH9enIUE,Stephanie clotheslines her first escaping parolee with surprising force. tt1598828,TLNhcMerK-U,Stephanie gets an account of what happened with Morelli from a colorful eyewitness named John Cho. tt0035140,dBal-Rb366c,Charlotte comforts Tina with words of wisdom and love. tt1598828,XI12czsGYRc,Morelli catches Stephanie in a compromising postiion in the shower. tt0035140,nDKhoXEpIq8,"Returning home after a six month absence, a newly confident Charlotte refuses to let her mother tell her what to do." tt0035140,E90s7ZR3HNw,"Near the end of her stay at the sanatorium, Dr. Jaquith presents Charlotte with an inspirational Walt Whitman quote." tt0035140,aWLRULhIyCE,"Mrs. Vale suddenly dies after a quarrel, leaving Charlotte feeling guilty and responsible." tt0035140,iYetsX9JdIU,Charlotte succumbs to a nervous breakdown after relentless teasing. tt0035140,vf6PZfksmfg,"After a chance encounter at a party, Charlotte meets Jerry at the train station to discuss their rekindled feelings for each other." tt0035140,D1hNiK3YZ2A,Jerry and Charlotte start their tour of Rio together in this iconic scene. tt0035140,DesiCKdiCDo,"After a car crash leaves them stranded in Rio, Charlotte and Jerry grow close while they wait to be rescued." tt0035140,d9K2p6NtV40,"Jerry professes his love for Charlotte, and they lament the reality that they cannot be together." tt0035140,f08pzusjWTQ,"Jerry and Charlotte discuss what's expected of them in their new arrangement, and Charlotte recites the most iconic line in the film." tt0395972,BBdShysGs4Y,"In court, Josey reveals that she was raped when interrogated about her past ""relationship"" with her teacher." tt0395972,eSeYw5yaU9A,Bill argues for a class action in order to protect all the women of the Pearson mine. tt0395972,YJLeJG_bG1M,"Bill puts Bobby on the stand, and uses a hockey metaphor to draw out the truth." tt0395972,9oRspg2ktcI,Glory advises Josey to grow a thick skin in order to keep her job when Bobby Sharp sexually harasses her. tt0395972,ry88dGpJKZk,"When Josey is heckled by the men in the crowd, her father Hank steps in to stand up for her." tt0395972,yPHYjeHk1YM,"Josey goes into her meeting with Mr. Pearson confident that he will see the injustice in her experience, but she soon finds that his only interest is in silencing her." tt0395972,fGiaJDWSWKE,"Bobby's wife makes a scene at the hockey game, humiliating Josey with a false accusation." tt0395972,XLk_91MKjgs,"Bobby assaults Josey in the powder room, and denies it when she exposes him in the cafeteria." tt0031725,IhTgiNhfF7k,"An inebriated Ninotchka believes she should be punished for being so happy, and then abandons that notion in favor of enjoying herself." tt0395972,pjmRcGHqKZ0,A few of the mine workers terrorize Sherry while she's in the port-a-potty during the latest in a string of harassment incidents. tt0395972,0k8XW2V2dCg,"When Sherry is harassed by a fellow miner, Josey reports the act of misconduct to her boss. But he only chastises her." tt0031725,2A60QcsJtlE,Ninotchka is put off by Leon's blatant efforts to flirt with her when all she wants are directions to the Eiffel Tower. tt0031725,qFOp7gSiC0I,Leon is fascinated by Ninotchka and her unconventional ideals. tt0031725,aJoVRUNmqIY,Leon uses all of his charms to kiss the stone cold Ninotchka. tt0031725,JIHGn-BwZMM,"Ninotchka finally surrenders to her feelings for Leon, but has trouble saying that she loves him out loud." tt0031725,dzkjnPSbxJw,Ninotchka arrives on the train and makes a strict impression on her comrades. tt0031725,BNxai8Y9IXg,"Ninotchka's roommate tells her to be more careful, revealing that the slip she brought back from Paris sparked a political debate in the laundry room." tt0031725,AH9_BGpsNCo,"Ninotchka invites the Russian diplomats over for a dinner party, where they criticize Russia and reminisce about Paris." tt0031725,jU6nB-uJh68,"Leon is intent upon making Ninotchka laugh, despite the fact that she is unamused by any of his jokes." tt0031725,bXzp-98u468,Leon is devastated to hear that chasing a girl is not a valid reason to obtain a Russian Visa. tt0247786,jF78Fs72X4Q,Tim welcomes his friends to his isolated Scottish mansion. tt0247786,Rn2__xGApzQ,"Emma suspects Tim to be the killer, only to come face-to-face with the actual murderer moments later." tt0247786,xGGRJg-EzoI,"While trying to restore electricity to the mansion, Pete and Damien are caught unaware by the killer." tt0247786,Cr-WWckkejQ,Laura sacrifices herself so that Pete might live. tt0247786,h3QK9udRbWg,Laura acts as bait in a plan that she and Pete devise to defeat Damien and the demon that possesses him. tt0247786,utJWIjtBBvo,"Left alone, Laura takes matters into her own hands." tt0247786,9_ouUNFC5AI,Jo complains that Tom never buys her presents. tt0247786,371S-YWcKFU,Tom makes a haunting discovery in the library. tt0247786,phWjHc6hsRo,Jo trades barbs with Damien while waiting for the bathroom. tt0247786,vqgb0X4uuEw,The girls experience strange happenings and Jo is the demon's first victim. tt0309912,AQaOCIrb9Fs,John helps Nicholas rescue Smike through diversion. tt0247786,X_KqKO48vwY,"Damien, possessed by the demon, attacks Andy and the wounded Lucy." tt0309912,bXtvpRR4VbA,Vincent recruits Nicholas and Smike into his theatre troop. tt0309912,e0d5svC0xQU,Fanny's plan backfires when she fakes an emergency to gain the sympathies of Nicholas. tt0309912,4ot1Y-WYGCU,Nicholas proposes marriage to Madeline. tt0309912,ky1semsHhAY,Nicholas tells Ralph off at the death of Madeline's father. tt0309912,DX8o_ql6f-E,"Ralph provides a cold-hearted welcome to the Nicklebys, despite the loss of his brother." tt0309912,GBDUy8au-_E,Smike reveals to Nicholas the reason for his melancholy. tt0309912,d_t77ai5GEk,Nicholas bravely saves Smike from a beating and gives one to Squeers. tt0309912,_zxlffOr1GA,The Cheeryble's hire Nicholas at double his previous salary. tt0309912,NgSS_lMllOw,Nicholas and the students endure daily horrors at the hands of the Squeers. tt0309912,hGuXSd2s0jI,Nicholas and Smike perform in public for the first time. tt0309912,1VzqryDpBfM,"Mrs. Squeers intends to bring Nickleby's pride down, while Fanny has other ideas." tt0116743,EgsFR3Y5XB4,Jai pushes Maya away because he is worried of becoming too reliant on her to sustain the quality of his work. tt0116743,QCrKGjDt00c,Rasa Devi takes Maya in at her school for the Kama Sutra after she is chased out of town for sleeping with the king on his wedding night. tt0116743,Z-Hyq9A4vXo,"Raj commissions Jai to sculpt his new courtesan, Maya, not knowing the two are former lovers." tt0116743,mvWdOSJ7l2c,Jai scares Maya off when he takes the liberty of touching her as a reference for his sculpture. tt0116743,v14aCycvoYI,Maya refuses Raj because her heart is with Jai. tt0116743,qDAFxENuoCU,"Maya tries to make a deal with Raj Singh that she will give herself to him completely if he frees Kumar, her true love." tt0116743,t9do_YtNsnM,"Maya, the king's new courtesan, takes the opportunity to taunt Queen Tara." tt0116743,3pdDB7-UcKM,"Raj Singh sentences Kumar to death when he discovers he's been having an affair with Maya, his favorite concubine." tt0116743,gEw3FHiTb1Y,"Jai comes to Maya asking forgiveness for pushing her away. At first, she refuses but eventually she gives in to love." tt0116743,XFoGxUA8btQ,King Raj Singh challenges Kumar to a fight after being rejected by Maya. tt0116743,BgWOqRD9RPs,A young Maya and Tara practice the dance of enticement into their young adult years. tt0116743,EgIkHYVwNrM,Rasa Devi schools her courtesans on the Kama Sutra's sex positions. tt1175491,0Z9Pl7oF9dI,"President George W. Bush and his cabinet discuss the possible invasions of Iraq and Iran, and how best to market the campaign to the American people." tt1175491,EWvPNbC9KfQ,Political newcomer George W. Bush is coached on his political opinions by master polster Karl Rove. tt1175491,cYlCe0SYmWI,George W. Bush seeks guidance from Rev. Earle Hudd and is born again. tt1175491,yDgZEL9-ITE,"While visiting Crawford Ranch, the President George W. Bush and his advisors become so intent on the planning of a post-war Iraq that they find themselves lost on the trail." tt1175491,YDuDd4tmZps,"Having gotten himself into another potentially embarrassing situation, a young George W. Bush is called to answer to his father, George H.W. Bush." tt1175491,_33snCsG6nY,"Arriving home drunk from celebrating his admission into the Harvard School of Business, George W. Bush has a confrontation with his father George H.W. Bush and mother Barbara." tt1175491,VmwM9EXyczw,Dick Cheney explains to the President and his cabinet where he sees American interests in the future. tt1175491,WriOEr0A1tQ,"At a friend's barbeque George W. Bush first meets his future wife Laura Bush, née Welch." tt1175491,8Ad8rMLFcRo,"During a White House press conference, President George W. Bush is stumped when asked about the mistakes and lessons he has learned during his time in office." tt1855401,DAlyvQ1hNag,Tim and Eric fight after Tim sleeps with Katie tt1855401,vs6V8EILM0M,Eric uses the power of Shrim to cure his sickness. tt1855401,_nEWjcGHLJk,"Tim and Eric explain Dobis P.R., what they do, and who they are." tt1855401,TmNPJTt2ZsE,"Eric Wareheim introduces himself to Katie, the love of his life." tt1855401,LLrfSeyGCls,Taquito attempts to remove the wolf that terrorizes the mall. tt1855401,fhsngAtICiY,Tim and Eric stand up to the evil Schlaaang Corporation. tt1855401,V5U2yhrsXv8,Dobis has a meet and greet with Reggie's Used Toilet Paper Discount Warehouse. tt1855401,VB9pptEqFl4,"Dobis PR is introduced to Allen Bishopman, owner of E-Z Swords." tt1855401,lu3fmlUJQsE,Tim and Eric see a commercial for the Swallow Valley Mall. tt1855401,2G4Vfuk1dJM,Tim and Eric view an infomercial for Shrim Alternative Healing Center. tt1456635,bFWMtZmjwR4,"Doug Glatt doesn't take kindly to a gay slur, which brings out his inner goon." tt1855401,T0StyKPJrNY,Chef Goldblum presents the Schlaaang Super Seat for movie watching. tt1456635,8QLB_CGDDPY,"Doug Glatt takes on legendary enforcer, Ross Rhea, on the ice." tt1456635,ViXH47OcqYA,Doug Glatt comes on Ryan's show to talk hockey and corn dogs. tt1456635,BGWe0FvWW54,"After helping the team win the game, Doug Glatt gets promoted and Xavier LaFlamme is scolded." tt1456635,bVAiU6Jp4FI,Doug Glatt sacrifices his body to protect the goal in a key game. tt1456635,PFajeb2k24U,Doug's parents are not pleased with his career choice to be a thug. tt1456635,WJOL4xoamoQ,Gord tries to rally the team for the game. tt1456635,ekwnp5L8shM,Doug Glatt meets the strange personalities on his the Highlander team. tt1456635,TMspI78Dptg,"During a game, Doug Glatt tries to get revenge for a big hit on Xavier LaFlamme." tt1456635,tgiPVB4iLMQ,Doug Glatt meets Ross Rhea and has an eye-opening conversation. tt1456635,cKQf7jAt6xM,Doug Glatt asks Eva out on a date. tt1456635,EmYyxwO2IJI,Doug Glatt is insulted by his new team and he teaches them some respect. tt0115798,FVoOLRhnkYE,"To avoid pulling a hammy"" in a game with Steven's pals, the Cable Guy limbers up." tt0115798,TVtvBoELA-g,The Cable Guy antagonizes Steven at the county jail. tt0115798,5ZjdYG61Wpc,A rude Cable Guy shows up late to install Steven's cable television. tt0115798,65yzqqmXs-Q,Steven wakes from a brutal nightmare about the Cable Guy to a real phone call from him. tt0115798,k1WKpdhcJSo,The Cable Guy leads Steven's family in a naughty parlor game. tt0115798,DtgKqQkglyY,Steven asks the Cable Guy for free cable. tt0115798,TdPu6sQ9l4g,"The Cable Guy takes Steven to Medieval Times, an elaborate dinner theater." tt0114388,BLz2rixwPpA,"Marianne falls and twists her ankle, but is rescued by the chivalrous John Willoughby." tt0115798,zH8ZeRDlyb4,"In a brawl with Steven, the Cable Guy goofs on Waterworld, and momentarily loses his lisp." tt0114388,clTG6sYtJig,Marianne begins to enjoy Colonel Brandon's company. tt0114388,WofqydeWMJI,"John Willoughby carries the injured Marianne inside, impressing the whole Dashwood clan with his ""decorum and honor.""" tt0114388,nEJKLKKO0uY,"Marianne spots and follows Willoughby, who is not as happy to see her as she had hoped. To make matters worse, she receives a scowl from his secret fiance." tt0114388,IiMacKBYPZg,"The mystery of Willoughby's dubious behavior is solved, leaving Marianne heartbroken." tt0114388,IIGAL77OuM0,"Edward draws Margaret out from under the table, much to Elinor's satisfaction." tt0114388,t_NZNgm66xI,Edward comes by the Dashwood cottage to profess his love to an unsuspecting Elinor. tt0114388,9lORsaux9Lo,Edward and Elinor spend some time alone getting to know each other. tt1233227,Z7VT-r3RB-4,William Easton must decide whether he will let Allen or Addy remain alive. tt1233227,lTWY11J9Z3o,Mark Hoffman waits anxiously while Sachi works with a voice recognition program to determine Seth Baxter's killer. tt1233227,al5NvjTtyTI,William Easton helps Debbie through a maze full of dangerous paths. tt1233227,n0Fz-ACCMHk,Simone speaks with Mark Hoffman about her ordeal. tt1233227,7pk5PLxQXJI,"John visits William Easton to get a health insurance decision overturned, but William refuses to help." tt1233227,xwMMpJ9EWmE,William Easton must hold his breath in order to outlive his janitor. tt1233227,OEw-cBg0lJY,Simone and Eddie fight to remove flesh from their bodies in order to save their own lives. tt1233227,3agyeKATELQ,William Easton finds that six of his employees are strapped to a carousel and he has to decide who lives and who dies. tt1233227,stoxd02ubG4,John questions Mark Hoffman about his treatment of their victims. tt0120744,R7f2TkxM_rk,The Three Musketeers execute their plan to replace King Louis with Phillipe. tt0120744,6cjNvLAvIFs,"D'Artagnan begs Louis to have mercy on Phillipe, but he orders him back to the mask since Phillipe says that is what he despises most." tt0120744,h8c0Q6aqZG8,The King's advisors tell an uninterested King Louis about starving Parisians and riots in the streets. tt0120744,ZqZZftydH0I,"Christine reveals to Louis that she still loves Raoul, and laments that she will burn in hell for her sin." tt0120744,OL0I-Tf0QRU,"Aramis, having predicted that Porthos would try to kill himself, sawed the beam causing Porthos's hanging to fail." tt0120744,WrQdlQo-E5Q,Aramis prompts Phillipe to consider his plan to have him switch places with Louis. tt0120744,In9QzIAgiFE,"After removing Louis as King, Phillippe takes over the crown." tt0120744,Tv08VahBEBg,"Louis stabs D'Artagnan, who then delivers his dying words to Phillipe." tt0120744,qyj1tT-vqSQ,Philippe is freed from the iron mask and touches his face again for the first time. tt0120744,hc51ExPQJcQ,The three musketeers and Phillipe charge King Louis and his soldiers. tt0120744,-tXr3ask1fo,"King Louis has a nervous breakdown in the ballroom when he sees iron masks hiding in the crowd. Later, he is captured." tt0120744,hsIdl6x2Lck,"Athos threatens Louis which leads D'Artagnan to threaten Phillipe, who is recaptured." tt0985699,7k9bFzgXeXE,"When Major Remer comes to arrest Goebbels, a phone call from Hitler turns the tide." tt0985699,kFa1DI_4vEs,"After the liquor bomb fails to detonate, Tresckow must retrieve the evidence from Colonel Brandt." tt0985699,AiqgMdj316M,"The fates of Stauffenberg and the others are explained -- executed, all of them." tt0985699,Fyd8tAhnKig,"Stauffenberg and his co-conspirators are captured, and Fromm sentences them to death." tt0985699,mt0zR2uOAB8,"Stauffenberg plants the bomb in the same room as Hitler, and exits in time to watch it explode." tt0985699,1OUMXpkRHNA,Beck talks the others through the plot to kill Hitler. tt0985699,TMvi9NJlv_s,"General Tresckow attempts to convince Colonel Stauffenberg to join him and the others, in order to overthrow Hitler." tt0985699,G2SpqqxJiig,"A debate rages as to whether Hitler is really dead, and the operation moves forward as planned." tt0985699,CAYHD5mAsfo,"Allied planes strafe the German convoy, injuring Stauffenberg." tt0985699,uMug9lL1Sgg,"Fromm reprimands Stauffenberg for going over his head, then forces him to salute Hitler." tt0100135,eh4jLrZ2IK4,Carl and James offer a genteel response to the local cops' abuse: the golf clap. tt0100135,tjJPFWAtG4I,"When Carl and James discover the corpse of the man they shot, accusations fly." tt0100135,w1iNrckWufI,"Confronted by the cops over his hostage, Louis flips out." tt0100135,7GDnbK8lTYg,"As James protests, Carl uses his air rifle on an abusive neighbor." tt0100135,fNeCsZY7I9o,"Carl, James and Louis take on the bad guys while trying to rescue Susan." tt0100135,cpdt1EljZp0,Carl and James enjoy themselves on the job. tt0100135,BNWF_QsuetA,Louis teaches Carl a valuable life lesson. tt0100135,kM781iUqdrI,"Cornered by cops, Carl and James disguise the body they found." tt0100135,vMyTIoLhoZY,Carl and James pull a locker-room prank on two rival garbage men. tt0100135,DsGsRazwHNc,Carl and Susan find the bike cops in a compromising position. tt0100135,uVXQWXpXmvc,"Carl, James and their team mess with Potterdam before dumping him in his own waste." tt0100135,M7Bao8cJqWw,Louis panics and takes the pizza man hostage. tt0489270,RqAmUMayBk4,Jeff must decide if he can incinerate his son's remaining toys in order to move on from his death. tt0489270,xZw3A072F30,Judge Halden advises Jeff that vengeance will not take his pain away. tt0489270,LGRbJ610dkc,Kerry must reach into a beaker of acid to retrieve a key that will unlock her trap. tt0489270,mwa7-cCuwCI,Lynn performs surgery on John in order to release excess pressure in his brain. tt0489270,-UuYTHwZbOQ,Jeff has to decide to forgive Tim for accidentally killing his son or let him die a very painful death. tt0489270,R5YZoDFeQlM,Jigsaw recruits Amanda to be his assistant. tt0489270,ACdEiMqOVvs,"Troy wakes up in one of Jigsaw's traps where, in order to survive, he must rip free of the chains attached to his body." tt0489270,3UjujuY8fbU,Jeff wakes up to find himself in a wooden box with a tape recorder explaining his tasks. tt1095442,PNRScegrA_E,Solo and William share their last moment in silence. tt1095442,KWWQP82Gqt8,Solo takes William to one of Roc's jobs. tt1095442,nIAzIbEBdeM,William tells Solo to get out of his life. tt1095442,pVzqfF-qwlY,Solo reunites with his wife Quiera after his baby is born. tt1095442,fqteEi-ypuQ,Solo confronts Mamadou about picking up William. tt1095442,b3uEOvtuMyc,Solo takes William to a bar. tt1095442,W91ITNEiEF4,Solo argues with his wife Quiera about interviewing to be a flight attendant. tt1095442,VYZmHG6_7Rg,William offers to pay Solo one thousand dollars to drive him to Blowing Rock. tt1095442,bMemNwITgjA,Solo asks William if he can stay at his motel room. tt1095442,VFPAH3uEo_A,William tells Solo that he rode motorcycles. tt1095442,I3GuNWUhXDY,Solo teases Alex about her cell phone. tt0077597,ZreKuv4qWY8,"Mr. Friendly is amused by the idea of competition from the old gas station, and June teaches April how to pump gas." tt1095442,RiOhh4AG0rc,William quizzes Solo for his flight attendant interview. tt0077597,I2ci4vKm_cI,The gang concocts an elaborate scheme to siphon gas from the other station by creating a series of diversions. tt0077597,zTV295EGtOk,The gas station turns into a disco party with Betty and Butch at the center of attention. tt0077597,AHV2k4t593E,"Motorcycle gang The Vultures vandalize the gas station, and Betty ends up on the receiving end of an oil can." tt0077597,4VFhBMwArqs,"Peewee and Jane go for a walk to the garage, where he puts the moves on her in the tow truck." tt0077597,gif34AkAFIg,"When Mr. Friendly mocks her attempt to compete with his gas station, June rallies the troops to save Uncle Joe's station." tt0077597,IQQDJahY-Eg,"After an oil fight breaks out between The Vultures and her mechanics, June decides to recruit the motorcycle gang to work as her tow truck team." tt0077597,_INsYrEpEFo,"June and the gang pose as a sheik's entourage to gain access to the oil company's headquarters, where Mr. Smin insists that they're not making record profits." tt0077597,QoSE9w3o068,January and the other employees of Joe's Super Duper gas station discover the power of sweet talk over the loudspeaker to attract new customers. tt0077597,JLWaJTCL_V4,The first customer at Joe's Super Duper gas station enjoys the attention of the all-female staff. tt0077597,KvVR17L6j0E,"Recent high school graduate June sings about her loneliness while filling in for her uncle at his gas station, which is losing business to the new station across the street." tt0492389,3FG9eGmAPeY,Dan gets tossed around in a porta potty by a bear. tt0492389,8xBrQp4oZs0,Dan updates Mr. Lyman about phase one of the building project. Mr. Lyman surprises Dan by adding onto the project. tt0492389,sdea5Iq5D_U,Dan is awakened by a noisy crow at night. tt0492389,EMta7CcNgGs,Tammy wakes up to her husband creating a booby trap for the animals. tt0492389,_ZHytX1097U,Dan gets blasted by skunks while trapped in his car. He tries to get rid of the smell by taking a tomato bath. tt0492389,o8A2gIt799I,The animals attack those who carelessly pollute their home. tt0492389,tVBVeXfbo6k,Dan finally has his opportunity to kill the raccoon but decides not to. The Raccoon on the other hand quickly jumps at the opportunity to attack Dan. tt0492389,jmFpZsBB53s,Tyler believes his dad when he says a raccoon is after him. He shares history about settlers who tried to build on the land. tt0492389,KcLVm5KkTjk,Dan drinks the sleepy bye tea his wife brings home for him. He falls into a deep sleep of bad dreams. tt0492389,S3dCv5aTB2c,The raccoon and his friends create chaos for Dan in the morning. tt0492389,lRzsGDSofxo,"Dan plays chicken with the Raccoon, but the Raccoon wins with the help of his friends." tt0097257,MmKjw9UGi78,"Valerie leaves Mac, Wiploc, and Zeebo in the house to make music and watch television." tt0097257,tp-eANZcnVQ,Zeebo gets into a dance-off with a man who tries to steal his dance partner Tanya. tt0097257,YhYn-b84MvE,Wiploc and Zeebo receive a tantalizing signal from Earth and accidentally crash their ship in a swimming pool. tt0097257,_3wnaxan4qw,Mac comforts Valerie after Ted breaks off their engagement. tt0097257,yE0aTqijR3o,"Valerie tries to find something for Zeebo, Mac, and Wiploc to eat for lunch." tt0097257,S9Wi3A3skb0,Candy performs a musical salute to the joys of being blonde. tt0097257,8DYT3ysI2UY,"Valerie sets up a surprise romantic evening to seduce Ted, but he shows up with another woman." tt0097257,wavVceonMJg,"Valerie takes Mac, Wiploc, and Zeebo to see Candy at her salon." tt0097257,emda_fIsz2o,Candy helps Valerie solve her relationship problems by giving her a makeover. tt0059124,JEjsNsrZuHI,"Dr. Goldfoot sends Diane, one of his robots, to seduce millionaire bachelor Todd." tt0097257,BUKTDsI9Rbc,"Mac, Wiploc, and Zeebo discover the appeal of Finland while Valerie tries to plan for Ted's return." tt0059124,Q1f_3XxcqKc,The chase finally ends when Craig and Todd lead Dr. Goldfoot and Igor off a cliff. tt0059124,mCu3uKNGuZw,"Dr. Goldfoot and Igor follow Craig and Todd down Lombard Street, one of the most crooked streets in the world." tt0059124,AB7mSGjpn8c,"Diane seems strangely impervious to bullets, until Craig watches her drink a glass of milk." tt0059124,2JA3UQCYkQs,"Dr. Goldfoot prepares another batch of robots for world domination, but his bikini machine produces a defective robot that beats up Igor." tt0059124,rHwc3Jc9rD8,"When their cars fail them, Dr. Goldfoot and Igor continue to follow Craig and Todd via cable car." tt0059124,BRV1CDa5_Z4,"Dr. Goldfoot instructs his robots how to dispatch their rivals, but he becomes frustrated when one robot teaches the others how to dance." tt0059124,_dm0Oj_fF14,"Todd invites Diane back to his apartment, but when she won't go there without a marriage proposal, he pops the question." tt0059124,W2o3KcKAldE,"Craig meets and quickly falls for Diane, a seductive woman who keeps confusing him for someone else." tt0059124,u0wNMcfOIXM,"Dr. Goldfoot takes Craig and Todd into the dungeon, where they find a familiar face among the prisoners." tt0059124,tCjohxqJ-0c,"Now on a motorcycle, Craig and Todd race across the Golden Gate Bridge with Dr. Goldfoot and Igor in pursuit." tt0059124,lVsH8dttw4I,Dr. Goldfoot examines the second version of robot #12 and demonstrates another seemingly innocuous but deadly weapon in his arsenal. tt0088960,fv34SxLog3o,Dr. Wolper persuades Boris to be his new lab assistant. tt0088960,N204ncRytIE,Dr. Kullenbeck asks Boris to tag along during his workout in an attempt to pry information out of him. tt0088960,LVYMePfXin8,Dr. Wolper says goodbye to his deceased wife after choosing to end his cloning experiment. tt0088960,PB5bvrhHFIw,Boris pleads with Dr. Kullenbeck to keep Barbara on life support. tt0088960,CmKzzu5ELHU,"After returning from the beach, Boris persuades Barbara to join him in the shower." tt0088960,CLAepDJtUJU,Dr. Wolper gives Boris some advice on love while they work in the lab. tt0088960,q6LqVs7P-pI,Dr. Kullenbeck makes an unsuccessful pass at the much younger Meli during a dinner party. tt0088960,5XuaulOD0ZE,Dr. Wolper gives Boris a hint to the identity of his crush while they talk on the roof. tt0088960,almVKV4ywQQ,Boris' personal robot wakes him up for his first day of graduate school. tt0088960,LI0o8Nhig1Q,Dr. Wolper introduces himself to Meli after seeing her crying on campus. tt0112722,_NhQKmjXz7c,Konerak watches a videotape of Jeffrey Dahmer's recorded confession and is then murdered with an electric drill. tt0112722,ic_89aGltSg,Young Ramirez chills with a serial killer who tells him about his tour of duty in the Vietnam War. tt0112722,qPVAxNvS1YQ,Jeffrey Dahmer entertains his next victim with a beer. tt0112722,GUoa3MFLEO8,Ed Gein makes his kill. tt0112722,xcgOzHorYag,"Young Ramirez witness a startling murder. Meanwhile, Mirabelle researches on the killer of a woman." tt0112722,_1A33xDs0lI,"The killer stalks Laura in a parking garage. Later, the police keep her in a room with a two-way mirror while they discuss the case." tt0112722,vMwPmm9UmtI,The killer shows up to Laura's apartment to reveal how close he is to her. tt0112722,XYVKWFL9irA,Ramirez tortures a couple in their bedroom. tt0112722,oJuU7gvcwdQ,Laura realizes that the crime scene that she and the detectives are investigating has been staged. tt0112722,2nhZzcQBkp0,"The Killer taunts Laura into trying to kill him, but she has trouble pulling the trigger." tt0804452,qDkEnNVpn0g,The Bratz win over the crowd with a musical number during their school's talent show. tt0804452,bc6k19YKBN4,The Bratz Girls react poorly when Yasmin quits the talent show. tt0804452,sx_oR6WXO0I,Yasmin suffers from terrible performance anxiety and can't sing her song. tt0804452,_JtPO8an9xY,The Bratz Girls go shopping and promise to never split up again. tt0804452,ggEPIKZuPn4,Sasha shows off her best moves when the Falcon Cheerleaders hold auditions. tt0804452,MXM6Hz_ItMw,Cloe accidentally discovers a name for the clique. tt0804452,L4TIQxyJEcs,The Bratz Girls argue about the restrictive nature of their respective high school cliques. tt0804452,K5xM1SxgD6M,Meredith performs an ode to self-absorption at the talent show as the Bratz prepare for their own routine. tt0804452,mKQYPa9Onac,Jade helps the football team with some mathematical concepts. tt0804452,l063S2tqZSg,"Through a series of accidents, the Bratz Girls spill food on each other, leading the entire school into a food fight." tt0804452,6p6tevRcEXY,Meredith performs a musical number at her own Sweet Sixteen birthday party. tt0804452,r9ma_9tM48k,Yasmin celebrates with Bubbie because she is excited about her idea to ignore the standard high school subcultures and just be friends with whoever she wants. tt0162662,RotJK471KDg,The Arcade Manager scolds Evie for being careless and unprofessional at work. tt0162662,plGWKSHrzCk,Evie carves Drumstrings Casey's name into her forehead with a piece of broken glass from a floozy's perfume bottle. tt0162662,4pUPYVW5GWI,Evie makes an impulsive decision and stands up to take a picture of Drumstrings Casey during his performance. tt0162662,LWnHl2_xh4M,Drum's parents and Evie's father come over for dinner and it doesn't end well. tt0162662,fgDsOV1YKpE,Evie and Drumstrings have their first kiss on her front porch. tt0162662,Ovp4lQhkIGY,"Evie watches Drumstrings Casey perform, and immediately becomes infatuated." tt0162662,QJOXvLGYEwo,Evie is fed up with Drum and wants them to start a new life. tt0162662,8NSR7Pod8O8,Evie is interviewed by the newspaper and Drumstrings Casey visits her in the hospital. tt0162662,tfqqS90iYKY,"Evie sets up a fake kidnapping of Drum for publicity, but she's blindsided by shocking news that her father has had a heart attack." tt0162662,r9w5dIeVamA,Evie lays some ground rules for her wedding on the car ride to the chapel. tt0245712,dAxijzivjlc,"Jarocho and Octavio fight their dogs in an abandoned building, but Jarocho shoots Octavio's dog." tt0245712,yIGiGtjHUS0,El Chivo tortures Luis about the identity of the person who wanted him dead. tt0245712,5AAni-jpFaU,El Chivo leaves a heartfelt message to his daughter whom he never knew. tt0245712,f48wH7l3c5I,Octavio and Jorge are being chased by gangsters while their wounded dog is tossed around in the back seat. tt0245712,LzXKQvdRZQU,El Chivo helps pull out the wounded Octavio from the totaled car and takes Octavio's dog with him. tt0245712,09MjH5hbF5Y,"With his new dog-fighting enterprise, Octavio earns money to help him run away with his brother's wife." tt0245712,zCu2iserep4,Daniel tries to rescue the dog trapped under the house while dealing with Valeria's despair and distrust. tt0245712,lLepw8cs6eQ,El Chivo comes home to find all his dogs dead. tt0245712,KGf_Z5s891U,Octavio inappropriately talks about him and Susan being together at her husband's funeral. tt0245712,Hzv74uI9Cr4,Gustavo is surprised to find his brother still alive. tt1602098,C_L23E0FwCs,Helen fantasizes about a rich customer over breakfast with Albert and the other servants. tt1602098,ViRs8qaB5YQ,Hubert opens up to Albert about her decision to start living life as a man. tt1602098,yfYKkvq5dow,Albert takes a very indecisive Helen out for a bite to eat. tt1602098,BI5u7jAxIjo,Albert and Hubert venture out in public as women for the first time in years. tt1602098,1q15xQhI6Lg,"Albert works up the nerve to ask Helen out for a walk, and Joe encourages her to play along." tt1602098,AiaIf4aJgfE,Hubert discovers that Albert is a woman posing as a man. tt1602098,Chy1Cu5WOgc,Albert explains to Hubert her decision to live as a man. tt1602098,pnzYOL2o_To,Albert tries to comfort Hubert after typhoid fever claims Cathleen. tt1602098,8ypUiGzOsOs,"As Dr. Holloran nurses a hangover, Albert questions him about the feasibility of opening a tobacco shop." tt1602098,9WpVeYgwugo,Helen teaches Albert how to be affectionate. tt1602098,7m3Mv9f_P1U,Joe tells Helen to continue seeing Albert for his money. tt1602098,OCDouPR9v9E,Joe shares some painful memories with Helen and pulls her aside for a kiss. tt1399683,fHiIfSLjJE4,Ree Dolly tries to track down Thump Milton at a cattle auction tt1399683,_83-1qzRNpo,Ree Dolly questions the whereabouts of her missing father to Teardrop -- her meth-addicted uncle. tt1399683,ZM3mRir3-LE,"After Ree Dolly is beaten up by Merab, she pleads for her life to the town crime boss Thump Milton." tt1399683,O7wmAaT-TBk,Teardrop receives the banjo that belonged to his deceased younger brother. tt1399683,8T2dOyo64Pk,"Ree Dolly teaches her brother Sonny, and sister Ashlee, how to hunt and skin a squirrel." tt1399683,QK1Xnd7cPJw,"Ree Dolly tries to talk to Thump Milton -- the local crime boss -- about her missing father, but Merab won't let her inside the house." tt1399683,ay13eiuH54U,Teardrop comes to the aid of his niece Ree Dolly and confronts Thump's men after she's beaten by Merab. tt1399683,1YXJuW9MNGc,Merab takes Ree Dolly out on a rowboat to find her Daddy's corpse which is submerged in a pond. tt1399683,5QFPjo1DGE8,"When Teardrop is pulled over by Sheriff Baskin, he refuses to back down." tt1291584,0Qkk8a1IVxQ,"With Tommy's arm broken, Brendan struggles with the decision to continue the fight." tt1291584,sy7Lx7jY2SU,Brendan takes on the Russian fighter Koba after getting pummeled for two rounds. tt1291584,LkimMjwfjrQ,Tommy wakes up to find Paddy painfully crying out in a drunken stupor. tt1291584,P9clz3jnMVo,"Tommy and Brendan find themselves in the cage, fighting for their causes." tt1291584,kKHr9gSW7HM,Brendan confronts Tommy about their past. tt1291584,PXn6o5uTfEU,"Brendan has his first fight at Sparta, and takes a beating in the process." tt1291584,XVePWDEck4w,Paddy tries to reach out to Tommy but is dealt harsh rejection. tt1291584,9NErcOfza10,Brendan fights for money in a tent set up in a parking lot. tt1291584,f6DDYCf80hw,Tommy volunteers to spar with Mad Dog at the gym. tt1291584,EUC3JOXJBYw,Paddy tries to talk to his son Brendan after a long absence. tt0065214,l9k9_K8Tea0,Pike Bishop reprimands his bunch for wanting to desert old Freddie Sykes. tt0065214,CYP38A-nwLY,"Pike Bishop and the rest of the Wild Bunch walk down the hot, dusty street as they prepare to meet their violent end against General Mapache." tt0065214,_ysVoV3x5Zo,"Madness reigns in the Coliseum as Pike Bishop and his bunch massacre General Mapache's troops, and die with their guns blazing." tt0065214,7NReUd2_0u0,Lyle Gorch and Tector Gorch ask Pike Bishop for a larger share of the money before realizing they've stolen a copious amount of worthless washers. tt0065214,St16P31BURU,Pike Bishop and his bunch hold up a bank. tt0065214,gOJJm_cSRds,Pike Bishop and the Wild Bunch shoot their way out of a bank robbery against Deke Thornton. tt0065214,R6-LDKl3FOs,"After the Battle of Bloody Porch, Freddie Sykes comes along a worn out Deke Thornton and asks if he wants to join his new posse." tt0065214,zT639dQIhck,Pike Bishop and the Wild Bunch plant an explosive trap on the bridge for Deke Thornton and his posse. tt0065214,yDo7fA8sAlM,T.C and Coffer fight over who they killed during the shootout as they collect the personal belongings off of the victims. tt0065214,mx15l4L4Zlk,"Pike Bishop and the Wild Bunch ask Gen. Mapache to return Ángel, the result of which is a burst of violence." tt0053604,c--eNhRG5B4,Miss Kubelik learns that Baxter quit his job rather than loan out his apartment. tt0053604,_gOQq1ygJgY,"Convinced of his love, Miss Kubelik races back to Baxter's apartment." tt0053604,sh7lb9j3k5s,Mr. Sheldrake confronts Baxter about his apartment. tt0053604,73BHmDv4qYc,"On his way to the 27th floor, Baxter chats with the elevator operator, Miss Kubelik." tt0053604,Rf7NrtrHs1U,"After abusing his apartment privileges, Mr. Kirkeby assures Baxter he'll be rewarded." tt0053604,AFXFoDiTtmA,"When Mr. Sheldrake requests his apartment key, Baxter has a decision to make." tt0053604,jWt7wiLImmU,"When Mr. Dobisch gets lucky with a Marilyn Monroe lookalike, Baxter gets a wake-up call." tt0053604,MeQCLsUrCXo,Baxter tells Miss Kubelik about his own suicide attempt. tt0053604,iFpB2_WOk0Q,Mr. Sheldrake swaps a pair of Broadway tickets for the use of Baxter's apartment. tt0053604,8gGPt8Eg5lw,"Baxter gets a warning from a concerned neighbor, Dr. Dreyfuss." tt0075314,VKE_B4jMF5Q,Travis comes into the Palantine volunteer headquarters and asks Betsy out for coffee. tt0075314,UneHDzMhbbw,Travis eats breakfast with Iris at a diner and thoughtfully gives her advice about her life. tt0053604,aKUcMTQgl5E,"Baxter encounters Miss Kubelik, a charming elevator operator." tt0075314,-QWL-FwX4t4,"Travis looks into the mirror, drawing his gun, and practices his intimidation routine for a battle on the streets." tt0075314,FGwRe_5L1WM,Travis goes on a shooting rampage throughout the motel as a terrified Iris listens on in another room. tt0075314,1ve57l3c19g,Betsy is impressed with Travis and his honesty during a date at a diner. tt0075314,X6frLQWOSlQ,Travis sits quietly as his passenger describes what it would be like to kill his adulterous wife. tt0075314,Rq4ucbgrV6U,Travis fantasizes about being praised for performing heroic acts throughout the city. tt0075314,LvtFcK8BaY8,"Travis expresses his feelings about the filth of the city with his politician passenger, Palantine." tt0258000,XVNNkjY2YDQ,Burnham is upset when he realizes that Junior's plan is already amiss and there is a mysterious third man involved. tt0258000,pdYYAu24yVQ,Meg is saved at the last moment when Burnham returns to kill Raoul. tt0258000,8XTt2uGxh9E,Sarah helps Meg with her first communication with the burglars. tt0258000,HieAi6H3Gxs,Meg and Sarah evade their pursuers and take refuge in the panic room. tt0258000,v8KA0GieSoE,"When Meg discovers intruders in her home, she wakes Sarah in order to get her to safety." tt0258000,P2p410SndXM,"Burnham injects Sarah with an insulin shot, saving her from a deadly coma." tt0258000,F7bAUwj2HEs,"Meg /*259*/) lights up the propane gas, setting off a spectacular fire and singeing Junior in the process." tt0093565,SLgV3ynglzg,"Loretta breaks her engagement news to her father, who expresses trepidation because of her supposed ""bad luck.""" tt0093565,T8X4r5X9c-Y,"Johnny pops the question to Loretta, who insists it be done properly." tt0258000,hYNYTcpIDSs,Raoul's hand is crushed when he tries to stop Meg from returning to the panic room. tt0093565,O66m3X5mYpU,"At the airport, Johnny asks Loretta to contact his estranged brother. An old Sicilian woman curses the plane." tt0093565,ji9C_R6HLvg,Ronny recounts for Loretta the story of his maimed hand. tt0093565,wUPc7frUlD8,"Loretta meets Johnny's brother, Ronny, a tortured baker." tt0093565,k7WkN_gPNaM,A swooning Ronny tries to convince Loretta that playing it safe won't make her happy. tt0093565,-n3qpOM31Pc,Loretta psychoanalyzes Johnny ; he kisses her passionately. tt0093565,AXgHBzoymaQ,Loretta spots her father at the opera with his mistress. tt0093565,nuVzF_r0kHQ,Rose confronts Cosmo about his affair. tt0093565,iLgMFwStTHc,"The morning after their tryst, Loretta is wracked with regret, but Ronny's in love." tt0093565,lVmwqKY9BX0,"Johnny calls off his wedding to Loretta, leaving Ronny free to propose." tt1527186,8LbCb592C0g,"In the film's prologue, Justine and Leo prepare for the apocalypse as the planet Melancholia approaches Earth." tt1527186,2oWgJ75kqxg,John grows frustrated with Gaby and decides to throw her out of her daughter's wedding reception. tt1527186,V53g8B7Ljqg,Justine notices a change in the sky when her horse begins to act strangely. tt1527186,LYbU_99u22o,John reassures Claire that the planet Melancholia will not strike Earth. tt1527186,gd2-0TMNqZw,Tensions arise when Dexter and Gaby give rival toasts at the wedding of Justine and Michael. tt1527186,F4-pp1JORFc,Justine refuses to comfort Claire in her time of need. tt1527186,xU61FGJ5aHA,Claire is relieved when Melancholia becomes visible in the night sky and appears harmless. tt1527186,0Q4cKXYFIxU,"As the wedding guests gather to release lanterns in honor of the bride and groom, Justine makes a startling discovery in the night sky." tt1527186,vKsWNzKjVEk,"Justine, Claire and Leo hold hands as the planet Melancholia collides with Earth." tt1527186,eQBlcP9ENk8,Justine tells Claire not to grieve for the end of life on Earth. tt1527186,3SIsMAk_Yhw,Claire panics as she attempts to leave the grounds of the estate with Leo amidst a hail storm. tt0067411,MxlTo0BbQlE,"As Constance Miller devours her meal, she lays out a proposition to John McCabe that he just cannot refuse." tt1527186,4GraEwTsqFs,Justine and Michael try to help their comically inept limo driver on the way to their wedding reception. tt0067411,cb4dxubPYEs,"Butler and his posse let it be known to John McCabe that they are in town 'to hunt bear,' not to negotiate." tt0067411,AbRlLFpC34s,"Cowboy arrives in town looking for the ""fanciest whorehouse in the territory.""" tt0067411,SU6tW2cZQeI,"As the snow continues to fall, Butler hunts John McCabe. Meanwhile, the town celebrates putting out the fire." tt0067411,PBAzBWYoR9U,John McCabe is caught off guard with the arrival of Constance Miller and her whores. tt0067411,guK3fiVFU98,"The Lawyer lays out the virtues and platitudes of the American justice system, when all John McCabe desires is to not be killed by the bounty hunters hired by the corporation." tt1615147,UOYi4NzxlhE,Peter Sullivan explains to executive John Tuld the state of affairs at their investment firm. tt1615147,LtFyP0qy9XU,Sam Rogers tells John Tuld that he wants out. tt0067411,7LBM8BX4UfU,"John McCabe shows a tender, vulnerable side to Constance Miller when he confesses his feelings for her." tt1615147,e6WyN4z0VGc,"After 80% of the employees at an investment firm are fired, Sam Rogers gives a pep talk to cheer the survivors." tt1615147,xW1CrQu_H6E,Will Emerson explains to Peter Sullivan and Seth Bregman where all his money goes. tt1615147,m8Mc-38C88g,Will Emerson tries to convince Eric Dale to come back to the investment firm. tt1615147,ag14Ao_xO4c,John Tuld explains his firm's philosophy to his employees while maneuvering around Sam Rogers and his moral principles. tt1615147,v4P4cS5jKmQ,Sam Rogers tells his traders to sell all assets. tt1615147,DDwsfoudwuc,Sam Rogers confesses to Peter Sullivan that they're all going to get fired. tt1615147,QNWXsYZWiiA,John Tuld bribes Sam Rogers into cooperating. tt0082694,j_UtDuZaeZo,"The second-wave attack is let loose on the tanker driven by Max leading to a massive, destructive crash with The Humungus." tt0082694,BXmMRlQtnP8,"Max dangerously drives the rig back to base, pursued by Wez and the other psychotics." tt0082694,zdr-f3MZgqo,"With the gas tank at empty, Max — aka the Road Warrior — is chased by a group of bandits on a desolate highway at maximum speed." tt0082694,i2gVXd7FzhQ,Humungus and his dogs of war descend upon Pappagallo's tribe in an effort to gain control of the gasoline tanker. The Feral Kid makes use of his boomerang in taking out the Golden Youth. tt0082694,vpir9eGi8Mk,Max violently crashes his V8 Interceptor with Wez in hot pursuit. tt0082694,bOEcxxyOC-s,Max gives the Feral Kid a musical trinket and offers to help Pappagallo's tribe. tt0082694,3P4LUt0qcX8,Max drives the tanker with Wez and the gang in violent pursuit. tt0082694,YFWDhaI6BqY,Max leads the chase out of the booby-trapped compound by driving the decoy tanker. tt1588170,iD3pUnlGJxU,"When Kyung-Chul realizes that Kim Soo-hyeon is linked to one of his earlier victims, he taunts the secret agent and threatens to show him the true power of pain." tt1588170,_nrXdj11-MA,"Kim Soo-hyeon beats up the cannibal of the house, kills the cannibal's girlfriend, and then bludgeons Kyung-Chul relentlessly with a pole." tt1588170,TgaoKPuLtpg,Joo-yeon is savagely attacked by Kyung-Chul as she waits for a tow truck. tt1588170,gKmsNU2CWo0,Kim Soo-hyeon kidnaps Kyung-Chul in daring fashion before the serial killer can turn himself over to the police. tt1588170,cJEE1-5uQXI,Kim Soo-hyeon finally gets his vengenace against the murderous Kyung-Chul. tt1588170,jE5qCSOAsXU,"Kim Soo-hyeon tortures a cannibal, only to be shot at by Kyung-Chul." tt1588170,wRNOxvIxMpk,"Despite being captured and beaten up, Kyung-Chul taunts Kim Soo-hyeon, telling the secret agent that he has been defeated no matter what he does." tt1588170,cMWSTAEs-TA,Kim Soo-hyeon fights and captures the serial killer Kyung-Chul. tt1588170,bK3dyRu67A8,"Kim Soo-hyeon interrogates and tortures a pervert, whom he believes to be the killer of his fiancé." tt1588170,LJAUOJDM88o,"After getting picked up by a friendly cab driver, Kyung-Chul brutally murders the cabbie and the passenger in the backseat." tt0926084,R2zNRrOXbPY,Harry Potter leads an escape from the Death Eaters with the assistance of Dobby the House Elf. tt0926084,nlOF6YhAoJQ,Harry comforts a dying Dobby. tt0926084,GM5WI4MTXzc,Harry and Hermione share a tender moment of joy amidst a dark and perilous journey. tt0926084,AdaRb_fg8dg,Ron is tested by his attempt to destroy the locket horcrux. tt0190332,ltY3ZLA6dA8,"Legendary swordsman Li Mu Bai faces his archenemy, Jade Fox, but she has an apprentice." tt0190332,KXIJv1NoXmo,Li Mu Bai battles stubborn Jen on top of a bamboo forest. tt0190332,s1hs62Is67s,Shu Lien tires of Jen and a vicious battle with multiple weapons ensues. tt0190332,X5SaZ8EmSpw,Jen takes on a tavern full of warriors - and wins. tt0190332,svBPXPXgpqc,Jen chases the bandit Dark Cloud for miles because he stole her jade comb. tt0190332,noLAdkr7WzY,Li Mu Bai expresses his desire for Shu Lien over some tea. tt0190332,rxJiE5EKnD0,Shu Lien chases the thief of the Green Destiny sword up walls and over rooftops. tt0190332,x0D4unitqpE,The poisoned Li Mu Bai expresses his undying love for Shu Lien. tt1436045,3bqc-TIPv4c,"Shinzaemon taunts Lord Matsudaira and his men with a scroll that reads ""TOTAL MASSACRE""." tt1436045,dtVoa1vg8qk,Shinzaemon addresses his Samurai after learning that the odds are not in their favor. tt1436045,tvON7JZAqzY,Hanbei and his men fall into Shinzaemon's trap. tt1436045,NcmpDcaWa3c,Lord Matsudaira decides to take a detour after being blocked from Owari land; Makino Uneme meets his fate. tt1436045,vEfhLwt-8wg,The Assassins prepare for departure and train for their mission. tt1436045,dNwHQsv3tgE,The Assassins are ambushed by Akashi Henchmen in a small town. tt1436045,zhGOkVH91z8,Koyata volunteers to be a guide in exchange for food. tt1436045,0HSDU71_U-Q,"For the first time, Lord Naritsugu gets a glimpse of the pain he has inflicted on others, and the terror of dying without having really lived." tt1436045,BaSoze4fhGA,Shinzaemon and Hanbei duel. tt1436045,njPq0Ld041k,Lord Naritsugu finds a disgusting pleasure in violence. tt1436045,6HwzVqcNaSU,"Hirayama cuts down several of Naritsugu's men, with Ogura finishing off the stragglers that make it past him." tt0098453,EwC2ZHxoDu4,Louise and Brad finally have their romantic dance. tt0098453,5XU9Sz69aKA,Mrs. Crocker gives her rebellious students an impromptu sex education class that ends up being more comical than informative. tt0098453,lZ885HzflVc,Mr. Miller embarrasses Louise in front of her classmates by reading her romance paper aloud. tt0098453,oxxBXpnn2Jw,Polly shows up Rhet in a rap battle. tt0098453,3GcQp2JJvv0,"During a chance encounter with a psychic Madame Serena, Louise learns that she will inherit special powers on her 16th birthday." tt0098453,lLX3wpgs32Y,Louise says a spell that makes Randa and her friends fight like never before. tt0098453,vgGb9tSOKbs,Louise goes through a transformation into a popular girl at school. tt0098453,HcD7driLtCQ,Mr. Weaver is literally put through the wash when his voodoo doll gets in the wrong hands. tt0098453,HPeiybjTy3E,"Louise wishes for her nerdy date to leave her alone, and he instantly disappears." tt0098453,9ogtJYnjD1I,The girls locker room breaks out into song when boys come up. tt0098453,W26hbGkeEWo,"When Louise gets into a fight with her brother Richie, she accidentally turns him into a dog." tt0098453,0FNk4sNdPtQ,"With the help of a homemade voodoo doll, Louise makes Mr. Weaver undress in front of his entire class." tt0094862,goyoOGbDjNM,Charred Chucky attacks Andy and Karen who shoots him to pieces. tt0094862,4GUk-1i2_Zo,"After Chucky attacks Andy at the mental hospital, he gets the drop on Dr. Ardmore and fries his brain." tt0094862,MM42NkUhSnM,Karen discovers that Chucky doesn't run on batteries. tt0094862,8NOmVkx7fWQ,Chucky tricks Eddie and blows him to pieces when the house explodes. tt0111653,oXcDMKOD0O0,"To the displeasure of Little Feather, White Cloud allows the white men to pass through Indian country safely." tt0327919,sTu7aCTkp9g,Sophie and David analyze an impressionistic painting. tt0327919,u1Dxy8jBmYE,"A Baker tricks David into staying in his bakery, and alerts the authorities that he's there." tt0327919,u-oetP_iX_I,David has his first proper lunch with Maria and her family. tt0327919,WRJWb6SViK4,"David finds himself caught in the middle of a violent protest, and is unexpectedly locked-up before escaping." tt0327919,E0TmjA1X2N4,"David questions Sophie about a book, and discovers that the author is his mother." tt0327919,Do4Z-aFeJMs,David successfully escapes from the Communist concentration camp. tt0327919,p-dnhwIY2G0,"Sophie helps David get to Denmark, so that he can reunite with his mother." tt0327919,J-8l4bdfL9g,Sophie explains to David that not all people are inherently bad. tt0327919,9CSMoJr51IQ,"Johannes visits David in a dream, and provides him with advice to help guide him on his journey." tt0111653,cs6MZqTBBC0,"Phil Taylor proposes moving back east, but Zeke wants a sure sign from the Lord." tt0094910,SehEKk2gcSc,"Burns talks down the suicidal Lopez, but doesn't disappoint his audience." tt0385988,jSabMn5UXKo,"Godfrey sings about how Jean cannot break his heart, since he doesn't have one." tt0094910,Lz3XcjwKGmQ,"Burns tries to give a lady on the bus some free therapy, but she has some serious issues." tt0081071,b2gz0vSh0J4,"When Belle asks why she wasn't invited to the party, Cole has a succinct explanation." tt0072325,8oDxIAKnWx4,Blue makes a scene at Gator's funeral by spitting on the deceased. tt0111653,BZH32FuXeF4,"Julian faces John Slade in a duel, and quickly outdraws him." tt0111653,lVQgRd34Dlk,"Around the campfire with the other guys, Phil Taylor decides it's a good time to tell some personal stories." tt0111653,cqwrFYjHahk,James Harlow romantically confides to Belle that he doesn't see her as just a whore. tt0111653,kUkbUoZ__X0,James Harlow shows off his chivalrous side when he picks up a dropped doll from the brush. tt0111653,liH8CRkWl3Q,Phil Taylor gets into a duel over his lost cows. tt0111653,aVEtuBwgly0,"Julian, the book seller, tries to convince Harry Bob Ferguson on the merits of Jane Austen." tt0111653,OaZ30IajJ2w,Lindsey and Billy are taken aback when they discover the Furguson brothers lighting their flatulence. tt0072325,iaQdh-Hbp3I,Dorinda uses a little tough love to prepare her whores for a meeting with all the local pimps. tt0111653,5938LUU-UAY,A drunk James Harlow explains the route back east to Phil and Ben. tt0111653,6Mwtt_EKIQk,"James Harlow leads the trail of wagons mistakenly through Indian country, and Julian convienently has a pair of moccasin shoes." tt0111653,jArxL-3-j94,"John Slade attempts to blow up the wagon train, but his booby trap backfires." tt0087727,VqtAA8dO7Ww,Braddock interrogates General Trau at knifepoint as he searches for the location of the MIAs. tt0051411,jWJqzIUntho,Steve accuses Jim of lying about being lost in the wilderness. tt0087727,zpQFjWoRhGc,"Braddock blows up a POW camp, building by building." tt0094862,3lyx7UsMqmc,"When Karen threatens to throw him in the fire, Chucky attacks her and escapes." tt0102555,ikfmhFpbWJk,"When Hamid, a kind store owner, allows Betty to use the phone, she calls the Swiss Embassy to plan her escape from Iran." tt0093640,OeUbPposwAo,Brice shows up at Susan's house and interrogates her about her traveling companion. tt0083629,WIZ0J4rWO88,"Michael starts to strangle Amanda, but he's able to overcome his evil urges." tt0104765,3fIng0TRjXI,"Hearing a struggle, Paul intervenes between Lurene and Ray." tt0049406,w0l1ukaxeBg,Nikki snipes the lead horse but gets killed during the escape attempt. tt0052564,C94ag0ondig,Dr. Iris Ryan discovers the cure to Col. O'Bannion's infection. tt0081184,i-bRuSNSvcU,Vincent and Ida plant the human heads into the ground. tt0083629,mAeceNqeNtQ,"Eli and Caroline search for their son in the woods, and when he grabs Eli, Caroline has to pull the trigger." tt0052832,AguptuYeDRU,The tension between Lady Torrance and Val reaches a boiling point. tt0084732,CiOFGnNgnnc,Sam follows a person he assumes to be Brooke into Central Park at night. tt0079240,UPaTwmDXLWE,"As Londoners gather for a hanging, Clean Willy climbs a wall to escape from Newgate prison." tt0305396,QDNELnksfnw,Steve Irwin does a deadly dance with an angry snake until he gains the snake's trust and it calms down in his grip. tt0051411,GMiD6PU8SKI,Rufus Hannassey crashes Major Terrill's party and delivers an ultimatum. tt0305396,a_aZ01raOoI,"Steve and Terri explain that many kangaroos are killed by vehicles in the outback, and they rescue and nurse their orphaned babies back to health." tt0100680,MlD51EzRE7c,"When Stanley's boss accuses him of stealing canteen supplies, Iris proves it's not possible since he can neither read nor write." tt0089572,0pVwRO2dFVs,"The killer calls Malcolm again, informing him that there will be four more murders." tt0048424,jcTv-BEwabk,Mr. Powell tells his animated story of love and hate. Young John is skeptical while Mrs. Spoon eats it up. tt0082416,yx2giHzJ4-I,Charles reunites with Anna and loses his temper when recounting the way she broke his heart. tt0052832,MBfp_LuEfqA,Carol tries to seduce Val in a graveyard. tt0063415,DKwC6X7_JU0,Hapless actor Hrundi touches off a premature explosion on a movie set. tt0057413,5485fd0CtKw,Sir Charles and George approach a safe in costume. tt0100530,3gDvO7H5iEA,Barley confesses his love to Katya and puts his spy training to use to tell her the truth. tt0082416,4SzQZn8xGnA,Mike's obsession with Anna grows as he tries to set up their next meeting. tt0057413,q3a5wxfm13Q,Clouseau assures the Princess he's identified the Phantom: Sir Charles Lytton. tt0052832,W2Et5nGF5C4,The reckless Carol Cutrere attempts to unearth the skeletons of Val's wild past. tt0057413,G5sYuuD7ixA,Clouseau pays a visit to the Lyttons in prison. tt0057413,kEsfYG_bF-E,"At a costume ball, Clouseau chides an officer for drinking on duty." tt0055614,77KnithfRRk,Tony and Maria spot each other from across the dance floor in a love at first sight moment. tt0094142,L0rNCGRjvtU,Owen fantasizes about stabbing Momma with a pair of shears. tt0054047,oepaVuuBAtA,Three Mexican peasants approach Chris and ask him to help defend their village against bandits. tt0120757,SwI_ITgsSks,"Pete visits his parents, but his father doesn't believe that he's a cop." tt0120757,tLzcAofC4WA,"Julie makes fun of Pete for getting kicked out of the club, while Pete mocks her for talking to a guy." tt0048424,OuEmfmfgw2Y,"Willa prays and discusses Harry's reasons for marrying her, just before he takes a knife and kills her." tt0263757,siHzbnn1Bxw,Molly and Ray ride the teacups and share a bittersweet moment. tt0048424,JyxSm91eun4,Mrs. Cooper guards the house with her gun and joins in on a song with Mr. Powell who watches from the yard. tt0081071,lQ8JIa98kAw,"Clell Miller requests a change of song from ""Battle Cry of Freedom"" to ""Good Ol' Rebel.""" tt0070915,meZXqa_CE_o,"Sheriff Connors inspects Dude, Gator, and his hot rod." tt0098546,LDxOZ6cv-DU,George and Bob meet Pamela at the TV studio. tt0098090,S4s8LTNnufA,The Phantom kills a stagehand with a knife. tt0072325,QFQ4izzxtec,Dorinda doesn't have any patience for Truck or his questions. tt0263757,aikBhgSFE2A,Molly shares with Ray the story of her parents' deaths. tt0102926,sbJ89LFheTs,"After solving the Buffalo Bill case, Agent Starling receives a chilling phone call from Hannibal Lecter." tt0072325,fSNdh-3k6-g,Blue staggers for several blocks after Truck shoots him. tt0086567,jWQ1ITS94cA,"Claiming that the oncoming enemy attack is nothing more than a simulation, Falken reasons with General Beringer to call off the counter strike." tt0120757,_cmX1kEbl4g,"Greer and Bob chew out Linc, Pete and Julie." tt0098546,Btdp-sC8MJI,Raul hosts an animal kingdom type show from his 2nd floor apartment where he tries to get poodles to fly. tt0263757,a5WAyc-EaNc,Molly gets a glimpse of Ray's pessimistic outlook on the world. tt0094142,LfxeHobEC9g,"Larry tries to warn Momma about her son's plan to kill her, but she's asleep with her eyes open." tt0263757,33KUnZf841c,Ray is less than pleased when she sees that Molly is her new nanny. tt0086619,faRFVdrRpws,"Yentl belts out ""Piece of Sky"" to celebrate how far she's come and the possibilities that await her in America." tt0072325,iWGL8PRdM7E,Truck kills two pimps on his rooftop. tt0086619,WCES5LXQn9M,Yentl cries out to her father's spirit for direction. tt0070915,RzGyyYgXffQ,Gator ends up getting medical care at Sister Linda's Home of Unwed Mothers. tt0092003,6bxEuaulT4k,Doc Holliday explains to Henry Gatewood why they have a Calvary escort. tt0102555,b6xbga06ApQ,Betty pleads to Moody's family to help her leave Iran and explains Moody's blasphemous lie about their visit. tt0086999,b9KCMBBn0EI,Ozone and the gang perform a benefit dance concert to help save Miracles community center. tt0086999,bsaA903oxvc,Ozone and his friends engage the Electros in dance combat. tt0072251,OF-QIOuucVk,"The train passengers brace for impact as they speed down the tracks at 70mph, finally stopping at 42nd Street." tt0071746,0A9ppII7eVA,Lenny makes a triumphant return to the stage after being arrested for acting obscene. tt0087727,2_iIEQ-hlKc,Braddock uses his charm to bargain for a one-of-a-kind armed raft. tt0087727,sua9tcQ14hs,"Tuck dies while providing cover fire for the POWs and Braddock ; in the aftermath, Braddock designates his next destination: Saigon." tt0118900,PlGtHAZOWbo,"Suspicious that he is taping their conversation, Divinci threatens Rodriguez to take off his shirt." tt0087727,IW7worFAFlU,"Braddock beats down a would-be assassin. In the aftermath of the attack, Braddock witnesses the carnage that has afflicted the civilian population." tt0087727,1zOmRBOYLpc,"After wreaking havoc through an enemy camp, Braddock detonates a pair of hand grenades as leaps onto his enemy." tt0087727,FlB2v8LQHDM,"Braddock brings his own brand of chaos to the enemy as he uses a truck as a battering ram, and then escapes on Tuck's custom-made attack boat." tt0087727,lSzT54HTpeY,Braddock rises from the water to shoot his enemies to hell and back. tt0087727,ccU8NJFeBSA,Braddock overpowers and subdues a hatchet-wielding Vinh. tt0087727,Ce0zSR2ParE,"Fed up by a news report, Braddock boots his TV set." tt0251114,vlZQj4OrTUM,Lt. Scott speaks to the men about racism. tt0070653,0xJcu3vc9tI,Scorpio kills Cross who gives him some advice as he dies. tt0385988,E5VOPMr7SKg,"Nanny Bess says a magic spell while placing the red riding hood on Linet, ensuring her safety." tt0081184,K2Lt0Ek64eM,Vincent Smith does some pruning in his garden... of heads. tt0081184,Ax1Vgvp5Cls,Debbie screams when her friend is taken hostage by Vincent after he tricks them into stopping with... fake cows. tt0052564,dso8WOrSRSQ,The crew is attacked when they mistake the leg of a forty foott tall monster for a tree. tt0081184,r6fpS6P16NI,"Vincent and Ida ambush a couple of swingers and of course, gas them." tt0052564,844ONMSqRWU,"When the shuttle returns to earth from its mission to Mars, the rescue team discovers few survivors along with one astronaut who carries a shocking infection." tt0052564,e89qDsf6Q3g,Dr. Ryan is traumatized when she attempts to recall the harrowing events on her mission to Mars. tt0102555,kTXppLCyuOk,Betty carries her daughter in her arms towards the U.S. embassy. tt0052564,WvQTrzonQAs,Dr. Iris Ryan and Col. O'Bannion flirt over the course of seventeen days en-route to Mars. tt0093640,XYrGVKzAJjQ,Brice and Pritchard discuss how to avoid indictment for Susan's death. tt0093640,0zLL_XdqxmQ,Farrell tells Sam that he is the man in the photo and asks Sam for a very important favor. tt0093640,lD7Xo_FhL4s,"Farrell flirts with Susan in front of her lover, Brice." tt0102555,GZJ6sC4nKNc,"Betty tries to pull her daughter out of school to escape Iran after her husband threatens her life, but the headmaster stands in her way." tt0089730,A4E1rEzhnz8,Russ and Jamie look for action with the ladies of the laundromat. tt0102555,sRwqd3eCNUY,Betty's high hopes for the Swiss Embassy to help her and her daughter leave Iran are quickly crushed when she learns of Iranian laws. tt0089730,tDWQvA6IhG8,Mark dreams of biting Robin as the Countess looks on. tt0089730,lhGtoYnSdl8,"Mark, about to be bitten by the Countess for the third time, gets rescued by his friends." tt0093640,EdN4MiVmI74,Brice and Pritchard give Farrell a difficult assignment. tt0081184,-kkP1Pvzvgs,Bob hears a strange noise in the woods and discovers a number of buried heads. tt0102555,8riyzFyGdVo,"Moody beats Betty when she returns from a visit, planning to leave Iran." tt0102555,dm3xv5sosng,Betty is yelled at and almost arrested for showing a small amount of hair outside her hair wrap. tt0093640,daoD1UtU5XI,Farrell demands more information from Pritchard and disagrees with his course of actions. tt0081184,yh17pzVY6BE,Ida is attacked from every angle by a group of her angry and vengeful prisoners. tt0093640,Y_lgyJtcb2A,Sam reaches out to Pritchard about Farrell. tt0089730,DCUGRi_FlNE,The Countess and her vampire minions chase Mark and Robin through her mansion. tt0102555,PrjcxNpxOos,"Betty expresses her gratitude to Houssein, and he tells her about the gardens of Persia." tt0089730,5BL7Fj5SUhU,Robin goes to a bookseller to conduct some research on vampirism. tt0091699,Mvu47rYJ1Y4,Iago plants jealousy in Otello's mind when they see Desdemona and Cassio together. tt0089730,_uHTonkUqW4,Countess puts the moves on a very jumpy Mark. tt0081184,b9EAfTyu5_I,"Vincent confesses the deep dark secret of his garden and his meats"" to Bruce and Terry before he dies." tt0089730,t3c_a9M1E7s,Mark and his buddies locate Robin in the basement before running into a group of vampires. tt0093640,cEPa4RFLJ-0,"Schiller discusses the future with Farrell, but in the end lets him go." tt0105046,XRGOhLyLS9Q,Carlson bullies Candy and says he wants to shoot and kill his old dog. tt0052564,zJQujcyncBk,A giant creature from the sea pursues the team when they discover a city on the horizon. tt0093640,AXsbWJC8VM4,"A confrontation between Farrell, Brice, and Pritchard leads to further deception and death." tt0089730,_kKO_1Dr4Go,"After drinking a glass of blood for breakfast, Mark goes Dracula on two unsuspecting young customers." tt0089730,JMlpAPKDm2s,Mark wakes and is excited to learn that he's had sex with the Countess. tt0093640,6lYiLycAQSo,Farrell warns Nina to run while he fights off two men that are on the chase. tt0052564,7WQTYb36Cew,Martians leave a parting message for the surviving voyagers so they may carry it back to mankind. tt0052564,wz29yiGSrB0,The survivors trap the radioactive organism in the ship's outer hull. tt0089730,x6fpplPaxG0,Robin overhears Mark talking about his one-night stand and breaks up with him. tt0081184,c6ik-AA87Uo,Vincent and Ida take a walk through the head farm and give them their nightly feeding. tt0105046,2xRlAbbcG0Y,"After Lennie's tragic mistake, he looks to George for guidance and asks what they're going to do next." tt0102555,NT_hyjakJEI,"Betty is excited to meet Ellen, a fellow American, in class, but she is disappointed to discover that Ellen has assimilated into Iran's oppressive gender roles." tt0081184,jZyhfkpsGGI,"Vincent, donning a bloody pig's head, has a battle of chainsaws with Bruce." tt0105046,DCM-sEpyh1Q,"George takes a dead mouse away from Lennie, causing Lennie to cry, but promises to one day buy him a puppy." tt0105046,bR2Uon5BWC0,When Curley starts a fight with Lennie he finally fights back and completely crushes Curley's hand. tt0052564,65XtOM1UUGw,"Dr. Iris Ryan is asked to recall her team's trip to Mars, which begins with a close encounter with a radioactive meteor." tt0105046,5Ddap2Pyhtw,George tells Lennie a fairytale about their future and then shoots him in the head. tt0093640,5GyAcr1BrNA,Farrell attends an Inaugural Ball and Pritchard introduces him to Brice. tt0105046,16bGLMEtAww,"George, upon much begging from Lennie, tells the story about their future and the farm they will one day live on." tt0102555,mpDnD5Pp90I,Betty speaks with Houssein about leaving the country while she watches a few young men being taken prisoner. tt0089572,D7MotG6VP4I,Christine informs Malcolm that she's leaving him. tt0089730,d1lql0Z0e-E,Mark and Robin realize he's been bitten by a vampire...and no longer has a reflection. tt0091699,6UwcLeAV31Q,"In a jealous rage, Otello kills his love Desdemona, thinking that she loves another man." tt0081184,_wLWdDRIkis,Ida imparts some heady advice to Bob and his fellow crops. tt0093640,N69MOeO5bi0,Susan panics when she sees Brice arrive home and asks Farrell to leave through the back door. tt0091699,lyu3QUjAFtw,Otello and Desdemona share a song of love and hope. tt0089730,03L12Mqkzg8,"Mark and Robin have coffin-rocking sex, making Mark immune to the bite of the Countess." tt0052564,Z-Hye1zg5IU,A giant carnivorous plant with tentacles attacks Dr. Iris Ryan. tt0091699,gLB9F9QftwM,Otello yearns for one last kiss with his love Desdemona as he takes his final breaths. tt0091699,LS6oxPMMdas,Desdemona sobs and proclaims her innocence as Otello accuses her of being unfaithful. tt0089572,81fH2bYF59g,Investigators find a tape left for Malcolm at the serial killer's apartment announcing that his girlfriend has been murdered. tt0105046,k6_nTAS1M4M,Curley's wife makes an emotional confession to Lennie while he quietly listens. tt0091699,CxkpSGI8L8o,Otello and Desdemona sing their unconditional love for one another. tt0089572,KggovdPWfpk,"At the newspaper office, Bill tries to motivate burned-out reporter Malcolm." tt0091699,Keejr4iFv5A,"Iago tells Otello that he overheard Cassio, who, in his sleep, dreamt of a secret love affair with Desdemona." tt0105046,XHGWTDHchVQ,"When talking with Curley's wife, Lennie accidentally kills her while trying to stop her from screaming." tt0089572,LfKPfJmfGgU,"Over dinner, Christine becomes upset with Malcolm when he is flippant about quitting his news reporting." tt0091699,JPtEnl6MpHU,"Desdemona prepares for sleep, at peace with the fact that she may die." tt0091699,8-ECgs93q1A,Iago manipulates Otello by warning him about the perils of jealousy. tt0089572,bWm1GC01kGo,Malcolm interviews a source without realizing he's the actual serial killer. tt0102555,yEYUc9oIVD8,"Betty is horrified when Moody tells her that they are going to stay, and live, in Iran." tt0105046,sO2RBLeWYyg,Curley's wife interrupts George while he's working and starts to seduce him. tt0102555,LL2LvzUVsZw,"When Mahtob accidentally leaves Toby Bunny behind, her mom reminds her to stay strong and brave so they can go home." tt0105046,hJUtiOm9dLY,"George, Lennie, and Candy pool their money together and make plans to move in one month." tt0091699,Ur3uTKbrqIQ,"Otello rejoices in victory with his men, and then finishes the celebration with a passionate kiss from Desdemona." tt0089572,_f_1Or6RhiQ,Malcolm gets an unexpected call from the killer. tt0091699,zDRmwZxOJ4o,Otello swears vengeance while Iago stands by his side in support. tt0089572,__3ylv_JWqw,Malcolm faces Alan one last time in a showdown to the death. tt0094783,XwS5WsjPg9U,"Linda tries her best to keep Lenny on track, but his cocaine use ruins an important business deal." tt0089572,7jtGp6xaVPU,Alan executes Christine after trying to explain his philosophical motives. tt0084732,hy0b9Rz31Zs,Brooke confesses that she was relieved when she found out George was dead. tt0051411,pwqOYWnLxBo,Jim tries to break a very stubborn horse. tt0094783,4vmjX0sQrIc,"In his filthy apartment, Lenny rambles on to old business acquaintance Ned about his plan to turn his life around." tt0051411,tYGiUUnoZhk,Julie and Jim have a storytelling contest to see who can outlast the other. tt0051411,9ioRMsPEf8o,"Buck and Jim attempt a gentleman's duel to resolve their differences, but Buck jumps the gun." tt0051411,iltOTKedsM0,The Hannassey brothers tie Jim with their lassos and insult him. tt0094783,eFd0VyfLf1M,"When he stumbles across a dead body during a drug deal, Lenny promises Linda that things will get better, and she admits to him that she's pregnant." tt0051411,nQIfRCUlfz4,"Buck backs out of the duel, but then steals a gun to finish off Jim." tt0089572,c2tWZFAL5t4,Malcolm races to the school to try and catch the killer before he kidnaps his girlfriend. tt0094783,Y52_WuvyKoo,"Depressed by his business troubles, Lenny takes Joel up on his offer to try some cocaine, and Linda is impressed by his sudden change in attitude." tt0094783,lh6Y9EU0wPQ,"Lenny admits to his fear of financial failure, and Linda promises to love him forever." tt0051411,2KfWymDaTmA,Steve kisses Patricia against her wishes. tt0094783,OvaNgegisKU,"Max sells Lenny on the benefits of living in Los Angeles, and Lenny convinces Linda to makes the move." tt0094783,Kujzb5PT5ns,"A visit from Joel and Rochelle leads to a pregnant Linda snorting cocaine and falling down some stairs, and Lenny takes it out on Joel at the hospital." tt0051411,eZp6EmVqq5o,Jim tries to stop the Major and his men from going out to kill the Hannasseys. tt0078790,pIvTIG3tWok,"Alphie and Bibi find themselves in hell, where Mr. Boogalow and his son Dandi tempt them with a giant apple." tt0094783,2xujTq-ueyo,"Lenny brags to Linda about the business deal he just closed at a party, but she's turned off by the strange people and their drug use." tt0094783,ZnsLPtYvqj8,"Lenny suffers a reaction to some bad cocaine, and when Linda picks him up from the hospital, he can't wait to use again." tt0094783,IC5DpSRkHps,Lenny convinces Linda to try cocaine for the first time as a way to boost their energy and confidence. tt0086993,AZIlLRwCn08,Bligh and his crew of Loyalists are given scarce supplies and cast off-board by Christian and the Separatists. tt0078790,Pj4y9M7cPy0,Mr. Boogalow sings and dances to prove that life is nothing but show business in 1994. tt0094783,LPxNka5Ll5U,"Lenny gives his all in a business meeting, but Max is the only man there who sees his potential." tt0086993,oYx2teRxnvw,"After the mutiny, Bligh convinces his loyalists to cheer up and survive the hardship of being lost at sea." tt0086993,ZFM-OxDGrkg,"Christian leads the mutiny against Bligh and the Loyalists, sparing their lives." tt0083629,iFnPpSNqKYU,"Tom tries to hide from Michael, but the boy seems possessed by Tom's childhood friend Billy." tt0051411,bEA-o4IJAic,Pat and Julie trick Ramon to learn the truth about Jim's manliness. tt0086993,r1jgKSXPL84,Bligh orders the gagging of Churchill and Quintal for an act of insubordination. tt0078790,gqRIBKn09_M,Mr. Boogalow uses song to outline for Bibi his strategy for dominating in a master/slave relationship. tt0078790,-O3_WO63fhU,Bibi and Alphie pine for each other through song as evil forces conspire to keep them apart. tt0078790,LVKODpCrCpw,"Under the tutelage of her new agent, Bibi transforms into a drug-loving disco diva." tt0086993,RoP15HrFNu4,Bligh gives up his food ration to a desperate and insubordinate young crew member. tt0068931,1XUHPC3s3rM,Arthur chases after his mark on a motorcycle. tt0083629,9bVHNqrqvjI,"Michael and Amanda make out in the woods, only to be interrupted by her dog digging up a human hand." tt0078790,y_P5zX0ejXI,Pandi drugs Alphie and seduces him to prevent him from finding Bibi. tt0083629,lKJ8pyN8Cm4,"Judge Curwin confesses to covering up his brother's crime, and Eli holds him responsible for the attack on Caroline." tt0083629,RdL23CR9K5w,"Judge Curwin locks himself up, but the beast has no trouble locating him and tearing his head off." tt0086993,z4edIxzhU80,"Christian plots a course for an uncharted island, while Bligh comforts his crew." tt0086993,5DYK9Xq-aF0,Bligh and the Loyalists return to land and report an act of piracy. tt0086993,KDc6dZxh0Cs,Bligh rallies the crew together and promotes Christian in reprimand of Fryer. tt0083629,snKDmQJqQ1E,"Edwin prepares to cook some red meat, unaware that his guest Michael is possessed by an evil beast." tt0083629,NSuYLeI3d1U,"Michael begs to be killed before it's too late, but his father Eli refuses to oblige." tt0083629,AlIvRiDePlY,"Michael convinces Amanda to get out of town, and he's driven mad by the sight of her blood." tt0086993,FVEiScxUQyY,A vehement Bligh criticizes the lewd example Christian is setting for the rest of the crew. tt0068931,R5UsZ1yoTO8,Arthur takes Steve out for some target practice. tt0083629,KIE436-2xcE,"Michael has a disturbing dream, and Caroline assures him that they will never leave him." tt0083629,YDCHojBWEhg,"Michael prepares to kill Amanda, but when his parents arrive with the police, he claims to be protecting her." tt0068931,3Lf57-rBck8,Steve poisons Arthur. tt0083629,WdD2JN10zpY,The beast within Michael finally emerges as his mother watches in horror. tt0086993,k-WrZcFJo2k,Christian steals a coconut which makes Bligh furious. tt0056241,IaoE6JAGhh8,"When Annie teaches Helen her first lesson, she hits Annie in the face with her doll and locks her in the room." tt0068931,JrGE2knBQsM,Arthur gives a lesson to Steve about killers in history who have become heroes and famous. tt0056241,Nk4JsPf8xX4,Annie remembers her heartbreaking childhood. tt0068931,zm7wCb8IXx4,Arthur deceives Big Harry before killing him. tt0078790,C2YKcU5rfm0,Bibi and Alphie reunite at the hippie commune under a bridge. tt0056241,Nt9wqkbXyyU,Helen gently gives Annie a goodnight kiss. tt0087231,FD9lsX7gyeo,Chris willingly gives his testimony to the FBI. tt0087231,4Spw9eH9GBk,Alex tells Chris that he is forbidden to quit working as a spy for the Russians. tt0068931,bCk9vtlnr34,"With no more ammo, Arthur uses a bulldozer to push the pursuing car off the mountain." tt0086993,Q067OuCUl7o,Bligh is exonerated of all blame and commended for his outstanding seamanship. Christian and his crew are stranded. tt0113026,rxwADdYa0YM,"Having matured since the last time they spoke, Matt proclaims his love for Luisa on the cloudy countryside." tt0087231,y7rxncDh6io,Chris reveals to Alex where he knows Daulton from after an argument breaks. tt0068931,e0cR6R3SccI,"Arthur aims carefully, and fires his rifle, which blows up a building." tt0056241,_W1NRq6DekY,Annie argues with the Kellers during one of Helen's tantrums as she tries to teach her some table manners. tt0068931,PXBBHe_SwSs,"Arthur explains to Steve his job of a ""mechanic.""" tt0068931,WoDvOu6PqLk,Steve and Arthur are spectators to Louise committing suicide. tt0078790,LIugIUixU_0,Dandi and Pandi of the disco group BIM pump up the crowd at the 1994 Worldvision Song Festival. tt0113026,NZqeFQasslA,"El Gallo outlines his plan through the song ""Abductions.""" tt0087231,ealJoNJuKnY,"Chris wants out, but Daulton blackmails him to stay." tt0068931,YBqruLJZAcg,Arthur and Steve jump out of their car at the road block and go on the attack with shotguns. tt0113026,X115jd2e6e8,Matt and Luisa jump on stage at the carnival and sing along to a silent version of 'Romeo and Juliet' being screened. tt0094910,X03tbD886IQ,Burns riles up his bosses by not censoring his language on the air. tt0305396,tfGpUcIEIf0,"President George W. Bush gets involved and has the military retrieve the ""ball"" Steve Irwin found." tt0056241,BEkjNAsakzA,Kate screams for Arthur when she realizes their baby is blind and deaf. tt0113026,g3jImb6V4wI,"Fathers Amos Babcock Bellamy and Ben Hucklebee stage a feud between themselves in the hopes that their respective teenagers will be wooed by the forbidden fruit, and date each other." tt0087231,yY6EgYygsAg,Chris deems Daulton as undependable when he finds him doped up on heroin. tt0056241,Ze8Yt5V7T6A,Kate and Arthur argue about how to handle Helen's deteriorating state. tt0087231,yUgQNj5-PaY,Daulton is interrogated and charged with murder in Mexico. tt0305396,_mVT_JmJ2Bo,Steve Irwin wards off a poacher in a crazy car chase. tt0079240,zMNUcNokvkU,"Pierce stands trial for robbing the train, but his honesty does not go over well with the court." tt0113026,uSvAfRaxSu4,"After he learns his heroics were for profit, Matt Hucklebee goes to challenge El Gallo at the fair, where he shows Matt how good a sword-fighter he is." tt0087231,gbEDjhLuPAs,Chris receives a surprise visit from an NSA Inspector. tt0094910,AwMjkeZbRZ0,Becker tries his best to win Laura's heart. tt0094910,JmcifAkvDn4,The psychiatric unit is filled with psychiatrists including Baird and Maitlin. tt0305396,P06IeXkgRNA,Steve Irwin gets yanked into the water by a crocodile he just roped. tt0094910,VklQQrb9-4c,Baird threatens to send Burns to Stateville Sanitarium for research on psychopathic patients. tt0305396,nfGKHa_mn20,Steve and Terri Irwin find a King Brown snake in the road and rescue it so it doesn't get run over. tt0087231,PFDnRg0lxUE,Christopher releases the falcon into the wilderness before he is captured by the FBI. tt0094910,usWA4j2ED_Q,"Becker solicits Burns, who happens to be mistaken for Dr. Baird, at the airport." tt0087231,82sgwc-34Cg,Daulton has a mental breakdown at an airport due to his drug abuse and Chris helps him through it. tt0094910,nvFln5J-6uY,"Vera expresses concern over her husband George, who's been in bed for two weeks." tt0079240,yqy6z3kxWdI,Pierce explains the procedures for transporting gold bars during the Crimean War. tt0113026,tYmvgGjSiN8,"Louisa Bellamy sings about her desire to experience the world, for better or worse." tt0094910,fXBsUOysL3c,Burns gives advice to a premature ejaculator on the air. tt0079240,pHu6mCqzpyw,"Miriam seduces Fowler in order to obtain a copy of his key, and a sudden police raid saves her from having to seal the deal." tt0079240,kV36CHsDZ_c,Pierce works on top of the speeding train to secure a rope for climbing down the side. tt0081071,-GSZwG_s-8A,Cole and Sam duel in a knife fight for the affection of Belle. tt0113026,d3ZUSI1_lOc,Amos Babcock Bellamy and Ben Hucklebee sing about manipulating their children by saying 'no' to things they want them to find interest in. tt0056241,BWYNt1N6xWQ,Annie finally breaks through to Helen in order to teach her again. tt0094910,5FQFrCgi8d8,"With Lopez threatening to commit suicide despite Baird's pleas, Burns tries to talk him down." tt0087231,OK77tkb6D0c,Chris offers Daulton a partnership in espionage. tt0079240,qa2Ng4a5yk0,Barlow chases down Clean Willy and strangles him for betraying the gang. tt0305396,m-YWYdwcexU,Steve Irwin explains the ferocity of a spider's fangs and how researching their venom can help us understand and protect their habitat. tt0305396,Qr9F2ij1jfI,Steve and Terri Irwin find a way to sneak up on the crocodiles while searching for them after dark. tt0113026,CFCnY49pyII,"After their adventure in the moonlight, lovebirds Matt and Luisa sing ""Take Away.""" tt0081071,zSCukxfXdAQ,The James-Younger gang robs a carriage in the woods. tt0081071,NsMwPIy4Ax4,The gang gets into a deadly shootout riding out of Northfield. tt0056241,NMOjCohQbXY,"Annie teaches Helen that ""things"" have names." tt0079240,Lgmzj8eWK8M,Pierce describes to Miriam the fake persona he has created for himself. tt0094910,-rebHHoZJSM,Becker makes jelly-less donuts while Burns gets a call from a woman who is fed up with her husband being a slob. tt0056241,QlKuJBiw1ac,Annie Sullivan's teaching finally comes to fruition when she tries to get Helen to refill a pitcher. tt0081071,aErChTKF6u4,"As Jesse James straightens a picture on the wall, Bob Ford shoots him." tt0113026,dDtFWw1mZuw,Inquisitor Luisa Bellamy asks El Gallo how he survives and how he deceives people. tt0305396,sJGWczuXzT8,Steve and Terri Irwin follow a croc up the river until he runs out of water and they capture him on land. tt0079240,0t1xR1LX5Kg,"Pierce forces Agar to strip to give up his clean clothes, and they throw the gold bars off the train." tt0305396,iWJTDTs9ymk,"Steve Irwin explores a spider hole and finds a male spider dead, having been killed by a female after mating." tt0076210,vIaVITC62Cs,"Andrew is chased through the jungle by he knows not what, but is saved when he runs into Moreau" tt0079240,0JBU9hgQ_T0,"Pierce and Agar concoct an elaborate scenario to copy the keys in the train station, but the police arrive too quickly." tt0057115,H3KbLBwQFW4,Hilts meets Luger for the first time after his attempt to cross the camp warning wire. tt0057115,jKVDdMG37ig,The guys tell Roger that they need more wood to keep the tunnel from collapsing. tt0113026,opoVbcNO48o,El Gallo conducts the characters in the fake abduction to show Matt Hucklebee as the hero that he is not. tt0056241,jtQcr7lJXB0,Annie convinces Arthur and Kate to grant her complete control over their daughter in order to save her. tt0054047,JNuiAZP2dtM,The seven teach the peasants how to shoot the guns they took from the bandits. tt0054047,Kk6l301jwOk,"Vin approaches Chris and the peasants at the bar and, liking the company, joins the team." tt0079240,ugm8RMqRSxs,Agar has 75 seconds to copy the keys while the guard is in the bathroom. tt0054047,L9-FR2MUfrU,"Aided by the seven, the peasants rise up against the bandits and Chris kills Calvera." tt0054047,9yh3GgjFpxw,"When Chico asks to join the team, Chris tests his response time by making him clap." tt0079240,w3-djlpw4iw,Pierce emerges from the courthouse a folk hero and pulls off a daring escape with the help of Agar. tt0057115,RZa79QGDeo8,"While spending their punishment in the cooler, Hilts and Ives make more escape plans." tt0054047,yjEcOkwV2MU,Chris and Vin take a dangerous ride through town to the cemetery where they face down six gunmen. tt0052832,V39FjO5t9BY,"Just as Lady Torrance and Val seem prepared to start a new life together, it all goes up in flames." tt0054047,gKpPQ6SqHvQ,Henry tries to convince the hearse driver to bury the dead man. Chris Adams volunteers to drive the hearse to Boot Hill. tt0079240,JAz7hBbOoc0,Miriam poses as a grieving woman in order to smuggle Agar onto the train in a coffin. tt0054047,vtxPupFohQA,Chris and the other six hired guns face off against Calvera and his men. tt0082416,_yY3iR3yuT0,Anna recounts to Charles how she acquired her shameful reputation. tt0054047,nyMtN_aHC_8,"After running off Calvera and his bandits, Chris and the others discuss the life of a gunfighter with Chico." tt0057115,eSYNuO9GTU4,Danny starts the dig for his 17th tunnel while the guys cover for him. tt0054047,w4i_ZwMT3H0,Chris and the others hand their weapons over to Calvera. tt0057115,7WCR4dZt7Uw,Hilts and Ives plan to burrow out of the camp like a couple of moles. tt0082416,LQhfDQoYERY,Charles eyes Sarah through a storm for the first time. tt0052832,j5Fd6TqePnk,Val explains to Lady Torrance the types of people in the world. tt0082416,RhMsnnZ-0qM,"Charles comes back for Sarah after he's left his wife for her, only to find that she's fled to London." tt0054047,AU-paVv6zTk,"Forced into a duel by a haughty gunman, Britt kills the man with his throwing knife before the man can even draw." tt0076210,qPXny_mZ0iE,Andrew recounts his past in defiance of Dr. Moreau's wishes to forget the past and embrace his inner animal. tt0082416,zLhfa5tKJyY,Charles checks in on Sarah as the romance escalates. tt0052832,hfufT3MZQm8,Carol puts on a drunken show in a juke joint. tt0076210,hh5iOitreQ8,"The mutants ransack and destroy Moreau's lab, but things go wrong when they decide to release the animals." tt0076210,nDGZMXNYfF4,"Andrew and Maria reach the boat, but before they can escape, they must defeat Bearman." tt0076210,coOguh0UhcY,"Andrew enters a cave and is confronted by many different human/animal hybrids, one of which attacks him." tt0076210,jVjq_m-PWSQ,Dr. Moreau reestablishes his dominance over his creatures. tt0082416,6PvYbL69oyE,"Charles realizes that he was Sarah's first sexual partner, and declares that he will leave his wife and come back for her." tt0052832,cFZWNfXzFLU,Snakeskin asks the judge for a chance at a new beginning. tt0076210,BJ1tNYfDZa4,"When Andrew finds the lab, Moreau uses Bearman as his example to explain his attempts to transform animals into humans." tt0054047,DcmzHtokiMw,"When the bandits return to the village, Chris and the others advise Calvera to ""ride on.""" tt0057115,JpvqpzU7eEc,"When the guys aren't looking, a desperate Ives tries to escape for the last time and is shot on the fence." tt0098546,XI5o939LHrE,"When Stanley has his mop taken, George takes pity on him and offers him a job." tt0057115,9zugv1NdMj4,Eric demonstrates his invention to the guys on how to hide the tunnel dirt from the Germans. tt0076210,-YGxccN_j6o,Dr. Moreau attempts to sway Andrew's mind toward its primal instincts. tt0082416,K0uzT9bWryU,Anna leaves the wrap party without saying goodbye to Mike. tt0082416,kp2UhFQQb_k,At the train station Mike asks Anna to stay with him. tt0057115,BaFBFmJG-LI,"Hilts eludes the Germans on motorcycle, but is captured when he gets ensnared on a barbed wire fence." tt0057115,tyazEYlueAw,Danny grows claustrophobic underground and aborts his place in line to escape. tt0082416,37zZ1ULVBa4,Charles and Sarah re-ignite their love affair three years after their last encounter. tt0052832,dgGvAQ3kcs4,Val propositions Lady Torrance for a job at her store. tt0082416,KwDvrv9byqM,Mike and Anna rehearse a scene then transform into their characters. tt0076210,HRrbt00Abv0,The mutants murder Moreau and decide that they will no longer obey his laws. tt0057115,frTBOhJ0XHU,"Danny, Sedgewick and the guys elude the Germans from their secret during a surprise inspection." tt0049406,s4veow_qEDk,"As Johnny lays out the details of the plan, a sudden noise from nearby signals the presence of an intruder." tt0076210,HSc1i2XKjCo,Montgomery threatens Dr. Moreau after Andrew becomes the next test subject. tt0076210,WK29KgQKP8s,Tigerman is clearly jealous of his all-tiger counterpart. tt0057115,hhGWxqj_bC0,Hilts is caught and returned to camp. Luger is removed from command for the escape of 50 prisoners. tt0049406,e5Tb2YSkGh0,"Moments before Johnny and Fay board their plane to escape, fate intervenes and sends their precious cargo fluttering in the wind." tt0049406,jIyn1q4Ilpw,"George lets the heist plan slip to his wife, Sherry, in an attempt to please her." tt0076210,ogkh8GaUkBE,"Andrew wakes up to discover he's now part of the volunteer"" pool for Dr. Moreau's clinical trial." tt0049406,IfwHIwPbHaI,"Johnny holds up the racetrack bank clerks, stealing millions in the process." tt0049406,FHUpEG_qdVc,George's loyalty is in doubt when Johnny catches his wife at the hideout. tt0049406,Tg3A7u83stA,"Waiting for Johnny at their safe house, the group is ambushed by Val and his associate." tt0049406,gsWHt9OIofc,Johnny reveals his motivations on why he's going to risk his neck over the planned heist. tt0055184,9IuMUzCJ5m8,Roslyn engages in a game of paddle ball at a bar and almost starts a fight. tt0055184,gXHhy4c4UZw,"Fed up with their callous treatment of the wild horses, Roslyn tells the cowboys what she thinks of them." tt0049406,D7H61Y1yUr4,Maurice wrestles with the security guards to create the necessary distraction for Johnny to slip inside unnoticed. tt0048424,U4se5hr9O84,"Feigning his grief, Mr. Powell convinces Mr. and Mrs. Spoon that his wife has run off with another man. The reality, however, is much more sinister..." tt0049406,77Uk4kkFEnA,Johnny sees through Sherry's veneer and lays down the law. tt0048424,q3JlGPF4Ko8,Mr. Powell drives into a new town and speaks aloud to the Lord about his string of past murders. tt0120757,C1QZn415vh4,"As Linc and Pete try to survive the shootout, Julie stops Billy from getting away." tt0049406,mIIZqCaHUFI,"Mortally wounded, a betrayed and beleaguered George shoots and kills his wife, Sherry." tt0055184,dTSXhhHDOk0,Roslyn can't bear to see Perce ride a bull at the rodeo. tt0055184,ax0943uaZUk,Gay surprises everyone by releasing the stallion he just caught and choosing to live a new way. tt0086619,LwdMHOiN6ko,Yentl sings about falling in love with Avigdor. tt0048424,5rlFiEe6S24,Ms. Cooper is in awe of the strength of little children to endure in a world that is harsh and cruel. tt0086619,au9pGQ9AuUs,"Dreading her impending nuptials, Yentl sings ""Tomorrow Night.""" tt0055184,0vOulnDhH8A,Perce agrees with Roslyn and releases the captured horses. tt0081071,dEnoofPhBtE,Frank heads off with his brother to the disappointment of Cole and his brothers. tt0055184,k8oFMkg7icg,"After Perce releases the horses, Gay wrangles the powerful stallion by himself." tt0048424,8hG-F24aroc,"Mr. Powell follows the children to the cellar where they claim the money is hidden, but he soon discovers that it is stashed inside a doll." tt0048424,MlSzWgyNsAI,"After escaping Mr. Powell, Pearl and her brother John float up river in their boat as the animals of the night watch on." tt0120757,2KwdvymU_ao,Linc is surprised when Pete pulls a gun at a suspect's trailer. tt0048424,auccmqO45a8,Ms. Cooper takes to arms when Mr. Powell tries to take the kids away. tt0072251,efqBAU-lT5Q,Mr. Blue informs the passengers that they have been taken hostage. tt0055184,qUqtwCfbjVw,Roslyn and Gay have an honest discussion about love. tt0063415,fWBAKMYKPSc,"Hrundi encounters Wyoming Bill, a famous screen cowboy." tt0055184,_e917WJMzl4,Guido tries desperately to persuade Roslyn to leave Gay for him. tt0063415,GGkg5ytaXlA,"Performing in an epic film, actor Hrundi refuses to die -- or stop bugling." tt0081071,0J_lTFS0ouM,"After Ed loses his cool during a bank robbery, Jesse cuts him off from the gang." tt0048424,lDetwrOZPZg,"John makes a promise to his father to always watch over his sister, and to protect the hidden money." tt0120757,BHEe0PqpvNw,"When Linc accuses Greer of being dirty, Greer tells the squad to focus on gathering evidence." tt0081071,undTPa_iq1Y,"When questioned about the James gang, the Younger brothers keep quiet." tt0048424,9PyNL2ahKwc,"As John and his younger sister try to rest, they are awakened by the haunting voice of Mr. Powell, as he stalks them from a distance." tt0120757,czBTbtS1YpE,"When Linc has his cover blown by Billy, Pete and Julie send in his car." tt0081071,kCsm28_ULw4,Jesse exacts revenge for the murder of his younger brother. tt0081071,LcHtYOV0bVo,Belle and Cole negotiate her asking price with a game of cards. tt0120757,l2g7v4DYYik,Linc pursues a suspect who won't shut up once he's caught. tt0098090,3JL2XIwueEA,"The legend of the Phantom is told, and the secret of how he can be killed is revealed." tt0055184,yKxkjtLBq6I,Gay tries to convince Roslyn to stay in the country with him. tt0120757,MBYRmSeYB4A,Pete gathers evidence at the house where Bob is meeting with the other dirty cops. tt0055184,6ISHd9kAsTw,"Isabelle proposes a toast to Nevada, the place where you can leave everything." tt0120757,eOdZMwIh1I8,Linc reunites with Pete and Julie and they try to piece together the trail of dirty cops. tt0072251,IXi_VrFakL0,"Forced to decide whether or not to pay the terrorists, the mayor turns to his wife for advice." tt0120757,7dqjg1TwbXs,Pete and Linc witness a double murder when their informant and a suspect are killed. tt0063415,aA_j4KpP0W0,"When he dips a dirty shoe in an indoor canal, Hrundi loses it to the current." tt0055184,dzbazAbjk8w,"Roslyn and Isabelle meet Gay and Guido, who invite them to go to the country with them." tt0098546,GYYuyvyr2HY,"Mr. Earley comes on the ""Town Talk"" show to demonstrate how NOT to use a table saw." tt0120757,JFblxacw_CA,Briggs questions the squad about where they were when Greer was murdered. tt0098090,c93bejkDIuU,"The Phantom confronts a critic about the negative review he gave Christine, and then kills him." tt0098090,080g4Ylkv2M,"Christine auditions for a part, when an accident suddenly happens on stage and somehow mysteriously sending her back in time." tt0063415,sR176VaCLXg,"Dining with the guests, Hrundi is seated considerably lower." tt0098546,4BUDwj_mXKE,A low budget commercial for a local store that specializes in spatulas. tt0054428,mvAkLCKYvwU,Charlie's romantic reverie is interrupted by Kiowa arrows. tt0086567,9RRGvAB4HF8,A launch detection shows a full scale Soviet Strike and General Beringer orders the move to DEFCON 1. tt0054428,ex_KPw6bVwQ,Charlie kisses Rachel after proposing marriage; Rachel demands Ben's blessing. tt0054428,6d37Zy95yDI,"Facing execution, Kelsey swears to his story about Rachel's bloodline." tt0098546,tHe6ar-X2cQ,George and Bob get inspired when they see Stanley on his new children's TV show. tt0054428,qTpB6q-YJwM,"When horse tamer Johnny gets fresh with Rachel, Ben takes quick action." tt0098090,ioXW5Fg_q_g,The Phantom watches Christine's performance from the shadows and enjoys it immensely. tt0063415,DCzA_11fJZE,Hrundi attempts to waltz with a young mod. tt0054428,lGlvNt-N140,The Kiowas attempt to crush the Zacharys' roof with cattle. tt0094142,_j0KhXH6xLE,"When the booby trap doesn't work on Momma, Larry tries it himself, and gets tossed down the stairs." tt0063415,w7ngnhj4snE,Hrundi is honored to have his hand crushed by Wyoming Bill. tt0086567,bh2ShAQ4lw0,David realizes that Joshua is still playing the game. And people are going to die. tt0063415,gIGtDdiHlA8,"Hrundi attempts to stop a running toilet, but soon gets in over his head." tt0063415,TlQ_qOWPTnE,"Intrigued by a flashy control panel, Hrundi accidentally broadcasts his voice to the whole house." tt0063415,03QHVB_n6N8,"Attempting to mingle, Hrundi mistakes a tragic story for a joke." tt0086567,1vmnp7ghGPk,"Falken explains the value of extinction, but David doesn't agree with him." tt0063415,LKpLGai9GxA,"After wreaking havoc on various appliances, Hrundi graciously answers the telephone." tt0098090,C2PhwDzcQJY,"Christine returns to her own time, avoids a deadly accident, and lands the part." tt0054428,jH2OKc8HPw8,"Ben discredits Kelsey's words as lies, then Mattilda executes him." tt0072251,9fQG9Zhv2_I,Garber gets fed up with Correll's complaining about getting the trains back in service and physically confronts him. tt0072251,e-5SVm2NUe8,"Garber tells Mr. Blue his demands will be met, and Blue shares the news with the hostages." tt0098546,xOCBpMs-9hY,Stanley gets abducted by some thugs. tt0098090,pOQv_Ng3CaU,"Christine sings with the Phantom in his lair below the opera, and then later, he makes a dark marriage proposal to her." tt0055614,DGtD5QAaAGY,"Maria, full of hate and sorrow, points the loaded gun at the Jets and Sharks." tt0086567,LwDbgE54QYE,David insults his condescending teacher in front of the whole class. tt0098546,XHbdoO7uCkk,"Promo spot for the new show, ""Conan the Librarian""." tt0098090,VI9lWn1dpzg,Christine fights back against the Phantom and his clutching grasp. tt0098090,ZU1CFYBhGT8,The Phantom creates a grisly diversion in order to capture Christine. tt0055614,9K_4ZaMc1-4,"The Jets happily make their way through the streets, owning their turf." tt0086567,MpmGXeAtWUw,Joshua learns the results of Global Thermonuclear War and decides to play a nice game of Chess. tt0383216,m5bPIty4Dww,"Sharing a bed, Clouseau and Ponton discuss women." tt0263757,h44egWnbrrg,Molly gains some self-respect when she refuses to take Neal back. tt0102926,DE71sZbjvbs,"Lecter offers to profile Buffalo Bill, if Clarice will arrange his transfer to a cell with a view." tt0072251,sXtlR_7l6xQ,"Lt. Garber speaks to Mr. Blue for the first time, and Blue gives his demands." tt0102926,RZAkOfxlW6g,"In a provocative chat with Senator Martin, Lecter reveals Buffalo Bill's identity and whereabouts." tt0055614,m7xTvb-FAhQ,Tony and Maria sing on the balcony. tt0100530,pKJOqt7BtB8,Katya informs Barley of her history with Dante. tt0098090,naKm_rLxRCs,"As The Phantom holds Christine hostage, Richard enters The Phantom's lair to save her." tt0100530,Uqn_pbUUfKg,Ned teaches Barley the rules of the spy game. tt0383216,4qFxfRN75HQ,Clouseau rids his new office of bugging devices...and giant globes. tt0100530,J2yzM2nkylI,"Russell uses a metaphor to negotiate with Barley, but Barley does not take the bait." tt0383216,3pON6S9aDy4,Clouseau tests Ponton's self-defense skills. tt0100530,nBRPKaHMFn4,"Russell comes to England to tell Ned to drop the case, but ends up admitting he thinks Dante is for real." tt0072251,WAwbrOJMKEc,"When Mr. Blue realizes that Lt. Garber has cornered him but will not kill him, he takes his own life." tt0383216,ti42vZVtgvY,Clouseau updates a wary Dreyfus on his investigation. tt0102926,99Ptctl5_qQ,"After probing Clarice's background, Lecter mocks the FBI questionnaire and issues a gruesome warning." tt0102926,UhDZPYu8piQ,Lecter helps Clarice analyze Buffalo Bill's nature. tt0086567,k9WhxTOA19s,"Overwhelmed by the specter of inevitable doom, David breaks down to Jennifer and they kiss." tt0102926,BWDYUMTmHjU,"Lecter and Clarice discuss the modus operandi of Buffalo Bill, a serial killer at large." tt0102926,OLBotH5Bki8,Lecter draws a traumatic memory from Clarice : the slaughtering of the spring lambs. tt0072251,hIoCskqjp9c,"Mr. Blue gives detailed instructions on the money drop, unaware that the cash has not yet arrived." tt0094142,eo6MfN5Lcws,Owen sneaks up on a sleeping Momma with a trumpet; Momma racks Larry with a cane. tt0383216,x87nnioiLP8,"Clouseau loses his ""miracle pill,"" setting off a chain of mishaps." tt0094142,RQk7-GqzZCc,Larry meets Momma and gets hit in the head with a frying pan. tt0263757,rfdF7LBQ8Ic,Molly has trouble letting go of her things at her yard sale. tt0055614,hMMAB3MNCKw,Riff counsels the Jets to keep things cool. tt0072251,bkpuLB3ftow,Mr. Green enjoys some quality time with his portion of the ransom money until the authorities show up. tt0102926,YlRLfbONYgM,Clarice shares painful memories in exchange for Lecter's psychological insights. tt0383216,RiBRrKC_6pE,Clouseau gets his hands stuck while questioning Larocque. tt0070915,aClqNJOXy-w,Gator makes a prison break but is chased down. tt0100530,cdFiubg8UnQ,Ned reads a letter detailing how and why Barley sold secrets to the Soviets. tt0070915,G-tFJHYBqjo,"Gator gets introduced to Rebel"" Roy at the pool hall." tt0055614,eZtQn-GAemQ,The Jets challenge The Sharks to a rumble and agree on a location and weapons to be used. tt0055614,_SQ4ogstDVE,Tony and Maria sing about their hope to run away together. tt0070915,6Dyph0wJBcA,Gator is anything but intimidated when Big Bear sticks a knife up to his throat. tt0102926,yNeQm5aqrHo,Clarice has a growing suspicion that the caretaker of Mrs. Lippman's house is the long-sought killer Buffalo Bill. tt0070915,qqaFGM-AyNA,Gator is chased by a cop and loses him after a high-speed chase. tt0072251,nDlEcFRZUYI,Green gives himself away when he sneezes and Lt. Garber recognizes him as Blue's accomplice. tt0094142,gpW3ywIoyr0,Owen scares Larry when he realizes that he didn't keep his promise to kill Momma. tt0070915,89uZslA-efY,Lou takes off her dress and takes a romp in the lake with Gator. tt0070915,W6udsqodIzo,Two sexy young girls flirt with Gator. tt0383216,ZXfw1y8Mbfo,Clouseau questions Xania and makes good use of her soundproof recording room. tt0070915,fgEjlKNllEU,Lou does her best dirty talk to arouse Gator's attention. tt0072325,boCpijI2k5I,Dorinda shows off the merchandise to some fellow pimps. tt0094142,v3dCP69-IFU,"Tired of his mother's abuse, Owen poisons Momma's Pepsi, but then has second thoughts." tt0055614,YhSKk-cvblc,Anita sings about the great land of America. tt0070915,g-2hB5Kd5aM,Connors and Junior chase Gator. tt0263757,CtTjc4nJlDM,Ray and Molly have an all-out insult brawl over some dishwashing. tt0102926,V5dA92wqmME,"Lecter greets Clarice, whom he learns is an FBI trainee." tt0070915,cRsKzW5Fszc,Gator fights off his captors and Big Bear to escape with Lou. tt0383216,Z6oeAdemFZw,A dialect coach asks Clouseau to repeat a simple phrase. tt0100530,Ii5azc-GzXg,American Colonel Quinn leads an informal interrogation on Barley who replies with wry wit. tt0102926,QRqXBsgnYok,Buffalo Bill terrorizes Catherine while holding her in a well in his basement. tt0072325,OHHn-_aJQ7s,Truck takes out a hired killer with the help of his trusty sidearm. tt0263757,lu9yr0xefYQ,Molly tries to get Neal to stay as he desperately tries to flee her chaotic apartment. tt0383216,eu-afVml4MM,"After saving Nicole with the Heimlich, Clouseau questions Ponton about the latest murder." tt0086567,KXzNo0vR_dU,"David and Jennifer hack into the computer and initiate a game of ""Global Thermonuclear War.""" tt0263757,DDb0S3nIfNA,Molly meets Ray in the bathroom at her birthday party and they talk about wrinkles and germs. tt0263757,NG4z6W4Zp_0,Roma fires Molly. Molly criticizes Roma's mothering. tt0383216,ZgBPFyzsqFg,Clouseau causes an international incident getting through airport security. tt0072251,s-Sx_dMw8oA,Mr. Blue and his heavily armed men take control of a subway car. tt0092003,L8_G6h_pK1o,"In the pale moonlight, Curly thinks about the trouble that is up ahead." tt0094142,7EXefCHq6OQ,"After hearing about his wife's demise, Larry tries to convince Owen to turn himself in." tt0086567,tGNBdjVO04Y,Joshua searches for the codes to launch the missiles while McKittrick and General Beringer argue about what to do. tt0072325,cMnkhxzCLyA,"After Garrity spouts off some redneck racial slurs, Truck beats the hell out of him." tt0054428,Om2UW4c_vqU,"The Kiowas come for Rachel, attacking the Zachary home." tt0054428,9anDqvXfdu4,The Kiowas seek to trade with Ben : their horses for his sister. tt0072325,nCgg5XIxxjY,Truck and Jerry wreak havoc in a bar. tt0055614,RgHtBxOs4qw,Maria sings at the bridal shop. tt0100530,6jS65g5UnWM,Katya turns the tables by asking Barley some tough questions of her own. tt0098546,4ega5Rcct2s,"TV Commercial for U-62's new action show, Gandhi II." tt0072325,uaDgwjVu8ik,Truck and Jerry pursue Gator through the streets of Los Angeles. tt0072325,YTnxiXd0qwA,Truck does not hesitate to kill Dorinda when she pulls a piece on him. tt0057413,nwQ5zHdDFng,"Oblivious to his wife's deception, Clouseau is pleased to find his violin repaired." tt0094142,1cTY-JnvfYI,"When Owen is about to lose it and kill Momma, Larry agrees to do it for him." tt0054428,cv62uysSvQE,"When all seems lost, Cash returns to fight alongside Ben ; Rachel kills an approaching Kiowa." tt0072251,pcyg0H7EU3c,Lt. Garber bargains for more time from Mr. Blue to no avail. tt0054428,gwEeqSGSL3g,"With rifles blazing, the Zachary clan defends their home from a Kiowa attack." tt0094142,9ecF-Go9lt8,Owen and Larry save Momma from falling off the train... then she kicks Larry off the train. tt0057413,SOnb-cyRdAg,Simone finally whisks Clouseau into bed and the others out the door. tt0098546,cvy2tRH7HNE,"In this Indiana Jones parody, George steals the Oscar statue, runs from a giant rock, and gets crushed in the street." tt0057413,ZYLekT6cYwY,Sir Charles and the Princess discuss their previous evening together. tt0057413,Wh4oSUvSQTQ,Three different men pursue Simone in her room; she works to keep them apart. tt0057413,uvXwt5HNFLU,"Under cross-examination, Clouseau is framed as the thief." tt0086567,U2_h-EFlztY,David hacks into the school computer and changes Jennifer's flunking grade. tt0100530,31usxLUiuhs,Dante meets with Barley to discuss his hope for a new Russia. tt0100530,ulMNuwN1C-8,"Barley describes the happenings at the writer's retreat, including his ability to improvise a jazz band." tt0057413,z3YKH7m0P4c,Simone pretends to bathe while hiding her men from Clouseau. tt0055614,DyofWTw0bqY,Tony sings of his newfound love for Maria. tt0072325,lTd2m2J2XmU,Truck and Jerry take out Gator in a gun fight. tt0383216,1daKtciMLiE,"Questioning a French soccer team, Clouseau attempts to identify distant footsteps." tt0086619,HHFbltJSRxo,Anshel relishes getting accepted to the yeshiva. tt0102926,ovQk7fd4_Co,"Clarice navigates a dark cellar to find Buffalo Bill, unaware that he's watching her through infrared goggles." tt0098546,i_9C6d3VVHM,"When R.J. misplaces his file, he blames Stanley and fires him." tt0383216,uDqSQGOtixE,"Surrounded by French media, Clouseau has a message for the killer." tt0263757,raVKed5rdgM,Molly's boy target at her birthday party is the musician Neal - and she HAS to have him! tt0086567,F7qOV8xonfY,"David teaches Joshua the no-win game of Tic Tac Toe and, in the process, averts global thermonuclear war." tt0098546,-ui9TwNrNEw,George imagines himself rescuing Stanley as Rambo. tt0094142,7FgWn6jQuTQ,"Larry watches his ex-wife, Margaret appear on the Oprah Winfrey Show to promote the books she stole from him." tt0092003,tk2vET4aFW8,Ringo kills Plummer in a dramatic standoff. tt0092003,TO01P7dpKV4,Ringo and Dallas flirt before they embrace each other and kiss. tt0092003,UdT8lSEVHZU,Curly and the other men defend the stagecoach from an Apache ambush. tt0092003,z5s04znNyMM,"Ringo offers Hatfield some liquor, but he refuses." tt0086619,wPO6KyIYst4,"Yentl laments the fact that, because she is a woman, she is not allowed to fulfill her ambitions of studying the Talmud." tt0086619,yAgMoKBGjT8,"Yentl witnesses how Hadass waits on Avigdor hand and foot, noting through song that it's no wonder he loves her." tt0092003,2TITAbyObTw,Curly and his men surround Ringo and arrest him. tt0092003,q8CXKTH5950,"Mrs. Mallory is happy to meet her new baby, but surprised to learn that the child is a girl." tt0092003,3t1YQOfYndM,Curly and Teddy have a chat about Apache attacks. tt0092003,zRsPSJWe5sY,Trevor Peacock pitches his burbon to the local saloon. tt0092003,bLmYWtqC8pc,The men watch as Ringo and Dallas ride off together on their stolen horses. tt0084732,5FMiM08gFtQ,Gail corners Brooke on the balcony and tells her to jump. tt0107863,DeYew_zLc_c,Jesse rescues his friends while dressed as a Ku Klux Klan member. tt0091875,6CxOSOVI76c,"While Danny and Ray argue about who shot Gonzalez, guns fire again forcing them to finish their job." tt0108187,H6fBnHvdZeI,Jacques pretends to be a physician when summoned for Hans. tt0098042,aUdbjoT_DPQ,An impromptu game of football in the store leaves Ernie out cold. tt0108187,sCJ_SlkCT_o,"Jacques attempts to infiltrate a club in a disguise, but is immediately discovered." tt0108187,jd3KM4imjr4,Inspector Clouseau's longtime friend Cato offers his services to Clouseau's son. tt0098042,XVGIvc6G6yg,"Lester asks a nervous Dave about Ernie's whereabouts, unaware that the evidence is hanging before his eyes." tt0108187,p0Ov897MYiw,Commisioner Dreyfus tails Jacques only to discover the Inspector already has someone hot on his tail. tt0098042,kCtsoBRr1Z0,Sunny seeks help from the bumbling Lester. tt0108187,zZlbperC3ns,Commisioner Dreyfus weds Jacques's mother and discovers there is another member to the family. tt0108187,dPk7S_LiI1I,"Jacques uses the hospital remote in order to adjust the television, but instead sends the Commisioner for a ride." tt0098042,s2xKn06X9cQ,Dave realizes that he is getting deeper and deeper into trouble. tt0098042,goOhv_1FYsE,"Dave can't seem to do anything right, so Sunny has to clean up his mess." tt0098042,S-hMzdxcOD0,Ernie toys with the idea of sending Dave to an icy grave. tt0108187,jZXHcvhr2p8,Officer Jacques makes a fashionable entrance at the scene of an accident involving Commisioner Dreyfus. tt0098042,0NSgeb0dBLY,Sunny decides the freezer is a good place to keep Ernie. tt0108187,RFAfyPXisjQ,Commisioner Dreyfus discovers revealing information about Jacques' family from his mother. tt0108187,8ygfQ6oSNiU,Jacques consults Professor Balls for a disguise. tt0107863,mjo4d488_yE,The posse attacks the enemy camp and acquires a case full of gold. tt0108187,l3t1ZSuwLzg,Jacques fumbles in his rescue of the princess while Hans battles the invading militia. tt0098042,wy1eWsC2sL8,Dave is startled to find his partner's dead body in the freezer. tt0098042,iGJCWeK7YCA,"Sunny tries to negotiate with Dave, but when he balks, she locks him in the freezer." tt0107863,YhdrJfDiIkM,Jesse and the posse overpower Col. Graham's forces when they are found A.W.O.L. tt0070653,Ip-dPqtyXRs,"When McLeod and Filchock recruit Scorpio to kill Cross, Scorpio begins to ask questions of his own." tt0098042,QNrM2ICShJ4,"After a few anxious moments, Sunny and Dave successfully push Lester's car into the river and watch it sink." tt0114287,9u_76dg61ns,"Archibald wins"" the sword fight, but while Robert is on his knees, he grabs the blade at his throat, then kills Archibald." tt0114287,o_yIykgKbeQ,"After Montrose acts against them, the villagers and Robert discuss how best to retaliate." tt0091875,vjKoaNcefSU,A little kid flips off Ray while Danny questions a woman about Gonzalez. tt0084732,Rc8ybU83qHU,Sam's /*259*/) mother helps him work through George's dream in the hopes of finding clues about his death and expresses worry at Sam's involvement. tt0114287,CeYoUJYqAQc,Guthrie challenges Cunningham to a sword fight. tt0122690,hghczTVgav0,Sam tells the guys a story about interrogation and the limits that every man has. tt0107863,mCVwWrfOT3s,Lana criticizes Jesse for leaving. tt0385988,FypqAWaSTFU,"After Godfrey's powers turn the Wolf into a man, he learns that there are still people who do not fear him." tt0385988,6G8ExBEJEMQ,"Dagger tricks Linet into believing that he is her grandmother, and then attacks her." tt0122690,Rt8Bfir3A4Y,Sam chases Deirdre through the streets of Paris. tt0114287,a2gMY3TRx8s,"Robert explains honor to his children, then has a moment alone with his wife Mary." tt0107863,MYuEOOe0xSE,Col. Graham forces prisoners to choose between execution and fighting in battle. tt0114287,aYbNb8eaTCY,Archibald sets fire to Mary's house then rapes her. tt0122690,bMDdjhWe9NQ,Sam bravely walks Vincent through the steps as he surgically removes a bullet from Sam's abdomen with no anesthetic. tt0122690,XnD8FsykE08,"The team finally catches the target and acquires the briefcase, but they are betrayed." tt0122690,fR0Sh0C6jFE,Sam chases Deirdre through the streets of Paris and finally catches her. tt0122690,OrZB5n0tNAI,Sam exposes Spence as a fraud. tt0107863,69aok-u1esc,Jesse reconnects with Papa Joe. tt0091875,-Luy502C920,"Danny and Ray are confronted by two muggers, who are surprised to learn that their ""victims"" are cops." tt0385988,NG1KirPJLSQ,Lady Jean sings a comforting lullaby to a frightened Linet before bed. tt0114287,P_GbbXL9E78,Robert and Archibald engage in their first sword fight. tt0091875,hkFSMV93VeA,"Ray and Danny drop their pants at the order of Gonzalez, chase him outside, and ultimately lose their suspect." tt0107863,1D-v8EcGV2Q,Jesse stops into a town with his posse and kills the demons of his past. tt0091875,sA0SngAZcdA,Danny and Ray catch Gonzalez and make him recite the Miranda rights. tt0091875,ToK_9NLtr7M,Snake and Julio's plan backfires when their own men turn out to be cops. tt0107863,jusrkQ2Zg8o,Jesse kills Col. Graham in a final showdown. tt0107863,MJ0qQkcBNPs,"Jimmy recruits Father Time into the posse, but Col. Graham arrives and forces them to run." tt0091875,hgFClV33aH0,"When three suspects pretend to not speak English, Ray and Danny pull out something they can understand - their guns." tt0385988,tm6qzug9AS8,"Allen sings ""Green in the Blue"" with the townspeople." tt0084732,5F6pso8VBhc,Sam stops by Brooke's apartment the day after the thief who stole his jacket was murdered. tt0070653,KE0awhgSLmE,Cross gets the drop on an assassin at a construction site and throws him off a building. tt0114287,xR1YEOrYOdw,Rob confronts a band of cattle thieves and kills their leader. tt0091875,aJhtBJETQF8,Danny and Ray make Snake take part in a rigged line-up of suspects. tt0075268,5TbuwxXBfoA,"Craig is introduced to the ""Grease Man"" and ""Batman""." tt0091875,nn-nEk5kpz0,"When Ray and Danny refuse Julio's bribe, they get dumped into a trash compactor as it starts to compact." tt0385988,v1dTnLPL9gU,Dagger sings a song about strangers with Linet in the woods while also trying to secretly attack her. tt0385988,2PVdztmMSzI,A fearless and innocent Linet sings a song in the woods about hope and confidence. tt0070653,4GLcbZQoPNk,Cross creates a distraction to get the drop on McLeod. tt0385988,blDYzZvYAak,A confident and conceited Dagger sings a song about his evil ways. tt0100680,OQVIkVIf_BE,Stanley gets defensive when the shoe repair man asks him to sign for his shoes. tt0100680,mUzu93AhMuE,Sharon throws a fit when she discovers that her husband bought alcohol with the money she was saving. tt0091875,456l6TpeE1E,Logan forces Ray and Danny to take a vacation. tt0122690,dJFR7xbOIuw,"Sam's uneasy feeling about doing the deal in the tunnel is validated when he spots a sniper on the bridge above, and shoots him dead." tt0075268,stelirVdNdI,"Joe gives Craig some relationship advice, namely, that there is no growth without a little burn." tt0114287,_dtNz4Te0Gw,"When Montrose attempts to arrest Robert he refuses to do his bidding, then pulls a knife on Archibald." tt0091875,F3f7Li9T4n4,"Danny takes a bullet during a raid, and Ray searches for the wound." tt0091875,opseGWIdLd4,Things quickly turn violent when Gonzalez and Danny arrange to trade Anna for the cocaine. tt0107863,lqdyZpgCnXQ,Jimmy humors the posse as he defends himself in a discussion about racial history. tt0084732,-oeFJvhvMik,"When Sam gets stuck while working through George's dream, Brooke helps him with the missing piece." tt0100680,F10EFVISERQ,Kelly tells her mother that she got pregnant just to spite her. tt0084732,9hCHM2Oj1wQ,"While Brooke is working the auction downstairs, Sam takes the opportunity to snoop in her office to investigate a newspaper clipping she ripped up earlier." tt0075268,SQ_rMhKlNFE,Craig and Joe switch up their partners on a double date. tt0100680,V-eoS6kEyeg,Stanley walks Iris home after he fails to catch the man who stole her purse. tt0100680,2Z5WH83Vhs8,Stanley practices his reading skills a little too loudly at the library. tt0075268,KDQqlRIFcAQ,"At a barbeque, Joe offers to show Dorothy that not all weightlifters are homosexuals." tt0100680,JOqFKM-dt5Y,Iris interviews an illiterate Stanley and records his answers. tt0084732,QUTDoPuCUcg,"After following who he thinks is Brooke into the park, Sam runs into some unexpected trouble." tt0122690,dKoFTEK7O_o,"In an effort to avoid the cops while parked in the car, Sam kisses Dierdre, and for fun, she kisses him back." tt0075268,3iD4rM9utqc,Anita fights off some intruders at the gym. tt0070653,qpLovLQoJ6c,"When the police arrest Scorpio for heroin, McLeod makes him an offer he can't refuse." tt0070653,3eA0tlN-WMY,"Filchock visits Scorpio and informs him that Cross, the man he was supposed to kill, is back." tt0084732,1NBRkyfy4lA,Sam reflects on a dream George once shared during one of their therapy sessions. tt0385988,2ohNiVtAwJY,Percival saves Linet from the belly of the wolf. tt0100680,2SnugUXqVJc,Stanley notices that Iris wears different sweaters depending on her mood. tt0084732,O6frj4BOJJU,"Brooke forgets her keys in the house, which gives Gail the opportunity to isolate her victims." tt0075268,Xk7IjHYLVH4,Craig and Mary Tate spend the night with each other. tt0100680,N-VlQuj49a4,Iris tells Kelly about the exact moment she began to understand motherhood. tt0070653,9GagOWlFd-U,Cross loses his pursuers with some aggressive driving. tt0107863,DdZNLekEcIQ,Lana discovers the truth about Carver and Father Time meets his end. tt0075268,9fnjkSES3VM,Craig gets a personal workout with Joe. tt0084732,2315p7LJusg,Sam bids arbitrarily on a painting in order to send Brooke a note warning her that the police have their eye on her. tt0070653,rfix60WuBxs,Scorpio cleverly gives one of McLeod's men the slip in the hotel lobby. tt0070653,df-YzAnQJpU,"Scorpio and another agent give chase to Cross, who fights back at a dangerous construction site." tt0114287,Oum7mEtv05g,"After Montrose orders him to be hung from the bridge, Robert attacks Archibald, then escapes." tt0100680,kA_BtqogJNk,Stanley tells Iris all about his recent successes and then proposes to her in a very practical way. tt0107863,SzUPAc8HTOI,"During the shootout, Jesse tries to take out the Gatling gun with some dynamite." tt0075268,Pbr6HpxJYm4,"At an old country hoedown, Joe plays some music and Craig drinks some moonshine." tt0070653,i6ymVjU5hno,Cross sets up a secret meeting with Scorpio to warn him that McLeod is not all that he seems. tt0070653,IVZd3YBqxEc,"Zharkov explains to Cross why, in spite of all that has happened to him, he is still a Communist." tt0122690,7gc1EIrxjws,Dierdre and her team chase the target through the Italian countryside. tt0100680,dw2jrtR9Px4,Stanley offers to iron for Iris after she tells him how stressful her day has been. tt0114287,wosztGGnWt4,"Lord Montrose makes a deal with Robert for his land, while alternately complimenting and insulting him." tt0075268,Mr8aBk7ub2g,Joe competes in the Mr. Universe competition. tt0075268,EshEWL1ZhCc,"Backstage at the Mr. Universe competition, Joe explains to Craig that it is important to ""stay hungry.""" tt0084732,rfeKwl7Dyg0,"After the lights go out in the hallway to the laundry room, Sam hears strange noises and suspects he is not alone." tt0075268,eJWSp6A1Ks0,The bodybuilders take over the streets following the Mr. Universe competition. tt0086999,PZ93GNHBHsE,"Turbo dances on the ceiling, which impresses his chicky-babe, Lucia." tt0086999,89g2af1Qw0I,"Kelly and the gang dance and sing their way to Miracles, a dance community center." tt0086999,kjd3eUIBSj0,"After revealing to Ozone that she might be leaving for Paris, Kelly finds herself on the receiving end of some serious threats from Ozone's ex-girlfriend." tt0086999,l53Q1UXk2DE,A downtrodden hospital comes to life with the power of dance. tt0086999,KzVgbCFwn0U,"When Turbo asks Ozone for advice on how to get the attention of a girl, a sudden and bizarre rivalry ensues between them." tt0086999,a-Z66uN97Ds,"As the bulldozers come to raze the Miracles Community Center, Turbo takes a stand and creates a miracle of his own." tt0071746,p0CKoz0u6Eo,Lenny talks about the sexual needs of men compared to women. tt0118900,QL4mGMAjHBg,Cynthia sticks up for the man that Divinci and Rodriguez forced her to pick out of a lineup. tt0102103,Fk17A1jyjKo,"When Chopin breaks off his kiss with Sand, she encourages him to get some fresh air, which leads to him getting slapped." tt0102103,petKvkHfPJo,"Chopin leaves dinner due to a coughing fit, while de Musset gets challenged to a duel." tt0059287,ZkCH653K2cc,"Peachy Keane leads the ad men in a song praising their boss, B.D. MacPherson." tt0089348,4PcE-gNqFfU,Hunter drives his truck into a mall shootout. tt0102005,8YCMjAOgFpo,The Marlboro Man has a final showdown with Chance Wilder. tt0102005,SMYJOm56YvY,"When Alexander holds the Marlboro Man hostage, Harley tries his best to help." tt0251114,1_vxyocjxg0,McNamara puts his life on the line in the stead of his soldiers. tt0093200,MvYuTdiMcRk,"Bobby introduces Hollywood's first Black Acting School, complete with Jive Talk 101 and other offensive stereotypes." tt0059287,tr3ORGLT_W8,The only way to know how to stuff a wild bikini is to sing about it. tt0093200,IL_B1fmfl_c,Bobby and Tyrone imagine what it would be like if they hosted their own movie review show. tt0102103,LDsysmP_8yo,A drunken de Musset tries for one more tryst with Sand before his duel. tt0080895,KmCgqSJnzrc,A little league game turns ugly when tensions between Max and Tom boil over. tt0102005,54SNIVms9vo,"After taking heavy fire from Alexander, Harley Davidson and the Marlboro Man escape through the back window." tt0080895,_WzzevY4_Ys,"Alarmed to find a police car out front, Elaine is relieved to discover that it's only a visit from Jack." tt0102103,oKmBIC6X6Fs,Sand professes her love for Chopin and reveals herself to be the author of the love letter. tt0102005,ktFZq_8XXOg,The Marlboro Man explains his five rules of shooting pool. tt0102103,Uw98q-YIFec,D'Agoult tries to convince Liszt to sabotage the potential relationship between Sands and Chopin. tt0093200,pE5pl9UG93I,"Bobby feels too guilty playing a negative stereotype, so he quits the movie." tt0080895,_8N1uJZUyaY,"Distracted by Elaine, some mall cops drive a security cart into a light pole, smashing the ball and sending cash everywhere." tt0102103,OcNjc5lfvpM,"Chopin faints during his duel, leaving Sand to finish off the job." tt0102005,tVfrMp_MWw4,Harley Davidson asks the Marlboro Man some philosophical questions. tt0059287,VEgR-CiTK2E,"Through song, Frankie and Dee Dee reveal their subtle lamentation at having to settle for second best when it comes to matters of the heart." tt0102103,AGUMsaszNKM,D'Agoult gives Sand advice for wooing Chopin. tt0080895,x21gkEu5lKc,"Elaine finally catches up with Louise and Jane, who are distraught until a bag of money reappears." tt0102103,pmC3rsgHD9E,Chopin is shocked to discover Sand hiding under his piano as he plays. tt0102103,g2dAymk715E,"De Musset writes a play satirizing his hosts, Chopin protests, and an explosion ends the performance." tt0059287,61_aprVh2FQ,Ricky rebuffs Von Zipper's intimidation tactic and makes a fool out of him. tt0093200,iG4GVhx6oGc,A series of actors audition for the roles of stereotypical ethnic gangsters. tt0093200,Wo3qdzlpPdg,Struggling actor Bobby finally lands a role. tt0093200,5RzSW0dc9dE,Bobby feels guilty that his acting debut as a street pimp will enforce negative stereotypes of African-Americans. tt0093200,pt-Ir7xS29Y,Members of the community tell the press their strong feelings against Bobby Taylor and come to the conclusion that he has to die. tt0059287,khg8XoyKzs4,"When 'Peachy' Keane selects Cassandra as his spokesmodel, the other bikini babes try to serenade him into thinking otherwise." tt0059287,PJQ2AiURctI,"Ricky defends Dee Dee from a home invasion by Pete, a member of the biker gang, The Rats." tt0059287,PBHZhxrhO4E,Dee Dee is declared the 'girl next door' when she wins the motorcycle race by disqualification. tt0085672,sIB8AdUqEqg,Hercules defeats two charioteers during one of the King's tests. tt0059287,qfIzHlWOiuE,"When Dee Dee learns that her boyfriend -- currently overseas -- is cheating on her, she decides to do something about it." tt0102103,7w2iVXAHiPk,"Sand and D'Agoult marvel as Liszt performs, and Duchess D'Antan prepares for Sand's arrival." tt0085672,qkjpTwOa0GY,"Ariadne tries to kill Hercules, but he escapes." tt0102103,d_jEVMQc0ig,Duchess D'Antan barely contains her excitement as she welcomes Sand and her companions to her home. tt0093200,PSmJNK9zhR0,"One hooker tries to warn the others about street pimps that are out on the attack, but when one hooker doesn't listen, she pays for her mistake." tt0059287,z9MEhN5rjmg,Frankie gets transported back home with the help of the witch doctor Bwana and his daughter. tt0085672,I1CjDw569ss,Hercules creates the great continents by separating Europe from Africa. tt0080895,5UKpz6Gsyu4,"Jack tells Elaine how he really feels about her, and they kiss." tt0085672,NvPYToFoU2M,"Hercules battles a giant robot on the isle of Thera, but Circe dies." tt0085672,koX0RDUQHFs,Hercules and Circe create a magical chariot and take a ride into space. tt0093200,65ltaw4SF38,"Ace interrogates Jheri about his whereabouts the night of the murder, and holds his curl activator as ransom." tt0080895,YBQ90wbJ7MY,"To determine if she's psychologically capable of committing robbery, Jane attempts to steal from a supermarket." tt0093200,GxMoPTqev8g,Rambro reenacts a scene from Rambo. tt0085672,6i3eC2gzxXA,Hercules' father is impressed when Hercules uproots a tree with his bare hands. tt0085672,VwE2USOqfNg,Hercules battles a fearsome winged creature. tt0085672,D_5kpc0cUWk,Hercules defeats King Minos to save Cassiopeia. tt0068673,WrYDmyHlxqY,Hammer defeats Irish Joe Brady and takes the championship. tt0093200,2NLGmRYLvsY,Bobby daydreams about fame when his boss Donald threatens to fire him if he doesn't get his act together. tt0080895,lRVUsY_rcCo,"In order to distract the shopping mall crowd from the robbery, Elaine starts to strip on stage." tt0109913,3_NMhC6GR04,"After Max finishes cutting Ely's nails, they start to make out and get intimate." tt0109913,vyN2oD5tI80,Evy is confronted by her mother for being a lesbian. tt0118900,otQ_oCvSq6E,"Arthur tricks Cynthia into admitting that she knew ""Joe"" before his supposed crime, thus destroying her false testimony." tt0109913,qUMSld6BwC0,The girls sit around and talk about what to call their private parts. tt0085672,7DhLw2aNu_Y,Hercules rescues Cassiopeia and takes care of Ariadne. tt0085672,yXeBhFzqzfY,Hercules saves his father from a savage bear and creates a new constellation. tt0093200,BUAPTnpOdVM,Speed and Tyrone give two thumbs down to a movie they watch starring Dirty Larry. tt0109913,lbIbVWmpcCg,"When the girls play a drinking game, some secrets get revealed." tt0068673,worFlbNJG_w,Hammer finds out from Big Sid that Lois has been kidnapped in order to force him to throw the fight. tt0080895,lwo1GnbKOW8,"Unable to use her garage door opener, Elaine calls the Power and Light man, who doesn't believe her story." tt0085672,wrYcEEv737c,"Hercules is trapped with a creepy old witch, who turns out to be a powerful ally." tt0118900,QC4b5Aoff1I,Divinci justifies their actions when Rodriguez's conscience starts to kick in. tt0080895,Ubr_vvAzvtA,Louise visits Albert at his office to ask for money to cover her antique business. tt0068673,k1fiQFCN2Zs,Hammer jumps Brenner in a parking garage and takes him out. tt0109913,E_tzgBTGxEM,"Max tries to console Evy after she is kicked out of her house, but she only manages to aggravate Evy even more." tt0109913,ytQv31xRLGo,Max and Kia debate their tastes in women and dating styles as Kia tries to find Max a girl. tt0118900,i4GeD9FWdG4,"Divinci and Rodriguez consider their circumstances after they learn that the homeless man they pinned the murder on is actually a ""saintly"" surgeon." tt0109913,nSEGOd89xWw,Ely and Max tell their friends separately about what happened on their date the night before. tt0080895,O0twX6iB62U,"During lunch at the mall, Louise, Jane and Elaine brainstorm ideas for making money." tt0080895,Yg7ulcF39e8,Louise storms out on Albert when she learns that he's suing her to force her into bankruptcy. tt0109913,hdaAD9fxKXA,Max fantasizes about Ely at the breakfast table and what it would be like if they dated. tt0080895,FzOGfMXmfF0,"Elaine returns home to find a message from her husband telling her that he won't be coming home tonight, or ever." tt0068673,S8WazHAxJLM,Hammer makes quite an impression on some men nearby after he brutally wins a fight against Riley. tt0109913,xvVqMR_f6IY,Ely and Max get to know each other better when they have a conversation over the phone. tt0068673,6JTplpmC6AA,Brenner takes out Roughhouse by trapping him at the end of an alley with his car. tt0118900,cpO3ALFscmQ,Divinci and Rodriguez convince Joe that he committed their crime. tt0089348,UvpLAMfYgJ8,Rostov blows up Hunter's house. tt0118900,2Rlao83KneM,Rodriguez freaks out when he finds out Divinci used the gun from another murder case. tt0118900,e0fFbNV1ySY,Divinci confirms his suspicions that Rodriguez has turned on him and has been recording their conversation. tt0068673,5iyXb_jNvgc,"Hammer, Davis, and Bruiser run in and save the professor." tt0068673,S01OvbVQhGc,"When Sonny and his men try to heckle Hammer, he shows them who's boss." tt0118900,kWPc7z2IMkA,"After being on the run for four months, Divinci goes after Cynthia for confessing the truth." tt0118900,p12YiRom_Kw,"Divinci coaches Rodriguez through their mistake of killing an undercover cop, convincing him it will be easy to cover up." tt0048254,6HH44dvOLJw,"Gloria seduces Vincent to stall for time, enabling Davey to escape." tt0048254,nH40NtYdL-U,Vincent and one of his thugs pursue Davey across the rooftops. tt0089348,E5zvQmTrzVU,"Hunter traps the Russians, and they try to flee." tt0048254,KzSRd6xpR04,"On his way out of town, Davey reunites with Gloria at the train station." tt0068673,wzJObNk-flo,Henry manages to escape the police in a fiery junk yard. tt0071706,6bn4rdEiqg0,Nicholas receives ransom instructions from Juggernaut while McCleod chases down the call. tt0118900,0WuMU0zi02w,"Already distressed from just having ratted out his partner, Rodriguez comes home to find his bookie waiting for him." tt0048254,jfYvV2tBEz0,"Davey holds Vincent at gunpoint to rescue Gloria, but Vincent's thugs turn the tables." tt0089348,QdIw0bzY3oc,Hunter blows up two guerillas behind a wall and Rostov comes after him. tt0048254,grlDMsiQ2Yc,Vincent and Davey face off in a fight to the death at a mannequin factory. tt0048254,f1Nh9DlkZ1w,Davey wakes from a nightmare to the screams of Gloria being attacked by Vincent in her apartment. tt0089348,GxcZL7EM5Zo,Hunter confronts Rostov and blows him away. tt0068673,bBeHRwjwKk8,Brenner makes The Professor a proposition for his fighter. tt0089348,HrFmuAN50BA,Hunter uses extreme force -- and a knife and a hand grenade -- to get information about Rostov's whereabouts. tt0071706,wZheb1gbe58,Corrigan is confronted by a passenger who wants to know why they are traveling in circles. tt0071706,ghNPXViyQoU,Brunel calls Porter who tells him that they are not going to pay the ransom. tt0089348,SN39w-Bnlgg,Hunter saves a church from the Russian terrorists. tt0068673,w1pIFZb7480,Hammer trains for his upcoming fight with help from Professor. tt0089348,ITEod2_WHoU,Rostov brutally destroys homes in a suburban neighborhood. tt0071706,C-7X5i_EQPE,McCleod questions O'Neill who refuses to tell him anything. tt0068673,jTRa22j4OUk,Henry is incapacitated after Brenner and his men give him a strong injection. tt0109913,d8Ff_W4-4VE,"After Max and Ely share their first kiss, Max learns that Ely has a girlfriend in Seattle." tt0109913,kuQQoH9skXc,Ely and Max contemplate going to the movies after their third friend flakes out at the last minute. tt0071706,vozS5ppNzAM,Azad save a little girl trapped behind sealed doors when the bomb team begins their work. tt0071706,VWWchm35s-Y,Porter makes it very clear to Curtain that he is going to go against the government's wishes and pay the ransom money. tt0109913,KVncpZkleFc,Daria's sexuality is questioned by her lesbian friends because she had sex with a man. tt0089348,whUo8sI5OuY,Hunter saves a school bus full of singing children from a bomb that the terrorists plant. tt0089348,BTVWvOpPkIo,Hunter warns Rostov of his impending doom via television. tt0071706,7L0xuL1thp4,Fallon disarms a bomb and receives a call from an admiral. tt0071706,xpSqCE8wCOU,"While trying to diffuse one of the bombs, Charlie blows himself up leaving Fallon to give up hope." tt0251114,w610fTL5O-A,Lt. Hart comes across an unusual checkpoint. tt0251114,qA73y2w3WUc,Lt. Hart offers evidence that proves the killer was white. tt0071706,FwHnNe_ItOY,"When word comes that negotiations have broken down,"" Brunel tries to convince a drunk Fallon to go back to the bombs." tt0068673,Tzt-axwwOUY,"When a black militant party member questions Hammer's authenticity, he puts him in his place." tt0251114,Ih-_ZmPZ1x8,Hart confronts McNamara about the tunnel. tt0071706,qh1KCsqqHFY,Fallon has a hunch and takes a gamble on cutting a wire. tt0085672,jPSjDk0CM68,Hercules defeats a group of wrestlers using a huge log. tt0102005,_F4WjvMnL6Y,"The Marlboro Man gets pulled over for speeding on his motorcycle, and is intimately frisked by a sexy female cop." tt0251114,_hX3fkzGrxk,"After a friendly fire attack, the prisoners scramble to spell ""P.O.W."" to the fighter planes overhead." tt0089348,iRmtQ5DlvuQ,Hunter drives a truck into a mall and window shops for some terrorists. tt0071706,nXoPEmh39ls,"Down to the last second, Sidney tells Fallon to cut the blue wire." tt0089348,tLiJueTgu44,"Dressed in disguise, Rostov pretends to welcome a boat of refugees while really interested in the goods below deck." tt0251114,HLxJLrrC5mE,Staff Sgt. Bedford finds the consequences for throwing bread across the fence to the Russians. tt0071706,mTYwZEhFwu0,Nicholas receives a call at home from a man telling him that the Brittanic is rigged with bombs. tt0102005,gNEB3vRczjA,The Marlboro Man and Harley Davidson deal with complications during the bank robbery. tt0102005,44-8o-jEDB0,"With nowhere else to go, the Marlboro Man and Harley Davidson take a leap off the building into the pool below." tt0251114,ohnhJ6gyLhk,Lt. Scott and Archer are introduced to Barracks 27. tt0102005,kItLDGtPMMI,Harley Davidson gives the Marlboro Man a gun for his birthday. tt0251114,8I_QMs_Mjb0,Col. Visser gives some unexpected help to Lt. Hart which could greatly help his client. tt0102005,OK_v02xShhs,Harley Davidson knocks out two men trying to rob a convenience store and in return gets to pump all the gas he wants. tt0102005,cpQQpn89mEs,Harley Davidson takes on Jack Daniels in a bar fight. tt0048254,8dPqVrwBp7s,"Gloria picks up her last paycheck from work, but Davey misses out on his pay when his manager gets robbed by some thugs." tt0048254,QgdvS-09ygk,"Davey and Gloria kiss for the first time, but when he says he loves her, she questions his sincerity." tt0251114,OZNLJj4pJsw,Col. McNamara and Col. Visser discuss the war and the future. tt0251114,oub2YWXPV6g,Col. McNamara and his men salute Russian prisoners when they are hanged by the Germans. tt0048254,60PDxhI6y4g,"Davey and Gloria leave their apartments at the same time, and Gloria is picked up by her boss Vincent." tt0102005,AesICMoanS0,The Marlboro Man and Harley Davidson prepare for a shootout against Alexander and his men. tt0071746,SyXqFhSPWBg,"Having cheated on Honey, Lenny implores the men in the audience to always ""deny it.""" tt0071746,LWkbKaDHXbw,"Lenny gives a routine about doing it"" after sleeping with Honey for the first time." tt0048254,URvrDySPc4U,Gloria and Vincent watch on television as Davey loses his fight against Kid Rodriguez. tt0048254,0XzQX-i3y_I,Davey tucks Gloria in and she tells him about the attack by Vincent. tt0104765,vH8nss4M93g,"A road block causes Lurene to panic and run, leaving Paul to be arrested." tt0104765,xLIEyHRfbv4,Lurene tells Ray of her plan to attend the President's funeral. tt0071746,a2lb_3-fYFc,"Lenny is hauled off to jail after an ""obscenity"" plagued monologue." tt0104765,6kdms5umbhA,"Paul tries to leave Lurene at a gas station, but she insists he owes her a ride to the funeral." tt0071746,4QsATC7VdUk,Lenny begs the Judge to let him do his act for the court. tt0104765,zvgXyU1STYI,Lurene accuses Paul of kidnapping Jonell. tt0104765,XGkwMwwlTLQ,"Paul storms off when Lurene implies their problems are similar, and then he returns to the barn and kisses her." tt0104765,DSoLhO7jVzk,"Lurene strikes up a conversation with Paul, to the disapproval of the other bus passengers." tt0071746,2J4gviivSJU,Lenny performs an on stage bit about lesbians to get back at his wife. tt0104765,vK7tEsNZtFs,Lurene misses her chance to shake hands with Jackie Kennedy at Love Field in Dallas. tt0071746,o_6VSJ_RjkE,Lenny tries to diffuse the power of racial slurs by overusing them on stage. tt0071746,fXcQVdBqtaY,"Lenny praises stag movies, then gets into a car accident with Honey" tt0104765,2fkfpdMG-KQ,"Sensing a panic in the streets, Lurene discovers that President Kennedy has been shot." tt0071746,vBhBkvkofjk,"Strung out on heroin, Lenny flails on stage." tt0071746,2i-3w7WnPiU,"Audio of Lenny's ""to cum"" bit is played in the courtroom." tt0104765,YjwB9d1tpJE,Paul returns from prison and reconciles with the recently divorced Lurene. tt0070379,OopV0xphrrA,Johnny Boy and Charlie discuss money and which girl they want to take home. tt0104765,HdaBcsWogXE,Lurene calls Ray for some money and hangs up on him when he says she needs help. tt0104765,d-2r0wMjfrY,"The police catch up with Lurene and Jonell, but after she's placed in the cruiser, Lurene finally gets a glimpse of the First Lady." tt0283897,F6Y4Vd970zw,"ohn risks life and limb to track down his daughter's birthday gift, even though he knows he's being watched and hunted by his enemies." tt0373469,MPDs_ZJMc90,Harry has an emotional breakdown after a dog steals his severed finger. tt0070379,qkGDaroLl_M,Charlie parties until he passes out. tt0070379,EpD-Hu37w5k,"When Charlie drives to Brooklyn, Johnny Boy gets shot by Jimmy Shorts." tt0105690,rba9NiqG9PI,Ryback neutralizes several terrorists using hand-to-hand combat. tt0086999,HkDkImVLQGc,Ozone tries to negotiate a truce with the Electros to no avail. tt0105690,t69ZfcWPZFY,Casey fights back against the terrorists while taking a call from the Pentagon. tt0438488,2zGJ_oOECv4,"After stepping on a land mine, the resistance discovers who Marcus Wright really is." tt0373469,XQdxHzDK12o,"Harry hits on an attractive woman in a bar and discovers that she is his long lost friend from childhood, Harmony." tt0373469,jF9GE50ioFo,"After discovering a woman's corpse in his bathroom, Harry and Gay Perry must move it before the cops arrive." tt0059825,KQcLnNoYMWU,Labiche stands guard as the resistance fighters paint the train white to denote the cars containing artwork. tt0091055,21GAl13VImg,"At first in complete awe, the team celebrates when they find a mountain of gold." tt0091055,yBxr5ACMH5U,Max calls Leo a sissy and Patricia a fruitcake. tt0091055,SV73jXKrQ80,Leo masquerades as a Priest and fakes the last rights to a dying man. tt0295289,yXcVX57I2JU,Paul gives an agonizing presentation in front of his co-workers while he starts to realize a heavily growing itch in his crotch. tt0052896,MyINcc8SDd4,Shirl compares Tony to a kiwi bird - all talk and no action. tt0295289,6-L8WG51noY,Jim tries to play it cool in front of Paul but Tonya blows his cover when she reveals their couple pet names. tt0295289,p8t_xV4Lf0A,Ray accuses Paul of sleeping with his girlfriend and proceeds to dump food all over him and throw him in a dumpster. tt0295289,LKVcX3959I0,"Paul gets Becky out before Karen can see her, but he has a little trouble thinking of a place to hide Becky's Hawaiian bikini underwear." tt0295289,2fWpPZaxmM8,Pete gets Paul worried about his indiscretion with Becky while they are tux shopping. tt0070379,p92CKGAeQUY,Johnny Boy disrespects Michael by refusing to pay him back. tt0070379,MIGDyLqwY7Y,"When Johnny Boy and Charlie get busted for brawling, the arresting officer shakes them down." tt0070379,Si5R7-KZWFY,Teresa asks Charlie about his likes and dislikes. tt0070379,E0wfFdGnwx0,"Tony kicks a junkie out of his bar, while Michael makes a poor business decision." tt0070379,_DbFZkXD8WA,"Johnny Boy, Charlie, and Michael flee from Tony's bar after a shooting." tt0070379,BS-6KavRfww,A guy with a gun shoots a drunk in the restroom. tt0070379,7xt32rq7iD8,Johnny Boy blows up a mailbox while Charlie goes to church to contemplate his spirituality. tt0096769,reQPn8oDC2c,"Kevin, anticipating an attack, accidentally beheads Joan at the surprise birthday party she planned for him." tt0049414,kHRSh7JOKxo,"Gordon reveals to Ellen that Dwight's death was not suicide, but murder." tt0096769,TPQeRElxu2o,"Prof. Derek breaks free from the rope, takes the ax, and kills Russ but catches on fire in the process." tt0096769,me7nuXZfXVM,"When the car won't start, Amy runs away but is attacked and mauled by wild dogs." tt0096769,skMchQx_U_k,"Alex gets a disturbing call from a man and when she tries to warn her friend about him, she's too late." tt0049414,chlwxs2dfVA,"Promising to marry her, Bud takes Dorie to the roof of the courthouse, but his motives might be sinister." tt0049414,EimQSagV_8k,Bud concocts poisonous pills intended for his pregnant girlfriend. tt0096769,irglCpn_Hs8,Russ exacts his revenge against Prof. Derek by tying him up and starting a gas fire ring around him. tt0096769,fiziIJ6zTU8,Wild dogs attack the girls' car and the dog's master jumps on top and stabs through the roof as they drive away. tt0096769,XRUO2E9UQro,"Alex limps away on her crutches from Richard, but after she stabs him, he may still have some fight in him..." tt0049414,dKleqAHv-Zw,Ellen and Bud struggle for dear life near a perilous cliff top. tt0096769,roxNsu1YELE,Allison wakes up and realizes that the terror she was running from was all just a nightmare. tt0096769,vSjkkQ6Bfc4,Prof. Derek turns a cynical student into a believer of real fear when he points a gun on him and pulls the trigger. tt0303714,MCtE3Y28IR0,An angry woman takes out her anger on a barber shop patron's car. tt0069897,tTrgUKsKetY,Omar ties up King George and drags him from the car as Studs watches in horror. tt0086946,g0HwVyKSC_8,"Lee dances for Tracy's class, but when the teacher won't replay the video, Double K takes the tape." tt0049414,LHVll_0Hmh4,Ellen tells Gordon how she's piecing the clues together about her sister's apparent suicide. tt0049414,3SessG74yMk,Ellen questions Bud about why he hid his past with her murdered sister. tt0283897,kNMc5CKw4G0,"John and Manuela get to know one another better as they talk about love, life, and family." tt0049414,Ejp4AjvBuGw,"Bud kills Dwight, making it look like a suicide." tt0049414,8BY36nM4_HI,Ellen falls in love with Bud. tt0049414,nWRelGmpmxQ,Things backfire for Ellen when she tries to get the drop on her sister's suspected murderer. tt0049414,ZYOhqPzYRjs,"After giving Dorie poison the day before, Bud is shocked to see her at class." tt0049414,80htzZ3-XwA,Bud tells Dorie he'll marry her if she's still pregnant after a few days. tt0283897,tJHkiRzd05M,"John and Manuela go for a dance lesson, and then later, to the zoo, where Manuela reveals her admiration for the black panther because of its inherent elegance." tt0096769,2nacHERVnsY,Prof. Derek teaches his class about the reality of fear by staging his own pretend suicide in front of them. tt0283897,kVXAITzqSgc,John is mesmerized by a sexy performance of the tango. tt0283897,M9rOG76v0qY,"John makes his way over to Manuela's table to arrange tango lessons, but finds himself rebuffed." tt0303714,oPOqdtLP8XM,"When Calvin tells Eddie that he sold the shop, Eddie shames him with a piece of his mind." tt0283897,H9TUkZR66o4,John gets insulted when a cop comments about him looking tired. tt0303714,YJhs9wqT7qE,"Eddie explains what ""seniority"" means to the young men." tt0283897,U_5JpJYsufQ,John argues that he's the best man for the job because he's the only one who can get the job done right. tt0283897,Sms4grRcCck,John dreams of performing the tango with Manuela one last time. tt0283897,BL9xCIeznI8,John accomplishes his mission. tt0303714,n7W0yxKnuvs,Calvin sells the barbershop to Lester who plans to turn it into a strip club. tt0303714,GNsD8EVetbU,"While he's rolling the cash machine down the street, J.D. nearly gets caught by the police." tt0303714,N_tNwz5Bxwk,Eddie preaches about what it used to mean to be a barber while showing the others how to give a proper shave. tt0303714,oSpMQ0WtrSs,"When Billy's sister threatens to tell mama about the stolen cash machine, he and J.D. are forced to move it." tt0303714,ZtE1j9UnzC4,Terri Jones breaks up with her lame boyfriend Kevin. tt0303714,7U-et8qOXLs,Eddie's speech on Rosa Parks leads to an argument about the things black people should tell the truth about. tt0303714,RczW1gIRBjY,The crew of the barbershop debates about slavery and white reparations to black people. tt0303714,1MUi4ZiJUsA,"Calvin decides to keep the store, but when he tries to give back the money, Lester wants double." tt0086946,Ph6hXpPbl0s,The Treacherous Three perform 'The Santa Claus Rap.' This is an early performance by Kool Moe Dee. tt0086946,frqy8o30rv8,"Melle Mel and the Furious Five perform to a full house, rapping about the world's massive iniquties." tt0086946,SiJQJiUZ5Jw,A dance battle gets broken up by the cops and Lee gets caught. tt0086946,cigrbhwjTnI,The Bronx Rockers step up to Beat Street in the club and a dance battle begins. tt0086946,8aQFiCfxz6M,An all-out breakdance extravaganza finale featuring a cavalcade of performers. tt0086946,fpnoVKmulZM,The Us Girls put on a performance that raises the roof beyond all comprehension. tt0086946,hyXCJXsHX3A,Double K takes Tracy to show her what Ramon and Lee are painting at the station. tt0086946,d7he8f2L_BE,Ramon and Double K throw a burner up on the side of a virgin train. tt0068284,_lnD3Fh-kYg,"After seeing Tina die, Blacula takes his life by going out on the roof while the sun is out." tt0068284,9gdhd-EerNw,"Blacula makes his intentions clear; to revenge himself upon his attackers, leaving no-one alive!" tt0055798,3SAElnJHcNc,"Bored with life in solitary, Stroud teaches his injured pet sparrow to fly." tt0055798,FRVB-HBxR98,Fellow bird-lover Stella convinces Stroud to go into business selling bird remedies. tt0094862,XY3urIUUizU,"Chucky attacks Mike while he's driving, causing him to crash the car." tt0068284,4a71NDQWOMM,Blacula is waiting for Dr. Thomas and Lt. Peters as they try to escape a warehouse crawling with vampires. tt0069897,BOYsnywXTu8,Things get heated when Coffy attacks Meg and the rest of the prostitutes at the party gang up to defend her. tt0055798,c9_46Iv_GGM,"Stroud, relieved that his death sentence has been commuted, learns from Shoemaker that he must spend the rest of his life in solitary confinement." tt0068309,luhE1BFZN9U,"Bertha and Bill are reunited, but their reunion is short-lived." tt0069897,Tt9v8E7Owxo,Coffy seduces Arturo at his place. tt0094862,5xl30KAt6-w,Mike shoots at Chucky who terrorizes him in the overturned car. tt0068284,n92XBsqbSF4,"Dr. Thomas, Lt. Peters, and some officers track Blacula to a warehouse, only to find a roomful of the undead waiting for them." tt0068309,Xp_xKQZigM0,Bertha is impressed by how Big Bill incites a riot against the railroad bosses. tt0055798,QbRnDoXuwkQ,"After the death of his canary, Gomez reminisces about an ex-girlfriend who tried to train her parrot to speak." tt0068309,iTXqcn1qyCk,Bertha and the boys crash Sartoris' party and rob his guest's jewels. tt0069897,RE6QfwhDMhw,"Coffy gets the information she needs out of Priscilla, and flees unharmed when Harriet the pimp comes home." tt0069897,2uQeLmDx98o,Coffy finds Howard at his beach house and guns him down to complete her quest for revenge. tt0055798,oow41RrqpHE,"Stroud impresses the new warden with his trained sparrow, and seizes the moment to request some birdseed." tt0068309,Fnvug-nXPYg,Bertha and the boys rob a train and pick up a nice pile of cash. tt0068309,yJjnYpZCH8A,"During a robbery, Bertha enjoys the power that holding a gun gives her." tt0068309,wmG3O9RvEaU,Bertha uses her feminine wiles to help the boys escape the chain gang. tt0068284,SATdGPY78z0,Dr. Thomas convinces Michelle to dig up one of the antique dealer's graves and they see he has become a vampire. tt0069897,g_mjMjs_eFY,Coffy drives through a house and offs Arturo after getting the information she wants. tt0055798,wO1s5eRplKs,Stroud appears distraught when convicts Burns and Logue start a prison riot at Alcatraz. tt0068309,sXatQewZKRw,Bertha and the boys continue robbing trains and banks. tt0055798,Moq-NmqnZR0,"After Stroud starts a fight in the laundry room, Shoemaker puts him in solitary confinement." tt0068284,B22vWcjNR9I,"Dr. Thomas and Lt. Peters open Blacula's coffin and find Tina, whom they stake." tt0055798,yJlwArJRkmE,"Stroud transfers out of Alcatraz and meets Tom Gaddis, the man who wrote a book about him." tt0094862,crBqPflvzyQ,Chucky kills Maggie with a hammer. tt0055798,45d4aoDJnhw,Stroud ends the prison riot by throwing the convicts' guns out the window to Shoemaker. tt0068284,lh3qxTgaa1Y,Blacula attacks the two antique dealers that bought his coffin. tt0069897,AIeKpxgasMQ,"Coffy pays a visit to a former patient and junkie, Priscilla, to gain some information." tt0055798,X4_8ByCyrUA,"Stroud breaks a train window on the way to jail, making a bad first impression on his new warden, Shoemaker." tt0055798,2uSOBDMv_S0,Elizabeth forces Stroud to choose between her and his wife. tt0094862,CSuwuvVcRHU,"Chucky tortures Dr. Death with his own voodoo, discovering some important details before killing him." tt0097138,Lt01tXTT0Ak,Gibson and Nady are ambushed by bandits. tt0068284,4uVC-cDpdpg,Dracula curses Mamuwalde into Blacula. tt0068309,wJJ2RLLVzcU,Bill donates all of his stolen money to the labor union. tt0069897,jRRY7zgE4K8,Coffy blows away dope pushers to avenge her sister's hospitalization due to contaminated drugs. tt0094862,WcSLuxBdYJ8,Chucky knocks out Andy with a bat. tt0094862,HSH9SG55kBU,Andy and Karen torch Chucky in the fireplace. tt0097138,8tteR5k1l-A,Gibson fights a gang of pirates in an abandoned factory. tt0097138,_LAoGdcXG3Q,Fender and his gang crucify Gibson on a junkyard ship. tt0068309,nkUx3zstpbU,"When Sartoris' men get the drop on them, Rake can't bear to be captured." tt0094862,Js0YTLpY9bY,"When Chucky comes back for one last scare, Mike shoots him in the heart, finally killing him for good." tt0068309,9R0If3RWk5M,Von shoots and kills all the men who tortured Bill. tt0069897,5E3TSzke-Fg,King George struts his stuff. tt0085384,P4PPhm_fJug,Sleigh has a drink at a cafe with an inflatable doll. tt0068309,4QL9q2mwZXI,Bill's enemies nail him to a train and leave him for dead. tt0068284,SJ671CSV2-M,Blacula tells his backstory to Tina and asks her to freely come to him. tt0068284,Wd7iSbGIDqs,Blacula gets hit by Juanita's cab and then attacks her. tt0068284,gboXDP4L4b0,"When a reckless cop shoots Tina, Blacula has no choice but to save her by turning her into a vampire." tt0068284,J_OsoyDByWo,Juanita wakes up as a vampire! tt0097138,B62wGNHDYHA,"Pearl asks Gibson for his help, revealing that she is a cyborg with a critical mission." tt0085384,4dS7rsMy1-Y,"Sleigh takes a parasailing trip, until he's unexpectedly shot down." tt0085384,PK1aYqQgn-k,Sleigh and Inflatable Shirley get a room at a hotel. tt0097138,XITc_tguH2o,"Crucified and left for dead, Gibson escapes his fate through the power of his will and with the help of Nady." tt0069976,j638xTM36I8,Purvis and his men kill Floyd in a field. tt0097138,vU1_EJh6Atc,Gibson finally gets the advantage over Fender. tt0085384,i812ZsyyeLg,Sleigh accidentally fills his hotel room with gas. tt0097138,Bzqkq2LwnOQ,Gibson's reunion with Haley is cut short when Fender returns for one last fight. tt0085384,mWqZWXSj-s0,Sergeant Sleigh accidentally trips and pushes Chief Inspector LaRousse off the balcony. tt0085384,e-oTHFL5_ec,"Sergeant Sleigh pays a visit to Chief Inspector Dreyfus to apologize, and express his gratitude for being assigned to the case." tt0085384,Rtv_BhYXLh8,Professor Balls offers Sleigh the final disguise he made for Clouseau before his disappearance. tt0097138,Eghn9oMlSy0,Gibson begins his duel with Fender in the harsh rain. tt0085384,vY04JLQa1MQ,Sergeant Sleigh questions the Littons in an effort to learn information about his case. tt0097138,qKYRwuoqETc,Gibson and Nady fight valiantly as they are overwhelmed by the pirates. tt0069976,1C_7b05Rlvo,Dillinger meets Billie and proves his identity to her when she mocks in disbelief. tt0097138,p7rtU_AM1bE,"Gibson takes on all comers as he fights his way to his nemesis, Fender." tt0085384,pSzusQmqyxE,"Sleigh puts out a fire in Larousse's office, causing him to fall off the balcony yet again." tt0085384,XpdrOUgweIA,Sergeant Sleigh snoops around the wax museum and gets entangled with Cato. tt0069976,FeecJ5bAGHA,Purvis kills Dillinger in an ambush after a fake movie date. tt0069976,c-jOeDA-X0k,Dillinger carves a fake gun in his cell and uses it to break out of jail. tt0069976,fBB_lJ3Axqk,Big Jim Wollard arrests Dillinger at a local country dance. tt0069976,Sp1xdUY8R14,"Dillinger kidnaps Billie, brings her to the hideout, and introduces her to the gang." tt0069976,w8O0iiBrIzM,Purvis receives a nickname of his own after capturing a notorious criminal. tt0069976,dUCUs8EtHoM,Dillinger and his gang make for a bloody getaway when a bank robbery goes very wrong. tt0069976,Wlrq_lGAn78,Purvis walks into an armed household and takes out the bad guys singlehandedly. tt0069976,U4DZWsXvRUA,John Dillinger spouts off as his gang robs a bank. tt0069976,osfdb5BrLPI,Sage cooperates with the police and gives Purvis some important intel. tt0069976,0en0UJ180yc,Dillinger and the gang are ambushed when the police receive a tip-off. tt0080661,SVGc5KwWRtM,Dr. Elliott keeps his patient's records confidential to the dismay of Det. Marino who is searching for a killer. tt0080661,GiNKTYoCWG4,Liz has a terrifying nightmare where someone sneaks into her bathroom and slices her neck. tt0080661,4qHuiCLkYHc,"Liz uses every trick up her nonexistent sleeves to seduce her therapist, Dr. Elliott." tt0080661,2Et6MGSeXOU,Kate eyes a handsome stranger and passionately pursues him through a museum. tt0080661,Pys1zBR5jX8,Peter warns Liz when Dr. Elliott sneaks up behind her in a wig. tt0080661,iyCfFXxNtp8,Liz gets the money while Dr. Elliott watches Phil Donahue interview a transgendered person. tt0106873,aUCNlDzsDH0,Lola Cain offers Ned Ravine a wiener at the carnival. tt0080661,R8_HfT2ndyg,"Liz calls an elevator to find a bloody Kate, and just before the door closes, she eyes the killer." tt0080661,KI97hqN52Ik,Liz explains in detail the procedures involved with sex change operations while Peter listens intently. tt0080661,0-81bpcuz44,"When Liz is chased on the subway, Peter arrives at the last minute to save the day." tt0106873,kYQkkpRXgP4,Ned knows what Frank is up to...or does he? tt0106873,9lU01uvS3Nk,"To Lana Ravine's surprise, she finds both her husband Ned Ravine and Frank Kelbo, her lover, in the same bed." tt0106873,4OW7CMS8PBQ,Laura shoots Lana and Lola one final time. tt0106873,kDFwUhn_1Ao,Ned chases and arrests Milo through an amusement park. tt0106873,wrmwJx6kYKc,"Lana Ravine's trial begins, complete with sports color commentary." tt0106873,S3GG_HRE-D4,Max Shady is released from prison with a vow to kill Ned Ravine. tt0106873,OBPgy6HGL44,Ned Ravine is seduced by Lola Cain in his office. tt0106873,vPs5yv77m9Y,Ned Ravine meets up with Lola Cain at the bar and offers her a cigarette. tt0106873,70_b9ZEcxp0,Lana accidentally kills Make Shady on a train. tt0106873,Y3vhSZJthJM,Ned goes into a pet shop and encounters a loud mouth pet store worker. tt0091055,Tv6tdiEMGaY,Leo and Max get themselves caught up in a bar brawl. tt0091055,672m88mMLZ8,El Coyote holds Leo over water and asks Max to choose between his friend and the treasure. tt0106873,yKFEKBIXPxY,"Ned and Lola enjoy some wild, sexy bedroom games." tt0091055,eZWHAM2EG3o,"Patricia asks Max and Leo to find a treasure for her and in return, she'll split it 50/50." tt0091055,Dvze9_LZmC0,"During a high-speed desert car chase, Max and Leo manage to drive right into a pool of water." tt0091055,lxQj06LN31A,Leo and Max make it just in time to save Patricia from sacrifice. tt0091055,hLNZCf1nuRo,"Max and Patricia flirt with each other on a train, dressed as a priest and a nun." tt0091055,xKvmGfNhbF0,Leo and Max try to protect themselves from angry natives. tt0091055,YCuSsetzzg8,Max and Corky have a friendly knife throwing contest. tt0091055,caypUMEoKf8,"Just before Max and Leo are to be decapitated, Corky steps in and saves them." tt0052896,IhDAJ1Tug4M,"Tony turns to his brother Mario in despair, but refuses to take his money." tt0057449,Bi_YR5xkRx4,Rexford appears to be under the influence of an evil spell as he drives Dr. Craven and Dr. Bedlo in a carriage. tt0057449,9VkmshlGEvE,Rexford climbs down the castle wall and stumbles upon his father Dr. Bedlo alive and hiding in the castle. tt0059825,uSuoZcrKq0I,Labiche tries to prevent the Germans from executing Papa Boule for sabotage. tt0057449,xHunA6CYHvo,"Using only their hands, Dr. Craven and Dr. Scarabus engage in an intense and deadly sorcerer's duel." tt0057449,F2Y7FnlkuCg,Dr. Bedlo challenges Dr. Scarabus to a magical duel as his son Rexford watches nervously. tt0066130,jUcER281BOg,Ned defiantly accepts his death sentence. tt0057449,qrTBSBYpzg0,"As Rexford is saved by his father in raven form, Dr. Craven fights Dr. Scarabus to save his daughter's life." tt0066130,KxlEI-kTY2I,"Covered in the armor he made, Ned goes down fighting." tt0057449,evo1frlMjHQ,"When Dr. Craven attempts to acquire some hair from his dead father for the potion to cure Dr. Bedlo, the corpse comes to life." tt0295289,2_kQHIUwJMQ,Becky and Paul chat while hiding from her ex-boyfriend's dog in a bathtub. tt0052896,PpbNn6gMTUE,Sophie tries to mediate a brotherly fight between her husband Mario and Tony. tt0295289,0IP7ihJrrqw,An already humiliating trip to the pharmacist for crab medicine turns worse when Paul runs into his future mother-in-law. tt0052896,i3xjZomB1s0,Tony loses the race and is shocked when Jerry pulls out of the Disneyland deal as well. tt0052896,1p8rDhTaegs,Tony visits Mrs. Roger's house and she confesses to being lonely and misses being a wife. tt0052896,SyGAQwggjTw,Mario refuses to give Tony money and tells him he has to work in order to take care of his family. tt0052896,79HayHaaXDE,Ally listens in and watches his father Tony lie and ask his brother for money. tt0052896,YY-l3FmgXKw,Tony plays cards with his son Ally at four in the morning and they discuss how they'll avoid being evicted. tt0052896,uPqgue3xfPI,Ally is ecstatic when he's reunited with his father Tony on the beach. tt0295289,Hhep61HLkIA,Paul makes up a strange story when Karen finds Becky's underwear in his hiding place. tt0295289,bmJ4doOPxd8,"Paul wakes up in a panic when he sees that the woman next to him in bed is NOT his fiancée, who is due to arrive shortly." tt0295289,1VwF6VuVhkc,Paul's parents make a very awkward first impression on Karen's parents when they arrive for dinner. tt0295289,_07OFEHs0iE,Paul tries to sneak out of the window to avoid facing Becky at dinner. tt0295289,-bzOzD2QShQ,"Karen tries to out her fiancée Paul as a liar, but the Spend Mart clerk covers for him." tt0057449,poAxbGphYmA,Lenore begs to reunite with Dr. Craven as he flees the burning castle with Estelle and Rexford. tt0057449,O_NBFJ4pow8,"Dr, Craven finds a raven outside his window, and after he lets the bird in, he's surprised when it starts talking back." tt0057449,OinNCchV-xk,"Dr. Craven discovers that Lenore is alive and has left him for Dr. Scarabus, while Dr. Bedlo begs to be turned back into a raven." tt0057449,nuVY83HU5Mw,"Grimes, the servant of Dr. Craven, enters with an axe and tries to kill Dr. Bedlo and Estelle." tt0066130,y-AJwogMrAU,Ned heads to the gallows. tt0066130,mksJyq7Z-mQ,"Ned exercises his pipes at a local pub with his version of the Irish/Australian ballad, ""The Wild Colonial Boy.""" tt0066130,xAMy0g4w_ME,Ned shows that he knows his way around a boxing ring. tt0066130,F1cWO821sR4,Ned and his gang go on a crime spree. tt0066130,DHJDwY4xoEc,Ned guns down a would-be captor. tt0066130,YTadpFs7QAI,"After a stint in prison, Ned is welcomed home with a music and dancing." tt0066130,Q8rhm3wBFE0,The authorities spoil Ned's plans to rob a train. tt0066130,ei1tTWCrHqc,"Ned arms his gang with makeshift, yet resilient, armor." tt0066130,EEVcrvlYO-w,Ned bets on his long jumping abilities. tt0066130,W9fV8EusSWE,Ned delivers a toast to his Irish brethren. tt0059825,BQ5nPyRi6l8,Miss Villard tries to convince Labiche to risk the lives of his men to save the French paintings. tt0059825,CPRh4gw_GmQ,"Von Waldheim orders his men to load the paintings into trucks, but the defeated Nazi soldiers ignore his orders." tt0059825,k1Xv18Vy-q0,"Christine berates Labiche for returning to her inn, and he explains the purpose of the mission." tt0059825,OC_NauqyoSg,"Von Waldheim mocks Labiche for his lack of art appreciation, and Labiche shoots him dead." tt0059825,y5wsjMSXolU,Labiche tries to warn Papa Boule about the imminent bombing of the rail yard by Allied forces. tt0059825,Z3yR0aNriPM,Labiche races to safety inside a tunnel when a Spitfire aircraft attacks. tt0059825,Y1IEtzj23ws,Labiche deliberately crashes the train and escapes on foot. tt0059825,hAxEEf5p3Bw,Von Waldheim surveys the damage of the train wreck and vows to find the man responsible. tt0313911,iiUiiK9dMPg,Cody uses his very special skills to save a toddler who is driving a car. tt0313911,pN7yX45G6WA,"Cody makes quite the first impression at his new school after he accidentally electrocutes one of the students, and then makes a fool out of himself in front of Natalie and her friends." tt0313911,ENjz0-Ut-nQ,"The CIA team is panicked when they learn that Cody still has one thing to learn, despite all of his training: how to talk to girls." tt0313911,iWW0Tk58kXM,"In order to avoid security lasers, Cody uses a special contraption to walk on the ceiling." tt0313911,XWXmnyflZtw,A wide-eyed Cody gets his first tour through the spy gadget laboratory. tt0313911,L45abB8vyEo,"Cody finally makes a good impression on Natalie, getting invited to her birthday party." tt0313911,mJbFV5i5ay8,"With a ticking time bomb set to blow up the enemy base, Cody must fight his way through Molay, the last surviving henchman, to have a shot at escaping." tt0313911,Zj3ggkkj2Pg,Natalie and Cody are enjoying their date together when Molay barges in and kidnaps Natalie. tt0313911,pFm8RKAyU_Q,"Cody breaks up Brinkman's nefarious plan, rescuing Natalie and kicking tons of bad guy butt." tt0313911,tz6dNnahwCI,"When Cody gets harassed by some bullies at a party, he shows them who's boss by kicking all of their butts." tt1228705,DlBuWaGDP0M,Justin annoys Tony and Pepper when he introduces them to a nosy reporter at a party. tt1228705,VCxGD8VH-TM,Tony is impressed with the qualifications of Natasha to the chagrin of Pepper. tt1228705,zwQRQ6SbyMk,Tony confronts Ivan in prison about his background. tt1228705,89hCOgVa5LI,Tony quickly transforms into Iron Man to battle Whiplash at the racetrack. tt1228705,yocBQlw_mCA,Tony Stark decked out in his full Iron Man suit leaps from an airplane for a glorious entrance at his expo. tt0085811,PM9t2KSOfK8,The fellowship is aided by a mysterious cyclops when the slayers and cyborgs attack in the swamps of the black forest. tt0139134,DToj3xM2b1E,Kathryn is humiliated when the student body walks out on her eulogy. She realizes that Sebastian's journal has been published for all the world to see and her reputation is shattered. tt0139134,iYG8WCULpNM,"Sebastian and Kathryn make a bet. The terms are if Sebastian can de-virginize the headmaster's daughter then he gets to lay Kathryn. If Kathryn wins, she gets Sebastian's classic Jaguar automobile." tt0139134,hpliHwPiYYU,Cecile describes her most recent sexual encounter. Kathryn manipulates her into becoming a slut. tt0139134,_4lDASeWsFg,Annette makes funny faces forcing Sebastian to laugh as they drive around in the country. tt0139134,rwwMn3Y6rUA,Kathryn teaches Cecile how to french kiss. tt0139134,CgBeBag4ir0,Kathryn reveals her manipulative ways to an already brokenhearted Sebastian. tt0057012,PSofqNSuVy8,"When Mandrake asks Ripper for the launch codes, Ripper refuses and explains his true intentions to start nuclear war." tt0139134,Bb2XlqE9OUg,Bunny fires Ronald when she finds love letters written to her daughter Cecile. tt0139134,xEqdoVnIFug,"Sebastian goes against his heart, and harshly breaks-up with Annette to complete the bet." tt0057012,WI5B7jLWZUc,"When Buck and de Sades get into a fight over a concealed camera, the President has to step in." tt0057012,Ymze0Je2Tm0,"Mandrake tries to call the President, but doesn't have enough change." tt0057012,snTaSJk0n_Y,"When Kong tries to fix the bomb door, he accidentally opens it and ends up riding it all the way down." tt0057012,J67wKhddWu4,Ripper tells Mandrake his views on why Communists don't drink water. tt0057012,VEB-OoUrNuk,The President gets into a testy phone conversation with the Russian Premier when he tells him of their problem. tt0057012,mzddAYYDZkk,"While trying to control his nervous tics,"" Dr. Strangelove informs the President how America can survive underground." tt0085811,Cc1VTko8xJM,"In order to travel to the teleporting palace in time, the fellowship rounds up and lassos fire mares, the only transport fast enough." tt0057012,231TmvIPzQQ,"Upon learning that the doomsday device may still detonate, the President and the Russian Premier argue about what to do." tt0085811,EDdsxJLhp-E,"The fellowship is deceived by the Seer, who turns out to be a changeling sent by The Beast." tt0085811,9O1-5MNRbKE,Ergo the Magnificent's introduction to Prince Colwyn doesn't go as smoothly as he hoped. tt0085811,3wJY4bd_M-w,The fellowship races to the fortress on the mighty fire mares. tt0085811,WGGlUlvJffY,The fellowship is ambushed by a group of convicts. tt0085811,173I36m3rr8,The union of rival families in the the marriage of royal Krull heirs is cut short when cyborg armies of The Beast attack. tt0085811,RlnrFh_APX0,The fellowship asks Kegan concerning one of his wives. tt0089886,wfbqJpn8fN8,"Mitch meets his bizarre new roommate Chris, but is possibly even more confused by Lazlo, the strange man who disappears into his closet." tt0089886,SN7sOR35KCg,Chris meets his future employers and makes a good impression on the professor's assistant. tt0089886,Qa8kCQQUjHM,Mitch discovers a hidden passageway in his closet that takes him to the subterranean lair where Lazlo lives and works. tt0088172,2ATVtP3BK64,"Jenny pulls a gun on the naked intruder in her house, but when she sees that Starman resembles her late husband, she passes out from the shock." tt0089886,rthHSISkM7A,"Kent watches from inside Hathaway's house as the laser aims right for it, igniting a giant container of popcorn." tt0089886,YyZ4gGCCqss,Mitch uses a transceiver in Kent's braces to convince Kent that he is speaking to Jesus. tt0089886,XPEWBEa8pqg,Chris convinces Mitch to stay in school and get even with Kent. tt0088172,teZ52l28tys,"Starman helps Jenny start the car, and after creating a map, he asks to be driven to Arizona." tt0088172,G6i3bDGOLB8,"When Starman brings a deer back to life, he's attacked by a trio of deer hunters, until Jenny fires the gun to scare them off." tt0088172,1IctSkdJICI,"After some cops shoot Jenny during a high-speed pursuit, Starman uses one of his marbles to destroy a road block and escape." tt0089886,E0aNsWbWr1s,Mitch has an awkward encounter with Jordan in the men's room. tt0088172,g3WtvzmKCQQ,"Jenny convinces Starman to stop for food, but when he runs a yellow light, she questions his ability to drive." tt0088172,05-e-YTw4r8,"Jenny tries to convince Shermin that Starman means them no harm, while Starman hitches a ride with a confused cook." tt0088172,TLsRWN6G77I,"Starman tells Jenny that, despite her previous infertility, he impregnated her with a baby that will be human but will possess all of Starman's knowledge." tt0088172,aPPMHA65HIg,Jenny teaches Starman how to say goodbye as he prepares to leave Earth forever. tt0118708,JOkwDeIX1jg,Gobei and Sensei offer words of council to Haru as he departs the Takagura dojo. tt0118615,ChQG9RAkBiE,Paul Sarone intrigues the crew with his fishing technique and knowledge of the region. tt0118708,rAEv7dJC5Iw,"Haru tracks down Sally Jones in Beverly Hills, and vows to protect her." tt0118615,MfIvSh-tko8,Paul performs an emergency tracheotomy on Dr. Cale after he is stung by a wasp. tt0118615,rzG2L4Nbm3E,"As the expedition travels down the Amazon, Gary admits that the jungle makes him really horny." tt0118615,JWqaTJbxbW0,Paul is squeezed and then swallowed by the anaconda. tt0118615,k-WW7ULn8RA,"The boat is swamped with baby snakes, which only Paul appreciates." tt0118708,wwoxXiyWf7A,Haru's weapons practice is interrupted when Sally Jones arrives at the dojo. tt0118708,raIdZiSZ970,Haru dons a disguise in order to eavesdrop on Tanley and Nobu. tt0118708,PbgLbYd2zYI,Haru attempts to impress Sally Jones with his ninja skills. tt0118615,ijXLPE7SB3c,"The anaconda attacks, but Terri saves Danny by shooting it." tt0118708,K7iGuEr-u0s,Haru and Gobei join forces against Tanley's goons. tt0118615,Bk2dqynryeY,"After Gary is eaten, Paul Sarone takes control of the crew." tt0118615,d79o09D8cuo,Gary tries to persuade the crew that their best option is helping Paul catch the anaconda. tt0118708,qbdg6o8Z11I,Haru and Gobei get caught in the middle of a shootout between Tanley and the Kobudosai. tt0118708,lAcZxn1DeHs,Haru faces Tanley in a final showdown at the warehouse. tt0381849,Kye_x3QOSU0,"Dan Evans escorts Ben Wade out of the hotel and they make their way across town, evading continuous gunfire from the townspeople." tt0381849,owM4is78C0o,Dan Evans and company reclaim Ben Wade from Walter Boles and his posse. tt0381849,M9WaDhm3bE0,Ben Wade shows mercy to his rival Byron McElroy before he loots the stagecoach. tt0381849,ijueTjJrMQ0,"Ben Wade nearly strangles Dan Evans, but shows mercy when Evans reveals the truth about his wooden leg." tt0374102,oUxsU2oZ27s,"Now alone with the sharks, Susan is forced to make a difficult decision." tt0381849,gV4WFBjc01I,William Evans stampedes a herd of cattle that provides cover for Dan Evans to push Ben Wade onto the train. tt0381849,9BB9JHog-mg,Dan Evans decides to escort Ben Wade to the train station by himself. tt0381849,amGJwP2p7D8,Outlaw Ben Wade and his gang ambush an armored stagecoach full of money. tt0381849,UwnVloaPX5Y,Ben Wade and Dan Evans return to the streets before barricading themselves in the station to wait for the train. tt0381849,8lnEGuCcmXs,Ben Wade kills Byron McElroy and attempts to escape from Dan Evans but he's stopped by the surprise arrival of William Evans. tt0814022,H2_tkNGWYKs,Joe chases down a bad guy using a boat and motorcycle. then kills him. tt0381849,H4dh0EmCQLg,"Dan Evans finds his barn being burned down by Tucker, who threatens to burn down his house if he doesn't pay his debt." tt0381849,jAR5DtTUdHM,Dan Evans finds Ben Wade in the saloon and distracts him long enough for the railroad guards to arrest him. tt0814022,4XG4OPjDKJY,Joe terrifies Fon when he kills two muggers. tt0814022,i1nbM1Gg5OI,Joe rides through Bangkok on a motorcycle and takes out a car full of targets. tt0814022,lAAxpdk0Swo,Joe gives Kong his first lesson in being an assassin. tt0814022,ddwe3cp5dt0,Joe assassinates a prisoner-turned-witness with a sniper rifle. tt0814022,j1CcIP0upoU,"Joe takes out a bad guy on his way to save his apprentice, Kong." tt0814022,LagYNt1QpT4,Joe lists his four rules to avoid being caught. tt0814022,B3g8p7_d8r8,Joe shoots himself and Surat in the head in front of the police and Kong. tt0814022,rSturS8MP9o,Joe takes out a group of assassins who were sent to his house to kill him. tt0814022,QuIQ_S_WH7M,Joe takes out several bad guys in order to save Kong and Aom. tt0142688,pyDG32yotmk,The Girl rescues Dean from an attack. tt0142688,n7AIwvbyT5c,The Girl and Dean recover from a fight in the street. tt0142688,2_WO15gq88k,Dean tracks down Boris in a remote castle. tt0142688,gcM1pFxO464,Dean watches as Boris enters The Ninth Gate. tt0142688,BcRXmoGWHtQ,Dean finds out that the devil co-authored the book. tt0142688,kKk9o476WM8,"Dean vists Liana Telfer, the widow of a recently deceased book collector." tt0142688,4ekcTVeV-1w,Boris gives Dean his assignment to authenticate a rare book. tt0142688,OuLL5R3sb-w,Dean swindles a valuable book from an unsuspecting family. tt0452625,LzJEXl2ie4E,Charlie surprises Cam with gifts and a singing quartet in an effort to keep her from leaving him. tt0142688,6xNFwkWJug8,Dean compares his client's book to one belonging to Victor Fargas. tt0142688,z0-rv13DDk8,Dean finds the correct image and enters the Ninth Gate. tt0142688,YAjVUJ5RB3E,Baroness Kessler tells Dean about her encounter with the devil. tt0452625,hBsnb6M-lr0,"Stu calls Charlie to let him know that the charm had no effect on him, and that he can now sleep with Cam." tt0218839,MeAMVy0ybYA,Tension builds as the Mayflower Best in Show Judge comes to a surprising decision. tt0218839,CCF5MCx5Tes,Cookie Fleck and Gerry Fleck put their love for terriers to good use in the recording studio. tt0218839,wirXvuRATiE,Max Berman puts his hostage negotiation skills to the test when his son climbs onto the roof with Winky the dog. tt0218839,xVWpHTafYuA,"Meg Swan and Hamilton Swan recall the moment they met, at two different Starbucks locations across the street from each other." tt0218839,W7xrlkbp0Hs,Christy Cummings and Sherri Ann Cabot reflect on their creation of a magazine for lesbian pure bred dog owners. tt0218839,3uAh-opNpDg,Sherri Ann Cabot describes the many things that she and her elderly husband have in common. tt0218839,-GaJPgI3jh4,Buck Laughlin and Trevor Beckwith provide color commentary as the hound group is judged. tt0218839,3COpxKYnjPY,Harlan Pepper talks about his tendency to name nuts and how it drove his mother crazy. tt0374102,xhlW1DSEAiw,Daniel and Susan return to the surface to find that their boat is missing. tt0374102,JdeH3lqGvgY,Daniel attempts to calm Susan after their first encounter with a shark. tt0374102,DO_uVdE-KtE,Daniel and Susan are forced to move when they find themselves among a group of jellyfish. tt0374102,fVv7WOgDC0o,Susan wakes to find that she and Daniel have drifted apart. tt0374102,Z08HN_2m24o,Daniel tries in vain to seduce Susan on the first night of their vacation. tt0374102,l1DMfq2zSks,Daniel and Susan enjoy a carefree dive in the ocean. tt0374102,S6QH4oWys_Y,Daniel neglects to tell Susan about the extent of her leg wound. tt0218839,Imyqnop6grY,Cookie Fleck and Gerry Fleck describe the way they met and discuss the disability that limits Gerry's dance moves. tt0452625,m89SmMCynWM,Stu calls Charlie to warn him not to sleep with Cam after she's already waiting in bed. tt0374102,abM-sq8s2_E,Susan inspects the wound after Daniel is bitten by a shark. tt0374102,qJ9YL7qMG80,Daniel and Susan try to determine if the sharks surrounding them are dangerous or not. tt0452625,CoDnI1qW8ys,Charlie meets Cam at his ex-girlfriend's wedding. tt0452625,4x1dHdc5fD0,Charlie apologizes to Cam and tries to convince her not to go to Antarctica. tt0452625,FcFtBqXUud0,Stu tries to convince Charlie to use his charm to sleep with women. tt0452625,tu0NflL0_9c,Charlie tries to persuade Cam to go out on a date with him. tt0374102,lWopMAZt-sw,Susan begs Daniel to stay alive as they weather a storm in the middle of the night. tt0452625,W2OKX-PIpco,"Reba begs Charlie to sleep with her, so that she can find her soulmate." tt0452625,E4D7FEZx150,Charlie sleeps with Eleanor Skepple in order to determine whether or not the charm is truly real. tt0452625,xkzNVP-tQ-0,A Goth Girl puts a curse on Charlie after he rejects her. tt0452625,FjrKzRGUXWA,Charlie and Cam get to know each other on their first date. tt0800003,2DkHvEZSBOg,"Larry and his friends launch an attack on what they think is an Iraqi village in order to liberate it, but in reality, they're engaging in a turf war amongst Mexican druglords." tt0800003,BITmqWGegUE,"The mercurial Carlos Santana intimidates a gringo ventriloquist, and then disposes of a henchman after learning that the subordinate has failed him." tt0800003,9_AMztckp6k,"The boys gear up and drive into what they think is Fallujah, Iraq, but they're really in Mexico." tt0800003,Pi392aPIVHc,"Larry, Bill Little, and Everett go through basic training, and learn that their days as Weekend Warriors has come to an end." tt0800003,rOoBvxdO0Ac,"Larry rescues Little Bill from a hostage situation, but he and his compadres find themselves in a Mexican standoff." tt0800003,DcZgodKg9OQ,Larry and Bill Little find themselves eating a new delicacy -- the Camel Ass Taco. tt0800003,H7GwaAh6G4o,Larry and Everett lead a bungling attack on Carlos Santana and his henchmen. tt0800003,x7mnUeDZWRI,"Sgt. Kilgore verbally roughs up Larry and Bill Little, disgusted by their epic lack of discipline." tt0800003,-xSV3MoacUw,Larry faces Carlos Santana in the final showdown. tt0427312,JhX_d4BCzhk,"Timothy Treadwell captures stunning footage of two grizzly bears battling for supremecy, and then later, he provides his analysis of what just occurred." tt0427312,ArMePKKjiSw,Timothy Treadwell's friends spread his ashes and honor his memory. tt0427312,yUsoVGj1Ta0,The last footage of Timothy Treadwell leaves Werner Herzog pondering the collective wilderness of our human nature. tt0427312,yySvdJeBcEg,"As Timothy Treadwell wraps up a segment for his video, a wild fox steals his hat -- and the show." tt0427312,yo6AWtLxoG4,Timothy Treadwell unleashes his rage against his former colleagues and civilization at-large. tt0427312,J181xxxzqyg,"After witnessing the effects of a drought on the bear population, Timothy Treadwell yells and prays for rain." tt0427312,UVj_fFGA1Vw,Timothy Treadwell introduces himself and his position the world: that of a valiant protector of the grizzly bears and their home. tt0427312,wUf0QFFi2Mk,"Werner Herzog listens to an audio recording of Timothy Treadwell's death and advises Treadwell's friend, Jewel Palovak, to never listen to the tape and to destroy it for her own well-being." tt0427312,Ao-ipKN7iQE,"Timothy Treadwell talks about who he is, what he's done, and offers his viewpoint on romantic relationships between men and women." tt0218839,B3UhbtdxYak,Stefan Vanderhoof and Scott Donlan channel their love for old movies and Shih Tzus into a calendar. tt0218839,rARKAStGRy8,Hamilton Swan and Meg Swan panic when they discover that Beatrice is missing her favorite toy. tt0099180,ouPU0xazha4,The re-animated corpse of Meg becomes jealous when Francesca tries to get Dr. Dan Cain to help neutralize the impending zombie attack. tt0099180,fNcnudXLN2g,Dr. Herbert West is attacked by his grotesque creations. tt0099180,2CFBewOReY8,"Having killled Lt. Leslie Chapham in self-defense, Dr. Herbert West revives the dead body and ends up with one very angry zombie." tt0099180,vE3T2n8wX4k,Dr. Herbert West attaches an arm to a decapitated leg and revives it. tt0099180,30xxXgTH4OE,Dr. Herbert West has found the final piece to complete his ghastly creation. tt0099180,8x6RDkjZj8Y,Francesca discovers that her dead dog has been re-animated and doesn't take it well. tt0099180,QL9sZG6f5rQ,Dr. Graves revives the decapitated head of Doctor Carl HIll. tt0099180,txKlsWFlkcs,The survivors are attacked by a slew of re-animated zombies. tt0099180,wUul0bIkS6g,Dr. Herbert West mocks the decapitated head of Doctor Carl Hill. tt0838283,xQi7ABaeCx0,Both Brennan and Dale sleepwalk and destroy the kitchen in the process. tt0838283,WVxz2j4_skI,Brennan and Dale are picked on by some middle school bullies and are forced to lick dog poop. tt0838283,ulwUkaKjgY0,Brennan and Dale construct bunk beds which leads to an accidental collapse. tt0838283,ENAuQIAgXIg,Brennan buries Dale while he's still alive. tt0838283,IF-3dxM0df8,Brennan and Dale spend the first night sharing a room as step-brothers. tt0838283,_PvuoEb4yeQ,Brennan and Dale become hysterical when they learn that their parents are getting a divorce. tt0838283,KSheZC9C__s,Derek insists on being punched in the face and Brennan obliges. Alice forces herself onto a hesitant Dale. tt0838283,7FOk4bCAQhc,Brennan and Dale blow several interview opportunities including one involving a sporting goods manager. tt0117407,Kw5qjJslyNU,Milo and Radovan torture Frank. tt0117407,EzR4I2hJyxo,"When Frank apologizes to Milo for losing the money and the dope, Milo raises the price of the deal and wants his money back." tt0117407,RhirMa1wvPc,"Tonny asks Frank about this girlfriend, and then proceeds to discuss women and sex as crudely as possible." tt0117407,mZpiKdps530,"Frank turns to his supplier, Milo, in order to score enough heroin to fill an order." tt0117407,JL9SnJbeZQw,Frank and Radovan try to recover some money Frank is owed by a junkie. tt0117407,k6UQZv_ElZE,"After getting beaten up by Milo and his henchmen, Frank confides his fears to Vic, and then the two agree to runaway to Spain together." tt0117407,ZBc_xWnmHRk,"Frank is brought before Milo, whom he now owes 230,000 kroner, and is made to settle his account." tt0117407,85dpTb6PRNw,"When Milo's enforcer, Radovan, comes to collect a debt, all Frank can offer is the last of his heroin." tt0117407,Qo91sVEacq0,"When Frank's heroin deal with the Swede is busted by the cops, he makes a run for it and dumps the stuff in a pond." tt0117407,tgOwPRAbRdo,"Running out of time and options, Frank hits up his mother for money." tt0145531,ZF4nYBty_FU,Father Andrew recites a message from “The Gospel of Saint Thomas”. tt0145531,bjaJxs12l44,Father Andrew discovers Frankie writing and speaking in tongues she does not understand. tt0145531,cG0GDlP4oH0,Frankie experiences her first stigmata while taking a bath. tt0145531,PLNOftwFMCA,Father Andrew saves Frankie by receiving her message and becoming the messenger. tt0145531,2T8HUyL7zyA,Frankie is possessed into a stigmata on the train when she sees holy people. tt0145531,hJYfFD_MNoY,Father Kiernan explains the devout nature of stigmatics to Frankie. tt0145531,0NNaypyly_o,Frankie has a bad reaction to a rosary gift from her mother. tt0145531,iJcH2hCMNiY,Petrocelli presents a case to Father Kiernan about the original scrolls and words of Jesus. tt0145531,T2WbeZlfB9U,Frankie lands herself in the ER. The doctors believe her wounds are self-inflicted. tt0145531,nNkIWyfowzA,Father Andrew watches as Frankie floats transfixed in mid-air. tt0145531,HcP-chk0FwY,A corrupt Cardinal Houseman leads an attempted exorcism on Frankie at the cost of her life. tt0145531,kcDEHkSgpuw,Father Andrew saves Frankie by receiving her message and becoming the messenger. tt1324999,IelhpK-eDh0,Bella Swan and Edward Cullen exchange vows and share a heartfelt kiss at their wedding. tt1324999,YfualY_RvlA,"Edward’s venom begins to take hold of Bella’s body, and she transforms into a vampire." tt1325004,PwmNvgd5kNI,"Edward tells Bella he won’t sleep with her before marriage, and then he proposes." tt1324999,buoodeEt_hM,"The Cullens fight off the Quileute wolf pack, until the wolves discover that Jacob Black has imprinted on Edward Cullen and Bella Swan’s daughter." tt1324999,_3-cN9Bhxls,Jacob Black shows up unexpectedly to Bella and Edward’s wedding to say his goodbyes. tt1324999,dvT333RoCrw,Bella Swan discovers that Edward somehow got her pregnant. tt1259571,hEXsOOVWuGA,The Cullens fight to protect Bella from the Volturi. tt1324999,yjdZhknwl2E,Jacob Black discovers that Bella’s baby is thirsty for blood. tt1259571,-c9-2KcnLXI,Bella must protect Edward from showing the world his crystal body. tt1259571,-Kd5zqw24S4,"Jacob, Mike, and Bella Swan go to see a movie but Mike can’t handle the violence. Meanwhile, Jacob and Bella discuss their romantic feelings for each other." tt1324999,QKRPgJYHblo,"With the help of Edward, Bella gives birth to their child." tt1259571,0klA5lTNwyY,Bella tells Jacob that she wants to stay with Edward. tt1259571,GQlizbovQAg,Jacob breaks up with Bella. tt1099212,lhAQ43EIZ-g,"After a violent battle with James, Edward Cullen has to make the decision to save Bella Swan, or let her turn into a vampire." tt1259571,vOnWEmbW3OQ,Jacob transforms into a wolf in order to protect Bella from danger tt1324999,RNRZxWxgQlg,"Edward desperately tries to save Bella, and unbeknownst to him, his venom begins to heal her." tt1324999,JOidGUY4Dm0,Bella and Edward share a passionate night together on their honeymoon. tt1259571,JhE3o7EwmEI,Jacob climbs into Bella’s bedroom to explain his love. tt1259571,pPDz5TWc0Zw,Bella takes a tumble off her motorbike and Jacob takes his shirt off to help her stop bleeding. tt1259571,daUvbGlC3CY,Bella Swan tries to convince Edward Cullen that they only way they can be together is if she becomes a vampire. tt1259571,V2r-pCAO4rw,Edward vows never to fail Bella again because he doesn't know how he can live without her. tt1259571,luylsO8UlhE,"Before school, Bella talks to Edward and Jacob." tt1259571,lkMilWJJR_U,"Bella gets a paper cut, which drives Jasper to attack her." tt1099212,eDblDj6BISo,Bella Swan tells Edward Cullen that she wants to become a vampire in order to be with him for eternity. tt1325004,mSd_B5ZTP3s,Bella asks Edward why he disagrees with her decision to become a vampire. tt1325004,-bG0iKaxQYM,"When Jacob kisses Bella, she punches him in the face." tt1325004,7ghEs2R68XE,Jacob shows up at Edward and Bella’s school to talk about something serious. tt1325004,0AUpWC9Whfs,"After a heated argument, Bella asks Jacob to kiss her." tt1325004,LnuqPEIHL9I,"When Bella visits the injured Jacob, he confesses his never-ending love for her." tt1325004,Vs2DOfnZ2vg,Jacob arrives to help warm Bella up. tt1325004,fWxKQF17YHk,Jacob gets angry when Bella tells him her plan to become a vampire. tt1325004,NMrgITIzg2o,Jessica delivers a thought provoking Graduation Day speech. tt1325004,QsQAo97BaBA,Edward drops Bella off to spend the day with Jacob. tt1099212,AZIk5wIq2Qw,Bella Swan umpires a game of baseball with the Cullens. tt1325004,HQK5uM8tokE,Jacob agrees to join the Cullens in a fight to protect Bella. tt1099212,cE71I4X9hWQ,Edward gives into his urges and kisses Bella. tt1099212,bpcwhWgWfCc,Edward Cullen saves Bella Swan's life when Tyler loses control of his van. tt1099212,SnJzOrHZwk8,Edward tries to warn Bella that he's dangerous. tt1099212,ujFUQwcAQ7w,Edward confirms Bella's belief that he is a vampire. tt1099212,FY2kKLvUL2c,Edward Cullen tells Bella Swan that he can't deny his feelings for her any longer. tt1099212,9lX00rAetvU,Edward Cullen comes to the rescue when Bella Swan is cornered by a group of relentless frat guys. tt1099212,kELmSLtEiiI,Edward Cullen shows Bella Swan what kind of abilities he has as a vampire. tt1099212,oXMUkgWoMlQ,Edward Cullen has trouble controlling himself when he catches Bella Swan's scent for the first time. tt0415306,D5E23GxcVHA,"Cal keeps inviting Ricky to come over and party, but Ricky feels betrayed by him taking his life away." tt0415306,A27nH_TtN3k,Reese freaks out at Applebee’s when the family starts to expect a real relationship out of him. tt0415306,IzkrKfk4kYE,Susan gives Ricky a stirring pep talk that gets their juices flowing. tt0415306,QN5dfOs4TMY,"Ricky’s arm is broken by Jean Girard, who also introduces everyone to his husband." tt0415306,YXmD6qdDCDE,Carley leaves Ricky for his best friend Cal. tt0415306,6Dye05tvSoo,Ricky doesn’t believe that his paralyzing injury is all in his head and he stabs his leg to prove it. tt0415306,RkxAAilnLEI,"French driver Jean Girard provokes Ricky Bobby, but Cal backs him up." tt0415306,i1Nh_3JCFj8,Ricky Bobby says grace over his fast food dinner and gets in an argument with Carley over the specifics of prayer. tt0119654,G9puHtVcU5o,"J stops the bug from getting away, while K gets his gun back, and Laurel proves handy with a weapon." tt0119654,UONfi1pwQzI,"J and K shoot down the spaceship, but the bug inside Edgar is not going away without a fight." tt0119654,TNsEK_IIs9U,"J questions Laurel, unaware that Edgar is hiding under the gurney." tt0119654,aJCCUdK7PiU,"J and Laurel watch as the corpse's head opens to reveal a tiny alien creature with a dire warning, and K has to erase Laurel's memory." tt0104694,8LhpYfjGZvw,"Dottie, Kit, and Hooch arrive at try outs and get bullied by Mae and Doris." tt0104694,-7krYJUfFv4,"Dottie gets recruited by Ernie to play in a professional baseball league, but Kit is the one who wants to go." tt0119822,8z7YDo44-xE,"Melvin makes an offhand joke about her son's illness, which deeply offends Carol." tt0425637,Z7KYTavLTBo,The Southern rebels attempt to fight off Cao Cao's enemy forces to make time for the civilian refugees to escape. tt0425637,MM0kq3y2AMk,Cao Cao debates with the Han Court and the Emperor whether or not they should go to war with the rebels in the south. tt0926084,aJSh1zkPEvc,Hermione tells the tale of three brothers who met Death. tt0245686,PvtJeQ322eY,"Joe gets to know his new boss Clem, and on his first assignment, he gets bombarded with cafeteria food." tt0079417,8HZ56REwh3o,"Joanna takes the stand, and explains why she deserves custody of Billy." tt0373469,NiAbqHXwclo,Harry and Gay Perry accidentally discover a dead body. tt0343660,E2U5HXLiy90,Ula tries to get the details of Henry's latest conquest. tt0343660,S__SZwFn0Rw,Henry deceives his latest conquest in order to cut ties. tt0343660,T-m_67AX5Ms,Henry and his walrus work together to play the vomit joke on Alexa. tt0343660,iYU7ltkHYXM,Lucy shows Henry her art studio and tells him she dreams about him every night. tt0343660,v-fwHV86PgY,Lucy pummels Ula with a baseball bat in order to protect a seemingly innocent Henry. tt0343660,xHrOaF4Dq5U,Henry and Lucy have a series of first kisses. tt0343660,lQoMIGl_NTU,"Henry says his goodbyes to the walrus, Ula, and the kids." tt0343660,tmwSUyoEItk,Lucy forgets completely about Henry and is startled to awake to him in bed. tt0104257,iRdTetA_Dqo,Col. Jessep reacts angrily when he realizes that he has been arrested. tt0104257,9FnO3igOkOk,Lt. Kaffee's search for the truth hits a roadblock in Col. Jessep. tt0104257,nyKJeXDoqnw,Lt. Kaffee learns a lesson from Col. Jessep. tt0104257,PjJzOpe9xEg,Col. Jessep's upper hand against Lt. Kaffee doesn't last very long. tt0113670,kSyIRLpdmlA,"Miss Minchin cuts Sara's birthday party short to deliver tragic news in her typical, cruel way." tt0104257,CevDWRn-3-s,"At his wit's end, Lt. Kaffee explodes when Lt. Cdr. Galloway makes a suggestion to call Col. Jessep to the stand." tt0104257,vyMggFe9WRQ,Col. Jessep forces Lt. Kaffee into a weakened position by forcing Kaffee to be nice. tt0104257,WXsTZ7eUpBE,Lt. Cdr. Galloway endures Col. Jessep's insults as she tries to question him. tt0104257,ljzkCBZuHM4,"Lt. Cdr. Galloway gets in the face of Lt. Kaffee in an attempt to shame him into action, but it doesn't quite work." tt0104694,NaKBQWLRJqw,"The girls are at a loss when they try to get their coach Jimmy to give them the line up, but he takes a long bathroom break instead." tt0104694,XS1DdZzYIik,Dottie and Kit make up after the game as Dottie says goodbye to her sister... and baseball. tt0104694,a46FsHMRPkc,"Dottie tells the pitcher how to strike out her sister Kit, but Kit proves them wrong with a home run that wins the game." tt0104694,mmuJb30cigQ,The girls are confused when Jimmy leads them in an unorthodox pre-game prayer. tt0104694,6M8szlSa-8o,Jimmy chastises Evelyn in front of the team and reminds her about the rules of baseball. tt0104694,KVyRBCk_V1s,"Jimmy and Dottie give contradictory signals to Hooch, while she's up to bat." tt0113670,v1ordVEmJQQ,The girls lead a crusade to retrieve Sara's special necklace from cruel Miss Minchin. tt0113670,va_wuPBP5kA,"Sara paints Becky a picture of India, and connects with her Indian neighbor, Ram." tt0113670,fWPRhRM1V7I,Sara upsets Miss Minchin when she tells her what her father taught her. tt0113670,trLRP0-zvtU,Miss Minchin takes pleasure in demoting Sara to a servant after her father has passed away. tt0113670,-WOw8ePUCEo,Sara comforts Lottie with the notion that their mothers are in heaven as angels. tt0113670,FZ1f-u8RqBU,"On the day Miss Minchin had punished the girls with no food, they discover a bountiful feast and lavish decor set up for them by a mysterious do-gooder." tt0113670,LpBQ2Q6GMlM,"Tired of Lavinia's bad attitude, Sara puts a curse on her." tt0113670,G3iPKcMjGlM,Sara makes a dangerous escape from the evil clutches of Miss Minchin. tt0113670,mszANpbvdM8,"Sarah reunites with her father, who has amnesia from a war injury." tt0310281,IeMmE7HvO40,"The Folksmen are disappointed to hear the New Main Street Singers open with their signature tune ""Never Did No Wanderin'"" at the tribute concert." tt0310281,kXvfBvua7GY,Jonathan harasses Lawrence about some minor details before the concert. tt0310281,2idVkpn0YAU,Terry tells Sean that he can change out of his uniform once his singing is up to par. tt0310281,Izr-5yitrb0,"The Folksmen recall how they got their start as musicians, and lament the repercussions of being on a record label with no distribution." tt0310281,ojiHA64n6iw,"Terry and Laurie Bohner discuss the spiritual organization they belong to called ""Witches in Nature's Colors.""" tt0310281,sa2TE--j394,Amber and Wally explain how they plan to garner press for the memorial concert. tt0310281,5gN8YA_xeY8,"After the benefit concert, Mark reveals that he has found his identity as a blonde female folk singer." tt0310281,YOkboxqOKBA,"Mike describes the sitcom that is being produced with the New Main Street Singers entitled ""Supreme Folk.""" tt0310281,Of8JOVXYU0Q,Mike recalls his short-lived career as a television personality and how he came to discover the Main Street Singers. tt0105265,uu-RxCqop98,"The Maclean brothers go fly fishing with their dad, who shows them who has the most skill." tt0105265,7vRhOdf-6co,Rev. Maclean teaches young Norman and Paul how to fly fish and how to write. tt0310281,BI0lsk0EjfE,Terry and Laurie Bohner discuss their unconventional upbringings and recall how they met one another. tt0105265,AP3GWf3p4fQ,"Norman tells Paul he's going to marry Jessie, and invites him to come with them to Chicago." tt0105265,gnz7BQ7lxJQ,"With a prize trout on the line, Paul gets swept downriver." tt0105265,TfGmV-el44k,Rev. Maclean delivers the last sermon Norman will ever hear him give. tt0105265,NJF70sHMFN8,"Norman, now old, fly fishes alone and waxes poetic about the river he loves." tt0105265,WA3_SfMxtN8,Mrs. Maclean breaks up a fight between Paul and Norman. tt0105265,nLTcdOr66lA,Paul and Norman attempt to navigate a set of falls on the Blackfoot River. tt0268126,mSD3SFHaqwg,Donald visits Charlie on the set of Being John Malkovich and asks him for a good way to kill people. tt0268126,8391icf7iLk,"Charlie despairs that he will ever be able to adapt the book, but Donald finds all kinds of inspiration for his thriller movie." tt0268126,ap9g2vR32Vg,Donald's inane movie idea drives Charlie up the wall. tt0268126,MyvEWQL7veg,"Desperate and defeated, Charlie goes to his hornball agent and tells him that he can't adapt the novel." tt0268126,7_HpQA3rLWw,"Charlie nervously details his vision for adapting ""The Orchid Thief"" to Valerie." tt0268126,x90GleSXqIg,"While hiding in the swamp for their lives, Donald elegantly reveals his philosophy on love to Charlie." tt0268126,nr037owyBqM,Charlie asks a simple question about screenwriting and gets a brutal answer in return from Robert McKee. tt0118571,SuJOuQ9PJ_o,"The President is secured aboard a military transport plane, which changes its call sign to Air Force One." tt0268126,mdYIqSZblv0,Laroche reveals to Susan that he can easily move on from a passion project when the moment suits him. tt0118571,yehCJ076_zI,Secret Service Agent Gibbs betrays the President as Air Force One is moments away from an oceanic impact. tt0118571,nHpuQMB2pVU,Ivan's celebration over securing Radek's release is short-lived as the President proceeds to kick ass. tt0118571,yJS6icRaOq8,A fighter pilot flies into the path of an oncoming missile in order to shield Air Force One. tt0118571,YdaeVone5qA,President Marshall battles terrorist Ivan on the plane's parachute ramp. tt0118571,AoAK1JNNKR0,"With the deputy press secretary at gunpoint, Ivan issues an ultimatum." tt0118571,ZRkiBDXDT5Q,The President arms himself by removing a terrorist from his weapon. tt0118571,zj4oU-cUE9E,"A group of Russian nationalists, lead by Ivan Korshunov infiltrate and hijack Air Force One." tt0074119,CXacLvKGrQ0,Harry Rosenfeld informs Bob Woodward and Carl Bernstein that they'll be covering the Watergate scandal together. tt0074119,gvKBHCBBdf0,"After confirming that Haldeman was indeed the fifth man involved with Watergate, Ben Bradlee gives Carl Bernstein and Bob Woodward permission to run the story." tt0074119,O4itfvSP7-c,Bob Woodward and Carl Bernstein are taken aback when one of their key contacts suddenly denies having any involvement with them. tt0074119,Tg4_lfm5VrQ,Ben Bradlee tells Carl Bernstein and Bob Woodward to run the story about Mitchell. tt0074119,FEdL1_zOyz4,Woodward and Bernstein consult with Ben Bradlee about whether they should push the Watergate story in the face of serious threats against their lives. tt0074119,zZi8n49RMGE,Bob Woodward presses Deep Throat for answers and discovers that he and Carl Bernstein are in serious danger. tt0074119,vETxuL7Ij3Q,"Bob Woodward meets with an anonymous source, going by the codename Deep Throat, who tells him that the key to Watergate is to follow the money." tt0074119,42sANL2ap9A,Security guard Frank Wills discovers a break-in at the Watergate office complex. tt0074119,u0ttQ8Dn7LM,Carl Bernstein questions the committee bookkeeper about the funds used for Watergate. tt0305224,XZWz-YlVw5c,Dave crashes a New York Yankees game in order to profess his love to Linda. tt0305224,1cekfpK8mZQ,Dave confronts his childhood bully who has now become a Buddhist monk. tt0305224,zEYkLkJs5g0,Buddy admits to Dave that he has fallen deeply in love with his girlfriend. tt0305224,bQzh5ugYzPg,Dave takes Stacy and Gina out in an effort to make Linda jealous. tt0305224,PGy7bpf9ibo,"Dave realizes that he is getting more anger management therapy and an out of control partner to ""help"" him." tt0305224,Vs2Nq6isib4,Dave is surprised when Kendra turns out to have a terrible fat complex. tt0305224,lAgPsmTxBfc,Dave learns an eskimo word at his anger management session. tt0119822,l59t24vh3QI,Melvin finds the words to convince Carol that she's the greatest woman on Earth. tt0305224,DzUc3Eqzzos,"Dave has a meltdown on a plane, which gets him in deep trouble." tt0119822,Jly4dXapR9c,"Simon tells a story about his father to Carol, while Melvin tries to convince them that some people had happy childhoods." tt0119822,A75AgrH5eqc,"Carol asks for a compliment, and Melvin takes a very convoluted path to give her one." tt0119822,MI0gOipkexk,"Carol breaks down and confesses all of her fears to her mother, who just wants to go out." tt0119822,pbI6qTih2TI,"Nora asks Melvin for help with walking Verdell, and he agrees, but still tells her off with his trademark wit." tt0119822,itIDxKxfGJI,Melvin reluctantly takes Verdell the dog when his neighbor is hospitalized. tt0119822,c-ecbGNxEHM,Melvin meets a female fan and manages to insult her almost immediately. tt0112442,v5wBisDJJ5A,"Mike saves Marcus at the last moment, but Fouchet escapes with Julie as his hostage." tt0112442,pqDU_EJrb2g,"Marcus finds himself ambushed by Fouchet's henchmen in the restroom, while Mike enjoys the lovely ladies at the club." tt0112442,ujhXgFBjcZA,Fouchet's last-ditch attack is thwarted by Mike's faster pull of the trigger. tt0112442,hAUbdHw8QG4,Fouchet makes his getaway as Marcus and Mike give chase. tt0112442,im1ZK1WNBZs,"After foiling Foucet's drug deal, Mike and Marcus rescue Julie and wreak havoc to the bad guys." tt0112442,MoPFAlf393g,"Despite their incessant arguing, Marcus and Mike thwart a couple of would-be carjackers." tt0112442,AYZZV6qazes,"Mike takes his interrogation of Jojo to an extreme level, which disturbs even Marcus." tt0414852,Jet1_E4O1MU,Leito tries to keep Damien from entering the code to stop the bomb because he thinks that it will actually blow the bomb. tt0414852,Cmhinct9OGE,"Damien goes mano a mano with a giant, while Lola tries to destroy the bomb." tt0112442,i4h9xcdtyrE,Mike and Marcus find themselves held at gunpoint by a fearful convenience store clerk. tt0414852,Z9BefcGEB10,"When Taha's thugs realize he can't pay their paychecks, things get ugly." tt0414852,qb0Vd5ac82Q,Leito and Damien are chased through the neighborhood by K2's men. tt0414852,jvCmoJHIm-A,Leito and Damien work together to escape Taha's headquarters. tt0414852,21q8w_kAtkU,Leito breaks into Taha's headquarters to rescue his sister. tt0414852,FIo18XdSuLs,Damien asks Leito how he figured out he was a cop. tt0414852,jrH2FZC1Z_U,Leito leaves Damien to fend for himself as a lone cop in District B13. tt0414852,VHSoPTJNfPE,"Leito leads Taha's thugs on a wild free-running chase through District B13, but they can't keep up with him." tt0981227,g8nPKVElb88,"When two drunks jump into the Yugo thinking it's a taxi cab, Nick and Norah drive them to the Bowery Ballroom." tt0414852,fbmyMs5HAR4,Capt. Damien Tomaso breaks out of a casino where he was working undercover. tt0106364,MVy9DFwT-4o,Salvatore Valestra pays a fateful visit to The Joker at his hideout in the ruinous Gotham World Fairgrounds. tt0106364,yJ5tQQhl8wc,"In this flashback, Bruce Wayne dons a ski mask and tries to stop a gang of thieves from robbing a warehouse." tt0106364,GvYsdMFsHuE,"In this flashback, Bruce Wayne intervenes when a gang of motorcycle thugs tries to mug a street vender." tt0106364,-_YHQheqKxE,Batman and the Joker battle it out amid a model version of Gotham City. tt0106364,-4Q-MS_oFkw,"In this flashback, Bruce Wayne's new fiancé Andrea Beaumont suddenly vanishes, prompting him to follow his destiny." tt0106364,o_vwPlWTrgo,"Thinking Batman is responsible for the Phantasm's murders, Harvey Bullock and the police corner him at a construction site." tt0094721,SAYvv7GeSSE,"After breaking the rules and summoning Beetlejuice, Juno chastises Adam and Barbara for making the situation worse." tt0106364,DK7-VL8Uxxo,"The Phantasm reveals her identity to the Joker, who isn't quite ready to die." tt0106364,ZEOI34R4iw0,"Having stopped the Joker's jetpack escape plan, Batman pleads for the Phantasm to escape with him before the whole amusement park explodes." tt0094721,OeEa3gTsVDo,Lydia surprises Adam and Barbara when she reveals that she is the only living person who can see them. tt0106364,vE0nmQGO4Hk,"A new villain stalks the streets of Gotham, known only as the Phantasm, he takes down the mob boss, Chuckie Sol." tt0106364,_3CJHN6bBzk,"In this flashback, a pre-Batman Bruce Wayne falls for the irresistible Andrea Beaumont." tt0094721,Io0PZTAcBes,"After being unleashed by Adam and Barbara, Beetlejuice shows his gratitude in a most obnoxious way." tt0094721,RYlj-btwi6o,"While hiding in the attic, Adam and Barbara see an ad for Beetlejuice who showcases his ghostly services." tt0094721,Lcf227lWEek,"Beetlejuice scares the Deetz family by taking the form of a giant, hideous snake." tt0094721,cZwdCa0ynEw,Barbara and Adam find themselves trapped in the bureaucracy of the Netherworld. It's a lot like the DMV. tt0094721,vHmyJqXxmL8,Adam and Barbara work together to stop Beetlejuice from marrying Lydia. tt0094721,Nz15PudXkXM,Beetlejuice tries to get Lydia to say his name three times so he can escape into the world of the living. tt0094721,aDm4L7gjYNs,Lydia summons Beetlejuice so he can help her rescue Adam and Barbara. tt0381681,VhRkUhY8MlQ,Celine sings Jesse a song she wrote about their night together. tt0381681,3WscLkiiCts,"Jesse explains the idea for his next book, and gets flustered when he sees Celine in attendance." tt0381681,eGJqzSFW9Zg,Celine gives Jesse a hug to see if he dissolves into molecules. tt0381681,pEa07GOtQs4,Celine shares her feelings regarding the uniqueness of each relationship. tt0381681,TUbgKkn9qFw,Celine gets worked up when she reflects upon how her experience with Jesse has stunted her. tt0381681,60ldo3xGfGY,Celine asks Jesse to speculate about what he would say to her if it was their last day on Earth. tt0381681,z_eg2OjO6uM,Jesse confesses to Celine the loveless state of his marriage and the longing he has felt for her over the years. tt0381681,Gk3MgTTHdLs,Celine and Jesse finally learn the outcome of their plan to meet in Vienna nine years earlier. tt0381681,WPPUUvcO43A,Jesse laments what could have been if he and Celine had met in Vienna like they'd planned all those years ago. tt0381681,dcsByxGdYO0,Jesse is in disbelief when Celine claims she doesn't remember having sex nine years earlier. tt0758774,vTeY6H581pg,"When Ferris visits Aisha and her sister, an otherwise peaceful lunch is disrupted by the politics of the Iraq War." tt0142342,acs2qgkCHvw,Sonny shows off Julian to his friends Phil and Tommy. tt0142342,nDw_DOEdai8,"Sonny surprises Vanessa, only the surprise is on Sonny when he learns she's sleeping with an old man." tt0142342,vWyPfvAbUOQ,Sonny has an ill-timed interruption to Kevin's marriage proposal to Corinne tt0142342,TvetwclCFq4,Sonny uses Julian to help him hit on Layla in Central Park. tt0142342,orGDoXo7xKA,Sonny says an emotional goodbye to Julian who begs to let him stay. tt0142342,UFlhVGogIRg,Sonny convinces his father and the court that he's ready to be a father. tt0142342,UMlZ90ZNGJI,Sonny dressed as Scuba Sam makes a surprise visit and convinces Julian to bathe and study. tt0319061,IdEekLJJc0o,"Ed introduces himself to Sandra, only to find that she is engaged to marry someone else." tt0319061,5WIwlJP6XhU,A sudden growth spurt helps young Ed realize that he is intended for larger things. tt0319061,RAvoR20o9s4,"Will tells Ed the story of his dying moments, where everyone he knows gathers by the river to watch him swim away." tt0142342,K2JtNouF2rQ,"Sonny teaches Julian where to pee, after a Restaurateur doesn't allow them to use his facilities." tt0319061,35LPE5SjhiI,"Like fellow Ashton native Norther WInslow, Ed is charmed by the secluded small town of Spectre, but he decides to leave when he realizes he is not yet ready to settle down." tt0319061,ZRdLFB-SJpA,"Ed makes a grand romantic gesture for Sandra, and when her fiance beats him up, she decides she likes Ed better." tt0319061,cfDwQbxRoEo,"Ed sees Sandra, the love of his life, at the circus and time stops." tt0319061,V5qEU07yVnI,"A young Ed, along with his friend Ruthie, ventures into the yard of a local witch, whose glass eye can predict the moment of death for anyone who looks into it." tt0319061,gvJLNa16cdo,Ed befriends Karl the Giant and encourages him to join him when he leaves town. tt0758774,paCyf1IAKug,A group of jihadi terrorists prepares Ferris for an on-camera execution. tt0758774,WkFdij3Wr9M,Roger Ferris devises a fake terrorist attack to draw out Al-Saleem into the open. tt0758774,NeciZ5_hFTY,"Ferris is taken hostage by Al-Saleem's men, while Ed Hoffman watches from the safety of his command station." tt0758774,tskuP_9J2RY,Hani Salaam uses coercion and bribery to worm a spy into Al-Qaeda's ranks. tt0758774,ySu6q4ydPZQ,Ed Hoffman shows up in Jordan to meet with Hani Salaam about borrowing their newly acquired asset. tt0758774,4cZQOWaWYj0,Ferris and Bassam attempt to escape a terrorist safe house with their mission-critical intelligence. tt0758774,HK4eFj52f1o,Ferris leads a meticulously planned surveillance operation that is screwed up by an inexperienced operative. tt0758774,McBW00qkAlY,"Ferris infiltrates a terrorist safehouse, while Bassam provides sniper cover from afar." tt0115734,QihI3ORsFn0,"As the Hinckley Cold Storage mission falls apart, Dignan decides to go back for Applejack." tt0758774,GJz6eFgwgkA,"When his informant is taken hostage, Ferris is forced to execute him in the middle of a crowded street." tt0115734,-swpG7VRhpQ,"Bob struggles to sell himself to Dignan, but he's the only one with a car. Anthony despairs over his little sister Grace's low opinion of him." tt0115734,5BKMV5PyjDg,Dignan and his team lose all sense of control as the Hinckley Cold Storage robbery goes from bad to worse. tt0115734,OAZo5VJVZCY,Dignan blows up after realizing that lovesick Anthony gave all their money to the housekeeper. tt0115734,21mtTvR21Ts,"Futureman mocks Dignan's new yellow jumpsuit, but Anthony supports his newest scheme." tt0115734,SmFDafzmklA,Dignan blows up at the gang for not paying attention to the plan. tt0101507,BQdE0_Hy10M,Doughboy tells Tre that he understands why he decided not to be involved in avenging Ricky's murder. tt0115734,vLXjWGI8sfw,Futureman hunts down his brother Bob for not cleaning the pool. Anthony explains to Stacy why he was in a mental hospital. tt0115734,UkYl0Qxgkpw,Anthony gets upset with Dignan for stealing his mother's earrings. Little sister Grace is ashamed of Anthony for checking into an insane asylum. tt0101507,vN_HrPvTVIk,"Doughboy and Ricky get into a fight, and Tre tries to break it up." tt0101507,C--iuM8NcQc,Tre watches in horror as Ricky is gunned down in an alleyway. tt0101507,W1fv8bPOwGk,Furious convinces Tre to give him the gun instead of avenging Ricky's death. tt0101507,5p9rqqJmDaQ,Furious lectures Tre and Ricky about the dangers of lowering property values in the black community. tt0101507,aCEjVC3Dtn8,"When Ferris bumps into Ricky, Doughboy sticks up for him until shots are fired." tt0101507,SPrK-BvZA9E,Furious shoots at a burglar during the first night that Tre spends in the house. tt0101507,SXeiM5hAWvA,"Doughboy wins a game of dominoes and switches to a game of spades, while Tre arrives at the party and spots Brandi." tt0127723,qhzCkJXZVJg,"At long last, Preston fulfills his destiny and makes a move on Amanda." tt0127723,eqdLKw173WI,Preston recounts his attraction towards Amanda and how fate has given him another chance. tt0127723,_RUjbQGPytY,The Angel inspires Preston to seize the moment that fate offers. tt0127723,asySRpuqnTM,"William's drunken rendition of ""Paradise City"" gains him some fast friends and some fly honeys." tt0127723,K8nX2uH-h-M,Kenny and Denise find out that they have more in common than just bad fashion. tt0127723,9SomT1Cop8A,"Much to everyone's surprise, Amanda shows up to the party." tt0127723,T0cNy3l6Zek,Amanda rebuffs Mike's attempt at reconciliation after he tries to force the issue upon her. tt0127723,nxRZisFQdTE,"After breaking up with her boyfriend and then being hit on by several other guys, Amanda reacts violently towards Preston's heartfelt advance." tt0425637,vG8-BVdJ9_U,Xiao Qiao and her band of armed maidens lure the enemy into a trap. tt0425637,feHbFy5zPNQ,"Liu Bei tries to arrange a marriage for his tomboy sister, Xiao Qiao, but she has an idea of her own." tt0425637,iC-oZZbET3I,"Zhao Zilong, Zhang Fei, and Zhang Zhao take on the army of Cao Cao and show their skill as warriors." tt0425637,PZalnJDYFDk,Zhou Yu speaks to his military leaders and motivates them to believe that they can win this war. tt0425637,NAZYmJ_bVkw,"Viceroy in Chief, Zhou Yu puts together the strongest warriors to lead the next battle against General Cao Cao." tt0425637,VHLbq6oeSyw,The battle wages while three extremely well-trained warriors take on enemies on different fronts single handedly. tt0425637,gA9Z-Irh_Y4,Zhang Zhao uses an innovative technique to halt the enemies charge while Zhao Zilong fights to protect the child of Prime Minister Liu Bei's family. tt0425637,Wj-RYFPvje4,Cao Cao debates with the Han Court and the Emperor whether or not they should go to war with the rebels in the south. tt1326972,Q7spsnpuZQ4,The allied forces attack the imperial army's main camp. tt1326972,rojN1eCJgiA,"The war continues as Zhou Yu finds himself in a sword fight, and Sun Shangxiang, also known as ""Piggy"", comes face-to-face with an old friend." tt1326972,iptTDWFBsGQ,Zhou Yu's soldiers use a phalanx tactic to fight against the enemy troops. tt1326972,GETldyxkTEI,"Fire and explosions engulf Cao Cao's naval troops, which forces them to retreat." tt1326972,r-briQqhGZY,"Zhuge Liang's strategy to acquire 100,000 arrows goes as planned." tt1326972,zyTCACwFsgw,"With the lives of Xiao Qiao and her unborn baby at stake, Zhou Yu and his men take risky steps to rescue them both." tt1326972,laQz2eLj1-0,Zhou Yu and his army take advantage of the shift in the winds during a naval battle against Cao Cao and his imperial troops. tt0075860,JeeZA4B1qyI,Lacombe makes direct -- and friendly -- contact with one of the aliens. tt0075860,dUYCIwyMZTQ,Roy is questioned by Lacombe and Laughlin regarding his strange and sudden obsessions. tt0075860,LYtSsBCYByk,Roy leaves behind his life on earth to join the aliens aboard the Mothership. tt0075860,S4PYI6TzqYk,Scientists try to communicate with the Mothership using light and musical tones. tt0075860,cdkS0TgEG30,Roy has a mental breakdown at dinner with his family. tt0075860,HYtuw0c3dJ4,"When Roy's truck suddenly shuts down, he sees first hand the mysterious power of the UFO." tt0075860,OuH_qx192js,"Jillian and her son Barry are trapped in their home, surrounded by mysterious extraterrestrial lights." tt0376541,7ycl6niFTsM,Alice knows that Anna just kissed her boyfriend. tt0376541,-eocP3-Ifag,Anna and Larry cross paths with Alice and Dan at the opening of Anna's photo exhibition. tt0075860,8MW3KJUa8FQ,Roy and the local police give chase to the UFOs. tt0376541,ceTBcVLeUtI,Larry shares his feelings with Alice in the Paradise Room. tt0376541,fnF1_aVlIio,Alice finally walks out on Dan. tt0376541,ZbeXU9FIFw8,Larry grills Anna on the details of her affair. tt0376541,iCfBiIzWG9g,The tension between Larry and Alice starts to heat up in the Paradise Room. tt0376541,qgmcXs02URY,Dan comes to Larry's office to seek some advice. tt0376541,USGs4XhdI6I,"At Dan's insistence, Alice admits to sleeping with another man." tt0106673,pOgf3IaWlgU,Dave admits President Mitchell's involvement in the campaign finance scandal before faking a second stroke. tt0106673,ZARAldXlSyA,Dave takes over a cabinet meeting to balance the Federal Budget in order to save a children's homeless shelter. tt0106673,rWvIBJO8T_Y,Duane says goodbye to Dave and tells him he would have taken a bullet to save his life. tt0106673,njHGa4f1LwY,Ellen gets to know Dave and asks what he would do if he could be President a little while longer. tt0106673,7_wMbTKsnvQ,Dave wows Bob and Alan when he knows more about the President's mannerisms than they do. tt0106673,0xjYQiEDbj4,Ellen intimidates Dave at their first encounter during a press conference. tt0106673,xTdNSA_CWvc,"Bob interupts a White House tour on his way to fire Dave, but Dave has the upper hand." tt0106673,M2V8jSFKVw0,"When the President has a stroke, the White House Communications Director, Alan, and Chief of Staff, Bob, convince Dave to impersonate the President." tt0106673,CftR-xOfXsc,"Dave unsuccessfully tries to connect with Secret Service Agent, Duane." tt0068473,iBSRk-DbhRw,Drew and Ed argue about what to do with the man that Ed killed. tt0068473,Ej9siBXzHzY,"After the men conclude that Drew was shot, Ed asks Lewis what their next move should be." tt0068473,dFwt1vL1JOg,The men hide the body of the Mountain Man by buring him in the woods. tt0106673,WQnFe6vuWq4,Ellen bursts in on Dave in the shower and demands to speak with him about something he didn't do. tt0068473,y7Ynxoqo8gw,"Lewis shares his philosophical point of view with Ed about the ""game"" of survival and the dangers of trusting a civilized system." tt0068473,ntC0xJo2bSU,Lewis kills the Mountain Man right before Ed is raped. tt0068473,4gh5B_Uezmk,"Sheriff Bullard questions Ed and Bobby one last time, then advises them never to return to the town." tt0068473,WqNMjZpSbnU,Ed watches helplessly as Bobby is humiliated and raped by a redneck. tt0068473,AYQA7kCTPN8,"Ed encounters the Toothless Man, but has trouble finding the courage necessary to kill him." tt0068473,LVkOD1Uy_9k,"When Ed and Bobby take a break from their canoe trip, they are threatened by two rednecks who have no intentions of playing nice." tt0112851,srDyToPqozI,"El Mariachi takes on an army of thugs, but his friends are among the casualties." tt0112851,doVYFjIJcfU,"El Mariachi gets attacked by the knife-wielding Navajas, who also puts away a car full of henchmen." tt0112851,uxhJ_E3LuNA,El Mariachi gives Carolina a guitar lesson that quickly turns into something more. tt0112851,S7h60nfyg3M,"Finding the bookstore on fire, El Mariachi and Carolina escape via the only way out of the building--the roof." tt0112851,KfprSGvOgpI,"El Mariachi confronts Bucho, who turns out to be his own brother, but that doesn't stop them from fighting to the death over Carolina." tt0112851,5nIwJTUMlE4,El Mariachi reunites with two old friends to declare war on Bucho's men. tt0112851,AEEf_00tNos,El Mariachi single-handedly takes on a team of bad guys in a bar. tt0112851,579nK0yB22I,"Carolina serenades El Mariachi in bed, but he can still hear the footsteps of approaching gunmen." tt0088323,rCn7orvs0Ws,"Atreyu finds Shell Mountain and discovers that it is inhabited by a giant, apathetic turtle." tt0088323,5sEZmMeH96Q,Atreyu comes face to face with the Creature of Darkness that has set out to stop him from completing his quest. tt0088323,NgUGViWp3tg,All hope is lost when the land of Fantasia is torn apart by the power of The Nothing. tt0088323,IBUOACCdZi8,Atreyu's bad luck turns around when he meets Falkor. tt1213644,vD8p7k2-_zA,"Music video of all the pop culture cameos in the entire film singing a version of ""I'm F**king Matt Damon.""" tt0088323,QQyorpxZ8rs,Rockbiter makes a stop at Night Hob's and Teeny Weeny's camp for a quick snack. tt0088323,xaILTs-_1z4,"Bastian realizes the connection between himself and the world of Fantasia, and that he is the only one who can save the magical land." tt0088323,aj-OpTHixpU,"Atreyu meets the Rockbiter, who is distraught over his failure to keep his small group of friends together." tt0088323,I_vzG5nYk1I,Atreyu must pass through the Sphinxes' Gate in order to continue his quest to save Fantasia. tt0088323,mPxTwqzr1sw,"With the help of Falkor, Bastian finally gets revenge on the bullies who tormented him." tt0088323,vE8mFDabqD0,"Atreyu and his horse Artax enter the Swamp of Sadness, but only one survives." tt1213644,Bg5ll84eQTw,Will and Amy discover a mini Indiana Jones. tt1213644,v59kIbs3gDY,Will and the gang find Batman as he is leaving the city. tt1213644,LcX1BSUZVpg,Juney fights a rather masculine Carrie from Sex and the City. tt1213644,I2jetO_ky7U,Will and the other survivers find a demented version of Alvin and the Chipmunks. tt1213644,zmqhj8EOLBI,"A caveman runs from a Mammoth in 10,001 BC and then fights Wolf the gladiator." tt1213644,MjsSG8pPTy0,The gang encounters a gay Beowulf and a violent Kung Fu Panda. tt1213644,AQC83SamleQ,Will's party turns into a High School Musical scene. tt1213644,jVLk2tqreto,"Hannah Montana dies by meteor, but not before promoting her career." tt0072890,nvdBfpA8r4o,Stevie chickens out when Sonny and Sal set the bank robbery into motion. tt1213644,KLieNRvLmd0,Lisa fights with a foxy lady. tt0072890,4ca0T6jbhHo,Sonny tells Sal of his plan to leave the country on a jet. tt0072890,XEsZK8pvveU,"Sonny, Sal, and the hostages arrive at the airport and prepare to board the jet." tt0072890,_SR4O2gcXYA,"A news telecast reveals Sonny's sexual orientation, while Sal takes offense at being labeled a homosexual." tt0072890,JkJmzgDiUtw,An emotionally spent Sonny calls his wife Leon to say 'goodbye.' tt0072890,W-OzWbkk5lE,Sonny fires the first shot when he hears the police coming in through the back door. tt0072890,rFuhmG2wUXw,The near-riotous crowd goes crazy when Sonny begins to throw money into the air. tt0072890,A1Tgrq5wLAw,Sonny receives a surprise phone call from Detective Moretti as the cops arrive at the scene. tt0072890,NSXcYEFY_ao,Sonny is interviewed live over the phone by a television news reporter. tt0072890,lB6Gk5EtunI,"Sonny steps outside of the bank to find the building surrounded by police officers, and leads the accumulated masses in a chant of ""Attica.""" tt0119008,tPJ9WsQhpMw,Sonny and Lefty ambush and overthrow Sonny Red's faction. tt0119008,dbE2-VU-4SM,Lefty's paranoia about Donnie is a point of contention between the two men. tt0119008,TT8o1fvTB5Q,"Lefty questions Donnie's loyalty, threatening violence if he discovers that Donnie is a rat." tt0119008,z54CDMBPKu8,Donnie is forced to think on his feet when a U.S. Attorney inadvertently blows his cover. tt0119008,twkjN0xQsWw,Joe reveals to Maggie the agony of his job as an undercover FBI agent. tt0119008,e2xiwiWd_sM,"When Lefty leaves his apartment, he knows it will be for the last time…" tt0119008,NqYAnj6YcLk,"Convinced that he's being set-up, Lefty is instead startled by the gift that Sonny has wrangled for him — a live lion." tt0119008,BPrF_0Bg6iY,"Suspecting a power play by Lefty, Sonny threatens to kill Donnie if he doesn't reveal what's really going on." tt0103874,9CIAkk-YENU,"During the course of a long night, Van Helsing almost falls victim to the seduction of Lucy and Dracula's brides. In the morning he finds their lair and beheads the three vampire brides." tt0103874,_OFfuZY_Pvk,"In the throes of passion, Mina drinks the blood of Dracula in order to live in eternal life with her love." tt0103874,X1rnBQJxfdk,"Led by Van Helsing, the gang has a standoff with Dracula who transforms into rats to make his escape." tt0103874,8rlohOLUi9k,"Van Helsing, Jack, Arthur, and Quincey discover that Lucy has become a vampire when her coffin is empty. On her return, the men stab her through the heart and behead her." tt0103874,V67ozonzKRQ,"Over a prime rib dinner, Van Helsing explains to Jonathan and Mina that vampires do exist and the rules to their existence." tt0103874,jrLVuKks6lE,Prince Vlad restrains himself from sucking the blood of Mina and then saves her from an escaped wolf in the cinematheque. tt0064276,SDAdzb9IeGU,"Wyatt, Billy, Mary and Karen drop acid in a New Orleans cemetery." tt0064276,QLAYw0vM-bw,Wyatt and Billy meet a violent end by the side of the road somewhere in the deep South. tt0103874,onbiOVpX0_w,Vlad the Impaler returns from battle to find Elisabeth dead. He renounces God's church and accepts the powers of darkness. tt0103874,ojgy7kyNp5g,"Dracula welcomes Jonathan inside his castle and tells him that he ""never drinks wine.""" tt0064276,iamsdf-VSQI,"Wyatt and Billy pick up two prostitutes at a brothel in New Orleans, but Wyatt is more interested in what's happening at Mardi Gras outside." tt0064276,lQWvCntonxE,"Billy celebrates their financial success and the freedom it entails, but Wyatt insists that they blew it." tt0064276,4j7zD5ydpUo,George expresses an interest in joining Wyatt and Billy on their road trip to New Orleans. tt0064276,8Gu2ouJNmXc,Billy and George debate why society is so threatened by the freedom they represent. tt0064276,r763LgcxCyM,"Wyatt and Billy meet lawyer George in jail, and he offers to help get them out." tt0064276,L7GJ018Avgw,"Billy describes an unidentified flying object that he saw, and George explains his theory about aliens living among us." tt0181536,F6y4B_BFrJ4,"To the astonishment of all in attendance, William informs Prof. Crawford that the words he read were, in fact, written by Jamal" tt0181536,t5KEbS5soMA,William makes a surprise appearance in Jamal's writing class to read an essay entitled 'Losing Family. tt0181536,yF0WIBF4lBw,"While out on the field at Yankee Stadium, William recalls watching the ball games with his brother during long ago summers and autumns." tt0065724,Gc8MuT6L4Nw,Bobby ridicules Catherine after she reveals that his musical ability has triggered an emotional response within her. tt0181536,xSnraJOeOyM,"Jamal gets kicked out of class after challenging Prof. Crawford, and winning, in a game of authors and literary quotes." tt0181536,FIaxR4Z1jVY,"During a basketball practice, Jamal scuffles with another player leading to a free throw shootout to see who does laps." tt0065724,0nfoP3bmd1c,"When a haughty intellectual insults Rayette, Bobby defends his girlfriend with his trademark wit and temper." tt0181536,1hMMUJ2Gn7Y,William inspires Jamal to get into the rhythm of writing by having him type an older piece named 'A Season of Faith's Perfection. tt0181536,A_lu5jmaUbU,"Jamal asks William if he ever entered any writing competition. William responds ""once,"" and that he won the Pulitzer." tt0181536,zLBEFvMkQCo,"William gives a lesson on writing to Jamal. Specifically, the first key to writing is to write, not to think." tt0065724,QZq0zhzgres,A frustrated Bobby succumbs to his attraction to Catherine. tt0065724,XNfCPe5SGbw,Bobby finds himself as the center of interest for a pair of smitten women. tt0065724,5JLr0XUrEF0,"Trapped in a traffic jam, Bobby jumps onto the back of a truck and starts playing the piano in an impromptu freeway performance." tt0065724,vLAQiwEGGKs,"After a pensive moment alone, Bobby makes a fateful decision to suddenly abandon his life, leaving behind his girlfriend Rayette." tt0065724,Y7y8tLgvpCY,Bobby makes a tearful apology to his invalid father. tt0065724,hdIXrF34Bz0,Bobby outwits a stubborn waitress and then insults her in legendary fashion. tt0083987,pAs8uvKNkcU,"Gandhi decides to fast until the rioting ends, even if it results in his own death." tt0083987,0adv8zQsa9I,"Gandhi gives advice to Nahari, a man who believes he is going to hell because he killed a Muslim boy in an act of vengeance." tt0083987,3GG_4UaCD8E,Gandhi gives a rousing speech promoting non-violent opposition to an unjust law. tt0083987,CZVsWzIb6Vk,"Gandhi argues that the people of India would prefer their own ""bad"" government to the ""good"" government of the British." tt0083987,pi6SInyE0sw,"Reporter Vince Walker interviews Gandhi about his ashram, or community." tt0083987,S8mfOyCySKg,Gandhi and Rev. Andrews encounter a racist youth in the street. tt0083987,-Y3tZpAdWTc,Gandhi is thrown off a train in South Africa for sitting in a first-class compartment. tt0083987,d7c4TXqkMso,Hundreds of thousands gather for the funeral parade of Gandhi in New Delhi. tt0119177,MEOPA4dzK2s,Vincent and Irene consummate their relationship in a room overlooking the ocean. tt0119177,7gYbpM0GWTs,"While competing to see who could swim furthest from the shore, Vincent is forced to rescue his brother Anton." tt0119177,06lJhEc7zIo,"After landing a job at Gattaca, Vincent prepares to adopt Jerome's identity." tt0119177,1Z-MzwPzpBk,Jerome tries to convince Vincent that his identity is safe. tt0119177,1Q67bMYOm7E,"The story of Vincent's inauspicious beginnings as the naturally conceived God-child"" of Antonio and Marie Freeman." tt0119177,MjOXPVmOBSg,Vincent and Irene's date is interrupted by Detective Hugo. tt0119177,ll5qiWa6YDk,The rivalry between Vincent and Anton comes to a head in one final competition. tt0119177,UQDSN9a_Zgs,Irene learns the truth about Vincent's identity. tt0097428,LmiHjcCiYwQ,Oscar climbs on the ledge of Venkman's apartment building as Janosz snatches him before Dana can save him. tt0097428,t1gkRAWvxOs,"The gang meets the Mayor to inform him of another impending attack on the city, this time in the form of slime that is provoked by human emotion." tt0097428,lCs7qjJzoDg,The Ghostbusters fight Vigo the Carpathian. tt0097428,_th4Xe6Dsm4,Louis does his best to defend the gang while they stand on trial. tt0097428,_Nd7VxsQIGo,The Ghostbusters investigate a painting that has been spooking Dana at the National Museum of Art. tt0097428,Tb6tz6ohprw,The gang investigates an abandoned railroad tunnel and get spooked by it's paranormal activity. tt0097428,oRh8qQyIngg,"When the ghosts of two executed murderers wreak havoc in the courtroom, the Ghostbusters lock and load for the first time in years." tt0097428,J511q05SReQ,Peter Venkman interviews two psychics on his show who believe to know the date of the end of the world. tt0365265,EXTklH_oTI0,"After failing to kill Geoffrey, Ginger realizes the consequences of her inaction as others take over the responsibility." tt0365265,ne4ZgnPn9Ck,Ginger gives in to the temptations of her new identity. tt0365265,5rrDUgMfVuo,"Werewolves attack the humans in the village, leading to death and destruction all around." tt0365265,xEtptEM2_mg,"Ginger returns to the village to rescue her sister Brigitte, who is causing some violent mayhem." tt0365265,qAteApi_4IE,"Brigitte knows what she must do, and kills the Hunter." tt0365265,zQLLIxNky50,"In an induced dream, Brigitte discovers what she must do to save herself and others." tt0365265,Uy5uLy_cpwc,"While Ginger seeks help for her injured sister, Brigitte comes face-to-face with a wolf before she's rescued." tt0365265,WkfpLz3XMOI,"When Ginger can't find Brigitte, she wanders into the hallway, only to find the Hunter instead." tt0365265,oN-Ck_140ko,"Ginger and Brigitte stumble upon a deserted, bloody campsite." tt0365265,ESjSqiHhL0A,Ginger explores the house and makes a terrifying discovery. tt0097441,lJiMlgvygvc,Colonel Shaw leads his company at the battle of Antietam. tt0097441,gmo_PhSftuc,Sergeant Mulcahy picks on Corporal Searles during a training exercise. tt0097441,KD5DVxqmjRo,"Accused of desertion, Private Trip gets whipped in front of the entire company." tt0097441,8Nbbi16tvYA,Colonel Shaw confronts the Quartermaster about withholding shoes for his troops. tt0097441,FFWLkCnT50s,"After Private Trip picks a fight with Corporal Searles, Sergeant Rawlins finally steps in." tt0097441,GrMoki4-weM,Private Sharts and Sergeant Rawlings lead the 54th in prayer the night before the assault on Fort Wagner. tt0097441,q7qwqVbZSqE,"The 54th Massachusetts, now led by Major Forbes, begins their final advance on Fort Wagner." tt0097441,Fjr5MSmxKJ0,Colonel Shaw and Private Trip are shot down in the attack on Fort Wagner. tt0139239,NEg6faTj_co,"Adam and Zack return to the ditch to retrieve Ronna, but Adam is unable to handle the task at hand." tt0139239,4SWqNoW_zI0,"Adam and Zack hit Ronna with their car, and when they see Todd holding a gun, they flee the scene." tt0139239,OkdLWuCRe0c,Burke and his wife Irene try to convince Adam and Zack to join their Amway-like wholesale business. tt0139239,YonDo9SCqII,"Simon gets the car stuck in a narrow alley, and Marcus shoots at the oncoming car in an attempt to slow it down." tt0139239,WzBS3IIb-vg,Simon and Marcus return to the hotel room with only a few seconds to escape with Tiny and Singh before the club owner arrives. tt0139239,sPZUh1YRnDg,"Todd tracks down Ronna in the parking lot, but when she becomes the victim of a hit and run, Todd flees the scene." tt0139239,PLtPPtaCZQA,"Ronna tries to buy some ecstasy from Todd, but when she comes up short on cash, she offers to leave Claire as collateral." tt0139239,SxgfSDgHGYw,"Todd flirts with Claire, and while Ronna attempts to return the ecstasy, Mannie continues to feel the effects of the pills he took." tt0120684,ufaAnz9XmsE,"James Whale attempts to molest Boone and then goads him into striking him. When Boone asks what he really wants, Whale finally admits that he wants Bonne to kill him." tt0120684,HgTsJ7hBQ-4,James Whale remembers the aftermath of the death of young Barnett during the First World War. tt0120684,D6XLyg5wBHU,"James Whale and Boone run into Jamess' old partner, David, at a social event." tt0120684,41h9uoNt6F4,"James Whale remembers the war and the first man who ever looked up to him, the first man he ever loved." tt0120684,wwe_yos_-ew,"As James Whale's reminiscences on the film industry devolve into more intimate memories, Boone becomes disgusted — and frightened — into hostility." tt0120684,r8XE2-HpGuk,"Boone talks to Hanna, who confirms that James Whale is gay." tt0120684,BuRr2uMsGTM,"James Whale opens up to Boone about his childhood, spent trying to escape the slums and his family." tt0120684,AJ4edZsgJAk,"James Whale, fascinated by —and attracted to— his new gardener, Clay Boone, asks for him to sit for a portrait." tt0120684,0s_EWjNNgWg,"Bored by the interview and looking for a quick thrill from his guest, James Whale convinces Edmund Kay to strip in exchange for answers." tt0107048,gKGOG-Pr81E,"An expert from his repetitive days, Phil runs some errands which include saving a child from a tree and fixing an old lady's flat tire." tt0120684,KuoC25LQrdM,"The long retired director James Whale receives a visit from college student Edmund Kay, and is disappointed to find that he's only interested in discussing one of his pictures: Frankenstein." tt0107048,gvGNWLszAQA,"Phil impresses the people in town around him with his sculpting skills, advanced piano technique, and as he lends a helping hand." tt0107048,ZNn6J56J5HE,"Phil carves an ice sculpture bust of Rita who is touched and impressed, making Phil very happy." tt0107048,uw63_YyNsF4,Phil tries to explain to a skeptical Rita that he is a God. tt0107048,zVeJ5F26uiM,Phil impresses Rita at the end of a series of deja vu dates by consuming increasing knowledge of her interests. tt0107048,iClIIg_YtAk,"Phil asks Rita who her perfect man would be, and as she describes his traits, Phil says he fits the bill." tt0107048,XqSYC_vwhDg,The persistent Ned Ryerson tries to jog Phil's memory about their high school years. tt0107048,hQCG2AwzTxA,Phil is completely confused by his first repeat Groundhog Day. tt0061735,2wTJfcaezu0,Matt gives his blessing to John and Joey as Christina watches with pride. tt0061735,LTgahyvBMk4,John tries to explain his generation's attitude toward race to his father. tt0061735,cGTn7aRFttk,Christina fires gallery employee Hilary when she expresses shock and outrage over her daughter's new relationship. tt0061735,-9P7Ge1KmTY,"Matt tells Christina about John's impressive background, but Matt panics when he learns that John's parents are coming to dinner." tt0061735,AhPCRPmHcxE,"John and Matt discuss the problems that interracial children might face, and John assures Matt that times are changing." tt0061735,ejUWeYTslb0,"Matt and Christina share their concerns with each other, and John promises he will not marry their daughter without their approval." tt0099726,BoNAEfrI2oQ,"While Hamlet and Laertes duel, Claudius attempts to poison Hamlet's drink." tt0061735,ASnNWCK3kiQ,"Sensing that Christina is upset, Matt demands some answers, and John tells him of his intentions to marry their daughter." tt0061735,8BI5jFyAdZ8,Joey describes John to Christina as he quietly enters the room and Christina gets her first look at her daughter's new boyfriend. tt0099726,DNWODAIBs7s,"Hamlet kills Claudius for his treachery, and then dies from the wounds afflicted to him by Laertes." tt0099726,a38HZFbhB-M,Hamlet kills Polonius in a blind rage during his speech with Gertrude. tt0099726,UbxMhvcxJJc,Hamlet and Horatio meet a gravedigger on their way back to Denmark. tt0099726,HqS7VyuD_Mg,"Claudius confesses his sins in the chapel, and Hamlet debates whether or not to kill him." tt0099726,KOGjVUa_iIE,"Hamlet stages a play that shadows the crimes of Claudius, which lets the guilt of the king overwhelm him." tt0099726,I5iG5NitBgI,Hamlet tells Rosencrantz and Guildenstern why his mother and the King have sent for them. tt0099726,Vf2TpWsPvgI,Hamlet contemplates whether it is better to fight through the troubles of this life or drift into eternal sleep. tt0308353,LKR2bN9V2Bc,"Ella and Frieda battle it out, while Rick, Munk, and Mambo try to save Ella." tt0099726,8JyxfJo-iiA,Polonius gives Laertes some last minute advice before he departs on his journey. tt0099726,KJmWpR-4AIg,Hamlet bemoans the fickle nature of his mother. tt0308353,QKP-AZKNl9k,Ella and her friends beg the Seven Dwarves to help her protect the kingdom from the bad guys. tt0308353,fO8nqGKrtDI,"Ella takes command of the Dwarves' anti-air gun against a trio of witches, while Munk and Mambo help reload the weapon." tt0308353,XYZ_oLTFzSA,"When Frieda realizes that she is doomed to be the loser in the fairlytale, she uses her powers to change her fate just as Prince Humperdink makes his move to kiss Ella." tt0308353,0I84IUKomh4,Frieda tells Ella that all hope is lost and that the Prince is not going to come and save her. tt0308353,ZXgyS34Zpto,"As The Wizard gets ready to leave on vacation, he gives specific instructions to Munk and Mambo to protect the world from evil." tt0308353,NnWIRGdMR44,Frieda takes control of Fairytale Land by stealing the magical staff that balances Good and Evil from Mambo and Munk. tt0308353,CO6yUpPvY7s,"Frieda demands that the villains go out and capture Cinderella, but they claim they cannot because they only work at night." tt0308353,8CCo0EI6zIM,Ella gets help from her Fairy Godmother and finds something sterling to wear to the Royal Ball. tt0308353,YY4kKO6wfyg,"Rick delivers Ella and her stepsisters an invitation from the Prince to attend the Royal Ball. Also invited: Ella's mean stepmother, Frieda." tt0113277,2z4o-jBlqq0,Neil McCauley pays Waingro a visit before his escape. tt0113277,s3rv0BdxWfM,Neil McCauley reminds Chris Shiherlis that a life of crime should be a life of no attachments. tt0113277,GpNzlh5ALRA,Neil McCauley and his crew of professional criminals rob an armored truck. tt0113277,JqDoUCcJHPU,Neil McCauley and Eady discuss their families over drinks. tt0113277,DdDl6mbcGtc,Neil McCauley thwarts an ambush with back-up from Chris Shiherlis and Michael Cheritto. tt0386588,mGf4oL6RLGs,"Sara thinks Hitch has left without saying goodbye after spending the night, but he's only stepped out to get her coffee." tt0386588,0JmETteiVzo,Hitch meets with a potential client who turns out to be a jerk. tt0386588,j2e41FeccuA,"Hitch chases Sarah, who has seemingly moved on with another man." tt0386588,QnyzZbrrh9M,Albert makes a breakthrough with Allegra when she asks to meet up with him for business advice. tt0386588,uU59kXuJHhI,Sara gets hit on by a clueless guy named Chip. tt0386588,eKKd33QEB3I,Hitch takes Sarah jet skiing on the Hudson River. tt0386588,50YQeugOMOw,"Albert thinks he's set in the dance department with moves like ""making the pizzas"" and ""the Q-tip,"" but Hitch sternly advises against expressing oneself through dance.l" tt0386588,ur0U4xN0d_A,"Albert tries out his new shock and awe"" approach to get Allegra to notice him, but takes it a little further than he intended." tt0102057,qZubhGcnsHk,Captain Hook defeats Rufio on the pirate ship. tt0102057,H6DqWP733F4,"The Lost Boys take on the pirates aboard the pirate ship with their Thud Ball, egg shooter, and marble tosser." tt0102057,-wX6_qCCnPc,Peter Pan finally defeats Captain Hook. tt0102057,6ohgHjQvK5g,Peter Pan confronts Captain Hook and tries to get the brainwashed Jack back. tt0102057,C6hmQwfEmzc,Peter gets his Pan back. tt0102057,JsJxIoFu2wo,Peter Pan and Rufio exchange insults at the dinner table in front of the other Lost Boys. tt0102057,6s8ZEFUSYAI,Pockets checks Peter's face to see if he truly is Peter Pan. tt0102057,YCSbEzI7Nz0,Peter Pan and the Lost Boys have an epic food fight battle. tt0090060,wvPmP4xTruI,"Kirby tells Kevin about his latest infatuation, while Kevin and Billy maintain a more jaded view of love." tt0061809,eQ9HJXZI_qU,The Prosecutor explores the necessity for capital punishment to the jury. tt0090060,oLIwz9gn00g,Jules speculates that Kevin is gay because he's never made a pass at her. tt0061809,qU0H2mmgsjM,Dick pulls a flawless con tailor fit for Perry. tt0061809,HD8tSGHYaGA,Perry discusses the possibility of going after Cortez treasure as the duo's next step. tt0061809,cPYdLs7RRRc,Perry has a moment of self-reflection as he rifles on the floor for Nancy Clutter's silver dollar. tt0061809,gHAJY34g-LY,Perry decides to execute the entire Clutter family. tt0061809,JQXj8pF6Rx4,Dick creates a plan to score while on the road with Perry. tt0061809,k4YuBxpQwqA,Perry recounts his relationship with his father moments before his execution. tt0061809,yxVC4lfxHGs,Perry yearns to apologize for his crime before his execution. tt0107206,0EKDRD2sHI4,"Leary rejects Frank's offer for help, instead choosing death over imprisonment and humiliation." tt0107206,p8wvEC_cBU4,Frank radios a coded message on where to aim in order to hit Leary. tt0107206,JAiuiipD6Wo,Frank recalls his failure as a Secret Service Agent back in November of '63. tt0107206,tff_EEQt79s,Frank takes a bullet for the President and foils Leary's assassination attempt. tt0107206,FQfb9ayuY3A,Leary notes the irony of his and Frank's situation as their cat-and-mouse game escalates. tt0107206,THLll7d7Dfo,"Leary saves Frank's life, but takes the life of Agent D'Andrea." tt0107206,jbCyTUSQ6fY,Leary threatens to kill another President as Frank gets under his skin. tt0107206,abhF5CFFW4s,"Outwitting a counterfeit group, Frank saves Agent D'Andrea while making a dramatic arrest." tt0025316,vEt5MqYD_3s,Peter and Ellie pretend to be an arguing married couple in order to fool a pair of nosy detectives. tt0025316,qFWptPtHG78,Peter carries Ellie across a stream as they discuss the particulars of piggyback rides. tt0025316,Lhc_xw9cQ6I,Peter suppresses his love for Ellie when she tries to embrace him. tt0025316,aHJKwOGb7MI,Peter formally introduces himself to Ellie while introducing her to her new temporary last name. tt0025316,9zUaNKBQ04c,"Peter uses a blanket to make a ""wall"" dividing his side of the room from Ellie's, all the while flirting with her." tt0025316,1kAtlL7cZOg,"When Ellie literally lands in Peter's lap, he asks her to bring the family, too." tt0025316,Ar-hnj5Zsk4,Ellie teaches Peter how to really hitchhike. tt0025316,KF-wcaGD2UE,"Unceremoniously fired over the phone, Peter finds a way to save face in front of his drunken reporter buddies." tt0116695,Of73UiXUvjA,"When Tidwell learns of his new contract from Roy Firestone, he has an emotional breakdown on TV." tt0116695,AyrP-pwDayE,Jerry opens his heart to Dorothy. tt0116695,QhVuXKypPs0,"After suffering a hard hit, Tidwell celebrates the thrill of victory." tt0116695,l1B1_jQnlFk,"Once again, Tidwell pushes Jerry to his wit's end." tt0116695,niZKrt4XAZE,Jerry learns that breaking up is hard to do when you're getting beaten down. tt0116695,ASVUj89hyg0,Jerry tries a tough love approach to inspire Tidwell to play better. tt0116695,6ZZI6-zh0GM,"Jerry leaves the office alone, humiliated and defeated, until Dorothy suddenly joins him at the last second." tt0102138,BckPa2_A8gI,Jim Garrison gives an emotional closing argument to the jury about the importance of truth within the government. tt0102138,3ema7lfEAMk,A frenzied and paranoid David Ferrie confesses his knowledge to a conspiracy before emotionally breaking down. tt0102138,FhBm4kprCkk,"Jim Garrison and his team delve into the background of Lee Harvey Oswald, and arrive closer to the conclusion that he was just a patsy." tt0102138,GSw9sjqYK_I,"Jim Garrison meets with a mysterious man called X, who gives him confidential information about President Kennedy's assassination." tt0102138,xuUtu2xRGgY,"X offers his insight to the question of 'why' was President Kennedy assassinated, the answer leads to the highest echelons of the United States government." tt0102138,2nmGS8rVuIM,"Jim Garrison repeatedly shows the Zapruder film in court to demonstrate the impossibility of the magic bullet theory, and cement the notion of multiple gunmen out at Daley Plaza." tt0245686,I_X0TKL3bqk,"A self-proclaimed crocophile,"" Joe inspects the mouth of a mean gator." tt0245686,x4utH5uWK6c,Joe gets lucky with a girl who may or may not be a relative. tt0102138,2gaEkPaykJo,Lou Ivon gives Jim Garrison a demonstration in shooting a rifle at the book depository in Daley Plaza to show that it would be impossible for one man to have shot President Kennedy alone. tt0245686,jXGV-MT-TmU,"Joe adopts a space meteorite, then discovers its true origin." tt0245686,I5TzyLhwKKY,"Joe packs up his dog's ashes and says goodbye to Brandy, oblivious to her feelings." tt0245686,suvJai5IC6c,Joe berates a fireworks salesman for his weak merchandise. tt0245686,X-S296ENSIo,"Joe's ""atom bomb"" turns out to be an RV septic tank with a foul payload." tt0245686,ZAMQGIx3JKk,"When he visits Buffalo Bob, Joe lands in a dungeon reminiscent of ""The Silence of the Lambs.""" tt0113497,M0TjT53qpFY,Alan rolls his last turn which ends the game just in time for him to escape the hunter's bullet. tt0113497,SiUT8u1LckQ,"Chaos culminates as Judy is struck by a barb from a Venus Fly-Trap, Alan and Sarah are threatened by giant spiders, and an earthquake strikes." tt0113497,yjF_gSu6xCQ,"Alan gets swallowed up by the attic floor that has become like quicksand. Judy rolls her turn, but it only makes matters worse as giant spiders invade the attic." tt0113497,ibeJlYiMz9w,"A monsoon strikes the house, bringing some aggressive crocodiles along with it." tt0113497,RWwhA2v9UFQ,A stampede of wild animals storms through the house. tt0113497,dTllG2KdPMQ,"Disoriented from being stuck in Jumanji for 26 years, Alan questions the whereabouts of his parents and the current year." tt0113497,969gXtFAcZU,"Alan, Judy, and Peter track down Sarah Whittle to have her pick up where she left off in the game, but it's going to take some convincing." tt0113497,javEwwHaNa4,Judy and Peter follow the drum sounds to find the Jumanji game. Wasps and monkeys appear as they begin to play. tt0373469,qbYyYYHysqM,Harmony interrupts an intimate moment with Harry to make a scandalous confession. tt0373469,R2MxWZTrgxw,"Wounded and alone, Harry springs into action when he hears Harmony call for his help." tt0373469,6svL10xXulQ,"When Harry Lockhart uses a game of Russian Roulette to get answers from a stubborn henchman, things do not end well." tt0373469,15i99XcYpc8,Gay Perry taunts Aurelio in order to save Harry from a torturous death. tt0373469,7ux7Dd18Rw4,"Eluding the cops after a botched robbery, Harry finds himself accidentally auditioning for a part when he's mistaken for an actor." tt0373469,uGg9-5_0On4,Harry accidentally pats Harmony's breast in an attempt to kill a spider crawling on her. tt0079417,OFZS03hWtlE,"Ted's lawyer plays rough, verbally attacking Joanna on the stand and casting her in a bad light." tt0079417,sCiErOySQtA,Joanna changes her mind about taking Billy home with her. tt0079417,re0xt6hDdqE,Ted makes his case for why he is the best parent to have custody of Billy. tt0079417,M_ejjr2-4WE,Joanna tells Ted that she wants Billy back during their first meeting in over a year. tt0079417,Cw1YwZlfijg,"On his first morning without Joanna, Ted tries to teach Billy how to make some very messy french toast." tt0079417,8kIsYLV8bE8,Billy refuses to eat his dinner and eats ice cream instead against his father's wishes. tt0079417,80UzhoD-RBs,Joanna announces to Ted that she is leaving him and explains all the provisions she's taken to do so. tt0119488,cjFIi3PC2cI,"Ed Exley and Bud White are ambushed at the Victory Motel, but they won't go down without a fight." tt0119488,-opqUSOUDQY,"Ed Exley interrogates the Nite Owl Massacre suspects, but Bud White has some effective methods of his own." tt0119488,1ubs6iUMdyo,Jack Vincennes uncovers more of the truth than he can handle. tt0119488,MeypYa863r4,"Dick Stensland takes brutal vengeance on some Mexican prisoners, despite Exley's protests." tt0119488,_VIWqtzAHQ0,"Bud White questions Lynn Bracken, but finds himself intensely attracted to her." tt0119488,G3N_ELEBvH0,"During a fistfight over Lynne, Bud White and Ed Exley realize they are involved in a murder conspiracy." tt0119488,BVwLpNGBqqY,Bud White rescues a kidnapped girl and is annoyed by Ed Exley's zealousness. tt0119488,dO_D5ilNoZA,Ed Exley confronts the corrupt police captain Dudley Smith and stops him from evading the law. tt0119488,_MLgnDZguM0,Ed Exley leads a raid on the suspects of the Nite Owl Murders and brings them to justice. tt0119488,47ptIuV4NLo,Bud White beats a confession out of D.A. Ellis Loew and throws him out of a window to hear more. tt0089457,5_npi1WISDk,Captain Etienne Navarre tells Phillipe of his quest and explains why they need to stick together. tt0089457,H_SgDfv61O8,Phillipe Gaston encounters the black wolf and Isabeau d'Anjou for the first time when he gets attacked in the forest. tt0089457,uIl9IFcIXlg,"Before confronting the bishop, Captain Etienne Navarre must first deal with Marquet, the bishop's Captain of the Guard." tt0089457,rS3VUoThFBw,The plan to lure Captain Etienne Navarre goes terribly wrong when the black wolf falls through the frozen lake. tt0089457,kglWIEtKSXY,"Thinking that Cezar had killed Captain Etienne Navarre, Isabeau ventures into the forest to get revenge." tt0089457,CztbQ4Fgv_w,"While trying to escape the bishop's guards, Phillipe Gaston and Isabeau d'Anjou find themselves in a precarious situation." tt0089457,cudAGo1nSKI,Captain Etienne Navarre finally gets his chance to fulfill his quest to kill the Bishop of Aquila. tt0089457,LmZV7WtCRi4,"Just when he is about to be executed, Phillipe Gaston is rescued by Captain Etienne Navarre." tt0089457,1ODVyWqW4ps,"At dawn, Captain Etienne Navarre and Isabeau d'Anjou share a fleeting moment together in their human forms." tt0089457,a72FDTElH9g,Phillipe Gaston has a surprise encounter with the bishop's Captain of the Guard Marquet. tt0056172,_EZCG2Ex8Q0,"Under the banner of celebration, Lawrence safely returns to the tribe's desert oasis having saved Gasim. He remarks to Sherif Ali that ""nothing is written.""" tt0056172,aARaYjgm_rA,Lawrence shows no mercy when ordering an attack on a column of retreating Turkish soldiers. tt0056172,IBeMUoMTeZo,Lawrence survives a sniper's bullet and then poses atop a train to the cheers of the tribesmen. tt0056172,vR3FPplcJGg,Lawrence commands a guerilla ambush on a Turkish railway in the middle of the desert. tt0056172,lChJz2DSpsE,The tribal alliance led by Auda abu Tayi overruns the port city of Aqaba with the Turkish guns only pointed to the sea. tt0056172,-tuNR-uD_mE,"To illustrate the value that nothing is written,"" Lawrence risks his own life to go back to save a fallen Gasim. Daud waits for Lawrence to return out of the Nefud desert." tt0056172,ud1zpHW3ito,Lawrence's guide Tafas is killed by Sherif Ali for drinking from a well. tt0110322,OdlFHPM3A2U,Susannah tries to console Tristan at his brother's grave. tt0110322,lpwrDEfCESg,Tristan is captivated when he meets Susannah for the first time. tt0056172,uE0DBpw09SU,"Lawrence tells Mr. Dryden that the expedition with the Bedouin tribe is going to be fun. After blowing out a match, Lawrence begins his journey in the desert." tt0110322,0_pN-X7Gew8,"When Colonel Ludlow opens fire on O'Banion, Alfred comes to the rescue." tt0110322,DB5H2QGFFwU,"When the Ludlows run into a racist bartender, Tristan takes matters into his own hands." tt0110322,Dpz8L-thRmc,Isabel is accidentally killed by an officer working for the O'Banions and Tristan beats the officer severely. tt0110322,qCq0IXXi_2U,Tristan returns to the ranch to find his father a different man. tt0110322,aWinsyIVC3E,"Everyone at the ranch admires Susannah, but she finds herself captivated by Tristan." tt0110322,Ha4SHiHf8Vw,Tristan arrives too late to save his brother Samuel from being gunned down in combat. tt0097733,ysIsqzXZyN0,Riggs confronts the racist South Africans and tells them to leave the country. tt0097733,rDIF3XhXTT8,Riggs crushes Vorstedt while Murtaugh takes care of Arjen Rudd. tt0097733,7WqzJvhR9Fo,Riggs does a little house cleaning. tt0097733,FM26ZXjPL_4,Sgt. Murtaugh nails some bad guys. tt0097733,vKePn-57zAA,Riggs and Murtaugh prepare to deal with a toilet bomb. tt0097733,j19-hpjJ4ok,Riggs puts the moves on Rika at the grocery store. tt0097733,HnZw65gsesw,Sgt. Riggs does a little car surfing. tt0097733,AMtKsDnOw_0,"Sgt. Riggs and Sgt. Murtaugh chase down drug dealers in Murtaugh's new car, and Murtaugh asks Riggs not to scratch it." tt0097733,Zz1Lypwfwug,"A room service man tries to assassinate Leo, but Riggs tackles him out the window." tt0097733,i9upvWNN3P8,Leo shares his opinion of restaurant drive-throughs. tt0110413,eRBI1VSO7hc,Stansfield murders Mathilda's family in cold blood. tt0110413,-gD05qjgKN4,Léon teaches Mathilda how to use a sniper rifle. tt0110413,Ce6jdrqyW0U,"As Léon helps Mathilda escape, they both express their love for one another." tt0110413,JqDOosChydc,"Just as Stansfield is about to kill Mathilda, he learns that his colleague was killed by Léon." tt0110413,mX-qK4qG2EY,"After Léon neutralizes the first %SWAT% Team, Stansfield orders everyone into the fray." tt0110413,4R-cTX0i2hQ,Léon forces an exchange: a SWAT team member for Mathilda. tt0110413,fa1DuNjhWOk,Léon dispatches the Fatman's body guards with expert precision. tt0110413,9bvxJlLfzGw,"Léon gives Stansfield a parting gift, courtesy of Mathilda." tt0325805,1W4y_8Eu38Y,Roy yells at Angela for sneaking out of the house. tt0325805,TOrEE5NeZ9w,Roy watches as Angela pulls off her first con on a lady at the laundromat. tt0325805,04xSMg03sZ0,"Roy and Frank pull the Jamaican switch"" on Chuck." tt0325805,pMTlNUKE7yg,Chuck chases after Roy after he discovers that he's been scammed. tt0325805,ftst7XzK21Q,Angela persuades Roy to teach her how to be a con artist. tt0325805,g6sSw9vrO0s,Roy preps Angela for her first con. tt0325805,Ib8uNldNd-0,Roy visits Dr. Klein to get a prescription for pills that he was buying illegally. tt0325805,My4ojpQzoWY,Roy and Frank pose as Federal Trade Commission officers in order to tie up loose ends on a scam. tt0325805,GwQdBsTpmOM,Roy and Frank con unsuspecting customers out of their money. tt0325805,6f2-XlVHGcc,"After he accidentally drops his medication down a drain, Roy suffers due to the effects of his anxiety disorder." tt0303361,1XBwwSzLqWA,"Gripped with madness, May stabs out her lazy eye and places it on her doll-like creation so that it can ""see"" her." tt0303361,VNJehwzHpe4,Polly hits on May after she convinces May to dance with her. tt0303361,pMSrolUBGRc,"May pays a murderous visit to Adam and his new girlfriend, Hoop." tt0303361,PEnOSwKyrb4,"May creates a grisly new ""friend"" by piecing together the body parts of her victims." tt0303361,QikcO8tlmOI,"May has an intense emotional breakdown after being rejected by Adam, and blames it on her creepy doll." tt0303361,FnRp0n0RhDM,"May makes her first pair of kills by slashing and stabbing Polly and Ambrosia, respectively." tt0303361,EETi6NJFRjA,May takes the concept of a love bite too far when she draws blood from Adam during a make out session. tt0303361,X9mTMZF-CTs,Polly seduces May. tt0303361,SmmKg3VG2jI,May tells a gross and disgusting story to Adam. tt0120787,SMQ6aga9mI0,"When Bruno makes an impromptu pitch on how to perform the perfect murder, Guy ends up leaving the conversation rather disturbed." tt0829482,1EnGKC9Lk_Y,"In the Good Shopper alcohol aisle, Seth imagines different scenarios where he can obtain booze." tt0280590,Wg89Bj_9Wg4,Deeds plays a game of tennis with Chuck and can't avoid drilling him repeatedly with the ball. tt0280590,oEtIf_2mzJc,"At the stockholders meeting, Emilio learns that he is the sole inheritor of the Blake media corporation and promptly fires Chuck." tt0280590,ZKIiHz62TR0,"Emilio talks to Deeds about his great Uncle, and also describes his fetish for feet." tt0280590,qUKBDcMN7tg,"At a fancy New York restaurant, Deeds is made fun of by some elite New York intellectuals. To settle the score, Deeds beats them up in front of Pam" tt0280590,9KwuLlQrkVI,"Deeds stops Marty, who''s pretending to be a mugger, and rescues Pam." tt0280590,DHVyayHXOdY,Deeds insists on Emilio whacking his frost bit foot with the fireplace poker over and over again. tt0280590,Tlfd0Y0SjgA,Deeds meets his servant Emilio and plays a call-and-response game with the house staff in his large apartment. tt0280590,_T7T-0iR2Sw,"While flying to New York in a helicopter, Deeds sings a song with the pilots and normally sophisticated Cecil joins in." tt0031679,zPv0S1-ETdI,Senator Jefferson Smith finally attacks the political corruption on the Senate floor. tt0031679,i7hk-TupE5g,Saunders offers advice to a depressed Jefferson. tt0031679,dbH4Amzn-Rk,Senator Paine describes to Jefferson how good politicians sometimes compromise their ideals. tt0031679,17MyPrAEQ28,Jefferson Smith emphasizes the importance of liberty and the beauty of nature to Saunders. tt0031679,0v7Ea7kg2gA,"After Senator Paine advises Jefferson Smith on a new bill, Jefferson has an awkward moment with the Senator's daughter, Susan." tt0031679,NRjWEE0hmjQ,"After being persecuted in the newspaper for being incompetent, Senator Smith targets the Washington press." tt0031679,BL-Jg7CyqLQ,An exhausted Senator Jefferson Smith professes his innocence on the Senate floor. tt0031679,qYf35nBq8Oo,Governor Hubert Hopper describes the genius of appointing simpleton Jefferson Smith as a the state's next Senator. tt0981227,zTueXqC-xfI,Nick and Norah make love for the first time at Electric Lady Studios. tt0981227,AyodiwWneu8,Nick calls Norah to apologize for the way the evening ended and to find out where he can find her. tt0981227,o2wVetrydrY,Nick and Norah abandon their ex's and leave the Where's Fluffy concert together holding hands. tt0981227,GofDgoM13BA,"Tris dances for Nick by the river, but he can't stop thinking of Norah and leaves Tris to fend for herself." tt0981227,LoZtHl2YXAo,"After getting closer throughout the night, Norah's heart breaks a little when Nick decides to join Tris, who is waiting at his Yugo." tt0981227,PRKag5krnfU,"At the Port Authority Bust Terminal, Caroline drops her cell phone and gum into a disgusting toilet. After retrieving both items, she just misses Norah who is at the station looking for her." tt0981227,sR4iKRfUwOs,"In a crowded bar, Norah picks out Nick to be her boyfriend for five minutes"" in order to make Tris jealous. When the two kiss, a natural chemistry becomes apparent." tt0277371,af_J2e4r328,"Just when Jake appears to have hit rock bottom, The Wise Janitor offers sage advice: ""Believe in the ball, and throw yourself.""" tt0277371,8F8MBp-GBKA,Priscilla insults Janey at the party and Melissa Joan Hart stops by to give instructions on how to properly employ a teen movie staple: the slow clap. tt0277371,nuPd4L7_0uQ,Quarterback Jake Wyler recalls an on-field tragedy. tt0277371,z6GmZrBKW98,Ricky shares a very personal poem. tt0277371,G9u3Lbli8Uc,"Principal Vernon gives Mitch and the guys a ""Breakfast Club""-style verbal lashing." tt0277371,Buutvk0mHXY,"Mitch, Ox and Bruce are in for a surprise when they spy on the girls locker room." tt0277371,CXYlv-z_xHQ,"Austin makes a bet that Jake can't make a Prom Queen out of Janey Briggs, a girl with paint on her overalls." tt0277371,Vc7HzKwZ55Q,Head Cheerleader Priscilla auditions a unique new squad member. tt0047296,IYBAPVjJykY,"Terry successfully helps to have the mob overthrown, wins the respect of the people, and gets everyone back to work." tt0047296,uBiewQrpBBA,"Terry speaks with Charley about his lost days of promise, then Charley hands him a gun and lets him go." tt0047296,geh_Mu622SY,Edie is devastated when Terry confesses that he gave up her brother's name to the mob. tt0047296,-hl0hUWyqoU,"When Terry finds Charley murdered by the mob, he vows to get revenge and honor his brother." tt0047296,2u1RrWj4RDk,Father Barry rallies the dock workers and encourages them to stand up to the mob. tt0047296,VfXFbuW47kA,"Johnny berates and fires one of his men and takes his money, then gives it to Terry for a job well done." tt0047296,5PPQutDwpmw,"Terry tells Edie a romantic story about pigeons, and when he asks her out for a beer, she accepts." tt0047296,UZqpweWv5_0,"Terry flirts with Edie by talking about old times together in grade school, and asks if he can see her again." tt0107818,LBP8QDlm6OA,"Andrew recites from memory a legal precedent of the Federal Vocational Rehabilitation Act of 1973 to Joe, in order to convince him that there's a winnable case." tt0107818,fHYuhwnlTZs,The Beckett family led by Sarah says a tearful goodbye to Andrew at the hospital. tt0107818,mIqXkwxzUB4,"Joe makes the point to the courtroom that the case is not only about AIDS, but also the public's ""hatred, loathing, and fear of homosexuals.""" tt0107818,eYJYW_9mFVg,Andrew shows the lesions on his chest to the court. tt0107818,Tr90d0ZcrCU,Andrew tells the court why he loves the law and why he makes an excellent lawyer. tt0107818,mjbxL_v2DPk,A gay law student asks Joe out for a drink at a pharmacy. tt0107818,YkpHalgTqpw,Joe watches an encounter in which a Librarian asks Andrew if he'd be more comfortable in a private research room. tt0107818,wHSH-NpCQOw,Joe declines to take on Andy's wrongful termination suit for personal reasons. tt0425379,08NGebwIr8Q,"Milo visits his old enforcer, Radovan, to ask for a favor." tt0425379,qE9eKngduGM,"Milo gives a toast to his daughter, Milena, on the start of her new life." tt0425379,D8V0rLDKZL8,"Milo enlists the help of his old enforcer, Radovan, to dispose of the corpses of the two gangsters." tt0425379,SJeCtS4D2HQ,"In debt to the Albanians, Milo lets them use his restaurant as the site of a human-trafficking meeting. In discussion: the sale of a young girl into prostitution." tt0425379,icGkuwUzbGI,"When the Polish human trafficker beats the girl, Milo cannot stop himself and kills him." tt0425379,9Hn60TQSyTQ,Milo smokes the heroin left to him by Kurt and falls off the wagon. tt0425379,v8_v3EaYE6A,"Milo encounters an old friend, Kurt the C**t, who tempts the now-sober Milo with drugs." tt0425379,wK0m72Rf7tk,"Milo confronts his son-in-law Mike about his drug dealing, but then makes him a deal of his own." tt0425379,l0n2Od6zG58,"Milo meets with his supplier Luan about an error in shipment, and through the help of Luan's conniving henchman, Rexho, the two make themselves understood despite the language differences." tt0425379,ewGC9K-7NXg,"Little Mohammed has found a buyer for Milo's unexpected shipment of ecstasy, but with all of his men incapacitated by food poisoning, Milo must entrust the sale to Little Mohammed alone." tt0093886,bnitvEUDaBE,C.D. comes to Roxanne's aid when she locks herself out of the house in the buff. tt0093886,urdf4g-LXk4,"In response to a taunt of ""big nose,"" C.D. rattles off a list of better insults." tt0093886,pw5Y_7wtJmk,C.D. describes his alien abduction to a gaggle of old ladies. tt0093886,VR78Ss7yoio,"C.D. tells his plastic surgeon to ""cut the thing off,"" but settles for shuffling through nose cards." tt0093886,o9zfxe4JVlQ,C.D. uses his tennis racket to thrash a pair of bullying drunks. tt0093886,_PZ_LyJfYe8,C.D. uses a radio transmitter to coach Chris through his date with Roxanne. tt0093886,h3VZ6IRrVlI,Chris lays eyes on C.D.'s nose for the first time and finds he can't look away. tt0108002,tpyZHmGRPuE,The team wants Rudy to lead them out onto the field for the final game of the season. tt0093886,bRzQBGwfMkM,"When Roxanne offers C.D. a glass of wine, he struggles to imbibe it." tt0108002,FXcu4V-8-j0,Coach Devin delivers a last minute speech to Rudy and the team. tt0108002,TY0LUIIwo8k,Rudy's teammates all tell Coach Devine that they want Rudy to dress in their places. tt0108002,ZI63g64kDgY,"In the final play of the final game, Rudy is given the chance to compete and sacks the quarterback." tt0108002,Qoh3YkxuwVo,"When he hears that Rudy has quit, Fortune reveals that years back, he also quit the team and has regretted it ever since." tt0108002,wur5ljnTCzQ,Rudy goes to the Notre Dame football tryouts and shows the coaches what he's got. tt0108002,G8c6j-LS-ZI,"When Rudy sacks O'Hara in practice, O'Hara loses his cool and the coach demotes him to prep team." tt0108002,pBq_lpX9LTw,Rudy goes to his first Notre Dame football practice where he is pummeled. tt0323944,VBeTTZ4QBoA,Chuck fires Stephen after one too many lies. tt0323944,Amd6hjScF58,Editor of the New Republic Michael Kelly stands up for the writers when they are attacked for their incorrect usage of comma punctuation. tt0323944,OeE1spoom58,Chuck confronts Caitlin to the truth and consequences that the New Republic's journalistic credibility has been irrevocably damaged. tt0323944,oJHp0GrlX6M,Amy's attempt to broaden her writing skills is critiqued by Caitlin. tt0323944,4qW3YcXJeyg,Chuck finds Stephen's credibility more and more under scrutiny when they do a little backtracking of his hacker story. tt0323944,EHmjP1BExPs,"When Chuck removes Stephen from the New Republic office, Stephen tries to convince Chuck that he is not a criminal. The plea falls on deaf ears." tt0323944,i8oGdak7vN4,"With Charles's suspicions increasing with each passing moment, Stephen Glass becomes under the gun during an investigative conference call led by Adam Penenberg and the others at Forbes digital." tt0323944,ajcVgbrSIWk,Adam Penenberg and Andy Fox test out the phone number they receive from Chuck Lane for Juxt Micronics. tt0323944,9frZAZs1Cqo,"Stephen Glass pitches a story on a young hacker, Ian Restil, to the New Republic team." tt0323944,z3GNhBE2yhM,Stephen Glass talks about his idea of a well-told journalistic story. tt0385004,iNgDtwHreZM,"Mei is attacked by soldiers hiding in the bamboo trees, but she won't be taken without a fight." tt0385004,AiJP0M-5Mjc,Jin and Leo battle to the death in a snowy blizzard. tt0385004,2ObQm0XBmgI,"Jin and Mei are trapped in the bamboo forest, but the mysterious Flying Daggers come to their rescue." tt0385004,7X3WSQtviJU,"Jin and Mei are attacked by Leo's men, but Mei's flying dagger and Jin's quick archery saves them." tt0385004,WgLyqfSdbDg,"Jin takes advantage of the blind girl and watches her bathe, but she is not fooled." tt0385004,IP-NM6Qdrl4,Captain Leo fights the blind girl after she attacks him. tt0385004,YetxvEnpKh8,"Posing as a blind dancer, Mei performs an intricate dance for Captain Leo that proves very dangerous." tt0385004,kROlgEPoSVA,"Leo's men ambush Mei in the forest, but she fights them off with Jin's help." tt0091949,0xPu59_MHQ0,"After fear that Number 5 was demolished, the fierce robot makes an emotional reappearance." tt0091949,y7wj3bB6OU4,Newton tells a joke in an attempt to get Number 5 to laugh. tt0091949,hW0V7kZHRSA,Number 5 goes toe to toe with Stepanie's ex-boyfriend and his slick red car. tt0091949,BJHzyg9AOsY,Number 5 is tracked down and hunted by the other robots. tt0091949,9h_-TIM3kdE,"Number 5 faces off against a Nova tank on a bridge, leading to a mid-air flight." tt0091949,mJFvqNOorTs,"Newton and the rest of the defense team discover that Number 5 escaped, while the robot finds himself in a cow pasture." tt0067328,Dgd6gV5Z53U,"Jacy invites Duane over to a motel to lose her virginity, but he is unable to perform." tt0091949,vWokC4nx7PA,The latest NOVA robotics are put to the test in a makeshift battlefield to impress a crowd of generals and investors. tt0091949,Q9AIDn-w3EM,"Number 5, a prototype robot built for warfare, gets a personality change due to an electrical storm." tt0090022,Dv6rmmAk_Es,Paden resorts to drastic measures to get his favorite hat back from a thief. tt0090022,6JynBr-1sSA,Stella and Paden discuss their plans to take down Sheriff Cobb. tt0090022,eug4wbPSykc,"Paden heads to the edge of town for his classic Western fast draw duel with Sheriff Cobb, while Stella awaits the results off to the side." tt0090022,iBaUUJOO6V8,"Sheriff Cobb asks Stella to bring Kelly to the barroom dance floor. Kelly is fired but won't step down, so Sheriff Cobb tosses him out of the bar." tt0090022,QxXbtzn-6PE,"Hiding in a cave, Emmett learns his sister, brother-in-law, and nephew have been attacked. Mal brings the news...and a couple shotguns." tt0090022,wiA6bjzz-CM,Jake explains to Emmett why he's in jail. tt0090022,SGbvYkCLZ9U,"Mal wants some whiskey and a place to lay his head, but the barkeep and the local barflies aren't having it." tt0090022,5mAO3eeRP84,"Paden, robbed and penniless, rides into town in his underwear, discovers the man who stole his horse and sets out to get even." tt0105414,onxbHFyNqGw,"With some help from Graham, Allie turns the tables on Hedy and escapes the apartment, but she doesn't make it past the elevator." tt0105414,PJo7WdHSxoI,"When Allie disappears in the basement of their building, Hedy searches for her, armed with a hook." tt0105414,yosiG9eEEHA,"When Hedy holds a knife to Allie, Allie kisses Hedy to save her own life." tt0105414,KISK76nF-XE,"After seducing Sam while pretending to be Allie, Hedy stabs Sam in the eye with her stiletto heel." tt0105414,5pzJ6qzeXlw,"Allie learns about Sam's murder, but when she discovers the murder weapon in the bathroom, she lies to Hedy in an attempt to escape." tt0105414,mFcz_U62r6s,"After Hedy gets her hair styled just like Allie, Allie does some snooping in Hedy's closet." tt0105414,qSbI8KRB74M,Allie returns to the apartment after reuniting with Sam to find Hedy waiting for her in her bedroom. tt0105414,MEYAoMSfCQY,Potential roommate Hedy enters the apartment at an awkward time when Allie breaks down over a picture of ex-boyfriend Sam. tt0108160,c77JrXbqqV0,"Suzy emotionally recounts to the guys the storyline of the film ""An Affair To Remember.""" tt0108160,3cZIoQWyBCI,Ross reads letters from potential wives for his Dad. tt0108160,qeY1mkXqKgk,Sam finally meets Annie for the first time on top of the Empire State Building. tt0108160,LyfG5cnkuEI,Jonah tries to convince Sam to go to New York to meet Annie. tt0108160,yy7H306nKaY,Annie listens to the little boy on the radio while hiding in a closet in the middle of the night. tt0108160,WdehPsCJab8,Sam and Jonah talk to Dr. Fieldstone on the radio about life without a wife and mother while Annie listens. tt0108160,JCLLZQFyGGM,Sam is surprised to find a girl in his son Jonah's bedroom. tt0108160,VCRyYN8DfUU,Sam's date is interrupted by an unnecessary phone call from his son. tt0208092,g7QBS0O7gT0,"After a shaky start in a bare-knuckle barn fight, Mickey gets the job done." tt0208092,1crhwQPKr7w,"Even at gunpoint, Bullet Tooth Tony intimidates his would-be captors." tt0208092,RD6BaHKMTXk,"Bullet Tooth Tony balks at the idea of dissecting a dog; returning to New York, Avi makes a declaration." tt0208092,2xUynRdzzsM,Brick Top holds forth on how to properly dispose of a corpse. tt0208092,xu0p6CtioZk,"Challenged by Vinny, Brick Top explains who he is." tt0208092,isyFunAeYnQ,"When Mickey floors his opponent with a single punch, Brick Top has some explaining to do." tt0208092,6NbgGhD4tdk,Vinny's dog swallows his squeaky toy whole. tt0208092,tGDO-9hfaiI,"Tommy arrives at the Pikey campsite, where Mickey and the others speak a language all their own." tt0108174,Qae03boj7lU,Charlie explains his last few break-ups and wows the crowd with his beat poetry. tt0108174,L_QCioSGgwU,"The police captain tears into Tony, then critiques his own performance." tt0108174,z6QWyZYi8ZU,"Charlie fends off Rose's axe in a rooftop battle, with both of their crotches taking abuse." tt0108174,RJACPfUU3nk,"At his son's wedding, Stuart sings a cover of ""Da Ya Think I'm Sexy?"" backed by bagpipes." tt0108174,smVge5w077g,"Harriet shares a creepy thought with Charlie, then makes the mistake of touching his ear." tt0108174,ah7mS9H_TOM,"While touring Alcatraz with a grim guide named Vicky, Charlie and Tony talk about Harriet." tt0108174,YKRFlNryaWw,"Charlie visits his parents, just in time to hear his father denounce Colonel Sanders." tt0108174,IqycJpRdVaY,"Stuart ridicules his son's ""huge noggin""; Charlie and his mom discuss marriage." tt0090060,TvFwTMU0vyY,Billy comforts Jules and assures her that they're all going through the same tough times. tt0090060,Dq6jS6uazUI,"When Jules freaks out and locks herself in her apartment, Leslie brings all her friends together to help out, despite the tension between Alec and Kevin." tt0090060,7iMvnj_UBqc,"Alec lets himself into his friends' apartment, unaware that Leslie is in bed with Kevin." tt0090060,4ZOT0aLogWU,Kevin finally admits to Leslie his true feelings for her. tt0090060,TB8q78FEwE8,"Wendy admits to Billy that she's still a virgin, but he manages to insult her before he can rectify the situation." tt0090060,GCEBqhWnUDo,"Leslie encourages Kevin to fall in love again, but unbeknownst to her, Alec just cheated on her with a salesgirl." tt0092005,4aI9-g_n_OE,"When Ace attempts to claim the body, Gordie intervenes." tt0119654,WS93LMcRGRk,"K explains the history of the Men In Black to James, but he doesn't believe a word until K gets some coffee from the Worm Guys." tt0119654,q3OTEdZkBaQ,"K gives James a tour of Men In Black headquarters, where James loses control of some advanced alien technology." tt0119654,UqbTLJ0U84M,K questions an alien while J helps to deliver his wife's squid baby. tt0119654,1FkVXCCfg2A,"K uses some harsh techniques to interrogate Jeebs about an alien weapon, and James watches in amazement as Jeebs grows another head." tt0092005,ecsPydUbYGM,The boys finally come face to face with the dead body. tt0092005,tX74H9IuYdM,Chris and Gordie part ways; grown-up Gordie reveals Chris' fate. tt0092005,V4jg8o9wXys,"Crossing the swamp, the boys are set upon by leeches; Gordie finds one in a very private place." tt0110516,-4_rMqeyOJY,Chris confides in Gordie about a teacher who betrayed his trust. tt0092005,zK0JaEde4VI,"Gordie tells the story of Lard Ass, a tormented boy with a plan for revenge." tt0092005,gozRrRCtj6E,The boys are chased by an oncoming train as they cross a long bridge. tt0092005,soEFK6PSKEY,Vern overhears his brother discussing a corpse; Chris and the others decide to find it. tt0120201,_lSzhjggxjI,"Lt. Rasczak lays down the ground rules to the new soldiers, namely, ""everyone fights, and no one quits.""" tt0120201,fgq0ecMHfzc,The largest swarm of bugs attacks the base both from the ground and from the air. Rico and Rasczak do their best to combat the creatures. General Owen screams in panic. tt0120201,cACQ2548i0o,"Jenkins notes how Sgt. Zim is the man responsible for changing the course of the war by capturing the bug. A new recruitment video celebrates the accomplishments of some its soldiers like Lt. Johnny Rico, and Capt. Carmen Ibanez." tt0120201,1DANEtz59KA,"Despite some valiant fighting in battle, Rasczak meets his demise when his legs are ripped off by a bug." tt0120201,EmUIfX9TSJs,"Johnny, Ace, and Dizzy all experience basic training. Ace receives a lesson in knives from Sgt. Zim." tt0120201,eAJLWSg5PIY,Rico takes drastic measures when a Tanker Bug shows up and starts destroying his squad. tt0120201,DtTgHuGgW-c,Carmen and Zander are captured by the bugs and placed in front of the brain bug who sucks the brains of humans. tt0120201,DhGaY0L1lLY,"While dissecting a sand beetle in anatomy class, Carmen becomes nauseous holding the entails and projectile vomits." tt0160127,U3lA1kS-XKA,"The Angels invite Charlie to share drinks on the beach with them, but Charlie prefers to remain anonymous." tt0044079,jVxyX7FcS4Q,"Even with his dying breath, Bruno maintains his ruse to take Guy down with him by lying about the missing lighter." tt0044079,_tVFwhoeQVM,Guy notices a sinister face watching him from the crowd. tt0044079,uykR8csyO-w,Guy and Bruno fight on a wildly spinning carousel. tt0044079,FL1acMVcHGo,"Bruno demonstrates his murder technique at a party, much to the delight of the guests." tt0044079,jd4tpvAcKYA,Guy tries to piece together the murder timeline so he can avoid being implicated in a crime he did not commit. tt0044079,44RYxAPH78A,Bruno explains to Guy that he will be blamed for Miriam's death. tt0044079,S04ArwiZwjE,Bruno stalks his prey and commits the perfect murder. tt0044079,2hlDkSg-Ycc,Bruno spends quality time with his doting mother. tt0044079,mjdgDECpWr4,Guy and Bruno meet on the train. tt0829482,eLLzlb1SN2M,Fogell gets punched by a store robber while buying alcohol with his McLovin fake i.d. tt0083131,tvCjr63AgtM,"Frustrated by his lack of ambition, Winger's girlfriend dumps him." tt0083131,FOzub_ghAbM,"Winger leads his men through their drill display, impressing the general." tt0083131,YXjqTyQuq4w,"Winger inspires the troops with a rousing speech about American greatness and ""Old Yeller.""" tt0083131,Fjj4a3zB1ag,"Winger challenges Sgt. Hulka to climb a tower, where he's blasted by an incoming mortar shell." tt0083131,xR9HuRUUTbs,Winger and Ziskey enlist in the Army. tt0083131,mUtHkSw9nEY,The group meets two cadets: antisocial Psycho and weight-challenged Ox. tt0083131,iTwIwfvNJLk,Ziskey and Winger introduce themselves to the platoon. tt0083131,hYq75Gm4UdI,Winger teases a pretty MP with a spatula and ice-cream scoop. tt0829482,9Dv0rOjEVIw,Evan and Seth run into Becca and Jules at the mall the day after the big party. tt0829482,23ZWuWe2riY,"During a sleepover, Evan and Seth say ""I love you,"" and confirm their best friends forever status." tt0829482,fls3z7Me2Dc,"Officer Slater and Michaels admit to Fogell that they know he's not twenty-five years old, and how they wanted to show that cops can have a fun time, too." tt0829482,Po1GiAYyjIc,"As Evan is getting lucky with Becca, Seth makes his drunken move on Jules with not the best of results." tt0829482,XARAo5zXJsQ,"Officer Slater and Michaels arrest Seth and Evan. When Fogell comes on the scene, Seth and Evan make a run for it." tt0829482,2HTHPtoNJLk,Fogell shows his new fake I.D. to Seth and Evan who aren't too happy with the name he chose. tt0438488,bLPMGLsf1c0,John Connor and Kyle Reese attempt to escape from the T-800 Factory. tt0438488,Nl0BGD-SxS0,Marcus Wright discovers that he is not a man but a hybrid terminator. tt0438488,8r354VUktU8,John Connor faces off with a T-800. tt0438488,gOy7KDtN3mc,Blair Williams is attacked by some scavengers. tt0438488,Qq8BlVT4KtY,"Marcus Wright, Kyle Reese and Star attempt to escape from Terminators." tt0438488,3VeXn9KEvSA,The machines discover a human hideout and launch an attack. tt0438488,dPKG3WMkMxQ,Kyle Reese saves Marcus Wright from a T-600. tt0438488,v3aqGRzL0BY,John Connor is attacked by a T-600 terminator. tt0096764,xLU_GvlaTtI,"As Berthold runs to Austria to fetch a bottle of wine, the Sultan entertains the Baron with his latest opera, The Torturer's Apprentice." tt0438488,AdyWIiYQv7E,"John Connor, leader of the resistance, launches an attack on Skynet." tt0096764,5oOK3e53elo,The Baron flies over the battlefield clinging to a cannonball. tt0096764,_9JONJG6KSU,"As the Baron and his men come under attack for taking all of the Sultan's treasure, the line between theater and reality begins to blur." tt0096764,ixbStXcVqW4,The Baron escapes the war-torn city in a homemade balloon. tt0096764,JvVSTmfQJyk,The Baron and Venus dance in the air. tt0096764,GH3WNYCuRks,The Baron and his friends are swallowed by a sea monster in the South Seas. tt0096764,bZ0jZaH48b8,The Baron prepares to be beheaded by order of the Sultan. tt0096764,lJVIu_wNm4g,The Baron and his men singlehandedly defeat the Turks. tt0080453,uvbOvG1gCj4,Richard and Emmeline explore each other's bodies and appear to have their own wedding ceremony. tt0080453,x1gEy9LSa4A,Richard's father finds the pair after they've eaten berries they believed to be toxic. tt0080453,KNmmwUDi4I8,Emmeline is clueless as to why she is bleeding when she gets her period. tt0080453,78VWWyPDmss,"Richard, Emmeline, and Little Paddy find themselves stranded without oars in shark-infested waters." tt0080453,_FyezVyMFJ8,Richard and Emmeline finally kiss. tt0080453,AQ_Boszvgg4,Emmeline has Richard feel her stomach which mysteriously moves by itself. tt0080453,e6omnFC9jC4,"Richard plays Santa Claus on Christmas morning. Emmeline reveals she has ""funny thoughts"" about him." tt0080453,M9yS_RvQ5AY,"Sexual tension causes Richard and Emmeline to get in an argument, and leads Richard to kick her out of the hut." tt0050212,bbTgmSIDyn8,Shears lectures Major Warden about living life to the fullest. tt0050212,nkwyt0ytVJI,Colonel Nicholson informs Saito that the bridge has been mined. Joyce kills Saito with a knife. tt0050212,lSTkEHpkMf8,"In a moment of introspection, Colonel Nicholson reflects on his twenty-eight year career in the military." tt0050212,bWJkPbBOXL4,"When Major Clipton wonders if building the bridge is a good idea, Colonel Nicholson is appalled and puts the Major in his place." tt0050212,tRHVMi3LxZE,Colonel Nicholson comes to the realization that the bridge must be destroyed. In his final moments he falls on the detonator exploding the bridge. tt0050212,J1rrdlXZ-pQ,"The British soldiers celebrate the release of Colonel Nicholson and the other officers from the ""oven.""" tt0050212,t9f5FmSQeB4,"Colonel Saito orders the British officers to perform manual labor. Based on the rules of the Geneva convention, Colonel Nicholson refuses to obey the order." tt0050212,IXdycEK_38Y,"Colonel Saito tries several bribery tactics to convince Colonel Nicholson to order his officers to work on the construction of the bridge, but Nicholson will have none of it." tt0382625,tfL5f6cZlk8,Teabling discusses the theory that the Holy Grail is in fact Mary Magdalene as proven by Da Vinci's Last Supper painting. tt0382625,d7pioagkX5k,Silas flagellates himself in humility during prayer. tt0382625,HhbADfa8rmY,Langdon explains the The Priory of Sion to Agent Neveu before trouble brews at the U.S. Embassy. tt0382625,_8LrZ4NhPmk,"When Sir Teabing escorts Langdon and Agent Neveu to England, the French have Scotland Yard ready to intercept their fugitives." tt0382625,PIwZVG5wMi8,"Langdon and Agent Neveu seek the assistance of a knighted grail scholar, who reveals a dangerous ancient secret." tt0382625,B7zXxCAZjK4,Robert and Sophie discuss the ramifications of their final discovery. tt0382625,F_HKGZRUroE,Langdon and Agent Neveu discover a clue on Da Vinci's Mona Lisa. tt0382625,ZFt3xJ6DvVE,Symbologist Robert Langdon opens his lecture on the origins and power of symbols. tt0119116,AcuaoDtYcUY,The Diva turns it up a notch while Leeloo beats down the Mangalores. tt0119116,poxW5pFQVEw,Ruby Rhod does the intro to his evening show with Korben tagging along. tt0119116,OsJKdxPwZdk,Korben is overwhelmed in his initial meeting with the manic Ruby Rhod and his entourage. tt0070909,lR6vy0i_rRU,"Fleeing from the murderous mechanical Gunslinger, Peter Martin comes across a prisoner in MedievalWorld." tt0119116,7VTsFtwO0u0,"When Zorg chokes on a cherry pit, Cornelius lectures to him, then saves his life." tt0119116,7jVsQToSfag,"Zorg shows off his new and updated weapon system, the ZF1." tt0119116,3bdQlGt3cEA,Korben takes the unconscious Leeloo to Vito Cornelius who discovers her true identity as the Fifth Element. tt0119116,ujC4W8hJ4mg,"When a Mugger tries to rob him outside his apartment, Korben outwits him with a simple trick." tt0119116,6u14pLHV3Vw,Leeloo breaks out of her unbreakable prison and escapes into the ventilation ducts. tt0865556,BfHSald-ypM,Lu Yan and Jason fight the Jade Warlord's soldiers in a restaurant. tt0865556,pS2a76BS_bA,Jason frees The Monkey King. tt0865556,gQAZdGaMHu0,"When Jason finds himself under attack for his staff, a drunken Lu Yan comes to his defense." tt0865556,e5uhElLMLbA,Jason fights powerful witch Ni Chang. tt0865556,Z5DlqH0klZU,Lu Yan and The Silent Monk argue over the best way to train Jason. tt0865556,qu1F98-YEz4,Lu Yan fights The Silent Monk for the Seeker's Staff. tt0865556,x1DLLAqLiAM,Lu Yan makes it rain with a little help from The Silent Monk. tt0865556,foyloa1KiVI,Jason fights to save Lu Yan's life. tt0865556,Su6H2_SrpOk,A magical staff sends Jason back through time after being backed into a corner by thugs. tt0865556,zhH9GJ7lpGs,The Monkey King faces off with the Jade Warlord after accepting his challenge. tt0087538,fzXK1hDkqYc,Daniel continues to train with Mr. Miyagi and learns a stark lesson on concentration. tt0087538,AOKzlx8p6yM,"When everyone thinks the fight is over, Daniel gets Mr. Miyagi's help to fix his leg and goes out to finish the fight." tt0087538,zJfuNE2rsPY,Daniel awkwardly greets Ali's parents as they head out on their first date and his mom has trouble starting the car. tt0087538,WCenGKkj3YQ,"Despite illegal moves from the Cobra Kai that bring him to the ground, Daniel delivers one final kick and wins the championship." tt0087538,DsLk6hVBE6Y,"Daniel excels as Mr. Miyagi tests him on his set of classic moves, and reminds him to concentrate." tt0087538,wAuzCjipF00,Daniel surprises his teacher Mr. Miyagi when he is able to catch a fly with chopsticks on his first try. tt0087538,SMCsXl9SGgY,Daniel is skeptical when Mr. Miyagi tells him to wax a series of cars during their first karate lesson. tt0087538,tPgwaQKNKRk,Daniel's attempt to defend Ali from Johnny ends in embarrassing fashion. tt0067328,nejXDl9BPbY,"Sitting in the kitchen, Sonny and Ruth slip into a haunting calm and quietude. She reassures him with the words, ""never you mind, honey, never you mind.""" tt0067328,FQunyqgIksc,Jacy is caught by her mother Lois fooling around with Duane and Sonny after school. tt0067328,QeydehWrRu0,Sonny and Duane decide to take a road trip down to Mexico. tt0067328,H3E2nY0djIQ,"When Billy returns from a trip to Jimmy Sue's with a bloody nose, Sam the Lion bans the boys including Sonny from his pool hall and movie theater." tt0067328,_56dNRLXn8Y,Sonny and Duane get into a fight over the affection of Jacy leading to Sonny getting a bottle smashed into his eye. tt0033870,1kk3Xvw7jn0,"Sam tries to explain his moral conviction to Brigid, before he sends her off to the police." tt0067328,bvjLvggrYUo,Sonny and Duane return from Mexico to learn that Sam the Lion passed away. tt0067328,mvgKGY5m71w,"At the fishing hole, Sam the Lion recollects old times and a crazy, youthful romance." tt0033870,wPT49WXC0Zo,"Sam Spade confronts Brigid about why she killed his partner, Miles." tt0033870,7Xuw-XKP1sI,"Kasper Gutman, Joel Cairo, and Brigid finally receive the Maltese Falcon, but they soon realize it's a fake." tt0033870,e4RGh5iAykY,Kasper explains to Wilmer that he's turning him in as the fall guy for the Maltese Falcon. He then warns Sam to be careful in dealings with Brigid. tt0033870,aogWdNKef2o,"Kasper Gutman and Sam Spade have their first meeting, with Sam pretending to flip out over Gutman's bold refusal to diclose information about the Maltese Falcon." tt0033870,Sgbe_owOvEI,"Sam Spade proposes that Kasper Gutman should make his gunsel, Wilmer, the fall guy for the murders." tt0033870,sGuNGXmQZSE,"Joel Cairo informs Sam of the Maltese Falcon, and offers to pay him $5,000 for it's recovery." tt0033870,vqOByzMoS_A,"Sam proposes to Kasper that Joel take the roll of the fall guy, but Wilmer ""steps up"" to the position." tt0033870,0I1Vh-Ru1z0,Sam and Brigid O'Shughnessy meet with Joel Cairo to take care of business but Brigid and Cairo don't seem to get along too well. tt0033870,gG5kz32ot20,"Brigid O'Shaughnessy confesses her decietful transgressions, and begs for Sam's help & protection." tt0120746,rcgygxfcywM,Zorro and Diego get their long-deserved revenge on the men who killed their loved ones. tt0120746,pz0R9XJciO0,"Zorro infiltrates the hacienda to steal a map and fights off Montero, Capt. Love and all their guards." tt0120746,qRGre50eHbQ,"When Zorro loses control of his horse, he removes the guards from their own horses one by one." tt0120746,bw7GnKjkThQ,Elena challenges Zorro to a duel in an attempt to retrieve the map that he stole. tt0120746,WLSQERsdER8,"Zorro takes on a group of soldiers single-handedly, but in his enthusiasm he ignites a powder keg and accidentally destroys the building." tt0120746,kaJv6L8vF-Y,"Alejandro dances provocatively with Elena, much to the chagrin of Montero." tt0120746,J2ZnJvnPgRY,"Elena admits to lustful thoughts, unaware that Zorro is posing as a priest in the confessional." tt0087781,qdtCFKVtSls,"Outside a county fair, unknown pitcher Roy Hobbs strikes out the vaunted Babe Ruth-like player The Whammer." tt0087781,2QGYIM-8y38,"After Roy breaks his bat, Bobby Savoy, the bat boy, brings out his own crafted bat to use named the Savoy Special." tt0087781,i94ldGNNSQ0,"With two outs in the bottom of the ninth, Roy Hobbs hits the game winning home run to send the Knights to the World Series. He rounds the bases as the lights explode around the field." tt0120746,Du8HRf6pRVY,Diego trains Alejandro in the cave where he once trained to become Zorro. tt0087781,oyaud2-X1QM,"In front of Memo and Gus, Roy Hobbs turns down the Judge's bribe to throw the clinching game to get to the World Series." tt0087781,J0lof7tFKtE,"With Iris in the stands at Wrigley Field, Roy breaks out of his slump with a towering home run that crashes through the score board clock." tt0087781,tlNLhuxeDJQ,"In his first at bat in the big leagues, Roy knocks the cover off of the ball." tt0087781,H8Ancd0WztU,"To all the players surprise, Roy puts on a hitting clinic in batting practice in front of Pop and Red." tt0087781,TgIB5Yl4sBQ,Roy introduces himself as the Knights new right fielder to Coach Pop Fisher and Red in the dugout. tt0120768,46-oS8F8_c8,Chris takes command of the hostage situation as Danny informs everyone that he's still alive. tt0120768,MZhNDpll2Vg,Chris tricks Frost into confessing about the Internal Affairs conspiracy. tt0120768,ZiO-hWU7IZI,Chris has a close call while trying to help Danny escape. tt0120768,LVC2uynUn8c,Danny convinces Chris to help him escape so he can find the files that will clear his name. tt0120768,4FsDFOIWiHo,Chris negotiates with Danny for the safe return of Frost in exchange for turning the electricity back on. tt0120768,DA2JIQh96iI,Palermo refuses to take the shot on Danny when ordered by Beck. tt0120768,Q0xqrvefO7Q,Danny tries to get answers from a deceitful Niebaum. tt0120768,Yd1ndA1_G_A,Danny uses his hostage negotiation skills to defuse a deadly situation. tt0120768,GtARiQO8ljE,Danny gives Farley a lesson in hostage negotiation tactics. tt0120768,nxTEOyfchP8,Danny seeks answers from Niebaum to prove his innocence. tt0187393,ZQzBHnXdPY4,Susan runs after her father begging him to not leave the family again to go back to war. tt0187393,N9uT3yyoaGY,"Benjamin gets his revenge on Tavington, killing him, and watching the British forces retreat from the battle." tt0187393,oCE8jHLJe3g,"As the Colonial army begins to retreat, Benjamin assumes the flag to inspire the soldiers to reverse directions and to hold the line" tt0187393,CYgJjicx0yI,"To trick the British forces on the battlefield, the militia retreats over the hill where the Colonial army is waiting to fire." tt0187393,njFOIvoN9pc,"During a peaceful prisoner exchange, Benjamin recognizes Col. Tavington, as the man who murdered his son, and the two officers have a tete-a-tete." tt0187393,4YdP5YLuJDc,"Gabriel stops at a church to recruit more men for the militia, but it is Anne who inspires the churchgoers to pick-up arms in the cause for independence." tt0187393,8kBKeCR4xiU,"Benjamin, with the help of two of his sons, massacres a number of British soldiers to rescue Gabriel who's held captive for treason." tt0187393,iD4lY0brr60,"As the battlefield erupts around them, Benjamin and Tavington eye one another and commence a showdown to the death." tt0117318,MeTuNES82O0,Alan presents the case of free speech and libelous speech to the justices of the Supreme Court. tt0117318,2XuJzaDhV50,Alan reads the Supreme Court decision to Larry who is watching an old tape of Althea. tt0117318,yie3IIh0HiQ,"Larry enters the Flynt Publication offices for the first time since his paralysis, and makes some immediate reformations." tt0117318,JqoH6dDyZmk,"Larry makes a mockery of a judge's orders in the courtroom, then tells Alan that he's a dream client in that he's ""fun, rich, and always in trouble.""" tt0117318,FyCJ-hUXQ7o,"With Hustler Magazine on the brink of bankruptcy, Larry receives word of the existence of Jackie O nude pictures. The pictures of the First Lady save the magazine." tt0117318,OSc1_gfVfCc,Alan gives a closing statement to the court about the price of freedom during an obscenity trial. tt0117318,QttI1akIG_4,"During a Hustler photo shoot, Larry insists on pushing the envelope of the magazine, by exposing a woman's genitalia despite the photographer's protest." tt0117318,VFDN2EOGyDI,"After seeing Althea dance for the first time, Larry has a sneaking suspicion that she is underage. He shares a bottle of moonshine with her while broaching the age topic." tt0454921,JZZnBoruCik,"After getting off the phone, Chris spots his stolen Bone Density Scanners. Chris chases down the red-handed hippies in the streets of San Francisco." tt0454921,_-jXE-VvZqw,"Chris takes his son to the local daycare center, but asks for the profanities and misspellings around the daycare to be cleaned up for the children's sake. His plea falls on deaf ears, as the Chinese Maintenance Worker doesn't speak English." tt0454921,xPBBnS4br9w,"As part of his internship, Chris makes cold calls to sign clients, from the bottom to the top. With his time constraints as a single parent, he decides to go top to bottom, and gets a bite from the big fish." tt0454921,ep-ieEG06qg,"After being arrested for unpaid parking tickets, Chris goes to his first interview with the firm in a wife beater and dried paint." tt0454921,t1TC-pegncQ,"Feeling down about the new living situation, Christopher expresses his anger by badmouthing the Bone Density Scanner. Chris turns his frown upside down by pretending it's a time machine and creates a world of imaginary dinosaurs for Christopher to play in." tt0454921,56fngopihOo,Chris gets the big news that he has been granted the coveted stockbroker position. tt0454921,UZb2NOHPA2A,"After moving Christopher into his new apartment, Chris shoots hoops with his son and gives him important life lessons on protecting his dreams and aspirations." tt0454921,V8Dm3OfSn4w,Chris explains his aptitude for the stockbroker job to Jay Twistle while he twists and spins a Rubik's Cube. tt0107943,2Jq7xgVqPYA,Congressman Lewis stuns Lord Darlington and his guests when he tells them that they are all amateurs in international affairs. tt0107943,G2un8xvArsU,"In a show of power, Mr. Stevens reprimands Miss Kenton for not following the protocol of the manor." tt0107943,b7lV6-iKiwQ,"Mr. Stevens overhears Miss Kenton crying, but he is unable to bring himself to console her." tt0107943,5nyJNNk1jCY,"Mr. Stevens continues to maintain a dignified distance from Miss Kenton, even after she informs him that she is getting married." tt0107943,-vCVptWV5UE,Miss Kenton teases Mr. Stevens for eyeing a young housekeeper. tt0107943,34bCs92ACpk,"Still unable to proclaim his affections for her, Mr. Stevens bids a final farewell to Miss Kenton." tt0107943,JtqEy9DW91U,Mr. Stevens retreats from Miss Kenton after she playfully inquires about the book that he's reading. tt0107943,WIrebinrQH0,Mr. Stevens informs his father that he is no longer allowed to wait on the tables in the manor. tt0292644,KLJ4xbE_j94,Lauren ends the relationship with Sean. tt0292644,IuFESp6a8hM,"Heartbroken over losing Lauren, Sean makes several unsuccessful attempts to commit suicide." tt0292644,pw46kpxHbls,"When Sean and Lauren meet through serendipity, they discover not only a shared disdain for their Saturday class but a mutual attraction towards one another." tt0160127,k-mbJhVl2Xc,"Bosley starts to lose his mind while held captive, but finds a way to communicate with the Angels." tt0292644,GKh4VG9YQ1Q,"Paul and Lauren talk about their mutual acquaintence, Sean Bateman." tt0292644,LozIIWJG9Fs,Sean wants to sulk alone in the snow but is interrupted by Paul. tt0292644,-sJezi3j7O8,The situation escalates into chaos when Rupert demands his money from Sean. tt0292644,Btn6OKhfHHk,"While having sex with Lara, Sean fantasizes about being with Lauren instead." tt0292644,20tvG54uZLg,Richard acts obnoxious while dining at a fancy restaurant. tt0292644,cWYIlga8sas,Victor describes his adventures in Europe. tt0108071,KJCvbFLtRB0,The spell of sadness that plauged the Craven family is broken and the Secret Garden remains open for one and all. tt0292644,Aedxe7JThh8,"Panicked that Harry has overdosed on drugs, his friends try to convince a jaded doctor to save his life." tt0108071,hHZs6i30Xr4,"Colin ruefully chastizes Mrs. Medlock and kicks her out of his room for threatening Mary. Later, Mary reveals to Colin that she has been to the fabled Secret Garden, which raises his disposition." tt0108071,U2g825zrVA4,Master Colin takes his first steps with the help of his friends. tt0108071,OyH39BhKP2g,"Mary discovers that a young sickly boy, Colin, is the source of all the midnight crying and the two soon realize that they have much in common." tt0108071,ZFwI8ujpT0Y,"Mary shows Colin the world outside his windows and when he rises to see the view, he collapses and breaks into a panic." tt0108071,XkGVykfJIts,"In the garden, Lord Archibald Craven makes a startling discovery concerning his son, Colin, while Mary feels the pangs of abandonment." tt0108071,vVRPMleD1SI,Mary searches high and low for the entrance to the garden and encounters a mysterious boy on a horse. tt1273678,_kqyM33kijU,Bob Ho and the kids defend the house against Creel and her Russian invasion. tt0108071,YGlqg2jC3R4,Mary makes a late-night excursion through the manor and overhears the mysterious cries of someone hidden in another room. tt0108071,1ESVngpn1aA,Mary finds out she has a servant named Martha and starts to treat her poorly. tt1273678,nwBlOt3WDUQ,Bob Ho breaks out of his bindings and uses a bike to beat up Anton Poldark and his thugs. tt1273678,RairI_NdWQA,Bob Ho realizes that Larry has eyes on more than just Farren. tt1273678,DknDCyfSe8Q,"Farren tells Gillian, her mom, that Bob Ho is a spy." tt1273678,_kocDBoWDcU,"Bob Ho battles Creel and her Russian thugs, saving Nora from being kidnapped." tt1273678,Z6bU-bOkm2Y,"Bob Ho uses his spy tech to get the kids ready for school, but Farren, the eldest child, proves to be a defiant challenge." tt1273678,w_BL6gnrtDg,Bob Ho uses all of his abilities to wrangle little Nora for bedtime. tt1273678,Dkj-8VuWNJk,"Anton Poldark tests out his new bacterial biological weapon, which has an insatiable appetite for petroleum products." tt1273678,-dkz4Sk6UuA,Agent Bob Ho makes quick work of Anton and his Russian thugs. tt1273678,ix0_IOPyX2g,Bob Ho panics when he loses sight of little Nora in a sea of princesses. tt0367089,2VKpd3XEbD8,"Walt returns to the Museum of Natural History and confronts the squid and the whale, this time without fear." tt0367089,m5rfQ59cc0o,"After Bernard collapses from exhaustion, he shares a fond memory with Joan about the early days of their relationship." tt0367089,lS1KFyakAPE,"After getting rejected by a literary agency, Bernard tries to connect with his youngest son Frank by beating him at ping-pong." tt0367089,VcVDBbEpQx8,Bernard reveals to his ex-wife Joan that he tried to save their marriage in his own way. tt0367089,yoFS6X0RKkA,Bernard's advice to Walt regarding women yields lousy results. tt0367089,gZ9nPV_stFA,Frank has a hard time getting used to Bernard's new house. tt0367089,a4wb-xmYM50,Family allegiances take form in what is supposed to be an easy-going game of tennis. tt0367089,03Rl5exupSo,Bernard and Joan tell their kids that they are getting a divorce. tt0087332,7aW8oyTgA60,"Faced with ultimate destruction, Spengler decides to ""cross the streams"" through the gate, hoping it will roast the Stay Puft Marshmallow Man." tt0105690,dN9rfJvFHgw,"With two nuclear-armed Tomahawk missiles en route to Honolulu, the Pentagon scrambles a contingency plan to deal with the situation. Meanwhile on the USS Missouri, Ryback and his team continue their assault against the terrorists." tt0105690,XBz6d2VPgZw,Ryback doesn't take too kindly when Cmdr. Krill shows up at the galley and pulls rank. tt0105690,aYBTp7dH_XE,Ryback gets a hand from Jordan after he's cornered by Doumer. tt0105690,_uw-hnKrV80,"To save their shipmates from drowning, Casey and the remaining hostages organize a counterattack against the terrorists." tt0105690,A0gGIMaQZJs,Ryback interrogates Playboy Playmate Jordan Tate about the situation on board the battleship. tt0105690,sQC7OzU_d18,Ryback finds the hostages and liberates them. tt0105690,FwnnarFw_T8,"After executing a lowly private, the terrorists begin their hunt to eliminate Ryback... until they become the hunted." tt0320691,QA029M9LIVU,"After seeing Lucian left for dead, Raze goes on a rampage against a whip-brandishing Vampire." tt0320691,2QGI0KdwW8Y,"Seeing help from a Vampire Elder, Selene awakens Viktor from his slumber a century ahead of schedule." tt0320691,BWWfy9YSQmw,"With Lycan blood now in his veins, Michael is able to see Lucian's memories of loss and torture at the hands of the Vampires." tt0320691,naUJM6Dp7qk,Selene dispatches Viktor by using his own sword against him. tt0320691,Eb3oEMSXPnc,Selene rescues Michael and helps him escape in daring fashion. tt0320691,pexcH4Ffi8I,Lucian tells Selena that the only way to save Michael is to bite him and turn him into a vampire-werewolf hybrid. tt0320691,lTc8TxNTh6I,Viktor justifies his past atrocities to Selena. tt0320691,tAH5PR2SvXM,Selene rescues Michael from Lucian and his Lycan attackers. tt0383694,XU8Xdt7tSyo,Reg thanks Vera for a lovely Christmas despite the somber nature of the affair. tt0383694,EPtxN1YoQ3k,Sid finds himself unable to forgive Vera for her actions. tt0383694,Vo5ycPggsGY,The Judge sentences Vera to two and a half years in prison. tt0383694,k7OWfTv3Xr0,Vera is filled with shame as she tells Stan about her secret career as an abortionist. tt0383694,fuAo0q0a_Ww,"Questioned by Det. Webster, Vera justifies her work as a backroom abortionist." tt0383694,ysFpoWSlo7g,Ethel's engagement party is interrupted when Det. Webster pays a visit to Vera. tt0383694,ltMrjNiI340,Reg proposes to Ethel and she accepts. tt0383694,6Vj6Up8OaFo,Susan visits a psychiatrist in an attempt to obtain an abortion on legal grounds. tt0383694,4XhNhG_zq-A,"Vera welcomes Reg into her home with the intent of setting him up with her daughter, Ethel." tt0383694,bBBV7uUGER8,Lily visits Vera with a new assignment and an assortment of rare postwar goods. tt0070909,W7Dq7vqpGCM,"When the sun goes down in WestWorld, the real work begins." tt0070909,40CUuyOxUZs,Peter Martin has an intimate encounter with one of the ladies at the bordello – who is a robot. tt0070909,9Okpnw0Ktt8,A mechanical snake fails to follow protocol when it slithers up to John Blane and Peter Martin. tt0070909,nq382fby2yU,"With the robotic Gunslinger on his heels, Peter Martin has to act fast." tt0070909,Mg7YM02K5ek,A guest dressed as a Medieval Knight fights the Black Knight robot until something goes horribly wrong. tt0070909,fsMC6d8DeMo,"John Blane and Peter Martin face the Gunslinger once more, but this time, things go off script." tt0070909,lHodSSB_YpM,"After watching this commercial, you'll want to book your trip to Delos today." tt0070909,4M1mi7Ommbg,Peter Martin and John Blane stop by a bar and get picked on by a robotic Gunslinger. tt0070909,1KCTiqj_-tg,John Blane gets a surprise visit from the Gunslinger. tt0120890,yqtmypCco-I,"As Detective Perez gets closer to the truth, she finds herself getting closer to Lombardo." tt0120890,-heLeiCeD58,Detective Perez doesn't buy Kelly's story about her sexual assault. tt0120890,DWa1IsbsiY4,"Suzie poisons Lombardo's drink and sends him overboard, thereby tying up the last loose end…" tt0120890,uNsFppO-q3g,Kelly stuns her mother when she tells her that she was raped by Sam Lombardo. tt0120890,lDDtJ_J_hhw,"After washing Lombardo's jeep, Kelly makes a not-so-subtle attempt to seduce him." tt0120890,9lro80T1eV8,Lombardo and Suzie team up to surprise Ray and dispatch him into the wide open sea. tt0120890,Tx59CHKUgjs,Lombardo and Kelly conspire to murder Suzie in order to get her out of the way. tt0120890,vW4TOsL7e3M,Ray is on to Kelly's scheme and lets her know about it. tt1156398,VDm_Pg2Cdsk,Tallahassee creates a distraction so Columbus can save the day. tt1156398,OK7Hm5IztPc,Tallahassee provides a distraction while Columbus runs off to save Wichita and Little Rock from a clown zombie. tt1156398,1tdZ_k0eaHo,"While checking out a gift shop, Columbus tells Tallahassee that he has a crush on Wichita." tt1156398,Awh5WP9BbGQ,"Wichita and Little Rock seek shelter on an amusement park ride, while Columbus and Tallahassee decide that the sisters need help." tt1156398,cwprGyncs0A,Columbus and Tallahassee risk their lives to look for a box of Twinkies in a grocery store. tt1156398,sSvxvpY7PZM,"Columbus hitches a ride with Tallahassee, who has only one weakness: Twinkies." tt1156398,RW4ADt4YSy0,Columbus explains his first four rules for surviving the zombie apocalypse. tt1156398,kp3HaaTqYP0,Columbus wakes to find that his sexy neighbor from the apartment next door has transformed into a zombie. tt1554091,x2wH5RS58lo,"Carlos tells Luis why he decided to raise him as a single parent, and what it means to have his son in his life." tt1554091,LXM383MIFYY,"Carlos takes his son Luis to his first charreada, a Mexican rodeo." tt1554091,f3XcExCD3HM,"Luis and his friend, Facundo, tease one another about their respective futures, and are interrupted by gang member Ceelo, who serves as a reminder of the dangers of gang life." tt1554091,du22ttQhRhA,"After successfully reclaiming the pickup truck, Carlos and Luis get pulled over by the police. Later, Carlos finds himself in prison because he is an illegal immigrant." tt1554091,z5S3e6sCBV0,Carlos and Luis break into a used car lot get their truck back. tt1554091,LwgcvZ0z430,Carlos and Luis find Santiago working in the kitchen of a night club and ask him what he did with their truck. tt1554091,mhaxNZs5MGc,"While Carlos climbs high atop a tree, Santiago uses the moment to steal his truck." tt1554091,w57ga2Yiic4,Luis asks his father Carlos why he bothered having him when he knew he was going to be poor. tt1554091,PiJ5Ef63OwY,Anita offers Carlos money to start his own business by buying a truck. tt1740707,nRSaxtoy7fo,"The film crew and troll hunters come face-to-face with an angry, rabid mountain troll." tt1740707,7tFLFMyA0EI,"After tiring out the mountain troll, Hans must deliever the final blow." tt1740707,HSh63MNfwbE,The troll hunters find themselves trapped in a troll lair and have difficulty escaping. tt1740707,yly_wF8DyE8,"After finding out that the trolls have been infected with rabies, Hans, Thomas, and Johanna must escape the wrath of an angry mountain troll." tt1740707,Io7wUtei6BA,The troll hunters escape the woods and the angry troll. tt1740707,WhGFwk58h34,"Desperate for a troll blood sample, Hans resorts to extreme measures, luring the troll out of hiding with sheep and ""Christian man's blood.""" tt1740707,kRCO31JfDck,Hans goes to the extreme in order to obtain a troll blood sample. tt1740707,CjIU-zqxJEA,"Over a bite to eat, Thomas interviews Hans in order to gain a better understanding of trolls." tt1740707,angyfkPmHMo,"Hans allows Thomas and Johanna to accompany him on a hunt, and the students get their first look at a troll." tt1740707,KgqzMdBg7ig,Thomas and Johanna follow the troll hunter Hans into the woods and find themselves involved with something greater than they expected. tt1306980,nukRk0WMspo,Adam learns that Rachael has been cheating on him. tt1306980,Cj-H4ZcfVU8,Kyle is pleasantly surprised when he learns of Adam's odds of survival. tt1306980,2tI3Dz2Ic2o,Adam is appalled by state of Katherine's car. tt1306980,5aLrRe3K_6I,Adam uses his cancer as a way to guilt girls into talking to him. tt1306980,oZEJTJSZQQs,"Adam meets his therapist Katherine, who is much younger than he expected." tt1306980,CwLcHWwjkV4,Adam talks to his family in his final moments before the big operation. tt1306980,oviA5ncbmc8,"Adam informs his mother, Diane, that he has cancer." tt1306980,OGpGO7K3aBo,Adam clips his hair off because he will start chemotherapy soon. tt1306980,jmjcKSMwC1Y,Adam is very nervous about his surgery so he calls Katherine to feel better. tt1306980,0RWk0XTaEX4,Adam drives a car for the first time and then he has an angry breakdown. tt1237838,0999Zftz6-w,Duncan uses a slingshot and a firecracker to take out Robert. tt1237838,i-6UVTMiDm8,"Jason tries to negiotate the release of Kelly and his friends, but he bungles it horribly." tt1237838,VSjHX4LO35c,"The Mystery Team infilitrates Leroy's compound disguised as the most unconvincing ""high school students"" ever." tt1237838,o2jtBk4B-hE,"Jordy gives the Mystery Team a new lead, while also commenting on Jason's prospective love life." tt1237838,OQrJfULly20,"After discovering two dead bodies, Duncan rages against Jason over how incompetent they all are at doing detective work." tt1237838,rHPTGJpgtFU,"The Mystery Team goes to the local bowling alley to follow-up on a lead, but they encounter nothing but insulting hostility." tt1237838,xDvdVxr48UU,Duncan has to reach into a filthy toilet to retrieve an important ring before he and his friends are caught by the Bouncer. tt1237838,-cOOPGQGqh8,"Jason infiltrates a hospital costume party disguised as a bandito and meets Jim and Frank, two drunkards." tt1237838,b0dtzloyP6k,"After being rejected by his friends, Jason seeks the sage advice of Jordy." tt0087332,89OOSFlcy98,"The Ghostbusters fire at Gozer who disappears, but Spengler says the worst is yet to come." tt0087332,9-tYZkJ2p54,"Faced with incarceration by Peck, the Ghostbusters convince the Mayor to allow them to save the world." tt0087332,xSp5QwKRwqM,"When the police drop the possessed Louis off at the Ghostbusters' office, Spengler questions him." tt0087332,ZGNoXIhKTLw,"Possessed Dana tries to seduce Venkman. When he rejects her, she starts to levitate." tt0087332,VWb1z6ZwUoY,"When the Hotel Manager refuses to pay the bill, Venkman shakes him down." tt0160127,EN0JaJN_fwU,"Dylan finally gets back to Natalie and Alex, but their headquarters are blown up." tt0160127,FHB3oMNWk1g,"Natalie is attacked by a thug in the bathroom, while Alex is ambushed in Jason's trailer." tt0087332,7_pR6mUYtOo,"When Stantz's shot misses, the fleeing ghost winds up sliming Venkman." tt0160127,jj7BRKHml8g,Natalie infiltrates Redstar's secure computer system and plants a bug. tt0160127,cjyqWsrpQAA,Alex gives a stirring talk to the Red Star technicians and gains their cooperation. tt0087332,5ohlA__xABw,"Venkman conducts ESP testing, always passing the cute female student, and continually shocking the male student." tt0160127,2LWGe28axmg,The Angels chase the thin man and barely escape his gunfire. tt0160127,xvf--4i6NA0,Alex is annoyed when Natalie and Dylan make fun of her inedible muffins. tt0212235,lBSi1KKCRQY,The kids discuss the killer's methods. tt0212235,eh_vTiBMvpo,"In a parody of Scream, the Killer calls Cindy aka ""Screw"" and stalks her." tt0212235,X1JIzLmbkA4,Barbara finds out she has STDs and then remembers an awful thing that the killer knows about her. tt0212235,dz6QtPfCmrU,Slab sings in the auto body shop and is pursued by a demon car. tt0212235,EVGsdxjfeO0,Dawson and Martina finally unmask the killer. tt0212235,OdaMqivNKZ0,The movie parodies Pop-Up video with information for the audience. tt0212235,-k34FungG-Q,The new kid Dawson meets all the other relevant teenagers in the movie. tt0212235,YC65XWrNn4s,EmptyV host Hagitha Utslay meets the school security guard. tt0212235,oQAqWa_86vg,The killer goes after Barbara with a weed whacker. tt0212235,1dqc9SW9OFI,Martina explains the rules of parody films. tt1132626,FnmbPDYmz0E,"Luba tries to force Mallick to sacrifice himself, but her plan backfires." tt1132626,8BgcozieWuE,Charles becomes a target when his selfish behavior puts the others at risk. tt1132626,jcp5lTiZEUY,"When Mallick starts the clock ticking, Ashley pays the ultimate price." tt1132626,9N9BwAElBiA,"Brit and Mallick figure out the game, but only after it's too late." tt1132626,QE78itp1Jn0,Jigsaw confronts Mark Hoffman about his copycat murders. tt1132626,IrptxQD55zY,"Brit, Luba, Charles, Mallick, and Ashley wake up in a room with collars attached to their necks." tt1132626,3y4KK8Bd5l8,Agent Peter Strahm wakes up with his head in a box connected to two large bottles of water. tt1132626,BYwC-WJQKd4,Mark Hoffman visits Agent Peter Strahm in the hospital to determine how he escaped Jigsaw's trap unscathed. tt1132626,lh9z3hPGqgM,"Agent Peter Strahm decides to ignore Jigsaw, at his own peril." tt1132626,LHpto8gCOso,Seth Baxter is forced to crush his hands in order to ensure his freedom but Jigsaw has other plans for him. tt0360009,x6oaXdPsiN0,Scott meets ambitious recruit Curtis and knife-fighting instructor Jackie Black during a training exercise. tt0360009,imyD8loUM-g,Jackie Black is shot down as she guides Laura to safety. tt0360009,z8fwAxhgA-A,Laura expresses the depth of her anger and hatred for her father. tt0360009,ktrHO9uETjk,An undercover Secret Service Agent reveals the truth about Laura and the depth of her attachment to the girl. tt0360009,aKgha2AsDNc,Curtis and Scott argue about the case as Curtis presents Scott with new evidence. tt0360009,hKoYPfcWpcU,Plans go awry when Tariq Asani sees Curtis with a cop. tt0360009,BWWTObc0KDQ,Scott learns necessary information from Tariq Asani. tt0360009,YOcfHxXt_aA,Scott plays a robber on a killing spree in order to gain the trust of some convicts. tt0360009,aTsjwO97Aow,Scott uses brutality and harsh techniques to track down the President's daughter. tt0360009,TaOTPhkNkbw,A young and eager recruit named Curtis introduces himself to Scott and shares a keepsake from his father with him. tt0308508,dYvCGjka2-s,Surfers explain the differences in surf cultures across the world and enjoy the remote island of Rapa Nui. tt0308508,6whKr0DDbdY,"Dale Webster describes his passion for surfing over 10,000 consecutive days." tt0308508,cUknJlnzdLo,"Surfing has changed since it first began, becoming more mainstream and including women." tt0308508,8Jd-gAm1wMU,"Despite engine problems, the group boats 100 miles into open water to surf." tt0308508,wACyqCoTTno,Jim and Alex ride sand dunes in Vietnam. tt0308508,Y3WWNavHXSA,Riding a foilboard is like gliding on water. tt0308508,fQJzgovGkSQ,Several surfers describe the pipeline of Oahu. tt0308508,OwzlxG2_8hA,Dana Brown explains how it's all about the wave. tt0308508,4sJi6VExXuA,The Malloy Brothers explain how surfing brings people together. tt0308508,zJ3ZcmivZhI,Jesse Billauer explains how he overcame adversity to continue surfing. tt0118971,PnFxS6a2aPU,Kevin and Mary Ann explore the luxurious apartment provided by Kevin's law firm. tt0118971,DEX-5gM0P8I,Kevin uses some reverse psychology to prepare the jury to acquit Alexander of murder. tt0118971,3teArKtt1PQ,Mary Ann has a waking nightmare involving an abandoned child. tt0118971,L38yiP7vLwM,Mary Ann raises some suspicions about their new life as Kevin tries to comfort her. tt0118971,9enPC37mHrM,Kevin puts his jury selection skills to the test upon his arrival in New York. tt0129167,W3HDdYjGDzg,Hogarth Hughes teaches The Giant the difference between a rock and a tree. tt0129167,5Ipcnz96hE8,The Giant protects Hogarth Hughes from the jet fighters that are aiming to shoot them out of the sky. tt0129167,yhaoJxQpRg0,The Giant is resurrected. tt0129167,D4dT2eBWI2M,The Giant sacrifices himself to save everyone else. tt0129167,SF24fZvfoHs,Hogarth sneaks a laxitive into Kent's milkshake under the pretense of making it a better drink. tt0129167,9t2_DjGU_Qk,The Giant makes a big spash after watching Hogarth make a one of his own. tt0129167,QjCxoikhxSE,"Hogarth tries to thwart Kent as he searches for the Giant. Meanwhile, Dean deals with the Giant consuming his scrapyard." tt0129167,MiPH7hknJ8k,Hogarth finds food for the Giant. tt0129167,ydMwnnhLnLU,Hogarth is placed in a difficult situation when the Giant's severed hand snoops around the kitchen. tt0129167,PW-RHrX7Fnc,Kent Mansley introduces himself as a tough-talking G-Man. tt0093437,9o8gzua-K_E,Michael watches as David and his pals drop one by one from a railroad bridge into a foggy abyss. tt0093437,0A80j2BuMaU,David initiates Michael into the gang with a disorienting meal. tt0093437,ZynRcyXIGKM,Edgar and Alan Frog try to convince Sam that Santa Carla is crawling with vampires. tt0093437,TgLe98ts0QU,"With all of the Lost Boys dead, Max reveals himself as the head vampire and demands that Lucy join him." tt0093437,F5g7u8WRwqQ,Michael and David fight their way into Grandpa's antler-filled work room. tt0093437,XObhhoFp6G8,Alan and Edgar Frog kill Paul with a bathtub of holy water. tt0093437,5EN8IHljaaE,"Sam and the Frog brothers attempt to kill the lead vampire, but they only end up angering David." tt0093437,Kq3nRBxVD3k,"At dinner, Sam and the Frog bothers try to prove Max is a vampire, to no avail." tt0093437,iYsOzr1hPl8,"When his dog attacks Michael, Sam must face facts -- his brother is one of the living undead." tt0093437,wmbt1RjPn4M,Michael is transfixed by Star at a rocking beach party. tt0120004,Ss7i62FguNY,The creature attacks the group that stayed behind to wait for help. tt0120004,QJYrz4jET9M,D'Agosta and his dog hear something on the other side of a door. tt0120004,tQkepXxAGq4,D'Agosta sits in on the autopsy for one of the creature's victims. tt0120004,fUxg-0j1Ijw,Dr. Green burns her own lab to defeat the creature. tt0120004,0UBym5z6rgM,"A security guard goes to the bathroom to smoke a joint, but has an unexpected visitor." tt0120004,KldCgijNQyg,"D'Agosta interviews Dr. Frock, who tells him about his theory, The Callisto Effect." tt0120004,HC9BNtZrnIc,Things go horribly wrong at the opening of the museum's new exhibit. tt0120004,7SU_ZshgGro,The creature takes out the police rescue team. tt0120004,HaG2Mm5K6TE,D'Agosta tells Dr. Green about his lucky bullet. tt0086508,sx-obtKU1jM,A wounded Sailor uses his lucky grenade as Rhodes and the others fly to safety. tt0086508,J4yrUjXQJdQ,Blaster sacrifices himself to ensure that the bridge is completely destroyed. tt0086508,f4wQCy4xIyY,Charts uses some fancy flying to rid his helicopter of an unwanted passenger. tt0086508,m_C2cbqPkx0,Rhodes quotes Shakespeare as the ground team and air team go their separate ways. tt0086508,qXTTXNZucIU,A fight between Sailor and Scott leads to a revelation about Scott's reasons for joining the mission. tt0086508,IYuknBe73ik,Wilkes takes out the entire unit during a training exercise highlighting his evasive techniques. tt0086508,oWr69u4tLoc,"After their weapons are confiscated, Wilkes convinces everyone to surrender their pay." tt0086508,wj0aH_PiAnI,Blaster teaches a lesson on the proper placement of explosive charges. tt0086508,Xwl5DKs5HL0,"Rhodes tracks down Sailor, who begs to be included in the mission." tt0086508,39-n35p2juk,Sailor teaches Scott a lesson about perseverance. tt1477076,QEkSX1S4kwg,"Bobby attempts to save the life of Nina, his publicist and partner in crime." tt1477076,1khqylEN_48,Hoffman uses the head trap to exact revenge on Jill. tt1477076,-JeKHhnEcw0,"Lawrence, working on behalf of Jigsaw, returns to the scene of his nightmare to inflict revenge on Hoffman." tt1477076,01qhgR0WsnA,"Bobby fights to save the life of his lawyer, Suzanne, from a device designed to pierce her eyes and mouth." tt1477076,KdfwchgYp-U,Bobby finds himself in a cage when Jigsaw forces him to face his first real test. tt1477076,xZOMiFk2ThE,Evan and his skinhead friends face the wrath of Jigsaw in an elaborate vehicular torture trap. tt1477076,6XFzJ3WtYPo,"Bobby seeks to inspire a support group for Jigsaw survivors, but Lawrence sees right through his performance." tt1477076,FTgzyx6931A,Jill dreams of being brutally murdered by Hoffman. tt1477076,IvPewzBKqYU,Jigsaw devises a sick game for a love triangle that plays out in a very public way. tt0816462,NFwg1siPn3A,Conan fends off mystical serpents. tt0816462,fXwVoMcZa90,Conan and Khalar Zym have their duel. tt0816462,iGk8yvyixvY,Conan battles mystical sand monsters. tt0816462,2vL7DtW6wGM,Khalar Zym seeks out the pure blood Princess. tt0816462,bU6V_rkvECA,"Conan and his crew are attacked, but repel the invaders." tt0816462,wRLLMDtKPvc,"Conan catapults one of Khalar's men back to his camp, with a message." tt0816462,G1IQQRRhI5M,Conan chases down a rival group of warriors to find Khalar Zym and meets Tamara. tt0816462,QHUcubYTt0o,Conan interrogates one of his captors and extracts the whereabouts of his father's killer. tt0816462,CTCkd8aEpZ8,A young Conan brutally kills a group of savages. tt1212023,wsvdvNRcUVA,Taylor and Justine get attacked while trying to call for help. tt1212023,QUYNJvRn4jw,Justine and a very unobservant Taylor try to find help inside a gas station. tt1212023,FRLcggpffDk,Justine and Taylor discover what's left of Zach. tt1212023,ShCVyu04OCc,Taylor and Justine flag down a truck driver and attempt to escape. tt1212023,93uAmv9qwNs,"While Justine and Zach get intimate in the bedroom, Taylor explores the rest of the farmhouse." tt1212023,yrZ7CsXcTrI,Justine investigates the barn and faces off against every farmer's worst enemy. tt1212023,8YkX-DZDB4o,"While Taylor surveys the tools, Josh has a deadly encounter with Farmer Brown." tt1212023,9ZM4N1bdm4g,"As Taylor gets ready for another day at school, Farmer Brown prepares a rooster for slaughter." tt1212023,5ai_pW6LPpE,Zach and Justine explore the barn until blood is spilled. tt1212023,dw4cZQicaVo,Taylor takes control when the gas station is mysteriously closed. tt0206275,Bn0-7zClnWA,Derek tries to persuade Malakai to give up his criminal life. tt0206275,zMEjTw82zDc,Sara arrives at a new school and gets in a classroom debate with Derek. tt0206275,KRCwsXtAeKQ,Sara auditions for Juilliard Dance School. tt0206275,_oBX12cEu-w,Sara tells Derek that she wants them to take a break with their relationship. tt0206275,Ts4u--T-fDc,"Roy apologizes to his daughter, Sara, for their conflicted past." tt0206275,jgcD-DHpPR0,"Sara gets in a fist fight with Nikki, while Derek is involved in a drive-by shooting." tt0206275,cvEJy_9hy4o,Sara explains to Derek why ballet isn't a part of her life anymore. tt0206275,NyxW1SxFqzk,"Chenille brings Sara to a local club, where Nikki confronts them." tt0206275,lPrOstRqB1o,Derek shows Sara how to dance to hip-hop music. tt0086873,eI8o5C5l9J8,Roger tries to get Prahka Lasa to put Edwina's soul back in the bowl. tt0086873,aQ6ZzIC7OZk,Edwina tries to sabotage Roger in his bid to sleep with Terry. tt0086873,3VVxzAw0hzk,Roger tells Edwina she is going to be the same old bitter person in her new body. tt0086873,BpV5wTbvq8M,Roger forces Edwina to give him a hand in the restroom. tt0086873,ICC99mWSW1s,Roger tries to sleep with Terry without waking up Edwina. tt0086873,LpPNvHq9rKQ,Terry makes a deal with Edwina and Roger to keep them from sending her back to jail. tt0086873,nE58ZtIpNSo,Roger and Edwina find themselves trapped in his body with mutual control of its movement. tt0086873,Vz0R6lgYJb4,Roger talks to his girlfriend Peggy about getting married. tt0086873,u14YNz-Ym2c,"Edwina helps Roger overturn the prosecution's objection, but sabotages him when she discovers the ruling was unfair." tt0086873,iZ1_8kpRnW8,"Roger tries to explain what is happening with him and Edwina to his girlfriend, Peggy." tt0086873,9e-6wOwlHmM,"Edwina asks Roger to draw up a new will for her so her estate goes to her stableman's daughter, Terry." tt0086873,kHFzcXAU8hg,Edwina's soul is mistakenly transported into Roger's body. tt0115738,rOTyj0-PRRY,Kid incites a tomato battle with Al. tt0115738,ok-pfhEHoE8,Kid breaks down emotionally after a fight with Wick. tt0115738,bENL5AzvP4w,Al and Kid destroy Al's former workplace. tt0115738,7sQ6ktZxmYY,Al realizes his fear of aging. tt0115738,s3TkMEuXaqs,"Before Al leaves, Kid gives him the box of moonlight." tt0115738,1VkkHqm3q14,Kid and Al debate the authenticity of professional wrestling. tt0115738,4zhGIlO2Lx8,"Al scolds Kid about his freewheeling, irresponsible lifestyle." tt0115738,cMbUCMRhH9M,Kid tricks the local sheriff after he interrupts his tomato fight. tt0115738,vtXNIF662BU,Luvven pesters Al with his religious prying. tt0115738,Bo47QGYq-LI,Al yells at Kid for stopping on a blind curve. tt0115738,7v6zdWNRtLI,Al is unsatisfied with Floatie's sex hotline performance. tt0374563,OmBxRiaJzFg,Gary Dexter volunteers for dental torture in order to save Jennifer Tree. tt0374563,DTpEhN9pzbs,Jennifer Tree has thirty seconds to kill or be killed. tt0374563,giegMz7BBPQ,Jennifer Tree is shown a haunting video of what's to come. tt0374563,iRrAI8tl8d8,Gary Dexter has to keep his cool while Detectives Di Santos and Bettiger investigate a missing person. tt0374563,aisjDMTWr2w,Jennifer Tree discovers that she is not alone. tt0374563,TyPhgetzMfY,Jennifer Tree gets the upper hand on Gary Dexter. tt0374563,_MeA5EW8FdI,Jennifer Tree wakes up in an unfamiliar place. tt0374563,RUvQEHa_lZQ,Jennifer Tree discovers some incriminating photo albums. tt0374563,3aCT8ZhNBrA,Jennifer Tree is forced to drink the remains of a previous victim. tt0200530,ULp3vJ6Dme8,Sam auditions for Buck and Beverly and impresses Buck because of his resemblance to Chuck. tt0374563,h-a0Kx3RlIg,Only fellow captive Gary Dexter can save Jennifer Tree from drowning in a sea of sand. tt0374563,b8SJezYEQHA,A captured man is tortured with battery acid poured up his nose. tt0200530,UchtzdG8HdM,"After Buck confronts Chuck's assistant, Jamilla, Chuck tells Buck to stay away from him." tt0200530,wOzRG7N8_Ic,Buck and Sam get off topic at a late-night rehearsal. tt0374563,R7cqvLTR0vA,Jennifer Tree makes an escape attempt through the air duct. tt0200530,Nq1D205cXss,Buck presents Chuck with a special gift. tt0200530,30shqA196uw,Buck doesn't agree with the analysis of his play by Beverly. tt0200530,f39I-UCl9Qo,Buck wants to play a game with Chuck. tt0424993,_U8k98LPpjg,Zack and Vince face off for the Employee of the Month title. tt0200530,sp4A_jU3oD0,Buck meets some of Chuck's friends to less than desirable results. tt0200530,24kOoUWjz5Q,Buck moves to L.A. but can't work up the nerve to visit Chuck. tt0200530,0QbMWpwr7FM,"Buck hits on his childhood friend, Chuck." tt0200530,32OtN3z_DNs,Buck tells Carlyn about growing up with Chuck. tt0200530,tv25UVPcgxY,Buck shows Chuck and Carlyn his room that hasn't changed much in years. tt0200530,UJ36_9oVTO8,Buck decides he wants to write a play and put it on at Aeternus Theatre. tt0424993,d3-AXjkz3Pk,"During a softball game against rival store, Maxi Mart, Zack gives an inspiring speech to his teammates." tt0424993,RywZwxSQcvo,Jorge agrees to help Vince at the check stand face off with Zack under one condition... tt0424993,vn9awsg8BjA,"In order to keep his hopes alive for the Employee of the Month award, Zack races through traffic to clock in on time." tt0424993,049R_wOazQI,"While Zack is on a date with Amy, Vince and Jorge break into Zack's house and turn the clocks back." tt0424993,0eC9f13FIJ0,Glen Gary makes a surprise appearance for a store audit. tt0424993,P63QUmBOP08,Zack misses out on a chance to collect a gold star. tt0424993,gHf9n0jhBdk,Lon manages to insult and harass a customer at the same time. tt0424993,EKd7hAoXDPU,Zack goes out on a date with Amy and learns her deepest secret. tt0424993,dKFZ4T_Y9Pw,Vince tries to impress Amy by acting like Zack. tt0424993,PuFTYd0b6n0,"Zack meets the new cashier, Amy, but is interrupted by the pesky Vince." tt0424993,AVEnTcDIo0A,"As the store closes, Vince and Jorge are looking to bad mouth the slacker, Zack." tt0317676,EqzhYb-Ey4c,"Caught by zombies, Simon blows up the house as his friends escape into a tunnel." tt0317676,kmGvvAof2Ww,Simon and Liberty head for the boat and are saved by the sharpshooting skills of Captain Kirk and Casper. tt0317676,9nqpOwh4N_Q,Alicia and Rudy face off against the immortal Castillo. tt0317676,1kh5X5CJAOU,Captain Kirk and Casper lead the troops in a full-on assault against the zombie infestation. tt0317676,CxCjXAy6HQE,Casper saves the day when Cynthia turns up as a zombie. tt0317676,ye-S7zxbv9o,Casper defends the group as they attempt to cross a bridge. tt0317676,YmIShBpwLPk,The gang hires a salty Captain Kirk and his first mate Salish. tt0317676,bWyLG7CWLjA,"Simon, Karma and Alicia discover a scary house with some unexpected inhabitants." tt0317676,QSVX6S1zbjQ,Captain Kirk defends his boat from approaching zombies. tt0317676,3TeYtmJXgQE,"Matt gets an unexpected hand, much to the displeasure of Johanna." tt0317676,39zzDqksCHc,"The gang watches zombie attack footage on a camcorder, as Kirk remains unaware of the approaching horde." tt0160672,oNI9u5Q4TLQ,Joe says his sad goodbyes to Mike and Theresa. tt0160672,lvyRzKr6Bkk,Jorge scolds Joe for breaking into Roy's house. tt0160672,BSuaYQdLqV0,Joe orders an excessive amount of food before his incarceration. tt0160672,rM3mP-39_is,Bob gives Joe some final advice before he is incarcerated. tt0160672,gINx5_Hs8C4,"To get back at his brother's bully, Joe urinates on his dinner." tt0160672,OjHsjB_foZI,Joe steals a lockbox from Roy's house. tt0160672,SDS5UH9Nnus,Mike is upset after a classmate teases him for being a janitor's son. tt0160672,PaYl9YVeXhc,Joe confronts Bob about his debts. tt0160672,UJhTR5FTd2I,Joe finds the aftermath of a fight between his parents. tt0160672,RZziZRbaCPc,Mrs. Basil humiliates Little Joe in front of the classroom during Career Day. tt0160672,6e59qLPJxgI,Joe tries his best to charm a girl at the foosball table. tt0160672,oOFNIMMfTUg,Bob takes his anger out on Joe after his neighbor hassles him about debts. tt0119426,KJnIgY7l_nk,Detective Lopez questions J.T. about the guests at the motel. tt0119426,OboAFE4Tr8Q,J.T. watches Tanya by the pool until he's interrupted by a new motel guest. tt0119426,M6gOHxwffBg,Smith teaches Tanya how to erase her tracks. tt0119426,QaNag38SNno,"After finding a body, J.T., James, and Tanya argue about what to do with it." tt0119426,oP43IvevmjY,J.T. and Tanya dare each other into skinny dipping in the motel pool. tt0119426,cHEoEuY_mTk,"After their joyride in the stolen car, J.T., James, and Tanya make a gruesome discovery." tt0119426,_RVQuAICxc0,J.T. and James realize what Tanya did to save their lives. tt0119426,5otacrrli04,"When James has trouble starting his car, J.T. comes up with an idea." tt0119426,ERw4l461lhU,Smith rescues Tanya from an aggressive client. tt0399295,eQMofmwnt6s,Yuri Orlov witness the slaughter of his brother. tt0119426,T7-sw9PhQec,Smith forces Tanya to shoot J.T. and James in cold blood. tt0399295,RVDyoCWz0vM,"A bullet leaves the factory, travels around the world, and gets fired on the battlefield toward its final destination." tt0399295,JITv11rctGg,"After finding a stockpile of illegal weapons, special agent Jack Valentine interrogates Yuri Orlov." tt0399295,3rnomffKi0I,Special Agent Jack Valentine catches Yuri Orlov on a plane transporting his illegal cargo and he's forced to make an emergency landing. tt0399295,6FJfcqLCkIc,"In a race against time, Yuri Orlov gives away all of his illegal cargo before Special Agent Jack Valentine arrives to arrest him." tt0399295,45wce6oSr0M,"After the fall of the Berlin Wall, Yuri Orlov visits his Uncle Dimitri and cuts a deal for a Soviet stock pile of weapons kept in the Ukraine." tt0399295,EcffcR-lgtc,"Yuri Orlov gets picked up to meet his newest customer, President of Liberia, Andre Baptiste Senior." tt0399295,H99XlWQ9KsA,Yuri Orlov describes the world's most popular assault rifle and the greatest export of the Russian people. tt0399295,HJjBZoopPXw,"When Yuri Orlov finds Vitaly Orlov in a downward spiral of drug addiction, he brings him back to America to enter rehab." tt0399295,ISTPRoBW2sc,"After removing all the missiles from his newly bought military helicopter, Yuri Orlov attempts to fool Special Agent Jack Valentine and smooth talk his way out of prison." tt1179891,7xWlr8_R5YY,The Miner murders Ben Foley. tt1179891,cGbTf-FgG-M,Axel and Sarah discover Megan's body behind the grocery store. tt1179891,BZwbVffx49M,The Miner attacks Burke and Deputy Ferris. tt1179891,o-Hcz6we0mk,Sarah Palmer and Megan try to escape the Miner through a caged window. tt1179891,Isof3ww1UPs,Sarah Palmer and Megan are stalked by the Miner in the local grocery store. tt1179891,Tpp5oqIzQL4,The Miner locks Tom Hanniger in a caged room while he murders another man. tt1179891,e2FdM0YQSHk,Axel Palmer receives a grotesque Valentines Day gift. tt1179891,7E8rxZMCldI,The Miner unleashes his killing spree on a group of teenagers. tt1179891,8_2fitdIp4c,The Miner impales a teenager through the eye with a pickaxe. tt0138704,XobjkWljkXw,"Max is confronted by Marcy, but a rescue by Lenny proves to be short-lived." tt0138704,1UWy_6S-ZfY,Max has a hallucination of a businessman singing on the subway. tt0138704,6_CtgelI6xU,Max wakes up and plays a number game with his neighbor Jenna. tt0138704,Yv6L4DunPDE,Rabbi Cohen kidnaps Max in order to get his help with deciphering the Torah. tt0138704,XGZ0K5Rpacw,"Max, overwhelmed with paranoia and mental illness, takes a drill and pushes it into his skull." tt0138704,DhhKbHpvGwk,Max gets some iodine to stain a slide as part of his research on mathematics in nature. tt0138704,7-C1cpG6TLc,"Max talks with Sol about numbers, patterns, order, and mathematics." tt0138704,ShdmErv5jvs,Max believes that the universe can be predicted in a pattern of numbers. tt0138704,SzfQ2Bwhkcc,Max ponders his thoughts on mathematics while at the beach. tt0138704,P9e_I-fkJ6c,"As Max's mental illness grows stronger, he finds a human brain in a New York subway station and pokes it." tt0138704,OGKPmBtBpBo,Sol lectures Max about the legend of Archimedes. tt0138704,3vi7043z6tI,Lenny shows Max about how numbers add up in the Torah. tt0432348,fuCEfNfuoiM,John reveals the situation that he has Eric Matthews' son involved in. tt0432348,cIRL7jMVh8Q,Kerry and Rigg discover that the team has been sent to the wrong location. tt0432348,bYVsnJR_f80,"Eric Matthews discovers that Amanda was working with Jigsaw all along, and that she now has him trapped." tt0432348,rm2NO3Nr3hA,"Addison attempts to reach a syringe of the antidote, but gets her hands stuck in a razor trap." tt0432348,K2vOPpJFstM,"Xavier threatens Amanda, and when she refuses to help him, he cuts his own number off from the back of his neck." tt0432348,94mvgpMi-rQ,"Obi crawls inside a furnace to retrieve vials of the antidote, but accidentally triggers a mechanism that turns the furnace on, and locks him inside." tt0432348,3CAQ0iZKP08,Xavier throws Amanda into a pit of needles in order to find a key to reach the antidote. tt0432348,DX5KZHeK3bw,"A group of people wake up in a unknown room, and receive a message that they are inhaling lethal nerve gas and must work together in order to survive." tt0432348,Nn6y3CUpIfA,"Michael discovers that he's trapped in a death mask, and the only way to survive is to reach the key implanted behind his eye." tt0114594,1DnnWl0Qkts,Guy is forced to make a fateful decision when he's confronted by the two opposing forces in his life: Dawn and Buddy. tt0114594,sW-ddNOh1hk,"Buddy reveals a more human side about him, which catches Guy off-guard." tt0114594,8WrFOPPepCk,"Buddy takes delight in torturing Guy after learning that Guy really, really, really needs to go to the bathroom." tt0114594,-I5e_GXU4Zo,Guy enjoys putting Buddy through the same physical pain that he would have to go through at work by slashing him with paper cuts. tt0114594,NDW6AQjK3Q0,"When Buddy learns about an unflattering article about him in Time Magazine, he orders Guy to destroy every last copy in town." tt0114594,_eruoEC4LsA,Guy tortures Buddy for all the pain he's caused during his employment. tt0114594,QtoKDVTZfSE,"When Guy confronts Buddy about his continued mistreatment, Buddy ups the ante with even more insults." tt0114594,_qit_nq-jUk,"Buddy gives his assistant, Guy, a lesson: there is no such word as 'unreachable' in Hollywood." tt0114594,nTBBQQRE0Z8,"After holding all of Buddy's phone calls, Guy gets the full force of rage from his angry boss for simply doing his job." tt0114594,L6IPj5zl9oQ,"Buddy teaches his new assistant, Guy about the difference between Equal and Sweet & Low." tt0114594,50j2eckQ1to,"Guy starts his first day at Keystone Pictures and sees Buddy in action as he insults, demeans, and ridicules his partners and subordinates." tt0283111,oXouSM2JOZk,Gwen spikes Richard's drink with Colon Blow before his big exam. tt0283111,8D2TivUo_zU,Taj Mahal Badalandabad experiences his first strip club in the company of Van Wilder and Hutch. tt0283111,t8yv6xn2HhQ,Van Wilder passes his exam and accidentally admits to fooling around with Professor McDoogle's daughter. tt0283111,ZWeqx9VP2zE,"After having a fight with Gwen, Richard decides to have sex with Jeannie." tt0283111,5GWj9H4JId0,Gordon and Richard provide underaged kids alcohol at their party in order to get Van Wilder arrested. tt0283111,H44ZLiOlN0A,Richard Bagg and his fraternity brothers eat pastries filled with dog semen. tt0283111,h4wnyCRRi0o,"Van Wilder, Taj Mahal Badalandabad, and Hutch make some ""special"" treats for Richard Bagg and his fraternity brothers." tt0283111,V5xN-xNvwsw,Richard Bagg has trouble pleasing Gwen Pearson in bed. tt0283111,TIvNRHR6GbU,"In order to get an extension on his school tuition, Van Wilder tries to seduce Ms. Haver." tt0283111,V0BHKgbef9E,Van Wilder and Hutch interview candidates for an assistant position. tt0283111,gZaagSRp8F4,Hutch attempts to light what he thinks is a bong. tt0283111,2B4dnGQc9wM,"Van Wilder and Hutch interview one last candidate for the assistant position, namely Taj Mahal Badalandabad." tt0283090,-vE1JNGKvxQ,The Waitress gets The Chief his money back from the bus stop. tt0189998,YgqgSaDCgC4,Schreck explains why Dracula is such a sad book. tt0283090,7lKWPxDej7s,The Hitman threatens The Drifter in the car while The Waitress stashes the bag. tt0283090,nDTVpRRoqcw,All of the surviving players discuss the whereabouts of the bag filled with cash. tt0283090,FE8xpnLMZlU,The Drifter and The Waitress discover what the bag contains. tt0283090,mAtSvxJe6Yw,The Hitman confronts The Cop about his missing bag. tt0283090,4Qrs43i_S50,The Cop threatens The Drifter until The Waitress comes to the rescue. tt0283090,6G7J6lZDW3E,"The Hitman, The Security Guard and The Cop have a standoff over the bag." tt0283090,JZtErr7VLKE,The Cop claims his bag from The Ticket Clerk. tt0283090,NG3ru8QGwl0,The Security Guard sees The Doctor for a bullet wound. tt0283090,XPUqjed6k4s,The Drifter waits for The Ticket Clerk to get distracted so he can steal a bag full of money. tt0283090,VYQoxBs5N2A,The Cop investigates a crash involving a drunk driver. tt0437800,aFqlaPLvkw8,Dylan and Akeelah spell their final words as they compete to be co-winners of the Scripps National Spelling Bee. tt0437800,4t94x0N3AoU,"In an effort to strengthen Dylan's relationship with his father, Akeelah purposefully misspells a word in the National Spelling Bee." tt0437800,uQ84SYJmHYI,"When Akeelah is stumped on a word in the National Spelling Bee, she uses her special trick to spell it correctly." tt0437800,mgSQQjO5pwI,Dr. Larabee inspires Akeelah to vocalize and pursue her dream. tt0437800,r_3r5f1W1Oo,Akeelah is unexpectedly tough competition for Dylan in Scrabble tournament. tt0437800,_UZxXUwQX84,Dr. Larabee teaches Akeelah the secret to spelling big words. tt0437800,WdDUhHl-BzM,"On her first day of tutoring, Akeelah has an argument with Dr. Larabee and storms out before the lesson begins." tt0437800,DwKBxabn4QY,Dr. Larabee inspires Akeelah to follow her passion and believe in herself. tt0870195,jyerVX4GpBs,"T.K. holds Henry at gunpoint, where he must choose between getting his revenge or letting Henry live." tt0870195,xHlaIIyiRSw,T.K. is put through a village ritual to determine his guilt or innocence. The penalty for being guilty is death. tt0437800,UCehCmHzBzw,"At the Crenshaw school spelling bee, Dr. Larabee discovers Akeelah's natural aptitude for spelling." tt0870195,C7_7Wco4SWY,"After her last day at work for the Moores, Sajani returns home to her husband, who harbors suspicious about her fealty to him." tt0870195,PmvZQglWfJM,Laura confronts Henry about his affair with Sajani. tt0870195,IinUDFR7Sr4,"On trial for the alleged murder of Sajani, T.K. is pressured into admitting guilt by the council, but he maintains his innocence." tt0870195,mTHQ0fQXf-0,Henry is faced with some tough decisions when confronted by Charles and Inspector Sampath. tt0870195,vXmHNYtFll8,T.K. and Henry release Sajani's to the river. tt0870195,7Ro8QybNKu8,"Henry and Sajani sneak off to the jungle together, but are soon discovered by two young boys." tt0870195,_v-_KbjVPxg,Henry tells Sajani that he does not love her in order to get her to leave the village and save her life. tt0870195,Il1j-dS5dBs,"After discovering that Sajani has been beaten by her husband, Henry and T.K. must determine how to handle the situation." tt0997143,rnlyf0wk0ic,"Sai begs Royce to free her soul, while elsewhere, Eric stabs the monster in the back." tt0997143,8c88JWPmDrA,Sai wakes up possessed by the monster and apologizes to Kerra before killing her. tt0997143,XGQpnngBL_g,Sai kills two vampires by telepathically choking them to save Royce. tt0997143,MUFqS9iKzHw,Sai asks Royce to photograph her while she is under the influence. tt0997143,GUyIWu59kig,"After taking drugs, Kerra has a horrifying hallucination of being stalked and raped." tt0997143,8osn-0mHqC8,"In a dream, Sai allows Royce inside of her -- in more ways than one." tt0997143,GlXLG_rF9lg,Eric inhales the drug and attacks Kerra during his hallucination. tt0997143,X-w-beB9r3M,"Under a drug infused hallucination, Sai gives in to her desires and allows herself to be seduced by Royce." tt0997143,wweMxbvl86Q,A monster stalks a beautiful victim in the forest. tt0997143,jfbbUufb7jM,Sai explains the meaning behind her painting to a mysterious buyer who's interested in her work. tt0450278,XtTVNCZEcAs,Paxton finds himself at the mercy of a chainsaw-wielding psychopath. tt0450278,qSmjZYAZQp0,"Paxton finds Josh, and discovers he won't be leaving anytime soon." tt0450278,vgZL3KUbu8I,"The Dutch Businessman explains his motivation to his victim, Josh, before severing his achilles tendon." tt0450278,shIHmOihazQ,Paxton and Josh search the creepy town for their missing friend Oli. tt0364385,UBMs3lfRim4,Izumi's displays some disturbing behavior in front of her classmates. tt0364385,h1KasQ7pdL4,"Hitomi rushes home after bizarre occurrences at her work, only to find out that the strange events have followed her to her apartment." tt0364385,tvRH4kLj-Dk,Hitomi receives a strange phone call and encounters a nasty surprise in the restroom. tt0364385,D8aAHxbYCCs,"After catching a glimpse of a strange reflection, Rika sees Kayako in the mirror." tt0364385,Af6v6H6gvcQ,Rika encounters a cursed family in the haunted house. tt0364385,MUeixjmY950,"Before setting fire to the haunted house, Toyama runs into his daughter Izumi, then ventures upstairs to find out what she and her friends had been doing." tt0364385,7-59dVoKmik,"Rika is startled by little Toshio, but true fear overtakes her when she tends to Ms. Sachie." tt0364385,UDqKtqsOwBs,"While watching a security video from the night Hitomi disappeared, Toyama sees something strange and unsettling." tt0364385,NELtiWqsHY8,"After dreaming about her deceased father, Izumi gets out of bed and looks out the window, only to find her three missing friends staring back at her." tt0364385,0oDBrYgawmI,"After coming home to find his wife incapacitated, Katsuya has a feeling that they are not alone." tt0263734,EP6Qb7rzBmA,"After losing their first match, the team encounters a strange obstacle in the road: an army of confused beavers." tt0263734,YYlvedJn5W0,Amy gives Cutter a piece of her mind when she thinks that he's trying to use her. tt0263734,AmACeERgRA4,"Cutter and his father, Gordon, reconcile at the cemetery." tt0263734,0VRTOfZePkM,"From beyond the grave, Donald introduces the members of his family and the curling team." tt0263734,R1ejcTtTPTY,Cutter prepares to make curling history with his triumphant last shot. tt0263734,edVZXNgaYbE,"After winning the Golden Broom, Stuckmore pays a vista to James to settle an old score." tt0263734,w-jFuEpRFOM,Cutter visits his father and asks him to coach the team. tt0263734,06yqAuIbuVw,The guys confront Cutter about why he left the town -- and the team -- all those years ago. tt0263734,jJ-o9HHw-_s,The guys have their first curling match against some old-timers. tt0263734,ZN9EtTazTl0,"When a burly drug dealer roughs up James Lennox, Cutter comes to his buddy's rescue." tt0263734,BNCwxQQcXv8,"As the family goes over Donald's will and testament, they learn about a peculiar last wish from the recently departed." tt0274812,uWalH3hnCyY,Lee and Peter have sex for the first time and it's rather awkward. tt0274812,POEUgs1Shqw,"As Lee becomes more involved with Mr. Grey, she starts to have more intense fantasies about her boss." tt0274812,Iqenc7PJze4,"Lee sits at Mr. Grey's desk, showing her dedication to him, as her friends and family try to convince her to move on." tt0274812,4Ufv8hcJZ_A,Lee skips out on her wedding and confesses her love for Mr. Grey. tt0274812,L5Yu-IGx0-4,Mr. Grey has Lee Holloway bend over his desk and read a letter out loud while he spanks her. Hard. tt0274812,wX2AeW_M-xc,Mr. Grey gets angry with Lee over of her continuous typing errors. tt0274812,ie7XVOuzf2U,Mr. Grey instructs Lee to be a grown woman and never cut herself again. tt0274812,QflHaPOXcA4,"Mr. Grey interviews Lee for the secretary position, but tries to convince her that the job is beyond boring." tt0831887,rypwboimK5k,The Spirit stands up to The Octopus. tt0831887,U0get4DzXqA,The Spirit runs across the city. tt0831887,jxIm__RPZuw,The Octopus and Silken Floss discover that they have the wrong box. tt0831887,WgFa1bVTQEs,The Spirit finds himself inside the lair of The Octopus. tt0831887,alziIIbUN9o,Sand Saref and The Spirit catch up. tt0831887,YnpV0k673Ug,Sand Saref warns Silken Floss. tt0831887,OPQbpZwpLtE,The Spirit learns that Sand is back. tt0831887,ITSOiqkDzrI,The Octopus and The Spirit battle each other. tt0831887,AIkEAcjhQOA,The Spirit escapes from Lorelei Rox. tt0831887,fGV1kmATl0E,"The Octopus, Silken Floss and the clones discuss the problems of having a criminal organizations." tt0337972,n1rhiQzW30k,"Will confronts his brother Tommy about killing Randall's son, and advises him to leave town." tt0337972,wJRb5MKvouw,"Will watches his mother pass away, and Tommy kills a man trying to help them." tt0337972,CrKUXT6JZ7M,"After a gang of outlaws breaks Randall out of jail, he comes looking for Nathan Cross." tt0337972,mXXucVAQdf4,"At the funeral of Nathan Cross, some interesting details come out about his true identity." tt0337972,RlPaVTRPVLI,Tommy comes to his brother's rescue. tt0337972,27gWbiG9w5A,"Tommy shoots his boss, Rodney." tt0470705,r8cegnOVDjo,"After pizza is mysteriously delivered to the motel room, Peter and Agnes prepare to kill the bugs inside them." tt0337972,fb8Xk2_yqps,Tommy gets revenge by shooting the son of the man who killed his father. tt0337972,2Q9h-B9OVVA,Will returns to Defiance for a final showdown. tt0470705,oR_XFDHk0Kk,Peter thinks Dr. Sweet is a government machine sent to take him back to the hospital. tt0470705,NQdNfhG-s8k,Dr. Sweet confides in Agnes that they are in fact being watched. tt0470705,TgOGj14T0M4,Peter is very set on the idea that there's an egg sac in his molar's filling. tt0470705,9hbBpOHXAkc,Agnes tells R.C. to leave after Peter has an episode. tt0470705,n-G24ROD5g0,"After an argument, Peter comes back to tell Agnes what happened to make him so paranoid." tt0470705,YShA_c8OUl4,Peter and Jerry share some strong words. tt0470705,6J3zkkpEkWg,"Agnes is paid a visit by her ex-husband Jerry Goss, and the subject quickly turns to their abducted child and threats of violence." tt0470705,NcYbRZdgLik,"Agnes is introduced to Peter, who thinks she's a very beautiful woman." tt0470705,jqdKv0Vz0sU,Agnes and Peter believe they've stumbled onto the origin of the bug. tt0814075,MG_o8Id_UCU,Monsignor Cain provides his testimony of what he recalls happened between Nancy Sloan and Oliver O'Grady. tt0814075,SEM1DDRM5r4,Bob Jyono breaks down while discussing his feelings of betrayal caused by his church. tt0814075,JOQoxkx9uS0,Adam talks about the abuse he received from Oliver O'Grady. tt0814075,aUIjcrHyvHU,Anne Jyono and her parents discuss the time when Oliver O'Grady stayed in their home. tt0814075,5nilVcDLNYs,"Attorney John Manly, Father Tom Doyle and theologian Patrick Wall discuss the basic tenets of catholicism." tt0814075,uvQFoM1fj0E,Nancy Sloan reads a letter of apology that was written by Oliver O'Grady. tt0814075,ZpDnHh_JmQE,A letter written by Oliver O'Grady infuriates the higher authorities of the church. tt0814075,1qamIJWkKi0,Oliver O'Grady discusses his abnormal attraction to children. tt0353489,PypxQNMzAHM,Brigitte realizes that Ghost has been less than honest with her. tt0353489,-9Cf6w28dc4,"Thinking that Tyler had abused Ghost, Brigitte lures him into a deadly trap." tt0353489,o3fUAorIxss,"Rapidly transforming herself, Brigitte must destroy the werewolf before it's too late." tt0353489,zCpJ5qcmPnY,Ghost and Alice check on the fate of Brigitte and the werewolf. tt0353489,OB4ppp4EAAw,Ghost watches as Brigitte succumbs to her werewolf instincts. tt0353489,k6v2NnHxYPk,"Ghost picks Brigitte's brain, much to her chagrin." tt0353489,AYfAyTEVnVI,Brigitte and Ghost try to escape the crematorium with a hungry werewolf on their heels. tt0353489,QXqBylUsyzM,Brigitte unwillingly makes a new friend in Ghost when she sticks up for her. tt0353489,Ke7vTfbeH0w,Brigitte explains to the group why her problems are unique. tt0353489,WRslUrt2NBg,"Brigitte injects herself with a deadly dose of monkshood to fight off the effects lycanthropy, while dealing with visions of Ginger, her dead sister." tt0353489,renIgi40w5s,Brigitte and Ghost tread carefully to avoid becoming a meal for the werewolf. tt0450278,1TeoyEPmuzA,"In this Director's Cut ending, the Dutch Businessman waits for his daughter by the restroom and comes to a horrible realization." tt0450278,NVB5kj4k6O4,"Paxton and Kana reach the train station, but merely surviving isn't everything." tt0450278,wQ6wc8oc_E8,Paxton performs an eye-popping rescue of a girl being tortured. tt0450278,_5qVrmBANTE,"Pretending to be a dead body, Paxton is wheeled into the butchering room." tt0450278,VAC6RfndhMQ,"Almost home free, Paxton is confronted by an eager American client." tt0450278,Akl5BAnhh_M,The thugs chasing Paxton discover what happens when you don't have gum on hand. tt0811138,7HHCL1eRdVo,Guru Pitka attempts to sneak into Jacques 'Le Coq' Grande's house in order to deliver an apology letter to Prudence. tt0115438,xwRlSxS2azA,Helga calls Becky a bad name leading to a violent cat fight. tt0115438,p_UeWtpIW08,Strayer gets one too many golf balls through his window. tt0115438,TXZ9nnOteV8,"Dosmo searches for a suit in Allan's wardrobe collection, while Allan admits to being an ""a-hole.""" tt0115438,mcWrZOrafnA,"Strayer and Taylor come across Becky, who just came from the scene of a murder." tt0115438,KGKqdRDo-N8,"A toupee-wearing, gun-toting Dosmo threatens Allan's dog until it is called off." tt0115438,OXcI5qu76jY,Dosmo holds Allan and Susan hostage while he makes some pasta. tt0115438,8FysZvGGiz8,Danny shoots Dosmo in a car and then proceeds to blow it up. tt0488508,IxWEtRxzzhI,The younger polar bear dies in the snow from starvation and brutal cold. tt0488508,a7K1xgoi_c4,"The ice melts faster due to global warming, making survival harder for the polar bear." tt0115438,v-OP9DnMN-w,"Allan finds himself with a kidney stone, and a flat tire at the same time." tt0488508,dwecZ5D3tFY,"The male polar bear refuses to share his food, but if the female polar does not eat, she will starve." tt0488508,OIXDhgqDYV0,The family of walruses camp out on a rocky island and scratch each other's backs. tt0488508,89c3RqTIxws,The sun brings many creatures warmth and life in the Arctic. tt0488508,fhO2QtGb8tY,The newborn polar bears snuggle with their mother. tt0488508,7SQWhD6OeRk,Female polar bears go for food that belongs to an aggressive male polar bear. tt0488508,ktGwZKWClZg,The Narwhals show off their long tusks. tt0488508,nic5WxX4BCo,A polar bear hunts for the new baby walrus. tt0109254,-YTLGLeKoJQ,Axel faces off against De Wald on a dinosaur themed ride. tt0488508,m4VP7c5UCdE,"After eating clams, the walruses have indigestion." tt0109254,2vjWxyJtUdo,Billy gives Axel the rundown on his new job. tt0109254,RfKKArjmRHI,"Axel causes a disturbance at an awards dinner for Ellis De Wald, a corrupt private security director." tt0109254,6u79wLUXGPQ,Axel outsmarts a group of De Wald's men inside a science fiction theme park ride. tt0109254,Cf3RfidFKBw,"Serge shows Axel and Billy his new, all-in-one killing machine — the Annihilator 2000." tt0109254,WF724QBowDo,Serge brings Axel and Billy up to date on his new business venture. tt0109254,ZhMpx9aeefY,Axel rescues two children from a malfunctioning theme park ride. tt0393162,fnH1ZtugoqU,Coach Carter and the crowd watch Richmond and St. Francis play the final seconds of the championship game. tt0109254,WEnGy2hTHgA,Axel cuts in line at a theme park ride to elude two security guards. tt0393162,J97F53CAA1I,Coach Carter refocuses his team after getting behind during the third quarter of the championship game. tt0393162,eSBnFu1YnrU,Coach Carter addresses his team in the locker room following the championship game. tt0109254,1JDAa0BvD68,Axel chases a group of criminals through the streets of Detroit. tt0393162,2FKPDOpKzDo,Coach Carter assures his group of high school players that he will do anything to help them get to college. tt0393162,2_fDhqRk_Ro,The team recommits to improving their grades while Timo eloquently expresses his thanks to Coach Carter. tt0393162,1g82D68N-ys,The team shoulders the remaining drills assigned by Coach Carter to Timo in order to help him earn back his spot on the roster. tt0393162,qUiptlAJcyQ,Coach Carter's Richmond High team overcomes a three point deficit with help from freshman Damien to get their first win of the season. tt0393162,JomrLxDiT5g,Coach Carter manages the final seconds of Richmond's road game against Bay Hill. tt0393162,V1wAemvxNaM,"Coach Carter presents his new team with conduct contracts at the start of practice, but Timo has other plans." tt0410097,1niI0J4kdI4,Djay talks to Nola about the difference between men and dogs. tt0410097,1pq96OQlUWs,Djay stands up to Skinny Black about turning his back on Memphis. tt0410097,_RsQsYJ_oWE,Nola gets Djay's song on the radio. tt0410097,7r_DI5X5ROs,Djay takes a stand when he finds out Skinny threw his demo tape in the toilet. tt0410097,_Cr0nP3k_p4,"Shug helps Djay, Shelby, and Key lay down a track." tt0410097,q-y6JBpCFtI,Djay has it out with Nola over what she wants out of life. tt0410097,Ye-GPGstKFc,Yevette entertains Nola and Lexus in the living room while Djay raps for Key in the kitchen. tt0410097,-TzrPYcpPvY,DJay and Nola are moved to tears while listening to a choir singer. tt0410097,q-StMfE8NrA,"Djay, Key, and Shelby start writing a song, and Nola and Shug get into it." tt0100740,T5d-R7FDG7s,Timmy escapes from Betty. tt0100740,EniROJmSS8U,"Carola transforms back into the gargoyle, and is forced to kill Preston for breaking his promise." tt0100740,1G9ED_K_IAQ,"A vicious gargoyle kills Jer, but spares Preston's life in exchange for a promise: that he'll never tell another what he saw." tt0100740,fvVBKWMTSRM,Bellingham summons the mummy versions of Lee and Susan to kill Andy. tt0100740,-SJAzpHg4s8,Drogan comes back to find that Halston is dead. tt0100740,KhfsAokR-D4,Halston discovers that he is no match for the cat. tt0100740,YMb-AODYc6g,Drogan explains how the cat murdered Carolyn and Amanda. tt0100740,yUd_E5dnVx0,Andy destroys the Mummy in an effort to get revenge against Bellingham for killing his sister and best friend. tt0100740,FRogQQGQn1g,Andy discovers that Susan has been attacked by the Mummy. tt0037536,KRhnyD4ZLkI,"Father O'Malley sings ""The Bells of St. Mary's"" with the nuns." tt0100740,wzYht_EEf0U,"The Mummy breaks into Lee's house, and brutally murders him with a clothes hanger." tt0037536,mSeeLOr1GKI,Father O'Malley tries to convince Sister Benedict to see education from a different point of view. tt0037536,re8jdVlrltA,Sister Benedict is overjoyed when Horace offers a special gift to her school. tt0037536,oxjeihyxCnY,"As Father O'Malley sings O Sanctissima, Horace begins to imagine what his office would look like as a classroom." tt0037536,9d4Zddhcqbc,Sister Benedict offers advice from the window as Eddie engages in his first fair fight. tt0037536,0AspXDFcGlw,Sister Mary Benedict teaches Eddie the basics of boxing. tt0037536,LN1WX6JkYaI,"Father O'Malley teaches Patty how to appreciate the little things in life, and how to be happy with who she is." tt0408839,CqXatBg5LtE,Eddie becomes concerned when Lila sings along to every song on their road trip. tt0037536,V4aBCK2UWpQ,"After Father O'Malley breaks up an argument between students, he and Sister Benedict discuss their views on fighting." tt0408839,cH8W_cTQQvw,Eddie tries to break up with Lila despite interruptions from Martin and a mariachi band. tt0408839,9mE6UqKoe5Y,"Eddie runs into Miranda again, failing to mention that he's married to Consuela." tt0408839,zHzbei3YeFs,"When Eddie attempts to broach the subject of divorce, Lila gives him a thoughtful present." tt0408839,vrCmp9js4YI,Eddie meets Uncle Tito and delivers an embarrassing present. tt0408839,FMcQ9qdYBUI,Lila ignores advice from Eddie and gets a nasty sunburn. tt0408839,vsBwRV2b3LY,Eddie is shocked when Lila introduces him to her overweight mom on their wedding day. tt0408839,eMFxQti1xHU,Eddie tries to stop a mugger on a bicycle who steals a purse from Lila. tt0408839,7fYY9Fk5vg0,Eddie is disappointed to find himself seated at the kids' table during his ex-girlfriend's wedding reception. tt0434139,_qJp9DwYgck,Michael stays outside Jenna's apartment in the hope of getting her to forgive him. tt0434139,FkDrbUQLuHY,Stephen talks to Michael about what to do with his mistakes. tt0434139,jbh5Q-eHULU,Jenna confronts Michael about cheating on her. tt0434139,fpLdP56W3do,Jenna is furious when she sees right through Chris' bad lying about Michael's whereabouts. tt0434139,BIPpar64F5o,Anna pays a visit to an old flame. tt0434139,mIJdrHpr3_Q,Anna tells Stephen about her affair. tt0434139,FHs_-lvHG4E,Michael discusses his life crisis with Kim. tt0434139,GeYJEkN4fao,Michael and Jenna announce their pregnancy to Stephen and Anna. tt0434139,qckVPZkmiNU,Izzy is upset that Kenny won't come with him to South America. tt0811138,qDTmyJdVAF0,"Guru Pitka, Jane, and the rest of the group perform a Bollywood rendition of the classic Steve Miller Band song." tt0811138,t5qkPMvpDfg,Darren must confront his mother in order to have a chance at winning the world cup. tt0811138,JU189rHBIIQ,Jane confesses to Guru Pitka that she's always had a schoolgirl crush on him. tt0811138,OgEr2VRg6n0,Darren explains to Guru Pitka why his relationship with his wife was so special. tt0811138,32XOkSNoXdE,"Guru Pitka and Rajneesh serenade Jane with their version of Extreme's ""More Than Words.""" tt0811138,Gmza139ypxw,"After Darren is insulted, Guru Pitka stands up for him and starts a bar fight." tt0811138,il4NFf0V_HQ,"After receiving some direction from Guru Pitka, Darren starts a fight on the ice." tt0811138,tYPUzX8KTXw,"The owners of the Toronto Maple Leafs, Jane Bullard and Coach Punch Cherkov visit Guru Pitka in order to convince him to help their team." tt0264323,8TIqqUbWUTI,"After taking a detour, Anderson, Nelson, and Cory arrive at a small town named Pleasant Valley, where they get a warm welcome from the townsfolk, and Mayor George W. Buckman." tt0384814,1OcqJdBrRpw,"Arturo Bandini strolls along the Long Beach Boardwalk contemplating the fragility of life, when the world begins to shake." tt0137338,1G3a0mUEz5I,Eric asks Monica for the real reason she dumped him. tt0137338,-Ml2V9Mos-4,Jack and Cindy discuss his problems with intimacy. tt0137338,d6Jy5tMv0GA,"Ellie rants about men to Disco Cabbie, who tries to pick her up." tt0137338,k7koR5o-fUM,"Kevin and Lucy decide to go all the way, until Ellie shows up." tt0264323,EinsfcAsUoQ,What lies beneath Mayor George W. Buckman's eye patch is revealed when he fights Anderson. tt0137338,Mlb3avSMD_Y,Lucy is upset with Kevin's response to her proposition. tt0264323,hol98WRZtz4,"As Pleasant Valley's guests wake up, and intend to be on their way, they are stopped by Mayor George W. Buckman who insists that they stay." tt0264323,0QTBwHx-Wuw,"Granny Boone leads Leah and the rest of the girls in the Jubilee hoedown, which ends up being a ritualistic sacrifice." tt0137338,5UnFOqWJ5SI,Monica promises Hillary first dibs on men as she waits for her guests to arrive. tt0264323,zS9ZrFqMchM,Mayor George W. Buckman shows Anderson and Joey what's going to be on the menu at the barbecue other than themselves. tt0264323,xw5Iyx5ejO0,Mayor George W. Buckman and Granny Boone capture Ricky when he tries to escape and ready him for dinner. tt0137338,6bRqnek7R6E,Disco Cabbie gives Kevin some tips on having a fun New Year's Eve. tt0137338,pxHoR9Cc6Rg,Stephanie warns Val about crossing onto Avenue B. tt0137338,cqlk4EfEDJQ,Disco Cabbie convinces Cindy to go out and enjoy life. tt0137338,UvMusa65chI,Kevin explains his disdain for New Year's Eve as Lucy eyes the bartender. tt0264323,MTJzGzdA3c8,"Harper Alexander teaches Pleasant Valley's guests about the traditional game of horseshoes, and Cory shows some unexpected skill." tt0264323,qcP3rt5etd8,"Harper Alexander shows Kat why countryfolk aren't as naive as she may think, in the ways of love." tt0264323,jFKbSAjlJY0,Anderson romances Joey while Mayor George W. Buckman discusses his sinister plans with his three sons. tt0264323,eP2aBRb6geI,Nelson and the Milk Maiden are getting it on when events turn deadly. tt0375173,J_uWB_m7ML8,"Alfie thinks about his behavior over the course of his life, and the women it has affected." tt0264323,qC7yIu-ZQZE,"Professor Ackerman lectures Anderson, Nelson and Cory about respecting history." tt0264323,s109ZEZXQJE,"Anderson, Nelson and Cory head down south to Daytona, Florida for spring break when they run into an unexpected hitchhiker, Justin." tt0312329,u7tSASIBz4Y,Jackie receives an unexpected reception when she goes to see Luther after the championship fight. tt0375173,DfNfg963uEA,Alfie makes a connection with an older man named Joe in the hospital bathroom. tt0312329,-HTF_tAUtkQ,Jackie enters the ring to give Luther some last minute advice during the championship fight. tt0375173,m7_LwdyNsIQ,"When Alfie asks Liz why she is seeing someone else, he receives an answer for which he's not ready." tt0375173,4oY9E3_6jlY,Alfie visits a doctor about his performance problems. tt0375173,rBZQHST6BQQ,Alfie and Lonette share a romantic evening...the only problem is that she's his best friend's girlfriend. tt0375173,eLFf1LzuM1Q,Alfie runs into Julie and learns that he might be a little to late for an apology. tt0101301,5jAVjQh9S8A,Ethan explains what he did to try to get his parents back together again. tt0375173,1fscFQfphvE,Alfie finds that Nikki won't fall for any of his dumping tricks. tt0375173,zQydroqGFbA,Alfie introduces us to his start-of-the-day rituals. tt0101301,UYOH5SCstlI,Hallie tells Ethan that their parents are spending Christmas Eve together. tt0101301,UEndkOUG9M4,"Catherine decides to stay the night, and spend Christmas Eve with her ex-husband Michael." tt0101301,PTG0z3VWa8g,Ethan shares his plan to get his parents back together with Stephanie. tt0101301,AKpSGtlsBws,"Ethan reminds Hallie that she can't ask Santa Claus to make their parents get back together for Christmas, but she does it anyway." tt0101301,TuQLFcJ8Eyw,Stepanie and Ethan stay up together on Christmas Eve. tt0101301,IlLYqvnCs0o,Ethan scolds Allie for going to visit Santa Claus alone. tt0101301,IXgeL39PXAE,Hallie tells Ethan what she's going to ask Santa Claus to bring her for Christmas. tt0101301,DvTSWj2tgnI,Catherine tells Michael that she's getting remarried. tt0080365,vNrNofWBcas,Michelle provides Julian with an alibi in order to get him out of jail. tt0080365,sWs843kQxaM,Julian spends the morning with Michelle after their night together. tt0080365,Ya4RBKamUqU,Julian discovers that Leon is the one responsible for framing him. tt0080365,dRwiGgbaM84,Leon warns Julian that he's becoming overconfident in his profession. tt0080365,np_HgtPXDXE,Julian confesses his love to Michelle after she tells him that she has to leave town for a couple of months. tt0080365,gec4_X9J2K0,Julian frantically searches his apartment when he realizes that evidence might be planted somewhere inside. tt0080365,eoSPKSIxeek,Julian asks for Anne's help when he realizes that he's being framed for murder. tt0486259,Y55tkTIy5sc,Colin makes a 3 pointer to win a very important basketball game! tt0080365,3Vimb_RuN7c,"Michelle insinuates that Julian is a gigolo, but he denies it." tt0486259,aDUZ8IC6wco,Megan Krizmanich is caught vandalizing a classmate's home. tt0486259,q15Yv0rZXqs,Jake Tusing visits his older brother and gets drunk for the first time. tt0486259,WASIZITWvZs,Hannah Bailey struggles with her fear of going back to school. tt0486259,CGzMqCfxpPs,"After a topless photo goes viral, Megan Krizmanich and her friends leave mean phone messages for the victim." tt0486259,wYMfDxQdnUc,Megan Krizmanich and her friends play spin the bottle. tt0486259,sdNPmpfgOMw,"Megan Krizmanich, the popular girl, is introduced." tt0486259,inAlpz8a0aU,"When Geoff Haase receives a topless picture from a friend, it quickly goes viral." tt0221799,msKXGrgvzP0,Suzanne returns home with a new perception of Margit. tt0221799,iGU6Zqxfw5s,Suzanne takes desperate measures when Margit locks her in her own room. tt0486259,wXYRFo4rrrw,Hannah Bailey talks about what her future plans and aspirations are. tt0221799,hQDDQV-oCsE,Suzanne's bad behavior creates a rift in the entire family. tt0221799,SSgDunmuSAA,Suzanne gets scared when she goes exploring and can't find her way home. tt0221799,OnYQyspzLEc,Helen tells Suzanne why Margit has bad feelings about Budapest. tt0221799,6Bk2AsTcdbE,Peter tries to explain to Suzanne the reasons why she was left behind. tt0221799,JSHPdnYixNo,Margit is distraught when she receives a letter saying that her baby has been left behind for good. tt0221799,P578OPOe02E,The family enjoys their first dinner together after being reunited. tt0384814,8VI6vvaZxbE,"Camilla surprises Arturo Bandini at his home, and before making it to the bed they debate race, social status, ex-boyfriends and marriage." tt0384814,QNv1frrhj4s,Arturo Bandini works away while Camilla begs him to come to bed. tt0221799,xfxhI_l9UYQ,Margit and Peter must leave their baby daughter behind as they flee Hungary. tt0384814,X3aJZU6rInc,"Arturo Bandini re-writes his night of love and lust with Camilla, when Hellfrick abruptly interrupts his mood." tt0384814,Ut_lRQbeQcU,"Arturo Bandini and Camilla work to impress each other, but miscommunicate their intentions." tt0384814,9aaVOicCVcY,"After spending his last nickel, Arturo Bandini gives a waitress, Camilla, a hard time when she serves him a bad cup of coffee." tt0384814,cETZjbXsUog,Arturo Bandini and Camilla have an argument in the street that leaves Arturo with a heavy proposal to ponder. tt0384814,2baUXj3vrEs,Arturo Bandini writes about the diverse people of Los Angeles. tt0491747,36WAEsNsfng,Grant Anderson talks to Fiona for the last time. tt0384814,AHudLuix7As,"Arturo Bandini prays for the right idea to write about. And in thinking about his financial woes, decides to steal from the milkman." tt0491747,2hWZyDGHNxI,"Kristy, a nurse at the nursing home, questions Grant Anderson on his assumptions about marriage and aging." tt0491747,CrMlZldzxSg,Grant Anderson tries to convince Marian to send her husband back to Meadowlake. tt0491747,x3SUKG6l6FQ,Fiona Anderson makes a visit to her old house on a day trip from the nursing home tt0491747,EdxnFXQId-0,"When Grant Anderson kisses his wife Fiona Anderson during a visit, he creates trouble at Meadowlake." tt0491747,AqKpGR4EocU,Grant Anderson tries to get Fiona Anderson to remember that he's her husband. tt0491747,TfWrCqaIAtE,Dr. Fischer tells Grant Anderson that he needs to move his wife to the second floor. tt0491747,TbdjQ6LLFsU,Fiona Anderson battles symptoms of oncoming Alzheimer's at a dinner party. tt0491747,TJj7YqhNxiw,Grant Anderson explains to Monica why he's not sitting with his wife Fiona Anderson. tt0491747,HLIVYHitYPw,Fiona Anderson reminisces about the infidelities of her husband Grant Anderson. tt0491747,Is9bN_cdTMo,Grant Anderson and Fiona Anderson say goodbye to each other. tt0414853,8fIL99qy9HU,All the animals on the farm dance in a giant party. tt0103759,FWx6IsqPUKk,"The Lieutenant abuses his power when he pulls over two Jersey girls for a routine traffic violation, and forces them into a humiliating sexual situation." tt0103759,cQA8oY5pwJQ,The Lieutenant has an emotional breakdown in a church and hallucinates seeing Jesus Christ. tt0103759,ycKGXmtM6hk,The Lieutenant goes for a ride with the two thugs who raped a nun. tt0103759,0aMQUngLy1Y,The Lieutenant offers the nun his own brand of justice for the men who raped her. tt0103759,BiO01_Fe6To,The Lieutenant settles an altercation at a local convenience store. tt0103759,ukvZvl0GElQ,The Lieutenant visits his friend Zoe to indulge his taste for some fine brown stuff. tt0103759,FmiBHWtxHLA,The Lieutenant attempts to steal a kilo of cocaine from a crime scene. tt0103759,JQRV5_auS_Q,The Lieutenant shoots out the car stereo after losing his bet on a baseball game. tt0414853,hSUo-HJ01kY,"Otis the Cow steals a car and goes joyriding, but the police chase after him." tt0103759,Wo2ZCh7vc2E,The Lieutenant approaches a local dealer for some drugs. tt0414853,2sY8MYUTfiQ,"Daisy the Cow gives birth to a son and names him Ben, after the farm's deceased leader." tt0414853,LQFM8e6gQRg,Snotty Boy gets what he deserves when the cows decide to push back. tt0414853,76ftznPZmgk,Otis the Cow brings his friends from the farm to get revenge on Dag the Coyote. tt0414853,3J2Hm85PD2E,Otis the Cow takes the gang surfing on the farmland. tt0414853,ue0MJQmrIlg,"Otis the Cow needs to fool the farmer into thinking he was napping, because otherwise the farmer might realize his animals can talk." tt0414853,-Nr56-RD_g8,Otis the Cow gets an interrupting and embarrassing phone call during a farm animal meeting. tt0292963,LrSA5tw_KSc,Andy and Hank rob Andy's drug dealer as their lives continue to spin out of control. tt0414853,C2db3UusdPc,"Ben the Cow scares off the coyotes who want to eat the hens, but the fight costs him his life." tt0414853,90rIOemL6Xg,Otis the Cow pretends to be human while paying for pizza. tt0292963,7kTGVJ5OKDA,Hank and Bobby prepare for the jewelry heist. tt0292963,ziF1CU69IEA,Dex confronts Hank about his recently deceased brother-in-law and makes him an offer he can't refuse. tt0292963,39gtT7pdMwE,Gina tells Andy that she's been having an affair with his brother. tt0292963,V_i1yhjzdgI,Charles and Andy apologize for disappointing each other. tt0292963,qwsrKRo5gdA,Andy spends some leisure time shooting up H and hanging out with his manstress. tt0292963,88fxqiFGNXY,Andy and Gina discuss moving to Brazil. tt0292963,m5aE6rnmIwg,Nanette gets the drop on Bobby when he tries to rob her jewelry store. tt0292963,aZtlkGEwfSA,"After agreeing to assist in a robbery for his brother Andy, Hank finds out the target is their parents' jewelry store." tt0292963,4a55PnIKoz0,"After their attempted robbery inadvertently gets their own mother killed, Andy and Hank go over the details." tt0482463,MlhH_sjxXaA,Jose and Bella spend quality time at the beach. tt0292963,O4di7-6b7eY,Andy lets his brother Hank in on his burglary plot. tt0482463,EG_6BpNd0Vw,Jose asks Nina if she has considered giving her baby up for adoption. tt0482463,uECrYxTF-pU,"When Nina confesses that she's pregnant, Jose offers her some support." tt0482463,2OOUlE9F190,Jose tells the story of his terrible accident. tt0482463,ZGF2551BMIc,Nina explains her sad family situation to Jose. tt0246772,DDfuaxazcc4,Mario tricks Martha into trying his cooking. tt0246772,V2E341Ilexw,Martha and Mario work together in the kitchen. tt0482463,D93lQnQlJcg,Jose argues with Manny about his management style. tt0482463,w7VbNRVbRQY,Nina explains why she wants an abortion. tt0246772,-BOt25-zf8Q,Mario uses his subtle charm to convince Lina to eat for the first time in weeks. tt0482463,meDRW5WV1R8,Nina is fired after she's late to work for the second day in a row. tt0246772,TsBMOksruxA,"After a meeting with the principal, Martha and Lina get into an argument." tt0246772,ZqTzBhLdJO4,"After an argument, Martha and Lina have a heart-to-heart talk." tt0246772,DZ2_coKUWcc,Lina asks for Mario to come and cook with her at Martha's. tt0246772,AdJe8nZ8crs,Mario tests Maria's palate in a surprising and romantic way. tt0246772,3CR_U8066OY,"When a customer sends his steak back twice, Martha decides to give him exactly what he requested." tt0294357,wMZ5UJRpxfk,"Sarah saves a young boy from being eaten by a vulture, and rescues his injured mother as well." tt0294357,JvFNTD3NhH8,Sarah tries to rescue Nick from the Russians. tt0294357,LbMpSo9yvZo,"When a baby pulls the pin on a grenade, Elliott gets shot by a rebel." tt0294357,8uHpWrtDfAU,Colonel Gao stops Nick and Sarah in order to search their medical cargo for any weapons. tt0294357,8RRzvri051s,"As the new spokesperson for UNHCR, Sarah gives a short speech at their annual conference." tt0294357,02064E1SHtQ,"Nick tries to get through to the rich folks at the charity ball about helping refugees, but they only mock him." tt0294357,dMJolQgBp38,"Nick begs Sarah to run ahead for help, but she runs onto a land mine on her way to the camp." tt0109305,pYXkfLVbLIQ,Coach Pete Bell faces off against Coach Bobby Knight in a basketball game pitting Western vs. Indiana. tt0109305,ptgpK6nH-5g,"In the final seconds, Neon scores the winning basket for Western and Coach Pete Bell." tt0109305,wAE0vlaKvkM,Neon scores a 960 on his SAT's and attends his first class in college. tt0294357,v4Zjie4qH04,Sarah confronts Nick about his callous disregard for his patient's comfort. tt0109305,KUnaFhIJ17Q,Jenny Bell tutors Neon to prepare for the SAT's. tt0109305,iNxUsONmig8,Coach Pete Bell gives the team a pep talk before the big game. tt0109305,Jv_AlRfm998,Coach Pete Bell meets his friend Slick who tips the coach off on a raw talent by the name of Neon. tt0109305,ghn35eUPiIc,"Coach Pete Bell asks his ex-wife, Jenny Bell, if she would tutor Neon." tt0109305,5oAIVuFPUdQ,Coach Pete Bell punts the basketball and gets ejected from the game. tt0229260,zTX_mBbobME,Sheriff Cravens has Jeffrey and the others tune in to the local news just in time to see a report on the murder of the rival Blair Witch tour group. tt0103873,WA-A3QhXx30,"Zombies crash the party, tearing off limbs of the guests." tt0229260,-5RW2xQ9pNs,"When Kim grabs beer at the local convenience store, she's frustrated by the town's surly residents." tt0109305,weTmdGoN_SQ,Coach Pete Bell attempts to motivate his team by way of verbal abuse. tt0229260,vILYE9lG3Aw,Erica and Stephen have a strange encounter that quickly turns nightmarish. tt0229260,4gbvjHb0ZUA,"Jeffrey's van is destroyed, Stephen has marks on his body, Tristen has nightmares, and strangest of all, Erica is missing." tt0229260,d5lyojjyMl0,"Kim returns from her beer run to find Jeffrey at work on the tapes, but things are more sinister than they seem." tt0229260,kEKqDuIl8Wo,"Tristen, either insane from the stress of the weekend or possessed by the spirit of the Blair Witch, taunts the group and challenges Stephen to kill her." tt0229260,dkB5SsVVlOI,"Jeffrey, Kim, and the rest of the tour group wake to find their camp and belongings completely destroyed, with no memories of the night before." tt0229260,DZpfEy3OsrI,"When Jeffrey asks Kim why she bothered to come along if she doesn't believe in the Blair Witch, she gives him an excellent answer." tt0229260,V9aRvKzTOc4,"After reporters converge on the compound to cover what now appears to be a weekend of crazed ritual murder, Jeffrey gets interrogated by Sheriff Cravens." tt0103859,Viai9bgo5KM,"At a dinner party thrown by Marcus, Mr. Jackson muses on subjects from his mushroom suit, to being pussy-whipped." tt0229260,7rDK27McgEg,"The residents of Burkittsville, Maryland, share their experiences with tourism and myth in the wake of the popularity of the movie The Blair Witch Project." tt0103859,UD_gJShgozE,Marcus allows himself to be seduced by Lady Eloise because he thinks it will help him get ahead in business. tt0103859,O7VH8LKDnr0,Marcus experiences the wrath of Strangé when he rejects her sexual proposition. tt0103859,iMzGaN5Sg3w,The meeting about Strangé's new perfume takes an interesting turn when she demonstrates what she thinks the perfume should smell like. tt0103859,NP7_SIRfo-c,"Marcus puts on an act of vulnerability to get Christie into bed, and is later horrified to discover that she has ""hammertime feet.""" tt0103859,qYgpnWoRbXg,An offensive perfume ad starring Strangé goes horribly wrong when it is premiered in front of the executive board. tt0229260,sdfDF8OuPPc,"Erica tries to commune with spirits in the forest, and lectures Tristen on the morality of punishing witches." tt0229260,u1_fdJ0f2iQ,"Jeffrey, Stephen, Erica, Tristen, and Kim discuss what has brought them together: the Blair Witch." tt0103859,HmGeJVIfb1U,"Marcus, Gerard, and Tyler face racism from the boutique clerk." tt0103873,CaCW78inauI,Lionel finally stands up to his mum. tt0103859,v4kXrblmBE8,"Marcus gets bent out of shape when he doesn't have the upper hand in his relationship with Jacqueline, but she makes it up to him." tt0103859,IZGhNReGZTs,"Marcus tries to lay the moves on Jacqueline, only to receive the ""no business with pleasure"" speech." tt0103873,_fap4qRqTlk,Lionel's mum dies and then comes back to life. tt0103873,rC6WAAlNHt4,Lionel is saved from a group of thugs and zombies by Father McGruder. tt0103873,_ASByCtlV_o,A baby tears open a woman's face while Lionel fights off the last of the dead alive. tt0103873,ebNbXsFdz9w,Lionel finds a dead alive baby and takes it to the park. tt0103873,O_GMXI7Pp6c,A group of zoo officials capture a dangerous monkey from a tribe. tt0103873,_frVHCLECNQ,Mum is bitten by a rat monkey at the zoo. tt0103873,8wDlH8jWxYk,Lionel helps his mother with her infected arm and her peeling face. tt0163988,XnJvHpxr1Lw,Frank holds onto Cy while the police cut him down. tt0163988,dcO8blFBl8g,"On a full moon Saturday night, a delirious Frank and a crazed Tom hit the New York City streets in a maddening frenzy." tt0163988,lQCPntZhPPk,Frank and Tom harass a homeless man who quite unsuccessfully tried to commit suicide. tt0163988,SfQk_TF9KJ8,Marcus accidentally crashes the ambulance in a fit of manic joy. tt0163988,CXJ8c0rWJsk,"As Frank brings back to life a drug addict, Marcus seizes an opportunity to instill some faith through some evangelical preaching." tt0163988,sBpNA3HWj6Y,The Dispatcher sends Frank and Larry to help the local drunk -- Mr. O. tt0838283,-NeY5tqk1N8,"After having one too many drinks during Sam's funeral, Hank condescends and insults Tommy." tt0163988,JrlQ3NAcPf0,"Frank and Marcus help Maria,who, despite delivering twins, claims she is not pregnant." tt0163988,_h2BB1vo27s,Frank and Larry arrive at their first call of the night -- an elderly man suffering through a cardiac arrest. tt0163988,x1brwiNhp6Q,"When Frank shows up to his shift late, the Captain once again goes back on his promise to fire him, and as always, promises Frank he'll fire him next time." tt0838283,Yo3qKhfO_V4,"When Sam's guilt becomes too heavy to bear, he lashes out at Grace and destroys the kitchen." tt0838283,FYh2_trJNiA,"Grace tells Sam that she kissed his brother, but Sam has trouble believing that is all that happened." tt0838283,K_jwfCn9X6E,Tommy gets upset after his father advises him to be more like his brother Sam. tt0838283,c1nmARXTuvE,"When Grace tells Tommy that his brother is dead, Tommy does not take the news too well." tt0838283,029Mdp9jYiY,"Grace and Tommy reminisce about their relationship in high school, and Tommy takes the opportunity to make a move on Grace." tt0838283,oN2S394WfuU,"When the cops arrive at Sam's house, he becomes manic and begs them to shoot him." tt0838283,c3nJu9SBkis,"During a tense family dinner, Sam explodes at his daughter, Isabelle, and she retaliates with some very hurtful comments." tt0838283,KVy9rgFD5js,"Sam is given a choice by his captors -- kill his fellow soldier, or be killed himself." tt0838283,RnTG-5XU49o,Sam asks Tommy if he slept with Grace while he was fighting in Afghanistan. tt0179116,CMcqNCzUlGw,Rock is embarrassed as his mother conducts the final test in sexual simulation. tt0179116,y-4yAOPVjZA,Megan interrupts the True Directions graduation ceremony to declare her love for Graham. tt0179116,IBN5GruNnME,"The group goes through a final test to prove their heterosexuality, and everyone passes except for Andre." tt0179116,5k5l5PQJFrE,Megan and Graham get intimate and Megan compares the experience to cheerleading. tt0179116,JoNeXThhiqs,"After cheerleading practice, Megan makes out with Jared but has other things on her mind." tt0179116,oFEEoG2s_04,Graham is humiliated when the students have a family therapy session. tt0179116,ghaZWnGSgMI,The students at True Direction take a gender identity course. tt0179116,WQyUUpQzdto,The boys get distracted by Rock during their football game. tt0303816,HxyKbR3GmsY,"Thinking he's avoided the contagion, Jeff is on top of the world after coming out of the wilderness, and finding the bloody remains of his friends strewn about the cabin." tt0179116,nINkPmHZfRc,Megan meets everyone at True Directions but denies that she belongs there. tt0179116,8NFxckpb-CY,"During a group therapy session, Jan tells the group that she's never been a homosexual." tt0179116,F6AdQghTUis,Mary Brown encourages the students of True Directions to share what they think is the root of their homosexuality. tt0303816,9AyPzu3JmSE,Paul and Bert spring a bloody trap for the redneck assassins headed their way. tt0303816,smtDfh1TXe8,Paul finds a corpse in the reservoir and gets a little too curious. tt0179116,qBGFAnbZS_M,Megan is confronted by her family about her sexuality. tt0303816,FK2rc4NbKco,"Dennis mistakes Bert for some pancakes, and takes a bite." tt0303816,qrCkASenz7I,"Around the campfire, Paul tells a scary story about a deranged bowling alley employee." tt0303816,jCatADs_uW8,"The infected hermit shot by Bert shows up at the gang's cabin, and the tension heats up." tt0303816,Cjg8Hj75FPQ,The gang gets to know some of the local color including Old Man Cadwell at the country store. tt0303816,5d0GYRAD_aI,Paul arrives back at the cabin after a vicious dog has its fill of Karen and Marcy. tt0303816,MJJ8AJUn-p4,"Paul rounds third base in bed with Karen, only to find something bloody just to the left of home plate." tt0303816,BxFaosg1mV4,"Bert stumbles upon an infected Henry, and accidently shoots him." tt0303816,mFj1lf3ECK8,"While getting supplies at the local market, Dennis bites Paul on the hand." tt0961722,B3oSlrpSf8k,"As John spills his guts to Cassie, the moment is interrupted when a mysterious -- and armed -- government agency orders them back inside the school." tt0961722,LnDG46BruE4,"Rick tries to score easy with Frederica, but gets grossed out when his lover starts to fall apart." tt0961722,PUo-B7AEAWY,"After finally escaping the school, Cassie is rescued by Winston moments before agents from the CDC capture her." tt0961722,moJvW1-7_Cw,Winston and Toby learn that there's something nefarious in the water. tt0961722,HnqkmLTgv78,John amputates his arm while Cassie's boyfriend looks for revenge. tt0961722,rlX19RmlimM,Cassie and John try to convince Principal Sinclair that the school is under attack. tt0961722,UC2zyr54O2w,Find out the fate of Paul from the original Cabin Fever. tt0961722,UgjmE8BWps8,Winston convinces a bus driver that he only hit a moose. tt0961722,I-xbToSaaPU,Johnny Janitor finds that spiking the punch has its difficulties. tt0961722,axqYHL-KPRk,Sandy doesn't want a couple of blood-vomiting students to ruin her finest hour. tt0375912,EYKwSLZPwV4,"Pippa hits it off with sexy photographer, Hemingway." tt0961722,RxjCZxfPA3U,John and Cassie run into Ms. Hawker while hiding from the CDC. tt0375912,egC34ixXtos,Pippa and Lulu bond over their singleness at their friend's wedding. tt0375912,YYc1h1Pymto,"Ian seeks out Pippa at the lake, arriving with the bed they once looked at in a vintage shop." tt0961722,DTJii7bLit0,"Winston witnesses a diner customer choke to death but before he can do anything, the victim starts to squirt blood. Everywhere." tt0375912,_AA7Q5bWirM,"Pippa begins her speech on an earnest note, but fakes her way through the rest in order to win over the crowd." tt0375912,MiyfHiRy_tI,Pippa pays Hemingway a late night visit. tt0375912,oHpI2u95uUk,Ian comes clean to Pippa about his hopes of getting to know her on an intimate level. tt0375912,mLcwaMW919Q,"Pippa invites her friends to stand in as a focus group to hear their input on marriage for the magazine, Wedding Bells." tt0375912,JbRDwutWOng,"After Ian tells Pippa how he feels about her, she lets him in and they make love, but the next morning she reverts back to her non-commital ways." tt0375912,G-_QYRggMwM,Ian befriends Pippa while she is drunkenly searching for her bra. tt0375912,FdvsQb7f7uM,Pippa and Ian go out one night on a business trip and get to know each other better with a game of truth or dare. tt0375912,5tpVvZo9hus,"Ian tries to get to know Pippa better when they're both working late at the office, but she shuts him out." tt0157472,dL2_nbhJaTs,Zak puts his explosive plan into action. tt0375912,OPmVkpUsbz4,"Pippa tries shaking things up at her first meeting as editor for Wedding Bells, but Ian and the rest of the employees don't share her progressive views." tt0157472,4pmBvrehyTk,The gang heads to the science expo to steal some supplies they need to fix the watch. tt0157472,2AHC98YRBKA,Zak takes a risk and goes to hypertime while he's in hypertime. tt0157472,o1JgvBy3_cA,Zak grabs a bike and tries to outrun the QT security. tt0157472,c9vl9Rurcc8,Zak and Francesca are swept up by a garbage truck. tt0157472,T60vdoUUk_E,Zak meets Dr. Dopler and tries to escape with him in a car. tt0157472,FmG9SZNVpmk,Zak and Francesca use hypertime to help Meeker lay down some funky beats. tt1121931,1uIPM6h1gDg,A battle of epic proportions ensues after Chelios finally catches up with Johnny Vang. tt0157472,1cFyFvO56Sw,Zak and Francesca discover what hypertime does. tt0157472,GwkD7itIsCM,Zak has his first encounter with hypertime. tt1121931,tqjyFalTkw0,"After surviving the ultimate charge, a flaming hot Chelios defeats El Huron and longs to be reunited with Eve." tt1121931,Wwoxu41UkNw,Chelios' mischievous childhood is revealed in a segment from a daytime talk show. tt1121931,gU8Ksz47C54,A doctor's fear of Chelios comes full circle when a stray bullet interrupts his therapy session. tt1121931,bVZ_-0df7XE,Chelios pulls a bloody escape from Don Kim's men after the mob boss reveals that he's turning him in for a reward. tt1121931,VyS-apNPxUI,Chelios tries to charge his slowing artificial heart by creating static electricity with people at a racetrack. tt1121931,ys3a4yA-5Eg,Chelios attempts to chase down Johnny Vang on foot after he speeds away with his recently removed heart in a cooler. tt1121931,5GL9pbYS_D8,Chelios gets a quick charge from an electric dog collar while on the run from the cops. tt1121931,kBJD6iSkqxw,Chelios uses a shotgun to pump information out of a Triad gangster. tt1121931,VGQWULimSCg,Chelios beats down a group of baton-wielding cops after getting a power boost from a police taser. tt1121931,0GH64kmHZvs,Mia takes a liking to Chelios after he clears out a group of Chinese gangsters. tt1121931,yPbgAbAimoA,Chelios gets supercharged after he hooks himself up to a car battery with jumper cables. tt1153706,huE8fA3Ln18,Thomas and Megan get in a debate during Mr. Moody's acting class. tt1153706,QQ6SadUAXWQ,Thomas reveals his true identity to Megan. tt1153706,I54GtHWXwpc,The Uncle Toms pull out all the stops when they finally get to battle the 409 crew. tt1153706,pv7Y9z9ZvR8,Thomas gives Megan her first hip hop dancing lesson. tt1153706,k3rxddIltIA,Thomas' crew faces off with the 409 crew during their first dance battle. tt1153706,VtVq2S8qp1k,"Megan tries to tell Thomas that she wants to break up, but he doesn't agree." tt1153706,CmCNWoo1TD4,Ms. Cameltoé belittles the students in her ballet class. tt1153706,M9MvIL2FDaM,"While Thomas is teaching Megan how to dance at the club, the 409 crew shows up and challenges him to a rematch street battle." tt0433362,Ks2IFhAqBSE,Elvis and Audrey Bennett attempt to transform Edward back into a human. tt0433362,BMVmbqSR668,Frankie sacrifices himself to save Edward and Audrey. tt0433362,JxZHAMfuwsA,Frankie Dalton is ordered to drag subsiders into the sun. tt0433362,2RXSVTFM3hQ,"Edward tricks Bromley into drinking his blood, bringing Bromley back to life." tt1153706,04RW0CPquaE,D's signature dance move proves to be fatal. tt0433362,NCm1lI1L4LQ,Elvis tells his tale of turning from vampire to human. tt0433362,ANZUU_ev5HU,Subway commuters go mad with blood lust and attack a coffee shop. tt0433362,lfXtePMdNMk,Jarvis and Alison get attacked on the road to the hideout. tt0433362,SELIbxPbbh0,Edward gets in a wreck with a car full of humans. tt0433362,ZDYLUH3BImk,Edward and his new allies attempt to escape the soldiers pursuing them. tt0433362,aVCOzbRPapo,Edward tests his first batch of synthetic blood on a vampire. tt0433362,GCOXBnHRdmc,Edward and Frankie are attacked in Edward's house by a vampire deprived of blood. tt0817538,vz2RAznAy9Q,"Wade, and Emmit interview Drillbit Taylor to be their bodyguard." tt0116493,t1x6i73klIs,Harriet meets with a child psychologist because she is having emotional issues at school. tt0276919,Jxk0QX01quo,Grace decides that killing Tom requires a personal touch. tt0276919,nYoAZo7L2w4,"Bill, with the town's help, constructs a feat of engineering to make Grace stay in Dogville." tt0276919,ZryPGAMBuF4,Grace is exploited by the dehumanized township of Dogville. tt0276919,NUAs-J9HatA,"After confronting Grace about sleeping with her husband, Vera challenges her to a test of stoicism." tt0276919,CApovMdNxw8,"As the villagers demand more and more of Grace, she starts giving less and less." tt0276919,Ud5-cq0a1sU,"Grace decides the fate of Dogville after talking with her omnipresent father, The Big Man." tt0276919,wlhtHcN0wo8,Jason demands punishment from Grace. tt0150377,72R97Mzaey4,Libby and Matty reunite. tt0276919,JhGjwr3rLtc,Grace and Tom convince Ma Ginger to let Grace help around the store. tt0817538,MDdgxMEIYFI,"Drillbit stands up for the guys, and fights Filkins." tt0276919,aJl8UJ7-JiI,Grace shares her initial opinion of the town with Tom. tt0109676,5WaI5NdGVw4,Pete comes face to face with Ty Moncrief as he attempts to con the D.E.A. tt0150377,uDr8qT3BlHM,"Libby gets some internet help from a fellow looking to ""get some"" from her... until he finds out she's a convicted felon." tt0276919,23x_B3MpUH4,"Tom Edison meets Grace, an unexpected visitor to Dogville." tt0150377,rAULcuSAZeo,Libby kills Nick. tt0150377,v5-gQQunvJw,"Libby collects her winning bid on Jonathan"" and demands her son back from him." tt0817538,_i9YzGZS0I8,Drillbit plans to give up his life as a bum and move to Canada. tt0817538,H-5mWBsCOaw,"Drillbit gets released from prison, and is reunited with the guys." tt0817538,N72sZx-UMlg,"The guys run from Filkins and Ronnie, who chase them with their car." tt0150377,HGdt0QR55Ko,Margaret shares a little advice about the criminal justice system with Libby. tt0817538,XFoP9Dy1jNc,The guys confront Drillbit after Wade gets punched. tt0150377,m2REqMDEXNU,Libby finally holds Nick at gunpoint after six years of being falsely imprisoned. tt0150377,sJusqH8NxP4,Libby makes her great escape from Travis. tt0817538,RslDexUKDB4,Wade and Ryan attempt to learn how to take a punch. tt0097240,q7DHkw_5Wzw,Dianne comes back to see if Bob will return to the drug lifestyle. tt0109676,CW_yC7l6PO4,Swoop prevents Earl Leedy from making an escape. tt0150377,dFIsw8XfF30,"Libby finally talks to her son on the phone but the conversation runs short when supposed-to-be-dead Daddy"" comes home." tt0817538,BpnXXI34rSs,Don convinces Drillbit to steal from the kids. tt0817538,g0CFQF54ePo,Wade convinces Ryan to challenge Filkins to a rap battle. tt0817538,s1Y023ZS4Ms,"As a consequence of standing up for Emmit, Wade feel the wrath from bullies Filkins and Ronnie." tt0326856,rFXajFXNWQw,Tim finally tells Nick the truth about his feelings. tt0109676,sQolThygoGk,Jessie and Pete go look for Swoop in order to ask him to join their team. tt0109676,3qMNxVVQhzM,"The group practices for their stunt but as they go to land, Selkirk's chute doesn't open." tt0097240,puXEHhZgXaY,Bob and his crew rob a pharmacy. tt0097240,bSW_sW_A8pg,Bob explains why he doesn't want any dogs or puppies around the crew for fear of a hex. tt0097240,TksvZdrx9_A,Bob negotiates a drug deal with David. tt0109676,OUo2Klpa8AU,Pete goes on his first skydiving jump with the group. tt0150377,Cx7ip9cWKJg,Libby wakes up to find herself alone on a bloody boat. tt0097240,RSvx75Md5l0,"Bob and the crew find Nadine dead from an overdose, and the jinxed hat still sitting on the bed." tt0097240,-WN4uZXOltk,"Bob tries to rob a bigger pharmacy at a hospital, but things don't go as planned." tt0097240,zJZiy6BuuLY,Gentry and his police officers raid Bob's house in hopes of finding evidence implicating him in a robbery. tt0109676,MqQ9-AP36z4,"When Torski attacks Swoop, Pete steps in to stand up for him." tt0109676,FGcla1_O220,Jessie Crossman drops Pete Nessip from the plane after he insults her profession. tt0109676,ei2dYpiS-Us,"Ty Moncrief discovers that has been partially identified, and decides to kill him off." tt0109676,3gCyObtqSEo,Ty Moncrief and his crew take a plane hostage in order to capture computer genius Earl Leedy. tt0097240,YGFrKow2KfA,Bob saves a kid from a drug deal and talks philosophy and drug addiction recovering addict Tom the Priest. tt0215750,Giom5_byviI,Major Konig searches for rival sniper Zaitsev in a Russian train yard. tt0215750,wMvTR012Dmg,Commisar Danilov gives Zaitsev his first chance to take aim at Nazi officers. tt0215750,93tR96egox4,Danilov helps Zaitsev find the location of an enemy sniper. tt0215750,BF-sTHMVoOc,Zaitsev and Koulikov must cross a dangerous gap as they exit a war-torn building. tt0215750,381Di8Cw0-I,A disappointed Khrushchev addresses his officers after they fail to take Stalingrad back from the Germans. tt0215750,rRUuycF5FTU,Tania helps Zaitsev escape from the sights of a skilled Nazi sniper. tt0215750,8yOBCGwMpeo,Zaitsev joins other Russian soldiers on a dangerous ferry ride to the battle-torn city of Stalingrad. tt0326856,0pxJFZ8HRV8,Tim comes up with an invention that could save Nick's fortune. tt0326856,v91LBP6w4aI,Tim and J-Man share stories over drinks. tt0215750,WTi7v77XZYs,Koulikov tells Zaitsev and Volodya his story while they are on the lookout for Nazi soldiers. tt0326856,eW4DpZkOe1g,"Tim accidentally shoots his best friend's horse, Corky, with a bow and arrow." tt0326856,bW3ur5td00I,Tim and Debbie are in shock after they realize Nick's invention actually works. tt0215750,oJ3bzg-Tvt4,Zaitsev and other Russian foot soldiers attempt to reclaim the city of Stalingrad from German control. tt0326856,YOxfSSv14CM,Nick makes Tim a partner and takes him on a business trip. tt0326856,qjbkmhtAsJo,The Vanderparks invite the Dingmans over for dinner so Natalie can make a big announcement. tt0326856,kZGlMOfzhC4,Tim tries to hide J-Man from his wife and children. tt0428518,yIF3Vr_at5I,Jay-Z and Pharrell Williams work on a track in the studio. tt0119095,4Sl4t9JNnuk,Mr. Binley concludes that the photos of the fairies that Sir Arthur and Edward brought in aren't actually real. tt0428518,NsNN1eHv7MU,"Jay-Z talks about the way New York was when he was growing up, and considers whether or not rap lyrics should reflect real life." tt0119095,JpE65kS0aIo,Frances and Elsie finish the doll house to show the fairies they are sorry for telling their secret. tt0428518,9CKyWqb5-sw,Jay-Z records a rap to a track by Timbaland. tt0428518,-fMCqLBMPPo,Jay-Z and Kanye West hang in the studio. tt0428518,A-BrlQ3h1i4,"Jay-Z records the song ""99 Problems"" at Rick Rubin's home studio." tt0428518,2lavod63XMI,"Jay-Z and Beyonce perform ""Crazy in Love"" on stage together." tt0119095,LR6C2oVQr_I,The fairies visit Elise and Frances in their bedroom. tt0119095,PhBZ50d6Btw,Elsie asks the famous magician Houdini if he ever reveals his magic tricks to anyone. tt0428518,MRmFis1ZxUE,Michael Buffer introduces Jay-Z at his sold out Madison Square Garden concert. tt0119095,lAIJ6Twk8aQ,Sir Arthur presents the girls with new cameras for taking photos of the fairies. tt0119095,DHDOgbfwSlY,Houdini advises Sir Arthur to get more proof and more photos if he wants to declare that fairies are real. tt0119095,WjY6_V2EM04,The fairies help bring Frances' father home from the war. tt0119095,_r4a-vgIqgM,Mrs. Thornton introduces Frances to the class. tt0428518,BSy7Wzj4OCY,Jay-Z talks with Pharrell and Just Blaze about the importance of staying focused when making a record. tt0289944,6wa4qfLmyoE,Peter tries to find out why Harry is looking for his wife. tt0289944,SvVYUW8r_Dk,Harry is surprised when a prostitute suddenly shows up at his hotel room door. tt0289944,B_CRLQ8VXAg,"After being shot by Peter, Harry returns to get revenge, when suddenly, he begins to hallucinate." tt0289944,rVEFouzc6LI,Peter calls an emergency meeting to make his peers aware of Harry's presence in their town. tt0119095,XFmCXGXAZ5A,Arthur is confused by the photos the girls took of the fairies. tt0119095,w8td2mMGYjo,Houdini entertains guests with a chalk trick. tt0289944,BdgWnY2SCq4,A police officer sits down with Harry when he questions a waitress about a local woman. tt0289944,NoiLYCUpS5A,Harry watches the security footage of his wife being shot and killed. tt0289944,a_7a2sP4WMw,Harry catches a shoplifter red handed. tt0289944,gAN-yHGtbY8,"Kate asks her husband, Peter, why a man named Harry Caine is looking for her." tt0106912,jKu10hihpkg,Travis breaks free from his alien capsule. tt0106912,mO2W96NCiRc,Travis is the subject for bizarre experiments at the hands of his alien captors. tt0289944,PKr0pj8Dw6A,Harry is questioned by the police regarding his wife's death. tt0289944,OaFB9lMthfU,"Harry sneaks into a neighboring house, looking for clues about his wife's killer." tt0106912,nDbBWcwu1jM,The UFO's powerful light hits Travis knocking him out. tt0289944,8tp5RSId2g4,Harry tells Phil his plans to go to Montana to search for his wife's killer. tt0106912,BSBKmD2TRow,Travis stumbles across a room full of alien space suits. tt0106912,ViUbA_O3N5M,Mike and his co-workers take the polygraph test. tt0106912,mM2Tc_tYYKk,Travis is back yet goes into shock remembering fragments of the abduction. tt0106912,on6B12rsn9Q,"Mike rethinks his fleeing from the UFO, and turns the truck around to rescue Travis." tt0106912,ZczgtOsK7WU,"Travis, Mike, Dallis, Whitlock, Greg and Bobby see a strange red glow above the tree line." tt0050419,9dcybKF8Pjo,"Jo and Dick argue about Professor Flostre's intentions, with disastrous consequences." tt0050419,cFzsm8tKWU0,Jo contemplates her feelings via song. tt0101912,9dCHSNdHZQs,Nick hires Johnny with the help of his niece Artemis. tt0050419,uD2mdsAwJBA,Dick and Maggie perform an impromptu song and dance number for Professor Flostre's disciples. tt0101912,s5jDTz07buw,Johnny and Tim make small talk before his date with Frankie. tt0101912,KwnTYy2p0AE,"Johnny shows Frankie the flower market, his ""secret place.""" tt0101912,LOxqK6o4NN0,Frankie finally shows some interest and approaches Johnny with a question but she finds a way to run again. tt0101912,HnnBvemHrWA,A man has an epileptic seizure and Johnny asks Frankie out on a date. tt0101912,ch6zVPr6lWM,Johnny confesses his love to Frankie. tt0101912,6ygujqr_JWc,Frankie exposes her wounds and shares her personal sufferings with Johnny. tt0101912,HOr8EwpHNwY,Johnny asks Frankie to open her robe. tt0050419,Hp7zxA4BsKg,"Jo hides in the darkroom with Dick, who tries to boost her self-esteem." tt0050419,RH4cgOQjITc,Dick professes his love for Jo through song and dance. tt0050419,aPElaYUCTmA,"Jo appears in her new look, to the delight of Dick and Maggie." tt0050419,ljK_2ZT44jA,Dick follows Jo home to make amends for their argument. tt0050419,q4G5hUvL-wI,Jo performs a Bohemian-style dance in a nightclub as Dick watches in disbelief. tt1034032,nKCIuHUFJnY,"With the help of Simon, Kable finally eliminates Castle during a live television broadcast." tt0050419,cvakyq_EaWY,"With the magazine headed in a new direction, Dick persuades Maggie and Dovitch that Jo would be the perfect new ""It Girl.""" tt1034032,sogf5QgMqJs,The Humanz go through Kable's -- aka John Tillman's -- memories and discover why he killed his best friend. tt1034032,JNLW2R5dYOM,Simon communicates with Kable for the first time during a game of Slayers. tt1034032,QnaTtsClgc4,Castle reveals his plans of global conquest to Kable. tt1034032,54kfWG3V-IE,Humanz Brother tries to recruit Kable in the battle against Castle and his growing empire. tt1034032,lU2FHV2lr04,"Kable rescues Angie from the Society game, but Hackman intervenes with a shotgun." tt1034032,EqoU4-wHxDU,"While testing out his upgrades, Kable explains to the Upgrade Guard who's really in control." tt1034032,SHdKVf4jA0c,"Gina interviews Castle on the success of Slayers, as well as the controversial social fallout from its creation." tt0828393,LEdvMVoFgro,April considers her career options with Lana and Tiff. tt1034032,x9U9Xi1yQMo,Kable jacks a truck so he can drive off the playing field. tt1034032,c7StgLYxbPU,Kable fights to stay alive in an intense death match game known as Slayer. tt0828393,gpO1qCdOHGc,Nathan quits his job working for Sally St. Claire. tt1034032,Gp22ZHf0_a0,Kable continues his fight for survival in the brutal game of Slayers. tt0828393,zCz-i5sPrBo,Sally St. Claire and Todd try to get her pictures back from Anthony. tt0828393,EHeR5XCO3uA,Nathan tells April about his aspirations in life. tt0828393,b_BJbecP-Xc,Nathan and April make new friends at the bar. tt0828393,8SqhsheKNqg,Sally St. Claire and Todd kidnap Davey Diamond and demand he return Sally's pictures. tt0828393,rqWU2zS3rJg,April calls Anthony to have her picture taken for money and Todd calls Sally St. Claire. tt0828393,jlwA_X5iyBA,Sammy meets a fast-talking A&R hustler named Joey Zane. tt0430308,qPpMWDyyHy4,Marcus meets Bama after a prison fight has him thrown in solitary confinement. tt0828393,Oel3rZOooFc,Sally St. Claire tells Nathan to check her marijuana supply while Lana and April try to get a fake I.D. tt0828393,AQAQUyNnXms,Davey Diamond goes on a date with Leni but it doesn't pan out the way he expected. tt0828393,MKVy1bpJCi0,Todd helps Sally St. Claire with the gum stuck on her shoe and she offers to help sell his house. tt0828393,6JHAWVBOq3M,Nathan gives Sammy a ride and a peek at his employer's marijuana-growing facility. tt0165798,Z9GVG_9yN7M,Ghost Dog finishes off Sonny Valerio and encounters a fellow samurai in the street. tt0430308,fZAksSuI1R4,Marcus has to calm Bama down when he confronts Justice about fidgeting in his backseat. tt0430308,ujH4hnVthhM,"After ten years apart, Marcus and Charlene finally reconnect." tt0430308,pgk_j6ehCEA,A fight turns deadly when Marcus and Majestic struggle over a grudge. tt0430308,F4vBy7g5vpo,Young Marcus attends his mother's funeral. tt0430308,2sROc10VoBA,Charlene visits Marcus in prison and tells him she is pregnant. tt0430308,MxtB_Ri0q_w,Marcus visits Levar in prison and discovers the identity of his father. tt0165798,q-5e6U4CdbU,Louie faces off with an unarmed Ghost Dog. tt0165798,-TAp26oPrvE,Ghost Dog listens as some rappers freestyle in the park. tt0165798,Qz1-NSdsqNE,A Kung-fu Master defends himself from a mugger as Ghost Dog watches. tt0430308,Cgfw3cjfO6A,Majestic teaches Marcus and the rest of his crew the rules for selling crack cocaine. tt0165798,e4IJ2LyK9cs,Louie takes a bullet from Ghost Dog. tt0430308,-pVDJkIp5sc,"Marcus, Bama and Justice rob a bookkeeper." tt0165798,omYsWxT4Mbs,Ghost Dog saves Louie's life once again. tt0165798,nAq5GhiMdSA,"Ghost Dog comes across two hunters and ""takes care"" of them." tt0165798,fIZiQDCK_Ng,Sammy the Snake and Joe Rags attempt to find Ghost Dog but instead come across Nobody. tt0165798,PgeCL2KdU_I,Louie has a sit-down with Ray Vargo as they discuss what to do with Ghost Dog. tt0165798,JoPPsr14gRk,Ghost Dog makes his way to Ray Vargo to kill him and all his henchmen. tt0405061,rb7z1bFt79k,"Joey Cheng goes out to lunch with Mrs. Chow, and panics when she finds a ghost watching from under the table." tt0165798,SzzO21mg8yA,Ghost Dog practices his swordplay on a rooftop. tt0405061,vjplEkEo_H8,"Stuck in an elevator with a pregnant woman in labor, Joey Cheng panics when she spots a ghost coming to kill the woman's child." tt0165798,puwOGUjUKz8,"Ghost Dog takes care"" of Handsome Frank." tt0405061,9hEYOiPK79g,Joey Cheng jumps off the hospital roof in order to prevent Yuen Chi-Kei from re-incarnating herself in the form of her baby. tt0405061,c2TTFWzBuE8,Joey Cheng is tormented by her visions of the dead at a bus stop. tt0405061,xy2zgeQ7ECg,Joey Cheng brutally attacks a man who tries to rape her in a dark alley. tt0405061,Nd8HPu7y8qk,A Buddhist Master explains to Joey Cheng the reason that she's able to see the spirits of the dead. tt0335119,xoqU0B7BGQI,Griet poses with Catharina's pearl earring when she is away. tt0405061,9leTC1Rk2bc,Joey Cheng agonizes over her recent breakup without realizing that she's being watched by a ghost's reflection in the water. tt0405061,215DJ7KbNsY,Joey Cheng tries to stop a woman from jumping in front of a moving train. tt0405061,4zT8gk15yrY,"After an attempt to kill herself, Joey Cheng gains the ability to see the dead." tt0104348,55wIwwmrHxk,"When John Williamson discovers that Shelley Levene is the culprit of the break-in, he shows him no mercy." tt0335119,Z8E9FEaEm8A,Griet learns of the gossip surrounding her at the marketplace. tt0335119,imtYtoHzPJc,"After praising his latest commissioned piece, Van Ruijven asks Johannes what his next subject will be." tt0335119,8aYUJSDZHKw,Johannes asks Griet to remove her cap. tt0335119,9M7i6Uaf_f4,Catharina demands to see Johannes' painting of Griet wearing her pearl earring. tt0335119,HzCGd_bsWns,Johannes shows Griet his painting through the lens of the camera obscura. tt0335119,rkuhTjnuQZ0,Van Ruijven forces himself onto Griet. tt0335119,YE0WStB-1cc,Johannes shows Griet the various dyes and paints he uses. tt0335119,rtVhMrgtcq0,Johannes asks Griet which colors she sees in the clouds. tt0104348,ROYuupoGarQ,Shelley Levene visits the house of Larry Spannel to try and sell him some real estate. tt0335119,OLhu6bw5EYc,Johannes instructs Griet as she models for him. tt0335119,RCptP8ItWmw,Van Ruijven suggests that Griet appear with him in Johannes' next piece. tt0104348,r6Lf8GtMe4M,Blake gives everyone at the real-estate office an in-your-face sales talk. tt0104348,rW7WlT6OJxE,Ricky Roma unleashes a barrage of verbal insults at John Williamson after he accidentally ruins a sale. tt0104348,kdj7BqZQfaQ,"Ricky Roma discusses his philosophies on life with James Lingk, in order to win him over on a sale." tt0104348,P5Mn2YHVg0s,Ricky Roma lashes out at John Williamson when he receives three 'deadbeat' leads including the name Patel. tt0064381,MievQTukqMM,Neil and Brenda get into their first serious argument when Neil finds out she hasn't been using any form of contraception. tt0104348,AO_t7GtXO6w,Blake continues his epic sales speech by bringing out brass balls to re-emphasize his words. tt0335119,ZYq7Q_UW0Vo,Griet admires Johannes' work as she cleans his studio. tt0064381,B2I2s9rEOCA,"When Neil visits Brenda at college, they get into an argument about why she left her diaphragm at home for her mother to find." tt0104348,sgzxcBufwS8,"The morning after the break-in, tensions arise between Ricky Roma and John Williamson. Meanwhile, George Aaronow worries about talking to the police." tt0093137,bzRUc3Zrvfw,Worcester explains to the troops why he came back to Vietnam after being medevaced. tt0104348,u9R34QNUy1g,John Williamson refuses to give Shelley Levene better leads. tt0064381,HapeoGg80EA,Neil gets to know Brenda. tt0093137,iMJnr5bhQUI,The platoon makes their final push up Hamburger Hill. tt0104348,1LYn1my4jbc,Dave Moss and George Aaronow discuss the troubles of their job. tt0064381,R06Ujp-UBx0,"Neil Klugman has dinner with his new girlfriend, Brenda Patimkin and meets her family." tt0064381,RtabrwMvAuY,"Neil calls up Brenda to ask her out, having fallen for her earlier that day at the country club." tt0093137,enY9iKZ8mDQ,"While the troops discuss their sexual conquests, Bienstock gets a break-up letter from his girlfriend." tt0064381,KE6dEjZ8qmg,"Brenda hassles Neil about his station in life, but soon softens and asks him if he loves her." tt0093137,buGiJK-dXss,"Just as the troops begin to overtake the hill, air support arrives to shoot at their own men." tt0064381,HIf2wdbacpU,"As the Patimkin family all get ready for bed, Neil Klugman has a pretty awkward moment with his girlfriend's brother." tt0093137,oEODtP56lBc,Beletsky listens to a tape his wife sent him. tt1235837,cQhgVl3V1Rw,Munk and Mambo begin to tell the story of Snow White and Fairytale Land. tt0064381,c_69KA0PKYI,Brenda Patimkin teases a wedding guest at the thought of her and Neil Klugman being the next to get married. tt0093137,fyIATgssVJw,Sgt. Frantz prepares the troops for the duties and challenges that await them. tt0064381,iB8YcYRzDdE,"As the night comes to a close, Neil Klugman and Brenda Patimkin can't keep themselves off each other long enough to say goodbye." tt1235837,IEfj3lH-scU,The king's royal assistant starts the search for the perfect wife with the help of the Fairy Godmother. tt0064381,BLHc07GYSVE,Neil Klugman and Brenda Patimkin talk on the phone after their date until Neil's aunt and uncle catch him in the closet. tt0093137,-jiHKFt981Y,A fight ensues after Alphabet says a crude remark to Beletsky. tt0093137,RMRT3_djqqw,A news reporter on site interviews Sgt. Frantz after a battle. tt0093137,jyzhfamiaQc,Doc Johnson teaches the troops how to properly brush their teeth. tt1235837,sOpJs8Licp8,Lady Vain tries to get rid of Snow White once and for all. tt1235837,50ZwjmYsIcY,"While babysitting for the Old Woman Who Lives In a Shoe, Snow White has a little trouble keeping the kids in line." tt1235837,xPulA49aBZU,Snow White is tricked into eating a poison apple. tt1235837,_z5tcqcVgvA,Snow White arrives just in time to stop her father's wedding to the evil Lady Vain. tt0093137,885EiuL9GKg,"Doc Johnson grieves over a fallen soldier, but Motown intervenes and calms him down." tt1235837,p-zGZTYN9nQ,Snow White tries her best not to wake the castle when she sneaks into her home after a long night out. tt1235837,jG2FwGoAPNY,Snow White notices Sir Peter at a jousting match. tt1235837,dNK-wsUHMvw,"The queen-to-be, Lady Vain, is introduced to her soon-to-be royal subjects, but not without a disruption." tt0361693,m9vRMtJDEVU,Nicky screens the final cut of his documentary about Javier. tt0361693,WlHZBcuKDb8,Jude performs a song at a karaoke bar. tt0361693,aM4Gyz0kd3Q,Frank breaks up with Jude after he finds out she is using him for his money. tt0361693,XGmHx9PAaeE,Jude moves in with Otis in order to seduce his father. tt0361693,76S0ukfD8YU,Pam tells Gil and Charley why they didn't use Gil's sperm sample for their pregnancy. tt0361693,T_igwYlgnZ8,Jude goes to a clinic for abortion advice from Mamie. tt0361693,uFzV6DktOzg,Nicky and Mamie test out the new video equipment for their documentary. tt0361693,HKrJ0cZ4nDE,Javier and Nicky have the their first interview session for the documentary. tt0361693,vEnbBgByg98,Charley tries to convince Gil that Max is his biological son. tt0361693,OILU3oEYu8I,Mamie and Javier convince Nicky to make a film about an immigrant massage therapist. tt0361693,wFSW1l-Am_I,Mamie and Javier role play at the spa where he works. tt0361693,n137CIxjKTA,"Jude practices with the band for the first time, and finds out Otis is a closeted homosexual." tt0815236,yWZtEE8C1x4,Things get heated when Dylan challenges Kirk to a slap shot contest. tt0815236,qNCFZLQOj_M,Kirk's girlfriend leaves him for an entrepeneur. tt0815236,b0SfZ4LMV98,Molly informs Kirk's friends that she can't join them in the pool because she isn't wearing any underwear. tt0815236,2nFh-kxiEng,Kirk has an imaginary conversation with his ex-girlfriend. tt0815236,YwrX990kW9k,Kirk and Molly finally let go of their issues and make up. tt0815236,LiNFLOs3BfE,"Before take-off, Kirk tells off his entire family, only to find out he can't get off the plane afterward." tt0815236,DPksJcC1e_c,Molly gets the pleasure of meeting Kirk's entire family all at once. tt0815236,9FIHPZrHVGs,The issue of self-esteem finally comes to a head between Molly and Kirk. tt0180734,2Ji7Coh4O7E,The team gets excited to see Sammy Sosa when Conor treats them to their first major league baseball game. tt0180734,HL_VmoAOZtY,Conor gives his team an appreciative pep talk before they play their first game without G-Baby. tt0815236,Wxo_5gNakBA,Kirk awkwardly explains why he was rude to Molly's parents. tt0180734,e0qpJCNLViQ,G-Baby gives Conor a rundown of an argument prior to the start of practice. tt0180734,5CrufNJ4A_Q,Conor recounts G-Baby's game winning hit at his memorial service. tt0180734,dwMoiBGmH_4,Conor and the Kekambas help Miles pitch through a tough out. tt0180734,uOmPHEVoSa4,Elizabeth meets Conor at a sports bar to convince him to take coaching more seriously. tt0180734,MM01XhEgcF0,Conor surprises his team with new uniforms in the dugout just before a big game. tt0180734,NOphOh3EqKI,Conor and Ticky watch nervously from the street as the basketball game they've bet thousands on plays out. tt0180734,xrgGccehkKY,Kofi and G-Baby get caught in the crossfire of a violent shooting on their way home from a baseball game. tt0116493,o_49_kbx9yA,"Harriet is depressed because she misses Golly, her nanny." tt0116493,Lf6fX3bsCxA,"Sport can't afford his groceries, so Harriet lies that he dropped his money." tt0116493,E49Wkrqw_DQ,"Harriet hides in the dumbwaiter, spying on Agatha K. Plummer, until she gets caught." tt0116493,Hre4nTAQcIA,The kids in class gang up on Harriet to get back at her for writing nasty things about them in her notebook. tt0116493,3rtbO9uOirI,Sport's Dad finally gets some money from selling his book. tt0116493,xSTf5WyBUQ0,Harriet loses her notebook full of private thoughts and the other children read them aloud. tt0116493,XGgVzfEptX0,Harriet and Ole Golly say goodbye because Golly must move away. tt0116493,o2VM3B_izXw,"Harriet visits her friend Janie Gibbs, who does chemical science experiments in her room." tt0116493,ccX1d19hmc8,The kids visit a garden full of eclectic art and make wishes while drinking club soda. tt0102011,-dzyuUNTwUo,Lorie is amused by Dan's playboy antics. tt0102011,LCxS9lUlCmE,Lorie's family does not take too kindly to Dan or his political views. tt0102011,qKj2c67Ht98,Lorie gets delusional when she senses feelings between Dan and his ex-lover. tt0102011,esXVSyflpDU,"Almost immediately after their break-up, Lorie runs into Dan and Linda on a date." tt0102011,JrPj-b18Lt4,Dan tells Lorie that he's ready to be in a monogamous relationship with her. tt0102011,lYGDkN8xPt8,Lorie cons Dan into dancing with her. tt0102011,fOv_N9k5im4,Lorie lets her guard down and tells Dan how she feels. tt0102011,lAhQbCN-Zvg,Lorie breaks up with Dan for good after realizing he is never going to change. tt0102011,ukmrk8JdGxk,Dan's fear of commitment surfaces while he is deciding what to order for dinner. tt0102011,MC2MLmGhc1M,Lorie projects her anger at Dan during an on-air segment. tt0251736,0sdIO3lVTWE,Denise Willis walks into Dr. Satan's operating room. tt0251736,HiuPgdW3E9g,Baby Firefly puts on a show for her guests. tt0770810,CLZUz1TwsDs,The JSJ crew perform their last routine for the finals. tt0450278,ks32K99a1RU,College students Paxton and Josh soak in the rich culture of Amsterdam...by getting high with other American tourists. tt0251736,BkGbYdSwFCU,Baby Firefly chases Mary Knowles through a cemetery. tt0251736,4cbfnH5APuE,"Bill Hudley and Jerry, along with their girlfriends, attempt to escape from their demented hosts." tt0251736,Yg95nS9poCw,"Bill Hudley and Jerry go on the ""Murder Ride.""" tt0251736,BWm1l21hBb8,Denise Willis wakes up as Tiny Firefly serves her some breakfast. tt0251736,yd13zj2PC1g,"The group sits down for dinner and meets Tiny"" Firefly." tt0251736,V82hFRJcrj0,"Killer Karl and Richard Little Dick"" Wick attempt to rob Captain Spaulding." tt0251736,2WZCKiDOQ9Q,Otis Driftwood shows Mary what he did to Bill Hudley. tt0251736,i3EF63p3v-I,Baby Firefly plays a guessing game with Jerry. tt0770810,QV6em4mxnE8,Kin Dreadz perform their last routine at the Detroit step contest finals. tt0770810,GAEBkpl1cIQ,As an audition Bishop has Raya stepping off against E.C.. tt0770810,9Jwm_LHAwVo,"After a failed attempt to apologize, Raya is challenged to a step off with Michelle." tt0770810,XIQbAhdlZt8,A variety of teams compete at the Detroit step show. tt0770810,-J_tiDK1tEA,"Faye delivers the news to Raya that she passed her scholarship exam, but they argue about whether or not Raya should dance with her crew." tt0770810,9lTKjTuPGEc,"While the JSJ crew practices for their next competition, Bishop teaches Raya the crew's step routine." tt0770810,aW_qXKNDWtU,Raya asks Bishop if she can join his step crew to pay for her college tuition. tt0110146,uAtcsqDjOr8,Vincent is furious when Olivia shows up to his work event uninvited. tt0110146,W3WRCxy2ZaE,Vincent is operated on after his violent car crash. tt0110146,O1fxGIiCt1E,Vincent meets Olivia for the first time. tt0110146,l_7z4h0soHg,Vincent crashes into a stalled van at a highway intersection. tt0770810,uc0l3djxQ5Y,Raya walks in on a local step competition just in time to catch the JSJ dance crew show off their moves. tt0110146,eqk4fOK2VU8,Vincent tells Sally that he's leaving her for another woman. tt0110146,Lgwj8KoDshs,"It's the final straw for Olivia when Vincent chooses to spend time with his ex-wife instead of her, once again." tt0110146,Kek4f12wu3o,Sally puts work before her marriage with Vincent. tt0110146,ld9ehvuVu-8,"Vincent realizes that he wants to be with Olivia, and leaves a heartfelt message for her." tt0110146,z67cBIaUOzw,"Sally begins to flirt with Vincent, but instantly regrets it." tt0186253,kTZLHA6zbnM,Mira recounts all of the husbands and ex-boyfriends she had that passed away and how it makes her grateful to be alive. tt0186253,0xo0KxL_21U,"FH gives fellow rehab patient Bill a shave, and asks him about his life." tt0186253,-FGNt71n2oA,FH gets emotional when he tells Georgie that he accidentally killed the bunnies they tried to save. tt0186253,GP5MbvcXb0E,"FH collapses after eating too many mushrooms, and wakes up in the hospital, hallucinating and convulsing." tt0186253,Y99ODe7GzfM,Michelle and FH reenact the first truly intimate moment they shared together. tt0186253,xZYfE-65U3Y,"After taking a hallucinogenic pill, FH believes he sees Michelle's face projected onto a cemetery wall." tt0186253,ZMHEIVKg_iQ,FH and the rest of the ER staff are startled when a patient comes in with a knife through his eye. tt0186253,n_Zor8p_ZsA,"FH finds himself captivated by the free-spirited Michelle as she dances to the song ""Sweet Pea,"" and the two quickly take things to the next level." tt0186253,iqH7W6dLTZY,A waitress accuses FH of skipping out on the bill the last time she served him and punches him in the face when he tries to change the subject. He then meets up with a drunk Wayne. tt0186253,0BozXvlwFCk,"After Michelle kicks FH out of their motel room, she insults him in the parking lot and steals some college kids' car." tt0186253,7keYfMMBIws,"Dundun throws FH out of the car as they are driving McInnes to the hospital, and beats him up for reasons unknown." tt0425123,Kf5iT31fZN8,Elizabeth follows her instinct to go on the rooftop where she discovers a familiar face. tt0425123,gQ3YdU0WlPw,"David desperately tries to save Elizabeth from death, but the hospital's security is hellbent on stopping him." tt0425123,27CB8wWJt94,David tries to get through to Abby to get her to change her mind about pulling the plug on Elizabeth's comatose body. tt0425123,jJHNJjwNUWM,Pieces of the puzzle fall into place when Jack reveals to David that he was supposed to meet Elizabeth the night of her accident. tt0425123,udHPeemZ8zE,David tries to convince Jack that Elizabeth's spirit really does exist so he'll help him steal her body before the hospital pulls the plug. tt0425123,IOmR8ZCYhzc,Elizabeth's feelings get hurt when she walks in on David's sexy neighbor throwing herself at him. tt0425123,TpXABjbV9cc,"After the priest and ghostbusters fail to exorcise Elizabeth from the apartment, David invites Darryl, the metaphysical book shop clerk, over to help him communicate with Elizabeth." tt0425123,qcMHKqF91tM,David tries to get Elizabeth to realize that something's off. tt0425123,MoInDyDrLKk,"When Elizabeth refuses to leave David alone, he takes desperate measures to exorcise her spirit from the apartment." tt0215129,Wxy1loV9jqc,Beth and Jacob arrive at Josh's dorm to find that feeding time has finally arrived for Barry and the snake. tt1250777,TsCTF8rAkqk,"As audiences wait for the execution of Big Daddy and Kick-Ass, Hit-Girl intervenes and rescues the two." tt1250777,Va6oQ_2-jh8,Kick-Ass and Hit-Girl take on Red Mist and Frank D'Amico in the final showdown. tt1250777,jTGak1m5o6U,"Mindy Macready gets a kick-ass present from her dad, Damon Macready." tt1250777,V7yhBe0E85E,Hit-Girl dresses up as a school girl to gain entry to Fran D'Amico's fortress. tt1250777,h-Y7v9WyBug,Big Daddy infiltrates Frank D'Amico's warehouse and burns it down. tt1250777,zZaA_9hN1Lo,Sergeant Marcus Williams breaks into Damon Macready safe house and discovers a comic book explaining the origins of Big Daddy and Hit-Girl. tt1250777,Paei6bi8XBo,"Kick-Ass threatens Rasul to stay away from Katie, but he's outnumbered and ends up in a sticky situation. It's up to Hit-Girl to save him from sure death." tt1250777,7PcolFECV_k,"While patrolling the city, Kick-Ass rescues a victim from three gang members." tt1250777,jj5CG9kzDYY,Big Joe tries to get answers from Danil concerning the whereabouts of the missing coke by stuffing him into a life-size microwave. tt1250777,8zUemCOntvo,Dave Lizewski engages in his first crime fight as the superhero Kick-Ass and takes a beating. tt1250777,-uQOkA8zuMk,"Damon Macready teaches his daughter, Mindy Macready, not to be afraid of guns by shooting her in the chest." tt0113537,DTXU2pMEZeA,"At the bar, Max laments his tendency to wax nostalgic for events even as they happen." tt0113537,oRMqBipT26M,"Grover reflects on the potential benefits of a long, happy life together with Jane." tt0113537,-qs8tLNcMVY,Chet dispenses some bartender's wisom to Grover. tt0113537,tXmgYy1D5MA,Otis gets a job at Video Planet alongside Zach and his delusions of grandeur. tt0113537,XoW9HJEDk5E,Grover has an awkward visit from his newly separated father. tt0113537,cLmDqUnUEE0,Max walks Kate home and is crushed by the news that tomorrow is her birthday. tt0113537,mhPPLQqVP0c,Miami tries to break up with Skippy but has a hard time keeping a straight face. tt0113537,DTkzFvyvzkk,Chet is disappointed when Otis neglects to read the selection for their two man book club. tt0113537,C-qXt_tIUJY,"Max returns to the college dining center, where Kate informs him of the new potato policy." tt0113537,6QYrOTw1Y4w,Max convinces Otis and Skippy to head to the bar when the house becomes too depressing. tt0113537,h4OULP90F0c,Otis refuses to send his beer back after he finds some food in it. tt0113537,uCXHj1i42KA,"At their graduation party, Jane breaks the news to Grover that she's leaving to study in Prague." tt0074751,wk34RXMFgM0,King Kong shares an intimate moment with Dwan as he gives her a shower. tt0074751,P749Vnd3WSw,King Kong breaks out of his cage during Fred Wilson's show. tt0074751,v6Xbfyz0aXM,Dwan attempts to protect King Kong from a violent helicopter attack. tt0074751,5znSACsZMa0,Fred Wilson and his crew lure King Kong into a trap. tt0074751,7H_MQ4OSwPM,Jack Prescott and Dwan share a romantic moment together. tt0074751,eopKHS8iM5Y,King Kong attacks Jack Prescott and the rest of the crew in an effort to keep them from getting to Dwan. tt0074751,cNkof76o8P8,"King Kong fights a giant snake, and Dwan sees her opportunity to escape." tt0074751,V2wuTBrkBpU,Dwan attempts to convince King Kong to let her go. tt0074751,zzt_urtTkG4,The islanders offer Dwan to King Kong as a human sacrifice. tt0325703,cbzkmMaYSNg,Reiss reveals his plan of world terror to Lara before he orders her death. tt0325703,1IZtDOuubT4,Lara takes a stand after Terry decides to take Pandora's Box away from its place at the Cradle of Life. tt0325703,mTx6_XT9Hns,Reiss and his henchmen are ambushed by deadly creatures as Lara leads them to the secret location of Pandora's Box. tt0325703,0awcEOEug5c,Terry tries to rekindle his relationship with Lara while they bunk below deck. tt0325703,MVSH6eiGvSM,Lara and Terry evade a group of henchmen by wingsuit flying off a building. tt0325703,RrrQxZ4j7t8,A showdown ensues after Chen refuses Lara's offer for the valuable orb he's stolen. tt0325703,yOMv5lJpHwY,Lara and Terry escape from a group of Chinese gangsters by sliding down a pair of ropes. tt0325703,ypKY-4583qM,Lara and Terry cross China's terrain by motorcycle. tt0110305,-sq1AYZOWz0,Lassie rescues Matthew Turner one last time. tt0325703,9z6_GAPIkTU,Lara confronts a blood-thirsty shark during her escape from a collapsing undersea temple. tt0110305,q_d_fgqJna8,"The Garland brothers scare the Turners' flock of sheep, but Lassie ruins their fun." tt0110305,Ld2g77JckSk,Matthew Turner fights the Garland brothers over the flock of sheep. tt0110305,a6uHu-9c23c,Matthew Turner and Josh Garland fight over Amy Porter. tt0110305,UOdl87tD-58,The Turner family rebuild their sheep farm. tt0110305,pUNArJgkB2U,Lassie forces Matthew Turner to be more adventurous. tt0110305,J0MXhoaoPy8,April Porter offers Matthew suggestions on how to build a sheep farm. tt0110305,Zqp8_F9EXbw,"The Turner family adopts a homeless collie, Lassie, into their family." tt0110305,vBVkz1xSKFc,Lassie saves Matthew Turner from a vicious wolf. tt0110329,ipc4KfTrRZs,"Cody gets the upper hand on The Leprechaun, despite his shape-shifting ways." tt0420251,b9oREoCw3ew,Aunt Mei describes the benefits of the secret ingredient in her dumplings. tt0110329,qcFM5Xhg8W8,The Leprechaun makes Morty wish he hadn't asked for his pot o' gold. tt0110329,AgZGoFX8xWY,A rude waiter gets pinned down by The Leprechaun. tt0110329,Og_AVlwo94I,The Leprechaun races down the home stretch toward getting his gold shilling back from Cody. tt0079640,_y5i94TfOxw,Balford explains to Phillip Elliot how he's going to woo a lady. tt0119783,riJRHpcshE0,"Sean Casey tells his father, Liam, that he's going to prosecute the man who shot him." tt0079640,qlwQsJOKoIo,Phillip Elliot and Seth Maxwell take some early morning pills and wash them down with cold beer. tt0119783,1bZ_L0GOaYw,Morgenstern makes an announcement to the detectives and staff of the District Attorney's Office. tt0110329,kgSDN6_VyR0,The Leprechaun is challenged to a drinking contest by Morty. tt0110329,D4rlczOezQ8,The Leprechaun makes a timely entrance while Cody and Morty discuss the existence of mythical creatures. tt0119783,QOCLLi8inz4,Elihu Harrison gives Sean Casey a few spoonfuls of truth in his time of discouragement. tt0110329,fjsZJkL1lB4,The Leprechaun finds himself a piece o' gold in an unfortunate place. tt0110329,c17KWinVFss,The Leprechaun brings Bridget to his humble abode to consummate their marriage. tt0110329,izxDdUcC3Ag,Cody and Bridget get attacked by The Leprechaun. tt0110329,s0bxFcZV40A,The Leprechaun kills William O'Day after he foils the little guy's attempt at wedding his daughter. tt0113691,vEv9tQL3b-A,Khaila and Margaret agree to help raise Isaiah together. tt0110329,LwNWzSruov8,The Leprechaun does lunch with a talent agent. tt0113691,DEDWjeRGMks,Margaret says goodbye to Isaiah. tt0113691,dxsVIClobT4,Khaila leaves Baby Isaiah in the trash in a moment of desperation. tt0258273,6GfFdTJiRmo,Michelle finds her sister Annie at McDonald's and the two have a rare moment of connection. tt0113691,nLcCOlgev3k,Margaret and Charles visit a lawyer after discovering Isaiah's mother wants him back. tt0113691,V6I4cJ1kJVc,"Isaiah grows up with his new family, the Lewins." tt0113691,WSbK1kJvTkg,Khaila and Margaret argue over who has the right to be Isaiah's mother. tt0258273,r9z4qCu9sTw,Elizabeth visits her mom in the hospital after her surgery. tt0113691,lOaaPz6E6ms,Attorney Kadar Lewis questions Margaret as to why she should be allowed to raise Isaiah. tt0113691,TtLvNyDGUg8,Khaila breaks down as she confesses to throwing her baby away. tt0113691,MNWmA8mmbH4,Margaret helps Baby Isaiah after he is almost crushed by a trash compactor. tt0258273,yfrnQMbd64w,"Michelle and Elizabeth have intimate connections momentarily with their dates, Jordan and Kevin." tt0258273,fJ0myLkUGjk,"Michelle gets caught with her underage friend"" Jordan." tt0258273,R0k1CGlHAtY,"As her hair is straightened, Annie Marks tells a joke about a black mother and a Jewish father to Lorraine." tt0258273,bIcPNZlEW8w,"Elizabeth must exude sexiness"" in her audition with Kevin." tt0258273,gLEioQymzKc,Elizabeth and Michelle visit their mother Jane in the hospital to find her not doing well. tt0258273,NjN_jPTXHys,"When Bill accidentally steps on a piece of Michelle's art, she accuses of him of doing it on purpose." tt0258273,hFON-hiGW8g,"Michelle fails to sell her art again, so she applies for a job at a one-hour photo shop run by Jordan." tt0258273,9j0tqkW7Bd8,"Michelle fails trying to sell some of her art, and runs into a successful old friend." tt0258273,l0-EYjaAurE,"Annie asks Michelle what she means by ""reality.""" tt0438205,1RTpXJVozSY,The principal talks about Michelle's dramatic behavioral improvements. tt0438205,_K6U3FyJBv4,A pair of students competes in the Swing dance category at the Grand Finals competition. tt0438205,pUtdFHAAGhE,The kids express the pros and cons of each sex and talk about their views on dating. tt0438205,9oDHw4wwTQI,"At Semi-Finals, Wilson dances better than anyone expected him to." tt0438205,_deZCO2ojAo,One teacher talks about how badly she wants her students to succeed. tt0438205,zhXaZ2a1NcU,The students talk about what it's like to dance with the opposite sex. tt0438205,xehwopjgKGU,The teacher pairs students up and has them dance for the whole class. tt0438205,LtCy6T9d6-s,The green team deals with losing the Quarter Finals competition. tt0438205,C-DCupYm66Q,The students dance the Merengue and the Tango at the Quarter Finals competition. tt0266747,ajvCMC8Na3M,Mary Ellen Spinkle listens to a new track from Dr. S and finds herself dancing free of inhibitions. tt0266747,WB9uluVLP9g,Dr. S discusses semantics and the rich cultural dialect of the African American people. tt0266747,_fPBDSFxGq4,Dr. S sings a special song for Marci Feld and offends right-wing conservative America. tt0266747,YzPOjXIwbu8,Dr. S takes over Marci Feld's auction and charms the ladies in the audience. tt0266747,IqefatGKx68,Yolanda and Marci Feld get into a fight and the police arrest Marci. tt0266747,bN3U1IwMvhI,Dr. S shows Marci Feld what he really thinks about their public service announcement for the Save Our Families Foundation. tt0266747,OFmxUUOxZl8,Marci Feld and her friends celebrate understanding when they explore multicultural harmony through self expression in the club. tt0757361,r-Pl3TQJqhE,"When Dick Koosman gets personal during a bookstore interview, Margot panics and walks out." tt0473692,zriRtxv9jf0,"Neil Young recalls growing up on a farm in Canada and being given a gift of a ukulele from his old man before busting into the song, ""Far From Home.""" tt0266747,uxvN1tNASYo,Marci Feld wins the audience over with her rap about her purse. tt0757361,lyCbXVV-PAY,"After Margot and Pauline race in the pool, Claude gets dizzy and falls in." tt0757361,0PcN_4_J6b8,Margot and Malcolm get upset when their partners don't play the game correctly. tt0757361,AbI_r4kXbcQ,Margot proves to her sister and son that she can still climb a tree. tt0757361,pe1z-Tdk36M,"Malcolm expresses his bitter feelings toward Pauline's sister, Margot." tt0416320,jQ903giVNAg,Chris and Chloe set a date after playing a friendly match of tennis. tt0757361,bnIEGNhW3ZY,Malcolm cries over the phone and begs Pauline to take him back. tt0757361,SEaGeyLjBUU,Malcolm admits to Pauline that he cheated on her with Maisy. tt0416320,OCXvMchSYX4,Chris continues to deny his affair after Chloe questions him on his strange behavior. tt0416320,vVjfW-P5yZY,Nola and Chris embrace in the rain despite being in serious relationships with other people. tt0757361,HaTAZMTwVoM,"Since Margot exposed Pauline's secret that she's pregnant, Pauline is forced to talk to both her daughter and Malcolm about it." tt0757361,Fj7KNHxzYjc,Pauline finally breaks down and tells Margot how much of an a**hole she is. tt0209144,eqYhouRLYis,"Leonard makes the decision to target Teddy Gammell as his wife's killer, rather than to accept reality." tt0757361,8N6q0Yprfwk,"After an accident in the car, Pauline has an accident of her own." tt0209144,W3-UIdApbyw,Teddy Gammell tries to make Leonard understand that he has already killed his wife's murderer. tt0416320,qTIc6y5mojw,Chris attempts to restart his affair with Nola after spotting her at an art gallery. tt0416320,Hj9WsioJbJw,Chris flirts with Nola beside a ping pong table shortly before he discovers she's engaged to Tom. tt0291341,SJHWGDkIxNM,Danny Meehan redeems himself after an awful second half to set up the game winning goal kicked in by Billy the Limpet. tt0291341,IvWyoUACISc,"Danny Meehan tells the inmates why he threw the game against Germany, while Doc goes to Meehan's cell to retrieve scouting tapes." tt0416320,EFgCZDRkacU,Chris is made aware of some incriminating evidence when he is brought in for questioning on the murder of Nola. tt0416320,u_Bfpbz3owc,Chris and Chloe share differing views on luck during a double date with Tom and Nola. tt0416320,KduMYNqIGBA,Chris and Nola discuss their current relationships over drinks. tt0291341,KDyJYLDyBzc,"After a talk with the Governor, Danny Meehan plays to lose the game, but the Monk plays to save the game." tt0291341,mbPEuV3NJIg,"Danny Meehan takes a foul shot, but he doesn't aim for the goal, instead he aims for Ratchett's 'jewels.'" tt0209144,QJ3Z0TSIpE0,"Natalie asks Leonard to kill the man who is after her, and is furious when he refuses." tt0291341,G9wDgZk1s6E,"Danny Meehan scores the first goal of the game, and Monk continues with his unorthodox play." tt0209144,R5409gLbXuw,"Leonard meets with Natalie to get information about the man who murdered his wife, and recalls his life before she was killed." tt0291341,zBjq9UbpCtQ,Doc tells Danny Meehan the story of how he ended up in prison. tt0291341,c__26Uyp5eU,Some of the inmates try out for the soccer team. tt0209144,hgGf5X8-j1s,"Natalie offers to help Leonard, and hopes that he will remember her the next time they meet." tt0291341,Zzuc4RiUjJs,"In order for Danny Meehan to convince Sykes' men to play football for the team, Meehan has to win a bare-knuckle fight." tt0291341,Rh-nBzPUoOk,"Danny Meehan is sent to solitary confinement after he assualts guard Ratchett, who beats up a helpless Massive." tt0209144,UyVSJcL-7BA,Leonard tries to comprehend the feeling of loss he experiences for his late wife. tt0209144,i_Y5UB3xxW8,"Leonard discovers that Teddy Gammell is the man he's looking for, and shoots him." tt0117091,OXvNnV-cwFQ,John jokes about his relationship with their Mother as Jeff storms out of the house. tt0117091,Z7C6L3yRYGM,"John and his Mother are shopping when they run into her friend, Helen, and her sister, Alice." tt0117091,H46x8fD7WzE,"On his way back to Los Angeles, John meets a woman at a gas station." tt0117091,3MK7O6w2Mz8,John asks his Mother about her writing and comes to a psychological conclusion. tt0117091,Lg69Gwv4tOM,John becomes frustrated when his Mother tells the Pet Store Salesman that he's divorced. tt0117091,Z8vCm7TUK8c,Beatrice tries to convince the TV Installers that the TV picture looks a little green. tt0117091,RcqR5cnQyUo,John drives to Northern California for an extended stay with his mother. tt0117091,8iqKSKK9_uQ,"John tells his brother, Jeff, that he plans to move back in with their mother." tt0117091,1cCEE8-jhus,John sits down to a meal prepared by his Mother. tt0117091,3SGIHbvcTRc,Beatrice forces John to eat some bad sherbet. tt0119715,Z-GoRxX2exA,The auction gets awkward and silly when the Mouse runs around the room. tt0119715,TVAhhVrpkwM,Ernie sets hundreds of mousetraps but the mouse defeats them all. tt0119715,I0YUjv1u-Gw,The Mouse alters the factory to make string cheese. tt0119715,19WT40D513Q,"During the auction, the house floods and collapses." tt0119715,8I5_zsRI4Zo,"Ernie shoots at the Mouse, but he hits the bug bomb instead." tt0119715,ji4pvRXDMOY,The Mouse gets knocked out and Ernie puts him in a box to be sent to Cuba. tt0119717,WrnyKH7u6DQ,"Lester is intrigued by Dashiell's relationship with Ramona, and later he lies to her about what he does in therapy." tt0119717,LwioGjicbRw,Vince nervously recites his wedding vows in front of his friends and family. tt0119715,irQ89Ny0HkI,The house has a gas leak which causes a terrible explosion. tt0119715,cku1N8eCUlo,The Mouse sleeps inside the walls until he is woken up by nails being hammered into the wall. tt0119717,DDv-GQjcZDA,"Lester admits to Ramona that he's been in therapy to spy on her ex-boyfriend, Dashiell." tt0119715,ziPAPWBYU5A,The mouse triumphs over the exterminator Caesar. tt0119717,e-KbcJI8Rl4,"In therapy, Dashiell tells of a recent romantic encounter with Ramona." tt0119717,cidI_7BQUJE,Lester and Ramona reconnect at a wedding. tt0119717,Pu5OjNuJl30,"Lester spots Ramona's ex-boyfriend, Dashiell, on the street and decides to follow him." tt0119717,fnl5_3zT1d4,Ramona confesses her infidelity to Lester. tt0119717,hXg2LXOwsoA,Lester begrudgingly goes out for a drink with Dashiell and is surprised by their rapport. tt0093605,cktXSK7io8U,"As police surround the motel, Caleb devises and implements an escape plan." tt0093605,fTEPaF5TjWU,Severen gets Caleb in a bar fight with his obnoxious behavior. tt0119715,xfwm9CY5dao,The Mayor chokes on a cockroach and dies. tt0093605,ufcsS9E-JVs,Caleb takes a shotgun blast to the stomach as Severen and the gang finish off the rest of the bar. tt0093605,2QLbTjd693M,Severen plays chicken with a truck driven by Caleb. tt0119717,SKEvjOq6L6o,Lester confronts Dashiell in group therapy. tt0119717,ic5tRp5nKOE,Lester runs to Ramona's apartment to question her when she doesn't answer the phone. tt0093605,qHm2lHzV7tM,Severen kills a biker but laments his victim's poor grooming habits. tt0093605,ClrfnLtqXYo,"Loy, Caleb and Sarah escape from the motel with the help of some bright sunlight." tt0093605,1iiGGpwLdQc,Homer gets out of the car to chase after Sarah even though the rising sun will seal his fate. tt0473692,BSEx_EMtQW8,"All the musicians gather on stage with acoustic guitars to perform ""Comes a Time.""" tt0473692,c_BMbnWPWnU,"Neil Young and company perform the final song of the evening -- ""One of These Days"" -- an ode to the friends and family remembered in the course of a lifetime." tt0473692,U_0oVOS3LC4,"Neil Young performs the classic song ""Heart of Gold"" off his 1972 album Harvest." tt0473692,Y-N5lfNPLnY,"Neil Young performs the aged, autumnal song ""Harvest Moon.""" tt0473692,ddm0aMIKiqY,"Thinking about Hank Williams, and how Nashville has changed over the years, Neil Young performs a heartfelt version of ""It's a Dream.""" tt0473692,SZDFWDc58TE,"Neil Young performs the 1972 hit ""Old Man"" from the album Harvest." tt0473692,4Xvu9fzPGhA,"Neil Young returns Hank Williams' old guitar to the Ryman for the first time since 1951, and plays the appropriately titled song, ""This Old Guitar.""" tt0093605,10GtbJs6GEw,"When Caleb gets abducted, Mae convinces the others to spare his life." tt0093605,ZfCZwP2Qe60,"Unable to kill an innocent truck driver, Caleb sucks blood from his lover, Mae." tt0093605,odWPv33yKAk,"Sarah meets Homer, but she's unaware they're nowhere near the same age." tt0093605,QsXsfrk06-I,"Caleb brings Mae to the horse stable, but she can't seem to relax." tt0119783,eR_BcTP8HOM,"Sam Vigoda presents Jordan Washington unscathed, to the press, to prove he is surrendering himself to District Attorney Morgenstern." tt0119783,PPMM8VRgEUk,Joey Allegretto finally confesses to Sean Casey that he was involved in the police corruption scandal. tt0079640,AWLkXfNg6ek,The North Dallas Bulls get pumped for the game in the locker room. tt0119783,f5f86alm7jk,"Jordan Washington takes the witness stand and confesses his fears, motives, and the details of his involvement with corrupt police officers." tt0119783,6f5ggdRQuB8,Morgenstern pressures Sean Casey into taking on the big case. tt0079640,D3XYhRv-rBU,Seth Maxwell and Phillip Elliot hook up for the final plays of the game. tt0079640,DCT__l4_m4g,"B.A. Strothers, and Conrad Hunter have final words for the North Dallas Bulls before the game, followed by a prayer from the Father." tt0119783,HYvwDxWCSwM,Sean Casey prosecutes Jordan Washington to the point of attempted strangulation. tt0079640,TWqf3iE2Gk8,"While nursing their injuries, Seth Maxwell tells Phillip Elliot a drunken story of the night before." tt0119783,Q3kOA_8ws6A,Joey Allegretto calls for an unusual amount of back-up before going in to take down Jordan Washington. tt0079640,wOp2t0IKnUo,"Monroe goes full speed during a scrimmage against tough guy, Jo Bob. A fight ensues after the play." tt0079640,I6mpHW3SMcc,O.W. Shaddock argues with Coach Johnson over the lost to Chicago. tt0396171,xtz6dAjWz3g,"Jean-Baptiste Grenouille's masterful perfume has a visceral reaction on the crowd, saving him from execution." tt0079640,I4hc-GcHCsE,The team members of the North Dallas Bulls celebrate a victory at a house party. tt0322659,EwdFmqEvG7M,Father Harlan meets with prospective parents Mr. and Mrs. Hope for Irwin. tt0079640,WEszqunyV0M,"While the team trains, Phillip Elliot and Seth Maxwell train there liver and lungs by drinking beer and smoking cigarettes." tt0322659,MjFgD2yLBI4,Irwin haggles with Cup of Tea over the distance of a thousand miles. tt0322659,JWUrJ-zH7fw,Walter and his colleagues guess what menu items are left at Ursula's diner. tt0073190,te366vMoW0E,Linda tries analyzing January's relationships with the men in her life. tt0322659,kRWvfBinmWw,The state Evacuation Committee hold their final meeting. tt0322659,YCN_nis2E84,Cup of Tea accidentally shoots Happy with a tranquillizer gun. tt0073190,BF4-iXXZE-s,Mike attacks Tom after catching him in bed with his daughter. tt0322659,OYuE4tFH7lc,Walter and Willis ask the Stallings to evacuate their houseboat. tt0073190,fp86WZ7Jn5g,January gets upset when she learns that her father married Deidre for her money. tt0322659,VlGVLpW7Dsw,The Hadfields return Irwin to Father Harlan. tt0322659,-_HlyIgHUa0,Marvin and Matt discuss the difference between Chevrolet and Ford owners. tt0322659,wQhcRCuORak,The citizens of Northfork are promised power and recreation from the Northfork Dam. tt0073190,PiyaX2sq_wk,Tom tells January that he doesn't want any type of commitment. tt0120784,x8kclPvcsTI,Porter cautiously waits for his money to be dropped at a train station but is ambushed by syndicate hit-men. tt0322659,Lc1MmNI8jLc,Walter explains death's odor to Willis. tt0073190,Er3iFTlMpmc,January reconnects with an old friend from college who works as the editor of a fashion magazine. tt0396171,xaOERHG7Qr8,"As Jean-Baptiste Grenouille finishes his perfume, the Bishop of Grasse excommunicates him in the town church." tt0073190,IpQkAn4FnkY,January gets into a motorcycle accident with the lead actor in one of her father's films. tt0073190,bLjFBMuBc68,January turns David down when he bluntly admits that he'd like to sleep with her. tt0073190,HHlf5HhqdOs,Mike and January argue about her relationship with Tom. tt0073190,MTRBtcsZwjw,Hugh worries that January may not know what she is getting herself into with Tom. tt0120784,ki8KblCCOuA,Porter confronts Mr. Fairfax at his home and demands to be paid back the money he's owed. tt0396171,SFHSKaQESeI,"After pouring his perfume on himself, Jean-Baptiste Grenouille is eaten by the surrounding townspeople." tt0120784,0r4uUQBLokk,Porter demands money from Val while he's in bed with Pearl the dominatrix. tt0120784,qkTP21NTcgM,"Porter negotiates the money he's lost with Carter, a boss working for a criminal organization known as The Outfit." tt0073190,vqlURGjq4AM,"When the studio offers to buy Mike's screenplay on the condition that someone else produce it, he chooses to swallow his pride and take the money." tt0120784,Ku9rtTERy1A,Porter and Stegman are ambushed by Pearl and a car full of gun-wielding Chinese gangsters. tt0120784,WTs3TbtIwUA,Porter returns to Rosie's apartment to find that Val is holding her at gunpoint. tt0120784,WyjaZFv4lgI,Porter gets some information out of an unsuspecting drug dealer. tt0120784,ePUgjJofgq8,Porter and Val pull a job on a group of Chinese gangsters by ramming their car in a head-on collision. tt0105128,xUAn-hrMa0A,Gus gives Clyde a taste of his own medicine. tt0396171,ilZqZaSUC0Y,Richis tells Jean-Baptiste Grenouille how he will feel watching him die. tt0396171,hrcFkSMZBng,Jean-Baptiste Grenouille is distraught when Baldini tells him that he cannot distill the scent of living things. tt0396171,-o8b7tsVH64,Jean-Baptiste Grenouille uses the scent of a prostitute to create his first human perfume. tt0396171,8wTnBC7doPk,"While lying in a cave alone, Jean-Baptiste Grenouille has the terrifying realization that he has no smell of his own." tt0396171,4F5sPA5E27o,Jean-Baptiste Grenouille follows a beautiful young woman in order to take in her scent. tt0105128,Q9szFqOlDJc,Renee wants Chase and Jeff to join the undead. tt0105128,OwCO4rmsct0,The undead Clyde and Renee show up at the Matthews' house wanting to kill Jeff. tt0067589,TKVyyEsA-so,Norma breaks her diamond ring while attempting to convince her daughter to come out of the hotel bathroom. tt0105128,RMd-tHAtdoY,Chase goes to Gus's house to confront him about digging up his wife. tt0105128,i--0u4m_zZg,Gus forces his wife and son into an oncoming semi-truck. tt0067589,urWMTYuDxME,Roy climbs out on a window ledge in an effort to coax his daughter out of the bathroom. tt0067589,MuBwxePS-s0,Borden finally convinces his fiancé Mimsey to come out of the bathroom and get married. tt0105128,pXIcjMT1SUg,Zowie fatally attacks Gus during an altercation with Drew. tt0067589,03NoI9KiZOk,Jesse compliments Muriel in an effort to seduce her. tt0078111,BvwCwDf6J3w,Violet and the girls holler out to the men on the boat and some of them join them in the lake. tt0078111,QXB9qatHDSU,Bellocq and Violet get married with their friends present. tt0067589,6BDzGP6HuGE,Sam doesn't understand Karen's reaction when she finds out that he has been having an affair. tt0105128,Z18eK57wD3k,The dog Zowie arrives home after being buried. tt0078111,3cqeNsSZYh4,"Hattie comes back for Violet, but Bellocq is not pleased." tt0105128,dv0-EuBX490,"A tragic mistake on the film set of ""Castle of Terror"" costs Renee her life." tt0105128,SZKLpJzv5JY,Gus behaves quite strangely at the dinner table after his cemetery resurrection. tt0078111,pKN_6Javjnc,Violet runs away from the brothel and asks to stay with Bellocq at his place. tt0067589,nTz_lWcgDhA,Roy attempts to get his daughter out of the bathroom on her wedding day by breaking down the door. tt0067589,PBF9pOAjXt0,Karen insinuates that her husband Sam is having an affair with his secretary when he has to go into work on the night of their anniversary. tt0078111,cNLFuTms4go,"Hattie gets ready to leave the brothel to make a better life for her and Violet, but Violet refuses to go." tt0462499,U6uNt6h3_bM,"When the mercenaries do nothing to stop soldiers from forcing civilians to run through a mined rice paddy, Rambo steps in." tt0078111,iJMYIXoFGcQ,Nell takes bids for Violet's first night as a prostitute. tt0078111,VKaGKi9OHQI,Hattie and the girls check up on Violet after the departure of her first customer. tt0067589,tTbqVFrvn0E,Jesse uses his fame to successfully get Muriel into his bedroom. tt0462499,0S5lIhsh2Rc,"As the rebels join the fight, Rambo uses the.50 cal to take down boats, trucks, and a whole lotta soldiers." tt0078111,JSyZq8Eg5eg,The girls prep Violet for the auctioning of her virginity. tt0462499,0zVmdCICQok,"Rambo leads the enemy on a wild goose chase that can only end one way, a giant explosion." tt0462499,1ZeDq4Yo6Jk,Rambo steals a truck-mounted machine gun just in time to save everyone from execution. tt0462499,h_N5IH-bWNE,"When river pirates want to kidnap Sarah, Rambo takes matters into his own hands." tt0462499,IYju9ObPTTw,Michael tries to recruit Rambo to take the missionaries up river to minister in Burma. tt0180093,BKDnwX9P7vo,"Alone in their suffering, Harry, Marion, Tyrone and Sara curl up in the fetal position." tt0462499,Ofifxt45nfg,Sarah tries to convince Rambo to take the missionaries up river to war-torn Burma. tt0462499,XF0e2BjTDh8,Rambo returns to his family farm in Arizona. tt0462499,0njU7LPADwY,Sarah convinces Rambo to keep taking them up river. tt0462499,f_BcfyJea_M,"Rambo rescues Sarah, taking out a guard's throat along the way." tt0462499,iONYYY7lHo4,Rambo forges a new blade. tt0180093,TlcxW8KUzks,Harry calls Marion and promises to come home. tt0462499,1Mx_jHNEBtA,Rambo has a nightmare about his violent past. tt0180093,bkxVMf2ozrs,Marion goes on a date with Arnold to score some money. tt0180093,eqIkFkmb054,Marion pays a visit to Big Tim to score some dope. tt0180093,_d4WkQci7zw,Sara is visited by Tappy Tibbons and her TV self. tt0180093,ncOY7vtsY8I,"Harry tells Marion how beautiful she is, and for the first time, she believes it." tt0180093,6H72hXsLZ8k,Sara tells the ladies she's going on a diet while Harry and Tyrone land a big score. tt0180093,oYcKftzUS_Y,Sara Goldfarb talks about fitting in the red dress and what it means to her. tt0215129,6XWpPwp8p_0,E.L. convinces Kyle to let the guys jump across a broken bridge in his Ford Taurus. tt0180093,mkYNhZvlHv0,Harry and Tyrone get high and formulate a business plan. tt0180093,2BtZY3z72jY,Tyrone gets arrested after the limousine he is erupts in gunfire. tt0215129,2mSiP5Bbdxw,Josh and the guys enjoy some hospitality from members of a national black fraternity. tt0180093,U-JAuw8FsrA,"Harry, Tyrone and Marion make money selling drugs." tt0180093,7TBwFfjXd3s,Sara starts her new diet. tt0215129,HNfciDzZTNM,Kyle falls victim to the shameless behavior of a deceptively polite waiter. tt0337711,qokWn0jfbM4,Nigel Thornberry and the babies are saved. tt0215129,A6CTejBh5QU,Barry's grandpa gives Rubin some advice while the two share a joint on the front porch. tt0337711,QKKrwhcVEJA,Chuckie Finster meets Donnie Thornberry. tt0337711,bNbi_KLd_Uk,Donnie saves Nigel Thornberry and the babies from a hungry jungle cat. tt0215129,R1JHZFJyWds,Rubin asks a rude motel clerk if he knows where he can buy some weed. tt0215129,-rtUvlR1pZE,E.L. gets an unexpected surprise when he asks a nurse to assist him at a sperm bank. tt0337711,gpytphKy7a0,The raft lands on an uninhabited island and Angelica is reunited with Cynthia. tt0215129,pl2HDVRj_4o,Josh discovers that Rubin has accidentally mailed a sex tape he made to his long-distance girlfriend. tt0215129,Pz3SOdEw0LY,Kyle shows his dance moves on stage with fraternity members after getting drunk at their party. tt0890870,HtxIqa2mXaA,Rigg finds Morgan still alive after a traumatic experience with her abusive husband. tt0337711,zXBPTIjfZgA,Eliza Thornberry meets Spike. tt0337711,wz4HLeURVOQ,The family misses their cruise ship ocean liner and instead settles for a used ship ocean clunker. tt0337711,6UvEeQC0Odc,Tommy and the gang pretend to film a wildlife documentary in the jungle. tt0420251,5wUu-cKYMgI,"After the Stranger puts three fingers in the blender, the Director's Wife has some advice for her husband." tt0420251,3AD_sQbn9EY,The Stranger shows off one of his talents. tt0337711,ajBK8B_kYO0,"As Charlotte Pickles and Betty DeVille help everyone to safety, Angelica's doll goes overboard." tt0420251,sqjS__9_Irk,The cause of the death of young Shoko is revealed. tt0420251,ak4mtSDwxV4,Kyoko has a recurring dream where she is buried in a box in the snow. tt0388395,DLasTex8Vnk,Schultze chats with a lady in the hot tub in Texas. tt0890870,FYo6dKubr-Q,Rigg forces Ivan into Jigsaw's machine where he must choose between his eyes and his body. tt0420251,hp3inTPISwQ,The Director does not recognize his kidnapper. tt0890870,lMy-kxTpXKA,"Rigg fails his test by breaking into another room, with deadly consequences." tt0388395,sLlQvz0y7QM,Manfred loses his cool during a chess match. tt0420251,CwowG9t4bPU,"Mrs. Li, in a desperate attempt to retain her youthful looks, consumes her own offspring." tt0420251,URHjEpowEcw,Kyoko gets a glimpse of her lost sister and tries to explain what happened fifteen years ago. tt0420251,BLVhog_zX68,Mrs. Li visits Aunt Mei to try her special dumplings for the first time. tt0420251,lhhxZt-oU38,Kyoko is forced to watch the opening of the box in which her sister Shoko died. tt0388395,RZ-__QD99DA,The guys meet the new barmaid named Lisa. tt0890870,lA2ubmfr6Dw,Eric Matthews pretends to die so that Art will come over to him. tt0890870,i3jmM-Fc5Nk,Eric Matthews is kept prisoner over a six month period. tt0420251,qOeMwWgruZw,Just another day at the office for Aunt Mei as she acquires the secret ingredient for her dumplings. tt0420251,QDeWmH3M9-M,The Stranger explains the rules of his sadistic game. tt0890870,qZPjRshIz4s,Hoffman is called to the morgue when a tape from Jigsaw is found inside his own stomach. tt0388395,PykWxPq9JEE,Schultze plays the Zydeco blues tune he heard on the radio for his local music club's 50th anniversary. tt0388395,LCEr8N9zXy8,Schultze visits the doctor because he fears his newly discovered taste for the blues may be an illness. tt0388395,qpZBUlqRoeA,Schultze's boat is stuck and Captain Kirk helps him. tt0890870,oOl1Kvh2Zwg,Rigg rushes to save Detective Kerry despite warnings from Hoffman. tt0388395,uyfrK4LrXaQ,Schultze catches the blues on his radio and likes what he hears. tt0890870,3VfuSHP-57o,FBI Agent Strahm explains to Hoffman that the device wasn't made by Jigsaw alone. tt0890870,oHyebwN9XXU,Officer Rigg gets to the motel and finds a recording from Jigsaw with his next task. tt0890870,IwcQ6LDdW9Q,Agent Strahm and Agent Perez discuss Kerry's last message while Rigg is attacked in his home. tt0189998,ohgN4PexEv4,Murnau and Schreck argue about how to finish the film. tt0189998,nALXcRjbVzs,Murnau and Schreck clash over their visions for the film. tt0189998,-lAXOMpPqYM,Murnau continues filming as Schreck finally faces the sun. tt0189998,JuvJl9iwKb4,Greta needs to be calmed down because Schreck casts no shadow. tt0189998,SLNBos63EkY,Murnau stays focused on getting good footage as things continue to crumble around him. tt0046303,Ternps0JFwo,Shane teaches Joey Starrett the basics on how to use a gun. tt0189998,cEafT-GQfv4,"Wagner, the new cameraman, arrives and immediately establishes his way of doing things." tt0189998,2nChsqAPyHw,"Gustav accidentally cuts himself during a scene, causing Schreck to scare everyone." tt0189998,kVPIOjjbIpY,Schreck warns of his peculiar eating habits. tt0454945,Ua3NXljreQ4,The real Sebastian gives everyone proof that he is a boy. tt0046303,CWnDVW07_1c,"Jack Wilson provokes Frank Stonewall"" Torrey to draw his gun." tt0189998,h5jZBcDev1s,"While filming, Gustav meets Schreck for the first time." tt0046303,V1l3TboL5MI,Shane takes out Jack WIlson and the Ryker Gang. tt0046303,DtoCw2iOTSc,"Shane rides out of the town alone, with young Joey calling out to no avail, ""Shane, come back.""" tt0046303,YklwFCfEEMM,Shane teams up with Joe Starrett and take on the Ryker gang. tt0046303,0TjrNjcFv_A,Shane is confronted by Chris Calloway as he buys a bottle of soda pop at the bar. tt0046303,f3z_ene1G6c,Shane is offered water by Joe Starrett as he passes by their farm. tt0454945,opCf3mp24dE,Viola reveals her true identity to everyone. tt0184907,9LvdctnZeWE,Lane reveals to Hal how she feels about him. tt0454945,FxjONf9AXEs,"Olivia Lennox flirts with Duke to make Sebastian"" jealous." tt0046303,4aRryzzZLTI,"Shane buys Chris Calloway a drink, and a punch." tt0454945,yNs0hmNinA0,Olivia Lennox and Monique have a disagreement and Viola is caught in the middle. tt0454945,ntQrC5iclmI,"Sebastian"" gives Duke some tips for talking to girls." tt0454945,ofIzQbTGQ2E,"Sebastian"" meets the roommates and demonstrates an alternative use for tampons." tt0454945,HOoHh7wHtvQ,"Sebastian"" has an intimate chat with Duke as a completely objective third-party outsider with absolutely no personal interest in the matter." tt0454945,NY8m6lManpQ,"Headmaster Horatio Gold welcomes Sebastian"" to the school." tt0184907,e2-VnrdN_Ng,"Natalie and her recruits fight back against Snowplowman, finally immobilizing his efforts to prevent them from having a second snow day." tt0184907,MlRFw1CvPd4,"With the knowledge that Claire is watching the news, Hal steps in front of the camera to communicate his feelings to her." tt0184907,nr7ui14-O_Q,Hal's romantic gesture is interrupted by Claire's boorish ex-boyfriend. tt0184907,sKrqOTg_FJY,"Hal goes to Claire's house with the intention of telling her how he feels about her, but he soon discovers that every guy at school had the same idea." tt0184907,t0Yf_fvD-lY,Natalie tries to get Hal to join her in the quest for the legendary second snow day. tt0184907,7sUwnda1FUs,Natalie rejoices when she wakes up to a very snowy morning. tt0184907,G4BGtSvviS0,"Hal admires his crush, Claire Bonner, from afar." tt0184907,vg6-AbLe5nM,Lane and Hal chat about romance. tt0040823,1DkaN1nDQoY,Leona tries to talk Henry out of looking for a job where he won't have to work for his father-in-law. tt0489281,XAWdzV2Bafw,Brandon expresses to Steve his guilt for the fallen soldiers under his leadership. tt0040823,ZSKSNo2z8AM,Henry's father-in-law tells him how it's going to be: he's going to do what his daughter wants and keep working in the family business. tt0040823,6MbOPK4TCB4,"While Leona tries to call a nurse, a man breaks into the house and listens to her phone call." tt0040823,XLSkfVJxbwo,Leona wines and dines Henry into a loveless marriage. tt0040823,s4AzrUO3D1w,Henry confesses everything to Leona and warns her that she only has three minutes to live. tt0040823,J0IxGD8-6Cc,Leona drops a lot of hints and comes on to Henry pretty strong. tt0040823,Ma6SDu0V98Y,Leona overhears two men plotting to murder a woman when the operator crosses their phone lines by mistake. tt0040823,zdyBsGHbs4k,Leona receives a disturbing telegram that helps her put the terrible pieces together. tt0117731,s3RNsZvdYZQ,Picard makes his case for vengeance against the Borg. tt0489281,u3A8DoRXiSI,Brandon and Michelle visit Pvt. Rico Rodriguez. tt0117731,sMt3SzAH_i0,The Borg Queen reveals herself to Data. tt0489281,gzQt5VctFfI,Brandon expresses his grievances with the Iraq War to Michelle. tt0117731,EaPpa-eoxi4,The Vulcans arrive on Earth and make first contact with Zefram Cochrane. tt0040823,78RKzUAQD40,The incessant ringing of the doorbell drives Leona out of bed. tt0094072,8fvhchY0UmY,Principal Kelban takes note of the dramatic increase in the students' grades and grants Mr. Shoop tenure. tt0094072,QL412_xWtT8,Mr. Shoop attempts to teach Denise how to drive. tt0489281,J6JcrLIvKUA,Brandon is stop-lossed and tries to reason Lt. Col. Boot Miller. tt0117731,DYE3nm9voUk,The Phoenix blasts off into outer space but Zefram Cochrane thinks he forgot something. tt0117731,lDa6qc93nNs,The Borgs attack the USS Enterprise crew. tt0489281,CttvEq-ypno,"Despite his battle injuries and disability, Pvt. Rico Rodriguez admits to Brandon that he feels lucky for his survival." tt0117731,D4QyCdRvXr4,Picard must stop the Borg from hijacking the deflector dish. tt0117731,JnN-SR_2ovA,Picard faces off against the Borg Queen. tt0117731,5Z8LHf9J6PQ,The Enterprise crew explain to Zefram Cochrane the importance of first contact with Earth. tt0094072,-5Pku48YPFo,"The students recreate a scene from The Texas Chainsaw Massacre"" in an effort to scare away the new substitute teacher." tt0117731,t4DCOpG1oNE,The Enterprise arrives to battle the Borg Cube. tt0324127,MA6g7AEH_kA,"When looking through O'Ryan's old room, Mackelway discovers that he is being tracked." tt0094072,B7ZTNm5o780,Mr. Shoop gets personal about Robin's relationship with Vice Principal Gills. tt0489281,GB7Cq_W4-U4,Brandon visits his parents before going AWOL with Michelle. tt0489281,CYF7eLv3hMw,Brandon jumps into the motel swimming pool to save Private Rico. tt0324127,RVevBZFMkys,O'Ryan begs Mackelway to kill him in order to make the visions disappear. tt0094072,u0kF24ceZMI,Mr. Shoop finds one of his students working at a strip club and encourages him to quit and focus on his studies. tt0094072,jJiKYmmWiCA,Vice Principal Gills blackmails Mr. Shoop into teaching remedial English at summer school. tt0489281,x5Nu0PPrI-E,"When Steve trashes his house in a drunken rage, Brandon shows up to assist Michelle." tt0094072,farC0cWkpvc,Pam openly expresses her true feelings for Mr. Shoop at a house party. tt0094072,LzdoMQL_jR8,"To avoid getting fired from his teaching job, Mr. Shoop adheres to his students' proposition." tt0324127,njlI82MV0gk,Mackelway discovers the remains of several dead children when searching a suspect's attic. tt0324127,rroHhssQbok,Mackelway visits Professor Dates to learn more about the theory of Suspect Zero. tt0115571,sTI1U2BiTNk,Zane investigates a Planecorp plant and makes a sinister discovery. tt0324127,0ROplAtLJvo,O'Ryan tells Mackelway how Project Icarus destroyed him. tt0094072,KkLV3MzJM_8,Mr. Shoop acquaints himself with his students for the first time. tt0115571,s4nMGnlbq9I,"During their escape attempt, Zane and Char come under the attack of Gordian's alien henchmen." tt0094072,9OFoTABYnY0,Mr. Shoop makes a second attempt at asking Ms. Bishop out on a date. tt0115571,WO-1MybFFvI,"Mysterious agents clean Zane's home quite thoroughly, using the power of a tiny singularity." tt0115571,rs1V8Sxp3ZY,"Escaping the underground base, Zane uses the aliens' own deception against them." tt0115571,akYf73cUU6U,Zane gives Kiki a message to share with his people. tt0324127,YFUCezoyzyk,Mackelway tries to convince Fran and Rich that they are going after the wrong suspect. tt0324127,zAc3K7mjlxs,Mackelway watches O'Ryan's video describing a secret FBI project. tt0324127,VwP_-8SCu5s,O'Ryan uses a FBI mind technique to locate Mackelway at the scene of a recent murder. tt0115571,FCcdMEItd-U,"Zane investigates the growing conspiracy with Char, while Ilana prepares for bed in a scorpion-infested room." tt0115571,lL2AwD_4G8w,"After nearly being killed, Zane chases the perpetrator through the streets of Mexico." tt0115571,TnwtTQlfaQo,Zane extracts the dangerous truth from Phil Gordian. tt0324127,ZG4DMIhSIZY,Mackelway and Fran discover a corpse in an abandoned car. tt0115571,e0wRbbzTdhQ,Zane snoops around the underground alien base and witnesses an amazing -- and insidious -- transformation. tt0115571,NmNveyfhpBg,Zane attempts to explain what the aliens look like to his young neighbor. tt0115571,GNQ2LOxMi9Q,Zane and Char reflect on their relationship in the record-setting heat. tt0185937,8TJk9N4RrNM,"The day after Josh goes missing, Heather finds a bundle of sticks laying outside the tent, bound with strings torn from Josh's t-shirt." tt0064045,ETqX2DZqAN8,Ivan kills Baron Muntzof before he can kill Sonya. tt0064045,ArSEv2hjwzE,Sonya finds the ticking bomb in her room and quickly disposes of it. tt0064045,CKJcpp8ff44,Ivan destroys the blimp before Lord Bostwick gets the chance to release the bomb. tt0185937,6_Onrl4g6H4,"When the crew reaches the river and finds the same log they crossed the previous day, Heather collapses in tears." tt0064045,3Dit-yAwTgY,General Von Pinck hides a small bomb inside the sausage Ivan and Sonya ordered. tt0064045,s0_sBamhlIs,"Lucoville tries to gas Ivan and Sonya out of the room, but Ivan beats Lucoville at his own game." tt0064045,IypE3rPP4sc,Popescu tries to assassinate Ivan but Ivan sets him on fire first. tt0064045,WRtOCCfKEvQ,"When Sonya delivers a briefcase to the director, she finds out there was a bomb in it." tt0064045,tIB4z4uMeNs,Sonya wants Ivan killed and he thinks it's a marvelous idea. tt0321442,j2lG-WtrrsA,"A hooker named Candy shows up out of the blue to warn John about a man known only as The Cowboy. Later, when she realizes that John is a B-List actor, she asks for him for his autograph." tt0321442,d8FIxfJaAYM,John meets an oddball local by the name of Dan who thinks that there's a major conspiracy afoot in the desert. tt0185937,cmYsRcLMvO8,Heather and Mike follow the sound of Jake's screams into an abandoned house in the middle of the forest. tt0321442,ep7wuwsdgqA,"A nebbish man by the name of Neely convinces John to take a mysterious suitcase out to the desert town of Baker, California." tt0321442,E6jJUN52anM,The Cowboy and Ruthie try to convince John to join them in paradise. tt0321442,1c15w3kCHkw,The Cowboy manipulates John into an even worse deal by holding his friend Grace hostage. tt0321442,DKMzt447niI,"Bob has a philosophical discussion with John about life, death, and long road in-between." tt0185937,2m_lqGnLtWA,Heather films a confessional where she admits fault for all of the events that have transpired. tt0321442,n4hHWb2UUQI,"After Ruthie tells John a story about UFOs flying over the desert, they engage in a massive flirt session by using whip cream and Jack Daniels as key ingredients." tt0321442,n3F7_uaZUzU,"Held at gunpoint by Randy, and with his life in peril, John is saved by the mysterious Cowboy." tt0321442,D8e-_q_iG6Q,John inverts the hostage scenario by threatening to shoot Ruthie -- the hostage -- if Randy -- the captor -- doesn't let her go. tt0185937,bKy6BtAbTU8,"The crew rushes back to the trail after they find a series of strange rock formations outside their tent, but Heather discovers that the map is missing." tt0185937,nLKymV5rwAU,Mike discovers some strange stick figures hanging from trees in a nearby clearing. tt0185937,ntgrRUML2ic,Heather and her crew shoot the first scene of their film and then hit the town to interview residents about the legend of the Blair Witch. tt0185937,5ZHYDynRjV4,The crew discovers a strange rock formation near their campsite. tt0109340,w7ZY9tqDsEc,Mr. Crocker-Harris addresses the school auditorium on his final day of work. tt0109340,L4fJ1ht5TJM,Frank speaks to Andrew about his wife's indiscretions. tt0109340,CcPqBfuXdCo,Laura has some disheartening news to share with her husband Andrew concerning a gift he's just received from a student. tt0109340,92qwWy1aKH4,Mr. Crocker-Harris is shaken to the core when his pupil Taplow gives him an inscribed gift. tt0109340,sQFqzFD78Ck,Mr. Crocker-Harris is given the bad news from Dr. Frobisher : he won't be getting his pension after all. tt0109340,9H1gvvzRk9o,"Laura visits her lover, Frank, who has begun to feel guilty about their affair." tt0109340,JlbIb4XdF4M,"Flirtation surfaces between Frank and Laura, the wife of Mr. Crocker-Harris, just as the professor arrives home." tt0109340,u74DpEZeHbg,"Before Mr. Crocker-Harris arrives for his last class, his students speculate over his reason for leaving the school." tt0051436,qDJg1qnedF4,"Lafitte confesses to sinking the Corinthean, even though he was not the man responsible." tt0051436,2Yu7LGZcPus,"After Lafitte kills Captain Brown, Bonnie wants revenge and the other pirates want a share of the gold." tt0109340,fSqvtspQonw,"Taplow attempts to ask a favor of Mr. Crocker-Harris, a spiteful headmaster on the verge of retirement." tt0051436,SkEOY1s78e4,Gen. Jackson agrees to release Lafitte in exchange for gun powder and flints. tt0051436,gqU37m6uoFw,"When American congressmen speak of surrendering to the British, Gen. Jackson makes it very clear that surrendering is not an option." tt0051436,jBYxPuIGu_o,Annette offends Lafitte when she confesses that being with a pirate contradicts everything that she and her family stands for. tt0051436,vfW0mLeRXe8,"After Captain Brown pillages and burns an American ship, Lafitte hangs him in front of the crew." tt0101523,-uhpev-dp2M,Marina shows Alex how her clairvoyance works by performing a reading on him. tt0051436,FEddJ-WcZfU,A fight breaks out at the pirates' market when Bonnie refuses to give up fifty-percent of her earnings to Lafitte. tt0101523,oWuYilt9hX8,Marina and Alex battle it out over their different interpretations of life's meaning. tt0101523,2CcanSjYzlM,Alex's professionalism goes out the window when he tries to steer Stella in the wrong direction for his own benefit. tt0101523,-i9mrpATCms,"Alex tries to explain away Marina's vision with psychobabble, and later accidentally exposes her husband's affair." tt0101523,7Qe11Thhwvs,Marina and Alex discuss the idea of one's other half. tt0101523,sOesH75ggbQ,"Leo falls in love with Stella when she sings a seductive song by his favorite artist, Bessie Smith." tt0101523,nhKgGtFIqXY,"Stella goes into Grace's shop looking for something dowdy and plain"" but Marina convinces her to get something more flashy." tt0101523,IomS4eaONdg,"Leo and Stella express their feelings for one another, but they refrain from acting on their impulses because of Leo's marriage to Marina." tt0298814,R-PAimSAL08,The crew stops drilling inside a geode surrounded by hot lava. tt0298814,jr7HNZg0ljU,Dr. Josh Keyes explains to the government that they can not dig deep enough into the Earth's core. tt0298814,jK0s7zfdDOc,The San Francisco Golden Gate Bridge melts due to shifts in the Earth's atmosphere. tt0298814,ZkynnGqL7QM,The crew drills into the Earth's crust for the first time. tt0298814,6BGmQ21EekY,The ship encounters a drilling problem when the rock contains empty space. tt0298814,Qz836czauEk,The city of Rome is destroyed by electricity because the Earth's magnetism is unstable. tt0298814,MAu2e0VbvY4,Problems with the Earth's core and electromagnetic fields cause birds to panic and attack London. tt0298814,0x05PrIasjk,Dr. Ed 'Braz' Brazzleton goes out of the ship to deactivate a safety switch and is killed by the intense heat of the molten rock. tt0298814,b_HhiU1mOwU,Dr. Ed 'Braz' Brazzleton shows off the element Unobtainium and the designs for his ship that can drill to the center of the Earth. tt0435625,tenCir3A3cE,Sarah and Juno team-up and take down a room full of crawlers with unreal savagery. tt0435625,lRjxk7z0kOQ,Sarah hides in a pool of blood to evade the crawlers. tt0435625,RkH6Q6d8ihA,"As they climb to safety, Sam and Rebecca are left vulnerable to an attack by the crawlers." tt0435625,01X3KxC5GfM,"Beth warns Sarah to not trust Juno, before begging to be put out of her misery." tt0435625,YiD9zhs0Lt8,"Juno murders one of the crawlers before it has a chance to kill Rebecca. Later, Sam studies the creature and tells the gang that it hunts by using sound." tt0435625,Gq3WJ-sJj7I,Juno single-handedly kills a swarm of crawlers but then accidentally attacks Beth when she startles her from behind. tt0435625,EOSJ6vijGyo,"The girls get their first glimpse of the cave-dwelling creatures, and one of them brings Holly to an abrupt and brutal death." tt0435625,V7-kCVemvVI,Juno puts her life in jeopardy when she chooses not to use the rope to get to the other side of the cave. tt0435625,HbdxvncHvCs,"Pinned by collapsed rocks, Sarah tries to suppress her fear as Beth tries to rescue her." tt0435625,faZ88f6Gfzc,The girls get angry when Juno reveals that she has brought her friends to a new cave that has not yet been discovered. tt0116240,UnSxnVp8FzM,"Aurora Greenway reconnects with Garrett Breedlove, and they scatter the ashes of her deceased friend." tt0116240,cJeYngoI1oA,Aurora Greenway is comforted by her family on her deathbed. tt0116240,0mwMM8VrYmw,"Melanie Horton calls Aurora Greenway, and they have a heart-to-heart about life." tt0116240,vq8OmtyOsR8,Aurora Greenway and Patsy Carpenter get into a heated argument aboard an airplane. tt0116240,s5XdRd5SQIw,"Aurora Greenway visits Tommy at the prison, and gives him a heartfelt gift." tt0116240,Hv-n7C1EU3U,"Aurora Greenway takes Jerry Bruckner to dinner, where they discuss their relationship." tt0116240,lp0FOpFdWi8,"Aurora Greenway confronts Jerry Bruckner and Patsy Carpenter about their sexual relationship, and discovers why Jerry is so interested in her; she resembles his mother Lola." tt0116240,bAyb9cEDh2E,Teddy Horton and Melanie Horton reminisce about when they were children. tt1320253,jFP9_AxrurA,Barney and the Expendables go on the offensive after detonating a huge explosion. tt1320253,z0j4sVZHUdo,Christmas shows off his knife-throwing skill while the team celebrates the end of their mission. tt1320253,xEIhAu0v-kU,Barney and Christmas rescue Sandra from the threatening hands of Monroe. tt1320253,tQkTtnCV1n4,Toll Road and Paine have a heated battle in the middle of a chaotic gunfight. tt1320253,z8lDbb_76Ug,Gunner and Yin face off in a duel that pits the Expendables smallest member against its biggest. tt1320253,ac6FZ59tna4,Barney and Christmas spray jet fuel on a dock full of enemy soldiers to trigger a huge explosion. tt1320253,6SyjoKS9CXM,Barney and Yin try to outrun Gunner after they discover he's sided with the enemy. tt1320253,sVbhGDytHk4,Christmas interrupts Paul's basketball game to discipline him for mistreating a lady. tt1320253,2TWpil1VJ8I,"A group of enemy soldiers gets annihilated by Hale Caesar's massive rifle, Omya Kaboom." tt1320253,ShB8ZLISubA,Mr. Church calls in Barney and Trench to offer them a dangerous job in the gulf. tt1320253,q9n96my-QzI,Barney and the Expendables are tasked with rescuing hostages from a group of heavily armed pirates. tt1320253,uAO727Dw9hg,Barney runs to catch a plane just before it becomes airborne. tt0093075,25_Kvrl7agM,Glen goes to war with the demon he unleashed in his living room. tt0093075,UOOGD4DLy-0,A giant demon emerges from the Gate and gives Glen a horrific gift in his hand. tt0093075,CKGHiP4bs84,Glen and Al battle a zombie that's more than what it appears. tt0093075,2mXAB3HO160,Terry gets in touch with his inner demon-lord. tt0093075,YOtz3kdBKW8,The old gods disguise themselves as Glen's parents. tt0093075,Z8leMw24Nbc,Al ventures outside and pays for it. tt0093075,0SMMbr2kXc8,Terry comes downstairs to discover the ghost of his dearly departed mom. tt0093075,VOVOizcl4Gc,Glen is left to fend for himself when his treehouse comes under attack by supernatural forces. tt0093075,EmeHbU_s7Cg,Al and her friends try to levitate her little brother Glen. tt0219699,8ZYQejxdHdc,David questions Donnie about his history of violence. tt0219699,r8zjtGUA6tU,Annie describes her psychic abilities to the jury. tt0219699,uY9VcYt2bKE,Sheriff Johnson tells Annie that she defended herself against Wayne. tt0219699,daPR5OjY6bI,The truth is revealed when Wayne takes Annie to the crime scene. tt0219699,8TG4sr_y-Ys,Annie tries to stop Buddy from burning his father alive. tt0219699,nQunClrM4co,Annie receives a disturbing vision after Jessica asks her to foretell her upcoming marriage to Wayne. tt0219699,zgEYrXfWhWs,"Annie envisions wilting flowers, dripping blood and a fiddler on the bayou." tt0219699,fMI2u6Jp1FE,Annie talks Buddy through a frantic episode. tt0064505,bW0aNTB523c,"After the heist, the crew dumps the Mini-Coopers off the cliffs of the Alps." tt0064505,V3s3OXOzoH4,"A Lamborghini Miura drives through the Italian Alps, enters a tunnel, crashes and explodes. A bulldozer dumps the remains down a steep gorge." tt0064505,5ntVWRhfqo0,Charlie Croker reclaims his fancy Aston Martin after it has been in storage for many years. tt0064505,RtWkewqIFDM,Charlie Crooker and his crew speed around Italy in Mini-Coopers to escape the police on motorcycles. tt0064505,3hcmGG6VUsU,"Altabani flips Croker's Aston Martin DB4 into the gorge, but Charlie Croker talks his way out of being killed." tt0064505,sOGhuhC4AF0,The drivers of the Mini-Coopers get their cars into the getaway bus. tt0064505,HZCaSyid4m0,"The back of the bus is left teetering over a cliff, and as the gold slides towards the rear, Charlie futilely tries to save it." tt0064505,GHRFqRbAx1o,Charlie Croker and his crew steal gold in Italy and transfer it into Mini-Coopers. tt0064505,T_ZImfAxOu0,Charlie Croker in a Mini-Cooper races around the Fiat Lingotto factory to escape from the police. tt0064505,7_PX1cVuaVA,Arthur blows up a truck when he was only supposed to blow off the doors. tt0074777,df1mSOyvsXU,Monroe Stahr recites his scene again but this time Kathleen Moore is in the story. tt0074777,_8GB76HyNNU,"Monroe Stahr picks a fight with Brimmer, but it doesn’t last long." tt0074777,isgx4Srs9t8,Monroe Stahr makes a jerk of himself when he drinks too much while out to dinner with Brimmer and Kathleen Moore. tt0074777,eC2O1zsfn2c,Monroe Stahr watches dailies and makes the unpopular decision to have the scene re-shot. tt0074777,TqL70V8rn9I,Monroe Stahr gives a presentation on filmmaking. tt0074777,FIGm0YdXotI,Cecilia Brady offers herself to Monroe Stahr. tt0074777,CSwnlwsBAFU,Didi lives up to the Hollywood diva stereotype and stubbornly insists on filming another take. tt0074777,6lw33XpYhGs,The studio suffers damage from an earthquake and Monroe Stahr spots a floating beauty. tt0385057,prGnVwLgxPc,Ed walks in on Cathy in bed with another man. tt0385057,HwHADsTOVMs,"Cooper performs as Hamlet, but remains a lady killer to the end." tt0385057,Fqeo-bUOueA,"Ellen comes to the rescue of Ed, who describes his terrible weekend." tt0385057,OgU8mEFGcfA,Cooper admits that he paid a prostitute to seduce his brother Ed. tt0385057,f-zgBlWksMc,Cooper attempts to release his brother Ed from police custody. tt0385057,rILBK11XLA0,"Ed goes home with Kim, a sexy woman who wants to have some late-night fun." tt0385057,Cg6X7ukYzTo,Cooper prays for his brother to return home. tt0385057,I0jMv9vF9MI,Ed makes small talk with Susie while Cooper gets busy in the other room. tt0385057,TnUS6tDANfc,Ed shows off his advertising skills by winning over a client with his idea for a snappy commercial. tt0385057,pbSX1diNIlY,Ed goes to the laundromat and the gym to pick up girls. tt0380510,tJimPUh3vmQ,Susie finally gets the chance to kiss Ray. tt0385057,8d6AniF_vxg,Ed's flatulence leads to an awkward moment in the elevator with Ellen. tt0385057,q0DZLuG2FiI,Cooper and Ed pretend to be priests to meet single girls at a funeral. tt0380510,_k8uSp3-900,Ray gets the courage to ask Susie out on a date. tt0380510,5y719xX1I5U,Lindsey Salmon breaks into Mr. Harvey's house and finds a notebook filled with evidence that he killed her sister. tt0380510,SfL4U_bOGvc,Jack Salmon figures out that his neighbor George Harvey was responsible for Susie's murder. tt0380510,rGR6aO4JsH0,"Jack Salmon follows Mr. Harvey to the cornfields, but when he goes to attack, he realizes that he's been chasing Clarissa and her boyfriend Brian." tt0380510,FKj1vfHB2i0,Susie realizes that she's stuck in a place that lies between heaven and earth. tt0380510,M-APah17AQA,Mr. Harvey lures Susie into his underground hideaway. tt0380510,Nc_b69ag6Eo,Detective Len Fenerman questions Mr. Harvey about the recent murder. tt0380510,xam8pRUej7A,Jack Salmon spends time with his daughter Susie teaching her how to make a ship in a bottle. tt3595776,wXnYmZhdm04,Felix and Oscar argue over what to do when the driver of their car dies suddenly. tt3595776,jepTSaMF2ZM,Felix and Oscar become roommates once again. tt3595776,0q3BH18BmZI,Felix and Oscar slap on some new underpants and hit the bar. tt3595776,j6_umKYN_JU,Felix loses his temper when he finds out Oscar forgot to pack his suitcase. tt3595776,hsE1N5mfvmA,Felix and Oscar attempt to hitchhike to the nearest town. tt3595776,lJIPM69YQNY,Oscar pulls a prank on Felix in the rental car. tt3595776,A4ktp_9Q5Es,Brucey calls to tell Oscar he is getting married to a woman named Hannah Unger. tt3595776,Pv4M77BcywE,Oscar and Felix reunite at the airport. tt0071970,k4DsinIrAjQ,Rintels tells Frady to stop creating news and simply report it. tt0071970,WcZSEqj45Ws,Frady tries to escape from the convention hall without being framed as the assassin. tt0071970,I1OmcMDFR0Y,Frady watches helplessly as Hammond is gunned down by an assassin. tt0071970,0iSD31ToSC8,"Frady tracks down the elusive Tucker, whose paranoia turns out to be justified." tt0071970,hN952f_jn8E,Frady watches the recruitment film designed to find assassins for the Parallax Corporation. tt0071970,V9jD7kLAmPM,Frady is betrayed by Sheriff Wicker as the rushing waters of a dam quickly approach. tt0071970,raLZ6l174_k,Frady steals a police cruiser and leads a small town deputy on a wild chase. tt0071970,2RQNDXuAIJI,Frady gets into a brutal bar fight with a small town deputy. tt0314498,cfILhtwu9S0,Kyle comes home after a stressful day to find his mother grading standardized tests. tt1129442,VF609NvGcCM,Frank makes his car pop a wheelie in order to drive between two massive semi-trucks. tt0227445,WwHpeDtSMmc,Nick Wells and Max negotiate a deal. tt1129442,LfDjQe0B7Tw,Frank beats up a bunch of thugs who try to recruit him for a shady job. tt0443295,ygOrLkyfHsw,Frank and Helen find that they both have unusually large families at their high school reunion. tt0071970,WEScYukcD1Y,Lee tells Frady that her life may be in danger. tt0314498,TrxSTI517Iw,Desmond's Mother pushes Roy out of bed and into the shower with some tough love. tt0071970,KoNukbGYfFY,Senator Carroll is shot and killed at the Seattle Space Needle on Independence Day. tt0314498,arfamPuUOek,The group meets at Kyle's house to discuss the details of the heist. tt0314498,shO2tSVK0IU,"Kyle, Francesca and Matty break into the room where the SAT answer sheets are stored." tt0314498,_ewnZCc0imw,"When the group is unable to acquire the answer sheet for the SATs, they must work as a team to answer the questions themselves." tt0314498,I-xX6foX9zw,Francesca starts an argument with Anna to test the solidarity of the group. tt0314498,hdVQlYgFRuM,Francesca comes up with a disguise that will help Kyle and Matty gain access to the ETS building. tt0314498,LTqaoTSCTc0,"Roy, Kyle and Matty infiltrate the ETS building in search of the master answer sheet." tt0095897,rz41nM47q7Y,"With Colonel Caldwell pinned down by gunfire, Major Maclure chooses to make the ultimate sacrifice in order to make things right." tt0095897,vXsKVaJTQCA,"Detective Austin charms his way into, like, some information from Grateful Dead loving dispatcher Gloria." tt0095897,bQInfO7fE-s,"Trapped in a water bottling plant, Detective Austin and Major Maclure fight intimidating personal assistant --and jewel smuggler-- Mark." tt0095897,_BMYVDOOQ0E,"Detective Austin finds out more about Colonel Caldwell's daughter Donna, mostly on the trunk of his car." tt0095897,GpEhxhSoFAU,Detective Austin has to give chase through Chinatown when Colonel Lawrence resists arrest and makes a break for it. tt0095897,M9CkGS1O5WM,"Realizing that he's going away for good this time, desperate prisoner Howard gets his hands on a gun and tries to make a break for it, only to be faced down by Detective Austin." tt0095897,9Dka54jH9po,"When Detective Austin and Colonel Caldwell have their coffee break interrupted by an obnoxious man looking for a fight, Colonel Caldwell helpfully instructs the man on how to properly recognize military rank, wrecking the bar in the process." tt0095897,7_OHC_nqFQ8,Colonel Caldwell has a few too many and explains his view on America and freedom to Major Maclure. tt0095897,I_xrNryhq1Y,"Two Patrolmen engage in a high-speed pursuit through the streets of San Francisco, with unpleasant results." tt0337697,Wrs-qNpKvbE,Eddie spots Paige in the crowd and invites her to join the Royal parade. tt0337697,7rN0Kk3eUSo,Paige tells Eddie that she can't marry him. tt0337697,UBbsHeltzEE,Paige realizes she loves Eddie and has to go to Denmark to find him. tt0337697,0AslM2bC5DY,Eddie and Paige share their first kiss. tt0337697,g2atr8aQ0zg,Eddie tutors Paige in Shakespeare and teaches her more than she expects. tt0337697,-L9EZRMgmXM,"When Eddie and Paige are caught in a moment of passion, the truth about Eddie's background comes out." tt0227445,rYjtudWe7O0,Jack Teller betrays Nick Wells during the heist. tt0337697,bOKID-aX3z8,Paige confronts Eddie after he misses class. tt0337697,iv2j0CJkzbM,Eddie introduces himself to Paige and proceeds to ask her an inappropriate question. tt0227445,9aPhLF7yfU8,"After making a getaway from the scene of the heist with the valuable sceptre, Jack Teller realizes that Nick Wells was one chess move ahead of him." tt0227445,YALDmRKFYSk,Nick Wells discusses his doubts about a robbery with Max. tt0227445,4IOwJNyILNI,Jack Teller plays games with Nick Wells during the robbery. tt0227445,odEociFdDN4,Nick Wells and Jack Teller go to a park for a meeting to acquire security codes. tt0227445,ABpeiNlMOHU,Nick Wells and Jack Teller enlist Steven as a hacker. tt0227445,ph2dq-pPBnA,Nick Wells and Diane discuss their future. tt0227445,OkVJ0KvOV60,Nick Wells helps a mentally handicapped man who is actually con artist Jack Teller. tt0268695,nd3MVcbnfAc,"Given his time machine and told to return to his own time by the Morlock's leader, Alexander realizes what brought him there and accepts his destiny in the future." tt0268695,61xq5Kja1Uo,"In the ruins of what was once New York, Alexander discovers the remains of the librarian protocol Vox, who has had solitary centuries to ruminate on humanity and loss." tt0268695,Jwaw24W2bW0,"In the bowels of the Morlock caves, Alexander is confronted with the leader of the Morlocks, who explains to him the future's unique ecosystem." tt0268695,Rkc09sTiS7g,"Far from his own time, Alexander consults the Fifth Avenue Public Library to see what information on time travel the future can provide. His efforts are stymied by the incredulity of the library's interactive reference protocol, Vox." tt0268695,KHPPeGoWDEU,"Alexander infiltrates the Morlocks' nest and is confronted with the terrible truth of their relationship with the Eloi, and of their food source." tt0268695,2KGv86GLvXo,"Alexander and Mara come face- to-face with the grotesque predators of the Eloi, the Morlocks." tt0268695,D6uIONVMTxE,Alexander becomes the first man to travel through time. tt0268695,W9SemYK9HEw,"Finding no answers in the past, Alexander sets his sights on the future as all of the 20th century passes around him." tt0290095,jMv808xIuwg,Jimmy fights off multiple bads guys while using Agent Del Blaine to contain a rare bug. tt0290095,6oUQEh-Xji0,Jimmy and Banning face off while donning their super-powered tuxedos. tt0290095,QUVhbRmhn_w,Jimmy fills in for James Brown by using his tuxedo to entertain the crowd. tt0290095,Jc0r-WTEnzc,Jimmy uses the powers of his tuxedo to catch up with Agent Del Blaine. tt0290095,V7u623DEJD4,A half-dressed Jimmy fights off some bad guys in a hotel room and saves Agent Del Blaine. tt0290095,c94JyVrcWwE,Jimmy and Mr. Devlin try to outrun a mechanized skateboard with a bomb attached to it. tt0290095,pxy0q9dp1GA,Jimmy accidentally knocks out James Brown while visiting him backstage. tt0290095,9GF-YNA-iTM,Jimmy gets an unexpected surprise when he tries on the high-tech TUX-1 suit for the first time. tt0290095,3XK3y_S1kP8,Jimmy gets into a fight with a surly cyclist after accidentally knocking him off his bike. tt0301976,6BS2yXD9Ggo,Becky tells Julie she's getting clean. tt0301976,as_lXF3HqCY,Pearl confronts Albert about his parental neglect. tt0301976,ioznxKkY_IE,Pearl and Leland discuss human nature. tt0301976,58qDZgvh3jk,Leland describes the inherent sadness he sees in every person. tt0301976,fARjlj6q1uU,Pearl secretly passes Leland his workbook. tt0301976,ljdH53Ro0xQ,Becky asks Leland for some reassurance. tt0301976,50cIB7qKfnk,Leland denies any concrete reason for his crime. tt0301976,9ac3upRnOl8,Leland meets Guillermo and Pearl. tt0301976,i1n8bNgTUTw,Leland discusses the fickle nature of memory. tt0301976,NAH_6By9C7g,An old woman mistakes Albert for a famous actor. tt0159097,A4Sywg8Yw4Q,Lux sneaks out after her date with Trip to see him one more time. tt0159097,uLkxV_gyYbI,A group of friends attempt to figure out the mysterious Lisbon sisters who live down the street. tt0159097,idKzxvXO9_8,The boys reconnect with the Lisbon sisters by reading the same magazines as them. tt0159097,X2YdsIm2Pj8,The boys communicate with the Lisbon sisters by playing records for them over the phone. tt0159097,gaoBscEDdzM,"Trip and Lux are crowned homecoming king and queen, as youthful joy bursts out on the dance floor." tt0159097,9qEoK4PYN5I,"The boys go to rescue the Lisbon sisters, but quickly discover that something is awry." tt0159097,LwvvOrYPcuM,Mrs. Lisbon throws a party for her daughter Cecilia in an effort to help her socialize after her first suicide attempt. tt0159097,Qq2TXAE-Ih8,"The boys get ahold of Cecilia's diary, and read the entries about life with her sisters." tt0159097,glz-J_geNNI,"Trip recalls the first time that his eyes landed on Lux, and fell in love at first sight." tt0282120,gW3KZsBwQzw,Debbie is helped by a tribe of natives and a teenage boy named Boko. tt0282120,WlaQZKko8bk,Debbie learns what will happen if she tells anyone her little sister can talk to animals. tt0282120,OzCu7Cvdsjc,Darwin blows his cover just as Eliza starts to make new friends at school. tt0282120,nHyK6uFdDWY,"Eliza reveals her secret to the Blackburns to save her sister, Debbie." tt0282120,2KuNMLOKUXE,Nigel tries to comfort Eliza before she returns to London for boarding school. tt0282120,M8LDQ6M_CBs,Eliza finds a welcome surprise when she unpacks her suitcase at boarding school. tt0161100,Em8I02rqbhw,Mike delivers a heartfelt speech to Roland and Lisa on their wedding day. tt0282120,QKEMn5rTRL4,The Thornberrys decide it may be time to send Eliza to boarding school after Debbie reveals a number of secrets about her sister. tt0282120,Kuwa9UzfMGg,Eliza and Darwin warn the family of an incoming stampede. tt0161100,sfHaTenaRBI,"Mike, Slim, and Roland, discuss why Roland is having cold feet on his wedding day." tt0161100,n16wkJDq2VQ,Mike and Slim try to convince Lisa to forgive Roland and go through with the wedding. tt0161100,KVt9YlotsuY,Mike finds himself in an awkward situation when he tries to steal a condom from Stacey's bedroom. tt0161100,d-nJUGK8ABk,Mike practices his moves so that he can impress Alicia at the school dance. tt0161100,2LeVu2F6s4g,Mike finally musters up the courage to ask Alicia to dance. tt0161100,-e6lEsIUf3U,"Stacey runs into Mike while robbing a convenience store, and insists upon giving him and his friends a ride to the dance." tt0161100,KzWronMcXR8,Stacey fights Mike after school to teach him a lesson about touching his sister. tt0161100,LBU5Yu6RFBY,"When Mike follows through on a bet to grab Alicia's butt, Alicia threatens to tell her ruthless older brother." tt0469623,ex65__9m7f0,Kelly gives Audrey a new perspective on how to deal with grief and losing the love of one's life. tt0469623,6IPcEITrktA,Audrey begins to resent Jerry for knowing things about her daughter. tt0469623,pe8vv-fGpWk,Tension arises after Jerry asks Audrey why she invited him into her home. tt0469623,4dp5Q3B20aE,Jerry tries to console Audrey as she finally confronts the reality of her husband's death. tt0469623,qaQUmqNJTO8,Audrey and Brian share their final moment together just hours before Brian is murdered. tt0469623,p6LXVK9rPbw,Audrey questions whether or not she will ever feel beautiful again. tt0469623,K44KlE3sSMM,Audrey's despair gets the best of her when she asks Jerry what heroin feels like. tt0469623,VpOmvE4sLUY,Audrey is distraught upon hearing the news of her husband's death. tt0469623,Ug0QqktJ5tc,Audrey gets emotional after seeing Jerry teach her son something her husband never could. tt0469623,VwfXJVjptt0,Audrey and Jerry reunite at her husband's funeral. tt0300556,o3uf4YSwY9I,Andre shares his love for archaeology with Chris. tt0300556,hcUVOlbNb30,Lord Oliver orders his men to attack the French using their newly acquired battle techniques. tt0300556,VEwLgrpyamQ,"Sir William De Kere kills his old colleague, Frank Gordon, and warns the others of transcription errors." tt0300556,RdIAtsbwb00,Baretto journeys to the present with a grenade that destroys the time travel device. tt0300556,3H9TofuarsE,The Professor demonstrates Greek fire for Lord Oliver. tt0300556,Hsi4X9MxtkY,Andre and the rest of the archaeologists travel to 1357 AD. tt0300556,OdL9R0ZODYs,Steven explains to Andre and the others how they found the professor's bifocal lens and signed documents. tt0300556,3kfnzu3RrFM,Josh makes a surprising discovery about the documents and bifocal lens found underground. tt1129442,1U9wqQ9a8GU,Valentina tells Frank how she ended up in this mess. tt1129442,YlwAVV3dC2o,"Frank drives his car into a lake, but if he leaves the car he'll explode." tt1129442,k8QQCwXyVbI,Valentina steals the car keys and makes Frank do a striptease. tt1129442,B3nAwyocJs0,"Frank jumps his car from one half of the train to the other, where he confronts Johnson." tt1129442,FOAj7BE1VEg,Frank lands his car on the roof of a speeding train to rescue Valentina. tt1129442,Vz04LQ7GGzc,"Frank steals a bike to stay within 75 feet of his car so Valentina, who has a bomb strapped to her, doesn't blow up." tt1129442,gknxRGof8Pc,Frank fights off a gang of villains to give his friend time to search his car for the transmitter that sends a signal to the explosive bracelet. tt1129442,9a3z1lvLLng,Frank fights the Big One in a rough and tumble brawl. tt0139699,Aqqc9H83ECk,Billy Bob scores the game-winning touchdown of the championship game. tt0139699,eKbXO0f-mvw,Lance and Mox take over play calling duties from Coach Kilmer during the championship game. tt0139699,RjdPAElUs9E,Lance and Mox are challenged to knock beer cans off the heads of their drunken fathers. tt0139699,UtRR6sLexR8,Mox disobeys a play call from Coach Kilmer to get a touchdown for Wendell. tt0139699,qbIEepu8Z4w,The team takes a stand against Coach Kilmer after he insists on giving Wendell an injection. tt0139699,LoT3AimKXmk,"Mox visits Darcy, who has a surprise planned for him while her parents are away." tt0139699,LHrkO46ERP8,"Mox, Billy Bob, and Tweeder take a tough loss after partying the night before." tt0139699,XFOoJ3gwplQ,Star quarterback Lance Harbor is injured after Billy Bob misses his block. tt0139699,ANYJbKdMHk8,Coach Kilmer disciplines Mox after he runs the wrong play in practice. tt0070895,r_a34DBcwCE,Buford catches a traitor in his department. tt0070895,DLuROR8kLy8,"After crashing his police car into the Lucky Spot, the town supports Buford by burning everything in the casino." tt0070895,ZkpC7VsyqaE,Sheriff Thurman gives Buford Pusser some bad news about his case. tt0070895,WhZEKkpf3CU,"Buford gets his revenge by crashing his police car into the Lucky Spot, killing Buel and Augie." tt0070895,3l7-8yvdTLE,Buford is put on trial and the jury shows their support. tt0070895,KVDtV-uVRq0,Sheriff Thurman and Grady chase after Buford. tt0070895,o-e8eejeHLA,"On a quiet drive, Buford and Pauline are gunned down by Buel, Augie, and the rest of the Lucky Spot gang." tt0070895,KNip2ZamrMc,Buford catches the craps dealer cheating and a fight breaks out. tt0070895,q9iIgRYUyA0,Buford and his bat head to the casino to get revenge and the money owed to him. tt0049934,L6YJkhVYUXs,Pierre comforts Natasha after the man she loves leaves her. tt0049934,Xm6JHSUoLpY,Pierre gets involved in a violent battle between the Russians and the French. tt0049934,-KOG8edoC00,"Natasha comes back to Moscow and discovers that Pierre has returned from battle, as the two re-unite." tt0049934,ZWSHjks0ESI,Natasha and Maria tend to Prince Andrei as he dies. tt0049934,jihDFIqNz1s,Pierre visits Prince Andrei the night before the battle in an effort to experience war firsthand. tt0049934,4XpFpGcTh1s,Prince Andrei expresses his interest in Natasha at a formal dance. tt0049934,aTTbCJmc3Cg,Natasha tells Sonia her thoughts on Prince Andrei as he eavesdrops from the room below. tt0049934,EV5W98Ql4vQ,Pierre explains to Natasha that he's planning on marrying his cousin. tt0049934,YJbQz3bTn6I,Pierre fights Dolokhov in a duel to the death for taking his wife as a lover. tt0048801,yvcIugB8yt4,Isabelle mistakingly believes Paul is in love with her. tt0048801,Q-xBDej7O6M,The convicts try to break the news to Isabelle that Andre and Paul are dead. tt0048801,WgBb0YoMp1g,Amelie and Joseph discuss their life choices. tt0048801,xQOZMIbnpMc,The convicts have a change of heart after Felix gives them a Christmas present. tt0048801,P3QI8hTpxl8,Joseph demonstrates his remarkable talent as a salesman. tt0048801,EL9EJL3O7bU,Albert offers Isabelle sage advice. tt0048801,I2UTg_bYu68,Isabelle faints after she receives bad news in a letter. tt0048801,tcCo38aP8qc,The convicts spy on the family they plan to rob. tt0048801,ckAD2sg5SxQ,Felix and Amelie discuss marriage prospects for their daughter. tt0120524,NvuCGs9iYSk,The Djinn finds a way to get past a pesky security guard. tt0120524,NWfz4zLi640,"While Alexandra tries to escape, The Djinn gets into a showdown with the doorman." tt0120524,tqfFZYur4sM,Alexandra runs from The Djinn and finds Raymond Beaumont suffering from a curse. tt0120524,DW3d5hYgV_Q,"Alexandra discusses her problems with Wendy, when she realizes she isn't talking to Wendy at all." tt0120524,wpA9m3t6bNY,The Djinn convinces Alexandra to make her first wish. tt0120524,F6RpbWC4-L0,"Wendy explains to Alexandra the history of The Djinn, who finds another victim at a clothing store." tt0120524,lqA3TgVtN-Q,The Djinn asks Nick his price for information on Alexandra's whereabouts. tt0120524,oa1LGWv3zkA,"A homeless man argues with the pharmacist and then has a run in with The Djinn, who grants him a wish of revenge." tt0120524,LWP0KujKOKY,"The Djinn breaks into the morgue and removes the face from one of his victims, while Alexandra experiences a connection with The Djinn every time a wish is made." tt0477139,5Rp-dpnsqUo,"Mikal insists on driving, but Eugene doesn't want to sit in the back." tt0120524,8Z60zTp6Izo,Josh Aickman runs some tests on the artifact that Alexandra gave him when The Djinn is awoken and released. tt0477139,4TSoSMLHTi0,Zia and Eugene pick up a hitchhiker named Mikal. tt0477139,FXZ3JnwIph0,"Eugene crashes the car when he nearly hits Kneller, who is asleep in the middle of the road." tt0477139,3OHisdS9LXs,Mikal becomes jealous when Zia catches up with Desiree. tt0477139,WeVMy5j7ykc,Desiree tells Zia about what happened after he killed himself. tt0477139,i5znTCoKLPI,Kneller tells the fable of the crooked tree and the straight tree. tt0477139,k0tc08W_t-Y,Mikal and Eugene argue over who is in charge in the afterlife. tt0477139,qkvQOEJKHNk,"Zia tells Mikal how he feels about her, but the romantic mood is spoiled in the harsh light of day." tt0477139,Op9k4MLjKSQ,Zia kills himself and imagines what life will be like for Desiree without him. tt0477139,jaSs0dUv0zQ,Zia goes to the store to get more cottage cheese and runs into Brian. tt0477139,Gg3woGs9ZGY,A cop arrests Mikal for vandalism until Zia saves her. tt0096487,WGBw3zwzqwI,"Texas Joe Grant is in search of outlaw Billy the Kid, but he doesn't realize is that Billy is right under his nose." tt0096487,-Zr-B5aIEvE,"With their backs against the wall, Billy leads his gang in a perilous escape, only to return moments later to settle the score with Murphy once and for all." tt0096487,iX1ha-hADlU,'Jose' Chavez y Chavez explains to the gang how Murphy destroyed his family. tt0096487,UqvuJLOCSxc,"A bounty hunter by the name of Buckshot Roberts engages the gang in a shootout. During the fracas, Dick is shot dead." tt0096487,PII5jcf950Q,The gang trips out on peyote. tt0096487,H2iK5QHr3Is,Billy suspects that one of their fellow Regulators is a spy. tt0096487,F5ZP1m4J0H4,"'Jose' Chavez y Chavez brews up peyote tea to ""Find the way"" to the spirit world." tt0096487,OhtKiOEZBJY,"Billy has a warrant to arrest Henry Hill, but instead he kills him." tt0096487,3FPsMeQ6Ra4,"Murphy threatens his competition, John Tunstall, with political corruption in order to get him to leave his property." tt0096487,cxgg3KTdRcM,"Murphy sends one of his men to pick a fight with John Tunstall, but Charley intervenes and defends his mentor." tt0443295,E8LQ1SmVO2M,The North kids pull a trick on the Beardsley kids when it becomes clear that they rigged the bathroom schedule. tt0443295,x3jT6tQ_gJk,"Frank tells Helen the romantic story about ""the beautiful lighthouse keeper.""" tt0443295,v3IyV96FX74,"The Beardsley and North kids fess up to their involvement with their parents' break-up, and encourage them to get back together." tt0443295,NxnXB1ViFEk,"The kids throw a party while their parents are out as part of their plan to break them apart, but it gets a little out of hand." tt0443295,t0R7IRtvvFA,"The Beardsley and North kids decide to put their rivalry aside to team up, and break their parents up." tt0443295,k2C9QOtoreY,Frank's mission to get supplies for the house turns into a mayhem-filled outing. tt0443295,vFSAQ1Nj7fg,Frank's idea of bonding through sailing doesn't go as swimmingly as he'd hoped. tt0443295,rTCpK6ONu9M,"Holding a business meeting proves difficult for Helen, who must deal with her rowdy children shuffling in and out of her work space." tt0469999,w7mr-fVLqis,Simon Vale kills Michael Cosnick. tt0469999,wVTFBeiqCSE,"Michael Cosnick kills J. Donald Fisk, the man who has been investigating the Zodiac killer for years." tt0469999,rmqvWkh45gs,"Michael Cosnick picks a pizza girl as his next victim, but has second thoughts about killing her when she arrives." tt0469999,kjRTvd8QRJI,Michael Cosnick kills two more female victims by gassing them. tt0469999,USKy5QYNY70,Michael Coznick kills two more people at Venice Beach. tt0469999,PjBQfqlstnw,Willie Harmon talks about his father with Simon Vale. tt1186830,2Qfa77SRZkc,"Davus explains to Hypatia his theory of how the Earth is the center of the cosmos, creating a heated debate on God and creation." tt0469999,cOe_8-IWvmY,"A Zodiac cult discuss the victims they've killed, as well as the copy-cat killer." tt0469999,SY3nCdfnsCQ,Michael Cosnick kills a couple who are looking to buy a car. tt0469999,hg27lxt2IFw,Michael Cosnick reads about the origin of the Zodiac killer and then contacts the writer Simon Vale. tt0469999,lWflJvuYww8,Michael Cosnick kills a man who is doing his laundry. tt1448755,sLECDbDoXaQ,Jen confronts Spencer and her parents about their duplicitous behavior. tt1448755,gZbzZaYK3Zo,"Spencer faces off against Mr. Kornfeldt, who turns out to be a CIA agent." tt1448755,S-PPQ9aewqo,"Spencer and his father-in-law, Mr. Kornfeldt, banter about mustaches, wives, and babies." tt1448755,Od2dajJAbEE,"Spencer comes home expecting assassins to kill him, but instead finds a surprise party." tt1448755,Y_bIzO41o2c,Vivian tries to kill Spencer as Jen waits obliviously in the bathroom. tt1448755,3r2JiHZVEk4,Jen passes out just as Spencer comes clean about his career. tt1448755,6uaqkS1AiS4,Spencer escapes from Henry while explaining his secret life to Jen. tt1448755,1Jaq36snpLo,"Spencer fights to the death with Henry, much to the surprise of Jen." tt1448755,1-lFBwn6bKg,Spencer meets Jen on his way to the beach. tt1448755,8rF5KWQw6YE,Spencer and Mr. Kornfeldt discuss marriage while sport shooting. tt1448755,e3siZO79KrM,"Spencer and his wife, Jen, argue about their need for a pregnancy test." tt1186830,f5lTRa_ZJn8,"After the Christians overtake the Library of the Serapeum and destroy its contents, Davus chooses to join the Christian forces." tt1186830,FGqPDYzAXdI,"Hypatia reflects back on her life, and wonders why she hasn't been in love." tt1186830,2IVX_4BG7m4,"As a mercy killing, Davus suffocates Hypatia, his master who he once loved." tt1186830,_lykwQIS_3w,"Cyril gives the word of God during a Sunday Mass, and asks the government officials to kneel before the Christian faith." tt1186830,hZqVpO3_MP4,"The pagans attack the Christians for insulting their gods, and leads to a vicious, bloody battle." tt1186830,5AujBlOtU88,A group of Christian's debate whether the Earth is flat or round. tt1186830,gqxV6mOE2L4,Hypatia and her students listen to a philosopher explain the heliocentric model of the solar system proposed by Aristarchus of Samos. tt1186830,s2U0dL0k9s8,"Ammonius walks across fire to prove that his Christian god is the one, true god.." tt0893412,yO4oRzCAc4k,Nora explains to Edward the reason she was afraid to be with him. tt0893412,ksFNCZ951Oc,Mary tells Bruno that she wants to be a part of his world. tt0893412,-AlKOlUgzaI,"Edward surprises Nora by buying them a house, and proposing." tt0893412,LlWcSO9ok9g,Mary's car breaks down in the rain. tt0893412,zXnWUj1a8Ss,Mary discovers that her boyfriend Rodrigo is already married. tt0893412,oFon0yFgldk,"Edward comes to Nora's party, and shares his true feelings for her." tt0893412,thOz5eO74hE,Mary comforts Nora when she discovers that her love interest is newly engaged. tt0893412,Bi2CHeMhNyM,"Mary tells Rodrigo about her old house, and they share their first kiss." tt0893412,EodapLIzTnk,"Mary discovers Rodrigo, the attractive new teacher's assistant." tt0893412,k2VevzNW4AY,Nora and Edward win their case. tt0893412,0R1F6r2-ngk,Nora and Mary decide to move out after Olivia humiliates them. tt0893412,E-dMy3oJGT0,"Mary and Nora dance with their father on his birthday, when suddenly, he has a heart attack." tt1189340,NCqhkbAkzug,"After Mickey Haller gets Louis Roulet's assault charges dropped, he has him arrested for murder." tt1189340,0SYBBmzZPOA,"When Louis Roulet threatens Mickey Haller's family, Haller has Roulet beaten up by a gang of bikers." tt1189340,mPoxI4PmAl8,Mickey Haller rushes over to Frank Levin's after his murder to discover that his nemesis Detective Lankford is investigating the case. tt1189340,X7KoVUspHys,Mickey Haller cross-examines Charles Talbot. tt1189340,lfCVS3HWdjg,Louis Roulet threatens Mickey Haller's family after discovering that Mickey knows he's guilty. tt1189340,8qQg4bvTlho,"Mickey Haller realizes that his current case is linked to a previous client, Jesus Martinez, whom he put away for life." tt1189340,7W78nWDG95s,"Mickey Haller tries to convince Jesus Martinez to plead guilty, and receive a life sentence with parole, even though he maintains his innocence." tt1189340,h6M2ZbuGfYc,Fondness lacks between Mickey Haller and Detective Kurlen as they get into a heated exchange over the justice system. tt1189340,CcKPNcDGDLs,"Maggie and Mickey hook up, but are faced with the reality of their situation the next morning." tt1189340,i2uV68pKreU,Mickey Haller lets Eddie Vogel know that he doesn't work until he's paid. tt1189340,HDUHC--wGt4,"Mickey Haller meets his new client, Louis Roulet." tt1600195,YRG4Q2gIWjo,Dr. Bennett helps Nathan and Karen escape from the CIA. tt1600195,5eSrShL8dt8,Dr. Bennett gives instructions to Nathan in order to help him escape. tt1600195,Af2wrig588c,"Nathan gets the chance to speak with his true father, Martin Price." tt1600195,kQUXf8oO73I,"Nathan's deal with Kozlow goes awry, and he is forced to flee the stadium." tt1600195,IP0UFkE-Nng,"Nathan responds to the online missing person ad, and Alek puts a trace on his computer to find his location." tt1600195,ohwhcMgHUKs,Kozlow attempts to kill Nathan and the others with a sniper rifle. tt1600195,6nvQySlxSWY,Nathan uses his training to fight off one of Kozlow's men. tt1600195,lDksLpsqHwQ,Nathan and Karen do their best to escape after discovering that a bomb has been planted in the house. tt1600195,dwMz7K0kr-M,Kevin forces Nathan to box with him after a night of heavy drinking. tt1600195,3fjlQw23hd0,Nathan and Karen explore their feelings for each other. tt1600195,yQi_ZJp9_jM,Karen and Nathan discover Nathan's picture on a website for missing children. tt0805619,hkHrNtJHbRQ,Ted Cogan accidentally meets a woman with a unique set of tricks. tt0805619,lsgl848rea8,"Overcome by the ghost of Farzan, Ted Cogan struggles to protect his family." tt0805619,9MyynB2RnZQ,Ted Cogan grows concerned when his son Max comes home with a black eye. tt0805619,I2yuo_5AkCs,An unhinged psychic helps Ted Cogan understand his terrifying dreams. tt0805619,e1NkoFF-13U,Ted Cogan visits the scene of a murder and makes a horrendous discovery. tt0805619,sCUSUl7-4Qg,"Unable to get the treatment he needs, Ted Cogan gets some helpful advise from a mysterious man." tt0805619,nZSxvozKoeE,Ted Cogan takes an elevator ride he won't soon forget. tt0805619,sOgO4lPPK1U,Ted Cogan is left in the dark after returning home from Iraq. tt0805619,D83XRiOVARQ,Ted Cogan discovers the horror of war after his men open fire on a suspicious van. tt0805619,Id3vqOPHk-4,Ted Cogan checks up on Army widow named April. tt0805619,gvoBpSAb-vM,Ted Cogan gets a painful message from beyond the grave. tt0339294,BAqabMWnAmk,Things get bloody when Watson bare knuckle boxes with The Leprechaun. tt0339294,j67MZXY33c0,The Leprechaun has an encounter with the LAPD tt0339294,Y6CMcllU8J0,Lisa wages battle against The Leprechaun and things go up in flames. tt0339294,kCqEADYRg8g,"The Leprechaun enjoys a smoke, admitting he hasn't hit a good pipe in a long time." tt0339294,i5Y6BTlx37s,"Despite her sawed off shotgun, Chanel falls victim to The Leprechaun, who takes a souvenier." tt0339294,6JSqeViZRU0,Doria gets a deep tissue massage from The Leprechaun. tt0339294,PyHK6QRniQ0,The Leprechaun grabs a bong hit and a snack in the kitchen. tt0339294,_U_s1OKHnlU,A shovel-wielding pastor with a drinking problem battles The Leprechaun with the power of holy water. tt0339294,vrujU3pc7-U,The Leprechaun's origin is revealed. tt0339294,tifUOGFTOBM,Jamie and his dog have a meaningful conversation. tt0339294,YOO8a-wBTy0,"Emily and Lisa visit a psychic, who sees visions of what's to come." tt0929632,S_PvnzDlqmI,Precious plays with her newborn baby as she narrates her dreams for a better life. tt0929632,PlkdsidJA38,Precious reveals to her classmates and Ms. Rain that she is HIV positive. tt0929632,CekWztEL504,"Precious severs ties with her Mother with a plan to complete school, and improve herself for her children." tt0929632,Fh1ZUliQDFg,A social worker comes to check on Mary who puts on an act that life is decent in the apartment. tt0929632,_-xCcoG6Wlc,Mary screams and curses at her daughter Precious for allowing a social worker to come to their apartment. tt0929632,GUw4Qqh5Th0,"Precious and her baby are welcomed into the home of her teacher, Ms. Rain, who is a lesbian." tt0929632,3ZQFpUxopm4,Mary has a heartbreaking confession when questioned by Mrs. Weiss on why she allowed her daughter Precious to be abused. tt0929632,hFqDZ3vzyRw,Precious steals a bucket of fried chicken from a local diner. tt0082382,V-SMOiDv5pA,Justice Dan Snow delivers a eulogy at a funeral service for Justice Stanley Moorehead. tt0049096,TJ9f2rnjB84,Giselda tells Hawkins she's put the pellet with the poison in the vessel with the pestle; the chalice with the palace has the brew that is true. tt0344604,VKu1354bPug,Antoine discovers Louis making a big mistake. tt0088170,MPQvVBaOx2E,Uhura helps the gang beam aboard the Enterprise. tt0344604,jsL4-BxsZjA,Antoine and Blanche try to rationalize their passionate kiss. tt0344604,hvvTxyks7L8,Louis sets Antoine and Blanche up on a date. tt0344604,bbqRezPHMDQ,Blanche asks Antoine to kiss her when she knows that her ex-boyfriend is watching them. tt0344604,9GYgmwMfGXU,Antoine tries to help Louis get through his sommelier interview. tt0344604,kW7IPAaL7I4,Antoine meets Blanche for the first time at the flower shop. tt0344604,fvYD-2ggmcc,"After Antoine and Christine get into an argument, Christine interprets Antoine's apology as a proposal." tt0344604,qO1-at2DUGU,Antoine reinterprets the suicide letter from Louis for the benefit of his grandmother. tt0344604,jBajVRGElXY,Louis' grandmother tells the story of how she convinced Blanche to break up with Louis. tt0387564,ZTGK6ChH494,Adam learns the horrifying truth of Jigsaw's game. tt0387564,HHxezNV6ntY,"Zep arrives and Adam, thinking Zep is Jigsaw, exacts his gruesome revenge." tt0387564,YegA1WNRKnU,Adam and Lawrence think they've figured out that Detective Tapp is behind the game. tt0387564,7bmB4RhsYgQ,"To Adam's horror, Lawrence saws off his own foot as Tapp chases down Zep." tt0387564,717gDCZQsdc,"Jigsaw shocks Adam, foiling the plan he and Lawrence hatched to escape." tt0387564,qqWVQuCaB6Y,Adam searches his apartment when he hears an intruder. tt0387564,ZEqt7tr41Mk,A game of life and death is laid out for Adam and Lawrence. tt0387564,WzlAPD4Ttc0,"Detectives Tapp, Sing, and Kerry investigate the gruesome death of Paul." tt0387564,PLBt2zwq_vU,Amanda must commit a gruesome act in order to free herself from a deadly contraption. tt0387564,5LZfv0tLZKE,"After Tapp is slashed while rescuing a man from a booby trap, Sing is killed in another trap set by the Jigsaw Killer." tt0387564,iNSN6QhIWeA,Adam and Lawrence wake up to find themselves in a nightmarish situation. tt0285742,a6oC5iQB4u8,Lawrence draws portraits of Sonny and Hank while he waits for his execution. tt0285742,JMWhU1FfqP8,"After the electrocution, Hank attacks Sonny for messing up the prisoner's last walk." tt0285742,0tRSAQUheo0,Events end tragically for Sonny when he stands up to his abusive father Hank. tt0285742,p_-Zm_G8cBI,"Leticia yells at her son, Tyrell, for being fat." tt0285742,OxqTSDSxRwg,"Leticia brings her son, Tyrell, to prison to say goodbye to his father, Lawrence, who is on death row." tt0395584,NOadx4ZICaQ,The Devil's Rejects go out in a blaze of glory at a road block. tt0395584,ujEbejephNM,A chicken salesman gives some tips to Bubba and Clevon on how to maximize the pleasure of sexual intercourse with a chicken. tt0395584,arQDNf6cjaw,The Devil's Rejects take a breather from bloodshed to enjoy some ice cream. tt0395584,tfvptl5VS08,The Devil's Rejects unwind at the local whorehouse while Sheriff John Quincy Wydell prepares to take them down. tt0395584,JXnNKqu3N3w,A maid discovers just how little The Devil's Rejects are concerned about leaving a motel room clean. tt0395584,yl0jujA2jLw,Sheriff John Quincy Wydell takes issue with a movie critic's comments about one Mr. Elvis Aaron Presley. tt0395584,7FN-chIhcNM,Baby Firefly demands entertainment from the two hostages in exchange for letting them use the bathroom. tt0395584,0N9Fzv7bYCM,Captain Spaulding commandeers a vehicle for official clown business...and he doesn't stutter. tt0395584,j42TrAVceCI,Otis B. Driftwood and Baby Firefly make their escape over the song 'Midnight Rider.' tt0395584,VjlGwSBvL6g,Captain Spaulding's new commercial is interrupted by a news report detailing the Firefly Gang manhunt lead by Sheriff John Quincy Wydell. tt0107387,1H0J9VhDCno,"Tory thinks her leg is being caress by Nathan, but it is actually the leprechaun." tt0408236,QfrPUNMOS6E,Mrs. Lovett gives Sweeney the razors he has been missing so much. tt0408236,xamDprXBtBg,Sweeney arrives in London with Anthony. tt0123755,MG9L-S6J_18,"Worth, Rennes, Quentin, Holloway, and Leaven meet, yet none of them know where they are, how they got there, or why they are there." tt0092890,P6fVrC-RQLg,Baby helps out Johnny with an alibi proving he didn't steal a wallet. tt0092890,7lShqpv3i24,Baby declares her love and passion for Johnny. tt0092890,LFhlnBzdOtk,Johnny describes his past relationships to Baby. tt0092890,XINddkzfTzM,The dance hall goes wild with a provocative dance led by Johnny. tt0092890,ypKSbnYOrwE,Johnny comes to proclaim his love for Baby to everyone at the dance hall. tt0107387,f8Cjlv6nBTg,The Leprechaun catches Nathan in a bear trap. tt0107387,x9L9S7jEv_M,The Leprechaun kills a shopowner by pogoing on his lung. tt0107387,ev7an6-CYpc,The Leprechaun breaks free of the crate and threatens Ozzie about the missing gold. tt0123755,B_DMSu-NVZ8,Holloway volunteers to examine the surface of the cube while holding onto a make-shift rope. tt0123755,h__j2aPe63w,"As the group finds a way out of the diabolical cube, Quentin crashes their party." tt0123755,8AZk-d0z3ws,Quentin concludes that they've been going in circles after discovering the corpse of Rennes in another cube. tt0123755,3_dGBLwXBIE,Quentin threatens to kill Kazan when he sets off a sound-activated trap. tt0123755,tvIE50OJfxM,"In the heat of an argument, Worth reveals himself to be the architect of the outer shell of the cube." tt0123755,n9-Wk6ulBuA,Quentin fights back when the others attempt to distance themselves from him. tt0123755,gv1nYk_OJjs,Quentin barely escapes a razor sharp booby trap. tt0123755,X7U_RxbkaIg,"As Quentin and the rest of the group make their way about the cube, they stumble upon Kazan who is mentally handicapped." tt0123755,QiVfqVQ5t9A,Leaven discovers that doors with prime numbers lead to rooms with booby traps. tt0123755,K7Dd88h25kU,Rennes reveals himself to be a highly skilled escape artist and triggers one of the Cube's booby traps. tt0285742,y3zcF3YvK-o,Hank and Leticia reconnect as lovers. tt0123755,k8Tw4JhzORM,Alderson explores his environment and ultimately triggers a booby-trap. tt0092890,f2ugRkVMOuE,Baby dances with Johnny on a log because it builds better balance. tt0285742,x6FDJAu5yMc,"In a deep state of grief, Leticia talks to Hank about her son." tt0285742,MtWRq5FXCbo,"Hank drives Leticia and her son, Tyrell, to the hospital after a hit-and-run accident." tt0285742,MR93FRxKjTQ,"Hank informs his father, Buck, that he quit his job as a corrections officer." tt0285742,8XkrkBt-8LQ,"Leticia meets Hank's racist father, Buck." tt0092890,siTZSTZwJ0E,Johnny has to leave his job because of his romantic affair with Baby. tt0092890,iMA4bMMh44w,Baby apologizes to her father for lying to him about her romantic affair. tt0285742,ZiXcZtfAbf8,"The strained relationship between Buck, Hank and Sonny Grotowski manifests itself when two African-American children visit the household." tt0092890,LnqAE4Rjdqk,Baby gets her father to help Penny after her illegal abortion. tt0092890,aiilV691CzY,Baby flirts with her lover Johnny during dance practice. tt0092890,-sYKI4A3uhc,Baby learns some difficult dance moves from Johnny and Penny. tt0092890,WRdy4CcRchU,Baby discovers dirty dancing with some help from Johnny. tt0375679,VAp9p0U1r4g,Snow falls on a Los Angeles filled with troubled people. tt0375679,MsSPAEtYaZE,"When Officer Hansen asks Lt. Dixon for a new partner, he comes up with an embarrassing solution." tt0375679,EbarO9zF81Y,"When Jean sees that the locksmith is a tattooed Latino, she demands that Rick have the locks changed again." tt0375679,_QXyyj1RiCE,Anthony and Peter discuss racial stereotypes before committing an armed car-jacking. tt0375679,GDrnSzfL-aI,Cameron confronts the police after his wife was molested by a racist cop the day before. tt0375679,EtvbEtPIGiA,"Officer Ryan molests Christine while frisking her after pulling her husband, Cameron, over for a driving violation." tt0375679,oUTQFpVOWGE,"Officer Ryan tries to save Christine, who he molested one day earlier, from a burning car." tt0375679,m6NeY3rTpJU,Daniel comforts his daughter after she hears what she thinks is a gunshot. tt0158493,LlQXhEOzLW0,"Tommy visits drug lord Lennox at his mansion to propose that they go into business together to deal a new, more potent form of heroin." tt0375679,L-iyxIincCI,"When Farhad puts a gun in Daniel's face, his daughter tries to save him with her magic cloak." tt0107387,B3v1kEzT4bA,Tory finds a four-leaf clover to destroy the Leprechaun. tt0107387,W8Iw5W2_bbM,The Leprechaun replaces his eye with an eyeball. tt0107387,IAYQUTYc_tA,The Leprechaun crashes into the gang with a miniature car. tt0107387,aNUs1A_sUCc,Tory gives the Leprechaun his precious gold. tt0107387,IhZrBku_eCA,Tory is chased around the corridors of a hospital by the Leprechaun. tt0107387,Jrvr-VIymgo,Ozzie tracks down the end of the rainbow and finds a pouch of gold. tt0107387,jr_bZ2gzRIY,Tory takes offense at a male chauvinistic comment from Nathan and decides to tough it out at the house. tt0158493,yp6SO-tZpJw,"When Black gets an attitude, Tommy puts him in his place by beating him up, firing shots, and making him strip in front of everybody." tt0158493,r0Iq2_euH44,"Tommy, Sincere, and their crew rob a nightclub." tt0078788,k26hmRbDQFw,Lieutenant Colonel Bill Kilgore orders a massive napalm strike on the tree line. tt0078788,WFsMguGrUVo,Captain Benjamin L. Willard waits in a Saigon motel room to be assigned a mission. Getting softer. Getting weaker. tt0078788,30QzJKCUekQ,Lieutenant Colonel Bill Kilgore attacks a Vietnamese village from the air while the music of Wagner rings out as a battle cry and intimidation tactic. tt0158493,8upFfAQcfEM,Reverend Saviour delivers a speech asking Tommy to choose light over the darkness while Kisha fights for her life. tt0158493,xi5rxsY_Nsw,"Sincere advises Shorty, a 12-year-old kid older than his years, to get out of the game and change the course of his life." tt0158493,Wo3XrThPZzo,"Shameek and Big Head Rico play a game of cat and mouse at an Omaha strip club, resulting in Rico's murder." tt0158493,HGCOxt0M7cE,Things get heated between Wise and LaKid when they take hits at each other's egos. tt0158493,f8znwPYsuFE,"Tommy, cocky with all the money he's making in Omaha, ticks off local drug dealer Big Head Rico." tt0158493,TGyqMjtaZiw,"Sincere lends his support to Tommy, who is panicked because his operation has fallen apart and the feds have raided his house." tt0158493,JnFHE_crn0o,"In Jamaica, Tommy poses as a homeless man in order to murder Sosa as a favor to Lennox, while back in New York, Tommy's house gets raided by the feds." tt0158493,bxegamvM8ME,"Tommy, Sincere, and Mark return to Tommy's house after robbing a nightclub." tt0408236,gUrSHyV7Opg,Sweeney has his gruesome vengeance on Judge Turpin. tt0408236,qZmteh2hT9A,Sweeney and Anthony sing about Johanna as Sweeney cuts the throats of customers. tt0408236,Pn_XD7jDwFQ,"Mrs. Lovett, with the help of Toby, re-opens her pie shop with a special new recipe." tt0408236,O1-lkTgl-ws,Mrs. Lovett imagines her life with Sweeney after they escape. tt0408236,srR56T9-j5M,Sweeney challenges Pirelli to a public shaving contest. tt0408236,hTzqKlFConk,Sweeney explains his plans of vengeance to Mrs. Lovett. tt0144084,PpUWjff_OcM,Patrick Bateman makes fake dinner reservations at a fancy restaurant. tt0144084,MCo6TtUkCWc,"Patrick Bateman tries to strangle his associate Luis Carruthers, but his intention to murder is misconstrued." tt0144084,XMmlJnxP7Y4,"Patrick Bateman waxes on about Phil Collins' solo career as he orders the prostitutes Christie, and Sabrina, to strip and dance." tt0144084,nRTjNEP6v2U,"Looking around at the fellow yuppies and Wall Street colleagues, Patrick Bateman wraps up his own evil and psychotic feelings." tt0144084,0S7olzuojGY,"Patrick Bateman explains the beauty of the Whitney Houston song, The Greatest Love of All,"" to Christie and Elizabeth." tt0144084,qizUajHk7r0,Patrick Bateman chases after the prostitute Christie with a chainsaw. tt0144084,Ruw9fsh3PNY,"Patrick Bateman discusses one of his favorite songs from Huey Lewis & the News, and then murders Paul Allen with an axe." tt0144084,7OARf8dNLBc,"With a police helicopter circling the office, Patrick Bateman calls his lawyer to make a confession about all the people he has killed." tt0144084,_OtcwxERu50,"Following the instructions of an ATM, Patrick Bateman attempts to murder a cat, which then escalates into a spree of murders." tt0078788,HSWtc01BlqM,"As the villagers hold a ritual sacrifice, Captain Benjamin L. Willard assassinates Colonel Walter E. Kurtz -- completing his mission." tt0078788,GjB8z0Bvi14,General Corman and Colonel Lucas assign Captain Benjamin L. Willard his mission -- 'to proceed up the Nung river and terminate Colonel Kurtz's command.' tt0312329,B1kQLmi0q5U,"Jackie introduces Luther to his new trainer Felix, and the two get off to a rocky start." tt0078788,JInEj95yoUQ,"At the very last military outpost at the Do Lung bridge, Captain Benjamin L. Willard attempts to find the commanding officer in-charge, but all that exists is chaos." tt0078788,_C672_Fkzms,The Photojournalist tries to explain to Captain Benjamin L. Willard the method and the madness behind Colonel Kurtz. tt0144084,RjKNbfA64EE,Patrick Bateman describes his morning routine of vanity. tt0144084,AD5N-le_1es,Patrick Bateman and his associates flaunt their business cards. tt0078788,3T-VAi2Xqq8,"Captain Benjamin L. Willard has his first encounter with the man he was sent to terminate, Colonel Walter E. Kurtz." tt0144084,3-Q6PbschQI,"Patrick Bateman jokes around with Craig McDermott and David Van Pattern over the topics of women, and serial killer Ed Gein." tt0120151,_r-R-b72rL0,Steve offers up his own children to his friend Danny. tt0120151,1i8l526qhzY,Danny tells his wife Jennifer his hopes for their child. tt0261289,EMOE8Ub7-zs,"Ray Harris scolds his employee Joe Tyler, asking him to be more like Tony." tt0312329,bBzNPO001NU,Luther opens up to Jackie after she shows him his new apartment. tt0261289,0BF9MkmTBjk,Kate talks to Joe Tyler with her body. tt0089945,L-sb2Xeqn14,Rex O'Herlihan teaches Peter the basics of being a sidekick. tt0089945,BPUpzQ4vX_o,"To escape danger, Rex O'Herlihan performs a high stepping routine with his horse, Wildfire." tt0261289,rAKR-BBQY2M,Joe Tyler invades Amanda's house to serve Sara Moore divorce papers. tt0068245,sqmzvduQ-JY,Big Joe and his gang steal what Jake and his friends have left of their food and money. tt0068245,HuzpoTGja5M,Marshal and his posse find Big Joe's gang and shoot them out of the shack. tt0068245,KZrcqIvvB_0,Jake cleans a rabbit while the others watch. tt0068245,cHQcdgc_Whk,Jake puts a frog down Drew's shirt. tt0068245,oN832LNaq4w,"Drew and Jake start a fight, breaking everything in the house." tt0348505,nXIu-RlvPJM,Peter confesses his feelings for Stella. tt0348505,wbMLxj0lKAU,Stella leaps from a clock tower. tt0348505,rllKhsQXZXI,Peter reminds Stella of her son's death. tt0348505,bXRv0TjJQZ0,Peter offers Edgar an incentive to talk. tt0348505,rtqgJvhrswY,Edgar is arrested after meeting with Stella. tt0348505,D3tnuA1OazI,Max prepares Stella for the sadness ahead. tt0348505,xSyvjgWMsKc,Peter asks Stella about her trips to London. tt0348505,B7FkLh0uqdc,Edgar stows away in the trunk of Brenda's car. tt0348505,7khCMEgY5wc,"Peter, Jack, and Bridie handle Stella's scandal." tt0348505,rhNty595BeI,Edgar asks Stella where Max got his adventurer's spirit. tt0218182,PTg0wFv6dZ4,Colm discusses an epiphany he is having with George. tt0218182,xxfZmz7TxSo,Colm meets with the IRA agents to discuss their business proposition. tt0218182,3RgRVQqUhhM,Colm and George are harassed by some IRA agents when they are parked on the side of the road. tt0218182,1fdta94pfxc,Colm and George are interrogated after one of their toupees is found at a crime scene. tt0218182,MrL_uWnwPq0,Colm and Bronagh are shocked when they return home to find a stranger naked on the couch. tt0218182,rhQ5dWLFLPM,Colm and George have a little misunderstanding with a potential customer. tt0218182,uEJ_Ak34ias,Colm and George have the terrifying pleasure of meeting The Scalper. tt0218182,qZIIx-X5Bbc,George tells Colm about his high speed pursuit in a Ford Escort. tt0218182,YieQdHA9uIA,Colm and George get to know each other over some poetry. tt0118073,05nRqVJlunA,The Brady kids drag Trevor to the mall for a music-filled shopping trip. tt0118073,DEHpRuG-P94,Marcia and Greg share a room for the first time and are surprised when they see each other in a different light. tt0096316,gj-Rl-cgKxM,Preston invites a car chase to show off the Tucker Sedan. tt0096316,CZaS2CCnFYs,"After the jury finds him innocent, Preston invites everyone to a ride in a Tucker Sedan." tt0096316,djMYTM1p318,Preston blames the hypocrisies of big business and bureaucracy for destroying innovation. tt0096316,eL9aiYpAyI0,"After some setbacks, Preston shows his prototype to the public." tt0096316,iwXsuJXUau4,Abe reveals his criminal history and decision to resign. tt0096316,Cfcaik7bDyg,Preston presents evidence of the negligence of The Big Three automotive companies to bureaucrats in Washington D.C. tt0096316,K-Tad1Lgw7k,Preston is unfazed when the prototype nearly crushes Alex. tt0096316,bIHeoOh2F7o,"Preston unveils the prototype for ""the car of the tomorrow.""" tt0096316,l-vk0fgFGd4,Alex offers Preston his design improvements. tt0406158,7vp7Lpjl_vk,"Evelyn finds her soul mates in The Affadaisies, a group of women who pool their resources to enter contests." tt0406158,oXRixZ82ZqU,Kelly and Evelyn ponder eviction until a prize arrives at just the right time. tt0406158,FVJX6ODlvFY,Evelyn watches over her adult children as they pack up her belongings. tt0406158,OOBt6EktEVg,Evelyn breaks down after she realizes she may lose her house. tt0406158,x9u_a8eEPlM,"Evelyn tells her daughter, Tuff, to enjoy each moment to the fullest." tt0406158,SqISCN4gNNA,Kelly apologizes for the comments he made about Evelyn and her contests. tt0406158,A_6e5AilC6k,"Evelyn races around the supermarket, stuffing her cart with food that she won in a contest." tt0406158,NGceQLxvFNE,Kelly gets violent and smashes the family's new freezer when his baseball team struggles. tt0406158,yn_iiD8lxZQ,Kelly signs the mortgage papers as Evelyn watches. tt0051364,OMEv7FPE7CQ,Sara tells Kay that she was in love with her late husband. tt0051364,pV2y0et0TT4,"Sara explores the house, and looks for objects that remind her of her lost love." tt0051364,KRMxuHWOcTI,Alan asks Kay what life was like when her husband was away in the war. tt0051364,RXC48uE7UzM,Kay questions Alan about the behavior of her late husband during the weeks before he died. tt0051364,Upww38-2fyo,"Kay comforts Sara, and reminisces about her late husband." tt0051364,2QCUgqD37fk,Sara discovers that the man she loves was killed in an airplane crash. tt0051364,8O97aGzvU3g,Sara confesses to Mark that she has agreed to marry her boss. tt0051364,24QQqGjDEKM,"Mark comes clean with Sara, and tells her that he's married." tt0145653,Nfah2Cy_mwU,Frank is repentant. tt0145653,WQ71crXovIk,Aunt Aggie purchases Frank new clothes for his new job. tt0051364,84ybwb86tKs,Mark and Sara wait in anticipation as a technician dismantles a nearby bomb. tt0145653,P9aAc9ibVWM,Frank nearly dies of Typhoid and his father Malachy kisses him goodbye. tt0145653,8XglzsFYAJU,Frank stands up to Laman Griffin. tt0145653,dQ0sgbvSQAk,Malachy comes home drunk and offers his sons Friday pennies. tt0145653,yq2t7SjUSoI,"The school boys tease Frank's poor, home-repaired shoes so Frank shows up to class barefoot." tt0060086,C4dkYaeNLuc,Alfie overreacts when he finds out from the doctor that he has an infection. tt0060086,AWJPmyL5uHI,"After being introduced to his newborn son, Alfie continues to charm the women he encounters." tt0060086,AF9cqjNt9uc,"Alfie gives some parental advise to Gilda, and talks about his relationship with his son." tt0267248,YSQ_eohNRrM,Katie replays her last argument with Embry in the cave and Wade realizes she's been seeing things the whole time. tt0267248,vAyq-3z1SYo,Katie shares with Embry her memories of when her dad left. tt0267248,i1lkrSFlpss,Harrison confesses to Katie that he is in love with her but Katie doesn't feel the same way. tt0267248,70yAXCvid4k,Katie's friends question her about her future plans and Samantha gets annoyed because Katie is being irrational. tt0267248,I1xQMJjTMLQ,Katie finally hears why Embry had left without saying goodbye. tt0267248,Gx7y8ecslp4,Dr. David Schaffer makes a pass at Katie. tt0120151,Nf1uvt0zKFU,Jennifer and Nancy meet with Richard to discuss the proposition to buy their perfume. tt0267248,E0NZlvha-KQ,Embry pushes the choir to sing like they are singing to God. tt0267248,XAm-zfxcktE,Katie remembers the time she and Embry spent together. tt0267248,e8J56HbIyvc,Katie interviews with Robert Hanson and his colleagues for Mckinsey & Company. tt0120151,S4YcLymVzXw,"Jennifer goes to say goodbye to her husband, Danny, when she finds he's traveling with another woman, Lindsay." tt0267248,b2WuWXRVdfk,Katie's friends drag her out to a party on a Friday night. tt0120151,8kiNT3_17i8,"Jennifer, Nancy, and Richard discuss the sale of the 7th Scent Perfume." tt0120151,DTXWi9iR2F0,Dr. Chin discusses options for pregnancy with Danny and Jennifer. tt0312329,x0yNzsNUoK4,Luther takes a cheap shot at his sparring partner during a training session. tt0120151,ffR1X6gndvo,Danny and Jennifer enter the San Francisco Fertility Clinic. tt0120151,XXVbPZX6qz8,"Nancy divulges all the details of her love life with the mortician to her friend, Jennifer." tt0120151,LntFGGP92xQ,Danny and Jennifer embark on their fertility tests. tt0312329,3JLDAyAEaqI,A heated argument ensues after Jackie lets a TV crew into Luther's locker room before a fight. tt0120151,1YGyKYK1HuY,Danny calls on his wife Jennifer to help him provide a sample for the clinic. tt0312329,w3HklXic1eY,"Jackie gets her first look at Luther, who gets into a fistfight with her client over a drug feud." tt0312329,75A7PFuBqFk,"Jackie and Felix prepare Luther for his first fight, which he must win to continue his boxing career." tt0118073,gtHSeq99_l8,The Bradys build a house of cards to settle an argument between Greg and Marcia. tt0118073,AA_yIRZNg1s,Mike invites Trevor to stay at the Brady house for as long as he needs. tt0118073,_hMtM3QndW8,Mike and the family come to save Carol from the greedy Trevor. tt0118073,gz-Uv494KFk,Trevor shows up at the Brady house pretending to be Carol's first husband. tt0118073,JR_bnlkaEss,Marcia and Greg go on separate dates but just end up spending time together. tt0118073,yBwa0z0kCrg,"At the anniversary celebration, Greg and Marcia get to know each other a little better." tt0118073,6Tjcx6B5lbA,The Brady Bunch sings and dances to pass the time on a plane ride. tt0060086,nSJxx_KUEes,Alfie gives Harry some life advice. tt0060086,FyS7kFIZJ6k,Alfie walks in on Ruby with a younger man. tt0060086,7O6j3eHsueM,"Alfie seduces his friends wife, Lily." tt0060086,9Vve6PAxRpk,Alfie flirts with a customer he photographs. tt0060086,mQAlpiB3_FQ,Alfie get's involved in a scuffle with Frank that escalates into an all-out bar fight. tt0060086,B0FZhLeHy7A,Alfie explains the difference between married and single women. tt0078757,v-UIgJgiPJs,Maria seduces Hal. tt0078757,GlHL_ippO8k,Maria finds Hal to be an unlucky presence at the roulette table. tt0258038,y587UlBV9jg,"Now living on a farm in the country, Pootie quickly seduces the local sheriff's daughter Stacey when she comes to bring him some pie." tt0258038,WSIS3ZUDzzY,"Lecter explains to Dirty Dee and Froggy that the company no longer has need for Pootie, and wants him dead to ensure their nefarious plans go smoothly." tt0078757,ZW66_8a4rqY,Hal and Maria argue about the meaning of sacrifice. tt0078757,VzZJ9-El-a4,Hal chases Maria across land and sea so he can apologize for the night before. tt0373908,RemcXMCCQVk,"Ralph and Ed attempt different methods to make money, including breakdancing." tt0078757,pFxOuE_0wqc,Hal and Maria go on a romantic date to the French countryside. tt0078757,qdy5TZDOwm0,Hal and Maria share a moment of honesty after Maria sees Hal's Film for the first time. tt0268397,wNqqn5NPJ8k,"Jimmy Neutron accidentally leaves his new invention, Burping Soda, in the hands of his parents." tt0078757,fPWCnwZEOqE,Hal and Maria discuss open marriage arrangements in bed. tt0078757,j3k3xWKZIn8,Hal and Maria share a romantic moment in a boat. tt0795351,Qns26Wdvph8,Emily locks herself in her room in order to hide from Lilith. tt0099587,FXPNIj7q0lU,Camparelli explains the origin of his name. tt0795351,9J0DZojg6-g,Emily and Detective Barron intervene when they find Edward and Margaret attempting to kill their daughter Lilith. tt0795351,xCI_stZgRHc,Lilith throws a tantrum in an elevator when she doesn't get her way. tt0795351,HEnmNkRRmHs,Doug is forced to face his biggest fear when hornets attack in the bathroom. tt0795351,sxtENaaaPpQ,"Doug attempts to get Lilith to open up, and share her fears, but she turns the table on him." tt0795351,hgCr8TOxcCo,Emily drives her car into a lake in a final attempt to kill Lilith. tt0795351,-NW-w5Z_vpk,Emily finds out that Diego murdered his parents. tt0098625,vJFN-ZPqCiQ,Ned demands to be allowed to march in the processional so that he can get across the border to Canada. tt0098625,ZvMDRj9jFaE,The Deputy begs Ned to help him stave off the temptations of adultery. tt0795351,a861J6gxqmg,Lilith breaks into Emily's bedroom. tt0098625,w71n9tHYuIw,"Thinking Ned is a priest, the Deputy brings him to see the woman with whom he's been sleeping, Molly." tt0098625,qGrKwxglKJ0,"Bobby, about to be executed via electric chair, shoots his way out of prison, dragging Ned and Jim along for the ride." tt0098625,mMyrxQNItpY,A young monk asks Jim why there's a clothes pin on the collar of his stolen shirt. tt0098625,mFBIlYRQBLI,"Ned, at the end of his rope, prays to the Madonna to help him escape into Canada, when Father Levesque comforts him with words of wisdom." tt0098625,xiNxK0Xiv2E,Ned and Jim try to blend in during the pre-meal song at the monastery. tt0098625,sehGLkGe-iI,"Jim, an escaped convict posing as a priest, is encouraged to bless the food for a room full of clergymen." tt0098625,9lInNK2jtx8,Jim has to improvise a sermon when he wins the lottery for the privilege of preaching. tt0314676,S7ZhqwAzKTQ,The Chief of Staff tries to to cheer up Dan Dark with a conversation but she fails when she mentions his visits to a psychotherapist. tt0314676,wwwhtUdGOVM,"As Dan Dark hallucinates, his detective alter ego saves him from the hoods trying to kill him." tt0314676,fk2MU617-Bc,Two hoods are stranded in the desert trying to find answers. tt0314676,vj6kMfad_2E,Dr. Gibbon plays a word association game with Dan Dark to get a diagnosis of his mental health. tt0314676,HBrzlqErO_E,Dan Dark accuses Mark Binney of being a pimp. tt0314676,kKlihXmSqPE,Dan Dark tries hard not to be turned on by Nurse Mills as she rubs lotion on his skin. tt0314676,IrDrwaot490,"During a performance, Dan Dark is targeted by a pair of hoods." tt0314676,5ud6mZ5SULk,"While the hospital staff evaluate Dan Dark's skin condition, he begins to hallucinate a musical performance." tt0134067,sheRsZ2HOYI,"The babies must take care of the infant Dil, who just pooped himself." tt0314676,-A-fBbIXbPo,"Young Dan Dark watches his mother, Betty Dark, cheat on his father with his business partner, Mark Binney" tt0134067,SYHN3rt-R5Y,The Pickles Family has a baby shower which becomes chaotic when Didi starts going into labor. tt0134067,PbwgDqZazAU,A wolf comes to attack the babies but the brave dog Spike saves the day. tt0134067,2fEZc4acGC0,The babies are surrounded by angry monkeys but they escape in the Reptar Wagon. tt0134067,tlSZa51g_rc,Tommy gets upset when his brother gets more attention from their parents. tt0134067,WzDlb8zf7gQ,Tommy is upset when his infant brother does not share. tt0134067,nOFfrd6bOh0,"Tommy Pickles fights with his brother Dil Pickles, while Stu Pickles fights with his brother Drew Pickles." tt0134067,Wpen_d9INlw,"Stu Pickles shows off his invention, the Reptar Wagon, a wagon for toddler transportation that dangerously shoots fire." tt0134067,MOKKPloglVE,The Pickles family welcomes a new baby boy. tt0134067,ZCz2Ob5_-bg,"The Reptar Wagon, carrying the babies, gets loose and speeds around town." tt0062153,Xbf61_Fgldo,Agent Masters comes clean about his identity to his strangely unsurprised therapist Sidney. tt0062153,AL2Qj_h_d-o,Sidney starts to see spies everywhere as he continues to fray at the edges. tt0062153,BuwF3dRJiS8,"The President of The Telephone Company explains their nefarious scheme for worldwide connectivity to Sidney, who gives him the opinion of a qualified psychiatrist." tt0062153,bXZFFinWVYw,FBR Agent Sullivan questions Bing Quantrill about Sidney's whereabouts. tt0060736,BFpoIHexhKQ,The Man and a brazen ivory trader hunt elephants for their tusks while on safari in Africa. tt0062153,3PHLmv4Zzu0,Old friends Agent Masters and Kropotkin reminisce on the spy game and discuss the forces after Sidney. tt0062153,VgKqo3TvZoI,"After escaping Washington, Sidney gets to know average -- but very forward thinking -- host Wynn Quantrill, and his average American family." tt0062153,JmElZmlYkHU,"As Sidney and a new friend get to know each other, assassins pile up around them." tt0062153,gRxu0ooBrPE,Agent Masters remembers the painful moment from his childhood when he first learned about race. tt0062153,5XINVbpWRmw,"A few weeks listening to the problems of a president can wear anyone down, as Sidney learns when his job interferes with his life." tt0060736,kdbGqJtHWQg,The Man skins and eats a snake for sustenance while one of his pursuers runs into some bad luck with a cobra. tt0060736,nNLk8GMdFd8,The Man races to the safety of a trading outpost while being chased by a group of African warriors. tt0060736,lk1As4QnaCc,The Man diverts the attention of enemy soldiers during a village raid to save a young boy. tt0060736,0SHMCN-6-IM,The Man engages two of his pursuers in deadly combat. tt0060736,mydc8K7yaZI,The Man becomes human prey when a group of African warriors set him free to be hunted. tt0060736,lNHheEljm5s,The Man uses flaming arrows to create a blazing barrier between him and his pursuers. tt0060736,ZpJvQAs3_98,The Man eludes a group of rifle-wielding soldiers by sliding down a waterfall. tt0419887,ZHNyG9ykGDA,Amir and Soraya get married and enjoy the wedding celebration. tt0060736,DPPoZpw3NOg,An army of native warriors ambush the camp of an ivory expedition in Africa. tt0419887,ky1W2n5RilM,Young Amir and Young Hassan enjoy flying their kites on an Afghanistan afternoon. tt0419887,Jhvq7EGVtUg,Amir enters into Taliban-occupied Afghanistan. tt0419887,7BEpbVXCbvo,Baba refuses to be medically treated by a Russian-American doctor. tt0419887,gbbbs1uWxvo,Amir reads a letter from his childhood friend Hassan. tt0419887,3jEZ_y7_kfs,Amir has a grand birthday party. tt0419887,20zF8Ug0MjM,Amir tells his story ideas to his friend Hassan. tt0419887,1TroueqxAtM,Amir and Hassan compete in the kite-fighting contest. tt0419887,ypf6WHYpeRU,Amir teaches Sohrab about kite flying. tt0366174,BZ1KEaetIwM,Aaron hunts down two deer hunters. tt0366174,2HgE2gZhovI,L.T. tracks a wolf and sets it free from the snare around its foot. tt0419887,4amekKHX28Q,Amir meets his future wife Soraya for the first time. tt0366174,p7zF3vZL-4s,L.T. and Aaron fight in the woods. tt0366174,F7UEddgJxrE,Aaron hunts down and kills a Serbian Commander. tt0366174,Fy_utfWemC4,L.T. and Aaron fight to the death. tt0366174,QSQTYxhlIog,L.T. and Abby argue over the best way to stop Aaron after he escapes by diving into the river. tt0366174,vdq609Xci-g,L.T. teaches Aaron how to kill. tt0373908,V0MF8uNW_gc,"Ralph, Ed, and Dodge begin to train Iggy the Greyhound for the big race." tt0366174,xVpk12wYQ5g,Aaron gets away from L.T. and Abby. tt0373908,7UhOWJw9eys,"Ralph, Ed, Alice, Trixie, and Dodge nervously watch as Iggy runs in the big race." tt0373908,g5lJIy5IcWc,Ralph attempts to put cayenne pepper on his mother-in-law's dinner but his plan backfires. tt0373908,LhbHp9ey_sU,Ed and Trixie pay a visit to Ralph and Alice's rundown apartment. tt0373908,G5nY_snMhic,Ralph reveals his latest bad investment to Alice and Trixie. tt0373908,hUAGX1IOMr0,Ralph and Ed try to convince the crowd that Iggy deserves to be able to race despite their financial situation. tt0373908,2Bml42cWPpo,Ed shows Ralph a hidden train car underneath the city. tt0373908,xVc_GWABEFk,Ralph and Alice discuss their dreams. tt0373908,oIu0P3gXxsI,"Ralph and Ed meet Dodge, their new Greyhound trainer." tt0044672,aQRjyav-x8o,Holly and Buttons the Clown perform a song for the rest of the circus crew. tt0044672,vykvU-52g6w,Klaus plays a dangerous game with Angel because he is jealous of her interest in Brad. tt0044672,jDjZ_Dh6HSM,Buttons the Clown talks to Holly about love. tt0044672,0Nn_t_RfYS8,The circus is saved when a parade brings in a huge audience. tt0044672,K9ITp_xSaxE,Klaus tries to save Angel by warning the circus train of the stalled train on the tracks. tt0044672,XEQJU3VPjHU,The Great Sebastian arrives at the circus with a police escort. tt0044672,BeRTEiGRbw8,Cecil B. DeMille introduces the circus. tt0044672,nIhrGSxslzQ,Holly and The Great Sebastian attempt to one-up each other in a game of high-flying acrobatics. tt0044672,7qPmEvrv3HQ,The Great Sebastian is injured while attempting a high-flying trick with no net. tt0191133,xWpMF_EFqyc,Lucius gives Darrin a refresher on his home town. tt0191133,dMOQv0rb6DY,Lilly and the choir work to get the inmates' approval in order to perform at the Choir Explosion. tt0191133,w6n3WpRNWTs,Darrin walks Lilly home and gets a goodnight kiss in return. tt0191133,8UMJAkQqhcM,"Darrin holds open auditions for the church choir, but is appalled by the singers' lack of talent." tt0191133,b7Dxy34dFyY,Darrin is fired from his job when a history of fraudulent activity finally catches up with him. tt0191133,WI00FLWTRrY,Darrin changes his tune about leading the choir after hearing the stipulations of his late aunt's will. tt0191133,gjWdFgV-Vz8,Darrin is smitten when he hears Lilly sing for the first time. tt0191133,rWGj8MCBBnc,Darrin interrupts his aunt's funeral to take a phone call from work. tt0191133,UEr47WrS7Ys,Darrin listens as a barbershop quartet spontaneously bursts into song. tt1305806,FAWPEOWyWN4,Sydney witnesses the fiery destruction of a Chinese restaurant through a lifelike flashback. tt0191133,aJh1RC2Z474,"Paulina objects to Lilly joining the choir, but Darrin leaves her with no choice." tt1305806,gJCMd15eaW8,Sydney has a violent flashback to a burning factory while sitting alone in her apartment. tt1305806,2xRNmBGvfSk,Sydney and Dr. Faulkner rush to save a group of people from a dangerous explosion that Sydney has foreseen. tt1305806,Il5lC0E0nqM,"While seated in a cafe, Sydney is frightened by the presence of a disturbed ghost." tt1305806,KtBMZ6VAZyI,Sydney comes face to face with the dead girl whose eyes were used to repair her vision. tt1305806,JRQJyeZ0wkY,Sydney sees a strange figure after she successfully undergoes an eye transplant. tt1305806,Q1WdHuNv1uo,Sydney is confronted by threatening ghosts on the way up to her apartment. tt1305806,RvQ1y_CPuDw,Sydney enters a dark basement and takes part in a flashback of Ana's death. tt0085407,6-RSVTLojGU,"When touching Dr. Weizak, Johnny experiences visions of the doctor's past." tt0085407,HG3e03wWQu0,Johnny arrives at the crime scene to put his powers to the test. tt0085407,-NgmhVRFApQ,Sarah tells Johnny he's the talk of the town. tt0085407,1Pcd6RZexJI,Politician Greg Stillson and Roger Stuart discuss campaign donations as Johnny arrives. tt0085407,zcZJF81jt4w,Johnny attempts to assassinate President elect Greg Stillson and as he begins to shoot the President takes an unexpected cover. tt0085407,Tj9M34DzAKo,"As Johnny shakes hands with Presidential candidate Greg Stillson, he discovers his true ambitions." tt0085407,MoRaxm7lK8g,Johnny after waking from a 5 year coma has his first psychic experience. tt0085407,fltSq_QHbbk,Johnny and Sheriff George Bannerman investigate the house of Deputy Frank Dodd after finding out he is the killer. tt0085407,y-TUmx2Ow74,Johnny confronts Roger Stuart about the fate of his son Chris. tt0072848,n1pSObsJ_hk,Tod and his neighbors watch as two roosters fight to the death. tt0072848,wFSWmfqMp7o,"When Homer stomps on Adore outside of a movie premiere, an angry mob tortures him in return." tt0072848,jJ_p_xhMEvU,"During a film shoot depicting the Battle of Waterloo, the wooden stage collapses and causes many injuries." tt0085407,P0ePytsVcpI,Johnny Smith suffers the car accident that gives him psychic powers. tt0072848,hfW-fzTbpRg,"After Tod goes to the movies with Faye to watch her small part in a movie, Tod steals a photograph from the lobby to impress her." tt0072848,cuK7JbG06ho,"Tod, who works as an art director in Hollywood, gets assigned to work on a new Battle of Waterloo movie." tt0072848,ajE9h1zUbMs,Tod meets vapid starlet Faye. tt0072848,BQO5Xy2ebhs,The angry mob continues to riot and causes Los Angeles to burn in flames. tt0055871,UlsRjhvfKJY,Allied spy Eric Erickson hurts his Jewish friend Max in order to keep his cover. tt0072848,cmtXA6x6Jm4,Faye has a temper tantrum in front of her lover Homer. tt0055871,fjzcBqz2Cpk,"Marianne makes a confession, not knowing the person inside the booth is not a priest." tt0072848,xLMzMKlv_Ao,Harry Greener is a door-to-door salesman who does not succeed at sales. tt0055871,_mwKm8tpz-M,Collins tries to convince Eric Erickson to adopt a pro-Nazi stance. tt0055871,PRximULrt4g,"Eric Erickson meets his friend Otto Holtz, whose son Hans is a Nazi Honor Guard." tt0055871,bqxDIHYcp9g,"The Nazis board the ship where Eric Erickson and Kindler, a Jew, are hiding." tt0055871,4k9WHvF1QsE,Marianne explains her motives for being an Allied spy to Eric Erickson. tt0055871,iHllnWESLvY,Eric Erickson and Baron Gerhard witness Nazi brutality. tt0408524,sPS0cKOGZO0,The Bad News Bears are interviewed on the TV News. tt0055871,ORy5ULEbQ48,Eric Erickson meets fellow spy Marianne. tt0408524,cPooLABE6Js,The Bad News Bears have a pillow fight and Carmen gets a Playboy Magazine. tt0408524,qq4gK8PkKNM,"The Bad News Bears are not allowed to finish the game until a standing ovation, and chant of 'Let them play,' from the crowd cheers them on to continue." tt0055871,Z6E9SQ_ZLkw,Wilhelm confronts Eric Erickson with condemning evidence. tt0408524,DM7JBXzCP1k,"When the Bad News Bears play against the local Native American team, a brawl looms on the horizon when Carmen accidentally beans the batter." tt0408524,jv2MsLBMi9U,The Bad News Bears trick their way into staying at a motel. tt0408524,sloo9PMVoRE,The Bad News Bears trick their parents with a fake coach who only knows one sentence. tt0408524,c2TcT9JairA,Carmen has trouble on the pitching mound. tt0408524,6Qhj03nCJn0,"The Bad News Bears fire their coach, with Kelly leading the way." tt0408524,BhbazIuvUCY,The Bad News Bears win on the last-at-bat. tt0102951,9BHXzftnFGA,Celeste arrives at Jeffrey's apartment to make sure that he does not get involved with her niece. tt0102951,PlTz6i4z6xU,"David travels to Florida to recruit Jeffrey, a washed up TV actor with a gig performing dinner theater for senior citizens." tt0408524,8GbzfsvSY7I,The Bad News Bears stop for a sexy female hitchhiker who thinks twice about getting in the van. tt0102951,4B0FFnkSCuM,Jeffrey tries to rekindle his relationship with Celeste while they shoot a passionate scene for their soap opera. tt0102951,dLLkOjKNanY,Celeste and Rose protest David's changes to the shooting script while he tinkers with a remote control truck. tt0102951,IVxzLITK1YM,David shrewdly persuades Celeste to go along with the new pages of the script. tt0102951,bANgFADltvw,Rose reveals Montana Moorehead's big secret during a live taping of a soap opera. tt0102951,OkphsYRRJ_0,Lori sneaks her way into Betsy's casting office in hopes of landing a role on a soap opera. tt0122718,gmYSTObayoY,The Commando Elite find a supply of Barbie-like dolls and turn them into new recruits. tt0102951,0I7GjbhDYtM,Jeffrey has difficulty reading his lines from the teleprompter during a live taping. tt0102951,LC1Sb6tRr4E,"Celeste breaks down in front of the entire cast and crew of the show, and reveals the full story behind her love affair with Jeffrey." tt0102951,fX4XAbCTdYs,Celeste nearly falls while trying to spy on Jeffrey through his apartment window. tt0122718,n7KKfjFRw8w,Alan rescues Christy and she goes postal on her doll collection. tt0122718,TgZwFvKRqK4,Archer uses Alan's computer to learn about the world. tt0122718,H7XEyuPBE48,The Gorgonites decide that they should fight even if they're going to lose. tt0122718,ul_HuCZxxNU,Chip Hazard gives a rousing speech made up of bits and pieces from patriotic speeches throughout history. tt0122718,Ls5834hbssM,Chip Hazard escapes from his box and activates the rest of the Commando Elite. tt0122718,0bbWQy30oc8,Alan uses Chip Hazard to overload the transformers and cause an EMP to take out all the evil toy soldiers. tt0122718,pMoxr-jgd58,Phil tries to negotiate the surrender of the Gorgonites. tt0122718,kQoFdaWI4h8,Brick Bazooka attacks Alan's bicycle. tt0122718,rFHh8MTXs5M,"When Irwin and Larry pitch Mars their new toy lines, he decides to make them into real, functioning toy soldiers that can walk and talk." tt0108162,DebtnaQFX7M,"Carly and Zeke engage in a strange, flirtatious game while out to dinner." tt0108162,T6QGAOSIE-o,Carly and Zeke share an intimate trip to the gym. tt0108162,pKWLGY2fwZg,The heat rises between Carly and Zeke as they take the elevator to the 13th floor. tt0108162,lDFltuNEfts,"After investigating a scream, Carly finds Jack hovering over a bloody Vida." tt0108162,njP__lsFwE4,Carly has a less than pleasant jog with Jack. tt0108162,Ya7Qs1NHepQ,Naomi Singer is thrown to her death by a hooded figure. tt0108162,ZMb-qj1X1do,Carly destroys Zeke's viewing room. tt0108162,6QcrQ_TIoKw,An eager co-worker interrogates Carly on the sexy details of her latest fling. tt0108162,hEiI72hLQX4,Zeke's seduction of Carly pays off in a big way. tt0239986,jowNLHQCAAY,Carpo gives Tommy some strange advice before his date. tt0239986,f3tseBsU248,"Everyone gives their final words on love, sex, and relationships." tt0239986,Za9pPzJJcYg,Annie confronts Griffin about whether or not he is having an affair. tt0061385,_4jtkw-qFms,Corie argues with Paul over his inability to have fun. tt0239986,M9m4XUd6x98,Griffin and Annie have an awkward dinner with Hilary and Harry. tt0239986,_vxVcxYCyE4,Ben asks out Ashley after she waits on him in a coffee shop. tt0239986,6ylO7RAbApc,Tommy and Maria meet when they both want to rent the same movie. tt0239986,2wEjsHggyII,Ben and Ashley share some sweet moments at the beginning of their relationship. tt0239986,a6mkbps0BmY,Everyone tells the story of how they lost their virginity. tt1130884,Z_0TQHoV_2I,"Teddy asks Chuck which would be worse, ""to live as a monster, or to die as a good man?""" tt0239986,erILyrdpSqs,"While looking at an apartment, Tommy and Annie argue about the ""Real New York.""" tt1130884,rku6u5PmiZ4,"Andrew tells his wife, Dolores, that he loves her, just before killing her." tt1130884,eveUzWmTxl4,Dr. Cawley and Dr. Sheehan try to convince Teddy that his real name is Andrew Laeddis. tt1130884,HWe802TQAG0,"Teddy meets Rachel Solando, who questions his very existence." tt1130884,9DlWhZ45k5w,George Noyce tries to convince Teddy he is part of a conspiracy. tt1130884,9WY5gDBR0gM,Teddy and Chuck decide to leave the island before it's too late. tt1130884,KihpUEKi4TA,Teddy questions patient Peter Breene concerning the whereabouts of Rachel Solando. tt1130884,-F1-sTyGvwA,"Teddy dreams of his wife, Dolores." tt0096094,ghwBg2RgBJM,"Kristy talks Jake into going to a fertility clinic, where he imagines that everyone laughs at him." tt0096094,TyeZy_UPYKM,"Waiting at the hospital, Jake thinks back on his marriage as his wife, Kristy, has emergancy surgery while giving birth to their child." tt0096094,_W5MVZjoNwc,"Davis comes onto his best friend's wife, Kristy." tt0096094,5uVVWV4FnVU,Jake hears more than he bargained for when the preacher reads his wedding vows. tt0096094,DsKfkkrTLMg,Jake's boss tells him about the cold hard reality of settling for less. tt0096094,RfqBp4LFuIQ,Jake gets caught lying on his resume during a job interview. tt0096094,LDnFpgimHH4,Jake imagines his neighbors performing an elaborate musical number while mowing their lawns. tt0261289,5_B-hXtddxw,Joe Tyler and Sara Moore escape trouble by pretending to be vets. tt0096094,ViPVPgUJUgM,Kristy makes Jake promise he won't get mad before she tells him her secret. tt0096094,dPXGowa6p3Y,Jake is less than thrilled by Kristy's routine attempts at conception. tt0261289,nkelgV49oGQ,Joe Tyler and Sara Moore share their first kiss. tt0261289,-7-C6lSAfOs,"Just as Joe Tyler thinks he's caught Gordon Moore, he has to deal with a monster truck and renegade biker." tt0261289,t5xpX6krGmE,"To escape Tony, Joe Tyler and Sara Moore maneuver through a conveyer belt." tt0261289,cgogH0SylMc,Sara Moore and Joe Tyler go to desperate measures to get a free motel room. tt0089945,lEiwqEMhS9E,Colonel Ticonderoga seeks out help from the Railroad Colonel. tt0261289,DG5ZouipJNs,"Joe Tyler and Sara Moore track Gordon Moore to a gym, where they battle his personal trainer Allison." tt0089945,cIE1fT395HM,"Peter tells Rex O'Herlihan about the dangers in town, but Rex isn't convinced." tt0089945,NARUgQRZhL8,Rex O'Herlihan challenges the gang of outlaws to shoot him from a distance. tt0261289,R_shARjqjLA,"After Tony warns Sara Moore she's about to be served papers, she tries to escape process server Joe Tyler." tt0959337,sNcBUOlGBcg,John becomes upset when Frank announces that they're no longer moving to Paris because April is pregnant. tt0089945,ewVwSrVSKS4,Jim and Jud bring recently deceased Blackie to Colonel Ticonderoga. tt0089945,BPvZa789l5o,Rex O'Herlihan and a gang of sheepherders face off against the outlaws that threaten them. tt0089945,Vdhhi9nYLTI,Blackie and his two henchmen swagger into the saloon and create mayhem. tt0959337,inDZp80Sq6U,"Helen Givings and her Husband Howard, bring their mentally unstable son John to visit the Wheelers, in an effort to help socialize him." tt0089945,vYafR-6wNGE,Rex O'Herlihan meets Bob Barber for the good guy duel. tt0959337,m_7Bm1gyq2c,Frank gets into an argument with April when he finds out that she's been planning on aborting their unborn child. tt0959337,RVGyvDhPE3k,Frank tells April about his past infidelity in an effort to come clean. tt0959337,lPfrzsQ2-Qo,"April and Frank have breakfast together, and Frank explains what he'll be doing at his new job." tt0959337,n2lTpPptOWA,The Wheelers get in an argument because April realizes that she no longer is in love with Frank. tt0959337,RSEMLDUOqe4,April attempts to convince Frank that they should take the family and move to Paris. tt0959337,1BUBVkpQQGA,Frank and April get into a screaming match about their lifestyle in the suburbs. tt0421239,FhDi_WF5uOI,Lisa must get Keefe's family out of the hotel room before the missile is fired. tt0421239,ZcvlWuqqv48,"Lisa writes a message on the bathroom window, but Jack finds out." tt0421239,SJB5InL3g7I,Jackson and the police both chase after Lisa in the airport. tt0421239,kq0YESApfvs,"Lisa is being stalked in her house by the killer, Jackson." tt0421239,G6EPGcF9mW0,"An annoying couple complains about the hotel, which Lisa does not tolerate." tt0421239,6Wmzed6d0Jo,Lisa rams her stolen car into the assassin. tt0421239,x7CXlwS73iI,"Lisa tries to write a warning inside a book, but Jackson finds out and headbutts her unconscious." tt0421239,1MnPXQSWAJo,Jackson explains his kidnapping plan to Lisa. tt0421239,YaLewAfBoU0,Lisa stabs her captor in the throat with a pen. tt0250687,AIPb1OMTZ0Q,Owen tolerates a bus full of Lucille Ball impersonators and the distaster that ensues. tt0250687,OXpqA3BvLLg,Duane and Blaine attempt to gain an advantage in the race by incapacitating the airport radar tower. tt0250687,uJMPom6-xmA,Randy and his family get more than they bargained for when they decide to stop at the Barbie Museum. tt0250687,MdMVzxis5vs,"After emerging from the desert, Owen disguises himself as a bus driver to gain a leg up in the race." tt0421239,TuiyN5O4Q5k,"When hotel reservations are mixed up, Lisa is able to save the day." tt0250687,Wj2sfYCpHOo,Vera and Merrill steal a land speeder. tt0250687,CuscvBChOqM,Tracy takes a detour to visit her cheating boyfriend. tt0250687,XSVzRBiiTxA,"Donald Sinclair explains the rules of the race, or rather the lack thereof." tt0250687,4dsgQb3jkk4,Randy drives Hitler's car into a conference for war veterans as the result of a misunderstanding with bikers. tt0250687,UJbqnbXI0Po,Duane and Blaine chase the thief who stole their key. tt0082970,BFanCVteXfw,The racist firemen harass Coalhouse Walker Jr. and try to make him pay money to travel on the road. tt0082970,3b00UbIxbCc,Coalhouse Walker Jr. is furious that the racist firemen will not clean up the mess they made on his fancy car. tt0082970,lClRzGmpFrs,Coalhouse Walker Jr. wants revenge on fire chief Willie Conklin for his racist behavior and he's not afraid to use violence. tt0082970,9wQHMLWpVLk,Coalhouse Walker Jr. meets with a lawyer to figure out if he has a case against the racist men who damaged his car. tt0082970,wVpIChmQ7dQ,"Rhinelander Waldo tries to communicate with the gangsters who are hiding in the Morgan Library, which is full of priceless items." tt0082970,_U82hhWfDFY,Mother and Father discover a baby that was abandoned in their garden. tt0082970,cLYCKmqJApw,The Jewish immigrant Tateh has made a life for himself as a film director. tt0258038,40cOkf5fT7A,A flashback highlights Little Pootie and his preternatural charisma. tt0082970,EPDoc6alrlE,"Coalhouse Walker Jr. prays before exiting the Morgan Library, where he hid from the police." tt0082970,B1Q2f338TJU,Coalhouse Walker Jr. and his gang take over the Morgan Library as part of their plan to achieve justice against the corrupt civil authorities. tt0082970,TJf7vDKfuFQ,Evelyn Nesbit meets Jewish immigrant Tateh and explains why he must keep his daughter tied up. tt0258038,g0mHVE8ebqA,Lacey and JB hang out on the corner and talk about the weather. And they talk about the weather too. tt0258038,NLIbv_J5E0M,"Pootie arrives to stop Lecter at the grand opening of the first Pootie's Bad Time Burgers Restaurant, only to be confronted by a horde of Pootie look-a-likes." tt0258038,dOTGLArtfrQ,"Pootie is confronted outside a party by a mugger, then brings the mugger back from the dead after killing him in self-defense." tt0258038,aESwFtEWnpM,Biggie Shorty discovers that dressing fancy and standing around near prostitutes can give some people the wrong idea. tt0258038,89lwQxQm5co,"Bob Costas interviews international film, music, and pottery superstar Pootie Tang about his new film-- ""Sine Yo Pitty On The Runny Kine.""" tt0258038,yu_9eQXlsVQ,"The world goes crazy for Pootie's newest single: ""------""." tt0066181,TBS2UeiR7Mc,Melinda declares her love for Dr. Chabot. tt0258038,8Wg3WYlR2M8,Little Pootie is raised right by his mother and father before tragedy strikes. tt0066181,2K-ihnb5kho,Daisy sings about her struggle to choose between two men. tt0066181,x1BpKIb7Ces,Daisy sings the title track of the film. tt0066181,uE_EjcgtiVI,Dr. Chabot tries to get the attention of Daisy. tt0066181,_8s4_Nabo4E,Daisy wonders why her past self was more interesting than she is. tt0078024,4EfmKXE-Li4,Oliver meets Marcie Bonwit on her jog and plans a tennis date with her. tt0066181,u7kInn-7hcA,"Daisy recalls how she seduced her husband from a former life, Robert." tt0078024,u73HoUZD7tc,Oliver complains to Marcie about her personality at work versus the personality she brings to the relationship. tt0066181,SESbcd2bp80,Daisy confesses her secret talents to Dr. Marc Chabot. tt0078024,TV9GpnvWxgQ,Marcie confronts Oliver about his distance in their relationship. tt0078024,G_2PNOH_j6A,Gwen and Stephen Simpson try to set up Oliver with Joanna Stone. tt0066181,Fsqymfl2Q_A,Daisy is surprised when Tad visits her. tt0078024,jlYY8xkTXOQ,Oliver and Marcie go on their first date and Oliver is faced with a touchy subject. tt0078024,a-KQ5h6WmJg,Marcie gives Oliver a little bit of advice about facing his reality. tt0078024,E6SfKJ0TmXs,Oliver stays after the funeral to see Jennifer's casket lowered into the ground. tt0078024,51pdEOruyWY,"Oliver introduces a city official, Mr. Gentilano, to a community activist program for government approval." tt0063356,7dHg_hYZDCw,"The Strangler"" turns himself in to Morris Brummel but he doesn't really fit the description." tt0063356,UGKRVSevWnA,Christopher Gill finds Alma Mulloy's little delicate spot and then strangles her. tt0063356,jiP6PiKJLUs,Christopher Gill attacks Kate Palmer in her apartment while Morris Bummel is on his way to rescue her. tt0063356,0QeOXuuFo4g,Morris Brummel brings Kate Palmer home to meet his mother. tt0063356,QbfEULz4z98,Morris Brummel admits to Kate Palmer that he wanted to see her again. tt0063356,WBHjaRXCINg,"Christopher Gill disguises himself as a German plumber and prepares to strangle his second victim, Mrs. Himmel." tt0063356,gKGmO34XgMU,Mrs. Brummel questions her son Morris Brummel about the new girl in his life. tt0063356,7UsWapAIMGo,Morris Brummel questions Kate Palmer and receives a strange compliment in return. Mrs. Brummel criticizes Morris about the duties of his occupation. tt0056267,KOV2C0jVS4M,Paul has a phone conversation with Lucy in Arizona and Yoko Mori in Japan. tt0056267,rMdZw9aBmnY,Lucy and Sam meet Lucy's geisha instructor. tt0056267,vnQ9yD_IIwo,"Lucy lies to everyone to give her husband, Paul, the applause that he deserves." tt0056267,3FDh8EtZETg,Yoko Mori kisses her potential co-star Bob during her screen test. tt0056267,cCNhONF1lHI,Lucy wears a geisha disguise as a bet with Sam to prove her husband Paul will not recognize her. tt0056267,1lCWhKWBjbc,Bob enters Yoko Mori's room but his manly desires are thwarted. tt0056267,YBRg2qsJ94Y,Paul and Bob's community bath with the girls turns out to be a little different from what they expected. tt0056267,y47SwwfaTBk,Yoko Mori bluffs her way through Japanese and leaves a sumo wrestler puzzled. tt0110516,Q7-BibZkYxY,V makes an impression on the suburban town she's stranded in while on the clock. tt0110516,Q-_d7CI08qc,"Tom is introduced to V, and confusion arises over her chosen profession." tt0110516,WFOM58iTTJQ,"Frank lays down the law to V, a streetwalker turned house guest." tt0110516,mq2cz9Xvzcw,Frank and his friends hang out and talk about the great unknown: female anatomy. tt0110516,B1WG5mK06fA,V reveals her true profession to Tom. tt0110516,aNR8SIVnHTY,Frank brings V to class for an in-person anatomy lesson. tt0110516,_AUvAyx_fwc,V makes good on her offer to show Frank and his friends what they paid for. tt0110516,y603mzYAcas,Tom and his son Frank discuss the finer points of pleasing women over breakfast. tt0110516,g4v51XeJnkw,Frank negotiates a peepshow with V. tt0110516,LOb8UYWDz-0,V gets recognized by one of her clients while out on a date with Tom. tt0068835,TiCSS1zLCCI,Barney Cashman has smelly fingers because he works in a fish restaurant. tt0068835,I-kLvrKYP4w,Barney Cashman accidentally bites Elaine while kissing which causes frustration between the two. tt0068835,Fc7bVIA-b1k,Bobbi tells Barney Cashman about the strange things that happen to her. tt0068835,Rw8cPAmrrbU,"Barney Cashman meets cute actress Bobbie in the park, and in an effort to impress her, he loans her money." tt0068835,FiAJpDiz6Kw,"Barney Cashman pesters Elaine, who is interested in having an affair, enough to the point that she wants to leave." tt0068835,i7vKbmKF9VI,Barney Cashman talks about his history with women and feelings about death. tt0068835,GIiXwau_5iw,Barney Cashman gets too frustrated trying to create sexual excitement with Jeanette. tt0068835,j3MZdcbv-ew,Barney Cashman wants to have an affair with Bobbie but she acts too much like a goofy idiot. tt0068835,P38cMPv-Nag,Barney Cashman can't handle the depressing woes of Jeanette. tt0068835,U2Eff0vnE6s,Barney Cashman thinks to himself about the attractive woman on the street. tt0408985,MMiicN9p8a8,Senator Dillings takes notice when Georgia arrives in the restaurant to dine alone. tt0408985,jqyhGCHT-v0,Chef Didier shares the secret of life with Georgia. tt0408985,V81lVBQ8TCs,Matthew is on a ledge and Georgia talks him out of jumping. tt0408985,OinSJLNXgA0,Georgia tries snowboarding and ends up in a competition with Matthew tt0408985,Wg3iwI32C5Q,Georgia gets some interesting treatment from the spa. tt0408985,hweZTM7VPbk,"Georgia and Matthew prepare to base jump, but only one of them succeeds." tt0408985,gK06H6EpKP4,Georgia smashes Adamian's phone and speaks her mind. tt0408985,reIyMTBfEwQ,Georgia finds out that she has Lampington's Disease and doesn't have the insurance to cover it. tt0408985,Yorm8_AGu10,Georgia breaks out into some good old call and response at church. tt0119468,zPa3qf25T3s,Casanova punishes Kate for breaking the rules. tt0119468,T6QO7UyB5tI,"When Kate finally wakes up after being drugged, Casanova is there to greet her." tt0119468,5AwBYVybnY0,Kate cries out for help and gets the other girls to talk. tt0119468,081zoKkdEYA,Kate wakes up when she hears someone lurking in her house. tt0119468,QpxdbtnTXXY,Dr. Cross helps Kate remember what happened the day she escaped. tt0119468,uXyvjZa6x2o,"Kate encourages families who still have relatives missing, thanks those who helped her and reminds Casanova that she was the only one to break the rules." tt0119468,KiOiYYsMcM4,Dr. Cross talks Dianne out of killing herself. tt0119468,IWe5PTNQ6ko,Kate gets away from Casanova and runs for her life. tt0268397,VYMQZsZUxeA,Cindy gives Jimmy Neutron some kind words to cheer him up. tt0268397,hA1BikUzBKc,"All the kids in town find out their parents are missing, so they decide to have some wild and crazy fun." tt0268397,S_fzdjP3jKg,Jimmy Neutron reverses his shrink-ray to make himself bigger and defeat the aliens. tt0268397,QBvJoXAu2zM,Jimmy Neutron discovers that a giant alien chicken monster wants to eat him and his friends. tt0268397,nIJQOFSGKks,Jimmy Neutron gets ready for school using his crazy inventions. tt0268397,a7qRJ9T9TPg,Jimmy Neutron battles the aliens in outer space. tt0268397,r7k9mkm0TKU,Jimmy Neutron blasts off into outer space. tt0268397,Ea5k9eZg7rk,"Jimmy Neutron sends a message to aliens, who discover they want to eat his parents." tt0268397,SYOiDFKwCsA,Jimmy Neutron shrinks himself so that he can sneak out of the house. tt0099850,PZPOGfNlJyo,Raymond shoots Dennis when he breaks into Raymond's house. tt0099850,otQNGe5sWaQ,Raymond embarrasses Kathleen when she refuses to discuss her lunch plans. tt0099850,JQ8nLSXGWWE,Dennis sets up Van and then kills the shooter to tie up the loose ends. tt0099850,5R7pGpChUVw,Raymond becomes convinced of his wife's adultery when Dennis talks dirty about her. tt0099850,hRRvrXxGJjg,Steven wants Dennis to kill his parents so he can run the company. tt0099850,r0-vDDcDUMo,"When Van and his wife argue about her cheating, Dennis calms the situation." tt0099850,ZtahDAhvvSc,Raymond begs Demetrio to stop running. tt0119360,MTX0Ig39Nws,Howard's bachelor party turns ugly when the guys argue over which Barbra Streisand movie to watch. tt0119360,Rh4ap8LIbtw,Mike explains how homosexuality goes against basic plumbing. tt0099850,gvbI2bHohQ4,Raymond chases down the only eyewitness to the crime that took Van's life. tt0119360,mD83kao4Q60,Howard's students try to help him figure out why people think he's gay. tt0119360,oZQ95ON2X-s,"Cameron comes across Emily in her wedding dress, freaking out on the side of the road." tt0119360,UJ9Q1b1FwKM,Cameron outs Howard during his Oscar acceptance speech. tt0119360,fhUXu7x66BA,Peter kisses Howard. tt0119360,0yYUlLFlw1I,Emily flips out when Howard comes out on their wedding day. tt0119360,xa-P9llTLM4,Howard listens to an audio book on manliness and fights an overwhelming urge to dance. tt0119360,ZPP70vRDmzM,Howard assures his parents he's not gay. tt0110099,LKpCK8OtA1s,"Ed Walters falls for Catherine Boyd when she and her boyfriend, James Moreland, experience car trouble and pull into his repair shop." tt0110099,OFlIZu9exco,Ed unexpectedly meets Albert Einstein when he knocks upon Catherine Boyd's front door. tt0110099,jD4Fh0LsvjM,Catherine realizes she's in love with Ed aboard the sailboat. tt0110099,R7stiKJsGjY,"Albert Einstein, Kurt Gödel, Boris Podolsky and Nathan Liebknecht turn Ed into an intellectual." tt0110099,AkEnbYvJGg0,Ed and Catherine share a kiss as Boyd's Comet soars by overhead. tt0110099,w6kumXHaOeI,Ed tries to figure out the best way to ask Catherine out on a date. tt0110099,qb00B8U8UBw,"Ed passes a test with the help of his friends Albert, Catherine, Kurt, Boris and Nathan." tt0110099,U3qhoY13AkM,"Ed meets three of the greatest minds of the twentieth century, Kurt Gödel, Boris Podolsky, and Nathan Liebknecht." tt0110099,3NCw83LVWFo,Albert and Ed run into James at the lab conducting time deprivation experiments. tt0319531,ZI1jKmWANP0,Will visits a pathologist for information on the psychology of rapists and rape victims. tt0319531,nZq8AiBXhiI,Helen urges Will to stop seeking vengeance and leave while he still can. tt0319531,8lTcU_MuQGg,The Coroner gives Will the horrific news that his brother was raped before his suicide. tt0319531,-gkBCCbycmQ,"Will visits Helen to explain why he stopped writing her, and why he has returned." tt0319531,Fvka6JcREsY,"Will confronts Boad about what was done to his brother, and explains his plans to kill him." tt0319531,OXaqam1ZdZs,Will visits some old crime buddies to find out who was behind his brother's death. tt0319531,tBeJkq_by_8,Mickser is devastated when he finds Davey dead in the bathtub. tt0051745,VrMWnHwh0z0,Tom and Sophia differ in their views of parenting. tt0051745,t-T4RYRUNWk,Cinzia swindles a ring toss game to win Robert a harmonica. tt0319531,BBWQchYpjqQ,Boad has his henchmen grab Davey in order to rape him. tt0051745,7ynMrmloUVA,Tom tells David his views on life after death. tt0051745,Wkm_Bp6pG9k,Angelo is too afraid of falling for Cinzia to continue their date. tt0051745,JcO_Cs2WZLU,"Angelo, preoccupied with Cinzia, leaves Tom's house on the tracks." tt0051745,eMuBBjnM4yo,Cinzia asserts herself when Alan gets out of line. tt0051745,h4eOGlJpLYg,Angelo offers Tom a housing alternative. tt0051745,uy8_ARH8yyM,Cinzia gets the job at the last minute. tt0080836,YMhAvAFZ8js,Henry cautiously leads two other scientists into the interior of an alien spaceship. tt0080836,Ka-SEhfCAUY,White House Representative Cain discusses how to handle the government's response to the crash landing of a U.F.O with his top officials. tt0080836,fPk-Dms1rJc,Phil accidentally powers on the alien spacecraft when searching the ship for clues. tt0080836,aqa74uEbtDE,Lew attempts a risky maneuver on top of a speeding gas truck to get rid of two government agents. tt0051745,JQwmeTKQLo8,Cinzia insists on staying in Washington against Arturo's will. tt0080836,k0aqHfvHcsc,Harry and his team make a startling discovery in the spaceship moments before an explosive-filled plane is flown in to destroy the hangar. tt0080836,OJiaifxaWCY,Harry reveals to his team of scientists that the aliens they've discovered have previously visited earth. tt0080836,wYSIce1SzFU,Steve and Lew elude two government agents chasing them in their rusty old pick-up truck. tt0080836,zstIMA6K-Ws,Steve tries to steer a rental car to safety after he realizes the brakes have been cut. tt0050468,wa5asCQrdPE,"Disadvantaged, Doc Holliday and Wyatt Earp take on the rest of the Clanton gang." tt0050468,fCQb93-RrZo,Doc Holliday enters a saloon to confront Bailey. tt0080836,_nngOtRHAK0,A team of astronauts encounter a U.F.O. while launching a satellite into space from their shuttle. tt0050468,BIt9IYPOY2g,Wyatt Earp helps Doc Holliday escape. tt0050468,aE4h5rX9u3U,Doc Holliday and the Earp family go head to head with the Clanton gang. tt0050468,6VUfXGlADjU,"Doc Holliday walks in on Kate and her new man, Ringo" tt0050468,YJnneXfx_q8,Wyatt Earp lectures Billy about the gunslinging life. tt0050468,UNlo03HucLM,Doc Holliday teams up with Wyatt Earp to stop Shanghai and his gang from causing any more damage to a ballroom dance. tt0050468,Lj7OCHi8x7c,Wyatt Earp warns Ike and his gang that there are no firearms in the city of Tombstone. tt0082432,-xX0mOMuxyI,Archy tries to console Frank when he finds out Snowy is injured and Barney is dead. tt0050468,1yLt0kzJIUQ,"Wyatt Earp and Doc Holliday stop for the night after a long day, but their sleep is interrupted when a posse sneaks up." tt0082432,GLZXGflTTjA,"Archy meets Frank, who encourages him to avoid the army's age restriction by enlisting in Perth." tt0082432,0VIefkYf2Rs,Archy and Frank are reunited during a practice battle. tt0082432,RGuY5r-7ta4,"Archy and Frank have a friendly race to the pyramids, where they carve their names into the stone." tt0758746,elvtIj_sPwU,"Tommy wakes up from a realistic nightmare, where a younger version of himself watches on as two teenagers dig up Jason's corpse." tt0758746,aoZDSctyBE0,"Joey pesters Victor until he violently snaps — chopping his back, instead of chopping wood." tt0758746,HONa-BdZMA4,Sheriff Tucker tells Mayor Cobb who he believes is responsible for the recent murders. tt0758746,ryKepaMME_U,"Pam runs from Jason, and is saved by Reggie who plows him over with a tractor." tt0758746,ltdgreWmnSY,"Tommy puts on Jason's old mask, and takes his identity." tt0758746,YIw-r1yjxMU,"Junior recklessly rides his motorcycle through the yard, while Ethel yells at him to come inside for dinner." tt0758746,OGEmY8RCF40,Anita plays a trick on Demon while he's using the outhouse. tt0758746,F9fEIstp82g,"Lana leaves to meet Billy, but when she arrives at his car she finds more than spilled white powder." tt0758746,qlwxaCiNZzo,"Pete goes into the woods while Vinnie works on their broken car, but when he returns he gets an unexpected surprise." tt0430105,lnf-VO8gIGg,Lt. Green finds out that Detective Fowler is a dirty cop. tt0430105,FZJK7bi2mWU,"The police interrogate Bobby, Angel and Jeremiah about the death of a gang leader." tt0430105,Cf3YdE-vMyE,Bobby and Victor box on a frozen lake. tt0430105,ZCYBYZDrmWk,The Mercer house comes under attack from gangsters with machine guns. tt0430105,bIbxR_KN2TM,Bobby interrupts a basketball game with a gun to find a witness. tt0430105,bdm9LVNbuNg,Bobby and Angel lead a raid on a teen gang to get some answers. tt0430105,BcW6m0Rg1-8,"Evelyn is in the wrong place, at the wrong time, when a violent robbery occurs." tt0430105,qSnUywWS9xs,Bobby and his brothers chase after gangsters in a snowstorm. tt0099587,JPofeRImxv8,"When McPherson is shot by a Vietnamese peasant, Grafton makes an emergency landing." tt0430105,lDduI2NkIsQ,Bobby shows up at the apartment of the crime-scene witness with a violent attitude. tt0099587,vXLLH1eSOZE,Cole and Grafton try to save Camparelli from enemy guns but their plane gets shot down. tt0099587,tBNjWDkNbms,Cole questions Grafton's feelings on war and peace in Vietnam. tt0099587,rZuHQ94ES6U,The military men get drunk and rowdy at a local bar and participate in a game with a toy airplane. tt0099587,g2h8xRzMxtA,A Duty Officer describes the next flight mission. tt0099587,pZXuol2q1Yg,Grafton narrates his goodbyes to his friend and fellow soldier who died in a flight mission. tt0099587,2wOJBjpLTBA,Camparelli prepares the jet pilots for their daylight raid to North Vietnam. tt0099587,g8YFtf6tfRg,Grafton tells Camparelli that his promotion to Captain could lead to even greater things. tt0099587,Xwob-vrMkz0,"Even though Camparelli is stuck behind enemy lines, he orders his team to retreat." tt0082382,_XriL3ARav8,Justice Ruth Loomis pretends to be the CEO of Omnitech while Justice Dan Snow questions her. tt0082382,eZ64IFqMQuQ,Justice Dan Snow tries to convince the other Justices to hear a case against Omnitech. tt0082382,dZ-teGgl2tw,A Nebraska attorney addresses the Supreme Court concerning a film he deems pornographic. tt0082382,r0N4KlcTSUQ,"Justice Dan Snow lectures his law clerk, Mason, on the role of the Supreme Court." tt0082382,f9vhFEweovc,Justice Dan Snow and Justice Harold Webb get in an argument concerning their convictions. tt0082382,i-f0M5TqmsY,Justice Dan Snow and Justice Ruth Loomis argue over the intention of the law. tt0082382,-Ixi48TxkaA,Chief Justice James Crawford informs Justice Dan Snow of the President's new appointee to the Supreme Court. tt0082382,X1DvoMiJ6n0,Justice Dan Snow advises Justice Ruth Loomis not to resign from her position on the Supreme Court. tt0097336,DN3iIszMnI0,General Barry barges in and confronts General Groves about the tire shortage. tt0097336,2djG7snKS8w,Oppenheimer argues with General Groves about demonstrating the bomb versus actually dropping it on the Japanese. tt0097336,K8qQO5DvYhE,"At the start of the Manhattan Project, General Groves gives a speech to the scientists." tt0097336,zB-hQWVCwwU,Dr. Schoenfield challenges Oppenheimer about what they've been doing. tt0097336,AQ0P7R9CfCY,Michael leads the team in assembling the core when something goes terribly wrong. tt0097336,ZQ-8RqS16uU,General Groves visits an eccentric scientist about the possibility of building an atomic bomb. tt0097336,emVaK5MoPBg,Oppenheimer oversees the first testing of an atomic bomb. tt0418647,n3_noySdJVs,Cale sneaks out of her house in the middle of the night to visit Soñador and discovers that she likes popsicles. tt0097336,JPoZcvcPtIA,Oppenheimer and General Groves debate postponing the device test due to weather. tt0418647,78xJ5ZYPQnc,"When Soñador breaks her leg, Ben rushes out to the field to help her." tt0418647,pVZtw0LrIX4,Soñador wins The Breeders' Cup Championship. tt0097336,YuuMHvaxXFY,General Groves lectures Mrs. Oppenheimer on a wife's place in the background. tt0418647,h0i97SWIdLU,Ben reads Cale's story in front of the class at parent's night and is touched deeply by it. tt0418647,Njpz7jWgB04,Cale announces that she wants Soñador to race in The Breeders' Cup World Championships. tt0418647,BjKq059eG6E,Ben surprises Cale by making her the proud owner of Soñador. tt0418647,SRNxRvPSscQ,Ben explains to Cale the harsh reality of horse racing. tt0418647,RLcngJeCHtg,"When Soñador gets startled and runs away with Cale on her back, Ben chases after them in his truck." tt0418647,0M6PP32wggM,"Soñador wins her first race after the accident and gets claimed, much to the chagrin of Cale." tt0044509,OuE_YH1pzC0,Lola and Doc discuss the nature of their relationship and marriage. tt0044509,5IFvZMLDqXA,Doc relapses and expresses hostility toward Lola. tt0044509,z7vdutawe8g,"Distraught after seeing Turk and Marie together, Doc struggles not to relapse." tt0044509,59E_IDXFWuY,Marie and Turk get into an argument over her other boyfriend. tt0044509,LNFINZN0KXY,"Lola joins Doc at his Alcoholics Anonymous meeting to celebrate his ""birthday"" of one year of sobriety." tt0044509,OGbya9Fm_Ns,"After originally being opposed to the idea, Doc decides that renting the spare room to Marie is a good idea upon meeting her." tt0044509,8csRJcVDQdc,A drunken Doc gets increasingly violent with Lola. tt0044509,SLkR7mzysAs,"Lola tells Doc about the dream she had about their lost dog, Little Sheba." tt0163983,xPLtxTJnVOY,"After being kidnapped by The New Dawn Cult, Maggie wakes up to find herself speeding down the wrong side of the road during rush hour traffic." tt0044509,7hrG-FtbWsw,Lola tells Doc about the dream she had the night before he returned from the hospital. tt0163983,E2syhaH4Qgk,"Maggie and Cheri attempt to flee from the New Dawn Cult, and the encounter ends in horror." tt0163983,IuCIhvIAn44,Maggie O'Connor stops by a church and discovers a shocking revelation about her niece Cody. tt0163983,yV5JUYhnJQk,Cheri pays a visit to the hospital where Maggie works to deliver a dire warning about her niece and sister. tt0163983,MAzasda1GUA,"Cheri Post knows where The New Dawn Cult has taken Maggie's niece, but she takes off before spilling the details." tt0163983,r2xpAXMPRHc,Maggie checks in on her niece and is horrified by what she sees. tt0163983,CeMiILVlZgo,A little boy talks to the wrong stranger while collecting cans in an alley. tt0163983,VyMHLfAg9bI,"Maggie attempts to take the direct route in stopping Eric Stark, leader of The New Dawn Cult." tt0163983,D5a4_a3dIK4,Maggie makes a daring escape with her niece Cody from The New Dawn Cult. tt0075765,nLeZGuvX7D8,Lander tells the VA counselor about his wife and their divorce after he returned home from a P.O.W. camp. tt0075765,SWjCrhbuvCM,"Lander flips out when he gets passed over for the opportunity to fly the Goodyear Blimp at the Super Bowl, and will therefore be unable to carry out his plot to destroy the game and kill 80,000 people." tt0075765,xknWZIAzBCc,"Despite being mortally wounded, Lander manages to fly the Goodyear Blimp into the Super Bowl and light the fuse, while Kabakov tries to attach a cable for a helicopter to haul the blimp to a safe distance before its weapon launches." tt0075765,VWJfmCFQjAk,Lander and Dahlia test their experimental weapon on an unsuspecting victim. tt0075765,awYi2rXf1Ws,"Dahlia tries to poison Kabakov, but his partner, Moshevsky gets in the way." tt0075765,7ZnhCcj4sXg,"Kabakov and Corley take a tour of the Miami stadium that is going to host the Super Bowl, the terrorists' intended target." tt0075765,exE414Mp-gA,Kabakov and Corley try to intercept the terrorists before they can take off with the Goodyear Blimp and destroy the Super Bowl. tt0326769,eensusNo-jE,"Anita gives Kid an ultimatum - quit racing, or live with someone else." tt0326769,9R_jeIGgaa4,"Primo asks Kid and Stuntman to help him find the girl that mugged him, but his friends can only laugh at the hilarity of the situation." tt0075765,UEemdeEfw-Y,Kabakov leads a Mossad raid on a Black September compound in Beirut. tt0326769,Dt3n2LVD4q4,Anita finally tells Smoke that Kid is his son. tt0326769,xLz4trRoHeM,Kid's ego gets inflated when Smoke confronts him about breaking the rules. tt0326769,hMW3GQ2x79Q,"When Kid wins a race in which he was never supposed to ride, he gains the respect of his fellow riders." tt0326769,317Fhd1UwzQ,Will is the victim of a fatal accident when Chu Chu's bike spirals out of control during a race. tt0326769,nF2xGs2J6Gk,Smoke challenges Dogg to a race after he calls him out for being too safe of a rider. tt0326769,DERds8rPSi0,Primo tries to prove that he can ride with Kid and Stuntman. tt0326769,xaBIju-chWA,Kid's bike spins out in the middle of his race with Dogg. tt0061385,gdJC7j6maRs,Corie has to talk Paul down after he drunkenly wanders up to the roof. tt0061385,BjbnFg5KBwI,Corie finds Paul stinking drunk in Washington Square Park. tt0061385,QD1FH9vC-q0,Paul and Corie arrive at the Plaza Hotel for their honeymoon. tt0326769,JJAByeqjimo,Kid attacks Smoke after he tries to discourage him from racing. tt0061385,djAkVv3P_pQ,Corie finally allows Mildred to give her marriage advice. tt0068245,cJYwpfA3HWY,Jake and Drew take revenge on the thugs that tried to rob them. tt0061385,WvgG6VNS2J0,Corie and Paul get an unexpected visitor in Victor Velasco on their first freezing night in the apartment. tt0061385,T3dPGXTusv4,Paul gives Corie a hard time about all the problems in the new apartment. tt0061385,7euiG3tT2R8,Paul goes to work for the first time since the wedding. tt0068245,AgJE212GTcs,Marshal questions one of the gang members right before he has him hanged. tt0068245,22aRiNlHhaI,Drew convinces the gang to trade in one of their guns for a meal. tt0068245,pCQuhXDlfL8,"When Jake tells the gang to steal food for the night, Boog gets shot in the head." tt0061385,oqyRFXXwB48,The five-story walk-up proves to be quite a challenge for the delivery men. tt0109120,N-PI5nIwciE,Toni comes to accept that Andre is better off living at the aquarium. tt0109120,_c7cV5_jU5Q,Andre saves Toni from the storm by guiding her boat toward her father. tt0109120,cjS-Y6WsWMg,Andre escapes from his Winter home in the barn and doesn't return until Spring. tt0109120,b_jYYdrSYBg,Mark and Paula take Andre out to sea where Mark reveals his intentions of killing Andre. tt0109120,PJot4Pv7dFI,Harry saves Andre from a belligerent Billy. tt0109120,RhUPit82Gm0,"Toni brings Andre to show-and-tell, and becomes heart-broken when her parents tell her they must return him to the wild." tt0109120,T7eWdvyCHyI,"Andre becomes a local celebrity for performing tricks, but Toni's dad soon finds himself in trouble with the authorities for keeping him in captivity." tt0109120,AI9AcMtuqsU,"Harry leads by example, encouraging Andre to play in the water like the seal that he is." tt0109120,39vZZiM3kIA,Toni spends some quality time with Andre. tt1403865,r4SF22qFxbE,Rooster challenges La Boeuf to a shooting contest after his marksmanship comes under suspicion on account of having only one good eye. tt1403865,oK4FZ3ks17M,Mattie tries to recruit Rooster to help her find her father's killer and bring him to justice. tt1403865,gMPr9rchJMs,"When La Boeuf suggests that he join in on the hunt for Tom Chaney, Mattie resists the overture with her signature wit." tt1403865,mbkWniWSpR0,"When Mattie takes it upon herself to arrest Tom Chaney, her inexperience gets the best of her as things go quickly awry." tt1403865,ovy6F76ip3M,"Ned Pepper holds Mattie hostage, using her as leverage against Rooster." tt1403865,wdAXjMj6mfU,Rooster takes on Ned Pepper and his henchmen in a climatic one-on-four showdown. tt1403865,MHfk4edzvnI,"Frustrated that the trail for Tom Chaney and Ned Pepper has gone cold, Rooster lashes out at Mattie and La Boeuf for their shortcomings... But he saves the greatest invective for himself." tt1403865,MEU2EJBkJcs,"After considerable haggling, Mattie convinces Rooster to help her find the man who killed her father." tt1403865,_Rnaa9qtGgs,Chaos erupts after Rooster interrogates a pair of outlaws regarding the whereabouts of Tom Chaney. tt0384680,fY-Aprk4mtY,Dave assaults the man who has been harassing and threatening his son. tt0384680,mQ3tgtzkz_U,"While practicing archery, Dave takes aim at Russ." tt0384680,qvFduxMK7zo,Dave has a breakdown when someone throws a pie on him before he has to see his family. tt0384680,vRaCv5oNQ3w,Dave recalls an instance when he was not the best husband he could have been. tt0384680,oCjXFnr826Y,Dave and Noreen have an argument over a very specific aspect of their marriage. tt0384680,FDGyKHeU2Es,"Dave and Noreen go to trust counseling, where Dave is less than stellar." tt0384680,cSUVLAM8jx0,"After an argument with Russ, Dave finds out some disturbing things about his daughter." tt0100828,VB3awTlgRFk,Jake Berman has a smoke in a house that is flooding with oil. tt0384680,-5Rohhkg-7k,"After getting hit with a Frosty, Dave's day gets even worse when Robert tells him that he has been diagnosed with cancer." tt0384680,b3Aq5Vc0Ics,Dave has a verbal altercation with another customer in the DMV line. tt0100828,wrrxHvC1J7I,Jake meets with Kitty and discovers what happened to Katherine Mulwray. tt0100828,N4fylYYIrUc,Jake makes Detective Loach suck on his own gun. tt0100828,2cExWs8VUN8,Jake talks to Rawley about oil. tt0100828,_7Y_OCGOKTk,Jake and Lillian succumb to the passion of the moment. tt0963794,ZErJ-R9PLFA,Jeff sacrifices himself so that Amy can escape. tt0100828,wCDAFiLrHE0,"When Lillian threatens to expose Jake, he knocks her out." tt0100828,oqCHL75LG3Q,Jake Berman turns homicidal when he finds his business partner in bed with his wife. tt0100828,3zPrtRFOZQY,Jake Gittes prepares Jake Berman for a confrontation with his unfaithful wife. tt0963794,phzJ2Iam214,Stacy feels the vines in her body and begs to cut them out. tt0963794,VtEOGd7tD9o,Eric wakes to find Stacy cutting the vines out of her body. tt0963794,JBLwuC2gHVQ,Stacy watches as Jeff cuts her open to remove the vines. tt0963794,3i76M1f3nB4,Mathias prepares for Jeff to cut off his legs. tt0963794,ar72efkbkSo,"While Stacy becomes insanely jealous, Mathias gets attacked by vines." tt0963794,ajMVBGbsL_E,Amy and Stacy find not only a cell phone but also a dead body and killer plants. tt0963794,MpGCnuiCSuU,Stacy and Mathias wake to find that the vines have entered their open wounds. tt0117331,Zh_r3u2RK1Q,The Phantom and Diana Palmer say their goodbyes. tt0117331,2ZiKO3NtZiI,"When Quill and his gang capture The Phantom and Diana Palmer, Phantom's dog comes to the rescue." tt0117331,hLUSwJuMjWo,The phantom destroys Drax and the three skulls with his fourth skull ring. tt0117331,9lj3ebVWDUw,Drax tries to bargain with The Great Kabai Sengh to split the power of the skulls. tt0117331,C_QYZUjx7rs,Drax demonstrates the skulls' ability to combine powers and point to the location of the third remaining skull on the map. tt0117331,VNQP-pvNK9A,"Drax holds a board meeting to talk about the three skulls' power, but Ray Zephro chooses not to participate in the jungle madness." tt0117331,CvK9ZJVsiPM,The Phantom rescues Diana Palmer but first he runs into some girl trouble. tt0117331,LkBmLiDPbxQ,Drax believes Dr. Fleming has given away secret information and decides teach him a lesson. tt0117331,rYXDky5UYks,Quill and his accomplices search for one of the three skulls deep inside a cave. tt0059575,DXRDZkTNEuM,Jesus Ortiz is shot in his attempt to protect Sol Nazerman. tt0059575,Qn336Lxy1TQ,Jesus Ortiz makes a confession in his final goodbye to Sol Nazerman. tt0059575,moYhss9sP94,A crowded subway unearths Sol Nazerman's haunting memory of his son's death on the train ride to the concentration camps. tt0059575,oJ_2e3gdfNQ,Jesus Ortiz asks Sol Nazerman if there's anything in life he does believe. tt0059575,gzTzSOHP_HM,Rodriguez throws the truth of Sol Nazerman's reality in his face. tt0059575,5clBF38sqqw,Jesus Ortiz asks Sol Nazerman why his people come to business so naturally. tt0059575,XSUU-_0cWn4,Sol Nazerman's traumatic flashbacks are triggered when a pregnant woman comes into the shop asking to borrow off her diamond engagement ring. tt0059575,OLtnOGTdLO4,The barking city dogs and the gang beating of a kid trigger Sol Nazerman's traumatic flashbacks of his days in the concentration camps. tt0091129,wx2g7H8UvrQ,The Golden Child entertains Til with a dancing soda can. tt0091129,NtkLxegTLPU,Chandler and Kee try to fight off Sardo Numspa and his henchmen. tt0091129,o50HHf9f_SQ,Chandler creates a diversion at the airport to throw off the police. tt0091129,V1bgBW9xx40,Chandler plants the sacred dagger on an unsuspecting traveler to sneak it through airport security. tt0091129,7zwPRGbmrow,"Before he can obtain the sacred dagger, Chandler must complete an obstacle course to prove he is pure of heart." tt0091129,jr0JXSM_0Nk,Kee takes Chandler to a Buddhist temple to request the sacred dagger. tt0091129,ETkJs0Mhnmo,A strange series of events unfold while Chandler dreams. tt0049096,a4WffLH9UMs,Griselda puts Hawkins under her spell and sends him off to seduce the princess. tt0049096,4hgt2hCDgr4,"When the King tries to seduce her, Jean tells him about the disease that ravaged her family." tt0091129,aGMCd4SoXk0,Kee informs Chandler he is destined to find the Golden Child. tt0049096,3SNcyADMY8k,Hawkins and Jean fool the King's soldiers with their disguises. tt0049096,TdRbjlsp7uM,"Hawkins, assuming the identity of Giacomo, the court jester, fools the king's soldiers again with his quick-changing accents." tt0049096,cysxO5Z-0L8,"When the King asks Hawkins about the Italian court, he makes up a story about what the duke did." tt0049096,AfyZ1bWv7Ls,"During his fight with Sir Ravenhurst, Hawkins becomes the Black Fox at the snap of a finger." tt0049096,G9GWMbrEu_g,"Hawkins, forced to entertain the king, sings a song about how he became a jester." tt0049096,6zIWcCvQNqQ,"Griselda tells Hawkins there's been a mistake: the pellet with the poison's no longer in the vessel with the pestle, but in the flagon with the dragon." tt0252028,FM_KxbSOjJk,Drew finally opens up to Alicia about his troubled past. tt0252028,LmCGd9zuFTs,Drew runs into Alicia unexpectedly and attempts to make amends. tt0252028,uFHReMA18_c,Chaos erupts in the Valco household after Brian accidentally discovers provocative photos of Christine. tt0252028,jq2tARSds7M,Drew is conflicted when his ex-girlfriend and his current love interest show up for Christmas dinner at the same time. tt0252028,2-oMhYVEk8w,Drew's attempt to impress Alicia doesn't go over as planned. tt0252028,k1_OK7cug8I,Drew hands out a script he wrote in order to familiarize the Valco family with the roles that he expects them to play. tt0252028,cM2U8v8OuLo,"Tom convinces Christine to sign a contract indicating that they will pretend to be Drew's family during Christmas in exchange for $250,000." tt0252028,Fekzb5yWBZk,"Drew visits his childhood home to burn his grievances, but to Tom and Christine, it appears as if Drew is igniting a fire on their front lawn." tt0251075,78IG1HROeoc,"When the aliens evolve into primates and attack, Governor Lewis gives General Woodman his full support." tt0251075,d6E6Pu3a5qM,An accident in the lab leads Ira to discover the secret to the alien's rapid growth. tt0251075,9-Kvo3-7OZo,Governor Lewis demands solutions for the alien invasion crisis. tt0251075,maWXwv9cBS4,Ira and Harry deliver a shampoo enema that defeats the giant alien. tt0251075,f9_1eujdVpI,"Ira, Harry and Wayne track down a giant alien bird in a shopping mall." tt0251075,-nkxnc1C6rc,An alien crawls inside of Harry and gets pulled out the hard way. tt0251075,aV2eCTRFJbY,Ira gets deposed by Allison regarding the side effects of the vaccine he created. tt0251075,xAV_XfpHSr4,Ira informs Harry of his recent alien discovery. tt0249478,YldUEtdvBZU,Frank confronts Rick about Danny. tt0251075,DZfq30VdBqU,Wayne practices his firefighting skills when a meteor crashes into earth. tt0249478,K7vOjKOdMNE,"Having tied Danny up and preparing to make his escape, Rick is stopped when Frank bursts in to save his son." tt0249478,mTr1vpzU00Q,When Frank tries to talk to Danny he appears crazy to family and friends. At home Rick threatens Danny for trying to talk to his father. tt0249478,XSa0_MGO8bA,Rick threatens Danny in his bedroom. tt0249478,OIl2sEhU24I,Rick disposes of Ray Coleman's body as Danny watches from the shadows. tt0249478,iTlkXQH-sdg,"Rick kills Ray Coleman and prepares to dispose of the body, unaware that Danny has seen everything." tt0821642,mvkHPUZnww0,"After finding Nathaniel bumming around in a roadway tunnel, Steve presents him with a gift of a cello." tt0249478,hVZ9AGQL_oo,"Frank attends Susan and Rick's wedding, and notices a change in Rick when an unexpected guest arrives." tt0249478,aYuatR0B8Uc,"Danny and his new step-father Rick have a game of catch that begins friendly, and ends anything but." tt0821642,rn4Ff3MpiRc,Steve finds it difficult to get through to Nathaniel when he approaches him about writing a feature for the LA Times. tt0821642,Gv_SuIRPPyQ,Nathaniel and Steve reconcile their friendship after Nathaniel apologizes for his harsh words. tt0821642,dAc1rDS3YhQ,Nathaniel lashes out at Steve after reading a document stating that he has a schizophrenic mind. tt0821642,V4rNLT7N_VA,"Steve tells Mary that he is done trying to help Nathaniel, as his previous efforts have done more harm than good." tt0821642,R2n0ZDq1N2c,Nathaniel rushes off the stage when memories of his past collide with fears of the present. tt0821642,ymzHr_Uvp7w,Steve approaches Nathaniel after hearing him play the violin on a street in downtown LA. tt0105327,4tTTXKxHcKY,"David visits the headmaster to confess to cheating on the test, but Rip Van Kelt intervenes, exposing the real truth about who cheated." tt0821642,kXuzMpA9MaA,Mary embarrasses Steve by accusing him of exploiting Nathaniel. tt0821642,d3P2O-Up78Q,Steve gets uncomfortable when Nathaniel tells him that he is his God. tt0105327,U2iJ1VmhksI,"David confronts Charlie about seeing him cheat on the test, threatening that if Charlie doesn't tell the guys at the meeting, he will." tt0105327,fTb9XrbAMRs,David becomes the victim of discrimination when the guys start attacking him for being Jewish. tt0105327,DPRsafiw4vQ,David visits Sally at her swim meet to see if she wants to be with him. tt0105327,R5SlDq1oRYA,"With five seconds on the clock, David runs to the end zone and scores, defeating their long-time rival team." tt0105327,cyEwqVnXGU0,Charlie provokes David with a racist joke and a fight breaks out in the shower room. tt0105327,LVt8wEpPgPQ,Charlie explains to David about what the future can hold if he plays his cards right. tt0105327,nuLPRAvxkDo,David gets insulted about being a Jew and a fight breaks out in the alley. tt0069097,kF-KLIi97Uc,Allan fantasizes about his date with Linda but gets interrupted by daydreams of his ex-wife and Bogart. tt0069097,B8CGtuR9FnY,Allan prepares for his date with some advice from Bogart. tt0069097,au5XE48PEeU,Allan imagines his hero Humphrey Bogart giving him advice on how to handle women. tt0069097,Z-Vnk_VTtzk,Allan sinks to the depths of depression after his marriage to Nancy ends. tt0069097,fniTZP_4V1M,Allan gets roughed up by some thugs while on a date. tt0069097,WdfgoDKArzM,"Allan thinks that Sharon is attracted to him, but he's proven wrong." tt0069097,DS1YYtQ_LLY,Allan tries to pick up a girl at a museum. tt0069097,QlNXJ4pAoZc,Allan explains to Linda that he thinks about baseball during sex. tt0090357,7iBFIlHDZx0,Holmes and Watson experience surreal hallucinations in the London Cemetery. tt0090357,qIV6K8OOvYM,Mr. Waxflatter stabs himself after experiencing a violent hallucination in an antique shop. tt0069097,8JkLimZnZAs,Allan imagines that Dick will take the news of his betrayal in cinematic ways. tt0090357,MTGOnbJkILg,Elizabeth presents Holmes with a new hat after she allows him to hide out in her Uncle's attic. tt0090357,pyyquXhcSk8,Holmes and Watson attempt to rescue Elizabeth from the captivity of a secret Egyptian cult. tt0090357,ye_E3_ik9gQ,Holmes and Watson take an untested flying machine to the air in attempt to save Elizabeth. tt0090357,-33sUQVbQ24,Holmes engages in a sword fight with Professor Rathe while Watson tends to an injured Elizabeth. tt0090357,-kRGB8yBnrA,Professor Rathe calls on Holmes to demonstrate fencing techniques to the class. tt0090357,uOsxXi-tu_U,A mysterious hooded figure strikes Reverend Nesbitt with a thorn that causes him to have a strange hallucination. tt0756729,FdgyK4SErpU,Peggy and Newt become friends and work together to improve animal rights. tt0090357,4NES9LMRqAc,Watson meets a teenage Sherlock Holmes on his first day of attending boarding school in London. tt0756729,OSfjh0d3RkA,Peggy takes her niece and nephew to visit a farm. tt0756729,cUnb4UuUS8E,Peggy gets in trouble with her boss when she collects signatures for a PETA petition. tt0756729,RupELElQj6E,Peggy and Al talk about their dogs that died too young. tt0756729,A1MEIKVyYPk,Newt tells Peggy that her dog killed another dog. tt0756729,HJU9-MJ4oEc,Peggy adopts every dog from the pound. tt0756729,BVs5TFKigUw,Peggy attacks Al because she thinks he killed her dog. tt0756729,ffPTYWq1YAY,"Peggy heads off to a protest, content that this is her greater reason for living." tt0756729,W1p7SP59Vkk,Bret suspects that the babysitter is drugging her baby with Benadryl. tt0364751,BZejgesCJhE,Jerry and Tom square off against two hillbillies in an abandoned mine. tt0364751,BLNQrlY4HMY,Mountain man Del helps the boys out of a tight spot by providing some cover fire. tt0364751,J97c0nWkJT4,Tom demonstrates his unique fish catching technique for Jerry and Dan. tt0364751,xG6V0I6_ZP8,"Jerry, Tom and Dan encounter two beautiful forest dwellers living in a tree." tt0364751,kU5tlt5wTcc,"Jerry, Tom and Dan encounter some rough rapids on their camping trip." tt0364751,jN_ftt-J7S8,"Jerry, Tom and Dan enjoy the hospitality of a bearded mountain man." tt0364751,iIeyS_5sJHE,Dan recalls a scene from Return of the Jedi as the guys elude two angry hillbillies on a four-wheeler. tt0277434,Uu77LGPAlPA,Hal gives a moving speech to his men before leaving America to fight over in Vietnam. tt0364751,um3tlxmK7Cg,Dan has a close encounter with a mama grizzly bear. tt0277434,8T6_bpLwTrc,The U.S. Air Force bomb the Vietnamese ground troops with napalm. tt0364751,c5ZiiE8fyGk,"Jerry, Tom and Dan discover a treasure chest they put together as childhood friends." tt0277434,eZe4RbiIBpM,The military housewives get together and socialize about their lifestyles. tt0277434,6M6cpjP7GIo,Combat starts between American soldiers and the North Vietnamese when U.S. Army helicopters arrive in Vietnam. tt0277434,3bo6h-7ryfE,The French Foreign Legion is ambushed by the Vietnamese military. tt0277434,3e-DXYUvxys,Lt. Col. Moore leads his troops into a harrowingly violent battle against the Vietnamese foe. tt0277434,VglR1HaNlV8,Julie receives a telegram and panics. tt0277434,UFXtRWVYQV8,Jack seeks advice on being a soldier and a father. tt1193138,EePcWVFtRCU,Ryan meets Alex at a bar. tt0277434,KMsryQSdT_k,"Lt. Colonel An evaluates the tragedy of the battle that took place, and the ramifications of the escalating Vietnam conflict." tt1193138,MIexe6aa14w,Natalie tries out the new video chat method of letting people go. tt1193138,TkX-TPaodoM,Ryan tells the man he's firing that this is an opportunity to go back to the dreams of his youth. tt1193138,ZDgFAFQGZbI,Ryan tells Natalie about his goal of earning 10 million frequent flyer miles. tt1193138,Wje5oR4NqYI,Ryan has a wake-up call from Alex about what their relationship really means to her. tt1193138,vEDyFvKFcoQ,Natalie tries to talk to Ryan about the value of marriage. tt1193138,DsVUFXVx2pQ,Ryan and Natalie discuss his philosophy of love. tt1193138,fjVyrWdUy0c,"Ryan fires people for a living and his latest victim, Steve, takes it pretty rough." tt1193138,TsT0ExNMK3I,Ryan talks to his sister's groom when he gets cold feet. tt0073747,VUsdbeBqeeo,Joanna and Bobbie accidentally walk in on a Stepford couple. tt0073747,hVGcbaoRtqk,"Joanna, now a soulless Stepford wife, greets the other women at the grocery store." tt0073747,NQobuzmBNXo,Carol comes to apologize to Joanna and Bobbie for her strange behavior the previous day. tt0073747,F5mTt2atvVk,Joanna and Bobbie discover that Charmaine has decided to get rid of her beloved tennis court. tt0073747,VG7JAM6DQnM,"Joanna goes to Bobbie for help, but quickly discovers that she is no longer human." tt0073747,JbNo_tlgYfs,Joanna and Bobbie discuss the strange happenings in the town of Stepford. tt0345950,t0Hr0YA9_H0,"The evil Plankton finds an evil plan to take down his nemesis, Mr. Krabs." tt0073747,6_0y_BGIZSU,Joanna finds the replacement that Dale created for her. tt0073747,GjtM8XhcA-M,Joanna and Bobbie hold a meeting for the women of Stepford. tt0073747,8fbZvje4A58,Joanna comes back from New York City to find that Bobbie has become like all of the other women in Stepford. tt0345950,brTGAgUYnIc,David Hasselhoff comes to the rescue. tt0345950,r3eNr-xxA7s,The creatures of Shell City come alive and get revenge on the Cyclops Diver. tt0345950,YCPDVVLUw-4,Spongebob performs a rock concert in the Krusty Krab. tt0345950,0vVy9NBehoc,Spongebob must escape the wrath of Dennis the bounty hunter. tt0345950,NpI0s0ky53I,Mindy makes Spongebob and Patrick into men with her mermaid magic powers. tt0345950,qcFVUGNUWuk,Spongebob gets ready for an important day at work. tt0345950,7nUDA-4vD9g,Mermaid Mindy gives helpful advice. tt0345950,ohMzC_1W0ZY,The opening musical number with a song and dance by pirates. tt0345950,j8yAjWvAqyM,Spongebob plays with bubbles. tt0416236,1xI_CHaHWmw,Hogsqueal makes himself integral in the defeat of Mulgarath. tt0416236,3qZAvmpNfaw,"Jared shares an emotional moment with his father, only to discover that it is actually Mulgarath in disguise." tt0416236,3V-kJbW3b54,The kids escape from the magical land where Spiderwick has been held prisoner. tt0416236,acO1g9PEIBM,"Jared,, Simon, and Mallory take a ride on Spiderwick's pet griffin." tt0416236,g0TZztZJGRo,Simon dispatches a group of goblins with a home-made oven bomb. tt0416236,q254XDNZ2Ao,Helen and the kids defend themselves from the encroaching hoard of goblins. tt0416236,plovZLxlpGk,"While trying to rescue Simon, Jared meets the friendly but troublesome Hogsqueal." tt0120053,xWTQN9bqbws,Simon Templar steals a microchip from Russians. tt0416236,fZzxZa0k7II,Jared and Mallory run from a cave troll while navigating the secret tunnels leading into town. tt0416236,387KRtYq2mE,Jared discovers Spiderwick's Field Guide to magical and mystical creatures. tt0120053,zmxWCJ8iM_8,Dr. Emma Russell runs to get into the American Embassy where she will be safe from Russian mobsters. tt0120053,wnosQPQgvTs,Simon Templar hides from Russian mobsters by diving into ice water. tt0120053,qYufeLaIggU,Simon Templar seduces Dr. Emma Russell by pretending to be an artist. tt0120053,O1p6omIzsuY,Simon Templar pretends to be German to fool Russian mobsters. tt0120053,yAXioyO-acA,Simon Templar fools the detectives in London and escapes in a car. tt0120053,atpbdTo9nno,Dr. Emma Russell explains how cold fusion works. tt0120053,QDYx2BOuAGo,Simon Templar pretends to be American to sneak around the American Embassy. tt0120053,NaFy_SWmRlI,Simon Templar pretends to be a Spanish man in order to fool the authorities. tt0120844,og1c8h2UyE8,Captain Picard infiltrates the Son'a ship. tt0120844,i7KcAEPxDwQ,Ad'har Ru'afo attacks Vice-Admiral Doughtery after he threatens to end the mission prematurely. tt0120844,9bHnSNlLZh4,Captain Picard and his crew try to protect the Ba'ku from attack. tt0120844,mha0N1Cx1Ck,Captain Picard tends to a dying Anij. tt0120844,-1gCG8m1SHU,"Captain Picard, Commander Data and Anij investigate a holographic ship." tt0120844,xdgjUPMiiEc,Captain Picard and Anij discuss the perfect moment. tt0120844,N4x1K97JZG0,Commander Riker and the crew of the Enterprise destroy the Son'a battleships. tt0120844,jw41pJtU6eY,A malfunctioning Commander Data disobeys orders. tt0120844,0UlzQ-bao3Q,Commander Riker tries to woo Counselor Troi. tt0120844,vm8sOhr-0lA,Captain Picard and Commander Worf search for Commander Data. tt0113972,TBBN6WvPavY,The Shoe Shine Man delays Ms. Jones from killing Mr. Watson's daughter. tt0113972,tcfI_6ZMZQo,Mr. Watson has to shoot the Governor or his daughter will be killed. tt0113972,nFYtmrhEBZc,Mr. Watson tries to tell his cab driver about his really big problem. tt0113972,Z2ixl9gb0uk,Mr. Smith tells Mr. Watson that he has 90 minutes to find and kill a particular woman or his daughter is dead. tt0113972,HZJ7Y5JooZM,Mr. Watson tells Mr. Smith that the Shoe Shine Man is deaf so that he can hear the truth. tt0113972,bHPmA9JEEQs,The Shoe Shine Man helps Mr. Watson trade places with a bellhop. tt0113972,z1bpjIkTie8,"When Mr. Smith murders the woman trying to help him, Mr. Watson tries to shoot his way out of the governor's suite." tt0377091,4vOHfYUUCJk,Rocky tries to convince Marty to call off the prank. tt0113972,XmGOiqQm9B0,Mr. Smith tells Mr. Watson a story about his friend he had to kill. tt0113972,meN82_c9J_U,"When Mr. Watson tries to rescue his daughter, Ms. Jones tells him what different calibre guns could do to her." tt0377091,M6mnrzwTxVU,George beats up Sam when he touches George's video camera. tt0377091,a5PoLM_QBuo,Kile grabs Marty for waking him and borrowing his gun. tt0377091,KvWWoKcefWo,Marty tries to convince everyone that they need to bury the body. tt0377091,IESky9kgqi8,Millie prepares questions she wants to ask Sam on their date. tt0377091,Q8HMk-QX5hg,"Millie performs CPR on George, but it's too late." tt0377091,nhwtMOjWerg,"When George taunts Marty about his dad, Rocky pushes him off the boat." tt0377091,-2LmKW3TtuI,Marty tells George why they really brought him to the lake. tt0377091,CmpDJs0Mjj0,Sam tries to convince Rocky to not go through with the plan against George. tt0377091,H4zYhsldk8M,Millie makes Sam promise that they won't do anything mean to George. tt0115678,dC1bJ1qmOCo,Phyllis is confused as to why Secondo doesn't want to go any further sexually. tt0120696,nCK7A5Zp9I4,Tom talks to Jim about taking the money. tt0120696,LCt7YtB6P7g,Jim comforts his wounded companion. tt1126618,cYdScH3BmBk,"To Becky's delight, anchorwoman Colleen Peck is eager to participate in any stunts to help the morning show ""Daybreak,"" including sumo wrestling and kissing frogs." tt1126618,h52UYfkLhXg,Becky discovers that the ratings go up when Mike and Colleen insult each other on the air. tt1126618,_RYBglsS0tg,Becky flirts nervously and awkwardly with Adam until he admits to liking her. tt1126618,UpHWJ6959yo,The crew has a mix up with some of the graphics on Mike's first day. tt1126618,VrRhpEc9Ivk,Becky has finally had enough of Mike's attitude. tt1126618,8TIPGj4-f-M,"A battle of wills begins between Colleen and Mike, leaving Becky to sort out the mess." tt1126618,9jI5AN2KZJ0,Mike shows his colors as Becky tries to work through a promo with him. tt1126618,gHfTsIMdlPg,Becky asks Mike to join the show. tt1126618,I4ktnP8eOOY,Mike gives a list of his credentials and accepts the job. tt1126618,GU6US0VlAio,Becky is interviewed by Jerry. tt0114857,rxKp6tH2AKU,Barnes finally takes out SID 6.7. tt0114857,hM33ekZw3yQ,SID 6.7 takes over a television station and calls it Death TV. tt0114857,FYcrFQ5boyA,Barnes attempts to diffuse the bomb set by SID 6.7 to kill Karin. tt0114857,47jfeR1H65g,Barnes recalls the moment when his family was murdered by Grimes. tt0114857,GJ1KcXeNstM,Barnes and Carter investigate the scientific makeup of SID 6.7 tt0114857,Fs1k0EMYydY,Lindenmeyer notifies SID 6.7 that he is being shut down for his recent actions. tt0114857,E3LODyZSXT8,SID 6.7 makes music out of the screams of his hostages. tt0114857,rm6i_YfioZU,Barnes gets into a fight with another inmate over the death of Donovan. tt0114857,IV40w-OYo0A,"In the virtual world, Barnes has a shootout with SID 6.7." tt0272020,j0sbjGj7ONo,"When the guards refuse orders to shoot Lt. Irwin, Col. Winter takes matters into his own hands." tt0272020,Jh1ujB4gFv8,"Lt. Irwin tries convincing Yates to join his rebellion, but Yates wants no part of it." tt0272020,U318Nwim78E,Lt. Irwin begins phase one of the inmates' uprising. tt0272020,Tp2V6oAgYbw,Col. Winter threatens to shoot the inmates if Lt. Irwin does not command them to get on the ground. tt0272020,cfM9_PduF3M,Lt. Irwin orders the inmates to begin launching boulders through Col. Winter's window. tt0272020,Ux1Er4tflxI,"Shortly after the causeless execution of Cpl. Aguilar, Lt. Irwin tells Col. Winter that the inmates expect his resignation." tt0406650,VX5XAwBfy1w,Dean tells Carrie about her son. tt0272020,bH5GtRBsss0,Lt. Irwin is beaten after protesting the punishment of Cpl. Aguilar. tt0272020,1iFQ6IvEQXg,"Col. Winter summons Lt. Irwin to his office in order to ""justify"" his strict methods." tt0272020,1F-LMCJ2n4M,Rosalee visits her father in prison but finds that she doesn't have anything to say to him. tt0406650,zzjFcjSFoqs,Dean is interrogated by Officer Lou Bratley about his fight at the mall when he finds out that it's actually the officer's son that has been kidnapped. tt0406650,t8Ql94ApRSI,Dean and Crystal come to help Charlie after Lee stabs him. tt0406650,5dxhOkrjfuA,Dean finally breaks down to Crystal about his friend's suicide. tt0406650,cUQZVnerwI0,Dean and Billy get into a fight at the mall over Troy's drugs. tt0406650,_OpCOSHbqiM,Carrie and Terri exchange passive-aggressive blows across their driveways. tt0406650,KJpaul2yTOU,Carrie returns a casserole dish to Allie. tt0406650,B_PvKCOXdiw,Dean has a strange encounter with Michael. tt0830558,RC5ZiK6o7uQ,"Cris rescues Liz from the clutches of the evil Mr. Smith, only to realize what he has been seeing is all a projection." tt0406650,MGy5sF8PhRQ,We are introduced to Troy and his place in the community. tt0830558,lufECeWtN34,Cris navigates several future timelines at once in an attempt to save Liz. tt0830558,Yj-a2zT-r88,Cris manages to escape the clutches of the FBI. tt0830558,zDmvCNfvt5w,Cris uses his ability to escape both parties that are chasing him. tt0830558,9fuapCaufd0,Ferris forces Cris to watch the unfortunate potential future of Liz. tt0830558,aUWOzyo-Kec,Cris uses his ability against Kendall to impress Liz. tt0830558,TW8ZML5OvXs,Cris gives his definition of beauty to Liz. tt0830558,MpXp07KfSFI,Cris uses his special ability to escape casino security. tt0830558,us54vk5--jM,Cris explains his rules for using his foresight to gamble. tt0097481,TzMC8kgib3c,"Laying together in bed, Dominique La Rue attempts to kill Quick, but he is one step ahead of her." tt0097481,UXCzmFHm3EE,Sugar Ray and Bennie Wilson insist Quick apologize to Vera for shooting her in the foot. tt0097481,OjHAZWyckMc,Quick accuses Vera of stealing and she invites him outback to settle the matter. tt0097481,5RPUchAlppA,Richie Vento makes a phone call home after Sunshine confesses her honest feelings for him. tt0097481,nNXxlYCU0aY,"A crying man, a man with a broken nose, and their partner attempt revenge on Quick." tt0097481,yMiGHGsdikU,Vera takes Quick to the back alley to teach him a lesson for accusing her of stealing. tt0097481,538H6EYp_ZU,Sugar Ray resolves the customers' complaints about Bennie Wilson's vision at the craps table. tt0097481,JBOq0nY1rQE,Luck runs out for a Toothless gambler when a kid sits in on a game of craps at Sugar Ray's place. tt0084021,pcMXFYqwPGI,"Rydell High's senior class sings ""We'll Be Together"" upon graduating." tt0084021,yPQQzJGKOvk,"Stephanie mourns the loss of the mysterious motorcycle rider in the song, ""Love Will Turn Back the Hands of Time.""" tt0084021,HiNWDfHz8Io,Louis tricks Sharon into thinking the Russians are attacking outside to get her into bed. tt0084021,CcrrepikVtI,"The mysterious motorcycle rider has everyone wondering, ""Who's That Guy?""" tt0084021,oJGQgAniyho,"Mr. Stuart's biology class gets carried away with the lesson and breaks into the song, ""Reproduction.""" tt0084021,dJQGkx5LpuA,"The senior class of Rydell High sings ""Back to School Again.""" tt0084021,KWKu1BbZhkQ,"The gang goes bowling and breaks into the double entendre-laden song, ""We're Gonna Score Tonight.""" tt0084021,Hk3IpNbltyw,"Stephanie tells Michael exactly what she wants in a guy through the song, ""Cool Rider.""" tt0077621,t209ljjmTqg,"Henry and Julia put aside their differences, and leave together with the gold." tt0077621,_B9xQeIvdHM,Julia catches the Rail Road Manager spying on her as she bathes in the river. tt0077621,yLPFWQ0NcZo,"Moon's Old Gang shows up to visit, and Big Abe finds out that Henry has struck gold." tt0077621,CVyeyli6gzg,Henry and Julia discover gold in their mine. tt0077621,ylDhWZKbCrc,Henry tells Deputy Towfield the truth about his new wife. tt0077621,d51N1kUa4lw,"Henry Moon is rescued by Julia, just as he is about to be killed." tt0077621,SoQzCG8nTbg,Julia's neighbors come over to give her some marital advice. tt0077621,ENkEuLrzmnc,"Henry attempts to come on to Julia, but she's not interested." tt0333766,25D3SlGLFKg,"After leaving Sam in the airport, Largeman has a change of heart." tt0333766,URt8hBsrHFI,Mark delivers a helium tank to Diego in exchange for directions to a mysterious quarry. tt0333766,w13ky72PcKI,Largeman leaves Sam because he is too nervous to screw up the relationship. tt0333766,S-0prbWRAUk,"Largeman, Mark and Sam find enlightenment at a deep rock quarry." tt0333766,08iCLTmybXM,"While at Handi-World, Largeman meets an old schoolmate who has an opportunity for him." tt0333766,3Bm1V7eZBR4,Largeman reveals that he can't cry…or swim. tt0333766,MBopFmu3yAg,Sam shows Largeman what she does to feel original. tt0333766,4ImW1F6LyHE,"Largeman takes Sam on a ride, but she doesn't like his friend Jesse." tt0333766,g46IxT3MGP8,Largeman meets a horny dog and quirky Samantha at the Doctor's office. tt0333766,oh8pzfm5QF8,Largeman is surprised to find out his old buddy is now a cop. tt0333766,BCHi6DrWgjI,Largeman meets a friend of Mark's mom who likes to dress in armor. tt0115678,pDcPRvZ9sDU,Primo and Secondo fight on the beach and get out all their frustrations of owning a business. tt0115678,Yd8gK6EgpLM,"Primo and Secondo serve their secret recipe, Timpano, which causes an uproar." tt0115678,fz19xrc_99o,"Secondo talks Phyllis out of the water, but she remains angry and refuses to talk to him." tt0115678,KAPU1-0hGRE,Phyllis catches Gabriella comforting Secondo with his disappointment of the night. tt0115678,d3hs2M_0vLE,"Secondo makes a joke out of what Primo said, but it is taken the wrong way." tt0115678,rpUPWSqadTo,Secondo is given 30 days to pay rent before his and his brother's business goes into foreclosure. tt0115678,24qcFHAk1Cw,Phyllis and Gabriella discuss their dislikes when it comes to men and fantasize about cowboys. tt0115678,1UeNQlmxEkQ,The dinner guests finally get to eat the food prepared by Primo and Secondo. tt0120696,eEUulOnl-n8,Tom and Jim battle it out with the Sheriff and his men. tt0120696,BT2RBCEH54M,Tom tries to escape a flooding jail cell. tt0335559,5aXmi3hKJrY,Pete tries to upstage Tad as they do some chores around the farm. tt0335559,P_mbrROQcME,Pete expresses his true feelings for Rosalee. tt0335559,gOb8HH2oKcE,Tad quotes Pete in order to convince Rosalee to come home with him. tt0335559,YXzryi4HrVs,Pete intrudes on Tad in the bathroom to give him a lecture about breaking Rosalee's heart. tt0335559,kh1sYuFgUAM,Tad and Rosalee end their date with a romantic goodbye kiss. tt0335559,YdiAV1mo4ck,Rosalee assures Pete that Tad is being genuine. tt0335559,-zoOpeF5Yzc,Tad makes a visit to Rosalee's workplace with the intention of spending more time with her and setting his priorities straight. tt0335559,HYkSzS4v_sI,"Rosalee practices what she will say when she first meets Tad, but she is still speechless when the moment arrives." tt0098382,hWRG6Oar-aM,Spock suggests a faster — albeit more dangerous — way of ascending a corridor. tt0335559,DuvGxB60xCQ,"Before Rosalee leaves for Los Angeles, Pete warns her about men." tt0098382,f3u4j0hVy8c,"Sybok leads Kirk, Bones, and Spock to a god-like figure, but the Captain has his doubts." tt0098382,2DM0pOmClOg,Captain Kirk receives a few surprises after he is beamed aboard a Klingon warshi tt0098382,0wMU9XDIm4g,Sulu and Chekov guide the Enterprise to an unchartered planet under the orders of Sybok. tt0098382,PK0i_dyx230,"Scotty breaks Kirk, Bones, and Spock out of their prison cell on the Enterprise." tt0098382,xvi62S5Ou_E,Kirk feels betrayed by Spock after he tries to escape captivity from his brother Sybock. tt0098382,-L3D0BL9ieA,Captain Kirk and his crew stage an undercover attempt to rescue a group of hostages. tt0098382,qL1WqN1XKK0,Captain Kirk has a close call while doing some rock climbing during his shore leave. tt0098382,V7N7EZ79mvM,"Kirk, Bones and Spock talk around the fire while camping in Yosemite." tt0088170,aZe77wShCbE,Kirk and the gang escape from Genesis before it is completely destroyed. tt0088170,XS4s3XXNLiE,Kirk fights hand-to-hand with Kruge. tt0088170,OlqErSr6Rjw,Kirk and Sulu rescue McCoy from jail. tt0088170,W3c9wtbQTZ4,McCoy meets an alien at a bar regarding an illegal ride to Genesis. tt0088170,Lk9wSrZ0fWA,The Enterprise duals a Klingon Bird of Prey. tt0088170,Yc81Un8ltS4,Spock's memory returns after his resurection. tt0088170,P1xdGCvNMEY,Kirk sets a trap for the Klingon boarding party. tt0272207,xj04uvQx9l8,Oak discovers a dead junkie who used a shotgun for a bong. tt0272207,nkcLf1CH_MY,Oak slowly dies leaving the tape recorder with his confession on it. tt0272207,7wLSkQOkAGY,Oak and Nick traverse the streets of Detroit asking about Jimmy Fredericks. tt0272207,vmnZ_-Mqb-c,Oak and Nick raid a warehouse where two drug dealers are hiding. tt0272207,xQGzDvZq6v0,"Nick asks to work a desk job, and he will be granted one if he can solve a murder case teamed up with Oak." tt0338564,o4U1GZcMmn0,Lau finds Chen waiting for him in his office. tt0272207,-tlRw45_Ftk,Audrey can't stand how her husband Nick puts himself into dangerous situations as part of his job. tt0272207,mTr6qV4PiMc,Nick and Oak rough up a drug dealer's apartment and discover police-owned weapons. tt0272207,2xfrmlcIQf4,Nick runs after a drug dealer who takes a child hostage on a playground. tt0272207,LUQGBGUI64E,Oak reflects on a warrant raid where he found an abused little girl in a drug dealer's closet. tt0338564,sN7zJBjZgHU,Chen and SP Wong are trapped upstairs when the gang shows u tt0338564,cCtn7_K1GZM,Chen follows Lau from his meeting with Hon. tt0338564,UgU1ALnQTFA,SP Wong interrogates Hon. tt0338564,QWMVhLtFtNI,Chen reports on the criminals to the police while Lau reports on the police to the criminals. tt0338564,GfX0WTR-kNI,"Chen arrests Lau, but things get more complicated when Inspector B shows u" tt0338564,C1ZrzzP6tSQ,"The cops ambush the parking garage, and Lau betrays Hon." tt0338564,o2joReiVA1A,Lau uses Wong's phone to call Chen tt0113451,XWI8ugmXnwM,Corelli gets stuck in the middle of a Chinese parade while chasing a suspect. tt0338564,YJBNE7F49Aw,"Chen's criminal friend tells him as he dies that he didn't tell their boss that Chen was late, and therefore the mole." tt0113451,2mezAYW6Qiw,Katrina seduces Corelli after she gives him more information on the investigation. tt0113451,GSR6orbPFjo,Katrina confesses her involvement in a sex scandal after investigators reveal video evidence to her husband. tt0113451,XClRjF_xBj8,Corelli loses sight of the car he's chasing after it enters an abandoned pier. tt0113451,D8yY16GX9t0,Corelli engages in a high speed pursuit through the streets of San Francisco. tt0113451,0MU_p9wU5kQ,Corelli questions Patrice on a sex scandal involving the governor of California. tt0113451,3Cp_-nl5jEs,Corelli shockingly witnesses Patrice get hit by a car while waiting to meet with her. And then hit again. tt0780567,rNOZMZHDVB8,Olivia sweet-talks her daddy into taking a bite of some exceptionally burned pancakes with just the right amount of ketchup and hot sauce. tt0113451,cJti4-26uFE,Corelli must dangerously navigate traffic after he realizes that his brakes have been cut. tt0780567,OT-cPtnytxo,"Playing pretend, Olivia makes her daddy stretch his creative muscles." tt0113451,DdZlmK8Xxsk,Corelli visits Mr. Wong to get answers on a piece of evidence. tt0780567,wRUXdHtHe8U,Johnny Whitefeather tries to pitch himself to Dante D'Enzo. tt0780567,ZCoJgCHXXK8,Johnny Whitefeather tries to get his son Indigo to use a magical blanket to get stock predictions. tt0780567,ifM0qy83_-A,Olivia forces Evan to dance with no music in public in order to get his stock advice from her imaginary friend. tt0780567,cB0p96nOXjo,Evan finds out that his predictions about underwear and poop were right on the money. tt0780567,rBgn0IhMEBk,Evan tries to take the Goo Gah away from Olivia. tt0780567,zVIDGJxo238,Johnny Whitefeather takes the stage and speaks about his dream sparrow. tt0120696,q7QxVddVEW0,Jim and his gang try to rob the flooded armored car. tt0780567,6zlY2XVDl0E,"John tries to show Evan his powers as the ""man whisperer""." tt0120696,rXqRZvG5LAQ,The Sheriff reveals his evil intentions. tt0120696,Rv1LUObd720,Tom tries to get Karen free of her handcuffs before she drowns. tt0120696,ZKTMxF2PrHM,"Tom turns the tables on his pursuers, stealing a jet ski and escaping from the school." tt0120696,RineREyWP-4,A gunfight breaks out at the flooded cemetery. tt0335559,RKBZx9XsCuE,Rosalee struggles to keep her cool on her date with Tad. tt0343121,WXDIkldSPqI,Tupac talks about the love he has for and from his community. tt0343121,mWquYel6AI4,The beginnings of the West Coast/East Coast rap battle are examined. tt0343121,-yx9JK_HeQc,Tupac succumbs to gunshot wounds sustained after a Mike Tyson fight in Las Vegas. tt0343121,hC6jyc9reW0,Tupac talks about the double standard between men and women when it comes to sex and the appeal of fame. tt0343121,Yg1izGf8EFQ,Tupac talks about the feeling of hopelessness. tt0343121,w9yRZoY0stg,Tupac talks about his love for women. tt0343121,ejJIihkZTGU,Tupac talks about the Thug Life movement and what it means. tt0343121,1tZ2EZXxU6w,"Tupac describes his ascent from unknown to platinum rapper, beginning with his involvement with Shock G and Digital Underground." tt0815245,hSLj5cQaXM8,Anna is taken back to the psych ward. She is greeted by Dr. Silberling and Mildred Kemp. tt0343121,ScMlNpnLI3U,Tupac Shakur talks about getting shot and his thoughts on death and being an artist. tt0815245,L-HEnOelh-k,Anna gets upset and what she sees and acts on her anger. tt0343121,TQebazOCP4M,Tupac Shakur talks about why he started acting as a child. tt0815245,Ga9YztTUYaU,Anna wakes up to find a bloody trail that leads to the downstairs dumpster. tt0815245,750pEcgJqGg,Anna explains to Sheriff Emery that Rachel is trying to kill her and her sister. tt0815245,IYqE3JfSbzA,Anna and Alex try to explain to their father what happened to his girlfriend. tt0815245,UU8yY3gkZZ0,"Anna sneaks into Rachel's room to find the pearl necklace, but gets confronted by Rachel." tt0815245,ETrY43GsoHY,Anna helps Rachel by taking out the trash from the kitchen. tt0815245,wbccgEaJudM,Matt sneaks into Anna's bedroom and tries to tell her the truth about what really happened the night of the fire. tt0815245,Pd8RaVEZlyU,Anna goes into the room where her mom died and sees her dead mom who is trying to tell her something. tt0327162,wf02wZ_Okw8,Joanna is shocked and highly suspicious of Bobbie's change in personality. tt0327162,yZvx9PF3NAU,"Joanna, Bobbie and Roger locate a strange remote control after breaking into the Sunderson residence to check on Sarah." tt0327162,Op0qrTGRcxk,"Walter is surprised and confused when Ted Van Sant is able to use his wife, Charmaine, as an ATM." tt0327162,R57cfRscNyM,"In this recreation of the iconic final scene from the original film, Joanna appears at the supermarket where she purchases groceries alongside the other Stepford wives." tt0327162,C-Ad2a7UD0A,"Joanna Eberhart introduces a new reality series, ""I Can Do Better.""" tt0327162,HkfaRh__E6U,Mike Wellington shows Joanna and Walter how a Stepford wife is made. tt0327162,mW42lBPbuTc,"Claire Wellington takes control of The Stepford Wives book club alienating newcomers, Joanna Eberhart and Bobbie Markowitz." tt0327162,sEaSAJgaLtQ,Claire introduces Joanna to the Stepford wives and shows her their workout routine. tt0119874,xfIJV6C9-fM,"Col. Devoe, Dr. Kelly and Vertikoff encounter a convoy of armed men as they drive through the streets of Austria." tt0119874,IwzcDydxQyM,Col. Devoe and Dr. Kelly get acquainted as they fly to Europe to investigate the theft of ten nuclear warheads. tt0119874,d5jxXkpstv4,Dr. Kelly and Col. Devoe work together to disarm a nuclear bomb seconds before it is set to detonate. tt0119874,TSaB7Oltgwg,Col. Devoe and Dr. Kelly pursue two terrorists through the streets of Manhattan. tt0119874,QecVEAGoQ4A,Col. Devoe secures a load of nuclear warheads from a truck moments before it teeters off a bridge. tt0119874,C2NxwHIDTUA,A stand-off ensues after Col. Devoe guides three U.S. helicopters into Russian airspace. tt0119874,gHfRl_ZjHj8,Col. Devoe utilizes some unorthodox interrogation methods to get information on a terrorist attack in Russia. tt0119874,avXk2EamFs4,Col. Devoe shows some impressive driving skills as he and Dr. Kelly fend off a group of hired assassins. tt0119874,MXYUFlvaGpk,Col. Devoe convinces Dr. Kelly to let him chase down some stolen nuclear weapons in Russia before they are smuggled abroad. tt0171363,DdqQsOC-A2w,"Mrs. Dudley welcomes"" Eleanor to Hill House." tt0171363,upwUN92OAQU,Eleanor has help brushing her hair. tt0171363,bKOW66PVjvA,Eleanor does some digging into the past. tt0171363,UgxCAQEI16o,Eleanor confronts the ghost. tt0171363,NyPF-BmNQjQ,Eleanor sees haunting visions in the mirror. tt0171363,xSmmiAl9ZWE,Dr. Marrow tries to reach Eleanor before the stairs collapse. tt0171363,PVuB1pBFA5k,Eleanor's bedroom comes alive and attacks her. tt0171363,N6ffGVe63c0,"Luke loses his head while facing off against a portrait, carpet, and fireplace. Eleanor fights a statue." tt0253754,aTPdWYo9zhQ,Two Romulan War Birds help the Enterprise battle Shinzon's ship. tt0253754,FVfoce-wfgI,Data encourages Picard that he is more than the sum of his parts. tt0253754,nYkD6bPe9Ho,Riker and Worf fend off an enemy boarding party. tt0253754,S02T1j9qzwg,"Picard tells B-4 about his ""brother,"" Data." tt0253754,bXq3dytL6ZA,Picard flys the Enterprise straight into the Reman attack ship. tt0253754,DHUSpAtemfg,Counselor Deanna Troi engages the Reman Viceroy in a psychic battle of wills. tt0253754,Bl0c_aXJtUc,Picard tries to inspire Shinzon to embrace his potential for good. tt0785006,Jl4L_RREcpQ,Bruce runs out on his foster parents as the dogs take over the hotel. tt0785006,5djUDJaY7Ig,Mark discovers the Hotel for Dogs and promises to keep it secret. tt0253754,NJJDRmtivWI,Shinzon debates his shared identity with Picard. tt0785006,DSBU1YgGyt0,Bruce invents a waste disposal system for the hotel. tt0785006,w4o45-EnPrU,Andi distracts Lois when Friday gets loose in the apartment. tt0785006,T_0IN7mMXZI,Andi and Heather discover the downside of working with dogs. tt0785006,rTCi5UsRudE,"Bruce builds a fetch machine, and Dave feels its wrath." tt0785006,1i2_WXJB6wI,Andi and Bruce try to stop one of their dogs from howling. tt0785006,4xcqyJwEdd0,Bruce and Andi discover a pair of dogs living in an abandoned hotel. tt0785006,kzUfGDKepCA,Bernie apologizes for interrupting Carl and Lois during band practice. tt0995039,n86CV7VKvfE,Gwen and Bertram bond over mummified remains. tt0785006,JYKlYHwUiac,Friday gets out of his leash and steals a hot dog from a man on a bench. tt0995039,JeT0XHFyAU4,"When Gwen visits Bertram to see how he is doing, Bertram uses the opportunity to tell her the truth about Frank's dream." tt0995039,qlUmBE6uGu8,Gwen has a hard time believing Bertram when he tries explaining why he knows intimate details about Frank's life. tt0995039,TdQkBU9p6Y0,Bertram wakes to find his bedroom filled with ghosts. tt0995039,nshLAILEN4w,Bertram attracts a strange following after being pronounced dead at the hospital. tt0995039,7qVgjGI6Lsw,Dr. Prasher has a talk with Bertram to try and put some sense into his head. tt0995039,aOAgGeW7abs,Bertram bristles at the personal nature of the questions asked by a nurse. tt0995039,5kmgUtppQP0,Bertram tries to keep from gagging when Gwen brings out her giant dog. tt0995039,hcvAwHA7usc,"After experiencing a series of hallucinations, Bertram demands to know if there were any complications during his previous day's surgery." tt0995039,qIOC-6zluBQ,"Bertram approaches Gwen with the intention of asking her out, but Gwen is not privy to his charms, or lack thereof." tt0486822,NGtMNsci-zk,Kale and Ashley try to escape from Robert. tt0486822,QH8uHNGEvbg,Kale finally defeats Turner and saves his mom. tt0486822,x883mrwYjDM,Kale is very surprised to find Robert in his kitchen for breakfast. tt0486822,toAOUXtlXXc,"Kale realizes exactly what Robert is up to when his mother, Julie, is over his house." tt0486822,VCghHER3cOU,Robert scares Ashley in her car when he realizes she is following him. tt0486822,Rv6_mS8l48U,Kale must race back to his house after he goes outside the house arrest perimeter. tt0486822,NH5fod3mC7c,Kale sees some questionable events taking place next door at Robert's house. tt0486822,b9qMqGTi1uc,Kale and his father get into a car accident on the way back from fishing. tt0486822,BWw0KCLcKHc,"Señor Gutierrez pushes Kale too far. He gets a punch in the face, while Kale gets three months house arrest." tt0099044,jgdFx9Epf78,Cates has to shoot Reggie to kill Ben. tt0099044,67cxJ9EynG4,"After Cates' partners reveal their betrayal, he and Reggie escape for their lives." tt0099044,nS-l7xvs5ew,Reggie takes the wheel after bickering with Jack. tt0099044,U6xq6u7vv0U,Reggie and Cates' interrogation turns out more difficult than predicted when bullets start flying. tt0099044,C_uIIZdNVwk,Reggie uses force to get Cates out of a bar fight. tt0099044,l4bCchzGpkQ,Reggie plays a joke on a traffic cop. tt0099044,uEchpjUjGPA,Cherry and Willie try to kill Reggie on the prison transport bus. tt0099044,uiWL3bxDifQ,Reggie is not pleased about his new assignment when Jack visits him in prison. tt0099044,hks2iXeaxsk,Reggie is less than pleased with Jack's upkeep of his car. tt0083530,OeLnS8O08ng,Elaine Dickinson helps Ted Striker find a piece of metal to shove into the panel per Commander Murdock's orders. tt0083530,1UybDydQpNY,Commander Buck Murdock assists Ted Striker and Elaine Dickinson in landing the Mayflower One. tt0083530,q8_R4AG2o1w,Father O'Flanagan declares the flight's impending doom. tt0083530,JGnxWlhfrrM,Ted Striker tries to negotiate with Joe Seluchi. tt0083530,OE8Tc1cvSYM,Commander Buck Murdock takes charge and gives orders. tt0083530,Gd6aLnPHqeE,"Elaine Dickinson defines ""a tad"" to the passengers." tt0083530,_6AGOfGHzeg,Ted Striker starts to question his sanity after witnessing First Officer Dunn and Captain Oveur waltz off into space. The shuttle has run out of coffee. tt0083530,JMa1f4jyBa0,Mrs. Hammen testifies on the witness stand for Ted Striker and recalls the traumatic events that occurred the night Ted Striker saved the plane. A former colleague of Striker recalls the night they bombed Macho Grande. tt0083530,bE0mQSaYaNY,"Jimmy Wilson thinks coffee is the reason for his father John Wilson's recent outbursts, but mother Alice Wilson has another idea. Mr. & Mrs. Hammen reminisce." tt0083530,BrRdy4BAYp0,"Captain Oveur, Navigator Unger, and First Officer Dunn discuss the Oveur-Unger-Dunn hierarchy. Ted Striker buys a Lunar Shuttle ticket from a scalper." tt0120324,gNtGI_D85mQ,Jacob tells Hank that he doesn't want to live with everything they have done. tt0120324,EGX-t_U6vkg,Baxter forces Hank to go back into the plane to get the money. tt0120324,SWEbahhZEyA,Sarah tries to stop Hank from bringing the money back. tt0120324,tjYSxlqLOew,Baxter forces Hank to go back into the plane to get the money. tt0120324,mflonVbY9gw,Lou proposes the idea of keeping the money that he found with Hank and Jacob. tt0120324,Qn6tLR3RGgE,Hank is less than supportive when Jacob decides to buy back their parents' farm. tt0120324,tAp2Z3-zx9k,Things get bloody when Lou threatens Hank with a shotgun. tt0120324,3I6s_-Q_2kI,Hank strangles Dwight after being surprised that he is still alive. tt0964517,uYV11ZwpaSQ,Dickie takes his cake and visits his old friends at the crack house. tt0964517,rKV-U-HcGVk,Dickie and Charlene try to reconcile for Micky's sake. tt0964517,YP-rmIcxn1g,"Mickey tells his mother, Alice how he feels about her favoritism." tt0964517,s2pqELFTepw,"Micky tries to make peace between his family, his girlfriend, and his trainer." tt0964517,iCp3nEO3ttU,Charlene fights with Alice and Micky's sisters. tt0964517,OELFAF76DEU,"Micky and Charlene have an awkward first date, but a great first kiss." tt0964517,hKvpF7ACDBo,Dickie watches a documentary about his own life from prison. tt1251757,0zhatVdxShE,Jack is forced by Haggerty to sign himself out of the company. tt1251757,yX5LfZK1wTw,A kidnapping goes wrong when the men bring back the wrong boy. tt1251757,pXe74ckEnME,Jack talks to Audrey about his family and the life he is leading. tt1251757,6w6aNHXW93o,Jack blackmails the District Attorney to get him to drop the charges on his son. tt1251757,DwOTJvwKKeU,Jack confronts Haggerty about deceiving him. tt1251757,l0VX6h8lP08,"Jack is taken by the Russians, and Nikita questions him about the whereabouts of Ivan." tt1251757,qPZWb3abC9I,Things go terribly wrong with Ivan comes to pick up money for the Russians. tt0071771,Zmnzw-Dxym4,"It's 4th and Goal, the game in the balance, and Paul puts the hopes of a victory for the Mean Machine on his shoulders." tt0071771,qBWbxMv6v_s,"During the victory celebration, Paul gives the game ball to a stunned and angered Warden." tt0071771,HWAQ8rTBLUk,The Mean Machine get penalized for unnecessary roughness after Paul deliberately throws the football at the linebacker's nether regions -- twice. tt1251757,KuXeOs4oOBw,Wayne and Buck make their first batch of internet sales. tt0071771,84VVZEw9vBs,"Paul recruits the psychotic inmate Shokner to play football, who then proceeds to break Samson's nose on the practice field." tt0071771,NhpvvobULYA,Paul recruits various misfits for the football team including Samson. tt0071771,EPmNA1vLOH4,"A drunk and haggard Paul splits on his hot sugar mama Melissa, but not before a little domestic abuse." tt0071771,sZ0nA_2qOWc,Miss Toot smuggles some game film to Paul in return for fifteen minutes of sexual satisfaction. tt0499554,ZRJ_tgwyLUM,An alligator expert gets a rude surprise in a swimming pool. tt0203230,MALjtjcdmt8,Samantha confronts Terry about his behavior. tt0452608,XdMuekkeCeU,"Jensen is approached during meal time and mocked, instigating an all-out brawl." tt0112715,GxhXJGA32YI,Amy the Gorilla drinks a martini to calm her nerves. tt0112715,6oPn0DwJOZA,Homolka's greed leads to an unpleasant encounter with a killer gorilla. tt0243736,EvQmjnk86zA,Matt and Erica share some candid conversation at the laundromat. tt0112715,ViUAWLUF74Q,The team is forced to abandon their plane. tt0112715,8fbGbPwKbQA,Captain Wanta gives his guests a warm welcome to Africa. tt0112715,jfgWw43Fcuw,Karen mops up the gorilla problem with a laser just before the volcano erupts. tt0112715,458GisQyQLg,Charles gets more than he bargained for when he and his partner make a big find in the jungles of the Congo. tt0112715,Aa4bjQGD6oY,Richard tries to make small talk. tt0112715,vKEqdQhX4lo,Peter wakes up to find a leech in his shorts. tt0112715,45mmWoSzIAY,The boats are attacked by hippos at night. tt0118849,CNH4A1sI_oE,Zahra is ashamed to be wearing her brother's sneakers until her teacher commends the students wearing the proper shoes. tt0243736,WmeaAGe4uMo,"Matt, waiting handcuffed to the bed for Erica, experiences sexual hallucinations and is taken advantage of by the devious Erica." tt0243736,WK682NdLvS4,Matt's boner causes a disturbance at a meeting; Erica gushes to Sam about the intimate night she and Matt shared in which they touched one another using only flowers. tt0426501,ZI827BuJgx8,Johnny and Rita connect over their dark past and their less than promising future. tt0099558,gRGbGI2-kPs,Condor uses an inflatable bubble to escape marrying a large tribeswoman. tt0118887,oUQ9ZKUt2XQ,Freddy Heflin tries to help Moe Tilden with the investigation. tt0118887,wD8pQ5eDneo,Moe Tilden tries to convince Freddy Heflin to be his inside man. tt0118887,CWxkPQXZo6Q,"Gary Figgis mocks Joey Randone, and tells Freddy Heflin that ""It's okay to be jealous.""" tt0118887,CG88PCHKwOk,"Jack Rucker plants a gun at the scene of the crime to cover up Murray Superboy"" Babitch's mistake." tt0118887,ToxlyJ4-zBM,Shondel fights Joey Randone on the rooftop. tt0118887,dKAvAAT2q_U,Freddy Heflin dreams of when he saved the life of young Liz Randone. tt0413895,eUNWIKp6nR4,Homer gives a speech about Wilbur. tt0118887,TBURp00dftA,"Driving on the highway, off duty cop, Murray Superboy"" Babitch is side-swiped by another car." tt0164184,H-h_xgdM8FI,Jack calls DCI William Cabot to alert him that a bomb has been planted in Baltimore. tt0413895,20dudgZjeaY,Elwyn and Brooks pick on Templeton the Rat. tt0164184,l-uqZJwOieA,A bomb goes off in Baltimore and causes a vast amount of destruction. tt0413895,9BNJuZn72tg,Charlotte builds a web for Wilbur. tt0413895,Q0UDJuPozw8,Elwyn and Brooks want corn. The only thing in their way is the scarecrow. tt0413895,DYFQ9vVqiMA,"While Avery and Fern fight over Charlotte, Templeton the Rat tries not to break a rotten egg." tt0413895,zdX69cWtu6w,"Fern convinces her father, Mr. Arable not to butcher a runt piglet. Instead, she offers to take care of it." tt0445934,_7dr6PCeW4c,"Chazz and Jimmy stumble in the finals, but determine to perform the dangerous ""Iron Lotus"" move, in reverse." tt0445934,jaRbZJBLIQo,"When Jimmy finds Chazz and Katie in a compromising position, Chazz leaves him a series of phone messages." tt0445934,sDsoiCkKuZY,"In danger of disqualification, Chazz admits that he never slept with Katie and rushes to join Jimmy on the ice." tt0445934,nekzfohNwuY,"Chazz attends sex addiction therapy, but finds himself powerfully attracted to his groupmates." tt0445934,0LzZVYshI7s,Jimmy tries to explain to Katie the magic that he finds in ice skating. tt0445934,aqvTaYLP8yc,"Jimmy tries to ask Katie out, with a lot of interference from Chazz and the Van Waldenbergs." tt0445934,0DFBoLZC3Bw,Katie Van Waldenberg is disappointed that her skating brother and sister are so intent on cheating. tt0445934,JwGZDfu-PZI,Chazz tells Jimmy about his tattoos and love history. tt0096933,KKW4wRDTI6Q,Nick Conklin tt0445934,sh0IBg7GBeY,Chazz cheats on his diet and has some thoughts on the music for their routine. tt0445934,MQZES2Vkcws,Chazz annoys Jimmy on the Gold Medal podium and they get into a fight with disastrous consequences. tt0442933,eWmiv9uIXQk,"A beast, Grendel attacks and terrorizes King Hrothgar's village." tt0442933,-RhmDUj_GJs,A dragon attacks Beowulf's kingdom after he repossesses the Royal Dragon Horn. tt0243736,gAVNayJY7Tc,Candy takes the opportunity to try to seduce Matt by giving him a provocative peek at her butterfly tattoo. tt0243736,KZzmopXXE2k,Matt and John suffer through an awkward dinner conversation about their parents' sex lives. tt0243736,gPamy0ygNs8,"Duncan plans to sabotage Matt's celibacy vow by spiking his orange juice with Viagra, but their boss, Jerry, unknowingly takes the bait instead." tt0243736,I2rWcnXUllw,Erica and Matt discuss the complexities of attraction. tt0243736,Cr04KncHozI,"Mandy and Andie corner Matt in the supply closet, propositioning him with a three-way to restore the system of sexual power." tt0243736,jpY79a30azQ,"Matt stands up to Nicole when she comes crawling back, but it only makes her want him more." tt0243736,97QNsiDKamk,"Matt takes Erica on a date to his special place, the bus, and ends it with a high five." tt0109506,OB8uD8FaPXU,Eric sends T-Bird flying to his grave as Skank watches. tt0109506,3Lq9NGTN8Pc,"Eric takes on the first victim from his past, Tin Tin." tt0317248,kgxhkCKXyRs,The war between Li'l Ze and Knockout Ned escalates as more and more kids join gangs to get revenge. tt0317248,dPpj1KEhwpo,"Rocket and his buddy try to rob a bus and a bakery, but didn't count on the victims being so cool." tt0109506,KDqz--u8NYY,"Triggered by painful memories of his past life, Eric transforms himself into a mysterious figure bent of revenge and justice." tt0124315,TCQQtdtZmv0,"When the sick orphan Fuzzy dies, Dr. Larch wants the other orphans to think he was adopted." tt0317248,hdlfKy3AXDI,Rocket ends up in the middle of a war zone when Li'l Ze asks him to take a picture of his gang. tt0317248,ru6jbod6hHI,Li'l Ze attacks Knockout Ned's home and Ned takes matters into his own hands. tt0317248,qvDxgXX9lww,Shaggy tries to get out of town with his girlfriend. tt0317248,Fa1zCdRj3MY,Knockout Ned joins Carrot's gang and becomes a hoodlum. tt0118849,HaCRdT6wcyE,The principal tells Ali to leave school when he arrives late for the third time in a row. tt0118849,InDLvz0bN4k,Ali tells Zahra that he's going to win a new pair of shoes for her. tt0118849,PCID_Jg1Djo,Zahra asks Ali how she will make it to school without a pair of shoes. tt0426501,Sa6o9ovlX7E,Johnny and Flynn come to terms with their situation and discuss how the best laid plans of mice and men fall astray. tt0243736,JUuQ3MggHbw,"Matt asks his brother for relationship advice, but comes up with a solution on his own -- no sex for Lent." tt0243736,FcvCuyT-zWs,"Matt surprises Erica at the laundromat, where he apologizes and they share their first kiss." tt0043338,0l5h8k9N9pI,"Chuck goes to see Mr. Boot, looking for work as a reporter." tt0241303,1eWz6aeGexk,"Armande Voizin finally gets a chance to see her grandson, Luc Clairmont." tt0413895,C0mHRQn_YrI,Charlotte describes her Magnum Opus to Wilbur. tt0065528,dcmwPYCUysw,Yossarian defies orders by refusing to bomb innocent civilians. tt0118799,btRNa3CItMc,Guido and Joshua send Dora a message of hope over the concentration camp's PA system. tt0264472,4VWgFJUjmHc,Doyle shows his rage against Gavin by damaging his car tire. tt0413895,zS3qOr0zAJg,Charlotte introduces herself to to Wilbur. tt0413895,jKCpGDv8vuY,Fern enjoys herself at the county fair. tt0118887,cNqSc_WsRJ4,Deputy Cindy Betts pulls over Ray Donlan for speeding. tt0413895,JoEU1L2kueo,Wilbur tries to convince the other barn animals to play in the rain. tt0317248,L9x9zuoAEl0,"Knockout Ned tries to help a wounded member of his gang, but he has his own agenda." tt0241303,ALImNM6jWZw,Vianne tries to persuade Guillaume Bierot to buy a gift for Madame Audel. tt0317248,XeN0t2sZaP4,"Li'l Dice grows up fast, murdering, thieving, and becoming Li'l Ze." tt0317248,V26Pogm8ktk,Li'l Ze torments the Runts. tt0088930,jPf2y2QGoJw,"In the real ending, Wadsworth reveals himself to be Mr. Boddy and Mr. Green turns out to be a Federal agent." tt0317248,BnrKndkqLaY,Benny's going-away-party goes terribly wrong. tt0118887,Y-9QUziXV1w,"With help from Gary Figgis, Freddy Helfin takes justice to another level." tt0118887,K8HgAzIL-iA,"Ray Donian and the gang try to take out Murray Superboy"" Babitch." tt0118887,y7m2AWevwoI,Gary Figgis overreacts when he hears that he's being shut out from the gang. tt0463998,VrJMgYRC_ys,"Eva confesses that her boyfriend, Paco, was responsible for the convenience store murder." tt0082418,A63kIf5CfgE,"When Vicky returns to the cabin, she finds her friends dead and herself on a short road to joining them." tt0082418,kcYN8phvjSY,Alice is the first to go when she finds a severed head in her fridge. tt0082418,sOqvTLXZsMs,Scott's fate is sealed when he goes out to investigate a mysterious sound outside. tt0787475,17gLdc5k_XU,"Rod prepares for the bus jump, as the fans cheer, crew members watch and his family listens from home." tt0427229,QaDy4LHwyec,Tripp tries feeding a chipmunk and ends up getting a bad bite. tt0082418,6YbTy5AvRP4,"After chasing an unseen assailant into the woods, Deputy Winslow finds a mysterious, creepy cabin." tt0082418,yxoE9td3Hko,Paul gives the counselors a jump when he tells them the story of Jason. tt0082418,-CzO7z1dZ1A,Ginny hides under the bed and is saved by a poorly crafted chair. tt0209037,Upj9_vP0WxY,Jean reveals to Willy that he has kidnapped Debbie. tt0787475,VY6PAkLG2p4,"Kevin introduces Rod to Mr. Pasternack, a radio DJ with a bizarre tattoo." tt0209037,OCT_61zKMJU,Jean is distraught to discover on the news that the police have found him and are surrounding the house. tt0209037,FePVICEsBZY,Jean and Marva share a very public emotional moment before she goes on to perform. tt0209037,GjOcw8d8yn8,Michael harasses Debbie about the lack of enthusiasm for her fame. tt0118799,v2sqjebFODg,Guido argues with Joshua when he refuses to go take a shower with the other children. tt0426501,dMt-XLWY8-g,"When Johnny and Flynn make off with the money, Julius takes it out on Rita." tt0426501,AEucDLp8RdQ,The deal between the Ol' Irish boys turns ugly. tt0426501,XlfvWdF-g_E,"Flynn takes care"" of one of Julius's thugs." tt0426501,yoeV1e8dTTI,Ras distracts the police while the convicts make their escape. tt0426501,Wd4DobcYu30,Johnny has a standoff with Julius over his present company. tt0118799,XkFE98rP1eo,"Guido follows Dora into a greenhouse and takes a bike ride with their son, Joshua, years later." tt0118799,9lTSqc1UnLU,"Guido volunteers to translate for a Nazi guard, despite the fact that he doesn't speak German." tt0112744,ZHGLbVKq9T0,Booth reveals to Jojo how he felt after he tragically killed a little girl during a drunk driving accident. tt0426501,LdcIe3gGQHY,Johnny meets Rita and discovers that the two share nationality. tt0118799,o4E-yb-1_FA,Guido tries to get Dora to notice him during an opera. tt0426501,l60Xedjvw-Q,"Johnny finds a way to hide his ""two mates from Belfast"" with a little help from Nathan." tt0118799,KaUEDYWofJQ,"Guido explains trains to Joshua, while Dora demands that a Nazi officer allow her to board the train." tt0118799,ccAWioDHgQM,Joshua thinks that the American tank liberating the concentration camp is really the prize he won for winning the game. tt0118799,h7CBrN19OY4,Guido sweeps Dora off her feet and onto a horse painted bright green. tt0118799,Am-uvoQN72E,Guido shows Dora the power of prayer on their first date. tt0118799,-13ScnosXAk,"Guido maintains a playful demeanor for his son, Joshua, right to the very end." tt0079540,AuWjXrFh1qQ,Tripper tells a scary story to the counselors around the campfire. tt0079540,DONkgw00QSE,"Faced with certain defeat, Tripper encourages his basketball team to lose with some dignity." tt0499554,85-2A0PHLIc,Ethan the Drug Lord tortures a hostage with an unusual device. tt0499554,2pud_rEsxMs,Ethan the Drug Lord and Jeff Spoder reveal their nefarious plan to the Reno Sheriff's Department. tt0499554,Gd6ruQcgu9w,All members of the Reno Sheriff's Department work together to get a chicken out of the road. tt0796366,gAKiWvjfCiQ,Captain Kirk takes command of the U.S.S. Enterprise and leads her out to boldly go where no man has gone before. tt0796366,k9vHopyEtzs,Kirk accuses Spock of not caring about the death of his mother in order to provoke him to anger. tt0499554,etyH2OUxVuQ,Terry gets arrested for lewd behavior by the beach. tt0796366,8Ppo5YIYwTM,"Spock meets an old Vulcan he believes is his father, but turns out to be an older version of himself." tt0796366,5ECsW0x8svw,"While marooned on an ice planet, Kirk is saved from a vicious creature by Spock himself." tt0796366,qs0J2F3ErMc,"Kirk is accused of cheating on the Kobayashi Maru test by Commander Spock, who wrote the test." tt0796366,QGNfrNJZin4,"When Sulu falls off the Romulan drill, Kirk risks his life to save him." tt0796366,-ArVBL8EgKU,Sulu and Kirk land on the drill and have a brutal hand-to-hand fight with some Romulans. tt0124295,sDKUL1YRZZs,Michael Moore investigates the layoffs at the Payday factory. tt0424774,lFiX7y8KFoU,Marissa uses her powers to defeat Mr. Electric. tt0796366,RlphfLO3MYA,"While boarding the shuttle for space, Kirk meets a cranky passenger named Leonard McCoy." tt0796366,FXy_DO6IZOA,Kirk rescues Captain Pike from the Romulan ship while Spock flies in a collision course with Nero. tt0111280,vXNr2xtv09Y,Picard and Soran discuss the effects of time. tt0424774,-tUodP_Wus4,The audience is told to whip out their 3D glasses when the gang rockets out of the solar system. tt0109506,IQp7gtX4w0U,Eric's powers vanish when Grange wounds the crow. tt0109506,5uJV71s0r5Q,Eric pays a visit to Gideon for information on the remaining murderers. tt0124315,WwDJZhI5IRM,The baby Homer is returned twice to the orphanage. tt0109506,cXbzJ7xAVn4,Eric visits Fun Boy and tells him a joke before enacting his revenge. tt0109506,Mwo-Wd__tTI,"Eric sends the criminals, gangsters and thugs to hell in a blaze of glory." tt0099703,TGqcz-Xtd6E,Lilly explains to Roy how she killed Myra and skipped town. tt0442933,8gc-RSAJpH4,"King Hrothgar offers his prized Royal Dragon Horn to Beowulf, if he can slay the kingdom's beast." tt0264472,TEodx0CTTgE,Doyle's A.A. sponsor explains Doyle's bad habits. tt0264472,JyjlwpXupvI,Gavin confronts his father-in-law about the legitimacy of his legal actions. tt0065528,UdZuHyttXbw,Yossarian escapes the military base. tt0264472,NWsc8gC3nSw,Gavin talks to a priest. tt0109506,gDwlbuyDPfk,Eric battles Top Dollars on the roof of a church. tt0109506,1edv56TCvxk,Eric pursuades Darla to kick her drug addiction. tt0112744,6f1jYUTo7AU,"Freddy has Booth dead to rights, but the bullet only wounds him." tt0864761,67jgvKFBCsY,Georgiana is forced to hand over her illegitimate child to General Grey. tt0164334,nZE2tGoC0H4,Alex is impressed by Soneji's patience and dedication to his craft. tt0829459,kGVQE0m_V3A,The CID Captain intimidates a jihadi foot soldier into giving up a critical name in the Daniel Pearl case. tt0164334,LiYdMadk89Q,Alex uses a hidden video camera stream to identify his kidnapper. tt0829459,bmdgHN34hnk,Mariane chastises a news reporter when he asks an insensitive and invasive question surrounding Daniel Pearl's death. tt0829459,FEioKHlkczY,"The CID Captain interrogates a jihadi regarding the whereabouts of Daniel Pearl. As the interrogation escalates, each man makes an understated threat upon the other man's family." tt0829459,kgdr5vmYZLw,"Mariane confronts the reality of her husband's murder, and in the process, finds the strength to endure anything." tt0829459,NTd3y71iKqE,"When Mariane asks for confirmation regarding her husband's death, she's told that her husband has been beheaded." tt0829459,DfcpuhTr8R0,Mariane breaks down after learning the terrible news that the kidnappers have killed her husband. tt0829459,Id3Lr9GyGh0,Mariane reminisces about a happier time with Daniel. tt0829459,x_H8vusyzN0,"Mariane goes on television to talk about her husband's disappearance, showing her strength and grace under intense emotional stress." tt0829459,dH1SeHOpEO8,"Asra reads a chilling e-mail from Daniel Pearl's kidnappers, which contains photographs of him being held hostage. When a wave of doubt casts suspicion on the e-mail's authenticity, Mariane knows the unsettling truth: her husband is in enemy hands." tt0043338,Y4_1X9cpFWI,Chuck and the Sheriff argue about digging Leo out early so he won't die of pneumonia. tt0043338,LLjiVwzeDb0,"Chuck tries to talk Lorraine out of leaving her husband, Leo." tt0043338,7hY_dAeX9hw,Mr. Boot confronts Chuck about how he's handling the story. tt0043338,42xTE_bzg18,Chuck conspires to help get the Sheriff reelected in return for a favor. tt0043338,dShmoHD7PdM,Chuck complains about small town life. tt0164334,doLHipw196I,Cross and Agent Flannigan protect Dimitri from abduction. tt0043338,4D6bHTh4-tE,"Chuck tries to get a story from Leo, who's buried in a cave." tt0043338,BvPVgwp_M18,Chuck talks to Herbie about what makes a good story. tt0164334,FPbDFxXU_74,Jim loses control of his car when he tries to thwart Tracie and Alex's sting operation. tt0164334,iH9hjyoAugw,Soneji meets his end after receiving an unflattering cross examination. tt0164334,5sRrCX-pLPM,Megan sabotages Soneji in an escape attempt. tt0164334,bYQjcjDeGF4,The alliance between Alex and Agent Flannigan comes to an end. tt0164334,3OYeaLGRfug,Alex offers Agent Flannigan some words of wisdom. tt0080388,TXs4RCJasOM,"Ashamed by his inability to protect Sally from a pair of gangland thugs, Lou retreats from her sight." tt0164334,ExYO7B26kkw,Agent Flannigan uses persistence to partner up with Alex to recover the kidnapped senator's daughter she was responsible for. tt0080388,7UZpRynpUac,"After learning that her husband and Lou were working together, Sally demands her rightful share of the money. When she's denied, she makes sure that the entire casino hears about it." tt0164334,xMpgI4DCKyk,Ben has raised too much suspicion for Agent Flannigan. tt0080388,AZ042bsOWTs,Lou surprises himself after killing a pair of gangland henchmen and saving Sally. tt0080388,gL17bwbFDAI,Lou seduces Sally after he reveals that he has been watching her from his window. tt0080388,zlaLlT-5Lf4,"When he notices Sally stealing money from his wallet, Lou realizes that it's time end his fantasy of having a life with her and just let her go." tt0080388,Dyme80H188w,"Taken by Lou's apparent wisdom and sophistication, Sally asks him to be her mentor, not realizing that Lou is already smitten by her." tt0118849,adOO9YXZ9Ys,Ali attempts to come in third place at his school race in order to win a new pair of shoes for his sister. tt0080388,olxqe0CQ7W0,"Joseph's impassioned speech makes an impression on his students, especially Sally." tt0118849,1XkC9it8OPs,"While Ali is running errands for his family, his sister's only pair of shoes goes missing." tt0118849,oSvVjh93suI,Ali and his father get a side job doing gardening work for a wealthy family. tt0080388,bd0ZO7Ewiq0,"Still energized after having killed two gangsters in self-defense, Lou makes a wayward proposal to Sally to go off with him to Florida." tt0118849,bhGFCS11OR8,"Ali's father promises Ali that from now on, their family is going to have the finer things in life." tt0118849,JxTMuhVED0w,"After their pair of sneakers gets dirty, Zahra and Ali wash them together." tt0118849,uqeGxkIdBiY,"In an effort to make it home in time, Zahra accidentally drops a sneaker into the gutter." tt0118849,rgQjzIVzoh4,"During an assembly, Zahra notices that another girl at school is wearing her pair of missing shoes." tt0442933,dJS8Umi2b0Q,"King Hrothgar announces that after his death, Beowulf will take his place as King." tt0442933,YWmwAdK48vg,Beowulf battles a dragon in order to save his kingdom. tt0442933,KNaj7uCVPCI,"Beowulf encounters the beast, Grendel, for the first time, and shows his strength with a violent attack." tt0442933,0KA8Qkw3nks,Beowulf fights a dragon mid-flight in an effort to save his kingdom. tt0442933,cs7CW6xDbL8,"As he is competing to win a race, Beowulf fights off a group of sea monsters." tt0442933,-A9rFt7ITy4,"A warrior, Beowulf arrives with his men in order to slay a beast wrecking havoc in the kingdom." tt0096933,v9qbXZZD-b0,The Japanese Police lead a raid on a Yakuza hideout. tt0096933,C-dzbTNdd04,Yakuza criminal Sato is taken into custody by Japanese police imposters. tt0096933,W5ATR6lZw4o,Police officer Nick Conklin follows after Sato in a meat locker. tt0096933,3UALmd0PV6o,Masahiro questions Nick Conklin's honor as a police officer. tt0096933,R7CbMBUNC6I,Police officer Nick Conklin gets his thrills by motorcycle racing. tt0096933,ngThTIjgCMw,Nick Conklin leads a gunfight against the Yakuza. tt0096933,aYzPUa-6BLE,Police officer Nick Conklin watches in horror as Sato and several motorcycle gang members surround Charlie before Sato beheads him. tt0096933,4nJl2BZ6obg,Police officer Nick Conklin admits to embezzling money from the NYPD. tt0162222,tvGHSvfnlsQ,"Having dropped off the last FedEx package, Chuck is at a crossroads and doesn't know which direction to head." tt0162222,ri44Zx810p0,Chuck and Kelly embrace in the rain one last time before saying goodbye. tt0162222,lv_LfXcjWew,Chuck escapes the island out to sea using a hand-made raft. tt0162222,LHtgKIFoQfE,Chuck is heartbroken when he loses Wilson out at sea. tt0162222,LUDEjulbqzk,Chuck is ecstatic when he succeeds in creating a fire. tt0162222,Z-365iujWk8,Chuck almost loses his only friend Wilson after he tosses the volleyball in a fit of anger. tt0162222,MLnzF5NcAc4,Chuck and Kelly exchange Xmas gifts right before he gets on the doomed FedEx airplane flight. tt0162222,IyOu9xCNMK0,"With the plane crashing in the water, Chuck must survive from drowning and then the on-coming propeller." tt0065528,RrQppEXvRcM,The military men want to impress the general's girlfriend. tt0065528,E9wcK6qvCqI,Yossarian can't find his parachute because Minderbinder stole it for profit. tt0065528,g0UV6ug96c0,Minderbinder explains ways of profiting during the war. tt0065528,j-OcaLECz1k,The Old Man explains the wisdom he gained over 107 years. tt0065528,0cHePp1_EMg,"When Yossarian is injured, his desperation to leave the military is increased." tt0065528,LwELqrqsf_o,Yossarian watches as an airplane accident causes several deaths. tt0065528,0bkaFNVY2UQ,Yossarian accepts his medal in the nude. tt0065528,-eXI4uy3Mlg,Yossarian desperately wants to get out of combat by claiming insanity. tt0264472,Z89Q2fkgbRo,Cynthia confronts her husband Gavin about his affair. tt0264472,FCYA84FwbC0,"After important documents have been lost, lawyers propose to Gavin to forge them." tt0264472,B1QVeR_p7WQ,"Lawyer, Gavin, interviews a young applicant." tt0264472,d9-DFXwcmFI,Doyle explains his ideal Tiger Woods commercial. tt0264472,KtekLRYl3q8,Gavin wants his special documents back from Doyle but Doyle is upset that Gavin disrespected him. tt0090830,0foXV1hWrx4,Sarah explains to James why she doesn't want to learn how to speak. tt0264472,su64KIPecuo,Gavin has a car collision with Doyle. tt0090830,BSFgVoDNlG8,James attempts to confess his love to Sarah. tt0090830,1Pb1vdt-SnQ,Mr. Leeds explains the importance of learning to speak to his students. tt0090830,EZ7HxkZKDuk,Sarah explains to James why she doesn't let people get close to her. tt0090830,KQrBeGqz1W0,"Sarah and James reconcile their differences, and get back together." tt0090830,1qO81pgfRVA,"After Sarah returns home, Sarah's Mother apologizes to her for how she was treated as a child." tt0090830,1pJywLQLzcA,Sarah explains to James the reason why she doesn't feel equal in their relationship. tt0088930,GNUP-so0ndQ,"Mr. Boddy encourages the guests to murder Wadsworth, only to end up a victim himself." tt0088930,nrqxmQr-uto,Mrs. White describes the intense hatred that drove her to murder Yvette. tt0088930,n3PGfjyctSQ,"In this possible ending, Mrs. Peacock pulls a gun and attempts to make her escape." tt0088930,uIUCcORbMvg,Miss Scarlet starts to scream when she and Colonel Mustard find another corpse. tt0088930,O5ROhf5Soqs,"In this possible ending, Miss Scarlet argues with Wadsworth about the number of bullets left in the gun." tt0088930,MRSTpj2Z5cU,"Yvette, The Cop and The Singing Telegram Girl each come to an untimely demise." tt0088930,aKOmGhBOJZI,Wadsworth loses his cool when Mr. Boddy shows up dead for the second time. tt1034303,7CEYqIjhTHs,"Tuvia gives a rousing, inspirational speech about community to the new survivors." tt0088930,fbwsXqUpZRU,Mr. Green proclaims his innocence when The Cook falls dead from the freezer. tt1034303,ntGBzcfpKYg,"When all hope seems lost, Asael heroically leads the crossing of the swampy marsh." tt1034303,CZrA-i6kOdc,"When all hope seems lost for Tuvia, Zus leads a partisan force on an assault of the Germans." tt1034303,q8RTGMsDTiw,"While Asael and Chaya celebrate their marriage, Zus leads a group of partisans in fighting the Nazis." tt1034303,cdVMT44nWzk,Tuvia avenges his father's death by murdering the Nazi informant. tt1034303,S9LRWazyNC0,The rivalry between the Bielski brothers hits the breaking point and becomes physical. tt1034303,SooANfD9sWc,"When tensions among the camp are seemingly on the brink, Tuvia reminds everyone that living - each and ever day - as free men will be their revenge on the Nazis." tt0209037,DvOrBPJGAnc,Michael reveals to Jean that he knows his true identity. tt0427229,WzeXsjGmkjI,"While Tripp is surfing with the guys, he gets attacked by a seemingly friendly dolphin." tt1034303,Vw8BozG_LVA,Zus leads a roadside ambush on a car full of Nazi soldiers. tt0116126,lXtrwkdSkow,"Ashtray goes to live with his father, who explains the rules of the house to him." tt0116126,MwAV8x0J6DA,Toothpick and his gang open fire on Ashtray and the group. tt0116126,I_yF6-3pXdw,Loc Dog's Grandma and Sister Williams have a dance battle during mass. tt0116126,F1Bhl3yjzsQ,"When Toothpick and his gang threaten Ashtray, Loc Dog comes to his rescue." tt0116126,WS94fK4djqg,Ashtray has a talk with his father about his future. tt0116126,phKe4peWFG8,The group goes to visit Old School so they can ask him for advice. tt0116126,ng9LMtcmqNs,"Ashtray and Loc Dog go to a convenience store, and get set up by The Man." tt0116126,N3U5ed3dRAE,"Loc Dog goes to an interview, and gets hired as a crash test dummy." tt0116126,ZRJgexzNOMo,Ashtray introduces himself to Dashiki and her seven children. tt0116126,Gh3AZit48Uc,"While at a house party, Loc Dog explains to Ashtray what to look for in a real woman." tt0463998,9f8liieRepk,A student reads his diary entry expressing why Ms. Gruwell's class gives him hope. tt0116126,1kj111rBzoo,Dashiki recites a poem that she wrote to Ashtray. tt0443489,fbNz1vlRSyM,"After Effie is forced to sing backup, the group performs for the first time with Deena as lead." tt0116126,qPtAocA3m2Y,Ashtray's driving instructor takes him on a detour to rob a bank. tt0443489,O3CGLSyIwNo,"The Dreamettes record their first hit singing backup for James Thunder"" Early." tt0443489,uZgo9g8v76U,"Effie, Deena, and Lorrell catch their big break at a local contest." tt0443489,1mJ49BcUM3E,Curtis tells the group that Deena is going to be taking Effie's place as lead singer. tt0443489,zZK_bkxhJes,Effie joins the Dreamettes to sing their last song together. tt0443489,79LzBvBRPx0,"C.C. makes amends with Effie, and asks her to perform the song that he wrote." tt0443489,PAcLQ7fRJlo,Effie storms off stage when Deena takes her place in the spotlight as the group's lead singer. tt0443489,53o7_NqrTQA,"James Thunder"" Early stops the show to put a new twist on his song." tt0427229,hzV5qSWRfKY,Paula cries faux tears over a dog on a pretend deathbed in order to bond with Tripp. tt0443489,QZO_QFM5j_I,"After she is kicked out of the group, Effie expresses to Curtis that he can't leave her." tt0427229,OJVDP7FaiqI,Tripp announces that he will move out of his parent's house so they can all stop the charade. tt0463998,3c5pbePUc2g,Ms. Gruwell begins to understand her students after reading each of their class diaries. tt0427229,DjANcJEduN0,Paula educates Al and Sue about their son's common problem and explains how she can help. tt0427229,Apv7l4b68MQ,Tripp realizes that he wants to spend his life with Paula. tt0427229,39OHlSguIy0,Kit apologizes in an insulting way and Paula replies with an insult of her own. tt0427229,ZCjO50QLDhA,"When Paula realizes that Tripp is getting ready to dump her, she turns up the heat." tt0427229,9B7tjXbhnog,"While rock climbing, Tripp has an incident with an angry lizard." tt0099558,UPkb66KjZc0,"Condor, Ada, and Elsa fight off Nazi henchmen." tt0427229,UPu0PU6sLxo,"Kit tries to buy a gun, but the salesman senses something is off and won't let her buy it." tt0787475,Uii-wMha6mE,"Rod fights his stepdad Frank in the basement. Later, he is reunited with the girl next door." tt0099558,Dz9YWjkw2BA,Condor fights his way out of a warehouse. tt0099558,qOy1ncO2t8c,Condor is blown back and forth by a giant propeller while fighting off henchmen. tt0787475,3EIgmj6gp1I,"Rod prepares to jump a mail truck as his buddies Kevin, Dave and Rico watch." tt0099558,UrIcAAryafo,"Condor, Ada and Elsa go airborne to escape the military base." tt0099558,6oijcajbnM0,"After witnessing the vault's brutal booby trap, Condor and his team try another method." tt0099558,1bvaqpSmBLQ,Condor goes undercover to rescue Ada and Elsa. tt0099558,XgZihg6-VZQ,Condor outruns a motorcade and rescues a baby along the way. tt0099558,aeavPOh2Wws,"Elsa rents a machine gun to stave off a pair of intruders, destroying much of the hotel in the process." tt0463998,AjGIJPE8B8I,"The woman who hid Anne Frank during the holocaust, Miep Gies, comes to speak to Ms. Gruwell's class." tt0463998,jA-BCSOaa4Q,Ms. Gruwell fights Margaret Campbell and the board of education in order to gain permission to continue to teach her class for their junior and senior years. tt0463998,1JauH_EKpaY,Ms. Gruwell confronts Andre about his self evaluation assignment. tt0463998,G0rXUr-msX0,Ms Gruwell assigns a final class project to her students; to create a book out of all of their diary entries. tt0463998,PahVp7p3XHg,Ms. Gruwell holds a class exercise in order to show her students that they have more in common than they believe. tt0463998,qzayNPEmoK0,Eva explains how she became affiliated with gang life. tt0082418,KJciGsgcYN0,"Jeff and Sandy, having just made love, quickly become horror movie cliches by being killed immediately." tt0082418,eBU1T2DdLsk,"After playing a mean joke on Terry, Scott is left hanging in the woods, which promptly puts him in danger." tt0091188,g5Y-PN_duno,Mark discusses the lost socks of the world. tt0082418,zEIqJ4321TE,Ginny tries to convince Jason that she's his mother. tt0091188,m-1vkYcqRRw,Rachel's first baby is on its way. tt0091188,RuC2eNMtAHA,Rachel watches the TV as it describes her current predicament. tt0091188,wUP31hGC1A0,Mark makes up songs about their bun-in-the-oven. tt0091188,5soOhh80bK0,Rachel confronts Mark about his affair. tt0091188,9c0szHKahlQ,Mark and Rachel get a new house and attempt to fix it up. tt0091188,gnaDj74UMqs,Rachel and Mark agree that they don't believe in marriage...sort of. tt0091188,iY68ovrzfXc,Rachel is asked a question that she can't help but answer and is forced to make a decision. tt0787475,ELpItLsTKgY,"Rod finally defeats Frank in a fight, and forces him to admit that Rod is a man." tt0787475,Nrs-lyhcXmA,Rod gives Dave a ride to the hospital to remove the piece of metal lodged near his eye. tt0787475,TOUrLn1FFCA,Rod and Kevin apologize to each other and improvise a song. tt0787475,wxb_X12HZWQ,"Rod introduces Denise to the crew, but they seem to be nervous around a girl." tt0209037,tHNjy3BH4qE,"Marva finally gets to perform her song, ""Lucky Mañuelo,"" on television." tt0787475,gbu88CKkEzI,"Rod prepares to roll down a hill, but his strange pronunciation of the safe word confuses Kevin." tt0787475,QAztYUCEhzk,"Rod attempts to jump over the public pool, with Denise and everyone else watching." tt0209037,TumSHtCzjAw,Chantal suspects Marva is not revealing everything that happened during her meeting with Michael. tt0209037,HNrYPzxrG7I,Jean and Chantal share an intimate moment before the television performance. tt0209037,lBvrfWqCjYE,Jean returns to the house furious when he discovers on the news that Willy went back to Debbie's apartment to get her dog. tt0209037,SBLMTDMdTIU,Jean and Chantal go to see Marva perform as Madonna at a strange talent show. tt0209037,KocHmCmLwro,Marva quite harshly explains to Jean what she would really want out of a father. tt0209037,FiAndeAR9wQ,Debbie and Willy share an intimate moment while alone in the house. tt0079540,rCHGzxSBn-c,Tripper tracks down Rudy at a diner and convinces him to return to camp. tt0426501,-BYVM9TrKzg,Julius gets shot by Rita after he captures the fugitives. tt0079540,8-UdwBkXJBI,"Spaz has a run-in with some jerks from Camp Mohawk, while Tripper spreads some false information about the rival camp." tt0079540,pWPn-C5l3Sk,Tripper coaches Fink to victory over The Stomach in a hot dog eating contest. tt0079540,WaF5AMiC4xU,The North Star Counselors in Training sing a song around the campfire on the last night of summer. tt0079540,jdZ6RA_c6oE,Tripper motivates Rudy to win his race by giving him a nickname. tt0079540,-TogGxzlfhM,Tripper rallies the troops with a rousing pep talk before the last day of the Intercamp Olympiad. tt0081353,rqVI2DmLI2Q,"Learning that Olive Oyl has broken their date, Bluto explodes into the song, ""I'm Mean,"" and leaves a path of destruction in his wake." tt0070510,ma_XNn1bwOM,Moses gets increasingly angry with Addie because she is keeping him awake. tt0070510,BGZZ7s7FJlM,Addie runs away from her Aunt Billie's house and finds Moses on the road. tt0079540,q85fsxWYG6A,Tripper puts the moves on Roxanne and then turns the tables when Morty returns. tt0070510,2jTjWGNMo4E,Moses says goodbye as he drops Addie off at her aunt's house. tt0416051,R0zmkkcEdKc,Lance shows a client his promotional video for Mr. Fix It. tt0070510,IK1HlBRMGwk,Moses and Addie enter into a high-speed chase to escape the police. tt0070510,CKJJbZe4TWM,Addie pulls her own con on an unsuspecting salesgirl. tt0070510,VBA_fhQoArA,Addie puts Moses in a tough situation when she demands the $200 he owes her. tt0070510,ATGMbNOmAYs,Addie helps Moses con a widow into buying a Bible. tt0070510,phJJFbxyino,Moses gets angry with Addie after she decides to call the shots and take a widow for more money. tt0081353,qAFgj8mqPk0,"On overhearing Popeye's affection for her, Olive Oyl breaks into the song, ""He Needs Me.""" tt0081353,mFwAm6oIPtk,"As the attraction between Olive Oyl and Popeye grows, they sing the lullaby ""Stay With Me"" to baby Swee'pea." tt0081353,f_G1oYcHFsk,"In the boxing ring, Popeye knocks out the gigantic Oxblood Oxheart." tt0081353,UmwLKU5DIGk,"Olive Oyl sings about the positive aspects of dating tough guy Bluto in the song, ""He's Large.""" tt0081353,1-HbIkCjDbk,"Discovering Olive Oyl is now with Popeye, Bluto blows his top." tt0081353,qhxDQ1g964U,"A sense of empowerment and confidence grows in Popeye as he sings ""I Yam What I Yam."" And what is he? He's ""Popeye the Sailor Man!""" tt0081353,-ncFDuKdgNE,"Popeye eats a can of spinach transforming himself into ""Popeye the Sailor Man,"" and saving the day for all." tt0236640,Dq6dW6XbeLI,"Lizzie becomes vindictive and sarcastic after she encounters Dr. Sterling, who proves to be no pushover." tt0499554,kdTfLDIbwow,"Terry invites the Reno Sheriff's Department to join him on his jet, given to him by his father for Flag Day." tt0499554,9G4TzgRUKGI,Jeff Spoder holds the Reno Sheriff's Department at gunpoint after a low-speed pursuit. tt0499554,kicjYh3v1FI,Deputy Williams teaches Deputy Wiegel to speak in street vernacular. tt0499554,H53kBYo1Jx8,"Rick Smith arrives to take charge, and quickly needs to be replaced." tt0822854,huOZPQ6Hl2c,"After being captured and tortured by agents of a mysterious private army, Memphis is set-up to be murdered... until Swagger saves the day with his quick scope and crack shot." tt0499554,MYge4RghcNQ,Deputy Travis wakes from an elaborate dream to find himself behind the wheel of his cruiser. tt0822854,5cKRTdQtq5w,"When the assassins attack, Swagger finds himself on the wrong side of a cover-up as he becomes instantly expendable." tt0822854,a_6tguZWgmU,Swagger opts for an aquatic getaway when he's cornered by the police and federal agents. tt0822854,mn60YWO218k,"Swagger gains the counsel of Mr. Rate, a firearms expert, as he searches for the identity of the real assassin." tt0822854,lKEihcQaa_g,"After Swagger neutralizes the enemy snipers, he turns his sights on Jack, who holds Sarah hostage." tt0822854,AoSA32zQ754,"With images of his deceased friend still fresh in his mind, Swagger makes amends by protecting his new partner, Memphis from an enemy helicopter." tt0822854,RIN6AtTxFgE,Colonel Johnson and Senator Meachum take turns gloating at Swagger when he confronts them about their crimes. tt0822854,pAZOyJPs5bo,"Swagger and Memphis shoot, kill, and blast their way out of a black-ops ambush." tt0054331,ouDfr9Jh0s8,Crassus finally identifies the rebel Spartacus and commands him to fight his friend Antoninus to the death. tt0102975,C1NgX-w54RY,Kirk has Spock extract information from Lt. Valeris via mind meld. tt0102975,nrizm2gnQBo,The crew of the USS Enterprise NCC-1701A sail off into the sun one last time. tt0102975,BS-f_KwM81I,Kirk fights an alien that doesn't have an anatomy like ours. tt0102975,l_a2GN0Ix4o,"Spock discusses the problems with the warp drive,"" while Kirk ""plans his escape""." tt0102975,s2wBtcmE5W8,Kirk fights a shape shifter that changes into Kirk himself. tt0102975,fg58hVEY5Og,Kirk and Chang do battle as Chang quotes iconic Shakespeare. tt0102975,Bf4YINfjQaQ,Kirk and McCoy are tried and sentenced by a Klingon court for the assassination of Chancellor Gorkon. tt0111280,U15kcueM3Og,Kirk and Picard face off against Soran. tt0111280,y8_oqgPwHfI,Picard finds Kirk buried in rubble. tt0486655,dKSAKBEI4w0,"The pirate, Captain Shakespeare, treats his prisoners unconventionally." tt0102975,avH2K1iR8Oo,Uhura tries to speak Klingon to the outpost monitor. tt0111280,xz3CYcjdSaI,Data has trouble dealing with his new emotions. tt0111280,VrJiU9BOEBI,Kirk agrees to come back to reality with Picard. tt0099703,NY0e-PQeJbQ,Myra watches as Roy pulls a con on some sailors in the next train car. tt0111280,fmIaHAtabSU,"Picard fails to stop Soran from destroying the star, and sending the entire planet on a collision course with the Nexus energy field." tt0111280,FpgyrIlhoyw,The Enterprise crash-lands. tt0486655,JTu1R4b1yZQ,Yvaine shines like a star. tt0486655,dkdrbg4EwGA,Tristan battles the witch Lamia and the reanimated corpse of Septimus. tt0111280,DSCWB4GqcFE,The crew of the Enterprise tries to find a way to bring down the Klingon Bird of Prey before they're destroyed. tt0486655,5FZ7jNq8A00,Septimus fights the witches and meets a soggy end. tt0486655,uopoXtR0Kjk,"The King discusses who will inherit his crown with his sons, living and dead." tt0486655,7ZkmgFpKdxQ,Septimus asks the Soothsayer some tricky questions. tt0486655,pTCTgL7_9gY,Yvaine tells Tristan what she knows about love. tt0486655,_NrqftLip64,Septimus walks in on Captain Shakespeare getting into the spirit of the Can Can. tt0424774,0CZAYJ_sotw,The gang figures out a way to get a heated Lava Girl across an ice bridge. tt0424774,hhGSeFrYSyo,Max narrates the origin of Sharkboy. tt0424774,0EeL2FeI7NA,The gang arrives in the land of milk and cookies. tt0424774,4ZaIb1kBnX8,Sharkboy sings a lullaby to get Max to sleep. tt0424774,K1AMs3IPQJQ,Max and Minus face each other dream to dream while Sharkboy faces Mr. Electric. tt0424774,n8hmCcXvpz8,"Max faces Minus in the dream world, where he talks him out of destroying dreams." tt0424774,yKwIEIVAMfE,The gang fights off Mr. Electric's plug hounds. tt0424774,_P3bnWz5GL4,Sharkboy and Lava Girl travel to the real world looking for Max. tt0424774,2GvL2DyMfGU,The gang fights Mr. Electric's wave of giant power cords. tt0424774,SmCSJ3akPIs,Linus taunts Max before chasing him around the playground for his dream book. tt0124295,kOS8g1D6MXk,Michael Moore interviews a former inmate who answered phones for TWA as a prisoner. tt0124295,9PM9tDtmaaI,Michael Moore teases Republican primary candidate Steve Forbes for never blinking. tt0124295,WeZiTVev7vA,Michael Moore confronts representatives of Johnson Controls about the company's layoffs in Milwaukee. tt0124295,PW2Wr4-2oyM,Michael Moore tries to film inside the headquarters of the Pillsbury corporation. tt0124295,yPBDhqwT8VQ,Michael Moore recounts his experiment to see if politicians would accept money from anybody. tt0124295,b3z4_gJ5hGU,Michael Moore is kicked out of the Hersheys/Leaf offices. tt0124295,28B_sZZ6km4,Michael Moore invites Nike CEO Phil Knight to accompany him on a visit to Nike's Indonesian factories. tt0124295,ymjvQZ6nSd8,"The unemployed of Flint, Michigan send a video message to Phil Knight, CEO of Nike, hoping he will bring a shoe factory to Flint." tt0124295,Nd5_lg9Ea0E,Michael Moore criticizes Johnson Controls for laying off workers without warning. tt0124315,tGs4xAZJkps,Homer questions Arthur about his incestuous affairs. tt0124315,SzJ6RfcDato,Homer performs an abortion on Rose. tt0112744,BoTt0juJio4,Freddy finds himself at the wrong end of Booth's rifle; he tells Booth that he got arrested for drunk driving and laughs at the irony of the situation. tt0124315,JES2fQLPoGU,Homer and Dr. Larch correspond through letters. tt0124315,NM_5sUMyd0I,Homer returns to the orphanage and is welcomed with open arms. tt0124315,umK3KRcg1V8,"Homer moves out of the orphanage, destined for greater things." tt0124315,azvRjKHhpfA,Homer and Dr. Larch discuss ethics and the responsibility of abortion. tt0124315,LK4c5TIKY0w,Homer reads off the rules of the cider house to the apple-picking crew. tt0402022,TKKzI-DKhuQ,Aeon protects Trevor from a group of machine gun wielding cops. tt0124315,8aRwEJvaPiY,Homer reassures Curly when a couple visits the orphanage and chooses a girl. tt0112744,Bw-Y1sEUlSk,"Booth leads Freddy to his daughter's gravesite. For both men, years of grief and torment are exorcised, and their animus towards one another is finally disarmed." tt0112744,yGy0XuoyTvE,"On the night he is to kill Booth, Freddy has an emotional breakdown and calls Mary for help." tt0112744,scrKz6PN92g,Freddy distracts himself from his emotional pain by falling into the embrace of a prostitute. tt0112744,hKNSpQwCIdA,Freddy gives Mary a piece of his mind after she tells him that she has taken pity on him because of his dissolute life. tt0112744,jszED6T4Gik,Freddy explodes at his ex-wife Mary when she finds no joy in his desire for revenge against John Booth. tt0112744,ZpuHoppfsN0,"Freddy returns to get one last word in edgewise against his ex wife, Mary." tt0112744,8xf7Ee4KLiE,"When a shopper makes a fuss about a ring that doesn't fit, Freddy makes sure that the customer leaves satisfied." tt0112744,6teHF2I4UuY,"Just as Freddy is about to tell one of his buddies that he's going to commit a murder, a stripper named Mia calls him up on stage so they can dance together." tt0109506,uqLr5PR6sbM,Visions of his and his fiance's murder flashes in Eric's mind as he returns to his abandoned home. tt0109506,US6tvODNVu4,Eric interrupts a meeting with the leading gangs and thugs. tt0112744,YNTpnxwyEg4,"After Freddy botches the hit job, he gives Booth three days to live before returning to finish what he started." tt0864761,rvjVIwMPxqA,The Duke apologizes to Georgiana and explains that he wants their life together to return to normal. tt0109506,T2R4z7O4kg0,Eric blows up Gideon's after finding his old engagement ring. tt0864761,XquwlFI-Ygc,The Duke threatens to take away Georgiana's children if she leaves him. tt0864761,ZlITgn8FjDw,Georgiana realizes that The Duke has slept with her one true friend. tt0116209,eWgOjuLg5oY,"Following the plane crash, Count Laszlo carries a wounded Katharine to the Cave of Swimmers." tt0864761,9V2nsuzAzb8,Georgiana takes a vacation to Bath in order to secretly meet up with Charles Grey. tt0864761,7h14GBiAZxo,"Lady Elizabeth explains to Georgiana Keira Knightley) that love with a man can be enjoyable, rather than forced." tt0116209,aW4tjKzDEDU,"During an interrogation, Major Muller tortures Caravaggio by chopping off his thumbs." tt0864761,2NfTq7LPnXk,"Georgiana fails to bear a male heir to her husband, The Duke." tt0864761,BjCjlMXLVtw,"Georgiana befriends a woman that The Duke has eyes on, Lady Elizabeth." tt0864761,JMJAl7PfSlk,Georgiana discovers that she will be married into a powerful and wealthy family. tt0068646,ppjyB2MpxBU,"Michael takes a gun he hid in the bathroom and blows away his enemies, McCluskey and Sollozzo." tt0068646,voNs3aHZmQM,Michael explains to Kay that his father is just like other powerful men. tt0116209,OkSIAlL4f-0,Count Laszlo and Katharine continue their secret affair during a Christmas celebration for the troops. tt0116209,8DlxO2frMPE,Kip takes Hana to a cathedral decorated with beautiful wall paintings. tt0116209,yU5kwdXhSzY,Kip tt0116209,x11OTizHwfE,Jealousy gets the best of the Count when he spies Katharine dancing with another man. tt0116209,tK49SBXBK_U,"At a party in Cairo, the Count shares a dance with Katharine and the romantic tension is already present." tt0116209,6SEp2FQYS84,Caravaggio suspects Hana tt0116209,z40Tipkm4IA,Count Laszlo and Katharine spend their final moments together in the Cave of Swimmers. tt0068646,SWAJPB_5rSs,"Michael's Italian bride, Apollonia, is cruelly murdered in an explosion." tt0068646,DvD9OryD6mY,Michael lies to Kay about what he did to Carlo and she fearfully watches as men pay respect to the new Don Corleone. tt0068646,jYnRBX2Trtk,Moe Greene threatens Michael. Michael warns his brother Fredo to never take sides against him...ever. tt0068646,0qvpcfYFHcw,Michael devises a plan to kill Capt. McCluskey. tt0068646,1CDlBLvc3YE,Michael has a series of hits executed while he is at a baptism. tt0164184,PJpGMrH7RWs,President Robert Fowler contemplates what action to take after Chechnya is attacked. tt0068646,sJU2cz9ytPQ,"Sonny is stopped at a toll booth, ambushed by a group of armed men, and murdered." tt0068646,VC1_tdnZq1A,Mr. Woltz wakes up to find his prize horse's severed head in bed next to him. tt0071562,435mkg6_eGQ,Michael remembers an earlier time – the day that he told his family including Sonny and Tom that he had enlisted in the marines to fight in World War II. tt0071562,wPmTp9up26w,"Senator Geary tries to strong arm Michael, but the threat fails to work." tt0071562,gCdXiOssbM0,"Vito Corleone returns to Sicily to honor his dead father, Antonio Andolini, by taking revenge on Don Ciccio." tt0071562,AO-VFDYy9Rk,Michael wipes out all his remaining enemies including his own brother Fredo who is fishing on Lake Tahoe. tt0071562,4dWE_ag9W6o,"When discussing the possibility of assassinating Hyman Roth, Michael reminds Tom that if there is one thing certain in this world, it is that ""you can kill anyone.""" tt0071562,_g9RI0GgRIQ,"Kay informs Michael that her miscarriage was, in fact, an abortion." tt0071562,em7EcaXPJF8,"During the Italian fiesta, Vito murders Don Fanucci in his doorway." tt0071562,5Weaop_aiTg,"Michael banishes Fredo from the family, both in business matters and as a brother." tt0071577,DiNE5iYBuHA,"Daisy tells Gatsby the story of how she came to marry Tom, and why she didn't wait for him." tt0071577,KlPjJx6pMNA,Nick has an awkward first encounter with Gatsby during a party. tt0071577,EwYjmMjwF_M,Gatsby and Daisy see each other for the first time in eight years. tt0071577,Z8zeMXCxlmE,"Nick reunites with his cousin Daisy and meets her husband, Tom, and friend, Jordan." tt0071577,lE4UQ5gh5Zo,George sneaks into the mansion and murders Gatsby. tt0071577,-W93ly0pQGI,Gatsby tells Tom that he intends on leaving with Daisy. tt0099703,Drr7dxV6I64,"When Roy rejects her advances, Lilly grabs the briefcase full of money, with tragic results." tt0071577,dhRABm5GgHc,Myrtle tells the story of how she and Tom met. tt0071577,QxL3vcwOL8E,"Nick has lunch with Gatsby and his friend, Meyer Wolsheim." tt0071577,vgZ-MV0YbMU,"Tom brings Nick to meet his mechanic, George Wilson, and mistress, Myrtle Wilson." tt0099703,sdUbhlY-RP8,"When Roy rejects her plan to work together, Myra questions Roy's relationship with his mother." tt0099703,Rlwhv7m3CSI,Myra and Cole rope an unsuspecting businessman into an elaborate business scheme. tt0099703,QauBYsssnl4,"Lilly tries to hire a nurse for Roy, but he sees through her ploy." tt0099703,jvhap1vcLDw,"Bobo threatens to beat Lilly with a towel full of oranges, then burns her hand with his cigar instead." tt0099703,Z96Hz_Hio8k,Lilly and Myra size each other up when they visit Roy in the hospital. tt0099703,FJU-pWka9lY,Myra seduces a jeweler after he determines her diamonds are fake. tt0099703,6lOPeGgf9C4,Roy befriends a con man in order to learn everything about becoming a grifter. tt0099703,AMibptRTFdo,Roy pulls some short cons on a bartender and a customer. tt0368008,SUu7hWUv7f8,Eleanor is confronted about using her son as a hit man. tt0368008,uEYm9Zm5zI8,Marco bites Shaw to prove that he has an implant in his back. tt0368008,rRaHWuWTtG8,Rosie reveals herself as an FBI agent when Marco attacks her in her apartment. tt0368008,3cDavZFKopc,Melvin tells Marco about strange dreams he has been having. tt0368008,ac7D9kcETUg,"Shaw is sent to kill Senator Jordan and his daughter, Jocelyne." tt0368008,WR_LpHsIp7Q,Marco remembers his brainwashing where Simon McBurney had him and Shaw kill Ingram and Baker tt0368008,Qub35DMB63E,Marco is interrogated after Melvin is found dead. tt0164184,BU6A7rn15oA,Jack informs President Nemerov of the true origin of the bomb that was in planted Baltimore. tt0469641,ja4l7-L7n6M,John reminisces about the time when he found out Donna was pregnant with their youngest daughter. tt0469641,IeFdeC6ukDY,The officers arrive at the horrifying scene of Ground Zero directly after the attacks. tt0203230,BziL_wBTw6A,Terry talks to Rudy about Rudy's father. tt0402022,FhODkuXIda4,"Aeon is summoned from her room by The Handler, who assigns her a new target for termination." tt0402022,ow9U0uWCfDY,Aeon and Freya square off in a show-no-mercy fight. tt0402022,1iFLiN6E1qE,Aeon catches a fly with her eyelash in a sequence inspired by the animated TV show. tt0402022,5zInmil5iT4,Aeon utilizes her Monican powers to free herself from captivity. tt0164184,Y0p3egpGwAI,DCI William Cabot and Jack Ryan meet with President Nemerov to discuss Russia's military forces. tt0164184,glMgSCdK1xU,Grushkov reveals to Jack that he was a secret source to the CIA. tt0164184,XcNYS8j9Qkg,Jack tells Cathy that he can't make it to their dinner date because of the secret CIA mission he's on. tt0164184,8GPu-oZ4p64,DCI William Cabot discusses the matter of the new Russian president with Senator Jessup. tt0164184,Wzp2rpe06j8,Dressler records a speech on fascism while his bomb is being planted in the United States. tt0469641,VDU2I4kxPY8,Will is finally rescued from the rubble. tt0469641,oG58-Vs838M,"The officers notice the first signs of an attack on the morning of September 11, 2001." tt0469641,lPCt2BBqR2k,"Will, John, Antonio, Dominick, and Christopher, run for cover as the tower collapses on top of them." tt0469641,2CEYOnJqPE4,Allison and Donna are told that their husbands have been being found. tt0469641,wEnaRGQc8Ls,Will and John are finally discovered by Karnes. tt0469641,cagsLW2dKTI,John is finally rescued from the rubble as Donna waits for him at the hospital. tt0469641,eHx-v7Xto7E,Will gets increasingly distraught at the despairing situation that he and John are in. tt0203230,XP71dJlnLJQ,Samantha is a little irate when she hears about the time Terry spent in jail. tt0203230,Ad4VvlLYJ9o,Rudy finally gets to spend some quality time with his Uncle Terry when he gets picked up from school. tt0203230,QX1qfAa0np8,Samantha argues with Brian over the future of her job. tt0203230,i1ZUVkU_XK4,A fight ensues when Terry brings Rudy to meet his biological father. tt0203230,MPp_UJZTU78,Terry says goodbye to Rudy. tt0203230,exIGslwFcMI,Terry gives Rudy some last-minute advice while he packs to leave. tt0203230,hc0o1zXNHAg,Samantha tells Terry about her tryst with her boss while they share a joint. tt0402022,TiHM7F5EUaI,"Aeon spends the night with Trevor after she realizes they share a distant past. Her sentiment changes in the morning, however, when she remembers she's under strict orders to kill him." tt0402022,rwk6Obqrj9M,"Aeon explains the post-apocalyptic city of Bregna, whose residents are confined within the domed walls." tt0402022,jgvj0XwxagY,Aeon stylishly takes out a group of armed agents surrounding her from above. tt0402022,KPz_yW2gjmI,Aeon performs a daring jump onto a floating ship. tt0402022,JbyemdsSfI0,Sithandra confronts Aeon on her reluctance to follow orders. tt0116367,Z9m4hRQkVSA,Chaos in the convenience store erupts when Richard accuses Pete of signaling Ranger McGraw. tt0109445,fEEj6d3GTOU,"Randal annoys an indecisive video store customer, who in turn annoys Randal." tt0219653,YTkSNIvrueA,Mary sacrifices herself to destroy Dracula by letting sunlight pierce his flesh. tt0068767,WmD1a_N83ZM,"Chen Zhen crashes a Japanese dojo in search of Suzuki, the man who Chen believes defiled his school and his master's legacy. When the Japanese students defend their dojo, they learn a lesson in unbridled badassery at Chen Zhen's knee, foot, and fist." tt0112346,UJUWDZ9JUEI,"When mutual attractions are exposed, President Shepherd and Sydney discuss the steps of a possible relationship." tt0407304,NBS7J3KHWhQ,"Harlan tries to pull a shotgun on the aliens, but Ray stops him because he knows they're outnumbered." tt0219653,vj_NmzJ0mMA,Mary and Simon trick Dracula and fight his undead servants. tt0091042,KS6f1MKpLGM,The Economics Teacher calls attendance and notices a few absences. tt0112346,4tnHIQmcSHY,"When President Shepherd cancels a date with Sydney, he stops by a florist shop to send her flowers." tt0112346,OORXuVmd9YQ,"When Sydney's boss discovers her date with The President, he lectures her about her responsibilities. At the same time, Sydney receives a gift from the White House." tt0112346,aIm1ZGm03WA,Sydney gets more than she bargains for when The President unexpectedly walks in on a meeting right when she is insulting him. tt0266489,8sUWwozOFww,"In cartoon form, Alex and Nancy search for a house within their price range." tt0255477,m3TAK8ty_cg,The Blue Fairy watches as Pinocchio is swallowed by a shark. tt0047396,DKCGcHQSvHw,A neighbor is heartbroken when she finds her dog has been killed. Jeff and Lisa question why Thorwald would want to kill a dog. tt0110005,xLq2eTiqbww,Pauline imagines her mother and father suddenly dying while at the dinner table. tt1253596,kzu2Gwn-sPA,"The good news is that the assault charges have been dropped. The bad news is that since thirty days have passed, none of the midgets or mascots will win the inheritance." tt0092007,YtDqlEcfr9w,Dr. Gillian Taylor grills Captain Kirk and Spock on their strange behavior. tt0088850,oozQe2Bk2cA,"Spike gleefully tells Monty he made him ""10 million, 10 million, 10 million dollars!""" tt0219653,CbMYk-lCKOw,Simon fights an undead Marcus. tt0133751,1jiv5JxmUww,"When Casey and Zeke confront Professor Furlong about the missing parasite sample, they find out that their professor is already infected." tt0091042,H19uKs99vIw,Jeanie reluctantly enters into a conversation with a stranger at the police station. tt0219653,uBB3Cvxq5f8,Van Helsing describes his history with the mysterious Dracula. tt0219653,excK59qpaOA,The thieves break into Matthew Van Helsing's secure vault which holds a deadly secret. tt0219653,WYzUtZMt5A8,Dracula murders the thieves of his coffin on an airplane. tt0219653,MicQ48AuWhw,Dracula frees Solina from an asylum. tt0219653,dejp7HK8Owc,Nightshade is the first to greet Dracula as he wakes from his century long slumber. tt0219653,Ao5TqA-l2cg,Van Helsing and Simon must face Dracula's undead servants. tt0219653,rOaNhtHWULw,Van Helsing and Simon escape the perilous undead servants of Dracula. tt0219653,Y9NVQr1r9nw,"Dracula seduces Lucy, where he references an iconic line from the original Todd Browning Dracula" tt0219653,qwMmxh3r8YM,"Dracula reveals himself to be Judas Iscariot, the disciple who betrayed Jesus Christ." tt0077416,Kd9_2TRib3k,"On the hunt in the early morning, Michael gets the perfect shot at a deer but misses it intentionally." tt0090305,mcUWG23hqvw,"Wyatt is blackmailed by Chet, his militaristic older brother." tt0091042,mHa1zTLrXO8,Ed Rooney and Grace discuss Ferris and his popularity. tt0384642,gA8z3Yk3wWc,Phil tries coffee for the first time. tt0107076,GrlUWh2ZlHo,A motorcycle chase ends in flames when Chance ghost-rides his bike into a truck and blows it to hell. tt0106332,UkdFtNyvsBM,Cheng Dieyi is aggravated by Duan Xiaolou's sudden decision to marry the prostitute Juxian. tt0112346,y-HKigPxUi0,President Shepherd and A.J. discuss the consequences of dating during an election year while playing pool. tt0088850,SRWyQELLODg,"Monty outfoxes his lawyers by mailing a rare stamp, canceling its worth." tt0082198,gmpBzm5RknI,Conan is resurrected from the dead and regains his strength through the care of Valeria. tt0765429,PgOO8Z-FoKY,"Frank and his wife Eva are shot at during a drive-by shooting, but manage to survive." tt0077416,dGFrhVeMm6U,"When the helicopter comes for them, Nick is rescued, but Michael and Steven fall in the river." tt0384642,Ozpkzjl-oCU,Phil's unruly behavior gets him kicked out of the coffee shop. tt0107076,5I-k7fSMhg8,Fouchon and van Cleef punish Poe for providing their hunting organization with a man who had a family. tt0088850,bXEglx-or6k,"Monty announces a simple campaign platform: Vote ""None of the Above.""" tt0384642,rxM8oCm4TnM,Phil takes the boys camping and takes it a little too seriously. tt0088850,9Najox-g4zE,"Monty pays off a man who rear-ended his car, compensating him for ""brain damage.""" tt0106332,Z0JXPVm_Ohg,"After running away from their troupe, Young Douzi and Laizi attend the opera for the first time." tt0106332,X8gUgmkzHjs,"The opera manager is confident that Duan Xiaolou and Cheng Dieyi will have continue to have flourishing careers, even after the impending Communist takeover." tt0107076,kC44tlr_KsU,"When Natasha is attacked by some thugs, Chance shows them the error of their ways." tt0099674,Td8eEM9KDig,Vincent and Michael barely escape a massive helicopter attack ordered by Joey Zasa. tt0047396,-6fuDrAmhNc,Jeff calls Thorwald to get him out of the apartment so Lisa and Stella can search for clues. tt0090305,6bDAYP4kpGk,Chet catches Wyatt wearing women's underwear and demands money to keep it quiet. tt0107076,R6Vbxei-TQc,Chance and van Cleef face off in a deadly shootout at the warehouse. tt0088850,c35RsjYzAhY,Monty hires an enthusiastic Russian cab driver as his personal chauffeur. tt0047396,-e3HqC2rbQc,Lisa and Jeff have a disagreement over their future together. tt0110005,JsFO0ZY7whQ,"After a long time apart, Pauline and Juliet renew their friendship in an imaginative and intimate way." tt0106332,lhQRz_BP1v8,Duan Xiaolou is interrogated for disparaging the Communist army. tt0082198,PAHFNiNl9JM,"As Conan lays on the cross crucified, Subotai rescues him before death." tt0090305,GvZLaCfU4PA,Gary and Wyatt are drenched in slush by a pair of bullies. tt0088850,k9gcqiIfw8E,"Monty delivers his stump speech, electrifying campaign supporters at a ""None of the Above"" rally." tt0082198,RVFpy5UwsAU,Conan prays to Crom before a battle with Thulsa Doom and his warriors. tt0088850,L_b55QpXdsg,"Addressing a stern judge, Monty and Spike mount a defense of the previous night's skirmish." tt0080761,7xOOk5w5dDA,Alice fights for her life with Mrs. Voorhees. tt0090305,-UJ9K8lMxPA,"Gary and Wyatt's computer hacking results in a gorgeous, flesh-and-blood woman." tt0110005,8wh62mxbLy8,"Juliet and Pauline bond together over music, books, movies, and toys -- an idyllic display of adolescent bliss." tt0110005,F3hX-mdx80w,"Pauline reveals her plan to murder her mother to Juliet. Later, they burn their records as part of a ritual preparation for what they're about to do..." tt0077416,BsTrRttExpA,Michael hunts and kills a deer with one shot. tt0120694,HbYMkY74ikA,Charles is murdered by Michael Myers. Trivia: the famous Michael Myers mask in this scene was digitally replaced with one that more accurately resembles the mask in the first movie after negative feedback from test audiences. tt0216787,8COIJaMQGc0,Bruno and Manie discuss how men and women deal with sex. tt0765429,y5RFBLZV-B4,"Frank explains his method of business and how he managed to surpass the ""white man"" when others couldn't." tt0452608,pMQxW1t8guI,"A man enters Jenson's home and attacks and kills his wife, Suzy. Then he attacks Jenson, framing him for the murder." tt0384642,qvFBGYjAXW8,Mike Ditka and Phil try to inspire the kids to greater soccer success. tt0106332,00pBYZ1yofs,A tragic riot breaks out at the opera when Duan Xiaolou tries to settle an unruly crowd of soldiers. tt0112346,YnKV34oNXiw,"When President Shepherd wrestling with votes on a piece of legislation and the media focusing its attention on his personal life, Lewis reinstates what people care about in the Presidency." tt0047396,1Ez6dw3ywcc,"When Lisa is caught snooping in Thorwald's apartment, Jeff is also caught watching from his window." tt0090305,YIYJpbAK6MY,Gary and Wyatt recoil at the sight of Chet's nasty new persona. tt0110005,oOZ7KbI0Phw,Pauline imagines herself in the Fourth World to escape the boredom of having sex with Nicholas. tt0047396,Re5jTn8Cv4M,Jeff sleeps peacefully by the window with two broken legs with Lisa by his side. tt0238380,_b3_-pPzDVk,Preston examines a hidden stash of contraband items and weeps upon hearing Beethoven for the first time. tt0169547,GyJGnNFU5dc,"Lester fawns over Jane's friend, Angela." tt0112346,q3NI5sE3KeY,President Shepherd gives a press statement addressing his political opponents and asserting his position as the President of the United States. tt0120694,3GoXAgg7rgM,Laurie has a feeling that Michael Myers could be back when she realizes her son is the same age she was when Michael first tried to kill her. tt1253596,xQvyGwbVWHk,Big Red appears after the screening of the finished documentary to reveal that he's alive after all and giving his money away to the contestants. tt0080761,RObb2QfBnUs,"Alice wakes up in the hospital to find that all her friends are dead, and Jason is still alive." tt0230600,6QFgsy9R4uc,Grace questions Anne and Nicholas about children tt0169547,Vt0rz5iPuaA,"Following a property showing, Carolyn allows herself a brief emotional meltdown." tt0110005,8ZgKfSqsN80,Pauline and Juliet murder Pauline's mother after luring her into a trap. tt0110005,VyEM6uxoo7o,"After learning that her parents are going overseas, Juliet takes refuge from her hysteria by entering the imaginary realm of the Fourth World"", where she invites Pauline to accompany her." tt0107076,oLnrsZa4EqQ,Chance bites the tail off a rattlesnake that's about to attack Natasha and leaves it for the bad guys to find. tt0080761,yO3eVly1GSI,"Annie hitches a ride to Camp Crystal Lake, with disastrous results." tt0110005,slGnGr6kHIA,"After seeing the film The Third Man"", the girls have visions of being chased by ""Orson Welles" tt0216787,330mxTrSMLI,"Castella hangs out with Clara and her bohemian friends, who tease him -- without him knowing it -- about his cultural ignorance." tt0357413,rDXBM22wbrg,Veronica takes over as news anchor as Ron's friends try to distract her. tt0080761,atzQpAlaojg,Mrs. Voorhees channels her son Jason as Alice runs away. tt0092007,l6zm1uCb30w,"Kirk tells Spock he should avoid using colorful metaphors; he also tells him not to lie, but to exaggerate." tt0099674,DBZUhOSY6g0,Kay asks Michael to let their son go to live his own life. tt0092007,sf8rDpu1vCk,"Chekov and Uhura get blank stares when they ask for directions to the ""nuclear vessels"" near San Francisco." tt0120694,efNMnSL6Wlg,Laurie confesses her true identity and family history to Will. tt0120694,XYjynyKDAdY,"Marion Whittington, Dr. Loomis's colleague from the first two films in the series, meets her end when Michael returns to Haddonfield searching from files leading to his sister." tt0077416,jyqr-hGGpQg,Michael and the boys try to talk to a soldier at the bar who's only in the mood to drink. tt0110005,PuVXyMNeXOk,"Having been ordered to see a doctor for her excessive closeness"" towards Juliet, Pauline imagines a creative way to silence the doctor's smug lecturing." tt0120694,bBbLZ6m_9MA,"John and Molly briefly evade Michael Myers, only to lead Michael right to Laurie." tt0080761,36FJgdiYYs4,"Just when she thinks she's safe, Alice has to fight off Mrs. Voorhees on the dock." tt0169547,hJVXg1AHQTY,"Armed with dirt on his superiors, Lester demands a hefty severance package." tt0110005,F0-Ke_gCCNg,"Juliet makes quite the impression during her first day in class, especially on young Pauline." tt0079945,gxAaVqdz_Vk,"The crew of The Enterprise discover that the mysterious VGER is actually Voyager 6, launched by NASA." tt0080761,mS-uVaGMOtw,Alice hides in the closet until Mrs. Voorhees tracks her down. tt0230600,Oio9JPB1GzI,Anne finds a surprising tombstone just as Grace makes her own startling discovery. tt0384642,v2pWzqZqTyk,Phil apologizes to Mike Ditka for his behavior. tt0080761,kk2HQ0hCGTE,"Mrs. Voorhees tells Alice what happened on the day when Jason, her only child, drowned in the lake." tt0080761,09idDzvkxZ0,Alice runs into Mrs. Voorhees and tries to convince her they're both in danger. tt0080761,Mvs2nUuXWLo,"Jack enjoys a cigarette in bed, but he soon learns that smoking isn't the only thing that can kill you." tt1253596,5DJehPkkRSQ,A variety of midgets and mascots audition for spots on the teams competing to win the inheritance. tt0384642,G3xSISRjDR4,Phil recruits legendary coach Mike Ditka to help his soccer team. tt0092007,HBxcalnSzIk,"When Spock can't rely on science and hard facts, Bones tells him to take his best guess." tt0106918,f9_akBxA4mU,Mitch gains the upper hand when he records Agent Terrance threatening him and abusing his power. tt0384642,TVBx0r_xPCo,Sam gets past Bucky to score the winning goal. tt0092007,PoS1eAVNXWU,Kirk and Dr. Taylor are surprised to find Spock swimming in the whale tank. tt0765429,_s4J6vN1t9Q,"Richie and his men raid the heroin lab, making some key arrests." tt0080761,E16S5BAkzQ8,"Marcie looks for her boyfriend, and ends up on the receiving end of an axe." tt0765429,cXCMz340CRg,Frank teaches his family about business then takes a break to collect his money after shooting Tango on the street. tt0120694,94AnEUa_z8U,"When Michael Myers shows up on campus, Laurie and Will do their best to protect themselves and the kids." tt0230600,nIGy0Jw96PY,"Distraught over her husband, Grace discovers that the childrens' protective curtains have been removed." tt0230600,_LvUmxUqPTo,Grace panics when she finds an old woman where her daughter was. tt0090305,t4U-Q2nd6u4,"Gary and Wyatt have a rich fantasy life, but a humiliating reality." tt0077416,aCW9NsrV6VM,"When Michael and Nick are forced to play Russian Roulette with three bullets, Michael changes the game." tt1912398,Nwl4xV6wuRI,"After Nick's funeral, old friends get together and sing ""God Bless America"" in his remembrance." tt0230600,qrCKDRFj-A8,Mrs. Mills explains to Grace that a photo album contains pictures of the dead. tt0077416,VlmanKoPLyo,Tensions rise when Michael won't lend Stanley his extra pair of boots. tt0099674,ZtuLM666bLo,Kay professes her undying love for Michael. tt0112346,M-cO3MLYOy8,Suspicion overcomes the President's advisors when President Shepard asks for an outside line in the oval office in order to send some flowers to Sydney. tt1253596,-meMCDrOmpo,Gator volunteers to wrestle a real alligator and loses an arm in the process. tt0112346,hcWo8KXmhLs,The President and Sydney have their first date at a state dinner for the French President. tt0384642,fpxPstb2DAU,Phil gets carried away at the soccer game and pushes a little kid. tt0384642,aAF6B3USip0,"At the game, Phil talks smack to everyone." tt0077416,OuGSXflBoWU,Nick and Michael play one final round of Russian Roulette. tt0357413,IKiSPUc2Jck,Champ and Brian try their best to seduce Veronica Corningstone. tt0099810,c5WfxwnLlLU,Jack Ryan gets a taste of the turbulence that the Air Force crew goes through regularly. tt0384642,qCpDKjDMo6Y,Buck and Phil hock balls and vitamins in their new commercial. tt0120815,Le9uGkbtxHk,"As Caparzo lies bleeding to death, Jackson takes out the sniper in the bell tower." tt0107076,C3hCT5jijpw,"Chance, Natasha and Detective Mitchell arrive at a crime scene, only to find that van Cleef and his men are still there." tt0107076,Lk5QIK3_Cjo,"Fouchon and his men follow Chance's trail to the cabin of Uncle Douvee, who has a few surprises up his sleeve." tt0082198,ltO8_FJbRUw,"Seduced by a beautiful woman, Conan finds out she is a witch mid-coitus." tt0107076,IAqy_BtCqM4,Chance uses a distraction from some pigeons to take out a henchman. tt0047396,v7FL42Fon3g,Jeff writes a note to Thorwald questioning the disappearance of his wife. Lisa riskily delivers it by slipping it under the door. tt0107076,pu2ArBfwZcA,"Forced to put down his shotgun, Chance uses a grenade to finish off Fouchon." tt0119675,QQvcg1NNqWQ,Dr. Tyler is attacked and flown away by the menacing humanoid bug. tt0120694,c5Re3lGYUA0,"Michael Myers sneaks into the private high school, past Ronny the guard." tt0230600,zxeNP1dHgXQ,Grace begs for Charles to stay when he threatens to return to the war. tt0047396,t8eNpwLPwog,Jeff prepares a lap full of light bulbs for his flash when he hears Thorwald sneaking up on his apartment. tt0047396,EFollUtH108,Jeff keeps watch as Stella digs up the garden for clues and Lisa sneaks into Thorwald's apartment. tt0090305,B8dldLG_ZhI,Gary talks Wyatt into using his computer to simulate a woman. tt0047396,oowcsynjIwc,Thorwald is caught by police when he attacks Jeff in his home and pushes him out the window. tt0090305,g9GBuciv20A,"Inspired by the bluesy atmosphere, Gary tells a group of barflies his story." tt0082198,Daz5Pc5rXPA,"After his village is massacred, young Conan loses his mother at the sword of Thulsa Doom." tt0047396,w5pn48wzBuw,Jeff takes a closer look at his neighbor by using a telephoto lens. tt0090305,IfggccwQrcY,"Lisa teaches Chet a lesson by turning him into a squat, putrid creature." tt0082198,fERCwTTOU3M,"Conan knocks out a camel while carousing with Subotai, a companion and thief." tt0082198,MNV86VFd4Zw,Conan engages in a bloody battle with Thulsa Doom's warriors. tt0082198,_42qmKBSC3g,Conan's fame as a gladiator escalates after his first battle in the ring. tt0082198,bj2JORdzs1g,"Conan faces Thulsa Doom at the temple, and finally gets his revenge." tt0088850,FosFEzsLKiI,"Monty receives a challenge from beyond the grave: Spend 30 million dollars in 30 days, and get 300 million." tt0088850,A-KN6ZbpIDE,Monty and Spike pick up two ladies at a bar by expounding on the benefits of nude massage. tt0090305,9y-f9F8Hl0I,Chet returns to find the house in disarray. tt0090305,nip7ztfMngk,"Gary and Wyatt shower with their creation, who urges them to ""loosen up.""" tt0449467,lFHKj8M1maI,Chieko gets high on pills with her friends. tt0216787,VqLghmct2i4,"Manie recognizes one of her customers from a one-night stand, but he can't seem to remember her." tt0090305,fgPFXXhzBCE,"The morning after the party, Chet confronts Lisa and the boys about their behavior." tt0449467,lHqpwH6rqOY,"When confronted at the U.S./Mexican border, an intoxicated Santiago provokes the officers and speeds off unauthorized." tt0088850,Vw_QOIebFpw,"Monty models a new suit for Spike, and his tailors assure him he's not a lowlife." tt0169547,22VmzX35pvM,"Colonel Fitts misreads Lester, prompting an uncomfortable moment." tt0088850,jLPtdXAVuwo,"Morty King, the self-billed king of the mimics,"" repeats Monty's every word." tt0230600,DVPGcQ1Ljgc,Grace loses her patience with Anne when she convinces Nicholas that there is another boy in their bedroom. tt0169547,wPJE21U518M,Lester fantasizes about Angela and gets caught masturbating in bed. tt0169547,5P7bIH5iC7M,Lester wonders why Carolyn is more interested in material possessions and has lost her desire for him. tt0765429,FFJo3KhcZw4,Frank stops by Nicky's club and tells him to stop ruining his heroin brand by selling a diluted version. tt0230600,zd0FCDiFapo,"On her way into town, Grace gets lost in the fog and reunites with her husband." tt0449467,NpOTp73r0Cw,Richard pleads for help when the American embassy delays his wife's rescue. The rest of the tourists abandon them. tt0407304,kytDzjuBGJI,"When an alien probe explores the basement, Ray uses a mirror to confuse it." tt0169547,qw0kuEG7NR8,Lester buys a new car to feel better about his life and asks Carolyn why she is so joyless. tt0765429,m3QyTiNVwWA,Richie and a slew of officers greet Frank to arrest him while Frank's men are being arrested all over town. tt0084726,e7X01_j_oDA,"Khan is angered that Kirk is still alive, but knows how to really hurt Kirk." tt0765429,H38XiM2EOnQ,Frank tries to bribe Richie into letting him go free. tt0449467,Dtou1hnP_Zo,"The police opens fire on Abdullah and his sons. When Ahmed is wounded, his brother Yussef shoots an officer." tt0169547,c1gSDo9bO2g,Lester imagines Angela in a bed of roses. tt0169547,tB0th8vNLxo,Ricky shows Jane his most beautiful video: a plastic bag dancing in the wind. tt0088850,JZbJcEKVBqk,Catcher Spike distracts a Yankee batter by trash-talking his wife. tt0449467,RJsnx3Fqk6w,A veterinarian sews up Susan's bullet wound with a needle and thread. tt0216787,3LYT1O8DuR0,Franck expresses concern about Manie's drug dealing. tt0088850,p29GuFPbzsg,Angela is just in time to help Brewster secure his inheritance of $300 million dollars before the midnight deadline. tt0449467,2V5LfF6uxT0,Amelia is interrogated at the border and is informed that she will be deported. tt0106332,pK_ffLZIOb4,Juxian jumps into Duan Xiaolou's arms from the second story of the House of Blossoms to escape a pack of particularly brutish clients. tt0449467,0m3w2NeEPY4,Yussef surrenders to the police and pleads for his brother Ahmed's and father's Abdullah life. tt0765429,j4ujHOSbQB0,Mama Lucas confronts her son Frank and warns him that he will lose his family if he doesn't straighten up. tt0230600,YgcSs9Qt2vU,Anne reveals to Mrs. Mills that Grace has a history of mental illness. tt0099674,Ju4vhscaYII,Vincent kills both of the assassins sent by Joey Zasa and saves their hostage Grace. tt0765429,v8OMHtUg9sU,"When Huey gets out of hand at the party, Jimmy shoots him, then Frank smashes Jimmy's head." tt0765429,-qmkhAXmBNc,"The U.S. Attorney laughs in Richie's face when he says that Frank Lucas, a black man, has moved above the Italian mafia." tt0765429,TeGaTTIBv1Y,Richie strikes a deal with Frank in an attempt to get the names of all of the crooked cops in New York. tt0216787,dYQpJJySnwU,Clara visits Castella to protect him from buying more art she feels he is too ignorant to understand; Castella responds by assuring her that he is not so ignorant as to not be able to appreciate the artworks he buys. tt0216787,AaHqtd4dUWs,Clara opens up to Manie about the mid-life funk she's in. tt0119675,k4-CQXg0Z88,"Little Chuy witnesses his grandfather, Manny, being torn apart by a massive humanoid insect right before his very eyes." tt0216787,LDsw5Fx76jI,Clara is annoyed to see that boorish Castella has come to the gallery opening. tt0216787,GKT1gsoVouo,Castella opens up to Manie about his failed attempt to woo Clara. tt0216787,y-79cpg2VC8,Bruno tells Franck about his inability to remember the woman who said they'd slept together. tt0106332,lYa7NsegwsY,"In Cheng Dieyi and Duan Xiaolou's first performance together in decades, Dieyi commits suicide with Xiaolou's sword." tt0106332,vnHkr84as-4,Master Yuan is executed by the communist party as a counter-revolutionary. tt0099674,-_XIgfmDa1s,Michael's fiery nephew Vincent clashes with Joey Zasa and takes a bite out of his ear. tt0099674,N5EYRBPqrgs,Michael asks Kay for her forgiveness. tt0133751,ZWly042cYCo,"Zeke is pitted against both Stokes and Marybeth, as he tries to determine who is infected and who is still human." tt0449467,iN4yYrCgb0o,"Amelia pleads with border patrol to find the kids she left in the desert, but they arrest her." tt0099674,U6M-YT5kkio,"At a meeting of the bosses, Joey Zasa creates an enemy in Michael." tt0106332,EZFLsjeeVmo,"Speaking to a modern opera troupe, Cheng Dieyi urges the young artists to practice traditional Beijing Opera." tt0119675,JVjlqTOPdls,"Mortally wounded, Leonard creates a diversion so that the others can escape." tt0106918,f_lRMCPHbuY,Agent Voyles informs Mitch that the law firm he works for represents the mafia and no lawyer has ever left the firm alive. tt0106918,7tNEvCdVtk0,Head of Security shows Mitch just how dangerous the firm can become to a young lawyer's family. tt0099810,4unk6siO-tI,Captain Ramius expertly navigates the sea canyons and avoids American torpedoes. tt0357413,_c_ufaxeSTs,"At Tino's club, Ron impresses Veronica with his impressive jazz flute." tt1253596,5dVpXj--7kY,The midgets attack Scottie Pippen when they learn that the mascots have drafted him to play on their basketball team. tt0092007,Qt1cF93u-6A,Kirk sets forth the plan for saving Earth and Spock devises a logical solution for hiding his alien heritage. tt0079945,Rn2-wALgmMk,Bones gets beamed aboard against his will but is relieved when he learns it was Kirk's doing. tt0133751,vE_xjjCJWng,Zeke battles against Miss Burke as he tries to escape her parasitic clutches. tt0079945,2ikHoBKVlCA,"The crew of The Enterprise realize that, thanks to the other machines, VGER has gained enough knowledge to become a living thing." tt0099810,PUvS_htXD34,Jack Ryan puts forth his theory that Captain Ramius might be defecting. tt0099810,BGnZognK3Oc,Jack Ryan is given the opportunity to bring the defecting Russian Captain in and get aboard the Red October. tt0079945,rNoHdt36C7o,Kirk pulls Decker aside to relieve him of his position as captain of the Enterprise. tt0079945,B2qVxDAonD8,A seemingly unfriendly beam of light shoots toward The Enterprise as Spock rushes to transmit a peaceful communication. tt0079945,zR7Zj6ZFyUY,Spock reports to Kirk while being mocked by Bones. tt0106918,JzH1Z17c4yc,Mitch is repeatedly informed by the firm's lawyers that no associate has ever failed the bar exam. tt0092007,LkqiDu1BQXY,Scotty introduces an astonished engineer to future technology in order to build the whale tanks. tt0099810,DWjJlErBPX4,Jack Ryan and Captain Ramius agree that it is wise to study the ways of one's adversary. tt0099810,5kaBIMuW74Q,Jack Ryan takes care of the saboteur and Captain Mancuso plays chicken with the Russian sub. tt0099810,P8JW75Lv25k,Borodin discusses with the Captain what life might be like in America. tt0099810,PWU9g1Fce3U,"As torpedoes bear down on the sub, Captain Ramius chats with Jack Ryan about a book he wrote." tt0099810,HCqR0_a6_so,Captain Ramius lets Jack Ryan know that revolution is a good thing now and then. tt0084726,OofMJ6cwzLM,Khan inserts his pets into Chekov and Terrell in order to get them to talk. tt0106918,04s96zDt1RE,Mitch flees the firm on foot when he finds out that they know he's been speaking to the FBI. tt0084726,iPQfwmfRq2s,Kirk sneaks up behind Khan's ship and blows it up. tt0084726,WlhyiskKER8,"Kirk ponders the life he could have had with his former love, Carol Marcus." tt0084726,xrUEjpHbUMM,"In his final moments, Khan attempts to destroy Kirk." tt0084726,9_8nY_LQL3w,Captain Kirk delivers an emotional eulogy for his friend Spock. tt0084726,KqpcmQhnl48,Captain Spock gives the ultimate sacrifice for his friends. tt0079945,aeneVqyoBTo,A mysterious light probe visits the bridge and takes Lt. Ilia. tt0079945,5Ei_2wS0U-w,Spock has a unique insight into the alien presence known as VGER. tt0084726,CR08UnlmGKc,"Kirk finds forgiveness and reconciliation with his son, David Marcus" tt0106918,1tYwDHxg60g,Two thugs question Eddie Lomax as to why he is investigating dead lawyers. He doesn't cooperate so they shoot him. tt0079945,BPNUN_aCFAc,"Kirk marvels at the birth of a new life form and commands the Enterprise to head ""thattaway.""" tt0106918,_QE6prpcauw,"Mitch warns his wife, Abby that their house is being bugged by the firm." tt0099674,0-0MyjmphsA,The Corleone family grieves when Mary is ambushed by a gunman dressed as a priest. tt0357413,Wu7xiJ_HD6c,All the news teams engage in violent warfare for supremacy over San Diego. tt0106918,D0vCzkK_AJ0,Hit men pursue Mitch. tt0106918,zCB7RR3RaYg,"Mitch gets trapped in a building, but finds a way to escape being killed by Devasher and his hit man." tt0449467,MhWCHfeHWJE,Susan is shot on a bus in Morocco. tt0407304,rYGWG2_PB_Q,The tripods begin to vaporize humans as Ray races to get home to his kids. tt0357413,qN-_cZNDy0w,Co-anchors Ron and Veronica trade barbs as the credits roll on the news broadcast. tt0169547,lscdNc0qTnI,A now-deceased Lester marvels at the beauty of his average American life. tt0407304,_kopi8gT9KE,"Ray searches for Rachel on a farm, and when she gets abducted by a tripod, he has no choice but to follow her." tt0407304,X7rfWPbEufo,"Ray tries to prevent Robbie from joining the battle, while Rachel tries to fend off a well-meaning mother." tt0407304,tMw_xOuU9DA,"Ray tries to escape on a ferry with Robbie and Rachel, but a tripod emerges and overturns the boat." tt0407304,pCHHv7ojfiw,"Ray sees birds landing on a tripod and realizes the shield is down, and he tells a soldier so that the counterattack can begin." tt0407304,S2fxN2JZ81A,"Ray locates Rachel inside a tripod, and when Ray gets pulled further inside, the humans band together to pull him out." tt0118607,WzCgOrQn0GM,"It's a victory for Baldwin, Theodore, and Tappan as Judge Coglin rules in favor of freeing the Africans and finds the Spaniards guilty of slave trading." tt0118607,iMliaXlKxow,"Cinque is thrown aboard a slave ship, experiencing inhumane treatment such as whipping and overcrowding." tt0118607,ena0xfW0_Lo,Cinque leads a bloody slave revolt to take over the ship La Amistad. tt0118607,Pb3txlrBZaE,John Quincy Adams gives his opening statement to the Supreme Court addressing that the natural state of mankind is freedom. tt0118607,3rpHa7RLvc8,John Quincy Adams invokes the Declaration of Independence and the forefathers of the United States in his plea that all men are born free. tt0118607,y8Jkls3xgvg,Cinque explains to John Quincy Adams that he will call up the help of his ancestors in their case before the Supreme Court. tt0119675,EYu1SK9XyP8,"Searching for bug specimens to sell, young Davis and Ricky are savagely attacked by a mysterious humanoid insect in the subway tunnels of New York." tt0118607,Ee8NvgURCZs,"Disrupting the courtroom proceedings, Cinque stands up to chant for freedom, over and over again he proclaims, ""Give us free.""" tt0120694,hKqQSFaX4NQ,Norma offers some maternal advice to Laurie. Trivia: Janet Leigh is Jamie Lee Curtis' real mother. Listen for cues from Bernard Hermann's score for Psycho as the two part ways. tt0118607,B_YYf8Z4b3Q,"John Quincy Adams finishes up his statement to the Supreme Court by bringing up the probability of Civil War, and to let it come, for it will be the last battle of the American Revolution." tt0106332,XHHg1C8LGnk,"When the troupe is disbanded after Master Guan's sudden death, Duan Xiaolou and Cheng Dieyi find a student named Xiao Si who is unwilling to quit." tt0357413,cDfQo1ANeLM,"When he tosses a burrito out his car window, Ron causes an altercation with an angry biker." tt0357413,ZP0mhGmUbr0,Ron Burgundy and the Channel 4 News Team trade insults with Wes Mantooth and the Evening News Team. tt0357413,1Zro4CfP9wY,The San Diego news teams converge and trade insults. tt0120815,LvAIBDGIYE0,"To stop the fighting between his men, Capt. Miller finally tells them all where he's from and what he did before the war." tt0120815,OqSg7WO4tT4,"Capt. Miller pauses to survey the pure chaos on the beach, before regrouping and ordering his men to move on." tt0120815,u3_3EUKbY00,Capt. Miller has difficulty convincing Pvt. Ryan that he needs to abandon his post and head home. tt0120815,wgHRj2-vvs8,"Jackson once again displays his sniper skills, until a tank takes aim at his bell tower." tt0120815,QnX_mQ9apu8,"Severely wounded, Capt. Miller takes his final stand against an approaching tank." tt0120815,uW9Q1cm_Tnw,Upham cowers on the staircase as Mellish engages in a brutal fight to the death. tt0230600,Y_WiVEBST6I,Grace and her children encounter the intruders and make a horrible discovery. tt0172495,s66zFW3nogU,Maximus defeats another of Commodus' gladiators and tigers meant to ambush him. But Maximus spares the loser's life. tt0172495,X1UmHfWCw-4,"After winning his first battle in the Coliseum, Commodus meets the masked gladiator and is shocked to see Maximus." tt0172495,Bb5tMhOeg5I,"In the final battle, Maximus gets his revenge by killing Commodus in the gladiator arena." tt0172495,FI1ylg4GKv8,"Now known as The Spaniard, Maximus thrills the crowd by butchering several gladiators. He mocks the crowd after his flawless victory." tt0172495,r2jbK6dGLGc,"After hearing he will not be the next emperor of Rome, Commodus murders his own father, Marcus Aurelius." tt0172495,k71x-TmobGo,"Sentenced to death by Commodus, Maximus overtakes his would-be executors and kills them in the forest." tt0172495,spvSw-wR6qg,Maximus leads his troops into battle and they massacre the barbarians with no mercy. tt0964517,ZrF5rZ3FTbg,"Despite being patronized by Mickey's mom, Charlene holds firm that she knows what's best for him." tt0964517,xfoGEGTl-sg,"Mickey visits Dickie in prison to break the news that he has new management, but Dickie just can't let go." tt0964517,wWswgKOqkZM,Mickey confides in Charlene. tt0964517,ivmjSqQ_7aw,Charlene defends Mickey when his mother and sisters confront him. tt0964517,3uUlGkrzPWo,Mickey asserts himself by telling the people closest to him what he wants. tt0110005,2hs_qcU6410,"With Juliet bedridden, Pauline conjures a way to pass the time by starting a letter correspondence, with each friend playing the part of the king and queen of their fairytale world." tt0964517,HEKPhSJ0PjA,Charlene and Dickie try to make things right between them for Mickey. tt1253596,DoJaIZ2Sajk,"Big Red appears via videotape to explain his will, requiring a contest between midgets and mascots for his inheritance." tt1253596,51y64KtGGRI,"Russell leads the midgets to their first victory in the milk chug contest, where everyone must chug a gallon of milk in fifteen minutes." tt1253596,sSx4IDKK6sg,"Sheriff wins at rodeo poker, where the last midget or mascot sitting at the table as a bull charges is declared the winner." tt1253596,YOrZHY_-ap8,The midgets are given ladders and the mascots receive t-shirt guns in a contest to see who can sell the most items. tt0119675,WiMw3ttzVMs,"Dr. Tyler explains the structure of insect society to young Ricky, all the while unaware that she is being stalked by a sinister force from very close by" tt1253596,1LvSSeZfWmI,The midgets and mascots view their completed projects in the amateur porn trailer contest. tt0119675,SaWCkQzKopo,Josh sneaks away from a killer bug. tt0119675,Jjv5GQtJTEw,"Having finally discovered the breeding nest for the bugs, Dr. Mann tries to destroy them all by lighting an exposed gas line." tt0119675,134ua7rOS4g,Leonard goes on a rant after being asked a stupid question by Dr. Mann. tt0119675,IHbIf3K5pdc,"Realizing that the bugs have evolved to mimic people, Dr. Tyler issues a grave warning that if the insects are not stopped immediately, they will spread and infest human society with incredible speed." tt0401383,mFxrm9Q6E4M,Jean-Do decides to stop pitying himself and put his imagination to work. tt0133751,eP7cLId4ocM,"With suspicions mounting, Zeke issues a makeshift test using his homemade drugs in order to see who is human and who is an alien in disguise." tt0133751,i77quMJ5ihE,Casey takes out the parasite Queen by shoving a ton of homemade drugs into the creature. tt0133751,H5woQdVbaC0,Casey uses his knowledge of movies and sci-fi to try and convince his friend Stokely that something terrible is afoot at their school. tt0401383,l_OJuYjvKrM,The doctor sews Jean-Do tt0133751,LekZbZ0ksyA,Marybeth reveals herself to be the parasite Queen. tt0401383,PUH2nHjBYsA,Jean-Do begins writing his book and goes on a poetic journey around the hospital grounds. tt0133751,l6StIaMaRsg,"Stan is startled by a withered Mrs. Brummel who gives him a cryptic warning. Later, Casey watches Coach Willis exhibit some strange behavior on the football field." tt0401383,NOZMlcY9MC8,Jean-Do receives a phone call from his Father. tt0133751,mtuuOV4FtKY,"Thinking that their principal is the parasite Queen, the surviving students force her to take a different kind of test." tt0327679,ayjftbSDeVA,"Sitting by a fireplace, Ella and Char share their first kiss." tt0133751,FEAmUOrMd3o,"Hidden away in a closet, Casey and Delilah witness Coach Willis attack and infect Nurse Harper." tt0133751,BNWvtfCdBcA,Professor Furlong gets the business end of this parasite when he tries to touch the creature. tt0327679,rD3kI-nioGA,"While being chased for shoplifting, Ella is ordered to freeze by a guard." tt0255477,8BOU3JhcXIU,"When Cricket goes to save Pinocchio from Playland, he gets caught up in the madness." tt0266489,QHYccOE4h4c,Nancy accidentally shoots Alex in the penis when handling a gun for the first time. tt0401383,_6up-uz7Q9k,Jean-Do has a visit from two beautiful therapists. tt0401383,Y2DV9PUx15s,Jean-Do is stuck in the hospital room with a buzzing TV all night. He ponders his missed opportunities. tt0401383,vjkkbQy9fLA,Jean-Do tries out his new wheelchair and has a surprise visit from Celine. tt0401383,df0j-m8xV58,Jean-Do shaves his Father. tt0401383,zNkZr44VLFY,"Jean-Do imagines anything he wants: surfing, bull-fighting, himself as Marlon Brando." tt0401383,XwJGqNQapO8,Jean-Do reaches out to Henriette tt0401383,IeqXtCC8Osk,Jean-Do daydreams about writing a play and kissing the Empress of France. tt0327679,8ReMLVUwKmA,Ella and Char celebrate their wedding with a big song and dance number. tt0327679,SN8hW7AeoQI,Ella is ordered to sing and dance to the song 'Somebody to Love tt0327679,x7dGXb7jrHw,"Prince Char proposes to Ella, and she happily accepts." tt0327679,9AQGhFGi1dM,"Ella and Hattie have a heated classroom debate, until Ella is ordered to" tt0327679,mNtK6UvRjO8,Mandy gives Ella a magical book to help track down Lucinda. tt0327679,l24yOwR9saU,"Ella resists the obedience order to kill the prince, and breaks the spell placed upon her." tt0327679,gPadm1Ql1Is,"Ella verbally spars with Prince Char, but not without a little attraction." tt0327679,cw1dB9PxWzM,Lucinda casts the spell of the gift of obedience upon Ella when she's a baby. tt0327679,q0yFqlPrLyE,Ella and Slannen are swept up in the musical pageantry of the elf village. tt0327679,IBPc_SnNPzo,Ella beats-up some bullies torturing the elf Slannen. tt0266489,H2UF-eI_dj8,"Having snuck into Mrs. Connelly's apartment, Alex is stuck in the bathroom as she undresses for her bath." tt0266489,J_VTn3SAV20,A clogged pipe leads to Nancy projectile vomiting all over Alex's face. tt0266489,vR_L-yH_3jY,Mrs. Connelly insists that a simple raisin is an actual mouse dropping. tt0255477,BHWGn9p_p4s,"Pinocchio becomes friends with a group of puppets, and their leader gives him money." tt0255477,b0xYU8jHaH4,Pinocchio becomes a real boy and runs around Geppetto tt0255477,os1gnR5k3S8,Pinocchio refuses to take his medicine from the Blue Fairy until he is threatened with death. tt0255477,28JhyDR8-5M,Pinocchio tells a lie to the Blue Fairy and his nose begins to grow. tt0255477,N_20oqY8E2c,Pinocchio and Lucignolo realize they tt0255477,J8pmj6RkiQk,The Blue Fairy and Cricket say goodbye to Pinocchio. tt0068767,FRC8Nn6PREI,Chen Zhen's speed and agility are too much for Petrov. tt0068767,HvFU1MFkLm4,"Chen Zhen takes out Yoshida's men, before killing Yoshida with his own sword." tt0255477,UCd_bEZa6k4,"Pinocchio and his father, Geppetto are reunited in the belly of the terrible shark." tt0255477,0hau_p3N-MI,PInocchio realizes he has become a real boy. tt0068767,8t7NUEm0mMM,"Chen Zhen avenges his master's death when he fights and kills Suzuki, the leader of the Japanese dojo." tt0068767,IMjO-38v2cs,"After being denied entry into a public park on account of being Chinese, Chen Zhen beats the hell out of a Japanese martial arts student who mocks his heritage." tt0068767,FtZb1Kbh2qY,"Chen Zhen and his classmates at the Ching Wu school are mocked by Hu, an interpretor and lackey for the occupying Japanese forces. Hu takes special pleasure in denigrating the Chinese people as being ""weak""." tt0068767,PH8Gh-5lQNE,"To protect the Ching Wu students, the school, and its legacy, Chen Zhen faces his fate and charges at the Japanese soldiers, defiant to the very end." tt0266489,rnnt0KYtwFc,"Alex and Nancy meet Mrs. Connelly and her pet parrot, Little Dick." tt0266489,4uuvZl95Cyc,"Alex is forced to give Mrs. Connelly the heimlich, and CPR, when she chokes on a chocolate." tt0266489,-cBGthOZ-Ls,"Alex and Nancy get in a frisky mood, but it is quickly interrupted by the sound of Mrs. Connelly's television." tt0266489,RVbEs5DBPlY,"Alex's success with the Clapper is short lived, as Mrs. Connelly – living upstairs – learns how to use it to control the television." tt0266489,sdb8G26294A,"Fed up with Mrs. Connelly, Nancy daydreams of killing the old bag." tt0266489,rrejfviNpqE,The leaking ceiling isn't enough to kill Mrs. Connelly during her workout to Riverdance. tt0266489,EBkacU72QM4,Attempts at sabotaging Mrs. Connelly's apartment end up going haywire for Alex and Nancy. tt0095765,qq38b_oRYr0,Alfredo and Toto project a movie onto a wall in the village square. tt0095765,rrDG0rQCc28,Toto watches a montage of censored kisses that Alfredo made for him. tt0468565,lRd5iD73g2s,Tsotsi and his gang panic after the man whose house they are robbing triggers the alarm. tt0468565,GPCN0TioP4A,Miriam urges Tsotsi to return the baby he's kidnapped to its parents. tt0468565,JELOhEjLgmU,Tsotsi takes the child he's caring for to the slum where he grew up. tt0095765,r99wnIibUQY,Alfredo tells Toto he should leave home and make something of himself. tt0095765,xr3TcE009HY,The village priest rings a bell every time he sees something he wants cut out of the movie. tt0095765,mE53H-ZbD7c,Alfredo rescues Toto from a beating when his Mother catches him spending the milk money at the movies. tt0095765,l1GXJBIkb74,Toto rescues Alfredo when the projection booth catches fire. tt0095765,mDXU3KxBpCM,"Toto waits outside the window for Elena, and she finally comes to him in the projection room." tt0095765,cAEth6FATZk,"Various colorful audience members enjoy a double feature at the cinema, which seems magical to Toto." tt0095765,PlO7gaalX68,Toto has a boring summer until Elena comes back to town during a storm. tt0095765,dJOMfmVs9Ag,The audience weeps together as they enjoy the same melodrama they've seen repeatedly. One man even has the dialogue memorized. tt0468565,x5f6nNMdbgU,"After stealing a car, Tsotsi is surprised to find that the owner's baby is still in the back seat." tt0468565,t4k-USM30aU,Tsotsi and his gang stage a robbery on a subway train. tt0468565,As5-06N6Rko,"While caring for a young infant, Tsotsi has a flashback to a traumatic experience from his childhood." tt0468565,zZB1N4IMjlA,Boston confronts Tsotsi on his mysterious past which leads to a violent altercation. tt0468565,dMhT03nH_HA,Tsotsi returns the kidnapped child to its parents amidst the presence of several police officers. tt0468565,nfJqMoCXVho,"After pulling a deadly job, Aap ends his childhood friendship with Tsotsi." tt0468565,-FyVSeNTqJM,Tsotsi has an intimate conversation with a crippled homeless man. tt0468565,3F1uAggQmYI,Tsotsi reminisces about his mother while he watches Miriam care for the child he's kidnapped. tt0468565,GgYOGHU_IOY,"Showing remorse, Tsotsi offers to let the injured Boston stay at his place." tt0216787,a5WKH6TNlDw,"Castella surprises Clara with a poem he wrote about her, but the gesture is lost on her as she couldn't be less interested in him." tt0172495,qUcMohewjvI,Commodus warns Lucilla that he is aware of her spying and threatens to kill her son Lucius. tt0181875,HpISLkb5L5E,"William meets the world famous rock critic, Lester Bangs." tt0181875,fgMlyvq2oNo,"Anita comes home with a Simon & Garfunkel record, only to be caught by her mom, Elaine." tt0257044,v7b0_Z9dzoM,Harlen surprises Michael at the beach house by shooting him in the back. tt1182609,mCqrIptSd9k,"Riggins survives the explosive attack from rocket launchers, mortars, and bazookas to the building in which he's taken cover." tt1182609,uPzTQvSPsqY,Riggins smashes through a roadblock in an armored vehicle with Ana by his side. tt1182609,x2DospZTmUg,Riggins' sexual magnetism is just too much for Ana to take. She jumps his bones after touching his gunshot wound. tt1182609,GEp_uGRMbFM,Riggins returns to rescue Ana from the hands of Connelly and his henchmen. tt1182609,eCR4DIi8SzU,"Riding on a motorcycle, Riggins is pursued by Connelly and the army, after they botch the assassination attempt." tt1182609,D15UY1FXJpI,Riggins gets ambushed in a restaurant but manages to shoot his way out of trouble. tt1182609,kBifgLJF5og,Riggins procures enough weapons to fight an army from a black-market Gun Dealer. tt1182609,QAxmwbQ_7sI,"Riggins blows up Connelly with a grenade, and survives a gunshot wound to the arm." tt1182609,o504Z9dWRqs,"After witnessing a shootout between Vlado and General Drago, Riggins accepts the payoff for delivering Ana to Connelly." tt1182609,mvc_bbaLhSg,"In a Russian prison cafeteria, some thugs attempt to intimidate Riggins, but instead, he warms up his cold food with their hot deaths." tt1179904,7LhZupa1Bng,Micah tells Katie about a woman from the sixties that was haunted by a similar spirit and ended up dead before an exorcist could save her. tt1179904,o5l0Bw2jMO8,Katie becomes possessed by the demon and sets a trap for Micah. tt1179904,uvgBCv4v71s,"After Katie Featherston gets dragged out of bed by an unknown force, Micah Sloat examines the mysterious bite wound on her back." tt1179904,4jcflB38DNo,"Micah and Katie beg the psychic for help, but he feels a very angry presence and leaves as soon as he can." tt1179904,3bgPH3rOWVk,"During the day, Micah and Katie find their portrait broken and the spirit breathes on Katie." tt0302886,hV2om9YBADI,"At marriage counseling, Frank talks of wanting to know what type of underpants a waitress had on at the Olive Garden." tt1179904,Bogko_zvcaY,"Micah and Katie reach their breaking point. Later that night, the ghost moves their sheets and uncovers Katie's foot." tt1179904,4Ky2p76AKSs,The ghost gets serious when Micah and Katie see it turn on and off the lights and slam their bedroom door. tt1179904,S1s9cXYpxNo,"Micah puts talcum powder on the floor to track the ghost. To his and Katie's surprise, they find tracks leading into their room from the attic." tt0302886,XRz0pSQXTQ4,Darcie wakes up in bed the morning after the party lying next to a shy Mitch. tt0302886,va6nRaZ9eRg,Beanie and Frank visit Mitch's new house. Beanie covers his son's ears to protect against profanity. tt0302886,_yYDzLUH1NE,"During the charter review, Frank dominates the debate competition against James Carville." tt0302886,sFW-yxe13lo,Frank accidentally shoots himself in the jugular with a tranquilizer dart. tt0302886,jJMXxv-hYPo,The pledges are hazed by tying a 30 lb. cinder block to their penis and making a leap of faith. tt0302886,NnxcN2umAOk,Cheese tells Mitch and Bernard they have to vacate the premises in one week. tt0302886,20g3QIUnOgY,Frank the Tank decides to go streaking through town. tt0418279,_yy4qamWAmk,"Cornered by Megatron atop a high-rise, Sam learns that there's only one way down." tt0302886,NUJVU87Qb7A,"Mitch gives a drunken, highly inappropriate wedding toast at Frank's wedding reception." tt0418279,bmHLulbWm74,"Capt. Lennox, Sgt. Epps, and the rest of the Special Ops team are ambushed by the Decepticon Scorponok in the deserts of Qatar." tt0418279,kWmntegbxMc,"Lead by Optimus Prime, the Autobots reveal themselves and their mission to Sam and Mikaela." tt0418279,5t8Utwa_YYQ,Sam is about to make his move on Mikaela until she insults his car and gets them both thrown out. tt0418279,IMo_Jx35SZw,"Outgunned and on the run, Captain Lennox and Sergeant Epps use teamwork to take down the menacing Decepticon Blackout." tt0418279,m1ef1Y2x8NY,Optimus Prime and Megatron finally meet in battle -- but it's Megatron who strikes hardest in this encounter. tt0418279,Cs-L3psiK2Y,Sam and Mikaela escape the menacing clutches of Barricade with some big help from Bumblebee. tt0418279,5QYQS9SYa6A,It takes two to tango as Optimus Prime and Bonecrusher grapple on the LA freeway. tt0418279,f6L3Ef1JCC8,"Mikaela offers to take a look at Sam's car, while Sam takes a look at her." tt0418279,CcfN7q8rN58,"As Bumblebee battles Barricade, Sam and Mikaela deal with the annoying minibot, Frenzy." tt0377109,LqneoJRRqbg,"Dr. Temple questions Aidan about his mother, unaware that she's really speaking to Samara." tt0377109,rroMPRc4flw,Rachel crawls her way out of the well as Samara tries to keep her in there forever. tt0377109,EiVRkqi02a0,Rachel sacrifices herself to Samara and once again wakes up at the bottom of the well. tt0377109,a8xs3O-NwsY,"Rachel decides to kill Samara by drowning Aidan in the tub, but at the last moment Aidan seems to beg for his life." tt0377109,yl_CgAqNvKc,"Jake believes that he is safe from harm, until he discovers that Emily played the tape without looking." tt0377109,e7dbge0Zk5A,Rachel rushes into the bathroom to find Samara in the bathtub where she left Aidan. tt0377109,iBRhat_CcQM,"When Rachel nearly hits a deer on a back road, Aidan tells her not to stop the car and keep going." tt0120737,hpb2-ZOzc_o,Noah watches as Samara crawls out of the television and heads straight for him. tt0120737,398qkvR92GU,"Rachel watches a taped interview with Samara Morgan, until Richard Morgan uses the television to kill himself." tt0120737,u4T5X47MKm4,"Rachel tries to calm a horse on a ferry ride, but the animal escapes and panics." tt0377109,bxAiioYl1bw,"Rachel sneaks into the ambulance to examine the body of the dead teenager, and soon learns that he's not the only one in there." tt0120737,igEO_oyUs6U,Rachel examines the tape with a professional editing machine and makes some strange discoveries. tt0120737,b9abCIgGxT4,Rachel has a bad dream and wakes up to find bruises on her arm. tt0120737,OA6wpEFU-uw,"Rachel and Noah discover a well beneath the cabin, and a freak accident sends Rachel tumbling down into the water." tt0120737,VyiCDq6Y0c8,"Rachel watches the tape in the cabin where Katie stayed, and gets a mysterious phone call." tt0120737,PFsl1cGHzp4,"Becca tells Katie about a videotape that kills you seven days after you watch it, and Katie admits to seeing it." tt0236493,LUr7o6R4u8U,Winston confesses his love of Frank to Samantha as they have coffee in a diner. tt0236493,PEo3OnoPBI4,Jerry negotiates with the car thief over which part of his body to shoot. tt0236493,9zYrXFG6zSs,Winston and Samantha give Frank the postal worker a ride to Las Vegas. tt0236493,FUbC8WBChng,"Samantha and Jerry hug in the airport after he correctly answers the question, ""when is enough, enough?""" tt0236493,NUdeuIj-yKk,Jerry picks up Samantha and Winston in a rental. While arguing he dares Samantha to say one more word. tt0236493,GanDtOcF0M0,"Winston asks Samantha, ""When two people love each other, when do you get to the point when enough is enough?""" tt0236493,AgLQ3qTL-t0,Samantha throws a fit when she learns that Jerry has to do one more job. tt0161081,Jjfj3SkBkpg,Dr. Spencer sets his paralyzed wife in the bathtub in an attempt to make her death appear as suicide. tt0161081,SnvRdPwoMRQ,Claire allows Madison to possess her and seduce her husband. tt0161081,WNnxjpBMF7U,"After finding a box of suspicious items, Claire confronts her husband and accuses him of murder." tt0161081,M4NDR6zyzkw,"Possessed by Madison, Claire seduces Norman, but the ""Professor"" hasn't seen this side of her before." tt0161081,vPTTP3gSLJc,Clair is haunted by an eerie spirit in her bathroom. tt0236493,I2AjeXpxmI4,"At a diner, Winston admits to being gay to Samantha." tt0161081,irr4b40Ok7E,"With her entire body paralyzed, Claire can only use her foot to save herself from drowning in the bathtub." tt0236493,WUApETooc_g,Jerry and Winston have a standoff while fixing a tire out in the desert. tt0161081,F1adM9oDbbw,Claire is convinced her neighbor killed his wife and confronts him in public. tt0161081,14t1taTBtmc,"Moments before Norman is about to murder his wife, something appears from the depths in search of vengeance." tt0181689,xtXdKETotbc,"Agatha gives Anderton and his ex-wife a powerful vision of their missing son, but the moment is broken by the arrival of the pre-crime unit." tt0325537,hu2AlkyvIe0,"The election results are in, and Mays becomes the first African-American President of the United States." tt0325537,3tXDymBcnJY,"Mays and Lewis spar in their first debate, on the eve of the election." tt0325537,hRa-69uBmIw,Mays launches into his inspirational closing remarks. tt0325537,lCiravgbbJk,"The debate between Mays and Lewis turns childish, until they're interrupted by a question from Kim." tt0325537,tPy34tjLOyk,Mitch encourages his brother Mays to speak his mind. tt0325537,r9bfL4Jz-M8,Mitch and Mays engage in some unconventional debate preparation. tt0325537,fMTn4M2qfNI,Mays goes off the teleprompter to give an inspirational speech from the heart. tt0325537,hvZiZFDE3A8,Alderman Mays Gilliam helps an elderly neighborhood woman save her cat from a house that's about to be demolished. tt0325537,SXjiv_w2i3Y,"Mays gets some unwanted attention from Kim, so he takes advantage of his new security detail." tt0325537,Pha96r6s_g4,"Mays is smitten with gas station clerk Lisa, but their conversation is interrupted by the Meat Man." tt0264464,Ow8mG8qutkw,"Frank tricks the airline into thinking he's a pilot ""deadheading"" back to Miami." tt0264464,DCOm4osfWn8,Frank butters up a bank teller in order to get information on bank checks. tt0264464,HYOjY7JJDBI,"Carl tracks Frank to Montrichard, France and convinces him to surrender into his custody." tt0264464,sFW15hEqZQk,"Frank is about to go AWOL from his job at the FBI, but Carl meets him at the airport for a heart-to-heart." tt0264464,O71paEZERHg,Frank gives Carl a call on Christmas Eve. tt0264464,i5j1wWY-qus,"Frank, impersonating a doctor, is called into the E.R. without any preparation." tt0264464,R5WC60UwB_Y,Brenda and Frank passionately kiss in his office before he's called out to the E.R. tt0264464,31lZFoSS-VQ,Cheryl Ann negotiates with Frank the cost to spend the entire night with her. tt0264464,PNOuZUHKneY,"Carl tracks Frank to the Tropicana Motel, but is duped when he claims to be a Secret Service agent." tt0264464,KAeAqaA0Llg,"On his first day of school, Frank impersonates the substitute teacher." tt0181689,DvS7X6Zik1c,"When inspector Danny gets too close to the truth, Lamar Burgess murders him." tt0181689,IHLzITVRlCo,"Anderton confronts Lamar with his crimes and his choices, but Lamar chooses a darker fate." tt0181689,5M4QWD0U8-A,Crow reveals a conspiracy and forces Anderton to shoot him. tt0181689,8MuZATnrE3Y,"Anderton finally catches up to the pre-cog's vision, but he decides not to fulfill his fate and commit murder." tt0181689,9S44kVrFB24,Anderton tries to escape pre-crime officers who chase him with jetpacks. tt0181689,901lYbPmqu4,"Anderton tries to hide in a bathtub, but the nasty spider robots catch him anyway." tt0181689,GurNiNV5XvY,Anderton tries to feed himself without the use of his eyesight. tt0181689,2l_IUAcvfv8,Anderton is shocked to see himself as the murderer in the precog's vision. tt0369339,TZQWu0gDpO4,The tension rises as Max tries to talk his way out of a jam. tt0369339,CxzCn3OZfeA,Vincent talks about the burden that parents put upon their children. tt0369339,6mreIgrIXQ8,"Vincent shows another side of himself as he lays on the charm for Ida, Max's mother." tt0369339,wDZyu8jYw90,Vincent gives Daniel one shot to avoid his fate. tt0369339,lBS9AHilxg0,Max finds himself in an unwanted partnership with Vincent. tt0369339,_syPeFclyN8,"Through sheer happenstance, Max picks up a mysterious passenger in Vincent." tt0369339,EMS4lYA-hEo,Max and Vincent have their final showdown on board a speeding subway train. tt0369339,oEFPcljAXgs,A pair of street thugs meet their violent end at the hands of Vincent. tt0120647,C0SqH_PRfGU,The President gives a somber but hopeful speech in the aftermath of the comet's impact. tt0120647,_xJ1KmjXSYc,Leo proposes to Sarah so he can use his newfound fame to get her family to safety. tt0120647,-nIwFGmgYMs,"After detonating a nuclear bomb on the comet's surface, the crew of the Messiah suffers the consequences." tt0120647,5s6vEQzHOcM,"In a race to escape the sun, the crew of the Messiah loses one of their own to deep space." tt0120647,VNtsVP42bOE,"The comet makes impact in spectacular fashion, destroying the Eastern Seaboard of the United States." tt0120647,vQWmd8REdaE,The crew of the Messiah gives the ultimate sacrifice to save humankind. tt0120647,TzMGDdUyHkQ,"Just hours before the comet's impact, Jenny finally reconciles with her long estranged father." tt0120647,Au47y23N-QM,Capt. Tanner suggests a last-ditch plan to his crew on how to stop the comet -- but there's a catch: it's a one-way mission. tt0120647,gM4-jiKNuIs,"After a mission rife with antagonism, Capt. Tanner opens up to his wounded rival, Dr. Monash." tt0120647,j0silSyYFPM,An ambitious television reporter is on the losing side of a deal with the President of the United States. tt0399201,dQTwbSY0z_Q,Lincoln and Jordan steal a jet bike and crash it into a building. tt0399201,pTbelq2dtKg,McCord explains to Lincoln and Jordan that they're clones with implanted memories. tt0257044,yHBT_3vRbq8,Mr. Rooney pays a visit to Michael Jr. and gives Michael Sr. some advice about sons. tt0942385,xPxs0Qh72kY,"While lost in the jungle, Kirk and Alpa conflict with Tugg and discuss racial issues." tt0257044,9dyhBVEQi9U,"Over some coffee and pie, Michael Jr. learns a thing or two about negotiation from his father." tt0942385,KA2ziAAXoqE,"Tugg has a brutally honest discussion with his Hollywood agent, Rick Peck." tt0942385,7YdgPy21hBM,Tugg proves himself to Kirk as a true actor when he nearly misses a bomb and almost dies. tt0942385,LQNKhY7ws48,"Tugg goes mad in the jungle and kills a panda. His Agent Rick, is pleased to hear he didn't kill a hooker instead." tt0942385,QZocvme6cYc,"Action hero Tugg Speedman stars in ""Scorcher"" movies 1-5 and the latest installment ""Scorcher 6: Global Meltdown.""" tt0942385,Mhu2Ij0rWCQ,Tugg and Kirk can't get through a scene when Cody decides to set off a million dollar explosion. tt0942385,mgyypjEpK6U,Kirk tries to get a gay confession out of rapper Alpa while Jeff suffers from cocaine withdrawals. tt0942385,X6WHBO_Qc-Q,"Kirk discusses acting with Tugg and why he didn't win an Oscar for ""Simple Jack.""" tt0942385,zGIIiQyyuYM,Tugg and Kirk act out a scene in a very epic and dramatic war movie. tt0942385,qIxHb7cA6tg,Tugg is forced to act as Simple Jack while Kirk and Alpa think of a way to rescue him. tt0177789,nF_6OfgbF7c,"Obsessive Galaxy Quest"" fan Brandon receives a radio transmission from his hero Jason that confirms his beliefs." tt0177789,EQG3I5efwWo,"Jason runs for his life as an rock monster chases after him. Meanwhile, Fred finds the courage to beam Jason up." tt0177789,JJ83r886Kyg,"Gwen finds what appears to be an adorable alien, but true to Guy's suspicion, the aliens are ruthless killers." tt0177789,nW-NiGp1gys,"The crew beams up a pig lizard to test out whether they can rescue Jason, but the alien creature dies a horrible death." tt0177789,qopdYE3_QoU,Guy Fleegman is sure he's going to die as the crew lands on an unknown alien planet. tt0177789,_zSpueUqvcs,Jason and the crew are attacked by real aliens for the first time. The ship is badly damaged and they narrowly escape. tt0177789,uDJsCE01LYI,"Alexander Dane feels like a sell-out as he and the rest of the Galaxy Quest"" cast wait for Jason Nesmith at a convention." tt0177789,FEdyNyQCjwE,Alexander dreads signing autographs while Jason savors every moment. Aliens arrive with a plea for help. tt0181875,-hDPK865N9I,William informs Penny that Russell sold her to the band Humble Pie for $50 and a case of beer. tt0177789,n8mK-A_0viA,"The ""Galaxy Quest"" cast unknowingly agree to board an alien spacecraft and receive their first alien probe." tt0181875,3VIKJMifm7k,"WIlliam meets Penny Lane and the other ""band-aides"" while waiting outside of the concert venue." tt0181875,A3WUhMCsZds,Penny asks William if he wants to go to Morocco with her. tt0181875,6OPp0MyQfoM,Tensions within the band arise when Jeff and Russell argue over their images on the band t-shirt. tt0181875,eXAvTZlmYF0,"After Russell is electrocuted on stage, the tour bus busts through the locked gate." tt0181875,VCfFCFkVSss,"While on acid at a house party, Russell declares that he is a ""golden god.""" tt0181875,TEAIVXJ1Qds,"As the tour plane heads for a crash landing in Tupelo, dark secrets, confessions, and truths emerge from each passenger." tt0257044,O_4Sx5NtOPM,"In the falling nighttime rain, Michael kills Mr. Rooney and his men." tt0257044,U5418CiBukw,"Michael confronts John over his betrayal. John responds, ""this is the life we chose, the life we lead.""" tt0257044,7-VAbEyf9V4,Michael steps into a trap but manages to fend off Harlen who is shot in the face. tt0257044,nPWRoCkmaQU,Michael escapes a set-up in Calvino's office by killing two men. tt0257044,UfmdBPl48uw,Mr. Rooney embarrasses his son Connor at a meeting for an insincere apology. tt0257044,MhGl83Qsi4Q,Michael Jr. watches Connor execute Finn and Michael Sr. catches him. tt0399201,sOxspReyzOI,"Lincoln tries to convince Laurent that he is not the clone, while Tom attempts to do the same." tt0399201,5paBdZiLhqQ,"Lincoln returns to save his fellow clones, but Dr. Merrick proves to be a worthy opponent." tt0399201,xCQ2qh3Tu9o,Lincoln and Jordan ride a giant logo as it falls off the side of a building. tt0399201,CHPnFgyg064,"Hiding on a truck, Lincoln releases some train wheels onto the highway to stop the henchmen in hot pursuit." tt0399201,Ihd-NwI030c,Lincoln watches as Starkweather wakes up during his operation and tries to escape. tt0399201,IdEsGZhAO7A,Lincoln and Jordan get their first taste of fresh air when they find a way out of the compound and into the desert. tt0477051,UuVuFO1cCFE,Mr. Wong tells an interesting and embarrassing story from Norbit's childhood at the wedding reception. tt0399201,139c6HgY7jA,"Lincoln dreams of a boat ride with Jordan, but it quickly becomes a nightmare of mysterious creatures and scientific experiments." tt0477051,IakgSRSZZ0I,Norbit gets personal during the children's puppet show. tt0477051,E3WlOWMP9KA,Rasputia is annoyed and uncomfortable in her car and accuses Norbit of adjusting the car seat. tt0477051,JUQS0Q_0aQg,Rasputia shows Kate how going down a water slide is really done. tt0477051,yKfQ_-lnMJw,Kate visits Norbit in the hospital and makes his heart monitor work overtime. tt0043014,TMUJpec6Bdc,Joe is mistaken for a coffin maker when he meets the washed up movie star Norma Desmond. tt0043014,Nn4pMI2q_PM,"Joe watches Norma play a bridge game with old silent film stars, including the legendary Buster Keaton." tt0043014,_3hajwRww6I,"After Joe shatters Norma's delusions of fame and prepares to leave, she threatens to kill herself." tt0088286,AupQ8Vm51OQ,Nick and Hillary meet a motley lineup of underground fighters. tt0238380,XM3BsAAO8JI,Preston turns against a team of clerics when they discover a dog hidden in the trunk of his car. tt0080339,ixljWVyPby0,"After killing his seatmate, Striker is invited into the cockpit to take over the plane." tt0091159,7trB7i2xpfc,Hunt makes a presentation to the Japanese automakers and continually puts his foot in his mouth. tt0115986,kk0vH1qJPHk,Judah hangs and whips The Crow during the Day of the Dead parade. tt0918927,nS8tqsjySaI,Sister Beauvier warns Father Flynn that she's been investigating his past by calling the nuns at his past parish. tt0369339,3ZpmjPc9Vcc,Max steals Vincent's briefcase in an attempt to disrupt the assassin's plans. tt0086465,V4705kE44Jc,"A crazed, gun-toting Louis tries to frame Billy at the company holiday party." tt0093748,iU0CuPH7akM,Neal sounds off on Del's pointless chatter. tt1179904,evoa_UWUobI,"When Micah and Katie leave the house, the ouija board that Micah borrowed moves and starts a fire." tt0101272,WSlojAguwGE,Morticia fantasizes about lying in a grave next to Gomez for all eternity. tt0120082,fnTckzsYgg0,"While attending a screening of Stab,"" a fictionalized account of the Woodsboro Murders, Maureen meets her demise at the hands of the new -- and very real -- Ghostface Killer." tt0120082,ba4niP3IwLQ,The Ghostface Killer stalks sorority girl CiCi in her sorority house. tt0106598,oDeQU3l-JSg,Beldar and pregnant Prymack discuss their new living arrangements until Prymack's water breaks. tt0120082,xdPtumdfg9c,"After the Ghostface Killer makes an attempt on Sidney's life, she begins to suspect her boyfriend, Derek." tt0095705,J2_tJIgfnDA,Nordberg is hit with a flurry of gunfire...but that's only the beginning. tt0120082,EA-9nqoIXs8,"As Sidney performs a scene from Agamemnon, she is stalked by the Ghostface Killer who is disguised as a member of the chorus." tt0120082,r9aUxfTTLfk,"Mickey reveals his deranged master plan to Sidney, as well as his partner in crime..." tt0112572,XFrerPgK0kk,"The Brady kids have a secret meeting to come up with a way to earn $20,000 to save their home. Alice almost gets engaged." tt0120082,y8SLxD3ATw0,"Cotton Weary makes a decision on whether to save Sidney from the hands of the insane Debbie Salt, aka Billy Loomis' mother." tt1300851,O7dHybpZ7Mc,Frank rides with the police as they attempt to put an end to St. Niklas and his reign of terror. tt0066011,ZPk3nEFRuZg,Jenny and Oliver have a do-it-yourself wedding. tt0086425,cGP9TwLnG78,Garrett asks Aurora out on a date. tt0102510,cEjo0ajod1M,Drebin meets with forensic expert Ted and shares his boxing knowledge. tt0112572,C5LuP6tDw3w,The neighbors can't understand Cindy's lisp and Dad gives Cindy advice about tattling. tt0273923,8hJlwQwwCGk,"When Ashley accidentally gives some of Lance's pills to the Dean, Shaun tries his best to make the case for his acceptance." tt0238380,IBjrQR_1ef8,Brandt brings Preston before Dupont for the crime of sense offense. tt0091159,9EBnUERX_cU,Kazihiro berates his colleagues for spending their whole lives working. tt0238380,8iQKnefUJNg,Preston saves a group of resistance fighters by turning against his own men. tt0110622,p-echNQGbug,"While working undercover, Frank experiences a wild prison riot." tt0238380,59ZcTCijizI,Preston interrogates Mary and watches as clerics practice the art of gun kata. tt0325258,IEOqAlmq2NU,"When bullies pick on Sam at school, Dickie puts them in their place." tt0238380,uZWDke-bpmc,Preston races to save Mary as she proceeds to her execution. tt0238380,pPuAKVnqJdk,Preston infiltrates a criminal hideout with guns blazing. tt0063522,aHM8kYwl1R4,"When a hazy Rosemary wakes to find deep scratches on her skin, Guy claims responsibility." tt0101272,gNGmuLYwd3o,Wednesday and Puggsley play in their electric chair. tt0077631,_ZfmXzIbHI8,"in, heartbroken over Sandy." tt0088286,uuYTVl0iOkk,A Swedish bookstore owner arranges for Nick and Hillary to meet the resistance. tt0238380,TJf9Pf9rjO4,Preston finds Partridge reading a book of poetry and executes him in cold blood. tt0066011,qXJF21RuqlM,Oliver learns that Jenny's inability to have children is indicative of something far worse. tt0102510,2jvtU-_WDUw,Drebin visits Jane at home and they figure out Hapsburg's evil plan. tt0162650,ZzOzVT2o2BU,Shaft and his friends get chased through New York by Peoples and his henchmen with some heavy fire power. tt0104695,Yq5csaHc_GE,Jonas avoids arrest as Jane feeds him information about Officer Lowell's family. tt0106598,SbTWLdT_tgk,Beldar and Prymack help their neighbors in the suburbs. tt0112572,mVqKHUtKh8Y,"Mike Brady and his wife Carol Brady have just only one week to come up with $20,000 in back taxes or their house is sold and they'll have no choice but to move. And it's up to the Brady kids to secretly raise money and save the homestead before they lose their house to their scheming neighbor Mr. Larry Dittmeyer." tt0325258,OUHFpvPxmRI,Dickie acts out a childhood moment he's never had for director Rob Reiner. tt0095705,foll8sDGq4M,"With American muscle and know-how, Drebin gives the terrorists a drubbing." tt0087277,gTTHW0Hynbc,"While at work, Ren and Willard have the great idea of hosting a dance." tt0325258,y-qFqfSjN1U,Grace pushes Dickie around in a stroller. tt0087277,Fyuo3Z5ZTX4,Ariel terrifies Ren with her wild side when she plays chicken with a train. tt0325258,GQDLVpNKFhw,Dickie crashes an Alcoholics Anonymous meeting to ask Tom Arnold a favor. tt0087277,4EdkUt4f5wg,Ren appeals to the Bible to defend his dance at the town meeting. tt0325258,N8f-APll5f8,A see-and-say game touches a nerve with Dickie. tt0325258,Qf9xTFEhRS0,"Thinking the Finneys' dog killed the neighbors' rabbit, Dickie engineers a cover-up." tt0325258,BkVDaT2FTM8,Dickie talks drugs with the Finney kids; Sally puts Dickie in his place with a schoolyard rhyme. tt0087277,I6_C4fK94-c,Ariel and her father Reverend Moore have a heated conversation. tt0325258,LX_cW_dLweA,A tarantula enlivens Dickie's scary story. tt0082766,rr6eufh4DA4,Joan cuts Christina's hair off after she catches her mimicking her in the mirror. tt0082766,f0MBL-DyXaE,Joan beats little Christina in a swimming race and then rubs it in. tt0082766,qRAQivSrtm0,"When Helga doesn't clean beneath the tree, Joan obsessively cleans it herself." tt0082766,5NOmw_kzrJQ,Christina demands to know the reason why Joan adopted her. tt0082766,PtwRKtvezd8,"In bitter anger, Joan calls the children out into the garden to help her clear the roses." tt0082766,tUkE9qaVgmo,"After finding a wire hanger in Christina's closet, Joan beats her with it." tt0082766,fqM1ttqNA9k,"Christina says that she is not one of her mom's fans, which leads Joan to choke her." tt0063518,km-nbIRZJYk,Friar Laurence lectures Romeo about his disposition and tells him to be happy that Juliet is alive and well. tt0090555,VToA3hOd3tM,Michael explains the particulars of a crocodile attack to Sue. tt0063518,kikLy1L-keE,"When Tybalt returns after killing Mercutio, Romeo fights and kills him." tt0090555,KQ6EyoqFWQM,Michael and Sue discuss food options in The Outback. tt0090555,GvwHxn_ziD4,"When Michael, Sue and Walter encounter a bull in the middle of the road, Michael mentally overpowers it." tt0090555,bd165_YTXZQ,Michael disguises himself as a kangaroo and attacks some poachers. tt0090555,uw9V_NayRVY,"Sue is offended when Michael tells her she wouldn't survive by herself, and takes off alone." tt0090555,_vW54lAtldI,Some street kids try to rob Michael and Sue but Michael's got a bigger knife. tt0090555,Ti9VcWX0vEs,"Sue catches Michael before he boards the subway and tells him she loves him, with some help from the crowd." tt0086425,PuvONUFArdI,Emma stays strong while saying her final goodbyes to her sons and reminds them both how much she loves them. tt0090555,uYIe9o2jMSE,Michael has trouble initially understanding the use of a bidet. tt0054698,4jsUIgchHXU,"Holly explains The Mean Reds"" to Fred and how she goes to Tiffany's to get rid of them." tt0071315,8G0BVEIjGyo,Jake enlightens Evelyn about her husband's death. tt0071315,7SZMEImptPQ,"Jake tells a crude joke to his partners, unaware of his larger audience." tt0071315,kh0exWqvxeI,Cross questions Jake about his investigation. tt0071315,9y2y-Tkn7eg,Jake is caught snooping at the reservoir by Mulvihill and his blade-wielding henchman. tt0071315,3BB-PdHTQHg,Cross entreats Jake to locate Mulwray's mistress. tt0071315,X6CEEc9g9vk,Evelyn struggles in vain to shield her daughter from Cross. tt0071315,wnrdetFAo1o,"Confronted by Jake, Evelyn makes a startling revelation." tt0077663,bkH0i7fGo6E,Mr. Jordan shows Joe a variety of bodies to pick from but Joe remains reluctant. tt0077663,35fEjN5m4ds,"The Escort explains to Joe the rules of the afterlife and travel, but he refuses to listen." tt0077663,NMi4ONkFym8,"When Julia freaks out by seeing that Joe is still alive, Tony covers by claiming she saw a mouse." tt0077663,KejnRkhhY14,"Max continues to speak to Mr. Jordan who he thinks is in the room, until Joe informs him that he's not there." tt0077663,SzVAyGry2Ic,"Joe tries to explain to Max what happened to him, but Max dismisses it and thinks he's crazy." tt0077663,nfcci0C95tA,Tony tries to calm down Julia after they discover that Joe is still alive. tt0077663,EHJoH9IFboo,It is revealed that The Escort made a mistake and took Joe too early. tt0077663,EnIL4KXQI2g,Betty finally recognizes Joe from his former life. tt0102517,QvfJieP0KVA,"When Charlie can't hit the sled hard enough, Andre comes in to show him how it's done." tt0085549,kvbYXGOZHnQ,Alex puts on a show when she jumps to conclusions after seeing Nick with a blonde. tt0085549,2u8cHrJvlHQ,Alex and Nick spend some quality time together. tt0085549,f4M5MT96FwY,Alex blows up when she finds out Nick meddled with her chance at the audition. tt0085549,7eI5BfzRCY4,Nick gets shot down when he asks Alex to dinner. tt0056217,hP77V2X1Biw,"Ransom receives a shot in the arm, but then wins the showdown with Liberty." tt0102768,OQrzt7JI_DM,"After almost throwing up the food that Bradley prepared for him, Henry realizes that he wants Ritz crackers." tt0085549,P0GZAeKVtfg,Alex and Nick have yet another fight about her future. tt0110622,MTs-HKiOQj8,Tanya seduces Frank while he tries to operate undercover. tt0102768,UUcH7wBp3G4,"Henry flicks paper wads at his daughter while she tries to study, and when she tells him to read his book, he tells her he can't." tt0102768,3lGZmV8_XxU,Rachel teaches her dad to read a grade school book. tt0167427,vSt6OezOAwg,"Mary makes out with a tree, while a concerned nun watches." tt0056217,TbiSXYT1-SY,Tom tries to intimidate Ransom but the lawyer stands his ground. tt0167427,IeRLdVndLpM,"Mary uses a made-for-TV-movie monologue in confession and loses control. At school, she fends off a slew of insults." tt0054698,7I7OErGVS68,Paul tries to stop a fiery incident at Holly's hopping party. tt0112572,Ts5FbF_2Wus,Mike summarizes a speech from Jan about family... and home... and family. tt0093748,ZKtFIgmoqoI,Del tries to sweet talk the cop who pulls over their husk of a car. tt0093748,FuZNswuwAxM,Neal and Del bargain with a motel clerk for a room. tt0101272,TZYf96eyE94,"Morticia tells her unique spin on ""Hansel and Gretel"" to a group of children." tt0093748,nl8PQAfhi28,"Reunited at the airport, Neal reminds Del of their previous encounter." tt0116313,x12Dai43I8Y,The gals share their stories of resentment towards their exes and devise a plan to get even. tt0368709,U3sOMWjM7aU,Drew and Claire finish their marathon phone call by meeting to watch the sunrise. tt0101272,Lp3r6mBRUXI,"Wednesday's teacher, Ms. Firkins, talks to Morticia about Wednesday choosing her great aunt Calpurnia as her hero." tt0101272,qAhaYHHcYyk,"After being betrayed by Uncle Fester, Morticia consoles the family by referring to an old fable." tt0071315,ppGd-2nEOVQ,"Jake learns the awful truth about Noah Cross, but is helpless to stop him." tt0112697,BEG66-Lro7U,Cher insults her housekeeper and then bombs her driving test. tt0112697,xM2mL0y9i5M,Cher starts to fall for Christian in class and gives a presentation on violence in the media. tt0071315,7uSz0mEtEsQ,"As Cross leaves with Evelyn's daughter, Jake is left completely disillusioned." tt0094006,VgiH-x1eRpw,Keith runs after Watts after realizing she loves him. tt0325258,IzYmyWR3pJs,"Dickie runs into another former child star, Leif Garrett, who has the info on the latest Hollywood happenings." tt0325258,YzpjrMci980,Dickie meets with publishers about publishing his life story. tt0368709,Clr9NbvwbhA,Ellen breaks up with Drew over the phone. tt0368709,0rgfZzE6Ulg,"Drew gets to know his musical cousin Jessie, who once opened for Lynyrd Skynyrd." tt0106598,tcR7LgBVTNE,Beldar and Prymack rent a room and enjoy all the foreign amenities. tt0087277,BnjXFpoLJfk,Reverend Moore preaches about the importance of trusting our children to do their best with what we have taught them. tt0087277,2lVRcI0zsvw,Ren gives an inspired speech to Reverend Moore in favor of dancing. tt0368709,3eJ8A1W3jqM,Drew and Claire discuss the expectations of other people. tt0106598,402xHwQGVsE,"Beldar goes to the dentist to get his teeth capped, but the dentist finds surprises in Beldar's mouth." tt0106598,XkvIlrLiy9o,"Posing as Jehovah's Witnesses, INS agents Seedling and Turnbull question the Coneheads." tt0106598,2rCTuXAbyTI,"At breakfast, Beldar is horrified to see that his teenage daughter Connie has gotten a tattoo on her cone." tt0106598,jPsXJlylRvs,Beldar's boss finds out that he doesn't have a Social Security Number and is an illegal alien. tt0106598,mMRQdL_xvME,Prymack asks Beldar what he would do if she ever died and he affirms that he loves her. tt0106598,MXkFgmQ2O-Q,"At the football game, the entire high school is blown away by Beldar's fireworks display." tt0067185,reJAzTE980s,"Mrs. Chasen fills out a dating questionnaire for Harold, while he handles a revolver." tt0106598,7q-lFxf9-p8,Connie excels in diving due to her perfect conehead. tt0067185,WuHkE1eU2AY,Harold meets Maude at the funeral of a stranger. tt0067185,RU3F4QPUVQw,"Mrs. Chasen arranges a date for Harold, but he would rather play with fire in the yard." tt0067185,QVGOUxQrISc,"Maude gives Harold a ride, in his own hearse." tt0043014,ADl0wC_cAbk,Norma Desmond pledges to Joe that she will be a star again after watching her own silent films. tt0067185,mzuVsHCLSOg,"Harold tells Maude about the first time he ever pretended to be dead, and the effect it had on his mother." tt0067185,6ooboieA_eE,Harold and Maude get pulled over by a motorcycle cop on their way to plant a tree. tt0067185,0ZzNlA9uZ0g,Maude breaks the news to Harold that this day will be her last. tt0067185,LYppdp_2GCk,Harold commits another fake suicide in front of the last date arranged by his mother. tt0043014,MvajGqWodvM,Norma Desmond meets Cecil B. Demille after she falsely believes that he invited her there to discuss her script. tt0074860,JWMjQEyfaQ8,Babe pursues Elsa from the library to her apartment in order to ask for a date. tt0163187,cKADfQQILN8,Ike confronts Maggie about not standing up for herself in her relationships. tt0074860,kzw1_2b-I7A,Szell performs dental torture on Babe to determine if it is safe. tt0063518,lbaWyJwff-U,Juliet discovers that Romeo has drunk poison. She kills herself with a dagger to join him in eternity. tt0074860,WziC9cSTCWc,Doc barely survives an attack in his hotel room in Paris. tt0074860,GZeehXqOYVI,Babe bargains with Janeway to find Szell. tt0074860,lC-DSaxzDzs,Szell returns for another round of interrogation with Babe. tt0074860,6nWWM8tTn84,Szell gets spotted on the streets of New York by some former victims. tt0074860,SNruq88Dlpg,Babe screams for help as mysterious men break into his apartment. tt0273923,q5BzDVDotzI,"Shaun gets ignored by his English teacher, who has some unusual ideas about Shakespeare." tt0273923,HDq2KcdmVU8,"Shaun, Lance and Ashley arrive at Stanford, only to find that the dean has gone home for the night." tt0091159,2Tjoz_0I4Gk,"Hunt insults Oishi, which results in a knock-down, drag-out fight in the factory." tt0104695,SdNqYGbc0tU,"Marva isn't fooled by the efforts of Jonas and warns him not to give false hope to her little brother, Boyd who is crippled." tt0104695,MkMqRDBKUwM,Reverend Jonas wins the trust of the townspeople as Jane feeds him personal information about them. tt0074860,PZGS6N3zG4o,Babe forces Szell to swallow some of his own diamonds. tt0104695,B6iOniIX5eA,Sheriff Will brings Jane to a butterfly field and professes his affection for her. tt0091159,VSo45ZD29oo,"Hunt appears as his Japanese superiors swim in the river and promises to deliver 15,000 cars." tt0104695,Q1vQUG6GFNE,The crippled Boyd touches the statue of Jesus and walks without his canes. tt0104695,e6kJsyysbSM,"Jonas hitches a ride out of town just as a rainstorm hits, ending the drought." tt0104695,NgEOTc2qgVg,"After being denounced by the sheriff as a fraud, Jonas brings the crowd back to his side." tt0066011,P-4jKZ3X1zQ,"After getting into a fight with Jenny, Oliver learns a lesson about love as he tries to make amends." tt0091159,hKNeFHBPgRo,"At dinner with Hunt and his wife, Oishi gives and receives some brutal honesty." tt0275022,faaBOJDQ_Lc,"While in the bathroom, Lucy, Mimi, and Kit discuss how cute Ben is and also the rumor that he was in jail for murder." tt0275022,z0ogqhF4ems,"On graduation night, Henry desperately reads a list of reasons why Lucy should sleep with him." tt0091159,nYb42fv8pMU,"In a business meeting, Hunt uses an expression that puzzles the Japanese managers." tt0066011,uvtLHXUjt_o,Oliver makes an impromptu marriage proposal to Jenny. tt0066011,qb4Rfj1wp0Q,"Oliver conflicts with Jennifer at the library, but succeeds in taking her out for coffee." tt0066011,nOLCO4_AKiE,"Jenny finally opens up to Oliver, proclaiming her love to him." tt0066011,7e6DCyXotE0,"Jenny confronts Oliver, telling him that he must be strong for the both of them." tt0275022,ee6yIS-0NrI,"Lucy reads Ben a poem. Then, Mimi interrupts their first kiss, having been bitten by a spider." tt0066011,Tsz_tamjpmc,"On her deathbed, Jenny uses tough love on Oliver in order to get him to remain strong." tt0066011,hZzQx9cEjhQ,Oliver sees right through Jenny's emotional defenses. tt0275022,2fwZfyxiMFY,"Lucy's father comes to Hollywood to take Lucy home. After a heartfelt talk, Lucy decides to stay in Los Angeles to live out her dream of being a singer." tt0066011,i75piQgUKa0,Oliver passes on Jenny's lesson of love to his father. tt0275022,euxVy9j6TTU,"With their car broken down, Mimi and Kit get into a catfight after some name calling." tt0275022,WMIho_dolCA,"Lucy and the gals enjoy the sunset. While camping at night, Mimi teaches Kit how to throw a punch." tt0758758,8j5sn2UyTp4,"In the Alaskan wilderness, Chris cleans up the magic bus and carves his plan for freedom in a a block of wood." tt0332379,37oJqWp4rJM,"Dewey teaches his students about ""The Man"" who is responsible for all the evils in the world." tt0275022,jEHoNJLqbnk,"In their hotel room, Lucy, Kit, and Mimi share a night of partying and bonding." tt0332379,FhPUGeCMKCE,"When Dewey poses as a substitute teacher, the principal explains the school's code of conduct." tt0332379,Ed2KRddgv-4,Dewey teaches Zack the rock guitar stance and hands out musical homework for the students to study. tt0101272,zIC2aMlqEZk,Gomez and Morticia express their love for each other. tt0332379,kdkVnZsOgJA,Dewey helps the kids get in the mood for rock by encouraging them to tell him off. tt0101272,fq_QSi29iGQ,"Tully the Addams' Attorney, convinces the family to try to conjure Fester through a séance." tt0116313,AnPDhq6O8jo,Elise removes everything and anything she ever gave Bill from his office. tt0101272,EnrWZiqgv1E,Morticia shows Fester what it means to be an Addams. tt0094006,uDimGOcZ24U,Duncan and his delinquent friends crash Hardy's party and save Amanda and Keith. tt0046250,l-PmluGC2wk,"When Princess Ann describes her perfect day full of ordinary things, Joe offers to be her guide." tt0094006,MgtXKQbmYRM,"Ray tells Watts that she radiates sexual vibes, and she gives him the brush off." tt0213790,fF12SZcPQ1s,Leon hooks up with Audrey while she is dressed as Bloopie the Clown. tt0056217,exObFY-sHQw,"Ransom wants to follow the law, but Tom urges him to pack a gun and settle things himself." tt0086425,3H0V4XiAyv8,Aurora is less than thrilled when Emma announces she's pregnant. tt0110622,akrTlYc40XE,"Jane is overwhelmed by the amount of women with babies all around her, even in court." tt0046250,YL19Rvtea4k,"Princess Ann can't find the words to say goodbye to Joe, and gives him a goodbye kiss instead before she leaves." tt0102768,oWBYpwZ5-AM,"When Henry asks his maid Rosella what he used to do when he wasn't working, she tells him that he was always working." tt0110622,dAMqMErPIIY,Louise compliments Jane when she accidentally kills a lecherous trucker. tt0110622,8r_dXbWf2Aw,"While pursuing Tanya Peters, Frank unknowingly signs up for a sperm donation." tt0063522,JBA3q4S1LE8,Rosemary and her husband quarrel about doctors; she feels the baby kicking. tt0102768,10fKN4nHNd0,Henry doesn't remember his family and would rather stay with his friends in the hospital. tt0056217,l1NB8NQc7wU,"Tom sets fire to his own home then goes inside to die, but Pompey goes in to save him." tt0102768,Co2dpNsHMKo,A young thug shoots Henry when Henry accidentally interrupts a liquor store robbery. tt0095705,koPEnaz0Qm8,"When its airbags deploy, Drebin's car endangers the whole neighborhood." tt0102768,rngwd6ExGmc,"Sarah is pleasantly surprised when Henry, for the first time, isn't afraid to hold her hand in public." tt0063522,ctrJ0-TLUHQ,"Meeting with young Dr. Hill, Rosemary recounts her ordeal with the witches." tt0110622,63lE3AOBgeA,Frank visits the lab and finds out that the paper they found was from Statesville Prison and he must go inside to catch the bomber. tt0398165,PsqrgV2RCCM,"After Switowski's nose is broken by a kick-to-the-face, Crewe and Caretaker mend his nose and his feelings." tt0081283,b02H0dW2xf8,"Conrad has a breakdown during a therapy session with his doctor, by expressing anger towards his late brother." tt0081283,IZS7zpXftHA,Doctor Berger helps Conrad understand his pain and feelings about his family's tragedy. tt0063518,lKTGkLcn3yY,"As Mercutio sees that he is dying from Tybalt's wound, he curses the houses of Montague and Capulet." tt0074174,xSQxtMWJzGQ,"The Bears stick it to the Yankees during the trophy presentation as Lupus declares ""wait 'til next year.""" tt0082766,OKn00A40uWE,Joan reacts strongly when the Pepsi executives try to retire her from the board of directors. tt0063518,OZLVlajiihI,Juliet wonders aloud about her new love Romeo and he appears below her balcony. tt0063518,O6KVfajjyGs,Romeo is heartbroken over Juliet's apparent death and drinks a vial of poison. tt0081696,ZMplnAKdBsA,Sissy insists on hitching a ride rather than going home with Bud. The escalating argument leads to a sudden marriage proposal in the parking lot. tt0116313,kflvHGnIkoA,The gals escape Morton's apartment on a scaffolding and take a thrilling ride on a window washer's lift. tt0273923,4SNTodFS0h4,Lance convinces Shaun that it's time to leave Stanford because the cops are after him. tt0046250,0SbVnjlPhjY,Princess Ann throws a tantrum over her crippling and demanding schedule. tt0102517,ZEbN6Vnr1g8,"Wally amps up during his pep talk, and shows his team what real intensity is." tt0119978,S6UlqI_pZr4,Rudy urges a battered Kelly to file for divorce. tt0102510,7CkTYPnJS0E,Drebin accidentally disarms a bomb. tt0119978,14Fq0FgsKfw,"In a jealous rage, Cliff attacks both his wife and Rudy." tt0102510,lI-ty9MfICM,Nordberg gets caught setting a bug and is dragged underneath a van and then Drebin's car. tt0185014,PHcwHxzDQDs,Prof. Tripp convinces James to trip with him. tt0110622,fsWhDcon8aQ,Frank and Rocco escape prison only to find themselves at a very unfriendly LA high school. tt0063522,R9WGPRckS1s,"Rosemary is certain her neighbors are witches, but Guy is unconvinced." tt0095705,NP5IK_pn1eY,"Drebin vaults through his apartment, searching for an intruder." tt0081283,1BkNaaNscqU,Calvin confronts his wife about their failing relationship with their living son. tt0095705,36T5BEpn3dA,Drebin trashes a roomful of precious collectibles. tt0090329,hVxEoBe1UVg,Rachel's father warns her of committing sins and being shunned by the Amish community. tt0081283,1KBWO9Js23k,Mother and son have a strained conversation about the past and pets. tt0108550,d2zY1WRtG94,Gilbert makes sure Arnie knows he will be there to protect him. tt0093748,nWRxPDhd3d0,Neal loses control and goes on an obscene rant to the car rental lady. tt0093748,dbgOACJpZg0,"Neal and are disgusted when they meet Owen, Gus' redneck son." tt0110622,YwM7NgPE5lw,"Frank and his men have an intense gunfight on the stairs in a parody of a scene from ""The Untouchables.""" tt0093748,Rd5dYQHoZS0,Neal Page meets the most annoying seatmate on the airplane. tt0259711,zhWJUB-Sub8,David angers Brian by accusing him of causing the accident with Julie. tt0259711,sGh6m5Ilw_Y,David is overwhelmed by Sofia's charm and wisdom. tt0116313,nhomGXOMYmc,The wives get revenge on their lame husbands. tt0273923,Qg4NBOIbwXc,"Shaun rushes home to find a letter from Stanford, but he's confused and disappointed to find he's been rejected." tt0074174,ONRLZIY7gbs,"Timmy Lupus makes an unexpected, sensational catch in the championship game." tt0074174,CWN1xWdKbHY,Buttermaker tries to coach his team of misfits during their first practice. tt0074174,dm61r3qnPKQ,Buttermaker convinces Amanda to join the team. tt0196229,KeX9BXnD6D4,Zoolander runs into Hansel at a club and challenges him to a walk off. tt0074174,Adh_8pva10k,"To get back at his Dad, pitcher Joey Turner refuses to throw the ball and the Bears tie the game." tt0043014,jMTT0LW0M_Y,"In this classic scene, Norma Desmond gives her final performance as she descends into madness." tt0443706,4OgldRzYvD4,Robert visits Paul who has become an alcoholic after leaving the San Francisco Chronicle. tt0112572,wM2NQimHkTY,"At breakfast, the Bradys give wise parental guidance to Greg, Bobby, and Jan." tt0043014,HduXGYkoc_w,"Joe Gillis, a struggling writer in Los Angeles, narrates the story of his own demise as the police fish his corpse from a swimming pool." tt0043014,bb_uXwPiNxc,Hours go by when Joe finally realizes that he is the only invited guest at Norma's New Year's party. tt0213790,vpHEQqApoAY,Lance holds the first meeting for Victims of the Smiling Ass and tells his story. tt0094006,rGS4bE0G3yY,Laura gossips to the family about Keith getting a date with Amanda Jones. tt0096061,A3xuABrdKis,Frank freaks out when he runs into the incarnation of Death at his studio. tt0162650,5LApVevs2II,"Shaft gets cornered by Jack and Jimmy, but Carmen rescues him." tt0213790,mNQx3KPxifQ,"Lance forces Leon into a wrestling match, but Leon uses a non-traditional form of wrestling to win." tt0196229,H2uHBhKTSe0,Zoolander and Hansel fail in their attempts to figure out a computer. tt0086425,plqzeUB9B-w,Aurora throws a fit at the nurse's station when they're late giving her daughter her pain shot. tt0114694,QbSFxlfuf9s,"A resuscitated deer destroys Richard's car, wowing Tommy." tt0114694,S2XvxDaIwCw,Tommy blows a sale by dramatizing a grisly collision. tt0099653,cjkkKO5Gsno,Sam asks the Subway Ghost to teach him how to move objects in the realm of the living. tt0361411,Rs0tk-z4b2c,"Determined to arrange some marriages for her daughters, Mrs. Bakshi orchestrates a visit from obnoxious Mr. Kohli, who is visiting from Los Angeles to find a traditional Indian wife." tt0120082,Xm-UligdIrQ,The Ghostface Killer taunts Randy from very close by... tt0120082,odrqxoaNPC0,"The Ghostface Killer ambushes Sidney and her body guards, taking them all on a thrill ride." tt0120082,rWeaYCoh1qk,Randy discusses the rules of the sequel with Dewey as he lists out potential suspects. tt0120082,kaXM8DMSm-g,The second killer reveals herself and her underlying motives to Sidney. tt0120082,Mi3s2DWKiUo,The Ghostface Killer stabs Dewey right in front of Gail as she watches helplessly. tt0120082,XzKYNZY9Hpk,Randy and Mickey get into a discussion on the value of film sequels and whether life can imitate art. tt1300851,2z8XAo4Lpuw,"Frank survives an attack by St. Niklas and his ghost army, but his friends are not as lucky." tt1300851,b_uKO3N_JJQ,A family falls victim to the murderous ghost of St. Niklas. tt0112817,ZtUB8XCrqPg,"On the train ride to the town of Machine, William Blake encounters the mysterious Train Fireman who foreshadows the journey to the spiritual world." tt0238380,bcs2En6tGRw,Preston tracks down Dupont and does battle with Brandt. tt0112817,W-T51n6etp8,Mr. Dickinson hires three renowned killers tt0238380,LqQJOr4Rx5k,Dupont begs for his life when Preston beats him in a gun battle. tt0238380,COhtZbBhOYU,Preston and Brandt engage in some cleric practice while also playing mind games. tt0112817,2mmq2hx0tl0,Big George and Benmont argue over who will have the philistine William Blake. tt0112817,cglY-gszmNI,"When Charlie unexpectedly catches his fiance in bed with William Blake, the inevitable shootout occurs." tt1046173,GJkn0wEMc4w,Witness the birth of both Cobra Commander and Destro. tt0112817,vBH4Hv39SEo,"Sitting around the campfire cooking beans, Sally and Big George ruminate on the evil Emperor Nero Augustus, the scourge he brought upon the Christians, and whiskey." tt0112817,t2RUtqJGxlw,WIlliam Blake dispatches of two U.S. Marshalls who are on the hunt for him. tt0112817,wAZPdmo7LVA,Nobody eyes a vision of death written across the sleeping countenance of William Blake. tt0238380,4weEXyoXZKs,"Faced with the realization that he has been tricked into destroying the resistance, Preston summons all his strength to fight back." tt0112817,lh0yfYUCkIw,"A Trading Post Missionary refuses to sell Nobody some tobacco, until William Blake makes his presence known." tt0112817,tO1oeKVFlPk,Nobody bids William Blake farewell as he pushes the canoe out to sea. tt0112817,DH80L45zXJw,William Blake bravely steps into the office of Mr. Dickinson. tt0905372,Tb-PscLsY9I,Something terrible escapes from the block of ice. tt0905372,pobSophb2UE,Kate breaks the some unsettling news to the crew about tt0158983,fy-Ocaxlk1Y,"Eric bets Kenny that he can't light his fart on fire, and Kenny proves him wrong but sets himself on fire." tt0905372,roA5fvzJsho,Kate holds everyone under suspicion that they might be tt0905372,u6GTs78NHzQ,A tense stand-off is interrupted by what the group assumes to be tt1462041,W-qUR8qovy8,Will tries to prove to Dee Dee that the man she saw was only her reflection. tt1462041,x0ce_01UW_Q,Libby questions the identity of the man tt1462041,WpCGV48yiNQ,Will reassures Libby that they tt0251127,DXSoxAHjqRg,Ben begs Andie's forgiveness and promises to do couples therapy with her. tt0108525,EGa3R9VvDVs,Wayne terrorizes Garth on the show by pretending to be a leprechaun. tt0086465,TsIQj8gZeo0,Billy reveals the truth to Louis about the Duke's bet which changed both their lives. tt0105793,MQEwJdhfddk,Wayne and Garth have trouble adapting to their new blue screen set. tt0251127,oxLuG0BYYwE,Andie shows her friends how easily she can manipulate Ben. tt0093010,IAsBghop-hw,Dan is shocked to find his mistress Alex having a chat with his wife. tt0108525,Ev0Dm5qX0bU,Wayne fights Cassandra's martial artist dad to prove himself worthy. tt0108525,6eWsFFQP0gA,Wayne asks for a better actor to play the gas station attendant andCharlton Heston is brought in. tt0097815,NfcmrwPNn7A,"Hayes leads off the season with a hit, but then gets picked off when trying to steal second." tt0097815,nPH9cWTJgdU,"Taylor points to the bleachers, then bunts, in order for Hayes to score the winning run." tt0322802,P0t4ruBVxSA,"Ehren McGhehey makes a ""yellow snowcone"" by urinating on a snowcone and then eats it." tt0146316,QhDRkf_XGVw,Lara is interrupted during her evening exercises and uses her bungee cord to defeat some intruders. tt0080678,5pJOdrchPlo,Merrick visits the home of Treves and his wife is overcome with emotion. tt0080678,AqWLMW73b6Y,Wicked Mr. Bytes demands the Elephant Man back from Treves and accuses him of hypocrisy in exploiting Merrick. tt0049833,Id6oS3L-D9A,Moses brings the Ten Commandments from the mountain only to find his people worshipping an idol. tt0049833,DXjOOS4zAq4,Rameses informs Nefretiri that she will be his wife. She assures him that she will never love him. tt0146316,5Gc9pviBlJA,Lara Croft faces off against a training robot in an exercise designed to test her tomb raiding skills. tt0758758,Ui8Y0Pqlg_4,Chris spends his final moments of life reflecting on re-uniting with his parents. tt0758758,SY_94CSMlyE,"Out at the bus in Alaska, Chris is inspired to re-enter society after reading Leo Tolstoy's book Family Happiness." tt1046173,kHq3y20HhRk,"A mysterious, high-tech aircraft launches a surprise attack on Duke and his men." tt1046173,TReOE4LKcT8,G.I. Joe must chase down and stop The Baroness before her Cobra team destroys the Eiffel Tower. tt1046173,5ps3fGNzpd0,"The G.I. Joe team saves Paris, but only at the expense of the Eiffel Tower." tt1046173,cg7wSv4ALRo,"Snake Eyes bests his rival and brother-in-arms, Storm Shadow." tt1046173,XYumOva6Xr0,The G.I. Joe team escapes from the crumbling underwater Cobra base. tt0080339,rQbj9uvYL8I,Dr. Rumack describes the symptoms of the flight sickness as Captain Oveur experiences all of them. tt0080339,y_7o1pAwhDA,Striker recalls a violent bar he once visited. tt0080339,FNkpIDBtC2c,"When Mrs. Hammen gets hysterical, a line of passengers intervene." tt0092644,3SLoG8B0HTg,The abusive Chief Lutz finally gets his just desserts. tt0092644,Qse_uMLvdwI,Axel faces off with Dent and is saved by Taggart. tt0092644,36IxAWko46A,"During the final shootout, Billy lives his fantasy of being a tough street cop." tt0115641,EbxlqGXQeEM,"After a visit to the Capitol, Beavis freaks out about not scoring with the chick they were looking for." tt0115641,yDq42VIYVnc,Beavis and Butthead try to escape a moving vehicle. tt0115641,Y_SP86WfXZ0,"Muddy contracts with Beavis and Butthead to kill his wife, but they misunderstand him." tt0054698,YQdnuL6YRBc,Holly leads Paul in some illicit activity at a local store. tt0092644,UBU2McO7-GY,Axel meets Karla Fry and destroys the virtual shooting gallery. tt0497116,1KkrlhoFbBM,Al Gore demonstrates how many cities will be under water if Greenland melts. tt0054698,SykyfXBJgNg,Fred offers to repay a favor and buy Holly a gift at Tiffany's with all of the money in his pocket - ten dollars. tt0497116,9tkDK2mZlOo,"Al Gore uses a chart that goes back 650,000 years to compare today's drastic rise in carbon dioxide levels." tt0497116,OqVyRa1iuMc,A cartoon demonstration of the effects of greenhouse gases on earth. tt0116191,NH6x4IDEGKU,"As Harriet decides to get over Mr. Elton, she destroys a treasured memento: a strip of gauze." tt0457510,p43EnAUd3-w,"After his robe burns off, Nacho is revealed as a wrestler." tt0457510,lc0UIhNuudQ,"When Nacho gives up wrestling, Esqueleto admits that he hates all orphans." tt0457510,tkRvLFdrbTU,Nacho wrestles a hungry man for tortilla chips and convinces him to become his wrestling partner. tt0118113,r96GiSht1uQ,"Amelia and Andrew flirt and reminisce about their relationship, while Laura watches forlornly from the window." tt0118113,tTc26ZemSGY,Laura's attempt at love making turns contentious when she gets freaked out by Frank's mole. tt0457510,nTOUiTegqrA,Esqueleto listens to the song Nacho wrote—in his mind—about Sister Encarnación while he was in the wilderness. tt0457510,hHWcoaM_59E,Sister Encarnacion and Nacho get to know each other better. tt0457510,AMQgbNK7fGs,Nacho is put on the spot and forced to make up a song at the party in honor of Ramses. tt0457510,ME2mnzfCdug,Nacho and Esqueleto fight against the beastly midget wrestling team. tt0457510,EPweJNJOQz8,Sister Encarnación reads a letter from Nacho explaining where's he's been and what could've been between them. tt0457510,aoXg7SSmGyk,Nacho discourages the orphans from wrestling and denies that he's ever wrestled. tt0457510,h7wEE6Yx7IQ,Chancho discovers Nacho putting on his wrestling costume; Esqueleto gets baptized. tt0099371,JHkM4OUkF8E,"With just two laps to go, Harry tells Cole to ignore his earlier advice and go to the outside on turn four." tt0099371,HOldh4ePgnA,Cole experiences his first major crash while trying to pass Rowdy Burns. tt0099371,ISs3m1aHZxY,"The truck gets pulled over, but when a female officer gets frisky with Cole, it turns out to be a prank." tt0099371,Z9mzzABiQUo,"When Russ Wheeler wins a race with some dirty tricks, Cole decides to get some on-track revenge." tt0099371,0SSgv8t0QbM,"When Dr. Lewicki examines Cole and determines that he's fully recovered, Cole decides to make his move." tt0099371,guQnnPJgtUo,"Cole meets Dr. Lewicki, but he thinks Harry is playing another trick on him." tt0126886,0MoJuaS5x14,Mr. McAllister realizes that he has to stop Tracy Flick from winning the election so he loses two votes. tt0099371,e77ybggTHHg,Cole is running last in the Daytona 500 when another crash threatens to take him out of the race for good. tt0086960,lKE3zh_Hxqw,Axel gets an unpleasant welcome from Taggart. tt0099371,G45X6fSk1do,"In the closing laps of the Daytona 500, Cole drafts Wheeler and passes him on the inside for the win." tt0086960,JVZwoLZgrRs,"Axel is tossed through a window, then arrested for disturbing the peace." tt0086960,Ad5ZJcmYc_k,"Axel, Taggart and Rosewood are greeted with machine-gun fire at Maitland's mansion." tt0086960,2dYyyQdjgLI,"Axel stalks Maitland through the house, resulting in a final standoff." tt0086960,HmNJ03s2ZuM,Axel cons his way into an exclusive club by posing as Maitland's lover. tt0086960,UTIjIC00VwI,Axel makes a scene at the Beverly Palms Hotel to convince the manager to give him a room. tt0086960,GHZWWFmaFcI,"Axel meets Serge, a flamboyant Beverly Hills art gallery clerk." tt0086960,ycoe7us5bbM,Axel poses as a custom inspector to get what he needs. tt0086960,8w_naC0saGI,Axel mocks the second team of detectives that come to see what he's up to. tt0086960,6y-pdLyZPJ8,Axel stops the detectives following him with a couple of well-placed bananas. tt0105112,KnhDO1G0ieY,Ryan's family is endangered when a terrorist group targets the British minister for Northern Ireland. tt0105112,tB9_C5zQLZw,Ryan turns the tables on a would-be assassin. tt0105112,QiuXl1cPfrU,"When book dealer Dennis begs to join an outgoing raid, he's silenced by Miller." tt0105112,t8loKEw-wlA,"At CIA headquarters, Ryan watches an assault mission via satellite." tt0105112,krqNvqvhvp0,"When terrorists infiltrate the Ryans' home, Cathy must protect her young daughter." tt0126886,yisFmY4OAbs,McAllister tries to teach Paul about Democracy with fruit. tt0126886,6u3GAQgZpww,Tracy angrily explains that she's not upset at all that rich kid Paul decided to run against her in the election. tt0105112,Nj7HiMh778M,"As terrorists breach the basement, Ryan manages to escape with his allies and family." tt0126886,eh3TXsx8B40,Tammy gives her election speech before the student body and pumps everyone up with her passionate apathy. tt0126886,0eJpmeoLXLg,"Tracy, Tammy, and Paul say very different prayers to God the night before the election." tt0105112,kvAByCIqoOM,Ryan and Miller grapple to the death aboard a flaming boat. tt0126886,OYt6asKb5bw,Mr. McAllister sees Tracy Flick one last time in Washington and chucks a shake at her car. tt0105793,nV9U23YXgiY,Wayne impresses Cassandra by speaking Cantonese while his ex tries to get his attention. tt0105793,FPc4QZqz4ek,Wayne and Garth hang out by the airport and discuss their friendship. tt0105793,CW0Yfk66UxE,Wayne introduces himself and his dreams for his cable access television show. tt0105793,KjB6r-HDDI0,Wayne and Garth explain to Benjamin that they are not in it for the money. tt0092099,KPxDoFbsvWA,Maverick and Goose have a close encounter with an enemy MiG. tt0092099,vdHBsWXaHN8,"Ignoring both Goose and the controllers, Maverick zooms past the tower." tt0092099,wUZxSf_P2r0,"Maverick boasts about his run-in with a MiG, leaving the class and its instructor skeptical." tt0105793,WK--S8kuxOI,Wayne interviews Mr. Vanderhoff on the show but surprises his producers with some very special note cards. tt0092099,o1nS19OOD-U,Viper tells Maverick the truth about his father's death in combat; Maverick considers his future. tt0092099,fC976fuQm4E,"Maverick abandons his wingman to chase Viper, his senior instructor." tt0092099,uvFc0EPRSI4,Maverick outmaneuvers and shoots down a hostile MiG. tt0119081,GSSXEGoO53Y,D.J. tells Captain Miller he believes a message has been sent to them from Hell. tt0119081,rF6a1GG1taY,"An evil Dr. Weir blows a hole in the ship, creating a devastating vacuum." tt0119081,rAchA32z2zM,Captain Miller confronts a mutilated and deranged Dr. Weir. tt0119081,9JHi4K9XfzM,Dr. Weir has a nightmare about his deceased wife as he emerges from a 57-day stasis. tt0119081,EHKfoWh8t6o,Justin enters the ship's core and is sucked into black liquid matter. tt0119081,-nzW1T89qH4,"The ship resurrects a demonic Dr. Weir, but Captain Miller sacrifices himself to blow them both up." tt0119081,W8AmENQ7_ik,Captain Miller and Peters confess that they've been experiencing what Dr. Weir claims are hallucinations. tt0119081,giiuqTdBSTc,Dr. Weir threatens to return the spaceship and all onboard to the evil dimension. tt0119081,3LEa0FN1bf8,Crew members rescue a seemingly possessed Justin from the core. tt0251127,Mg7RrLU3Uq8,"Andie tries naming Ben's ""member,"" but he has something a little more masculine in mind." tt0251127,HcHdy_Vc1DY,Andie shows Ben a fictitious family album of what she thinks they're future children would look like. tt0251127,z3dwJ734jbE,Andie nearly gags when Ben presents her with his home-cooked meat. tt0094898,cHUML0EZ1BQ,Akeem gets some advice about American women from Randy Watson his local barber. tt0094898,a_Txm9dQuhM,Prince Akeem and Semmi check out their new apartment. tt0094898,dI7M4Om2ITw,"Akeem chats up Mr. McDowell about the New York Giants ""most ripping victory.""" tt0094898,m7z0sOBPx3g,Akeem decides to talk to Lisa McDowell while she's trying to work. tt0094898,Md0LvQ9gANc,"Semmi writes a telegram to Zamunda, but the Telegraph Lady finds it very curious." tt0108525,zHjeOiB-cxY,Wayne and Garth scout the location for Waynestock on a dark rainy night and find a problem of Jurassic proportion. tt0108525,9vvMKxDvAt8,Wayne and Garth meet a partial ocular albino who stands between them and a permit for their concert. tt0094898,ExG7Ut6DJ1E,Akeem and Semmi go to a beauty pageant to pick out a bride for Hakeem. Or at least that's what Semmi thinks. tt0094898,f2ygGoHSuPQ,"Akeem spars with Semmi both physically, and verbally, about their views on having a wife." tt0094898,sZywE0AT1qY,The old men in the barber shop argue about boxing. tt0158983,bOR38552MJA,A South Park P.T.A. meeting turns into a song and dance blaming Canada for their children's misbehavior. tt0108525,_E62a_RCtX4,"Because of a dream, Wayne and Garth visit Del to convince him to help with Waynestock." tt0162661,g9vPtCW9pJ8,Baltus tells the tale of how the Hessian Horseman was killed with his own sword. tt0108525,rhtLoA3X21s,"Del sets forth his plan for the rock concert, which includes cyanide capsules in the event of capture." tt0158983,6wJXBUfcIOE,"Mr. Mackey teaches the kids how to ""get back in touch"" through song and dance." tt0158983,4WcOcgc3WN4,"Canada argues with America over the release of Terrance and Phillip and all America can do is laugh about ""aboot.""" tt0083511,xbga181nm84,Reggie and Jack catch Luther and ask him a few questions... The hard way. tt0158983,1DNyLD2SRjA,Terrance and Phillip appear on Conan only to find that they have been setup for arrest via the M.A.C. tt0158983,kTk2jXiuo9s,"Satan tries to break up with Saddam, and Saddam tries to convince him otherwise." tt0083511,HrvHeKH9kLg,"Reggie demands a nice dinner and Jack obliges, by providing a candy bar." tt0094898,IZQFJ6hZNJc,Akeem and Semmi take action when a robber tries to hold up the McDowell's where they work. tt0093010,Yg3w_8_fwIc,Dan plays dead in the park and Alex scares him back. tt0094898,ACV4Krf8JTQ,"King Jaffe Joffer pays a visit to Akeem's apartment in Queens, and catches Semmi off guard." tt0083511,7msu2ugXGW8,Reggie bets Jack that he can go into a redneck bar and get some information about where Ganz is. tt0038650,s_CwatXdxUA,"George wishes that he'd never been born, so Clarence gives him his wish." tt0093010,sJ9nOmRn6fg,"When Dan says goodbye to Alex, he soon realizes that she has slit her wrists." tt0093010,fBaXUdPo_2g,Dan has dinner with Alex and she asks him what he's doing with her if he is married. tt0083511,kvzIRuIg288,Reggie has an entire bar full of rednecks thinking he's a cop. So he decides to have a little fun while he gets what he wants to know. tt0093010,SZ5YPfWeYzA,Alex surprises Dan by announcing that she's pregnant...and she doesn't want an abortion. tt0083511,wsSlB31dwiE,Jack wants to beat the truth out of Reggie about what's really going on between him and Ganz. tt0083511,ALGW3PA12XE,Jack and Reggie finally catch up with Ganz aboard a speeding bus. They chase him down in the Caddy. tt0093010,JS6Gw6NVgRg,Dan defies Alex's requests and threatens to kill her if she tells his wife about their affair. tt0083511,FWEQfN39sTo,Jack and Reggie corner Ganz in an alley. tt0083511,28C0A4CEUsc,Reggie shakes down some rednecks to get information on the whereabouts of Billy Bear. tt0093010,ecWhXP2jM28,Beth comes home to find an unpleasant surprise on the stove. tt0093010,hd521kE7f0A,"Dan tries to drown the crazed, knife-wielding Alex in the bathtub, but Beth saves the day in the end." tt0112573,pKEwvDFqMGw,William tries to save his newlywed wife Murron from an Englishman intent on raping her. tt0112573,gr_OpFxCx-A,William delivers a powerful speech while trying to rally his countrymen to war. tt0112573,ETcMNeJTfOs,William attempts to romance and impress Murron. tt0112573,PD5Imb7vWSc,William leads his men in battle with a cunning move that withstands the charging horsemen. tt0112573,QJVsS-vIDdc,The Scotsmen completely decimate the English in this battle. tt0162661,RN7YPq8i4w0,The Headless Horseman emerges from the Tree of the Dead. tt0112573,1KdjUNIcP8k,"After Mornay has a nightmare about William coming for revenge, he awakes to experience exactly that." tt0112573,sa8E_rZcXho,Princess Isabelle admits her love for William and they spend a passionate night together. tt0162661,X3mBsrFYwjk,Ichabod has a bloody face to face with the Horseman which ends badly for Van Brunt. tt0038650,2rha-6qG4OQ,During a dance party the floor splits in half revealing a giant pool underneath which some guests fall into by accident and others jump right in. tt0162661,2k0mUKGYUQE,Ichabod investigates the newest murder with a group of townsfolk. tt0162661,31Q9JbHAzjA,Ichabod thinks it's silly for Magistrate Philipse to believe in the Horseman... until he comes and kills him. tt0112573,kTXlnI1XaSY,"Princess Isabelle begs William to swear allegiance to England, but his honor will not allow him to." tt0162661,EcOENbnXxQ4,"Ichabod, Katrina, and Young Masbath come across the ""Tree of the Dead.""" tt0112573,i6zGEBhJMHA,"Moments before being beheaded, William screams his last word to the onlooking crowd, ""freedom.""" tt0038650,9fIrXo0raaU,Clarence reveals to George that he is his guardian angel. tt0162661,SI1K-_VTFrQ,Ichabod gets his first terrifying glimpse of who he thinks is the Horseman. tt0038650,TNQ76UyurLA,"Clarence tells George what's really happening to him, but George doesn't believe it." tt0162661,ShQp2Qp6o7s,The entire Killian family become the next victims on the Horseman's list. tt0107211,ttIN2nLcy6s,John encourages Diana during a high-stakes game of craps. tt0038650,X4xJLbsa4PQ,George goes home only to find it empty. Then the police arrive and Bert tries to arrest Clarence. tt0038650,6SLDMMGzkyI,George finds that his wife Mary is an old maid working at the library. tt0038650,u56OqFjs1dg,"George breaks down and prays to God to let him live again, and his wish is granted." tt0162661,dIUK_wn5If4,"Ichabod, Katrina, and Masbath are pursued by the Headless Horsemen." tt0107211,4WNfrd5hsdI,A jealous David goes through Diana's wallet and asks her if she's still in contact with John. tt0162661,TSaU7qATRHM,The Horseman finds a way to get to Baltus without having to enter the church. tt0107211,wJCqOhdzatA,"When two screenwriters overhear Jeremy negotiating a controversial deal with David on the phone, they hire him." tt0038650,OfUV-F9jFro,"George learns a valuable lesson, that no man is a failure who has friends." tt0107211,5rivvvWeYh4,David speaks with Diane about the choices they made as a couple and the consequences that followed. tt0107211,ehdAEyAGBEc,John offers David $1 million for one night with his wife Diana. tt0107211,mklRbf1JoGY,John tells Diana a story from his youth about the girl who got away. tt0064116,j6gLJ4_sfG8,"Frank tracks down Harmonica, who's waiting for him, to find out once and for all what he's really after." tt0107211,gQubL9r0qAQ,John predicts that Diana will enjoy herself and reassures her that nothing will happen that she doesn't choose. tt0107211,pHxvNgorTQA,Diana and David come together on the pier and find their love again at the place where it all began. tt0092007,zZH3OD9d9Sc,Bones has some serious qualms with Kirk's crazy plan to save the world. tt0073802,l7-rpI0RrQU,A baffled Turner tries talking through the conspiracy with Kathy. tt0158983,sNJmfuEWR8w,The boys sing a song about what Brian Boitano would do about saving Terrance and Philip. tt0158983,Jo4XXm8OUP4,Satan sings a song about being able to live above ground on Earth. tt0158983,26oRZCLHR1M,"Dr. Vosknocker introduces the V-chip to the parents of South Park, demonstrating how it works on Cartman." tt0073802,LaIsEAR_R5Y,Kathy helps Turner kidnap J. Higgins. tt0073802,0u0P8j4vLyw,"Turner confronts J. Higgins, and gets little consolation in return." tt0073802,RRJ1EPuYkZQ,Turner gets some dark advice from G. Joubert. tt0073802,KJ4q3cWQPsM,"Because of his constant state of danger, Kathy is afraid of getting too close to Turner." tt0073802,Iaqusi3cAAc,"Turner gets ambushed by a fake delivery man, and shoots and kills him after a difficult battle." tt0073802,9w3E3eFMsLg,"Turner confronts Higgins about the murder of seven innocent people, and the consequences of political games." tt0073802,8yDjtE3wmFs,Kathy and Turner share an intimate moment on the street together. tt0073802,QQJDkZZaA00,"Turner calls for help after witnessing a mass murder, but ends up getting a lot of questions from headquarters." tt0086465,vkkM9YAJ-Ts,"Billy breaks a $35,000 vase only to make the Duke's $15,000 on the insurance claim." tt0086465,KKzWTwJwrGc,"Louis is let out of jail, but his girlfriend is disgusted by his shabby appearance and his hooker admirer." tt0076666,WUuTs5CXP3U,"When Tony meets Stephanie and tries to flirt with her, he quickly realizes she's not an easy conquest." tt0086465,uI4fVgVVpiw,Billy educates the Duke Brothers on the real reason for price decline on pork bellies during the Christmas season. tt0076666,Wl_vyjME-ug,"Tony is proud to announce that he received a raise at his job, but his father disparages the amount." tt0086465,9B3TN2rEckQ,Billy enjoys a nice meal with the Duke Brothers while a rain soaked Louis peers through the window. tt0080678,V5ej5BJ55us,Treves questions Bytes about Merrick's injuries. tt0076666,Cvl0iKbdV6A,The dance floor is cleared as Tony and Stephanie work their disco moves. tt0086465,DKtjBqJ4NxA,"Billy gets busted by the cops for pan-handling in disguise as a blind, crippled Vietnam War veteran." tt0076666,se9hqOIp810,"Tony, Annette and Joey are nervous when Bobby goofs off on the bridge...and slips." tt0080678,gADayU4DP9U,"Bytes spins a wild yarn about the origin of the Elephant Man, but Treves is moved to tears by the deformed man." tt0086465,wjkdynBFHuQ,Billy discovers the true nature of Mortimer and Randolph Duke. tt0080678,PT-2kB0dajE,Treves and Mothershead discuss Merrick's visitors and the dignity he deserves. tt0083511,ZdN6HbD0paY,Jack gets Reggie released from jail in order to find Ganz. tt0251127,W2Q27LruEnA,Andie completely embarrasses Ben at his guy's poker night. tt0251127,9PpBLxJLihI,"At a vegetarian restaurant, Andie pulls off a diversion to sneak back and watch the Knicks basketball game." tt0251127,AkOcZ0S8vDg,Andie embarrasses Ben by visiting him at work and bringing their new dog. tt0251127,nVhrWyZtYFk,Ben catches up to Andie and convinces her to stay with him. tt0251127,BiQ0NRRraIc,"After the truth about her article is revealed, Ben dumps Andie." tt0038650,uAERYfeiYBc,George regales Mary with all of his dreams for the future. tt0105112,AKOtvcIssZk,"Jack Ryan tries to warn his wife to get off the freeway, but Miller makes her have a serious accident." tt0105112,7mtTvR0Rg_8,Jack Ryan threatens Paddy O'Neil for hurting his family. tt0092099,9s-a1vp4LLk,Iceman and Maverick are reconciled and Maverick decides to become a Top Gun instructor. tt0086465,jLo7tHDHgOc,Louis has a hard time pawning his Swiss sports watch. tt0092007,TVOIig2xLq8,Commander Chekov is confused by his FBI interrogator and decides to make a run for it. tt0086465,Od4nSd9AVH8,Louis eats his Christmas dinner on the bus and tries to commit suicide. tt0092007,02Or-Hx3yqc,Bones is disgusted by primitive medicine while trying to smuggle Chekov out of the hospital. tt0092099,p890hIa1w9k,Viper likes Maverick's arrogance. tt0108525,8aXqgoiVb8E,"In a radio interview, Wayne and Garth poke fun at the host, Handsome Dan." tt0108525,52FdiECWnhQ,Garth makes a love connection with Honey Hornee at the laundromat. tt0108525,gXQhdB1y674,"Wayne and Garth play a joke on the drive thru guy, but it backfires." tt0105793,4m2WutlqBk0,Wayne and Garth discuss Cassandra and Bugs Bunny's sex appeal. tt0109444,W4xO0k9LcIU,A training operation tests a Rainbow Six operative's skills. The sniper manages to best them without being detected. tt0105793,8Qi3JERmk9E,Garth plays a wicked drum solo at the Guitar Store. tt0105793,74M0hPAeFHs,Cassandra professes her love for Wayne. tt0105793,o5FT3IGXtAk,Wayne and Garth make it backstage to hang with their idol Alice Cooper. tt0099371,AGk2Hr3GcS8,Cole Trickle blows everyone away on his first ride around the track. tt0109444,dKsDjpKr2Mk,Director of Intelligence Jack Ryan squares off with Robert Ritter regarding the authorization of a covert operation. tt0109444,i7tGEEWQIhQ,Jack Ryan accuses U.S. President Bennett of orchestrating a cover-up that cost American lives. tt0109444,HppKwvQMZ4M,Admiral James Greer reminds Jack Ryan of his sworn oath to stand up for the people of the United States. tt0109444,ZJlmYy-mAZY,"Jack Ryan is riding in his motorcade when he notices a suspicious biker. Moments later, his caravan is ambushed from all sides." tt0088286,61AWnIZrT5g,Agent Cedric arrives at the hotel in the scrap-metal remains of his vehicle. tt0126886,jA0RnDQiFbQ,Mr. McAllister and Tracy threaten each other with the dirt they have on each other. tt0109444,5XP3MonWebI,The United States executes a covert operation to bomb the household of a known Colombian drug cartel family. tt0109444,T7pci4SIGCo,Benjamin Bratt and Raymond Cruz discover a secret cocaine bunker and detonate it. tt0109444,PqtjbWJPIgQ,Jack Ryan tries to rent a helicopter for his pilot. tt0126886,J07_XVy9Hns,"Paul angers his sister Tammy by dating Lisa, so she decides to disrupt his campaign." tt0109444,0668UNhYjXg,Jack Ryan breaks into Robert Ritter's computer and unfolds a massive government cover-up. tt0126886,wPSEC3PpLuM,Mr. McAllister is forced to resign over his tampering with the student election. tt0097815,RH3I-IE0Xhw,"The team plays a prank on Willie Mays Hays, and while he impresses everyone with his running, his hitting leaves much to be desired." tt0097815,bBaNdHqC_Yo,"Vaughn makes a good impression with his arm, if not his wardrobe." tt0097815,g_wc9JvTXGc,"Vaughn makes his major league debut on the mound, and immediately earns the nickname of ""Wild Thing.""" tt0097815,rBsvuoQMmuo,The Cleveland Indians struggle to overcome their problems during spring training. tt0097815,XDZ_lSJjgvk,"Brown reveals a cardboard cut-out of Rachel, motivating the guys to win, and the team films a television commercial." tt0097815,yBBKcecvEcM,"With Ross out with an injury, Vaughn is one out away from his first victory, so the Cleveland fans start a two-man wave." tt0097815,kL4cEH2JdQQ,"Brown gives a speech to the team on opening day, informing everyone that they're expected to come in dead last." tt0322802,jMaeuWl4qHM,"Johnny Knoxville, dressed as an elderly man, goes bonkers shoplifting in a convenient store." tt0322802,hGOHE1zqEmY,An x-ray on Ryan Dunn reveals a toy car stuck in his rectum. tt0097815,Pdjgdb-OxY8,Vaughn learns some tricks of the pitching trade from veteran Harris. tt0322802,LWWG1eKmylY,Steve-O attempts to cross over an alligator pit on a tightrope with raw meat hanging out of his jock strap. tt0322802,7C1Pr4AU2wc,Johnny Knoxville takes out an airhorn on a golf course to disrupt golfers' swings. tt0322802,Drva4gp66lc,April Margera is terrified when she comes home to find an alligator in the kitchen. tt0322802,t_lvc5iBnNg,Johnny Knoxville attempts to ride down a rail on a skateboard. tt0322802,sSHxFSaOV-o,Steve-O vomits at a sushi bar after snorting wasabi. tt0322802,ezj13E-cX9I,Johnny Knoxville places bottle rockets on his rollerblades. tt0080678,JxRj80eLkMc,Merrick proves to Mr. Gomm and Treves that he can communicate. tt0080678,f783E8Zi8Q4,"Merrick enjoys tea with members of London society, but they are very uncomfortable by his appearance." tt0080678,uqg7Ow4SNk8,"As Merrick tries to leave the train station, he is pursued by children and men who are frightened by his appearance." tt0080678,qj_NSmG9m5E,"In a late night epiphany, Treves realizes that he has more in common with the wicked Mr. Bytes than he supposed." tt0146316,pBNKarJukms,Lara takes a shower and rejects the fancy attire picked out for her by Hillary. tt0080678,niFndjwElIY,Mr. Gomm is pleased to give John Merrick a permanent home at London Hospital. tt0146316,h1-T9LYq1hI,Lara gets no help from the men as she tries to defeat a giant six-armed statue. tt0146316,nzjEYhUtRGc,"Relying on Bryce for surveillance, Lara takes out a number of henchman, but not before they get what they came for." tt0146316,_fJArvSVqEo,"By completing the triangle, Lara is able to travel through time and speak with her father one last time." tt0146316,2Wlur8mxYP0,"Lara, Manfred and Alex must work together to defeat an army of statues come to life." tt0146316,fGkSjNHEecA,Lara and Alex race to find the remaining piece of the triangle as the solar eclipse approaches. tt0049833,4cJs-f3NC6s,"Moses is arrested and brought before Sethi. Moses claims he is not the deliverer, but would free the slaves if he could." tt0146316,tnhW2iYL25k,"Manfred produces a pocket watch that belonged to Lara's father, so Lara stays behind to finish him off." tt0049833,92ygYJw9CSE,"After the Pharaoh declares all newborn Hebrew males be killed, Yochabel hides baby Moses in a basket and sends him down the Nile." tt0049833,zUm6rC0o7Po,"Moses is summoned up Mount Sinai and hears the voice of God through the burning bush, instructing him to return to Egypt and free the Hebrews." tt0049833,MnBarCQ9BE4,"Much to the dismay of Bithiah, Moses confronts Yochabel asking if he's her real son. She first denies a son who can worship an idol, but her maternal love caves in." tt0049833,QrRTUOebEpU,"Rameses exiles Moses to the desert, which is to be his new ""kingdom.""" tt0049833,ahkwQhQZWG8,"Moses goes to the court of the Pharaoh demanding he let his people go. Moses turns his sceptre into a serpent, which swallows the serpents of the Pharaoh." tt0758758,xRtjf4AE2-4,Jan has a heart-to-heart talk with Chris about her own runaway son. Chris spends a day with Tracy. tt0049833,OqCTq3EeDcY,Moses parts the Red Sea for the Hebrews to escape the Egyptians' pursuit. tt0049833,OYeox3LLQ08,Moses besets Egypt with a plague that turns the Nile River into blood. tt0758758,I70sIrfz0_c,"Chris realizes too late that he's eaten poisonous berries. He falls into a weakened, emaciated state." tt0758758,NL4WWmwdV6g,"After staring at him longingly, Tracy introduces herself to Chris in the R.V. park." tt0758758,dZbWmnVOhbA,"Spurred on by Rainey, Chris overcomes his fear of water by swimming in the sea with Jan." tt0076666,VdlxHA_WLn4,Tony's brother Frank Jr. returns home and announces that he's leaving the priesthood. tt0758758,AhAHDaOGHFI,Old man Ron is inspired to run up a hill to join Chris at the top. tt0758758,1U_GoiFy6kw,Ron drops Chris off before he starts his Alaskan adventure and has a heartfelt goodbye plea. tt0076666,GSruhwZsc9c,The Manero family argues over dinner and discusses Frank's ongoing unemployment. tt0076666,mzZgTmwmkfo,"Stephanie agres to be Tony's dance partner, but nothing more, because he's a low-class kid who isn't going anywhere in life." tt0064116,lyuwBW9lNa8,Harmonica gets dropped off at the train station with three assassins including Stony waiting for him. All three are gunned down by Harmonica in a shootout. tt0076666,vyQHWSbBCcQ,Tony and his buddies drive their car into the Barracuda's club to avenge their friend Gus. tt0064116,_ptjc9Vono4,Frank and his henchmen murder Brett McBain and his three children. tt0076666,vrf1MjmWFRY,Tony confronts Stephanie about her relationship with a man she used to work with. tt0064116,_kD54-q1uFM,Harmonica has a flashback to the death of his older brother at the hands of a younger Frank. tt0064116,VtPoKS5cCL8,"As Jill fetches water at the well, Harmonica guns down two assassins. Cheyenne appreciates Harmonica's skill with a gun." tt0064116,9vUcfymkjNY,Frank kills some of Morton's hired assassins in the street after being tipped off by Harmonica. tt0064116,ftmRf0AY8Co,Frank seduces Jill while holding her captive. tt1046173,_JZ7U3FsOJ4,"The Baroness and Storm Shadow steal an advanced weapons prototype from the G.I. Joe team, leaving chaos in their wake." tt0064116,98wG4OA6iLw,Harmonica gets his long waited vengeance by killing Frank in a showdown. tt1046173,iNUv6pnKd5s,It takes G.I. Joe teamwork to bring down The Baroness' armored SUV. tt1046173,SW2HRaFUXV4,"The G.I. Joe team makes their explosive entrance, saving Duke in the nick of time." tt1046173,k-Rg51azVlg,"Piloting the Night Raven, Ripcord shoots down a deadly missile, saving Washington D.C." tt0080339,g0j2dVuhr6s,"When a flight attendant struggles to understand her jive-talking passengers, a friendly old lady steps in." tt0080339,vkdH0nuDWX4,Randy despairs that she'll never be married and Striker doubts his ability to land the plane. tt0080339,a5QBuJla5do,Striker tries his best to land the plane despite little help from everyone around him. tt0120770,Bpw7M2Heuk0,"Steve and Doug love their mother, but have some conflicts with their father." tt0080339,AZ2EPeq1TK0,Two dueling loudspeaker announcers get territorial. tt0120770,6LOwktvZlCc,Emily tries to hook up with Steve. tt0080339,n2A194yTWoQ,A boy riles co-pilot Kareem Abdul-Jabbar while Captain Oveur reveals a dark side. tt0080339,NfDUkR3DOFw,"As the plane taxis to the runway, there is confusion among the pilots due to their names." tt0120770,gMBEqbV0mw4,Steve explains to his father why he has trouble communicating with Doug. tt0120770,1nLc8ZZUKCg,Steve makes some serious faux pas at his wedding. tt0120770,ncDQvy5GoK8,Emily gets really turned on when talking to Steve about career goals. tt0120770,Ls9p2CEVQMo,"Doug and Steve ask the girls out again, but the Butabis are rejected when the girls realize that they are not rich." tt0120770,s6pAWtuEIR8,"Emily asks Steve to make a toast to their wedding, but Steve gets increasingly nervous about his impending wedding." tt0118771,nGSrqmJr1Y0,"Jeff breaks free from duct tape bonds, stabs Earl in the neck and ties him up." tt0092644,Oq3cGgqbWG8,Axel convinces Inspector Todd to give him more money for his undercover operation. tt0092644,5AsYaSut428,Axel turns the tables on Carlotta after he recognizes him from the cigarette bust in 1984. tt0092644,wXf_eaQcSdM,Axel tricks Sidney Bernstein into leaving his office so he can snoop through his computer. tt0115641,MdQC-DD9fz4,"Beavis chats with an old lady about the ""slots"" in Las Vegas, which he interprets as ""sluts.""" tt0092644,JCnZaM2qKYE,"Axel cons Lutz into thinking that he is ""Johnny Wishbone"" a psychic from the island of St. Croix." tt0115641,fqtFUIQ7oWA,Beavis and Butthead dream they are giants destroying the city. tt0115641,XvVhKYmr8cE,Mr. Van tries to inspire Beavis and Butthead into seeing a world beyond TV. tt0084434,goikm-zX9r8,Zack carries Paula out of the factory. tt0084434,6lGs-tXWpR4,The Sergeant makes life hard for new recruit Sid Worley. tt0084434,vuuTS_WNw5w,"Zack is ridiculed by his new sergeant, who also uncovers his tattoo." tt0084434,nXJxxahiC3A,Sergeant Foley tries to break down Zack by badmouthing him and bringing up his past. tt0084434,aU-Qp-5TsB4,Zack calls Betty out on her lies and deceit. tt0094744,6Q2rF2uAH6g,Pee-Wee and Vance tinker in their greenhouse. tt0094744,MCkKihQrNA4,Pee-Wee gets frustrated waiting for his turn at the store and upsets Cock. tt0084434,6g2JN2PrHJg,Zack pleads with his sergeant to let him stay in the only place he's got... the military. tt0054698,uirBWk-qd9A,Fred hears Holly singing on the fire escape below his apartment and goes out to listen. tt0094744,DWoQcfvV1Zw,The entire cast of circus folk sing a song about finding love under the big top. tt0094744,iTiWC8GpOgM,Pee-Wee and Winnie have a picnic. tt0094744,AwgrZd_BjtE,The girls go wild for Pee-Wee when his disguise fails as he tries to leave his show undercover. tt0094744,_3K4VtyM3xg,Pee-Wee and Gina share a really long kiss. Winnie catches them. tt0115641,kWoC8yYqPJk,"Beavis and Butthead meet Dallas, the wife they are supposed to kill." tt0094744,aSUmLsp97mE,Pee-Wee is entranced when introduces to Gina by Mace. tt0115641,knL5zY1LRqw,"Butthead meets Chelsea Clinton at the White House and Beavis wreaks havoc as ""Cornholio.""" tt0092644,NXG6CKgSNdc,Axel pretends he is delivering an explosive package to finagle himself into the Beverly Hills Shooting Club. tt0115641,eN4fDGHpf_c,"As Beavis and Butthead die in the desert, their sorry lives flash before their eyes." tt0115641,YkjmtfQVzWU,"President Clinton appoints Beavis and Butthead to the Bureau of Alcohol, Tobacco and Firearms." tt0118771,o4Dly22Kcfs,"When Earl pulls a rifle on Jeff, he escapes by driving into the river." tt0118771,fRCKKlTNxt8,"Jeff finds the trucker who gave his wife a ride. But when he forces Red to pull over, Red claims to have never met them." tt0118771,0lInUr7VgCM,Jeff finally turns the tables on Earl. Amy finishes him off. tt0118771,ZlFSjq7eU4Y,"The Sheriff pulls Jeff over. Earl breaks free and shoots the Sheriff, but the Sheriff shoots him back." tt0092644,r-zlkOg6_Zw,Axel makes a thug rap before Rosewood knocks him senseless. tt0118771,2YNlWDv95EY,Jeff pulls a gun on Red and his family in their kitchen. tt0054698,rVFi-yeTe5g,"When Holly and Fred can't afford anything at Tiffany's, the salesman offers to engrave something." tt0054698,fL4j9mZfUdg,Holly is reunited with her cat and Paul. tt0118771,npwnO-yPp8g,"Jeff rescues Amy from the freezer, and locks up Red and his family." tt0054698,PMVqjEj9eKI,Holly explains to Doc that he creates a difficult road of heartache for himself because of his love for wild things. tt0118771,aMBtKhTlQHk,"Jeff and Amy hit the road, but getting away from Red and the gang proves to be difficult." tt0497116,NXMarwAusY4,Al Gore explains how vulnerable the earth's atmosphere is and how we're capable of changing its composition. tt0054698,L_TvaJulWx0,"After Holly tosses the cat out in the rain, Fred stops the taxi and is brutally honest with her before leaving." tt0497116,xtyieNg18O0,Al Gore explains how Professor Roger Revelle used weather balloons to measure carbon dioxide in the atmosphere. tt0497116,yRLCUdWuyng,Al Gore demonstrates how global warming has contributed to the re-emergence of old diseases and has also created new strains. tt0497116,FzQ0GeLVLhk,Al Gore shows how the U.S. is by far the largest contributor to global warming. tt0497116,6hFxG-8I0Go,"Al Gore demonstrates how rapidly the glaciers are melting as an effect of global warming, and how this will eventually lead to water shortage." tt0497116,Lzx24hw_K5I,Al Gore reflects on how the Hurricane Katrina disaster was predicted by scientists and essentially ignored. tt0112697,Yf7MT1p1VNI,Cher debates immigration policy with Amber by using a garden party anecdote. tt0497116,vTFuGHWTIqI,Al Gore demonstrates how the ocean absorbs the sun rays and subsequently melts the ice caps. tt0112697,TDrGHP9Z8vw,Cher explains to her classmates and Ms. Stoeger why their school's physical education department is a disgrace. tt0112697,m8-_aJ1BiFE,Travis gives an impromptu acceptance speech for achieving the most tardies in Mr. Hall's class. tt0112697,QPzZIJ-4Cq4,Cher and Dionne talk on their cell phones while walking down the hall; Cher tells about her mother. tt0112697,0_ArO8UCfyk,Josh asks Cher how she feels about him and they share a kiss. tt0112697,iuL2loyB1bk,Murray and Dionne help explain why Christian didn't seal the deal with Cher. tt0091159,h9jsnAD4aNw,The autoworkers balk when their new Japanese bosses attempt to lead a session of jumping jacks. tt0112697,lW2JBJSaXUI,"During driving practice, Dionne accidentally takes Murray and Cher on the freeway." tt0091159,Om3C1EpHLGs,"Insisting the cars built together represent something pretty great,"" Hunt attempts to drive off in one." tt0091159,HzAzwbkW7tw,Hunt and Buster come to blows in a supermarket over their Japanese management. tt0119215,mqkqDSAIaBY,Ed dreams of hamburgers that talk and fly with him. tt0091159,KlWlhyX6rb0,"Invoking a high-school basketball game, Hunt delivers a rousing speech to the autoworkers." tt0119215,4PXcUkIkulo,Ed asks Monique out for the cowardly Dexter. tt0119215,jzasSSMjsxY,Dexter makes Ed swear never to tell anyone the secrets of his famous sauce. tt0119215,4t8bAQ-cGZM,Three Mondo Burger employees stop by to rub in the demise of Good Burger. tt0119215,umIEp9WZI9E,Ed foils an angry customer who asked for no toppings on his hamburger. tt0104695,dvmqIBOExp8,Jonas tells Boyd he needs to help himself and not rely on God. tt0119215,sRk8Aentzic,Ed explains his brilliant plan to foil Mondo Burger. tt0119215,dXj2MnkN2nA,Ed is overwhelmed by a particularly complicated order. tt0119215,EwSSmKP7ADQ,Ed talks to a dog and finds out there is something wrong with Mondo Burger's meat. tt0275022,JlaTtF1rdVo,The girls dig up their childhood time capsule and argue when a pregnant Mimi says she's going to an audition in California. tt0104695,lAlJRP1W_rU,Jonas has an angry chat with his Maker. tt0104695,vWNDQxvY3iU,Jonas tells an inspiring story about faith in God at his tent meeting. tt0116313,esHt1mAYF-g,"Elise, Annie and Brenda have a battle of the insults and finish it off with a slap-off." tt0091790,t8HQInlblys,Blane asks Andie to the prom and she answers with a passionate kiss. tt0119215,SOBvUyimDo0,"Ed says goodbye, though no one is leaving." tt0368709,jrf263yJwic,Claire helps Drew accept his failure. tt0091790,uBf-pbxHb7Y,Iona describes her passionate kiss with Duckie to Andie. tt0368709,C2pUVmGEEeM,Drew convinces Claire that she deserves a better man and kisses her. tt0368709,inrI2qvps58,Phil shows Drew the massive repercussions caused by his failed product. tt0368709,87idpAngKc0,Drew has a very complicated and stressful three-way call. tt0492619,v8c2XZdCS_A,Fred tries to convince a babe to join his Tae Kwon Do class by showing off a trophy and dissing Ju-Jitsu. tt0368709,o1SrrJNjIh8,Hollie tells a humorous story about her late husband's friend Bob. tt0492619,pYI0bXZVZek,Fred turns down Suzie's request for a reconciliation and urinates on his wedding ring. tt0368709,uCV1-C_0vC8,Drew and Claire talk about the meaning of names. tt0087277,lHtMdj1rZks,Ariel comes on to a hesitant Ren and asks him if he wants to kiss her. tt0088286,ySEkuf94my4,"On a train into East Germany, Nick does some landscape painting, practices German and meets his authoritarian hosts." tt0088286,KSZwlMDSOvY,Nick and Hillary acknowledge the silliness of their story. tt0088286,qjhh_5PMBZs,Nick's execution is called off just in time. tt0088286,vPB2g1y2VFk,Agent Cedric receives instructions from a blind party-tricks vendor. tt0096061,Je4QCA5KCuc,Frank fires Loudermilk even though it's Christmas. He gives everyone on his list a bath towel or VCR. tt0063518,-NkNYd_ku_8,Romeo romances Juliet at her family's masquerade ball. tt0096061,gprLI38JwQ0,"Television executive Frank Cross berates his employees for what he feels is a totally sucky ""Scrooge"" promo." tt0167427,-RBjiJto4hc,"Mary wins the St. Monica High talent show and rubs it in to her nemesis, Evian" tt0332379,4QagAGmJcnE,Ms. Mullins tells Dewey how the pressure at school has turned her into a nasty person. tt0096061,Ak1dPU8uXiE,Frank is beaten up by the kindly Ghost of Christmas Present to get his attention. tt0096061,mvmAa1cYZK4,"Frank shows his team what kind of ""Scrooge"" promo he would create, involving terrorists, murder and nuclear explosions." tt0096061,Vc_4eoSHwK8,"Frank receives an unsettling visit from the ghost of his old boss, Lew Hayward." tt0088286,-MEOfLvOuas,The Torch lays out the strategy for the rescue mission. tt0259711,GeOcsY8foxI,David is terrified when he wakes up and finds Julie in bed with him claiming to be Sofia. tt0162650,iVoG7CivnH0,Walter meets Peoples while he stays the night in jail. tt0108550,yjlZPv-37h0,Arnie disrupts Ken Carver's funeral when he gets excited about Burger Barn. tt0088286,MfRi-a8hPh0,Nick and the Torch duke it out in an undersea saloon. tt0185014,OWYSE2bKbNo,"When Dr. Gaskell's dog Poe attacks Prof. Tripp, James thinks his only option is to shoot him." tt0332379,6UV_5HvpmgY,"Dewey lets the kids in on his secret ""Rock Band"" project, which will test their hearts, brains and minds." tt0332379,_xiz8CnP1-0,"Dewey sets up a new schedule to teach the students about music that ""rocks""." tt0259711,5ut37zda30I,"Sofia offers to help a disfigured David, but warns him that she can easily fall out of love with him." tt0259711,5gMuofAdW6A,Sofia and David flirt in her kitchen and exchange nicknames. tt0443706,p2esJ_ypn7Y,"Following an anonymous lead, Robert goes down into the basement of Bob Vaughn's house." tt0332379,ctTSLWXE58o,Dewey tells the Battle of The Bands director that his students are terminally ill so he'll let them play in the competition. tt0081696,Ustq_iSIqgQ,"Uncle Bob provides some wisdom to Bob about pride, forgiveness, and love. Later, there is an explosion at the plant." tt0094006,K4czoAgsH-0,Watts tells Keith that they need to spend less time with each other. tt0116313,lD1XDCbhtn0,Dr. Leslie Rosen wants Annie to let it all out and hit her. tt0116313,aPrURpNEtkg,"The gals have an alcohol-soaked conversation about love, beauty and youth over lunch." tt0094006,YTds2jCQHKA,"Keith embarrasses Hardy at a party, and Amanda puts in her two cents as well." tt0119978,oQAY2uslGuI,Rudy receives a tongue-lashing from Judge Hale for appearing in court without a license. tt0119978,TpOPvupzWow,"Rudy attempts to conduct his deposition, but the opposing counsel makes it difficult." tt0119978,NXvcleOF798,"After screening a video statement from his client's dead son, Rudy appeals to the jury to ""do what's right.""" tt0102517,Eyh5RlXHBLU,"Ed, sick in the hospital, asks Wally to coach the team for him in his absence." tt0119978,p-Kyr2Ibq3c,"Rudy gets a late-night phone call from Deck, who crows about a piece of good news." tt0063374,c9xahfssbQg,Oscar and the guys speculate on what kind of harm Felix may do to himself while locked in the bathroom. tt0110622,_ZJUuDLqjzU,Frank has a standoff with Rocco at the Oscars ceremony. tt0063374,GtV5-2QXj9Y,Oscar goads Felix into throwing and breaking a cup which causes Felix to hurt his arm. tt0101272,Mw0IakmQri0,"Gomez and the fake Uncle Fester dance the ""Dance of Brotherly Love.""" tt0063374,g-Yufp_dafk,Oscar intentionally steps on the vacuum cord to mess with Felix. tt0063374,f_5nHV8FJyI,Felix uses a special technique to clean out his sinuses in a crowded restaurant while Oscar looks on. tt0090329,hdW1BlDtcyU,Schaeffer is forced to surrender when the Amish men come to Book's rescue. tt0398165,E4s5mJQr94E,"After football practice, Ms. Tucker and the girls"" perform their newest cheer for Paul." tt0090329,J215p0P-ieA,A young Amish boy witnesses a murder in the bathroom. tt0259711,_TRUBZVUg8k,"Brian has a near death experience, but David's life flashes before his eyes." tt0090329,TDoj_T5cYhE,Book finds a creative way to kill one of the dirty cops. tt0086425,ltwRv-C1EFQ,"Aurora comes back from a date with Garrett offended and disgusted, but there's still something about him..." tt0167427,WsPcC5TGxlA,Father Ritley gives a warning about venereal disease. Mary gives her backup dancers a pep talk before their performance at the talent show. tt0372588,iKqGXeX9LhQ,"After getting really drunk, Gary stumbles down an alley where he nearly drowns in his own vomit." tt0112572,Qf8im5NX7JE,"Jealous Jan dreams of cutting off Marsha's hair, but it all backfires." tt0046250,I3Mg_5wqewU,"Princess Ann wakes up confused in Joe's apartment, wearing his pajamas." tt0196229,NQ-8IuUkJJc,Mugatu presents a model for the Center For Kids Who Can't Read Good to Zoolander who is horrified at the size. tt0443706,fh1Y30QwRGE,"Toschi brushes Paul aside, angered by his meddling in the case." tt0372588,TmoeZHnOJKA,Gary joins Team America as they leave on their mission to police the world. tt0091790,nxHTPahkN6M,Andie has a fight with her father about her mother leaving. tt0091790,17dU___xcdA,Duckie gets thrown into the girls' bathroom where he complains about the inequalities between boys and girls. tt0116313,noq0Lb6lVEI,The gals sneak into Morton's apartment and panic when Gunilla warns them to escape upon his return. tt0196229,Wv_JTjYYaQI,"Derek and Hansel define the Earth To"" phrase to Matilda." tt0091790,hA0OlCQLC0Q,Duckie stands up for Andie and fights Steff tt0213790,w-DFg1aS_2E,"When the V.S.A. attempt to separate Leon from his manhood, he explains why he did the things he did." tt0213790,itdD328hLuQ,Leon and Julie visit various radio stations to have them sample Leon's demo tape. tt0086425,NIrF-rsXWJM,"An inebriated Garrett takes Aurora on a drive on the beach, and later gets busted for feeling her up." tt0082766,7n1uwzYOBa0,Christina stands up to Joan after she lies about why she had to leave school to a reporter. tt0086425,YYSAcTkd5B8,Garrett breaks things off with Aurora when things start to get too serious between them. tt0213790,-wSYsQS2-NU,Lance teaches the group to subdue their defeatist attitude. tt0086425,GxQPnTqPeVM,"Emma is convinced that her husband Flap is having an affair, but he assures her that she's just being paranoid." tt0086425,oCDk1jDXZnM,Garrett convinces an uptight Aurora to have a drink on their date. tt0119978,hDH1ilg9NMU,Miss Birdie instructs Rudy to leave her estate to a televangelist. tt0162650,JO-L1PjLp5M,"When Walter is granted bail, Shaft shows his displeasure by throwing his badge at the judge." tt0108550,yRess0-DpRk,Becky explains the peculiar mating habits of the praying mantis to Gilbert. tt0108550,vKLbd6LeUv8,Gilbert apologizes to Becky for Arnie dropping her groceries. tt0492619,_c97olSX4hE,Mike McAlister makes a guest appearance at Tae Kwon Do class and has a talk with Julio and Henry before a road trip. tt0046250,3lz4BuydE-Y,Princess Ann and Joe share an intimate moment in front of the crowd as she states her favorite Italian city. tt0095705,73ZsDdK0sTI,"Posing as an opera tenor, Drebin butchers the national anthem." tt0046250,6af1dAc9rXo,"Joe tricks a frightened Princess Ann into believing his hand was eaten off by a statue called ""The Mouth of Truth.""" tt0162650,VdG34y8kUyc,Things get a little rough when Shaft puts Walter Wade Jr. in jail overnight. tt0372588,QQOWp3tLb2s,"While Sean Penn sics some ""panthers"" on Joe and Sarah, Gary confronts the evil Susan Sarandon." tt0185014,q5rs99ZpXCM,"While trying to save Prof. Tripp from Vernon, Terry destroys Prof. Tripp's script." tt0185014,9DLcDirhBAk,Prof. Tripp confesses his affair with Dean Gaskell to James. tt0185014,I8PLjzTzy08,Hannah tells Prof. Tripp that she read his script and suggests that he write while sober. tt0162650,xCnFME3JqIk,Shaft and Peoples go toe to toe in a final showdown at the docks. tt0102510,O6DFHh2XxLk,Dr. Meinheimer's wheelchair goes haywire and takes flight. tt0185014,JBGkwf707Ls,"When James mentions that he sleeps at the bus station, Prof. Tripp decides to take him under his care." tt0073802,TYEvhdLuW-U,Turner confronts Leonard and reaches an epiphany on his own about oil. tt0102510,rJWLdQ9vylA,Drebin interrogates a series of almost dead guys who seem quite helpful in leading him to Hapsburg. tt0185014,AlV_R7v4DFI,James shows off his knowledge of movie suicides. tt0102510,Njwqb3iGNto,Drebin has a final showdown with Hapsburg. tt0102510,GUwhnO-nTLo,Hocken tries to cheer up Drebin when things go bad with Jane. tt0102510,Nz1NJ3fhso0,"While Hector Savage gives his demands to the Captain, Frank crashes through in the police tank." tt0102510,wG6wio8azyE,Drebin runs into Jane again and has some very strange thoughts. tt0185014,rJodsSNioXY,Prof. Tripp finally knows where he wants to go and he has someone to help him get there. tt0056217,TDMdoNM-pBU,Ransom gives some ill-received legal advice to the marshal. tt0056217,U49MXakb7f4,"Tom calls Ransom a persistent cuss when he sees his ""attorney-at-law"" sign." tt0095705,pdE83FX-Mto,"Forgetting he's miked up, Drebin broadcasts his bathroom noises to a press conference." tt0095705,nTh9qpzhunE,Drebin trades bribes with a dock worker. tt0102768,FuE5BaM0BdM,Henry tries to make up for his dishonest legal past by giving up some crucial evidence to the other party. tt0056217,363ZAmQEA84,Maxwell rips up Ransom's story and throws it in the furnace before delivering a potent message about The West. tt0163187,pJ6XiEEJndw,Ike rehearses his version of an authentic marriage proposal to Maggie. tt0095705,tippFPLwGgI,A gathering of nefarious world leaders plots to strike the United States. tt0095705,5cU6TxpG_p4,Drebin commandeers a driving-school vehicle with an unflappable instructor. tt0090329,AcEe0LbP2wY,Mr. Lapp gives Samuel a lecture on guns and violence. tt0063374,IT3BdhTyVXs,Oscar shares his spoiled food with the guys as they play a game of cards. tt0063374,NXqs_wYohxM,"Felix cleans the room and Oscar destroys the room, in this quiet battle of wills." tt0063374,7VO2NcQl2-g,Oscar finally breaks down after Felix's unrelenting cleaning habits get the best of their friendship. tt0063522,P10AWBi4-y8,Roman invites Rosemary to rock her baby. tt0063374,MfeSSw69cC4,Oscar and Felix get in a heated argument about the cleanliness in the apartment. tt0063522,4l1Yek0Z1FQ,"Dining with Rosemary and Guy, Hutch relates the vile history of their new apartment." tt0063522,1BRteOP9UL8,Rosemary wakes from a dream of motherhood to find that her husband has arrived to reclaim her. tt0081283,EcxB2iCU3w8,Beth is uncomfortable and hesitant to have a picture taken with her son Conrad. tt0108550,Yf_toKBYCl4,The Grape family has to deal with one of Arnie's episodes. tt0081283,yOpsJ8dh5L4,Jeannine ask Conrad about his suicide attempt. tt0063522,kye191FZmeU,Rosemary refuses to believe that her newborn is dead. tt0074174,Oc2xTMnIwrI,Amanda is heartbroken when Buttermaker refuses to have her around for company. tt0081283,2_SfD5cdrnw,"Calvin comes to a realization about his life, his wife, and their life together." tt0108550,Kf-JPkSfjug,Gilbert comes home and has a conversation with his mom about not leaving again. tt0101272,eBxVWEnuSC0,The impostor Uncle Fester is distressed by dinner with the Addams family. tt0093748,_akwHYMdbsM,Del almost kills Neal by driving down the wrong side of the highway. tt0108550,I5kkwmOapss,Becky tries to get Arnie and Gilbert to let loose by going for a dip. tt0110622,3XeLFSaoyAk,A dream sequence illuminates the words that Frank writes in a letter to Jane from prison. tt0093748,S9RbwDvpqD4,"As their rental car burns up, Neal realizes that it was rented on his credit card." tt0074174,K2qNJ7IzzqE,Coach Buttermaker realizes he's gone too far after he yells at the team. tt0116313,ML1_2lHFftE,Annie learns that her husband is divorcing her for her therapist. tt0332379,vbF4qz_-PCM,Dewey teaches his class what it means to have a hangover and tears up their class rules. tt0091790,l6uaxfye2Ig,Andie really hurts Duckie by going out with Blane. tt0332379,4KJD4aP90YQ,Dewey shows Ms. Mullins how he uses music to teach the kids. tt0091790,8l7LGK2hnQw,Andie asks Blane to admit that he is ashamed of her. tt0259711,4mdd9P7Tn6I,David faces his last fear and chooses to live. tt0259711,7xohWvO9i4c,A hysterical Julie fights with David and runs her car off a bridge. tt0090329,LmdcbtSwX6Q,"As Samuel wanders the police station, he finds a picture of the murderer." tt0259711,7xVN8Q0OIbo,David freaks out his friends when he shows up with a prosthetic mask. tt0090329,o07ecRzkLuM,John Book takes care of a creep who bullies the Amish. tt0090329,9GxFab5uMPc,John Book has his first experience with work on the Lapp farm. tt0074174,R9goLghpPBg,Tanner comes to Lupus' defense when he is picked on by a bully. tt0090329,nS0fxM7sCHs,"After much consideration, Rachel runs to John Book and kisses him passionately." tt0074174,74Y7PD_uBe8,Buttermaker passes out athletic cups and Kelly joins the team. tt0112572,2v-VkDiUm0Y,"Marsha gets hit in the face with a football, ruining her life forever." tt0297884,pq9dj2Q6edw,Filippo and Philippa flee to the countryside and discover that they share the same birthday. tt0492619,LBO6A4kU5Vo,Fred catches his wife cheating with Chuck 'The Truck' in his house and challenges him to a fight. tt0443706,TbI7_iOYJvg,"The Zodiac killer strikes again in Napa Valley, attacking a couple picnicking by the lake." tt0443706,DSuUJ-Scbeg,"Toschi, Armstrong, and Mulanax interrogate Zodiac suspect Arthur Leigh Allen." tt0443706,eDhJ-xXsbHc,"When her car breaks down, Kathleen Johns and her baby are picked up by the Zodiac Killer." tt0443706,WJlOBTLg4xw,Toschi and Armstrong search Arthur Leigh Allen's mobile home. tt0443706,RiTXscx2pJY,The Zodiac killer calls into Melvin Belli on television. tt0443706,W91BHqxJIRg,"After years of investigating the Zodiac killer, Robert and Inspector Toschi come to the realization that it was Arthur Leigh Allen all along." tt0163187,tz56LhvDFho,"In discovering that Ike is a reporter, Peggy and Maggie dye his hair with crazy colors." tt0112572,EIz94vt-Opo,Marsha kisses Charlie with a little tongue and something suddenly comes up. tt0372588,DxTFwXcsctE,"Team America battles the evil film actors including Samuel L. Jackson, Tim Robbins, Helen Hunt, and Matt Damon." tt0163187,uqMxfPMxW78,Ex-fiance Gill is heartbroken when he discovers that Maggie's rose tattoo was a stick on. tt0112572,vb2GzRckU9s,Jan is convinced to return home by a friendly truck driver. tt0108065,QNVWY5jUIbc,Master chess player Bruce tries to get prodigy Josh to visualize his strategy before he acts. tt0163187,sM3PgyGpO7Q,Maggie and Ike romantically kiss during the wedding rehearsal in front of the groom. tt0163187,qYbwQoq9XfI,"As friends and family roast Maggie at the luau party, Ike comes to her defense." tt0108065,7JISgsyVgUA,Josh beats an expert at a chess club. tt0163187,TY04QewafKc,"About to get married to Ike, Maggie bolts from the wedding once again...this time in a FedEx truck." tt0372588,HIPljGWGNt4,"Terrorists plan to detonate a bomb in the middle of Paris, until Team America arrives and saves the day." tt0163187,iZLnEfsXttE,"In a role reversal, Maggie is the one proposing to Ike." tt0372588,u7tXpBrpecA,"After Lisa makes Gary promise her that he will never die, the make love in every way imaginable." tt0372588,U8XrE0FSQv4,"After Gary is held hostage by terrorists, Team America races to rescue him while also managing to destroy Egypt." tt0372588,DIlG9aSMCpg,"In order to infiltrate the terrorists, Gary dresses like a terrorist and speaks their ""language.""" tt0372588,UEaKX9YYHiQ,Kim Jong Il sings about how lonely it is to be an evil dictator. tt0046250,qalHjNdHFJc,"Joe informs his boss, Mr. Hennessy, that he doesn't have the Princess exclusive." tt0492619,jpPCVq8UmX4,Simmons gets his students ready for the Tae Kwon Do demonstration and attempts to break some blocks with his elbow. tt0372588,32iCWzpDpKs,"In his inspiring speech to world leaders, Gary compares Team America, Kim Jong Il and the Film Actor's Guild to various body orifices." tt0492619,iJKhynhnPyU,The Simmons host a dinner party for their new neighbors. Fred leads the table in saying grace. tt0492619,w9-IJEaGhRg,"Fred antagonizes his apprentice, Julio, while eating pizza, after dropping a board during a demonstration." tt0492619,SgO2khv_SDY,Fred beats up on Lil' Stevie Fisher in class with all the mothers watching on in horror. tt0492619,_Er9cXkqWEs,Fred and the gang start a fight at Chuck The Truck's party. tt0492619,KY_G2f2R1Tg,"Fred's coaching tip of ""no holds barred"" leads to a student beating up an old woman." tt0063518,MH9ZK7vSBYY,"At the Capulet masquerade ball, Romeo falls in love with Juliet at first sight." tt0112572,N_HE8beijHA,"Dittmeyer insults Cindy for her lisp, but gets electrocuted with a loose wire." tt0046250,Udhn4vCPZ7A,Princess Ann gets a short haircut while exploring Rome. tt0273923,NrE3t6Pgps0,"Shaun tracks down his hero, writer Marcus Skinner, who gives him some priceless advice and encouragement." tt0096061,5FgtVXFRyTQ,Frank watches a scene from his childhood where his father gives him veal for Christmas and chews him out for making excuses. tt0063518,hwWsAUpr9eM,Romeo asks Juliet for her love's vow and she responds that it is already his. tt0096061,lPe61El1_3E,"Frank chews out his actors in the ""Scrooge"" special and has an emotional breakdown." tt0167427,CblvDFObgNA,Mary decides to audition for the talent contest and fantasizes about being a Hollywood star. tt0096061,K0zvX6AGd7Q,"Frank hops in a cab, but realizes that the driver is the Ghost of Christmas Past who takes him on a wild ride back to his childhood." tt0096061,3kX6rf9uw7w,Frank takes over his broadcast to give an inspiring speech about what he's learned about the miracle of Christmas. tt0167427,sZTRUAFCzF4,Mary fights Evian because Evian won't let her sign up for the audition. tt0167427,XXLpjT6qjCg,"Sky breaks up with Evian, which gives Mary the motivation to make a move on Sky." tt0167427,l2K4Fw-pmLw,Father Ritley asks Mary to look back at her life and she describes it with a made-for-TV-movie monologue. Her grandma drags the father with her wheelchair. tt0167427,akyfR8zcmIo,Mary examines her breasts in a mirror. Mary's version of Jesus appears to her. tt0167427,ThzCQZyzCkg,"Evian tries to get Sky back, but he assures her that he's done with her and she should move on." tt0273923,jzEhVsME8p4,"Shaun complains to his college counselor, only to discover that she sent in the wrong transcript." tt0273923,DnwnDFr9kOs,Shaun pleads with his mother to just be normal for one hour so he can impress someone from the Stanford admissions board. tt0273923,hQEej75JeUQ,"Shaun tries to project an image of normalcy for the Stanford admissions board member, but his family ruins it." tt0273923,Q5wdXytgRLI,"Shaun returns to the dean's office to find that Lance has burned the building down, and Lance gets nervous during an interview with a firefighter." tt0196229,3zavgk2_BJs,Zoolander attempts to copy the underwear removal move performed by Hansel. tt0196229,tUaOBgXp_Pg,"Zoolander gets a vigorous massage from Olga, as Matilda follows up on an anonymous tip." tt0196229,AU0NLheu8mU,"Zoolander visits his family in coal mining country, but his father mocks his modeling career and rejects him." tt0196229,EMTbkfgT_jc,"Zoolander wonders if there's more to life than modeling, while his roommates argue for the importance of their work." tt0046250,sP9ufyH-Pdg,"Joe brings Princess Ann home to stay with him, but he doesn't know who she really is." tt0196229,gx9O6q0pDAU,"Mugatu threatens to kill the Malaysian Prime Minister himself, so Zoolander debuts his new look to save the day." tt0196229,EUvgqItrt1c,Former hand model Prewitt explains to Zoolander and Matlida the vast conspiracy involving models and assassinations. tt0094608,NRQifnaioeM,Attorney Kathryn Murphy prepares Sarah for the condescending questions she will be asked on the stand. tt0094608,sEXIC0OaQSU,"Sarah confronts her attorney, Kathryn for consenting to a reckless endangerment charge." tt0046250,ExVWQ_I-elI,Princess Ann takes off on a scooter for a reckless drive through Rome. tt0094608,kf8NklFXAd4,"One of Sarah's rapists, Scorpion harasses her in a parking lot." tt0094608,CFstDwSYjkc,Kathryn presents the option to Sarah of taking the rape spectators to trial. tt0094608,w0NWPKGGFiY,Attorney Wainwright tries to discredit Sarah's case. tt0094608,YJPebmYS95E,"Kathryn locates key witness, Bernie, and questions him about the rape." tt0094608,3ArDaUOO6w0,"Kathryn visits Sarah in the hospital, where Sarah accuses her of not being on her side." tt0094608,Uif48WrZza8,Bernie visits Bob in prison and tells him he is going to be honest about what he saw that night. tt0108065,T0QshoW8SQY,Expert chess coach Bruce informs Fred that his son is the next Bobby Fischer. tt0108065,yOoGw9aTRhs,"Josh's teacher informs the Waitzkins that Josh is falling behind in school, and perhaps shouldn't be traveling so much to pursue this ""chess thing""." tt0099653,3orSzPUIVJw,Molly tells Sam she wants to marry him as they walk home from a night out. tt0080120,1ycpmrEl-9E,Cyrus drives the crowd into a frenzy with his ambitious plan to take over the city. tt0108065,ZurT6BG1OM8,Josh fears his competition and doesn't want to disappoint at the state finals. tt0108065,gwXzOVu0x-U,Josh disagrees when Bruce encourages him to hate his opponents. tt0108065,v38lu0Bi0Kk,Josh challenges Bruce for his master's certificate. tt0108065,uV5YFJgGPNQ,Fred lectures Josh for throwing the competition. tt0081696,nWAV_KcSkNw,"When Sissy rides the mechanical bull, Bud's temper flares as he realizes she's been practicing with Wes." tt0108065,k9pFp6iRVM0,"Knowing his opponent is about to lose, Josh offers him a draw." tt0081696,cdaDQcs-XNQ,"At dinner, Bud complains to Sissy about her responsibilities as a wife such as cooking dinner, cleaning the house, and making love." tt0108065,-v8C1H99O_s,Bruce proudly gives Josh his chess master's certificate. tt0081696,wzSYH0nT6Qk,"In an act of machismo and chivalry, Bud beats the hell out of Wes and then takes Sissy home." tt0081696,f_xjQNnIcdQ,Sissy rides the bull in a sexy manner to make Bud jealous. tt0081696,c5BJJbtFP4E,Bud and Wes compete head-to-head in the Gilley's rodeo competition in front of Sissy and Pam. tt0081696,XkasRfjEqFs,"After the rodeo competition, Bud tracks Sissy down to apologize and tell her how much he loves her." tt0398165,RUX-bx6rwdI,"When the warden floods the practice field, Paul gives a rousing speech to the convicts that they will win the game and to get dirty." tt0398165,7UKx-6P2F-k,Caretaker introduces himself to Paul and tells him he's a man who knows how to get things. tt0398165,3JJaD_5oQq8,Ex-football player Paul Crewe is pulled over by two cops for drunk driving and stealing a vehicle. tt0081696,mYhkrT5de2Y,"Wedding photos are taken of the bride and groom, Bud and Sissy." tt0398165,Q1IQ49BHkEg,"In order to get game footage of the guards, Paul has to indulge in a little hanky panky with a much older Lynette." tt0162650,hGgWUKweXzI,Shaft makes a thug pay for making him run. tt0398165,GKuQDM9OlAQ,Paul takes the game into his own hands when his offensive line refuses to block for him. Then he gives an inspirational speech admitting how he threw the game and won't do it again. tt0398165,Rwtay9w8axo,"After a grueling tackle by Switowski, Guard Dunham loses control of his bowels." tt0398165,VMVzQ8rW53Q,Coach Scarborough enters the game to score a touchdown on a trick play. tt0102517,ilrpqagxBf4,"At the end of the big game, Texas State fakes a field goal to go for a touchdown and win the game." tt0162650,ZSFCW8cDIU8,Shaft provokes the irascible Peoples Hernandez into an altercation. tt0102517,XKl9WKaYVRw,The team practices some unusual technique when it comes to defense. tt0102517,sLWhxB6QNrw,Blake comes up with a good way to teach the douchebag Dean a lesson he won't soon forget. tt0102517,o4UVXgAzYb0,A rival football team insults the Texas players at a bar and a huge brawl ensues. tt0102517,AyJIq_BNPME,"When an opposing player mocks Lucy, she introduces her foot to his balls." tt0102517,86RH1KAwM2A,"During shower time, Lucy asserts that she is an Armadillo like everyone else, but Manu begs to differ." tt0102517,0jzYpSrpVqU,The team is impressed when sexy Lucy joins the team as the kicker. tt0094608,gZXv9XswYM8,"Kathryn plans to try the bar spectators for solicited rape, despite the refusal of her boss, D.A. Rudolph." tt0093748,u2pu0m9iTo4,"After sharing the same motel bed, Neal wakes up to find Del spooning with him." tt0109830,j-47cwN0w_c,Forrest proposes to Jenny. She does not accept but spends the night with him before leaving again. tt0162650,xLxCXburq2U,Shaft throws Wade in jail where he meets Peoples. tt0109830,x2-MCPa_3rU,Young Forrest breaks free from his leg braces and discovers he can run like the wind blows. tt0109830,tvKzyYy6qvY,Forrest tells the story of how young Forrest meets young Jenny for the first time. tt0077631,ZS9SXH3DfT8,Danny and Sandy's reunion is spoiled as Danny plays it cool for the T-Birds. tt0377092,JcP-yeailEM,"Cady admits to writing the burn book"" and makes amends with Regina and Miss Norbury." tt0080120,zL0ipXUD-uU,"The Warriors try to outrun the Baseball Furies, but when it comes time to fight, the Warriors prove to be the tougher gang." tt0117060,KOi9hHjmYq4,"Kittridge accuses Ethan of being a mole, so Ethan escapes with the help of some explosives." tt0421715,tOZTZP_qzC0,Benjamin rises from his wheelchair and walks for the first time during a a tent revival meeting. tt0077631,aUNq34kNR0M,"Birds, Sonny is surprised by Principal McGee." tt0421715,qW7Nq2UBlbk,Daisy tells Benjamin that she's pregnant. tt0421715,dpBTugwEdaQ,Benjamin experiences his first kiss with Elizabeth late at night in an empty hotel. tt0421715,CccXBzfhDVA,Benjamin leaves home for the first time at age 17 to become a seaman. tt0077631,6soXf476aV0,Rizzo's baby news travels fast. tt0065126,-zIhorOBLZM,"When Moon decides to spill the beans, Quincy stabs Moon and Rooster shoots Quincy." tt0421715,sthFTs2gWeg,"Queenie finds a baby abandoned on the porch steps, and despite his ugliness she accepts him into her home as a ""child of God.""" tt0077631,aqIYxDk4vh8,"John) pines for Danny, singing ""Hopelessly Devoted to You.""" tt0065126,XTMeDBVknQY,"Rooster and La Boeuf try to prevent Mattie from joining them on the ferry, so she finds another way to cross the river." tt0077631,wsQJVAzezrc,John) rejects Danny's clumsy advances. tt0065126,9-cPWheNyaA,"Rooster takes on Ned Pepper and his men, but when Rooster gets trapped under his horse, La Boeuf saves the day." tt0077631,FWrh6KWGFo0,"John) his ring, but cringes at her reaction." tt0117060,TVaP9kEYVZ8,"Ethan disguises himself as Jim to fool Claire, but the real Jim appears shortly thereafter." tt0077631,S1waPNwf_ns,for baseball. tt0065126,XW9T7s1U_XU,"La Boeuf ambushes Mattie and whips her, but Rooster has no patience for their bickering." tt0077631,-MQNNzaEt2s,Rizzo and the Pink Ladies arrive at Rydell for their first day as seniors. tt0065126,ZJJGXUlqb_k,La Boeuf blocks a chimney to drive Quincy and Moon outside as Rooster waits nearby. tt0109830,MLkaLveElpM,Jenny tells Forrest that he has a very smart son. tt0099653,YcbZKza_zUg,Molly talks to Sam as if he is still able to hear her from the dead. What she doesn't know yet is that he really can. tt0117060,Cho039BrHpg,Ethan dispatches with Jim and Franz with some handy explosives. tt0065126,Lb13v2-bBJQ,"Rooster falls down drunk, and after blaming it on his horse, he decides to set camp for the night." tt0065126,-lb8E3qQVKY,"Mattie stumbles upon Chaney by the river, and she shoots him when he threatens her with his rifle." tt0065126,57yGBikRJec,"As Mattie prepares to sleep, she questions Rooster about his past." tt0065126,6DU0mdThjg4,"Rooster and Mattie wait quietly for Ned Pepper and his men, but La Boeuf panics and starts a shootout." tt0109830,xuQZJHfWf9U,Forrest finds Bubba wounded during battle and he dies in his arms. tt0077631,HsYC-hVEpQM,John) watches from a distance. tt0109830,SqOnkiQRCUU,Mrs. Gump passes away. tt0109830,9Jt-bxV1gW0,Lieutenant Dan keeps his promise and joins Forrest as First Mate on the shrimping boat. tt0099653,_hyXwvNIKZM,"Molly tells Carl that Oda Mae went to the bank and closed an account, which makes him suspicious." tt0099653,oAb2_-uv41Y,Oda Mae sets some ground rules if Sam wants her continued help. tt0109830,HqAbjHKO5jM,Lt. Dan thanks Forrest for saving his life in his own way. tt0099653,IdIEDlLAaJs,Molly needs to be convinced that Oda Mae can hear Sam from the dead. tt0099653,6vg44SEEMmA,Sam terrifies Willie who meets a tragic end. tt0377092,6ovOboVwB7g,Gretchen breaks down to Cady and spills some juicy secrets about Regina. tt0099653,5fLlgS6aO9k,Molly finally believes Sam is speaking through Oda Mae when she shares things no one else could know. tt0377092,VZpMlm4xYG4,Regina and Cady have a blow-out in front of school which ends disastrously for Regina. tt0377092,W8_POt2KlfQ,"The Plastics gang up on Regina, furthering Janis' goal to dismantle her ""army of skanks.""" tt0377092,PoIdfRnQZ4A,Cady rejects Regina's attempts to make her jealous. tt0377092,re5veV2F7eY,"Cady sits with ""the Plastics"" during lunch and gets invited to return for the rest of the week." tt0377092,LORyEX_5czg,Regina gives Cady the low-down on her and Janis' lost friendship. tt0099653,NpvlS6uBduQ,"After being shot by a mugger, Sam realizes that he has died." tt0377092,WPYqRaOm1ak,"After Regina distributes copies of ""the burn book"" at school, the girls go wild in the halls." tt0377092,sT8wMBeVffk,A huge fight erupts when Janis calls out Cady for her behavior and says she's transformed into a Plastic. tt0109830,4rT5fYMfEUc,Forrest fits right into Army discipline and meets Bubba who has a passion for shrimp. tt0377092,sR528E5_8yI,Miss Norbury encourages the girls to apologize to everyone they've hurt. tt1060277,RkFcHUvyJ-k,"After a huge explosion in New York City, the head of the Statue of Liberty comes rolling down the street." tt0099653,-Y2wqkD2KVM,Carl dies escaping from Sam and is carried away by dark spirits. tt1060277,6esR4uGEFCc,"The gang gets caught between the army and the monster, so they run down into the subway to escape." tt1060277,gRzjSsXw9PU,"The gang tries walking down the subway tracks, but soon discover they're not alone." tt1060277,DUbplahEBfQ,"The gang finds safety with some military personnel, but Marlena turns from bad to worse." tt1060277,8c-Na7OHYnI,"The gang rushes out of the building to the helicopters, where Lily catches a ride." tt1060277,dVCki9kwF_4,"While the crowd tries to leave Manhattan via the bridge, the creature makes escape impossible." tt1060277,kyY50rBet2U,"Hud, Rob and Beth hitch a ride on a helicopter, but the journey ends sooner than expected." tt1060277,6ibWJnY6Ur8,"Rob and Beth record their final words for the camera, while some earlier footage provides a clue." tt0117060,k-oVuQpjG3s,"Ethan begins his descent into the vault, but he's not alone for long." tt0117060,sd_I5ez3jwg,"Ethan realizes the mission has gone hopelessly wrong, resulting in the death of his team members, including Sarah" tt1060277,ocb7pXndlug,"Hud pulls Rob from the helicopter, and then finds himself right under the monster." tt0317919,wwzyveUAS80,"Ethan scales the wall to gain access to Vatican City, then makes a quick costume change." tt0117060,ar0xLps7WSY,"Ethan starts to copy the NOC list, but a rat and one drop of sweat threaten to jeopardize the mission." tt0117060,YK-ys6sY_q0,Ethan tries to convince Franz and Luther to help him hack into the CIA mainframe. tt0117060,AysV4mGh4fc,"Ethan pursues Jim on top of a train, as Franz pursues the train in a helicopter." tt0117060,2wwC9c3iYK4,"Ethan sails out of the vault just in time, but manages to leave some evidence behind." tt0120755,zk6ac5Amzr0,"Ethan makes another daring entrance, this time from a helicopter into an atrium." tt0317919,CgX4uJSj00Y,"Ethan tries to trade places with Owen in the bathroom, but the gadget that changes his voice takes a little too long to work." tt0120755,bXYobuaTjNs,"Ethan tries to convince Nyah that they can help each other, while driving down a treacherous mountain road." tt0120755,hnum8SxuVCQ,"Sean forces Nyah to retrieve the Chimera virus, but she injects herself instead." tt0317919,QLNUIU7AzTg,Owen threatens to shoot Julia if Ethan doesn't tell him where the rabbit's foot is. tt0120755,iXSKAf6h5vE,Ethan is about to destroy the Chimera virus when he's interrupted by Sean and his men. tt0120755,GR0R9KfU4tY,"Nyah tells Ethan to kill her and destroy the virus, and he promises to get her the antidote." tt0094226,xPZ6eaL3S2E,Malone advises Ness on the attitude necessary for nailing Capone. tt0120755,O3P0SMpqK-8,"All appears lost when Ethan is taken hostage, but he manages to retrieve the antidote with the help of another disguise." tt0317919,00rpUGdvcY0,"Ethan runs out of ammo, just in time to escape the warehouse with Lindsey." tt0120755,AzIQg6Ly_Rw,"Ethan races to save Nyah in time, with Sean in hot pursuit." tt0120755,AIcUKqhFp4g,Ethan takes out a guard on the island with some fancy footwork. tt0317919,S69qPup6hyk,"Benji retrieves data from the damaged hard drives, including information on an upcoming function at Vatican City." tt0120755,eVUsVW87kSk,Ethan and Sean fight to the death as Nyah's life hangs in the balance. tt0120382,ZUKCW08_8Og,"Despite Meryl's protests, Truman drives over the bridge and through a line of fire, but a leak at the nuclear power plant finally cuts short his attempted escape." tt0317919,YMz-skgeUdw,Ethan resorts to drastic measures to get information out of Owen. tt0317919,FCRdTWGdngU,"As the team distracts some guards with baseballs, Ethan takes a daring leap off one building to swing onto another." tt0317919,8l4qdf_1nGM,Ethan tries to prevent Owen from escaping after a deadly bridge attack. tt0094226,gAM2Q7Sqlbk,Malone tricks Capone's bookkeeper into talking. tt0094226,KdNSlyrbcDY,Capone fields questions from reporters about his suspected bootlegging operations. tt0094226,QHH9EYZHoVU,Capone's baseball metaphor ends badly for one gangster. tt0094226,_d5jXDvrOu4,"Malone tosses a thug from his home, but meets a hail of bullets from Nitti." tt0094226,j8nZBlPfR7Y,"Ness confronts Capone at his hotel, challenging him to a fistfight." tt0094226,YVz211iI26o,Ness succeeds in dismissing Capone's bribed jury; he and Capone exchange words. tt0094226,eSm68IEDDT0,"Ness hurls Nitti from a rooftop, avenging the death of his friend." tt0094226,QJpRSf4q-hI,Ness and Stone trade fire with gangsters while chasing a runaway baby carriage. tt0099674,t2QvuZpxmeo,Michael finally confesses that he ordered the death of his brother. tt0094226,dgoDvnebHRw,"After losing his shipment, Al Capone blows his top and threatens Eliot Ness." tt0080120,qoWjU8OAUaU,"The Warriors confront the Rogues on the beach, and after Swan takes down Luther, the Gramercy Riffs show up to finish the job." tt0080120,aRM2YcGpmxg,"The Warriors return to Coney Island, but Luther taunts them to fight one last battle." tt0080120,0kqn9qQZdOs,"The Warriors hide in the Mens' Room at a subway station, where they successfully defend themselves against another gang, the Punks." tt0080120,bTUrWYv2vtU,Cyrus brings together all the gangs in New York City to prove their strength in numbers. tt0120382,z9lBvg5clr0,"Truman takes Meryl on a spontaneous road trip, and she tries everything in her power to convince him to stay home." tt0080120,oMLjP2ajXvs,Luther shoots Cyrus and blames it on Cleon as chaos breaks out. tt0120382,MdwuW8n3JYA,"Truman is confused by a lighting rig that falls from the sky, but the radio announcer provides an easy explanation." tt0120382,wIrUoTYd9hA,"Truman gets soaked by a weirdly specific rain shower, and when Meryl talks him into going to bed, some audience members complain about censorship." tt0361411,7b9sNVUPFyM,Lalita gets into it with Darcy when she suspects he is being ethnocentric. tt0120382,YfJc2bORFHs,"To distract Truman from his recent discoveries and suspicions, Christof orchestrates the return of Truman's father and creates a moving television moment in the process." tt0120382,6U4-KZSoe6g,"When Meryl tries to sell another product during a serious conversation, Truman snaps and threatens her with a kitchen tool." tt0120382,6ZMZYrdXtP0,Christof speaks to Truman in one last ditch effort to keep him from leaving the show. tt0120382,u-ApxFOpl28,"Conquering his fear of the water, Truman struggles to survive a storm manufactured by Christof." tt0120382,UIfdjPDPM-I,"Truman performs a spaceman routine in front of his bathroom mirror, knowing that he's being watched." tt0080120,QXtkzFiGsxw,"Ajax puts the moves on a woman sitting on a park bench, but she surprises him by arresting him and handcuffing him to the bench." tt0317740,6c5Qlf1Fr28,John Bridger gives Charlie Croker some advice about being a good thief. tt0317740,764r3kF5tZg,"Handsome Rob and Lyle drive the decoy boat to distract the guards, while the rest of the team cracks the safe under water" tt0317740,2bkNfQBLCJw,"The team has to get into a subway tunnel to steal the gold, but first they have to beat a speeding subway train in their Mini Coopers." tt0421715,zmicfGmQZ9s,Benjamin travels around the world and chronicles his experience for his daughter Caroline. tt0317740,dnnrhhZjTh8,Gunman on motorcycles chase the team through a tube which leads out into the LA River. tt0317740,GVAVkeMQyKY,Steve suspects that Yevhen knows too much about his stolen gold. He decides to shut him up permanently. tt0317740,6EFjbeXuNCg,Charlie lets Steve know that he's going to steal the gold back from him. tt0317740,YlT7x_8VuMA,"Charlie gets cornered by Steve, but he uses his sweet driving skills to find a way out." tt0317740,r4IBPd7-LlQ,Steve closes in on Charlie in a helicopter. tt0449467,jtoYZoKsAnY,Teenage Cheiko sexually provokes her dentist during a routine visit. tt0421715,_r8MRCkHY54,"In the spring of 1962, Daisy returns home into the arms of Benjamin." tt0114694,ohz8_IafGwE,Tommy twirls around in Richard's jacket. tt0114694,3QCSrQEGvZA,Richard fools Tommy by impersonating a very saucy housekeeper. tt0114694,ndfLW-xm9Xk,Tommy and Paul's attempt at cow tipping goes awry. tt0114694,gkGFvtW0CSE,Tommy struggles to change clothes in a tiny airplane bathroom. tt0114694,n1lbpj6868o,Tommy gets fed up with Richard's insults and challenges him to a fight. tt0114694,HWrjBBXjjhM,"Tommy and Richard pose as airline stewards, making the pre-flight safety announcements." tt0114694,c1EyN9xTK94,Tommy uses a dinner roll to illustrate his overzealous sales approach. tt0421715,ECDGpYuMRDA,"Gateau unveils a clock that runs backwards as a memoriam to the U.S. soldiers who lost their lives in World War I, including his son." tt0421715,GmslKQBmdzg,Benjamin and Daisy sail into the Gulf along the Florida Keys for an extended romantic retreat. tt0114694,5LN23qErZDM,"After killing his sale, Tommy has an emotional meltdown." tt0361411,hIhe-VqMBVI,"Darcy tries to tell Lalita how he feels about her, but she is too enraged by what she's heard about him to care." tt0361411,1_-RGLVHmOA,"The Bakshi sisters sing a playful song inspired by Mr. Kohli's saying, ""no life without wife.""" tt0361411,AoWdk9CB-mU,"First the boys tease the girls, then the girls tease the boys in a special wedding dance." tt0361411,WDAo_p8At-o,Lalita gets worked up when dancing with Darcy and is relieved to have Wickham cut in. tt0120694,IH_dSlEAl0A,"After pinning Michael Myers against a tree, Laurie finally puts an end to the nightmare and beheads her brother... or is it her brother?" tt0361411,psru6_9PPcw,"Lalita meets the dashing Johnny Wickham, and is more than happy to take his side against Darcy." tt0297884,BkW-4CWw3XQ,Filippo's little brother helps to distract the guard while Philippa makes a run for it. tt0297884,TEjRTNg51Io,"The carabiniere listens to Filippo's recording for Philippa, which details her escape plan." tt0297884,4dW0aROYEk4,"Filippo, afraid at first that Philippa is referring to the bag he has hidden in the toilet for her escape, translates for Philippa as she explains her reason for bombing the building." tt0297884,9pDIRuJt-gU,Philippa and Filippo consummate their love in the Italian countryside. tt0120694,upyAJ-kEgNY,"After years of fear and seclusion for her and her son, Laurie decides to take the offense against her brother." tt0297884,tFAX4TdV6ak,"Philippa confesses her wrong-doings to Filippo who, in turn, confesses his love to her." tt0120694,OTq3-zG1lCE,"After discovering the body of her boyfriend, Sarah unsuccessfully tries to evade Michael Myers." tt0297884,P-E8ZrQ06go,"Philippa calls Mr. Vendice's secretary out of the office after having left a bomb in his trash can, but her plan falls apart when a cleaning lady takes out the trash." tt0297884,g-GJDgd7D8k,"Philippa is shocked when the prosecutor states her crime, as she intended for the bomb to only kill the drug dealer, Mr. Vendice." tt0297884,Ktn-Hd2BTzs,The Carabinieri updates Mr. Vendice about the status of Philippa's case and how they plan to cover up her claims. Philippa listens to a tape that Filippo recorded for her. tt0371746,bwzuMk8SRzY,Tony starts to get the hang of flying around his lab. tt0119094,qYW3MOezCc4,"After a battle with the prison guards, Sean Archer succeeds in escaping to freedom." tt0371746,3Im7ZYrXCOY,Tony takes the Iron Man suit out for a spin. tt0297884,t7S_kRqYshw,Philippa kills Mr. Vendice after having called him in under a false pretense. tt0297884,qilGSZ9UWTc,"Filippo's father offers to help, but Philippa and Filippo decide to continue on their own." tt0371746,OYrxSQ_Y2Iw,Tony calls a press conference and decides to tell the truth for once. tt0371746,3o2ACEr9NmQ,Tony becomes Iron Man to save a village and destroy some Stark Industries weapons. tt0104036,p0qVhhIfWr4,"Fergus is mesmerized when Dil takes the stage to sing her signature song," tt0361411,3Ag3aRRoPzk,Lalita warms up to Darcy as they spend time together in Los Angeles. tt0297884,a4EqbYUl7Rg,"Filippo and Philippa take advantage of the Carabinieri's helicopter being unattended, highjacking it and soaring up higher and higher until it disappears." tt0128442,dsCzZE_y0so,"Despite holding a monster hand, Mike spots Teddy's cookie tell and wisely folds his cards." tt0128442,e2RQwVyRSGU,"After a re-raise from Teddy KGB, Mike goes all in with a pocket pair of Kings." tt0128442,MbrO-ZbuhIs,Teddy KGB busts out Mike in a high stakes game of Hold'Em by revealing a higher full house. tt0128442,aXbf3X56rGM,"For one hand at a table in Atlantic City, Mike takes down the great poker player Johnny Chan on a pure bluff." tt0119094,c_YHTdu1jFc,Archer pursues the fleeing Troy on a speedboat and tries to make him crash. tt0119094,XxsSp2qJIZg,"Archer apologizes to his wife for putting her through hell, but Troy arrives and threatens her." tt0128442,ciWBzhmOC_o,"The rounders including Mike, Petra, and Knish dominate the card table against some unsuspecting tourists." tt0128442,0ZQln6DsWgE,Mike impresses all at the 'Judges Game' when he helps Abe take down the pot. tt0361411,_nqoPInNcvo,Lalita receives a proposal from Mr. Kohli. tt0361411,HMziYymVYMs,"Darcy and Lalita search for Lahki, who has run off with the untrustworthy Wickham." tt0128442,QvVoH-X-Kls,"After losing a heads-up game of poker, Teddy KGB tries to goad Mike into playing a re-match." tt0128442,ERmo8TmDYCI,Abe tells an anecdote to Mike about following one's destiny in life. tt0128442,z7NxEj4A1Cg,"When Mike comes asking for money again, Knish responds with some cold, hard truths of life." tt0128442,QAJkvEJ2QjE,"Sitting down at a high-stakes poker game, Mike explains how to play No Limit Texas Hold'em." tt0128442,N7hG6mx0csE,"When Worm gets caught for cheating at the table, there's nowhere to run, and nowhere to hide for Mike." tt0128442,LIXJaTQTDAg,"Holding the nuts, Mike traps Teddy to win sixty-thousand dollars." tt0230600,_7z8a8kTj1c,Grace hears voices and Anne shows her a drawing of the mysterious family. tt0119094,G5GJHYXrjhY,"Troy tries to kill the Archers, but Sasha shows up and a massive shootout takes place." tt0119094,Mn6WC1pxVNk,Archer uses a helicopter to keep Troy's jet from taking off. tt0119094,klCemtBU1cg,"When Archer catches Karl hurting a girl in his car, he gives him a beating and makes him apologize." tt0371746,GH-r4HXHcCk,Tony uses his newly designed prototype Iron Man suit to escape the enemy camp. tt0371746,KNAgFhh1ji4,"Tony presents The Jericho, his new missile system, to an American military audience in Afghanistan." tt0371746,-zya4vJ-kQE,Tony asks for help from Pepper when replacing some sensitive equipment. tt0371746,n4BJBz8GpzI,Tony breaks out of the cave using his newly designed suit. tt0469494,x1ij_TEK_MM,Young H.W. loses his hearing after an accident inside the oil rig. tt0409459,nVrzbfxxcZ8,"Nite Owl and Silk Spectre take ""Archie"" out for a ride and save some citizens from a burning building." tt0101318,Y9GAufJIe0I,"Alex sets fire to the truck carrying Michèle's ""missing"" posters." tt0115697,sBjNpZ5t9S4,"Mike is pulled over for driving only 7 MPH, and tells the officer a tall tale about Steve." tt0118826,25Y5O97c1Aw,Con and the rest of the family try to cheer up Darryl after he loses the court case. tt0118826,1Gk_oU1m5CY,Dale introduces the members of the Kerrigan family at their humble abode by the airport. tt0207201,xCtMlhZskDE,Nick realizes he can hear Flo's thoughts. tt0115697,WZppJUaR7_0,Mike falls on top of Governor Tracy in a compromising position. tt0115697,BcufzXXaEoI,"When Steve hits Drake with his car, he tries to drive off but gets stuck in traffic." tt0115697,fvptWDiYrIk,Mike makes phone calls to voters and recites an unorthodox political tangent with one recipient who ends up being a little girl. tt0120694,sp8Ufx3Ej24,Laurie gets angry at her son when he skips school on Halloween. tt0119094,kLskn7jHXrg,"Archer and Troy discuss trading faces back, but then just try to kill each other." tt0119094,d6ISJ_dN-80,Archer has a shootout with Castor Troy in an airplane hangar. tt0117381,flvyCwagnF0,Janet accuses Martin of being nervous around intelligent women. tt0257106,4vcNnS9k884,Father McFeely battles his bowel movements before battling the demon in this prologue parody of The Exorcist tt0257106,5t_tgiWatvs,The group gets nauseous when the caretaker uses his bare hands to prepare their dinner. tt0119094,8ce557hlgEM,"Archer, in disguise, is shocked to see Castor Troy wearing his own face." tt0117381,XyGbtYaVcaA,"When Martin confronts Aaron, another personality named Roy comes out." tt0117381,e2g4Wr81rz8,Janet plays rough with Aaron on the stand until he cracks and physically attacks her. tt0117381,ZbaW0HZ_Qy8,Aaron reveals the final twist in his case when he talks to Martin from his jail cell. tt0409459,b4teoyYZsYk,"With Rorschach locked in his cell during a prison riot, Big Figure cuts the arms off of a fat thug with a saw." tt0117381,QAFttSucKH4,Martin explains to Connerman that he does what he does because he chooses to believe in the goodness of people. tt0117381,jaCofC2Bv-c,Aaron erupts when Martin tells him he's seen the videotape that would provide a motive for the murder. tt0117381,YDV8PMVi-fA,Laura thinks Martin is crazy for thinking Aaron could be innocent. tt0409459,EuSGUhhmYfk,Ozymandias sets off a nuclear attack on several major cities throughout the world including New York City. tt0117381,PYLokGkYl4E,Martin preps Aaron before trial. tt0409459,yGbUcqCXe14,Jon Osterman is evaporated in an atomic chamber and Dr. Manhattan is born of atomic matter. tt0409459,JJ5290-0lw0,"Walter Kovacs explains the genesis of Rorschach. In the prison cafeteria, he defends himself by using the deep fryer grease." tt0117381,esQgzR6gTjw,Shaughnessy gives a stern warning to Martin. tt0409459,BYWVUvqDFh0,Rorschach sneaks into the crime scene at The Comedian's apartment. tt0409459,p-mlLMZXqg4,Rorschach is captured by the police and his mask is removed to reveal the true identity of Walter Kovacs. tt0409459,NFV2sZJrtDQ,Dr. Manhattan is forced to kill Rorschach in order to save humanity from nuclear war. tt0469494,s_hFTR6qyEo,"Daniel explains what ""drainage"" really means to Eli." tt0409459,4u-4PyidIeQ,"Dr. Manhattan is accused on a television news program, while Laurie and Dan fight a gang in an alley." tt0469494,zirtzDl2RH0,Eli Sunday forces Daniel Plainview to confess his sins in front of the congregation. tt0101318,-ZODi5SGAyE,Alex performs a fire breathing act on the streets. tt0469494,nzyDm-J065g,Daniel Plainview fights to stop a raging fire that has broken out in his oil rig. tt0469494,HzpxTmlWOC4,Daniel disowns his son H.W. and pronounces he is nothing but a bastard from a basket. tt0469494,12Iosf6btzM,Daniel Plainview finally gets his revenge against Eli Sunday. tt0469494,MyKNmvJYO7o,Daniel forces Eli to say that he is a false prophet and that God is a superstition. tt0207201,5yUd7SXxXzs,"With the help of Dr. Perkins, Nick sees the upside to his new gift." tt0469494,28BXqQWqYJU,Daniel reveals to Henry that he hates most people and sees no good in them. tt0207201,xJp2HXBJv_4,Nick learns what his secretary and the other women at work really think of him. tt0101318,hf7_JChVnAQ,Alex and Michèle steal a police boat to go water skiing among the fireworks of the French Bicentennial celebrations. tt0207201,L8eQ78agzQg,"When Nick confesses to Darcy that he is the reason she lost her job, he also confesses his feelings for her." tt0207201,FeoFv3dOeqo,Nick realizes that his mind-reading skills have a gender preference. tt0207201,urby-QPF1hE,Darcy and Nick share thoughts on the Nike account. tt0207201,NrriZYH49yE,Nick checks up on Erin and realizes that he can't hear her thoughts. tt0101318,lKMl0NFXM4s,"When Julien rejects Michèle, she shoots him through the peep hole of his door." tt0101318,abh8wBYFeuE,Michèle runs from the train to find Alex as military forces parade during the French Bicentennial celebrations. tt0340163,yDoaKW48_hk,Talley finds that his family has been taken hostage by The Watchman in order to force Talley back into the hostage situation. tt0101318,Q6kNpNi_iJI,"Not wanting Michèle to know that her family is looking for her, Alex destroys a number of ""missing"" posters." tt0101318,8lD16zBpcog,Michèle and Alex reunite on the bridge after Alex is released from prison. tt0101318,cH80fIW-mrc,Alex and Michèle dance as fireworks celebrating the French Bicentennial burst above them. tt0101318,vn1ZcpwPlAA,Alex and Michèle drug businessmen at restaurants to steal their money. tt0340163,rG1qXTVH1t4,"Talley rushes to save a hostage negotiation gone wrong, but discovers that he?s too late." tt0101318,AMuVqFvM2Rs,"Left alone by Michèle, Alex shoots off his own finger. He is then sent to prison for the poster man's death." tt0115697,oW7IadnQblg,Mike is pushed on stage at MTV's Rock the Vote and improvises by pumping up the crowd. tt0118826,C7G9Q9JcN34,Darryl is deeply proud when his daughter Tracy marries Con. tt0115697,4sO94xn-C6o,Mike freaks out when he gets caught on a news van antenna and draws the attention of Gov. Tracy and her crowd. tt0118826,uCtMTbKX6_I,Tracy and Con return from their honeymoon with gifts and tales of wonder. tt0118826,qqhQ9jN3gj4,Darryl reckons they're in for a pleasant surprise when they see the land valuation on their property. tt0118826,qTUcFhCim_A,Dale reminisces about how Darryl kept his worries away from the rest of the family. tt0118826,prnQLmVg5V8,"The Kerrigans travel to their holiday home in Bonnie Doon, where Darryl enjoys the serenity." tt0118826,wEE-EVC0P8M,Darryl takes Dale fishing and Con practices his kickboxing. tt0118826,PfnAhUBroF8,Sal tells the story of how she met Darryl while she was dating another man. tt0118826,ssukL9a99JA,Dennis argues in court that the acquisition of the Kerrigan house violates the vibe of the constitution. tt0118826,b4kKWa_hjCk,"Having won the court case, Darryl throws a party for all of his friends and family." tt0118826,5smoo7ipoc0,"Steve tries to cheer up Darryl, who compares their plight to that of the Aborigines." tt0115697,f890SC1schE,"While delivering fliers for Donnelly, Mike falls down a hill... and keeps falling..." tt0115697,HI_mwhUvqHc,A huge boulder rolls down the mountain and crashes into the cabin. tt0115697,tlE5yK4l34o,"Mike pumps up the crowd at MTV's Rock the Vote, but takes things a little too far..." tt0340163,sjeIpuOhuPM,Mars opens up to Jennifer as Tommy watches from above. tt0340163,t8dJFMMvNQQ,Mars and Dennis startle Walter and his family when they enter the house with guns. tt0115697,RGvWYYCWFq8,"Steve is all laughs as hail rains down on Mike on the top bunk, until the pressure causes Mike to crash on top of Steve." tt0340163,i_sT5Jl3qM4,Mars panics when a cop responds to an alarm. tt0340163,68XJpm3q2b4,Talley negotiates with Dennis for half of the money in the house. tt0340163,qbfjO2d2S4Q,Talley talks to Dennis to assess the situation and determine who shot the police officer. tt0340163,T9tQanQSgQM,"Talley calls Dennis to warn him, and then reassumes control of the hostage situation." tt0340163,tJIzs4CS-TE,Talley tries to end the hostage situation but Mars and Dennis struggle for control. tt0340163,UGn03bNlFuo,Talley infiltrates the house just as Mars tries to burn it down. tt0340163,M3jyyQMbJNY,"Talley poses as an EMT to gain access to the house, where Mars keeps an eye on him." tt0340163,Zp4qkAJFHrQ,Mars chases Jennifer and Tommy through the house as they head for the panic room. tt0104036,KUGH4XQ94tc,Dil holds Fergus hostage as Jude and Maguire plot an assassination. tt0257106,pwt49IF0uG0,"Cindy meets Hanson the caretaker of hell house, who sings a familiar hymn" tt0104036,EMBCBSoE1rU,"Fergus finds himself unable to shoot Jody, who makes a run for it just as British troops attack." tt0257106,ZOtIoBAxDUw,Father McFeely and Father Harris exorcise a deomon from Megan in a parody of The Exorcist tt0257106,FX3YO40UDHc,A giant marijuana monster smokes Shorty before being distracted by munchies. tt0257106,sw-oQlitqCY,Cindy fights the mansion's pussycat. tt0257106,VjlUWwstdTU,"The group investigate a mysterious noise, which turns into a parody of a Nike commercial." tt0257106,js-kku6X7yU,Dwight refuses help while trying to climb up the stairs while Cindy pleasures Buddy believing it will save his life. tt0257106,ZSoIlS4LQiI,The mansion's apparition rapes Alex while Brenda and Ray have sexual troubles of their own. tt0257106,dvodASNU58U,"Dwight has a wheelchair chase with Kane, the hell house ghost that lampoons this John Woo chase from Mission Impossible 2" tt0257106,YkGv4M2y3zg,The girls spoof this scene from Charlie's Angels when they confront the possessed Hanson. tt0104036,CXgaZeUY6fM,Jody proudly shows Fergus a picture of his girlfriend. tt0104036,Ugd_VB9iVFE,Jody tells Fergus the story of the scorpion and the frog to illustrate a point about human nature. tt0104036,MV-KVBADWMg,"Fergus rescues Dil from Dave, and they kiss to make Dave jealous." tt0104036,LldAqBKjyJ0,"Fergus encourages Jude to check on their hostage, Jody." tt0104036,0Z-o1RVdnHE,"Faced with the truth that Dil is a transsexual woman, Fergus gets sick and leaves in a panic." tt0104036,bP9A87VOaYE,Fergus tells Dil that he was responsible for Jody's death. tt0371746,qvwHppI95K0,"Tony meets intrepid reporter Christine Everhart, but it doesn't take long for her to fall for his charms." tt0104036,b0fZtW9Niic,Fergus gets a haircut from Dil and follows her down the street. tt0104036,7-YQ7rO_JSg,Jude tracks down Fergus and blackmails him into returning to work. tt0110889,ELzQ4OtDjrs,"A new priest, Father Pilkington, ministers to Father Thomas's congregation quite differently than what they are used to." tt0116324,kaZ87rTNkDA,Some tension arises over dinner between Agent Kent and his life partner Paul when the issue of adoption is brought up. tt0261392,NI7As3rOogo,Holden shows Jay and Silent Bob the awesome power of the internet. tt0416508,HZs_qERvDko,"The antagonistic Lady Gresham attacks Jane's character, but her family and, surprisingly, Mr. Wisley, rise to her defense." tt0113101,naTncfYgYtU,"Ted the Bellhop arrives in the wrong room to find himself in the middle of a fantasy hostage situation between Sigfried and Angela. From the segment ""The Wrong Man,"" directed by Alexandre Rockwell." tt0238924,T2-1TBORh9k,Margie Flynn reveals shocking details about her past to Francis. tt0120613,vaIRRbuiarE,"Pearl gives some unsolicited sales advice to Walker, the new blouse man." tt0271219,yZ1OgEqw2oc,"Stanley and Eve send Oscar back to school, and he has a promising encounter with Miranda on the train." tt0285823,Z5lyNKWvZfc,Final confrontations are met at the capitol during Barillo's revolution. tt0285823,fVltuJq1SQ8,Sands takes down two thugs blind and without the help from his Chicle Boy. tt0120879,qBrEcM3NbH0,Arthur greets Curt Wild years after their encounter when Curt was a rock legend. tt0285823,RS9Z138meRo,El Mariachi and his mariachi friends save El Presidente from General Marquez's militia. tt0120613,j84y65YfUS4,Things get awkward when Marty returns to find Walker helping Daniel recover from some wasp stings. tt0238924,X7ut7L-X1NQ,Francis and Tim find a dying dog on the side of the road. tt0110907,yNDm5IA6nQQ,"In trying to lock-up fashion photographer Milo O'Brannigan to come work for Elle Magazine, Regina succumbs to degradation when she gets down on her hands and knees." tt0238924,u3xawRs6Rik,"On a field trip to a local zoo, Francis and Tim encounter a cougar and start planning to capture it for a prank." tt0238924,HtagS7pfoJo,Francis and Tim cut down an old telephone pole. tt0238924,2Fy8vK7IGIs,"This animated segment introduces the altar boys' comic book alter-egos, The Atomic Trinity, as they do battle with the evil Sister Assumpta." tt0238924,kmU4DlO3wzc,"In the altar boys' comic book story, the Atomic Trinity fight a pack of evil motorcycle-riding nuns to save Sorcerella." tt0238924,TGWJfpAwlrI,Francis is interrogated by Sister Assumpta after creating a ransom note for the missing statue of Saint Agatha. tt0238924,NWuqkpD_A6E,"After Francis shoots the cougar with a blow dart, Tim enters its cage to capture it." tt0238924,isOtwdqD3y8,"In a moment of anger, Tim Tim reveals to Donny that he knows about Donny's secret, leading Donny to seek revenge." tt0238924,xTyEZA6ILOk,"In the altar boys' comic book world, Skeleton Boy engages in a final battle with Nunzilla." tt0110907,JSetLbD948c,"After stepping in some dog poo, Milo takes control of a fashion shoot for trendy cowboy boots." tt0113101,s-kucHjKbG4,"A man offers Ted the Bellhop $500 to watch his kids. From the segment ""The Misbehavers"" directed by Robert Rodriguez." tt0110907,Kz234-_khjs,Isabella does a sexy strip tease that makes Sergio howl with excitement...until he falls asleep. tt0113101,BCruokZzMXc,"Ted the Bellhop brings the misbehaving children under his watch a bedtime snack. From the segment The Misbehavers,"" written and directed by ""Robert Rodriguez" tt0113101,RAKPzL6uNOg,"The man returns to his hotel room to find it in pandemonium. From the segment The Misbehavers"" directed by ""Robert Rodriguez" tt0113101,9XvQJ2Jbg8A,"As the parents leave for a romantic night out, Ted the Bellhop tries to set some rules for the audacious children. From the segment The Misbehavers"" directed by ""Robert Rodriguez" tt0113101,RHULBucGlA4,"Ted the Bellhop presents the items Chester and his cohort have ordered. From the segment The Man from Hollywood"" written and directed by ""Quentin Tarantino" tt0116191,YO2-9VWwiUI,"At an outdoor party, Emma scorns Miss Bates for her prattling." tt0110907,wwLnrdD4l3U,"As Milo humiliates another unsuspecting fashion editor in Nina, both Sissy and Sergio hide in the closet." tt0113101,rQOBwQbssgo,"Leo explains the bet between Norman and Chester to Ted the Bellhop. From the segment The Man from Hollywood,"" written and directed by ""Quentin Tarantino" tt0113101,OsH_JszzicE,"Chester offers Ted the Bellhop $1000 to help with a bet with Norman. If Norman doesn't light his lucky lighter ten times in a row, Ted will cut off Norman's pinky. From the segment The Man from Hollywood"" written and directed by ""Quentin Tarantino" tt0113101,oqDlKpTihNo,"Ted the Bellhop puts vaporub on the eyelids of the children he is watching, hoping it will keep them from getting out of bed. From the segment ""The Misbehavers"" directed by Robert Rodriguez." tt0120907,qfym2Neaz4c,"When Ted Pikul and Allegra Geller plug Micro-Pods into their bio-ports, their game characters develop an overwhelming sensual attraction to one another." tt0113101,lllLnc58CoI,"When Ted the Bellhop is unable to find the correct drugs for the man dying in the next room, he tries to escape out the bathroom window. From the segment ""The Wrong Man,"" written and directed by Alexandre Rockwell." tt0116191,gNCAj7eS07I,"When Harriet Smith receives a letter from Mr. Martin proposing marriage, Emma tries to persuade her to decline in favor of Mr. Elton." tt0120907,Wt5LAZa7LAU,Kiri Vinokur performs surgery on Allegra Geller's bio-pod as Ted Pikul asks about how bio-pods work. tt0116191,HO4TjpZw5zc,"Despite her best efforts to push him out of her mind, Emma thinks constantly of Mr. Knightley prior to his return. She prays that if she can't have him, he might at least stay single." tt0116191,6B6yElrEeKM,Mr. Elton is unusually attentive to Emma at the party. tt0116191,LTgOLHxQ9mM,Mr. Knightley proposes marriage to Emma. tt0110907,M4nag_xN0Rw,"Kitty Potter, working for FAD T.V., interviews fashion designer Thierry Mugler." tt0116191,41MHIJIg6u0,Mr. Knightley confesses his love for Emma. tt0116191,mjt0iNTJrWE,"Mr. Elton confesses his love to Emma, who rebuffs his advances." tt0116191,8k_gzuVqZmk,Emma and Mr. Knightley argue about whether Harriet should have rejected Mr. Martin's marriage proposal. tt0116191,YOLGp-P5QFc,"Emma and Frank Churchill sing a duet of Arthur Somervell's ""Silent Worship"" at the Coles' Party." tt0120907,HdU-6bKqhzk,"Gas betrays Allegra Geller to get the bounty on her head, but Ted Pikul shoots him through the neck." tt0110907,9NCpU9laV9I,"Competing fashion editors Nina and Regina both feel slighted on their lavish hotel suites, and desire the other one's suite." tt0120907,W1fkINKMwHA,Gas gives Ted Pikul his bio-port. Ted asks Allegra Geller why bio-ports don't get infected. tt0110907,YHKkh9b1Oi0,"When Joe opens up a bottle of wine, Anne becomes a real lush. Meanwhile, Milo takes a group photo of the Pret a Porter fashion designers." tt0110907,9KhqPTmsCJU,"On spotting Sergio - an old lover - after a fifty year absence, Isabella faints in front of Kitty Potter." tt0120907,-qq785V7JOU,"When Ted Pikul pauses eXistenZ, he gets the impression that he is still in a game, and that Allegra Geller is a game character." tt0120907,ssM67LXOwQw,"At a Chinese restaurant in the game world, Ted Pikul follows a ""game urge"" to kill the waiter." tt0120907,4zJ3a0K2DP0,Ted Pikul tries to keep Allegra Geller from bleeding to death from her severed umbilical cord. Deadly spores are released into the air when Yevgeny Nourish destroys the diseased pod with a flame thrower. tt0120907,89hYiDNscBE,"In a twist revelation, the characters realize they have been playing a new game called tranCendenZ all along." tt0120907,o3f521sUTaE,"After finishing the game tranCendenZ, Allegra Geller and Ted Pikul reveal that they are realists and assassinate Yevgeny Nourish." tt0120907,2tmMMXTmM9o,"After killing Kiri Vinokur, Allegra Geller confronts Ted Pikul with her theory that he's actually a realist assassin. Once her suspicions are confirmed, she kills him by detonating an explosive she has placed in his bio-port." tt0110907,SzQ4cDkdsqg,"Lounging around in their hotel room, Joe and Anne get into an argument about their sexual dynamic, and then immediately make-up." tt0110907,ZTUXWwbqu-I,"After spending the entire week of pret a porter in a hotel room, Anne and Joe have a tender farewell." tt0858479,OD69M9N_ihQ,Vanessa advises her father to move on after he comes home from his botched date. tt0858479,A7kyMbwD9o4,Chuck's idea to take Vanessa out drinking backfires when she drunkenly kisses him. tt0241303,DcH_p1vfD1g,"Vianne serves her first customers and prescribes them their ""favorite"" chocolate based on what they see in her spinning plate." tt0241303,yuU67Mv4bFA,Vianne tries to tame the grouchy Armande with some chocolatey goodness. tt0241303,BbsJiMmpObc,Guillaume confesses his recent sins to Pere. tt0241303,Q4-XxWqSgH8,"Vianne visits Josephine in the hopes of becoming her friend, but must first get past her boorish husband." tt0241303,yoGdST0RFuc,"Vianne and Anouk befriend Roux, the pirate"" who's just docked his boat on the river shore, and buy a trinket from him to spite the passing mayor." tt0241303,70E-IYUdbZk,"Vianne opens up to Roux about her lifestyle and her hopes for the future, leading to an intimate moment." tt0241303,rGvIBT10JDU,Roux plays along with Anouk and pretends to eat a worm. tt0241303,xmwm0RH8i-4,Vianne defends the household when Josephine's abusive husband breaks in. tt0241303,PhkCGApLP30,"Vianne invites Roux into her shop, and is surprised when her ""favorite chocolate"" routine doesn't work the same magic it usually does." tt0241303,xftZzmdlCKk,Vianne invites Roux to a party she's throwing. tt0274558,U-XEvzDp70Y,"Laura receives a visit from Kitty, her upbeat neighbor." tt0274558,hPF9nzzuMfo,Laura and Kitty share an intimate moment when Laura consoles Kitty about her inability to get pregnant. tt0236640,UGYt7xZWoPw,Lizzie meets Noah at a Lou Reed concert where she tries Ecstasy for the first time. tt0274558,1PKDDa6p-xE,Leonard scolds Virginia for running off and reminds her of the reason he's so worried about her. tt0236640,xKL_T4z0QX4,Lizzie's epic writing binge becomes a concern to her friends and a serious hazard to her health. tt0274558,_f0TNK7fb1w,Laura represents Virginia's heroine as she verges upon killing herself. tt0236640,xsyNWPpAb14,"After sleeping with Noah, Lizzie reveals to Ruby that it was her very first time." tt0274558,ajgeUrUcqfE,Clarissa shares with Julia her dissatisfaction with her present life and reflects upon a moment of happiness in her youth. tt0274558,CWAAUSNLZXQ,Richard and Clarissa discuss how his condition has affected her life. tt0274558,vWZapP8b11s,Clarissa visits Richard to take him to the party she's throwing him; Richard says goodbye. tt0274558,Qk_tn8K0OwA,Virginia's niece gives a dead bird a funeral and asks some big questions about death. tt0115632,DHkGu6e0R4I,Andy Warhol and Basquiat work on a painting together while discussing the impossible expectations that come with being a famous artist. tt0274558,JsUh_lfcyKk,Laura picks up Richie after deciding not to kill herself. tt0236640,HtpiEXXf7dI,"A drunk and surly Lizzie acts out in front of her grandparents and her mother, Mrs. Wurtzel." tt0274558,kvHcswMy05A,"Laura returns upon Richard's death, and confesses her story to Clarissa." tt0236640,l6SNAV2S5es,Ruby confronts Lizzie after learning that her boyfriend had an affair with her. tt0236640,UaRyn-tb0U4,"After an awkward date, Lizzie and Rafe make love." tt0236640,2wy3acVALNI,"Lizzie climbs her high horse and pontificates to Ruby about the virtues of ""real"" love." tt0285823,jAZbK72VLFA,El Mariachi finally gets revenge on General Marquez. tt1045670,KtGm2OkQa3w,Poppy and her friends share a laugh at her flat after a night of partying. tt0105236,zr5fCCcWRJ4,"After killing and getting shot defending his partner, Mr. White discovers the truth about Mr. Orange." tt0105236,z0s6zZJdsZo,Tension mounts between Mr. White and Mr. Pink and only grows when Mr. Blonde arrives at the meeting point. tt0105236,HzF_TbmDH5s,"Tension between Mr. White, Nice Guy Eddie and Joe over the loyalty of Mr. Orange leads to a violent Mexican Standoff." tt0175142,1ZT_oKZGgew,Buffy wins the beauty pageant after her acting ability is enhanced by the improvisational work of The Killer. tt0236640,EzW2MKQ5q4s,"After seeing Rafe take care of his mentally retarded sister, Lizzie makes the bizarre accusation that he ""gets off"" on the misery of others." tt0105236,rLx1ABxely0,Mr. Pink and Mr. White discuss the heist and Mr. Pink recalls his escape. tt0340377,EyXDqVQ7MBc,Joe attempts to befriend Fin. tt0236640,Ad7rUGIPVqQ,"At her doctor's insistence, Lizzie goes on medication for her depressive episodes. Meanwhile, Mrs. Wurtzel is mugged and beaten, as both mother and daughter hit rock bottom." tt0120577,Qxn6aafaNP8,Shane asks Steve to put some of his friends on Studio 54's list to get in. tt0236640,WyNGkhmkuus,"Lizzie and her mother, Mrs. Wurtzel, share a heart-to-heart moment of reconciliation, grief, and guilt." tt0111512,2eMqB3CFMkI,Tsang challenges Fei-hung to a friendly fight for fish. tt0236640,AVKK_tDNQMc,"Dr. Sterling catches Lizzie during a suicide attempt and, with her scowl, prevents Lizzie from killing herself." tt0261392,b2zQmmYEDY4,"Marshal Willenholly corners Jay and Silent Bob in a scene reminiscent of ""The Fugitive""." tt0113158,3RLPHNi_2-A,"Though rough around the edges, Sadie performs the Van Morrison song ""Take Me Back"" with raw emotion, and her entire heart and soul." tt0175142,sHTeguzrPto,"Cindy shows off her ridiculous fighting ability as she proceeds to kick the living crap out of the killer, Matrix style." tt0175142,q9QJ_S62yVo,Drew bungles her way into the hands of death... but not before she shows off her killer bod. tt0120577,tfvoOEa1OOI,Steve tries to persuade Greg to give him fellatio on top of a pile of money. tt0175142,RBvtPZ6zyHI,"As Cindy and Bobby get intimate, the Killer gets stoned with Shorty and drops a killer beat." tt0175142,A3oL7v7PLac,"A spoof of the Budweiser ""Wassup"" ads from the late-90s." tt0175142,Sgwfvu6k0xs,"Brenda's obnoxious movie-going habits are brought to a sudden end when the audience revolts, allowing The Killer to enjoy the show." tt0175142,T8oTlWwAPFI,"Flooded by a sea of TV reporters, Shorty finds a captive audience for his eyewitness account." tt0175142,-zLOrCQ0BpQ,Buffy takes the notion of victim role-playing a little too far as she continues to prattle on after being brutally murdered. tt0175142,mw7xjHBJOvs,Gail gives a snot-filled apology to her cameraman's family after she gets him killed during an interview with The Killer. tt0306047,WUfY9jgSrLI,Busty Becca and Kate are haunted by a mysterious and unseen force. tt0120577,GhSSEuAEcm0,Shane and his friend Ricko try to get into studio 54. tt0175142,ZAerssgC4pc,The Killer's attempt at playing mind games with Cindy yields less than desirable results... tt0175142,Qpbf9NUuuUk,"The Killer will murder anyone and anything, including a random, lowly victim at a generic house party." tt0175142,UlIBiZxArGY,Cindy and The Sheriff realize at the last moment that Doofy was the real killer all along. tt0306047,D9FBXb4G4GI,Hijinks ensue when Cindy commandeers Ross Giggins' teleprompter in order to let the populace know about the killer videotape. tt0306047,9iSVgAZ6bSM,George's rap battle victory is short-lived after he inadvertently reminds the audience of the Klu Klux Klan. tt0120577,9I0E9w8Nqfg,Steve introduces Shane to the other bartenders. tt0120577,vzt7Yb_-yiY,Shane and Julie discover they have more in common that they thought when they run into each other on Christmas Eve. tt0306047,zAeofWDUArU,"Fearing that his daughter is kidnapped, Tom fights MJ to rescue her... only, it isn't really MJ that he's fighting..." tt0306047,Fxx7g5nz4WQ,Cindy's mind-bending discussion with the Architect reveals a greater threat in the form of an alien attack. tt0306047,kSk0pCs4pGQ,Brenda messes with Cindy by faking her own injuries for her own gallows amusement. tt0104567,Qe_3aoChgwI,Yvonne and Johnny take turns shaving each other in the tub. tt0306047,viCosY2u6YU,"The alien invaders turn out to be friends, and they have quite a bit in common with The President." tt0306047,mqnB2ef3S6M,Tom remembers his wife Annie's parting words as he holds her in his arms. tt0306047,umjmV3SwDjw,"During an awards ceremony at the White House, the President becomes paranoid about aliens disguising themselves as humans. Instead of calming the American public, the President ushers in a wave of chaos." tt0113158,AIw6mK0Ob60,"As Sadie finishes up the song ""Take Me Back,"" Georgia joins her on stage to sing back-up harmony." tt0858479,o1mDknOtAv4,Janet's unexpected presence at Christmas dinner receives a mixed response from the Wetherhold family. tt0113158,Ji28PrD7P-M,"At a benefit concert hosted by Georgia performs the Van Morrison song, ""Take Me Back,"" with raw emotion." tt0120613,SnMSSAqPSaw,Alison confronts Pearl about her immature behavior at Woodstock. tt0306047,oiikIyodOAk,Aunt ShaNeequa loses her temper when the ghost in the TV starts to cop a serious attitude. tt0307987,Q1MHXYx2820,"After Willie collapses in a drunken heap, Marcus and Gin argue about how to handle the situation." tt0120613,u83fkqXPIGE,Pearl tries on a tie dye blouse and Walker gives her his number. tt0240890,gJvgjH9Tvpo,"Jonathan and Sara finally share their first kiss, knowing in their hearts that they're right for each other." tt0120613,xaCe8T1fXSM,Pearl returns from Woodstock to find Marty waiting for her with a lot of questions. tt0120613,KerwQ_DokIw,"When Alison gets her first period, her grandmother Lillian slaps her, following family tradition." tt0120613,c_a5Y18mdLo,"Pearl calls Walker to arrange a date to watch the moon landing, while Alison tries to convince her mother to let her go to Woodstock." tt0120613,HZkrxGuKHkU,Pearl and Marty find that making out in the car is not as easy as it used to be. tt0120613,0IxeTLiovq8,Both Pearl and Alison find themselves reveling in the freedom of the Woodstock music festival. tt0858479,tPnacrrdjIk,Janet spells out for Lawrence his rudeness and self-absorption on their first date. tt0120613,YzW2OjTJc0o,Walker seduces Pearl as Neil Armstrong takes his first steps on the moon. tt0114194,0iz6-4QxGnc,"As they search Gabriel's lair, Dagget and Katherine are stricken with a vision of war, as thousands of angels lie dead before them." tt0114194,ugw3DUIVKow,Dagget and Katherine rescue young Mary from Gabriel's grasp moments before she is torn apart. tt0858479,zD0YTr7ZF58,"Lawrence's adoptive brother, Chuck, drops in to volunteer to be Lawrence's driver while he recovers from his seizure." tt0858479,JQc_dMcByUk,"Vanessa visits her father in the ER, where he quizzes her on SAT words." tt0858479,9pT5FVBFunA,"Lawrence gets a second chance with Janet after the previous bad date, this time with more success." tt0858479,j1dkwnqffaM,Lawrence's underachieving brother criticizes the poor choices Lawrence has made. tt0120613,1n4wtaSq7AY,Marty wonders who prevented Pearl from making a change in her life. tt0858479,a9eT3NaWLPw,Chuck makes amends with Vanessa after their relationship had become awkward over a drunken kiss. tt0120679,wyKfuDzbbOI,"In this unique collage-style sequence, Frida and Diego arrive in New York City." tt0120613,bTdvsBKjlbE,"Marty assures Alison that even if her birth was an accident, it will always be the most important moment in his life." tt0105488,8W3_WigxsXs,Scott Hastings prepares for the luxurious Pan-Pacific Grand Prix Dancing Championship. tt0105488,csfyEVjimu4,"When Scott becomes boxed in, he resorts to ""crowd pleasing steps,"" against the will of him family, his coach and his dance partner." tt0240890,BHFoI47tc9A,"After losing his potential soul mate, Jonathan reads an early 'obituary' about himself, written by his best friend Dean as means way to create inspiration in his life." tt0105488,lIzqZwDHis4,Les Kendall and Liz try to talk Scott out of his wild and inappropriate steps. tt0105488,guq6F4Jm5Rs,Fran professes to Scott her desire to be his partner after she witnesses him dancing alone. tt0114194,o-rVEtR9rfQ,"In his search for the missing soul, Gabriel interrogates and tortures the angel Simon, his former comrade in arms." tt0105488,K-zYWpnMyXI,Scott auditions new partners despite the fact he knows Fran is the one he wants. tt0114194,D1kIRqy-sbA,"Sensing a threat to her school kids from Gabriel, Katherine confronts him directly about his motives." tt0105488,WRx0b993Lj4,Scott and Fran practice for the Pan-Pacific Grand Prix Dancing Championship. tt0114194,T1Z39yM9AVk,"During a visit with the county coroner, Dagget discovers a series of strange details about the mysterious corpse that was found at an apparent routine crime scene." tt0114194,ChIS70dX0eU,"As Dagget translates an ancient passage from the Bible, the archangel Gabriel begins his search for Simon." tt0114194,mPoyezWAghE,Lucifer appears before Katherine and tells her why the angels have always hated the humans. tt0105488,O6IMaR_G_sU,Barry Fife inaccurately describes the tragic tale of the downfall to Scott's parents' dance career. tt0105488,IzOtTXOVc9A,Scott and Fran spontaneously begin to dance together before he is to meet his new partner. tt0105488,xwsTm8Xo7kE,"Fran's Spanish family introduces Scott to the exotic dancing style of ""Pasodoble""." tt0114194,ix08f9qDkk8,"After Dagget rejects Gabriel's offer to join his cause, Gabriel reveals to him the true reason for his unholy actions." tt0105488,RATBzjmcbh8,Scott and Fran make a dashing introduction to the Pan-Pacific Grand Prix Dancing Championship. tt0114194,2tQUU1c6MIw,Lucifer destroys the archangel Gabriel by ripping out his heart. tt0114194,ragJxrFknuQ,Gabriel proves to be quite menacing as he intimidates Dagget in a church. tt0114194,uc7tYT1-Y78,Simon engages in hand-to-hand combat against a mysterious and powerful foe. tt0120577,uC1Lmk5qK2Q,Anita gives disco lessons. tt0105488,B4Us9Mq7GIc,Scott learns the style of Pasodoble from Fran's Spanish family. tt0120577,XTfUTOcdkqY,"After serving time in jail, Steve hosts a welcome back party for his friends." tt0308644,b3EWsHg08x4,The Davies brothers' grim and controlling grandmother provides J.M. Barrie inspiration for the character of Captain Hook. tt0120577,N0gaRYJH5GE,Disco Dottie collapses during Anita's debut song on New Year's Eve. tt0120577,qKerIOG7jdI,Shane discovers he got the clap. Look out for the Ron Jeremy cameo. tt0120577,Y0FAYOIt-VQ,Shane and Anita attend an upper class dinner party. tt0120577,qmBAF_JTwDs,Steve unveils an act in honor of Truman Capote. tt0301199,ntALVSmIUrg,Okwe discovers a heart in the toilet of one of the hotel rooms. tt0120879,t9iFa_dTcN0,"Arthur attends a concert celebrating the ""death of glitter"", opening with the song ""20th Century Boy""." tt0340377,HYUfT__t3jU,"Olivia welcomes Fin to the neighborhood by offering him a ""housewarming/sorry I ran you off the road"" gift." tt0111512,eN7zGm5KKrI,Fei-hung showcases his drunken boxing technique to Fu Wen-Chi. tt0104567,wqvnT7u0mSg,Johnny is thrilled when a pair of black suede shoes drop out of the sky. tt0261392,6n6RVIIC8SE,Jay and Silent Bob disguise their monkey as a boy to evade the Wildlife Marshal. tt0247425,CzaHTATaPAc,Matt explains the sociopathic behavior of lobsters. tt0104567,MGiNXAG0gjw,Johnny returns with Darlette to her apartment despite the fact that she has a boyfriend. tt0104567,IIoBuBiTfS4,Johnny sings a song for Darlette and denies to Deke that he's in love. tt0120679,ToZx1LjLmrM,Tina Modotti toasts Diego and Frida's radical marriage. tt0120679,HadRbtEI7KU,"Following her separation from Diego, Frida cuts her hair." tt0104567,5k2vzUZYdfw,Darlette breaks up with Johnny when he questions her relationship with an abusive boyfriend. tt0120679,s9jX0S7mvB8,"Frida admits her affair with Leon Trotsky to Diego, then berates him for his infidelities." tt0104567,5wThW2AGZw0,"Yvonne sits in on a rehearsal with Johnny and his band, featuring B-Bop on bass." tt0104567,-9xP6hMwNy4,"Johnny spends the night with Yvonne, who has some specific requests in bed." tt0104567,pEjOIBe21a8,Yvonne flips out at Johnny and forces him to admit his true feelings for her. tt0104567,D0NZyQWyZfI,Johnny admits to cheating on Yvonne when a pair of panties falls out of his pocket. tt0104567,x0KnLMaLLcI,"Johnny runs into Freak Storm, who sings him a deeply personal song." tt0104567,lGIEwdZTNRQ,Freak and Johnny discuss ways to break into the music industry. tt0301199,yhf9YADtuyA,"While searching for anything suspicious in the room he found the heart in, Okwe finds himself peering in on Juliette and her John." tt0104567,JcvSNsyvwNc,"Johnny runs into Freak, who offers Johnny a chance to stay at his place with his new girlfriend Darlette." tt0105236,VtkM2SPaSJ8,Mr. White and Mr. Orange go over the heist. tt0301199,4_4HFkbbbC4,Okwe and is co-workers save Senay from Immigration Officers. tt0301199,2ZDDIJV5ypc,Okwe and Senay get to know each other over a Nigerian dinner. tt0301199,irnb55gfwNc,"After completing the surgery, Okwe and the others trade the kidney with their mysterious business partner." tt0301199,ZJhHYsmJra0,Senay bites her boss's genitals when he makes her preform fellatio. tt0301199,EmTXI8HV9nE,"Okwe and Senay set up Juan before the ""surgery""." tt0301199,83twDFjlCjM,"Senay considers offering her body to the black market after being raped by her boss, despite Okwe's warning." tt0301199,g05Ja_89tOg,Juan persuades Senay to have sex with him for her passport. tt0301199,GL2B4xLAjE4,Okwe tries to convince Senay that for their kind there is only survival and dreams can be hopeless. tt0105488,qjKhJnrMamA,"When the plug is pulled on the music, the croud makes their own beat to encourage Scott and Fran to continue dancing." tt0301199,wek_o4V_T00,Juan tries to force Okwe to preform surgery on one of his clients. tt0113326,s0EAZmF0k6g,Keung gets chased into a parking garage by Tony and his gang of bikers. tt0105236,NRd2gti9rHE,"Mr. Brown explains how Madonna's ""Like a Virgin"" is a metaphor for the pain a sexually experienced woman feels when an abnormally large penis penetrates her. Meanwhile Mr. White gets fed up with Joe's address book." tt0105236,Eb5uCh-8rZ4,Mr. Pink explains his reluctancy when the crew is asked to throw down a tip for their waitress. tt0105236,4W5KhfJHF_4,Not everyone on the team is happy with the colorful aliases Joe gives out to the crew. tt0105236,PGqB6JIUzBo,"Mr. Blonde moves to the beat of ""Stuck in the Middle With You"" on K- Billy's Super Sounds of the 70's before cutting off Marvin's ear with his razor." tt0105236,z8oaq50tGRI,Mr. Orange intervenes before Mr. Blonde can ignite Marvin. tt0301199,fPUJS7w4Dag,Okwe says his final goodbyes to Senay as she boards the plane to New York. tt0117283,P5GNspEWA68,Scott breaks the game plan to make Tom look good. tt0077594,Zx8vIjEKvT8,Billy Lo begins his epic fight with the towering Hakim. tt0110889,-zPjGsII_fw,Members of the congregation get riled up when Father Pilkington returns to Mass after being outed by the press. tt0077594,fQBlpIivzY8,Billy Lo triumphs over Hakim by choking the life out of him. tt0077594,f3_39H9_3Qw,Billy Lo engages in a hand-to-hand fight against a formidable hapkido master. tt0077594,OIBtFHZy0xk,"On the set of his latest action movie, Billy Lo is shot by a would-be assassin during a take. Tragically, this scene would prove to be a premonition of the death of Bruce Lee's son, Brandon Lee, on the set of The Crow two decades later." tt0077594,5N0ifKLehLM,"Billy Lo learns that The Syndicate are serious people, and that Hakim is their most dangerous and ruthless enforcer." tt0077594,SnpNDM1XeZY,Billy Lo overwhelms Pasqual with his speed and fury. tt0077594,lYb1h0iDWSE,Miller and Lo Chen rough each other up in the ring. tt0077594,H98MLmW5tYw,Billy Lo and Pasqual engage in an intense fight with nunchakus. tt0077594,qslhUrtrjXQ,"Miller knocks out Lo Chen, defending his title as World Champion." tt0113326,y69iLU9cSyo,Keung watches from above as two rival bikers threaten to wreck the limo intended for his uncle's wedding. tt0113326,l2IJxv1lbAc,Keung springs into action when Angelo and his thugs cause trouble at the market. tt0120577,qPfLNjGXa2M,Greg catches Shane and Anita flirt. tt0113326,NBG53Xzikp8,"Backed into a corner, Keung withstands a brutal onslaught of glass bottles from Tony and his gang." tt0113326,5TIiQZo6snc,"Keung helps a woman in distress, only to learn that he's been lured into a trap." tt0113326,Uo18enRpmG4,"When Keung is discovered hiding in a truck full of balls, his only choice is to jump to safety." tt0113326,xfTtfDBUrvA,Tony calls for an end to the fight once he realizes that defeating Keung is impossible. tt0113326,6ZZHQMtbhxw,Keung walks right into trouble when he enters the gang's hideout and challenges Tony to a fight. tt0113326,IUodLjwwSBU,Keung chases White Tiger's gang onto a hovercraft before getting dragged behind it. tt0110889,dMxAYJDzSls,"Father Pilkington breaks down in tears when Lisa, a girl he believes he failed when he did not report her abusive father to the authorities, comes forth to recieve communion from him during his first Mass as an open homosexual." tt0113326,mqzu3AI7Dow,Keung uses an antique sword and a wrecked Lamborghini to take out the hovercraft and catch the bad guys. tt0113326,ZWrv3l_2tGQ,"The hovercraft continues its rampage on land, running over both Keung and a Lamborghini." tt0113326,PpD6HmPdadI,Keung finds White Tiger on the golf course and takes him out with the hovercraft. tt0110889,la1tZNwaBog,Father Thomas preaches on the hypocrisy and corruption of his Church. tt0117283,vlqQwxeYtr8,"Tom tries to make a move on Julie at the end of the night, but it goes bumpier than he'd hoped." tt0110889,L5xFe4LFtb4,Father Pilkington attempts suicide after the newspapers out him as a homosexual. tt0111512,eG9QMl_w1pk,"When Wong Kei-ying threatens to beat Mrs. Wong for letting Fei-hung drink and fight, Mrs. Wong avoids it by pretending to be pregnant." tt0110889,evzxQrEfIG8,Father Pilkington argues with Jesus while Mrs. Unsworth discovers the horrifying truth about her husband. tt0110889,nCO2V7YS1nQ,Father Thomas preaches on humanity's responsibilities to the ongoing evolution of our creation. tt0110889,xMy-NiI7q-M,Father Thomas and Father Pilkington argue over their responsibilities to their congregations. tt0299977,RJAU3K60wIk,"The King figures out Nameless' plan of assassination, given away by the candles' flames, but it may be too late." tt0111512,RF9vhf_r81w,"Fei-hung overpowers Henry after consuming the ""perfect amount"" of alcohol." tt0111512,jXA-4rN9-ds,Fei-hung and Henry throw down in the mines. tt0111512,F85KoecJotw,Fei-hung and Fu Wen-Chi are attacked by the axe gang. tt0111512,C02zRnebZu0,Henry orders his thugs to stop Fei-hung. tt0111512,N_vildqkupI,Fei-hung battles a menacing henchman using chains and fire. tt0105236,6w-07V2q_DE,"Mr. Orange finally gets the opportunity to recites the commode story he has been rehearsing, which is so convincing it practically tells itself." tt0111512,8LGY68ppqVk,Fei-hung and Fu Wen-Chi use a bamboo to escape the axe gang horde. tt0120679,06u-a5jmi6o,Frida and Tina Modotti dance the tango together. tt0111512,_mSvR3aQeWU,Fei-hung and his step mother name the various styles of Fei-hung's moves before his father interrupts. tt0111512,Nlyai-wfZLw,Fei-hung uses his step mother's liquor to defeat purse snatchers using his drunken boxing technique. tt0111512,FAY2LYoYCAU,Fei-hung attempts to stop a thief before his train leaves. tt0213847,HN-YqWQ3PEE,Renato speaks his first words to Malena. tt0117283,Wvyi2PEVFcQ,"Tom freaks out when his high school crush, Julie DeMarco, shows up, and hassles Scott for his shirt." tt0104558,CIAyyugbq54,Jackie Chan and his co-actors barely survive the film's craziest stunts in Jackie's trademark credit sequence. tt0355295,dp4qnnVSk8Y,Will and Jake barely escape the enchanted forest. tt0117571,qe_BzGXRDzo,Principal Himbry meets his untimely demise at the hands of the Ghostface Killer. tt0105236,vp94AFms0V0,"When the heist goes bad, Mr. White gets out by tagging a couple of cops and Mr. Orange falls deeper into his cover than he ever expected." tt0117571,NdYmIIbYoH0,Tatum's desperate attempt to escape the Ghostface Killer is met with crushing consequences. tt0117571,mvLpbHKV1_8,Randy breaks down the do's and don'ts of surviving a horror movie to his less than interested audience. tt0117571,gwnFTbQVOwM,Sidney's escape from the Ghostface Killer is only momentary as he murders Kenny the cameraman right before her very eyes. tt0117571,zyVKJXfRm_g,Billy and Stu reveal themselves as the Ghostface Killer to Sidney. tt0211915,maEC9NS6CkA,"Raised by neurotic parents, 6-year-old Amelie becomes introverted and imaginative." tt0117571,kR3VW07XfUo,Billy and Stu Matthew Lillard) lay out the final touch of their master plan as Sidney watches helplessly. tt0117571,CiT-XIWEC8c,Sidney gives the killers a taste of their own medicine as she dons the Ghostface mask. tt0117571,xCMsK2duu2s,Sidney and her friends discuss the gory details of another student's recent murder. tt0118842,iaofBseh0J8,Silent Bob ends his reticence and dispenses some useful advice to Holden based on his own painful life experience. tt0211915,Wuntz3KDIAk,"Suddenly compelled to help mankind, Amelie helps a blind man walk across the street and narrates the sights of the boulevard." tt0117571,LWxSBbBX4fs,Casey gets a menacing phone call from a stranger who happens to be a fan of scary movies. tt0211915,kORHCVmSucM,"Collignon is mystified by the changes Amelie has made to his apartment, which include switching out his slippers for a smaller size, switching his light bulbs for dimmer ones, sticking a needle in a cord, changing his speed dials, and adding salt to his liquor." tt0117571,gVgsadEybgQ,Casey is brutally murdered by the Ghostface Killer. tt0117571,v1M3w_o7cOc,The killer manipulates Casey into giving the wrong answer to his deadly trivia questions. tt0117571,p8Ejl4eeFXM,"After being attacked by the Ghostface Killer, Sidney falls into the embrace of her boyfriend Billy, only to be disquieted by what she finds next..." tt0118842,1EbSU5Zyx9Y,"When Banky gets in Holden's face about chasing Alyssa, Holden reveals that he's falling for her." tt0211915,vTbcPIKxmP0,Mr. Dufayel encourages Lucien to create monikers for the cruel Mr. Collignon. tt0118842,l4AmSVb6Hew,Holden and Banky mess with their friend Hooper X as he gives his keynote speech. tt0211915,26MkbK_C-lM,Amelie relishes being close to Nino on the ride at which he works. tt0211915,hVnFKJJYLPA,"After sending Nino on a scavenger hunt for his photo album, Amelie gives him more clues via pay phone." tt0211915,bQutB3mYc84,"Connected by fate but having never spoken, Amelie and Nino share their first kiss." tt0211915,Inj01auwE9c,"Nino goes to The Two Windmills to meet Amelie as she instructed, but she is too shy to talk to him." tt0211915,mbTZ4ywa1Dc,"The people Amelie helped are in a better place in their lives, as is Amelie herself - she rides blissfully on the back of Nino's bike." tt0118842,g1JAILio6-s,"After Alyssa explodes at Holden for professing his love to her, she runs back to him and they share a passionate kiss in the rain." tt0118842,atGNvojXOvM,Holden professes his love for Alyssa. tt0118842,cxWRWbdsTjc,"Banky tells Holden that Alyssa's nickname of ""Finger Cuffs"" originates from an X-rated story." tt0118842,_eCWpUV7cOI,Banky and Alyssa debate the epistemology of what it means to f**someone. tt0118842,epHCMiCtt3M,"Banky flips his lid after an annoying fan gets in his face about being ""just a tracer.""" tt0118842,OmQGN9X57Ts,"Much to Holden's chagrin, Banky and Alyssa one-up each other with stories from their past sexual encounters -- a direct reference to this famous scene" tt0118842,Iqc8WWvcTN4,Alyssa educates Holden about lesbian sex and about her attraction towards women. tt0118842,_undGtyUxeg,Holden breaks off the relationship with Alyssa after learning about her lengthy sexual history. tt0307987,wVWk6IfRuEE,"The non-confrontational Bob Chipeska asks Gin, his head of mall security, to find a way to get Willie fired." tt0247425,V9K9m155U2E,Ruth accuses Matt's leniency with their son to be the cause of his death. tt0118842,Pe7G8iCN_nM,"Holden suggests that he, Alyssa and Banky have a three way in order to share an intimate experience together and to repair the relationships that have been fractured." tt0307987,Z0W6ufDtdS8,"Held at gunpoint by Marcus, Willie is at his most desperate as he contemplates the last moments of his life." tt0307987,Tt8DoNerIPY,"Having caught on to Willie and Marcus's con game, Gin leverages a deal for half of all their earnings." tt0307987,1LxDWSYgiUc,"Enlisting the help of Marcus, Willie tries to teach The Kid the basics of self-defense... which then goes horribly wrong when everyone gets hit in the balls." tt0247425,JuQmiyLzHdw,Matt visits his son at the docks and discusses his future prospects. tt0247425,gXJH5jhO9to,Carl discusses the unfortunate case against Richard to the Fowlers. tt0247425,R1G5HwXEw9M,Matt and Ruth go through their own moments of grief at their son's wake. tt0247425,JqyCEV_iACo,Richard murders Frank when he comes for Natalie and his children. tt0247425,PhXFRRVBKus,The defense attorney sets Natalie up to admit she did not witness the murder. tt0247425,xE9YSmsKm8I,"When Matt suffocates the air out of his first poker game since his son's murder, Henry recites ""My Lost Youth"" by Henry Wadsworth Longfellow." tt0307987,b1eMAFWXZ4Q,"After meeting Willie and Marcus for the first time, mall manager Bob Chipeska is left deeply perturbed." tt0307987,AKONPxrqFxs,Willie and Marcus browbeat Bob Chipeska into keeping their mall Santa jobs. tt0247425,bZq6Gv7rP0w,Ruth runs into the two people involved with her son's death on the same day. tt0247425,zFo_QE8j1Hs,"Matt acuses his wife, Ruth of being an overbearing and unforgiving mother to their now deceased son." tt0116324,bw4xDTQYIfE,"As Ed complains about the smell of cheese, and Pearl shows off the wonders of a bra, Mel tries to introduce Tina to his parents." tt0307987,Auq9e3lBq6I,"After engaging in some casual sex with Sue, a barmaid, Willie is accosted by a crazy man in the parking lot." tt0247425,vcsl8fSgqls,"Matt leads Richard out to a cabin, where he shoots him in cold blood." tt0116324,UnXDK24wbSg,"Agent Kent makes a move on Nancy in the bathroom, while at the dinner table, the Schlichtings inform their biological son Mel that they went to prison for distributing L.S.D. back in the sixties." tt0307987,VJOO-fcRLzk,"In order to keep a low profile, Willie shacks up at The Kid's house. Delighted by the fact that Santa is staying over, The Kid asks him a slew of questions about what it's like to be Santa Claus." tt0307987,qUu8VHynw40,A portly Kid gets under Willie's skin by asking him one too many questions about being Santa Claus. tt0116324,l83CcqhP-kY,"While engaged in a flirtatious game of indian wrestling with Tina, Mel accidentally breaks Valerie's glass shelves with all her precious glass animals." tt0307987,EKd7z5CY4BU,The Kid seeks Willie's advice after he gets humiliated by some bully punks. tt0307987,IHR5ljAFCGE,Willie receives an unexpected present from The Kid. tt0116324,36QmLon8dn8,"Mel meets the twin sisters Jane and Sandra, and learns that a mistake has been made by Tina in that Valerie is not his biological mother." tt0116324,iF_053JQnQE,"When Fritz points out that Mel looks quite Jewish, he realizes that Mel is not his son, but must be the son of an old friend nicknamed ""needle dick.""" tt0116324,CDn1rXzkBEM,A brief but heated make-out session with Tina leaves Mel with a pup tent which is impossible to hide in front of his wife Nancy. tt0116324,_kItBZZK1p0,Paul has an L.S.D. freak out when his quail is dosed by Lonnie. tt0116324,yjU5akwca64,"Discovering a taco place, the Coplins make a blind u-turn which leads to a car accident with the Schlichting family." tt0116324,nNXIh6RrvNw,"Mel walks in on Agent Kent licking Nancy's armpit. Meanwhile, Mary tries to calm Paul down from his L.S.D. freak out." tt0115639,4K8M2EVnoKc,"While shoveling snow, Willie meets his precocious thirteen-year old neighbor named Marty." tt0115639,E8LYvflSTAE,The guys are immediately smitten when Andera walks through the barroom doors. They each try to impress her in their own way. tt0115639,DPQ47h-k-nw,"Willie plays the piano while leading the bar in a drunken rendition of the song ""Sweet Caroline.""" tt0115639,RqCVbiHCYAA,"Shopping at a drug store with Willie and Tommy, Gina goes on a rant about men's obsession with models and the objectification of women." tt0115639,M-h1ERyxbQ0,Marty flirts with Willie while ice skating. tt0115639,tMIO48oFmHc,A drunken Willie obsesses over his crush of a thirteen year-old neighbor with his friend Mo. tt0115639,n1BXpNTsoB8,"Willie puts on a boozy, piano playing persona to casually hit on Andera." tt0115639,Uyo69utc9bM,Paul explains his obsession of hanging photos of beautiful girls and models on his bedroom walls to Willie. tt0115639,F4T2_xFNAqs,"Willie ranks girls on a scale of one to ten on such traits as face, body, and personality for Kev and Mo." tt0115639,ITfoGnAkw4I,Willie and Andera share a late night drink while ice fishing to discuss dating and romance. tt0115639,2Vam2a4r9vo,Willie spots Marty putting away her sled next door and tells her that they should stay in touch. tt1045670,xIbilLMZLHw,Poppy attends her first flamenco dance lesson led by an eccentric teacher. tt0261392,r2NHTRgH3G0,Jay and Silent Bob discover the Internet while checking in at a Mooby's for breakfast. tt0261392,-ftyIj2_b8Y,Jay and Silent Bob run into trouble on multiple film sets while trying to escape the Miramax lot with their monkey. tt0416508,k59rG0r-sqI,Tom and Jane finally profess their feelings for one another. tt0416508,EeEhcPAOGUo,Jane and Tom exchange witty observations about one another while they share a dance. tt0416508,DiIgAES9zt0,Tom flirts with Jane and suggests that she must widen her horizons in order to become a great novelist. tt0261392,waE1U01kwxY,"The Indomitable Jay and Silent Bob spend another day in front of the Quick Stop, their designated hang out spot since birth." tt0416508,NnEKQD1fS20,Jane and Judge Langlois get off to a rocky start when they disagree on the implications of irony. tt0261392,diFDBNNmnnU,"Jay and Silent Bob run into an experienced Hitchhiker, who gives some friendly advice." tt0261392,uPwo-nHWQaM,Jay sets up Brent by outing him as a dirty sheep lover. tt0416508,c8qfaEdYBJ0,"Jane calls off their elopement, as she has just found out that it would mean the demise of Tom's family." tt0416508,xqD1y_cJAaM,"Ever the rebel, Jane cuts into the cricket game, and ends up making a home run." tt0261392,1uLzZVSIo1U,Reg Hartner and Wildlife Marshal Willenholly update the public on the C.L.I.T. and their stimulating movement. tt0261392,nnESedN4vSI,Jay and Silent Bob try to sabotage Matt Damon and Ben Affleck on the set of Good Will Hunting 2: Hunting Season. tt0120879,mYZGSfnk144,"Brian Slade sings ""Tumbling Down""." tt0261392,PYJFzOzpwHo,Jay and Silent Bob face off against Cocknocker on the set of the Bluntman & Chronic movie. tt0113158,3KoW7h3Auf4,"At the airport, Sadie has a meltdown when she's informed she cannot board the plane without wearing shoes. A kind stranger helps her out." tt0416508,8LM8A67uo_M,"Furious that Jane has rejected Mr. Wisley's generous proposal, Mrs. Austen warns her against ending up a poor, old maid." tt0436697,KcINC5YSNbE,"The Queen opens up to Tony Blair for the first time, allowing their relationship to strengthen and build for the future." tt0261392,kDnCoiYKmtw,Tension mounts for the whitey crew with Chaka Luther King taking control of the set. tt0416508,XVOsO0E1E34,Tom returns to Jane to propose they run away together. tt0120679,kQ6BSOZ0VGQ,Frida's post-crash operations are portrayed in a stop-motion sequence with skeleton doctors. tt0416508,OOMIZUsKlmg,Jane shares a moment with her sister before eloping with Tom. tt0416508,G5qjWjkpUaI,"Jane reunites with Tom after 20 years, and meets his daughter whom he has named after her." tt0115632,Vjiy9rCG-yU,"While shooting some hoops on the playground, Benny discusses the traps and pitfalls that fame can lead to for an artist with his friend Basquiat." tt0115632,vXvHja7vtoU,"At a local diner, Basquiat draws a portrait of the waitress Gina on the tabletop using syrup." tt0115632,oKcbalkmH_Y,The Electrician gives some wisdom and encouragement to a twenty-year old Basquiat. Basquiat introduces himself to fellow artist Albert Milo. tt0115632,gsJlkWp0p90,Basquiat follows Andy Warhol and Bruno into a restaurant to sell them some of his artwork. tt0355295,iHWOj17ISfk,Jake destroys the Queen by destroying the magic mirror. tt0115632,Z-5JqDEHfe8,"Basquiat's gallery opening is a big success, but the seeds of self-destruction are beginning to blossom. Gina and Big Pink - both Basquiat love interests - have an uncomfortable run-in." tt0115632,DiAtgmRa6fc,Basquiat paints several pieces in his new basement space. tt0355295,MRs1EBoZQ7c,Jake gives Angelika the kiss of true love and she gives hers to Will. tt0355295,ovV34LOq9Q8,Will and Jake try to control enchanted knives that are trying to kill them. tt0355295,TRAlGwGvlXs,"Angelika realizes that her father, the Woodsman, is under the Queen's control." tt0115632,qM8jk56Vj9Y,"A fancy dinner at Mr. Chow's falls into chaos when Rene, intoxicated and jealous, crashes the party in front of Basquiat, Andy Warhol, and Albert Milo." tt0355295,9yPj41sNdn8,The Queen tries to seduce Jake to her will. tt0355295,PR9wl4Qve5E,A mud monster attacks Sasha and carries her away. tt0355295,JDN_C4L6Bjg,Jake asks Will to help him get to the bottom of the story. tt0115632,F3H_X9-yFZA,"At a lunch date with Gina, Basquiat - out of insecurity and anger - picks up the tab for a table of white businessmen unbeknownst to them." tt0115632,1BZoajBwbac,An Interviewer probes into Basquiat's background and family upbringing. tt0355295,g3hYbDHwBJY,Will and Jake convince the General to let the girl live. tt0338096,48jtU38CZS4,Katey and Javier practice for the competition. tt0355295,nYhuIXk_CPk,Will and Jake realize that the forest is enchanted - and not in a good way. tt0363226,2tKQW10sje4,"As geisha Okinu plucks the shamisen for her brother, Osei -- who is also disguised as a geisha -- she reminisces to a time when Osei was a child performing the same dance. The memory leaves Okinu with a quiet sense of sorrow because she knows that her brother had to learned the dance in order to make money as a child prostitute." tt0108148,UWyzrr2ch5s,"Master Fox and his troops surround Governor Cheng, but their efforts are no match for the Iron Monkey." tt0338096,DnFk_dGSL5M,Katey visits Javier at the chop shop to ask him to be her partner for the latin ballroom competition. tt0355295,EDyDOkeEge0,Will and Jake introduce themselves to the paranoid people of Marbaden. tt0270288,4jv8ZCoQyZE,"A naked Chuck stands by the refrigerator looking for a late-night snack, and meets the charming and vibrant roommate named Penny. The two hit it off immediately." tt0115632,LABD2un-vIs,Gina wakes up to discover that Jean-Michel has painted all over her new dress and her paintings. tt0108148,X11uEGRnCDs,Wong Fei-Hung unleashes his kung-fu on some hooligans for the first time outside of his father's sight. tt0115632,VkGD-6ebYJ8,Jean Michel tells a dream about a locked-up prince who wore a magic crown which produced the most beautiful sound that could be heard when he banged his head against the iron bars. tt0108148,99h9RG7Rfp4,Wong Kei-Ying is ambushed by students of Shaolin while on his search for the Iron Monkey. tt0108148,u5AzB4EGGpc,The Iron Monkey is set up when he tries to release wrongfully imprisoned citizens and is forced to fight Wong Kei-Ying. tt0108148,vvd0meL8260,"Wong Kei-Ying and his son, the folklore hero Wong Fei-Hung, are met with hostility when they arrive in town." tt0108148,DF2dkoIOm0o,Hiu Hing unleashes the poisonous Buddha's Palm blow on the Iron Monkey before unsuccessfully attempting to finish him off. tt0270288,a-VqYtkvmzw,"Chuck gets creative inspiration for a new television show called ""The Dating Game."" His pitch is successful, and the pilot episode is made." tt0108148,kzrHg5GOvXE,The Iron Monkey is set up by traitorous Shaolin Monks who plan to bring him down. tt0108148,bC3oNsbOyWY,Wong Fei-Hung defends Miss Orchid from the traitorous Shaolin Monks. tt0108148,yJ1hoVGPxCY,Miss Orchid battles a dozen guards to defend young Wong Fei-Hung. tt0108148,4865Vc0ptnk,The Iron Monkey and Wong Kei-Ying team up to defeat Hiu Hing on top of burning poles. tt0270288,uOnIqWuSCIk,"Having to sit through several bad folksinging auditions leads Chuck to the inspired idea for his next hit television show...""The Gong Show.""" tt0160862,GdrDuVImE2c,Zack and Laney share the last dance of their prom night - and the first dance of their relationship - in her back yard. tt0134119,p2Md_248enw,Tom creeps out Dickie with his impression of Dickies father before revealing his true intentions in coming to Italy. tt0160862,bg9SuuzPdVE,Laney must deal with the popular kids when they interrupt her and Zack's beach date. tt0270288,qYXoNC_LbcI,"At a lounge in Helsinki, Finland, Chuck meets his contact, Patricia Watson, a femme fatale undercover operative" tt0134119,dQSK2gmtNMI,"After scolding Tom for being boring and pretending to be someone else, Tom attacks and eventually murders Dickie." tt0270288,nOu9n4ulmRk,"Chuck Barris has another television hit with ""The Gong Show,"" a program in which untalented performers get the ""gong"" before their performance is complete." tt0308644,IT-iX7o_ozA,J.M. Barrie and the Davies brothers pretend to have a Wild West shootout. tt0104558,AR4d7r6--I4,"Kevin proves to a group of trainees that he really is a ""supercop"" by fighting their teacher." tt0264150,M0N1Q7Eav4M,"Donna and the other stewardess trainees are treated to a night of dinner, laughs, and inspiration with Sally Weston at her mansion." tt0308644,iD9tENbIPHg,"On the opening night of his new play, J.M. Barrie tries to get a nervous usher to tell him how much the audience hates it." tt0270288,xs8k31_ucJ8,"Jim Byrd shows up at Chuck's swimming pool to instruct him to kill the mole. After some provocation, Chuck kills Jim." tt0299977,rylEfnxeUZo,"Before the first blow is struck, Nameless and Sky visualize the entire battle in their minds." tt0308644,bk9oFLFDsfE,"On an imaginary pirate ship, J.M. Barrie takes the role of Captain Hook and sentences Peter to walk the plank." tt0104558,1Ej-iuKgmvQ,Undercover cops Kevin and Jessica's cover is almost blown by some real cops suspicious of Panther. tt0270288,PrpeARyTcx8,"On the edge of sanity, Chuck hosts an episode of ""The Gong Show"" battling fatigue, and extreme paranoia." tt0299977,TE95amqnEx8,Nameless displays to Broken Sword and Flying Snow his unparalleled swordsmanship at 10 paces. tt0270288,oqBWx58n1Yk,"Patricia poisons Chuck's coffee. But unbeknownst to her, he deceptively switched the cups." tt0308644,Dv52JE3zqzc,"As the Davies brothers jump on their beds, J.M. Barrie imagines them to float away." tt0270288,N6HCOGj1lNI,"Chuck confesses to his new bride Penny that he is a C.I.A. assassin, and begins work on his latest show, ""The Old Game.""" tt0286112,gmk1iStpovo,Steel Leg tries to contain his leg strength by kicking eggs and practices his accuracy. tt0286112,fI-F18nRHBQ,"Thanks to Steel Leg's faith in them, his brothers reclaim their kung fu skills." tt0107822,R0U9F4HexA4,Alisdair witnesses Ada and George's steamy affair. tt0104558,Rt7_IUmuwHw,Jessica finds herself in a precarious position during a shootout while wearing a vest made of dynamite. tt0104558,RAQD0bY2_OM,"While working undercover, Kevin meets his girlfriend, who doesn't believe his story." tt0270288,SCXs7OphbUU,Chuck gets his start in television working as an N.B.C. tour page. The job has its perks. tt0104558,rAu-0Ko7uBQ,Jessica jumps on Mrs. Chaibat's getaway vehicle and has to hang on for dear life. tt0104558,DurMO8Ayhn4,Kevin jumps onto Chaibat's helicopter ladder and is taken for a wild ride. tt0085127,7uqoIuB8zx4,"Dragon gets arrested, but finds a way to fend off the police on a bicycle." tt0104558,hTv7HXqqqXA,Jessica jumps a motorcycle onto a train to catch Chaibat. tt0308644,pnTtzyItCQA,"On the opening night of Peter Pan,"" producer Charles Frohman is exasperated to learn that J.M. Barrie has been reserving 25 seats in the theater for orphans." tt0104558,jUM7RRZWW78,The drug deal goes bad and Kevin and Jessica are caught in the crossfire. tt0104558,s-D79Y-gBrs,Kevin and Jessica have to convince crime lord Chaibat that they are not cops. tt0104558,jaiWxuKmaa0,Kevin meets his undercover Police family for the first time while escorting a criminal. tt0104558,UfziV-fIbyM,Kevin is forced to help Panther escape the cops in the harbor. tt0308644,cOyt0_sRRvU,"J.M. Barrie directs an actor in a dog costume on how to play Nana in his play ""Peter Pan.""" tt0308644,6X4Sukx3GsY,"During the performance of ""Peter Pan,"" Wendy grabs hold of a kite and soars through the theater." tt0308644,CmcZU82YaEw,"At the premiere of the play, Peter Pan teaches the Darling children to fly." tt0115986,_kV0xtzcwg8,The Crow seeks his revenge on Nemo at a peep show. tt0115986,3yqPdLURXjI,The Crow is reminded of his wandering soul from a Priest discussing the Day of the Dead. tt0115986,jDmw_MLAQSU,"Scared for his life, Curve takes out his frustrations on Sarah for inking him with a bird." tt0120321,_tpfO7RS7-U,"Arnold storms out of the house in a wave of anger and violence after getting into a fight with his wife, Arlene. Young Victor tries to reach out to his father, but Arnold leaves both mother and son behind." tt0192071,MKboBvadcD8,"When Basin learns that her dance partner has fallen ill, Dennis steps in to help." tt0120321,oLQsS64Mgjg,"Arnold recounts a story of when he and Young Victor came back to defeat a pair of Jesuit priests in a game of 2-on-2 basketball, with Young Victor hitting the winning shot." tt0308644,E3B_XdL7Z6Y,"At a performance of Peter Pan"" in the Davies home, Neverland comes to life for Sylvia." tt0116324,dXe45jbpElA,"At the Schlicting's, Mel meets his brother Lonnie, who is a little insecure, and a little threatened." tt0302674,nIsuwv3VfxE,"After running away from the trail, Gerry and Gerry decide to forget ""the thing"" before getting lost." tt0918927,7OmBXWA0Rfc,"In a sermon on gossip, Father Flynn tells the story of a priest named Father O'Rourke who instructs a woman to cut open a pillow in the wind and retrieve the feathers." tt0918927,TAOUtgdcjik,"In the aftermath of Father Flynn's resignation, Sister Beauvier reveals her doubts to Sister James." tt0192071,ZhjyZXJVm4w,Kelly gets Felix to slip some new sheet music to the pit orchestra in order to improve her solo number. tt0918927,FuJ2soRp1VI,Father Flynn barges into the office of Sister Beauvier to confront her about her suspicions. tt0184858,Wd16x0wExDE,"Eluding Gabriel and his men, Rudy returns to rescue Ashley who has fallen into the icy waters." tt0340377,bXpq-sf0Drk,Fin gets his share of attention on the first day in his new neighborhood. tt0340377,fvxvrapx3UI,Joe greets his new neighbor Fin. tt0184858,wkH0WdBYT4E,"After burning Merlin to death, Rudy is caught between the guns of Gabriel and Ashley." tt0184858,huvEARIzQNc,Ashley double-crosses Gabriel right before Rudy's eyes. tt0184858,kxu97nWDapM,Rudy evades his captors by switching clothes with a college kid. tt0184858,x-Vvl8gkZAw,"After being beaten up by Gabriel and his henchmen, Rudy comes clean and reveals that he is not the guy who everyone thinks he is." tt0184858,sceJ1R4JzMU,"Having assumed Nick's identity, Rudy flirts his way into Ashley's heart." tt0300051,LMU895wYEDI,"Ollie spends the first quiet moment with his daughter, opening up repressed feelings." tt0340377,IWQriJ_Nebs,Joe greets Olivia and Fin the morning after Olivia spends the night. tt0144715,CzBxp4EtOXw,"Ruth's dripping sexuality drives P.J. wild at a nightclub making his obsession, and attraction, for her intensify." tt0340377,1o56ZKPhPjA,Joe joins Fin in an afternoon of train watching. tt0377107,ZThOaBpFIGg,Hal presses Catherine to go out with him; Catherine becomes suspicious of his intentions. tt0377107,BcmM6kMxyBE,"Catherine freaks out when she finds that Hal really did plan to take one of her father's old notebooks, but softens once he shows her what the notebook contains." tt0340377,1mxednlcHSs,Fin and Joe premiere their train chasing video at Olivia's house. tt0340377,LtKCcSEgPJQ,Joe cooks for his new friends Fin and Olivia. tt0340377,9QNXD_Col7k,Fin agrees to sit in the lounge under the condition that Joe doesn't talk. tt0340377,5XiEDoHueUo,"Fin, Joe and Olivia spend an afternoon walking the ""right of way""." tt0918927,KoEPdETXy4k,Sister Beauvier finds Father Flynn's sweet tooth unbecoming of a priest. tt0340377,xD1H-FIqeMA,Fin gives a lecture about trains in Cleo's classroom. tt0240890,ApU6H2gqkMg,Eve tells Sara that she can't just depend on fate to guide her through life. tt0340377,UqKkfcG36V4,"Worried for Olivia's well being after she seemingly disappears, Fin camps out in front of her house." tt0918927,-nh3g6F63qM,Father Flynn irritates Sister Beauvier when he suggests that this years' Christmas program include some secular hymns. tt0918927,qNk-kc0XH4A,Sister Beauvier questions the motives behind Father Flynn's last sermon. tt0918927,P53a6QG4jlY,Father Flynn chides the students in gym class for having dirty nails. tt0918927,KSc0srYx9-4,"As Father Flynn delivers a sermon on the importance of doubts, Sister Beauvier enforces reverence among the children in the congregation." tt0918927,NpwkIYB3ZEY,"As Father Flynn and the other priests revel at suppertime, the nuns dine stoically." tt1045670,xWShDNB5XZU,Scott instructs Poppy on the golden triangle of driving. tt1045670,uI-q42kRXi8,Poppy can't believe it when Scott tells her to lock the car doors when two black men ride by. tt1045670,7wYMAJSnpVo,Poppy meets her driving instructor Scott for her first lesson. tt1045670,AxeeO1qdrgw,Poppy visits a physical therapist after pulling a muscle. tt1045670,mTkgIN2TteI,Scott nearly loses it after another day of teaching Poppy. tt0240890,3TWxK4Lb6ws,"Jonathan and Dean interview a lead in their search for Sara, a whimsical French man named Mignon." tt1045670,2zZUujqZfQg,Poppy's flamenco lesson takes an unexpected turn when her flamingo teacher has a breakdown during a lesson. tt1045670,hnHERe72nQM,Scott has a complete nervous breakdown when Poppy refuses to give him the keys to his car. tt0213847,8j-53yv1nD4,"Having just turned 12, Renato is initiated into a group of teenage boys by following their lead in watching the beautiful Malena." tt0240890,wxlvZpMSxM8,"After a heartfelt conversation with his fiancé, Halley, Jonathan receives a serendipitous gift from her which alters his life..." tt1045670,4_9ZfH_x1hE,"Scott freaks out when Poppy pretends there is a ""little juggernaut"" in the road." tt0240890,kiv4EChGJVs,Jonathan flirts with Sara by telling her the story of how Cassiopeia transformed from a beautiful princess into a celestial constellation. tt0240890,gZ6x-hUpoPo,"When Jonathan loses Sara's contact info in a gust of wind, he tries to convince her that their chance meeting is the work of Fate." tt0240890,PMar5oQ5Ha8,"Sara plays a game of chance with Jonathan, telling him to have faith in destiny." tt1045670,9OGKM_BI9zY,"Scott lectures Poppy on the ""harsh way of the world""." tt0240890,8KaBhZM-PTg,"After running into a random series of people using the name Sara, Jonathan tries to rationalize the encounters to Dean." tt0240890,kNepR8njvT8,Jonathan's patience is pushed to the limit after he gets extorted by a Bloomingdale's salesman during his search for Sara. tt0085127,T4l9RZRce58,"Dragon, Tzu, and Fei finally overcome the pirate lord." tt0085127,ErQGXlQV6vg,Dragon is tortured about the location of the guns and then falls from a clock tower. tt0085127,uTW2Hrn49Yk,"Dragon, Tzu, and Fei battle the pirate lord and his men." tt0240890,sIMxtj6czX8,"Dean reveals that he and his longtime girlfriend have separated, adding that he admires Jonathan for his ability to live with foolish and romantic abandon." tt0085127,i16c8n45lR4,Dragon meets Fei and they team up to kick butt. tt0085127,wdaFZ0seZBM,Dragon tries to evade police and help Winnie at the same time. tt0085127,sEgsFoQhy3Q,"While handcuffed, Dragon climbs up a flagpole and crashes into a clock to escape." tt0240890,GolLDhBuy74,"Sara finds Jonathan's contact info on a five dollar bill that he wrote years ago, and uses that as her sign to go and seek him out." tt0085127,6mGJ0lFK8c8,"Faced with police corruption, Dragon quits the force and escapes the VIP Club in style." tt0085127,pCnPsUo_p9w,Dragon and Captain Tzu try to arrest a criminal in the VIP club and destroy the place. tt0085127,MOB7nv-1G3c,Dragon and his Marine Police fight the Hong Kong Police in a bar. tt0110588,RntgG4p1m8E,Robert assures Dorothy that they can succeed as freelance writers. tt0377107,rqT82hS-rMw,Claire questions Catherine about the incident in which she called the police on Hal. tt0377107,s3znWXpeLPA,Catherine delivers an embittered impromptu speech at her father's funeral. tt0110889,1IlqRjk27JI,"Father Pilkington hears confessions from the students, including a harrowing confession from Lisa." tt0377107,gUpkU0-pS3U,"Catherine and Hal chat after their ""wonderful"" night." tt0377107,303wyvo5Uow,Catherine and Hal make a connection after her father's funeral. tt0377107,T4V4NqEU668,Claire tries to set things right by getting Catherine to move to New York with her. tt0377107,IE0S6NNXiYM,"Now that he finally believes Catherine that she wrote the proof, Hal tries to convince her to stay in Chicago and take credit for it." tt0377107,pnvy9q4UpZw,Hal is elated when he discovers the notebook with a groundbreaking proof inside. tt0213847,Spl7doGUZTI,Renato defends Malena when a defaming letter reaches her father. tt0213847,FNvk5X4D7g0,Renato's father throws a fit when he discovers Renato with Malena's stolen panties on his face. tt0213847,zkBkTx-GL8s,"Poor and widowed, Malena cuts her hair to make herself available to the men of the town." tt0213847,ZTAVOF3D4vY,Malena causes a stir amongst the townspeople as she walks through the plaza after looking for a job. tt0213847,i9_lCyG67Rc,Renato writes Malena a love letter and fantasizes that she is his teacher. tt0213847,dsRTzhbsAmQ,Renato and his friends fool around and measure their penis sizes. tt0213847,aCqhUO76MTU,Malena is surprised to be welcomed back with open arms after the way she was chased out of town. tt0213847,rhc_Ds85lG0,"Malena's greasy lawyer, Centorbi, takes advantage of her when he demands that she pay her lawyer's fee with a favor." tt0119324,v3MPODJTzFM,Anthony makes Lesly uncomfortable and admits that she is their first house guest. tt0119324,NCgUx9-REsg,Jackie-O reacts strangely to the news that her brother Marty is engaged to Lesly. tt0119324,BeJMZm6DDtk,Jackie-O grills Lesly on the subject of her sex life with Marty. tt0119324,QXa6FXKJQpw,Jackie-O mocks Lesly for growing up poor as Marty tries to ease the tension. tt0186894,rcJ5q5BdJi4,Abby and Buddy chat while his pants are being hemmed from the damage her dog did to them. tt0186894,NTPT4BHAmRI,Abby sicks her dog on Buddy when she suspects him of having ill intentions. tt0186894,6xSLNonQJSc,Buddy calls Abby to offer her the job of finding a new property location for his company. tt0119324,zg4tFOmYKpA,Anthony tells Lesly about his siblings' incestuous relationship. tt0119324,qw6k-69hm90,Jackie-O and Marty reveal the incestuous nature of their relationship to Anthony. tt0186894,_yHgZUYOYdY,Abby impresses Buddy - and herself - when she closes the deal on a property she showed Buddy's partner. tt0119324,XHdmamu0zPk,"Jackie-O and Marty recreate the Kennedy assassination one last time, as Lesly runs from the house in shock." tt0186894,SDesztIj8Kc,Abby gets the message Buddy is conveying when he tells her about the unattractive aspects of his personality. tt0119324,NDw4Lax2j0k,Marty and Jackie-O recreate the Kennedy assassination as a form of foreplay. tt0119324,OPwRf_sD5fo,Mrs. Pascal is more disturbed by a gun than by the sight of Jackie-O and Marty waking up together. tt0186894,VWwkLEUn-a0,Buddy apologizes for what he said in the restaurant. tt0119324,kY4iDLi0pV8,Lesly confronts Jackie-O about her sordid family history. tt0186894,pqLAni94IEI,Abby opens up to Buddy about the loss of her husband and then they make love. tt0285823,lhsWHmJiaXE,Sands lectures El Mariachi on the importance of keeping the balance to Mexico by shooting a cook. tt0186894,TqB34Q7iy-A,Abby breaks up with Buddy when she finds out he switched flights with her husband on the night his plane crashed. tt0186894,MsxXJOiXEW4,Buddy delivers a drunken acceptance speech when he wins for his work on the Infinity Airlines account. tt0285823,t3ttyoPvivk,El Mariachi is ambushed inside a church. tt0110598,Xqti-Sxsxk4,Muriel and Rhonda enter the talent contest while their old classmates tear each other apart in jealousy. tt0186894,BrXYAZzLZTg,Buddy testifies about the night he gave Greg his ticket for the ill-fated plane. tt0110598,lhZFyMTaIt8,Muriel can't stop laughing when her first sexual encounter with Brice goes hilariously awry. tt0285823,KJI8TYE7DtE,Belini tells Sands the legend of the Mariachi and his woman. tt0285823,ae-cYVuxBKI,El Mariachi and Carolina wake up and find themselves chained together with militia drawing close to wipe them out. tt0110598,SyiA_t-8c7Y,Muriel is taken by surprise when her friends break up with her for being an embarrassment. tt0097937,mTysQF15PHE,Christy solves his sister's math problem. tt0110598,2C6FHPmqETM,"Muriel runs into Rhonda, who devises a plan for getting back at their old classmates." tt0110598,39M16Z2aYYk,"Frustrated with her recovery effort, Rhonda makes Muriel promise that they'll never go back to Porpoise Spit." tt0110598,X09M4YjeE78,Rhonda catches Muriel trying on a wedding dress and Muriel admits that Tim Simms is a fictional boyfriend. tt0110598,E1BBS1rIgIw,Muriel is thrilled to be marrying a decidedly less enthusiastic David. tt0110598,m0uAIT2O5P0,"Muriel returns with David to his apartment after the wedding, only to find they have separate bedrooms." tt0110598,Lpk6lNEGrg0,Muriel meets with a coach determined to find an Australian bride for swimming star David. tt0110598,MSVT6NNqldY,Muriel breaks up with David in an attempt to stop living a lie. tt0285823,5Rl0mFRWfzc,Cucuy's failure to kill El Mariachi escalates to a motorcycle chase. tt0285823,fKoYXxN6x98,Sands kills Belini when a waitress accidentally spills coffee on his fake arm. tt0110598,BW5hIGrXcEs,Muriel rescues Rhonda from Porpoise Spit in order to bring her back to Sydney. tt0285823,_WF9UwKuitI,A blind agent Sands asks a Chicle Boy to be his eyes as he takes out a thug. tt0097937,M-VdYzNgtng,"Christy's mother expresses fear that Christy's newfound abilities are getting his hopes up; meanwhile Christy develops feelings for his therapist, Eileen." tt0097937,X7Vt8oHsr0g,Dr. Eileen Cole convinces Christy to practice speech therapy. tt0097937,p12OcbmjVgU,"At a dinner celebrating his art show, Christy tells Eileen he loves her." tt0097937,WTW9la6_mEY,"Christy writes his first word, to the astonishment of his family." tt0097937,gqKobRWnvZQ,Christy makes a scene when he rejects Eileen's platonic love. tt0097937,PWvWrHzlfAk,Christy's mother begins to build Christy a room of his own. tt0097937,4C-aVLgAw8g,"Christy asks out his caretaker, Mary." tt0097937,WpULGtEqNBI,Christy celebrates his seventeenth birthday and plays soccer with his brothers and the neighborhood boys. tt0097937,f-9ErKOlWyE,Christy surprises his mother by giving her the money he earned. tt0120879,n8JOgoI_2as,A BBC Reporter reports the glam rock influence Brian Slade has on today's youngsters. tt0120879,f0-GryhUnSQ,"Brian begins his final performance before being ""shot"" on stage." tt0120879,QEp-lhl5ImQ,A young Arthur adapts to the sensational pop lifestyle of glam rock while listening to Brian Slade. tt0120879,Hjhg4s4nD5s,Brian addresses questions concerning his sexuality during a press conference. tt0120879,NEc_n0W4ans,Brian gazes at Curt Wild during a performance. tt0120879,c2gZ4aOYOw4,A recording session ends abruptly when a belligerent Curt changes his cues. tt0120879,X_akiwYsyYM,"Brian Slade describes his lifestyle in a circus act while Curt Wild interrupts the ""performance""." tt0120879,6-2doIEpFVE,Brian and Jerry have a meeting with Curt Wild. tt0120879,K1C2odNXI4E,Arthur embraces Curt Wild in a euphoric dream-like flashback. tt0436697,aXg3HXlsdg0,"Tony Blair addresses Britain, and the world, following the news of Princess Diana's death. The Royal Family decides to stay quiet." tt0436697,-l-VCl5kQuY,"While stranded at the river, The Queen eyes the great stag." tt0436697,qo0uCiDpp0k,Tony Blair is pleased when he watches The Queen step outside Balmoral Estate to acknowledge the passing of Princess Diana. tt0436697,io2eeYm9sQs,"The Queen addresses Britain, and the world, as Tony Blair watches on with admiration." tt0436697,sGbVR3TgQUs,"The Queen visits Buckingham Palace to pay her respect in front of thousands of mourners, and is handed a bouquet of flowers from a little girl." tt0436697,KAPjaNfNw-I,"While watching The Queen visit Buckingham Palace on television, Tony Blair takes offense at his speech writer's flippant remarks about the Queen." tt0436697,lF_KpWfFyR8,"Calling up The Queen following Princess Diana's death, Tony Blair is surprised to learn that a private funeral is planned, and that the Royal Family plans on evading the British public completely." tt0436697,TgXkBPFZZFY,"Two months following Princess Diana's death, The Queen believes the institution of the British monarchy has been diminished, as she cautions Tony Blair that one day the people will turn on him too." tt0436697,ytFFiCYItjI,Tony Blair meets with The Queen for the first time after having been elected as Prime Minister. tt0271219,_flZU87W_Rc,Oscar ignores a girl his own age to focus on seducing his stepmother Eve. tt0271219,FYlySSs_-JI,Oscar visits his stepmother Eve at work where they discuss the heart as a symbol of love. tt0271219,4iMFUxeKJd8,"The morning after sleeping with Diane, Oscar runs into her unsuspecting boyfriend Phil." tt0271219,zlL7BbZoSAY,Oscar implores Diane not to tell her friends about what happened between them. tt0271219,czzH5M2bUYc,Diane gives Oscar a massage that quickly leads to something more intimate. tt0271219,ti2qUYIgpjM,Stanley sees Oscar and Diane kissing in a corner of the restaurant. tt0271219,rrbEQDRYpy8,Stanley grills Oscar to find out where he spent the night. tt0271219,ITszRkvBcUg,Oscar panics when Stanley runs into his classmate Miranda and falsely concludes that they are an item. tt0306047,pIWh28WPyxQ,Cindy gets a helpful nudge from the most powerful man in the free world during her fight against the ghastly Tabitha. tt0271219,mT1QTyuTr-M,Oscar works up the nerve to kiss his stepmother Eve just before Stanley returns. tt0274558,KMFxz39Qhjk,Virginia expresses to Leonard her longing to move back to London. tt0035423,h7CCnLwD2MY,Leopold helps Charlie see that he's pursuing Patrice with the entirely wrong approach. tt0190590,OMhzAcofd_8,Desi defends herself after Odin accuses her of cheating on him with their mutual friend. tt0113158,nyExbZwBM2c,"Sadie and Georgia finally have it out with each other, a hurtful heart-to-heart between sisters, each saying what the other doesn't want to hear." tt0858479,eCCJzVqLBvU,"Lawrence makes amends with Janet, who has some big news to share with him." tt0120679,znxRGH92XDg,Alex and Frida are riding a bus when it is struck by a street trolley. tt0120679,E3wiJJOrgho,"This montage depicts the creation of Frida's painting The Two Fridas"" and the assassination of Leon Trotsky." tt0113158,AjXl70vbOwk,"In concert, Georgia performs the song Hard Times"" to an adoring crowd. Her sister Sadie is in attendance." tt0120679,RTCMHLpNi4k,"Frida, recognizing that her life will soon end, gives Diego an early anniversary gift." tt0113158,8KjAsaJdi2w,"As Georgia sings Hard Times"" in front of an adoring crowd, Sadie sings the same song for a few drunks in a Portland dive bar." tt0113158,k7VW1xNAn5A,Bobby's band with Sadie on vocals perform a traditional Jewish folk song at a wedding. tt0113158,99PeJShwZis,"As Bobby sings I'll Be Your Mirror,"" a stoned Sadie is unable to finish the song, and drifts off the stage." tt0113158,J0IXJNE0FXI,"At Sadie's insistence, Georgia joins her sister on stage to sing a song with the bar band." tt0120679,OzP8k0R-USw,"Forbidden from leaving her bed by her doctor, Frida is carried into her first Mexican exhibition in her bed." tt0113158,EnGXNEEHPG8,"During the car ride home following another drunken, but passionate performance from Sadie, Georgia confronts her younger sister, offering up an ultimatum that she doesn't want to hear." tt0113158,YCIYe01lg1E,"Sadie sits in with the local bar band, and performs - in almost a whisper - the tender song, ""Almost Blue.""" tt0120679,06B3m6L5fFw,"Diego wants to marry Frida, but he won't promise to be faithful." tt0110588,YlpN0wDqUx4,Dorothy and Robert form the center of a new social circle of writers known as the Algonquin Round Table. tt0110588,DTVnQBRfCAw,Eddie slaps Dorothy when she questions his reliance on alcohol. tt0120679,rQP1duR2tf4,Frida confronts Diego about his affair with the model. tt0110889,Q0bjuz5YBLM,Father Pilkington picks up a man at a nightclub. tt0110889,J8_CIsow_Y8,Mr. Unsworth argues the ethics of incest with Father Pilkington. tt0110889,qFsoL6ed_2E,Father Pilkington denies Graham Communion when he shows up unannounced. tt0110588,LWEklaaHGsE,The Vicious Circle gains a new member when Edna Ferber joins the group. tt0110588,HhtRNV2v2rU,Charles seduces Dorothy by criticizing her writing. tt0110588,yvv9DRyxTFo,Robert tries his first drink at a speakeasy while Charles flirts with Dorothy. tt0077594,Fyvzidxs_SY,"To protect him from The Syndicate, Billy Lo undergoes plastic surgery to change his appearance while Ann grieves for him at the funeral, unaware that Lo is still alive. This scene contains actual documentary footage from Bruce Lee's funeral in 1973." tt0110588,Jhxb2wWFK4M,"Distraught by her lover's infidelity, Dorothy attempts suicide." tt0110588,B3fgBOG1fWs,Dorothy asks Robert why their relationship has remained platonic over the years. tt0117283,ef77ViM-f14,Tom makes a nervous phone call to Julie to ask her out on a date. tt0110588,qZBVXYYcCjQ,"Asked to recite a poem on the spot, Dorothy composes a morbid ditty that attracts the attention of Roger." tt0162360,gZY_zy2hAHA,"Fugitives Wayne and Harry think they're being sentenced to jail time when Chappy the Sheriff brings them before the Judge, but the Judge thinks he's negotiating payment with the pageant professionals that the town has hired." tt0162360,ubgR8CKyzYw,"When Wayne and Miss Schaefer learn that all the girls qualified for the pageant, they get a little wild." tt0162360,UqPRk4oFz_U,Wayne and Harry search their stolen mobile home for clues to the identities of the people they're impersonating. tt0117283,_OMy1p_m3_Q,Tom witnesses something scandalous as he is spying on Julie. tt0120148,1H2xudG3BPI,"Coming home early after being fired, Helen's bad day continues when she finds her boyfriend, Gerry, in bed with Lydia." tt0117283,WQtoXhnhFwM,Julie comes by Tom's house to confide in him about what happened with Scott. tt0120148,sj93sTcEJYA,"James surprises a heartbroken Helen at home, and takes her out for a milkshake to cheer her up." tt0162360,uPAXLQIxBGY,"Wayne, masquerading as a pageant professional, steps in to stop a bully boy who teases the girls." tt0120148,X5wAXtQ0oDY,"It is an ideal kissing moment between James and Helen - a romantic, nighttime boat ride under the lights of a glistening bridge. At first Helen is hesitant to James' advances, and then she makes the move." tt0117283,MLxnvq1E-ag,Ruth storms into the restaurant where Tom is dining with Julie and her parents. tt0117283,Q4DEaXN6Dp8,Tom tells Ruth about Julie in a roundabout way by making her out to be Bill's crush rather than his own. tt0162360,XfBImxhVWTw,"Chappy the Sheriff, thinking Harry is actually the gay pageant professional Steve, comes out to Harry and asks him on a date." tt0117283,rxX-JLi1FB0,"Just as Tom starts to get somewhere with Julie, Ruth calls and reveals that she knows about her." tt0117666,qJKahA8B9Ro,Karl tracks down his father to get some closure on their relationship. tt0110588,3uHIpj5JpvQ,Dorothy asks Alvan to diagnose her inability to write. tt0120148,c-zaHGYURv0,"James and Helen reconcile their relationship in the rain. Meanwhile, the parallel Helen learns of Gerry's adulterous relationship with Lydia." tt0162360,Mp5IvPj4ay0,Harry demonstrates to Joe the way her boyfriend should express his love for her. tt0780511,sk3soFv1wHM,Frank visits the art gallery in New York to pick-up one of his late son's paintings. tt0338096,5xWrsFC7pG8,"Katey and Javier dance at the finals, but are interrupted by a gunshot." tt0120148,eeR4VQyoLdc,"James frantically tracks down Helen, who is standing on a bridge in the rain, to explain to her that there's a misunderstanding...he's divorced and single, not married." tt0117283,-nkqrSaJf1g,"Tom struggles through a vague eulogy about Bill Abernathy, who he does not remember." tt0120148,UUB75dkgT_c,"A case of miscommunication between Helen and James leads to a chance run-in on the street, where he tells her that he's been wanting to call her, much to her excitement." tt0120148,idxHUQY4aDA,A stuttering and stammering Gerry goes on the defensive when Helen mildly insinuates that he's cheating on her. And the truth is...he is cheating on her. tt0120148,v-0Z_0SUtJw,"As Helen lays in a coma in the hospital, James makes a promise that he will always be with her." tt0162360,5Ui9rRepv0Q,Wayne offers an irreverent prayer before the girls are to compete in the pageant. tt0162360,diteeSODzTQ,Chappy the Sheriff is shot trying to prevent Bob from robbing the bank. tt0117666,FYDrPt06XNI,Karl gives Frank his books along with a bookmark containing a reassuring message. tt0120148,HUwVxqQz25Y,"Fate and destiny are on the side of Helen and James, as they meet once again in an elevator." tt0162360,t9BqiLLt9SI,Harry breaks up with Chappy to keep him away from the dangerous Bob. tt0117666,xCJZij74-J0,Charles tells Karl a story about picking up a prostitute with a startling secret. tt0120148,G4tfduPN3rM,"Helen gets fired from her P.R. job, but not before getting one last zinger aimed at her uptight male boss." tt0120148,3c6F_0KpK3k,Helen tries to tell a philandering Gerry that she's pregnant. But the cheating boyfriend does not stay on the phone long enough to give her a chance to say it. tt0120148,pYBS9Sp0xU8,"Gerry tries to win Helen back, but she immediately catches him in a duplicitous action." tt0117666,neFpFiuvYsQ,Karl and Frank bond over their similarly tragic family histories. tt0162360,I2eVbp_Jfc0,Wayne and Harry are taken back to prison; Miss Schaefer brings the girls to perform for them. tt0117666,sAgSUFT4cVk,"Karl explains to a reporter how he came to kill two people, including his mother." tt0117666,4pz2kXoDo_s,"Karl questions the Frostee Cream Boy about their menu, including french fries." tt0117666,PJ1i0HuBXPg,Doyle intimidates Karl when he arrives to move in with Frank. tt0338096,iLYeR6v-fVE,Javier catches Katey practicing some dance steps and gives her a few pointers. tt0363226,Fu6QrGkRdJo,Genosuke dispatches a rival gang leader in cold blood as his employers watch from nearby. tt0117666,uB2eggtlTfE,Vaughan takes Karl to lunch and tells him they have something in common. tt0338096,LAd6SaXDdZ4,James takes Katey out to his car and tries to take advantage of her. tt0338096,O4qhT8oRvss,The hotel's dance instructor mentors Katey on how to let go of her fear. tt0363226,7ZhnS45Zexo,"Cornered by Ginzo's henchmen, the two geishas are rescued by Zatoichi who dispatches Gizno's forces with incredible efficiency." tt0363226,SlVK7ogwyUI,Zatoichi and the ronin samurai Genosuke battle each other in a quick and deadly duel. tt0117666,L9tK9HYspFM,Doyle seethes as Vaughan and his bandmates debate their poetic lyrics. tt0117666,0C6nvNlVx1A,Doyle kicks everyone out of the house in a drunken rage. tt0338096,H3Epwo8vFpk,"Under the impression that Katey is dating James, Katey's mom talks to her about sex. Little does she know she's actually seeing Javier." tt0363226,1UqJgV10-wE,"With his preternatural sense of hearing, Zatoichi listens to the sound of the dice and realizes that they have been switched. Immediately sensing an ambush, Zatoichi strikes first, slaughtering all of the would-be assailants." tt0363226,BydT8m3NdRY,Zatoichi slices up a group of enemy swordsmen in the rain. tt0363226,ZuqwMQTc8cE,"Ichi aka Zatoichi, slices up a couple of roving bandits when they try to intimidate him." tt0117666,tGYc5woadps,Doyle apologizes for his drunken behavior while continuing to be a complete jerk. tt0338096,Znook3DEEaI,Katey and Javier's dance practice gets hot and heavy at the chop shop. tt0338096,bcY4Lhb3yhI,Katey and Javier blow away the crowd with their sexy competition routine. tt0363226,YV2WQTL_45A,Shinkichi's attempt to teach swordplay to a trio of young bumpkins goes comically awry. tt0363226,MFZGTRWVOjU,"As seen through a flashback, the family members of the two geishas are murdered by Ginzo and Ogi's assassins." tt0117666,sL6QJSdqlt0,Karl brings a lawnmower blade into the house with the intention of killing Doyle. tt0338096,XPRFb9J1CvA,Katey's mom disapproves of Katey's decision to dance with Javier. tt0114478,b_uXZZRpO-E,"In the Brooklyn Cigar Shop, Paul tells a story to the guys about Sir Walter figuring out how to weigh smoke." tt0114478,U6Lt17rALrM,Cyrus explains to Thomas (Harold Perrineau how he lost his left arm in a car accident to pay for his sins. tt0115906,Ovloa5lv7io,"Ruth freaks out when Dr. Rollins offers her $15,000 to have her baby." tt0363226,p7aigA4gPiw,Tensions rise when Zatoichi encounters the formidable samurai Genosuke at the village tavern. tt0363226,xl01-vBoHsE,"After revealing that he can see, Zatoichi neutralizes the last yakuza boss with a quick strike from his sword." tt0494222,TZAvqLk4o-g,Jarrod calls his childhood nemesis and threatens to fight him. tt0115906,o69EA3eSDf0,"Ruth faces the judge, who charges her with endangering her fetus." tt0115906,tAx_zjVXTOs,Ruth is welcomed into the home of Norm and Gail Stoney. tt0115906,NKCskfhsru0,Ruth grows impatient when Dr. Rollins tries to convince her to have her baby. tt0115906,zk0AexuAhlw,"When Ruth sneaks off to sniff glue, Norm and Gail finally lose their patience with her." tt0115906,V2weMKLFJLo,Ruth joins Norm and Gail at a protest outside an abortion clinic. tt0494222,0WjELXl_6zA,Lily meets Jarrod's disparaging family. tt0115906,QzymqXvURkw,Diane brings Ruth home and reveals that she is a spy for the pro-choice movement. tt0115906,mOpvoWxjz90,Ruth sees a news report on her story and decides to give Gail a piece of her mind. tt0115906,X9N-BROIbeY,Blaine receives a massage and questions Norm on his decision to bribe Ruth to have her baby. tt0258068,CymY_Rl1fEs,Pyle confesses his love for Phuong to Fowler as bombs fall around them. tt0115906,TDecVpSLT38,"As Ruth prepares to leave for her abortion, her mother makes a last ditch effort to stop her." tt0115906,ndrr3vif10w,"When forced to choose between two opposing sides, Ruth sort of takes a stand." tt0115906,TQrzX_5FO1k,Ruth devises a plan to escape the abortion clinic after she acquires her bribe money. tt0494222,ZS0rEz8wR4g,Lily falls in love with Jarrod while taking his order at Meaty Boy. tt0494222,xo2meR8UHJ4,Lily and Jarrod get hot and heavy at the party. tt0494222,-g7jRpukoVg,Lily plays against Jarrod in the videogame tournament and allows him to win. tt0494222,K3ucS56rrpA,Lily and her brother crash Jarrod's costume party. tt0494222,QJfhiv1Te6o,Jarrod gives Lily the third degree when she finally shows up after partying all night. tt0494222,2GMpuN48u5c,"Jarrod is dismayed when his childhood nemesis shows up to fight him, but is in a wheelchair." tt0494222,UYovQZUBzpA,Lily falls in love with Jarrod while taking his order at Meaty Boy. tt0494222,SKMOhrpxUSo,"Jarrod fights his childhood bully, even though he's a cripple." tt0114478,JGV_h36uZ5E,"Paul looks through Auggie's photo albums, or as Auggie calls it ""his life's work."" The photos consist of the same street corner, at the same time, everyday." tt0494222,vz7jp6GiwTA,Lily's heart breaks when she sees Jarrod spending time with another woman. tt0278500,eORAWRKW53s,"Algernon proposes to Cecily, who informs him that she's been engaged to him for three months already." tt0494222,aAnJ9iO8DAE,Lily gets hit on by one of Jarrod's friends. tt0278500,NbX7nS8SG7E,Algernon finally meets his cousin Cecily and immediately takes a liking to her. tt0114478,E8eiFdoI5W0,"Ruby takes Auggie to meet his daughter Felicity. When they arrive, Felicity angrily announces that she had an abortion." tt0114478,_6CT5p7fh9g,"Rashid finally comes clean about his background to Cyrus, who is his biological father." tt0114478,RTObjnUfgNs,"At a dive bar in Brooklyn, Auggie happily runs into Paul who is there celebrating Rashid's seventeenth birthday." tt0114478,NI4En1gLsXs,"Auggie surprises Ruby by giving her $5,000 to help out her daughter." tt0114478,WBxpXxZqKms,"Having finished telling his Christmas story, Auggie shares a smoke and a smile with his friend Paul." tt0114478,vG833_jH7eY,Paul tells a story to Rashid about a son who discovers his father's body preserved in a block of ice. tt0114478,qUDMInHr_wI,"Auggie tells a story to Paul of how years ago he shared a Christmas feast with Granny Ethel - an old, blind woman and a complete stranger." tt0114478,D-UBJzXzoho,"Auggie finishes up his Christmas story, explaining how he stole a camera from Granny Ethel – an old blind woman – years and years ago." tt0114478,04zHzVrubHk,"Rashid makes amends for his mistake of flooding the cigar shop by giving Auggie a paper bag holding $5,000." tt0134084,ofxfYinuKKc,"Randy visits Sidney from the grave in the form of a video tape, warning her about the unpredictable the nature of horror movie trilogies." tt0134084,VevqDJM8KH0,Cotton and his girlfriend are murdered by the Ghostface Killer. tt0134084,dsONBwWtAts,"Ghostface Killer takes out Steven Stone, the personal security guard to big shot actress Jennifer Jolie." tt0134084,dDDbmin38gg,"Ghostface Killer lures the survivors into a trap as he rewrites the ""movie"" in real-time." tt0134084,hQL6_NbLwtk,"Gale and Jennifer encounter Bianca, a surly -- and vaguely familiar -- studio secretary, in their search for more information on Maureen Roberts." tt0134084,hajGYP3CLKo,Ghostface Killer stalks and murders Sarah at a film production company office. tt0134084,VgQOZkXg9t4,"Visiting the Stab 3 movie set of her home back in Woodsboro, Sidney is attacked and tormented by the Ghostface Killer." tt0134084,gcu30p7VEKI,Ghostface Killer goes on a rampage inside the mansion. tt0134084,GwFaz1nukyE,Jennifer is murdered by the Ghostface Killer behind a two-way mirror as Dewey and Gale react to the carnage with tortoise-like reflexes. tt0134084,DMeR-bkC13g,"Sidney learns that the Ghostface Killer is her own brother, movie director Roman Bridger." tt0134084,J6Cg05MhWbw,"Sidney pulls a gun on the Ghostface Killer, but he proves to be hard to kill." tt0134084,1b_sbGJGx0o,Dewey pulls the coup de grace on deranged film director Roman and his murderous antics. tt0160862,_OiXT87RhvA,Taylor fills Zack in on how she met the guy she's leaving him for. tt0160862,O47od13_x1k,"With his reputation under attack, Zack makes a bet with Dean that he can make any girl prom queen just by dating her." tt0160862,r4mQmoD72tc,The prom is stepped up a notch as the students launch into a choreographed dance the campus D.J. taught them. tt0160862,nimkNFEKUkY,"After some help from Zack's sister with hair and makeup, Laney reveals her new look." tt0160862,x0XE7KFZook,Zack stands up for Simon when he sees him being bullied in the cafeteria. tt0160862,TbFYMfIpRss,Taylor humiliates Laney in front of everyone at the party. tt0160862,i9KJXFbkMH0,"Brock puts on a show as he dances to his favorite jam, ""Give It to Me, Baby.""" tt0160862,BztqFxMXpTQ,Zack visits Laney at the Falafel Barn to ask her out. tt0160862,-AlTccRsRsk,"Much to Zack's dismay, Dean selects Laney Boggs as Zack's target for their bet." tt0160862,M_MJrybDRKA,Zack watches some wacky performance art in the name of winning Laney over. tt0118113,5iZUg7tGlxM,"When Amelia confronts Bill about why he hasn't called her, he's straight-up with her in his response." tt0118113,pnjWGD-WW8k,"Amelia hits it off with Bill and they sleep together. Later, as Amelia freshens up in the bathroom, Bill listens to a message on her answering machine from Laura and he doesn't like what he hears." tt0118113,97ZiBty1eTM,"Creeped out by an anonymous obscene caller, Amelia calls up Andrew for emotional support." tt0118113,R65UmAfIZpw,Laura makes a scene when she fails to see the humor in Frank's gift to her. tt0118113,eZjR4aso7VY,"After Andrew reveals the source of their broken relationship, Amelia leaves his place, hurt and angry." tt0118113,e_hkxbNpQMw,"When Amelia learns that Andrew has been having phone sex with a girl he just met, she calls him out on his sordid behavior because he won't call the girl for an actual relationship." tt0118113,veN5fuM-AwI,Frank is the odd man out as he travels with Laura and Amelia to the countryside. tt0134119,QoJ5JJ3keUw,"Tom introduces himself to Dickie and Marge, pretending to be an old acquaintance." tt0118113,GdM1NCrxZvI,Amelia is devastated after she finds out that her cat died by falling out of an open window. tt0118113,ZjDB3Pfl3iA,Amelia and Andrew rekindle their relationship. tt0134119,E-TthagAhsk,Freddie catches Tom spying on Dickie and Marge making love. tt0134119,9KstSfW1IAA,Tom confronts and scares Marge when she discovers he has Dickie's rings. tt0118113,8P3Q_di3Lo8,"Amelia and Laura air their grievances and then reinforce their friendship. Later, Laura reunites with Frank after they had spent some considerable time apart." tt0134119,BjMrxHxraio,Tom runs into Marge at the opera and has to juggle his acquaintances from meeting each other and exposing his double life. tt0134119,_9b7JgWu4PQ,Tom sets up Meredith and Marge to meet when they are both expecting to meet him. tt0134119,bTE69etu_fg,Peter confides in Tom about his failures as a father to Dickie and Dickie's failures as a son to him. tt0134119,3si4Cv66RSM,Inspector Roverini inspects Dickie's apartment and tells Tom the mounting coincidences concerning Freddie's death. tt0134119,Mq462kfFKI8,Freddie begins to suspect wrongdoings from Tom and confronts him with his suspicions. tt0134119,a-IU2mBY1_4,Marge opens up to who she believes is Dickie on the other side of his door. tt0134119,XgTtI5D-INw,"Alvin MacCarron, an investigator and employee of Herbert Greenleaf tells Tom a startling theory that frees Tom of any further suspicion." tt0278500,CZK9pY1dA74,"When Gwendolen professes her love to Earnest, he begins to probe into how she would feel if his name weren't Earnest." tt0278500,VHVxpLDEAo8,"Lady Bracknell grills Jack about his upbringing, and is shocked at his responses." tt0278500,eW4wR7-iOMg,Lady Augusta asks Jack some odd questions in order to determine whether he is worthy of Gwendolen's hand in marriage. tt0278500,VpLXPIihj60,"Jack comes armed with an urn and a bogus story hoping to kill off his fictitious brother, Earnest; little does he know that Algernon has just shown up claiming to be Earnest." tt0278500,r3TEbOR9SyQ,Algernon and Jack console themselves with muffins when Gwendolen and Cecily ditch them for their lies. tt0278500,3pDOsNri1Ko,Gwendolen and Cecily quiz Algernon and Jack about their reasons for lying to determine if they are worthy of their forgiveness. tt0278500,Qwx74IfTNwo,Gwendolen and Cecily begin to consider each other enemies until they discover they have been deceived by their wicked boyfriends. tt0264150,KaxcWDmXbBs,Donna has a huge freak-out during her first ride on an airplane. tt0211915,wPJvAzfaqlk,Amelie imagines that Nino is about to surprise her at her apartment... and is surprised when he actually does. tt0264150,r_U2p-bdeww,"Donna gets a job with Sierra Airlines - an airline known for serving drunks and gamblers - whose motto is ""big hair, short skirts, and service with a smile.""" tt0278500,FOdizWKG4qk,Miss Prism reveals her involvement with Jack's plight. tt0264150,oXDyQju8my4,John Witney enthusiastically leads the stewardesses through basic training. tt0278500,gtb_4pNuYIA,"Jack uses Cecily as leverage against Lady Augusta to be able to marry her daughter, Gwendolen." tt0211915,x7CGZ5vxlLs,Amelie's matchmaking work comes to a climax when she sets up Joseph and Georgette to be in the bathroom at the same time. tt0278500,2TI2MT0eoSo,"Algernon uses his trusty, fictitious friend, Bunbury, to get out of a social obligation." tt0211915,Vz7PIPZgT0A,"Amelie's heart races when she encounters an intriguing young man at the train station, and chases after him when he takes off running." tt0264150,cLm4oCbovsE,The gals get interviewed by the eccentric John Witney and do their best to ignore his strange eye. tt0264150,DmokH6o-nKU,Donna gets a birthday surprise from her boyfriend Tommy when he breaks up with her in a birthday card. tt0264150,X_SthyaIImM,Donna enjoys the Christmas holiday with Ted and his family. She even receives a gift of the Stewart family red sweater. tt0264150,XyBWsO1gVTk,"When Donna is disappointed about being assigned to Royal Commuter Airlines, despite being the top student in her class, John explains that she peaked-too-soon." tt0264150,38ok415yQOc,"If Cleveland is where Ted calls home, then Donna loves Cleveland because she loves him." tt0264150,2zi4N3_c4sM,Tensions boil over between ex-best friends Donna and Christine leading to a cat fight aboard the plane. tt0264150,JgYPxPGfaRE,"Donna receives a perfect score on her makeup test, and has some encouraging remarks for her instructor John Witney." tt0264150,hKBHte0cc_0,"Donna makes it to Paris, but is saddened that she has no one to share the experience." tt0286112,SfaY0KH76nU,"With stellar goal-keeping and a mighty kick from Steel Leg, Team Evil is blown away." tt0299977,CWPoQO7bMRU,Flying Snow battles Moon in a whirlwind of falling leaves. tt0299977,sjVgX0A8Jtc,Nameless and Flying Snow push back the King's arrows while Broken Sword finishes his calligraphy. tt0299977,2eXbS-qG2GA,Nameless and Flying Snow battle to the death before the King's army. tt0299977,57TliyF8MFI,"Nameless and Broken Sword wage an epic battle over a lake, visualized in their minds." tt0299977,fLxSRdnGucA,"After storming the palace, Flying Snow fights the soldiers while Broken Sword fights the King." tt0299977,VIJIbL0ujtk,Moon attacks Nameless who defeats her utterly. tt0299977,KeTBqolcrO8,"The King gives the order to execute Nameless, then gives him the funeral of a hero." tt0299977,E1N0IvW6HyI,"Finally understanding Broken Sword's decision, Nameless abandons his plan to assassinate the King." tt0107822,YafZPxB5DRs,George tries to protect himself by telling Ada she should go if she doesn't feel the same way about him. tt0107822,3WNqgV1M5Zs,"Alisdair, enraged that Ada sent George a love note engraved on a piano key, hacks off her finger." tt0107822,XawDF5UDgXY,George demands that Ada lift her skirt while she plays. tt0107822,QqY-Ikm0kc4,"George strikes up a deal with Ada -- that she can earn her piano back, one key at a time, by letting her do ""things he likes"" while she plays." tt0107822,4U8n5Kjd0LY,Ada narrates the epilogue to her story. tt0107822,hoHyqSZGPt0,Alisdair sends Flora to deliver George her mother's finger as a warning. tt0107822,OMMs6m-HIxM,Ada puts up a fight for her piano when Alisdair claims it's too heavy to move. tt0107822,AZLoDR3AjX8,"Following one of their trysts, George questions Ada about her feelings for him." tt0107822,3_giBWrUYKc,Alisdair visits George in the middle of the night to tell him that he is relinquishing Ada to him. tt0107822,tLUrEgC-Dd4,"Thinking the piano spoiled, Ada insists they throw it overboard and, at the last second, decides to be pulled down with it." tt0286112,HtBebT-rKeM,Mui impresses Steel Leg with her use of kung fu techniques to make sweet buns. tt0286112,exMmixM3b3Q,"Steel Leg fights a street gang using a soccer ball, so as not to use kung fu for violence." tt0286112,n5_WG3WZqVk,"At their training match, Shaolin Soccer learns that soccer can be as brutal as any battlefield." tt0286112,JwfDV_Y54fA,"Mui is conflicted by her new look, but she quits her job at the bakery." tt0286112,lqT20npvohw,Shaolin Soccer faces off in their first official match and makes quite an impression. tt0286112,Vje8Fp3yQFM,"In the China Supercup, Shaolin Soccer faces a very powerful goalie." tt0286112,fvBB1KK_VY0,"At the Supercup, Team Evil cheats with drugs and Shaolin Soccer suffers at their feet." tt0286112,Go6nwid-CaQ,"Shaolin soccer faces off against the strange-looking, but fiercely talented Team Mustache." tt0286112,6BsWrEwtDP8,"Mui volunteers to take over as goalie, but she is not well trained." tt0115986,DF-ifsJZQEM,Sarah dreams of the savage murder of Ashe and his son Danny. tt0115986,qnNr8etyi08,"The Crow seeks revenge on the first thug behind his family's slaying, Spider Monkey." tt0115986,0tN0uV9DebQ,Judah makes an example out of one of his thugs that betrays him. tt0115986,r74QbwaIWFc,Ashe resurrects from his watery grave. tt0115986,dlYo5IHqD80,"Sarah paints Ashe in the fashion of her friend, Eric." tt0302674,Pu3BkumJXpk,Gerry gets rock marooned while searching for Gerry. tt0302674,n7mEYDnXaMg,Gerry discusses his conquests in a strategic video game. tt0115986,fBtPMUJJEg8,The Crow seeks his revenge on Kali. tt0115986,FtM7tdP6UDE,The Crow takes his revenge on Curve in the Los Angeles sewers. tt0115986,0-EcLwovpbU,Judah's slaying of the crow causes Ashe to fall from a skyscraper. tt0120321,lIk-3o2CkM8,A heated argument between Victor and Thomas escalates to such a point that Victor crashes the pickup truck when he fails to see a stranded car in the middle of the highway. tt0120321,6ZNNfq5l5Ds,"Shortly after meeting Suzy, Arnold asks her -- point-blank -- about the worst thing she's ever done to another person. By the end of their conversation, he realizes that they have quite a bit in common." tt0120321,xPnV2392Tck,"After a couple of sh*t-kicking cowboys take their seats, Victor and Thomas get back at them by mocking the greatest icon of cowboy Romanticism: John Wayne." tt0120321,kBEhz8vw2AM,Thomas secures a ride for Victor and himself after he regales a couple of women with his storytelling abilities. tt0120321,uwcJaUaVfR0,Victor shows Thomas how to be a real Indian. tt0120321,az-Q_fYNZrU,"After encountering a group of shellshocked accident victims, Victor runs through the desert for help, his mind clouded with voices and images of his past, and of his father." tt0120321,afW8dxL3qZM,"Suzy reveals to Victor how the house fire on the reservation started all those years ago, back when Victor and Thomas were infants. After Victor disputes her rendition of the story, Suzy challenges him to go into his father's trailer and confront what awaits him." tt0120321,IdSgAIq22b4,"Victor explores his father's trailer and finds a photograph of himself, his mother, and his father during a happier time. Then, as part of a Native American ceremony, Victor cuts his hair short." tt0120321,Bi3QsK4sVVA,Victor skillfully talks his way out of a dicey predicament with the Police Chief. tt0192071,t0qYTDYyNvs,"Berke and Kelly kiss, but Berke breaks it off out of loyalty to Felix." tt0120321,ND-nldJc8kU,"Upon returning home, Thomas posits the need for one to forgive the past, as Victor spreads his father's ashes over the river." tt0116324,RSm6z78KnxQ,Agent Kent advises Nancy on the proper technique to breast feed. Paul has difficulty finding a seat on the airplane. tt0192071,6QOqWyBhTVo,"Berke claims to be over Allison, but her intimate moment with Striker distracts him during gym." tt0302674,OAhF3wWBxbM,Gerry helps cushion Gerry's jump from the large rock. tt0192071,VyLZlTLEY4U,Kelly offers to help Berke with his audition for their school's new Shakespeare musical. tt0780511,VK-GL8zzH9I,"Rosie sends her Dad off at the airport, not knowing when she'll see him again." tt0192071,ASP2K-sFud0,"Berke goes on a date with Dora Lynn, the hottest and clumsiest girl in school." tt0192071,NC756fAs0Hk,"When Berke forgets the lyrics to the commercial jingle for Big Red gum during his audition, Kelly helps him out." tt0192071,l0Io_aXWgkQ,"When Berke gets arrested in a sex club raid, his mom and dad are disturbingly supportive." tt0302674,hoSJVPaj0ds,Gerry and Gerry discuss a humorous episode of Wheel of Fortune while searching for the trail. tt0300051,GU_FUlOapf8,Ollie has a tough time renting porn when the video store clerk gives him a hard time. tt0192071,_KXS58EqEHY,Desmond does not respond well when Kelly comes to his office with some lyrical suggestions. tt0192071,nET7V9DsWgo,"Desmond is thrilled when the opening number of his musical based on ""A Midsummer Night's Dream"" goes off without a hitch." tt0427969,HU3C0Vv0FeA,A young boy wants to shoot Superman to see the bullets bounce off. tt0350261,S48AVqtonXw,"As the bear roams through town, Einar tracks him down only to be stopped from shooting it by Crane." tt0192071,y9DslHbBubA,Berke rewrites the end of the musical on the spot to profess his love for Kelly. tt0357470,MKbX6ilLdRQ,Kelly goes undercover and off script during a WW2 reenactment. tt0192071,Yc1M82PB8C4,"Sisqó and Vitamin C cover Earth, Wind & Fire's ""September"" in a post-credits dance party with the cast." tt0302674,yOJ1gWVYB88,Gerry & Gerry's exchange an single insult after days of being lost. tt0302674,iqRZb8tveM0,Gerry and Gerry run from the trail after discovering other tourists. tt0302674,6c4QghxZ3IU,Gerry & Gerry's try to recount their steps to determine where they should go next. tt0302674,9GFz8aB2BVE,Gerry chokes Gerry to death to save him from the agony of dying of dehydration. tt0302674,fgxnajrZN9s,A delusional Gerry sees another mirage in the form of Gerry. tt0302674,QpGGSlwgOPs,Gerry finds a highway after mercifully killing his friend Gerry under the pretense that there was no hope. tt0103994,505KGEuKbNg,"After years of staying quiet, Tita stands up to Rosaura about the love she and Pedro share." tt0103994,-yEB9DCX-Ek,"John tells Tita about a mythical theory in which one must find their passion in life, or ""light their match.""" tt0184858,SIQb3d-piF0,Rudy overhears a conversation between Gabriel and Ashley where he finds out that Ashley is really Gabriel's girlfriend. tt0103994,RNXEflQuWsU,"Tita's sister, Rosaura, reveals that her daughter will share the same fate as Tita -- to care for her mother until she dies." tt0103994,fU9nP5V2vw4,"Mama Elena cruelly rejects Pedro's proposal to Tita, offering him Rosaura's hand in marriage instead." tt0184858,Gt_pfAghaHA,"Rudy leads Gabriel and Ashley into a trap when they open the mysterious ""Pow-Wow"" safe." tt0103994,x2vfxsdVhaU,Rosaura begs Tita to help her attract Pedro. tt0103994,Nbl6Y076TeQ,"Mama Elena's ghost haunts Tita, disapproving of her affair with Pedro and cursing their unborn child." tt0103994,wjHd0VWfuRU,"Tita takes a stand against Mama Elena's damning ghost, driving her away forever." tt0489327,q1Pz7ppcuJc,"Maurice introduces himself to his friend's rude and disinterested great-niece, Jessie." tt0184858,LmRLxta5-4U,"Stunned to learn that his old cellmate, Nick, is still alive and dating Ashley, Rudy is secured to a burning car so he can be chalked up as a casualty of their nefarious plan." tt0103994,J7PnM3ji7uA,Tita confesses to John about her affair with Pedro while he was gone. tt0184858,8ZDX262xJvo,"Gabriel's heist plan goes haywire in a sea of confusion and gunfire. When the dust settles, Rudy is captured at gunpoint by Ashley." tt0103994,O4aMxMg0Vn0,Tita makes quail with rose sauce using the roses Pedro gave her. The meal has a mystically sensual effect. tt0103994,2pg_Mr4lIoY,Pedro and Tita's love story begins with his declaration of love for her. tt0489327,cLTBa54o70U,"When Jessie passes out after drinking at a nightclub, Maurice takes her home and puts her to bed." tt0489327,LldI0SRzJX0,"Maurice gets Jessie a job posing nude for art students, and he can't help but try and take a peek." tt0184858,kghbSGoV1kE,"When cockroaches are discovered in the prison food, a massive riot breaks out in the mess hall. In the chaos, Nick is killed as he protects Rudy from a very ticked-off inmate." tt0489327,qRAE0UOMyB8,"Maurice takes Jessie to the National Gallery in London to see his favorite painting, the _Rokeby Venus_ by Diego Velázquez." tt0103994,dZgbeIE9Xbo,Pedro takes advantage of the protection night offers and kisses Tita. tt0103994,H3ZYf8ECNWU,"Tita, being the youngest and therefore her mother's caretaker, can do no right in the eyes of her mother." tt0489327,IIn0MEHnMC8,"Maurice takes Jessie shopping, but she's humiliated when he doesn't have the money for her dress." tt0144715,-IZv4Jfl6ZQ,"Arriving in Australia, PJ Waters exudes confidence, and his magnetic charm is no match for the ladies, especially Yvonne." tt0489327,OYwDIrdkJ3Y,"Maurice helps Ian cut his toenails, which leads them to contemplate their own mortality." tt0300051,iR-4e37VUPo,Ollie and Gertrude argue before the video music awards. tt0489327,kuXEfuC92Ag,Jessie allows Maurice to kiss her three times on the shoulder. tt0300051,0VYvdsrV6Lw,Ollie hasa meltdown in front of the press while managing his career and his baby. tt0489327,cIiMDK4UMQM,Maurice and Jessie reconcile after his return from the hospital. tt0144715,H60kzF257OI,"Having slept with Ruth the previous night, P.J.'s male assertiveness is threatened when she dismisses the sexual affair." tt0144715,R4O0t9jkkUg,//j.mp/zaccRf tt0144715,yGPikMkqr3M,A hallucinating and deranged PJ has a spiritual vision of Ruth in the form of a Hindu deity. tt0144715,5abHHDWcRAQ,"In the Australian outback, PJ chases after Ruth, and Yvonne chases after PJ." tt0144715,KA-LkJdOzHo,"Yvonne deliberately succumbs to the sexual machismo of PJ. She seduces him, and he seduces her." tt0144715,q06t8RTLqMQ,"After PJ calls Ruth a ""man hater,"" he insists that she attack his male insecurities and flaws." tt0144715,ig80r0pbEv4,Ruth makes P.J. over to look like a woman. He's not to pleased with the reflection in the mirror. tt0144715,8JfgfdHNkvg,Ruth mocks PJ by stating that sex with him is a bit revolting. tt0300051,uvUH_niF-Zo,Ollie tries to open up with his daughter about sexuality when he catches her and a friend showing each other their genitals. tt0144715,esrBtSFDlEU,Ruth has a religious awakening when Baba graces her with his touch. tt0190590,Xy-cq_YpYPg,Hugo plants the seed in Odin's mind that one of their teammates is sleeping with Odin's girlfriend. tt0300051,IB2eLqqkLaI,"Ollie picks up his daughter, Gertie, from school in his ""batmobile""." tt0300051,JC2eKssXavo,"Ollie gets some parental advice from his former client, ""Will Smith" tt0489327,iRIxb6_ELNg,"Jessie recalls her pregnancy and abortion, while Maurice recites a Shakespearean sonnet." tt0300051,_9ZdW3KXuMs,Ollie has an unsuccessful job interview with two Kevin Smith regulars. tt0300051,ACCoL8xk0Jg,Maya interviews Ollie about his masturbation practices. tt0300051,8n2vsSHAs0w,An awkward conversation ensues when Gertie catches her father and Maya in the shower together. tt0300051,uONmjd_RGk4,Gertie gets angry when her father plans to interview for a job in the city on the day of her show. tt0489327,_VA5a5QSYYA,Maurice apologizes to Valerie for leaving her with three children. tt0300051,GXZ-NAPnfsw,Gertie lights up when her father makes it to her big Sweeney Todd number for the school show. tt0780511,3F_Jlo1A4oo,"Frank hitches a ride with Colleen, a truck driver, who recently lost her husband." tt0780511,nKB-Ij0vyB4,"Rosie inquires about her father's dreams and career ambitions when he was younger. Frank answers simply that he ""wanted to be a good father.""" tt0489327,dRTKQQtFoRU,"Jessie takes Maurice to the seaside, where he dips his toes in the freezing cold water one last time." tt0780511,WH9nsFQH6KU,"Rosie cooks dinner for her father Frank, and reminisces about learning to eat spaghetti as a kid." tt0489327,Jf3-qH7OhmM,Donald tries to break up the fight when Ian confronts Maurice about his influence on Jessie. tt0190590,hiq_FE5dmWI,"With his mind roiling in jealousy and suspicion over Desi's supposed unfaithfulness, Odin uses his anger to nail a perfect score at the dunk contest. But when his aggressive demeanor gets out of control, the crowd turns against him." tt0190590,3yp-s7ia9iQ,"Odin is accused of forcing himself onto the Dean's daughter, Desi. When Desi is brought in for questioning, she tells her father that she and Odin have had a secret relationship for quite some time." tt0190590,lsxZwAnu8LQ,Hugo's plan goes horribly awry when Roger misfires and only wounds Michael instead of killing him. This leads to a cascading breakdown of panic and even more murder. tt0190590,Yp6X2N7tcKQ,"Odin apologizes to Desi for what he's done, and for what he's about to do as his jealous rage takes over." tt0258068,qFcIW6TtVEI,"Fowler ruminates on the power of Vietnam, and has a late night meeting with Vigot." tt0190590,DnKAU918UaE,"Odin delivers his last words to clear the air, and his conscience, before committing suicide." tt0190590,JvtwIPa3c9A,"Hugo manipulates Odin by feeding him false information during a conversation that he has with Michael. Afterwards, Odin asks Hugo for his help in killing Michael." tt0448075,koWFIhw94xo,Gabriel and Pete develop a friendship over the phone. tt0190590,fYvvenxELZA,Emily brings Desi's scarf to Hugo in exchange for some romantic affection. tt0190590,Q1yT_LIMb30,"Hugo lays out the plan on how he and Odin can kill Desi and Michael, and get away with it." tt0258068,42asJ9x0-po,"Fowler meets Pyle, who develops an immediate attraction for Fowler's lover, Phuong." tt0780511,-BUI1BdZz94,"After suffering a heart attack, Frank is emotionally devastated to learn that his missing son died of a drug overdose." tt0780511,GrWqq9ukRY8,"Frank is disappointed to learn that his son Robert is not a conductor of the orchestra, as he was led to believe, but a percussionist." tt0780511,9ZhgVCU6ehk,The letter which Frank left for his son is returned including a family photograph taken on Christmas Day from back years ago. tt0780511,6RAn28uDZHc,"Suffering through a fevered dream, Frank questions his young children as to why they all lied to him during his recent visit." tt0780511,VbrKHPGdDT0,The entire Goode family comes home for Christmas. Frank even cooks the turkey. tt0780511,c-veUs6bPHY,The father-son relationship reverts back to old times when Frank scolds Robert for having a cigarette. tt0780511,9gQIJ4id6pg,"The Goode family sits down for Christmas dinner, Frank looks over his children and can happily say, ""everybody's fine.""" tt0448075,Kv_9PD-_akA,"When Gabriel can't get a hold of Pete, he flies out to Wisconsin." tt0258068,1TCzcINB8HI,Fowler watches as Pyle dances with his lover Phuong. tt0448075,vJ3TMzKciS8,Gabriel and Anna discuss potential theories and possibilities concerning the truth about Pete. tt0448075,fPJQ4T2TQ0E,Gabriel calls Pete after reading his book. tt0258068,gY7e586vhzo,Fowler tells Phuong that he has been instructed to return to London. tt0448075,jEXEQRL2oQw,"After hearing Pete and Donna on the phone, Jess has suspicions that they may be the same person." tt0448075,IiIwhalEAwU,Gabriel gets uncomfortable when he attends what he believed to be a small Christmas party with his ex-boyfriend. tt0118949,9NqWMjMX548,Jamling explains how his father inspired him to climb Mt. Everest. tt0258068,ilfv_YzaP0U,"Fowler tells Pyle and Phuong that his wife is granting him a divorce, but the lie is quickly uncovered." tt0448075,mWdqcBWVurw,"Gabriel visits the address of Pete's house, which turns out to be a store." tt0448075,tdBNwAJMgW4,Donna's attempt to be friendly doesn't go over with a frustrated Gabriel. tt0448075,4cWDWIgBXrw,Gabriel is harassed by a police officer after he finds him in Donna's house. tt0448075,ZLFDR8pvkf4,"Gabriel receives his final call from Pete, which may or may not be Donna." tt0448075,SM-1QC6F1-k,Donna attempts to secure Gabriel in the middle of the road as a trucks drive by. tt0258068,4uVgjb0gO9E,Fowler is relieved when Phuong rejects an offer of marriage from Pyle. tt0118949,pW3peNmE19E,Jamling goes over the dangers the mountain poses; Araceli carefully crosses a crevasse using a ladder. tt0258068,5w8kGvQ2j5Y,"After Fowler reveals the depths of his love for Phuong to Pyle, an attack forces them out of the watch tower in which they were hiding." tt0118949,lcns0VMck7s,"The team spends time at base camp, where they hear the roar of avalanches." tt0118949,iVpm6-9dPYs,"Ed reflects upon the storm that the climbing groups who set out before him faced, including his friend, Rob Hall." tt0118949,29KrhW9Ft4E,The team spends a few weeks acclimatizing to the altitude at Middle Camp. tt0258068,e50yvXvkaeg,"On a search for Phuong, Fowler makes a scene at the office before finding her at home with Pyle." tt0118949,qEMbpl4V-eA,"The Summit Team struggles with the harsh conditions of ""the death zone"" before they make their final ascension to the summit." tt0118949,KS_Doe-4fkM,The climbers choose to persevere and begin their climb to the summit despite the tragic deaths of the climbers who'd tried it just days earlier. tt0118949,Urf145tA2SM,Ed reflects upon his friend Rob's last night as well as the miraculous story of another climber who made it through the storm. tt0118949,qmGHg5uJ7xU,The Summit Team reaches Mt. Everest's summit. tt0118949,OrjUfQFz_os,The Summit Team braves the Lhotse face up to high camp. tt0118949,59R3QIB6NqU,The Summit Team climbs up the Southeast Ridge to reach the summit. tt0258068,gBjOW9luDWw,Fowler and Pyle witness first-hand the bombing of a busy intersection in Saigon. tt0114805,0qeD9nc9nwo,The documentary Nanook of the North gives Isaac Mizrahi the inspiration for his new collection. tt0427969,7_OiqaOaeNc,George Reeves auditions for the lead role in the Superman television series. tt0258068,QF08ozhDX-0,Hinh convinces Fowler that Pyle ia a spy who needs to be eliminated. tt0258068,gljJhOFXrUU,Fowler watches from a distance as Pyle is abducted and taken to a dark alley. tt0242527,cX0S8SN8Cmk,"Liz tells Mike that she's attracted to him, and suggests that the reason they are trapped in bunker is because of Martyn's jealousy towards them. They soon suspect that the entire bunker has been bugged by Martyn." tt0242527,W0_4w6GsngI,"After leading his friends to The Hole, an abandoned WWII-era bunker, Martyn asks Liz if she's going to be able to handle being underground for three days." tt0190138,Kocw_F48CGw,"Leo apologizes to Val for being a disappointment, and breaks the news to Erica that Willie committed murder." tt0427969,rChS9MeLW-w,Lou sees his unhinged client Chester Sinclair arrested for murder. tt0427969,FfIAWygymsc,Lou searches for overlooked evidence at the site of George Reeves' shooting. tt0242527,IimC6oXVZpI,"Convinced that Martyn is spying on them via hidden listening devices, the gang pretends to make it look like they are tearing themselves apart in order to fool Martyn into thinking that his plan has worked." tt0242527,gYhC67R4g64,"Martyn gives his version of the story to the police, revealing a totally different side of Liz and Frankie as they plan their party in The Hole." tt0377107,MdTaJDKTgUc,"Catherine remembers the years in which her father was losing his mind, particularly the time he thought he'd made a mathematic breakthrough when he'd actually written gibberish." tt0114805,shogibE67W8,Isaac Mizrahi learns that another designer was inspired by Nanook of the North. tt0427969,cg-wxqxxWs4,"At the urging of his agent, George Reeves reluctantly accepts the role of Superman." tt0114805,Wzt_d8eA_m8,"Isaac Mizrahi discusses his pop culture influences, including Call of the Wild and Mary Tyler Moore." tt0147004,AqTaIbDTNnE,Ray uses the only thing that matters to LV -- her deceased father -- to get her to agree to playing a show. tt0114805,psDnYKqgVT8,The models hit the runway during the show for Isaac Mizrahi's new collection. tt0114805,UQzUOKKGfLs,Isaac Mizrahi and Sandra Bernhard meet a joke writer for comedian Marty Allen on the streets of New York. tt0114805,BOaImgyr7mU,Isaac Mizrahi's preparations for the show are intercut with footage from his home movies. tt0114805,HRbf5iuWZt8,The fashion models resist Isaac Mizrahi's suggestion that they change behind a translucent scrim. tt0114805,wYwlDchIasw,"Isaac Mizrahi discusses the origins of his favorite neologisms, ""Yarn't"" and ""Gurna.""" tt0114805,n16wxs5pgvk,Isaac Mizrahi visits actress Eartha Kitt and agrees to create gowns for her. tt0184858,c_7V6VgIvTY,"Frustrated by Rudy's intransigence, Gabriel figures out a new way to get his point across." tt0350261,AVMAbj_Pbnk,Einar takes Griff to the diner to reconcile with his daughter in-law Jean. tt0114805,gJOWAISZDhs,Isaac Mizrahi explains his process of designing fashion collections. tt0144715,oxA2tQ6kfdE,"When Ruth tries to escape from an obsessed P.J., he loses control and punches her out." tt0350261,-AXjzZskE9U,"At the local diner, Einar puts two drunk hillbillies in their place when they mess around with Nina the waitress." tt0035423,d7RrYVI3Xw0,Kate joins Leopold in the 19th Century just in time for him to announce their marriage. tt0035423,Aw1mnorjq-o,"Leopold gets acquainted with modern conveniences as well as Stuart's ex-girlfriend, Kate." tt0427969,zWY-GWMn4Ig,"Embracing his role model status as Superman, George Reeves doesn't let his young fans catch him smoking." tt0035423,5EFH9AmTg6c,Kate and Leopold disagree upon the principles of Kate's advertising job. tt0350261,FmGg8C6mI78,A humorous moment develops while eating lunch when Griff misinterprets the friendship between Einar and Mitch as a gay relationship. tt0350261,Hh-QeqsDXKI,Mitch and Griff get to know one another while discussing the strange things people will eat. tt0190138,mfg2O0A6L4g,Leo rides along with Willie to a meeting with a paranoid city official. tt0240510,nRq905BT8HM,Jack chases a Mahdi rebel who refuses to put his rifle down when caught. tt0240510,M-HCaHXzQRY,Harry explains to Abou why he ran away from his duty. tt0120820,Qt5TuFHZh5E,Darryl uses his super hearing abilities to eavesdrop on Janice as she talks to her friend about the type of man who captures her interest. Darryl then uses this information to charm Janice. tt0102749,FwfrVozwn7A,"Down in Natchez, Mississippi, a deal between the local rednecks and Slim's gangster posse goes haywire when the sheriff's department surrounds the house." tt0120820,dl1X9j-9Lbg,Darryl's dulled senses prove to be an asset as he handles Scott's attempt at hazing with incredible ease. tt0102749,cliSp3FNprY,"As Screamin' Jay Hawkins casts a spell on the dance floor, Imabelle casts a spell on the clumsy Jackson." tt0107426,V9Ul46Dj3Hg,Siddhartha's decisions lead his disciples to abandon him. tt0102749,PqGuiXKC320,"All's well that ends well for Jackson as he says 'goodbye' to Goldy, then hops a train to be with Imabelle." tt0350261,gZSxqyNDZvw,Einar takes his granddaughter Griff for a ride on a horse to visit her Dad's grave. tt0350261,Kp6aaQEK5y0,Jean pours out her grief over the car accident that killed Einar's son. tt0147004,rV4DxcJOCLs,Ray Say is astonished when he hears LV singing in her room upstairs. tt0350261,hw8D5KSx5p4,Einar beats the hell out of Gary after the domestic abuser threatens Griff. tt0357470,qIleHfrMWWE,Kelly is introduced to the eccentric Bowland family. tt0242527,CjyutBNjVns,"Frankie is found dead, to the horror and shock of the survivors." tt0350261,wSKGygJ2-oQ,"Mitch visits the bear that mauled him, now relegated to a cage in the zoo." tt0350261,Y77zaw13B_8,Einar's plan to free the bear goes horribly wrong when the gear shift of the truck accidentally shifts. tt0350261,L6FYDW1TC4g,The Gilkyson family comes together as a family with Einar finding peace for the first time since the passing of his son. tt0350261,IqOqMdra3rk,Mitch steps outside at night to find himself face to face with the bear that mauled him. He resolves to not give an inch. tt0242527,_pEz5emBI4A,Liz recounts the moment when she and Mike got intimate while they were trapped in The Hole. tt0357470,fy-PoYl4bQI,Kelly runs into Tabby at an art supply store. tt0357470,GbW8sknTWZ8,Kelly interrupts class when he believes the teacher's curriculum is undermining the truth. tt0242527,nnJW5FWg9oc,"Liz experiences a flashback where she recalls the actual, sordid events of what went on in The Hole." tt0357470,IvKzfpZ1GUw,Kelly tries to impress the Bowland family during dinner. tt0357470,gnY0vVF0j60,Bart confronts Kelly about kissing his sister during the History Channel reenactment shoot. tt0357470,kUAXs0LhD6I,"Kelly introduces himself to Miner Weber, Tabby's fiancee." tt0357470,7BnAQgS15HY,"Kelly, Bart and their friends pull an apocalyptic prank on Lance." tt0357470,1QDmLu5a0nI,Kelly and Tabby share a brief intimate moment when her wedding is called off. tt0242527,w6v2DUJi-C0,"Trapped and without running water, Geoff describes, in detail, what happens to a human being when they go thirsty. Liz breaks down from the news and her friends try to comfort her." tt0242527,fi6U1d5eW4g,The gang freaks out on Liz after they realize that they're trapped in The Hole. tt0242527,f7utYx1vcM0,"Liz reveals to Mike that the whole concept of going down into The Hole was so that he could get to know her better and fall in love with her. Mike doesn't see it that way, and reacts quite violently..." tt0242527,AHyK8eTGHNs,Martyn chases down Liz and confronts her for betraying him to the police. tt0186975,kaQPejxLNRw,It's love at first sight for Al when he spots Imogen from across the bar standing by the jukebox. tt0035423,I_mYmJVMef0,"Charlie takes Leopold's advice in trying the sincere approach with his crush, Patrice." tt0035423,bSE3gq6Sf6Y,Leopold romances Kate with a candle-lit dinner on the roof. tt0242527,sRqeX6qMlak,"When Mike realizes that Geoff has stashed away a soda can, he loses his temper -- and his mind -- and bludgeons Geoff to death." tt0035423,U9nydZd_emI,Leopold comes to Kate's rescue when a thief steals her purse in Central Park. tt0186975,dCxgKZ5QV5E,Al recalls his first kiss - coming out of the dentist's office with his mouth numbed from novocaine and encountering an older woman. tt0035423,G-FYkB9M72k,Kate and Leopold do some 19th century dancing; Kate expresses fear of letting herself fall in love. tt0035423,DLVfYn9pvwo,Charlie asks Leopold about his real identity; Kate is moved almost to tears when Leopold makes breakfast for her. tt0035423,Fwi0bsJ5F8I,Leopold performs the Farmer's Bounty commercial flawlessly....until he takes a bite of the stuff. tt0427969,2MtY0yfM0nI,Eddie Mannix defies Lou to prove he had anything to do with George Reeves' death. tt0035423,tBw_BTLbjJI,Leopold crashes Kate's date with J.J. to expose J.J. as the insincere fraud that he is. tt0186975,liK550asDSw,"At the bar, Al encounters the tempting and alluring Cyrus who's in the porn business." tt0186975,hohZbtTAtRA,"Enjoying a date in an art gallery, Imogen's passion for a painting sparks Al's passion for her." tt0186975,VrFey4EPA8Y,"Imogen shows off her extroverted, soulful side by performing a song and dance to the tune ""Let's Stay Together.""" tt0240510,wF6xVdnFJho,"After discovering the regiment will go to battle, Harry asks his superior to resign from his commission." tt0427969,1z2AjhGr9XI,"After watching his 8 mm home movies, Lou arrives at the home of his ex-wife and son." tt0190138,MEdmiHCUvYA,Leo attempts to reconnect with Erica at the party celebrating his release from prison. tt0427969,BRWeoTfbbbg,Lou tries to charm a saleswoman into providing information about George Reeves' watch. tt0427969,if5npkJHfik,Art gives Lou an 8 mm film reel that shows George Reeves practicing martial arts. tt0190138,uCCrethRf3E,Willie takes Leo out to the club and reassures him that they can find legitimate work together. tt0240510,2sFAyhjR8_o,Harry helps a wounded Jack after the battle of Omdurman. tt0186975,LrTMwBugt-Y,"Unable to sleep, Al turns on the t.v. to find himself a guest on 'The Man Show.'" tt0240510,938jCranAMo,Harry confesses to Ethne that he resigned from the army not for her but for himself. tt0240510,Z58VID4Qjf0,"The Mahdi rebels surround the British fleet, who counter a charge when they believe they have a backup cavalier fleet." tt0240510,NvxttHABP1o,The British army is forced to shoot a group of unarmed Mahdi rebels before realizing they were only a small first wave. tt0240510,skuMakhGnn4,"The British Army attack the Skirmishers, including Harry, while Castleton falls in battle." tt0240510,ptiXfr5lJl8,"Abou aids Harry in prison, where they both mutually decide to break out of prison." tt0186975,Ur4Pg0Jyph0,"Overlooking Central Park, Al receives some wisdom on the topic of romance from Monk, and Imogen unexpectedly makes a surprise visit." tt0120820,DFEuw-bNldk,"Darryl proves his mastery of finance without the use of the experimental super drug, and in the process, defeats Scott for the job." tt0240510,9ZvkGoQ1dSU,Harry and Abou battle their captives as they attempt to escape prison through the desert. tt0186975,U6PfGIrWIak,"At a house party, Al finds a wannabe Jim Morrison hitting on his girlfriend Imogen." tt0240510,FlyWwjIuCeE,Harry meets Ethne for the first time since he went to war and she got engaged to Jack. tt0240510,0PraJ0mNgUs,Jack gives his blessing for Harry to be with Ethne after he realizes Harry was the man who helped him at the battle of Omdurman. tt0186975,3XPzF1azIkI,A romantic walk in New York City leads Imogen to confess that she's still not over Al. tt0186975,9aHj6prYd54,"Al opens up a gift from Imogen - a book entitled ""Down to You"" with the front cover being a hand drawn portrait of the two of them." tt0186975,btWDXgrF-bo,Al and Imogen sleep together for the first time after a courtship of three months. tt0190138,PtgGWFzIQq0,Things go wrong one night when Willie kills a rail yard supervisor and Leo beats a cop. tt0120820,z8Z8Qx6-rPY,"Scott embarrasses Darryl in front of his elitist, fraternity friends before telling him that he's not good enough to join them." tt0190138,bolHm17q3ik,Leo finds himself unable to shoot the police officer who can identify him from the rail yards. tt0186975,bHjHDiu2UR8,"Al surprises Imogen on her birthday by serenading her with the Barry White song, ""Can't Get Enough of Your Love Babe.""" tt0120820,EF6ss3d4GyI,"After taking the experimental super drug, Darryl's senses kick into overdrive as he hears, sees, smells everything in unbelievable detail. It drives him crazy." tt0120820,17oDZd93a-U,Dr. Wheedon lays out the science and the dangers behind his experimental super drug. tt0120820,UTAZimUwzCM,A shady guy takes advantage of Darryl's situation when he realizes that Darryl can't see properly. tt0120820,jHessqORWLw,Darryl gets into a tussle with Patrick Ewing after he inadvertently insults the NBA legend during a Knicks game. tt0120820,U937JR-ir5I,Darryl starts to master his newly empowered senses and realizes the potential he now possesses. tt0190138,41IWZRnmb68,Frank and Willie discuss their strategy for covering up Leo's involvement in the murder. tt0120820,hLrM7OaMTGg,"After giving himself a double dose of the experimental drug, Darryl's senses are overloaded and he has a tough time maintaining his composure around the sultry Lorraine." tt0120820,M7iC24MaxxI,"Now a successful partner on Wall Street, Darryl offers to move his mom to a deluxe apartment on the East Side." tt0190138,bqPbkGVa_wc,Leo and Willie get into an epic brawl after Willie slaps Erica. tt0102749,0g39c4d1fKQ,Imabelle's attempts at seduction fall flat on the inexperienced and innocent Jackson. tt0102749,ifS04il68Yw,"With Jackson paralyzed to several sexual come-ons, Imabelle correctly concludes that he must be a virgin." tt0102749,C68UZJevw2Q,"At first uncomfortable, clumsy, and hesitant, Jackson eventually reaches a point of sexual ecstasy in the hands of the experienced seductress Imabelle." tt0102749,xs0lwxmTaZY,"Having never drank alcohol, Jackson accidentally gets drunk when he develops a taste for rye whiskey. Goldy and Big Kathy look on with shock." tt0102749,tbjTxvs1nPo,"Jackson chases after Imabelle leaping from rooftop to rooftop, with Goldy following suit." tt0102749,DOl-8LrZapk,"When Easy Money refuses to back down to Slim calling him ""chump pussy,"" a showdown occurs, leading to an inevitable shootout." tt0102749,OKjpAsVT-8g,"With Slim holding Pappy hostage, Easy Money surrenders his weapon to save his dog." tt0102749,TJIWOgCUdGE,"With high adrenaline and high risk, neither Goldy nor Imabelle will back down to other, so they decide to become partners." tt0102749,UvNE2bjUfC4,Jackson defends his love for Imabelle against Slim in a fight of manhood to the death. tt0190138,4xpGjslC5Vs,"Erica rejects Willie and they fight, with deadly consequences." tt0190138,R80X3_lPzoo,Willie gets arrested while Frank and Kitty hear the news about their daughter. tt0190138,9IMNpGeSLT0,Leo gives a warning to the thug sent by Willie to take him out. tt0107426,9QbJu_68yS4,Lama Norbu explains to the Conrad's how he believes Jesse is the reincarnation of Lama Dorje. tt0190138,Cb1Pbk3gQSM,"Leo has a job interview with his new uncle Frank, who encourages him to return to school." tt0107426,EWBVJF9sSPI,Kenpo Tenzin recounts his dream to his peers of Lama Dorji's reincarnation in Seattle. tt0107426,0zyVlsLgJ8U,Lisa recalls the story of Siddhartha's birth. tt0338135,4nrgeASou5Q,"Nathalie gives Rémy some heroin to help ease his pain. As she prepares the drug, they discuss the shared past between them." tt0107426,yxnFEjVMK2U,Siddhartha ventures outside of his kingdom and witnesses the class structure and mortality of man for the first time. tt0107426,YmMAmPFhSqw,Lama Norbu and Kenpo Tenzin explain the purpose of their Seattle visit to the Conrad's. tt0107426,2QT4mFNVyzc,"For the first time, Siddhartha wonders about the world beyond his walls." tt0107426,xJzCM_nI2mM,Siddhartha witnesses for the first time the frailty of humanity at the moment of death. tt0107426,GV9TBb-8Kec,Disciples of Siddhartha become convinced of his miracles when a serpent covers their Lord when it rains. tt0107426,iGgiGgeCwM8,"After Lama Norbu lectures Dean on the Buddhist belief in reincarnation, Dean decides it is not the life he wants for his son." tt0107426,zyRjUeY6YOc,"Raju and Jesse are introduced to the third candidate, Gita." tt0107426,BS_wIUrlOPk,Dean and Lisa discuss the possibility of letting their son go to Bhutan. tt0434124,B_UjiJy0t4c,"After trying to save a damsel in distress, Charlie is surprised to wake up in the dressing room of drag queen Lola." tt0147004,hX5s15LBHqo,"Mari brings Ray home, where she is quickly set off by LV's skittish disposition." tt0434124,g92cHdRbgag,Charlie speaks to the workers for the first time after taking over the factory from his late father. tt0147004,Z519Bs2Kidc,Mari gushes to Sadie with all the juicy details of her night out with Ray Say. tt0434124,uJNHr8QQVJQ,"Lola flips out when Charlie produces a comfy, burgundy boot." tt0434124,Rxn-KDDZ8RI,Charlie takes Lauren to see a performance by Lola. tt0147004,QX7j8pCeD7Y,Ray claims LV as his discovery as soon as he witnesses her talents. tt0147004,h4SMndWj5To,"LV, shy at first, gets inspiration from her dad's memory to perform her first song full-out." tt0147004,FYDwyb7CJxY,LV's show takes off as she embodies a variety of great divas. tt0147004,vT6xS0mRapg,"Drunk with power and the potential for profit, Ray begins to push LV too hard." tt0434124,khz9zIg_2sc,"Lola shows up at the factory in Northampton, to the embarrassment of Charlie." tt0434124,su2njbUCQhg,Lola challenges Don to an arm wrestling match and lets him win. tt0434124,4BRkb7LhkUU,Charlie pitches Lola the idea of custom-made boots for drag queens. tt0434124,omiio7SJIOE,Lauren tries on a pair of boots and Charlie rehires her. tt0434124,NBh_b2SBDHs,Charlie struggles to remain upright as he ventures onto the catwalk in Milan wearing his company's boots. tt0434124,vQyK7Re2-Jc,Charlie watches as Lauren dances with Lola. tt0372824,VbfjIg31aE0,"After being fired from the school, Clément Mathieu takes the orphan Pépinot with him." tt0434124,Mwk75Fek3qs,Lola saves the day on the catwalk in Milan by performing a boots medley assisted by cross-dressing background dancers. tt0434124,P4-obzmm_T0,Lola says goodbye to her fans and welcomes her new coworkers to watch her nightclub act. tt0147004,t4qrfjEgdt4,LV finally stands up to her mother. tt0147004,uLYYXvBlUgQ,Ray harshly tells Mari what he really thinks of her. tt0338135,spu_6dxLcok,"As his friends discuss the various radical and intellectual causes that they've been a part of over the years, Rémy recounts a time when his high-class education made him look like a fool." tt0147004,KdNQBaLVGfI,"LV cracks against Ray's demand to do another show, and fights back with a slew of impersonations." tt0147004,oBtG0gj6MxA,LV channels Judy Garland's Dorothy when she gets caught in an electrical fire. Billy comes to her rescue. tt0118949,LwdlYGPcikE,Jamling and Araceli share the feelings they experienced being at the summit of Mt. Everest. tt0035423,gJyibprvYQk,Stuart guides Kate to the girder she must cross to time travel to meet Leopold in the 19th century. tt0338135,c71vLQPwjdU,"Sébastien searches for Nathalie after his father, Rémy, undergoes heroine withdrawals." tt0338135,NBTLvFg_ve8,Sébastien explodes at Rémy for being a destructive and selfish father. tt0338135,wPvJ5OJ_P18,"Sébastien chews out Rémy for not keeping track of his laptop. Later, a French intellectual theorizes the rise of ""barbarians"" at the gates of Western civilization." tt0338135,10Q3mew9R6A,Rémy recounts the various love affairs he's had with women he's never met. tt0338135,iXyfNoBlpjA,Rémy lectures Sister Constance Lazure about the terrible past of humankind while struggling with his own fading mortality. tt0338135,-KvWckPXGIQ,"Rémy questions Nathalie's self-destructive tendencies and her nihilistic outlook on life. But Nathalie challenges Rémy as well, telling him that he lives only in the past." tt0338135,XI9RzX6Xvyw,Rémy's family and friends give him a personal farewell. tt0338135,IHPjxbcPnAc,Rémy's past lovers discuss his predilection for receiving blowjobs. tt0338135,ty5exYQi3wg,"Rémy receives a tearful goodbye from his estranged daughter, Sylvaine, who lives on the other side of the world." tt0338135,4zULAL9VioE,"Rémy shares a tender moment with his son, Sébastien." tt0372824,Pu54Ka5I6lc,"Though the rules forbid any further contact, the children find a way to bid their beloved teacher Clément Mathieu goodbye." tt0372824,EXS5TiBYESk,Clément Mathieu writes music for the chorus and conducts their rehearsals. tt0372824,CTlALiQtH5o,Clément Mathieu finds the boys in the dormitory singing a puerile ditty about him. tt0372824,95XSvfimW_E,"Following accusations that his mother works as a prostitute, Pierre Morhange runs away from the school to verify his mother's profession." tt0287717,MfmOj8Rqcog,Gregorio and Donnagon fight hand-to-hand for control of the transmooker device. tt0372824,5l1VEIQj0vA,Pépinot and Pierre Morhange both get in trouble in Rachin's class. tt0372824,cCn4FUNWvQ4,"When headmaster Rachin fires Clément Mathieu after the school burns down, Mathieu states what he really thinks about Rachin." tt0372824,d9N--iGGW3E,Clément Mathieu arrives to teach his first class and finds the children difficult to control. tt0372824,8IXVGrc3uOA,Clément Mathieu auditions the boys for the chorus. tt0287717,a_4TTRfXkgk,Dinky Winks gives the President's daughter a tour of Troublemaker Theme Park. tt0287717,ZNzVgqv5MtQ,Carmen and Juni battle sword-wielding skeletons. tt0287717,Z09MpDVYWSw,Juni dances ballet with the President's daughter. tt0372824,Ya2mPO0f-uk,"When the chorus performs for the Countess, Pierre Morhange is given an unexpected solo by conductor Clément Mathieu." tt0287717,Onqbwlqk4G0,"When all of the adult OSS agents are drugged at an awards banquet with the president, it's up to the Spy Kids to defend the transmooker device against the Magna Men." tt0287717,3chYfqAbqow,Juni and Carmen call Floop and Minion tt0287717,AcNkJ4_bQ1g,Romero explains how his experiments to make a miniature zoo went horribly wrong. tt0287717,0yc0knpkAxw,Juni's spider monkey battles Gary's slizard; Carmen arrives to defeat Gary. tt0287717,WZkuKkPQjbQ,Carmen and Juni free fall after tumbling into a volcano. tt0287717,AzGePmv0GD8,"Uncle Machete introduces Carmen and Juni to his latest gadgets, including a spy watch that doesn't tell time and the Machete Elastic Wonder." tt0117951,qp27BT2g0BE,Begbie and his mates find themselves out of their league on a big-time drug deal. tt0217505,mdwLxOK7xLc,Riots ensue in New York when the middle and lower class get fed up with the drafts. tt1225822,XNG8wW6Ffw4,"At the Sam Ash Music Store, Cindy coyly uses her feminine charms to steal a valuable guitar from right under the noses of the guitar salesmen." tt1225822,OIyluGsy-zA,A domino effect of accidents in the extract plant leads to Step losing one of his testicles. tt0889573,gkEsrZpCdOo,"When Sebastian comes down with a case of lice, Wally is the man to the rescue." tt0159365,9nrVYO6LU6I,Inman and Ada exchange vows in an informal wedding ceremony. tt0159365,aEpa21af2j4,Inman faces off against Bosie and Ada sees her horrible premonition come true. tt0159365,TY513V0RMgw,Ada and Ruby celebrate Easter with their family at Black Cove Farm. tt0227538,AHHH770W4Wk,Ingrid tells Carmen the story of her wedding day. tt0227538,i-VeLFEMeko,Carmen and Juni get acquainted with their new gadgets and read about how to become good spies. tt0227538,v2KtG9kFZOI,Carmen and Juni take a jetpack to escape Floop's castle and the Thumb Thumbs. tt0299658,jx6Rgn1ioAk,"Free birds Roxie and Velma keep up the pace with their ""Hot Honey Rag"" act." tt0227538,93Z1sPjzz8w,"In the aftermath of their mission to Floop's castle, the Cortez children are called on another mission by Devlin." tt0227538,5lqvuMwYODI,Carmen and Juni steal uncle Machete's spy plane while he sleeps. tt0299658,vhQ4S5ajwDQ,"Amos and Roxie sing the number ""Funny Honey"" after Amos wises up to Roxie's schemes." tt0299658,OxzfUI1wSwU,"Billy Flynn, Roxie and Miss Sunshine sing the number ""We Both Reached For the Gun""." tt0299658,TfxoCicKvCc,"Billy Flynn sings the number ""All I Care About""." tt0116367,q7heVIEyvQ4,"As the gang grabs a seat, Sex Machine makes his own introduction armed with an appendage previously seen in Desperado" tt0217505,aAWIZFqE6L4,Johnny catches Amsterdam up with the gang status in the Five Points since he has been away. tt0117802,lMrKsKQWrl8,Mike leaves a series of increasingly desperate messages on the answering machine of a girl he met that night. tt0117951,cyiC3x6-Kzk,"Renton craps his suppositories down the worst toilet in Scotland, then dives in to retrieve them." tt0117951,N7iMP1tPg7I,Spud ruins breakfast for Gail and her family with his drunken mess from the night before. tt0117802,feeIOZH7wr4,Trent compares Mike to a bear to give him the confidence to go out and get some digits. tt0119217,ifkYHEoe6_k,Skyler recounts a joke to Will's friends. tt0119217,8WsHwXs_aq4,Sean recalls the day of the biggest Red Sox game in history and how he missed it over a girl. tt0119217,xvvx-0G7XHc,"Sean recalls his wife's idiosyncrasies and ""imperfections"" and how they were the things he misses the most." tt0119217,ouppQFx3v-I,Sean lectures Will on life experience and the limitations education has in truly defining oneself. tt0119217,HSfxl1KI6y8,Will dissects Sean's painting before disrespecting his wife. tt0119217,e1DnltskkWk,Will butts in when a yuppie M.I.T. student tries to insult Chuckie. tt0119217,gcZPWkNY6x8,"After winning Skylar's number, Will rubs it in Clark's face." tt0119217,yzb726TP-OM,Will confides in Sean when he discovers he has also been a victim of parental abuse. tt0119217,3i8eIzSeC8w,Chuckie lectures Will on how he is wasting his gift. tt0119217,trxN4ftuxKQ,"Will lashes out at Skylar, who pressures him to tell her he doesn't love her." tt0119217,VcKVgWYkZa4,Will delivers a long monologue on the NSA. tt0109445,C4MVQby0InQ,Dante and Randal discuss the ethics of the destruction of the second Death Star in Return of the Jedi where independent contractors must have lost their lives. tt0109445,DDYj5ChFwbU,Caitlin freaks out when she realizes the man she had sex with in the bathroom was a corpse and not Dante. tt0109445,tp7ss_bTP4Y,"When Dante isn't relieved from his shift, he improvises his scheduled hockey game to take place on the roof of the Quick Stop." tt0109445,3a3zXJ7biqI,Dante and Randel observe the strange behavior of a man searching for the perfect egg. tt0109445,D9khHJTztKk,Randal berates Dante for not ripping into the occasional customer. tt0117802,up7I_0JGTgQ,Mike finally works up the nerve to swing dance with Lorraine. tt0109445,WTw51Ynkn7A,Jay & Silent Bob spend another day hanging out in front of the Quick Stop. tt0358135,Ng7jUTiM21A,John unexpectedly shows up at Beverly's work with a rose and asks her for a slow dance. tt0358135,jXb09CCPFO4,"When John displays a less than enthusiastic amount of attraction to Bobbie as they practice the rhumba, Paulina steps in to show how it is done." tt0358135,NUXt-stAcRw,"Having had his wig ripped off his head, Link becomes emboldened on the dance floor with his partner Bobbie." tt0358135,FaSlQP79M-M,"John and Bobbie compete in the waltz competition, and dance wonderfully." tt0358135,AKMLjQycW0U,"After dance class is over, Paulina gives John a private lesson in ballroom dancing." tt0358135,IIr2CCwrYbU,"At Paulina's going-away party, John arrives in the nick of time for a farewell dance." tt0358135,mZwKEa09xTc,"At dance class, John is surprised to spot a somewhat familiar face. Behind a long black wig and a latin persona it turns out to be Link from work, and he is dancing up a storm." tt0358135,DcaV2VQgea0,"John, Vern, and Chic all hit up the local diner with Bobbie after class to gossip about why they are learning to dance." tt0358135,PWN2ntVDwoU,"John, Chic, and Vern emotionally succumb to the beauty and grace of Paulina on the dance floor." tt0358135,u9A2CYMFfNo,"John attends his first ballroom dance class at Miss Mitzi's, and meets the two other male students, Chic and Vern." tt0358135,d7V9liYn-IA,"At dance class, Paulina teaches John, Chic, and Vern how to perform the waltz." tt0358135,KcHfK9kvnvs,"As has become his nightly routine during his L-ride home, John looks out the window to find Paulina gazing out from Miss Mitzi's Ballroom Dance School." tt0116367,vtjCVRm2DAM,Seth takes out the fierce Satanico Pandemonium vampire while other survivors take out the remaining vamps. tt0116367,QTKNzDn8PzA,Seth tries to reinvigorate Jacob's faith. tt0116367,0x6LPfRGAL8,"The bar erupts in violence when the dancers, musicians and bar tenders turn into vampires feasting off of the flesh of bikers and truckers." tt0110912,S8kPqAV_74M,Butch and Marsellus find themselves in a heap of trouble when Zed and Maynard bring out the Gimp. tt0110912,LBBni_-tMNs,Jules loses his patience with Vincent when he accidentally shoots Marvin in the face. tt0110912,tVRPz6-Tkww,"Butch saves Marsellus from Zed, and Marsellus outlines his plan for revenge." tt0110912,xHO6nBc4YFU,"Butch returns to his apartment to retrieve the gold watch, only to find an unsuspecting Vincent waiting in the bathroom." tt0110912,YFtHjV4c4uw,"Butch dreams of the story Captain Koons told him as a young boy about his family heirloom, a gold watch." tt0110912,ZOoJoTAXDPk,Vincent and Lance give Mia a shot of adrenaline to the heart to save her from an overdose. tt0110912,x2WK_eWihdU,Jules interrogates Brett and recites his favorite passage from the Bible. tt0110912,PvMxbRCBalk,Pumpkin and Honey Bunny make an impulsive decision to rob a coffee shop. tt0401792,rp4nf7xR9Uk,Hartigan says goodbye to Nancy - forever. tt0401792,BahUC3EFWXA,Hartigan saves Nancy from Yellow Bastard. tt0110912,jYID_csTvos,Mia Wallace convinces Vincent Vega to twist with her on the dance floor. tt0401792,ppWi_bhS2eQ,Yellow Bastard takes Nancy and leaves Hartigan hanging. tt0401792,KrDck8ocFu0,"Hartigan is reunited with little Nancy, who has really grown up." tt0401792,mdcXOlUMfq0,Dwight takes an unnerving ride with the corpse of Jackie Boy in this scene directed by Quentin Tarantino tt0401792,6mBFhNSqBk8,Dwight lures the mercenaries into a deathtrap in Old Town. tt0401792,RwyLbX4uOS0,Jackie Boy finds himself in over his head with the sword-wielding prostitute Miho. tt0401792,9BOOv6NNnP0,Dwight defends Shellie from her abusive ex-boyfriend. tt0401792,6G6Z60EPieA,Marv fights the cannibal Kevin and feeds him to the wolf. tt0401792,cwJFMjOz_l0,Marv finishes off the twisted Cardinal Roark. tt0378194,jKXg2eMaNXU,Vol. 2 - Bill explains why he treated The Bride so badly. tt0378194,NL7nLSSSWjw,Vol. 2 - The Bride surprises Bill by using Pai Mei's secret technique on him. tt0378194,I_cEoK1mXms,Vol. 2 - Bill explains to The Bride his theory about alter egos. tt0378194,9-qk52E7zj8,"Vol. 2 - The Bride finally reaches Bill, but realizes that her daughter is alive." tt0378194,fCbf4DjlHuM,"Vol. 2 - The Bride meets Kung Fu Master Pai Mei, who repeatedly insults her." tt0378194,TrZuYfti-pE,Vol. 2 - The Bride and Elle Driver have a knock-down drag-out fight in Budd's trailer. tt0266697,fWqnZTTRkm4,The Bride goes an a roaring rampage of revenge at the House of Blue Leaves and gets bloody satisfaction. tt0378194,JnXi3SVJXbM,Vol. 2 - The Bride uses punching technique learned from Pai Mei to escape being buried alive. tt0266697,uGsWYV2bWAc,"The Bride takes on O-Ren Ishii's mace-wielding henchwoman, Gogo Yubari." tt0266697,rIr6rEndy0A,The Bride asks the notorious Hattori Hanzo to give her a sword to kill Bill. tt0266697,OLvz5E61UNs,O-Ren Ishii disciplines one of her headstrong bosses. tt0266697,KQM0klOXck8,O-Ren Ishii takes bloody revenge for her parent's murders. tt0266697,2sJx9qbjetg,The Bride wakes from a coma and kills the wicked orderly who took advantage of her. tt0266697,_Mk_f75TS1A,The Bride aka Black Mamba revenge on Vernita Green is witnessed by her young daughter. tt0266697,kgRlzeYc1nk,"The Bride says hello to an old friend, Black Mamba style." tt0116367,V8K5d3pEUl8,Tension rises as the Gecko brothers try to keep things cool when Texas Ranger Earl McGraw enters the convenience store. tt1091722,kGViaTOfSow,Time stops at Adventureland as all the guys stop to ogle Lisa P. tt1091722,TEmvPX06cJo,James decks a disgruntled customer who starts to cause trouble when he catches on to the carnival's scam. tt1091722,zV0rK6KXfwU,"James and Em catch up and finally have, as James would call it, intercourse." tt0378194,l4L9Yi-lXbo,Vol. 2 - Bill warns his brother Budd about the vengeful bride. tt0401792,MnMZeDmfgmU,Marv is interrogated by Goldie's sister. tt0378194,ETTsJggQl3I,Vol. 2 - Master Pai Mei is not impressed with The Bride's kung fu. tt0401792,sNom4k5Pwb8,Marv escapes from the cops and vows revenge for his sweet Goldie. tt0378194,RWwGXIjxbnI,Vol. 2 - The Bride fights Elle Driver and removes her other eye. tt0266697,EajaioMj-NA,The Bride faces off against O-Ren Ishii. tt0266697,W6bT7Y-WfoY,The Bride arrives at the House of Blue Leaves and confronts O-Ren Ishii. tt0378194,QsaG8rJGlyQ,"Vol. 2 - Budd is killed by Elle Driver and her ""friend.""" tt1091722,r1S-yBBZsDI,"Bobby and Paulette notice that James is high while announcing the derby game, so Bobby takes over." tt0266697,jYrKqg2TqUo,The Bride finally gets her revenge on O-Ren Ishii. tt1091722,-nX_jQxWFN4,The Adventureland gang hangs out after work; James is ecstatic to receive a ride offer from Em. tt0116367,KqAIrFLuymo,"The survivors use their blessed weapons to horde off the vampire, while Sex Machine transforms into a menacing rat-like creature." tt0116367,GG4VDjXtt7Q,Frost has a Vietnam flashback while Sex Machine turns into a vampire. tt0116367,YbcfcgX2U3g,THe survivors of a vampire attack discuss their enemy and how to deal with it. tt0217505,ADmX9eMEV9U,"The Natives, led by Bill the Butcher, come out of the woodwork and line up for combat against the Dead Rabbits and other foreign gangs." tt0217505,Ij79LQXZDEk,The Natives battle the Irish gangs at the Five Points as young Amsterdam watches the bloodshed. tt0217505,2_YvzQoCG68,"The Irish gang suits up and takes Communion, with Priest Vallon leading the charge against the Natives." tt0217505,ns-qtoxnAS8,The ploy of American immigration during the Civil War is augmented in this single take showcasing the disturbing circle of an Irish immigrant seeking a better life in America. tt0217505,UdhxL9r9hkg,"After Amsterdam saves Bill's life, Bill confides in him with the story of his relationship to Amsterdam's father, the most honorable man he'd ever known." tt0217505,jn8SVc374U0,The battle between Amsterdam is thwarted when the draft riots destroy the Five Points. tt0217505,GQy5xztHVPQ,Amsterdam's plan to assassinate Bill on the anniversary of his father's death goes horribly wrong. tt0378194,EEjI0A9iMow,Vol. 2 - The Bride is challenged by Master Pai Mei to punch through a block of wood. tt0217505,lDRzG3mH-DQ,Happy Jack attempts to knock off Amsterdam before the Dead Rabbits grow too strong. tt0266697,dmL4e3jljy4,The Bride faces off against the leader of the Crazy 88s. tt0217505,-TPRG6Yqzf4,A fight ensues when McGloin calls Amsterdam a word he doesn't understand. tt0217505,39mBogAVAQc,"When a pelt is found hanging in the five points, Bill intimidates Happy Jack to put down the Dead Rabbits." tt0110912,MWkN3akP3cU,Vincent and Mia share a five dollar milkshake and an uncomfortable silence at Jack Rabbit Slim's. tt0116367,c9FCOAEPHHM,"The Gecko brothers and their hostages arrive at the checkpoint, a low-down dirty Mexican biker/trucker bar called the Titty Twister." tt0299658,YW3MIixEps4,"Billy Flynn sings the number ""Razzle Dazzle""." tt0299658,wtMDZyMGKe0,"Attempting to win a new partner, Velma sings the number ""I Can't Do it Alone""." tt0299658,TYmMagkfjfI,"Velma and the murderers row convicts sing the number ""Cell Block Tango""." tt0299658,yy6j2LUyh24,"Mama Morton sings the number When You're Good to Mama"" when Roxie enters prison life." tt1091722,-xTty5scUwM,"James confesses to Em that despite being in several relationships throughout college, he is still a virgin." tt1091722,JXEpQzze8Wo,"Pete doesn't get the hint when Lisa P. turns him down, so she asks James out right in front of him." tt1091722,rMWZUV287WA,James gets a little excited by Em in the pool; Frigo catches on and announces it to the entire party. tt0299658,1c8XLJ9MEhk,Billy Flynn dances around Velma in the courtroom. tt0299658,ZoAlJJb4aYM,"Roxie sings the number ""Roxie""." tt0299658,HVyg4MchBYM,"Velma sings her final number All That Jazz"" while Roxie brings home a guest." tt0299658,OToWh3nrWn8,"When he realizes that he couldn't be the father to his wife's child, Amos sings the number ""Mister Cellophane""." tt0889573,ZFofgS_iQ0Q,"At Kassie's insemination party, Debbie presents Wally with the baster to be used for doing the deed." tt0889573,pgET7AHDk6Q,"It's Sebastian's birthday, but he won't blow out the candles until someone adopts Doug, a three-legged dog." tt0889573,obxWLczHe0c,"Kassie forgives Wally, and he asks for her hand in marriage." tt0889573,4cAxmhotNbI,"Cutting off Roland's marriage proposal to Kassie, Wally announces that he switched the sperm sample years ago, and that makes him Sebastian's natural father." tt0889573,dxqJ_k_uw5k,"Wally and Sebastian spend a day bonding together at the aquarium discussing topics such as how to deal with the school bully, Parkinson's disease, and hypochondria." tt0889573,zMgKNI5A9ps,"With Leonard counseling him along, Wally comes to the stunning realization that he might have switched the sperm sample." tt0889573,5gkiHLA4ZuY,"When Wally meets Sebastian for the first time, he is stunned at the kid's strong opinions on feasting on duck." tt0889573,nr8nHHg80CM,"A highly intoxicated Wally pours Roland's sperm sample down the sink, and replaces it with his own sample." tt0452623,CTwZmJronis,Bressant questions Helene about her drug contacts in order to find a lead to save her little girl. tt0889573,SDRcCeWRVRA,"When Kassie and Wally meet up for lunch, she informs him that she'd like to have a baby by artificial insemination." tt0452623,_2iIyoxqN54,Bressant explains how sometimes you have to break the law to do what's right. tt0452623,MrboCh44XGI,"As Lionel explains his feelings about his sister, an armed robber threatens his life." tt0452623,yEQtrdTpJFU,The ransom switch for Amanda turns into a shootout and something big falls into the quarry lake. tt0452623,-TWsZukTS4Q,"When Patrick discovers a murder victim, he takes vengeance into his own hands." tt0452623,X-3TvjRKYPI,Chief Doyle explains why he is so motivated to save little Amanda. tt0452623,8V2XD5XS9Ys,Patrick tries to find out where Cheese is hiding the little girl. tt0452623,jJ4zpJxcw4o,Helene regrets messing with drug lord Cheese and asks Patrick to save her little girl. tt0452623,ar5YGIFyEUY,Patrick tries to get any clues at all out of Helene to explain what happened to her little girl. tt0159365,Zx2SsdhKqbk,Ruby teaches Ada how to restore the farm and prepare for winter. tt0452623,uAgvdtpmXBk,Patrick runs into a threatening regular while searching for clues at the local bar. tt0227538,wowXQ9ZrN1w,"As Juni and Carmen infiltrate Floop's castle, they defeat a pack of Thumb Thumbs and get directions from captive Fooglies." tt0227538,jQKx2XTcd_I,"Discovering that they've been tracked to the playground by their robot doppelgangers, Juni and Carmen try to keep the Third Brain safe." tt0227538,6rl0rXHWtbQ,Carmen and Juni fight their robot doppelgangers to get to their parents. tt0227538,TBKiHfVkYCY,Fegan Floop strains to figure out what he needs to add to his show to take it to number one. tt0227538,qFL0bfzriR0,"As Juni watches the bizarre children's show Floops Fooglies"" on the way to school, Gregorio sees a resemblance between the missing spy Donnagon and the new Fooglie named Donnamight." tt0159365,hFJlpOjXf9s,Inman and Ada reunite on the snowy trails of Cold Mountain. tt0159365,xG7kLQh4Qn8,Inman rescues Sara and her baby from some marauding soldiers. tt0159365,oeCRY2mdih8,Reverend Veasey finds a saw that comes in handy when Junior needs help removing a dead animal from a creek. tt0159365,darXVyyQUlc,Sara asks Inman to lie with her in bed without going any further. tt0159365,UmNPw-PeG8g,Reverend Veasey leads Inman to a ferry crossing maintained by a young girl. tt0159365,jmpuAz59EbQ,Ruby arrives to help Ada tend to the farm and its animals. tt0159365,bHTWme5Ks9g,Ada gives a book and her photograph to Inman as he prepares to leave for war. tt0159365,t7OQIn7Yuvc,"Inman reads a letter from Ada, unaware that an attack is imminent." tt1225822,p8xEvj1w23g,An extremely awkward moment arises for Joel when the girl he's been trying to call turns out to be Cindy – the girlfriend of tough guy Willie. tt1225822,NXXS-UOKbao,"Joel comes home early from work, only to find that Brad has been continuing to have sex with his wife." tt1225822,y0jPHehx2EQ,Joel hires a male gigolo to seduce his wife. One problem is that Brad seems pretty dumb. tt1225822,d4WJ0CGGXo4,Joel lets on that he knew that Suzie was having an affair with the pool guy. Their argument gets interrupted by nosy neighbor Nathan. tt1225822,YVHzS7B1NbI,Lawyer Joe Adler offers a reparation settlement - he will drop the lawsuit - if he can slam a door on Joel's testicles. tt1225822,SAPvfHqWNFE,"Joel succumbs to peer pressure from Willie and Dean, and takes a massive bong hit leaving him incredibly stoned." tt1225822,w6CQUyyPvAw,"Suzie dumps the pool boy Brad, but he is such a moron that it doesn't register." tt1225822,m2dMEucbXIA,"Despite Joel's best attempt to get home by 8pm so he can have sex with his wife, he just can't seem to avoid Nathan - the always annoying neighbor." tt1225822,Vwd5W0M3ZC4,Dean cannot believe a girl as good looking as Cindy is working at the extract plant. tt1091722,TvTdzkWNq28,Em breaks things off with Connell just as James finds out about their affair. tt1091722,BgDmIxfkPFE,James gets hired and learns the basic rules of Adventureland. tt1091722,kYlPy24WJzU,James' hot date with Lisa P is interrupted by Frigo. tt1091722,ZlGg7QIlGp8,James meets Emily in New York to patch things up. tt0889573,uy3UaHILcig,Leonard tells Wally that his romantic chances with Kassie are gone. tt0889573,L25W_b8Or5Y,Debbie makes fun of Wally's lack of enthusiasm at her birthday party. tt0109445,eD4l8wpbrRI,Silent Bob lays down some lady advice for Dante. tt0117802,KIsAH4rSGNo,Rob gives Mike a pep talk to help him get over his ex-girlfriend. tt0117802,CaAtavKP0-4,Trent and Sue play videogame hockey as Mike waits his turn. tt0117802,ZlEXOzC6vqE,Trent tries to convince Mike that he's popular with the ladies. tt0119217,QCzH42efniU,Gerald and Sean argue the ethics of pushing Will in a direction he may not want to go. tt0117802,dxlbeqeGkQ8,"Trent encourages Mike to double down, sending them to the lower stakes table." tt0109445,7gFoHkkCaRE,"Jay's Russian cousin Olaf sings ""Berserker""." tt0109445,1OQl89ewXvc,Dante has a nervous breakdown when he discovers his girlfriend has given thirty seven blow jobs. tt0109445,3gHqYddtmNU,A passing Chewlies Gum rep riles up a mob against the Quick Stop and their cancer merchant brainwashers. tt0109445,2TTfvxYUBug,"After breaking into a fight and ruining the store, Dante and Randal argue over the delusions of their life." tt0117802,3B4fl7vqi5g,Mike interrupts Trent and Christy to check his messages back home. tt0117802,TscPOjzk0hI,"Rob laments his acting opportunities, while Mike prides himself on not bringing up his ex-girlfriend." tt0117802,WqO6vJTUOkM,"Trent exchanges some vibes with a diner customer, unaware that he's not her object of affection." tt0117802,7RD-I8AOf10,Mike walks Lorraine to her car and they exchange numbers. tt0117802,eAvVe92mi5k,Trent celebrates a successful night out after Mike meets a nice girl and gets her number. tt0477348,0wvJETrNQG8,Llewelyn is chased by a truck out in the desert and then a killer dog in the river. tt0477348,3B_rRmkbA9I,"Chigurh forces a gas station attendant to call ""heads"" or ""tails"" on a coin toss." tt0477348,lkmpm4TeOvE,Carson visits Llewelyn in the hospital and warns him about dealing with Chigurh. tt0477348,dRQtjVzj1bo,Chigurh shoots Carson dead after discussing the nature of existence. tt0477348,GKt6dCi-LJo,Llewelyn narrowly avoids being shot by Chigurh when he jumps into a pickup truck on the street. tt0477348,C-iQldPiH64,Carla Jean is visited by Chigurh and tries to dissuade him from killing her. tt0477348,d1U3MyX0pmE,Uncle Ellis gives an allegorical tale of violence in America to his nephew Sheriff Ed. tt0477348,GH4IhjtaAUQ,Ed recounts a past night's dream involving his father to his wife Loretta. tt0119396,6v6C3lZ9Ic0,"Max comes over to Jackie's to pick up his gun. They have a cup of coffee, and listen to an LP by The Delfonics." tt0117951,Naf_WiEb9Qs,Renton and his mates run from the law and play soccer while he espouses his philosophy on life as a heroin addict. tt0117951,VnAR2qB24yQ,Sick Boy tells Renton his theory of life while they scope out targets in the park. tt0119396,TzatMfqIf3A,Jackie makes the money exchange with Melanie in the department store dressing room. tt0117951,ACkEugMxFvk,Renton spots Diane across the club and falls in love at first sight. tt0117951,b2B7w4Z3uOI,Renton describes the Sick Boy Method of kicking heroin -- cold turkey. tt0117951,BsxYfYCbVC0,Spud goes to his required job interview high on speed and screws it up on purpose. tt0117951,Ci82yWg-9Q0,"When Tommy tries to convince his mates to hike in the great outdoors, Renton responds with a rant about being Scottish." tt0117951,OaSuSnUJm3E,"Locked up in his old bedroom, Renton suffers through a harrowing withdrawal complete with hallucinations of a gravity-defying dead baby." tt0477348,fBqbMZ23n5o,Llewelyn waits with a shotgun in his hotel room for his pursuer to enter. tt0117951,EsRoSsauhss,Tommy recounts a story about Begbie freaking out over a game of pool. tt0119396,Gr6eFXNq5Wc,"Ordell explains the benefits and intricacies of an AK-47 assault rifle to ex-convict Louis, while Melanie brings over some fresh drinks." tt0117951,AwFtpeX3V-g,"Begbie has another freak-out in a pub, jeopardizing the success of their recent drug deal." tt0119396,M-FOqHC-G6Q,"After bailing him out of jail, Ordell pays a visit to Beaumont and convinces him to re-pay the favor, even though it is the middle of the night." tt0119396,3osli3y94I0,"It takes some convincing on Ordell's part, but Beaumont finally acquiesces and gets in the dirty ass trunk of a car." tt0119396,bXy8AgE7jBo,"While trying to locate their car in the shopping mall parking lot, Melanie continues to needle and provoke Louis. His only response is to kill her." tt0119396,N7W2F1GcD-A,Louis and Melanie are ready to catch up after three minutes of screwing. tt0116367,dw7d707e-EI,The entire bar gazes upon the voluptuous Satanico Pandemonium. tt0119396,3e7wbs_xfas,"Sitting in a parked van, Ordell unexpectedly shoots Louis having reached the breaking point of dealing with Louis's incompetence, and half-baked attitude." tt0119396,jj1lH26Ky08,Max and Jackie share a tender kiss before saying goodbye on a bittersweet note. tt0119396,57ge-WVuEY0,Jackie turns the tables on Ordell and makes some demands of her own. tt0110912,IgzFPOMjiC8,The Wolf arrives to help Jules and Vincent clean up a mess. tt0119396,7_ip79SGVLo,"Ray questions Jackie about the botched money exchange, and she shows a vulnerable side for the only time." tt0477348,o9guyPNZglE,Chigurh sets up a car explosion outside a pharmacy in order to rob the store. tt0477348,I42_ESLXfWI,Chigurh is blindsided by a car that runs a red light. tt0116367,xFfUAjUMVY8,"Richie comes back from the dead as a vampire, leaving his brother the responsibility to take care of him." tt0110912,6Pkq_eBHXJ4,Vincent tells Jules about the little differences regarding life in Europe. tt0119396,Fh-7WQr_daM,"When Ordell asks the whereabouts of Melanie, Louis explains that he shot her...twice." tt0203536,QELMO-GsxVA,Ronnie visits movie producer Chad Devroue. tt1334536,rW0sXd9Vl_I,"Sara the relater rushes to the house after the team calls 911, only to be murdered by the spirits." tt1201607,5rEwN8tIRWw,Harry Potter appears in the Great Hall just as Snape asks the Hogwarts students where he is hiding. tt1201607,t15VVQjK16Y,Neville stands his ground as an army of Voldemort's minions race toward the battle at Hogwarts. tt1201607,_eZeYq2r3tM,"Harry, Hermione and Griphook search for a Horcrux inside a vault at Gringott's Wizarding Bank." tt1201607,FK-mY_mZAzs,Harry Potter asks Mr. Ollivander about the Deathly Hallows and wants to know if they truly exist. tt1201607,cacjl7UwuVU,Harry tells Ron and Hermione that he has seen into Voldemort's head and has learned that the there is another Horcrux at Hogwarts. tt1201607,P57Z6LOoh_k,Ron and Hermione return to the Chamber of Secrets to get a Basilisk fang and destroy a Horcrux. tt1201607,rhTGE6TQdSc,"After years of fighting, Harry Potter comes to Voldemort to meet his death." tt1201607,n3SrAOdy-tE,Draco Malfoy ambushes Harry Potter in the Room of Requirement and demands his wand back. Harry refuses and asks Draco why he lied to Bellatrix. tt1201607,bWr67LK9-Uo,"Ron, Harry and Hermione are pursued by a Fiend Fire spell that is engulfing the Room of Requirement." tt1570728,Dk0roE34zLw,Jacob literally begins from the bottom up with his makeover of Cal. tt0409847,h52b1cHKeJg,Aliens attack the town and take Maria up into their spacecraft while Doc watches helplessly. tt0409847,9IzZsjED07A,"When Ella is abducted by an alien speeder, Jake Lonergan goes in hot pursuit." tt0409847,29NsPLHISNE,Jake Lonergan defends himself against Sheriff Taggart and his men. tt0409847,rQVDhPVyU-o,Colonel Dolarhyde and the town of Absolution face an overwhelming alien attack. tt1570728,eq3-F_738gA,"Jacob scolds Cal for wallowing in self pity and offers to help him ""rediscover his manhood.""" tt0409847,RaDlQYFo7eU,"When a wounded alien escapes from the town after the raid, Colonel Dolarhyde confronts Jake Lonergan." tt1570728,wALbxbEBLU0,Cal's boss makes light of Cal's divorce when he compares it to having cancer. tt1570728,sdc5bkFd2X4,"Jacob Miyagi's"" Cal by proving that he's taught him how to pick up women." tt1570728,pVjh7-4ux7g,Cal expresses his regrets to Emily. tt1570728,dtwfZd9KGpo,"Cal gives Robbie a father-son talk about not giving up on the girl you love, but gets called out for not heeding his own advice." tt1570728,4xLmxgd-AYs,Jacob hits on Hannah only to be rejected. tt1570728,5e9vyyrP4Zs,Hannah gives Jacob a run-down of how the night is going to go. tt1570728,dQoqvTs4lvg,"Cal fools around with Kate, who is delighted with his honesty." tt1226753,MBjVMydv63A,"Rachel asks David why he didn't leave when they escaped the train station, which he answers with a kiss." tt0286947,U2ZOhOknNc8,"Stu is scared straight when he sees police at the bank in the morning, but he and the other robbers get a pleasant surprise." tt1557769,eb6k3SU1T2E,"Mike, back at Charles' apartment to fix his lock, tries to get him to appreciate what he has with Margo." tt1226753,qlrpmMPkRUM,Rachel breaks into an office building to obtain some information. tt1265621,m1DIBnkwrp0,Leo awkwardly asks Lindsey if he can kiss her. His romantic clumsiness pays off in a brief make-out session in the parking lot. tt1226753,lj59KyjwK3c,David and Rachel take out the guards as they escape the train station. tt1226753,5OMaEgJv-KE,"Stefan orders Rachel to take down Vogel, a Nazi war criminal they were supposed to take out 30 years earlier." tt0377808,UCskICK1t1Q,"Prehistoric eggs drop down on 15th Century England, where hatched dragons unleash havoc." tt0203536,qowk8kRtc8M,August purchases a new firearm from an annoying gun salesman. tt1265621,aAtrw4G6Ino,Dr. Zulkowski meets quantum theorists Trish and Tom. They are quite an eccentric pair when it comes to their requests. tt1265621,tGzM5IFK964,President Scott addresses the nation on the impending apocalypse. tt1265621,kVH74eYVAus,"As Ben lays on his death bed, Trish and Dr. Zulkowski watch the missile launch which ultimately reverses the time-space continuum and stops the oncoming apocalypse." tt1265621,xDkGfxCKMKA,"In a superhuman feat of strength, helped out by the loss of gravity, Ben and Leo are able to rescue a woman by picking up a car and tossing it yonder." tt1265621,uVZLcXAc5aY,"Terry saves the day at NASA headquarters by correcting the scientists on their calculations of fusion, not fission." tt1265621,lohIAbjwCBE,"Leo and Lindsey outrun an approaching tornado. Meanwhile, New York City gets hit by a super-sized tsunami." tt0377808,9nhbb-EhMYg,"After defeating a dragon with a ballista, the survivors discover they have been ambushed by half a dozen more dragons." tt0377808,xdXKP_4pbhM,The survivors take down the final dragon. tt0377808,tKOX13gKlf8,Dragons attack the King's battalion when the creatures discover they have one of their eggs. tt0377808,lIpUIAl6ltw,The King's surviving force uses a giant ballista to take down their first dragon. tt0377808,pwr6OtkCTiw,King Fastrad warns King Wednesbury of the likelihood of an impending Dragon attack. tt0377808,ndV1BsZ1q88,"The King's men run into Silas, a huntsman who flanks the group in the woods." tt0377808,kPVaohv2-ZI,Silas interrupts Medina while she is preparing for a bath. tt0377808,TeL-XU97qyY,Obnoxious teens are murdered by dragons awaiting them in a cave. tt0377808,ZPKEtczECDk,A Messanger brings grave news to King Fastrad concerning the fortress. tt0203536,Nr1FMis9MiQ,"Moments before taking a contract with Avi, Ronnie has a childhood flash." tt0203536,3Z2NklQONgc,August makes a deal with Ronnie which he believes will maintain their friendship without breaching his contract to take Ronnie out. tt0203536,PSd562J8ZFU,Ronnie meets August in a movie theater during an unsuccessful robbery. tt0203536,wYBcBpFZYF8,August attempts to stop a Mexican standoff by talking to Avi on the phone. tt0203536,6zAcU68P0GM,Marie and Donnie make small talk about Van Halen before taking out their target. tt1265621,6PJ5GsyOt7M,"Trish gives an update to the heads of NASA, namely that they, and the U.S., are 100% screwed in avoiding the oncoming natural apocalypse." tt0203536,vlynd7r6pLU,Ronnie lectures August on professionalism after his first contract. tt1133995,PLOMwlZsSYM,Wolf's squad is ambushed in the streets of Iraq where they lose one of their own. tt0815230,2LuJ9QU-6X8,"Brian confronts his old high school nemesis with the intent to kill him, but when he gets his chance, Brian breaks down when hears the voice of God... or, at the least the voice of a televangelist." tt0203536,smNgpBRjuFs,August tells his doppelganger story to Roy. tt1406157,KYQjUOjBx0A,Matsumura defends himself from a seemingly endless stream of attackers as Kei watches with admiration. tt1265621,syi46NOW2Fo,"Terry, an autistic savant, is eerily close to resembling Dustin Hoffman in Rain Man when he talks with his brother Ben." tt0118652,Zur7hoLFsrw,"Trevor confronts Amy and while she admits to being an actress, she also reveals her true feelings for him." tt1265621,Iip4iU0wuAU,Ben and Leo spot a huge migration of birds which foreshadows the impending apocalyptic doom. tt0118652,E3bgtIIw9JM,"Douglas, possessed by Faith, chases Trevor through the house until Trevor gains the upper hand." tt0118652,kpsUc7HBCoQ,Douglas and Trevor examine the trunk in the attic just as Liz is being murdered. tt0118652,PNzvucMz1t0,"Faith helps Trevor to remember how he found the book of black magic in their new house, in an attempt to get him to reveal the book's current location." tt0286947,JL9cenVTdOk,"The employees all pass on their promotion after the bank is robbed, while Max enjoys the high life as a mildly wealthy man at a fast food restaurant." tt1557769,FNdcZckBm2Y,Margo and Mike act as if they don't know each other when she shows up at Charles's apartment. tt0118652,cz4XgiXhVOo,Douglas explains to Trevor his conspiracy theory and reveals how he ended up in psychiatric care. tt0118652,_U4T80Jv9h4,Trevor adjusts to his new surroundings by chatting with Douglas and Amy. tt0286947,K3xHM2hrV6U,Sheila copies Rick's vault key while Stu and Max steel money from his teller's drawer. tt0815230,3z0t0O6ZIPs,"In trying to rescue her husband, Tonya accidentally kills their obnoxious neighbor, Otis with a frying pan." tt0118652,U9bgSiDUqtg,"Leventhal is readmitted to the mental hospital, and Dr. Coffee is mistaken for a fellow patient." tt0118652,DqpPwu8MQ2E,Trevor transfers to a halfway house for mental patients run by Dr. Thalama. tt1133995,Cr313z3sY6k,Wolf confronts the man who set him up and ruined his life. tt1133995,BU6P24jMDLw,"Continuing their search for the elusive terrorist leader, codenamed Ace of Spades"", Wolf realizes that capturing the terrorist leader is not the primary objective after all..." tt1133995,ytTswOdw54k,"Cornered by a pair of federal agents in a convenience store, Wolf gets some back-up in the form of a shotgun-weilding clerk named Mac." tt1133995,Rdp3LSS_czA,Sgt. Mitchell lightens the mood by telling his men a joke about dying and going to Heaven. tt1133995,sWTHIrA5L1o,"Wolf discovers the whereabouts of the fugitive terrorist known as the ""Ace of Spades"", who is now an invalid. The terrorist mastermind tells Wolf about the twisted reasons why the United States has engaged in endless war." tt1133995,HuYvFH-he5Y,Wolf brutally interrogates a would-be assassin as to his motives and mission. tt1406157,D_-VW2paVeA,Matsumura and Kei work together to defeat Kenga when he pulls out a gun. tt1406157,KlNmtsP9OHQ,Kei finds a worthy opponent in a one-on-one fight in the schoolyard. tt1406157,vQWF7zqozSI,Kei takes on the female members of The Destroyers in an attempt to infiltrate their gang. tt0815230,qJodFL7bxXg,"In his attempt to end Tonya's murder spree, Brian engages in mortal combat with his wife." tt0815230,dHLDknvGAn0,"After promising Brian that she won't kill anymore, Tonya breaks her word and continues a clandestine, city-wide killing spree." tt0815230,WcRpuNfGtXw,"After putting up with a racist's rants in a restaurant, Brian and Tonya run into him again in the parking lot -- literally." tt0815230,Xyd6zzq97LY,"When a suspicious detective confronts Brian and Tonya about a series of missing persons cases, Tonya takes matters into her own hands." tt0815230,nVkMrqrZKmc,"After getting a few kills under their belt, Tonya and Brian discover that wanton murder is just the shot in the arm that their relationship needs." tt0286947,d6mZ4guAJK8,Shmally gets aggravated while watching Charles Merchant on an infomercial. tt0815230,qntho2Y9bLk,"Brian decides that its high-time his boss, Mr. Haney, gets fired." tt0815230,GxKkfTq41zc,"After seducing a sexist pig into being handcuffed in bed, Tonya lures him into a deadly trap." tt0286947,C4o-zcihGN4,Doleman goes through a series of job interviews while Shmally continues to fantasize during work. tt0286947,BnZTj4nADDM,"As Doleman is interviewed for a job at the bank, Stu and Max put their stolen loot all in on black while Sheila and Woods rob what's left at the bank." tt0286947,C5-RnOKEZ-4,Woods has an epiphany when he gets a fifty-five cent raise at work. tt0286947,-2kcu-IpfoY,Woods gets in a jam with a mutt while Charles scorns a Girl Scout selling cookies. tt0286947,wfbdNtfo7NA,"After Rick dumps Sheila, she takes out her frustrations on a fireman with hiccups." tt1557769,rx4BjUnPGss,Margo visits Mike at his work release facility to ask him out on a date. tt1557769,oGKr8bdx_5E,"Margo returns the van just in time, and requests that Mike help her with another job." tt1557769,_kz7e2_Gxoc,"Mike is faced with having to tell his supervisor that he ""lost"" the company van." tt1557769,ReAGCpATawk,Margo and Mike share a kiss while hanging out back at her place. tt1557769,rRGfnT_LUBQ,Mike tries to strike up a conversation with a guarded Charles. tt1557769,wuw6lFV1rRs,Margo freaks out when she suspects her boyfriend is cheating on her. tt1557769,6y0Uh3qzK-g,Mike gets Charles to open up a little bit. tt1557769,imnkiyOsu_g,Margo tries to convince Mike to go into the restaurant where her boyfriend is eating to find out if he's cheating on her. tt1499658,d76CwsWbV2E,"Bobby orders Kurt to ""fire the fat people"" in the office." tt1622979,NOMdMmQWgjQ,Bludworth gives the survivors of the bridge collapse a parting warning. tt1622979,-hqNz9Ve-Hs,Agent Block tries to understand the pattern of deaths surrounding the survivors of the bridge collapse. tt1622979,e8i7WCXqJ94,The familiar Coroner warns the survivors of the bridge collapse. tt0420740,ZxkxWhiTQnc,"At the insurance office, Isold walks-off disappointedly with a $1500 check from Abe after he discloses the deception within the insurance claim. However, both sides are knowingly guilty of deception." tt0445946,PAxy4zrKs-Y,"Frank, Ray, and Chris climb down a cliff in a storm; Chris nearly falls." tt0420740,VwYovLPAX0E,A grief-stricken Mrs. Rodriguez is deceived and manipulated into accepting a smaller-than-expected insurance claim by the slimy insurance investigator Frank. tt0420740,_z7q7HzR9G4,"Following Frederick's death, Isold receives an insurance payout check of one million dollars from Frank. She remembers Abe as she sings a lullaby to her son." tt0420740,AyNEyYnJ_ds,"Abe informs Frederick that he switched the names on the insurance policy. Facing no options, and with a gun pointed to his head, Fred takes Abe on a joyride that can lead to only one end." tt0445946,NHoU-7e_tw0,Ray probes Frank about his profession. tt0420740,lWSPwOvJSNs,"After a car accident, insurance investigator Abe Holt gives a deceptive and intimidating speech to the passengers of the public bus." tt0445946,KwmiEuEoY6o,"Ray and Chris save two men floating down the river, but soon realize they've stumbled upon a tense situation." tt0420740,w42uRnJwoIc,Isold has a flashback to a dangerous car accident insurance con that was led by her brother Kelvin. tt0420740,DiCQwUtulqs,"At the coroner, Abe explains in graphic detail the process of a human being burning to death as an intimidation tactic to get Isold to confess." tt0445946,dS260nXz5d8,"The Keenes get to know Frank, and learn what he does for a living." tt0445946,TiupPnshH-o,"The police force gets acquainted with the FBI agents, who belittle and intimidate them." tt0420740,d51kNuh6K-U,"Abe and Isold share a quiet, tender moment." tt0808265,7gdtw-l0GqQ,"Chris, possessed by the evil spirit, disposes of Big Dave and the dog in preparation for a move into Suze." tt0420740,3cmp6g1fbhs,Abe goes to the coroner's to investigate the remains of a burned body. tt0305556,eltUh-VMAKI,My-ik and Du-ug attempt to behead a cow. They are less than successful. tt0445946,TxhfeY6M8lQ,"Frank's men block the road in order to apprehend him, but lose him when his car careens into the river." tt0445946,DEJ_XECWRcs,"Davis fakes an injury so he and his partner can ""eliminate"" the state troopers." tt0858411,1iJNC4ty1Q4,Tina has a strange nightmare involving K-Jay performing oral sex on her. The Road Rascals crew meets the Pleasant Valley Travelling Jamboree. tt0858411,8NzL8n2GEC0,Sheriff Friedman is killed by the maniacs in a deadly barrel roll. tt0305556,2mo6oM4vnWY,Kenny offers some hospitality to My-ik and Du-ug. They toast to Rabirr over a round of Smirnoff Ice. tt0305556,0huG2wHLCGA,My-ik and Du-ug receive their orders to go to Earth to destroy all human life. tt0858411,NYefwzfGRWA,"A promo piece for the reality t.v. show Road Rascals plays as rich sisters, who resemble the Hilton sisters, Tina and Rome Sheraton are introduced." tt0321704,Pnpgz413Wpw,Dirk participates in his first night of the fight circuit where Pike dominates the competition. tt0321704,MsMsnCypMuU,"As Max apprehends the Warden, Dirk fights Pike in the pounding surf." tt0858411,_ZmzCV8muyU,"Mayor Buckman discharges his musket - Confederate-style"" - into a horny Granny Boone." tt0858411,YPmYDxnmGnM,Jerry Schmit loses his head when Harper detonates the dynamite in his mouth. tt0858411,5iKhN22wsmI,"Granny and the Gals perform the breakout hit ""Cannibal Rock.""" tt0858411,1rHtYKAv7Vo,The cannibals feast on body parts and corpses. tt0305556,avB-gC3PO98,"Croker makes his powerful presence know to Mr. Breen in the restaurant, and to Kenny in the kitchen." tt0305556,58uMOyQcvms,"On a double date with Jan and Penny, Du-ug and My-ik show off their dance moves." tt0321704,TFmga8EIQpo,"Baxter welcomes the new inmates to Ogden, and Dirk meets his cellmate Blackjack." tt0321704,8-TDW9Cm3TA,"On their way out of the office, Dirk and Max run into some angry thugs in the parking lot." tt0321704,d1VyT4mI-8g,Reporter Nicole secretly obtains footage of the underground fight club held in the prison yard late at night. tt0309452,yr8bdlI4Moc,"On the search for his brother, Dirk gets spotted at a nightclub and has to fight his way out." tt0363095,PaMAFPMi6cI,Sean lurks in the shadows at a book signing where reporter Katie grills Seger on the timing of his book release. tt0321704,KwsyI7nWrG0,"The fight club spins out of control when Dirk and Pike run off, leaving the guards to fire into the crowd." tt0321704,ArXhfCr-vb8,"Dirk is disturbed by the blood lust of the other inmates, and he accuses Pike of killing his friend." tt0363095,fw_IEdXIuYU,Sean documents every second of his life on videotape nearly ten years after being accused of a series of vicious murders. tt0363095,FIKDkbVveeo,Sean and Katie watch a reconstruction of the murders until Emeric enters to interrogate Sean. tt0363095,t3TniZu-fk8,"Sean watches a videotape, secretly shot by the murder victim, that contradicts his own surveillance footage." tt0363095,MSIAnJPZeaY,Emeric shows Sean the body of Seger and Sean soon realizes he is the prime suspect in the murder. tt0363095,V5Rl2bVxD2o,"When Emeric enters and shoots Sean, Katie kills Emeric and turns the gun on herself." tt0363095,-MG8-wCvzpE,Sean holds Seger at knifepoint and realizes that Seger knows he is innocent. tt0233657,GNw7aQdAfcA,Mason is introduced to Dr. Czaban before getting a glimpse at the huge monolith. tt0363095,eQhNOc_Bo78,Seger reveals to Katie that her father killed her mother and sisters. tt0233657,kqEj45pk6aE,Mason discovers the healing power of the monolith from Dr. Holt. tt0233657,cHJd_bAK9C0,Allen Lysander leads an official research investigation on the mysterious rock hovering over Buton. tt0233657,kJ8_sMrSxns,Mason and the team use the alignment of the solar system to open the door to the monolith. tt1328910,KBfD-4BCMR0,"Tinkerbell tries to enlist the help of her ex-beau named Bobby Dupree. When her charm fails, Lady uses a little more forceful method." tt0233657,_cYlrtZSG-c,The team discuss the possible purpose of the torus in the form of re-terraforming. tt1328910,Wuwev3p4rKs,"Lady and the girls prep for battle, while Dusty warns Elliot of the upcoming reckoning." tt0374286,r4IlzPnP7ew,Ferguson discovers the serious implications when the twin torus meet each other. tt1328910,b2IWTMJV2cE,"The girls find themselves in a quandary when there are two Gretchens - one real, and one a robot." tt0374286,YNJflokcnFI,"Mason, Sondra and Tower enter the inner chamber of the Torus and discover the truth." tt0437072,pDzkhDjTY64,James tries to teach Darius the value of being smart over tough but Darius isn't hearing it. tt1633356,f7q5ce9Jwgw,The gang arrives at the beach house for the weekend. tt1633356,CY1lL585Gjk,The boys in the back seat get an unexpected passenger. tt1633356,mbWtLBLt1ro,Jess is attacked by a shark in the lake. tt1633356,qIis4kiGo6Q,Maya must swim for her life when a shark caches her scent in the water. tt1633356,dkCUjz7I36M,Dennis tries to keep Nick from saving Sara. tt1633356,PH5pgpWY1uE,Dennis pushes a girl into the shark infested waters. tt1633356,FPPdbapD_E0,A group of friends are attacked by a shark while wakeboarding. tt1563738,wmFhHU38IhE,"Emma picks up Dexter from the airport in Paris, where she warns him that she has to something to tell him." tt1563738,k6TPsaQRQus,Emma and Dexter catch up on one another's love lives. tt1563738,6-NRVtIrrEs,"Emma confesses to Dexter that she had a crush on him in college, which comes as no surprise to him." tt1563738,qbYHRU551nI,"Dexter tells Emma that he thinks about her, but quickly backs out of the seriousness of the moment." tt1563738,VsLlPXjtnVs,Emma and Dexter finally get formally acquainted. tt1622979,ba-U_sXRFqg,Peter tries to warn Dennis of their impending death. tt1622979,s5D8jf0k_1k,Death attempts to wipe out Olivia while she is getting laser eye surgery. tt0493129,na_Fzn77bBA,"After getting high on some serious weed, Jay and his buds discuss their interpretations of what God would look like." tt0493129,m2Bf7Viheuw,Derrick gets into trouble when his current girlfriend runs into his ex. tt0493129,J8tCOzttKMA,"Partygoers play a game of Truth or Dare, where each member of the opposite sex tries to one-up the competition." tt0493129,H6NlpE8B0b4,Reashaun confides in her friend that she may finally go the distance with her boyfriend. tt1630564,0xW-3QH_WGU,Father Porter says a prayer before the violent reckoning from John against Arment and his henchmen commences in the church. tt0493129,4pVd11CW1qI,Jay and Dude engage in an impromptu rap about their awesome genitals and stuff. tt1630564,KxMHqnKgF7w,John takes a no prisoner approach to finding the missing girl when he kills Rook and Jade. tt1630564,PCNdV_Du58c,"John hits up a dance club, but instead of dancing, he shows off his moves with a gun." tt1630564,LEwJNM-Oj7s,"Before Mike can get to safety, he is visited by Jade and her henchmen." tt1630564,2Gd39qysshg,John is tough and cool under pressure as he waits for the bad guys to drive right at him before he blows them away with his gun. tt1630564,1DA-nWsGNTk,"Talking to Father Porter, John realizes that the Virgin Mary statue is made of heroin." tt1630564,2x7aG-JRlCE,John laces up his ice skates to catch the criminal Chan after a hockey game. tt1630564,IfJuol_Q-jw,"While lighting a candle at church, John shares a swig from his flask with Father Porter." tt1266121,ortccjAUofU,Van Helsing and company succeed in sending Lilith back to the pit of hell. tt1266121,zip5M8y42fk,"As Lilth the vampire is about to regain her powers and assert her supremacy, Van Helsing and the vampires square off." tt1334536,9d6eWkYfjsk,"The survivors escape the house, only to be killed off by a possessed Tom one by one." tt0312640,LFwCy1HuMCY,"Carver turns the tables against the Dragon, setting it on fire so the remaining fighter jets can use their heat-seeking missiles to blast the creature out of the sky." tt0312640,ZiyuOaPD0eM,"The Air Force scrambles fighter jets to take out the Dragon, but the beast makes haste as it takes out a pair of mechanized birds." tt1334536,89PPmxL-EVE,"Quentin, unaware of the hauntings, attempts to get the hanging key only to be impaled by its branches." tt1266121,fn58yij7rxw,Von Griem and the vampires track down Van Helsing and friends in a cemetery to battle over the amulet. tt1266121,UUiiyiX_STo,Alex saves Bayne from a vampire. Van Helsing tortures the captured vampire by giving her a slow blood transfusion. tt0312640,VlS-HHdayMU,The Dragon chases down Carver's helicopter as they escape the lab. Dr. Drakovitch falls to his death after the Dragon hits the helicopter. tt0312640,QEcxsTjlIJ4,"On the run from the Dragon, Carver discovers a slew of dragon-related incriminating evidence in Dr. Drackovitch's room." tt1334536,xdNcrmG6P_Q,"Greg investigates the attic, while Tom becomes hypnotized by the television." tt1266121,zJuMyRu4kkU,Van Helsing and Sadie tell Bayne about the history of Lilith the vampire. tt1266121,TQezxXB6TYc,Alex instructs Bayne on some of the true myths of being a werewolf including the danger of silver bullets and wolvesbayne. tt0312640,G1JAVVZ_fMA,"After obtaining a laptop with critical information, Carver leaves Kevin on his own after Kevin insists on drinking himself into a stupor." tt1334536,S7I9LpgwS1w,"While the team gathers further readings from the house, Heather coughs up a giant hairball." tt1334536,eWjLy8S5uyk,The team investigates the last known spot of Bub while Heather has a psychic disturbance. tt1334536,yHR-TMj88tc,Bub follows an apparition of Heather that leads to his doom. tt1266121,TI5XVZEwtiM,Alex begins Bayne's training to control his aggression and werewolf transformation. tt1334536,Hia2AZPMH2Y,Simon and Greg give the new production assistant Bub a hard time. tt1334536,6EY8a5WbtLM,"In this prologue set in the 50's, two kids slam J.J.'s baseball signed by Babe Ruth into the haunted house." tt0312640,gkEZQDlj6OQ,"After one of the scientists is eaten by the Dragon, Carver must fend off the fire-breathing beast with a shotgun." tt1266121,o9W8bxAxvvg,A wounded Bayne is fixed up by Alex. tt0312640,N9vKzv8jLw8,A sudden catastrophe in the cloning process sends the scientists into a panic and Carver into action. tt1266121,pQEsnpbMwEM,Bayne transforms into a werewolf for the first time. tt1266121,gDymr00KVAg,"When Bayne stops on the side of the road to help a sexy stranded motorist, he gets more than he bargained for when she is attacked by a werewolf." tt1328910,EQP-k2x6Yzo,"Lady takes on the role of a vigilante - driving from town to town, tracking down one android at a time." tt0312640,kBt6bwRR7ls,"As the team of scientists go through the painstaking process of cloning the dragon, Carver questions the ethics involved." tt0312640,rnm2leIC_5I,"In years of yore, a group of knights seal away the Dragon within its lair." tt1328910,MGsGQAu3aNM,"Surrounded at a bar, the gang attempts a getaway from the robot police. Some make it to safety, others don't." tt1328910,3WCcFVnEKh0,"In a biker bar, Lady and the other chicks realize that they are in a shootout with robots." tt1328910,GbLymMUHlXU,Lady gives her credo to the evil mastermind Elliot. Bobby and Gator blast the 1000 unit robot. tt1328910,xs1kML847Ww,"Layla sends a robot to hell by detonating a grenade. Meanwhile, the 1000 unit robot emerges for the first time, posing another obstacle for the biker chicks." tt1328910,ws9--JaXKcg,The female biker gang rampage through the supermarket taking out the robots in style. tt0374286,b0ydPnxtSKY,Mason uses his son as the key for the monolith to ascend back to where it came from. tt0457319,Qv3wA3MJnJk,"As zombies swarm inside the bank, Ski reappears to help out, and Hunter hesitates with deadly consequences." tt1328910,9QIPuX7vf1U,It is hot and heavy when Gator and Layla re-unite. The sexual chemistry between them is still dripping with passion. tt0457319,LPPEPzpSzwM,"When Rich arrives via elevator, relief soon turns to terror as the others realize he's been infected." tt0374286,uC74Ix65Aas,The team parachute onto the Torus after deflating its security perimeter with a rocket. tt0457319,28wFNLwZpAU,"When Malcolm gets bitten by zombies, Hunter and Ski team up to put him down." tt0374286,bqOMJ-Qrg1Q,The team discovers a mysterious floating orb before getting attacked by an unidentified soldier. tt0374286,MteufVA29iQ,Mason greets Captain Tower for the first time in ten years while inspecting the mysterious diamond. tt0374286,2X_LdH71B6I,Doyle increases his fee for killing Mason from the Genesis Coalition. tt0374286,SNdc9-hv8co,Another monolith appears in France ten years after the last one. tt0457319,QwQ7gl5N41I,"Just as Ski negotiates an escape route, zombies descend on the town, killing all the cops gathered outside the bank." tt0374286,xGvLjaA4Zek,The Chinese militia attacks a international space station. tt0457319,JR_yxYYp8NM,Ackson is taken by surprise when Ski and the gang decide to rob the bank one day ahead of schedule. tt0374286,dwIgQqWOKCg,Mason and his son are on the run from cultists who want to eradicate all traces of the alien visitation. tt0233657,F_qsH2om2VI,Dr. Czaban makes a startling confession to Mason regarding her baby. tt0457319,D0Led4y5r3I,Hunter warns Ackson about bloodthirsty creatures that come out at night. tt0457319,b-4JObBlWC0,Ski and his friends approach Hustle for some assistance in acquiring firepower for a bank robbery. tt0233657,-3A2TNWXDXA,The monolith's healing power intervenes in a political argument turned ugly. tt0233657,70ut3wLkQmo,Mason reveals to the team his new cure from ALS. tt0233657,gPbn1uWQywg,The military squad gets attacked by both the Chinese forces and an entity on the Monolith. tt0230512,zWjlFN5hO6I,"Despite Rodney's loyalty and long-lasting love for Camille, she won't commit to a relationship with him." tt0457319,xA57pKdLCbM,Mike and Kelly make the fatal mistake of asking a zombie for directions. tt0233657,2HOwFvWBZ3A,Mason is harassed and threatened by Mexican thieves before a government helicopter chases them away. tt0230512,w4iERLpYmzU,Rodney feels betrayed when his good friend Chris Carter jumps to another radio show that is very similar in tone to 'Rodney on the Roq.' tt0380201,aLVn2GWY-Ec,Reggie calls the police to turn himself in for the murder of Reverend Packer only to be warned of J-Bone's motive to kill him. tt0380201,lJxNtmP2Nas,Alicia puts Reggie on the spot about what he knows about her father's murder. tt0380201,rfYZT8xR1Gs,"J-Bone, Reggie, and Reggie's little brother have a standoff." tt0380201,QN7he2e5qq0,J-Bone tells Reggie what really happened the night the preacher was killed. tt0230512,i27WEap2cLA,Rodney sits down with the filmmakers for an interview at the half-way point to discuss his worries over the film. tt0230512,thG4yP1OdgU,"Rodney visits his family, yet it is bittersweet when they look at family photos and there are few of Rodney displayed." tt0437072,LI-SbYy8hMo,Berwell urges James to change the way he lives now that he's been exposed to the William Lynch papers. tt0437072,dO7tQ5fXGCY,Creeper and Double T proposition James to be the security guard for their prostitution business. tt0437072,q4lM2MGiS20,"Animal reacts to the ""smell of death"" on his hands, reverting back to childhood." tt0437072,PgZp8EEzrJc,"After years in prison, James is welcomed home by his friends and family with a party." tt0437072,dLcQb08EVvI,Kassada arranges for Animal to cage fight another prisoner to the death. tt0437072,UT2YmXPRg6c,"Berwell explains that he arranged for Animal to no longer be preyed upon nor protected by any of the prison gangs, and prompts him to start becoming a real man." tt0492912,uBIAcBKvF28,"Adam begs for Dr. Vick to kill him, unaware that death is no longer possible for him." tt0492912,CJHV8XKftbc,"When Adam tries to escape on foot, Dr. Vick tracks him down on his snowmobile." tt0437072,vm4p1tZAmEw,"Animal confides in Berwell that Malcolm X was the first book he'd ever read, and begins to receive his next lesson about William Lynch." tt0492912,nVwOCEibZu0,"Adam gets shot by a hunter, but the bullet seems to have little effect on Adam's health." tt0437072,Uf0P-Ezxg5Y,"Animal visits Berwell to share the good news about his release, but some vengeful inmates make a deadly interruption." tt0492912,0DTD2i-pMl0,"Adam tracks down the hunter and shoots him, forcing Dr. Vick to admit that Adam is not really contagious." tt0437072,PmoU153vF3U,James and Darius's bitter discussion escalates to a tragic end. tt0492912,4p7hZ2WJXHs,"When Adam collapses in searing pain, he begs Dr. Vick to put him out of his misery." tt0492912,_dE4g2x-Ing,Dr. Vick watches as Adam comes back to life one day after being murdered. tt0492912,LFinvO6-_T0,"Adam tries to intimidate Dr. Vick, but his lack of control over his body undermines the threat." tt0492912,4eLsFtya4Gk,"Dr. Vick questions Adam on the topic of cryonics, and when Adam offers to help with research, Dr. Vick strangles him." tt1294136,U72Ap0dAveE,"Aaron threatens to kill Ethan's daughter, setting off a game-changing turn of events." tt1294136,weUbXakK6Fw,"Helen's conscience kicks in as she tries to save Ethan, who she believes to be innocent, but Aaron isn't willing to give up the fight that easily." tt1294136,meBbBnp3FcA,Aaron takes captive Ethan's ex-wife and daughter when they arrive at his apartment. tt1294136,tHdqS2Vda8Q,Aaron cuts Ethan's eyelid to get him to confess what he knows about the murder of their religious leader. tt1294136,oj0LXmHzUoM,Aaron uses Amy to try to get information out of Ethan. tt1294136,4kQb8kUDq5o,"Aaron tries to squeeze some information about Ethan out of his neighbor, Amy." tt1294136,XeZkZIt0zqA,Ethan tries to break out of the refrigerator his captors trapped him in. tt1294136,hBpNWBQZK4s,Aaron tells a racist joke so Ethan takes it upon himself to tell a redneck joke. tt1294136,K61WsiAs4rE,Ethan is assaulted by intruders. tt0305556,Je8n23QMWkg,"Du-ug is enraptured with Penny's hairy feet, while My-ik is turned on by Jan's uni-brow." tt0445946,lWvb6U-KZds,Frank's men invade the cabin; Ray tries to fight them off. tt0808265,QiymXl8HTlA,"Kathy kisses Tate in a last-ditch effort to save her boyfriend, trapped in the body of The Greek." tt0445946,Sd6LBK8KhuQ,"Ray and Lochlan topple the bridge in order to slow down their pursuers; little do they know that they are no longer on foot, but in the ""rescue"" helicopter." tt0305556,of7ZP6vXAPo,"At the laundromat, it is love at first sight for My-ik and Du-ug when they encounter Jan and Penny...and the ladies' sexy uni-brows." tt0305556,uFPINtBli58,Du-ug falls under the bewitching spell of Sheila and begins worshipping her feet. tt0808265,P8JnW9dWBRo,The evil spirit passes from Chris to Tate when he stabs her with the dagger. tt1499658,bvRS9b2nhh4,The guys wait outside to spy on their target. tt1499658,vKZhOw3Feo4,The guys await the arrival of the hitman they found online. tt1499658,nsQtI33UbGI,Motherfucker Jones coaches the guys on how to murder their bosses without leaving a trail. tt1499658,ARdTVbhhy84,"Nick tries to make a point about his dedication by bringing up his dead grandmother, but Mr. Harken only uses the opportunity to mock him." tt1499658,IToYFpzH0_U,Dr. Harris harasses Dale by squirting his pants on the job. tt0138097,_wAG98wcrYc,"The Queen determines Viola's fate, and Viola makes a visit to Shakespeare." tt0138097,XrxIR2uja8w,"Viola makes a sorrowful goodbye to Shakespeare, leaving him sad, yet inspired as he begins to write Twelfth Night." tt0138097,o_KXbKa2crI,The Queen saves Shakespeare from arrest and Viola from being outed as a woman. tt0138097,827EAYtM6XQ,"When the original Juliet is unable to perform, Viola quickly steps in, having already memorized every word." tt0138097,WfUTDlmLMFk,"Viola is outed as a female, and therefore the theater is ordered to be closed for lewdness." tt0138097,0_avQPM3L90,"The Queen picks at Lord Wessex's manhood as she meets Viola for the first time, and places a bet." tt0138097,ifjmJHoUzc8,Viola's disguise as Thomas is unveiled during a romantic boat ride with Shakespeare. tt0138097,OJZhDHdlk3w,"Shakespeare falls deeper in love with Viola during rehearsal, and as they steal kisses together backstage." tt1270761,qF0CMv413PA,Sally arms herself against the creatures with a gift from her mother. tt1270761,alQVZ9YxUJw,Sally attempts to open an old furnace when she hears whispers coming from it. tt1270761,F3FrLQdbyKk,Alex discovers a door on the other side of the drywall. tt1270761,azYL1oPxMGg,Mr. Harris scares Sally while she is inspecting the bushes in her backyard. tt1270761,6xU4PZNn6RQ,Sally visits her new home for the first time. tt0380201,ZK4Ly7Ij81o,"Lieutenant Hudson is at a loss with the Reverend Packer murder case until, miraculously, an eyewitness graces his office." tt0380201,gfXVOCNMpMQ,"Reggie runs into the preacher's daughter, Alicia, at the mortuary." tt0380201,AhHM_fCLsIY,J-Bone accuses Reggie of being untrustworthy and taunts him with the fact that he killed his father. tt0380201,F3peN7bOfOo,Reggie holds Reverend Packer at gunpoint under J-Bone's instructions. tt0363095,6Bg4HfBsmAU,Seger begs for his life as Katie prepares to frame him and Sean for the murders. tt0363095,0vI6TtIP4t0,Katie forces Sean to have sex with her in order to accuse him of rape. tt0321704,Obf7CnOmBak,Dirk infuriates the Warden by defeating four opponents and refusing to kill them. tt0321704,kEwJ2uBX7sQ,"After Baxter asks Dirk if he's a fighter, Dirk returns to the yard and answers the question." tt0321704,mro3v8ZZA_E,Dirk starts an intense training regimen to prepare to infiltrate the fight circuit at Ogden Correctional Facility. tt0309452,Hfoa97N4-4w,"To free his brother, Dirk must work his way up the ranks of the underground fight club." tt0309452,7GF9Ic-yNcc,"Dirk faces off against Kwan, unaware that his twin brother is waiting to take over." tt0309452,RXvm3oOIG8k,Dirk uses a backhoe to break through the gate of the compound hosting the underground fight club. tt0309452,dujvrGLRTlI,"Dirk makes a date with Nicole, but his excitement is short-lived when three thugs approach him to start a fight." tt0309452,sPdJwBfuEDc,"Lenny trains Dirk to get him back into shape, while Jeremy wins his first fight." tt0309452,eJ6y8TeIeAM,"Dirk continues to train with the techniques given to him by Lenny, who pays for his betrayal." tt0305556,S0IGwZy9_xg,Croker films an infomercial for the exercise device called the Belly Twister. tt0309452,WyW86PD74dA,"When Jeremy gambles away twenty thousand dollars, Vixton offers him a chance to fight to pay off his debt." tt0305556,ROUu-unQieo,"My-ik attempts to launch himself into the atmosphere, but the dynamite just blows up in his face." tt0858411,c1HS49PeMUM,Hucklebilly runs over Tina and Rome Sheraton to the delight of the cannibals. tt0858411,_zlm3MXTK-0,Mayor Buckman and Granny Boone snap a killer photograph of K-Jay. It's electric! tt0858411,Y9ewiC2bykI,"Falcon and Rufus have a moment inspired by Ennis Del Mar and Jack Twist. However, unlike Brokeback Mountain Rufus really does break Falcon's back." tt0339526,5e0cFUGyfzI,Carl tells Jericho about Mortensen's role in the operation. tt0339526,DwDzyVvtR9M,"Jericho finds Jezebel at the train station, where she convinces him to leave for California with her." tt0339526,Tn6y5TARbnQ,Mortensen interrupts Carl and Jericho's game to further complicate the situation. tt0339526,l_4wAj6Kx-k,Bullets fly as the faceoff between Carl and Mortensen continues. tt0339526,h8QQbFolJZI,Jericho and Jezebel get intimate when he goes to her house after getting beat up. tt0445946,OkR9Bp19nKs,Frank is shot at just as Ray is interrogating him about his missing son. tt0808265,yjm6WiV1bBo,Death finally catches up to the spirit inside Tate as the Ferryman arrives to collect his payment. tt0339526,IZ3BR0J5vvw,Mortensen holds Jericho at gunpoint although their deal is over; Jezebel steps in to defend him. tt0808265,7Lsh9PH4cn0,"After being caught with Kathy, Chris turns on Tate until Suze saves the day." tt0489318,A7ZmPaAVJgo,"Suddenly emasculated by his invalid mother, James begs Mickey to kill his mother so he can be free of her psychological tyranny. Instead, Mickey turns the tables on James, bashing the serial killer to death." tt0420740,4X5-zcyQc7U,Abe forces Frederick to give up his son to Isold who will raise him in a much more loving environment. tt0808265,y59dykC47mc,Chris catches a shark and the entire crew is disturbed when they find a human hand inside it. tt0808265,AgbKPzg3rAk,"Suze and Big Dave are disturbed to find Chris, Zane and the dog locked up in a bloody room." tt0808265,NXRbXCIjxR0,"The Greek stabs Zane in the chest, but Kathy is unable to find the wound." tt0808265,EATS70yNA0E,Chris and Zane explore an abandoned boat and find a badly injured man. tt0138524,BxQMT4R51Dk,"On the witness stand, the Baron provides damning testimony about Marylin's motives." tt0113074,usUO449hUXQ,Jackal and his thugs pillage a village. tt1172060,Q-BviNtL0PQ,"Lenore experiences a flashback to the delivery, while Frank gets scratched by the baby." tt1172060,Yzu5yxVl3yQ,"Lenore gives birth, but she and the baby are the only people to survive the delivery." tt1161449,6EP_KsI8k8w,"Krit tracks Patrick down to retrieve the stolen treasure, but Patrick won't give up without a fight." tt1161449,DwrmKYIuYi0,Krit faces off against Gary as Praifa fights Selina. tt1161449,xUllXfNznIY,Krit gathers strength from his necklace and rallies to defeat Patrick once and for all. tt1161449,O0gse4WDTrY,Krit holds his own against three mafia henchmen as Praifa watches from a safe distance. tt1161449,Vr9OaXD19JY,Krit and Praifa wait in the road for a ride until Patrick and his crew appear. tt1161449,juik-nkFIoU,Selina offers to take care of Krit and Praifa by filling their car with lead. tt1161449,6kw3u6O_SxE,Krit gets assaulted by mafia henchmen and chooses to escape instead of fighting them. tt1161449,uaSkuUzEuq4,The theft of the Royal Antiques leads to a fierce battle between the thieves and the palace guard. tt1161449,VwvlEZJMbg0,Kirk defends himself from mafia henchmen after he finds and pawns an ancient Thai vase that is a stolen national treasure. tt1161449,TVfHmkZlp3s,Patrick pulls a double-cross on mafia boss Wisa by planting a bomb in a decoy vase. tt1087524,qhc9YD3ahAs,Liam gets shanked while waiting for a visit from his son. tt1087524,Y1Q93Zi9_kc,Liam gets a visit from his son and his grandson. tt1087524,JUbVxse8ZrQ,Chance ambushes Rath and his men seeking his son. tt1087524,DedlZ0Es_dU,Chance's return to fighting after serving time in prison doesn't go according to plan. tt1087524,sLB6_-ZNR6E,Chance threatens Eddie while Beat gets in an accident with Rath. tt1087524,0woPxIfjVTk,Chance and August visit Aunt Rose for the first time since before his prison sentence. tt1087524,rf5MnH9pG_s,"When Liam discovers fresh wounds on August, he takes action against the boy's father." tt1087524,cbulyV4O3qc,"Chance visits Eddie, an aging bookie hipster friend." tt1087524,n7DQNB_OKZs,Rath loses his temper on a drug raid and murders a suspect in cold blood. tt1087524,QxFgIsrvJR4,Kat walks out on her son when his father returns home from a five year prison sentence. tt0770778,a50LKwRt5CU,"De'Sha coldly informs Taz that he is, and always will be, an agent of Satan." tt0770778,V2j9MRkQE78,"Taz encounters the demon De'Sha, who has taken the form of his deceased father. But De'Sha makes it clear that he's all business and just doesn't give a f***." tt0770778,4xLBhHfpKTU,"After Taz is threatened by a fearful colleague, De'Sha shows up to do some home improvement chores." tt0770778,f0KpM0-h1CI,Norman executes a traitor as his son bears witness. tt0770778,oiYIVQm-qvY,A mysterious man known only as Natas suddenly appears and gives Taz an offer that he can't -- or at least shouldn't -- refuse. tt0770778,AHzW_z8rUyQ,Taz's bizarre dream turns into an weirder reality as a strange demon woman speaks to him. tt0770778,mXEgUS1i_m4,Norman teaches his son a lesson about family values. tt0770778,COsMa1MQIVM,Taz resists De'Sha as the demon tries to coerce him into killing his wife and child. tt0770778,n-WzTlw0scA,The demon De'Sha taunts Taz about the gruesome killings and reveals to him that they are one and the same. tt1172060,yX0WnX27tJw,"Frank captures the baby and holds him at gunpoint, but he's unable to pull the trigger." tt1172060,Bmxi1VgTb-I,"Lenore refuses to return to school, and her friend Marnie becomes her baby's latest victim." tt1172060,X-RU-b4OyuY,"Frank discovers a pile of dead bodies in the basement, while the baby sets his sights on a police officer." tt1172060,QynjN9Nzr7E,"Lenore refuses to be hypnotized by Professor Baldwin, and her baby has a permanent solution to the problem." tt1172060,NCCUGkrIfkQ,"Lenore gets uncomfortable trying to remember her delivery with a therapist, and she finds her baby with a disturbing snack." tt1172060,zqIOu4ki5-Q,"Lenore is thrilled with the baby's room prepared by Frank, but she experiences strange labor pains in the shower." tt0119208,mbGDV3lPib0,Nathan breaks into Avery's house to murder him on behalf of Matt. tt0119208,_yqWh3OBDEE,Plans change when Nathan kills Jason at their meeting place. tt0119208,5dBd4x1yxaU,Matt tells Nathan about his addiction to -- not drugs -- but power. tt0119208,-UEeG5IIQK0,"When Nathan comes to Matt for more work, he receives a far riskier job than he bargained for." tt0119208,uEoCU5cuQA0,Matt tries recruiting Nathan to help him deal drugs. tt0119208,dyVMPRxN0FQ,"Desperate to score some rent money, Nathan robs a house." tt1290400,bwcLwZQGCAE,"Nicholas saves Katrine from the evil clutches of Serik, gunning him down." tt1290400,gywGZDlDv7U,Murdoch's attempt to kill Nicholas by pushing him off the train backfires in a deadly way. tt1290400,nH51jEGD7G8,Nicholas and Katrine find themselves exposed in the middle of a shootout between the multiple participants of the diamond exchange. tt1290400,sSkwCIpxqxU,"Nicholas encounters Katrine, and their chemistry heats up fast." tt1290400,FxCpDJ1ZAo0,Katrine talks to Nicholas one last time explaining her motives for helping him at the risk of her own. tt1290400,NodMkxK5ndw,"Nicholas evades capture at the train station, getting a little help in the process." tt1290400,29vmOrsOjvM,Nicolas evades his Russian pursuer in the forest by knocking him out with a rock to the skull. tt1290400,mYqUdiWcOok,"Digging his own grave in a forest, Nicholas waits for the appropriate opportunity to escape from the Russian henchmen." tt1151928,SakCFLhbAJA,Hart and his colleague give Ms. Fraser the lowdown on what makes Isaac tick and why he's so valuable. tt1290400,tWmPkmMO-mo,"At a cocktail reception, Nicholas swears he recognizes the beautiful Katrine, but she claims he has mistaken her identity." tt1290400,jfVzY0OTW1c,"On the way to deliver a baby, Dr. Pinter has an enchanting run-in with a mysterious, sexy woman." tt1151928,X0NIR5-QiAM,Isaac uses his cybernetic superhuman abilities to find a missing child and return her to safety. tt1151928,BcRIvgk2USU,"Isaac destroys himself and Hart, thus getting the revenge he desires while putting a stop to Hart's nefarious military program." tt1151928,l4srSgqgncU,"Hart reveals his true ruthlessness when he kills Ms. Fraser, who is being held hostage, in cold blood." tt1151928,B64yKhFe5Lw,"When members of his former military unit demand his surrender, Isaac resists with precision violence." tt0476964,B00qOyB7CuE,Bee finds the strength to defeat two equally vicious opponents simultaneously. tt1151928,2bMvW5QUMYk,"Hart orders the slaying of two local police officers in order to maintain project secrecy, while Isaac and Lindsey escape during the carnage." tt1151928,LZo51T6e928,Beck and his men send Isaac and Lindsey crashing into the ravine below. tt1151928,vpJbP-sA1gg,"Captured by Hart's electromagnetic security system, Isaac is about to be killed until Lindsey saves the day." tt0476964,o6bYgD2JDus,Lita appears at the last moment to save Bee and Tong. tt0476964,giXrOAZtjaE,Things turn dangerous for Bee and Tong when their enemies begin to use deadly weapons in an attempt to defeat them. tt1151928,E2kt9XttAzU,"Isaac dispatches the commandos, giving their leader, Beck, an eyeful of trouble." tt0476964,TURTkb6N_FA,Bee and Tong split up to take on countless gang members one-by-one. tt0476964,hBlhWP2N4j4,Bee tracks down Mai at his boat and beats him up in front of his family. tt0476964,Zr0xGlPjTHA,Bee gets chased to the roof by a gang of thugs and realizes there's only one way down. tt0476964,qCpSqCKBM-M,Bee uses his ingenuity and fighting skills to avoid capture by a vicious gang. tt0476964,1JyApnR4o9U,Bee saves his brother Tong from a bomb while suspended in mid-air. tt0476964,ylGIAp_-JK8,Bee evades capture by the police and escapes from an office building undetected. tt0476964,y2t3XqFAjt0,Bee infiltrates the office of a bank by fighting every person on staff. tt0762073,fCXWwJcplg0,"Joy turns to anguish as Noelle, Bryan, and Tyson realize that the watering hole is poisonous." tt0762073,OxhtzzpoYBk,"As Noelle lays down from exhaustion and de-hydration, she spots a truck driving to rescue her, and it begins to rain." tt0762073,-ikc2VldgSU,Noelle wakes-up from a luscious dream with a wolf eyeing her for dinner. tt0762073,ZoFNL5lwimk,Bryan cuts his jugular with a razor so that Noelle can drink his blood. tt0762073,zEdVDymxYQc,Tyson drinks the blood of a rattlesnake as does Bryan. tt0762073,BQ42Z2UGeS4,"Bryan goes off into the darkness to scare off a wolf that is stalking his prey. While doing so, he gets scratched and sucks his own blood." tt0762073,DmBEdpsTwxc,"Refusing to heed Noelle's advice, Tyson eats the cacti." tt0762073,WX_9RZSjar8,Noelle performs a primitive form of brain surgery on Atheria to relieve the pressure of a blood clot using a rock and a screw driver. tt0762073,F6-7c3I_egQ,Noelle lets Bryan know that she's pregnant. tt1406157,zYySG-Bwo1Q,Kei faces off against a fierce competitor as the rest of the Destroyers watch. tt0762073,b6W1FIgCADQ,Tyson crashes the truck when he tries to avoid a wolf in the middle of the road and Atheria gets a concussion. tt1406157,4tKHdEaBlXw,Kei takes on a dojo full of black belts unprepared for her karate skills. tt1406157,kFJm_Gedi7k,Matsumara begs to get his pupil Kei back from the Destroyers as Shurei continually kicks him. tt1406157,WBMHd6mCSP4,"While infiltrating the Destroyers' lair, Matsumura is confronted by Hien." tt1406157,9cTHj9NKHXk,"Matsumura teaches Kei and the other students the basic tenets of karate, the art of self-defense." tt0480271,l6FPyq4wvuA,Davie's Father makes his appearance known to the worst of the survivors. tt0480271,z_udbrboBXk,"Callum gets his ""crazy"" on when he discovers Louise's head on a stick." tt0480271,8-IbFKbycv4,Blue gets impaled with a bear trap after attempting to rape one of the survivors. tt0480271,wgmwBXh6ExI,"The survivors contemplate the meaning of the letter ""D"" painted on Jethro's corpse." tt0480271,VMqDBkf__xo,The camp gets attacked by a mysterious figure with a crossbow and his hounds. tt0480271,136NiOTy4Xo,"The survivors comes across Jethro's mauled corpse, hung to intimidate them." tt0480271,IOXtBc7CJI0,Jethro is attacked while fetching water. tt0480271,mwE7hDBei2g,The team accuses Callum of murder when he discovers the corpse of a poacher. tt0480271,zySQRLbqyng,Jed and his boys discover Louise and her girls also on the island. tt0760188,4wvMWwwCRYU,"When Breuer tells Mathilde that he is leaving her, she mocks his desire for freedom." tt0760188,cSXgqTUqtOY,Nietzsche opens up to Breuer about his loneliness and they acknowledge their friendship. tt0480271,aDwNCyqgVA4,Callum is attacked in the middle of the woods. tt0760188,-Fmvuy-4U_A,Nietzsche encourages Breuer to imagine Bertha as a flatulent infant in an attempt to clear his mind of her. tt0760188,LAvuBfU6iSg,Nietzsche forces Breuer to consider the destructive effect that Bertha has had on his life. tt0760188,rQvp_unbfFM,"Breuer tells Nietzsche about the strange case of Anna O., and the talking cure they created in an attempt to treat her hysteria." tt0760188,2ZhQWROtg58,Nietzsche suffers a crippling migraine while seeing a prostitute and Breuer rushes to his side. tt0760188,8AUEcXu2krY,Breuer has a sexually charged dream featuring his patient Bertha and Salome. tt0760188,5gQUCqEQVLI,"Nietzsche gives a controversial lecture on the death of God, which impresses Salome, but her rejection leads him to despair." tt0489318,jei1Q_fP_Es,James struggles to control his homicidal urges after he notices a pretty nurse riding along in an elevator with him. tt0489318,dEjdEoovBR4,"James kills Mickey's friend and collaborator in order to further take psychological command of their ""working relationship""." tt0489318,H07ghIFjox8,"After learning that his mother has been kidnapped by James, Mickey looses his cool in front of a police officer and implicates himself as a public threat." tt0489318,0u_qMyWIZU4,James plays a practical joke on Mickey. tt0489318,V2Sa7ey52f0,Mickey witnesses a savage murder in an alley and barely escapes with his life. tt0386751,bHSnlMlFC94,Abel intimidates Harry into telling him what happened regarding the death of Gus Pierce. tt0386751,MaRBZ90WDYo,"In the aftermath of his failed investigation, a pensive Able relives the moment when he witnessed his older brother commit suicide." tt0386751,rt8L4_lD-_g,"In a lengthy flashback, the truth of Gus's tragic death is revealed." tt0386751,QpBfwsw4OaE,"After discovering a mysterious powder in her deceased friend's jacket, Carlin realizes its significance when she sees a white rose turn red, right before her eyes..." tt0386751,8QZgJWf5aqg,"Recounting the last night of Gus's life, Carlin reveals that she and Gus had an argument prior to his death." tt0386751,psHsXebbbYo,"After watching his partner, Joey, take a bribe, Abel blows up at him in a wave of anger and disgust." tt0386751,cJBjSpKIRWw,"Abel and his partner Joey discover a dead body under a sheet of ice. As they investigate the scene, Abel suspects that foul play is involved..." tt0386751,6EUxC78eSjk,"Despite her intense attraction to Able, Betsy breaks off the affair for fear of losing her job and her way of life." tt0386751,M--q4JZp5lE,"Betsy visits Able with an update on the photographic evidence, but it's really a pretext to seduce him." tt0455584,a6DTqXLuu_c,Silvia and David race to find the source of the music as tourists begin killing themselves. tt0455584,pvni4Q-Xh7k,"Frank tempts David to kill him, and warns him of mass murder." tt0455584,moiaW_zgh1c,"When David threatens to shoot himself, Frank convinces him to turn the gun on him instead." tt0455584,7VV6BZWittk,"When David realizes that he's been bugged, Jaume tries to remove his implant and is driven to suicide." tt0455584,rsHK7n7hVBQ,"David meets Frank, the man responsible for bringing one of David's stories to life." tt0455584,cgGJhEgDgIU,"When Gloomy Sunday"" plays on the radio, Silvia is driven to attempt suicide again and David must jump into traffic to save her." tt0455584,ea2fcCJ0_u0,"As Silvia prepares to leave Majorca, a sinister man enters her hotel room and paralyzes her with an injection." tt0455584,6cwIlJvjP6k,"Silvia begs for help from David, but he doesn't believe her until another stranger commits suicide." tt0455584,YdF7wSrLk-w,David lets his imagination get away from him on a plane ride with his girlfriend Jane. tt0455584,QuVUH1lm8NY,"David watches a strange DVD found in his hotel room, and Jane apparently jumps to her death." tt0149171,2wCqM6rbeWc,Rick sabotages his date with Heather when he lets his tough guy attitude get the best of him. tt0149171,5L-JTSGZQ4E,Rodney and Mike call Fred out on his lies. tt0149171,F_EJsjP26cI,"Rick tries to comfort the scorned Danielle, but his honesty only makes matters worse." tt0149171,0ynuAmC24_Y,Rick shares with the guys the consequences of being promiscuous and careless with love. tt0149171,O3FndxKOnMA,Tony encourages Danielle to go into Rick's room so he can hook up with her friend. tt0149171,4qW5feZgSM8,"Rick hassles Fred about his hygiene, or rather, lack thereof." tt0149171,qDyiygLEd38,Rick and Heather get to know one another after the party. tt0149171,T8QSGSX7joU,"Rick surprises Heather by singing her ""If I Only Had a Heart.""" tt0149171,OjxvPz5T7YY,"Rick has had it with his friends' selfish, irresponsible attitudes when Tony laughs at the fact that he gave his girlfriend herpes and gonorrhea." tt0149171,pr335ddgcuQ,"After Rick's first date with Heather, Tony pesters him to hook up with a stripper he brought home for him." tt0284491,HzAlqdHBZzs,Marina and Davenport meet after the divine hearing of Manny's soul. tt0284491,o3NneX3NJ-I,Carmen and Lola are caught by one of the managers when trying to escape the store they just robbed. tt0284491,4BXpDgTVN2E,Lola and Carmen are caught after robbing their former employers. tt0284491,gtSXreFMPpc,"Lola confronts Carmen when she finds Manny riled up with self loathing thanks to Carmen's ""encouraging"" words." tt0284491,a8DNOaAifkE,Representatives of Heaven & Hell dine together and discuss the rapid changes in their divine struggle. tt0284491,fGJIFMA09cE,Marina explains the importance in the salvation of Manny's soul to his heavenly representative Lola. tt0284491,8sHaAvi0SJw,Hell's agent Carmen and Heaven's agent Lola find each other battling for the soul of a discouraged boxer Manny. tt0284491,XdUKcQsnS4k,Henry and Nancy brief Davenport on recent matter from Hell. tt0284491,M9JQBS2Km-Y,Carmen and Lola discuss God's relationship to evil and how it is ultimately a divine trilemma. tt0425395,sguNMcMJQv8,Richard comes home to discover that his biological parents have turned his house into a circus. tt0425395,vV3Utpy9vCI,Richard loses his temper when his parents interrupt his interview on the Holly Davis talk show. tt0425395,qskwY84EXkw,Ellen finds Richard beat and emotionally broken when his birth parents leave. tt0425395,1MJg1718M74,Richard tracks down the Menure's when he discovers that they are in fact his true biological parents. tt0425395,qqATa_flYaI,Doug loses his temper during a game of charades. tt0425395,_wfy0wdA2pQ,Frank and Agnes come home early to greet their sons family and friends. tt0425395,CGX5n1pvu5s,Richard gets a giant cheese ball in the groin. tt0425395,QkAHUSwy8Uc,Frank and Agnes explain their family's extensive medical history. tt0425395,MP7SCUB0fWU,Richard meets his biological parents for the first time. tt0425395,fbc0TS1kJ5w,Richard fantasizes what his biological parents are like. tt0416051,eP7VXLIgaIs,"Lance helps his friends serenade the O'Mally widows, and watches how love appears to make them all young again." tt0416051,xP_cM03sHgU,Lance presents his scheme to win Sophia back for Bill. tt0416051,OjZadIbLAIE,"Lance comes on to Sophia in the middle of a touching moment in order to turn her off but, surprisingly, she takes the bait." tt0416051,slW61xrU17E,Karen tells Lance about her real identity and feelings. tt0416051,JIhx0f2y25I,"Lance walks Bill through his plan to make Sophia think he lied about everything, which will make her run back to Bill." tt0416051,vecXbFwYvPQ,Lance is in for a surprise when he finds out he's been duped. tt0416051,BhtHFyjXaXU,Lance surveys the couples on the beach to test whether they're actually in love. tt0358569,iJ7r9jKl1so,A bad Oasis album and the untimely death of Princess Diana contribute to the demise of Britpop. tt0416051,zoFt-5SqUCs,"Sophia spouts off characteristics she likes in a man, and Lance does his jaunty best to embody them." tt0416051,7jj-8TCQTXc,"Using the knowledge that Sophia enjoys street performers, Lance becomes one himself, but finds it more challenging than he expected." tt0358569,vjSMyoCFS_o,Noel Gallagher defends his decision to meet with Tony Blair upon his election. tt0358569,IEVDBboDFcw,"Noel Gallagher ponders the fickle nature of the record-buying public in regards to the sales of ""Definitely Maybe"" and "" Morning Glory?""" tt0358569,TIccuJuQg3w,Liam Gallagher and Damon Albarn explain their decision not to accept the invitation to 10 Downing Street sent by Tony Blair. tt0358569,OMzGVY5_gpc,Noel Gallagher and Damon Albarn consider the assessment of Oasis as a working class band and Blur as a middle class one. tt0358569,Vi5nIuJQVpM,"Noel Gallagher questions Blur's decision to release a single on the same day as Oasis, while Damon Albarn remembers being heckled and cheered in the streets." tt0358569,26-SvRLhthc,"Liam Gallagher describes his days as a juvenile delinquent, and Noel Gallagher discusses his writing process for the debut album by Oasis." tt0358569,on28B5qrgtY,Damon Albarn refuses to comment on the rivalry between Blur and Oasis as documented in the U.K. music press. tt0358569,dRTxXWB-lpE,Tony Blair comes to power and aligns himself with the resurgent British youth culture. tt0358569,Y937MAvxTZI,Noel Gallagher discusses the dire state of Britain's popular culture in the 1980's. tt0276276,TlnLO-nYFG0,Nick takes care of the strange girl he found hung over in his bed the day after the party. tt0276276,oDNgxbWzpf8,"Tim tries to get Leah's input on the future of their relationship, but she is too distracted by David's presence to give him a straight answer." tt0276276,49LrC8wJLPU,"Nick tries to accommodate the hung over girl who crashed in his bed, but she is oddly demanding." tt0276276,W6U80LM5b1U,David apologizes to Leah for the way their affair ended. tt0276276,_71L2__mFtE,Tim introduces Leah and David ; little does he know they already know each other. tt0276276,KKNUjL6oLeA,"Tim invites the cute shop girl to a party to impress her, but then he must organize the party." tt0276276,Mw9Dc_MJF34,Nick makes a sudden attempt to have sex with Charlie. tt0276276,uHmd86pWvmY,"Nick and Charlie start to spend more time together; Judy, thrown off that Nick is seeing a woman, tells Nick that he won't be getting any of Stuart's money after all." tt0276276,-BhFk_mOlxc,"Nick runs into Charlie, who repays him for the cab ride by giving him free groceries and forcing Darren to apologize for his behavior at the party." tt0454879,3ssOgE8RWSI,Paul gets into a violent brawl with a transvestite streetwalker. tt0276276,MLFezSJBdC8,Dan makes assumptions about the nature of Nick and Stuart's relationship based on his impressions of gay couples. tt0454879,y935w17KA18,Paul informs his father that he is cutting him out of his share of the money from the drug deal. tt0454879,6EEradwg8aE,Paul recounts his father's neglect of his mother's suffering. tt0454879,-fIi-c3tSig,"Sinatra asks Wemba to take Angie to safety, but Rodrigo stands in their path." tt0454879,Rn2_vtaTLM4,"Wemba tries to drive himself and Monique to safety, but the gunman after Wemba's drug money shoots Monique in the back." tt0454879,CjYxp2UFfL0,"Angie holds Paul at gunpoint, but is interrupted by Nazda, who has come back for revenge." tt0454879,6z6MpYHnbRc,Wemba and Monique are chased by a gunman who's after the drug money Wemba is delivering. tt0454879,QPKFPLL4XQQ,Paul instructs Rodrigo to shoot The Soothsayer's dog to get him to cough up the information he's after. tt0138524,xGN5cFcaD5A,Miles hires an asthmatic hitman to deal with Marylin. tt0454879,a0uMay4ExT8,Sinatra seeks answers from The Soothsayer. tt0138524,SyM4ctfYzks,"After marrying Marylin, Miles gives a surprisingly heartfelt speech to a roomful of divorce attorneys." tt0454879,1H96OfI64Fs,Wemba runs into a few problems while transacting the drug deal with the African buyers. tt0138524,gFKba_Esjt0,Doyle gives Marylin an unconventional wedding gift. tt0138524,KNiplLivjQI,"Marylin introduces Miles to her new fiance, oilman Howard D. Doyle." tt0138524,jGCY8thosNw,A helpless Miles receives some scary counsel from the firm's founder. tt0138524,dcsVnpHXXX0,Miles pulls Marylin aside for an intimate discussion. tt0138524,Zz-mpgYNUW8,"The firm's ancient, wheezing founder calls Miles into his office." tt0138524,YgdWrHFx0I0,"Divorce attorney Miles Massey ""massages the kinks"" out of a straightforward adultery case." tt0138524,IkQ_uPNWp28,Miles and Marylin get better acquainted over dinner. tt0138524,6PpQk63iIWw,Miles spars with Marylin's lawyer at a settlement meeting. tt0138524,82TS-sLA0P0,"Marylin meets with a tactless private investigator, Gus Petch." tt0417751,FNLQdquN0-I,"Thinking Jeana's already left on her cruise, Paul goes to her house to ask her roommate how to reach her, and ends up telling her how he feels about her." tt0417751,I1L5vXswv0Y,"When Tom's marriage proposal falls flat, he and Jeana agree to go on the cruise as acquaintances." tt0417751,GrG6AZG-ZOQ,"Jeana and Paul run into Tom at the park, where they all discover how interconnected they are." tt0417751,YiMIAKXwHg4,"Jeana goes on a talk show to clear her name and share her opinion on her virginity. Meanwhile, Paul is shocked to learn that Jeana is the girl he encouraged Tom to pursue." tt0417751,sR22u1bgrog,Paul advises Tom to tell Jeana he's in love with her while Caroline tells Jeana not to trust men. tt0417751,qTUAF-_v55o,Jeana is shocked to hear that Tom is back together with Zsa Zsa even before he breaks up with her. tt0417751,lcDo8iV-rPg,"Embittered by the recent unwanted attention from men, Jeana becomes defensive when Paul tries to thank her for helping him with his stalled car." tt0417751,Khjlz5bMb2E,Jeana apologizes to Paul for her previous attitude and the two start to get to know one another. tt0417751,vZW4Qk-wqlg,Jeana is outraged that she can't get a refund for the cruise she and Tom planned to take together. tt0417751,GC_ehA6dd_I,Tom accidentally reveals that Jeana is a virgin on live television. tt0412798,sqpSc2wwTaE,"During a nightmare, Rachel sees her dead son and is dragged down into the water by him." tt0412798,6AW4O4ohXK0,"The evil conspirators meet their demise as Rachel takes care of Sharon, and the ghost"" of Angus hooks Brian in the stomach." tt0412798,Fe2CpAhZ9w4,"From the blossoming romance with Angus, Rachel finds some momentary peace, comfort, and writing inspiration." tt0412798,pl3Oay3HDo8,"Brian and Sharon drown Rachel, but she is saved by a supernatural miracle." tt0412798,Z_9GcqiwxF4,Rachel is shocked to learn from the townspeople that her lover - Angus - has been dead for nearly seven years. Is Angus a ghost? tt0412798,V6aDrQg-WVU,"Despite Rachel's warnings, Sharon refuses to believe that Angus is right behind her, until it is too late." tt0412798,W51M5otbulY,"In her grief over the loss of her son, Rachel is comforted by Angus as they make love by the fireplace." tt0412798,PJjFb1RSFdw,Rachel stops by the lighthouse to have a tour led by the mysterious Angus tt0412798,ExGQSMWhujY,"At the local pub, Rachel has a creepy run-in with the town psychic Morag McPherson." tt0412798,tQPd0OAV7yk,Angus shows Rachel the breathtaking view from atop the lighthouse. tt0339091,UL-ot8sR0P8,"When Maria sees Malone tending to a dying Chastity, she holds him responsible." tt0339091,wANxoR0GtCs,Kim returns to town for her pocket watch and falls prey to a bullet from the Black Haired Woman. tt0339091,MOO9hFCMw7Y,Maria disposes of the Sheriff after he reveals the location of the gold. tt0339091,Z_OVcsaEOXA,A gunfight breaks out when some gamblers refuse to give Maria her poker winnings. tt0339091,HueqqIRaOQA,Rachel gets revenge on Little Suzie and Left Eye Watkins for killing her sister. tt0339091,r9RIcLpGaHY,"On the hunt for a criminal named Left Eye Watkins, Rachel and the gang hit the jackpot when they enter a saloon filled with eye patches." tt0339091,mVNG6xFwq2M,"When the Sheriff pleads ignorance about the map, Left Eye Watkins shoots off his finger." tt0339091,ub-t6RcoeTU,The gang saves Kim from hanging with a little help from Jessie Lee. tt0339091,ODZ_xokDAc8,Left Eye Watkins intimidates the Sheriff while Little Suzie shoots a can-can girl in cold blood. tt0339091,KqAGFmus6_M,Chastity shoots Johnny when he tries to sneak off with her money. tt0113074,inmQqyn5fhE,Kenshiro defeats Lord Shin while Julia takes out Jackal. tt0113074,J2k2CQgmaWo,Lord Shin beats Kenshiro to a pulp while Jackal nearly rapes Julia. tt0113074,ecuuc8AsMjg,Kenshiro wipes out some thugs after a meditation. tt0113074,XHiFqBo1rWI,Julia is forced to watch Lord Shin torture Kenshiro. tt0113074,MOuSrB5BYJM,Kenshiro plows through dozens of nameless thugs on his quest to save Julia. tt0113074,lrZAnOGjydo,Lord Shin tempts and kills an apprentice just to demonstrate his power. tt0113074,LPe-N0frxvU,Kenshiro cures a girl's blindness during his travels. tt0470761,RQmCVPN6V-s,Laura researches witchcraft while mice congregate around her baby. tt0113074,MUVukUuF9tw,Kenshiro kicks ass and takes names when punks try to rape a villager. tt0113074,vA8oTgiA5WI,Lord Shin's thugs attack the peasants and villagers of the realm. tt0470761,Yrph2A1xc94,Laura discovers that elements of her terrifying nightmare may have come true. tt0470761,bB-OwUZc-cE,Laura gets physical and defensive when she sees Mrs. Kasperian with a knife near the baby. tt0470761,Fsy3TtA-3NI,Laura forgets her baby in the back seat of the car after grocery shopping. tt0470761,6KgxpUSWsoA,Mrs. Kasperian describes her experiences with her first born to Laura. tt0470761,IthpPqgEteI,Laura gets trapped in the basement with her baby is out of reach and her husband off at work. tt0470761,yBrv-a6Nxuk,Laura discovers she is pregnant after a recital. tt0470761,L0oNukxzH4o,Laura makes an unsettling discovery while extracting her breast milk into a bottle. tt0280605,XiYDPHi7Acw,"Barry has Sal and Tony arrested for shooting domestic pigs on their hunting trip, which Barry surely tricked them into doing." tt0470761,SJhnQPZtv0M,Laura and Steven work on getting the nursery ready in their new home. tt0280605,FptZhFrVXAY,"Barry orders Darcy to kill Hollywood, but Darcy refuses." tt0280605,11nfPZqT5c0,"While teaching him how to make a pizza, Tony gives Darcy a reality check about the life he can expect if he gets involved in the mafia." tt0280605,zAge7cKvs9s,Darcy comes through in the clutch when one of Barry's enemies threatens their lives. tt0280605,h1UDUqeJh0Q,"Tony takes Darcy under his wing, advising him to be aware of the mafia's practices before getting involved." tt0280605,PJeobOT-LGk,"Darcy and Margaret succumb to their feelings for one another, but must hide their tryst from Barry the next morning." tt0280605,iucMQPRSNDg,"Barry lets Darcy, Margaret, and Tony off the hook; the three plan to start a pizza business now that they're out of the mob." tt0280605,56fdoTQTfuE,Sharon warns Margaret to stay away from her husband. tt0280605,1Wk9V6yqmZE,"Darcy takes a stand against his uncle, which spurs some risky consequences." tt0914364,0bhCbZG80HE,Father and son - Col Willets and Colin - take a moment to enjoy a cigarette. tt0914364,1LDL6H_on2g,"Grubman explains the origins of Gunther Neumann, a Nazi captured by black ops, who was the subject of scientific experiments to create the ultimate killing machine." tt0914364,VfrbOQ4q_Bc,The spirit of Gunther Neumann inhabits several men like Lt. Swanson and Grubman leading to a killing rampage upon the boat. tt0914364,9qzxNMENXJE,Col. Willets and Colin interrogate a suspected terrorist and learn that he is only a decoy. tt0914364,lnNbDaNP-yg,Grubman escapes his cell. Gunther Neumann resurrects himself and kills the medical examiner using a specific cutting tool. tt0914364,08_UIVttBK4,Gunther Neumann throws Col. Willets to his death. Traci electrocutes Grubman. tt0914364,XFYNHsSzMOo,Lt. Chris McCloskey hears a rat scurrying around and attempts to track it down. Bad idea. tt0285487,N6pHjvoxDI0,"Dr. Adams discovers the truth concerning his patient ""Satan"" and his new psychiatric ward." tt0285487,Cra_JviE1sk,Parker goes too far in his questioning of Dr. Adams' family. tt0914364,mefq68nHSMk,"On a U.S. Naval transport ship, the crew is mysteriously and gruesomely murdered." tt0285487,-9FxcS46YmE,Dr. Adams and Satan battle over the soul of a troubled suicidal patient. tt0914364,IAx_10MJbfE,Colin must electrocute himself in order to destroy the evil spirit of Gunther Neumann who has possessed his body. tt0285487,OB_iV-135-k,Dr. Adams and Satan discuss their beliefs in a higher power. tt0285487,BuoqHpvCzq8,Satan threatens Dr. Adams when he isn't acknowledged as the Devil. tt0285487,moxAGYR4nYY,"Dr. Adams has a session with Satan""." tt0285487,qMthVugT2wo,Dr. Adams meets a new patient who calls himself Satan. tt0285487,IOECGWT9KwE,"Dr. Adams is introduced to the film crew and their director, Parker." tt0285487,1VXH6jctlV8,Dr. Adams is introduced to the inmates of his new psychiatric ward. tt0285487,AAmxzswlvIE,Dr. Adams meets Dr. Delazo about his new position at the ward. tt0337879,NIOWsdgnNiI,Cliff has trouble adapting to sports star status on the set of a Diet Coke commercial. tt0337879,wm0fKKHMUJI,Cliff bowls for the win against the Australians. tt0337879,sBACvIGmLh0,Cliff gets back in the groove of bowling after a dip in the lake with Ray. tt0337879,tLujRN5bxVA,Cliff can't shake his nerves at the finals. tt0337879,uzDmyicwgnM,Rick doesn't know how to handle Cliff firing him. tt0337879,U7D-kOB7-PU,Cliff is introduced to his new sports agent. tt0337879,ZqOF2mZJ9t0,Ray forces Cliff to give up his trophy when he discovers an insult written on his scoreboard. tt0337879,FDfUBxkDaWc,Cliff plays off against Alan the Pipe in the first round of the bowling tournament. tt0337879,3e7JKCUfrpo,Two blackball champions exercise their talents in the morning English dew. tt5464234,Ly2Hr9qqp9M,Jacob takes care of Billy Joe Hill's evil ways in an old-fashioned hillbilly knife fight. tt5464234,CRuiuuKONUQ,"As advertised, Jacob beats up Lazerus ""silly.""" tt5464234,JAG9oylpNiY,Jacob breaks the bones of Lazerus with a hammer. tt5464234,PYTXPrmSwmc,Storm tells a cautionary tale to Agent Miller about a cannibalistic-clown serial killer. tt5464234,BAG_EkEcofI,"Jacob beats a criminal senseless, then kicks him out a building window." tt5464234,O5ExjpCtg0I,Jacob makes it a double play when he pummels two thugs who come after him with a pipe. tt5464234,zGDk38z2mbE,Jacob turns down a very fetching Celine... much to her disappointment. tt5464234,e8KqmFe953I,Jacob takes on numerous thugs at a bar when a suspect won't properly cooperate. tt5464234,CdwdX5PxF9Q,Jacob performs some aggressive dental work to Leon's mouth in order to get the right answers to his questions. tt0482088,WSFqs9iugBI,"Irene gives Jean a goodbye kiss, while Gilles watches from his balcony." tt0482088,RWS6EzAkSiU,Irene runs into Jean at breakfast and realizes that he has adopted her gold-digging lifestyle. tt0482088,De9FeSg3WTc,Irene challenges Jean to continue supporting her extravagant lifestyle. tt0482088,LdEwXHHohHs,"Irene follows Jean to the Imperial Suite, unaware that he is a hotel employee and not a guest." tt0482088,anAmUhhnwUk,"When Irene and Jean are caught in bed, she discovers that he's not a guest but an employee." tt0482088,l-EWc6AcPvQ,Irene mistakes Jean for a wealthy customer at the hotel bar where he works. tt0482088,mtWSL_-mJaI,Irene reunites with Jean and they use their last Euro to pay the toll into Italy. tt0482088,f1gNWDY4gUM,Jean gets dumped by Madeleine when she catches him with Agnes. tt0482088,GkM4SQ--vss,Irene demonstrates her powerful techniques of seduction for Jean. tt0482088,tSrLgG6rOrs,Irene and Jean meet in a dressing room where their respective dates are buying them clothes. tt0832266,MFd88DSTPgI,"When Maya figures out her parents are over,"" her father tells her that the story has a happy ending." tt0832266,KJFbhzrJxg4,Will's marriage proposal to Emily goes terribly wrong when Emily admits to sleeping with Charlie. tt0832266,7OXf2fFCRB0,Will and Maya give April one last chance for a happy ending. tt0832266,Fg9aUVqD1K0,Maya tells her dad that she's figured out that Emily is her mom. tt0832266,uE-l84hG_BE,"After Will confesses his love for April, his drunken honesty takes a darker turn which leads to him getting slapped." tt0832266,GARQJHyaBD0,Will practices his wedding proposal to Emily on April. tt0832266,804UN9XPV44,"April challenges Will to a ""smoke off"" during which both learn something about the other." tt0069704,QOgqUHk-zDY,A drag race between Milner and Falfa ends in a fiery crash that reunites Laurie and Steve. tt0832266,J_oIvRfVXoA,Will returns Summer's diary and they make out. tt0069704,99z-H_NEccU,Curt visits the radio station and gets some advice from the Disc Jockey who turns out to be the Wolfman. tt0832266,GkPbF_FJuho,"Annoyed by her political apathy, Will challenges April to care about Bill Clinton's presidential campaign, but his point is refuted by the Gennifer Flowers scandal." tt0069704,z2OoxzYqgNY,Falfa finally catches up to Milner and the ensuing trash talk escalates into a street race. tt0069704,CgZTVkjQwto,"Faced with being dragged behind a car by the Pharaohs, Curt hooks a chain to the axle of a police car leading to dramatic results." tt0069704,7Z1PBPrjZPQ,"After Carol gets hit with a water balloon, she convinces Milner to help her get some payback." tt0069704,-SKfkvvtqN0,"After trying to pick up on some girls in a Studebaker, Milner gets stuck with Judy's little sister, Carol." tt0069704,6e3dn30X5D4,Toad tells a bunch of tall tales to Debbie and gets lucky in the parked car. tt0069704,7GLhXtUgUg4,"Embarrassed that he's stuck driving around with Carol, Milner tells his friends that she's his cousin." tt0069704,j1q-QWHUU0g,A snowball dance is led off by class president Steve Bolander and head cheerleader Laurie Henderson. tt0069704,L8TDBSlgFAw,"At a stoplight, Curt has a chance encounter with the woman of his dreams -- a mysterious Blonde in a T-Bird." tt0125664,4Te3H4lBaBo,Andy's funeral is held for friends and family and a group sing-a-long brings the attendees all together. tt1210801,NlqESIU9i3E,Joe fights Oleg as President Petrov tries to remove the bomb strapped to his daughter. tt1210801,301qydVqZzM,"Just as Oleg is about to execute President Petrov, Joe bursts in to save the day." tt1210801,9yoRcn3UcyU,President Petrov creates a distraction so that Venus can escape and find Joe. tt1210801,DaR6i1hQWfo,Joe plugs in a guitar and uses the feedback to distract the terrorists long enough to save some lives. tt1210801,QunxdSWz-Go,Joe and Kapista locate the security office and a hidden stash of weapons. tt1210801,mBLotJEfjDg,Joe fends off a terrorist but insists on giving the machine gun to Kapista. tt1210801,ZVpdb1HxgEY,Joe exits the bathroom to find that terrorists have seized control of the concert venue. tt1210801,B7t6KoVULDQ,Rock drummer Joe meets the Russian president and insults the music of pop singer Venus. tt1583420,jTLsI2Z9GiA,Mrs. Tainot and Larry catch up before class. tt1583420,--jPdm57jQs,Talia helps Larry get decked out in some vintage threads. tt1583420,RBBmO8dhn-I,"Talia shows Larry her new tattoo, which doesn't make her boyfriend too happy." tt1583420,yidXeyTFM48,"When Mrs. Tainot complains about the voice activation on her GPS, Larry wastes no time in fixing it for her." tt1583420,fgq8TsyNTXM,Mrs. Tainot is this close to cancelling her 8 a.m. class before Larry bursts through the door. tt1583420,5nvZCMkXEFw,Lamar and his wife recommend that Larry return to school. tt0955308,zjwBNUXCA-M,Robin get's bamboozled by the runaways of Sherwood. tt0955308,SmfPtEWejs8,"Robin, Marian and the people of Nottingham fight Godfrey's intruders." tt0955308,xTvdOjsJXRY,"Princess Isabella learns being a queen isn't just about bearing children, but about saving her King from himself for her subjects." tt0955308,FbmnqGqWgc8,Robin and the English battle Sir Godfrey and the French on the shoreline. tt0955308,clr6zsehoTg,"Eleanor of Aquitaine disagrees with her son, Prince John, on his choice of a French wife in Princess Isabella." tt0955308,if34bKbBqXI,Robin offers an inspiring speech to King John and the gathered armies. tt0955308,H07DuZQ-rLQ,Sir Walter tells Robin about his father. tt0955308,n75PgMSxAOw,Robin Hood and his band of archers storm a French castle. tt0955308,S44FXSiI--Q,Maid Marion informs Robin Hood that he will share her chamber as a ruse. tt0955308,wnfHqnaM0yI,Robin and his Merry Men hijack a caravan. tt0125664,_wpGttPSHdE,"Andy goes on the David Letterman Show to apologize to Jerry Lawler. The apology backfires as Andy gets slapped by Lawler, and proceeds to throw hot coffee at him." tt0125664,VKbyotjwcDw,"Andy gives a memorable performance at the famous Carnegie Hall. The act includes resurrecting the dead, the Rockettes, and Santa Claus." tt0125664,DdGZ4WYTdHM,Andy goes on the Merv Griffin Show to prove that men are superior to women. To demonstrate the point he wrestles a woman from the audience named Lynne Margulies. tt0125664,1ePe7Q_zH1c,Andy plays the character of washed-up Vegas lounge singer Tony Clifton. Tony picks on a particular audience member named Bob Gorski. tt0125664,HurQLHiIVcw,"When Andy gets into a fight on live television, the network tells him to announce that it was only a prank, but he confesses that it was real." tt0125664,3Tqgp93zs3Y,Andy performs his Mighty Mouse routine for the first time on Saturday Night Live. tt0125664,lm7nrQTysm4,"Andy as Tony"" deliberately gets fired from the show Taxi and throws a world class temper tantrum." tt0125664,jx8KlhQBsvQ,Andy does a comedy routine filled with impersonations such as President Jimmy Carter and rock star Elvis Presley. tt0367232,oIC-A9h4cfQ,"Dr. Kipp invites Cynthia and Marlon to join him in the hot tub, while Christine loses her inhibitions." tt0367232,9nabHwRMjcE,"When the interns discover Mitzi working at a strip club, Mike undresses to make her feel better." tt0367232,332NO4_03vU,Dr. Olson grills his interns over the best way to remove a doll stuck in a patient's rectum. tt0367232,oVzqiDMOlms,"Mike and Mitzi are suddenly expected to deliver a baby, despite the misgivings of the expectant father." tt0367232,0cPmlvsRKhw,"When Dale and Sarah find the cleaning lady unplugging the life-support machine, they report the problem to an unconcerned Dr. Kipp." tt0367232,YVrMyqmDg3g,"After Mike vomits while cutting open a cadaver, Dr. Keller decides to have some fun with body parts." tt0367232,GfhTEwz56do,"Marlon breaks some bad news to an amorous couple, and Mike has a mishap involving a colostomy bag." tt0367232,bbuElXPp_s8,"Tony orders his students to examine their own mouths, and Mitzi makes an embarrassing discovery." tt0367232,SF887rPCz_A,"An argument between Marlon, Mike and Dale leads to a messy organ fight, stopped only by Dr. Olson." tt0368688,GBV01HnuTz8,"Captain Stone tries to convince his whistleblower subordinate, Frank Gannon, into joining his ring of corrupt cops." tt0368688,Epo3jDg5skM,"Gannon takes out his corrupt police captain, and then testifies against his former squad and their nefarious covert actions." tt0368688,PBObihCz2L4,"Gannon and Ross are betrayed by the highest levels of the police force in order to have them silenced. But Frank Gannon will never, ever be silenced." tt0368688,OtCu9saoxeU,"Gannon and his former partner, Sgt. Grimes, rescue Grimes' family from the corrupt cops, but at the cost of the sergeant's life." tt0368688,PJFA-emTgT0,"Gannon rescues young Adrianna from her assassins, but her uncle is not as fortunate..." tt0368688,U4iAA0B9fJU,Gannon fights off his kidnappers with help from Ross and her little friend. tt0368688,R5b0a3b6XkE,"In order to clear his name, Gannon has to kick ass in guns blazing fashion." tt0318462,KBh1vdpGWhE,"Against Alberto's advice and better judgment, Ernesto decides to swim across the Amazon to celebrate his birthday with the leprosy patients... and succeeds." tt0368688,yFWgaAX2tCU,"After Gannon chases down a perp, he confiscates a cryptic note from the criminal." tt0368688,gZwxRw15AdE,"Responding to a routine disturbance call, Gannon shows his rookie partner Billie Ross how he takes care of business." tt0310924,SG4I8PHp880,"Julien sacrifices himself to save Raymond, who then avenges his friend's death." tt0368688,eKHYnWepyRU,"Gannon is ambushed and kidnapped by corrupt cops while his rookie partner, Billie Ross, watches helplessly from afar." tt0469062,OBd1rEo-iyM,"While putting away groceries, Danika finds a severed human head amongst her foodstuffs." tt0469062,hVZ0Y8l14M4,"After her daughter surprises her with some startlingly bad behavior, Danika has another disturbing vision." tt0469062,ksJuTetxrDc,"Cornered in the back office during a bank robbery, Danika finds herself suddenly, and inexplicably, safe and sound." tt0469062,js-337d3gqQ,"After Danika awakens from another haunting vision, she and her husband are confronted by an angry neighbor in the middle of the night." tt0469062,9ekHf_EMmSk,Danika reveals her repressed memories to Dr. Harris about the death of her brother when she was a child. tt0469062,CZ1wzoCOQ-Y,"Danika has a fearful vision where her eldest son's girlfriend, Myra, threatens to expose her son to a life of drugs, sex, and STDs." tt0469062,ji8ZM5nKsik,"While shopping at an electronics store for her son, Danika experiences a disturbing vision. In the aftermath, she finds herself alone in the department store as everyone else has mysteriously disappeared." tt0469062,R8Oo8hf_n9w,"Danika confronts her daughter's English teacher about a racy book that was assigned for class, which ends in dire consequences for the teacher." tt0310924,LhVNDhQKhJw,"When Elwood pulls a double-cross on a gun deal, Zero proves to be quick on the draw." tt0310924,Y4u6gpp399U,Marcel saves an innocent girl from the crossfire of a shootout. tt0469062,hjoORS_zVWE,"After learning about her husband's affair, a distraught Danika drives through a red light intersection as her mini van is blindsided by a school bus." tt0469062,IEDhXioCYdc,Danika discovers that her husband is having an affair with their nanny. tt0310924,bU6ZsvCba7c,"Frankie manages to call Joey while bound and gagged, but Joey mistakes him for a prank caller." tt0310924,OLjVIg8OTNI,"The thieves realize they have entered the wrong house and are robbing Frankie Zammeti, the underboss of the Chicago mafia." tt0310924,PTCMc9G3bcQ,"Frankie discusses mob business with Angelo, who is confused by Frankie's vocabulary and metaphors." tt0310924,8sQfEoUNxRo,A heist goes wrong when Julien accidentally sets fire to a painting that Daniel is trying to steal. tt0327643,7BapYJuMHMI,"Rebecca, Michelle, and Carrie get ready for a night on the town." tt0167116,QCqdeiTnnTU,"Around a campfire, Banks and Bennie get to know one another." tt0327643,9_OMUgTFQhw,Rebecca is in the process of buying tampons at the grocery store when she encounters a female emergency. tt0167116,EC64kf5_Ldc,"At a gas station in the desert, Banks encounters a female hitchhiker named Bennie who is looking for a ride." tt0327643,qcZk7ketB4Y,"During a strip search at the police station, Rebecca reveals her use of a giant tampon." tt0327643,IEcxOcj3LGA,"When Rebecca starts feeling weird, Jake informs her that the ecstasy they took is laced with acid." tt0327643,65nUs0FyUys,Rebecca takes a date to Richard's fashion show in an attempt to make him jealous. Her plan backfires when her Woody Allen-like date vomits all over her chest. tt0327643,cqzRb7sAL9Y,"Tripping on ecstasy and acid, Rebecca encounters Jake in the bedroom with a fish in his butt as some sort of perverted sexual fetish of his." tt0327643,Ls8-mu4kDpo,Rebecca has a public meltdown on Hollywood Boulevard after discovering her boyfriend cheated on her. tt0327643,YNdZAZ-SPX4,Rebecca visits Madame Belly who offers some advice on her woes of love. tt0318462,ypmu86_sKpU,"On his last night in Peru, Ernesto reflects on the long journey they've taken and proposes a toast to a United South America." tt0327643,wyUDbbWIXS0,"After being called a bimbo, a three-way slap fest breaks out between Rebecca, Mr. Hot Bacon, and his sugar mama." tt0318462,xKpYBStDLVA,Ernesto gives Dr. Hugo his honest opinion of his novel. tt0318462,OTfb7n61HIQ,Ernesto and Alberto use their featured article in the newspaper to try to get their motorcycle repaired for free. tt0318462,oOeGE7z8PAk,"Alberto and Ernesto meet two sisters in a Chilean bar who provide them with food, wine and shelter." tt0318462,OEgLZ58Xe0Y,"Alberto tries to talk a man into helping them, but fails when Ernesto tells the man he has a tumor." tt0318462,gL0Ph_x8xmg,"A cold night spent talking with a communist miner and his wife affects Ernesto, connecting him deeply to his humanity." tt0318462,qSLZflG9sUw,"Chichina tells Ernesto that she wants him to stay, but will wait for him if he doesn't take too long." tt0318462,MiT3ky_83Vo,"Since their tent blew away in a gust of wind, Alberto and Ernesto must beg for shelter." tt0318462,QWlbUhsTD4c,"Alberto falls for a prostitute on the ship, so he hounds Ernesto for the fifteen dollars he's been saving." tt0167116,2FtBOS5575I,"Banks shoots an undercover cop in a public restroom, and narrowly escapes being caught by a young boy." tt0167116,1fbxiPh8RoY,Bennie leaves Banks handcuffed to the wall to be caught by the F.B.I. after saving his life. tt0167116,cLjX-SEPnR8,Banks's assassination attempt of Zapata goes wrong when he is double-crossed by Bennie. tt0167116,FNWBoJNTc1w,Banks confounds two agents chasing him on a dark two-lane highway. tt0167116,WpOPOQw6nqg,"After an argument in the car leads Bennie to run away, Banks's attempt to shoot her in the back is nullified by having no bullets." tt0167116,rC0lnrzU0jk,Bennie tells a story to Banks about catching an employee whacking off in the back of a donut shop. tt0174856,rNAXkGt7rFA,"With most of his life spent in prison and nearly 50 years old, Rubin becomes a free man again." tt0174856,D60dQGS_qNE,Lesra and Rubin form an immediate bond. tt0174856,wFPtFkZHpBE,Rubin pleas with the Federal Judge to stay true to justice and consider the evidence he's brought before the court. tt0174856,nQkiJT2MR4w,"Rubin demands that his lawyers take his case to federal court, no matter what the consequences." tt0174856,4MzZD9mNlww,"Despite dominating in the ring, Rubin loses to the middleweight champion." tt0174856,aHlMCu3-R3I,Lesra and the Canadians surprise Rubin when they move to New Jersey and vow to help prove his innocence. tt0174856,HzWikU7ir4Y,Lesra confronts his adopted family about their intentions. tt0174856,FPIgb9k3cUo,Rubin makes good use of his time in prison by exercising his mind and body. tt0174856,b9T64w0cdDA,"Rubin destroys the undefeated Joey Cooper, winning by knockout in the first round." tt0174856,g5Gb7V5-pts,Sgt. Della Pesca and the police force a wounded victim to place the blame on Rubin. tt1478338,9pl_3xQBPLk,"Megan thinks she's caught on to the fact that the gentleman sitting next to her is an Air Marshal, but the poor guy just wants to take a nap." tt0889583,1nqF0ddDc8I,"Bruno consults a psychic so he can ""communicate"" with the spirit of Rob Pilatus, one half of the pop music duo Milli Vanilli." tt0889583,kV1j2VYi7ho,"Pretending to be straight, Bruno takes a martial arts class so he can protect himself from unwanted advances." tt0889583,9da9FqZc8DU,Bruno learns about what he's been missing all this time when it comes to the virtues of the fairer sex. tt0889583,sc3H4UkkZgk,Paula Abdul meets with Bruno for an interview while sitting on some living furniture. tt0889583,36p5Jk_y16Q,Bruno's quest for worldwide fame begins in the office of this Hollywood agent – to mixed results. tt0889583,OhGVVnZZW5o,Bruno infiltrates a high-profile fashion show wearing a snazzy new suit made entirely of velcro. tt0889583,ik4LH5ksOn8,"In his quest to become famous, Bruno decides to bring an end to the Israeli-Palestinian stalemate in his own way." tt0889583,yVRv5u36Huw,"Looking to enhance his fame, Bruno recruits candidates for a high-profile baby photography shoot." tt0889583,0ofpRxc0GVg,Bruno explains how he got baby O.J. in exchange for a limited edition iPod. tt0889583,kq6E2hQ20wc,Bruno gets in trouble when he decides to spice up his military uniform. tt0101393,RLUhwGLJhsI,"Despite Stephen's warning, Tim gets burned by a backdraft and taken away on a stretcher." tt1027747,kewajS6fh3Q,A rival gang led by Hector returns to a restaurant to wage war against Virgil. tt0455362,rRbF5cPxVIc,"When Nicki discovers that the car won't start, the gang works together to bring her back to the house." tt0317198,smxGSlqjZNk,"While Bridget is out with friends, she is ""jellyfished"" by an acquaintance." tt1198153,G0aJ4C7y9Qc,"On their way out of town, Galia and Elinor are cornered and Galia has no choice but to shoot her way out." tt1198153,pwkzSfo-JA0,Galia defends herself against Roni in a brutal fight to the death. tt1198153,qU5QbKnQHak,Galia holds Roni at gunpoint and demands her passport and enough money to escape. tt1198153,H0UbjaTkx04,Galia panics and runs when one of Mishka's men offers to return her passport. tt1198153,fpdnG6Fm3LY,Galia gets upset when Elinor finds her gun and it accidentally goes off. tt1584733,dMg7mCGd3js,"While looking for Fractal, a police officer searches the tent of creepy recluse Izzy." tt1198153,vinDi5O-fu0,Mishka tells Galia to stop spending time with her neighbor Elinor and finish her work. tt1198153,_eqtVKrH-f4,Galia takes Elinor to the roof to practice shooting under cover of rain and thunder. tt1584733,_jDLZyo3Kg0,The whole ordeal is revealed to be a hoax as all of the supposedly missing Suicide Girls reunite in the woods. tt1198153,oCayZiKmJBE,Galia follows a mobster's girlfriend into the bathroom at a club to kill her in cold blood. tt1584733,Cg5acxVn2KI,Amina and Joleigh disagree about the appropriateness of celebrating the end of the photo shoot when so many girls are missing. tt1198153,jocK7m_000U,Galia kills her first victim but Mishka has to help her finish the job. tt1198153,3jtF8hfimrA,Galia and Nina try to escape from a club where they are held as sex slaves. tt1584733,dX-C-8rzN7I,Rigel wakes in the middle of the night to find herself alone and Amina murdered. tt1584733,hyFgMOop-Mc,"Two more Suicide Girls meet an untimely end when they discover footage of Bailey being murdered, while Daven is tied up in a bloody sheet." tt1584733,QR424o5Wch0,Fractal disappears when she walks off alone to use the bathroom on a remote island. tt1584733,wRRvq70yOt0,"Bailey disturbs some gravestones in the woods, despite the warnings of the other Suicide Girls." tt1584733,YV-Ik4q-o4k,A police officer pulls over the Suicide Girls bus after complaints of public indecency. tt1584733,Zer3Rr4CwjE,The Caretaker accosts James for disturbing the graves on the property. tt1584733,HoW8jQX83Fw,Evan makes trouble on the first photo shoot when she refuses to pose with a bear statue. tt0455362,LO2Ej4_42xY,Nicki arrives with the car just in time and drives it straight into the water. tt0455362,j8Zucea5rlY,"While John and Matt fend off the dogs outside, Nicki lures them inside to their doom." tt0455362,rOOymP2hx_c,"Noah gets surrounded by a pack of dogs, and Luke appears with a dire warning." tt0455362,CCicXUbaalU,Sara refuses to leave the house and sacrifices herself to save the others. tt0455362,qhMhfHHeT_g,"With Matt pushing, John jump starts the car just before driving off a cliff." tt0455362,l9MW39UXFmU,"In an attempt to save her from a dog, John ends up shooting Nicki in the leg with an arrow." tt0425112,CsZUGoa3JHc,"Angel and Skinner have a brutal fight in the model village, and Danny finds it impossible to shoot his own father." tt0455362,4VJrMSbPe00,"When the dogs infiltrate the house and kill Noah, the rest of the gang heads for the attic." tt0455362,Ld6pt1jNCRw,Jenny learns that the remote island that she and Luke discovered is not exactly deserted. tt0455362,lD6hI1yKd7w,Sara suffers a bite from an angry dog when she and John search for their newfound puppy. tt0425112,CmkT8YU4jH8,Angel and Danny stage a raid on the Somerfield supermarket with police reinforcements in tow. tt0425112,pcV9ceH4UvE,"Angel and Danny engage in a furious gun battle with the villagers of Sanford, including Rev. Shooter and Dr. Hatcher." tt0425112,AMT2RwFFs_g,Angel rides into Sandford on a white horse with only one thing on his mind -- vengeance! tt0425112,BavTQmiA9mc,"While Angel is distracted reading the winning lottery names, the mysterious Reaper kills Messenger with a church spire." tt0425112,faMh6OYfuNE,"Angel is promoted to Sergeant by the Chief Inspector but he is unhappy about his transfer out of London and into the small town of Sandford, Gloucestershire." tt0425112,Cun-LZvOTdw,Angel and Danny discover a huge cache of weapons hidden at a local farm. tt0116483,8QJiAK-s5a0,"Happy makes the mistake of tangling with Bob Barker, a surprisingly bad dude." tt0116483,7BwxSHs9elk,Happy mocks Shooter's breakfast habits; Chubbs takes Happy mini-golfing to help his short game. tt0425112,fuEG_PSb_Ts,Angel chases down a shoplifter before Danny admits that he knows the boy. tt0116483,8qaAKxJp0EM,"When he misses a big putt, Happy flies into a rage on live TV." tt0116483,3dluAhOU1cA,Happy ignores Chubbs' plea for more practice; he visits his grandma and her sadistic orderly. tt0425112,ir1sVy9JLyo,"Angel returns to his room only to be attacked by Michael, a giant under orders to kill the policeman." tt0425112,0-lcqIuVaR8,Angel and Danny discuss the merits of police work before going on the shortest police chase ever. tt0116483,VyydT8dy3Hs,"Frustrated with his putting, Happy de-shirts and punches a heckler; later he nails a hole in one." tt0116483,qDR_yTik_xo,"Happy is approached by Chubbs, an ex-pro golfer who thinks Happy has a gift." tt0116483,GP1KHL0j0GU,Shooter McGavin tries to put Happy in his place; Virginia urges Happy to behave. tt0116483,0u5O2--9www,"Happy gets cut from the hockey team and loses his girlfriend, but manages to charm a neighbor lady." tt0116483,z7coL1WcCoI,"Happy moves his grandma into a nursing home, where an orderly mistreats her." tt0317198,S501ojiA52c,Bridget ventures to Mark's firm to profess her love for him. tt0317198,MGwI25DNrHU,Bridget momentarily spoils the mood when Mark proposes to her. tt0317198,dwykptqZBj0,"Bridget is stunned — and relieved — when Rebecca professes her love for her, then tops it off with a kiss." tt0317198,GTCKAy3buxo,"While skiing, Bridget suddenly fears that she may be pregnant, and zooms through a race before ending up at a pharmacy." tt0317198,kDeUWLhm-0g,"When Bridget gets stuck next to a talker in coach, Daniel treats her with a surprise seat next to him in first class." tt0317198,j6oHprwdTeA,"When her boss offers her a new television spot with Daniel, Bridget turns them down." tt0317198,LIIzjJjsW8s,Mark professes his love for Bridget at her front door while she leaves a message on his machine. tt0317198,Z743dOLiGQI,"Daniel runs into Bridget, makes a pass, and then shares updates on his reformed life since they last parted ways." tt0243155,4YZy2deJstI,Bridget shows up to the Tarts and Vicars party only to discover that her pervy Uncle Geoffrey didn't tell her that the costume part was nixed. tt0243155,KusSGPyXugE,"After Mark and Daniel duke it out, Bridget realizes she's not satisfied with what Daniel is offering her." tt0317198,mrx4SwMyGdQ,Bridget makes a slightly naughty call to Mark Darcy only to find out she's on speaker phone. tt0243155,MCXx5saaKOk,Mark catches Bridget just in time to tell her that he's staying in London for her. tt0243155,X3vQPmO3i7Y,"True to form, Bridget's first news piece is a clumsy disaster." tt0243155,xfwBwk7k3Gs,Bridget quits her job and takes the opportunity to humiliate Daniel the way he humiliated her. tt0243155,F-LlyzCIG6I,Bridget tells Mark how she feels about him and his sideburns. tt0243155,tcIaT5D4Iwc,Bridget delivers a hilariously awkward introductory speech at the book launch. tt0243155,dhPSvTyGSgs,"Bridget finds out that Daniel is, quite literally, hiding something." tt0243155,qNkP2Y5wme0,"Bridget and Daniel go on a mini-break"" together and run into Mark and Natasha at the hotel." tt0243155,oZu2JfM2Aq8,Mark tells Bridget what he thinks of her. tt0243155,p7cYf7GaXgY,Mark bails when he discovers Bridget's jabs at him in her diary. tt0243155,tiYXgCsoqaA,Bridget cries out in protest at the mention of Mark marrying Natasha. tt0101393,2vV-8TyFBTI,Stephen has his final moments in an ambulance with Brian and asks him an important favor. tt0101393,BkvVBZwXVhg,Brian goes after the water hose in order to fight the fire that surrounds himself and his brother Stephen. tt0101393,PlBpNTEaRTI,Shadow and McCaffrey interrupt a press conference with Swayzak with incriminating accusations. tt0101393,djv5gGXEyXo,"During a heated conversation, Ronald helps Brian figure out who may be causing the fires." tt0101393,qRnjswr1swo,Shadow shows Brian the ropes and teaches him all about the life of a fire. tt0101393,piOTzME87Dg,Stephen has a dramatic face off with Axe amidst the fire as Brian watches. tt0101393,61XUb28jkUI,"Shadow reminds Ronald of his past arsons, exciting him and ultimately causing him to fail his parole hearing." tt0101393,qqX1d64OcvI,Tension erupts when Stephen is tough on his brother Brian during a drill. tt0101393,mtkuDgE-qOI,Shadow and Brian go to Swayzak's house only to find him unconscious with the arsonist still in the house. tt0101393,KrwlDh465HQ,"Brian sits scared as Stephen charges into a fire, saving the life of a little boy." tt1027747,_rGPOReLRzs,Detective Hanover breaks up with Beck when she suspects that he's not being honest with her. tt1027747,uXGr0rSGz0A,Raina finds another victim in a movie theater and lets his date go free with a warning. tt1027747,5YqbUhVM6Jo,"Raina tries to seduce Beck, but when she reaches for his gun he locks her up in the bathroom." tt1027747,biFZVekspJ0,Raina leaves Virgil and Beck alone and wounded with a gun between them. tt1027747,6xD1JRKscGM,"Raina seduces and kills Krieger, a tattooed skinhead." tt1027747,CXoJegmhbI4,Raina kills Lee with a crowbar and finishes off Penny with her trusty knife. tt1027747,qIEDFvdDbVo,"Lee tells Beck to follow him, resulting in a wild chase through the streets of Los Angeles." tt1027747,UlqSJeiOYPs,Raina infiltrates the compound to get revenge on Virgil for what he did to her sister. tt1027747,kal9JZpTFJ0,Virgil and Ernesto discuss criminal business at a bathhouse when Raina enters with her deadly blade. tt1423593,6vSWuFYVbE8,Some things in the nail salon are lost in translation. tt1423593,EtTIxHlaue0,Asya explains her paranoia. tt0141926,eLyhRYJXf1U,The sub surfaces and gets fired on by the Destroyer. Rabbit struggles underwater to reach the valve to fire the torpedo. tt0141926,7U3F1uDBXrw,It's discovered that the captured German captain has been signaling to the ship above via Morse code. tt0141926,rJCltwaUrXI,Tyler comes up with a Hail Mary plan to beat the German destroyer and Hirsch tells him the consequences of failure. tt0141926,3VKQkg9cpio,Lt. Cmdr. Mike Dahlgren gives Lt. Andrew Tyler some advice about what it takes to be a sub captain. tt0141926,2ed_jTFrZkY,"A German U-Boat gets bombarded by depth charges, and has to make an emergency surface." tt0141926,VMU9Yos0mkk,The sub comes under a heavy bombardment of depth charges from the German ship above. tt0141926,K40Gt3dk1LY,Everything is going to plan until a torpedo slams into the U.S. submarine forcing the team to go back into the German U-Boat to escape. tt0141926,mI3QaSoJado,Lt. Hirsch gives the rest of the men a briefing on what their real mission is to be: they are going to retrieve an Enigma code machine. tt0141926,fUlMUkd7IWU,"After their cover is blown, the assault team launches a hardcore attack on the German U-boat." tt0078504,WjyJ_ZUEMEw,"Dorothy and the others are surprised by the Lion who tries to scare them by singing ""I'm a Mean Old Lion.""" tt0141926,RHUbiL36yjo,The men embark on an old submarine from WWI and feel quite uneasy when it starts to spring leaks all over the place. tt0078504,DHzx2P4x63c,"Glinda the Good sings When You Believe"" to Dorothy" tt0078504,pQT-QFy5Nig,"Evillene sings ""No Bad News"" while her henchmen dance." tt0078504,3r1ssg1LIt4,"The Four Crows torment Scarecrow, making him repeat the Crow Commandments and sing the Crow Anthem." tt0078504,dslpHxTuA-w,"Dorothy sings ""Home"" as she reminisces about all the characters she's met on her journey." tt0141926,IV79EIZVuHQ,Klough gives Tyler some advice about how to lead his men and rise to the challenge of being a captain. tt0078504,zy8dUJEOqos,"With Evillene gone, Dorothy and the others sing ""Everybody Rejoice"" while Evillene's former henchmen dance and are transformed." tt0078504,dk3BfcWrx8c,Dorothy convinces Scarecrow to join her to find the Wiz. tt0307507,tULIFKLFp_w,Natalie sews up a wounded Parker and nurses him back to health. tt0078504,oGxBx8RzzrM,"Scarecrow and Dorothy find the yellow brick road and celebrate by singing ""Ease on Down the Road.""" tt0307507,eLrwCyXUOLY,"While pretending to grab the money under the floor, Parker tricks Ray and shoots him in the foot." tt0307507,bIaFHqnx6ns,Parker has a shootout in the forest against corrupt police officers. tt0307507,VnrIuEa7ep4,Natalie is turned on by Parker's bank robbing ways. Parker is turned on by her. tt0307507,7n8QlEg1k8A,"All is well that ends well, as the bad guys go to jail, and Parker and Natalie live happily ever after on the beach." tt0307507,WN_03KbkRdM,Parker is in the process of arresting Tommy the bank robber when Ray comes on the scene. Turns out the bank robbery was done by cops. tt0307507,-YjwJY6m9k4,The sexual heat rises between Parker and Natalie back at her place over a glass of whiskey. tt0307507,yTeJ-41Tl9E,Parker and his fellow policemen get ambushed by Charles's drug dealing posse. tt0307507,d-HW0aPbfIY,A drunken Natalie is forthright in asking Parker to come home with her. He accepts the invitation. tt0307507,7MQUQQkzNSU,Parker knocks out the power and robs the bank disguised as a clown. tt0119395,QB91tB_5u88,FBI Deputy Director Prest describes the toughness and integrity of Major Koslova to an intrigued Declan. tt0119395,Xdzp0AluNuQ,The Jackal gets a mission from his Russian client to kill someone high up in American politics. tt0119395,R1dILTUMJQI,"Declan trades his life for that of a young hostage, but is saved from execution by Isabella." tt0119395,rJGOCtlPzUs,FBI Deputy Director Prest along with Major Koslova and Agent Witherspoon negotiate with Declan to help them track down the Jackal. tt0119395,AA4zkmfbFD0,Declan catches up to the Jackal on the docks in Chicago and gets an unpleasant greeting. tt0119395,pyXdB_AYiDs,The Jackal uses Ian as a moving target to test his new high powered gun. tt0119395,0gBKE5MUiQc,"The Jackal first deceives, and then kills, an unsuspecting gay man in order to stay in his house." tt0119395,v3e2maV8MlQ,Declan and Carter save the First Lady from the Jackal's deadly gun. tt0119395,WEfVr2S8eo8,Declan tries to catch the Jackal in a crowded subway. tt0089755,uBFxCK913PM,Karen fights hungry lions when they invade her camp at night and try to eat her oxen. tt0119395,7Vl03BBrGEY,Things go bad for Director Carter while confronting Murad in a Russian nightclub. tt0089755,AP2kX2vE_L8,"Karen watches as her coffee farm burns to the ground and takes with it, any chance she had left to stay in Africa." tt0089755,Xb6svoM3UWE,"When they are attacked by a lion and lioness, Karen goes against Denys' instructions and shoots." tt0089755,-NtpPdMGluE,"Karen is given a special honor before leaving Africa, and says goodbye to Farah at the train station." tt0089755,wYEn-ZKSg_I,"During a dance, Denys debates the changing state of Africa with Karen and gives her a New Year's kiss." tt0089755,sRKtU9FF-8w,"Karen is nearly killed by a lioness, but Denys shows up at the perfect time to lend her some live-saving advice." tt0089755,d8sDpSZeDBE,Denys shampoos the tangles out of Karen's hair and recites poetry by the river. tt0089755,j38t2lDi4GU,Denys takes Karen on a plane ride over Africa. tt0089755,Agic36OeXC0,Bror brings Karen to her new home for the first time and introduces her to her servants. tt0089469,DaMf1FF-iZ8,"Lili betrays Darkness at the last moment, freeing the unicorn." tt0112508,JRpouK0KmWQ,"When Ernie has an accident"", Billy makes it cool for everyone to pee in their pants." tt0089755,j91DsC7XvdQ,Karen gives a moving speech at Denys' funeral. tt0089469,IxjYJayuWoA,Jack uses flattery to soften Meg Mucklebones before chopping off her head. tt0089469,U6iLlH0l-4Y,"Lili, who is under a spell, is awakened by Jack with a kiss." tt0089469,A9KjjvZE0Lo,Lili tricks Darkness into thinking she is on his side. tt0089469,cAePzEGsP5U,Oona impersonates Lili to try to steal a kiss from Jack. tt0089469,b2mm79vRuzA,"Gump asks Jack a riddle, the answer of which will determine whether he lives or dies." tt0089469,8OTa_eNimUE,"When Lili challenges him to find her ring, Jack jumps into the river. Meanwhile, orcs kill a unicorn which transforms the world into winter." tt0089469,5VMWNnFoi2g,"Jack wounds Darkness with the unicorn horn while the fairies let the sunlight in, sending Darkness hurling into the abyss." tt0297884,WEQOeQBpxvw,Frank cheats on his wife with a man. tt0089469,QB5379zBbtA,Jack asks the unicorn for forgiveness and realizes what they must do to restore the world to its former beauty. tt0089469,X7futPJdeOg,The Lord of Darkness sends Blix on a mission to slaughter the enemies of Darkness. tt0089469,Ksk7wPX-MI4,Darkness attempts to charm Lili with talk of dreams and love. tt0297884,2wnVCoeCXbY,Frank confesses to his wife Cathy that he's fallen in love with another man. tt0297884,sHwRx4bc7fM,"Frank accuses his wife, Cathy, of having an affair with a black man." tt0297884,FFtP2SGrQsk,Sarah is attacked by three white boys. tt0297884,EbyOz1yJgYs,"Cathy runs into Raymond at an art show and spends time talking alone with him, which sparks judgement from the locals." tt0297884,kiW7cj162rE,"An inebriated Frank tries to make love to his wife, Cathy, but instead turns violent." tt0297884,1E7f6xOPL3A,Frank visits Dr. Bowman to start heterosexual conversion therapy. tt0097216,4G7TTDEHl5o,"Mookie throws a garbage can through Sal's window, leading to the pizzeria getting burned down." tt0297884,l84trT4b6yE,Cathy catches her husband Frank with another man. tt0297884,fbZelII-89A,Frank Whitaker goes into an underground bar full of men. tt0297884,uSNvF3CEzno,Cathy Whitaker is frightened when she sees a black man in her yard. tt0097216,TQ4y7GPeFBY,A confrontation between Sal and Buggin Out turns violent when Sal destroys Radio Raheem's stereo. tt0097216,qru3WdOfj8s,Da Mayor confronts Mother Sister about why she always is so mean. tt0097216,cMNvYJ6O_Ks,"When his radio goes dead, Radio Raheem gets into a confrontation with the Korean storekeepers over batteries." tt0097216,zeyaRxHhVu4,"Tina orders a pizza so that she can see Mookie, but refuses to do the ""nasty"" because it is too hot." tt0097216,pa-oUPTr9LI,"Radio Raheem shows Mookie his new rings and tells him the story of ""Love and Hate.""" tt0097216,HbA1YOueC_A,"When Sal refuses to put pictures of black people on the wall of his pizzeria, Buggin Out starts a commotion." tt0097216,jc6_XgtOQgI,"A fight nearly breaks out when a white neighbor, Clifton, accidentally scuffs Buggin Out's new sneakers," tt0097216,gLYTObRhcSY,Mookie calls Pino on his hurtful racism and other neighbors tell how they really feel about the other races. tt0112508,ba2VaalmijM,"Billy wins the Decathlon, but Eric freaks out and pulls a gun on him." tt0112508,YGeFi3Ap61E,"After getting beat up by Veronica, Billy sings a song about how he's going to change his life." tt0097216,wCL3OtOzYuQ,Mister Senor Love Daddy wakes up the neighborhood with his distinctive radio sounds along with the day's forecast. tt0112508,KIAzalQUui4,"Billy celebrates passing the 2nd grade, but gets in trouble with the hot teacher when he mocks a 3rd grader." tt0112508,aF3x3Bad2Wk,Veronica and the bus driver help Billy study for the Academic Decathlon with a stripping game. tt0112508,B0vKK-4qJac,"Billy competes against Eric Gordon in trigonometry, home economics, track, chemistry, music, and drama." tt0112508,6vNGX3c03gM,Billy realizes that he is a loser at high school and is bullied by one of the O'Doyle boys. tt0112508,o7WSgC9oGic,"In third grade, Billy is ashamed of his bad cursive writing and runs away." tt0112508,wf-gIUYRCyk,Billy has a bath and then ruins his father's business dinner with his terrible manners and gibberish talk. tt0127536,itHVWrhsRSc,"Elizabeth goes to visit Queen Mary and beg for her life; Mary insults her mother, but agrees not to kill her." tt1133985,ZjPiVMyfJPs,Sinestro rallies the Lanterns and offers a brief pep talk as an unknown enemy draws near. tt1133985,ql_VifCJG7I,Tomar-Re welcomes Hal to the planet of the Lanterns. tt1133985,rukUxz5J7qg,"Hal uses his wingman, Carol as bait during a flight test." tt0160184,aHix4qGIYHI,"Slater reduces the macho Noah to tears, and then taunts Malloy." tt1133985,weCxCxIIjHA,Dr. Waller shows off the alien corpse to Dr. Hammond. tt1133985,LOACsaFA_FY,The Parallax monster makes its way to Earth. tt1133985,eKLKoFIrXgg,Hal recites the oath of the Green Lantern. tt1133985,mIZOUXRYVyE,Hal is given a ring when he finds Abin Sur in a wreckage. tt0160184,T4mRbRYaf1Q,"Malloy defeats Slater in a duel to the death, thus satiating his vengeance." tt1133985,zWXZyd07k2Y,Carol gives Hal a hard time before his flight test. tt0160184,uCjC3h_Gc5E,Malloy gives Slater the slip... and some bullets. tt0160184,eE-FSOWD_ac,Doc meets his end at the hands of a mysterious intruder. tt0160184,aUhex6wK5rI,"Malloy realizes that one of patients at the detox center is not a cop, but a murderer." tt0160184,PzZHiGYjhss,"Malloy gives chase to the killer through a labyrinthine factory, only to lose sight of him at the end." tt0160184,-OOTo2P1ivQ,Suspicions and tensions rise as Jaworski is accused of being the killer. tt0790618,hBVvERsq-Kk,Julia lashes out at Thomas and surveys the aftermath of the party. tt0160184,chDaFqJMDeM,Malloy looks at the body of another dead patient as the specter of foul play hangs over the scene. tt0160184,eevdCdOddZQ,"Malloy enters a rehab program for cops, meeting with the Doc and a couple of the other patients." tt0790618,k5oJnFivwSM,Tori and Sylvia struggle to keep it together when Mr. Turner and Mrs. Turner return and ask about their kids. tt0790618,3zsTC5aeypU,Julia bribes her sister Angie to stay in for the night. tt0790618,TBiLIqhNiAM,Eddie demonstrates to Riley how to pick up senior girls. tt0790618,cb9FUUFtJmc,Brianne and Dawn meet in the bathroom for a kiss and argue about making their relationship public. tt0790618,vYyz6nq1mBE,"Tori arrives for a babysitting job with her friend Sylvia, who fails to watch her language." tt0160184,LaYpVhckcL8,Malloy is taunted by a mysterious serial killer who threatens to kill his wife. tt0790618,lnSoyix5fA0,Mr. Ford wakes Julia and Angie for their last day of school before summer vacation. tt0790618,4gAFIGnJ8zk,Julia drags Pete out of bed in a failed attempt to get him to school. tt0112431,LGoKKhQPggM,Babe takes the field amongst a crowd of disbelievers and attempts to take his place with the sheep. tt0112431,0zHmeTeLgMY,"Babe uses his manners and polite persuasion to move the sheep to the pen, winning scores of 100 from all of the judges." tt0112431,MbFux7_RQpA,Rex convinces the sheep to give him the sheep password in order to save Babe and help him in the competition. tt0112431,83LNTbeatHE,Farmer Arthur Hoggett dances for Babe in order to cure him of a cold and wilted spirits. tt0112431,Z0pOWMHRgfI,"Babe surprises everyone when he convinces the sheep to move not with force like the sheepdogs, but with a polite request." tt0112431,oKXV-XQzUrY,"As Christmas dinner approaches, Ferdinand the Duck panics that he'll be the meal, while Babe naively celebrates." tt0112431,U1v_Ed4QFC4,"Ferdinand the Duck enlists Babe for a secret mission into the house, past the feared cat Dutchess." tt0112431,KRBLeqsoRew,Fly the Sheepdog comforts the farm's newcomer Babe who misses his mom. tt0112431,CHnbS6ZthM4,Mrs. Hoggett worries about her husband's strange idea. tt0343135,nWWSMiBag1k,Reuben convinces Polly to stay with him by eating vendor nuts off the sidewalk to prove he's not such a square. tt0343135,JnBh7KBjgwM,Stan toasts his newly married employee Reuben and wife Lisa. tt0343135,2yhGVaVwceE,Reuben jealously confronts Javier and later tries to carefully critique Polly's graphic illustration. tt0343135,ddGwvveSXxM,Reuben clogs Polly's toilet with a very special towel. tt0343135,C7ke6vWUu18,Sandy advises Reuben to give his date a light spanking during their first make out session. tt0343135,enJJeOqHbqE,"Playing a little 2 on 2 pickup basketball, Reuben gets a mouthful of sweaty, hairy man chest all up in his grill." tt0343135,bMVWECam8EA,Reuben is liberated when Polly encourages him to stab the decorative pillows on his bed. tt0343135,KOXE9k1TX-s,Stan and Reuben have a little heart to heart in the men's room. tt0343135,uDffmOSVnBM,"While Reuben prepares to asks Polly to move in with him, she finds his ""risk analysis"" of her on his computer." tt0343135,hJckGOSkTG0,Sandy gives an impassioned speech on why Reuben's company should insure the dangerous Leland Van Lew. tt0114898,HOpLncx62oY,"When the Mariner threatens to kill Enola, Helen offers up her body as a bargain." tt0114898,ZgsJGHxZxcg,"When a seaplane attacks, Helen kills the gunner with a harpoon, but nearly destroys the Mariner's ship." tt0114898,LoSLZP0e-M4,Deacon's men attack the atoll with overwhelming firepower while the Mariner sits trapped in his cage. tt0114898,lZQF83kf-a4,"Using himself as bait, the Mariner catches a gigantic fish for dinner." tt0114898,orgbJEoA7ak,Helen and Enola free the Mariner who attacks Deacon's men and steals back his boat. tt0114898,KOWckOfARBE,Deacon gets a new eye. tt0114898,xy6Ak1DYReI,"The Mariner is sentenced to be ""recycled"" but the sentence is delayed when Smokers attack." tt0114898,0zJpr-bB1sg,The Mariner steals back his boat and uses Deacon's own weapons to destroy the Smokers' ship and escape. tt0114898,VKFsmZhQWtg,"After he is ripped off by a Drifter, the Mariner destroys the man's mast, leaving him adrift for the Smokers." tt0114898,Fv9_YOL38MM,"When the Elders discover that the Mariner is a mutant, they capture him and plan to put him on trial." tt0259567,W6GjHSOtv6o,Drew starts to panic when Julia mentions the desire to get married and have kids. tt0259567,0s0m7xO0S9A,The fallout from taking a pregnancy test pushes Drew and Julia further apart. tt0259567,dxmqqCK2FaQ,"Drew meets the eccentric celebrity, Monty Brandt." tt0259567,AEMXmcWOnwU,Drew tries to convince Julia to drop her post-graduation plans and move to Los Angeles with him. tt0259567,03HGdrM25FA,Drew shows up at Julia's house hoping to win her back. tt0259567,Gq75bSHMKPw,Monty terminates his business relationship with Drew when he learns that he failed the Bar and lost his job at the law firm. tt0259567,YpIkOtgOdbo,Julia and Drew's quarrel escalates to where Julia questions the standing of their relationship. tt0259567,ZBLtiP24yTA,Danny graces Julia with his theory on how men and women experience monogamy differently. tt0259567,53GIt1w0LYY,Drew and Julia click on their first non-date. tt0259567,31KYorrCgag,"Drew and Julia argue over the implications of the word ""pussy.""" tt0300532,sT-wJhtlMGs,"Anne Marie takes another run and gets slammed again, hitting her shoulder on the reef." tt0300532,aRmaCLDJ8Xk,"Anne Marie catches a beautiful wave, scoring her into the next round, but she gets dragged under." tt0300532,FFkQN5DyvXU,Anne Marie gets hit with a cold dose of reality when she hears the NFL wives talking about her behind her back. tt0300532,mwAlagYhRV8,"During her first heat at the Pipe Masters Competition, Anne Marie sees her competitor wipe out on a huge wave." tt0300532,HKXId9qgGfQ,Anne Marie has a heart to heart with Matt who tells her to stop whining and just do it. tt0300532,ZTVR1PCRopA,"While surfing Pipeline, Anne Marie is overcome with fear and gets slammed by the wave." tt0300532,3tSWRJ3j9fs,Anne Marie gets dressed for the Luau while Eden warns her not to get too attached to Matt. tt0300532,COGBbUM8F14,"When another surfer drops in on her wave, Anne Marie is forced to bail and breaks her surfboard." tt0300532,PNJ_FxaMYUw,"Disgusted by a very messy NFL Lineman's room, Anne Marie calls him out publicly and shows him how to throw away his used condom." tt0163651,Yjs3BLAsvOc,"Sherman gets publicly outed at Prom as a virgin and a liar, and wets himself in front of everyone." tt0163651,FdxUNsKZ4T8,"Straying from the party, Finch runs into Stifler's sultry mother." tt0163651,bQWaXlsdyko,"Stifler gives Finch some laxative, which creates an embarrassing moment at school." tt0163651,sKfQGRwlm9Q,Jim sets up a web cam so he and his buddies can watch sexy Nadia undress. tt0163651,MH619vxtNdo,Jim asks Michelle to Prom as she spouts stories about Band Camp. tt0163651,8sClW0qW9LA,Jim's dad has a frank talk with Jim about masturbation. tt0125439,RESwG23_YGw,William gives Anna the reasons why their relationship wouldn't work. Then Anna shows him why he may be making a mistake. tt0163651,MvzZbUKxNdc,"When his mom walks in on him masturbating, Jim tries unsuccessfully to cover it up." tt0163651,cgXTRSSX3cc,"The guys are astonished when even Sherman got to do the wild thing ""all night long.""" tt0163651,NCAOKR1jpp0,Jim has sex with his mom's freshly made apple pie and is caught by his dad. tt0163651,BXqeQxRvQGY,"When his mom walks in on him masturbating, Jim tries unsuccessfully to cover it up." tt0163651,zStjjc7SBto,"Oz, in an attempt to put the moves on a college girl delivers the line, ""Suck me, beautiful"" only to get rejected." tt0125439,3F8oJh3J1T0,William realizes it must be hard on Anna having her life in the spotlight for all to comment on. tt0125439,hZ8PfLIc8MI,"Anna meets Wil's little sister, Honey. Honey proceeds to freak out." tt0125439,JexO-N39Nzg,Bernie and Anna make small talk about their professions. Bernie does not realize Anna is a successful actress. tt0125439,PTjIRQU_HdM,Anna takes a shot at convincing everyone she's got the toughest life. tt0125439,_6O2sYLkuO4,William says goodbye and Anna spontaneously kisses him. tt0125439,-xQ5nH_-yyQ,"William infiltrates Anna's press junket to apologize for his behavior, but the encounter is quite awkward." tt0125439,ArlsU2_cUbg,A thieving customer at William's bookstore asks Anna for her autograph. tt0125439,kxBu82Dte10,William runs into and spills orange juice on Anna and offers to help her clean up at his place across the street. tt0391198,6WWdim-OLok,"Karen attempts to get her boyfriend, Doug out of the house before Kayako kills them both." tt0391198,T59ufBxosHI,Detective Nakagawa's attempt to burn down the haunted house is interrupted by a drowning boy. tt0391198,Fypw_s62Q0s,"Alex discovers that his employee that has been missing, Yoko, has returned to the offices." tt0391198,uI8lzoeTASI,Susan returns to her apartment but finds no comfort in the safety of her bed. tt0391198,z1cXKdmKuV0,"When Susan begins seeing apparitions in the stairwell at her work, she turns to the security guard." tt0125439,uJPI1qu9bE4,William justifies his decision to break it off with Anna. His friends try to be supportive but he realizes he has made a mistake. tt0391198,gI7UY6YCAoE,"While tidying her client's house, Karen investigates a noise in a taped up closet, where she discovers a young boy." tt0391198,dfrZp14tFjA,"Maria wakes up to see her husband, Peter jump off their balcony." tt0391198,mgU73GKlSFw,"Having survived the fire at her client's house, Karen is taken to the hospital, but her haunting is not over." tt1645080,P653N6uf3Y8,"George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit." tt1645080,bPavpV1D-g8,"George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit." tt0391198,yiRcSZp7tYg,"A social worker in a haunted house, Yoko, investigates strange noises in the attic." tt0391198,4iW0kneOMyw,"Matthew comes back to the house to find a mess and his wife, Jennifer in shock." tt0463985,mFglGV3n5SM,D.K. chases Han and Sean through crowded Tokyo streets. tt0463985,fvoNncvOHfc,D.K. crashes and Sean wins the race. tt0463985,kvVlP50LSq8,Sean and D.K. duke it out as they race down a steep mountain. tt0463985,Kjv-HBYitgk,Sean and his friends build a 67 Mustang into a drift racer. tt0463985,Zml7qQpL8Yo,"After an intense race through Tokyo, Han dies in a fiery explosion." tt0463985,926SVUFeJ94,The mountain race begins for Sean and D.K.. tt0463985,qOKE4dxjayU,Neela takes Sean for a late night drift ride in the hills. tt0463985,UbTBbTDjjHI,Sean finally masters the art of drift racing. tt0463985,Y29DgVgmE2M,"Morimoto tries to wreck Sean, but has a head-on collision." tt0463985,szpq76d4ipk,Sean and Han try to lose D.K. in a race through Tokyo. tt0414387,yElIQDAEtOg,Elizabeth defends herself confidently as Lady Catherine interrogates her about her unusual upbringing. tt0463985,iMP3uLZl6UE,Han takes Sean to retrieve some money for him from a huge guy with a paw tattoo. tt0463985,s-EheX9m-dE,Sean challenges Clay to a race and the winner gets the girl. tt0414387,bFsgLhx9dxg,Darcy comes to Elizabeth and asks her if she will still have him. tt0414387,ONaPfzjl8qc,Lady Catherine makes a visit to Elizabeth and interrogates her until she admits that she is not engaged to Mr. Darcy. tt0414387,z9SXvUdM_iw,An intimate connection forms between Elizabeth and Mr. Darcy as they share sarcastic remarks during a dance. tt0414387,LHv4eHp_gUM,The music and dancing stop when Mr. Darcy and his friends enter the room. He and Elizabeth share a glance. tt0085959,lhbHTjMLN5c,Monsieur Creosote underestimates his stomach when his waiter offers him a parting mint. tt0414387,DNZ5NXKtdxs,"While arguing, Darcy judges Elizabeth's pride, while she tells him that he is the last man she would ever marry." tt0414387,8U56CTlGkx8,Darcy delivers a letter explaining his past to a catatonic Elizabeth. tt0414387,9yEylIfDkms,Elizabeth definitively refuses a marriage proposal from Mr. Collins. tt0414387,VSMKvHRbHC8,Elizabeth lovingly watches her sisters become giddy over the idea of Mr. Bingley – a potential new suitor – as they learn he will be attending the ball. tt0085959,Qbnv6eHKjCQ,"When a woman comes to the hospital ready for childbirth, Doctors are more interested in ""the machine that goes ping"" than their patient." tt0085959,eyCCuHC08bY,"Moments before he is about to make a battlefield charge, the Sergeant's troops give him an assortment of clocks as goodbye gifts." tt0085959,ucgU2DJlBiw,"When the Sergeant Major asks his troops if they'd rather be doing something other than marching, he loses all his troops." tt0085959,PDBjsFAyiwA,"A good Protestant husband discusses the virtues of being a Protestant with his wife, most notably, the freedom to wear a condom." tt0085959,WQEkAbLJ5L8,Fish in an aquarium contemplate life while watching their friend being eaten. tt0085959,kLNdMY1JlR0,Noel sings a cocky little tune for the restaurant diners. tt0085959,g8fheDIG_RA,"Nuns, priests and Catholics alike dance in the street, performing the musical number ""Every Sperm is Sacred.""" tt0085959,Zx0ME65y72E,The good Monsier Creosote orders everything on the menu… mixed in a bucket. tt0085959,kntQNeSge5s,Graham Chapman and the troupe have a musical moment in the grand finale. tt0085959,UGBZnfB46es,"When the middle of the film approaches, the filmmakers ask the audience to play a game of ""find the fish""." tt0132347,QXFR1L_gOg8,The team auditions a never-ending stream of lame superheroes to join them. tt1019452,6HJqPZ-KmZs,Larry dreams that he is lecturing his students on the uncertainty principle when Sy confronts him from beyond the grave. tt0454848,OS2udCdOuqA,Dalton and his team make quick work of the bank's security forces and take control of the building. tt0106308,pFriRcIwqNU,"Ash blasts a sword right out of Lord Arthur's hand with his trusted shotgun and then gives a speech about his ""boomstick.""" tt1013753,B4zWUki6-WE,Harvey gets on his soap box and announces his candidacy for San Francisco City Supervisor. tt0120616,NW2QM6c1wAI,"Evelyn tells the warden that Rick knows how to find Hominoptra, and should be set free." tt0209163,6nX0100wUB0,"Rick intercepts Imhotep from killing the Scorpion King and instead, does it himself." tt0452608,uNE1lEBsBmM,"After surviving a brutal crash, a conceded Grimm thinks he is invincible but quickly gets smashed and killed by Joe." tt0076723,Pdi_kASSsJs,"After a period of Old-Time Hockey,"" McGrath fires up The Chiefs by reminding them what is really important." tt0096320,1kejVGS-5q0,"Vince gives Julius a make-over, including new clothes, a new walk and shades." tt0315733,JzOSF71-kl4,"Mary tries one last time to convince Paul to agree to artificial insemination, but the fact that Mary got an abortion while they were separated convinces Paul otherwise and he ends the relationship." tt1019452,3tfI9tTzlI0,Larry receives an unassuming call from the Columbian Record Club concerning a membership he never signed up for. tt0132347,m9rBv4Dn3Bk,The Spleen shares his farting power with the team. tt0132347,XFC2o44koIA,The group rallies together and decide to join the fight and leave the egg salad sandwich behind. tt1019452,lkq-Fd9TU8k,"Larry tries to visit Rabbi Nachter for consultation, but is forced to see Junior Rabbi Scott, who educates Larry on perspective." tt0132347,eKeTSR1yYfY,The Shoveller and the team terrorize Casanova's car and his crew. tt0132347,VUG-5kLRjeY,"When Mr. Furious's boss Sally gets mad at him for being late to work, he manages to contain his temper and not blow up." tt0077975,q7vtWB4owdE,"Bluto delivers a spirited, if historically inaccurate, speech to the Deltas." tt0120693,H1JCgM_LHAg,"Thurgood and his friends wear wires to their meeting with Samson, but get discovered when the police are too high to save them." tt0120693,dHPnUPFcxdE,"Trying to make the most of his last $8, Thurgood gets creative on his date with Mary Jane." tt0137363,WtdVnmI_nYM,Michael learns that Grant has been talking about his deceased mother with Oliver. tt0137363,KsGS0BJ49LQ,Oliver defends his past to a skeptical Michael. tt1341341,_1F59-J8Iwg,Whit bares his soul. tt1423593,s4heu0mPm-I,The party-goers are forced to take two cabs. tt1341341,cLApJ5OJaLg,Sam attempts to win Zoe back. tt0467200,XjC8-nEGnrE,"Consolidating her power, Anne tells Mary that she has been banished to the countryside." tt1341341,iGig4Dk3tXc,Sam and Marshall attempt to sneak into the party. tt0087182,aoPKajvq3gE,"Paul challenges Feyd to a knife duel, and Paul dodges the poisoned blades in Feyd's suit to deliver a fatal blow." tt1175709,kvhcXo9QzqQ,"Real-estate tycoon Sanford Marks and son David converse about how David met Katie,. Her blue collar background doesn't fit the country club lifestyle, but David finds her to be a welcomed breath of fresh air in the stuffy atmosphere that is the upper class." tt1175709,8rsx2IP3HWY,Katie sits on the couch with Deborah for small talk and learns about the previously unknown death of David's mother. tt1175709,mWblxPany0E,David asks Katie to come back home while she begs him to let her go. tt1175709,4t2pP2KLlgU,"Katie and Lauren discuss Katie's potential move home. Meanwhile, the waitress brings Katie some bad news about her check." tt1175709,1YBkXbf8dg0,"David preemptively apologizes for anything his father, Sanford Marks, says to Katie as they check in to the dinner party." tt1175709,D1Sh5qIqc7Y,David has Katie close her eyes for her surprise – a new house. tt0087182,TQeP6GWU0e4,"Paul trains the Fremen in the use of the weirding module, a sonic weapon that translates sounds into attacks of varying potency." tt0087182,Bj7R_2WWdKs,"Paul climbs on top of a sandworm and learns to control it, proving the legend true and inspiring the trust of the Fremen warriors." tt0100814,g5e3qoREpuA,"Cornered by the smartest of the creatures, Val suddenly has a plan." tt0087182,mWq15lDh8yM,"Baron Vladimir Harkonnen vows to kill Duke of Atreides, and murders a minion just to prove how ruthless he can be." tt0087182,bIVzK-h6qao,"Paul discovers a hunter-seeker in his room sent to kill him, but he grabs the deadly device as it aims for the Shadout Mapes." tt0087182,1G5jMgx8GVU,Paul watches as a giant sandworm destroys a mining rig on the planet of Arrakis. tt0087182,AGqdE1NdMTg,"The Emperor consults with a guild navigator, who orders the murder of Paul, the son of the Duke of Atreides." tt0100814,CfAS7ONO8OU,Rhonda comes up with a plan to pole vault from boulder to boulder to escape the underground creature. tt0087182,kJsYKhEV6o0,"The Reverend Mother forces Paul to place his hand in a box which subjects him to excruciating pain, and he withstands more pain than anyone before him." tt0100814,qFNBUs7O-h4,The Gummers defend their homestead with serious firepower. tt0100814,u9O_Xs8wAZk,"When a girl on a pogo stick attracts the creatures, Rhonda gets tangled trying to escape." tt0100814,mbKEarx9CCs,Val and Earl make a grisly discovery at a local sheepherder's place. tt0100814,LwbFwVf8yoE,"Fleeing the creature, Val and Earl lead it smack into the wall of an aqueduct." tt0087182,KYUolurihOQ,"Gurney challenges Paul to a round of shield practice, which ends in a draw." tt0132347,b5I94bT23cQ,A frustrated Mr. Furious confronts The Sphinx while sewing new costumes. tt0100814,Y3kXNEX1Ghs,"The creature rams through the floorboards of Walter's store, wreaking havoc." tt0100814,7bFi99Kojrc,Val and Earl discover the town drunk straddling an electrical tower. tt0132347,9DJWMVR_yfM,"The Blue Raja, Mr. Furious, and The Shoveller bicker as they order food at a diner." tt0132347,FfdJdZ5_guM,Mr. Furious defeats Casanova. tt0100814,kFhIMrW1Yk4,"Ignoring a warning from Earl, two road workers meet a grim fate." tt0132347,JuhTQwzizDI,Casanova has a meeting with Captain Amazing and captures him with a drugged drink. tt0132347,aDFJMSlmxBg,Casanova explains his plans to kill Captain Amazing. tt1452628,7pDEOCYPRf4,"Distracted by his phone, Luke misses the obvious signs that something is wrong with the world." tt1421051,f276MnhGqGg,The tension can be cut with a knife on the promotional set of Johnny Marco and Rebecca's new film. tt1452628,V80rHpEZCl0,"Paul, a lonely projectionist, roams the halls of the empty mall with a security guard, wondering where everyone went after a major power outage." tt1421051,YjQP7xc5P8Y,"After breaking his arm during filming, Johnny Marco is woken up by his daughter Cleo signing his cast." tt1452628,3-fzc0e4dD0,"In a dark hospital, Rosemary comes across a light source which she finds to be a patient with a chest spreader opening his chest cavity to the stale, contaminated hospital air." tt1452628,WSyi9bIVryk,Paul gets trapped in a hallway where a shadowy figure douses any light source it comes close to. tt0021814,F5eqkWRWZ7c,Renfield describes in detail his dream about rats while Dracula watches on. tt1421051,fOgpQEngn0c,Johnny Marco and Cleo return from ice skating and notice a car following them. tt0021814,Bzb3rASU-pM,Van Helsing squares off with Dracula and scares him off by holding up a crucifix. tt0021814,dTr8dXob7YI,Dracula meets Van Helsing and charms Mina Harker. tt1019452,uvIZ4ST6HqE,Alren approaches Larry about his tenure review and Larry has a small breakdown. tt1019452,SAPKjWHikzM,Danny stumbles through his bar mitzvah stoned while Larry learns who has been writing letters to the tenure committee. tt0021814,o_N-H_5Pvu8,Dracula welcomes Renfield to his castle. tt0021814,KjDfOAhtWwo,Renfield meets an intimidating Dracula for the first time. tt1019452,uyj1CeZt23A,"Detectives come to the Gopnik residence to warn Arthur that his gambling habits will lead to an arrest, which culminates in a family argument." tt1019452,TQSMmwQyEjk,Larry meets with his wife and Sy at Ember's to discuss living arrangements during their separation. tt0021814,F9b76RWM7qE,Martin tries to reason with Renfield but his obsession with eating spiders is all-consuming. tt0021814,665wQwXkq6M,Professor Van Helsing warns his servant that no bullets can kill the large gray bat. tt0100814,K5IU4bPS_S8,Earl successfully lassos an explosive as a trap for the worm creature. tt0021814,Tq8robO5eJ0,Dracula is consumed with thirst when he sees the blood on a man's hand. tt0021814,YSmSuiMNbDI,Dracula awakens his vampire wives. tt0021814,sbz_Xq2aEQQ,The townsfolk warn Renfield of vampires in the area. tt1019452,SGzmYFcravM,"Larry meets with his lawyer who tells him that one of the firm's partners, Sol, has good news regarding Larry's property issues." tt1019452,b8U1na74Bcc,"As Larry alters Clive's grade, he receives a prophetic phone call, while the Hebrew school evacuates the classroom because of the impending storm." tt1019452,aQQsBjOrNMY,"Near the point of a breakdown, Larry tries to confide in Rabbi Marshak, but the Rabbi's secretary denies him the meeting." tt0454848,P90noIrmLZg,Dalton explains how he hid behind a false wall. tt0454848,j1C0Tw80Fgk,Dalton gives Frazier a riddle and then asks for sandwiches. tt0454848,sYNUp5rAZJo,Dalton hangs out with a kid in the bank vault and asks him about his violent video game. tt0454848,K-xthcJWXn0,"Vikram, upset about being beaten and mistaken as a criminal, gets questioned by the detectives." tt0454848,4disuwEvw-w,Dalton makes an example out of one of the hostages for trying to pull a fast one. tt0454848,uzgQ_xwWlkQ,Dalton and his team release all of the hostages simultaneously during a chaotic scene. tt0454848,qCv3989nvog,Frazier watches Dalton shoot a hostage on the security camera then rushes over to discuss their negotiations. tt0762107,Tm3raIkeseE,"When Larry agrees to let Chuck sleep in the same bed, he is awakened with a rude surprise." tt0454848,JB9rdCKgGuo,Dalton makes an example out of one of the hostages for trying to pull a fast one. tt0454848,NE0ne430gbA,Dalton drops some knowledge on what motivates him. tt0762107,Jc3GBDJ2sK0,"The Asian Minister marries Chuck and Larry and helps them celebrate at the ""reception.""" tt0414055,sUv04cGjaDI,Sir Francis Walsingham reveals the Babington plot to Elizabeth. tt0414055,ofYq-2TXzTs,Sir Amyas Paulet accuses an indignant Mary of treason. tt0414055,CMvdeSxmPKg,Elizabeth asks Raleigh if he could love her. tt0454848,trGyimjcGRI,Frazier makes a dangerous tactical error when he tries to apprehend Dalton in the bank. tt0762107,TTX3bYbKAl0,Duncan tells Chuck that he is gay and asks if Chuck will help him tell his parents. tt0232500,hOz9L1KrJJY,Jesse is gunned down by Tran and Lance. tt0414055,WSUWoBeJ6dg,"Raleigh tries to comfort Elizabeth with a positive thought about the human condition, but she laments that she has given her soul to England." tt0762107,seMHoTTskQc,Things get off to a rough start when Chuck moves in and shows Larry's son a porno magazine. tt0762107,K-cBT5AxRrg,"Trying to defend his son, Larry gets in a fight with Steve, but Eric has no problem defending himself." tt0762107,isBwMtlWLeE,Alex changes in front of Chuck and then asks him to feel her breasts. tt0232500,UmmXGbFASC0,Brian and Dominic take care of Johnny and Lance. tt0762107,Su5vMTdI0yY,Glen Aldrich from the Pension Department visits to check up on Chuck and Larry for possible fraud. tt0762107,zdja5DSb2O8,Chuck and Larry find a chapel and work out wedding preparations with the Asian Minister. tt0762107,xw13vA86I-I,Chuck and Larry rescue an obese man from a burning building. tt0232500,B4xzP6H_N1E,"When Brian saves Vince from the semi, his identity as a cop is revealed." tt0232500,kLJCWb1apYo,Jesse loses his ride in a race for pink slips. tt0762107,Dwnkxpu0l3c,Larry tells Chuck about his plan to solve his pension problem — Domestic Partnership. tt0232500,6hxOoM0-NJI,Brian meets Johnny Tran and Lance who trash his car because of bad blood with Dominic. tt0232500,WtnTZSJndPc,Dominic tells Brian about his father and the way he lives his life. tt0232500,nfV87TgYH78,"Dominic challenges Brian to one final race, but neither one of them expect the obstacles that get in their way." tt0232500,pB-bN-RkJLM,Dominic lets Brian know what winning is all about. tt0232500,pZZ60jrw6cg,Brian experiences the rush of street racing for the first time when he races Dominic. tt0232500,sBDEE3_Z-cw,"Letty races a guy at ""Race Wars"" and smokes him like a cheap cigar." tt0077975,pX71mALOPKs,The Deltas destroy Faber's homecoming parade. tt0077975,DZN4r8p6KbU,"Bluto spits mashed potatoes on the Omegas, inciting a food fight." tt0077975,FMENQeCbxfI,"Otter calls on his Delta brothers to empathize with ""total loser"" Kent Dorfman." tt0077975,18eaNSxhK5c,"The Deltas bomb their psych exam, prompting a stern warning from Dean Wormer." tt0077975,0Dy2fo6E_pI,"Golfing near the ROTC, Otter and Boon are outraged by the sight of an officer abusing their pledge." tt0077975,UKMuVFz3MOQ,"Dean Wormer reads the Deltas' abysmal mid-term grades, then expels them." tt0077975,ROxvT8KKdFw,Otter makes a stirring defense of the Deltas' drunken shenanigans. tt0077975,EtSPFXj_eZM,Flounder accidentally kills Neidermeyer's horse. tt0137363,sarN01WcuZY,Michael is wrongly accused of bombing a DC Federal building while the guilty neighbors go unsuspected. tt0077975,1tfK_3XK4CI,Dean Wormer and Greg conspire to have the Delta fraternity expelled. tt0137363,ZJOTrLdxCPE,Michael Faraday and the police are lured into a federal building parking garage as a bomb is detonated in the trunk of Michael's car. tt0137363,nJ98f7z14WI,Michael uses force in an attempt to convince Oliver to call off the terrorist bombing. tt0137363,SgwBAXfvdFE,"Michael discovers the truth about his neighbor, Oliver." tt0137363,j7EvXsSJHQc,Michael follows his hunch and researches his suspicious neighbor. tt0120693,1tBCcfkkDKo,Thurgood and his friends break in and rob the weed lab but get busted as they try to escape. tt0137363,O6ZWqQ53cJM,Brooke runs into Cheryl after making a frantic phone call. tt0137363,EUtdnTk7wIE,Michael pushes his university students to think critically about terrorism and its aftermath. tt0120693,H0AnJKKwhQ0,"Scarface quits his job, Brian gets fired and the crew picks up a new member -- Jan." tt0137363,BROZYppqsf8,Michael Faraday stumbles upon a severely injured boy and rushes him to the hospital. tt0120693,XLScUvabSr4,Scarface comes up with a plan to raise Kenny's bail -- get weed from Thurgood's work and sell it. tt0120693,oh3KwtatlkY,"When Mary Jane gives Thurgood and his friends a ride back from prison, Thurgood asks her out." tt0120693,uUPHlAbAf2I,"Trying to kick his marijuana addiction, Thurgood goes to rehab... and gets booed off the stage." tt0120693,GDHVi3h6ZXw,"Recruited by a Scientist to fulfill a prescription, Thurgood picks up a pound of medical grade marijuana." tt0120693,N3ug0dVCyeE,Things take a dark turn for Kenny after he feeds all his munchies to a diabetic horse who turns out to be a cop. tt0120693,SM0CkReuGMQ,Kenny is sent on a munchie run by Thurgood and his friends. tt0170016,y8MWkDexzRQ,"Cindy Lou Who interviews the two women that raised The Grinch, and learns all about how special he was from the very beginning." tt0170016,Lxuqbh2tjTs,"Cindy Lou Who catches The Grinch, dressed as Santa, stealing her Christmas Tree, and asks him to visit The Grinch." tt0170016,c8m6M4RV8p0,"The Grinch dons a Santa suit, behaving in a series of un-Christmas-like activities, while singing." tt0170016,hE3jShGPscQ,The Grinch finds the strength to save the presents from falling down the mountain once he sees that Cindy Lou is on top. tt0115624,BVrhE9NOwww,"Barb poses as a prostitute, and when she locates her actual target, she gets her client Ruben out of the way." tt0170016,p8J-YmVs1j0,The Grinch's heart grows three sizes when he realizes that Christmas still goes on in Whoville even if he did steal all the presents. tt0170016,C_4LmbuSmpI,"The Grinch gets angry during the Christmas ceremony, mocks the holiday and its insincere traditions, and burns down the Whoville tree." tt0170016,0mGmEE20CR0,"The Grinch is visited by a group of Whovenile delinquents who stop by as a dare, which inspires him to visit Whoville and raise a ruckus." tt0170016,0lq1JIWQSlc,"Martha May recalls the time her classmates were very cruel to The Grinch on Christmas, and how upset it made her." tt0115624,eFs_YLy3Ld8,Barb gets the contact lenses to Cora and says goodbye to Axel as Willis professes his love. tt0170016,nBmNcy4zZNU,"The Grinch is visited by a group of Whovenile delinquents who stop by as a dare, which inspires him to visit Whoville and raise a ruckus." tt0115624,cKewmzrevAw,Barb meets with criminal kingpin Big Fatso to broker a deal for the sale of the contact lenses. tt0115624,ct-PElgfWJY,Willis gives Barb a grenade which she uses to create a diversion to enable the escape of Cora and Axel. tt0115624,H6XIREQHU8M,"Barb rescues a young girl from a strip club, but when her parents are short on payment, she takes their car instead." tt0115624,n9L9jMlulXI,Barb sicks her dog Camille on an irate customer and Willis prepares for an important meeting with some politicians. tt0115624,VVp0l2Vas2I,"Barb blasts her way into the hotel room where Krebs is hiding, and some gunmen complicate her mission." tt0115624,Ws7Uj5D6354,Barb deposits Krebs with the bail bondsman Schmitz and demands more money due to the difficulty of the assignment. tt0115624,LSEkG5z7Il4,Barb has a fight to the death with Pryzer as Axel attempts to save her life. tt0115624,8ARqfD6Wm3E,Pryzer and his men trash the bar in search of the contact lenses as Barb watches helplessly. tt0314331,lxOV0MYBpeI,"Colin decides that English girls are stuck up, so he is going to America." tt0314331,_ghkHlthIqM,"The school's musical performance of ""All I Want for Christmas"" ends with a surprise." tt0314331,nKdSvhCg3VY,"Jamie proposes to Aurelia in broken Portuguese, with the entire town looking on." tt0314331,2KtVKu9CfDA,Mark shares his feelings with Juliet via cards. tt0314331,-EuO6OFypLo,Billy Mack shares his feelings with his manager Joe. tt0314331,UCjoOOrgVMM,Sam catches Joanna at the airport. tt0467200,wF_UpYqYJuY,"At the last moment, Mary learns that her sister Anne has not been granted clemency by the King." tt0467200,3XK2wqc1cr8,"After learning that she will be sent to exile and her marriage dissolved, Anne lashes out at her sister, Mary." tt0467200,ZxpXrz-nEdw,Anne challenges her accusers with defiance as she stands under the penalty of death. tt0467200,pkfyn6mYlCg,"King Henry makes an illicit vow to Anne, even as Mary gives birth to his son." tt0467200,wzIwPkZkSTk,Mary begs King Henry to spare her sister's life. tt0467200,xX08f3GV3v8,"En route to her judgment before the royal court, the Queen stops to reprimand the Boleyn girls for their deceit and ambition." tt0859163,OksadMMuXQ8,Emperor Han battles Zi Yuan in a fight to the finish. tt0467200,TY2PGciqbg8,"King Henry seduces Mary, beginning his affair with her." tt0859163,NTaSvSldlk0,"Two armies of undead soldiers meet on the battlefield, with Rick and Evelyn caught in the middle." tt0467200,Kyh3foJVk2k,"In her desperation and madness, Anne begs her brother to sleep with her in order to give her a child for the King." tt0467200,ok_8VGksYow,"With his wounds tended to by Mary, King Henry is intrigued by her humility and beauty." tt0859163,GiRyIbJ7IFg,The Dragon Emperor finally meets his match. tt0467200,9wr10j2nUJ4,"After returning from exile in France, Anne takes King Henry's court - and heart - by storm." tt0314331,yVcieIZb3_U,Billy Mack gets candid about his new record on a local radio program. tt0859163,gKY3ShRZPkA,"After some early setbacks, Rick decides to take an unusual approach to fly fishing." tt0859163,5ITNMF0kSn8,Rick and Alex argue over the best plan of attack. tt0859163,PQ-8JIzjq_I,The O'Connell's have a less than smooth landing in the Himalayas. tt0859163,HTE6S6x8ixA,A pack of Yetis come to the aid of the O'Connells. tt0181865,0wsXkU-Crjw,Wakefield finally reunites with Caroline after a long and anxious search. tt0859163,JbrBIbtupp8,"Alex and his team discover the Emperor's tomb, along with several deadly booby traps." tt0859163,DxguAU_KxS8,The witch Zi Yuan casts a curse on the evil Emperor Han. tt0181865,E41tGRgKxNk,Ayala dismisses Arnie and then suddenly finds himself face-to-face with an angry Monty. tt0181865,06KH47jZbG0,"After escorting Ruiz from the courthouse, Agent Castro is mistakenly killed by an assassin hired by Helena Ayala." tt0859163,1z6MvVWZfuc,The O'Connells come face-to-face with the newly awakened Dragon Emperor. tt0181865,JjRx9IJSTMw,Seth educates Wakefield on the economic dynamics of the drug scene. tt0181865,8prXNxNfEpY,Manolo is kidnapped after trying to double-cross General Salazar. He and Javier are taken back to Mexico to be killed. tt0181865,g9Znovljrq8,"South of the border, Javier Rodriguez and his partner Manolo Sanchez are accosted by General Salazar, who takes in the drug dealers that they just arrested." tt0181865,zy0HtNZgbjY,"Room service turns fatal as key witness Eduardo Ruiz convulses from eating poisoned food, his death orchestrated by Ayalas's operatives." tt0181865,6U6MOfuFX-Q,"Helena is told by her husband's attorney and good friend, Arnie, that her husband is dealing drugs." tt0181865,Lkxbuqvb5A4,Wakefield gets some advice on drug policy and PR from the Washington D.C. elite. tt0314331,DsugPaXH4kA,"When the pages from Jaime's latest book are blown into the lake, he and his housekeeper go in after them." tt0181865,6_6Ml7hPZi0,"DEA Agents Gordon and Castro meet with Ruiz under the guise of drug dealers -- when suddenly, the buy goes horribly wrong." tt0314331,cfNzZre-sIU,"Harry attempts to quickly buy a necklace before his wife Karen returns, but the sales clerk has other plans." tt0098554,mzNUbT2sQT4,Uncle Buck is upset when Tia doesn't keep her promise to take care of her brother and sister while he goes to the racetrack. tt0098554,JOBYJrVQm3A,Uncle Buck tries to make Miles' birthday special. Even if that means turning away Pooter-the-Clown. tt0098554,OA-FmsSdSMY,All the neighbors know when Uncle Buck arrives at Bob's. tt0098554,xEt5dEOcW0I,"Uncle Buck has a meeting with Maizy's Assistant Principal, Mrs. Hogarth and her mole." tt0098554,9sWnQ8y_M6A,Uncle Buck explains to Bug what he likes to do with his hatchet. tt0098554,PQCAqu6koEQ,"Buck meets Tia's boyfriend, Bug." tt0098554,ghQOllvR2cE,Miles interrogates Uncle Buck in the kitchen. tt0098554,5ibO5kob3OQ,Uncle Buck takes the kids to school in his sweet ride. tt0098554,nggWTNLFifA,Uncle Buck finally takes care of the Bug problem. tt0098554,Hf6qAXWkX6w,Uncle Buck tries to convince Tia to go bowling with him. tt0314331,zcgxBHBsl-4,The Prime Minister takes advantage of a quiet moment to dance through 10 Downing Street. tt1478338,BP2zVb8Ufsw,"Annie, feeling loosey goosey, visits Lillian and Helen in First Class." tt1478338,gnI8phF08PE,The ladies experience a wave of food poisoning in the middle of the dress fitting. tt1478338,iseaUTEhwzY,Becca confides in Rita about her lackluster sex life; Rita prescribes them some strong drinks. tt1478338,mwqxM-ccpNE,"Officer Rhodes tries to cheer Annie up, and paints her a picture of what he'd like his wedding to be like." tt1478338,Kg0YrIiz7Sw,Rita shares with Lillian and Annie the disgusting truth about having kids. tt1478338,NL812ag82xI,Lillian tries to convince Annie that she deserves better than someone who criticizes her appearance. tt0477080,i9DMpMCCxuE,Will and Frank argue about how to stop train 777. tt0477080,zFuw7sB1zxE,"Will meets his new partner, Frank for the first time." tt0477080,fKeNgrRRoN8,Frank runs from one train to the other hoping to slow down the runaway locomotive. tt0477080,mDI2nymYW1M,Frank and Connie talk over the radio about what it will take to stop this train. tt0477080,Y4ZHPeyJ4ss,Frank tries to communicate with Connie to find out where the runaway freight train is and if they are headed straight for it. tt1411697,SihfPA7vJms,The guys are chased through the streets while dealing with a troublesome monkey and a dead pig. tt0388795,DuyH1j2jMRg,Ennis and Jack become closer and more intimate while their boss watches from afar. tt0268978,CemLiSI5ox8,A blond in a bar helps crystallize Nash's theories. tt1411697,cxQuvLl2E-I,"The guys wake up in a strange apartment, with strange haircuts and tattoos." tt0089155,2Ee6xrIGhcY,"Dodging the police at a banquet, Fletch creates a diversion by toasting the man of the hour." tt0089155,Y-Mhn3xTlUk,"While breaking into a real estate office, Fletch has to outrun and outwit a guard dog." tt0089155,ZY_uGAx3rxE,"Disguised as the guy from Ajax,"" Fletch has a look at Stanwyk's plane." tt0089155,AJuIYcVnc2I,Fletch is caught snooping by a dim-witted caretaker with a shotgun. tt0089155,oK1X8SfGMs8,"While impersonating a doctor, Fletch is asked to assist with an autopsy." tt0089155,pWGGQmeKdkk,Fletch and Larry search the microfiche for info on Alan Stanwyk. tt0089155,9-zf2UBp7fY,"Fletch poses as a patient in order to question Stanwyk's doctor, even dropping his shorts to sustain the ruse." tt0089155,i7AUpGXLDdk,"Fletch daydreams he's a Los Angeles Laker, playing alongside Kareem Abdul-Jabbar." tt0089155,2bx4g-8PY9Q,Fletch orders an expensive lunch on the Underhills' country club bill and has it delivered to Gail's cabana. tt0070735,EmDQiL3UNj4,Gondorff's and Hooker's big con ends with a big surprise. tt0089155,m1t9QOSYqYM,Fletch is arrested by a couple of cops who plant drugs on him and take him to the station to meet with the Chief Karlin. tt0070735,VYjyFQS3DWM,Doyle Lonnegan makes a half-million dollar bet at Gondorff's joint. tt0070735,kAi0cSCUWfg,Henry Gondorff and crew pull a horse race con on Lonnegan. tt1232824,M-rbVvVD60k,Linda confronts her uncle Donald about the horrors of her past. tt0070735,nby0t43dlIs,"Johnny shows up at Loretta's door and after some convincing, she finally lets him in." tt0070735,f0eTISgJ3Io,Johnny Hooker almost gets whacked by Loretta. tt0070735,BAF9OAO4TtA,Johnny plays a street con on Mottola after he tries to take advantage of Coleman. tt0070735,tdCot34--pc,The feds make a deal with Johnny to bring in Henry Gondorff. tt0070735,773E6GPll3A,Gondorff out-cheats Lonnegan during a high-stakes game of poker. tt0070735,vw1dPsf0JgE,"Johnny sets ""the hook"" into Lonnegan." tt0070735,Lh8dcvj-0NA,Gondorff gets to know his mark – Doyle Lonnegan – during a poker game. tt0099365,c9wVzDytTFU,"Darkman dangles from Durant's helicopter, dodging buildings and bullets." tt0099365,G4YcCF8uLiI,"Darkman bids farewell to his girlfriend, Julie, before disappearing behind a final disguise: Bruce Campbell." tt0099365,LSMl31b3OKc,Darkman fights corrupt developer Strack atop the beams of an unfinished skyscraper. tt0099365,lbdeAhpIPhE,"Peyton wins a prize for his girlfriend, Julie, then flies into a rage when the carny won't hand it over." tt0099365,MuTaXwt02vA,Darkman dons a Durant mask…confusing Durant and his flunkies. tt0099365,f1fSmptANOU,Disfigured Peyton struggles to control his rage. tt0099365,fIT7VMVju0A,Darkman poses as Pauly in order to frame him for double-crossing Durant. tt0277296,W2gTKUd1gfQ,Mathayus works to save the Sorceress before Memnon kills her. tt0099365,hnNXvk6sLvw,"As a doctor describes Peyton's pitiful condition, Peyton suddenly wakes from a coma and breaks his restraints." tt0099365,qXL3aXIGIKc,"Darkman tricks Smiley with multiple masks, then whales on him." tt0277296,6Diop4IOk68,Mathayus is crowned king and takes Cassandra as his queen. tt0099365,bSDqN3UTrPI,Darkman tortures one of Durant's goons in the sewer beneath a busy street. tt0099365,3fwlRWBtHLg,"Left for dead by Durant, Peyton struggles in vain to stop the lab from exploding." tt0120780,jutOpRQ7Osg,Jack remembers refusing the security job offer from Richard and confronting him in his office. tt0277296,rNPcxSp5a2o,Mathayus saves a boy from receiving punishment instead of killing Memnon. tt0277296,f4zl3CuJvt8,The Sorceress tries to figure out which pots are empty and which ones have cobras in them. tt0120780,y0iBQV-yyLI,Karen shoots Jack in the leg when he won't surrender to her. tt0120780,p5lEvn7ejJI,Maurice and his crew try to bust open Richard's safe…with their guns. tt0120780,Te4G4EGjidM,Karen and Jack realize that they have an attraction to each other even though they shouldn't. tt0120780,-RJ6USD2nEU,"Jack pulls a scam on the Bank Teller, robbing the bank without pulling a gun." tt0120780,cbzBwleJnLY,"When Jack Foley and Buddy Bragg leave their hotel in the elevator, they run into an unexpected guest in the lobby." tt0277296,llzXzUe2KAk,Mathayus single-handedly ambushes an entire group of soldiers. tt0120780,3ThrlTaPWO8,Kenneth starts to get a little too close for comfort with Karen so she shows him she's not so easy to overpower. tt0277296,A59SQO2FvPA,The sorceress saves Mathayus from scorpion venom. tt0277296,hlNvdfv76WA,Mathayus tries to capture the sorceress in order to escape the city. tt0277296,gAWrAQp7pWQ,Arpid helps Mathayus escape from the fire ant's pit. tt0120780,SZfw1S80QoQ,Jack Foley breaks out of prison disguised as a guard and takes Karen Sisco hostage in her own trunk. tt0120616,omy5TVA-fY0,"Rick, Jonathan, and Ardeth get ambushed by Imhotep's priests who have risen from the grave." tt0277296,98NAf9zhIu0,Memnon begins his rule over the land by slaughtering all who stand in his way. tt0088847,S5IHNcpa7p0,Andrew gets sick of Bender's sexual interrogation of Claire and they get into a fight. tt0088847,Tm0oAv2moOw,The Breakfast Club discuss their parental issues and Andrew stands up to Bender. tt0088847,rnbDA4wKrg0,Bender starts causing trouble in detention and questions the value of high school clubs. tt0088847,bTeYncx1xmI,Bender challenges Mr. Vernon's authority and receives months of detention in return. tt0054331,w0cXyGVsUjs,"Varinia reveals to Spartacus that she has bared his child, then she says her final goodbyes." tt0054331,FKCmyiljKo0,"The Romans try to get Spartacus to reveal himself in the crowd, but then every slave stands up to protect him." tt0054331,6DI_C-xXcOQ,"Spartacus gives Marcus Publius Glabrus an ultimatum to take back to Rome, then rallies his troops for the battle to come." tt0054331,tetwGGL997s,Spartacus tells Tigranes that the slaves don't fear death and that gives them the advantage. tt0120616,ARUzoPWS4Uk,Beni gets his just deserts… and so do the scarab beetles that eat him alive. tt0054331,AsBLdj7OyXc,Spartacus shares his most intimate dream with Varinia. tt0120616,ersxqFwDkWA,Rick tries to stay one step ahead of a giant sand storm chasing his plane. tt0120616,K58cPYCTiPM,Rick saves Evelyn from Imhotep with the help of the mummy's worst fear… a cat. tt0054331,lBeh1jkanrE,"It's the first day of Gladiator Training School, and Spartacus shows real potential." tt0120616,pDWR5RkWRTY,Beni gets cornered by the mummy during their first meeting. tt0120616,GJP8XTzpOCw,"Jonathan gets a scarab beetle under his skin, but Rick gets to it just in time." tt0120616,6J-PhFYNbOU,Evelyn reads from the Book of the Dead and awakens the mummy. tt0054331,zCLyLBrugD0,"Draba is locked in combat with Spartacus. But when Draba gets the upper hand, he refuses to finish him off." tt0054331,YoQeksBRPLI,"When they put a girl in the cell with Spartacus to watch him ravage her, he stands defiant and won't do it." tt0120616,u3XXKF0oDtU,Anck Su Namun and High Priest Imhotep kill the Pharaoh. tt0120616,YL_90r0J120,Imhotep and his priests are buried alive by the Pharoah's men for attempting to perform an unholy ritual. tt0338526,_oyt0p3Kikg,Van Helsing learns how to defeat Dracula while also discovering that there is a cure for the curse of the werewolf. tt0083929,A1HqjBc6LhA,A condescending customer makes trouble for Brad. tt0338526,jr60kvuKw3w,Van Helsing transforms into a werewolf at midnight as he prepares to battle Dracula. tt0338526,Y2y_dipI6_M,"Carl informs Van Helsing that he must kill Frankenstein's Monster, even if he finds a way to kill Dracula." tt0452608,pgL4IvoR7tw,Jensen and Joe temporarily team up to destroy The Dreadnought. tt0452608,21Vohd23VMI,Coach leaves a parting gift for Warden Hennessey. tt0452608,R8-x5ORZe70,"In an attempt to boost ratings, Warden Hennessey releases The Dreadnought during the second stage of Death Race." tt0452608,aaU-KRx8Zc8,"Jensen finds a weakness in the track and with the help of Joe, exploits it to escape." tt0083929,bMtdrKIdDgE,Spicoli learns that Mr. Hand has zero tolerance for tardiness. tt0083929,hReFx1kjuIE,"Brad thwarts a heist at the Mi-T-Mart, impressing Spicoli." tt0452608,JV8lJEE1p0w,Jensen finally gets his revenge on Pachenko. tt0083929,6J8__fWphE0,"Deciding it's as much his time as Mr. Hand's, Spicoli has a pizza delivered to his desk." tt0452608,k8zDVhc4XPs,Jensen follows Pachenko to his area and gets ambushed. tt0083929,bc2muGlQIlk,"Mr. Hand puts Spicoli on the spot for ditching class, yielding a phrase worthy of the chalkboard." tt0083929,YYV5f0Aqo4w,"Believing they wrecked his car, Jefferson takes his anger out on the Lincoln football team." tt0452608,Yqf0AqAHhaM,"Jensen's first race. After the first lap, Warden Hennessey activates the weapons, shields, and death pits." tt0083929,QN_Nod65e7o,"Spicoli trashes Jefferson's car while toking and driving, but he assures him that he can fix it." tt0083929,sKrpl-KBTzQ,Spicoli dreams of glory as a world-famous surfer. tt0338526,bS9N8dEdZCQ,"When Van Helsing and Carl arrive in Transylvania, they meet an unwelcoming Anna and her townspeople." tt0083929,9IUZkug8qo8,"Linda coaches Stacy on bedroom techniques, using a vegetable for simulation." tt0452608,4MFzzWkl0_g,Jensen becomes suspicious of Warden Hennessey's tactics and confronts her. tt0083929,k2NaHBVVYzY,Brad busts Spicoli and his two buds for ignoring the dress code. tt0338526,JVWrVCLs8ms,Dracula hints at knowledge of Van Helsing's past while Anna tries to save Velkam. tt0338526,AD9YlbnGwpA,"While helping Anna and the townspeople of Transylvania, Van Helsing slays the vampire Marishka." tt0338526,3kTQBCokfAg,"Van Helsing transfers Frankenstein's Monster back to Rome so he can protect him from Dracula, but he runs into trouble along the way." tt0452608,jLvu6WNWzKg,The crew breaks down the rules of the Death Race to Jensen. tt0338526,QIBTN3qSB44,"When Anna tries to rescue her brother Velkan from a vicious werewolf, it escapes from its cage and chases them down." tt0452594,yiZpb7GPLYs,Friend and realtor Riggleman encourages Gary and Brooke to sell the condo and go their separate ways. tt0106677,Ls_8cFgBUj4,Wooderson and the others give Pink their advice on signing the pledge. tt1201167,zLso3zVuBMQ,George tests Ira's loyalty. tt0452594,fZIWDis34Xs,Game night quickly dissolves into a fight when Gary fails to guess what Brooke is drawing. tt0452594,7Lv6KX12Fbs,Gary and Brooke run into each other on the street and catch up in a civil manner. tt0120780,pTptxpcYySI,"After being kidnapped and stuck in a car trunk, Karen and Jack begin a slight flirtation over the topic of 1970s films." tt0452594,bX6BKxFkU78,"Gary tells Johnny about Brooke's date, and Johnny misinterprets the story as a request to hurt the guy." tt1152836,Ywd-UZnkfR8,"Dillinger and his men execute a daring bank robbery, making sure to only take from the bank and not the people." tt1152836,xx2qTUg_buo,Dillinger is ambushed and killed by federal agents. tt1152836,trgDVhZHIrc,"Though beaten and emotionally frayed, Billie endures a brutal interrogation just so she can tell the the feds how Dillinger outsmarted all of them." tt0120780,eCQIRkboAM4,Jack and Karen play a coy game of strip tease before making love in a hotel room. tt1152836,U16anbRFRyc,"A failed ambush by Purvis and his federal agents results in casualties, and the escape of Baby Face Nelson." tt0106677,d8WHOiQZGok,Pink' and Wooderson introduce Mitch to the upper classmen at the Emporium. tt0106677,Z6XIGZ51VMo,Juniors cruise around on their last day of school while Mitch hitches a ride with Wooderson and Pink to the Emporium. tt0463034,NjFLXuCHUiw,"Carl walks into the bar to celebrate guy's night only to learn that Neil has to go home, and Dupree is homeless." tt0087597,ScHOVAo6tQ0,"Alex receives a translator device that allows him to understand all of the aliens, and he begins to realize that he's been recruited to fight in a space war." tt0106677,I7MwxFdb0Ls,Carl and the other freshmen set up O'Bannion for a messy surprise. tt0087597,BYoWNwhu0DM,"Alex questions the sanity of their mission, while Grig suggests a little target practice." tt0106677,Olm0KUtsFE8,"Darla and the seniors terrorize the freshmen girls with ""air raid"" drills and condiments." tt0106677,NjN-PLW521s,The guys are confronted by the irate owner of a mailbox they smashed. tt0106677,MbRhuUtKHV4,"Slater helps craft a bong in wood shop; the girls debate the sexism of ""Gilligan's Island.""" tt0106677,wknywxfcE5M,Aging skirt-chaser Wooderson explains his affection for high school girls. tt0106677,aF3BXL1cQYY,"As the final bell rings, junior high boys flee from paddle-swinging high schoolers." tt0106677,rtkI87FeqOY,"O'Bannion comes face to face with Carl's mom, while the senior girls lead the freshmen in ""air raid"" drills." tt0463034,sKFlL_G9S0c,"After reuniting the two lovebirds, Dupree hears his calling as a motivational speaker and writer of 7 Different Kinds of Smoke: Living, Loving & Finding You Inner-ness." tt0106677,-CgUGjRFukQ,Benny and his pals threaten Mitch Kramer and the other incoming freshmen with a time-honored tradition: summer paddling. tt0106677,ANM7_NTFvE4,"As Pink heads to class, Don makes a pass at the teacher." tt0463034,REzwusMDvzE,Rage and confusion culminates in a nightmare for Carl when he imagines Dupree and Molly on a boat together with Mr. Thompson and Lance Armstrong cheering on their sexual chemistry. tt0463034,SlyCtFYVQmU,"Dupree goes camping with Carl's sock, and Molly catches him masturbating on the zebra striped bean bag chair." tt0463034,uAMrR05Xil8,"When Carl can't make Career Day for Molly's class, Dupree comes in and teaches kids about the floaters in the world." tt0463034,DMo2qyKq4_w,Dupree makes a big entrance in the home of newlyweds Carl and Molly. tt0463034,q4RbzjuXB6E,Dupree throws seven different kinds of smoke at Paco as a distraction so Carl can get to the boardroom and tell Mr. Thompson what's up. tt0463034,Ig-Vf5-qTSM,"Dupree sets up a skate ramp and coaxes Carl to jump on a board. Carl is a little more rusty than Dupree and both collide clumsily at the bottom, with Dupree wrecking his ""little duprees.""" tt0463034,KW23B9uZBVE,"Returning home from sushi night, Carl and Molly find Dupree buttering up the Mormon librarian from Molly's school." tt0463034,bWaxWtgjY1g,"Dupree talks to Carl on the beach about staying true to himself and staying positive, and to not let his future father-in-law get in his head." tt1152836,wTz_kSiZaIM,"Dillinger escapes the jail in Tucson, Arizona with a fake gun and the help of another inmate." tt0475394,sUa29Kqpdn0,An enraged Messner finds himself in a tight standoff with Georgia and Ivy. tt0475394,c-tGV96ceBM,"Shot and left for dead, Hollis has words with the last surviving Tremor brother, Darwin." tt0475394,biYVl18JAFM,Carruthers and Acosta engage in a very close-quarters shootout. tt0475394,kP6EOOdTQP8,Messner's CPR attempt on Carruthers is shattered by hostile sniper fire. tt0475394,y6WmWVpvGqo,Messner endures sniper fire and an elevator standoff in order to reach the wounded Carruthers. tt0388795,iaZzcRtmXXY,"After their summer working together is over, Jack and Ennis say goodbye." tt0388795,wwE7qkkri-U,"After Jack's death, Ennis visits Jack's parents and remembers him while looking through his room." tt0475394,ktrGDczwkec,Buddy rails on the dim-witted Hugo for ruining his expensive jacket. tt1082601,PkOIMjJrl3Y,Shawn and Dragon Lee fight. Shawn drops Lee on his back. tt1082601,TO0OWazmdc8,Harvey asks Shawn to take the fall. Shawn refuses. tt0475394,Xh1Ls7C0UrU,Dupree gives his partner Deeks the lowdown on one Buddy Israel. tt0475394,M1fnkYbVijE,"After gunning down Dupree and the other bail bondsmen, Darwin proceeds to have a bizarre conversation with the recently departed." tt0475394,w6RItV0ZDgI,"Dupree and Deeks meet with Buddy Israel's strung-out attorney, Rip Reed." tt0384793,KZtF_gT3Sgg,"Bartleby argues passionately that freedom and creativity are more important than ""fancy highbrow traditions.""" tt0384793,lQfG0D7wPKA,"South Harmon students answer Bartleby's question: ""What do you want to learn?""" tt0384793,eP52omnnZmg,"Bartleby and Monica encounter Schrader, who's been forced to dress as a hot dog during pledge week." tt0384793,QZjmr4_K8To,"Inspired by his students' feelings of acceptance, Bartleby makes the flash decision to proceed with the fake college and welcomes the students to South Harmon Institute of Technology." tt0384793,-w9kof4SQp4,"At the frat house, Bartleby insults his romantic rival, Hoyt, in front of Monica while Schrader also tries to fit in." tt0384793,mHJH39bjALk,Bartleby and Schrader recruit Schrader's Uncle Ben as their fake dean. tt0384793,e8HRcYG3Ftg,"Playing the role of South Harmon's Dean Lewis, Uncle Ben strays from the script during his meeting with Bartleby's parents." tt0384793,TWjtzvFrA8c,"Hoping to find a place they can convert into their college, Bartleby, Rory and Hands visit an abandoned building. Schrader, however, is skeptical." tt0384793,nGWtzmsCHgc,"Confronted by his parents, Bartleby lists off successful people who never went to college." tt0384793,RehkdOxmytI,"Thinking that Monica is inviting him to her prom party, Bartleby is disappointed when she asks him to mow her lawn." tt0452594,A8Tw5xASluI,Brooke and Gary argue over whose family has more problems. tt0087597,Uvtt94Oz4N4,"A stranger named Centauri comes looking for the person who broke the ""Starfighter"" record and takes Alex for a ride." tt0087597,MLNvUsTBGyE,"Alex and Grig attack the alien squadron, bringing the ships all into range of their secret weapon -- the Death Blossom." tt0087597,nLN36pgwS5o,"As the Kodan ship locks into the moon's gravitational pull, Lord Kril and a Kodan officer prepare for their inevitable demise." tt0452594,RP9ywTd8bRM,Gary's brother Lupus shows him the ropes at a club. tt0087597,U4D0HSqKiKU,"Alien mentor Grig introduces Alex to his Gunstar ship and its pre-flight checklist, with the casual revelation that Alex is the Last Starfighter." tt0087597,pkk8WIkTJPA,"As Alex prepares to leave Earth for another adventure, Maggie decides to join him at the last minute." tt1152836,_D2USWrWBL8,"Though in a jail cell, Dillinger still expresses confidence as he talks to Purvis about their talents and the future." tt0268978,keQtOFycgPs,"Distracted by a hallucination, Nash neglects his infant son in the bathtub. Alicia reaches the baby just in time." tt0087597,i9dK32LLtY0,"Alex's brother, Louis, witnesses Beta removing his head to fix a hearing problem." tt0268978,lplDv1m_Zhk,"Nash tries some romantic straight talk with Alicia, yielding positive results." tt0268978,H7Y_mHNgnpA,"At the Nobel Prize ceremony in Stockholm, John Nash pays tribute to his long-suffering wife, Alicia." tt0054331,GCfWXNmFFbM,"Lentulus goes shopping for slaves, and when he finds Spartacus he finds out that his bite is worse than his bark." tt0268978,86CKsczBdu0,"As Nash is interviewed by a member of the Nobel Committee, his Princeton colleagues present him with their pens." tt0290002,tfX2C-Zewuo,"When Jack tries to leave in his RV, Dina reveals to everyone that he injected Greg with truth serum." tt0268978,PMtkv1zgi8o,Parcher gives Nash a special assignment...and a radium diode implant. tt0268978,GvF4-C1EuJU,"Dr. Rosen tells a disbelieving Nash that his roommate, Charles, doesn't exist." tt0268978,trn1aO8h9Uo,Hansen outmaneuvers Nash in a strategic board game. tt0268978,Vzpu-P2eRuI,"At the Pentagon, Nash deciphers an encryption as a shadowy figure watches." tt0056923,c9O1VVeMzhc,Regina visits a rare stamp dealer. tt0290002,WMX_DNeziH0,"Greg tries to use his CIA cred to rescue Greg and Bernie from the cop, but gets tasered instead." tt0268978,pYdjNeFh6zw,"A beguiling math student, Alicia, finds a solution to Nash's ""heat vs. noise"" dilemma." tt0290002,frMMK_rKwD0,"During an argument between Jack and the Fockers, Little Jack speaks his first word -- ""Asshole.""" tt0290002,qFc_0WXxOXI,An argument at dinner over Greg's baby book sends his foreskin into the fondue pot. tt0290002,1p8N6MlPDvo,"Still under the influence of truth serum, Greg spills his heart on the mic in front of everyone, revealing all his secrets." tt0290002,x0VcDfDfx24,"When Jack throws out his back, Roz gives him a very rough massage." tt0290002,Pm5gb2FVYRQ,Jack's shower is interrupted when he discovers Bernie has decided to share the bathroom to take a dump. tt0290002,fNqz4AY0pm8,"When the Focker's dog gets loose in the R.V., the Byrnes' cat flushes him down the toilet." tt0290002,T2Lh9Lt3_w4,Little Jack is enamored with Isabel's boob job. tt0405422,Fa1IN1GN4Q4,Cal tells Andy that the way to talk to women is to just ask questions. tt0405422,dvm7mLmAtTM,"When Trish comes to Andy's rescue, Andy reveals that he is a virgin, leading to a fairy-tale wedding." tt0405422,pYBo5eS5pW8,Andy's friends take him speed dating and we see all their dating techniques. tt0290002,g0s18i95JKA,"Jack insists that Greg feel his breast feeding device -- the ""manary gland.""" tt0290002,x-A6zERn6yo,Bernie embarrasses Greg in front of his inlaws when he shows off Greg's trophy wall. tt0405422,OJ3gsR-DqAE,"On their 20th date, Trish throws herself at Andy who freaks out, leading to a fight." tt0405422,7vjP2EKf7do,"When Trish challenges Andy to hold off on sex for 20 dates, he is more than happy to agree." tt0290002,zXm6Bc3RuJE,"Greg accidentally drinks Little Jack's milk, which turns out to be Debbie's breast milk." tt0405422,99UdqbS8q2M,"When Andy gets a date with Trish, his friends help him clear out his house so he won't look like a freak." tt0088847,7OFROViP0J0,"When Bender escapes his solitary confinement, the Breakfast Club protect him from Mr. Vernon's fury." tt0405422,Vn3IRHhPXMo,"When Andy tells his friends some tall tales about his love making past, they figure out he's a virgin" tt0088847,u3mupIlFIYQ,"At lunchtime, each member of the Breakfast Club brings out food that fits their personality." tt0405422,oRKbez1LpWU,"Andy gets his chest waxed, enduring mass pain, while his friends watch, laughing." tt0088847,Z2WZrxuwDhs,"Mr. Vernon welcomes the Breakfast Club to detention, but is insulted by Bender." tt0088847,jsZkkqLDFmg,Bender mocks Claire's special lipstick trick and reduces her to tears. tt0056923,a8FA5zBHiFA,"At her husband's funeral, Regina witnesses a variety of strange characters paying ""respects"" and receives a letter." tt0118715,vKjBFsyYC0g,Walter and the Dude are floored by the cost of Donny's urn. tt0056923,DXTLoQyijJ0,Regina finally discovers Brian's true identity. tt0056923,7xDTFtG9kYw,"When Regina is attacked in her room by the one-armed Herman, Peter chases him off." tt0056923,01ZWXIY1mcs,Bartholemew discovers Regina's hiding place and is about to shoot her when Peter drops him. tt0056923,Qgsst15iI2k,Peter and Regina meet at a ski lodge in Megeve where they flirt and exchange some witty repartee. tt1201167,MMuen83l-Sc,"George entertains an an audience of ""nerds"" at a Myspace event." tt0056923,gfLw0KJ6bLI,"Tex corners Regina in a phone booth and demands she get him what he wants, or else." tt0056923,ziVJd7Fwzvc,"Regina confides in Peter, but is warned not to trust him by an anonymous phone call." tt0056923,mRmLfuhXHR8,Peter and Scobie duke it out in the rooftop after Peter narrowly frees himself as Scobie's hostage. tt1201167,Q9vxnIGIFXQ,"Clarke settles things between him and George, but Ira jumps in." tt0056923,NEYwJbjyF2M,Regina tries to find out who Peter really is behind all the lies. tt1201167,YBc362_R2pw,An eclectic group of friends and colleagues celebrate George's improbable recovery. tt1201167,0qWMjgpIECA,Eminem's temper flares when he catches Ray Romano peeking at him from across the room. tt1201167,p8CPTHEAfJc,George offers a sentimental and nostalgic Thanksgiving toast. tt1201167,XZzaK0UZJ08,Ira gets emotional when discussing the pending realities of George's illness. tt1201167,k4X42D5Gg7o,George has a difficult time taking Dr. Lars seriously due to his dubious accent. tt1201167,gW-Os5mjbGM,Randy warms up the crowd with his comedy. tt1201167,zeKb7O1KtIU,Mark gives Ira an ultimatum. tt0082010,_ss0nT5DGHw,David attacks a man in the underground subway when he turns into a werewolf. tt0082010,J2Ws0QEADsU,Jack visits David from beyond the grave to warn him of his impending curse. tt0082010,Hb7zhYzenhY,"David and Jack run from the howls they hear while backpacking in Britain, only to discover firsthand what is making the noise." tt0082010,D0wShZqevLU,David has a nightmare that mutant Nazis murder his family… then his nurse. tt0082010,07FdVcspOfQ,David and Jack cause a stir when inquiring about a five pointed pentangle star on the wall in the Slaughtered Lamb pub. tt0118715,PztgWdMEJdg,Walter goes crazy on a red Corvette when little Larry Sellers doesn't give him the information he needs. tt0127536,TfN-0IJACLk,"Elizabeth visits Robert for the last time and spares his life, despite his acts of treason." tt1127896,euV2U_M7RMI,Cross-dressing Vilma convinces Elliot to bring him on as security of the El Monaco. tt0082010,LLs-Oreo_bk,Undead Jack introduces David to some of his undead victims who encourage him to kill himself to end the curse. tt1127896,omTBgliYDKM,"Walking through the festival, Vietnam Vet Billy remembers a great day that took place on a particular hill." tt1127896,X9yDWojz6YA,"Vilma introduces Elliot to some ""very groovy people,"" namely his parents who are high on pot brownies." tt0082010,SQoNv-hzC_Y,"Werewolf David goes on a rampage in Piccadilly Square, creating havoc as he kills and runs wild." tt1127896,3p1rb_t2Jg4,Michael negotiates with Elliot to rent out the El Monaco motel for the season. tt1127896,IN5zv7oMwwg,Michael Lang and Max Yasgur negotiate the terms to hold the festival at Yasgur's farm. tt0127536,jniUBhuJSuw,Kat cuts Elizabeth's hair in preparation for her crowning. tt0127536,9mnLbhHR6-g,Elizabeth has undergone the physical and psychological transformation into the Virgin Queen. tt0127536,sEnFt6neTu0,"During a lovely evening boat ride with Robert, Elizabeth is nearly assassinated by an arrow." tt0127536,MHzcc00ZXCM,"When Elizabeth finds Duc d'Anjou in a dress, she calls off their marriage publicly, for the welfare of her people." tt0127536,u-BIr0fW5cU,"When Robert pronounces his love for Elizabeth during a dance, she reminds him that she will never belong to a man." tt0082010,Z1bYkHffGXI,"Alex speaks with the werewolf and confesses her love, but the police shoot him before she can help him." tt0082010,WRjPRZEg7kM,"When David wakes up naked at the zoo, he steals some balloons from a kid to hide himself." tt0127536,nx002D9N6qU,"Robert and Elizabeth dance a Volta, which their only time together to flirt." tt0127536,yBS-MktwqgI,Elizabeth is uneasy about being crowned. tt0082010,Rngpf0Yluog,"Jack visits David from beyond the dead again, looking a little worse for wear." tt0388795,44ZZN9BqlEE,Alma is shocked when she sees Ennis kissing his friend Jack during a long-awaited reunion. tt0388795,tzKEAdJLRfg,Alma tells her dad that she and Kurt are getting married and he decides to support her. tt0127536,iIUzHUOdLhM,Elizabeth's faith is questioned along with her loyalty to England. tt0127536,nxdpR5oyCOs,Master Ridley and two martyrs are burned alive for denouncing The Pope and the authority of the Catholic Church. tt1152836,MAvccNVx9tE,Dillinger tells Billie about himself and tells her she's with him now. tt0388795,Wl-C_I-ZhRI,Ennis sets the record straight after spending a passionate evening with Jack. tt0871426,op6H61wRi-Y,Kate's doctor drops a bombshell: she's eight weeks pregnant. tt1082601,-i9Fv-znJx0,Shawn fight Evan at a roof top party. tt1082601,sUa9WglkKCI,Shawn explains the one reason he won't throw a fight. tt0388795,g2KF7DAlM4E,"Ennis calls Laureen, the widowed wife of Jack, after he finds out that Jack has died." tt0105323,F2zTd_YwTvo,Frank teaches the beautiful and charming Donna how to dance the tango. tt0086250,958GzzqgWnw,Tony takes out Frank and Mel after their attempt on his life. tt0086250,-4GsCEopbd4,Gina comes to kill Tony for killing Manny. tt0118715,_4ezPvzKe5M,"Walter and the Dude eulogize Donny, but an ill-timed breeze ruins the scattering." tt0388795,KVK6yLqY54w,Jack and Ennis discuss their life together and the pain they endure when they're apart. tt0268978,BKV1SxfmeYQ,"Nash explains to his roommate, Charles, that he's chasing an original idea, not popularity." tt0091225,VUChuDMVqvY,"As Howard dozes, Beverly inspects the items in his wallet: photos, credit cards, and… a condom." tt0091225,LwpaOr1hVZk,A depressed Howard tells Beverly to leave him alone. tt0091225,5ZXyC0SDHNw,"Beverly invites Howard to her place, but he has an identity crisis." tt0095489,fEcClEBT6QU,Littlefoot helps his friends escape the tar pit. tt0095489,weHHBdmI_Jw,"After the group has a frightening battle with Sharptooth, they think Petrie is gone forever, but he finds his way back to them." tt0046876,BmLPVUYQM34,A mysterious fossilized hand inspires marine researchers to mount an expedition to find the rest of the creature. tt0095489,2t2iFLshgWQ,The friends meet Spike for the first time and bring him along on their journey toward the Great Valley. tt0411477,s-rl8q9jezU,Liz saves Hellboy by sacrificing herself in a deal with the Angel of Death. tt0076729,dX762k_3zWg,"Bandit and Cledus begin the bootleg run, and are chased by the Mississippi Highway Patrol." tt0411477,bg5SLBapMiI,Hellboy and his team battle The Golden Army. tt0076729,jcNFjpxU0E8,Sheriff Buford bullies some teen car thieves stopped along the highway and receives information about the Bandit's car. tt0411477,VSDqDOLupNc,"Johann gives Hellboy a little honest feedback and gets ""smoked"" when Hellboy punches him in the face." tt0411477,7oQ-Usd7Tes,Liz blows away all the tooth fairies in a wall of flames. tt0871426,KBUVZlTNj_8,Kate and Angie listen to the stories of other surrogate families. tt0411477,DY1HyTONAT8,"Hellboy fights Wink in the Troll Market, taking some lumps, but ultimately beating Wink down." tt0870111,wNbKp6IGhrc,Nixon is extremely open during an interview with Frost and admits that he let down his country and government. tt0388795,zmRPZJp1pYQ,Ennis finally opens up to Jack about his life. tt0411477,9_sNsOl5uUI,"Hellboy crushes a tooth fairy inciting a whole swarm of them to attack Hellboy, Abe and Liz." tt0870111,FUR11zrrNb0,"Frost stops by Nixon's home and says goodbye, while Nixon talks about their lives that could have been." tt0870111,vFHYiOfBRng,"Nixon gives a passionate, defensive, and revealing interview with Frost who pushes the ""cover up"" issue." tt0478311,_qG67vGwgcY,Ben and Pete bond at the couples' double dinner date. tt0870111,pT9GPloXjA8,"Nixon rambles and rants when he calls Frost in the middle of the night, intoxicated." tt0478311,fsaidN93VnA,"After having a family breakfast, Alison and her sister watch while Ben plays ""fetch"" with the kids." tt0478311,WjQovCr8Tgs,E! finds out about Alison's pregnancy and her bosses offer her a new opportunity. tt0870111,gTAMKrPh1AE,Nixon storms into the room to meet Frost before an interview and throws him off with an inappropriate question. tt0478311,BYXLKRNCVrw,Ben goes home and finds out that everyone has pink eye. tt0478311,yrLutFhQLgE,Alison gives birth to a baby girl. tt0478311,FmiVlyAfTnw,"When Debbie and Alison try to skip the line at a nightclub, they are rejected by the Doorman." tt0118715,1M6oW6a0iAw,"Walter clobbers the Nihilists, but Donny suffers a heart attack." tt0118715,7L2qP-xQ_7o,"Before recovering his car, the Dude is visited by the Nihilists and their pet rodent." tt0118715,F1SfzV67Bqw,The flamboyant bowler Jesus stops by to threaten Walter and his crew. tt0452594,bBil15ORYI0,Brooke questions Christopher about his year-round holiday spirit and flirts with a customer. tt0452594,8sJaglGoByg,"Gary and Johnny share a classic baseball rivalry, and Gary tries to impress Brooke with hot dogs." tt0087597,AJRmY9VXf1g,"With all his neighbors watching, Alex destroys the command ship and beats the ""Starfighter"" video game record." tt0452594,nn3I6-DBLJM,All Gary wants is to be left alone. Brooke gives him his wish by breaking up with him. tt0452594,1wc_mZ86ypg,A fight breaks out when Gary brings Brooke three lemons instead of the twelve she requested. tt0870111,t6wgyc8p_hY,Nixon distracts Frost with some off-handed pre-interview banter. tt0870111,iOHElDaRs5E,"James interrogates Frost about his intentions for interviewing Nixon, and makes it clear that he wants Nixon convicted." tt1152836,9_4S_-cr9Rs,The FBI raids the lodge Dillinger and his gang are hiding out in after a bank robbery. tt0870111,2DPSnOrJaXo,"While Jack debriefs Nixon about the upcoming press interviews, Nixon makes an off-handed joke about Watergate." tt0388795,_IIp0gq_Jek,Jack's playfulness with Ennis quickly turns into a bloody brawl between the two men. tt1152836,IZhBhfty0LA,Dillinger assures Billie he will not be caught and they will be together for a long time. tt0086250,Yky4QtRX_DI,"Tony has an argument with Elvira in a crowded restaurant. When it's over, Tony continues his rant." tt0087597,Zowmpbv1za0,"When Alex survives an assassination attempt by a hit-beast"" from Xur, Centauri warns him more will come." tt1152836,gRNkQRhMUiE,"On their first date, Dillinger tells Billie he is a bank robber." tt0086250,a_z4IuxAqpE,Tony makes his last bloody stand against a well-armed hit squad. tt0086250,kg7goEASO5E,"After watching his friend carved up by a chainsaw, Tony is rescued by Manny." tt0086250,TKpXTy-sCxg,Manny tells Tony that he knows how to get women. But Tony has his own plans. tt0086250,ZcQtUdZ5Afs,Tony refuses to blow up a car when he finds out that there's an innocent women and her daughters inside. tt0091225,NXwxYIjqocA,Howard fights the Dark Overlord. tt0086250,kZgE_sUrXFY,Immigration officers probe Tony's criminal past. tt0091225,seqBLjTfnl4,Howard defeats the Dark Overlord. tt0105323,RUE4v1rUpSM,Frank decries the charges against Charlie and makes a scene in the courtroom. tt0091225,xkNNB9f_3Mc,Possessed Dr. Jenning blows up a highway inspection. tt0091225,xb8n4wftl08,Howard and Phil elude the cops in an ultralight aircraft. tt0105323,WZ6p4t3StSc,Charlie speaks man-to-man to Frank and talks him out of shooting himself. tt0105323,S-6xoT5Z2nA,Frank educates Charlie on his favorite attributes of his favorite love in life... women. tt0091225,ZIOCaOpBGpE,"When Howard tries to seduce Beverly, she calls his bluff." tt0105323,-EZ9f-GgWVQ,Charlie meets Frank for the first time and is taken aback by his crude demeanor. tt0105323,hHVZ_viVD9E,Frank shows Charlie how to sell a salesmen by successfully getting them the chance to test drive a Ferrari. tt0105323,P_gn8RkrNAE,"Frank keeps his cool while Randy tells a degrading story about him, until Randy mocks Charlie." tt0105323,Itr0jcR0S4s,"When a hesitant Charlie lets Frank take the driver's seat in their Ferrari test drive, he gets pulled over by a cop." tt0091225,2mz3oytpugs,Howard the Duck protects Beverly from street thugs. tt0091225,zAV44x9vVrk,"Phil, a scientist, attempts to analyze Howard." tt0046876,YAlZyCUJKt4,"The Creature attacks David, but it is killed when Lucas and Carl arrive with guns blazing." tt0095489,I9uVquExMi4,"When Littlefoot thinks he will never find the Great Valley, the spirit of his mother guides him for the last few steps." tt0046876,_mpyFEkzhoo,"While Lucas and David are preoccupied, the Creature sneaks onto the boat and snatches Kay." tt0046876,q_wefCacDTE,"The Creature takes Kay to its lair while David chases, close behind." tt0095489,hR1XzVQnfqY,"When the group manages to find some green food, Cera is too prideful to partake in their meal and finds her own." tt0046876,CApLHv_NrAw,David and Mark hunt the Creature underwater with scuba gear and harpoon guns. tt0046876,ariuokNFhSw,"While the unsuspecting Kay swims on the surface, the Creature stalks her, swimming just below." tt0046876,A8wAYZAwQFs,"The Creature breaks out of its cage and attacks Edwin, but it flees when Kay sets it on fire." tt1013753,Bw5UwRasras,"In spite of death threats, Harvey gives a speech at the Gay Pride Rally and challenges the people to stand up and come out." tt0095489,FnjrwacqDLc,Littlefoot and Ducky meet Petrie for the first time and ask him why he can't fly. tt0046876,iiA0J5rKoE4,"David and Mark manage to capture the Creature, but not before it kills again." tt0046876,pNJRoSfVZxo,The Creature enters a camping tent and kills the two men inside. tt0046876,yMqQUG5t0js,"Dr. Maia discovers the creature's hand, but there is another creature lurking beneath the waters." tt0095489,QL7Qq67AJrY,A despondent Littlefoot's spirits are lifted when he meets Ducky and invites him on the journey to the Great Valley. tt0095489,hLQQfSmgoGY,"After a few little flyers fight over a cherry, one notices a sad Littlefoot and offers the cherry to him." tt0095489,WbW8GgAWKi8,"When a great earthquake strikes, Littlefoot receives some final words of advice from his mother." tt0095489,kJg3GP4tH94,"Despite a rocky and dangerous start, Littlefoot finally breaks free of his shell and is born into an adoring family." tt0478311,4wVmrgVqQlM,Ben and Alison visit the OBGYN Dr. Pellagrino who confirms that she is pregnant. tt1013753,DZwnFcKAt30,Harvey debates Senator Briggs in front of a supportive crowd about the causes of homosexuality. tt1013753,wBLliPipoYI,"When Cleve tells Harvey about a revolution he witnessed in Spain, Harvey challenges him to join his Castro revolution." tt1013753,9VAkRDPA2fk,Harvey pays a visit to Dan's office to try and find some common ground. tt1013753,rh1lZYqwJAQ,"While registering people on the street, Harvey meets Cleve who he tries to talk into joining his campaign." tt1013753,wOlCQYZWJRE,Harvey strategizes with his team about how to pass the Gay Rights Ordinance and how they can get Dan White's vote. tt1013753,C5x9bD6aoss,"When Harvey loses his campaign, Jim maps out a path to victory for their next campaign." tt1013753,jl0ny6ij7jg,Harvey rallies the troops with a rousing speech to stand up and fight. tt0478311,VepWTt1DzTA,"Alison and Ben tell their parents about the pregnancy, but have wildly different experiences." tt1013753,_GxSQs0FNN4,Harvey and Scott get a threatening welcome to the Castro by a neighbor who tells them of God's law. tt0478311,FRhGCEIB-4Y,Alison is offered an on-air position by her bosses who not-so-subtly tell her to lose weight. tt0076729,JVKMNw0uUGw,Bandit and his friends get Sheriff Justice on the radio to wish him a special goodbye. tt0478311,rpp930f_fhU,Ben wakes up naked in Alison's bed and they go to breakfast. tt0076729,XqtjMtEkDhY,"With the State Troopers right on their tail, Cledus barrels through the road block and completes the run, delivering the beer in style." tt0076729,fygiSfJjTLc,"With Sheriff Justice hot on their trail, Carrie accidentally drives through a kids' football game while making an escape." tt0076729,OYlBy85zxdo,"When Bandit comes across a police roadblock, he runs from the Sheriff and escapes by jumping a dismantled bridge." tt0076729,dIgGZA4qQoc,Bandit makes a deal with Big Enos and Little Enos to make a bootleg run with 400 cases of Coors. tt0076729,S-pHuT2666s,"While chasing Bandit, Sheriff Justice accidentally drives under a semi-trailer, chopping the top off his car." tt0076729,XbSfFmKJJ3c,"When Bandit picks up a hitchhiker in a wedding dress named Carrie, he learns that she is running from her own wedding." tt0076729,Jgmk5D4a8K8,Bandit visits Cledus and convinces him to make the bootlegging run with him. tt0118715,VLR_TDO0FTg,The Dude shares his theories on the kidnapping with the Big Lebowski. tt0118715,dQbpx5Be5rI,Walter and the Dude bungle a phone negotiation and Walter's convinced they're dealing with amateurs. tt0411477,yAvJkoCNthU,"Prince Nuada unleashes the Forest God with one command — ""Kill Hellboy.""" tt0118715,YedqV4Gl_us,"When rival bowler Smokey steps over the foul line, Walter goes nuts." tt1532503,LnV_NPHo7Kk,Oliver and Anna flip through a sex book at the bookstore. tt1532503,jAZRevRbGME,Hal gets defensive when Oliver tries to give him relationship advice. tt0118715,r9twTtXkQNA,Two thugs shake down the Dude for an alleged debt. tt0118715,xJjCnWm5cvE,The Dude asks the Big Lebowski to compensate him for his soiled rug. tt1532503,-Y1lyQpBVJI,Hal gives his son a call to share his newfound appreciation for clubbing. tt0118715,4Wu598ENenk,"The Dude's bowling buddies, Walter and Donny, weigh in on the rug situation." tt0411477,wEUwtFg7PeI,Hellboy rescues a baby and then kills the forest god with a well placed shot to the head. tt1532503,4pYu83JHg0E,Hal advises Oliver to put himself out there romantically with a personal ad. tt0411477,w4liPmQEPEU,"Hoping to unite the three pieces of the crown and raise the Golden Army, Prince Nuada kills King Balor and steals his piece." tt0411477,yMjMgMaakMY,"Prince Nuada stabs Hellboy in a fight. When Liz runs to his side, Prince Nuada tells her how he can be saved." tt0871426,Dnfl290-aIY,Angie's labor begins and she's rushed to the hospital by Kate. tt0870111,QxXRhbuqFEw,Nixon charms Frost and Caroline with an anecdote from past and says he looks forward to their duel. tt0871426,z0BandJg8y4,"Barry, a self-described great man,"" promotes Kate to vice president on the conference table." tt0871426,IMSd1IbxmFA,Barry rewards Kate as only he can. tt0871426,VUGhvs8zMZ8,The birthing instructor recommends an olive-oil massage to stretch the delivery region; Angie suggests an alternative. tt0871426,neVOaWPM_Mk,Angie is stumped by Kate's new toilet lock. tt0871426,6-wvim2zLFw,The fertility specialist gives Kate some bad news. tt0871426,HSh7FRalwdg,"A birthing instructor identifies Kate and Angie as ""lesbian lovers""; she frowns on anesthesia." tt0871426,Ol7EpMrfbGQ,Angie struggles to choke down Kate's giant prenatal vitamin. tt0871426,kK6QQIvO9gE,"Kate overshares on her first date, frightening off a potential boyfriend." tt0412019,73LReedA7N4,"Having planned out his itinerary to a tee, Winston instructs Don to visit his past girlfriends to figure out which of them wrote the letter informing him of the existence of his son." tt0412019,YhK1fYhl5dg,"Ron shows Don a photo of Dora in her hippie days, unaware that Don was the photographer." tt0412019,wqj7Q2jOTc4,Don visits a hostile Penny. tt0412019,dl2NG3vkMTk,"Frustrated with the shallow stasis of their relationship, Sherry breaks up with Don." tt0315733,jPiotGz9O9s,Jack returns home to his wife and kids. tt0412019,b95SzqTrjRo,"Don dines with ex-flame Laura and her daughter Lolita, who clearly doesn't understand the irony of her namesake, as she tried to seduce Don earlier that day." tt0412019,tZ97edZTrHQ,Endearing meddler Winston and Don have a conference call about the list of ex-girlfriends Don will visit to find out which is the mother of his son. tt0412019,kRg5-TIF9LQ,"Don visits Carmen, who has opened a business based upon her ability to communicate with animals." tt0315733,A2QayxN3z68,Paul struggles with his weak heart as Cristina apologizes for dragging him into her revenge plot against Jack. tt0315733,OoKpYXTmYak,Paul meets with the detective to obtain information on Jack and a gun with which to kill him. tt0315733,GnbUZqkXBQM,Born-again Christian and ex-convict Jack tries to steer a troubled youth in the right direction. tt0315733,3MzOdxCbTgU,"Paul tries befriending Cristina, but she makes it clear that she wants to be left alone." tt0253474,TgBLraZlGww,Captain Hosenfeld asks Wladyslaw where he is hiding after he performs for him. tt0253474,AkR9wDct-0o,A fearsome neighbor demands identification from Wladyslaw when they hear him in another flat. tt0253474,-Hk2z0z216w,Wladyslaw's date with Dorota takes a new turn when the cafe excludes Jews. tt0253474,pV2XJZjCvP8,The family discusses what to do with their finances with the Nazi regime gaining control. tt0340855,yvcHCRvP3Gs,"After failing Selby at a life without pulling tricks, Aileen confesses her true reason for leaving prostitution." tt1226229,C4Y-l40swH0,Record company intern Aaron unveils his plan to executive producer Sergio. tt0097351,29nIXG5KJYw,The players invite Terence to follow them into the corn; Ray feels slighted. tt1564585,pXEqXWfzyBY,"The group tries to escape the aliens by car, but are thwarted in their attempt to leave a parking garage." tt1564585,HEU-JXcdfIY,"Jarrod and Elaine signal a helicopter, but an alien grabs hold before it can rescue them." tt1564585,0NH8i-Q5Nck,"Ray, drawn to a mysterious blue light radiating outside his window, is abducted without warning." tt1564585,rPTis4f5DG8,The group tries to evade a giant alien by the pool. tt1564585,FJBpmWxw3o8,Jarrod and Terry witness the ships abducting people in the city of Los Angeles. tt0100301,1YCz4y8b58k,"After breaking and entering a posh home, Eddie discovers that most of the appliances can be controlled with a single remote." tt0100301,e8Bn6XVv9ew,Eddie answers the car phone with an Indian accent. tt0097351,cz1TJ4r7bOU,Ray meets a young version of his father. tt0100301,aQ5PyaHQWVA,"When he realizes the man he's impersonating is Jewish, Eddie has to prepare for a Bar Mitzvah." tt0097351,7SB16il97yw,"Defying the threat of foreclosure, Ray listens to Terence's dreamy prediction." tt0106308,wP3H6lZ_mt8,"When Ash says the wrong phrase, he accidentally raises the dead from the Necronomicon." tt0106308,6iW8MoAsz9Q,Ash defeats the Captain to obtain victory over the army of the deadites. tt0106308,swhep7_jkeY,"Ash is attacked by devious, little clones of himself." tt0106308,2gSf5UMZ8ms,"Ash blows away a possessed witch with his shotgun, then builds himself a new hand with the help of a blacksmith." tt0106308,2xB5GBvOqEY,Ash is forced to choose the right book of the dead out of three possible choices. Choosing the wrong two books have evil consequences. tt0106308,KIxetRsd_2c,"Ash grows an evil twin, but promptly takes care of his double with a shotgun blast." tt0106308,xFkARs9CHaE,"While stuck in the pit, Ash fights off a witch and gets his chainsaw hand back." tt0800039,oBoPQUIowHY,"When Aldous snubs his demo, Matthew launches into a quiet rage." tt0800039,reYcW3bp8gg,"Resort waiter Matthew slips Aldous his demo CD, adopting an unfortunate accent." tt0800039,np-ndDy9YJ0,"His bags packed for England, Aldous tells Peter he's through with Sarah." tt0800039,RvNuTuiKyIo,The two couples' parallel intercourse gets competitive; Aldous dumps Sarah. tt0800039,PKIpCPS-oZc,"Peter takes surfing lessons from Chuck, a beach burnout." tt0800039,P8Xg1vVkIh8,Chuck offers Peter some questionable life advice. tt0800039,b1Qxbu777zo,"At breakfast, Peter encounters a newlywed couple, recovering from a night of inept lovemaking." tt0800039,4Z3s1fJgCEE,Peter tries to explain to Rachel why the hotel keeps getting complaints about a woman crying hysterically. tt0800039,FMFJli50jdY,"Peter stalks Sarah and her boyfriend back to their room, over loud protests from Brian." tt0097351,HQv0WWhoZnI,"Ray does something ""completely illogical"": He plows under his corn to build a baseball diamond." tt0195685,8Kx0qYRv8XQ,"Feeling that Ed is trying to finish the case without her, Erin gives him a piece of her mind." tt0113749,C6k9TFjWiGs,"Brodie and TS wreak havoc at the Truth or Date"" television taping to get close to Brandi." tt0195685,0wVgg5t2LAM,Erin shocks Theresa and Kurt with startling key evidence against PG&E. tt0338013,Sy7YnrVXudg,"Faced with the memory when he walked away, Joel makes a different choice and goes back to Clem who whispers a secret." tt0338013,lFHLE24hDQY,"As the world disappears, Joel relives the moment when he first asked out Clem, and she challenges him to ""Remember me.""" tt0113749,XdlIQCbOvrw,"Jay and Silent Bob rescue Brodie and TS, but have to use super skills to escape Team LaFours." tt0113749,1vJpAXf5wyk,Comic book legend Stan Lee gives Brodie advice on love and relationships. tt0113749,CAeFPZ-yXYM,Brodie introduces TS to Jay and Silent Bob and asks them to sabotage the mall game show. tt0113749,xA5QELbB-vU,Jay and Silent Bob beat up the Easter Bunny in retaliation for Brodie. tt0113749,dQRfWqSj3Gw,"Jay presents his fool-proof plan to take out LaFours, but a little kid causes the plan to fail." tt0360717,diLE4umndNM,"Kong escapes the theater and goes on a rampage, destroying the city while he searches for Ann." tt0360717,yNyLTVFv8KQ,"Searching for a place where no one will bother them, Kong climbs the Empire State Building and shares a beautiful sunrise with Ann." tt0360717,DTWYQhTT388,The film crew is swarmed by all manner of giant insects and Lumpy gets eaten. tt0360717,ZYZsJYZVt5g,"Trying to protect Ann, Kong fights off a whole pack of T-Rexes." tt0360717,F_EuMeT2wBo,"In the quiet before the storm, Kong and Ann spend a private moment together skating on the frozen lake in central park." tt0365748,fbrN51dPm0I,"When Shaun's mom goes full zombie, he has to make a difficult choice." tt0360717,b-f5iMDXvcA,"When Ann is trapped by a T-Rex, Kong leaps in and saves her, killing the T-Rex." tt0360717,8LFQun4HQj8,The crew gets caught between stampeding dinosaurs and hungry raptors. tt0365748,HmyQDH_PSC4,"The group makes their way to the Winchester, cleverly disguising their aliveness." tt0365748,gz_dPVrciwM,"Defending his mom, Shaun kills a zombie attacker; he ascertains that the coast is not clear." tt0209163,RYHaarxQTFk,Imhotep tricks the Scorpion King by saying he is his servant and sending him to attack Rick. tt0209163,6XyUIXqIoAM,Imhotep uses water from the river to create a giant wave that attacks the blimp carrying Rick and the others. tt0209163,y8svNN8saeU,"Nefertiri battles it out with Anck Su in front of a royal audience, with Anck Su finishing on top." tt0209163,rxZc0tyTqEg,"Meela locks the three men in a room with the Mummy as it starts to full regenerate, and attack the men." tt0365748,uLquz4Iz-30,Shaun and Ed ward off zombies with kitchenware and an eclectic record collection. tt0209163,qs1QcRTOMEg,Rick and Evelyn battle the Mummy on a moving bus in London. tt0365748,JF4EyXhZudo,"Shaun and Ed confront the ""drunk"" girl on their lawn." tt0209163,i3JbGwGNRI8,"When Alex annoys Lock-Nah, Lock-Nah becomes so irritated that he pulls out a knife." tt0209163,Q720Fe7IDMk,Evelyn is surprised at her fighting skills as she and Rick fight off Lock-Nah and his men. tt0209163,cgBAJefErZY,Rick isn't pleased with the idea of taking a double-decker bus throughout London to evade chasing mummies. tt0209163,EoBngEuWM_o,The O'Connells are chased by waves of water from the Nile after Evelyn disturbs the bracelet of Anubis. tt0096969,irCUvLD1t5U,"Stranded and irritated, Ron and Charlie exchange barbs as to who committed the most atrocities and hence suffered the worst after combat in Vietnam." tt0096969,aBADjCeFnuU,"Angry and helpless, Ron unloads his pent-up anguish on his mother." tt0096969,9fpDYMwJXQQ,Ron is pushed through a crowd of reporters on his way to deliver a national speech. tt0096969,ZsRDr3miUyc,A bedridden and angry Ron protests his poor treatment at the VA Hospital. tt0096969,HhZ3H18ynTA,"Ron delivers a patriotic speech to a large group, including his parents, but suffers a war flashback and has to stop." tt0212338,6_-kw-0PvJc,Greg is exhausted and irritated when a perky ticket agent makes him wait to board the airplane. tt0096969,Xk5epHF844w,Ron visits a family to tell them that he killed their son in battle. tt0212338,SxJvnJyF7xA,"Responding to pressure from the Byrnes during a volleyball game, Greg accidentally spikes the ball on Debbie's nose." tt0457400,OxCVucvlF1o,"Rick faces off against the T. Rex, as Will and Holly watch from a safe distance." tt1078940,wbt-sAOjnQQ,Cynthia and Jason give their friends a presentation on taking a group vacation to a resort called Eden West. tt0457400,-U_IRXhodds,Holly films as Rick and Will are chased by some hungry dinosaurs. tt1078940,Fgfe6pufnLM,Shane calls upon Dave to co-sign for a new motorcycle. tt0457400,VMFwVNGGfBc,"Rick and Will pose as Sleestaks to rescue Holly, but their success is short-lived." tt0457400,saBoM7O_imM,"Rick douses himself in hadrosaur urine to prevent another T. Rex attack, but Will and Holly are reluctant to follow his lead." tt0457400,0JXwzlRcYWk,"Rick, Will and Holly encounter Chaka and save him from other primates." tt0457400,bllBC-ThwjQ,"Chaka warns Rick, Will and Holly about the army of Sleestaks." tt0457400,LuQ6qCNwWY8,"Rick, Will, and Holly follow Chaka across a bridge, which they believe the T. Rex is incapable of crossing." tt0457400,KLoOI5Laplo,Rick gets into a fight with Matt Lauer while promoting his new book. tt1078940,7hwkR_wvrM8,Stanley lays down the law about mandatory couples skill-building. tt1078940,4hkg3Zut97U,Joey gets a little too into his massage. tt1078940,3SiGgXIYppA,The couples learn that there are certain restrictions at Eden West. tt1078940,rl6SpFVJoUA,Salvadore leads the group through some questionable yoga moves. tt1078940,BG6uMsq8PPs,Dave freaks out when he is circled by a school of sharks. tt1135487,c-unYxWW6ws,"Ray and Claire reunite in Zurich, unsure if they can trust each other with the formula." tt1078940,zVwWDprMFiI,"When Jason and Cynthia make some progress, Jason holds their therapist up at hypothetical gunpoint to tell them if they're going to make it as a couple." tt1226229,UKGE05RbsV8,Matty and Kevin brag about their night at Jay-Z's after-after party. tt1135487,cgBz4BKSLRQ,Ray and the team search for a photocopier for Claire to transmit a copy of the formula while Jeff is blindfolded. tt1135487,cYjv9uWxW94,"Ray and Claire realize that if they learn to trust each other and join forces, they could make lots of money together." tt1135487,0fbR1RvOCQA,"Claire accuses Ray of sleeping around, until she reveals that the mystery thong is hers." tt1135487,iX-nnY0x-SE,Ray runs into Claire in Rome and confronts her about seducing him and stealing from him years earlier. tt1135487,GfoSukpWVos,"Howard gives a rousing speech about a mysterious new product, as Richard reads the exact same speech which has been intercepted by his staff." tt1226229,55X_DAk6K_k,Aldous Snow and Jackie Q go on Showbiz Tonight where they have a very public breakdown. tt1135487,CtIhkGu6ahY,"In a hotel room in London, Ray and Claire reunite after simultaneously quitting their jobs as government spies." tt0096969,f8_4uckfT8I,"Recounting his experience in Vietnam, Ron reveals to Timmy how he wishes that he had his whole body back." tt0372183,NzfSLgWkTlY,"Jason and Kirill chase each other through the streets of Moscow, ending in a spectacular crash." tt0372183,Nq295Mg6PHg,"Jason catches up to Abbott and gets him to admit to murder on tape. With nothing left to live for, Abbott kills himself." tt0385267,mVv14yZ1c44,Alex takes Carter back to her dorm room and seduces him. tt0119528,87w655s3xKc,"Desperate to delay the trial, Fletcher stages an assault...on himself." tt0119528,X6YLAmKFpRM,"Putting his bluntness to use, Fletcher delights the partnership committee with an impromptu roast." tt0119528,pDy41hvdq4s,"Dealing with a highway patrolman and a tow-yard employee, Fletcher's truth curse gets him in trouble." tt0119528,dAE7uOO_4v4,Fletcher puts his curse to a simple test: Can he lie about a pen? tt0119528,geiS49_p84Q,"Cursed with telling the absolute truth, Fletcher finds it hard to do his job as a lawyer." tt0372183,JdfCyow-Tiw,Jason eludes Pamela's agents and captures Nicky who he interrogates at gunpoint. tt0119528,IsBB4i4k2PM,"Max makes a wish that for one day, Dad couldn't tell a lie""; the wish takes effect, binding Fletcher to the truth." tt0372183,ql0DycjR8wQ,"When Danny tells Abbott his theory that Jason Bourne was framed, Abbott kills him to keep him quiet." tt0372183,jyZU7lfGjyk,"Jason and Jarda fight hand to hand, close and dirty. Jason strangles him and escapes, blowing up the house." tt0097351,Y9yrupye7B0,Moonlight Graham describes to Ray how he would have like to have batted in the major leagues. tt0372183,OwaxFAC6rzk,Jason escapes CIA custody in Naples and learns a few things about the agents on his trail. tt0212338,117FZnev4Os,Greg and Jack engage in a street racing competition on the way home. tt0372183,DxRzEdg0p4Q,"Their cover blown, Jason and Marie are chased through the Goa streets by Kirill." tt0212338,jgyZ7yb2mmI,Jack gives Greg a late-night polygraph test. tt0212338,a5SoIFm-SrQ,Jack gives Greg a final lie detector test in order to marry his daughter. tt0212338,lJDRkVKjMOU,"Greg tries to sneak a smoke and rescue Jack's cat from the roof, but he ends up destroying the wedding gazebo." tt1226229,LD-DYjqW7HQ,"When Aldous asks for a truthful review of his latest album, Aaron goes a little too far in giving his opinion." tt0212338,5dSvsp3dxvc,Jack confronts Greg about a marijuana pipe and warns him about breaking the circle of trust. tt1226229,aTaX_L7msxs,Aaron is worried about the consequences of sneezing after being dosed with a muscle relaxant drug by Aldous. tt1226229,4_Anuo4_Tlo,Intern Aaron Green is thrilled when he learns from Sergio that he will escort musician Aldous Snow from New York to L.A. tt1226229,6ZcNHOP3wdw,Aaron is alarmed when his girlfriend Daphne proposes that they re-locate to Seattle for work. tt1226229,CQcGrzmNihY,"Sergio explodes at the A&R rep who signed the failed musical group ""Chocolate Daddy.""" tt0440963,4hQ0ILw1P7o,"Bourne returns to the place where he was ""born,"" confronting Dr. Hirsch and learning the truth about his past." tt0440963,JRLNdcmRcFY,"Bourne calls Vosen and uses his voice to open the safe in his office, stealing the Blackbriar files." tt0440963,lnYzb6P_1Wg,"A thrilling car chase between Bourne and the assassin, Paz, ends in a crash where Bourne gains the upper hand." tt0258463,3jLbKr11l20,"Bourne entraps the Professor, who reveals their connection." tt0440963,uLt7lXDCHQ0,Bourne catches up to Desh who is chasing Nicky and the two fight to the death. tt0440963,3TmzG_fqqU8,"When Bourne calls Pamela to tie up some loose ends, she tells him his real name is David Webb." tt0440963,LOVgTjeg4fY,"Bourne pursues Desh, but Desh has a deadly surprise up his sleeve." tt0258463,UFnmq5PPScA,"Bourne wins a well-matched struggle with an assassin, but Marie's hysteria frees the man." tt0258463,txHNcE_d7ro,"In a safety-deposit box, Bourne discovers his identity -- all six of them." tt0258463,2ETruidd5lQ,The cops chase Bourne and Marie down one-way streets and staircases. tt0119174,hKSscAR4cS8,Nicholas forces his way into CRS headquarters with a gun on Jim in order to uncover the mystery. tt0258463,HSckms_rfwY,Bourne asks a cash-strapped young woman for a lift while Conklin musters all of his forces to find him. tt0258463,IjrWOZby8s8,"At a roadside diner, Bourne shares his identity crisis with Marie." tt0258463,JmxK_pBaG4E,Bourne escapes the U.S. consulate using a map of the building and a radio. tt0119174,z0ZnN4mivGw,Nicholas finds out that the game has begun when the news broadcaster on television starts talking back to him. tt0119174,BFUVGfsVzhQ,"Unsettled by a conversation with his lawyer, Nicholas passes out after drinking some coffee prepared by Christine." tt0119174,TfzRP1tCmsk,Nicholas goes for the ride of his life when his cab driver locks him in and sends him into the river. tt0258463,SHgs3LFLBzY,"When a pair of policemen roust him from a park in Zurich, Bourne swiftly disarms them." tt0119174,M57AIegsBz4,"Nicholas gets Christine fired from her job at the restaurant, but he also receives a clue about the game." tt0113749,wqwUdp5-2D8,Brodie and TS discuss the philosophical ramifications of Superman's baby and if the cookie stand exists within the parameters of the food court. tt0112641,jFPV16f182w,"With Nicky playing a round of golf, an FBI plane lands on the course just as Ace meets with the Control Board." tt0329575,AuYaiXT_1tM,"Charles gives an inspiring speech about Seabiscuit, and the fans start to form, helping Seabiscuit sell out the infield." tt0112641,b2dewDwIQyM,"After Ace tries to get Nicky out of town, the two meet in the desert as Nicky gives Ace a piece of his mind." tt0112641,gcAaILQ0ATo,Ace confronts Lester and a humiliated Ginger at a coffee shop. Two thugs beat the hell out of Lester. tt0329575,KSRWc7zwzC4,Charles rallies to get a rematch with the owner of a horse that Seabiscuit beat in a recent race. tt0112641,KYa1IsxGVuc,Ace catches a pair of cheaters at the blackjack table and doles out some old school gangster justice. tt0112641,k8Pku1zXM5g,Nicky's crew goes on a robbing spree throughout Las Vegas with no law holding them back. tt0144528,rFvaTVV7yO4,Granny Klump tricks Buddy Love into giving her a long passionate kiss. tt0112641,ZN6mp2NjMhs,Ace and Nicky describe the inner-workings of the casino and its corrupt cash flow. tt0144528,vkmf3Hbnh_4,"At Sherman's demonstration, Dean Richmond is attacked by a giant hamster." tt0144528,-JbSkxI2DrY,"Sherman exposes that Papa Klump got laid off, causing him to choke on a piece of food." tt0144528,FFUPB-cVozg,Sherman has a nightmare about dooming the world by farting his way to a detonator that blows up the moon. tt0112641,aIPmu6bYZOs,"In a casino, everybody has to watch everyone else. Ace keeps his eye on the casino manager, and the eye in the sky watches all." tt0144528,1sO7SyT9mS0,"Sherman tries to serenade Denise, but ruins it when Buddy Love takes over his body." tt0315327,n0cG11lTS1E,"When Bruce finds that answering the public's endless prayers isn't so easy, he devises a computer system to answer them all at once." tt0315327,nhTupXSJkYQ,"Bruce breaks a story about the discovery of Jimmy Hoffa's buried body, repairing his reputation as a reporter and securing his old job." tt0315327,CO5K227sues,"Just when things look like they can't get any worse, Bruce meets with God who offers Bruce some wisdom and takes his job back." tt0096734,_b25Fbg8xqU,Ray and Art are swarmed by bees on the Klopeks' porch. tt0087065,tB6Uj2RGhPU,"Davey takes the mysterious cartridge he received to Morris, his friend at the video game store, who makes a surprising discovery." tt0360717,HdXfVjRZ0yU,"Mortally wounded from his fight with the airplanes, Kong fades quickly and Ann watches as he dies and falls to the ground below." tt0192614,zJO4Chs7-lg,"Luke and Caleb go through The Skull's initiation rites where they are branded as ""soul mates.""" tt0192614,d63s74ijwb8,"Ames Levritt makes Luke an offer, which Luke rebuffs." tt0192614,TWJEVnNwAtk,Luke gets a mysterious phone call and begins his initiation into The Skulls. tt0087995,Q4HY544URjA,"With everyone watching, Miller and Otto get in the glowing car and take off on a cosmic ride." tt0087995,xcJXT5lc1Bg,"Bud tells Otto the secrets of being a good Repo Man, including the ""Repo Code.""" tt0087995,sAO0owc4xeY,"Otto discovers that his parents have given the money they promised him to the TV Preacher, Reverend Larry." tt0098067,jnA7jmNVYFs,"When his boss promotes a co-worker instead of him, Gil quits his job." tt0493464,37KddyjUxnQ,"Wesley runs through a factory, shooting and killing everyone in sight." tt0195685,AZMg4vFcRQs,Erin defends her research and puts Theresa in her place by displaying an impressive amount of knowledge on the clients. tt0315327,qSYAT8jpqgk,"When Evan's story is chosen over his for sweeps, a discouraged Bruce gets a shot at his first live broadcast." tt0350258,QxPA0i_TVvk,Margie is drunk and bitter during a recording session. Ray sends her and the other Raelettes home which allows him to experiment with the way he records back-up vocals. tt0385267,aKIM6q3awws,Carter stands up for Dan when he's about to be fired and puts his own job on the line. tt0493464,YDmULxspTJM,Cross chases Wesley and Fox in a high-speed chase. tt0097366,NDXWV-mGlPE,"Posing as the owner of Everest, Fletch visits BioChem and gets a crucial piece of information from the manager." tt0120735,kATiU-cZCPc,"When Tom shows the lads the shotguns he's bought, Soap says he thinks knives are better because they are silent." tt0430922,N_HXTmS-AF4,Danny and Wheeler meet the little kids they are assigned to help. tt0118689,TyDE15kKDpI,"David thinks he's about to take a nice, relaxing shower but is unexpectedly joined by Mr. Bean." tt0118689,VTyBpsX1TdE,Mr. Bean blows his nose loudly in a stuffy waiting room. tt0117381,iQISI7DOVCY,David follows Nicole into the bathroom and violates her. tt0096734,Xpga1vtS3tA,Ray and Art discover hard proof of the Klopeks' misdeeds. tt1486190,TtHffqqdh1Y,"When Andy stops by to invite Tamara for a drink, he is unaware that Nicholas is in bed upstairs." tt0338526,9C2L5v6BfLE,Van Helsing and Anna discover Frankenstein's Monster while they are trapped underground. tt0338526,VUgsvd3ZjvA,"Van Helsing transforms into a werewolf to kill Dracula, but at the same time, kills the love of his life, Anna." tt0096734,bwf_EFTMZ9k,"Ray dreams of chainsaws, ritualized human sacrifice and soda jerks." tt0475394,yoWz1IdoTIg,"Sensing something amiss with Buddy, Ivy decides to confront him face-to-face." tt0096734,PPO1EQmj05I,"Alone in an ambulance with Ray, Dr. Klopek shows his true colors." tt0096734,1nVThHLqda0,Art reads from a demonology manual; Ray drowns him out. tt0096734,eCfvE03ufF8,Art and Ray bicker over which of them should greet the new neighbor when they spot one of the Klopek's coming out of the house. tt0132477,CGivL32FazM,"While collecting scrap railroad tracks, the Rocket Boys get a scare when they hear a train coming." tt0103850,Z9agItiMEEk,"Bob meets some fanatic fans, including Mrs. Davis, her son Roger, and his two friends Calvin and Burt." tt0212338,XHrw3AFW0Z0,"At the request of Jack, Greg delivers a strange version of grace at the dinner table." tt0252866,eC_Ua1svsSE,Jim and his dad have a heartfelt talk in the van. tt0993842,zNvYQ2ILSCo,Hanna's first kiss is cut short by her own killer instincts. tt1034389,wytwlFfk5dY,Marcus wants to take Esca with him to find the lost eagle; Aquila strongly advises against it. tt1578275,t6bhgzR3gkY,Beth and Nick try to convince Ronny to dance. tt0970866,Juv96hHY62A,Jack disagrees with Greg about letting Henry climb a rock wall. tt0970866,JtHq6vKm3WU,Kevin meets Andi. tt0970866,BHBmOFFExso,Jack asks Greg if he is still attracted to Pam. tt0947810,onyfp4uSmcY,Miller splits up his squad for an attack on a safe house. tt1234654,srTcK8ybXpI,Roger blasts away at the young party guests about their generation. tt0947810,5oav3ZjdRz4,Miller attacks his captor. tt1234654,4wddfKqi1hI,Roger becomes frustrated waiting in the veterinarian's office with Florence. tt1234654,KWaZiVG1RfY,Roger runs into a friend and gives her the scoop on what he's been up to lately. tt0361748,Uoqe4phEwEY,Col. Hans Landa discusses nicknames given by enemies. tt1216492,TyoZkvsxrSo,Anna accidentally sends Declan's car careening down the hill. tt0252866,hEDeIvU1si8,"In a case of mistaken identity, Jim is forced to play a trombone solo in front of a crowded amphitheater." tt0899106,oquM3yN0E4A,Marty points out Eloise's self-destructive dating pattern. tt1234654,NRqxxQy8sLs,Roger spends his birthday with his friend at the restaurant Musso & Frank. tt0361748,3YM3AYZaTZ0,Lt. Aldo Raine brings his troops up to speed on their mission. tt0252866,K8yeho0MbYc,"Oz and Heather attempt to have phone sex, despite many obstacles." tt0252866,9oVoJMVsKtk,The men and women separately talk about the rule of three and how you can figure out how many people someone has slept with. tt0054215,f-PnGRaJaSA,"Consumed with thoughts of her misdeeds, Marion comes upon the Bates Motel." tt0107290,YKRnEOUxZm0,"While hunting one raptor, Muldoon is ambushed by a second Raptor and gets taken down." tt0083866,oR1-UFrcZ0k,"Just as they are about to be stopped by police and government officials, E.T. lifts the boys' bikes into the air and brings them to safety." tt0073195,2I91DJZKRxs,The crew gets their first face-to-face look at the massive shark. tt0052357,4WAxDlUOw-w,Scottie has an unnerving nightmare about falling in the same spot that Madeline did. tt0096320,_WyD94vNqWg,The brothers learn that Julius was genetically engineered to be perfect and Vince was the left over crap. tt0083866,mGA_uH0-n28,E.T.'s magic touch instantly heals Elliott's finger as they hide in the closet and listen to Mary read the story of Peter Pan. tt0096874,5PT9OxwD6hM,"After Biff is knocked out cold, Marty seizes his chance to retrieve the almanac." tt0096874,l9c1k_m6POA,Marty confronts Biff about the sports almanac he's used to amass his fortune. tt0131857,KPowlurwWzU,Coop comes face to face with his idol: Reggie Jackson. tt0131857,CsWFLaHiQa8,The Beers do their best to revive an ailing Joey at the hospital. tt0096874,S4m848bh1iY,"Marty wanders around a disturbing reality in which Biff is ""America's greatest living folk hero.""" tt0131857,1Qb-2KSKByg,A very drunk Cooper tries to make three home-runs for sick Joey. tt0131857,6wN78_E4AAs,"Coop and Remer swap apologies, and saliva." tt0131857,7WD9MVTfdjs,The song on Coop's car radio is disturbingly accurate. tt0131857,hXce5-f8mkA,Coop delivers the ultimate psych-out of clipping his middle finger with a pair of wire cutters. tt0131857,NZxjmhwogCk,Mr. Cain informs Joe about changes in the BASEketball league. tt0131325,yVGlKrziG5E,"In a restaurant, Bowfinger plants himself next to Jerry Renfro in an effort to try and get his movie financed." tt0131857,RG9LKdqzru0,"Coop and Remer meet Jenna, a counselor for terminally-ill children." tt0131857,B-tq7mbTvrA,Joe puts on an Eric Cartman voice from South Park to psyche out the other team. tt0131857,ztSSzTA5Z90,Squeak finds it hard to shut off the guys' gas at the house. tt0078723,m_PeQCPq8QA,"Believing they found Hollywood, the Japanese fire at the carnival, making the ferris wheel roll down the pier and into the ocean." tt0078723,CPnwlNvwBLI,"Capt. Kelso stops for some provisions at a gas station, but loses his plane." tt0091541,mT5NiDGbnVM,"Walter and Anna have a huge blowout in front of all the workers, and decide to split up once the house is finished." tt0113360,IptkOvp53-A,"Meeting only hours earlier, Paul and Kirina begin an evening of passion." tt0078723,NOVNs9sT32k,The United States Army and the Navy start a full on brawl at the USO dance hall. tt0103850,1ao1yR27lak,"After leaving the television set, Bob Roberts signs some autographs, gets a kiss from a stranger, and is shot, supposedly by the poor crippled reporter, Bugs Raplin." tt0052357,B8cWjLMuJgo,"Scottie follows Madeleine, but is shocked when she tries to drown herself in San Francisco Bay." tt0099141,idfa7VqkSOw,"On her own in the zoo, Marianne faces some fierce tigers, armed monkeys, and the man who wants Rick dead." tt0103850,PxtuovqUgYU,"Bugs Raplin tries to open the viewers' eyes to the deception told by the government to the American people, while Senator Brickley Paiste uses an anecdote about a frog letting itself die slowly in a boiling pot of water because it doesn't notice the temperature rising until it's too late." tt0103850,G99Olp16O7M,"Bob Roberts goes on the local TV station, Good Morning Philadelphia, and has conflicting views with the news reporter, Kelly Noble." tt0056592,-x6njs-cGUE,Atticus points out the obvious inequalities in the justice system and asks the jury to look at Thomas's case with a fair and just eye. tt0372183,I3znSbbu9IU,Jason calls Pamela who thanks him for his help and tells him his real identity. tt0104231,eKrEVWGTuRg,Shannon gets jealous when a dancer shows some interest in Joesph. He demands that she say something nice about him. tt0056592,C841wEogE4U,"Atticus addresses the court and describes Mayella's guilt for tempting a black man, and the dire consequences her guilt has caused." tt0099329,A4DSD-ZbhoY,Fender and his gang crucify Gibson on a junkyard ship. tt0327597,oBO9Uy4uc_c,Coraline discovers where the Other Mother has trapped her real parents. tt0112641,1FZ2FA-epcE,"After the Kansas City bosses are arrested for skimming off the casino, Remo puts a hit on anyone, and everyone, who may testify against them as witnesses." tt0023969,VKTT-sy0aLg,"Pinky pretends to be Firefly's reflection, matching his every move – until Chicolini ruins the effect." tt0322589,XOnuxo70q9Q,Chaz saves Honey from BB when he tries to harass Honey about Benny's whereabouts. tt0088763,AM5EYO5wWMA,Doc risks life and limb to get Marty back to the future during the lightning storm. tt0218967,aZV1XI9qZUc,Jack uses his knowledge from his other life to ace his interview at his old job. tt0101921,934iAVn9CKw,Ruth passes away while Idgie tells her a story at her bedside. tt0218967,G36NDRDO6L8,"When Cash pulls a gun on the Liquor Store Clerk, Jack diffuses the situation by making him a deal." tt0218967,a2dHmOQuDaQ,An argument between Jack and Kate about an expensive suit escalates into Jack going on a diatribe about his pathetic life. tt0101921,lx0z9FjxP-Y,Evelyn Couch is waiting on a parking spot which gets swiped by a VW Beetle. tt0076723,VHMi-j7W2gM,The Hanson Brothers get things started with a pre-game brawl before the National Anthem even begins. tt0099141,nJ04J0TWD1I,"Rick asks Marianne to look at the gunshot wound in his butt, setting her off on a tirade about how he's done her wrong." tt0099141,FNHM2JEA1qg,"After roughing it through the woods, Marianne enjoys a hot shower until she is surprised by a very large bug." tt0166924,1g4V55DSrbg,Adam is pressured to cast Camilla in his film by a man who is very picky about his espresso. tt0340855,ruN_KcF-Ouw,"Aileen attempts to get a straight job, but is laughed out of the room without experience and education." tt0340855,WVx0SlYmaxs,Aileen wakes up tied and abused after picking up a client. tt1596346,aJ_NWmLawAM,Bethany grieves the loss of the life she had before her shark attack. tt1232824,KMm_fkYUdo8,Father Buerlein hears a startling confession from an anonymous and unfamiliar voice. tt0382856,c6GEJoLDcAs,The survivors are saved by The Backstreet Boy's Nick Carter. tt1232824,LR6zTixElx8,"Father Buerlein takes a confession from Nadine, a girlfriend from before Seminary." tt0382856,L0CGJL5SlsQ,Eightball saves the day by bulldozing the giant mantis off of a cliff. tt0382810,wwrzI3b5LxI,Brad lashes out at Lionel when he senses he's lying about how much he knows. tt1650062,9IdM84YVmV0,"Perturbed by the line-cutters, Frank shimmies into his Crimson Bolt costume and doles out some pretty extreme punishment." tt0382856,dfT_2XRB8aU,An angry giant insect snatches Carmen Electra. tt0340855,Hws-ExO9fhY,"Aileen brings a customer into the woods, berating him and ultimately murdering him before discovering he is an off duty police officer." tt0382810,HDxqSt_Ctbw,"Tracy, Jonny, and Ray arrive at Stephen's secret drug compound and discover Lionel after he's just ODed." tt0382810,Lsm-snDPXnk,Janelle dredges up the past in an embittered speech for Ray's birthday. tt0382810,W4_F1oMTEFc,Tracy and Jonny kiss sober for the first time. tt1020773,x2BuNuwZ9mg,Elle argues with James over art and the nature of relationships. tt0340855,86F-fpdTJg4,Aileen puts her situation into perspective with Selby. tt0273453,efr5PYBNZCo,Peter meets Malcolm while seeking a doctor for his wife. tt0273453,tAp6HB4WAdg,Darla freaks out and maces Peter when he approaches her. tt0340855,-3cmJe_Kw30,Aileen makes a final go around with life on account of five dollars. tt0340855,5TcimuSgJoI,Tension mounts when a suspected client turns out to be a decent man and Aileen gives him the same treatment. tt1486185,YNN09xbsN1A,Valerie's confrontation with Peter gets heated as she suspects him of being the wolf. tt0382856,2nC7GyHvy0w,The gang of survivors escape the crumbling mountain. tt0382856,IiD7lmQlL-0,"When the survivors come upon two giant mantis battling, they soon discover the two are actually ""making it.""" tt1232824,7TcMmmC-PqQ,Linda runs into an uplifting homeless man while John wrestles with the notion that he may have failed her as the day comes to an end. tt1232824,QsCPatNIpPE,John seeks forgiveness from his friend and fellow priest Ralph. tt1232824,maaoRjQN42c,Father Buerlein gathers information on prostitution hoping to discover a path to his confessing stranger. tt1232824,HZ1D6bBiufI,Father Buerlein's searches Linda's apartment in hopes of finding her. tt1232824,u0Mz_e_TQCI,Father Buerlein preaches on the less famous saints in Catholic history. tt1232824,AsKzZqVhH88,"Father Buerlein visits his friend, Father O'Brien for advice." tt0382856,qaK_jsGvz6Y,Maddy uses a bit of the old possessed magic to boost the morale of the giant insect slaves. tt1232824,3z637yWEmHs,Father Buerlein consoles various members of his congregation. tt0382856,jHZLatZGr0E,The group find themselves in the chambers of Dr. Harryhausen. tt0382856,DO50JhaRp4A,The gang of survivors encounter a monster praying mantis in the woods. tt0382856,pZE1CyPdDMo,"When a monstrous swamp monkey attacks the survivors, Dr. Harryhausen pops up to save the day." tt0382856,OJZGgPoJ_u4,Josh tries to gather the partygoers to rescue Carmen Electra tt0382810,3FgbU0ZZzQY,"Steven tries to steal the money from Tracy, Ray, and Jonny, but Tracy holds her ground." tt0273453,Y7LbtFY23wo,Malcolm visits Peter after getting fired from his practice at the hospital. tt0382810,V3EpNkdgmyo,Tracy's temper flares up when she is rejected for a loan. tt0382810,dp6WEWGtqRo,"Tracy helps Lionel through his withdrawals, and is shocked when he asks her to make a drug run for him." tt0382810,65L7TzsFaD8,Jonny offers to help Tracy get the money she needs to be a partner at the video store. tt0382810,LdnaptnNXbo,Tracy confides in her mother about her crushed hopes of being a part-owner of the video store. tt0382810,91wo3olctwU,"Tracy finds out that Jonny lied about being a stock broker, so she confronts him at a restaurant." tt0273453,E2VBcVxwUqM,Peter loses it when Tom gives him his eviction notice. tt0273453,jGWM1SoLAm8,Darla asks Malcolm for some advice after she sleeps with Peter. tt0273453,m8RpGUXeHFQ,Darla and Sam bicker about their kiss a week prior. tt0273453,PHcV9HUfr0c,Lucy's eccentric family visits her in her moment of need. tt0273453,xeE4wGavBhE,Peter recalls a psychotic episode with his wife. tt0273453,Gxd-OPuy2tA,Peter's new quirky friends and his sister-in-law come to his aid when Lucy's condition gets worse. tt0273453,1xqufX-xMr0,"Peter tries to ask Darla about his wife's situation, but it doesn't pan out well." tt1020773,GFB8DiM-SLQ,A woman in a cafe gives Elle advice on husbands. tt1650062,44rUlHYg-MU,Frank is touched by the finger of God along with slimy tentacles when he receives Divine enlightenment. tt1650062,yu2VrqdOVdw,"Frank attempts to rescue"" Sarah from Jacques." tt1650062,aP1FZToPFxA,Libby tries out for Frank's sidekick. tt1650062,tVl78xgPyow,Libby shows off her costume to Frank. tt1020773,soTciHbL4iA,L'homme de la place gives some fatherly advice to James concerning Elle. tt0340855,qZfK-VnxBSo,Aileen embraces Selby before she leaves. tt0340855,JcTBwzDucE4,Selby is forced to confront her father when she comes home after running away. tt1596346,exclwIbllXQ,"Cheri is weary when Tom says he was approached by a TV show that wants to give Bethany a prosthetic arm in exchange for an interview, but Bethany quickly agrees to do it." tt1194263,yzGKgnbclz8,Frank and Felix negotiate the price of holding the funeral. tt1194263,Ppa4gvsZHDE,Felix tries to convince Rev. Jackson to preach at his funeral. tt0119738,FvJMbz4vgNY,Michael opens up to Julianne in what might be their last moment alone together. tt0119738,WlB-BbWBzd8,Julianne finds Kimberly in a restroom and tries to convince her to reunite with Michael. tt0119738,9ExnVKy8hao,"Julianne works up the courage to tell Michael her true feelings, but chaos erupts when Kimberly sees them kiss." tt0119738,vGgdg2q1eig,Julianne tries to explain to Kimberly what Michael really wants using a dessert analogy. tt0119738,YKjzDMrSX3w,"Julianne tries to tell Michael how she feels, but instead tells him that she's engaged to George." tt0119738,QAsI8z9qfKY,Julianne uses a baseball game to start making the moves on Michael to steal him back before the wedding. tt0119738,A9qAaecuaFk,"Julianne introduces George to the wedding party, and he quickly makes friends with Kimberly." tt1743720,GLQd8ZTeYlI,Ralph Nader tells Morgan Spurlock of the challenges ahead in the making of his documentary. tt1255953,oAFVhwUVJt4,Jeanne discovers more clues about her mother. tt1119646,6I1qP8w8DxE,Stu is shocked and upset after discovering he got married to a stranger the night before and implores his friends to help him torch a police car. tt1423894,zNyykRpFBQY,Barney Panofsky and his father have a less-than-appropriate conversation over his deceased mother's grave. tt1282140,TjpkMfTBVQs,Rosemary and Dill explain to adopted son Chip that they are a family of late bloomers. tt1194263,GaBjbzvkxNk,Frank and Buddy stop Felix from shaving off his beard before they can get a picture for their ads. tt1149361,XQLKAVpgHQ4,"As Bazil studies the film noir classic ""The Big Sleep,"" a shootout occurs in front of the video store." tt1038919,-UAV4O9oZy0,Nicole pretends she is seducing Milo when he wakes up while she is trying to get his gun. tt0762125,scEuS9-TozQ,"Rover overcomes his fear of the rain and ""dances"" in it." tt0762125,gB1LgDhJQMI,Lem and Neera have a brief moment before Rover returns and they go to find Chuck. tt0762125,mkNO5Y4LOMs,General Grawl explains to Chuck what will happen if he tries to take over anyone's mind. tt0762125,gTLqDBbrmPM,Chuck and Lem have their first encounter and are surprised that they speak the same language. tt0762125,kqc4KyCYA0Q,Chuck first lands on the planet and wreaks havoc. tt0762125,sNGlmsj6C-E,Chuck and Lem have their first encounter and are surprised that they speak the same language. tt0762125,c3uOWTAuaTQ,Skiff accuses Lem of being a zombie alien; Lem accuses Skiff of being a paranoid nutcase. tt0849470,TDo2llQRSOw,Mr. Rigetti makes Principal Dickwalder suspicious about the timing of a student's funeral. tt0388182,XVEnOs2HVlY,"During the gold heist, Charlie ties up Miranda for her own safety, and thanks her for all that she's done as a daughter." tt0323939,Ezy42s9AacE,It is revealed that Vernon and Dean were in cahoots to take down Miller and Tiffany. tt1020543,zrECNEIUFZc,Mayhem ensues when one of the prisoners at the local jail mutates into a human-bug hybrid. tt1501652,nhUW_MrQGTY,Dylan pays off Charlie's debts to Mr. Brennan. tt0284929,77LZW5N_Tic,"When Ted Bundy is sentenced to capital punishment, America rejoices." tt0242508,nKIH1LgVMpQ,"After a shoot around, Marcus becomes frustrated with Alan's lack of effort on the basketball court explaining that he plays to win and to get girls." tt0242508,A-3SeVkGrjE,Alan and Marcus walk through Harvard Square discussing basketball and how black people neither skate nor swim. tt0413466,AekHQpGS_AQ,Kico tells Nikki about race relations in South Central Los Angeles. tt0242508,dpFSms_kfQo,Chesney lectures her philosophy class on fear versus dread in the work of Kierkegaard and Heidegger. She also has an affair with her student Alan. tt0413466,FUL6DhVU7E8,Jonathan tells Spermball about the awkward way he lost his virginity in sixth grade. tt0070047,-qK58CZslAs,The discovery of a Ouija board in the basement prompts Chris to ask sweet little Reagan about what she's been doing. tt1242618,oirwXF98wo0,"Alice watches home movies shot by the previous occupants of the house, David and Lucy." tt1242618,2X80aLjCncQ,Alice spends her first night in the old house and is unnerved by strange noises. tt0405163,zQPE6MCV2jo,"On the first day of the porn shoot, the crew is surprised at the lack of girth in their three black leads." tt0405163,R1hGaVoYZxo,The gang gets together to go over the re-writes on the script. tt0405163,fA_1iRByNFw,Andy and the team brainstorm the necessary scenes for a well rounded porno. tt0405163,Y2u092TuA8g,Some Idiot makes his case to Andy on why he's the best choice to be writer and director for the porno. tt0338075,_P4YRqZPT54,"Larry goes on and on about ""yin and yang"" to Phil, who couldn't care less." tt0338013,hZdl2FFp0eA,"On a train ride from Montaux, Joel encounters Clementine for the first time." tt1411704,z1hgz7vgIt4,"Sam cuddles with E.B., thinking he is a stuffed bunny." tt0446029,30iTy8ws54M,Knives attacks Ramona for stealing Scott. tt1092026,SlPGQ7r0f7w,A humorous note leads Graeme to believe that Paul can read minds. tt0102175,Bu2PFyl689w,"Strung out on drugs, Gator confronts his parents for money… one last time." tt0350258,WgcXxTUu0aM,"Della is astonished that Ray recognized her by her voice. He explains that he hears, much like other people see." tt0097366,Ru2Mvkf9dL8,"Fletch returns home to a party, a new office, a sizable insurance check, and freedom from his wife's financial yoke." tt0350258,tTVFP-9AdMk,"When Ray hires on the Raelettes, Margie negotiates their weekly pay." tt0340855,st0h6-5fVtw,Aileen stands trial as her lover testifies against her. tt1013752,jTtTZjp9ViQ,"Dom confronts Fenix, the man who murdered Letty, and all hell breaks loose." tt0350258,9nFrp7Z9wEU,Ray stands up for himself against his corrupt managers and walks out leaving Gossie dry. tt0337721,dXQq9Y7KnmQ,Charlie tells Kanaalaq about adjusting to life after returning from war. tt0100107,8q8m4-7ciaE,The Maniac Cop blows away the entire police station. tt0100107,qDF1YfpUaNs,"Cheryl is stalked by the serial killer Turkell, who in turn in stalked by the Maniac Cop." tt0100107,kDHxHA2RzJ0,"When a deranged robber wins an instant lotto ticket, he also wins some quality time with the Maniac Cop." tt0405163,Ux_ruB_nt94,Andy argues with Homer over their misunderstanding about penis size. tt0100107,D407HWykw6o,Turkell cryptically teases Susan about something horrible that will go down at the police precinct. tt0405163,UBvArq7u9N8,Andy bands the town together to make a porno and introduces his friends to Emmett. tt0405163,AqutucmM6S8,The town gang gets excited at the idea of shooting a porno. tt0405163,9uFe61ebm30,"Andy attempts to buy a pro basketball, but finds himself short on cash." tt0323939,QeoL6G4bW4U,Marlo reveals to Larry that he was conned. tt0104808,xDwT7-3BQ5c,"Despite being set on fire and blown up on a number of occasions, the Maniac Cop still lives." tt0104808,qq8xAukB-xI,Detective McKinney blows up the Maniac Cop by throwing an oxygen tank into his burning police cruiser. tt0378407,pSQkW5soVhk,"Brian and Drew click while discussing fate, her fan club in the '80s, and Grease 2." tt0378407,H3plWCGH4wM,Drew compliments Brian on following his dream and the two exchange gifts. tt0104808,kkZWXM6mShg,Detective McKinney tries to stop the Maniac Cop from transforming Officer Sullivan into a creature of the undead. tt0378407,K_31ZHeMlB8,The moment has finally arrived for Brian's date with Drew and they hit it off right away. tt0104808,EbU1vOVwnOo,"Detective McKinney disguises himself as a dead body and then makes more dead bodies by laying waste to the escaping criminals, including Jessup." tt0378407,5klqA0K7K8k,Brian's family is skeptical yet supportive of his goal of getting a date with Drew Barrymore. tt0104808,dyb4ztHMFf8,A nosy cameraman is the latest victim of the Maniac Cop's rampage. tt0104808,hf4KXHSvKD8,Dr. Powell meets his untimely demise at the hands of the Maniac Cop. tt0104808,YSrDBY0Tmdc,A city official negotiates a deal with Dr. Powell to terminate the life the comatose Officer Sullivan. tt0378407,PtozHYwIkNw,"Brian and his friends pool their resources to make a mock movie trailer to send to Drew Barrymore, and end up scoring ultimate-movie-trailer-guy George DelHoyo to do the voice-over." tt0378407,3wtgdxKJI_A,"Brian and his team promote their cause via radio show and website, but they encounter setbacks when the website malfunctions and they find out Drew is engaged." tt0378407,8Px7Lr7VzvY,Eric Roberts advises Brian to get in shape if he wants to land a date with Drew. tt0104808,JtyvQx-YiCE,Dr. Myerson meets the Maniac Cop's electric personality. tt0104808,CbF9_x6zFYo,"A comatose Officer Sullivan has a bizarre dream where she finds herself walking down the aisle with Matt Cordell, aka the Maniac Cop." tt0378407,APsmTB3F7Rs,"Brian meets with Drew's cousin, Stephanie, who is shocked at the amount of body hair he has. Later, his friends give him a taste of the horrors of hair removal." tt0378407,M9nDop-5T0I,"Brian is delighted to finally receive a call from Drew's business partner, Nancy Juvonen, who tells him how much Drew loves his idea." tt0906665,2P6sN_5eM_M,"Mortally wounded, Ruriko watches the corrupt and insane Sheriff die by way of crucifixion." tt0906665,7cTI5pyy3Fw,"Ruriko gets her revenge against Kiyomori for the death of her son, only to be double-crossed by the insane town Sheriff." tt0906665,MrfsbtOOdGA,"Seeing the rival Heiki clan in possession of a Gatling gun, Yoshitsune, leader of the Genji clan, employs some incredible trick shots to take down his enemies." tt0906665,9k3swSqYKP8,"Ruriko, aka Bloody Benton, dispatches adversaries from both rival factions with tremendous style." tt0906665,xl_aSDYuXhM,Kiyomori welcomes a pretty wicked Gatling gun into his life. tt0906665,tIypF4ODIsM,Yoshitsune learns rather quickly that his subordinates are not the fighter that he is. tt0906665,r51WXifMsZg,The Gunman negotiates for the services of a young woman by kicking ass in a barroom brawl. tt0242508,cPa929v8Hps,Al Franken and his daughter approach Alan who is clearly tripping balls from ingesting too much L.S.D. tt0906665,331wiVQINn8,"The mysterious Piringo edifies a group of bandits about an old rivalry between two bitter Japanese clans, before dispatching the bandits in a brief, but violent shootout." tt0906665,Jjq8Ng6cjxE,"Ruriko protects the wounded and the innocent from some Genji clan thugs, revealing herself to be a lethal weapon." tt0906665,_Pbi5kod89U,The Gunman and Yoshitsune fight mano a mano in a duel to the death. tt0413466,Q0Eh0iTF2Bg,"The guys are hassled by some gangsters on their way home from their crazy day and night in Beverly Hills; upon parting, the guys finally call Milton by his real name." tt0210070,GuEFmBxmIT0,Pamela gets excited at dinner when signs of Ginger's late blooming menstruation appear. tt1095217,rCg9zLCbhZ0,"In the aftermath of the shootout at Big Fate's mansion, McDonagh finds himself the recipient of some very good news when he returns to work." tt1095217,f27cck3Bl-Y,"Teetering on the edge of madness, McDonagh threatens two elderly women as he searches for a critical witness." tt1095217,Vv0aAv0lJ3s,"During a stakeout, McDonagh suddenly has a vision of a pair of iguanas resting lazily on his coffee table." tt1095217,6uHak2M7cmc,"After shaking down a couple for drugs, McDonagh makes out with a young woman while forcing her boyfriend to watch." tt1219289,swOuQBjbiLU,Eddie calls upon his memory and drug-induced powers to fight like a pro when he finds himself threatened in the subway station. tt0118632,v1Qu3dZlRGE,A local troublemaker cannot bring himself to knock down the church when Sonny blocks the bulldozer with a Bible. tt1294688,yuCbYNe3aZY,Joanna begins to question why Michael never mentioned Laura was attractive. tt1294688,NamXvlffiog,Joanna is pleasantly surprised when Alex shows up unexpectedly. tt1294688,56a5meaLhBM,Michael introduces Joanna to Laura. tt1294688,qrzj1uVO-Lc,Laura and Michael talk at a bar; Laura suggests they keep the night going elsewhere. tt1664894,x7j4IiO_6RI,Cave paintings that have been preserved for thousands of years are explored. tt1743720,-szJznl-3UE,Morgan Spurlock meets with media executives in an effort to get financing for his movie. tt1743720,ZIc7bCHSmKo,Morgan Spurlock makes deals with all kinds of brands to be featured in The Greatest Movie Ever Sold. tt1743720,S78_9yWvSi8,Morgan Spurlock interviews New Yorkers about how they would describe themselves as a brand. tt1596346,eLW6uxK_MOI,Bethany surfs a high-scoring ride at a competition in Turtle Bay. tt1596346,W_7_2Uwl2uc,Bethany and Alana hunt for a bathing suit. tt1596346,LeNRbtWgero,Bethany tries to see the bright side of a grim situation with help from Sarah. tt1596346,jeoUH00woxs,"Bethany confesses her concern about her future with her mother, Cheri." tt1596346,NqxvezqrvQE,"Tom doesn't want Bethany to quit surfing, while Cheri doesn't want her to become lost if surfing doesn't pan out as they first imagined." tt1596346,NvNkGs5bFtA,Alana visits Bethany at the hospital. tt1596346,pZNQ-Jo7nsI,Cheri helps Bethany filter her commitments with surfing and friends. tt1564367,KgSTMVwRSiI,Eddie represents yet another fictitious element of the story that Katherine and Danny have woven. tt1255953,GpD2-wZnpO0,Simon meets with Wallat Chamseddine to discuss Simon's father. tt1564367,Eyokx50Jhrw,"Considering it part of the deal, Katherine starts to get a little demanding of Danny in the shoe department." tt0990407,kwdRauyX_Sc,Tupper is unintimidated with Chudnofksy's suit in comparison with a grown man in a mask. tt0990407,vFqitPr_Gpg,Kato derives a strategy by evaluating the weapons of his opponents in an uneven battle. tt1341188,7MF2IgjAjjA,Annie finds it increasingly difficult to contain important information from George tt1126591,CdUzUdaC8tI,Ali auditions to become a dancer in front of Tess and Sean. tt1038919,PyeH_sv2TEY,"When smoke starts streaming out of the back of his car, Milo opens the trunk, allowing Nicole to escape briefly." tt0913354,qi_t-McN6Vk,"Baines wants to burn the armored where Ty has stowed away, but that would mean burning the group's fortune with it." tt0844471,F0wFS45JjWA,Flint shows off his many failed inventions. tt1136608,_U-WwYlinTw,"After an alien spaceship stops over Johannesburg and sits motionless for 3 months, investigators cut their way into the ship." tt1596343,vf6nfEZgorY,Brian and Mia are chased over the rooftops of a Rio favela. tt1596343,0dlFAtbte0c,Dom and Hobbs come head to head and duke it out. tt1596343,ifG_E9BKfuc,The crew reach a stumbling block in a required palm print to open the safe. tt1596343,3u_oizn3fg4,Dom and Brian drag a giant safe through the streets of Rio while Mia guides them. tt1596343,UCh-HA6pIA8,Dom rescues Brian from a sticky situation on the train. tt1596343,vQdFnS_u8UM,Dom and Brian lay down the score for the crew. tt1596343,dobHtRTf5rY,Hobbs chases down Dom on the streets of Rio de Janeiro. tt1596343,7ZFGP8b4Nz4,The crew make a million dollar bet when they realize their next job is an everything or nothing deal. tt0324133,4rJ4een9CcY,"Sarah's publisher, Charles, instructs Sarah to stay at his summer house in France for some solitude and relaxation." tt1240982,7Q8m_vs3HzY,Isabel gets some questionable advice from Thadeous around the campfire. tt0993842,Km71QCX39rQ,"Hanna gives her friend, Sophie, very clear instructions before exiting the van." tt0993842,4iaM0-kcWtc,"Hanna, who is under psychiatric evaluation, has only one request - to see Marissa Wiegler." tt1411704,ILJTdnLyUC8,Carlos threatens E.B.'s father that he and the chicks will revolt. tt1411704,QY11UyRZBM4,"Fred discovers that E.B. has demolished the ""forbidden room.""" tt1411704,tH4JJtuyLp4,E.B. describes the ungodly pressure of being the Easter Bunny. tt1092026,sFjraGFeU-A,Clive and Graeme try to get Tara to open the door to talk about Paul. tt1229822,BkO51g7oXnw,"Impressed with Jane's artistic abilities, Mary shares one of her sketches with St. John." tt0881320,TnniBE14vQY,Frank and Josh discover a WWII-era tank buried within a sinkhole. tt1385826,R9HPdX0TZAg,David tells Thompson he is choosing Elise. tt0102175,mnuJ_YVLL64,Tensions rise as the cops misinterpret Flip and Angie's playful fighting as an assault in progress. tt0102175,WkOLYUmITfc,"Gator is taken aback by the sight of Angie, the new white girlfriend of his younger brother, Flip." tt0102175,0l8mYfrxpTw,"In the aftermath of her husband's affair, Drew commiserates with her girlfriends." tt0102175,CKJSr3Uw-N0,"When Flip learns from his bosses that he will not be made a partner in the firm, he offers his resignation on the spot." tt0102175,jSidQZzJfcc,Gator coerces his younger brother Flip into giving him money so he can continue to buy more crack. tt1013752,1t867tCFccE,Dom gets sweet revenge on Fenix Rise. tt0102175,mTfTGanKAJs,Flip and Angie succumb to their mutual temptations. tt1013752,NoRnWATJPrA,The sexy Gisele tries to make a move on Dom. tt1013752,g-gebDSBFkY,"When Dom discovers that his deceased girlfriend was working as an FBI informant, he takes it out on O'Conner." tt0328828,dFAd35ck7hY,Michelle talks about sex and love with Jim's dad. tt1013752,x_errHqd92k,"Dom and O'Conner drive drugs across the U.S. border, evading the authorities by going underground." tt1013752,FD3Xh_Qez_Y,"Dom beats his rival O'Conner in a tight race, winning first place - and the eyes of a new friend." tt1013752,hK2bLlVeh-w,"In search of the same informant, Dom and O'Conner have different ways of dealing with their anger." tt1013752,ZXXpX29Xt-U,"When a daring high-speed robbery goes awry, Dom must save Letty (Michelle Rodriguez from certain death." tt1013752,wNWaYfZI3Ak,"As he surveys Letty's crash site, Dom reconstructs just what happened." tt1013752,t1JsC1ur2X8,Dom tells Letty that he needs to move on in order to protect her from the cops. tt0872230,HegpqudDvwE,"Jean-Baptiste tells Det. Frank Paterson about how Haitians don't believe in multiple personalities, they believe in multiple souls." tt0899106,FIekWUU704U,Eloise gives Burke her two cents about his life. tt0350258,UOVyhaDQNfw,Ray has a hallucination about his mom and brother brought on by the trauma of his brother's untimely death. tt0166924,nzWDzGxqqa0,Dan collapses when he finds the subject of his nightmare lurking behind the restaurant. tt0887883,8Ufi7Z8OokA,Harry and Osbourne have a barbed exchange at the cocktail party. tt0350258,LakGqZmF-Gg,"Ray gives an impromptu performance at a Seattle club, and chooses a crowd-pleaser by Nat King Cole." tt0350258,5yGuDDemqaw,Della lectures Ray /*259*/) about his drug addiction in a way she knows will get through to him -- by putting it in terms of his music. tt0350258,riYhck-Z9tw,"Down in Georgia, a black civilian protesting against segregation has an impact on Ray, convincing him to set an example by refusing to play at the segregated club." tt0350258,_T7vEyicx6Q,Ray drives Joe to tears when he confronts him about stealing money from him. tt0350258,MLrd4hKTVLQ,Ray breaks the news to his management at Atlantic Records that he's been offered an amazing record deal elsewhere. tt0385267,_5TCxc7G31Q,Dan leads the way in making an ad sale as Carter watches and learns from an experienced pro. tt0350258,Q-R4SPTgjmI,"Ahmet confronts Ray about his drug use, as a friend, rather than a business man." tt0385267,FGiocp7_jE8,Dan interrupts the big speech of Globecom CEO Teddy K to question his business model of synergy. tt0385267,Y_RUAeNZs44,"Dan interrupts Carter and Alex at lunch. When Carter confesses his love for Alex, Dan punches him out in the restaurant." tt0385267,VFqbGbU8f8o,Carter gives a motivational speech to the company about the idea of synergy in advertising. tt0097351,v6bD23vEigE,"When Ray's daughter stops breathing, Archie Graham morphs into Doc Graham to assist her." tt0385267,cOE2gQrXchk,"On his first day of work, Carter meets Alex in the elevator and admits he is nervous." tt0087995,lKeaVq6fUpw,"Otto hitches a ride with Parnell who goes off on a tangent and then passes out, crashing into the curb." tt0087995,vRJ5cCP0ZPE,"While burning clothes with Otto, Miller shares his philosophy on anything and everything." tt0493464,iK0-76FChfk,Wesley reaches his limit in the office and tells off his boss Janice and friend Barry. tt0114746,eb46yXP211w,"Jeffrey lectures Cole about germs, while Cole swallows a spider in order to bring it back to the future as evidence." tt0329575,5ecF_TOyhfQ,Tom is furious when Red confesses his secret that he's blind in one eye; Charles says that it's fine. tt0324133,oXybPR2g7VY,"Sarah is surprised by an unexpected house guest, Julie." tt0324133,9tzlsm5IvIg,Sarah tries to exert some control over Julie by inquiring her whereabouts the previous night. tt0192614,pLpIARbS5Xo,The Revealing Process proves to be quite uncomfortable when Luke asks Caleb about Will's death. tt0095253,cqpvoIx9wbw,"While Chet and sons burn up the go-kart track, Roman hits the driving range." tt0192614,CnSvI5JxRC4,Luke and Caleb get a taste of the privileges that come with their new life. tt0324133,yGbG0TmmRDg,"Julie asks Sarah what she thinks the consequences of her crime will be, and is surprised that Sarah is willing to help her." tt0842926,Z8auSdJSusE,Joni connects with her sperm donor by phone. tt1385826,QQWyeLLMwmo,David and Elise flirt on the bus over spilled coffee. tt1092026,WL56IXifi9w,"Waking up after a blackout, Clive attacks Paul, assuming the alien to be dangerous." tt1385826,1hw9NF3zzrI,Richardson reminds David that Elise is not in his plan. tt0970866,-aKc2aFeCOk,Bernie and Roz give Jack a present. tt0970866,9Qesj84cHLw,Greg introduces Pam to Andi. tt0780653,UtIr2Cpk2c4,Lawrence warns Gwen that she is not safe and should leave as soon as possible. tt1385826,wbVpwsKbFCU,David and Elise run away from Thompson. tt1385826,7XFAamm-SE0,Harry tries to help David understand what is happening. tt1092026,QJZ83TqU_x0,Paul stuns his companions with his healing powers before disgusting them with his appetite. tt0881320,n86XlheDzhc,"When Judes's air supply is suddenly cut-off, Frank shares his air with her at the risk of both of their lives." tt0881320,s_j4-cVHFH8,Carl pulls a fast one on Josh when he makes a bet on who can reach the bottom of the cave the fastest. tt1229822,xTseWiI_yns,"Jane proclaims that she is leaving Rochester, but it only prompts him to propose." tt1240982,y1tx1hn8Pwo,Fabious explains his love for Belladonna. tt1240982,1eyMnUczVLY,Thadeous meets Isabel and vows to protect her with his manliness. tt1411704,kReNcBdLDa8,Carlos tells E.B.'s dad how difficult a son is to replace. tt1240982,HLO5LmnO8gM,Isabel wants to work together with Thadeous for revenge. tt1240982,BWnG6--TRYI,Leezar wakes up Belladonna in the tower by pretending to be Fabious. tt0993842,JuPSeaf--7g,Erik tries to help Hanna out of a tense situation. tt1240982,6439wcfAL-E,Fabious asks Thadeous to be his best man. tt1034389,xMdDeWfS3O0,"Marcus orders his troops to retreat, but ultimately takes a shot at his enemy." tt0993842,HUrzvLhxA0M,Hanna escapes from a CIA base after killing Marissa Wiegler's double. tt0993842,nPjlPgeaD_M,Marissa solicits Isaacs to track down Hanna. tt1229822,LLyS4KzDsQ4,"Jane learns that Mrs. Fairfax is the housekeeper of Thornfield Hall, not the owner." tt0993842,dazYs4DgYtc,"Erik coaches his daughter, Hanna, one last time before parting ways." tt0118632,weDm19eMl8Y,"When the authorities catch up with Sonny, they wait to arrest him outside the church during a service." tt0118632,Jfddc8LwQL8,Sonny gets into a scuffle when a passing stranger interrupts a service. tt0108052,jri0U57iWWM,The Schindler Jews are liberated by the Russain army and walk over the hillside to start anew. Amon Goeth is hung for his war crimes. tt0118632,TxKxj0ZWEcY,Sonny loses his temper at his son's baseball game and beats up his wife's lover with a baseball bat. tt0118632,xt0TyfTl03Y,Sonny brings in some of the children of the neighborhood to work on the new church. tt0118632,fDx628jn1YI,Sonny and the fellow evangelicals preach together during a revival meeting. tt0108052,qIp_8RNNX4k,"At the end of the war, Itzhak presents Oskar a gold ring with the inscription ""whoever saves one life, save the world entire.""" tt0118632,q5v5DOEF45E,"As Momma Dewey explains, sometimes her son talks to the Lord, sometimes he yells to the Lord." tt0118632,pwdhau_agX0,"When Sonny drives by a car accident, he approaches a flipped vehicle and attempts to save a seriously injured man and woman." tt0108052,CmyP-ljev68,Oskar and Itzhak write out the list of names of those who will go to the work factory in Schindler's old home of Zwittau-Brinnlitz. tt0108052,ZKie_34cpJI,"Commandant Amon Goeth chooses Helen Hirsch to be the housekeeper of his villa in the labor camp, then orders the execution of the Jewish engineer in charge of construction of the barracks." tt0108052,7mJ0HSLMba0,Helen Hirsch describes to Schindler what it is like to be the Jewish housemaid to Commandant Amon Goeth. tt0108052,veztNJQyRJg,Rabbi Lewartow is miraculously spared his life when two guns fail to work in the hands of Amon during an execution. tt0108052,j1VL-y9JHuI,"In the middle of all the chaos during the liquidation of the ghetto, Schindler notices a young girl in a red coat walking down the street unharmed." tt0108052,5yR0wlrq_h4,"An S.S. officer plays classical music on a piano, as the liquidation of the Krakow ghetto extends deep into the night." tt0106770,lGqBJx2xbqQ,"While shooting The Big Boss,"" Bruce is confronted by Johnny Sun's brother, Luke, and they battle in an ice factory." tt0106770,G4cvTaP7RS8,"On his first day of shooting The Green Hornet,"" Bruce spices up the action to make things more exciting." tt0106770,OC195SrxRmQ,"When the Demon threatens to kill his son, Bruce finds the power to defeat him." tt0106770,6Ewhxrht6cg,"Bruce demolishes Johnny Sun in under 60 seconds, getting his revenge while proving his new style of Jeet Kune Do." tt0413099,eBE2Wgz32nY,"While Congress decides the Public Land Act, Evan crashes his Ark full of animals straight into the Capitol Building." tt0106770,tr4beSTsJ1E,"Bruce defeats Johnny Sun in a fair fight, but he is injured when Johnny kicks him from behind." tt0413099,PnUvSn9pVaA,All of the skeptics on land rush towards the ark as a giant flood surges towards their homes. tt0106770,lbiymQJsC8M,"Bruce goes on a date with Linda to see ""Breakfast at Tiffany's"" where they are confronted with racial stereotypes." tt0413099,g_U9jZQ54LM,"After dozens of wild animals enter the room, Evan explains to Congress that God has warned him about a disastrous flood." tt0106770,VzonTHZSaq0,"An argument in the gym over a weight machine turns racist, leading to a showdown between Bruce and some jocks." tt0108052,BRZh_NO5tic,"Schindler makes his presence, and stature, known at a nightclub while introducing himself to various S.S. members." tt0413099,GNTdNXkhZ8Y,Rita and Marty are in shock when they see Evan's rapidly growing beard for the first time. tt0413099,V7bO0UmtpFs,Evan is about to have an important meeting but his office has been with birds. tt0192614,nmldcHUthLA,Luke crashes The Skull's party and challenges Caleb to a duel. tt0413099,FHohKkrVoMI,Evan is asked to read and sign a huge legislation before he can go home and be with his family. tt0087995,ewvHk1nM5u0,"When Otto shows up with a black eye, the other repo men won't let him go until he tells them who did it." tt1294688,H1t84X0iHTY,Joanna is strongly attracted to Alex. tt0192614,3fXPZqrKduQ,Things take an ugly turn when Luke finds Will hanged in his dorm room. tt0413099,3E-C9PipmaA,Evan prepares himself for his day in Congress. tt0087995,HZjZbJuhPAo,"When a Motorcycle Cop dares to look in the trunk of Parnell's car, he gets the surprise of a lifetime." tt0413099,eHpBhm4LMfw,"Evan meets the people he'll be working with, including the new kid"" Eugene." tt0087995,fN2AXsF-kwc,"While driving in the LA River, Otto and Bud run into the Rodriguez Brothers who race them up the banks." tt0101540,ctyDL-6f90w,"After a savage fight with Sam, Cady sinks into the river." tt0101540,Z7xJxo223YA,"Cady stages a mock trial of Sam, serving as both prosecutor and judge." tt0101540,BDiB3XcDsT0,Leigh makes a heartfelt plea to Cady to spare Danielle. tt0087995,76Dbf85Vo3Y,"While trying to repo a car, Otto gets shot at. Lite shoots back and they complete the job." tt0101540,CEuqveZyuQw,"Dressed as the housekeeper, Cady garrotes Kersek with a piano wire." tt0101540,tBSbjKyamRo,"Danielle hurls boiling water at Cady, but he demonstrates a superhuman tolerance for pain." tt0101540,6vO-XDUiRqU,"Cady survives a hospital job"" by three hired thugs, then taunts Sam who's hiding in the shadows." tt0101540,-5798-VRVYA,Cady seduces Danielle in the high school auditiorium. tt0101540,M6HxD6sZ-I0,Cady's crass behavior at the movies -- smoking and cackling -- annoys Sam and his family. tt0026138,o1Izq-E3o7Y,"When The Monster realizes that his Bride hates him like everyone else, he blows up the castle." tt0101540,POR5t4hjtPg,"At Sam's request, the police haul in Cady for a strip search...revealing a body full of tattoos." tt0026138,3zhqCccFsGc,The Bride of Frankenstein rises from the table and walks. She's alive!! tt0026138,g3E69dpurZA,The machines are all activated and the sparks fly as Dr. Frankenstein and Dr. Pretorious begin the re-animation. tt0101540,FQqo-w1qvws,Max Cady leaves prison looking mean and motivated. tt0026138,yQ8PoAkZnew,"Dr. Pretorious tells Dr. Frankenstein his plan. When he refuses to help, The Monster persuades him." tt0026138,3rcxMDaDYL4,Dr. Pretorius tells The Monster that he can make him a companion. tt0026138,cS3cT6vgiT4,Dr. Pretorious blackmails Dr. Frankenstein into helping him by kidnapping Elizabeth. tt0026138,xKdtuwTr-iM,"The Hermit teaches The Monster about drinking, smoking, music, and more." tt0026138,Fe4JvbxKwR4,Dr. Pretorius and Dr. Frankenstein realize they need a young woman's heart to continue his experiments. tt0098067,7_WLSh7GE9I,"Trying to protect his sister, Justin interrupts the school play, creating chaos." tt0026138,K7AKLKQqfj4,Dr. Pretorius shows off his specimens to Dr. Frankenstein who is shocked to see their small stature. tt0098067,5XW-Nxfx5Nw,"Kevin makes a spectacular catch, winning the baseball game." tt0098067,0t6IIdmOIOQ,Frank asks Gil for his advice and the two have a frank conversation about what makes a good father. tt0026138,xwffHJ_pAM0,"When The Monster sneaks up on some gypsies cooking meat on a campfire, chaos ensues." tt0098067,dQUjkTOrAn4,"When their son loses his retainer and goes into a fit, Gil and Karen realize they need to make a change." tt0098067,vO2jvLIyIV4,"Trying to help her husband Gil relax,"" Karen creates a car crash." tt0100301,UX3HxJ3eTd0,Eddie mimics the first President Bush in an attempt to influence a client. tt0100301,OBp-kKju0IA,"After a tepid start, Eddie rips into an inspired version of ""Born to Be Wild,"" at a karaoke bar." tt0100301,7QZB_cbjdM8,"Eddie moves the sales meeting to a place where ""major life decisions are made.""" tt0100301,Y-CJgOlRfkE,"At a swanky luncheon with Annie and her parents, Eddie tries to bluff his way through the wine list." tt0493464,uAphWDkKWcg,"Wesley discovers that Cross is his father after he shoots him, then Fox tries to kill Wesley." tt0100301,GxznDWMsp8E,"Attempting to impress Malkin, Eddie fake-translates for a Japanese businessman." tt0493464,_xHw_zAJRDk,"When Sloan goes to Wesley's office, he discovers the decoy just as Wesley puts a bullet through his head." tt0195685,kDfvxJUxL10,"Erin not only gets her job back, but a raise and benefits too, when Ed comes to her with more questions about PG&E." tt0118689,E_Rabq4muu0,"Trying to make a turkey for dinner, Bean ends up wearing it on his head." tt0493464,FARSnLU-NJA,"When Wesley gets attacked by The Butcher, he fights back with his gun and The Butcher's weapons too." tt0430922,SSk0B0dVq4g,"Beth is fed up with Danny's miserable disposition and ditches him in a coffee shop when he refuses to say ""venti.""" tt1294688,nIYAfX4gYO0,Laura and Michael get to know each other. tt0118689,5SnIUYLRXro,"After accidentally splashing water on his pants, Bean dries himself with the blow dryer." tt1294688,yde2ib0YiVQ,Truman pries into Joanna's relationship with Alex. tt0195685,BGX4nMrnxg0,"When the PG&E lawyers present an offensively low settlement offer, Erin makes them wish they never opened their mouths." tt0195685,5Jdk3riKKwo,Ed mocks a PG&E lawyer when he presents an offensive offer and denies PG&E's involvement in the famlies' health. tt0195685,kFCUCnNKmmI,"Erin and Ed discuss taking out PG&E corporate, but consider some very real outcomes that could destroy the case." tt0074281,fXXmeP9TvBg,"The ""Car Wash"" song plays while the employees at the car wash get to work." tt0120735,-Mmq6Kmd75I,Rory gives Nick the Greek a choice -- tell him who stole his weed or die. tt0115783,_d4H6lx9-Is,Keats and Moses steal a Ferrari and try to get away. Then they ask a cop for directions to Disneyland. tt0129290,jNN6FI1Gcr8,"When Patch confronts Mitch about telling the Dean that he cheated, an argument ensues." tt0132477,8ZezvNWgi4M,"When Homer's dad shows up for the Rocket Boys' last launch, Homer lets him push the button." tt0112641,-riX6Xbvb8w,"Ace looks back on being given ""paradise on Earth,"" the chance to run The Tangiers in Las Vegas, and how it all came crumbling down." tt0117381,G2bsYSfXO5U,David tattoos his chest with a blade and some ink. tt0117218,7IrB1OE9Blo,Buddy Love impresses Carla by heckling Reggie on stage with jokes and throwing him into a piano. tt0132477,DY61X243BoU,Miss Riley gives Homer a book to fuel his dreams. tt0824747,2r8yw_fjoHA,Mrs. Collins tells Detective Ybarra that Davy's story gives her hope that her son is still alive. tt0315327,yOgdjlPRWMg,Bruce gets a final lesson from God and leaves Heaven to be with his wife Grace back on Earth. tt0824747,S7vH1F6nnug,"Mrs. Collins goes to the train station to be reunited with her son, but she does not recognize the boy claiming to be him." tt0824747,vn6qlQGDOIo,"Under interrogation, Sanford tells Detective Ybarra that he helped Gordon to kill twenty kids." tt0119643,USKDdEg8N3s,Susan and a young man share a special moment together after meeting in a coffee shop. tt0315327,iplfWUtKMzI,Bruce uses his new powers to sabotage Evan's broadcast. tt0120669,m6kFCNsnQpQ,Duke takes too much Adrenochrome while Dr. Gonzo gets rid of Lucy. tt0315327,-Bprg2_s9mg,"Upon hearing about Evan's promotion to anchor, Bruce has a breakdown on camera which causes him to lose his job." tt0117218,2O-CC3IVPVg,Klump gets a visit from Carla and gets caught eating a candy bar. tt0117218,74Ern74xGsQ,Professor Klump watches in astonishment as hundreds of hamsters break free and create havoc on the university campus. tt0110950,9FLLYpUnuwQ,Troy comes back after his father's death and professes his love and regret to Lelaina. tt0360717,NoD85qZhkWY,Kong climbs to the top of the Empire State Building and faces down his attackers - a squadron of machine-gun firing airplanes. tt0365748,mqQ8Y9Sjp7o,"Shaun staggers through his morning routine, blind to the evil in his neighborhood." tt0110950,HvhH6_TMxWw,Lelaina lets Troy have it when he comes back to the apartment with a girl he picked up at a club. tt0110950,nII3ya0MuM0,"Lelaina gets back at her evil boss by replacing his note cards with inappropriate, embarrassing notes as he reads them on air. The stunt causes her to get fired." tt0365748,kXjKUXgoyL4,"As the Winchester is breached by a mob of zombies, David is gutted alive, and Ed is bitten." tt0096874,TkyLnWm1iCs,"Marty borrows a hover board to escape Griff's gang, but loses momentum over a pond." tt0021884,nur4g4r1LN4,Dr. Frankenstein demonstrates for Dr. Waldman how the Monster understands commands. tt0052357,d-kcczAff40,Scottie watches Madeleine at the museum; she stares at a painting of Carlotta to which she bears an uncanny resemblance. tt1294688,uYBZAS59t14,Joanna Keira Knightley) gets suspicious when she sees Michael and Laura chatting alone on the patio. tt1294688,AK0MPlMNHQ0,Laura asks Michael about an encounter they once had. tt0099088,JEsQCm9Q3pk,"When Mad Dog shows up early, Marty forfeits rather than getting shot." tt0099088,LwuZzh79ds4,Mad Dog's gang drags Marty to a hanging where he is rescued by Emmett. tt0095631,r9nG9RByMRI,Jonathan has a panic attack on the airplane which forces Jack to travel by train. tt0120601,009tNfQRd4o,"Craig, bored while watching an orientation video about the 7 1/2 floor, notices Maxine ignoring the video entirely." tt0099329,JPEmc2HcMmY,Cry-Baby challenges Baldwin to a game of chicken with cars. tt0104231,PXW83EUbeTM,"Joseph surprises Shannon in the barn and gets more than he bargained for, but he still tries to kill her father." tt0087065,in-1BIg_Mec,"Davey makes a trade with Rice, but when Rice realizes he's got the wrong cartridge, Davey and Kim run for it." tt0099329,fZt8dti-r14,Cry-Baby and other prisoners sing a sad and tearful song in their jail cell. tt0218967,GP5ss2lYb3Y,"Cash tells Jack that everything has changed, and it's up to him to figure his way out." tt0218967,lp6ibYQN8vQ,Arnie gives Jack a pep talk to motivate him. tt0034240,MtTE8aWCe9g,"In a church filled with convicts and the poor, Sully watches a Mickey Mouse cartoon and laughs for the first time in a long time." tt0119174,qf-4TDEpycw,"Nicholas pulls a gun on Christine, but when she realizes it's not a prop, she tries to prevent him from shooting Conrad." tt0118928,9JQRMnxE6No,Harry saves Graham from being burned alive when he tries to jump into a hot spring that's become acidic. tt0119174,hYQIObd_bog,"When Nicholas gets a flat tire, Conrad panics and accuses Nicholas of working for CRS." tt0082200,ZcCHgCXxkgs,"Ernie rides the train back to Chicago, but not before marrying Nell in a ceremony in Victor, Wyoming." tt0119174,E_tY5yc-yWU,"During a reunion lunch between Nicholas and his troubled brother Conrad, Nicholas gets a mysterious invitation as a birthday gift." tt0087065,AjZ717HtRy0,"Davey witnesses a murder and receives a video game cartridge from the victim, but when he returns to the scene with a security guard, there's no body to be found." tt0118928,joAodEzeK34,Harry Dalton tries to get Marianne out of harm's way as a nearby volcano erupts around them. tt0082200,iYP5-Dl3rhg,"Ernie attends Nell's lecture in the city, and the spark between them is still hot." tt0082200,C-PxIfoch_Y,"When a cougar wanders into the cabin looking for food, Ernie tries to convince it that he's not dinner." tt0082200,Upr2DiiSRDE,"While hiking with Nell, Ernie loses his footing and goes tumbling down the mountain." tt0082200,pZJ7QK2d5-A,"When Nell's lover attacks Ernie, Ernie is delighted to learn that the man is football legend, Max Birnbaum." tt0094138,LUmqBuS8GAA,"After Buddy knocks Jerry down, Jerry's friends come to his aid and help set Buddy up for Jerry's knockout punch." tt0094138,BqV0lNOqaPA,Jerry gives a sexually charged book report to the class which ends with him kissing Miss Farmer and passing out. tt0094138,iqyFc90L3zw,"After Jerry is found with a switchblade, he goes to see Assistant Principal Dolinski who doesn't believe his story." tt0094138,nQYsHLwXnMc,"Jerry convinces a football player to confront Buddy in the library, but Buddy knocks him out." tt0096734,EECf2o9Ivaw,Ray regrets tormenting the Klopeks. tt0338013,Qpux-Drk6EY,"Joel chases after Clem and tells her that no matter what, he wants to be with her." tt0473464,-NzSDbGmTpA,Shay turns the tables at a photo shoot and forces Jordan to open up. tt0036775,_m9qecEehqY,Keyes tells Walter that people cannot get away with murder because they're stuck with each other. tt0096734,L6g6fH2ev40,"Ricky shares his gateway to hell"" theory with Ray." tt0091541,nJPju1f6p0E,"Walter gets distracted on the way to fetch a bucket of water for Anna, resulting in a series of disasters." tt0091541,FOM6rvU9xN4,"A raccoon attacks Anna, and the staircase collapses as Walter rushes to help her." tt0091541,wBxRwF4qnhU,"When Walter gets stuck in a hole in his dining room floor, he inadvertently insults the inspector, losing any chance of getting his permits." tt0212338,bXNwzKo5Yps,Greg tells the Byrnes a story about the time he milked a cat and then destroys the urn with Grandma's remains. tt1095217,_bsnYbe6Dp8,McDonagh threatens to kill Big Fate if the gang kingpin doesn't accede to his demands. tt0276751,GtYAzKwm-R0,"When Christine and John ask Will to be the godfather to their baby girl, he assures them that he would be a terrible choice." tt0363547,UWGtZ9Oqcwc,"As CJ watches T.V. with the other guards, a televangelist explains, ""When there is no more room in hell the dead will walk the earth""." tt0363547,TS6_Y6r5r-8,The gang is up on the roof watching Andy shoot celebrity look-a-likes. tt0082200,XNAVsV-Jqfg,Ernie follows Nell into the woods and spies on the secret rendezvous with her lover. tt0363547,pv6EZGMlgX0,Ana struggles to escape from a sudden zombie invasion of her home. tt0082200,cqOc4yl1bIw,"When Ernie and Nell come across some poachers shooting at a bald eagle, Nell beats them up and destroys their guns." tt0082200,u1pJJOaKdiQ,"When Ernie finds himself stranded at the cabin, Nell agrees to let him stay for two weeks on the condition that he does not write a story about her." tt0082200,Pf0COLjWys0,Ernie lets on that he's a journalist wanting to do a story. Nell takes him to a grand mountain vista. tt0106770,zxqYjEzGEPs,"After being hassled by a bunch of jocks in the gym, Bruce takes them all on at the same time and beats them." tt0106770,H2tltm5wUCs,"After a fight over a waitress in the back room of the restaurant, the chefs attack Bruce Lee in the back alley." tt0106770,yb7aNfMvRy0,"While at the 1961 Lantern Festival, Bruce Lee takes on sailors who disrespect a girl and try to ruin the dance." tt0413099,80x9FmKsyg4,God tells Evan to build ark to help him change the world. tt0413099,l8aozWddbPA,Evan gives congressmen Long a phony excuse for why his office is full of birds. tt0117381,GnjxY_zMxOA,"David uses the alarm code that Nicole gave him, but still gets locked out, making him very angry." tt0824747,C_2-E5uR-k0,Sanford shows the detectives where the bodies are buried and digs up the bones of a child. tt0322259,1SOZ6caLdUk,Roman ejects his passenger from the car with the push of a button. tt0120669,ObbLapUaZd4,Duke and Dr. Gonzo attend the DA's Convention and listen to Dr. Bumquist's bizarre speech on drugs. tt0100107,vfNW11vcewM,The Maniac Cop gets revenge against the criminals who maimed him and left him for dead. tt0100107,VhtJpZkTZ1M,The Maniac Cop has a flashback to when he was attacked and beaten while wrongfully thrown in prison. tt0100107,rdFZAYliCgE,"Susan survives a harrowing experience in a runaway cab, but Teresa meets her demise at the hands of the Maniac Cop -- literally." tt0100107,9rstlW2YsmA,Officer Forrest is killed by the Maniac Cop while at a newsstand. tt0100107,EdEl2_GReMY,Officer Forrest helps take out the Maniac Cop. tt0230169,piOK9oDxl2w,Ed's confession to Pete is interpreted as an odd joke. tt0081505,AWKQSDRekBM,A deranged Jack hunts his wife and son with an axe. tt0081505,optHzRmqdFk,Hallorann discusses the power of the Shining with Danny. tt1664894,ZJxNwE6H1SM,The mysterious Chamber of the Lions is explored. tt1640484,M6aKImtVams,Jason's friends weigh in on what his next move should be. tt0978764,aDdBoZOylmo,Oppressed robots rise against their oppressors. tt1743720,A2WV257yma8,"A documentary about branding, advertising and product placement that is financed and made possible by brands, advertising and product placement." tt1596346,fyI46_cfTW4,Bethany and friend Alana ask for more wave time; Cheri asks for more class time. tt1255953,3dnf7FK-BPk,Jeanne finds hostility while searching for her father. tt1265990,bQme3XqjpCk,"Rebecca stalks Sarah's boyfriend, Stephen, in the library." tt1265990,9Oi7sZ13tNY,Rebecca gets testy with Sara when Sara doesn't return her calls. tt1564367,yuklnScufbE,"Danny tries to apologize to Palmer, who isn't having it." tt1646111,rJSnxSjZIcA,Chanda walks alone through the South African terrain. tt1646111,dB2iZKhWArQ,"Lillian connects with her daughter, Chanda, by sharing her personal experiences when she was young." tt0824747,MgBCnwI_Hq0,"Christine tries to reason with Captain J.J. Jones and blows up at Walter's imposter for calling her ""mommy.""" tt0824747,oZePQEUplJs,"Christine receives a visit from Dr. Jonathan Steele, who gives her false explanations for the discrepancies between her son and the boy the police returned to her." tt1588337,-QB2gXiOAKc,"Luc tells Christian that he does not fear terrorism or death, that he is a ""free man.""" tt1588337,iKw7Ndv4bRM,The monks realize their responsibility in Algeria and the gravity of their choice to leave. tt1285016,6bahX2rrT1I,Mark asks for recognition from the Harvard board instead of hostility for breaking security measures. tt1285016,A6f-6l0W-0o,Mark explains his frustration with the deposition to the prosecutor. tt1285016,-wc5S8xwxJk,Mark and Erica discuss the vanity of rowing crew. tt0990407,gkJAPsQ2YHE,"The Hornet duo reveal themselves to Lenore, who isn't very amused." tt0990407,nMtW7uy5RrQ,Kato uses nunchucks during a high speed car chase. tt0990407,9n27j_fe1yE,Britt boasts about the notoriety of the Green Hornet in the press. tt0103850,Dei-j4tWI0A,Political debate between Senator Brickley Paiste and conservative folk singer Bob Roberts. tt1243957,ZrW0Vk-Y_TU,"Frank is captured and put on a boat with the undercover police, including Inspector John Acheson." tt0298203,iOMuP1qEKUc,B-Rabbit battles Lyckety-Splyt and shows him what he can really do. tt1220634,JaIhQFDdcJM,Alice attempts to land the plane on a building rooftop. tt1282140,KDKB37gY7OY,Rosemary and Dill are worried about Olive's sexual appearance of late. tt0249462,HuKVUxMpoCk,Billy's troubles at home interfere with his concentration during his ballet lesson which leads to an argument with Mrs. Wilkinson. tt0971209,v5ueLuyLWn4,Cliff and Cydney discuss whether a grainy photo of the killers looks like their hiking partners. tt0971209,_c7XtFcDfX4,Guide Nick catches Cydney when she slips while trying to follow him and Cliff across a narrow trail. tt0322259,JXQWJ63fico,"Brian and Roman pull a ""Dukes of Hazzard"" stunt to catch a speeding yacht." tt0322259,aSxScp7zUpY,"With the police on his tail, Brian must rid his car of an electronic harpoon." tt0322259,2xxZ6kju6xo,"Racing to retrieve a package, Brian and Roman outdo each other on the freeway." tt0491152,3mieBC6wlbs,Rachel helps Darcy write her vows to Dex and gets caught up in the moment when her own feelings come into play. tt0078723,nMW1Rfbl0tE,"Moments before the Japanese submarine submerges, Kelso breaks in and is promptly captured." tt0078723,j7O-SUEh-54,Hollis is interrogated by the Japanese Navy lead by Cmdr. Mitamura. tt0078723,jJZ5x-zUx28,"Lost in flight, Kelso drinks a Coke and goes into a barrel roll... or two." tt0078723,FcqC3ZIsQRM,The United States Navy and Army continue their brawl on the streets of Los Angeles. tt0078723,-v93NKIFBBw,"In this homage to the famous scene in Jaws,"" a woman"" swimming in the ocean is attacked by a Japanese submarine." tt0070047,OCGGXaMANys,Chris tries to yell some sense into the doctors that cannot look past their own knowledge to find a solution. tt1664894,asxNFYNfOWI,Cave paintings that have been preserved for thousands of years are explored. tt1640484,toq0HYc9mmg,Blythe and Chef McKenna get caught with their pants down when the smoke alarm goes off. tt1640484,xHH-tuDq-T4,Sabrina and Mrs. Taylor get off to an awkward start. tt1640484,q-kLlfq4JpU,Mrs. Taylor gushes to Shonda about how she feels insulted by Sabrina's text message. tt1640484,k7o8U7h_YHM,"Mrs. Watson presses Sabrina to spill about Jason's family, which forces Sabrina to admit that she still hasn't met them." tt1501652,JtBmjD4WDnM,Dylan and Natalie reunite for the first time in ten years. tt1596343,byObeFcFXmo,"The Rio police are introduced to Hobbs, a bad ass Federal Agent." tt1596343,J_i4XvgEVDg,Han and Gisele use their tools to get Herrnan's fingerprints. tt0421238,gAxuiJdRBjQ,Arthur questions Charlie about Mikey's whereabouts and Charlie claims that Mikey met a girl. tt1095217,_nFXFkb8i0Q,"McDonagh bypasses the need for overt conflict by sneaking in through a neighbor's house to arrest his suspect, a man by the name of ""G""." tt1743720,wGvGiFhbmwg,Documentarian Morgan Spurlock pitches his idea for a satire on the process of cinematic advertising to film executives. tt1095217,QG_VaTDn9Uk,"McDonagh shows off his lucky crack pipe"" to Big Fate, the concept of which perplexes the gangster." tt1095217,cczh1r-Mb9o,"After McDonagh roughs up Justin, one of Frankie's clients, he receives a very cryptic and bizarre threat." tt1411704,vsevdTMBfC8,E.B. tries to prove to Fred that he is the Easter Bunny by pooping jellybeans. tt1411704,j_2-8115ZAs,Carlos rounds up the chicks for a revolution. tt1596346,TpwYtP4Kzbs,Keoki has a talk with Bethany about surfing. tt1092026,KSrAg-DG4Xs,Haggard and O'Reilly search through the RV of Graeme and Clive. tt1219289,1LatwDo_ZL4,Carl lectures Eddie about how his powers are weakened by the fact that he hasn't had to work for them. tt1217613,cnvdC5TGc3g,The unit tries to sneak up on the aliens by moving through the sewers. tt1229822,TotAfd4ercA,Edward professes his effection to Jane. tt1265990,lScMakd7h6w,Rebecca is not receptive to Rick's advances. tt1564367,898OUCyBulM,Maggie negotiates a deal with Danny when he asks her to act like his daughter. tt0881320,6a9lq0bPrLU,Frank coldly informs the group that rescue is impossible -- only escaping matters. tt1578275,lWqHayjaOxo,Dana uses sexual metaphors to describe her enthusiasm. tt1578275,TwTQUFCYFsc,Ronny confesses how he was able to get the big meeting. tt1174732,jmOvg7JKjVI,The headmistress at Jenny's school has a talk with her after Jenny's engagement is revealed. tt1243957,AqtOrW-wiZ4,Frank goes to report an attempt on his life and finds little help from the authorities. tt0989757,zsgAfhsQkYU,A distraught John tries to figure out the right thing to do to get Savannah back. tt0249462,8TOTUOFMjuo,"Billy keeps his family in suspense regarding his letter from the Royal Ballet School, and eventually reveals his acceptance." tt0780653,5MC-cGN0bw0,Gwen consults the gypsy Maleva for advice on how to help Lawrence. tt0762125,yQ3jp-a5JK4,The dog gets revenge on the mailman. tt0098067,pKNsKKRGrzs,Gil daydreams about Kevin giving a Valedictorian speech at his college graduation. tt0249462,uDISBx2Ry7s,"Mrs. Wilkinson offers to teach Billy one-on-one, in the hopes of qualifying him for the Royal Ballet School." tt0450405,d6NOGc2Dymo,Mr. Destiny stops Darren and Steve from killing each other. tt0338075,docSqZBVEUY,Larry and Phil are nearly caught when an officer questions them about the coffin in their car. tt0450405,UWyz-yfEIN4,Darren moves in to Evra's pad. tt0450405,Amjfc9pRatc,Murlough attempts to abduct Darren in a cemetery; Larten rescues him. tt1136608,VGqjv_CkCXo,MNU relocates aliens and studies their weapon technology. tt0098067,Pf5mDMWYRmE,"When Gil and Karen put the kids to bed, their daughter Taylor throws up." tt0112641,0KJ7l4gy4oo,It is love at first sight for Ace when he lays his eyes on Ginger at the craps table. tt0450405,hwc74Ns9EZI,"Larten flits"" with Darren for the first time." tt0074281,7phF0rMpBiw,"Stuck in traffic with a very talkative taxi driver, Marlene the Hooker sneaks away without paying her fare." tt0118689,7P9EEB9Mr18,"When the Airport Police see Bean reaching for a ""gun,"" they chase him through the airport but find nothing but his hand." tt0117218,EeyNlzFdjtc,Klump and Love have an all-out battle on stage in front of a large audience. tt0089560,G_0ZVzUO3Os,"After Gar gives Lorrie a ride, Rocky lashes out at Rusty for getting him a prostitute." tt0132477,Vq1W_C-ft0Q,"After the Rocket Boys win the local Science Fair, they learn that only one of them can go to Indianapolis. They choose Homer." tt0315327,A4k_HCZNCgs,"Bruce goes through his morning, experiencing terrible luck at every turn." tt0824747,gtKp8oxOzAU,"When Davy tells Detective Ybarra the story of his escape, Mrs. Collins finally learns the truth." tt0119643,BXvryt6UCC0,"Joe is surprised by his feelings after being kissed by Susan, and she reluctantly decides to go home." tt0119643,5Xk31NpUX1g,Joe tries peanut butter for the first time and decides that he really likes it. tt0117218,BIfyebxopuM,Buddy gives a dramatic apology to Carla in front of the restaurant. tt0120669,P2pgWsYSyUA,"Driving to Vegas in a convertible, Duke and Dr. Gonzo start to hallucinate when their drugs begin to take hold." tt0021884,v5FtI472Q6I,"After a gentle moment between the Monster and Little Maria, he scares her by innocently throwing her in the lake." tt0110950,SQVw58aDt3Y,"At the gas station buying snacks, Lelaina, Vickie, and Sammy just can't help themselves as they dance to the song ""My Sharona"" on the radio." tt0252866,DoUYnGrhxi8,"While waiting in the hospital Emergency Room, Jim's dad stands up for Jim against another nosy patient." tt0079367,i5jTH89HjTA,"Navin invents the Opti-Grab, inspired by a customer's frustration with his flimsy eye wear." tt0079367,FCJx1uV38ZQ,Navin catches thieves with a stolen credit card and holds them for the cops by rigging their car to the church next door. tt0021884,1qNeGSJaQ9Q,"As the Monster is struck by lightning, Dr. Frankenstein exclaims his achievement and his God-like feeling of creation." tt0114746,wcztDZ13TLI,"Cole finds himself institutionalized with Jeffrey who explains the workings of the institution and the ""system"" to him." tt0079367,lKv7aGku2RQ,"When a dog appears at the front door, Navin misinterprets his barking for a fire warning, creating a false alarm for all the neighbors." tt0095631,Gokkl2br7G8,"After evading the cops and crashing his car, Jack nearly escapes with Jonathan, but loses him in the end." tt0114746,9rDK1qdc9-Y,"When Cole tracks Jeffrey down at his father's mansion, he learns that Jeffrey is trying to make Cole's apocalypse real." tt0120601,25_F9irGdow,"John Malkovich leaves his career as an actor for a new life as a puppeteer, affecting the community around him in the process." tt0204946,B0YqZqU_z0Q,The Cheer Squad auditions new recruit Missy who more than proves her badass-ness. tt0120601,DSGYElDi38s,Dr. Lester interviews Craig and apologizes for a speech impediment that doesn't actually exist. tt0120601,OpZknAZxSjU,A sad man is ecstatic after his experience inside the mind of John Malkovich. tt1095217,--VWN_KTxzE,McDonagh tries to browbeat Midget into giving up the location of a notorious crime lord… all while smoking one of Midget's joints. tt1743720,KN2W3JON7Y0,"Damian Kulash and Tim Nordwind from ""OK Go"" discuss music rights and endorsements." tt0324133,HxrS10Oa4qU,Sarah gets worked up when asking Julie for some peace and quiet around the house. tt1092026,sPQLY7niQC4,Ruth and Graeme's intimate moment is interrupted by Paul. tt1092026,qB2H-Gp0nlE,Paul introduces himself to Graeme. tt1217613,b9WFVLRPOJI,The unit get unexpectedly ambushed when they come across a dog in the street. tt1229822,9DKqoFCTC6E,Jane and Rochester share an intimate moment. tt1385826,HWDBMnxAk0A,"Elise challenges David to a race, at which they both cheat." tt1385826,XwQuM34oBkg,Richardson demonstrates David's powerlessness by revealing that he can read his mind. tt1034389,QNUzcLPS_LE,Marcus interrogates Shaman about his father's last moments and the whereabouts of the eagle. tt1078940,0TmugJo-c9Y,The couples start to open up in therapy. tt0363547,SB4SyMKugU8,"The survivors escape the mall on two souped-up buses, ready-made to slaughter zombies." tt1034389,zATlpF_gylU,Marcus and Esca's argument escalates into a fist fight until they realize they are not alone. tt1564367,T5pFuaH_A98,Danny has Maggie and Michael fake laugh with him in order to impress Palmer. tt1564367,5KsjPjE-sTw,Katherine and Danny take cracks at each other in front of Palmer. tt0881320,8D11eYo3bNY,Victoria and Josh are washed away by the power of the waterfall. tt0114746,cu_A-aG8G7U,"Jeffrey gives Cole a key and creates a distraction, enabling Cole to escape from the mental ward." tt1646111,b1vFQilhgrY,Mrs. Tafa gossips about Esther's short skirt. tt1255953,W03miqzGMcc,Nawal returns to the orphanage which has since been destroyed. tt1255953,WThlmxAdynQ,"When their mother passes, the Marwan children are given envelopes and an important task as her final wish." tt1578275,pPZ7eetT6oI,Ronny and Nick use football terms do describe their business strategy. tt1578275,FBWubk2ItBA,Beth and Ronny discuss their maturing relationship. tt1588337,zPvglo_VB9g,The Trappist Monks relay their unease with Christian's executive choices for the group. tt1588337,QRGusFszwdA,Christian is confronted with the dilemma of Algerian Muslims in need of medical aid despite his monastery's lack of resources. tt1285016,5_2gW4c8hZ0,Sean inspires Mark to follow his dreams and confide in him. tt0990407,3_U1GtNY5xQ,The Green Hornet and Kato suit up and pimp out their Hornet ride. tt0990407,No7DllIwA3w,The Green Hornet and Kato evade a police officer in a high speed chase. tt0363547,IC8xA-bOXOo,"When a far-fetched escape plan is suggested, CJ goes on a cynical monologue about how foolish the plan is… and then he jumps on board." tt0095631,stSweLZol7U,Jack tells Jonathan the significance of his wrist watch while warming his hands by the fire on the train ride. tt0970866,14bY6pwza-Q,Greg talks to Andi while Louis distracts him. tt0363547,S2LkKVM-dRo,The survivors use teamwork and quick-thinking to light a slew of zombies on fire. tt0363547,DNt7PNTuePY,"Fear takes hold as CJ abuses his authority, forcing Kenneth and the others to remove him from power." tt0363547,Ybfc9RkRUY0,Michael and Andre help rescue a new group of survivors from a horde of zombies. tt0970866,FaYvxUgA4cw,Jack and Greg watch Henry's admission interview. tt0363547,RZvwbfpE8CA,"As Michael battles a zombified janitor, Ana saves Kenneth from a hungry security guard." tt0363547,qeZ0SIG2eJY,Ana witnesses the birth of the zombie apocalypse right in her neighborhood. tt0363547,SNrMqIrtbmw,"A recently-expired woman returns as an aggressive zombie, forcing Ana to go from nurse to executioner in a nanosecond." tt1341188,WT2D-ZhTkqQ,Lisa's first meeting with George ends up with an awkward argument. tt1341188,EOwmzfyF1oM,"Charles approaches his son, George with information of great importance." tt1341188,5K14lfXCgco,Manny catches up with Lisa on her way home and a decision is made. tt1545098,0IVFxW63RxU,Kenny Chesney thanks his fans with outstretched arms and a frosty beverage. tt1545098,P9iflgkOO-E,Kenny Chesney fondly recalls a rainy evening in Dallas. tt1545098,KVIXNJIaQBY,"A trip to the islands inspires Kenny Chesney to write his song, ""Old Blue Chair.""" tt1423894,sallI5PomoY,"Barney finds his wife in bed with his best friend, after which she tries to twist it around to make it Barney's fault." tt1313092,jvZk0rzVeBw,"Janine blackmails Randall into helping her grandson, Justin." tt1564585,spVHsj3_MEY,Jarrod and Elaine encounter an alien in the staircase whose serpentine arm attacks Elaine. tt1126591,NACwfzRou0w,Tess gives Ali a lesson on applying make-up. tt1126591,5vKDb4dLu0k,Tess catches Georgia vomiting in the bathroom and realizes she's pregnant. tt1431181,xI836Tp4cq4,Mary flirts with Joe before she hesitantly says her goodbyes to Tom and Gerri. tt1431181,au_5dPh_Dm8,"Mary feels the sting of jealousy that she is single and alone, while surrounded by happy couples." tt1119646,y_5YoG-iXjQ,"As Stu and his wife finally sit down to commiserate, they are distastefully interrupted when Phil, Doug, and Alan arrive to him up for their trip to Las Vegas." tt1423894,v-tma5YRyGg,Barney Panofsky pulls out all the stops as he tries to sweep Miriam off her feet. tt1423894,RpKQ0AC0p9Q,Barney Panofsky and Mrs. P. try not to embarrass each other on their honeymoon. tt1179056,JMt6zz_dYWI,"Nancy stops by the grocery store to see Quentin, but finds Freddy Krueger instead." tt1179056,JWGVdLHio5g,Quentin tells Nancy about how sleep deprivation can lead to waking dreams. tt0775489,hSgNZ6R5Rbg,Alice takes in Edinburgh while the Illusionist lands a new job. tt0872230,KMnK0as4TSc,"May gives Bug a birthday cake, but Bug gives May a start." tt1226753,U6X6o4CAqL4,"The young, fearless agents train for their mission while getting to know each other." tt1285016,6HbrQMgOUFw,Erica refuses to accept Mark's attempted apology when he approaches her in a restaurant while she's having dinner with some friends. tt1226753,zYRqTV7WyMg,Rachel Singer sits in the press conference crowd remembering the evil and torturous deeds of the war criminal they helped bring to justice. tt0775489,5RmABh8MCpE,The magical illusionist takes a long journey north to his next performance. tt1371155,DkyCu7ryu-w,The world-wise Albert gives Rita the courage pep-talk she needs to kick some union butt. tt1371155,Rv2hRfqlJaE,"Women's Rights activist Rita O'Grady is shocked that the woman she didn't know was married to her competition, Lisa shows up to give her some encouragement." tt0775489,Lmsukmz3QQE,The magical illusionist plays to a less than enthusiastic crowd. tt0804497,1RbdA_geYpU,"Craig gets a visit from his parents at the psychiatric ward. Despite showing some reluctance to stay, Lynn and George think its best if he follows the doctor's advice." tt0804497,Ci3uRpwFlZ4,Craig receives some words of wisdom from Dr. Edna about his parents during his therapy session. tt1285016,LkdJwYQIR2o,Dustin's inquiry about the relationship status of a girl leads to an inspired idea for Mark. tt1285016,bLsM1z8lX_A,Mark needs an algorithm from Eduardo for a computer program that ranks girls' attractiveness. tt0804497,J196d5nLSYA,Craig gets a surprise visit from Nia who's recently broken up from her boyfriend. tt0804497,6fXGKCKcXk8,"Bobby impersonates Craig's crush, Noelle, so he can practice asking her out on a date." tt1645089,sSk2SvdopGY,"Despite campaign promises about Wall Street financial reforms, few reforms have been enacted during Obama's administration." tt0493464,qD6IXIE0cok,Wesley goes after Cross while Fox crashes her car into the train they're riding. tt0110074,2bcSpgxPG0g,"Norville finds himself once again following in Waring Hudsucker's footsteps. This time, out the boardroom window." tt0117128,Puh__Ef3KkI,"Cal and Ruth try to escape in an airplane, but Exeter pulls them into his spaceship and heads for Metaluna." tt0117128,v71Epv4g6jY,Cal and Ruth enter the tubes to prepare for landing on Metaluna. tt1486190,QtBnuCwAJeQ,Ben gets pushed into Tamara on the the stage at his rock show and she starts to interview him for The Independent. tt1486190,MAeQV2NBbhM,Ben proposes to Tamara in bed. tt1486190,JUGSh3BMuaQ,Beth has suspicions of whether her husband is having an affair with Nadia. tt1486190,cr13B4L-5-M,The writers sit around the dinner table gossiping about Nicholas. tt1584016,yGzCkRwbFII,Nev composites a picture of himself and Megan together. tt1588170,EYn7ZmFV2eY,Detective Bowden tells Ramirez how he lost his family. tt1584016,SnXhWbEfDNA,Nev talks to Megan on the phone for the first time. tt0944835,QlT6RMtJb6s,"During an interrogation, an informant reveals the name of the Russian spy to be Evelyn Salt." tt1440728,m8hsAr5C2UU,"Jack asks Clara to run away with him, while stuck in the crosshairs of a fellow assassin." tt1440728,ClylV3dp-Ok,Jack receives instructions to leave town and some advice not to make any friends from his contact. tt1440728,XvvzZUhRSbI,"While on a motorcycle, Jack chases down a moving target." tt1282140,oTzTcic-1qs,"A mother & daughter chat reveals that Rosemary had a sexual relationship with a homosexual for a very, very long time." tt1220634,zG0CfU1YnNQ,Claire battles the Axe Man in a one-on-one showdown. tt1282140,n3K6Fkd5ri8,"Overhearing some sexual innuendo, Mr. Griffith runs off a list of cliches to Olive and Rhiannon." tt1135084,w5EQRIoHjQg,Jack leads a chase after Jesse through downtown Los Angeles. tt1126591,Jina0muBqRA,Ali Rose sings and dances by herself. tt1135084,wJnVVC4784c,"During a heist, Gordon is forced to make a tough decision with John set-up as a sniper to take out Ghost." tt1135084,roeLoZuFI1I,The bank robbers make their getaway in a helicopter. tt1415283,I6RwgD0b9xA,"Nanny McPhee explains that when she is needed - but not wanted - she stays, but when wanted - and not needed - she leaves." tt1415283,jNEnqzkT_QU,The children watch the pigs swim and perform a synchronized dance. tt0879870,bObjXY24Ei4,"While eating pizza, Elizabeth declares that she's no longer going to feel guilt or worry about gaining a few pounds." tt1415283,mzP8haJXI5A,Nanny McPhee uses magic to stop the kids from fighting. tt0879870,vHbBhI0xLjA,"Felipe invites Elizabeth to the ""best restaurant in town""...his place." tt0879870,AhpGExo2hbs,David spots Elizabeth at a party. tt1438254,u8oHCJ8LxtY,Charlie tells Tess that he will not let go of Sam. tt1438254,o6zEapyz33o,Charlie and Tess talk about boats on the dock. tt1438254,m5n7XpAv46A,Sam gets angry at Charlie while playing catch. tt1313092,P0ojZI9qBPc,Leckie reacts to Janine's cockiness when she spots him in a grocery store. tt1313092,O5W1OfGz3es,Det. Leckie brings Josh some bad news regarding a murder. tt1313092,IH6fifC3qSE,Barry talks to Pope about living a straight life. tt1386588,7RS4PfQHCX4,Hoitz meets Sheila and has a hard time believing Gamble is married to such a babe. tt1386588,mFXxro8aD3A,Gamble arrests David Ershon but has difficulty remembering the Miranda rights. tt0842926,jwmRNTTDOw0,Paul gives Joni some advice on growing up. tt0944835,yp-LFlDEVdk,"In her attempt to escape, Evelyn drives the NYPD police car off an overpass, crashing down on a taxi cab." tt0842926,naI0OgZq73M,Jules and Nic tell Paul an amusing anecdote on how the two met in college. tt0944835,rQ7oKh5K7K4,Peabody sends out a tactical team to take down Evelyn. tt0842926,adT3VQ_Krrk,"Nic and Jules misunderstand their son, Laser, who they think is in a gay relationship." tt0117128,P3jRjtbkmq8,Exeter helps Cal and Ruth escape from Metaluna but a mutant stands in their way. tt0117128,nBQDz9PiMDU,"As Cal attempts to land his jet, he loses control and experiences a series of strange green flashes." tt0117128,FKu9sUXtjpI,Exeter prepares Cal and Ruth for survival on the alien planet of Metaluna. tt0493464,XJTXpItCqFU,Fox stands in front of Wesley and tells him to curve the bullet around her and shoot the target. tt0110074,dXngQtk0BCU,Another Hudsucker executive tries to follow in Waring Hudsucker's suicidal shoes. tt0493464,B0cuLHkQDcA,"During a high-speed chase, Fox performs unbelievable stunts in order to escape." tt0493464,q2pzOimT9so,"Wesley is approached by a strange woman in a grocery store, and suddenly she starts a gunfight." tt0493464,lf3MqrE07I4,"Mr. X performs superhuman feats to kill four would-be assassins, but is then gunned down himself by Cross." tt0110074,pbmU2wMnuI4,Norville saves Sydney by the seat of his pants. tt0110074,_SwvSu3jxAA,Norville pitches the dingus to the Hudsucker board. tt1375670,Xf_j-iNi9CA,Lenny explains the purpose of a bug zapper to the children excluding the fact that the bugs are being killed. tt1375670,jz4VT9zHLTU,Eric pees in the pool setting off the blue chemical dye. tt1375670,wVsMJ0ntvmc,Kurt is astounded to see that Eric's son still breastfeeds at the age of four. tt0110074,WhyNjvISFac,"After graduating from business college, Norville looks for a job in New York City." tt1155076,qiVy40O1_Lc,Mr. Han trains Dre in various locations including the Great Wall of China. tt0094138,5T607c23L8M,Jerry approaches Buddy in the men's bathroom and gets himself into a showdown at 3 o'clock. tt0098067,Mn5ayQd7Y0Q,"After Kevin misses a catch and loses the game, Gil daydreams a future where his son becomes a psychopath." tt0106308,Or3okI_mad8,"Ash returns to the S-Mart store in the present day, but he is not alone, as the possessed witch returns for one last fight." tt0098067,sTYIlyRGrA4,"Gil tries - and fails - to break the piñata at his kid's birthday party, and Grandma takes a mouthful of helium from the balloon tank." tt0338075,PPAe_7EK5yQ,Larry panics when he finds out that Gram Parson's body is inside the coffin. tt0338075,idqhhcppnUY,Phil says a few words of remembrance prior to torching Gram's body out in the Joshua Tree desert during the funeral ceremony. tt0098067,58YNYqN6lko,"Kevin entertains his family in the van with ""The Diarrhea Song.""" tt0338075,ORrQYZCdCwI,"After they get pulled over and the coffin is discovered, Larry and Phil concoct a plan to escape from the cop." tt0118689,Anue5RDt4Bs,"When General Newton presents Whistler's Mother"" to the crowd, Bean admits to David that it's a poster." tt0118689,rWqVoaYxgRs,"After staining the Whistler's Mother"" painting with ink, Bean tries in vain to clean up his mistake." tt0118689,zANq9Dusk6Y,"When Bean shows David the defaced ""Whistler's Mother"" painting, David freaks out." tt0118689,fkHlhiG0h70,"Bean amuses himself with his reflection, unaware that he is being watched through a two-way mirror." tt0097351,Yxzq9BLE5Hg,"At a baseball game with Terence, Ray receives another message." tt0118689,68pN_c7DGUE,"Trying to hide his still-wet pants, Bean displays some rather unusual behavior during his meeting." tt0338075,9plvG6cSgVk,Larry introduces Phil to their new yellow hearse named Bernice. tt0020629,nMlDPsRwZE4,Paul is shot by a sniper while reaching for a butterfly. tt0020629,mw96cSYo9dU,"After Paul spends a night with a dying French soldier, he seeks forgiveness from the soldier's corpse." tt0020629,jsLOtv4yqIM,"When Kat gets wounded, Paul carries him on their way back to base, only to find that Kat has died on their journey." tt0097366,33MiJMF5z7U,Calculus and Fletch infiltrate the morgue by pretending Fletch is a corpse. tt1226229,0N-cvihnyqg,Aldous calls up Jackie and learns that Lars Ulrich of Metallica is in bed with her. tt1226229,iOGo0EHHtCo,Aaron freaks out when he can't sleep after Aldous injected him with adrenaline. tt0097366,MMSpFkvPOAM,Jimmy Lee Farnsworth calls Fletch in front of the ministry where he confesses his sins and is forgiven. tt0097366,CS-nCS9Az94,"Fletch gets thrown in jail with Ben Dover, a man who was arrested for molesting a dead horse." tt0430922,Cnh4Vr0UruI,"Before Wheeler dies from his battle wounds, Danny admits that he still is his friend." tt0265298,VjfjS0R1bdk,"Jason gets Marty to confess on a rooftop, then surprises him with a dozen cameras catching the confession on tape." tt0265298,fki-LTswICw,"Marty discovers that his car has been tampered with, and Jason and Kaylee remind him that everything can be fixed with one phone call." tt0265298,RGl3Y1gvv5g,"Jason and Kaylee pour dye into the swimming pool, turning Marty blue in the process." tt0265298,2u8m1yeCoyM,"Jason sees the trailer for the movie based on his idea, but his parents don't believe his story was stolen." tt0430922,OP4zJ101EPY,"During the battle, Danny stands up to the lame king and ruins the day for Augie." tt0265298,GNWJFqW17yg,"Jason sneaks into class through a window with the help of his friend Kaylee, gives a theatrical excuse for not having his homework, and successfully fools his teacher." tt0430922,HAF359uuWUo,"Danny and Wheeler get kicked out of ""Sturdy Wings"" and fight in an elevator." tt0265298,ZbPoAOc_iKw,"Frustrated by the experience of acting with a chicken, a former child actor abruptly ends a scene mid-shoot, much to the chagrin of Marty." tt0097366,A0WEpT1SKV0,Fletch learns that he has inherited his Aunt's estate in Louisiana and promptly quits his job. tt0430922,iwfU4ei5gWE,"Former drug addict Gayle Sweeny gives an orientation to ""Sturdy Wings.""" tt0430922,w29PG-8Tywo,Danny has a meltdown at a high school where he and Wheeler are promoting Minotaur energy drinks. tt0195685,j4yXEmQRq34,Erin flirts her way into accessing - and copying - PG&E water records. tt0097351,5Ay5GqJwHF8,Ray hears a whisper in the cornfield urging him to build something. tt0329575,jlUPc1tu64s,Red and Seabiscuit take their first ride together. tt0329575,U6fx_zJtL8I,Tom does everything he can to soothe a lonely and depressed Seabiscuit. tt0329575,yJzn9MhJxRM,"Tom tries in vain to pair Seabiscuit with a jockey, but his hope is renewed when he sees Red fighting a group of men." tt1470023,4xdqgzNNHn0,"MacGruber, Piper, and Vicki plan their next mission." tt1470023,aMQysPMcE4M,Vicki infiltrates the coffee shop dressed as MacGruber. tt0120735,VHJ5pzTGtag,"Big Chris finds Eddie and the bag of money and steals it back, but Tom gets away." tt1121977,DJnKxIj_D6A,Paul interviews Elizabeth for the job and learns about her background. tt0338013,EQCf1YAzPsg,"When Mary sends Clem back her file, Joel and Clem hear a disturbing description of their past/future relationship." tt0338013,3et9liRrywY,"Joel tries to hide his memories of Clem far in the past where the ""Eraser Guys"" won't find him... and winds up as a baby." tt0120735,I_e8l4Lj8OE,"Eddie and the lads rob the thieves and take the van filled with weed, cash and a traffic warden." tt0120735,OvRYeeFT7BA,"With Barry the Baptist feeding him information, Hatchet Harry raises Eddie into a no-win situation." tt0113749,05O77oX6bQE,"When Brodie and TS are revealed on the show, TS has to win back Brandi." tt0120735,PoBD69ANBUg,"Gary and Dean come for the guns, but get Hatchet Harry and Barry instead." tt0338013,RwQVsB6k24Q,"After being ignored by Clem, Joel discovers from Rob that he's been erased from her memory by Lacuna Inc." tt0129290,hXWDSeVeaAE,Patch passionately appeals to the Med Students and the Medical Board and is surprised by all the people he has helped. tt0074281,rwd5hlQnu0I,"Duane threatens Lonnie with a gun for the money, but Duane talks him down." tt0129290,Pr9ruvxA3K4,"Patch gives a speech to the Medical Board saying that doctors should not only fight death, they should fight indifference." tt0074281,8h6r3S5zjtk,"Unimpressed by Daddy Rich, Duane likens him to a pimp, which inspires the Wilson Sisters to break out into song." tt0036775,7vZy9ra8kdM,Walter confesses to murder on Keyes' office recorder. tt0036775,1WRLqzGkzNw,"Walter confronts Phyllis about her manipulative ways, but ends up on the wrong side of her gun." tt0036775,8nYPCDXHuPs,Walter tells Phyllis that he is done with her and will not be taken down for her crimes. tt0074281,XbTEusaf2nU,Daddy Rich and the Wilson Sisters roll up to the car wash in his Cadillac and holds court with the employees. tt0115783,3nydBUSR08o,"When Moses proves to Keats that he was telling the truth, they hijack the car and toss the FBI agents out on the street." tt0074281,zcDoyBvCyF8,The other employees trick Irwin into walking through the car wash. tt0074281,Ye4fqNh_vbs,"T.C. tells an unimpressed Lloyd his dreams of being a black superhero called ""The Fly.""" tt1194263,zBErHC42Gzk,Buddy has a chat with Rev. Jackson in the church that Felix built. tt1194263,aRgUxpmvZpc,Felix gets fitted for new clothes for his funeral. tt0115783,8WfKSXftr60,"After escaping the plane crash, Keats is forced to lead the chained and chatty Moses through the desert to safety." tt1121977,784nv_NRf4k,Prospective adopters Lucy and Joseph are grilled by the birth mother. tt1121977,_zlqhZOE4yw,Elizabeth comes on to Paul. tt0115783,GLfcxIq-zmY,"When Moses tries to escape out the bathroom window, Keats sticks his gun up his butt, freaking out Charlie." tt0129290,eQ87hBFrS_I,"Patch greets the visiting gynecologists with a larger-than-life, yet intimate welcome." tt0115783,VjlGOec7RVU,A couple Arizona Highway Patrol officers find Moses passed out in the car with beer bottles scattered all over. tt0036775,hjuYfeA2prM,"Keyes tries to promote Walter to claims, but Walter prefers being a lowly salesman." tt0129290,byPJ22JDFjI,"Patch brings joy to the patients in the Children's Ward, but Dean Walcott isn't laughing." tt0036775,LJq1auJq_gc,"Walter realizes that Phyllis wants him to kill her husband, but he's not that crazy. Or is he?" tt0036775,ZKdcYnlkhx8,"Walter makes some passes at Mrs. Dietrichson, but she rebuffs him." tt0096734,jal6Pf2DFlg,Ray reveals a damning piece of evidence; he plans a raid on the Klopeks' house. tt0117381,tSXp2wB6kXQ,"David follows Nicole's friend, Gary, into the forest with the intent to murder him." tt0117381,a5BtDmdw708,"Steve and David battle it out in Nicole's room, with a grave end for David." tt0117381,UI6mgCAcXzc,"A security guard shows up at the house and tries to help, but ends up getting shot." tt0117381,5qfoeuQFFHw,David professes his love to Nicole and apologizes for hurting her friend Gary. tt0129290,bKLQBuSPVwQ,"Patch has a conversation with Arthur, who gives him his nickname." tt0117381,tumI28B48wY,David and Nicole's roller coaster ride turns sexual. tt0089560,1KfyTORRMXk,"Rocky is humiliated when Diana introduces him to her parents, who cannot see beyond his deformities." tt0089560,aFDFSGAIrxs,"Visiting the cemetery where Rocky is buried, Rusty remembers her son as Gar and Dozer stand nearby." tt1121977,Ig8UNiVUfc8,"Paco tries to make amends with Karen, but she will have none of it." tt1149361,Gor6z4YDPhU,Bazil disguises himself in order to spy on a meeting between arms dealers in a department store. tt1321509,1sCRrXnBTZ8,Aaron and Ryan tie up the little person trying to extort their money. tt1321509,o3aqMjrFf5k,Oscar believes he sees the coffin moving and dumps the body on the ground. tt0089560,4snGt8OzUV0,"When the blind Diana asks Rocky what he looks like, Rocky tells her the truth." tt0089560,fc0uxTiUDrE,"Rocky gets a physical and Dr. Vinton hears about Rocky's ""lionitis"" for the first time." tt1321509,OhOvnL8Q03c,Elaine is alarmed to learn that she accidentally gave Oscar a hallucinogenic drug. tt0089560,_2WBjBnwlUs,"When the arrogant new doctor, Dr. Vinton, explains the test results for Rocky, Rusty tears him a new one." tt0132477,CzOH54GemVo,Homer invites his dad to his last rocket launch and let's him know who his real hero is. tt0089560,C1kZTfHldfY,"When Mr. Simms tries to prevent Rocky from registering at his school, Rusty plays hardball." tt0144528,bxgZWv4Db5I,Sherman gets Buddy Love to take the age reversal formula by playing fetch with a formula soaked ball. tt0132477,h1F9-NKqDDk,Homer tells his dad about his hopes and dreams and that he's quitting the coal mine for good. tt0132477,udHB3tftPz4,"When Homer proves to Principal Turner that his rocket didn't start the fire, he gets re-enrolled in school." tt0132477,cP_OM5VVcSo,The Rocket Boys test and launch various rockets as they try to perfect their design. tt0132477,TUlYMYQD3ZE,The Rocket Boys successfully launch their first rocket -- straight into John Hickam's office. tt0144528,jFoUWFmM-NU,The Klumps have a dinner celebration for Papa Klump's retirement. tt0144528,c0RlK3VAmzg,Mama Klump is disappointed in Papa Klump's lack of interest in sex. tt0091541,i6OCtSqrOQ0,Anna arrives at their nearly demolished home and finds Walter stuck in the floor. tt0091541,9CJ9EDtZ2p8,"Walter flips a switch in the kitchen and starts a series of electrical fires, and after the turkey nearly hits Anna, the bathtub breaks through the floor." tt0091541,3LY5dV3xghY,"Walter borrows $200,000 from one of his clients - a child star named Benny - by using a little creative persuasion." tt0144528,9fwBPbt95vA,"In the middle of Sherman's session with Dr. Knoll, a little bit of Buddy Love slips out of him." tt0824747,Gm1BZxc4tmk,"When Detective Ybarra asks Sanford to show him which kids he killed, one of them turns out to be Walter Collins." tt0117218,iB25eDhWImc,Klump brings Carla home for dinner and subjects her to inappropriate conversation and bodily functions from the family. tt0824747,pOPWdQO9bK4,"When she won't sign Dr. Steele's paper, Mrs. Collins is forced to take sedatives." tt0824747,edX09NFZ3oc,Captain Jones accuses Mrs. Collins of trying to perpetrate fraud and commits her to the Psych Ward. tt0119643,sxNHNxmgzJU,Joe and Susan share a final kiss. tt0117218,cZP4yFO6l78,"Professor Buddy Love gives the ""rich-dummy"" explanation of his revolutionary research on weight loss." tt0117218,al-tdoT3gL8,Klump literally jumps for joy when he looks in a mirror and discovers that he is thin for the first time... and he can see his... tt0824747,FlxXhrDycHw,"Mrs. Collins is visited by Captain Jones who tells her that they have found her son, alive and well." tt0119643,Ae-mN5aD8Qg,Parrish meets Joe Black - death personified - and finds out that he is going to die. tt0119643,K8JhJPro-1c,Susan and Joe Black undress before making love. tt0824747,pHvNvYijtBU,"In his sermon, Reverend Briegleb uses Mrs. Collins' case to blast the LAPD." tt0119643,DXief-vtjIs,Parrish gives his 65th birthday speech and breaks precedent by telling the crowd his one candle wish. tt0119643,YF-7cPk04OY,"Susan questions Joe about his identity and purpose, but he's unable to answer." tt0119643,G4RvOmNedls,Bill finds it difficult to introduce Death to his family at dinner. tt0120669,BwDlobymMk0,"When leaving Las Vegas, Duke gets pulled over by a Highway Patrolman after a high speed desert chase." tt0322259,gJ_cx3AmCuI,"Carter tortures a detective using a panicky rodent, a bucket and a blowtorch." tt0322259,RL_3JEsg994,"Brian and Roman race to pick up a package for crime boss Verone, while he tracks them from his office." tt0322259,LGnYM0wT0t4,Brian and Roman compete in a race with high stakes -- their cars. tt0117218,B52L95xRYFs,"After a family dinner full of food and farts, a depressed Klump is reminded by his mama to always believe in himself." tt0315327,bjAM2J_D4UY,"When Bruce meets God for the first time, he is offered his job as the Almighty to prove it's not as easy as he thinks." tt0322259,qaBlaPsuHQw,"Brian tries to flee the cops in his car, but is stopped by an ingenious device." tt0120669,gP8_w1J5raY,"High out of his mind, Dr. Gonzo loses it, forcing Duke to kick him off the carousel." tt0120669,uOmtVFQ3WF8,"Hallucinating on acid, Duke checks into the hotel with Dr. Gonzo." tt1038919,L98X2ESOWU0,Nicole and Milo join forces in a chase across a busy golf course. tt1053424,jocnzvDLA60,Remy and Beth attack the airport cops and run into Jake. tt0947810,ji8jpGMlBE8,Journalist Lawrie Dayne questions Miller about his mission. tt0110950,9oTVECouTO4,Lelaina gets reprimanded by her boss Grant when she forgets his coffee. tt0117218,LsaLeOKK-EA,"Klump shares a romantic kiss with Carla on the beach, but inadvertently buries her under the sand." tt0120669,BmylCJhL-5Q,"When Duke gets a call to cover the Mint 400 race in Las Vegas, Dr. Gonzo invites himself along." tt0110950,xNHt_KWKMbE,Vickie complains about men -- and AIDS -- at a diner with Lelaina. tt0110950,AgB4n-1-_BY,"While Lelaina breaks down about feeling like a failure, Troy comforts her with kind words, and a kiss." tt0365748,t--mSXDeETc,"Pete has a question for Shaun about their sloth-like roommate, Ed : ""When's he going home?""" tt0110950,b_BA368IluE,Lelaina gets irritated when Vickie tells her that Troy is moving in as a roommate. tt0110950,YVOKgKYJB2E,"Out on a date with Michael, Lelaina gets uncomfortable when he gives her a compliment and asks about her friends." tt0209163,2W5dr790cKo,"Rick isn't too happy about taking the group on a blimp ride, but Izzy insists that it's the best way to travel." tt0052357,CgU-5WQGClY,Madeleine shares her deepest fears with Scottie and he promises to stay with her. tt0021884,qLvGnro4Cgw,Ludwig encourages a mob of townspeople to light their torches and go after the Monster. tt0021884,GbZMFMSKQ2s,The Monster fights Dr. Frankenstein and falls to the floor after Dr. Waldman injects him with a sedative. tt0021884,A4Ntv7DJURM,Fritz breaks into Dr. Waldman's classroom and steals the brain of a criminal after dropping the pristine brain. tt1053424,zPeqoWzZE5I,Jake explains to Remy that rules keep the world together. tt0021884,96sUPxlIfx4,The monster reacts violently when he sees fire. tt1053424,iCfjoSbWHZM,Jake chastises Remy for coming to his aid because he loses the commission. tt1053424,HXRuqpUG9RI,Remy is attacked by a woman while reclaiming an organ. tt0947810,J1668qPavto,Unit leader Roy Miller questions the higher-ups in command about the authenticity of the intelligence. tt0079367,rSWBuZws30g,"Navin hits rock bottom, leaving Marie at the house, taking only his chair... and paddle ball game... and lamp..." tt0252866,0XOzPjsD_ec,Jim accidentally uses super glue instead of lotion when pleasuring himself. tt0079367,kBJDz4ylQO0,Navin gets angry and uses karate on some thugs who use racial slurs in his home. tt0079367,Tcwz8-EfFYE,"While working at the gas station, Navin gets shot at by a mad gunman." tt0079367,3ohBUYQJflU,"Navin gets advice from the family as he sets out to leave home for the big city, but first, he needs to hitch a ride." tt0079367,ahuPW6_t-z0,"Navin, ecstatic about his name being in the phone book, randomly gains a madman stalker as well." tt1078940,Slf_2J57SyY,Marcel leads the group through a therapeutic strip exercise. tt1743720,lEPfDu4pVqg,Morgan Spurlock gets Pom to sponsor his movie about product placement. tt1588337,Tb6dbNhFk7I,Christian and Celestin are persuaded to head back to France due to increasing terrorist activity. tt1640484,FSSlOmgUf0Q,Reverend James tries to give the blissful couple a wake-up call by warning them that life won't always be easy just because they love each other. tt1240982,hG6DmzzU8m0,Thadeous demands the compass from Isabel. tt1217613,ucikAqewZL4,A newscaster delivers updates in the development of the ongoing invasion while the military prepare to engage. tt0095631,Xlj9wg9q6f8,"The FBI stops Jack on the street to interrogate him, but before they let him go he manages to steal one of their official badges." tt1285016,o6TYEHyv00Y,Mark explores the idea of putting the social experience of college online. tt0095631,T3Xlw651IoE,"At a pit stop, Jonathan steals a plane and tries to escape from Jack." tt0095631,W3GsHtZu0Bw,Jonathan and Jack have a discussion about denial and how it has effected both of their lives. tt0095631,Ppj45Ai524s,"Jack and Jonathan sprint to board a freight train; Jonthan tries to keep Jack from boarding, making him furious." tt0780653,rbsrjcXynlg,Sir John protects Lawrence from the Colonel and his men. tt0780653,lfJ7WzyoZH8,Abberline and Carter pursue the Wolfman through the streets of London. tt1174732,0SwgAb1effg,"Jenny tells David how boring life was before he came along, and they end the night with a kiss." tt0989757,t4_obOCNYls,Savannah and John kiss in the rain. tt0989757,Qxa4zjRostg,Savannah is reluctant to let John go. tt1174732,C_dc5WzLq_c,Jenny meets David when he drives up to her on a rainy day and offers a lift -- for her cello. tt1243957,xUp1My_eHn4,Elise picks the handcuffs off of Frank on a solitary boat. tt1243957,V4qu6AJNBQ8,Elise reads a letter while police watch her every move. tt1243957,JhSRGLe18OI,"Elise scours the train for a man that fits what she's looking for, and she finds it in Frank." tt1545098,G4_3pzwFYKw,Kenny Chesney and his band sing a tune about hard livin'. tt1545098,riicefV6xiI,Kenny Chesney performs a sentimental song. tt1545098,aF4En8CIaNk,Kenny Chesney takes to the sky. tt1545098,_WjIlCZJtLk,Kenny discusses reaching each member of the audience. tt1423894,z6aek_pwEGk,"Barney turns to his dad for some paternal wisdom concerning his love life, but is disappointed with the metaphors his dad has to offer." tt1423894,ECoL3IaXgRI,A note Miriam has left Barney has made him certain that he is in love. tt1423894,rP0QURktz3Y,Barney refuses to accept that he and Miriam's marriage is over. tt1564585,V3Av8JD__sQ,"Jarrod and Elaine watch a jet make some progress in shooting an alien, only to see it crash before them." tt1174732,IsskB0D2GC0,David meets Jenny's parents and convinces them to let Jenny stay out late on their date. tt1174732,Pz0RfOVm-So,"Jenny admires Helen's coat, and Helen encourages her to have David take her shopping in Chelsea." tt1135503,uhpknFQJ7G0,"At a Valentine's Day dinner with friends, Julia and Paul are asked whether they were spies during the war." tt1135503,Eg8MVTZ12pE,Julie reminisces about her mother cooking Julia Child recipes and has an idea for a blog. tt1135503,YsrQUrJ7AdM,"When Paul asks Julia what she really likes to do, she immediately answers, ""Eat.""" tt1226273,TBiqsgxbxLA,Jedburgh tells Thomas that someone considered his daughter a terrorist. tt1431181,m03MTJCH0Ns,Mary talks about her taste in men over a glass of wine with Gerri. tt1126591,w0AliJi4npk,"Ali performs the number ""Express"" at Burlesque." tt1126591,athtiym8OYE,"At a party in the Hollywood Hills, Marcus throws his best pick-up line at Ali." tt0385267,coeU38xEhVU,"In a company basketball game, Dan's competitive side takes over leading to an on court injury." tt1126591,PWTptbb0vB4,Tess talks about her favorite love affair with Sean. tt1126591,K9T33H_h0Yk,Ali asks the bartender who she needs to flirt with to get a job dancing on stage at Burlesque. tt1431181,xeSDsBS_cvo,"Observing the blissful marriage between Tom and Gerri, Mary guzzles down a glass of wine to hide her jealousy." tt1126591,BvWSMD2FIpU,"Ali walks into the Burlesque club as Tess performs the tune ""Welcome to Burlesque"" on stage." tt1423894,tM3Zg8m373Y,"Barney Panofsky ties the knot with the not-so-shy Clara, to his friends' delight." tt1423894,oqKAuNefcSM,"Barney Panofsky makes it on the train to tell Miriam, whom he just met at his wedding, that he is madly in love with her." tt1285016,8eu9yZ6pWjg,"In the morning, after a one night stand, Amelia learns that she slept with the founder of Napster, Sean Parker." tt1179056,P2A2nKAbQqI,"When Jesse visits Kris at night, he finds out they are having the same horrific dream." tt1038686,69ux9TSbEKk,Michael shows up and hands out guns immediately. tt1038686,KPwY1uEFP-c,"As the group drives down the road toward large clouds, Audrey points out that clouds don't buzz." tt0369735,NYFI1-FTw94,"Viola and Charlie come to blows over Viola's dress, but Gertrude appears to provide some perspective." tt0369735,ndItN7hhtII,Kevin proposes to Charlie in front of his disapproving mother. tt0361748,PolzQMFju_s,"Although she asks Frederick to stop pestering her, Shosanna becomes curious of his status." tt0369735,MHpyl6uVPrw,Viola spikes the gravy with almonds to make Charlie sick. tt1216492,y9jS6a7rIVQ,The innkeeper forces Declan to kiss Anna. tt1216492,YCIqymquy54,Anna catches Declan's lie about the coin toss. tt1119646,dAOw8dXcMpw,"During their interrogation about the police car they stole, the guys have the audacity to tell the officers that they ""found"" the police car and deserve a reward." tt1119646,OkIYOU1ObYU,"When Phil discovers they valet parked a stolen police car, he urges the other guys to act cool and just go along with it." tt1216492,9ZY9i9-hoQM,Declan agrees to drive Anna to Dublin. tt1179056,1QjC0jXb-9k,Dean is stalked through a burning kitchen until he wakes to freshly poured coffee from Nancy - and freshly drawn blood. tt1119646,vjvHNXSWvPs,Alan makes a very heartfelt toast to the boys on the roof of their Vegas hotel. tt0775489,7d7OeDwkfTg,The illusionist follows a tough act and is bothered by a drunken fool. tt0872230,VvfRXzxBe68,"Brittany runs from the all-knowing, all-seeing Ripper in the forest until a phone in her bag gives up her hiding spot." tt1226753,F44mBbuqA2c,The stone-faced Rachel confronts her former colleague and lover about what their daughter does and does not know. tt0775489,4xh-Hz14AA4,The Illusionist puts high wire flare on billboard art as acrobats wield paint brushes with expert precision. tt1226753,j32LbrHGak0,"Complete strangers, David and Rachel must fake a false reunion to keep their secret safe." tt0361748,7Xgj1Csnr_w,Col. Hans Landa explains how he finds hiding Jews. tt0249462,FboJePoCAb8,"Billy says goodbye to his neighborhood, best friend, and family to leave for the Royal Ballet School in London." tt0913354,dnThWk9ib1c,Mike tries to usher away a cop who comes around the warehouse. tt0775489,oZ868onS6YY,Young Alice gets a new pair of high heels and takes them for a test drive. tt0249462,U0tTT_87Hh8,"After giving one-word answers in the interview portion, Billy finally opens up when asked what he feels when he dances." tt1371155,M37QsnD6nZ4,Rita stands up for the rights of female workers in 1960's England. tt1371155,r0cRrtcU5X0,"A female politician tries to hold up the grassroots effort of Rita O'Grady and her group, but they will not be stopped by man or woman." tt1371155,UJWni94vAAU,"Putting her chauvinistic officers in place, Barbara Castle fights for equal pay in the 1960's." tt1371155,BbjSOt7NxIY,"Eddie tries to apologize to Rita, but he doesn't understand what she is fighting for...equality." tt1371155,KMD8yO3iM-E,"Lisa takes a ""very progressive"" stance on why the unions are destroying Ford." tt0804497,wq26A_QK4So,Craig tries to explain his feelings to Noelle by unintentionally quoting lyrics from a Bob Dylan song. tt1285016,bXt-KqvrSh0,Mark waits at a law firm to give a deposition with second-year associate Marylin Delpy. tt1285016,nHCEOK9n5z8,Tensions rise as the Winklevoss twins and Divya believe that Mark stole their social networking idea. tt0804497,5hXXFQLDsoA,"While waiting in the E.R., Craig meets Bobby whose opinions and line of questioning don't seem to be one of a doctor's viewpoints." tt1645089,5msVl3oZl4U,"Frederic Mishkin writes a study on the stability of Iceland's financial system, but he has conflicting interests that tarnish his conclusions." tt1645089,xy8a0GKO_Ek,"Allan Sloan, senior editor for Fortune Magazine, examines the calamity involved with sub-prime mortgages." tt1645089,xxbFPdBBjc0,"Financial institution Lehman Brothers goes bankrupt, resulting in serious consequences." tt1645089,vdbQpDHAq5U,Author Charles Morris explains how a bond trader became rich in the 1980s after the banks became public. tt0899106,MPOPd2RNLko,"Burke tries to pick-up Eloise, but she shoots him down by pretending to be deaf." tt0844471,mSa_kUf6cxs,Cal and Earl ride a sleigh down a candy roof. tt0249462,qyLJCNyRov0,"Billy is hopeless in the boxing ring, distracted by a neighboring ballet class." tt0103919,vFAE-ZIntVI,"In order to prove her innocence, Helen summons the Candyman who promptly kills Dr. Burke." tt1136608,54A7W6eEBnw,"During a search, Wikus finds a canister of alien liquid and accidentally sprays himself in the face with it." tt1486190,Xon0bfX3L1g,Andy is unforgiving towards Tamara when he learns she's having an affair with Nicholas. tt1645089,QO9r8aO07YE,"Jerome Fons, a managing director for Moody's Rating Agency explains that the investment banks all had good ratings prior to the financial meltdown." tt1486190,aRcxYPkFjh4,The arrival of Tamara Drewe at the writer's retreat turns everyone's head. tt1486190,bJgem6Xc3TM,"Tamara checks into the hotel for the evening, followed by Andy." tt0298203,F2hiFbuQ-Qw,B-Rabbit battles Papa Doc and blows him out of the water. tt1584016,Z4vn4UWaeZU,Rel asks Nev about how his relationship with Megan is progressing. tt1588170,X1u5iUcD0Ag,Tony and Ben try to get the elevator doors open. tt1588170,Po_w8OmTfoY,Vince is blamed for cutting Sarah. tt1588170,1q5Us5iVWNI,One of the passengers is attacked when the lights go out. tt1584016,LiHKY-bG36E,Megan sends Nev a drawing she made of him. tt1220634,nkVK4JHRQfk,Alice and her double shoot their way out of being trapped in a skyscraper. tt0298203,ByNjiy8-j8g,Rabbit catches Wink having sex with Alex and gives him a beating. tt1440728,sxI6RnTFj3U,Jack hunts down the hunter in a snow-filled landscape. tt1220634,5CdiJbnuvYg,Alice goes over the roof with a bungee cord as all the undead topple to their doom. tt1282140,NYTS7NBDKKU,Olive receives a musical birthday card from Grandma and can't stop listening to it. tt0298203,0ShWGyC408I,Greg freaks out over the eviction notice and Rabbit beats him up. tt1282140,LUV0AjnjaT4,Ojai High School changes their mascot from a blue devil to a woodchuck. tt1282140,71qm5ZOlpAw,Olive helps out Brandon's popularity by pretending to have sex with him. tt1282140,CEtLeoXjttY,Olive receives some religious judgment from Marianne who overheard some gossip. tt1135084,VC0uIqac2A4,Tensions increase when Ghost unexpectedly enters the back room where the bank robbers are hanging out. tt0212338,ETC82KEplac,"Greg is a little too impressed with Kevin, Pam's ex-fiance." tt0110074,DQYjgqnTmJ8,"Norville's invention, the Hula Hoop, becomes a sensation." tt0110074,fpiyrd28vfA,"Amy successfully convinces Norville that she shares his Muncie, Indiana roots." tt0098067,RF0YXIambdI,Susan discusses the perils of parenting and the thrills of marriage with Karen and Nathan. tt0298203,vt0hblIsHiY,"When Cheddar tries to help B-Rabbit win a fight by pulling a gun, he accidentally shoots himself in the leg." tt0110074,hLCjV1eOAoA,Sydney introduces Norville to a roomful of disgruntled shareholders. tt0298203,8bY4qPadkSo,Rabbit's mom tells him that they're getting evicted; he has a rough time at his factory job. tt0879870,NBQAXiZ7KG4,Elizabeth hears some worrisome news when she has her palm read in Bali. tt1415283,aYKt-7msPic,Nanny McPhee hides a baby elephant from Mrs. Green. tt0879870,yGgOimJaqT4,Elizabeth becomes frustrated with her meditation program led by Richard. tt1415283,JPasKum1U9Q,Nanny McPhee arrives to help Mrs. Green with her unruly children. tt1438254,bCaHwP04KK0,Charlie recites some poetry to Tess to encourage her to take a chance. tt1438254,VUvB-jPvVuw,Charlie kisses Tess as she tries to explain her route. tt1438254,U2p88URI8lg,Sam reminds Charlie of the deal that they made. tt1438254,Uu31b0VHCc4,Charlie teaches Sam how to hold a baseball. tt1386588,5PKVmzdQGwg,Captain Mauch takes away Gamble's gun and replaces it with a rape whistle. tt1313092,mK8ad1nYFQA,J' gets some family history from Aunt Janine. tt1313092,5sFu4iEF8dk,Craig puts pressure on 'J' to intimidate a gang of local hoods by pulling a gun out on them. tt1386588,WzTIhm6YMQk,Police partners Gamble and Hoitz spar verbally. tt1386588,7GIxoAbxvQk,Danson and Highsmith congratulate themselves on a job well done and announce a party in their honor. tt0944835,LlRHSFVV8cY,Ted gets in Evelyn's face when she is arrested for treason. tt0944835,NG5ijPnfYV8,"Pinned down by Peabody and his men, Evelyn makes a daring escape by jumping off an overpass onto a truck." tt0842926,P1_QqWRpUQg,Jules keeps seeing her kids' expressions on Paul's face. tt0842926,HPwD7sgVtkA,Nic is surprised by Paul's blunt answers to her questions. tt0110074,zU3Hs36FIrw,Norville gets a crash course on protocol at Hudsucker Industries from a motormouthed manager. tt0110074,_6dtasEqpLM,"Waring Hudsucker interrupts a board meeting to vacate his post as president of the company, effective immediately." tt0842926,xxFSUgehWbk,Paul and Laser discuss their preference of team sports. tt1375670,zrR9re9NV_s,"At a family restaurant, Lenny needs to explain to the children what ""wasted"" means." tt0298203,LRPEYUlE8rU,Wink tells B-Rabbit all about how he's going to make him a rap star. tt1375670,IG4FAGxZvtU,Mrs. Feder shows off her rock skipping prowess to the children. tt0106308,Rf9V-yzCzR4,Ash hops in his battle car to fight the army of the deadites. tt0118689,NNzMjrJQKsc,"Bean gives his expert opinion on the Whistler's Mother"" painting to General Newton and the crowd." tt0338075,7_hS3YLPHvI,"After engaging in some small talk, a cop reveals that he's on to Phil and Larry and cuffs them to the hearse." tt0338075,lJ9V5BgkzKU,"By opening up and confessing years of drug abuse, Larry convinces Stanley to give them Gram's body." tt0338075,GRG-2ocGGnw,Phil shares a drink with the ghost of Gram Parsons. tt1155076,Rdb-5NHyGOA,"With Dre watching, Mr. Han tries to catch a fly with chopsticks." tt1155076,7rlvmkQy4hQ,"Mr. Han teaches Dre discipline, focus, and flow of movement." tt1226229,zyJgcHwLP3w,Aldous and Aaron are chased by a crazed Sergio through a hotel corridor that goes on and on and on. tt1121977,lAklD2ULzh0,Karen learns some hard truths about her mother. tt1470023,qDc-OGF_NJ0,Vicki and MacGruber get intimate in her kitchen. tt1470023,WDiwa8H0DTc,MacGruber gets thrown out of Dieter's party...literally. tt0800039,T4Sk7RsIQd0,"Peter bumps into Sarah at the resort; her new boyfriend, Aldous, searches for a stray shoe." tt1470023,5MBUVKzIyPY,MacGruber and Piper are attacked while Vicki is in the coffee shop. tt0020629,0wFkRRILnPo,"A wounded Paul is briefly allowed a trip home, where his spends time with his ailing mother." tt1121977,yb_-UHyPC8c,Karen's mom tells her to be wary of her new crush. tt0118689,yLrN6wSSGqk,"Trying to entertain a sick child on the plane, Bean pops a bag over a sleeping man. Unfortunately, it is filled with vomit." tt0020629,_SQr8I3lcW8,"Franz discovers his right leg has been amputated, while Mueller tries to convince him to give up his boots." tt1121977,4MG5Dy0gFFY,"Karen has coffee with Paco, but it ends badly." tt1194263,-v-KiIuYkCo,Mattie visits Felix at his barn after hearing him on the radio. tt1194263,nHKJaG3sXMY,Frank gives Buddy a pep talk before sending him on his first solo sales call. tt1194263,ZgngBG5JX_M,Felix proposes his idea to hold his funeral while he's still alive to Frank and Buddy. tt1194263,NVR6-HnKtM8,Frank complains to Buddy that not enough people are dying to keep their funeral home going. tt1121977,f4ojzsvQhh0,Karen explains to Paco why she treated him badly. tt1121977,fJBrWMxc_P4,"Paul admits that he has feelings for his employee, Elizabeth." tt1121977,8WqRrq_lM14,Paul invites his employee Elizabeth to a one-on-one dinner. tt0265298,OseaEf8Qy8Y,"Stranded in the desert, Marty accepts a helicopter ride from Vince, but it comes to an abrupt end when they have to jump out." tt0430922,RH0zWG3Crzs,The L.A.I.R.E. battle royale commences and Augie takes vengeance on his betrayers. tt0430922,p84uEGZqFlk,Augie faces the evil King Argotron and slays him. tt0265298,LJY_pChREVY,Kaylee and Jason crank call Marty's assistant Astrid in order to sneak into Marty's office. tt0265298,-UAElWXbk3I,"On the way to turn in his assignment, Jason rides his sister's bike into a limo, and movie producer Marty gives him some tips on lying." tt1321509,8oi8aVwb_Tg,Aaron informs Ryan that their father had a gay lover. tt1321509,yywHSkFkfU0,Elaine tells Derek the truth about their relationship. tt1321509,WJeOTphX47E,Aaron is distressed when he doesn't find his father in the casket. tt1149361,32JbDv50hFc,"A private collection of oddball trinkets is on display including Winston Churchill's nail clippings, Marilyn Monroe's molar, and Mussolini's eye." tt1149361,obDVqhso9l4,Bazil is surprised when he finds a contortionist hanging out in a refrigerator. tt1149361,IPEX_RXRKgw,Bazil plays a whimsical game with some street kids to get his hat back. tt0361748,6QoON2Vq78k,"General Fenech gives Lt. Hicox a briefing on ""the Basterds.""" tt1038919,oqAu5fVDwAM,Milo captures Nicole and puts her in the trunk of his car. tt1038919,7nO7han5KIg,"Milo finds Nicole at the horse races, where he tells her is a bounty hunter and that he is taking her to jail." tt0020629,368Nrtkmrls,"When only half of the soldiers come back to camp, the cook hesitates offering all of the rations for the whole company." tt0195685,mKgy5W3S6nw,"Erin argues with her boss Ed over her bonus check until she realizes that the ""change"" he made in her bonus check was a good one." tt0195685,D-5P2iMf_ZA,George consoles Erin who is despondent about life after being fired. tt1053424,rZ-_UsEBT5E,Beth tells Remy what artifogs she has. tt0020629,99odqGVYe4g,"Hearing the whistle, Second Company readies itself and anticipates the French invasion." tt1053424,OSca1EnBNJA,Frank sells a customer an artificial pancreas. tt1053424,UHqUN3um9Bc,Remy gives his reclaimed artiforgs to Frank. tt0947810,HvJTquFs5Zk,Poundstone and Briggs track Miller. tt1234654,u3M_YKjLOkI,Florence admires Roger's ability to do nothing and asks if he wants to spend the night. tt0947810,qO_4Up5Q5ns,Wilkins tells Miller that he can't go with him on this mission. tt0120735,14HerspIb_U,"Rory and his boys get into a firefight with Dog's thugs. Dog tries to escape, but is robbed by Big Chris." tt0780653,kQQfoIy7SNI,Sir John watches Abberline and his men take Lawrence away. tt0113749,ZbKU3_H3FVw,Brodie and TS encounter Willam at the mall staring at a 3-D painting of a sailboat. tt0780653,B_4YNm9mMvo,Gwen asks Lawrence to stay with her so she can help him. tt0120735,u3UyGrnv1-A,"Plank and his boys try to rob the weed operation, get shot with an air rifle and return fire with a monstrous Bren gun." tt0120735,PGqBHvtmtgE,Things come full circle when Big Chris brings the bag of money back to Eddie and the lads. tt0780653,Dl4hTIp8QbM,Sir John locks himself in and Lawrence starts to transform into the Wolfman. tt0989757,RK27DwSEetI,Savannah meets John's father. tt1174732,bQqcnMHjxvQ,Jenny is enthralled by Danny's talk of art auctions and decides she can rearrange her plans to attend. tt0989757,mudt7nvWwo4,Savannah tells John in a note how she fell in love with him and asks him to write her while they are apart. tt1174732,0GiMAf9q3hQ,David's infatuation with Jenny grows as he watches her enjoy herself at a party. tt1174732,MCwQ4tdtev4,Jack and Jenny discuss what she needs to do -- and need not do -- to gain admission to Oxford. tt1135503,DUhgY4ohhQA,Julie and Eric watch old Julia Child cooking shows. tt1135503,aURe7hHL-Dw,"While Julie has another meltdown in the kitchen, Eric takes a promising phone call." tt0335266,G2UTjomYxkc,"Wandering the hotel, Charlotte overhears the press conference for ditzy Kelly's new action movie with Keanu Reeves." tt0335266,lpOdAHwRnXY,Bob gives Charlotte a secret message and kisses her goodbye. tt0074281,UpLg7Ma-c4g,"Thinking they've identified the Mad Bomber,"" Hippo and T.C. try to stop him by stealing his ""bomb.""" tt0120735,4HWP1l_KtTc,Tom hears an anecdote about why Rory Breaker should not be underestimated. tt1038686,dgJKcCZkXxY,Sandra snatches the baby and decides it would be better to give him up rather than resist those who want him. tt0129290,kx2FhY_akDY,"Patch graduates from Medical School, receiving his diploma in his cap and gown and nothing else." tt0115783,iXfhOj2PobA,"Assassins nearly kill Keats and Moses, but they are rescued by Charlie and his amazing backwoods driving." tt0074281,OHAVcgjGDqM,Marsha is all smiles when she gets hit on by the ultra suave Kenny. tt0335266,eNK7N3AwVFQ,Charlotte asks Bob for advice on life and marriage and he is brutally honest. tt1038686,jj6ECLiWbxo,Michael explains what is happening and reveals why he is there. tt1216492,JxL2yg_bRnQ,Declan mistreats Anna's designer suitcase. tt1216492,FHmPBAJK4CY,Anna pushes the airline desk workers for a flight to Dublin. tt0335266,kPLNO4WfFJw,"Bob experiences culture shock when he goes on a talk show with ""the Japanese Johnny Carson""." tt1216492,8dhvm-ph88E,Jeremy gives Anna a gift at dinner. tt0361748,ezRPVES1oQs,Aldo and the Basterds break Sgt. Hugo Stiglitz out of prison so he can join them and go pro as a Nazi killer. tt0361748,XmYC9RAMVeo,Aldo gives Werner a choice: spill the beans on his fellow Nazis or die for his country. tt0335266,vGvDCmuDKKE,Lost souls Bob and Charlotte meet at the hotel bar and get to know each other. tt0361748,qhAYzFv4HYc,Bridget von Hammersmark tells Aldo that Hitler will be at the movie premiere. tt0335266,i86FbeyKK1U,Charlotte and her husband run into airheaded Hollywood actress Kelly. tt0913354,_xNB1WCQ5NA,Mike explains to the group that they have 40 minutes to get Ty out of the armored car before the plan goes south. tt0335266,4gjiQwh1p6M,Bob performs various celebrity impressions during his whiskey photo shoot. tt0913354,uj8ftsuP8T4,Mike and Ty play a game of cat and mouse in armored cars. tt0913354,4J_8tpDzfAk,The guys partake in a little hazing with newbie guard Ty Hackett. tt0335266,FiQnH450hPM,Past-his-prime actor Bob Harris experiences a language barrier with a Japanese commercial director. tt0335266,wixLlPFJgyQ,Bob has a run-in with an evil exercise machine at a Tokyo hotel. tt0335266,lPQ6VQzuyxU,"Bob has an awkward encounter with a ""Premium Fantasy"" girl sent to entertain him." tt0074281,Lw0Nn1xSMHk,"When Duane insults Irwin, Lindy puts him in his place." tt0115783,Obey6WggwjM,"When the plane's engines go dead, Moses lands the plane on the edge of a cliff." tt0115783,ZVuhyX3w4Yg,"The final showdown between Colton, Moses and Keats." tt0115783,fImqZCIebuw,"When Colton's guard tries to shoot Moses and Keats in the back, Moses shoots him in the eye instead." tt0115783,p0-xbD-mRLs,"Keats and Moses are reunited, this time with Keats as a cop and Moses as his prisoner." tt0762125,5RbN0rjWBAg,"Lem attempts to hide Chuck in his room, but his brother and Skiff both barge in." tt0899106,ujX0y3zcvP8,"At the end of a good date with Burke, Eloise struts away down the sidewalk." tt0899106,uMH_Ajdp3E0,Burke explains to Eloise that he hasn't dated since his divorce. tt0844471,fLvEcBoOpnQ,Flint climbs into and out of a spaghetti tornado in an attempt to stop it. tt0844471,bbJEqSj7Wkk,Flint realizes that his invention works. tt0457400,L24hGLbmNrw,A large mosquito-like insect drains Rick while he serenades the crew with a banjo. tt0114746,HigxGvmHEdQ,"On the cab ride to the airport, Cole and Kathryn learn that Jeffrey's plan was to free animals from the zoo." tt0114746,C7Rmtxf-NVE,"Attempting to send Cole back to 1996, the scientists screw up again and instead send him back to France during the first World War." tt0114746,q74RKOmIjC8,"Cole explains to the panel of doctors at the institution, including Kathryn, that he is an observer sent by scientists from the future." tt0129290,G0yU-YJ6sjY,Patch talks with the distracted Dr. Prack who never meets his eyes and doesn't hear a word Patch says. tt0117381,0wC8Ab5AZeE,"Steve meets David on the side of the road and tells him to leave Nicole alone, but David bites back." tt0129290,Sk9mR3zjrkk,"When Dr. Prack brings the group session to Patch's room, Patch mocks the process by including the catatonic Beene." tt0114746,9l_U2xXb9VI,Cole meets Jeffrey Goines who shows him around the mental institution. tt0114746,e4yCxKv-2qw,"In police custody, Cole is visited by psychiatrist Kathryn who tells him that they are in the year 1990." tt0129290,MKl8s0EO5T4,Patch discovers his calling in life and checks himself out of the mental hospital against Dr. Prack's advice. tt0120601,CDywMUdVPqk,John Malkovich performs the Dance of Despair and Disillusionment for Maxine and she is quite impressed. tt0120601,oMx6C31dCeo,Craig convinces Maxine to have a drink with him when he successfully guesses her name. tt0385267,quJX9XLQe78,Dan meets his new boss Carter and is shocked to learn he is only 26 years old. tt0120601,meSIVfOyerg,"Disturbed by Maxine's behavior and his own growing suspicions, John Malkovich confides in Charlie." tt0120601,1itYlP2GpI8,"In order to get Lotte back, Craig leaves the mind of John Malkovich as others file in after him." tt0114746,TpGPSRGrL3s,Cole comes before the panel of Scientists who offer him an opportunity which will reduce his prison sentence. tt0120601,Q6Fuxkinhug,"John Malkovich discovers the portal into his own mind and upon his exit, confronts Craig, demanding him to close the portal." tt0120601,T2Y7oo3iB40,Craig has his first visit to the 7 1/2 floor and is introduced to Dr. Lester's unusual executive liaison Floris. tt0971209,HQYiGnCpZa8,Kale and Cleo angrily refuse a ride from Cliff and Cydney. tt0099329,6_nHubnKxqg,Allison convinces her grandmother to let her ride off with Cry-Baby on his motorcycle and have one night of happiness. tt0099329,x_75yMOHMiw,Allison swoons over Cry-Baby as he and his crew terrorize Mrs. Vernon-Williams on a country road. tt1136608,1TNL7KlEI8g,Wikus fires an alien weapon at his Nigerian captors and threatens Obesandjo. tt0971209,XDXuWwNXAZM,Nick confronts Cliff about Cliff's suspicion that Nick and Gina are the killers. tt0099329,iotRit7KMDc,Cry-Baby gets a motorcycle as a gift from his family and announces that he met a girl. tt0971209,9QWRxT9oHYI,Cliff and Cydney discuss whether they can make an excuse for leaving the group early or must ride it out until the end. tt0099329,XMrWXjOuv0g,Cry Baby sings a song and does a dance about bein' young and doin' time. tt0118928,zWkNT5A3wIk,"Just as a town hall meeting is being convened to discuss the threat of an eruption, the volcano suddenly erupts, triggering a mass panic." tt0118928,jn2weAEOp4Q,"Harry and Rachel dodge people, cars and debris as the volcano destroys the town." tt0089560,DsYP0ql5mzM,Rocky tells his class the story of Troy and is rewarded by applause. tt0132477,IjMTiKtwyKk,Homer and the Rocket Boys win first place at the Indianapolis Science Fair. tt0117218,i9NIwHKBqy0,"Depressed about his weight while eating and watching TV, Klump dreams that he grows larger than buildings and terrorizes the city." tt0132477,ynGvGgy6K2Q,"With the whole town watching, the Rocket Boys have their first successful launch." tt0052357,d6HReoQl6Mo,Scottie takes Madeleine on a trip through her past. tt0446029,R-aJ-2y5ICo,Scott has an awkward moment with Knives. tt0101921,e62uLLsvUzI,Frank throws his pregnant wife Ruth down the stairs when Idgie helps her leave him. tt0450405,3rYbV-Q-VFo,Darren and Steve acquire tickets to the show. tt0101921,yedsblplSMg,Idgie and Ruth have a playful food fight in the kitchen. tt0450405,ypvrfx32T0s,Madame Truska falls into a trance and tells Darren of his prophecy. tt0450405,QFOHhusNwtw,Steve asks Larten and Gavner to make him a vampire. tt0076723,6oyxLFD2IIw,Braden takes a love not war approach to win things for The Chiefs in their final game. tt0076723,_XbL7lG0Su8,Lemieux gives Jim Carr a live televised lesson in some of the things one shouldn't do on the ice. tt0450405,LxnLNUq0abk,Larten and Murlough fight in a theater. tt0101921,ADMAw7UKLsg,"Evelyn's goes to marriage counseling and daydreams of wrapping herself in plastic wrap to ""spice things up"" for her husband, but even her daydreams are nightmares." tt0249462,jmgV3OFn0aE,Billy is pulled from the ballet class by his irate father. tt0249462,Q7wHV0r256A,Billy dances for the stone-faced admissions board of the Royal Ballet School. tt0249462,CH8HV5gXQB4,Billy launches into a spirited dance for his father. tt0249462,69RNNex-sig,"Under Mrs. Wilkinson's stern tutelage, Billy works on his pirouettes." tt0249462,i0p2X2rQ6Ag,"Trading his boots for ballet slippers, Billy joins Mrs. Wilkinson's class." tt0068699,VcV-ZLbd-pk,"After The Stranger is chosen to protect the town, he appoints little Mordecai as sheriff and mayor." tt0249462,TLZClsaDEw0,"Finally believing in his son's talent, Billy's father returns to work at the mine to help Billy realize his dream. Billy's brother however, is against his going back because of the strike." tt0119643,9EV3DKPo-4U,Parrish encourages his hesitant daughter Susan to be open to finding real love. tt0117218,BS8zi7Dg8TM,The Klump family eats a hearty dinner as they discuss weight and formerly overweight black celebrities. tt0076723,En1SvG9tOSg,"When Reg tries to whip The Chiefs up with a pep talk, the Hanson Brothers prove to be the ultimate Hype Men." tt0068699,2fc36Hc2n2s,The Stranger shoots down three henchman while getting an old-fashioned shave in a barber shop. tt0322259,tCb_6mO6CmE,"Brian edges the competition, accelerating over a raised bridge." tt0034240,5aBsRxccPJI,"Deciding that the best way to get out of jail is to get his picture in the paper, Sully confesses to his own murder." tt0034240,9ofxELr5sa4,"After embarking on his experiment as a hobo, Sully hitches a ride with a kid and together, they ditch his entourage." tt0076723,c7tvfdSjRE4,"Reg gets inside the opposing goalie's head, winning the game for The Chiefs, but getting beat up in the process." tt0204946,a0QpNMW2kws,Whitney and Courtney talk trash about Big Red while Torrance tries to defend her. Torrance is voted in as a captain of the Cheer Squad. tt0492492,2ah3GNQL6x4,"After John shares an embarrassing secret from his past, Amy comes clean about the incident with her dog." tt0034240,m0z6-iFR-S8,"After his experiment ends, Sully decides that he is too happy to make ""O Brother, Where Art Thou?"" and would rather make people laugh." tt0492492,6NRK8ai2U0Q,Amy and John have an awkward dinner with her family and her brother's dealer Randy. tt1112782,--RFXQ-Xlac,Gabriel is shocked when he discovers what is in the box he risked his life to steal. tt1112782,1g9QEQrHOMw,Gabriel eases his way through the security system while Keith guides him. tt1112782,D5Oc_sYmlt8,Tension mounts when Gabriel has to make his trade. tt1112782,hcqpyBBYg_4,Gabriel and Keith break into the first level of security. tt1112782,5gV4JcPhi9I,Gabriel double crosses Keith and reveals his true motivations. tt0079367,yJJA6WRpvlg,"Navin loses his virginity to Patty, discovering his ""special purpose"" that his family always told him about." tt1112782,h30PnSefeZA,Nicky shows the ace under his sleeve. tt1112782,APS_K6M4Qac,Gabriel sweeps Alex off her Chinese-food-hating feet. tt0492492,M94-kf_lXUA,"Amy professes her love for Ed, who claims to have figured out her dark secret." tt1112782,bd-fVqwNZaQ,Keith and Gabriel plan their heist. tt1112782,ClehpiAu764,Gabriel and Keith scope out the vault with the use of a secret camera and an i-phone. tt1112782,7tmC9Qq5RjA,Gabriel evades the police on the roof of a subway after robbing a Wall Street yuppie. tt0492492,zZGqwY_J8Vw,Amy makes out with her newly-single coworker Ed. tt0492492,kmYAgJwpE-k,Randy brings some casserole over for Amy after her mother's death. tt0120669,1RBwoUbvxx0,"Dr. Gonzo tries to get Duke to throw the tape recorder into the tub with him when ""White Rabbit"" peaks." tt0095631,mO5UNbKzcpQ,"When Jack lets Jonathan go, Jonathan gives Jack a very generous gift of nearly $300,000." tt0120669,GmXGVDnPU9o,Duke and Dr. Gonzo take ether and stumble their way into Circus Circus. tt0360717,IxnZIoP_5J0,"Ann is offered by the Natives as a human sacrifice to Kong, who makes a grand entrance." tt0021884,SoL6a37d1Rg,"After Dr. Frankenstein is found injured, the townspeople trap the Monster in a windmill inferno." tt0492492,8C9qRHJxOO0,"Amy and John make up, but he struggles to get a certain disturbing image out of his head." tt0492492,hFICuHeg-CQ,"Dougie spills the beans about Amy, causing their Dad to fly into a rage." tt0492492,cH3mtHI91Sk,"John asks Amy to tell him a secret, and she invents a story about sleeping with a female friend in college." tt0337721,lK93bvZ_fTQ,"Shepherd reads a poem for Charlie, who builds a stretcher to carry Kanaalaq across the snow." tt0492492,6f_Z5OBzY1k,"Distracted while at the dog park with her boyfriend John, Amy recalls a humiliating mistake from college." tt0337721,joTY2Wir1w0,"Charlie and Kanaalaq return to their wrecked plane, only to find no evidence of a search and rescue party." tt0492492,exVcH3m_G5c,John proposes to Amy via the newspaper and she happily agrees. tt0337721,YY5cUX_o770,Kanaalaq gives Charlie her boots and wishes him well on his journey. tt0337721,jfk6JSgLdQQ,"Charlie searches a wrecked plane for scraps, but Kanaalaq refuses to disrespect the dead." tt0337721,Ixj8eXcClLE,Kanaalaq nurses Charlie back to health and reveals that she knows a few words of English. tt0337721,TzHrqDQ1OJM,An ailing Kanaalaq teaches Charlie how to hunt caribou. tt0337721,vjeGS4bwPX0,"Kanaalaq teaches Charlie some words in Inuktitut, along with how to hunt and fish." tt1151359,JMIukdtLDt8,Ken arrives at the Kincaid residence in order to blackmail the brothers. tt1151359,nNLvDIcBtz8,Bill's negotiations with Buddy don't turn out well. tt0337721,_wD15vBDzgs,Mechanical problems force Charlie to crash land his plane in the remote Northwest Territories. tt0337721,54LTsr8IAU4,Charlie refuses to take the ailing Kanaalaq to a hospital until he's bribed with ivory. tt1151359,sfzVAilcMAM,Accidents happen when Ken doesn't go through with his blackmail plan. tt1151359,Mb-3XGFTpLQ,Brady's crime is discovered by his family. tt1151359,A2Eu5xmslWI,Brady and Bolger try negotiating with Pug. tt1151359,4WuZapvSL0E,Anne attempts to seduce Bill. tt0079367,O7why8Xo_RQ,Navin gets the shock of his life on his birthday when he learns that he will always be white and that he wasn't born into his family. tt0095631,HUmelrncGRc,"Jack, Jonathan and Marvin get chased by gunmen in a helicopter while driving." tt1151359,3hwRv9BXdOw,Bill visits his mother Daisy for the first time in years. tt1151359,6q5a0W2pxS8,Brady shows his brother Bill his impressive green house. tt0120601,9V_bukpqoPY,John Malkovich finds Craig and Maxine running J.M. Inc. and demands to be allowed inside the portal. tt1151359,Lyyc9S3iufk,Bill wakes up to find his presumed deceased brother Brady alive and well. tt1151359,PTENrQnBtXc,Bill meets an orthodontist on the plane back home. tt0849470,XVINVuRkUFg,"Lionel corners former classmate Principal Dickwalder, who doesn't respond kindly to his threats." tt0884224,DbqqjC92PP4,"Walken attempts to fight Hauser, leading them to interrupt the wedding." tt0884224,Fi51abVO4ac,Hauser and Walken exchange threats before a revelation of Hauser's family is discovered. tt0849470,CaHL7bVTtQQ,"While trying to track down the party, Principal Dickwalder runs into some scary mafia guys." tt0884224,8S62emxyIEA,"Marsha gives the media a progress report while the rest of the journalists observe the battle viewer, which keeps reporters safe and offers the corporation complete control on what they see." tt0849470,xEU2YTN-svo,Principal Dickwalder turns to drugs when Ms. Minn tells him that his favorite student is hosting the party. tt0849470,HKpWEkSUs9U,"When Cathleen and Ellen come home unexpectedly, Adam takes the opportunity to apologize to Cara." tt0849470,BFeuE0wAHnI,Principal Dickwalder makes another house visit and takes a beating from dancer Uncle Todd. tt0104377,e0WpcoS_fU8,A evangelical sermon is led by Preacher Hank Fulton complete with serpents and all. tt0849470,pieqR7-byq0,"Ellen comes home while Adam is preparing the party, but she's surprisingly proud of his initiative." tt0849470,ByExQg6WGeE,"Principal Dickwalder announces that the Senior Skip Day party has been cancelled, thanks to Adam." tt0884224,mZ-yMd-bmCY,Hauser rescues Natalie from terrorists. tt0849470,0IL5GIcAS70,Adam saves Senior Skip Day by telling Principal Dickwalder about the untimely death of a student. tt0884224,hrVLeHMpsDY,Walken gets hostile when Hauser decides to leave the life of political espionage and assassination. tt0884224,Zvbwq_7AeU0,"When a group of thugs break up an interview of Yonica, Hauser cleans house, exposing his trained talents in assassination." tt0101921,BAXWxuKhcTc,Idgie yells at the defense attorney and Ruth defends her best friend Idgie's reputation on the stand. tt0884224,OPC2Ahuklt8,Yonica confides in Hauser before her fiance bursts in. tt0362590,L897JSOP21U,"David notifies his sleazy friend, Jack, that he got fired from his job." tt0362590,p1YmfANJdDA,David tells Whisper the story of his past and how he got where he is now. tt0849470,EC3EYlsUiAo,Cathleen and Ellen encourage Adam to attend Senior Skip Day. tt0884224,bmgWabhgTyI,Hauser meets with The Viceroy at a discrete hidden location under a Popeye's Chicken Restaurant. tt0884224,j6IS8ftaiKg,Yonica attempts to win the affection of Hauser after he throws up at her rehearsal. tt0362590,EXmDxa_WlbU,"The partners turn on one another; David kills Jack and shortly after, Wendy kills David." tt0362590,vU5Weh2-5Ow,"Two days after the bank robbery, it is revealed that David, Jack, Wendy, and Eric were in fact the robbers." tt0884224,sF6TDdShI-U,Hauser enters an Eastern Arctic pub and assassinates Germans after downing a shot of hot sauce. tt0362590,v9vgJaU3g1Q,The bank is robbed on David's last day. tt0362590,_x4ZoZAzlL4,David gets back at his boss by urinating on his painting and threatening his life. tt0362590,drdEb-EYhHU,"Distraught about his split with Sara, David confides in the prostitute Jack sent him, Whisper." tt1186367,jYLZsEioFig,"When Masazuka destroys the antidote to the poison given to Namiko, Casey channels his anger to defeat his enemy." tt1186367,pGeODfpFpUQ,Casey single-handedly takes on a team of trained killers on their own turf. tt0362590,n9r_Sd0cy6Y,"After being fired, dumped, and having his car stolen, David snaps on his last day on the job." tt1186367,E7kK38uDEeo,Casey follows Masazuka to the roof but he is unable to rescue Namiko. tt0362590,Gh3l6sVwMlI,"David goes in for his review hoping for benefits and a bonus, but gets fired by Mr. Gartin instead." tt1186367,EW4_qWWvxfg,Casey and Namiko fend off a vicious gang of thugs in a subway car. tt0362590,3eGHDodwIZI,David meets Sara and her parents for dinner and is ambushed with a break-up. tt1186367,cKFA0tZIc5w,Masazuka infiltrates the police station to kidnap Namiko. tt1186367,u82elZ1sGVk,Casey and Namiko are ambushed by a gang of thugs searching for the Yoroi Bitsu. tt0298203,KQOWuUy-7qE,"On his lunch break, Rabbit takes a rapping co-worker down a notch." tt0298203,uMb3tldMyn0,"While B-Rabbit's friends burn down an abandoned house, Alex shares her belief in him." tt0298203,DHMF-bVxlkc,"B-Rabbit gets in his first rap battle, and chokes big time. He gets booed off the stage." tt0118928,8bQQIy5TKZE,Harry and Rachel are terrified when they find out her kids have gone up the mountain to get their grandma. tt1186367,tRT1ASnVfmo,Casey and Namiko find themselves surrounded by deadly enemies on the streets of New York. tt0101921,AWMxhZbiXLc,"When Klan member Frank wants to see his child, he gets stopped by Ruth and scorned by Sipsey and ol' Smokey Lonesome." tt0101921,4LaL9XB_Cx4,"On Ruth's birthday, she unwinds with some booze and a game of baseball." tt0339727,w9pEL5BVnH0,Mrs. Hengen lectures Mark on his destructive relationship with Dori. tt0339727,3RWATaK6rC8,"Overcome with her schizophrenia, Dori writes a break-up letter to Mark." tt1186367,OwBlTJrvL8Y,Masazuka returns to exact revenge upon Sensei for expelling him from the dojo. tt1186367,Sn25NmBKxSU,"When Masazuka loses his temper during a fight with Casey, Sensei banishes him from the dojo." tt0104377,s-DcMXlInkU,"Howard takes some target practice in a junkyard, as Anita undoes her top." tt0104377,X9f_YUaQGWw,"Howard shows off his skill with a pistol to Anita, but fails at pleasing her with his love gun." tt0339727,uwstRxD2BkA,Dori sings a song for Mark. tt1186367,mQ13lRBge64,"Sensei explains the history of the Yoroi Bitsu, an armored chest containing the weapons of the last Koga Ninja." tt0339727,pDv-C_TpyG0,Mark makes a surprised visit to Dori. tt0339727,idr40IexHQw,Mark brings Dori to his home. tt0104377,_OabFZytcp8,"Anita is raped by her mother's boyfriend Rooney, then gets her revenge with a gun." tt0339727,V5B75zKswc8,Mark and Dori go on their first date. tt0104377,vgEI-Zu4GQE,"When Howard is pursued by a cop, Anita makes sure the cop will never pursue anyone again by shooting him in the head." tt0104377,3fLWNvP8V98,"Howard and Anita agree to share their darkest secrets with each other. For him, it's being a virgin. For her, it's killing her mom's boyfriend." tt0339727,KcG5AQMRFVU,"On the eve of graduation, Staff Sergeant Skeer offers a brief sentimental moment with his Platoon." tt0460732,Z41Lvaw_W6E,"Rachel tells the staff that she got the new job, and Dylan encourages her to forgive Charlie." tt0460732,MOJFi9-64Qw,"Mike admits to Danny that the gun incident caused him to soil himself, and then he runs into his ex-girlfriend, Laura." tt0339727,ILwsJ3_o4es,"Mark gets special treatment"" when Staff Sergeant Skeer finds out he joined to avoid a prison sentence." tt0339727,s4iqKjufJe4,Mrs. Dubois and Mr. Deloach confront their children after an accident. tt0101921,4lzhxfuOW-A,"Buddy Threadgoode bonds with the young Ruth and his little sister Idgie Threadgoode. However, when his foot gets caught in the train tracks, he has little time to escape." tt0068699,AjeO7aL1efU,The Stranger leads the unskilled townspeople in some moving target practice. tt0204946,fWLdsqhYVxM,Torrance dreams of being chosen as Cheer Captain during a big opening Toros cheer number. tt0097366,mVbGpzsuNjE,Fletch makes a fool of Jimmy Lee Farnsworth by reading him the wrong notes. tt0118928,n_c7JtDNNUo,Paul decides to get outta town when the volcano starts massive mudslides and flooding. tt0104377,n57MunvVpIU,Howard sacrifices himself in a shootout with the cops to save Anita from harm. tt0104377,lfrEnzxJFps,"As the police siege the house, Anita and Howard blow some cops away." tt0460732,hXCnYkU0Xy8,Dylan swings into action when Lucy fires a shotgun in the cafe. tt0460732,09iu9EiAtKA,Charlie returns to the kitchen as Dylan lashes out at an irate customer. tt0339727,qgE9Lbwyzc0,"Mark is framed with ""dirty letters"" at his Catholic High School." tt0460732,2cSY9R-ka5o,Mike tries to approach Gloria but Lucy accuses him of being a pervert. tt0460732,d2vcACp2hNw,"Vanessa reluctantly tells Rachel about Lucy, then finds Mike and Danny smoking pot in the men's room." tt0460732,a4-FtMD0_sk,Angela is disgusted to learn that her fiance David dresses up in her underwear. tt0388182,Q7w2V95g5ew,Charlie recalls an absurdist story of naked Chinese men washing up along the shores of Southern California. tt0388182,A0FU6cYM9Vc,"Despite Miranda's insistence that Charlie is having a delusion, he goes ahead and jumps into a river of raw sewage." tt0460732,bOPnZZMObXU,"Mark discovers that Gloria was a porn actress, and his tirade gets him thrown out by Vanessa and Dylan." tt0460732,3nRy9hw7tr0,Danny tries to convince Mike that fellow customer Gloria is a porn star. tt0388182,5DefW3MeD_c,"Working at McDonald's, Miranda takes the order of a young female customer and picks-up her Dad from the hospital." tt0460732,n_6sNnucN9k,Vanessa criticizes the lasagna made by Tom while Dylan suggests getting their old chef back. tt0405163,zP0dxHW41kg,"Andy works up the courage to ask his star a favor or two, which ultimately ends up very much in his favor." tt0405163,Rr_zj8D511s,"When accusations of being gay overwhelm Moose, he decides to fill the role of V's partner for the porn." tt0388182,-fJwmmnPHok,Miranda opens the refrigerator left by her dad Charlie to discover the lost gold. tt0388182,1eH4YUzgfN4,"Miranda is surprised to learn from Charlie the meaning of the word ""swinger"" and realizes that her boss is a ""swinger.""" tt0448564,qSU0iCmocCE,Sophie frantically tries to connect the dots of the odd occurrences to Craig. tt0388182,VIp_DOwafcg,"At the barbeque hosted by swingers, Miranda navigates the terrain of avoiding having to get into a bikini by fake vomiting." tt0097366,38PbAk_SMdo,"When a police office catches Fletch at a crime scene, Fletch poses as an exterminator and talks his way out." tt0097366,hsBtuhWw7RM,Fletch's fantasy about his life as a Southern plantation owner leads into a musical number complete with animated animals. tt0329575,CqgXhXx-EAk,Tick Tock McGlaughlin predicts Seabiscuit's first race at Santa Anita to be an utter failure. tt0338013,sYEGcfDCysI,"Hoping to make up with Joel, Mary walks in on him listening to his tape and they are confronted by his ugliest vision of her." tt0097366,k1z5PejkIyY,"When the Ku Klux Klan comes to drive him out, Fletch and Calculus play a trick, sending them fleeing." tt0329575,AOiL4JRqh7c,Red learns to enjoy his winning streak with Seabiscuit. tt0388182,ct9y-srjYjk,"When Charlie sells his bass to help Miranda, she encourages him not to give up his dream of finding the lost gold." tt0800241,AdiEXXKIcpM,"Jessie admits to Grinko that she killed Carlos, just as their train collides with another train." tt0388182,muBDF7g_mXY,"To the incredulity of Miranda, Charlie discovers the location of the gold is buried six feet under the ground at a Costco store." tt0800241,9Xy3PgufXHI,"Roy and Jessie escape via train, with Grinko and Kolzak in pursuit." tt0800241,IHDv7SriHB4,"Jessie and Carlos kiss, but when she tries to stop he chases her and she beats him to death." tt0388182,Q3QqG1UavAU,"Stopped by Officer Contreras while looking for buried treasure on a private golf course, Charlie makes the most of the opportunity to deliver a pick-up line and get a date." tt0800241,gL7zD3RjgTg,Kolzak tortures Abby to make Jessie tell Grinko about Carlos. tt0448564,S63g8N9Wb5c,"Away from the party, Mara expresses a deep interest in Sophie and divulges her own past." tt0800241,jmCn-jfg8Jk,Roy and Jessie discover the train empty except for Grinko and Kolzak. tt0448564,-a0vqBmrAh0,"Sophie tells Craig about Mara wearing her missing dress, which leads to the revelation that Mara had been to their house before." tt0800241,Oa1LpwUBNAA,"Roy assures Jessie that confessing was the right thing, and Jessie discovers the train is suddenly a lot shorter." tt0448564,tdmGoIYtHzg,"Mara cuts out the photographs of Sophie's children to replace them with her own; a flashback reveals that it was Kate who was Sophie's daughter, not Mara." tt0800241,Aow66vqHkmU,Jessie and Roy come clean to Grinko about the heroin Carlos planted in her bag. tt0800241,arbY3Yvs_Sc,"Jessie tries to dispose of the Russian nesting dolls Carlos hid in her luggage, but Grinko keeps a constant watch on her." tt0448564,LNIKYmO7noI,"Sophie visits Mara in the hospital, where she apologizes for being absent in Mara's life." tt0448564,DGhV02r8Vq4,"Sophie attempts to calm Mara down, but Mara is ruthless in her attempts to harm Sophie." tt0448564,l_nlMehIAqk,"While locked in Mara's basement, Sophie makes a life-changing discovery; meanwhile, Mara seduces Craig at the office." tt0448564,MFx343hujgA,Sophie flees to the basement when she sets off the alarm at Mara's house. tt0800241,PBXIOvTSzao,"At the train station in Irkutsk, Roy opens up to Carlos about his marital difficulties." tt0800241,CUJJdnMG7VU,Roy and Jessie befriend Abby and Carlos on the train to Moscow. tt0338013,dpAoVOU-q60,"Reliving the day they first met, and knowing that it will soon be gone, Joel and Clem decide all they can do is enjoy it." tt0329575,N1xvQ7iLD0I,The narrator reviews Seabiscuit's troubled journey before he meets Tom. tt0338013,v9kQdDFUWuk,"While revealing her love for Howard, Mary recites the ""Eternal Sunshine..."" quote by Alexander Pope." tt0338013,3lX50Lh2Iec,"While chasing Clem through his disappearing dream, Joel starts hearing the technicians talking about them." tt0330181,ClBUr1FFo4U,"John murders a kid selling a used car, and then sells the car himself." tt0448564,5F8dAQs8Vo4,Sophie is swarmed by wasps she finds in the ceramic owl Craig gave her. tt1020543,a_OuIUbxu6U,Cooper destroys the Bug hive and the Queen Bug using his father's C4. tt1020543,y6daxZDW37Y,"Ethan holds off the Queen bug, allowing Cooper and Sara to escape." tt0330181,CnT7g2Dit2A,The scenario of Gacy's ultimate apprehension plays out when a bookie comes to collect his debts while Gacy is in the middle of a murder and the police are scoping the residents out. tt0330181,fD1FCHmu2as,"As detectives discover the horrifying truth hidden under Gacy's house, flashbacks play out of his macabre murders." tt0448564,AQnQ6irZyFk,"Sophie tries to convince Craig of her suspicions concerning Mara, but he becomes angry and tries to convince her to leave the matter alone." tt0330181,NAymJ-WVGOI,John hears voices in his head of past victims. tt0330181,ptj6u-cdPEM,"When detectives can't get a warrent into John's house, they let him know their presence by camping out." tt0330181,so4D0cpOaUs,John shows Tom some of his home movies. tt1020543,f7oHNrQzfis,"When Cindy loses her wits, she lures the giant bugs to the rest of the survivors; in the chaos, Sara is taken by the foul creatures." tt0473464,EmRlXmyl54I,Detective Griffin threatens to implicate Jordan in the murder if he doesn't come up with one million dollars. tt1020543,gs_g4ai4m3Q,"Al suddenly mutates into a bug hybrid, scaring the bejeezus out of Cooper and the gang." tt0330181,tTtKhD_s3mA,"John shows his new tenant, Tom his room before eventually confronting Tom's girlfriend." tt0330181,yjFU7KJH8AY,John picks a gay trick. tt0473464,rGw2mX72ytQ,Jordan considers a new life with the money he stole from Shay. tt1020543,Fjb55wq2xuI,Cooper makes a sincere connection with Sara when he reveals that he has also lost a loved one. tt1020543,iNqWC_4LooU,Sara dissects every aspect of Cooper's upbringing as she shuts down his attempt to hit on her. tt0330181,LlUWLkrBL_Y,Kara confronts John concerning his homosexual porn stash. tt0362506,EFmvTRmRtms,"Chrystal asks Joe to relieve her pain, which he does while continuing to share his feelings about their future." tt0036775,SojaL9M5Pqs,Keyes stops by Walter's apartment to tell him his theory about the murder and almost sees Phyllis hiding in the shadows. tt0036775,-r_jjQ_idz8,"Walter tries to convince Keyes to not call the cops and let him escape, but he doesn't have the strength to get out the door." tt0096734,KPpwiCStA54,"As the media descends on the neighborhood, Ray and his wife decide to take a vacation." tt0329575,4Os7yk5rXtY,"Seabiscuit and Red take their final, victorious race around the track." tt1020543,Pn4mA5BIzxg,The gang's attempt to make a run for the north is thwarted when the bugs show up and wreak major insect havoc to the max. tt0473464,8KjvR8FpYaQ,Jordan gets grilled by Detective Griffin about Shay's disappearance. tt0362506,h75sq4lELLU,"Having been in prison for the last 20 years, Joe asks Chrystal where their relationship stands." tt0473464,tUmKlW2VmKo,Jordan meets Shay in the library and they make an immediate connection. tt0473464,WUJNkDE4d98,Jordan photographs a confrontation between Shay and Wade that turns deadly. tt0362506,mpMweFgS2cg,"The cops come to arrest Joe, who sacrifices himself for Chrystal's eventual happiness." tt0323939,L5-JXPcM3RQ,"Dean catches up with his old flame, Eve, and confides in her that he's considering retiring from card-playing." tt1501652,IFbKYqUofRs,Dylan runs through the stages of grief at the empty memorial service of a stranger. tt0242508,8CsWUwcJgHA,"Trapped in a car, Teddy and Kelly interrogate Alan who is clearly tripping on LSD and having strong hallucinations." tt0099088,tu-cxDG2mW8,"When Marty's return to the present lands him on the train tracks, the time machine is destroyed." tt0105435,pm7LihLP7kQ,Bishop impersonates a private investigator in order to trick Elena while getting radio feed from the group. tt0089560,kearXmroxUM,"Rusty brings Lorrie, a prostitute, home to sleep with Rocky." tt0087262,p1lnXM7l2_g,Charlie gets mad at her mother Vicky and accidentally sets her hands on fire. tt0105435,F5bAa6gFvLs,The room heats up when the team tests the black box and discovers its powerful potential. tt0105435,3obteqT0VJU,Bishop gets paid to rob banks in order to increase their security measures. tt0105435,oG5vsPJ5Tos,"Donald gives Bishop tips via radio to get through the secure door, but instead of a code, Bishop kicks the door in." tt0099088,0c-UIkfsk1U,"When Marty stops Mad Dog from shooting Emmett, Mad Dog sets the stage for a showdown." tt0088128,eq5NSAyQEtI,"Sam's sister, Ginny, is on too many painkillers at her own wedding and barely makes it to the altar." tt0087262,dCRen85hQ7Q,Andy dreams of the experiment where he first met Vicky and gained his powers. tt0099088,yo7C-Sp_-MI,Marty shows off his impressive shooting skills to a pushy gun salesman. tt0099088,wEByIZn5qeU,"When Marty accidentally calls Tannen ""Mad Dog"", Mad Dog makes him dance." tt0099088,63KOboifCig,Marty travels back to 1885 and finds himself in the middle of a tribe of Indians on the warpath. tt0087262,hPmV9DBCrfQ,"When she witnesses an arrogant young soldier blowing off his pregnant girlfriend, Charlie sets his feet on fire." tt0088128,Uv4YAx1nqDM,Sam and the Geek have a frank conversation and the Geek tries to kiss her. tt0088128,Fjh3TxOHCxE,The Baker Family finds Long Duk Dong passed out on their lawn and learn that he crashed Grandpa's car in the lake. tt0088128,ACiCfGoVIJA,The Geek holds court in the boy's bathroom where he displays Sam's underwear. tt0088128,FWvAYNw8r9o,The Geek ambushes Sam and tries to dance with her. tt0088128,JyJBz7Z2EWE,Long Duk Dong eats dinner with the Bakers and Grandma forces Sam to take him to the dance. tt0088128,EhAiY3hTPpo,"After Sam's Grandma feels her up, Sam is surprised in her bedroom by Long Duk Dong." tt0113360,K_LGi3aiF7E,Paul creates a distraction so he can escape a ninja assassin. tt0113360,W3IgFbCSqSs,"Takeda duels with a man he believes to be his nemesis, Kinjo." tt0104070,sOA84te9mAw,"With newfound looks and confidence, Helen seduces her ex, Ernest." tt0088846,3ZPlgOWbkcY,Sam tries to save his dreamgirl Jill from the Ministry of Information. tt0056592,ojydQ3_FDqI,Jem is terrified when Bob Ewell sneaks up to their car while Atticus speaks with Tom's family inside. tt0023969,fHmesxUDVz4,Rufus T. Firefly springs a sudden proposal of marriage to a nervous Mrs. Teasdale. tt0128853,EVlaur-kEds,Joe Fox contemplates the future he could have had with Kathleen Kelly if they weren't at odds over their rival businesses. tt0128853,3TA-GALQJfM,"Kathleen tells Joe that the man she's been emailing is caring and sensitive, and that Joe is a soulless businessman." tt0322589,tjsQP94DIfM,"While at the barbershop, Honey gets asked out by Chaz." tt0396269,sdtIgE33BvQ,"During the Cleary family football game, John flirts with Claire while Jeremy gets sacked." tt0396269,1KbamNWEfdw,"Mr. Cleary reminds Jeremy that he is a very powerful man, and his daughter isn't just another notch on the belt." tt0034240,02A2a-aEvmI,"Dressed as a hobo, Sully is shown compassion by a beautiful, but disillusioned young woman (Veronica Lake." tt0817230,mX5Vqy1ETgM,Grace opens up to Estelle and Edgar a little more so than they had bargained for. tt1302067,8qohrMCMzLc,Yogi and Boo-Boo build the perfect contraption for snatching picnic baskets. tt0446029,qSE4dF_Feng,Ramona warns Scott about the perils of dating her. tt1037705,t4zyH4BsmgQ,"When Carnegie's crew trap Eli and Solara, George provides weapons to fight back." tt0128853,8yX0E-XQcms,Kathleen is proud of herself for finally speaking her mind. tt0128853,yRPwDJWhqis,Kathleen and Joe try to guess the meaning behind the screen name that her love interest uses online. tt0128853,2cjvwTzhG8g,Kathleen finds out that the man she fell in love with online has been Joe Fox all along. tt1130080,J0WkBVu2C38,"Over Chinese, Mark reveals he's been receiving cash kickbacks from ADM." tt0396269,YnpzAImvPsc,John interrupts Jeremy's wedding with a confession and an apology to Claire. tt0167260,GhF060VmS1g,"Gollum talks to himself in a pond, plotting to reclaim the ring from Frodo." tt0396269,Amd3bMqEdjs,John and Jeremy fight over the rules of wedding crashing when John tries to get some overtime. tt0396269,3kaShGPva2Q,"When Janice offers to set Jeremy up on a date, he proceeds to say no by listing all possible perils of dating." tt1020543,Bu3n2LEcUbg,The survivors visit what's left of Cindy's family and encounter a freakish human-bug hybrid. tt0473464,b3DNx3kLY58,"When Detective Griffin tries to double-cross Jordan, Shay shows up to save him." tt0473464,v8YgSZAbKgQ,"Shay takes Jordan to the money, but he has second thoughts about their plan." tt0330181,ccNvps_rac8,John slams a hammer into Dave's skull after hearing the voice of his dead father. tt0473464,HJhNgjVydac,Jordan photographs Shay as she plays the cello. tt0473464,yyYfKxW1T8Q,Jordan learns that Shay knows about the photography scandal that got him kicked out of his last school. tt0362506,Wc2CaWm1Gno,Joe recounts to Chrystal how he saw their late son in the woods. tt1020543,8nHwpjCIJqM,Cooper awakens from his cocoon and suddenly finds himself in a struggle with an enormous and ugly beetle. tt0362506,kt5pjPdRDVU,"Having run Crystal off the road to a dead end, Snake instructs his crew to gang-rape her." tt0362506,F9ktw07IEr0,"Charlie reveals his romantic intentions to Chrystal, but she tells him she's still holding out for Joe." tt0362506,SL40LOsREzE,Joe saves the day by shooting Ned and Snake from a hiding place in the trees. tt0923671,yAbQlHZz4tU,Tension mounts at the radio station when Nina discovers a bloody tissue. tt0362506,KMUDG7AOw1w,"Told by a psychic that her deceased baby is figuratively stuck in her neck and therefore causing her neck pain, Chrystal begs Joe to cut it out." tt0280609,CoHgpkuV1hU,Cooper defeats Ryan in werewolf form with a little help from Sam the Dog. tt0280438,EEGg9AZmHZ4,Francis confronts Callie when she spreads rumors thats Francis' dead brother has been walking around the neighborhood. tt0280609,P5ooU8rf1f0,Wells forces Cooper into the cellar just as he begins to transform into a werewolf. tt0362506,oEOsbgXpiNg,Snake and Larry try to recruit Joe to join in on their pot-growing partnership. tt0230169,-nXBi-mtvR8,Ed shoots and abducts Mary Hogan in her bar. tt0280609,bw0-q-wjSIM,Megan admits to betraying the men and transforms into a werewolf. tt0230169,_SVlezvh3zk,Ed dances in the moonlight wearing the skin of dead women after Collette turns him down for a date. tt0280609,UaqCBqd8NcA,"Confessing that the others were bait, Ryan transforms into a werewolf and escapes." tt0230169,EVdo5BfJMCQ,Brian threatens to kill Ed in cold blood before the Sheriff intervenes for the arrest. tt0230169,JhtaGVmtcwU,Ed loads a display rifle and murders Collette in her store. tt0280609,qemi7V4jUjk,"Spoon creates a distraction as Joe hotwires a Land Rover, but a werewolf awaits him in the back seat." tt0802948,MYpqwTSpp_E,The jury renders its decision on Gertrude's fate for the torture and death of Sylvia Likens. tt0362506,fuJceBJIp8k,"Joe settles some unfinished business with Snake by slapping him silly in a ""redneck fight club"" gathering." tt0230169,5GlQJ1kKxMA,Ed fantasizes about having dinner with Mary. tt0230169,_Gm42rDEb38,Ed explodes on his brother when they are talking about their mother. tt0230169,AZ_MUktgWxg,Jim pays a visit to Ed's house after Mary's abduction. tt0280609,Wjm3qeQvGxs,"When the werewolves cut the power, the soldiers defend the house with every weapon at their disposal." tt0280609,Z0092DSphF0,"Cooper and Spoon return to the truck, only to find that the werewolves have made it inoperable." tt0802948,Yhiy0ZHMyik,Paula helps Sylvia escape under the cover of darkness. tt0802948,iJsNpzHlrgs,"Unable to handle her eldest daughter walking out on her, Gertrude takes out her inner misery onto Sylvia in a most brutal and inhumane manner." tt0230169,cqeUgjPpCCM,Ed gives Virginia the full tour of the first floor of his home. tt0280609,-oWSoBQzQNA,"On the run from a pack of werewolves, the soldiers are rescued by Megan in her truck." tt0802948,Htt0B7bZ4tI,A guilt-stricken Gertrude confides in Sylvia the hardships that she has gone through in raising her family. tt0230169,BlG0jGX34i8,Ed's terrible secret is discovered when the boys he is babysitting find his room. tt0280609,QMDO-3fqU0c,"While retreating from unseen forces, Bruce gets impaled on a tree branch." tt0280438,uHEG_fTDZss,Uncle Handy sees Sean for the first time since his supposed death three years earlier. tt0280438,c8pZIocR-lQ,Moran and his men confront Francis at his bar where a shootout ensues. tt0802948,zlRuCc0kYQ0,The Baniszewski children and their friends testify to their willful ignorance in the abuse and torture of Sylvia. tt0280438,n3TNGpjl-kM,Jimmy Burke and Red Kelly chase the Sullivan's when they pot them in Brooklyn. tt0280609,32me3lMxEDU,A couple meets a grisly end while camping in the Scottish Highlands. tt0323939,Vy4OBSqz5dw,Charlie and Vernon invite Larry in to be their third partner. tt0323939,60Sc8RmA458,"Vernon visits his old mentor, The Professor"" at The Magic Castle, where he is reminded of what really matters." tt0802948,wY6sZJKyxo8,Sylvia is violated as she endures more savage abuse at the hands of Gertrude. tt0802948,eu2OiA65JOA,"Suspicious of Sylvia's whereabouts and actions, Gertrude resorts to cruel and ruthless punishment in order to make an example of her." tt0280438,cP95rCyLijI,Francis confronts Grace after she discovers the truth about her husband and his brother. tt0323939,JpYjN3cZR3U,"With everyone in a stand-off, The Dean and Vernon reveal their final hand." tt0280438,dKMVUS6TC2A,Father Manhoney tells the truth about Sean to Grace. tt0323939,lIOwxzY4M6s,"Using his juice-tagged cards to see through them, The Dean shoves all in; Vernon's accomplices pitch in so he can match The Dean's bet." tt0280438,_5UWCkgkSzA,Francis scolds Sean when he discovers his brother snuck out the night before. tt0802948,wrAksGY1TSk,Gertrude forces Paula to punish Sylvia for the supposed lies and rumors that she has been spreading. tt0280438,3VgqDRrUIOo,Moran questions Francis about the rumors surrounding his deceased brother. tt0323939,d_8TCN2wA7s,Charlie tells the team an anecdote about the legendary Dean Stevens to demonstrate what they're up against. tt0323939,2XgWUoUe_lw,Marlo warns Charlie that the money he hustled from Jennings belonged to mobster Malini; Charlie thinks he's settled the issue until the situation escalates to a shoot-out. tt0488085,mlpWVL2gHG4,"Agent Hymes shoots Gus, but his escape is cut short by Josie." tt0802948,Ny1Q4bR5dMc,Sylvia and her sister Jennie are punished by Gertrude out of no fault of their own when their parents' boarding payment doesn't arrive on time. tt0488085,DfDQo7Gm8CI,"Agent Hymes accuses Josie of being a serial killer, The Wyoming Widow." tt0488085,f-ZCZ5BNloQ,Agent Hymes examines the body and determines her to be another victim of the Oregon Undertaker. tt0923671,kMjUZodyvtA,Sarah ignites the bunker after zombie Bud attempts to aid his human friends. tt0323939,c0pmWNOt3fM,"Eager and overconfident, Jennings bets all his cash, and ends up losing it all to Leipzig." tt0488085,-aH-cLQqwHQ,"Gus fills Josie in on what happened, and Josie finds a bag full of cash." tt0488085,-W2T5Gm7i74,"Penelope arrives at the crime scene, unaware that Charlie is hiding the body of her deputy in his trunk." tt0488085,ZhzpLQbMNjQ,"Mrs. Smalls pulls a gun on Gus and Charlie, unaware that Josie is waiting outside." tt0488085,1_NERqSdt9U,Charlie arrives for his first day on the job at a call center and quickly befriends Gus. tt0923671,YBEUHTsxyXs,"The survivors are led into a military bunker, where they plan to escape trough a missile silo... but not without splitting up first." tt0488085,PnjqfWEL6bc,Charlie learns from Gus that the priest who he just dumped in a septic tank was not deceased. tt0488085,fr_9D8OREfk,Charlie asks Penelope what she would do if he turned to a life of crime. tt0488085,LVt7Zvxk934,Charlie gets fired on his first day at the call center when he accidentally tells off a caller like his coworker Gus. tt0923671,YH7W2AR9b8w,The survivors discover that the infection retain aspects of their previous lives through Bud's behavior before being overrun by military zombies. tt0284929,XtadtlSUNQg,"Ted lures in a woman under the pretense that he is a police officer, only to have her escape moments later." tt0923671,FhAIXOkAUhY,"The survivors of the hospital massacre escape through its parking lot while disposing various zombies, including the jumping variety." tt0284929,cvvweP3N_f4,Ted makes up the decapitated head of one of his victims before Lee comes over. tt0349889,OhYlQ6kSQFs,"Agent Junod tries to convince a confused, hallucinating Dean that they are on the same side; Amy cuts in and demands answers." tt0923671,2x5L2L4XZng,Captain Rhodes [not to be confused with the character of the same name in George Romero's Day of the Dead] chases the survivors through a ventilation shaft of the hospital. tt0923671,PcRJie18fYs,Bud is bitten by the zombie Captain Rhodes. tt0923671,k5kTx_bZznU,Rabid zombies take control of the hospital. tt1187064,OH_cAf9RFSU,Jess makes a horrifying discovery while trying to start a new life with Tommy. tt0923671,y69ebASPg8A,Patients begin turning into zombies at the hospital. tt0923671,ekOi-hwWNoM,"Sarah brings her mother to the hospital, only to find it completely overrun with sick people." tt1187064,H7H1eydzTCY,"Greg realizes that the masked assailant is Jess, and she tries to explain why she has to kill him." tt1187064,1-G0Fxf9IYU,"Jess returns home to find an alternate, abusive version of herself, and sets out to destroy her." tt1187064,M_beJ-qJlQo,Sally tries to defend herself from Jess by crawling over countless dead versions of herself. tt1187064,iyPGMUFQiW0,Downey and Sally fall victim to a deadly alternate version of Jess. tt1187064,GK7IQ-raJOc,Jess tries to convince Victor that there are two versions of everyone on the boat. tt1187064,w-4XyyU2w9g,Jess fails to determine the identity of her masked assailant. tt1187064,Wa6au8A-3Zg,Greg orders everyone below deck when a freak electrical storm threatens to capsize the boat. tt1187064,G_0o3NoEXJQ,Jess finds Victor bleeding and ready to kill her. tt1187064,EN8q8mJrAZY,"Accused of shooting Greg, Jess declares her innocence until a masked sniper opens fire." tt0491152,ndrLDbtM-CY,Ethan takes matters into his own hands when he threatens to out Rachel's secret. tt0491152,umOy9nT4Wpw,"Ethan urges Rachel to put herself first, but she pushes him away." tt0491152,dM6waznJ7No,Darcy and Rachel share a sisterhood moment by dancing their sixth grade talent show routine. tt0491152,GhaxB8afkj0,"Rachel announces that she's been called into work, so Dex offers to give her a ride." tt0491152,6svLqrJqoWk,"Darcy opens up to Rachel, which prompts Rachel to tell her something she's been keeping from her." tt0491152,ihyRhFcUVto,"When Dex shows up at Rachel's apartment in the middle of the night, she lies and tells Darcy that it's Ethan." tt0491152,fuOY4W9QFNI,Darcy crashes Rachel and Dex's one-on-one time and starts to flirt with Dex. tt0071230,DNC3OciAF3w,"In the town meeting, Gabby Johnson gives an unintelligible pep talk." tt0491152,wp4tgWYqjyw,Rachel sadly looks on as Dex and Darcy canoodle across the room; Ethan comments on Claire's blatant attempts to get his attention. tt0071230,t9P2B7NUPfM,Infamous thug Mongo makes a big impression when he comes into town. tt0071230,NzbhbetwYFU,Hedley Lamarr manipulates the idiot governor. tt0071230,4w36z7XnwOM,Bart finds himself stuck in quicksand and gets no help from the bigoted Taggart. tt0071230,s9JqbCH4aVw,Bart is seduced by Lili von Shtupp and she falls head over heels for him. tt0263101,OwB1Fd-IeS4,Kong takes on the mob in a shootout at the water bottling plant. tt0390468,DR91SIIPCkQ,"The Al Qaeda terrorist films Lars with his own camera, but when a sudden explosion erupts outside their cave, Lars gets a chance to escape." tt0263101,_DK3DYHAQvc,Kong and Aom try to escape the mob through the streets and alleys of Bangkok. tt0390468,yE_JbyAR7qY,Lars is taken hostage and Sonny is murdered in middle of the night shootout. tt0263101,VN8DStEDHd0,Jo finds himself a victim of a double-cross when the gun he was given for a mob hit turns out to be full of blanks. tt0390468,vWyTTJE081c,Al Qaeda members raid the camp and kill Wali. tt0263101,5WuZvuZjk3o,Kong avenges Jo's death by single-handedly taking out a roomful of mobsters. tt0390468,UzBE29ENnjA,"The crew and Babak's team escape from Al Qaeda, who chase them through the streets with a rocket launcher." tt0390468,zoK9i_LiB5s,"When the crew arrives at a faux military checkpoint, thieves intimidate and rob Wali." tt0390468,FonBCrV4Fqs,"While following the mercenary Babak who is on the trail for Bin Ladan, the crew fid themselves under fire from Al Qaeda." tt0390468,Til9ScLdyv0,"Lars and Wali are introduced to black market arms dealers, where the situations grows tense when Wali has reservations." tt0263101,s0RwiqEDRbM,Jo takes revenge on the man who raped Aom by brutally shooting him in a restroom. tt0263101,VgyyxiZGzNo,Fon runs off when Kong brutally dispatches two potential muggers in the park. tt0378407,MosezS_qfk4,"Brian, Pam, and Lisa, reenact how they approached Drew at the Charlie's Angels 2 afterparty, and Brian cringes over the limp handshake he gave Drew." tt0390468,JlpBRPIgoIk,A murder occurs in the streets in the middle of Lars' first interview. tt1501652,A8CNtor4BPA,Charlie finds peace at last at the foot of her tombstone. tt0390468,Cer8qtPJiaI,Don Larson arrives in Afghanistan and meets with his guide Wali. tt0263101,IGtoG5BnW_g,"Kong travels to Hong Kong, where he kills his target on the subway." tt1501652,-p3FtQtQ6q8,"Dylan finds Charlie on the ledge of a rooftop, threatening to jump." tt0263101,onD3Eppv3EQ,"Jo trains Kong in the art of assassination, until Jo's hand injury forces Kong to work alone." tt0263101,6lzU26KS9yw,Kong discovers he has a knack for target shooting when he realizes his deafness prevents him from flinching at the sound of gunshots. tt1501652,iOb_w3y2stg,"After Natalie confronting Dylan, the two reminisce their high school romance." tt1501652,C8IBujBZjaE,Decko comforts Dylan when hope escapes and all else fails the boy. tt1501652,nXqdGyqR82Y,Charlie recalls the accident that involved Dylan's parents. tt0263101,3gt4aiQrmb8,"Even with a little girl watching from a balcony, Kong carries out a hit with ruthless precision." tt1501652,5B5VRYzzz0M,"WHen Dylan seeks out Charlie, he finds himself facing an armed thug." tt1501652,h3Aam5h7qAA,Dylan plays dead while the only two guests show up at his memorial service. tt0473488,1qbYMSC8ggg,"After many years, Dito finally visits Antonio in prison." tt0473488,KuR_Z_vRD2Y,Dito and Mike try to get the money they're owed from Frank. tt0473488,Vbw4I7BhEBk,Dito breaks down and asks Monty if he ever loved him. tt0473488,_vjn86zTNVI,Laurie tells Dito to be a man and take care of his parents. tt0473488,hUz7Nan8kpM,Dito has a falling-out with Antonio and a run-in with Reaper. tt0284929,QSWGpf7NQ7k,"Lee and her husband watch the evening news discussing ed Bundy's execution, which leads her to question who the man she once loved was." tt0473488,sY1NGOTGpUs,Dito returns to the old neighborhood and sees Laurie hanging out the window with her son. tt0284929,U0sp1K-D1RE,Ted gets a pleasant visit from Betty in prison. tt0473488,6OofgRuJnIE,Dito returns home to find his dad unsettled by the threatening graffiti sprayed on the house. tt0284929,n5YGsbi7BNw,Ted Bundy makes his infamous escape while pretending to be studying up for a case where he'll be acting as his own attorney. tt0473488,2eqWGVKtm5w,Antonio intimidates the little brother of a Puerto Rican gang member spray painting graffiti in their neighborhood. tt0349889,jnRIqedIizM,"Sullivan and Peterson bring a drugged Dean to Dr. Collins, who estimates he has six hours to live, while Amy questions the thug who injected Dean with XE." tt0473488,ShqQo3JOdew,Dito runs into new classmate Mike on the subway and they decide to ride to Coney Island. tt0284929,fBkFWhWXWuA,Lee severs her remaining ties to Ted when she finally suspects he could be guilty. tt0473488,y8Jqk1kPtQI,Dito brings his buddies Antonio and Guiseppe home to see his mom and dad. tt0284929,eswi0L8WNzs,Ted gets arrested for the first time and is questioned by a Salt Lake City Detective. tt0349889,cZP3u5XAeHk,Agent Junod and Agent Kennedy step on Detective Amy Knight's toes when they try to take control of her case. tt0349889,-uU3MTcwg_s,Peterson and Leitch taunt Dean as he hallucinates the memory of his best friend's execution in Bosnia; Amy breaks in to save him. tt0349889,3sDL4LJUc_c,"Dean, waiting for Amy at a diner, is mistaken by thieves for a CIA operative with access to a stolen military experimental serum. McNab injects him with said serum." tt0023969,m9Wh66FXZJQ,"Just as peace seems like a possibility, Rufus T. Firefly works himself into an indignant stupor and triggers a war with neighboring Sylvania." tt0349889,AO9pxLEHVfI,"Once Amy injects Sullivan with XE, he becomes desperate to find the antidote. When he finds it, he attempts to shoot Amy, but Dean shoots him first, allowing Amy to obtain the antidote and give it to him." tt0084787,hqVbOSEsJNo,MacReady administers blood tests to uncover who is infected by the Thing. Palmer is unmasked as an imitation and transforms into a creature that kills Windows. tt0284929,QQwJyX56Z6o,"After flirting with a caller from a help clinic, Ted breaks into a home and assaults a sleeping woman." tt0023969,5mEsXz-Bpog,The Marx Brothers rally Freedonia to war with this rousing performance. tt0023969,q9OUIk4Oaq4,Chicolini and Pinky harass a hapless lemonade vendor. tt0023969,qSabiG8q8-k,Rufus T. Firefly meets Mrs. Teasdale for the first time and runs circles around her. tt0084787,JjIXwkX1e48,"Dr. Cooper attempts to revive Norris with a defibrillator. Shockingly, Norris has become inhabited by the Thing, and as his chest caves in, Cooper's arms are ripped off. MacReady uses the flame thrower on the creature." tt1212419,P4KH_RSZyl8,Dr. Rousseau describes the experience of death to Marie who is beginning to realize she may have experienced it as well. tt0023969,AFk0BnxndMA,Pinky says a whole lot without saying a word. tt1212419,q-1DREuXwjc,"Melanie learns of George's ability to do psychic readings and asks if he'll do one for her, putting their new relationship in peril." tt0284929,jJze-x__3o8,Ted masturbates to a girl undressing before a disgusted neighbor dumps water on him. tt0349889,uIJDIumyakw,"Peterson and Leitch try to shoot Dean as he clings onto a speeding fuel truck but end up shooting the driver instead, sending the truck off the bridge in a flaming heap." tt0349889,mlAtuy15iIM,"Dean, whose hallucination has inclined him to think the building is on fire, throws himself through the window and flees the property." tt0242508,MflY-IYl0Bk,"While taking some photographs of a boy and his family, Alan has an unexpected acid flashback." tt0349889,Utt18i8DSSg,The drug Dean has been injected with makes him relive his memory of Scott's execution. tt0242508,PSe5x7y-kVY,Alan visits Dr. Reese who specializes in cases of L.S.D. overdoses. tt0242508,cx_45Z56ZQA,"Still tripping hard on L.S.D., Alan runs into his friend Sandy who cautions him that the acid trip may never end." tt0285728,NF-httKm7RU,Dahmer picks up Rodney at a hunting store. tt0349889,KThMkPl6q5A,Amy coaxes some information about the drug XE from Agent Kennedy by threatening to inject her with the lethal substance. tt0285728,0j4aiJowI8I,Jeffrey asks Lance about rebellion and homosexuality. tt0242508,lgwJVRwJn3k,Alan struggles to hold it together on an airplane after consuming LSD and having strong hallucinations of the passenger Teddy seated next to him. tt0285728,2GXdTkYEPm4,Dahmer discovers Khamtay wandering in the street with some bystanders trying to help him. tt0285728,aqbP3OofrHU,Jeffrey is pulled over the night he dismembers his first victim. tt0242508,S32b64ns3fM,Alan is paid off by Cindy to throw the Harvard/Dartmouth basketball game to the disapproval of fellow teammate Marcus. tt0285728,q2nChVvlZ8w,Jeffrey seduces Rodney and then chokes him in order to keep him from seeing his other victim. tt0285728,k7GcyfPypGY,Jeffrey troubles Rodney when he accuses him of harboring anger. tt0285728,2V0WuzhmAjY,"When Lance decides to leave, Jeffrey does his best to keep him at his house." tt0421238,Ddnox9DoK88,Charlie interrupts a home invasion by shooting both Samuel and his brother Arthur. tt0421238,NSsW9EXadik,"Charlie rescues Mikey from prison, while Arthur and Samuel stay behind to finish off the guards." tt0421238,HEGucJf9y-w,"Arthur saves Charlie from Jellon Lamb, and Charlie shoots him in a mercy-killing." tt0421238,quzMffZuuCQ,Charlie sits with his brother Arthur as he takes his last breath. tt0421238,wLaXJWcrgzM,Martha tells Captain Stanley about her dream and the curious effect it has on her upon waking. tt0421238,lWTyXHZu09w,"Arthur steals a horse for his brother and kills Sergeant Lawrence, who warns him about Charlie's mission." tt0285728,PT3GmTvF9t4,Lionel asks his son about a mannequin he has hiding in the closet. tt0285728,0642x0-QL0Y,"When Lionel demands his son to open up an old chemistry set, Jeffrey fervently attempts to keep its horrifying contents out of sight." tt0320244,JbI9xgX8H-8,"James discusses his book with a documentary crew while getting a call from Michael, who is in jail." tt0320244,0SXgXYo-Vk8,A talking rat shows James the truth behind Angel's death. tt0320244,sh8VHDoEDik,Gitsie and Michael reaffirm their affection before being carried away by the police. tt0285728,Tg_qXTVaZSE,"After drugging Khamtay, Dahmer carefully drills into his skull." tt0320244,EOCgXlRkmKk,The Club Kids visit Dallas where Michael meets Gitsie for the first time. tt0320244,vvWyQxD3ZmI,The Club Kids appear on a talk show while Peter wonders if the success the Kids bring is worth the trouble. tt0320244,4VfWFRMVM_M,Michael gets upset when Keoki shows up to his birthday intoxicated. tt0320244,p0WBxRosKq4,James teaches Michael how to be fabulous at a donut shop. tt0320244,QRHGpNm96gY,Michael's truck party with Christina tripping at the wheel is cut short when the cops break it up. tt0320244,j1CC9YKFpXA,Michael has Peter over for the Holidays while James tries to get into Leoki's pants. tt0413466,xEQ_h9zO4II,"After a maid tries to help the guys find a way home, a drunken actress takes Kico into her mansion and makes him her bath buddy." tt0413466,jC5O4or6dB8,"Jonathan ""and thens"" and scratches himself through an introduction to his life." tt0320244,G7GXq4M7SuI,Michael steals the spotlight when James has a bad trip. tt0413466,FBpPaF5Kg_Y,A couple of Beverly Hills girls take a liking to Jonathan and Kico and invite them to their house. tt0413466,meBbz4hop-w,Nikki and Kico quiz one another about their respective lifestyles. tt0413466,eOgMuHykBAA,"The guys bemoan the loss of Louie, who was just shot by a resident as he was hopping a fence." tt0413466,lrvMjEmOFhE,"After the guys are done bagging on Rosalia, Porky solemnly reminisces about the girl he impregnated." tt0413466,owJTZiiUoUQ,Rosalia freaks out when she discovers Porky trying to drown himself in the sink. tt0210070,nU1jeDXloRs,Ginger beats up Trina as her transformation grows while Jason copes with the side effects of his night with her. tt0210070,A7UHJpZ4Jrw,Brigitte's final attempt to save her sister proves fatal. tt0210070,Wmu-F4mJ-eI,Brigitte attempts to make peace with with beast in order to save Sam. tt0210070,4CgNb8LRtng,"After terrorizing Trina, the sisters deal with an accidental death." tt0210070,GwYqUTPQT-w,Sam and Brigitte plan how they'll handle the beast while hiding in the closet. tt0210070,EMga19u0TaA,Brigitte and Sam race home while Ginger transforms in the back of the van. tt0210070,11TGIP2Kouk,Brigitte and Ginger buy tampons when Ginger's infection is mistaken for cramps. tt0210070,FrisJJ0G4N8,"When Ginger's transformation is mistaken for menstruation, the sisters visit the school nurse." tt0780608,YpkqDHGJzJ8,"At a meat factory, Jane goes on a pro-union tirade bringing up worker's rights and class struggle." tt0780608,pnqh4SI-E6c,"Jane idiotically stands-up on the ferris wheel, and stumbles, which leads her to dropping the valuable communist manifesto." tt0210070,oZrpLQFH960,The sisters get separated when a lycanthrope attacks Ginger. tt0780608,HiMImmy3l5o,Jane reaches a momentary state of tranquil bliss as she rides the ferris wheel at the Santa Monica pier. tt0780608,O73Q7jd3VkA,"Jane finally makes it out to Venice Beach, only she's too late for the Hemp Fest, but does run into Carrot Top." tt0780608,ca_Ac4lF2Vk,"While stuck in traffic on an L.A. freeway, Mikey imagines a hot and horney Jane seducing him in the car. The dream is far from reality." tt0780608,ViZ5qXg5xQA,"Jane hallucinates a smiley face in the sky, then tries to grab a ride to Venice by calling up some old friends." tt1680059,bLqwpb4eDeA,"The keepers stay with the baby elephants all through the night, comforting them when they cannot sleep." tt0780608,a2Nw8Hen7Bo,"Brevin, a nerdy friend of Steve the Roommate, admits his romantic crush for Jane." tt1680059,S7C-PTowNSU,Dr. Birute Galdikas and her team of care-givers act as mothers to the rescued baby orangutans. tt1680059,RpatQWLKfAE,"Dr. Daphne Sheldrick assists in the feeding of the elephants with the formula she developed, and applies sunscreen to their vulnerable ears." tt0780608,XZT1cB8KU_I,A stoned Jane bombs at an audition in front of the Casting Director. tt1680059,ugXeKGSjvKw,Birute Galdikas releases the orangutans into the wild. tt1680059,dfFFgV624TA,Dr. Daphne Sheldrick gives a tour of her elephant nursery. tt1680059,gXv4mbv8-cE,The Orangutan orphans are tenderly cared for so they will be prepared for adulthood. tt0421238,W1Ipb0WpoGI,"Captain Stanley tries to protect Mike from a public flogging, but even the captain's wife Martha is intent on revenge." tt0780608,SAo2EHsCPn8,"On a ferris wheel, Jane talks to herself in the voice of Roscoe Lee Browne" tt0780608,VWELyY3orwI,"Jane eats the cupcakes that Steve the Roommate was saving, even though she considers him a crazy, weirdo roommate." tt0421238,7L2NhtAzHYw,Charlie encounters bounty hunter Jellon Lamb and knocks him out. tt0421238,_DgOdOLNiaI,Captain Stanley gives Charlie the option to save his younger brother by finding and killing his older brother. tt0929618,solCkKfZObE,Heath and Tyler meet with potential new roommates to replace Kieran. tt0929618,mIM8G1SoJAc,Kieran says goodbye to Heath and Tyler as he moves out of the penthouse. tt0929618,Q8IqpcS31Xo,"Trista reads the short story that Kieran wrote about her, and they kiss." tt0929618,tbcg51lQx8Y,"Erica finds Kieran in bed with Trista, which also infuriates Trista's brother Tyler." tt0929618,JgIJDix2oy0,Kieran and Erica suffer through an awkward meal with her parents Nicholas and Frances. tt0978764,_3EcvKXH9zY,Baby Doll's dark family history is explored. tt0929618,3ZuQQQTv48I,Heath has an awkward first day on the job as a male nurse reporting to hot doctor Mitra. tt0929618,_mVMG_Rbk5w,"Kieran flirts with a cute girl at a bar, unaware that it's really Trista, the girl he's been sent to pick up." tt0929618,6IbECSkNmiY,Kieran and Trista debate the merits of staying in the penthouse or moving out and growing up. tt0929618,0eBehC1Ky8c,"Kieran meets with his agent, who motivates him to get back to writing." tt1231287,Zf_Dt4lo_3c,"Thea goes on the t.v. show The Vista hosted by Claire to promote the pregnancy book ""I'm So Over This."" At the taping, Nick makes a heartfelt speech about love." tt1231287,Ddet2d9EtTY,A fight between Jerry and Nick leads to Thea's balloon fake baby being popped in front of everyone. tt1231287,xLL3-fP9NAw,"Thea and Emma have a sisterly cat fight, with Emma tearing up the pregnancy pillow." tt1231287,2UCoVnTjV4k,Emma throws a baby shower for Thea to trap her into admitting that she's not pregnant. tt1231287,l29oT_LWdfM,Nick surprises Emma at home and then takes her on a date in the park. tt1231287,U0Sk5u00YHs,"Thea leads a pregnancy focus group and receives a surprise visit from her sister, Emma." tt0929618,ROO66Mi8gTY,"Erica objects to the plan for Kieran to move into a penthouse with his buddies, so he considers breaking up." tt1231287,DOtd-mykOhE,Thea and Nick pretend they are a couple at a perverse birthing class. tt1231287,zDYk7hXvQ0Y,"When Thea is about to be fired from her job, she blurts out a lie that she's pregnant to her boss, Jerry." tt1231287,dOObdbjoJ4c,"When the office learns about Thea's pregnancy, the lie expands as co-worker Lisa adds that Thea is also engaged." tt1231287,SmLwnNTfwHI,"During an office meeting, Thea watches on powerless as Jerry's dog becomes sick and vomits all over the boss." tt0363143,b5jr8NxFS-E,"Ben comes to an understanding that his former lover is dead, while the body of Charlotte is discovered." tt0363143,VT2pepdAtJo,"Ben convinces Charlotte to swallow a spider, only to seal her mouth shut." tt1242618,3JO11PBdCAo,"Rebecca returns to find Alice in the tub, muttering about David and Lucy." tt1242618,IFTHxZ22woc,Alice watches the last home movie of David burying Lucy in the yard and hanging himself. tt1242618,BX91rzHyMv0,"Driven mad with jealousy, David drowns Lucy in the bathtub." tt1242618,Xi3ymXEMyjU,Alice is left hanging when the home movie ends just as Lucy works up the nerve to leave David. tt1242618,H1SvA7bU0oM,"Alice discovers that not only is David still alive, but he's still in the house." tt0363143,IqqznoT4Jb0,"Ben seeks comfort from his estranged, presumed dead lover Elisa, but she offers only a reality check." tt1242618,0a_HvCBSa1I,"In another home movie that Alice watches, David becomes jealous of Lucy." tt1242618,utKueh6Yj9Y,"Alice calls Rebecca in the middle of the night, convinced that she's not alone." tt0363143,N5i6B7WyZQE,"Ben has a nightmare involving a mental ward, ants and his presumed dead lover Elisa." tt1242618,FDxm9DsmBk8,Alice and Rebecca explore the old house where Alice is staying to finish her screenplay. tt0363143,1Oge9qUat-I,Ben's illusions get the better of him when Emery gets confrontational. tt1334512,ij3HAftwQQ0,"Wooing Naomi proves to be difficult for Arthur as he still has a nanny, but Naomi gives him her number anyway, sort of." tt1334512,B6E_rp80QMc,Arthur and Bitterman dress up like Batman and Robin. tt1334512,2NnR3gblKYI,"Arthur meets a radiant stranger"" who gives tours of Grand Central Station despite not being an actual tour guide." tt1334512,XsdRpsG43WI,"Arthur tries to worm out of the sham marriage that Susan has planned, but she stands firm, explaining her motivation." tt0083658,5dA3DePirsE,Batty tries to stay alive long enough to kill Deckard. tt1334512,-3mo5CqjvWs,Arthur offers up some reasons as to why he and Susan are not right for one another. tt1334512,eX3czjlDO5w,Arthur tells Hobson about his aspiration to get a job for the first time in his life. tt0083658,5lPsmFSNWc4,Deckard returns for Rachael and then finds an origami unicorn in one of the most debated endings of all time. tt1334512,w_tQqymkPdA,"When Arthur asks Hobson about her love life, he finds out that she gave it up for him." tt0083658,e9t5ikxjAQ4,Deckard battles Pris to the death. tt0363143,__yiHzuT3ig,The Medium scares Ben when she receives energy from beyond. tt0083658,KcJs4qJPQ_M,"Batty confronts Tyrell and asks for more life, but realizes that it is impossible." tt0083658,yWPyRSURYFQ,"Deckard concludes that Rachael is a replicant, but a very good one." tt0363143,mvBtzXZWWG8,Ben takes Charlotte to his old research laboratory. tt0363143,FuXl-Pmr5kc,Ben explains the anthropology in entomology to Charlotte. tt0363143,0NtiiKd1HnA,"Ben confides, albeit reluctantly, in a mysterious presence." tt0328031,IlIhWS7-x1Y,Susan confronts Sean after discovering he murdered her late husband. tt0363143,Bl6Wk5M1vjk,Ben meets Charlotte at a gathering for a Medium's telling. tt0328031,CaaKsf8zOyA,Sean cleans house before igniting it. tt0328031,B2TqswpzDlg,Sean chops up Duke to intimidate the other thugs before they arrive. tt0328031,g4-0zhNcrnQ,Sean starts losing his sanity as weeks of routine beatings go by. tt0328031,_MlQzLtPA0Q,"After murdering Duke, Sean attempts to escape the shack." tt0328031,PzocCTnSU3w,Duke unleashes fury on Sean when he finds out Sean murdered an associate and wants compensation. tt0328031,kqVqHxVJCaA,Duke introduces Sean to Ray. tt0328031,VZFMY9mYu4Q,"Sean murders Eric, but the ordeal is not as easy as he hoped." tt0328031,FNaOG7EN5jE,Ray and his goons imprison Sean and begin systematically beating him with a golf club for weeks. tt1233219,bgCUriRuVx8,Brad and Ingrid walk through the park as Brad gives away all his earthly possessions. tt1233219,Lt3HDRrYt9E,The standoff ends when Ingrid realizes that Brad has been keeping his pet flamingoes as hostages. tt1233219,a6kk9d5OQ-c,"Brad travels to Machu Picchu and a central Asian market, and wonders why the whole world stares at him." tt0328031,GO4D8MjC6xU,Ray tries to convince Sean to assassinate Eric Gatley. tt1233219,vHIbZ0uOAL4,"Lee tells his cast the story of Tantalus, which inspires Brad to pick up the sword." tt1233219,GTv9dFFHtW4,Brad and Lee visit Brad's Uncle Ted to obtain his sword for their Greek play. tt1233219,1zOSmScTr_w,Ingrid suffers through an awkward dinner with Brad and his mother. tt1233219,gyUrAK47OY4,"Hank tries to get Brad to come outside, but he refuses to leave the house." tt1233219,czIb_WZRk-U,Brad decides not to join his buddies on a fatal kayaking trip in Peru. tt1233219,XmhfuDf1hZI,"Fired from the play, Brad attends a performance and recites his lines from the audience." tt1233219,zX2LRszGCro,Hank shares a story with his partner Vargas and they get called to a crime scene. tt0978764,spwoWkSEmsE,Blue lectures the company about loyalty and trust. tt0978764,oJFKZnePh3k,Blondie does what she can with a machine gun against a fierce dragon. tt0978764,KV143Jx9hFs,"When Baby Doll conceives of a plan, the rest of the gang agrees to join." tt1486185,uwV4iMoc7xg,Peter and Henri create an unlikely alliance in order to help Valerie. tt0978764,MMeHpxjiU0U,Rocket takes out a baddie in the trenches. tt1486185,BT7WTaXcPLU,Henri accuses Valerie's grandmother of being the wolf. tt0978764,UrUNUzp14Bc,Madam Gorski lectures Baby Doll on self confidence. tt1486185,piFTKwqrqYA,Valerie confides in her grandmother that the wolf has spoken to her. tt1486185,DYsJH2JWJTY,Father Soloman warns the villagers of the impending doom a blood moon brings. tt0480687,3cnhsHMhVZE,Grace and Maggie discuss their husbands and sex lives. tt1135487,Dl8BO_ZLdEc,Ray and Claire cope with the realization that they have been double-crossed with a bogus formula. tt1486185,iI0hgr8Kff8,"Unbeknownst to the villagers, a menacing wolf among them turns and attacks." tt1486185,jkHrHAKwPZk,Valerie pleads with Peter not to leave her. tt0480687,u17vCX9koaI,The guys discuss strategies for picking up babes. tt0480687,4j9EwcO8tDM,Fred breaks the news to Rick that he got a hall pass from his wife. tt0480687,CxxuM1HCI-8,Fred takes a moment to capture Leigh's beauty with his mental camera. tt1135487,UubHqEOLd8I,"Ray threatens to expose Claire as a spy, so she reluctantly agrees to work with him." tt1401152,uSkVR8Tbu8c,"When a cable snaps off of a truck, Gina and Dr. Harris get into a serious accident." tt1127180,KNyFPVliMEE,"Christine goes grave digging to return the cursed button to Mrs. Ganush, but the old gypsy proves combative even in death." tt0089560,yXl3ENKGAUQ,Rocky arrives for his first day of school and is met with uncomfortable stares and a few mean jokes. tt1401152,dSpTTf_dzDI,Dr. Harris and Gina evade men chasing them in cars through the streets and on the sidewalk. tt1127180,quY0mRlL5FQ,"Christine and Clay reunite at the train station, but when Christine realizes that Clay still has the cursed button, she falls onto the tracks and into the path of an oncoming train." tt1401152,FBV_POzEeks,"Dr. Harris reconnects with his wife after his coma, only to find that she doesn't know who he is." tt1127180,L_NfCmTkLPQ,"Christine and Rham Jas participate in a seance in an attempt to draw the evil spirit into the body of a goat, but the spirit inhabits Shaun first." tt0094138,wReulnRQA-Y,"Jerry makes a run for it, but his car won't start, and security officer Duke drags him to the office." tt0056869,qMwvHLe5m3g,"Mitch leads Melanie, Lydia and Cathy out of the house and into the car." tt1127180,pE4-ePx_OAI,A dinner with Clay and the future in-laws turns awkward when Christine sees the gypsy's eye in her slice of harvest cake. tt0094138,UW-Y3QyK-aU,"Rumors about the new kid at school spiral out of control, and then Buddy steps out of his car and intimidates everyone on his way in." tt0094138,irglc0zZbvA,"Jerry gets nervous when Mr. Rice introduces him to Detective Mulvahill, the cop investigating the school store robbery." tt1127180,8tanKqukbfM,"Christine watches as shadowy hands creep under her door, then drag her around the room." tt0094138,QAUmchzQJAE,"Jerry turns to robbery in desperation, but he has difficulty opening the cash register in the school store." tt0094138,8DrzN7pcJpI,"Jerry attends a pep rally, but the brutal decapitation of a dummy by cheerleaders only makes him more worried about the fight." tt1127180,c27gUzZEjvA,"Christine tries to make everything better by visiting Mrs. Ganush at home, but she soon discovers that the old woman has died." tt1127180,Od1ZBTstSHg,Clay tries to console Christine after she has a bad dream involving flies and Mrs. Ganush. tt1127180,v0KOJWyR4SU,"Christine is attacked in the bank garage by Mrs. Ganush, who puts a curse on one of her buttons." tt1127180,SI7LDY6E1Rw,Christine snaps at Stu and suffers an intense nose bleed that gets all over Jim. tt0095253,8W4DxSCopj8,"Roman grooms while attempting to make a call on a primitive cell phone, and Chet struggles to drive Roman's fancy boat." tt0322589,9r4784rihOc,"Bitter because Honey turned him down, Michael changes his mind about having the kids dance in Ginuwine's video." tt0322589,tkN8fCU-rzU,Michael tricks Honey into thinking they're attending a meeting when he really just wants her to be his date to a party. tt0087995,ewwKExvkqXQ,"Once he's paid cash for his first repo job, Otto opens up to the idea of becoming a repo man." tt0096969,UephHvStdWw,Ron and a group of Vietnam veterans protest the war at the 1972 Republican National Convention in Miami. tt0322589,eeGuOguh33o,Gina and Honey get in a tiff when Gina feels like Honey isn't being a good friend. tt0765443,QcubF7zXxwo,Nikolai meets with Semyon to discuss the behavior of Semyon's son as well as the diary of the dead Russian prostitute. tt0265298,ClQNLSnl1ow,Jason leads Marty on a wild goose chase all over the backlot at the movie studio. tt0765443,m_xLtlNx7Io,"During the game of Chelsea and Arsenal, when Ekrem takes a moment to urinate, the Chechen hitmen enact their revenge." tt0765443,fOHbTh1Wo4o,The Senior Officer of the organized crime unit at Scotland Yard meets with Nikolai at the hospital to pull him from his undercover operation. tt0765443,4rJgIW-Qwzk,Anna and her family meet Nikolai in a public restaurant to exchange the diary for the prostitute's address. tt0765443,Whw_HyeXyCY,"As Stepan recites the diary, Anna and her family discuss how they will deal with the book and the baby." tt0206634,-WW51YaWO-4,Kee opens up to Theo about the experience of being pregnant. tt0765443,fRdo188PjXA,Nikolai is given the stars of the Vory V Zakone through a ritualized tattoo ceremony. tt0765443,bBg5uLCQrbU,"Nikolai offers money and prayers for the Vor V Zekone prostitute, who he later rescues." tt0765443,cyrDoGdif_o,Nikolai gives Anna a lift home when her motorcycle stalls in the rain outside Semyon's restaurant. tt0206634,EddCNkvpmjw,The Fishes argue about what to do with pregnant Kee. tt0765443,t5CxCy7VC7M,Nikolai thaws out the frozen corpse of a former employer that Azim's murdered in order to cut him into separate pieces. tt0206634,8K84sx9EJzc,Theo overhears the Fishes' plot and finds out that they are the ones who killed Julian and plan to take Kee's baby. tt0446029,5HaKHp8glPc,Scott and Knives team up to finish off Gideon. tt0446029,_7vyrudcgOQ,Scott uses his second life to redo the episode at the Chaos Theatre. tt0446029,N13WI3oVda8,"Scott catches up with Julie, Ramona, and Envy at a cafe." tt0446029,ILwoKfeDJO4,"Scott finds out that Ramona dated A-list actor, Lucas Lee, the hard way." tt0100301,JcuE90flGj4,"At a bar mitzvah, Jonathan tries to lighten up Annie by displaying his moves on the dance floor." tt0276751,NZ94hNaoyLA,"Marcus comes to Will for help with his mother, but Will refuses to get any more involved in their problems." tt0446029,dLpCZ8g5uK8,Scott tricks Todd into losing his vegan powers. tt1161864,US9enXEHnR4,"Michael stands up to Father Lucas, but Father Lucas believes the devil has fooled Michael in to doubt." tt1161864,SzO7T8P4_JA,Father Lucas responds peculiarly to Michael's appearance. tt0472062,fZXtCHoRb50,"At first doubtful and offended, Charlie listens to the advice of a young genius weapons expert brought in by Gust." tt1161864,1NQhKtWHtmQ,Michael can't make the connection that Father Lucas has about the upcoming exorcism. tt0472062,-c_ctZ4lUCk,"On an airplane, Charlie tells Bonnie a childhood story about when he first realized he loved America." tt1161864,WjJQ6L_BS58,Michael speaks briefly with Father Xavier about Father Lucas' exorcism techniques. tt0472062,SuRxmapiDeU,The men get distracted by a beautiful and tempting bellydancer while trying to have a political meeting in Egypt. tt0100301,NJ8rJ-i-OKE,"Jonathan enjoys the amenities of a furnished, country club bathroom, yet forgets to tip the bathroom attendant." tt0110950,LdsaucLvRb4,"When picking up Lelaina for a date, tensions rise between Michael and Troy over who is the right guy for her." tt1161864,81hWxoHF1uA,Angeline asks Michael Kovak to record what he sees during an exorcism. tt1161864,zCv0AZeyCaQ,Father Lucas Trevant expresses to Michael Kovak his personal wavering doubts of God. tt0078723,zIJgAMpRG-k,Warren sets his sites on the Japanese sub while the Japanese set their sites on California. tt0276751,xg4OR0Tpy6U,"Will spends an awkward Christmas with Marcus and Fiona, and it gets only more awkward when Suzie shows up." tt0078723,p-YvF5eXwYM,Sgt. Tree informs Ward Douglas that his property is strategically advantageous for Japanese defense from the Pacific Ocean. tt0276751,iBbWqmzzKMU,Marcus confronts Will about his lying and tries to blackmail him into dating his mother. tt0078723,4qMv02zxgdM,"The Japanese infiltrate California through a clever Christmas disguise, so clever it gets by Hollis." tt0087262,VsdeqOdkdTY,"When John threatens to shoot Andy, Charlie pretends to join him, and Hollister intervenes." tt0087262,pPZMrs3QGug,"Hollister tries to calm Charlie to get her cooperation, but she refuses to start another fire until she sees her father." tt0117128,_cZZ4xkgUBg,A mutant stowaway appears on the spaceship and terrorizes Ruth. tt0117128,NpiIAuEOzmA,"Cal, Faith and Steve attempt to flee to the airport, but Brack puts an end to their getaway." tt0117128,m2giPgQXSn4,"Cal and Joe finish building the interocitor, a device for communicating with intelligent alien life form Exeter." tt0117128,0EC3NTMOF4Q,Cal and his assistant Joe receive a package containing an instruction manual for a mysterious device called an interocitor. tt0190590,_dl2L4v6ecM,Pete forces Everett to pull over when he hears the enchanting sounds of three lovely sirens singing in the river. tt0117128,Vd1j1GAExH0,Dr. Cal Meacham answers questions from reporters and boards a jet to return to his lab from Washington D.C. tt0076723,FRdIXmfm6PA,"When Reg learns that Anita refuses to sell the team, he hurls a stinging insult aimed at her son." tt0076723,fxWE6pnuPzo,Team owner Joe McGrath forces several players to participate in a fashion show despite their lewd protests. Reg and Ned are interviewed by Jim Carr on the radio. tt0190590,9RTPdAAdw30,"Pete and Delmar interpret a religious meaning from the flood, while Everett insists there is a perfectly scientific explanation." tt0052357,ZruKu2N6nQw,Scottie tries to find out why Madeleine through herself into the Bay. tt0190590,WsrIYleq2KY,"Facing the hangman's noose, Everett prays for forgiveness and is miraculously saved by the flooding of the valley." tt0052357,FZ65jfSwpAk,"Scottie meets up with Madeleine again and she allows him to ""wander"" with her a while." tt0034240,tN4mmLewz_E,Sully is disappointed by the impression his movies have made on the girl. tt0190590,gLvcrsbliOo,"Everett, Pete and Delmar infiltrate a Ku Klux Klan rally in order to save Tommy from hanging." tt0073195,rW23RsUTb2Y,"After witnessing a shark attack firsthand, Brody is left helpless during the ensuing panic." tt0034240,FKDCoc_i-ZU,Sully is disappointed when the studio bigwigs force him to be tailed on his journey to find trouble. tt0120669,vUgs2O7Okqc,"In the early morning, following a drug-fueled evening, Duke recalls the brief magical time and place of San Francisco during the 1960s." tt0073195,u9S41Kplsbs,Quint reveals to Hooper and Brody the chilling shark-infested nightmare of his past. tt0073195,dPi40lQetew,An ornery town hall meeting is interrupted when Quint takes command of the room. tt0350258,ayl2X5zfUAk,Ray's mother helps him adjust when he loses his sight. tt0023027,q4Qlk7sfZfQ,Pinky reaches into his bag of tricks to lead Huxley to a come-back victory. tt0023027,0lCPmaq960E,Prof. Wagstaff and Connie attempt a romantic afternoon on the lake. tt0023027,nP7OKtlMO2w,"Three's a crowd when Baravelli, Prof. Wagstaff and Jennings show up to Connie's apartment at the same time." tt0023027,OjS7LxDYad8,Learning is not a priority in Prof. Wagstaff's classroom. tt0023027,3skIjrkta2Q,"Yes Men, booty calls and bootleggers: Ii's business as usual in Prof. Wagstaff's office." tt0023027,j7PgnjEiMcA,"Prof. Wagstaff goes to the speakeasy looking for a couple of ringers to play on Huxley's football team, but he recruits the hopeless duo of Baravelli and Pinky instead." tt0023027,i9Iy9amffa4,"Frank serenades Connie. Meanwhile, Pinky shares a moment with his horse." tt0023027,PUV_2cqbrbo,Frank informs his father about the importance of a good football team. tt0023027,29E6GbYdB1c,"Prof. Wagstaff, the new President of Huxley U, addresses the students and states his catch-all policy." tt0020629,Ciq9ts02ci4,The soldiers of Second Company await the attack from the French on the front. tt0020629,er2a5WhYU-4,"When French soldiers cross over his trench, Paul stabs one. The soldier slowly dies with him through the night, despite Paul's attempts to save his life." tt0020629,rSPj_G2yVz4,Paul is asked by his old Professor to recount his heroism and patriotic acts of war for a young class. tt0087065,8cp_Be49Tyk,"Davey is relieved to find his dad piloting the plane, but they have only a few seconds to escape before the bomb goes off." tt0113360,kPsFoudYVSg,Takeda makes sure Paul knows who the real samurai is. tt0113360,RY-4FCh9UFY,Takeda finally gets his long-awaited battle with Kinjo. tt0113360,qdK7QVuaSlM,"On the bullet train, Takeda makes short work of the deadly Junko." tt0113360,YGf3jBzkUeg,Kinjo makes his cronies pay for their mistake. tt0113360,3fbtYisNC7c,"Paul returns to Kirina's to find a gang of ninja assassins, led by the notorious Kinjo." tt0113360,Sj8eNDOZAAk,"Lt. Wadakura learns the hard way that there are, in fact, ninja cults in modern Japan." tt0040068,qhquCQirt48,Count Dracula makes his first casual appearance to the party. tt0103850,QRizQTLmAMU,Bugs Raplin makes his final interview while the Davis boys wait vigilantly outside of Bob Roberts' room on Penn State campus. tt0040068,RjYsIv90zWk,"When circumstance prevents Chick from seeing the monsters, Wilbur tries to show them to him." tt0103850,-h62m4d4MmA,"Bob Roberts goes on the popular TV show, Cutting Edge Live, and plays a new song the show didn't pre-approve. The Assistant, Carol, is the only one who will stand up to the politician and shuts down the set." tt0103850,VE6K18Mfln4,Bugs Raplin talks about taxes going to covert wars Americans don't hear about through the media. Taxes are used to bail out savings and loans who misused their clients money for drug smuggling operations. tt0040068,88HW9wtz3F4,Wilbur loses his balance on a crate containing the sarcophagus of Dracula. tt0103850,1Oetxnq_OG4,Bugs Raplin interviews Bob Roberts as he tries to find his way through the underground corridors of a beauty pageant. tt0103850,QJFwZP8DgVE,"Bob Roberts, upset at the sword fight he just lost, drives off on his motorcycle and slips on the gravel. He throws an immature tantrum at everyone around him." tt0040068,x0YLLkr7VfU,"Chick & Wilber attempt to evade the Wolf Man, Frankenstein's monster and Dracula in the mansion." tt0104070,Er54USCnsds,"Ernest runs from the crazy, undead duo of Helen and Madeline." tt0104070,ZpXzLVGlnc8,Helen and Madeline settle their differences using garden tools. tt0104070,D_A6gdlNh00,A reinvigorated Madeline puts an end to Ernest and Helen's scheming. tt0104070,ycpEjbV4KRM,"Despite the gift of eternal youth, not much has changed between Helen and Madeline." tt0101615,KZ04pEN715I,Johnny shows us how it's done in his final rap performance. tt0104070,03a-vG6wHDI,Neither the doctor nor Ernest can wrap his mind around Madeline's condition. tt0104070,ErqotNH65_E,An argument between Ernest and Madeline takes a deadly turn. tt0104070,BWWFJ2yjQGE,Helen tells Ernest the details of her plan to kill Madeline. tt0104070,yqTTejoQVXw,"Hoping to regain her looks, Madeline drinks Lisle von Rhoman's magic potion." tt0101615,zJ5Nxx3H-Tc,"Basking in the afterglow of his heroism, Johnny decides to teach Nick one last lesson in awesomeness." tt0101615,Y1aP-YyBdIw,Johnny leads Kat and his buddies to rescue young Tommy from the kidnappers. tt0101615,b8oFKKPfgi0,Johnny and Kat get closer. tt0101615,8aW-vJWY87I,Nick picks the wrong fight when he goes toe-to-toe with Johnny. tt0068699,NaGkSrOXOp4,The Stranger surrounds Stacey and his henchmen up in the hills blasting dynamite and taking sniper shots. tt0091541,fr5rDEInWQA,"Walter returns home from a business trip, suspicious because Anna spent the night with her ex-husband." tt0101615,MqMD1DK0CTQ,"Kat's little brother, Tommy, is kidnapped by a couple of wiseguys who want to use the boy as ransom." tt0104070,s-pgK_Rvuwc,Helen has been eating her feelings. tt0068699,Zd17-69y_i8,"As Stacey terrorizes the town, The Stranger begins the reckoning by whipping a henchmen to death." tt0101615,0yOwWkbamyM,Johnny drops some funky lyrics to inspire the listless audience at this dive bar. tt0192614,bsBxt2RpiIU,"As Luke gets closer to becoming a Skull, Will expresses his concerns about the organization and its members." tt0091541,3dMF8cHKHZA,"When a strange man tries to put the moves on Anna, Walter sends him out, and then they realize he's the carpenter." tt0101615,HBdaCz2BeoY,"In his search for Kat, Johnny befriends her little brother." tt0101615,_ElAIqSBTKc,"Johnny uses his epic ""charm"" to get Kat's attention." tt0887883,j477dAxaeck,"Ted Treffon breaks into Osbourne's house, but things go very badly." tt0887883,z09OYmZg6-Q,"Harry has had enough of his fling with Katie and wants to get back with his wife. When he sees a suspicious car, he expects the worst and chases him down." tt0101615,y7gfbVpraWw,Johnny's attempt at showing off gets the eye — and the ire — of a lovely young woman. tt0192614,lxQZQ8uXBwg,"Despite the danger surrounding them, passion overwhelms Chloe and Luke" tt0192614,hOgBvXEmScc,Caleb lets Luke know that The Skulls mean business. tt0103919,c6dmj-WpTW4,"Furthering their research, Helen and Bernadette go to the source of the Candyman lore, Cabrini Green." tt0103919,Zo3a3XvzTaA,"When Helen wakes up from a trance, she finds herself amidst a horrifying massacre at a friends house." tt0117381,8x_8B2imlgE,Nicole and David share their first kiss. tt0118632,-yZVme3ToO8,Sonny and his congregation welcome Thanksgiving with some good will to the neighborhood. tt0118632,z_r6KUYYO5E,Sonny takes his ministry to the radio waves. tt1302067,4uHWjeoTol8,Yogi and the gang attempt to evade danger on the rocky river. tt1302067,g0AMLVSBfSs,Rachel sets up a hidden camera on Boo-Boo to capture nature without human interference. tt1302067,Wy-H77tovC8,Yogi and Boo-Boo get in hairy situation when their flying contraption stops flying. tt1302067,xp7F-8G_bPI,Yogi and Boo-Boo chase down a train to hop inside a boxcar. tt1302067,fwI7COVTitQ,Yogi lights things up while jet skiing for a crowd. tt1302067,MalJ_GPU4vI,Rachel introduces herself to Ranger Smith when an unexpected visitor drops in. tt1302067,sJwgNs3BWYY,Yogi explains the wonders of the picnic basket to Boo-Boo before his daring jump to snatch one. tt0020640,Dbz02p90CV8,The Professor and Signor Ravelli get into a scuffle with the ladies of the house. tt0020640,ZuVe3leQQgE,"When a priceless painting winds up missing during the party, the Captain makes a point to message his lawyer through his secretary." tt0020640,_YrNQaXdOxU,The good Captain bursts into song and dance for his esteemed guests. tt0020640,T6RkPxawpY0,The Captain imposes his charm on the ladies of the house. tt0020640,cvmcGY_VwvU,"Signor Ravelli asks the good Professor to pull out the ""flesh.""" tt0020640,5xUMeF5rgQo,"The party is given the honor of the The Professor's presence, who makes a grand entrance." tt0020640,1m9DjG3QRzs,"Signor Emanuel Ravelli is caught in the act, but has a few tricks up his sleeve." tt0020640,B9nqewDmx2U,The Professor and Signor Emanuel Ravelli pull the deck out for a game of bridge. tt0020640,FZUfhfHbjE4,Captain Spaulding recounts his voyage to Africa. tt0102175,5WuYr3fFNFg,"As Flip tries to re-adjust to his shaky domestic life, he has a disturbing vision of the future…" tt0102175,-sv5DJfslVM,Flip makes the break-up with Angie official. tt0102175,Cgd47hmpvE8,"Having learned of Flip's affair, Drew throws out his things, making a scene in front of the whole neighborhood." tt0119567,cVIS31ghLNQ,A very pissed off T-Rex wreaks havoc through the streets of San Diego. tt0119567,w7tqVEdyteg,The T-Rex takes a night stroll through a quiet San Diego neighborhood and terrorizes the inhabitants. tt0119567,AL7UDurxc3w,The baby T-Rex gets its first kill… at Ludlow's expense. tt0119567,9t8iEpdabms,The T-Rexes continue to stalk Dr. Harding and Ian. tt0119567,2h8rH8zxA64,Kelly uses her gymnast talents to save Ian and Dr. Harding from a deadly velociraptor ambush. tt0119567,p8fPj1-nKw0,"The Tyrannosaurus Rex awakens from its ship ride and is very, very cranky." tt0119567,LpxwR_9EhlY,"Ian and Nick work to save Dr. Harding, who dangles perilously as the research trailer hangs over the edge." tt0119567,mZ2kxdQf3t0,Eddie is ripped apart by two hungry Tyrannosaurs. tt0204946,eFqD0yeyGTs,Torrance listens to a mix tape made by Cliff and it cheers her up. tt0204946,HqT0L6jFMNs,"Cliff comes to check out Torrance at the car wash, but is disappointed to see his sister Missy in a bikini." tt0119567,CYGtLUZg1xA,"A pair of T-Rexes track down their wounded offspring, putting Ian and his team in mortal danger." tt0119567,8NaBHCuxqhA,"InGen's para-military team of experts, led by big game hunter Roland Tembo, begin their invasion of Isla Sorna." tt0096320,69vn_WxKBUs,Marnie joins Julius in his room for the night. tt0096320,pJJjycrT0RA,"When Marnie brings Julius some cookies, she overhears him singing in the shower." tt0328828,hgzSTQiMxj4,"Stifler unknowingly reveals his true, raunchy persona to the lovely Cadence." tt0328828,0tjKGAwyCIY,"Michelle freaks when she realizes that Stifler's coming to the wedding, but Stifler helps Jim with some dance lessons." tt0328828,4lat6XqtJ0A,Stifler is pissed when Jim tries to prevent him from coming to his wedding. tt0163025,Du95opzY8qg,The raptor eggs are returned to their rightful owners in this tense exchange. tt0472062,-WmDszVxti0,Charlie gets more money and weapons for the Afghan struggle against the Soviets. The Afghans begin shooting down Soviet helicopters. tt0163025,cVA4BO2v7zs,Erik's reunion with his parents is interrupted by a hungry Spinosaurus. tt0163025,Q-LFUnE8zzE,The Spinosaur makes one last attempt to make a snack out of Dr. Grant and the survivors. tt0328828,-T16rxR-nCo,Michelle gets excited for her big day and Stifler gets excited for the bachelor party. tt0163025,KFJmxST-xRI,Billy glides in and rescues young Erik from a horde of hungry Pterandons. tt0163025,2vOhL_Hw-gg,"Cornered by the Raptors, Dr. Grant is rescued by young Erik Kirby." tt0163025,TTLjOAdckzM,The raptors set a trap for the survivors by using Mr. Udesky as live bait. tt0163025,jT8TUowrkLU,"Stranded inside their plane, Dr. Grant and the survivors must endure the onslaught of the menacing Spinosaurus." tt0163025,trPOKL7Nguo,Dr. Grant and the survivors discover a deadly surprise at the abandoned genetics lab. tt0163025,n7cRx_7umjE,"Realizing that something large and deadly lurks nearby, Dr. Grant and the rest of the visitors attempt a desperate flight off the island…" tt0083866,gTVoFCP1BLg,E.T. elevates the bicycle and takes Elliott on a ride through the nighttime sky. tt0163025,M7tNqjsclhs,Dr. Grant and the remaining survivors are trapped in a turf battle between a T-Rex and the ferocious Spinosaurus. tt1231583,eKJv3dWsZ7E,"As Peter and Ethan make their way back to the Impreza, Ethan decides he needs to stop for his ""medication.""" tt1231583,k79KJYXrBkc,"As Peter and Ethan become acquainted, Peter can't help but ask why Ethan is carrying around a coffee can everywhere they go." tt0328828,O5Dec6RdFzw,"When the engagement ring comes out in the dog's poop, Stifler passes it off as chocolate." tt0328828,nqaJ3f0z3Lw,Jim's shavings end up on the wedding cake. tt0328828,nqz6wwDRWiE,Stifler pretends to be a polite preppy type in order to get into Cadence's pants. tt0328828,O5tNdOzsbvQ,"Jim brings his fiance's parents to his house, unknowingly interrupting his surprise x-rated bachelor party." tt0084787,w0Z44BIDPPc,"Bennings is taken over by the Thing, but the process of imitation is incomplete. He stumbles out into the snow, with claws as hands, before he is immolated by MacReady." tt0328828,9blGmvMjHlk,"Jim is about to propose to his girlfriend, Michelle but it all goes awry when she ""services"" him under the table." tt0023969,td3p2XKHP2M,Chicolini and Rufus T. Firefly make a mockery of the court through some wonderful word play. tt0084787,JVgqhPqHPa4,"Attacked by a giant mutation of the Thing, Macready blows it up, and a large part of the base, with dynamite." tt0084787,GA4Ozqt7338,"With the polar climate closing in around them, MacReady and Childs acknowledge the futility of their distrust, and share a drink, as the camp burns." tt0084787,ZH7hyzPIbp0,"In the event that no one survives on the base, MacReady records an audio tape telling of the strange events that are occurring." tt0084787,oZzS9hBwaqg,"MacReady, with the help of Garry and Nauls, decides to blow-up parts of the base in an attempt to not allow the Thing to freeze and hibernate." tt0023969,uSsUoxlSADk,Rufus T. Firefly lays out the strict rules of his country through song and dance... much to everyone's pleasure. tt0084787,YDDzjijc6jY,MacReady administers the blood test on Childs and Garry. Both are found to be not infected and demand to be untied from the couch. tt0023969,FNSNLXNnx-o,Ambassador Trentino employs Chicolini and Pinky as spies in order to get dibs on a political rival. tt1212419,gP2sCE166o4,"Billy subtly tries to convince George that his gift is not only a viable source of income, but his duty to mankind." tt0084787,ZXHuGyv1KXM,An Alaskan malamute dog runs across the wintery landscape of Antarctica pursued by a Norwegian helicopter. tt1212419,5cqQdDitGuA,"When George is confronted by a neighbor who wants him to do a reading for her, he retreats into the safety of his apartment." tt0084787,NtgFKdWcKXY,"While locked up in the dog kennel, the Thing attacks Clarks' dogs. MacReady uses a shotgun, and Childs brings the flamethrower to destroy the creature." tt0327597,i8WK-3pUpwk,Coraline and Wybie get strong-armed by the Other Mother's pesky severed hand. tt0327597,HOp1wRImIxY,Coraline sees the younger side of Miss Forcible and Miss Spink as she attends an outlandish play. tt0327597,91nfNp7MVIw,"As Cat warns Coraline about the Other Mother's motives, a spy trumpets an alarm." tt0327597,avt_f-TaDBs,Coraline discovers a magical garden in the Other World. tt0327597,2hcVZo8jP6A,"For Coraline to stay in the Other World, she just has to do one tiny little thing..." tt0327597,w0C4gjdag8o,"Despite her early suspicions, Coraline is mesmerized by the fantastical new toys from her Other Parents." tt0327597,wyaGIaJsmTg,Coraline meets her Other Parents and notices something very striking about them. tt0327597,rx1TXzxMEfo,"Coraline meets her nosy neighbor, a young boy named Wybie." tt0166924,R_VEQI2nS48,"While holding actress auditions, Adam spots Betty and then, as instructed, chooses Camilla Rhodes." tt0386117,NMaLs9vr7ko,"Max formally meets the Wild Things, who act weird, according to Carol." tt0386117,kA10xksmpCI,Max meets KW and she asks him why he came to their land. tt1058017,jwrWJXtNYWU,Mark's receptionist Shelley tells him he's about to be fired. tt0033804,U3nWo59iBg8,"With Charles under her complete control, the Lady Eve reveals a long list of past suitors, much to his chagrin." tt0327597,rkrnVkFn59c,"Awakened by some noisy mice, Coraline follows them through a mysterious tunnel and into the Other World." tt0033804,1T53iV8HKXQ,"Charles finds himself reunited with Jean, never once making the connection that she was posing as the Lady Eve." tt0033804,I8ilwspLbDM,"Distracted by Lady Eve's presence, Charles falls head over heels -- literally." tt0033804,9VEScwL3KGQ,"In memorable fashion, Jean foils 'Colonel' Harrington's attempt to cheat Charles out of money." tt0033804,JZhLiJowzNY,Charles is taken aback when his father introduces him to the elegant Lady Eve. tt0033804,RBrzUwP2whM,"As 'Colonel' Harrington plans his scheme, Jean reveals that she might be falling in love..." tt0033804,dOnoBJvtVMU,Charles finds himself in an awkward position as he and Jean discuss ideal soul mates. tt0033804,Y3Q6BzRtl5w,"Jean meets her match when Charles introduces her to Emma, his pet snake." tt0120188,vkoJH4fum58,Amir tells the soldiers about what he'll do when Saddam is gone. tt0120188,jL6oromerXE,Archie and his boys try desperately to get the refugees across the border before their own government makes another brilliant mistake. tt0120188,9acYlZC9RLI,"The soldiers distribute some food and water to the people, but when things get complicated, they have to leave everyone behind." tt0033804,Q_aPecwFK08,"Jean flirts with Charles, giving him some new nicknames." tt0120188,qhH634B4jGg,"Soldier turned thief Troy finds a cell phone with enough juice to call his wife, just before he gets pinched by the bad guys." tt0033804,fZ7X5JDKmSI,"Sizing up her mark, Jean makes sure that she's the only girl for Charles." tt0120188,MEl5g32bzMY,Vig apologizes to Elgin and wants to help Gates finish the mission. tt0070047,5xiAs8GGqD8,"Father Karras tries to talk some sense into Chris, but a mother knows her daughter...and this isn't it." tt0070047,PcBKId4l6LA,Chris is shocked by her daughter's cry for help and what she finds in her room. tt0070047,g5m411zcNA4,The psychiatrist asks sweet little Reagan if there is someone else inside her and her answer is yes. tt0070047,Nd5HqEJuY1g,Chris MacNeil doesn't believe Dr. Klein's diagnosis that her daughter has a rare brain condition. tt1055292,swpveBgb0Zs,Holly is taken out on a date by Sam and Eric acts a bit jealous. tt1055292,ZZGHXZmxlZA,Holly is impressed with Eric's pick-up lines as he totes the baby around the grocery store. tt0070047,C_4mdGA9ehk,Chris MacNeil comes home only to be visited by Chuck with the untimely message of Burke's death. tt1055292,DnYv2MyCXss,"Needing a babysitter, Eric tries to pawn off the baby to Walter the cab driver." tt1219342,9CmgJI8aGDg,Ezylryb trains Soren to trust his instinct when flying through a storm. tt1055292,W6IeoTNRVf4,Eric and Holly change a baby's diaper for the first time. tt1055292,4Albtnu3zyQ,Holly and Eric try multiple tactics to soothe a crying Sophia. tt1219342,HWFpzw87VZM,The Echidna helps lead Soren to the Guardians. tt1055292,8YSVapFtvtU,Eric and Holly are surprised to learn that they have guardianship together for Sophie. tt1219342,80ZafDq4xq4,Otulissa instructs Soren and Gylfie on the rundown of basic training. tt1219342,p4SqclCqxuU,Digger introduces himself to Soren and Gylfie and leads them to his hollow to rest. tt1219342,OBWwzOCkE_E,Twilight brings home a loud mouth snake named Mrs. Plithiver for dinner. tt1219342,5ZzIGV7JAwY,"Soren plays around with Eglantine, breaking her beak in the process." tt1219342,wq3EAVEnW8Q,Nyra gives a speech to the new soldiers and banishes Soren and Gylfie to work as pickers. tt0840361,zFgFyCSZUvU,Doug and company get into a shootout with the awaiting SWAT team. tt0840361,paNPEeQVCTc,"Krista begs Doug to take her with him, but he insists she stays." tt0840361,uRxCU1MW8B4,Doug visits his dad in prison and raises questions about his mother. tt0840361,dLjnIpWhLZ4,James lets Doug know that he'll die in a shootout in the street before going back to prison. tt0840361,BJ3BAzRulPY,Agent Frawley coerces Krista to snitch on Doug by bringing up her drug dealing. tt0840361,NrDO7L8jXWo,Doug tells James that he's leaving the criminal life behind. tt0840361,t9eDVFrQDXM,F.B.I. Agent Frawley intimidates Doug during an interrogation. tt0840361,FnmVnBcfpWw,Claire tells Doug how she was taken as a hostage and released during a bank robbery. tt0840361,-o1N2unFkSs,James expresses concern to Doug over a potential witness to their crime. tt1322312,Ya00KlBMEyc,Corinne questions her sister Erin about her dating life and the worries of a long-distance relationship. tt1322312,JMBzKJj-nIE,"Garrett has a private talk with Erin's protective sister, Corinne." tt1322312,mm93ELyLN1w,"As Erin and Garrett begin to make love, they fail to realize that Phil is eating a late night snack." tt1322312,hERyYjy3O3U,"Box explains why he sports a mustache, namely to attract older women who long for the 1970s or 80s." tt1322312,eK5PghRFnBI,Garrett uses a tanning salon for the first time. tt1322312,unl0GXfJRLA,Garrett catches up to Erin at the airport to express how crazy he is about her. tt1322312,ftAorMqqjy8,"On a romantic date, Erin and Garrett share a bottle of some really bad wine." tt0979434,lhHv2EyaaNc,Kevin learns that Reverend Taylor would like a piece of his winnings to build a new church. tt1322312,MfBkwdh4GU4,"As Erin and Garrett begin to hook-up, Dan plays some loud make-out music." tt0979434,OkvebeqIrqk,Kevin realizes that someone knocked him out and stole his lottery ticket. tt0979434,hW1KqOVCeKw,"Kevin receives some much-needed advice, and support, from Stacie." tt0979434,wV-0rTzEedk,Jimmy takes Kevin and Benny on a shopping spree. tt0800039,hVQT9mDDeJo,"Peter has some awkward encounters in yoga class with the instructor, Sarah and Aldous." tt0979434,X-_LZp9jUgQ,Kevin and Benny are introduced to Jimmy the Driver. tt0979434,6bANKvFGxGU,Kevin shares his concerns with winning the lottery with his friend Stacie. tt0979434,P9Fg8M0JCHE,Kevin and Benny are frustrated when they learn that the lottery ticket office is closed for the holiday. tt0979434,oNGklu1muXI,The convenience store clerk makes fun of Kevin and everyone else at the store. tt0097351,b_wnD6jxREU,Ray's dream comes true when he gets to have a game of catch with his father. tt0979434,kGpNxt3bD6E,Kevin and his Grandma can't believe their fortune when they win the jackpot. tt0979434,9sx5r-n9uYE,"Kevin learns about Mr. Washington's boxing history, including how he got his unusual nickname." tt0979434,0RlJNtKi_Pc,"Grandma asks Kevin and Benny to play her lottery numbers, which are divinely inspired." tt0817177,x0Fnxdv5rJ8,Bryce and Juli find it hard to ignore one another while at lunch with other people. tt0817177,nOQCz7STLIY,Bryce realizes that he really doesn't hat Juli. tt0817177,be-Ou9Xkh48,The Bakers are not thrilled about going to dinner with the Loskis. tt0817177,M4UpIJYB9Xo,Juli's dad asks her for some details about Bryce Loski. tt0817177,QfVKP_ibzsI,Patsy tells the family her plans for a dinner with the Bakers. tt0817177,uNPU0cPPsmA,Young Juli reflects on how she met Bryce Loski. tt0817177,5aa_kvfMxBs,"Young Bryce meets Juli Baker, who holds his hand." tt0817177,CdQ7AbtXZaw,Bryce and Chet reminisce about Juli. tt0446029,mRoffE53BJk,"Scott meets Roxy Richter, who fights with Ramona." tt0817177,UgFBbUinHSw,Bryce tells Chet about Juli Baker. tt0446029,XjTFVcgR0qE,Wallace gives Scott some love advice. Scott receives a call from his ex-girlfriend. tt0446029,IRvVdVENFmo,Scott has a distressing phone call with Gideon Gordon Graves. tt0446029,vqqGZBRBLcM,Scott is threatened by Todd Ingram. tt1287468,a88BNDMlPSE,Diggs confesses his crush on Catherine believing that they both are about to die. tt1287468,n4Mohc3SrHs,"Peek shows Diggs his latest innovations, including a cat mask and a dog collar." tt1287468,05nQ6FtAaYg,Kitty describes her plan to drive dogs mad through to a tied up Diggs. tt1287468,Dj8hhzx9Sfk,"The dogs seek out Mr. Tinkles, an imprisoned cat, for advice on how to stop Kitty Galore." tt1287468,gGKNhGbPp6Y,The dogs intercept a transmission from Kitty Galore declaring war on dogs. tt1287468,uvPjPzmUC7w,Butch gives Diggs a tour of the dog headquarters. tt1287468,GLH6JPoOLJY,Shane has to lock up Diggs the dog and revoke his police privileges. tt1375666,yycyKndEWcA,"Caught in a gunfight, Arthur is given some advice from Eames." tt1375666,9U7_NBIHsQk,Ariadne experiences her first shared dream with Cobb at an outdoor cafe. tt1375666,RMGsvyrEB-E,Cobb goes to his old mentor Miles to find an architect who can help him on an extraction job. tt1375666,fpXngRB-VTw,"Cobb explains his role of extractor"" to potential client Saito." tt1075747,uySQvxQHbdI,A train heist is led by Burke who blows up the passenger car. tt1075747,T04I6guPabI,Jonah and Leila shoot their way off of the boat before it blows-up. tt1075747,EY2tpd1CejA,Leila picks her way out her handcuffs impressing Jonah. tt1075747,bNkeBqdWGzE,Jonah Hex blows away a bar patron who insults his face. tt1075747,wuZwdLfxTQ8,Jonah Hex takes on eight men by himself. tt1017460,qdrvmgnw1YQ,Elsa is trapped in the lab as the newly born creature runs around. tt1017460,2g7MZJfmBA4,"Elsa tries to show affection towards Dren, but Dren has other ideas." tt1017460,On364s5HiSk,Elsa disturbs Clive when she treats the hybrid creature like her own child. tt1261945,DCSeUhWzdBM,"At girl's night out, Samantha schedules a late night dinner with Rikard for the following evening." tt1017460,KdMZwqYiRH8,"Unexpectedly, the hatching fetus grabs hold of Elsa, forcing Clive to break the incubator." tt1261945,eolBcBPpwyE,"In an Abu Dhabi marketplace, Carrie has a chance encounter with an old romantic flame, Aidan." tt1261945,2ovvUa5WXU4,"As the gals enjoy a desert picnic, Rikard Spirit catches the lustful eye of Samantha." tt1261945,nImG5bpVpVI,"In the Arabian desert, Samantha complains about having hot flashes, and Charlotte is excited to have phone reception." tt1261945,PnMJqjE52VQ,"At brunch, Samantha invites the girls to an all-expense paid vacation to Abu Dhabi." tt1261945,rpvLdqBrY8s,Miranda complains about work as Steve provides some supportive advice. tt1261945,YHJnS2dsT-Q,Samantha lists her expanding vitamin routine to Carrie and Miranda during brunch. tt0480255,3oLuIPYxGpE,"The team calls in an airstrike, but then discovers innocent children at the site." tt1261945,-qG1Hke8w_8,Carrie and Big exchange anniversary presents. tt1261945,JCruFiGN5h4,Carrie and her friends have a laugh as they hunt for a wedding present for Anthony and Stanford. tt0480255,9Ihxdc2RbIE,Pooch encourages Roque and Clay to apologize to each other. tt0480255,AoRafeVBNvc,Aisha's cover is blown and she fights Clay. tt0480255,ExI6DdBEu4c,Aisha annoys Pooch while taking the armored car airborne. tt0480255,7hKcWzt4rBA,The team finds a creative way to get a helicopter. tt0800320,9HGMxZEl60k,Zeus unleashes the Kraken on the human population. tt0800320,vvDkLhvUa2o,Perseus and his men take on Medusa. tt0800320,oD4UHPNEZek,Perseus gives a rousing speech to his men before entering Medusa's lair. tt0800320,k1pv94Y0fbw,Io preps Perseus for his confrontation with Medusa. tt0800320,CJBoHk_Ld1g,Perseus battles Calibos. tt0800320,KbKQQZsQJwk,Perseus and his men battle a giant scorpion. tt0800320,YIZlw1Ou77Y,Draco attacks Perseus to reveal his God-like abilities. tt0054215,Nv88ASiLmgk,"Norman debates sending his mother to the ""madhouse.""" tt0054215,I9mJ2oBONug,Marion Crane gets to know Norman Bates. tt0800320,-98BSUhcZtY,"Perseus refuses his father Zeus's offer of sanctuary, opting to live, fight, and die with his fellow men." tt0800320,A-FV2T68Bz4,Perseus learns that he is the son of Zeus from Io. tt0800320,82KgLj5UKUc,"Despite Andromeda's plea for humility, Cassiopeia cries out, ""We are the gods, now.""" tt1385867,Y3Ij2iWHFV0,"During an emotional victim's account, Paul can't stop himself from eating chips." tt1385867,rm49NpSVgo4,Dave gets under Paul's skin when he begins to repeat everything he says. tt1385867,ozAXbxleK-8,Paul confronts Debbie when he finds an empty champagne bottle. tt1385867,-C7Fcg58rZU,"Paul loses his cool when he stops a very young car thief, Tommy." tt1385867,DWl0gnig_X8,"When Laura hears the news of an intruder, she decides to take matters into her own hands with a really big gun." tt1385867,sUhg39GEqGA,Paul interrogates a suspect using movie quotes to the chagrin of his partner Jimmy. tt1385867,ZKDQJGSNJag,"While Jimmy is upset about being suspended, Paul is excited about making it on YouTube." tt0817230,4qg64Ml2OdE,Jason and Liz try to enjoy themselves while being sardined in at a busy restaurant on Valentine's Day. tt0817230,NsQ4dm3q8f0,Kara is in deep despair because she feels she is the only one that will be alone on Valentine's Day. tt0817230,35RzyYwEnH0,Kate and Holden get to know each other on a flight. tt0817230,E_wUrAXTbPo,"Paula meets the new temp, Liz, and they realize they might just get along." tt0817230,_Xe_d5rtWpQ,Felicia tells a TV news reporter the story of how she got together with Willy. tt0817230,mTVRho54mAg,Morley accepts Reed's proposal. tt0817230,dSRxB66FLV4,Morley tells Reed that she would like to keep their engagement a secret. tt1226273,WMhx09c4TcQ,Thomas and Jedburgh discuss theories about who may have killed his daughter. tt1226273,7eng0FHSiNk,Thomas reveals to the Senator the facts about his daughter's murder. tt1226273,M1VNPTj-1uc,Thomas turns the tables on two men following him. tt1226273,udn4UB_EZ1E,Thomas Craven investigates the company where his daughter used to work. tt1037705,aZiDvfhRpz4,Solara makes the most of her resources and is able to flip over one vehicle just before exploding another. tt1037705,vdpUDOxQ0ao,Martha and George show proof that they are resilient. tt1037705,mAs4z9GV84Q,Carnegie and Eli each explain what the book means to them. tt1037705,BW4-PA9Xksw,Eli barters with an engineer for a charge but doesn't trust him enough to leave the device unattended. tt1037705,ZERmWM-OrK0,"Solara wants to see the book, but Eli isn't having it." tt1037705,DqHxOQWW_Nw,Carnegie explains that the book is a weapon. tt1037705,fvuqUVSwpPY,Carnegie wants to recruit Eli. tt0988045,jb0Cjzd2lKU,Holmes and Watson try to save Irene. tt1037705,FRaIvI54IOw,Eli warns his enemies in the room of the butt-kicking to come. tt0988045,1WybekasErM,"Irene tries to make her visit with Holmes a social one, but he keeps it all business." tt0988045,3-EGP38lS5E,Holmes points out why Watson should be more concerned with a dead man's reported reappearance. tt0988045,7RLU1N4-8SM,"Watson voices his frustration with all of Holmes' habits. In typical fashion, Holmes turns the situation on Watson." tt0988045,fbYS5f3GFek,Irene asks Holmes for help. His suspicious nature radiates through. tt0052357,tesqTwX7cpc,Scottie convinces Judy to do her hair like Madeleine and is overwhelmed by her appearance. tt0988045,YjaEc9KUlBI,Blackwood reveals that events to come will bear more gravity than Holmes is expecting. tt0988045,mkn6s-f8PqM,Holmes calculates how he is going to pummel his opponent before doing so. tt0988045,DQO3aIpmIDg,Irene mugs her mugger as Holmes looks on. tt0322589,0lNb6NAV6jg,Honey slaps Michael when he makes an inappropriate move on her. tt0322589,aPvptS4t6RA,Honey is shocked when Michael gets her a gig as a choreographer. tt0322589,3KNEj-B5HB8,Missy Elliott laughs at Michael's choreographer and tells him to get Honey Daniels. tt1057500,KE-ok-meF3E,Francois gives the team a pep talk during the game. tt1057500,0Z286w5pRSo,Nelson Mandela and Francois talk about what inspires them. tt1057500,zH57XU378EI,"Aware of media presence wherever they go, Springbok team members play rugby with a group of children." tt1057500,yFMFSxDF3uU,Francois admires Mandela's forgiveness. tt1057500,Xekcysu64Rg,Francois sees the world through Nelson Mandela's eyes when he takes a tour of his old jail cell. tt1057500,3m1JShNLCYA,Nelson Mandela talks about times when the outside world makes you expect more from yourself. tt1057500,25Lb1YpSEic,Nelson Mandela asks to be trusted in his strategy. tt1057500,_fibH0WUWYg,Nelson Mandela sticks to his decision of having the Springbok rugby team represent the country. tt1057500,HHqi6ZB_F0U,Nelson Mandela shares why forgiveness is essential for the country's future. tt0878804,rzXNFMVS7PM,Sean and Leigh Anne Touhy discuss becoming Michael's guardians. tt0878804,9DaWcHIGk7I,Leigh Anne hires Miss Sue to tutor Michael in spite of her confession that she is a Democrat. tt0452694,o8ETRMZt6kg,Gomez recounts how he found out about Henry's ability. tt0878804,1OCmZuUVZfA,Leigh's friends heckle her over lunch for bringing Mike into her home. tt0452694,-85ubSkzSWg,Henry comes back with some future lottery ticket numbers and he wins five million dollars. tt0452694,eVarVWL4PwA,Henry asks Claire to marry him. He no longer feels alone. tt0452694,givOs4_nb-I,"Claire shows up at the library, but Henry doesn't know her. He agrees to have dinner with her so she can explain." tt1186367,8WraflY6rl0,Raizo and Takeshi face-off in a burning building. tt0878804,bQzBPo2qRuk,Leigh gets Mike set up in his new room. tt0878804,TipOwV7y_q4,Leigh gives Big Mike a place to sleep on her couch. tt0878804,pPjYhPGkhGA,"Leigh, Sean and S.J. spot ""Big Mike"" on the road and Leigh offers him a place to stay." tt1186367,RoCmHW-wdtE,Takeshi and his ninjas chase Raizo through a busy street; Mika saves him with her car. tt0362478,s_PLAOcbbzI,"Ryan says he had to kill his wife for his daughter. They stop in front of a man dressed as Santa Claus, and are hit by a truck." tt0362478,mV__PXYxQYY,Arlington calls Norma about police involvement. Danger seems imminent. tt0362478,QbVzoV4GgM8,Steward explains that if the button is pushed than someone in the word will die and Norma will receive a million dollars. tt0362478,yaGbKy7gAkM,Arthur and Norma are given one million dollar and told that the box will now be given to someone they don't know. tt0362478,6HT1K-XoREU,Arthur and Norma discuss weather or not to push the box button. Norma suddenly pushes it. tt1186367,mVcHdILwsXQ,Takeshi and his gang attacks Raizo on the docks. tt1186367,EU70jtTYN0E,Lord Ozunu teaches Raizo how to fight without his sense of sight. tt1130080,IgBQwCBi8vI,"While planning the FBI raid, Mark thinks he'll still be working for the company afterward." tt1186367,SjNu8J7JQMk,Mika frees Raizo seconds before a ninja attack. tt1186367,t6FIm6TCkCE,Raizo practicing at home. tt1058017,kYcvOPf4GqE,"Mark tells Anna no one should have sex until they're married, just before opening her ""birthday coupon for sex.""" tt1130080,ST9DTmR2xG4,Mark reveals that he told a lot of people at the company about the secret FBI raid. tt1130080,uAS_k95ZRUk,Mark inspects a lamp for a hidden camera and adjusts the recording device in his briefcase while a meeting is going on. tt1130080,yVE7YDYgtHE,Mark reacts to the decision not to work with the FBI and then takes a call from the FBI. tt1058017,1JVewdBZyYA,Mark's co-worker Brad drops by to say goodbye and tell him that he hates him. tt1130080,D_Acqs7T5-0,"Mark thinks that after taking down the company, they will make him president. His wife disagrees." tt1130080,FF9t_GekWjU,Mark meets with an FBI agent and admits to price fixing in the Lysine business. tt1058017,VpehD7unUGw,Mark calls Anna to ask her out on a second date. tt1058017,gILsE7uSUkA,Mark's boss Anthony reluctantly fires him. tt1058017,3DmchoOLczY,"While Anna is on a dinner date with Mark, she tells her mom her true thoughts about the date." tt0386117,wz_y0fibuQE,"Max rallies Carol, KW & Douglas for the dirt fight; Alexander attacks." tt0386117,f58Ba78abHg,Carol and Max talk about the sun dying. tt0417741,Doq_EUCSB5k,Ron accidentally eats a love potion intended for Harry. tt0386117,RQH_q5kOlCE,Max first meets the Wild Things and Carol invites him to destroy stuff with him. tt0166924,je6L2clZOGM,"A singer collapses during a stunning performance of ""Crying,"" but her singing continues." tt0417741,KM9SPmAD6M8,Ginny helps Harry quiet his Quidditch team; Cormac steps on Ron's turf. tt0417741,kI9rnng7ns0,Dumbledore shows Harry the memory of the first time he met Tom Riddle. tt0417741,AXukn4q48sY,Harry confronts Malfoy in the lavatory. tt0417741,V-GgWCBVhrg,Harry and Hermione are forced to find back-up dates to the Christmas party. tt0166924,6DZ7DfrTDds,"Rita and Betty attend the eerie club ""Silencio"" where the MC explains that there is no band." tt0166924,aeevxJaJl1U,Betty auditions for a film and knocks it out of the park. tt0166924,rNjX3tQMygk,Adam meets the mysterious Cowboy who asks him to cast Camilla in his film. tt0166924,e4pMjAtdmO0,An old lady comes to Betty's door with a creepy warning. tt0166924,Sk990pKn7vY,"When Adam catches his wife cheating on him, it's Adam that gets thrown out of the house." tt0103919,1atAz0BIlm0,"Helen discovers Anne-Marie's child, only to find that Candyman wants both of them to die in a burning fire. Helen sacrifices herself to save the child." tt0103919,TrqpRcocmrw,Helen is seduced by Candyman while inspecting his lair. tt0103919,B3rFARaSAws,Professor Purcell tells the legend of Candyman. tt0166924,yusKlHgtvIE,Dan tells Herb about his nightmare involving the Winkies diner. tt0103919,920BmIe4nN4,"On her way home, Helen has a visit from the legend himself, Candyman." tt0103919,vG6bW7_-CRQ,Helen investigates the site of an alleged Candyman attack in a public bathroom. A swarm of bees are found in the toilet. tt0103919,77XaekZUvL0,Helen notices a figure in her photograph before an encounter with the Candyman. tt0887883,7JlG7q-ld8M,"Posing as Mr. Black,"" Chad meets with Osbourne to make a trade." tt0103919,3mycwnQWlug,"Researching her thesis on urban legends, Helen interviews a student who recounts what she has heard of the mysterious Candyman." tt0887883,c38HJR-9vhU,"A hidden Chad startles Harry, who reacts quickly." tt0887883,7kMyom2sHyA,Chad is fired up about his coworker's discovery: a CD with classified information. tt0096320,EnFcN2CMNps,"After ripping his shirt, Julius tries on his first t-shirt." tt0887883,hSe6p6SLuvI,"Harry and Linda bond over Japanese food, then head for the bedroom." tt0887883,mO8roISHjJo,"Osbourne is ousted by his higher-ups at the CIA, allegedly for his drinking problem." tt0887883,q6zi7XGjQQw,Chad drops in on Linda with news about their top-secret CD. tt0093148,PJkmvYEqRVE,"George gives Harry a proper goodbye, and Harry returns to the woods to join his family of sasquatches." tt0887883,LUi7mkGXDRo,Linda undergoes a head-to-toe evaluation by her cosmetic surgeon. tt0093148,1d8oqIXtjdo,"Desperate to save Harry from hunters, George slaps Harry and yells at him to make him return to the forest." tt0093148,qBFSCbptrJk,"Dr. Wrightwood tries to convince the Hendersons that there's no such thing as bigfoot, unaware that Harry is right behind him." tt0093148,x421Na9VfNE,"George finds Harry in a dumpster, then uses a garbage truck to escape, unaware that Jacques is in the dumpster with Harry." tt0276751,euorMDBYxrk,"Fiona confronts Will about his after-school meetings with Marcus, but when he promises to get out of their lives, she doesn't let him off that easily." tt0276751,gWB-uAtqUIs,Will admits to Rachel that he misled her about having a son. tt0093148,nfk-kn7YP04,"George attempts to teach Harry how to sit, while Nancy just wants him out of the house." tt0093148,Y5drWYjmJFY,George and Nancy try their best to hide Harry from nosy neighbor Irene. tt0276751,CJGNkuaveUE,Will meets Rachel at a New Year's Eve party and encourages her assumption that he has a 12-year-old son. tt0276751,42ikB9YlkW4,"Will confronts Fiona about her suicide attempt in front of her support group, and she mocks his pragmatic attempt to fix her problems." tt0040068,kZQwVWTB2hI,"When Chick & Wilbur are cornered by the Frankenstein Monster, Dr. Stevens comes to save the day." tt0276751,74256F5BtiI,"Will describes his strategy for getting through the day, and Marcus calls him out of the blue to arrange a get-together." tt0093148,fpKl9lrLfx0,"Sarah is furious when Harry eats her birthday corsage, and George protects the family by locking Harry inside the house." tt0093148,BxL5O2tuDtk,"George straps Harry to the top of the car, but when Harry wakes up, George slams on the brakes, launching Harry into the air." tt0093148,yJBIO7B_XI4,"On the way home from a camping trip, George hits what appears to be a large animal with the family station wagon." tt0040068,_KpSBVJq7jo,"While looking for Joan, Wilbur attacks the wolf man thinking that it is Chick in disguise." tt0040068,19q6jSWFPCo,"With Wilbur tied to the slab, the monsters wreak havoc in the laboratory." tt0385267,Pqw0GsAAzEo,"Over at Dan's house for dinner, Carter ingratiates himself with Alex through his unfiltered honesty." tt0472062,3FWjipa2Ztw,"Charlie and his friends watch as the television announces the end of the Soviet Union's reign, due to his success in Afghanistan. In a private moment, Gust warns Charlie of the implications of the Afghan victory." tt0040068,C3W5kkZLN50,"Wilbur drops off luggage to Mr. Talbot, but he doesn't realized that Mr. Talbot has transformed into the Wolf Man." tt0472062,4t7GADjRIuA,Charlie and Bonnie are completely overwhelmed when they hear war horror stories from the refugees in Afghanistan. tt0040068,l6NIVn6_m1c,Count Dracula rises from his coffin. tt0040068,l5s3_XV1rkA,"When Dracula wakes the Frankenstein monster, the monster is frightened by Wilbur in a trance." tt0040068,Kr9_dJ6TPPQ,"When Wilbur answers the phone, he mistakes Larry Talbot's wolf man transformation for bad manners." tt0472062,OHNZUmdqdv8,Charlie gets upset when he finds out that Gust bugged his scotch bottle and listened in on his private affairs. tt0472062,wJmIEj-uVYk,"After sleeping together, Joanne tells Charlie her plan for Afghanistan and convinces him to meet with the Egyptian president." tt0472062,sQ_4m2ocxhI,Gust throws a tantrum in the Director's office when he is passed over for a position. His rage leads him to break a window for the second time. tt0131325,pcqaeLRop58,"Bowfinger films Daisy saving Kit's character Keith"" from Slater's character." tt0131325,NQFMeyWVe3g,"Bowfinger and company attend the movie premiere for his latest film, ""Chubby Rain.""" tt0131325,wMgKj3QGv2o,Daisy tries to get Kit to say the key phrase of the movies while cameras are secretly rolling. tt0131325,oFwbpFJpQbg,"Kit gets pulled over by the police, who begin to melt, but Daisy offers him an escape." tt0131325,Q0i1ldFm-oI,Bowfinger directs a scene in a garage where Kit gets followed by a dog wearing high heels. tt0131325,9cb5Ka9SqGM,Jiff is painfully terrified when Bowfinger makes him run across a freeway full of fast moving cars. tt0131325,E6yFlIQxp8g,Bowfinger shoots a scene covertly in a cafe with Kit and Carol. tt0131325,Yrx2bv_LoG0,Kit gets angry when he thinks there's a racist conspiracy against him and takes it out on his agent. tt0131325,SoP7TLCtylg,Jiff is giddy while acting in a scene where Daisy takes off her top. tt0252866,0fwudBWsw9Q,Jim sneaks into band camp to get some pointers from his ex-fling Michelle. tt0252866,KKjCm_IoPRQ,"Stifler prepares for a kinky champagne bath, but instead gets peed on." tt0252866,Z7RKrb4jLOU,"Jim's dad tries to surprise Jim with some beer at his dorm, but accidentally walks in on him having sex." tt0252866,NlSuj6YIG94,"Jim returns home and while looking at an old picture of Nadia, his dad talks about ""the one that got away.""" tt0073195,FpxOLhuNXfM,"Chief Brody targets an air tank in the shark's mouth, blowing the fish to pieces." tt0096969,r0ladY1kwco,"As chaos erupts around him, Ron continues to fire, but is shot in the chest and falls to the ground." tt0073195,pmLP0QQPqFw,Quint meets a horrific end in the teeth of the great white. tt0073195,cW7Q7UySxRA,"In his underwater cage, Hooper struggles to fend off the shark." tt0107290,gTWo9oLJOWk,"Trapped by the Velociraptors, Dr. Grant and the others are saved at the last moment by the sudden arrival of the T-Rex." tt0073195,CwdGYMM2bHM,"To prevent the shark from submerging, Quint harpoons it with a line attached to a floating barrel." tt0073195,dLjNzwEULG8,Hooper and Quint compare scars they've received over the years -- both in and out of the water. tt0107290,dnRxQ3dcaQk,Lex and Tim outwit the raptors that are hunting them and safely escape from the kitchen. tt0107290,nM-RPO10aPY,"Dr. Grant, Tim and Lex run from a herd of small, birdlike dinosaurs, only to be surprised by a much bigger threat - T-Rex!" tt0107290,PscRUlsvhtI,"After being ambushed by raptors in the power plant, Ellie manages to escape. Mr. Arnold isn't so lucky." tt0054215,m7mbDPykHoc,Arbogast interviews Norman about Marion; Norman grows increasingly jumpy. tt0073195,yrEvK-tv5OI,"While out for a moonlight dip, young Chrissy is brutally attacked by the shark." tt0054215,iTLUzEjV3Bg,Norman bristles at the suggestion that Marion fooled him; he won't allow Arbogast to question his mother. tt0054215,iPt2PNpjOq4,Norman pushes Marion's car into a nearby swamp. tt0054215,ghew-s2zPjE,Norman watches Marion undress. tt0052357,P-sWReV2DDQ,Scottie accuses Judy of murder in the bell tower; they are surprised by a nun and Judy jumps to her death. tt0052357,O888bu0QrMg,"While attempting to rescue Scottie, a police officer falls to his death." tt0056869,0fTXzdHoip8,"A frantic mother accuses Melanie of starting the bird attacks, and Melanie and Mitch discover Annie dead on her front porch." tt0107290,d921M-ACMM4,"While attempting to make his escape, Nedry encounters the poison-spitting Dilophosaur with tragic results." tt0052357,GjPCk494e5Q,"Scottie chases Madeleine up the bell tower, then sees her jump to her death." tt0056869,pwOhqGhP-mk,Melanie is overwhelmed by birds in the attic and nearly killed until Mitch drags her to safety. tt0056869,D15HPy4x73g,Melanie takes shelter in a phone booth while the seagulls attack all around her. tt0056869,M0HjlCowwuM,Lydia finds a dead man with his eyes pecked out. tt0056869,IdOF7xg5lug,Melanie watches as an unfortunate accident at the gas station causes an explosion which attracts a swarm of seagulls. tt0107290,v5Co3A3fLBo,"Dr. Grant helps the children escape from the T-Rex, but the lawyer, Mr. Gennaro, is eaten while hiding in the outhouse." tt0107290,JylK4HuKMvQ,Dr. Ellie Sattler examines dino droppings in order to decipher the animal's cause of illness. tt0107290,PJlmYh27MHg,"Hammond leads the visitors, including Dr. Grant and Dr. Sattler, to see their first live dinosaur - the Brachiosaur." tt0054215,0WtDmbr9xyY,Marion takes a shower at the Bates Motel; she's stabbed by a silhouetted assailant. tt0054215,dYDxxHrlmUg,"In Norman's twisted mind, he is Mrs. Bates; her thoughts are his." tt0054215,xWHYmNrAFlI,"Lila comes face to face with Mrs. Bates; Norman rushes at Lila, but Sam arrives just in time." tt0054215,5bieIiX5KLQ,Arbogast enters the Bates residence to question Norman's mother; she's been expecting him. tt0054215,dyxcQ4FV6KM,"From the Bates home, Norman cries out in horror -- ""Mother, blood!"" -- and races to the murder scene." tt0056869,hplpQt424Ls,Melanie and Annie lead the screaming schoolchildren away as the murder of crows attacks. tt0107290,n-mpifTiPV4,"While on the guided tour, Dr. Malcolm flirts with Dr. Sattler by explaining Chaos Theory." tt0056869,Fe3c7Txx0Sc,"When swarms of seagulls attack a children's birthday party, Melanie and the Brenners usher the children inside the house to safety." tt0096874,9tGWHkKzeeI,"Speeding through a tunnel, Marty fights Biff for possession of the sports almanac." tt0056869,ydLJtKlVVZw,Melanie smokes as flocks of crows quietly gather on the school playground behind her. tt0056869,Xei_IKhp9tU,"Melanie considers leaving, but her plans are cut short when swarms of birds fly down the chimney and drive the Brenners out of their house." tt0056869,eHh6bwuPShw,Melanie is ambushed by a seagull and gets a gash on her head. tt0105435,74ocbvwam7c,"The team makes their deamands of NSA Agent Bernard Abbott, and Carl asks for the female agent's phone number." tt0096874,-zIzLRgwdxA,Biff gives Marty a choice: suicide or lead poisoning; Marty jumps to his death...or does he? tt0105435,lNWV7T5KlRE,Blind Whistler gets a driving lesson via radio from Bishop. tt0096320,0sNSVtTcxpo,Julius and Vincent are re-united with their mother. The brothers go on to marry their sweethearts and have twins of their own. tt0105435,KuIheGaiFLM,Whistler helps Bishop navigate his memory of sound from the night before to determine where he was taken. tt0096320,4EUsnCqqc9s,"In preparation for his date, Vince teaches Julius how to waltz." tt0096874,WlcH-5LQbhA,Marty passes a car occupied by himself and a teenage Lorraine. tt0096320,Ky7ncpdpMUc,Julius drives a car for the first time and learns he has a knack for it. tt0105435,3VlyZIywY9c,"Bishop makes a risky call to the NSA about the box, but hangs up before the call is traced." tt0088763,pLRk4xG-JCI,Doc Brown reveals the DeLorean to Marty. tt0096320,uGstM8QMCjQ,"When he walks in on Vince getting beat up by a thug, Julius teaches the thug a lesson he won't soon forget." tt0390022,W0ZgTVoA0eY,"When Don fumbles the football in practice, his dad, Charlie, takes the field to chew him out." tt0204946,GCPMRHNwR8E,"Faced with a difficult situation at the coming Regionals, Cheer Squad discusses the virtues of cheating." tt0087065,gkfAyFT8xGc,"Morris achieves the required high score on the Cloak & Dagger video game, and just as he sees the plans for a stealth bomber, Rice tracks him down." tt0390022,K0qG34a5oqY,"When Charlie catches Don with a girl, he takes the opportunity to shame him for fumbling the football." tt0390022,oHJVJ_MEyQI,Permian loses by inches; the coach and players absorb the loss. tt0390022,o-iPiN_YHjY,"Coach Gaines redefines perfection; he urges his team to ""put each other in your hearts"" before they take the field." tt0099088,1AtE54HpXBM,Doc Brown and Clara say goodbye to Marty before flying away in a train. tt0105435,coDtzN6bXAM,Cosmo discusses the power of money and the consequences it holds with Bishop. tt0076723,GuuUX-4_K-A,"Reg arrives at the train station to meet The Chiefs' new recruits - the Hanson Brothers. Owner Joe McGrath relays a story to Reg about a ""terrible masturbator.""" tt0390022,8CZ-ICxcEYg,"In the team locker room, Ivory makes a fierce speech." tt0096874,Km6bFBSVty4,"When future Marty is goaded into a shady transaction, he loses his job." tt0099088,8ktMe0xclxA,"After Marty helps Emmett save Clara, he is pushed by a train into the future." tt0099088,zJiCswIaIkI,Marty tricks Mad Dog into thinking he's dead... and then knocks him out. tt0096320,Mw1Z2Jlp9Qw,Julius meets Vince for the first time and tells him they are twin brothers. tt0087262,FHNT4E_55jY,Charlie destroys a cinderblock wall and melts the test room in the hope that they will let her see her father. tt0083866,75M1XXEZciU,"Elliot says his final goodbye to E.T., who reminds him that they will always be together." tt0096874,5ztwns5PkJY,A middle-aged Marty and his teenagers eat a pizza hydrated by Grandma Lorraine. tt0083866,6xZif3WmG7I,"After Gertie teaches E.T. how to talk, Elliott learns that he wants to ""phone home.""" tt0083866,a-9990dlfvo,"Just when Elliot thinks that E.T. has died, he suddenly sees the flowers bloom and rushes back to a revived E.T." tt0083866,VrVEHszxL7E,"While trick-or-treating, E.T. sees a kid dressed as Yoda and thinks it is one of his own kind." tt0083866,TaLsQSCK0Jo,"While drunk"", Elliot gets the crazy idea that all the lab frogs need to be set free. Chaos erupts. He kisses a pretty blonde girl." tt0083866,0xWMqsZOYWg,"As E.T. raids the refrigerator at home, he starts to drink beer and Elliott feels the drunken effects in class." tt0088128,GzeNMZcP8Xg,"On the bus ride to school, the Geek makes his move on Sam." tt0088128,NWcBwgxUyuM,Sam is upset when her family forgets her birthday. tt0080455,2quc-iQ96R0,"Jake and Elwood pay the church's taxes, but are eventually caught by a storm of armed officers." tt0104231,jFrVoG-edFc,Joseph and Shannon achieve their dream of participating in the Oklahoma Land Rush for a piece of land of their own. tt0080455,LMagP52BWG8,"Evading the cops, Jake and Elwood cause a pile-up of dozens of cop cars." tt0080455,EHV0zs0kVGg,The Blues Brothers play the big show and bring the house down. tt0088128,0IWdfqsImMU,Sam and her friend take a hellish bus ride to school. tt0080455,eGu2camh0WA,"The Head Nazi catches up with Jake and Elwood, who pull off some defensive driving moves to escape." tt0104231,SldtDNNTA2s,Joseph declares his love for Shannon and they stake their claim together as the land rush riders bear down on them. tt0104231,WULhkipzltU,"Joseph fights Stephen and goes to claim his land, but he is severely injured." tt0080455,RdR6MN2jKYs,The Blues Brothers play a country bar and have to adjust their musical choices accordingly. tt0080455,qdbrIrFxas0,The Blues Brothers stop at Ray's Music shop to find some quality instruments and get a toe-tapping demo from the owner. tt0104231,HlXsMMnAlmU,Joseph is upset with Shannon dancing. She convinces him to fight for a large prize so that they can achieve their dreams...and be together. tt0056592,FROgIia2cb8,"When Jem and Scout get attacked in the woods on Halloween night, Boo fights and saves them." tt0056592,iRmIef02Ajk,"Scout meets Boo Radley for the first time, and they are very happy to see each other." tt0080455,ZTT1qUswYL0,Jake and Elwood drive some Illinois Nazis off a bridge. tt0104231,mHh8PKWMQEw,"While snooping through someone else's house, Joseph and Shannon pretend they are the owners for once." tt0056592,44TG_H_oY2E,"When Atticus cross-examines Mayella, he proves that Tom is only right-handed, and Mayella has an outburst." tt0056592,q7CX_5D6y6E,The black audience members in court stand in respect for Atticus while they watch him from above. tt0088846,aErDEFpoD_0,Sam is brought before his friend Jack Lint to be tortured. tt0056592,8MmtVx1A8BA,"In his closing statements for the defense, Atticus, tries to convince the jury to believe Tom Robinson." tt0056592,oaVuVu5KXuE,"When a mob interrogates Atticus, the children show up and Scout's kindness and innocence convinces them to leave." tt0080455,IIdGxR-aU6o,"Looking for a shortcut, Elwood drives him and Jake through a shopping mall, demolishing everything with cops on their tail." tt0099329,3Nzc3Rezt3w,"Cry-Baby and his band rock on stage, and he invites Allison up for the big finale." tt0080455,ujxDA9VsQG4,Jake and Elwood meet with Sister Stigmata and get kicked out for their bad language and bad behavior. tt0083866,ewkroL1cP_Q,"Elliott and his family wonder out loud what the creature might have been. When Michael's teasing goes to far, Elliott lashes out." tt0104231,20M_teQf-l8,Joseph becomes a prize fighter in order to put food on his table. tt0088846,olXUIcb80N0,"Harry disposes of the vengeful Central Services techs with a creative, though wasteful, solution." tt0099329,sTDhNLLglf8,Cry-Baby and Allison share stories about their lives growing up as orphans. tt0119528,pnaWqq2eRcc,Fletcher tries to make amends for letting down his son yet again. tt0056592,guMVb47aD-k,Bob Ewell confronts Atticus and asks him if the rumors are true - that he believes Tom Robinson is innocent. tt0104231,1O7AX7tqEHE,"Shannon explains why she is going to America and invites"" Joseph to come along as her escort." tt0088846,KyHilwSRo28,Sam and Jill fight at the lingerie store where they meet ailing Mrs. Terrain. tt0088846,mS5WLkb_Cxk,Sam is baffled by the moving desk in his new office. tt0088846,SbYzo8L9DLc,Sam goes through hell to convince Jill that he loves her. tt0119528,1jQP0Y2T2OQ,"With Mrs. Cole on the witness stand, Fletcher proves that her prenuptial agreement was invalid." tt0088846,dht_3NziwSw,"Sam Lowry has an illegal visitor, to fix his heating problem." tt0088846,0B61_5sRoBI,"Two technicians from Central Services pay Sam a visit, but are foiled by paperwork." tt0322589,f_GI8syIgIs,Honey listens to Benny talk about his lack of hope for the future after she choreographs Tweet's music video. tt0088846,Bnx95KyQEAA,Mrs. Lowry undergoes a bit of plastic surgery to Sam's horror. tt0119528,Zh6NzOHOU8s,"Fletcher steers his son through his law office, lying to nearly everyone he encounters." tt0322589,fbbatiKJ6rQ,"When Honey comes across some kids beat boxing and break dancing in an alley, she invites them to come to her hip hop class." tt0372183,DrIsPRZL578,"Aiming for Jason, Kirill accidentally shoots Marie, sending the car off a bridge and killing her." tt0352248,Dk7DE4FghW0,"Jim Braddock is named the new Heavyweight World Champion, defeating the reigning champ Max Baer." tt0352248,HGU3PRBxQiw,Braddock stays strong as he fights the champion Max Baer while his manager and family nervously watch and listen on. tt0206634,SMJqQ3VrcCA,Theo gets Kee and the baby to the boat. tt0352248,83Jr_6b9pHA,"While Braddock prepares for his big fight, Mae makes a surprise visit, offering her love and support." tt0206634,YBzWTIexszQ,Theo escorts Kee and the baby out of the building past soldiers who lower their guns at the sight of the miracle. tt0352248,JCKh3Jsge4E,"In a press conference, Braddock keeps things lighthearted until a reporter asks Mae about Baer's dangerous past." tt0352248,zpmLSGixYwM,"Braddock watches the film of Baer killing a man in the boxing ring, and despite warnings, he remains headstrong." tt0352248,G-ZJbAdw1Rw,"Braddock nearly loses the fight to Lasky, but finds the strength to continue and win." tt0352248,-3ywc_7_IE8,Braddock has an impressive defeat over Corn Griffin. tt0206634,ioTMlrCoU2E,"Theo watches from the forest, unable to help, as Luke murders Jasper." tt0190590,IZocpwWLsyE,Everett and Delmar share a picnic with a charismatic bible salesman with a hidden agenda. tt0352248,lNXTKVxOmfk,"Braddock in desperate need for money, asks for help, and is given the last bit he needs from his manager Gould." tt0206634,-LjxKR0q7Yo,"When the car won't start, Theo, Kee and Miriam slowly roll away to escape." tt0190590,p56k6QCjJnc,Delmar panics when he can't find Pete and tries to convince Everett that Pete has been turned into a horny toad. tt0206634,XoWvE383hm4,Theo helps deliver Kee's baby and she gives birth to a beautiful baby girl. tt0206634,VJivXSErhB8,Theo leaves a crowded cafe moments before a bomb blows it up. tt0206634,NdVRDlmWhg4,The stakes become clear when Kee reveals to Theo that she is pregnant. tt0218967,N7UtdTiuO3w,Jack catches Kate at the airport and gives her the same choice as she once offered him -- don't get on that plane tonight. tt0088846,nSQ5EsbT4cE,"To the horror of his family, Mr. Buttle is arrested as a terrorist on Christmas Eve." tt0190590,apq46lA0uSM,"Everett and the boys meet George Baby Face"" Nelson, who joyfully shoots his machine gun at cops and cows alike." tt0218967,5tbx8osZ87M,Jack tells Kate to remember him as he is at that moment and she promises she will. tt0218967,jxsvzuRl1O8,"Jack tries to sell Kate on his new career and life plans, but she is not buying." tt0218967,n0ZGibTDo9A,"Kate tells Jack she loves him and that if it is important to him, she will move to New York for him." tt0190590,fgcWfVvT_UM,"Everett and the boys pick up Tommy Johnson, a guitarist who sold his soul to the devil." tt0440963,DUd5RPVDjPY,"Bourne coaches Ross through the Waterloo Station trap and takes out four men, but gets ID'd in the process." tt0218967,BCTFuIw1Bv8,"During a heartfelt dinner conversation, Jack realizes what is important to him for the first time." tt0088763,S1i5coU-0_Q,Marty introduces rock and roll to the young people of 1955. tt0218967,aGMhMCHyM3c,Jack tells Annie that he isn't her real dad and she decides he is an alien. tt0218967,SOcgrVL8Dg0,Jack's anniversary surprise to Kate makes him realize how much she really means to him. tt0440963,Mwmy0awMZXY,Bourne barely evades the Russian police while experiencing flashbacks of a mysterious program. tt0440963,tXp79rAS5JQ,"Vosen shoots Bourne who falls into the river, but the damage is done. Blackbriar is exposed and Bourne is not found." tt0190590,tPImdMknAO4,"When Pete's cousin turns them in for the bounty, Everett, Pete and Delmar get cornered in a burning barn until they're rescued by Boy Hogwallop." tt0258463,XhpJ11dNp2o,Bourne rides a corpse down a stairwell; Manheim assassinates Conklin. tt0088763,zZJ7cq6T3v4,Marty punches Biff and gets away on a skateboard - that hasn't been invented yet. tt0258463,PeGDBR0Ej_0,A fisherman tends to the bullet-ridden body of Jason Bourne. tt0088763,QzklMXES1BU,George saves Lorraine from Biff while Marty tries to get out of a locked car trunk. tt0088763,f-77xulkB_U,"With Marty's future knowledge of a storm, he and Doc concoct a plan to harness 1.21 gigawatts for the DeLorean." tt0088763,SR5BfQ4rEqQ,Marty needs to convince Doc that he is from the future so Doc can help him get back home. tt0101921,w-VBcSukH_8,Ed comes home to find that dinner isn't on the table and his wife Evelyn remodeling their house. tt0088763,95_DB6GgLQs,Marty meets his young father at the diner and watches him get bullied by Biff. tt0088763,f2c-tMZSZtY,"As Marty documents Doc's departure in the DeLorean with a video camera, the Libyans find and shoot him." tt0088763,KPeHFDxKUP4,Marty gets in the DeLorean to escape the Libyans and goes back in time to 1955 when he hits 88mph. tt0190590,drvaZz3FWOI,"The boys make a run for the train, but when they don't quite make it, Everett elects himself leader of the gang, much to the dismay of Pete and Delmar." tt0099141,QAygM0YfY10,Rick and Marianne must escape by plane when they are attacked by Rick's enemies. tt0099141,V3RHvyrqTak,Rick helps Marianne /*259*/) help him by tempting her with the promise of marriage and children. tt0099141,kxtAmNDjfj4,"Rick visits an old flame who removes the bullet from his butt, making Marianne very jealous." tt0099141,jlFLcKaBLz0,"When Rick and Marianne share the single motel bed, their platonic conversation takes a romantic turn." tt0099141,1VEcaRh4c1A,"Rick is embarrassed in front of Marianne when some old friends recognize him as gay hairdresser ""Mattie.""" tt0099141,ex6X6rXcXKQ,"After escaping the cops, Rick and Marianne find themselves in the railway tunnel in danger of getting hit by the train." tt0099141,N9hJ6pUeqxQ,Rick and Marianne embark upon a clumsy car chase after ditching the cops. tt0099141,-rq6IBVPcBU,"Marianne thinks Rick is exaggerating when he advises her not to open the door to room service, but she soon finds that he was right to worry." tt0068699,o9splceYBXQ,"The morning after the nighttime reckoning, The Stranger rides out of Lago as mysteriously as he arrived." tt0095253,q_215iQ7KDs,Chet gnaws and sweats his way through a 96-ounce steak. tt0068699,sOLnb7BrMC8,The Stranger gets his final revenge on Stacey Bridges as the town of Lago burns around him. tt0095253,OBJ-MpPBDug,"The bald bear terrorizes Chet and the others, till Wally arrives with his shotgun lamp." tt0095253,yuI8BfvTwfY,Chet mistakenly pulls the bald-headed bear from the mine shaft. tt0095253,WRR4iYRRBLk,"Chet and Roman do battle with a ""sonar-guided rodent.""" tt0095253,1VZzulIl0DI,"Chet and his son go bear-watching, but their Zagnut bait draws the bears too close." tt0095253,I3K8xBfywg0,The tension between Chet and Roman finally boils over. tt0095253,PAC3F5dQufQ,"In the middle of romantic role-playing, Chet and Connie are surprised by Roman's camera." tt0095253,FvYtbd7YE3k,"Misreading a signal, Roman yanks Chet across the water on skis." tt0118928,D7P4FYWHVYQ,Harry hurries everyone out of the cabin as lava devours it and puts them on a boat to try and cross the lake which is now acidic. tt0118928,S1EsCWrUY84,"Paul tries, in vain, to make it over the bridge in his van as a torrent of water is sweeping it away." tt0118928,r421zjv-hoE,"Harry manages to drive his family in a truck across a large patch of lava, and even make a rescue." tt0118928,vfIUYDjo8WM,Harry drives flat out as the volcano finally blows it's top and the pyroclastic cloud chases them into a mine shaft. tt0076723,IUbn5ss8j9c,"The Hanson Brothers show the audience a violent, hilarious disgrace on the ice." tt0119174,dXBUdCvqpNg,"Nicholas jumps to his death, only to land at the birthday party Conrad has waiting for him." tt0034240,W7WmhkO_GWI,"When Sully pitches his movie about human suffering, the Studio Execs challenge that he knows nothing about it." tt0034240,zhnB6vIifkc,Sully comes clean about his experiment and the Girl asks to come along. tt0087262,nyn04CxGBLs,John ambushes Charlie and Andy and shoots them with tranquilizer darts. tt0096874,fCjsUxbNmIs,"Just as Marty is readjusting to his romantic life in 1985, Doc whisks him away to the future." tt0087065,L-IoFdCv_Hs,"Jack tells Davey to hide in the trunk of Rice's car, but Davey gets scared when he finds Morris already in there." tt0087065,duT6QvbGAls,"Davey finds refuge with a kindly old couple, but soon discovers their true nature." tt0276751,KXYxfwVioeE,"When Marcus accidentally kills a duck by throwing a very dense piece of bread, Will steps in and saves him from the law." tt0390022,zi-vtjCN9Rw,"With Boobie out for the season, Coach Gaines has a frank talk with Mike about leading the team." tt0390022,WOjsnY1P7lk,"Star player Boobie suffers a dramatic knee injury, worrying Coach Gaines." tt0204946,Mo_AVIt369k,Courtney and Whitney tell Torrance about cheer sex. tt0204946,9UMX4dGRYEw,Torrance and Cliff brush their teeth as a way to flirt with each other. tt0390022,_2LMj-4PtdU,"When a doctor tells Boobie his knee injury is career-ending, Boobie accuses him of working for a rival school." tt0204946,Nj-F4OvzyLM,Choreographer Sparky makes his grand entrance... and promptly insults everyone. tt0390022,f_Pc2_cTQnk,"Boobie says goodbye to his teammates, then dissolves in the car with his uncle." tt0087065,AOh4PeDIkWs,"As Jack provides a distraction, Davey shoots Rice." tt0087065,MDC-al-lnoE,"Angry that Jack tricked him into shooting Rice, Davey smashes Jack's toy and Jack disappears." tt0390022,GD-EP3ucPNk,Coach Gaines feels a not-so-subtle pressure from the local team boosters. tt0204946,6Wx2sfjX0qs,Torrance tries to make things right by getting Isis's team sponsored and is rejected. Both teams agree to bring it! tt0096874,d68yRIE9OvQ,"Marty surveys the Hill Valley of the future, marveling at of its technologies." tt0372784,Uk280jVuH1w,Henri Ducard teaches Bruce Wayne about the power of will. tt0087065,Kmn7tIRUImY,"Davey catches up to the MacCreadys at the airport and exposes them, but gets kidnapped in the process." tt0096874,59BWCEaowC4,"Jennifer finds herself in her future home; she narrowly avoids her daughter, Marlene." tt0131857,xtRnl5zHKxc,Remer distracts his opponent with fake breast milk. tt0087262,4sRzks3eR-M,"Charlie unleashes all her power, destroying everything in sight." tt0087262,q5K1fm56gI8,"When Agents from the Shop arrive and shoot Irv, Charlie loses control and sets the men on fire." tt0087262,LixsNtGM8tc,"Charlie aces the test of burning wood chips, much to the excitement of Hollister." tt0045152,TklrBmHo7Do,Cosmo Brown sings about the merits of being a comedic actor. tt0081505,4lQ_MjU4QHw,"Wendy discovers the results of months of Jack's ""work.""" tt0045152,HZNy5irM2YE,"Kathy Selden and Don Lockwood argue the merits of their respective media, stage and film acting." tt0324216,UWjXERbOr70,Erin hides in an old locker and fools Thomas in order to cut off his arm tt0324216,az5NDvQ41ys,Thomas chases Erin into a meat factory. tt0324216,cAM7skQKVk8,"Erin and Andy encounter Thomas, who tries to kill them." tt0266915,LmrLiS3ZWxo,"Detective Carter fights Hu Li, but quickly gets in over his head." tt0266915,5kI7hvWF_BM,"Just when Lee thinks he's safe, he encounters the evil Hu Li and she comes very close to killing him." tt0266915,YFTbj6DJbGQ,"Lee and Carter try to buy some suits, but the overenthusiastic salesman mistakes them for a couple." tt0266915,2qKoFdPJ4rI,Lee and Carter are surrounded by Chinese gang members in a massage parlor and have to fight their way out. tt0266915,EvCuX-oY4_c,Lee scales a bamboo scaffold to catch up with a gang trying to escape. tt0425061,I-AhUVGpGoU,Max has a nightmarish experience with a miniature crossbow in the airplane bathroom. tt0425061,SDls-ZJDLXE,"Acting cool for Agent 99, Max accidentally swallows a blowdart." tt0332452,pLKZ0Adi70c,"Menelaus refuses to let Paris turn his back on their battle, but Hector steps in." tt0425061,6GN20jud6MI,Max nearly kills the Chief by driving through a golf course. tt0332452,r2ucpHgHo1g,Hector mistakes young Patroclus for Achilles in battle and brutally kills him. tt0425061,HG8iPGFvfxU,Max barely navigates a field of laser beams when a rat gets into his suit. tt0431308,f8zZksymCzw,Daniel reads Gerry's last letter aloud to Holly. tt0332452,-BiLCJxpqi4,Achilles defeats the giant Boagrius and claims the first victory for Agamemnon's army. tt0431308,vTp6sSlv_aY,Daniel finds Holly hiding in the closet and divulges the events from his past that have led to his unhappiness. tt0431308,d0xC6yVjU9Q,Holly meets Daniel in a diner to discuss her progress in getting over Gerry. tt0431308,Fz9HnTVx52g,Holly receives the first message from Gerry after his death: a tape instructing her to give up her grief to celebrate her birthday. tt0758794,dAzXib-thq8,Nate Ruffin cracks under the weight of his own feelings of guilt and obligation. tt0758794,LkyMbgKtCAs,The students and supporters of The Thundering Herd make their voices heard. tt0427327,MDwNSR0QmBY,Edna Turnblad celebrates her figure and sings proudly on stage. tt0427327,hL71tkydKPM,Tracy Turnblad makes a surpise appearance on the Miss Teenage Hairspray special. tt0086200,rRLP7r6OuYE,"Miles tells Joel that sometimes, you have to learn to do things you wouldn't normally do in order to fully enjoy life." tt0086200,6NvDZa8hWSs,Joel introduces his father's Porsche to Lake Michigan. tt0086200,I5cS0_op1IE,Guido has a little chat with Joel about stealing another man's livelihood. tt0427327,tdcUxHh3tAc,Edna and Wilbur Turnblad sing about their devotion to each other. tt0427327,1B8juGIsDl8,Tracy and Penny dance to their favorite show's opening sequence. tt0086200,8O8_FMhW9dY,Joel races his dad's Porsche while trying to escape Guido the pimp. tt0427327,UhkYrd0Sg3o,Tracy's mother disapproves of her wanting to audition to be a dancer on a TV show. tt0070034,mCdbIDiib5U,"After Han offends Lee's family and the Shaolin temple, they fight hand-to-knife bladed hand." tt0070034,wxrmK9esHpc,Lee fights several guards in the underground base using a staff and nunchucks. tt0070034,1R5Li-f1IP8,Lee soundly defeats O'Hara in a tournament fight. tt0335438,P9pa_8-WdlU,"Starsky solidifies his undercover persona with a cool voice, but Hutch is not as creative." tt0468569,6c_H45kt1_8,Gordon explains why the police have to chase Batman. tt0335438,uBX2b-zback,Hutch convinces Starsky to jump his Ford Torino off the dock. tt0335438,E6N0yJRAAAM,Huggy Bear poses as a caddy for Reese Feldman to get information about a big drug deal. tt0468569,dJma8pVAvH4,Two-Face exacts his revenge on Batman and continues to torment Gordon and his family. tt0335438,Wj6vEYwwJFI,"Starsky busts Feldman at his daughter's bat mitzvah, but ends up killing her pony." tt0468569,Fzx9OpDH8HY,The Joker mocks Batman's false victory. tt0468569,HIcIIBTJA6o,The Joker manipulates Harvey and gives him the chance to exact his revenge. tt0335438,2-1pev4OEJY,"Starsky and Hutch break into Chau's apartment, but his son throws knives at them." tt0468569,0uSOiu_WUDw,"Under interrogation, The Joker interprets his and Batman's relationship to society." tt0468569,mKl11EzMTAE,Batman's limits are tested when the Joker confronts him with the chance to run him down with the Batpod. tt0468569,Wm_Z34Fyww8,The Joker intimidates Rachel with a knife and tells another tale surrounding how he got his scars. tt0468569,jrIc1SlA7O8,The Joker explains his scars while threatening Gambol with a switchblade. tt0468569,f_XHjqABQQA,The Joker pitches his ability to kill Batman to the mob. tt0209958,RNP4caHnknA,"In Stargher's mind, young Carl saves Catherine from harm as a horse is vivisected in front of them." tt0428803,U5VW0XTFBZo,Baby penguins start to walk. tt0455612,Ae_PWQfCW1Q,Mother penguins see their newborn chicks for the first time. tt0428803,5FtZqXd6IJo,Mother penguins return to the water to find fish to eat. tt0428803,LGAfIx5VQ_M,"Penguins take careful measures to keep their egg incubated, as the freezing temperatures can quickly break the egg." tt0825232,uiy-sT9JgRo,Edward gives a heartfelt eulogy at Carter's funeral. tt0496806,dnIPfZIKYPc,Willy Bank realizes that Danny Ocean and his crew have sabotaged his chance at winning the Five Diamond Award. tt0825232,iioBwO6vnEs,Edward reads a letter left by Carter. tt0825232,oOFm9UaRuik,Edward explodes when he learns that Carter contacted his estranged daughter. tt0825232,1RIOFzhufm8,"Carter and Edward cross ""skydiving"" off of their bucket lists." tt0083658,fOSuCsgJ26M,Roy breaks several of Deckard's fingers as revenge for the deaths of Zhora and Pris. tt0496806,UKAi_Zpp0_E,"Terry hears that because of his attempt at a double-cross, his share of the casino heist has been donated to charity." tt0083658,HU7Ga7qTLDU,Roy speaks his final words to Deckard before dying. tt0083658,L1YN9QMKpBo,Leon corners Deckard and tries to kill him. tt0083658,4lj2ISTrfnE,Deckard shoots Zhora in the back as she crashes through storefront windows. tt0083658,NwJEb3vJvWY,Deckard makes Rachael cry when he proves she is a replicant. tt0187738,Qs_PHrILn6k,Blade slices Reinhardt in half. tt0187738,EFpsSudUhQU,"Blade and Nomak have a fierce battle, but Blade gets the upper hand." tt0187738,uU6LIbi7NZQ,Blade battles with two motorcyclists. tt0496806,EmkAdY2AT-U,Linus gets arrested while seducing Abigail. tt0120611,KTuGK7Ob2QI,"Inside the vampire club, Quinn starts a fight and demands that Blade be hurt badly." tt0496806,j1tkwdfz7n4,Basher is sent in to distract Willy Bank while Virgil and Turk hack into the FBI database. tt0496806,nQZd4bNOSAI,"Rusty is shocked when he finds an emotional Danny watching ""Oprah.""" tt0120611,jRYdVUtQs-8,Blade uses the serum to destroy Deacon Frost. tt0496806,fFan929BTPE,"Rusty visits Willy Bank, as a geophysicist, to plant a hidden camera in his office." tt0120611,PTEskprXZOg,Deacon Frost has turned into La Magra and fights with Blade. tt0338751,NAGgo5AtHzE,Katharine Hepburn matter-of-factly announces that she will be leaving Hughes and moving in with someone else. tt0338751,oXjCj86GB-I,"Hughes makes the acquaintance of Katharine Hepburn, movie star and athlete." tt0338751,KH5Q12Yb5u8,"Hughes struggles to keep his airplane aloft, but crashes into several Beverly Hills homes." tt0338751,C3Um4x6M8ew,"As part of his worsening OCD, Hughes obsessively repeats himself while talking to Odekirk." tt1000774,tYRzkKtCRuY,Big off-handedly proposes to Carrie. tt1000774,Va4gTqyLJeQ,Big proposes a second time in the closet he built for Carrie. tt1000774,Bkwke3UCbCQ,"Charlotte sees Big as she is having lunch, but her water breaks before she can escape." tt1000774,mnUfDpO87Y0,"While in Mexico, Charlotte contracts a virus and soils herself." tt1000774,H-O-z5gELUY,"After Big doesn't show at the wedding, Carrie hits and yells at him in the middle of the street." tt1000774,Tk5XmgEEHoc,"The girls talk about their sex lives, using child-safe words." tt0450259,mXp99jJtyII,"Danny calls Maddy, asks for her help at home, and says a peaceful and content goodbye." tt0450259,ygU3F1ho3gg,Solomon convinces his son Dia to put down his gun by reminding him how much his family loves him. tt0332280,ielkiD8w-M8,Noah and Allie lie down one last time together. tt0332280,3nc6Tf26afI,Allie reads Noah's letter after she leaves him; older Noah reads the same letter to older Allie. tt0332280,E1I0hAxGFXw,"After several amazing days together, Allie has to face reality and leave Noah, again." tt0332280,EemLsTG5fX8,Noah and Allie finally reunite in the rain. tt0332280,OLSHQCAncC4,"Allie and Noah have a fight, which leads to their break-up." tt0332280,d7_F5P5PygM,Noah and Allie play in the ocean; she tells him she could have been a bird in another life. tt0097958,9hT-t19CJ4E,Clark lets his neighbors know where they can stick the Christmas tree. tt0032138,vQLNS3HWfCM,Dorothy and Toto find themselves in a strange and wonderful new place over the rainbow where they meet Glinda. tt0032138,aopdD9Cu-So,"When the Wicked Witch sets The Scarecrow on fire, Dorothy accidentally kills the witch with water." tt0032138,z2itQkiQUOE,"As they make their way down the yellow brick road, the group finds The Cowardly Lion and he joins their journey to see The Wizard." tt0032138,4IErqIMLwtQ,The Wicked Witch warns Dorothy that she'll be back to get her and retrieve her sister's magical ruby slippers. tt0116529,N7LxzkB0imk,"Bill and Jo attempt to seek shelter from the oncoming tornado, which takes their truck instead." tt0117998,bhGWWY1nCWw,Bill and Jo drive through a house in an attempt to escape the tornado. tt0313737,W59U7VWHZ1Y,Lucy tells George some of the reasons why he has caused her to have an ulcer. tt0313737,aG55Y-zpxyo,"Lucy becomes Loose Lips"" when she's had a few drinks and tells George what she's like under her ""lawyerly exterior.""" tt0360717,Lj4adAAHa68,"Alonzo gives a grand, arrogant speech to the people in his neighborhood and tells him that he is in charge." tt0139654,oY7QReO1WOQ,"Alonzo tells Jake what will happen to him if he doesn't go along with his plan, but Jake fights back." tt0313737,fMxA90YU2Jw,"Lucy gives George her two weeks notice, but he doesn't take the news too well." tt0338348,ib3Hn188Jwc,A boy who's losing his Christmas spirit gets invited on board the Polar Express. tt0338348,77tn-KPS334,The boy reminisces about his belief in Santa Claus even as his friends lost their faith. tt0338348,dofECCtTfaM,Santa gives the first gift of Christmas. tt0338348,uKwwpmC02IQ,The children find a lonely boy singing at the back of the train. tt0338348,Cht63QybtiA,The crew of the Polar Express fight to get the train back on the tracks before the ice collapses underneath them. tt0240772,HFduVeNEWSA,Rusty picks up Danny from prison for the second time and has someone special waiting in the back seat. tt0240772,Qb2tjzecJX4,"Rusty gives Terry the terms of the robbery over the phone while in his casino, then bumps in to Tess." tt0240772,bCIXKzeaAAs,Danny surprises his ex-wife Tess in her new husband's casino. tt0240772,1mJf24luhuo,Danny and Rusty recruit Reuben for their casino robbery when they tell him who the target is. tt0240772,m6ux3-Z03B4,Rusty teaches his friends how to call a bluff but is served a surprise by Danny during a high-stakes poker hand. tt0212346,DCnvuyK6ur8,Gracie and Eric try to deny their feelings for each other. tt0212346,kdW1wdpEP4Y,"When a loud sound in her earpiece causes Gracie to scream ""Jesus Christ!,"" she hurries to make up a cover story." tt0212346,9pXTSPcZEWE,Gracie Hart thwarts the plans of the terrorists by disposing of the bomb in the Miss United States crown. tt0373889,34Rit1AnlVg,"Harry teaches his classmates how to summon a patronus, a powerful magical protector." tt0212346,j5B70NEq_fY,Gracie Hart defends her fellow contestants in the interview portion of the beauty pageant. tt0373889,hw6GwhfNl7U,The love of Harry's family and friends gives him the strength to reject Voldemort's attempt at mind control. tt0212346,aEBLrCGhTVM,"Gracie Hart and Eric Matthews duke it out in the gym, while the other agents place bets." tt0110148,OsI3mSgTFnk,Claudia presents Louis with the woman she desires to be her new mother. tt0373889,u8QMY9JKlDk,Voldemort and Dumbledore unleash the elements as they face off in battle. tt0110148,c9cV7bFKMNQ,Lestat gives Louis his last chance to choose death or eternal life as a vampire. tt0110148,5xzDAgFrnf8,Louis and Claudia discover that Lestat is not dead as they had thought. tt0373889,eFKh6cYmQ4M,The Weasley twins disrupt the students' test-taking and terrorize Professor Umbridge with fireworks. tt0110148,LIm8HfwnmVE,Claudia struggles to come to terms with the fact that she will never grow old. tt0373889,8_MpC8PcPQ0,"As Harry writes lines as a punishment, Dolores Umbridge's magic pen cuts the words into his hand." tt0349903,fzAKSbtYBMU,Toulour proves that he is the best thief in the world by avoiding roaming laser beams in a museum. tt0349903,3lfTLYMECtc,"Tess and the crew try not to blow their cover when Bruce Willis visits ""Julia Roberts.""" tt0120888,ifYK21xsVtI,Robbie confronts Glenn about his cheating ways. tt0120888,TPsW2FYprfI,"Robbie sings to Julia on the plane, while Billy Idol helps keep Glenn out of the way." tt0110475,_HCS9AJ0rEI,"Stanley, as The Mask, saves Tina by swallowing Tyrell's bomb." tt0110475,YGEL2muzPEE,"When frisking The Mask, Kellaway and his cops make several interesting discoveries." tt0110475,W_gYRFDb8_A,"After being shot, The Mask gives a dying monologue which references several classic movie moments." tt0110475,T1TrFjLKryc,The Mask distracts a group of thugs by making them balloon animals. tt0110475,QP2uPNypJlE,"The Mask dispatches his alarm clock with a giant mallet, waking his landlady, Mrs. Peenman." tt0120812,bgXlHdBRpjs,Carter saves Lee's life with the help of a giant banner. tt0120812,-eIH1jFAGlY,"When Lee and Juntao fight high above the exhibition hall, Juntao falls to his death." tt0120812,mwHOh0YPpBU,"At the Chinese exhibition, Lee tries to protect priceless works of art while fighting off his opponents." tt0120812,OofNBvo-ABU,Lee and Carter have a tag team fight at a Chinese restaurant. tt0120812,0Rl9Cxc7uZA,"When Carter picks up Lee at the airport, Lee pretends he doesn't speak English." tt0330373,9eGwOuyKu1U,The Dark Lord's return is confirmed by the tragic death of Cedric Diggory. tt0330373,2bujRZhOt9w,Harry battles Lord Voldemort for his life and sees the spirits of his parents. tt0330373,W7Ic9rZ9OQw,"With blood from Harry Potter and a little help from Wormtail, the Dark Lord Voldemort rises again." tt0330373,wsl5fS7KGZc,Mad-Eye Moody demonstrates the mind-control curse on a spider for Defense Against the Dark Arts class. tt0330373,leQiIU7fzPs,Harry tries to evade a dragon high atop Hogwarts as part of the Tri-Wizard Tournament. tt0087363,_3F3eCypuko,"Gizmo races to stop Stripe, the head gremlin, from replicating." tt0087363,KBaCHull47I,The gremlins wreak havoc on Mrs. Deagle's stairlift. tt0087363,sz8itUBsCTk,Lynn is mauled by a gremlin in her Christmas tree. tt0087363,u1QIbENq66w,Lynn uses an assortment of appliances and cookware to kill the creatures. tt0087363,o2vw_iYBAyY,Billy and Pete watch as a wet Gizmo spawns five more creatures. tt0087363,kgfgiLlW-yw,Billy opens his Christmas gift -- an agreeable furball named Gizmo. tt0070047,Au-u9RWe0Jo,"In a final attempt to oust the demon, Father Karras commands it to enter his own body." tt0070047,lpyg94OzHK0,Fathers Merrin and Karras battle the demon with chants and holy water. tt0070047,sZazSFEHfg8,A pair of doctors are taken aback by Regan's condition. tt0070047,bSxuXQCEC7M,"As Father Merrin attempts an exorcism, Regan's head displays remarkable versatility." tt0070047,8QjrBjdb2T8,Regan spews a foul substance at Father Karras. tt0407887,WDTRyjMnDOk,Costello believes there's a mole in their midst; Billy gets defensive. tt0407887,Ocr0aNwQvVg,"Billy arrests Colin, who insists the charges won't stick." tt0407887,gsGm2Ohl7x8,Queenan is thrown off a building by Costello's men; Colin loses control as his cops respond. tt0407887,NEwspgySg5s,"Madolyn asks Billy what he wants out of their sessions, but flinches at his blunt reply." tt0407887,qVwoeNk9554,"Agitated by life undercover, Billy comes to blows with Dignam." tt0071230,bcokL59jeqU,Hedley Lamarr deals with a gum-chewing henchman. tt0071230,fLpmswBKVN4,Hedley Lamarr dictates a list of the types of criminals he's seeking. tt0071230,IZT7xLjxuhs,"When Bart rides into town as the new sheriff, the citizens are stunned." tt0071230,qVhCNgct9JQ,"Standing down a band of thugs, Jim shows his quick-draw prowess." tt0071230,VPIP9KXdmO0,Taggart's men eat a supper of beans and suffer the consequences. tt0145660,WSS4dOe8Ul8,"Dr. Evil has heard enough from his son, Scott." tt0145660,g5AixBKy7b4,Fat Bastard makes a surprisingly heartfelt admission. tt0145660,bu83p1i0D1A,Austin is attacked by a nimble Mini-Me. tt0145660,dzvTHhWDjIg,"Snubbing Scott, Dr. Evil delivers a hip-hop ode to his clone, Mini-Me." tt0145660,z-5iCygFd9M,Austin discovers Mustafa's weakness: He hates being asked the same question three times. tt0145660,fBlAMqoJ5BA,Dr. Evil and Scott are reunited by Jerry Springer. tt0145660,LXekH_8vXnM,Fat Bastard has a hankering for Mini-Me. tt0118655,2NdymhVOFF8,Dr. Evil finds out that no one followed through on his request for a tank of sharks with friggin' laser beams on their heads. tt0118655,EJR1H5tf5wE,Dr. Evil learns that a million-dollar ransom isn't as threatening in the 1990s as it was in the 1960s. tt0118655,pYwgIQaq9qY,Scott and Dr. Evil attend family therapy to work out their issues. tt0118655,ZywVV0T5DcA,"Dr. Evil meets his son, Scott, who is not quite ready for a relationship." tt0486583,onK1BeyHSZ4,"Santa's Secret Service elves mistakenly attack his brother, Fred." tt0486583,OfsHMuWn95I,Stephen Baldwin takes issue with Fred and Roger Clinton has some inspiring words for them at a brothers therapy session. tt0486583,3a49kwfRAtI,Fred Claus draws the ire of a horde of Salvation Army Santas when he asks passersby for donations. tt0486583,bD_rWCvgDy8,Fred Claus tells a little girl that his repossessing her TV is going to be beneficial to her in the long run. tt0122933,fmT8JstRohg,Ben Sobel introduces himself to the lords of the underwold. tt0122933,GXwVNAl1fN8,Paul Vitti turns Ben Sobel's therapist methods back upon him. tt0122933,ShQD76s4WZk,Paul Vitti is unsatisfied with Ben Sobel's therapy. tt0122933,zEE7xzwogMc,Ben Sobel helps Paul Vitti control his anger by hitting a pillow. tt0416449,cDpI6Zzy-vo,Leonidas gives his men a stirring speech before the enemy charge. tt0372784,TofiEsdr7YE,Jim Gordon explains to Batman that there will be escalation in Gotham now that he's around. tt0372784,EGWfothiSU8,Batman has a final battle with Henry Ducard aboard a speeding train. tt0088939,5v5JjUZpAPk,Sofia explains to Celie her unwillingness to take abuse from men in her life. tt0372784,WJB3hqUsHDE,Batman races through the streets of Gotham evading police in the new Batmobile. tt0088939,SH4PhFHyC5s,"Walking through a field together, Shug explains to Celie how everything in the world just wants to be loved." tt0088939,yqmreq-dV84,Celie puts a knife to Albert's neck and curses his future. tt0088939,bQbH32KcjG0,Shug watch as Nettie reunites Celie with her son and daughter. tt0367594,HcREWDplGBo,Wonka meets each of the contest-winning kids in turn. tt0088939,Iy2GKyD2IoQ,"When Sofia is slapped by Mayor on the street, she fights back and is accosted by other white townspeople." tt0367594,RmISVHxjcAI,"Swarmed by squirrels, Veruca flunks the nut test." tt0088939,yY8Pf2rgP5s,"When Albert drags Celie off of their land, she has an emotional separation with her sister Nettie." tt0367594,ckjDSzjU-cQ,Charlie's decision to remain with his family baffles Wonka. tt0295178,MLZZos7_fYo,Austin and Foxxy meet Number Three and his mole. tt0416449,nHByIEUb37Y,Dilios delivers Leonidas' final message to Sparta. tt0367594,MUn6X9lpOZE,Violet's three-course chewing gum is delicious fun...till the dessert. tt0416449,kmgRv2V_7P4,Leonidas and Xerxes discuss the conflict. tt0295178,z4nPyI-zA74,Dr. Evil and Mini-Me bust a rhyme for their fellow prisoners. tt0416449,uBrvKhAs4S4,"Leonidas exhibits his prowess with spear, sword and shield." tt0367594,MAviyhpn7Lg,"When Augustus drinks from Wonka's chocolate river, the glutton is swiftly punished." tt0416449,4Prc1UfuokY,King Leonidas gives the messenger from Xerxes a powerful message of his own. tt0295178,NIaiW1XrzxA,Austin and his father speak off-color cockney. tt0096895,JaBh-B6F2sk,The Joker demonstrates his joy buzzer on an impudent rival. tt0319343,cQ_dL_IMPP4,Buddy insults the diminutive Miles when he calls him an elf. tt0319343,cbQZ8GK2usU,Buddy protects Michael with his super snowball attack skills. tt0096895,RfvKvTlQHuw,"Just as Batman prepares to finish him, the Joker turns the tables." tt0319343,9tIcnydrwFY,Buddy denounces the Gimbel's Santa Claus as a fake. tt0319343,fNMtHosai08,Buddy meets his father for the first time and is mistaken as a Christmas-gram. tt0319343,dJU1SZIfK3Y,Buddy overhears two elves talking and realizes that he is actually human. tt0295178,EFkIZ-Zf32Y,Scott Evil mocks the name of Dr. Evil's latest tractor beam. tt0096895,9OufCgFZCyU,Bruce challenges the Joker in Vicki's apartment. tt0096895,wZ30Qxv0vtI,Batman dispatches the Joker's goons while Vicki snaps pictures. tt0295178,9XoPQEOY7L8,Austin takes on a fembot version of Britney Spears. tt0096895,63iuB-cSY7Q,Grissom finds that his old henchman Jack has reinvented himself. tt0372784,iqLDCIZ1DIs,Batman breaks up Dr. Crane's plan to contaminate the city water supply and gives him a taste of his own medicine. tt0372784,ZmdWPv5R_J8,"Batman breaks up a drug shipment, terrorizes the thugs, and kidnaps Falcone." tt0089218,0atATbXbQ9g,Mikey gives a wistful speech to stop his friends from abandoning the adventure. tt0089218,ROhFRFmHexM,Chunk tells the Fratellis about the sickest prank he ever pulled. tt0089218,kr_z37TgQO4,"Before Chunk can enter Mikey's house, he must perform a time-honored ritual." tt0109686,Ku1Xc6NT6m8,A busload of bikini models stop Lloyd and Harry and ask them if they want to come on their tour as oil boys. tt0089218,OnrORwEG4lQ,"Mouth grabs coins at the well, demanding a refund for his unanswered wishes." tt0034583,rEWaqUVac3M,"Rick prepares the travel papers for Ilsa and Victor instead of himself, and says goodbye." tt0034583,k_uINM_XI6I,"Ilsa pulls a gun on Rick in an effort to get the travel papers, but ends up confessing her love for him." tt0109686,6AVMcJa77PM,"After Harry drinks laxative-spiked coffee, he has explosive diarrhea when he arrives for his date with Mary." tt0034583,mK10Ze-mcQo,"Ilsa tries to explain the past to Rick, but she has secrets to hide and he is still too heartbroken to listen." tt0034583,buRR_o85qhQ,Rick makes plans to flee to Paris with Ilsa but she is overcome with sadness and fear. tt0034583,IBJGHvt7I3c,"Captain Renault tells Rick about Victor Laszlo and his female companion, and warns him about helping them." tt0109686,ylRqJapI0wQ,"On a dare, Lloyd and Harry eat atomic hot peppers, which turn out to be hotter than they expected." tt0109686,RD2YJrvd71Y,"After Lloyd and Harry get pulled over for speeding, the policeman drinks from the beer bottle filled with Lloyd's urine." tt0109686,-9IgLueodZA,Lloyd asks Mary to tell him what the chances are that they will end up together. tt0097958,TQXuazYI_YU,"When he doesn't receive his long-awaited Christmas bonus, Clark loses it and gives an angry rant about his boss." tt0097958,Jdyo4evwMxU,A squirrel wreaks havoc on the Griswold home. tt0097958,qTwXudZTWQA,"At the family feast, Aunt Bethany recites the Pledge of Allegiance and the main course withers." tt0097958,LSqb4e8mUd4,"To Clark's horror, Cousin Eddie empties his septic tank into the storm sewer." tt0097958,bSdm_eA1Css,Clark's toboggan ride on a waxed saucer goes horribly wrong. tt0097958,fKncYRJQRC8,Clark entertains Cousin Eddie and his repugnant dog. tt0097958,GxGkcC1VrhU,Clark gets tongue-tied with the saleswoman at the lingerie counter. tt0097958,gTKpKBzd7jg,The Griswolds trudge into the snow to find the perfect Christmas tree. tt0097958,ozksR8QLWzM,"When Clark plays road games with a truck full of rednecks, the Griswolds are nearly flattened by an 18-wheeler." tt0396269,xkzkmyOln6I,Jeremy asks John what he did in the bedroom with Mrs. Cleary. tt0133093,zE7PKRjrid4,Morpheus explains what the Matrix is and offers Neo the chance to wake up. tt0304141,VKhEFVAoScI,"Harry, Ron and Hermione are terrified when a Dementor of Azkaban appears on the Hogwarts Express and attacks Harry." tt0348150,9-DOuX-Pi6o,"Lois Lane's fiance asks her how she feels about Superman, and she has trouble answering." tt0107050,ePRYhNNdzwk,"When the IRS comes calling for John, his neighbor Max enjoys his distress." tt0107050,kTnEyRLMvqk,Max pranks John while he's watching TV. tt0107050,KTyLJftgoc0,Max and John rumble on the ice and bring up their past issues. tt0107050,WcZ62d0PATY,Max runs over John's ice shanty with his truck in retaliation for stealing Ariel. tt0109686,S4AmLcBLZWY,"Harry and Lloyd pick up a hitchhiker, but proceed to drive him crazy with their childish antics." tt0034583,5kiNJcDG4E0,Captain Renault and Rick strike up a beautiful new arrangement. tt0338751,br-ljup5Bow,"Howard has dinner with Katharine Hepburn's family, who make him feel quite inferior." tt0338751,giEV8fvrDd8,"Howard Hughes achieves his dream of flying the massive ""Spruce Goose"" airplane." tt0450259,lW1vzy6psfE,"While trying to rescue Dia, Danny and Solomon are caught in a massive airstrike." tt0450259,82IXVFuJllI,Danny tells Maddy about life in Africa and the death of his parents. tt0335266,_j9qAhXfNAU,Linus messes up Danny's coded conversation with Matsui. tt0118655,E-PIidaqCyU,Dr. Evil reveals his blackmail plans only to discover that his threats have already come to pass during the 30 years that he was frozen. tt0031381,yNvuIuWY3Sw,"On his way to join the Confederate Army, Rhett professes his love for Scarlett, but she rejects him harshly." tt0031381,c8EodW2ossg,Rhett reveals that he can see through Scarlett's act and that she and her family are in dire straits. tt0031381,M4-DIldIX6U,"Scarlett and Rhett tease each other, each trying to keep the upper hand." tt0031381,2zomyWfPgjE,Rhett Butler shocks the crowd at the benefit auction when he bids on Scarlett. tt0031381,lrhNPS4nbmQ,"After Ashley spurns Scarlett, she meets the notorious Rhett Butler." tt0031381,GQ5ICXMC4xY,"Rhett leaves Scarlett in tears, but she still finds hope in tomorrow." tt0102798,NJk-yQadw_U,The Sheriff of Nottingham is enraged by the people's love for Robin Hood. tt0120689,8ucelPNuKdk,The guards rehearse the execution of Arlen Bitterbuck. tt0120689,xqbb1FCX6wM,Paul shakes John's hand before giving the order to execute him. tt0120689,083OMBnPA3c,Paul worries that his soul is in danger for participating in John Coffey's execution. tt0120689,rRNj9qpTgOc,"Infected with Melinda's mysterious illness, Percy kills the deranged inmate Wild Bill." tt0120689,pLbS8f9IplI,Coffey heals Melinda Moores by sucking the illness from her mouth. tt0209958,22gw_64AGKM,"Catherine is brought before Stargher, who appears as a demon-god in his own mind." tt0209958,NlP9f8i-4c4,Novak pleads with Catherine to wake up while he is tortured by Stargher. tt0209958,nCuYBELZjpY,"After escaping a dream version of the cell, Catherine encounters Stargher's dog." tt0209958,8G40_afpkGA,Carl asks Catherine to euthanize him to protect him from his darker side. tt0325710,12DQN8oxKTs,"Algren, Katsumoto and the samurai make a final charge on the Japanese Imperial army." tt0325710,IV7jcaXQgds,"Using his skills as a samurai, Algren successfully defends himself against a group of ninjas." tt0325710,A-Cj7v3rTWg,"Algren, Katsumoto and the rest of the Samurai defend the village from an onslaught of ninjas." tt0325710,rSB9VJcwQsc,Algren's determination and strong will against Ujio impress the watching villagers. tt0234215,KY_pTVfz3gU,Neo flies to rescue Trinity. tt0234215,wSPAPeO17Zk,Morpheus protects the Keymaker while the agents steer their trucks into a collision course. tt0234215,_b6S8tpQtdw,Morpheus and Trinity protect the keymaster during a high speed chase and shoot-out. tt0234215,x1srznPx1qA,Neo battles the Merovingian's men with a variety of weapons. tt0234215,GSprkzio_pE,Neo uses a pipe to fend off the horde of Smiths. tt0234215,FRvxzdkj_YI,Seraph tests Neo with his own unique method. tt0167261,l8WyXv7hQvE,The Ents clean up Saruman's stronghold of Isengard. tt0167261,sL9vUjm2mIE,Gandalf rides to Theodan's aid with the help of some old allies. tt0167261,k72rrPUEDdk,Orc soldiers climb over the wall and begin to infiltrate the keep. tt0167261,F3GFYKIwJ9Y,Aragorn and company fight off a group of Orc Warg riders. tt0167261,O_aziIIp8U8,"Smeagol defies corruption by the ring and his alter ego, Gollum." tt0167261,Y6wE2W3ag1g,Gandalf breaks Saruman's spell over King Theoden. tt0167261,ExU37Xz5Q0Q,Gandalf miraculously returns as the white wizard and recounts his battle with the Balrog. tt0167261,uFzAxAEMwrY,Treebeard reveals himself to scare off an orc attempting to kill Merry. tt0167261,ePzOShBS9uU,Frodo and Sam meet the creature Gollum. tt0167260,rBtzudk40pE,Aragorn honors the hobbits at his coronation. tt0167260,Y0F2c4VgxW8,The Ring of Power sinks beneath the lava and is finally destroyed. tt0167260,yIUdnWv0MP0,"Eowyn, defeats the Witch King of Angmar." tt0167260,6vry0ijbJVE,The Fellowship watches as all evidence of Sauron is wiped from Middle Earth. tt0167260,132WIdxvgdo,Legolas single-handedly defeats a squadron of soldiers riding a massive elephant. tt0167260,dwT9BEh7qZ0,"The Rohirrim charge, breaking the Orc ranks." tt0167260,NQp6RWrHxRE,"Sam battles Shelob, the gigantic spider." tt0167260,ySQ8WJNGp0U,Elrond counsels Aragorn to enlist the army of the dead and gives him the sword that was broken. tt0120737,mxJtFvNByKw,Gandalf counsels Frodo not to despair the responsibility given to him as bearer of the ring. tt0120737,0L-Zqr0eyDg,Arwen conjures a spell to drown the Dark Riders. tt0120737,iBSLBl-64fk,Aragorn swears to a dying Boromir that he will protect the people of Gondor. tt0120737,VlaiBeLrntQ,Gandalf sacrifices himself to save the Fellowship in a battle with the Balrog on the bridge of Khazad-Dum. tt0120737,Vi5pdd7xHNI,The Fellowship rallies to bring down a berserk cave-troll. tt0120737,bdFKfRmmbk0,"Despite disagreement, Elrond convinces the council that the ring must be taken to Mordor and destroyed." tt0120737,2L0A2D7zV7A,The Hobbits have a close call when they encounter a Black Rider on the road. tt0089218,qFUISvEZ3aw,Chunk and Sloth bond over a Baby Ruth bar. tt0120737,x4QJwGTOny8,Gandalf and Saruman engage in magical combat in Saruman's tower. tt0348150,XUxAGsL8b0o,The people of Metropolis watch as Superman falls back to Earth. tt0348150,C2gQo-0VW5c,"A man with a machine gun shoots down several police cars from the top of a building, until Superman arrives to stop him." tt0348150,jP8dC8E6Emk,Superman remembers his father's counsel as he watches over the Earth. tt0348150,6aWxJ0cxD8c,An airplane hurtles down toward the Earth and Superman struggles to save it in time. tt0295297,kb7T9oK0tF8,Harry slays the basilisk in the Chamber of Secrets. tt0295297,BfcfTmh8RKo,Harry finds out who Tom Riddle really is. tt0295297,rwzNpFWiOTg,Professor Lockhart foolishly unleashes pixies onto his students. tt0295297,cPsIU9BTbcQ,Harry and Ron try to catch up with the Hogwarts Express in a flying car. tt0295297,w3-V_82VwQQ,Harry meets Dobby when the house elf shows up in his bedroom unannounced. tt0241527,f1N8-L5cuWQ,Lord Voldemort tries to tempt Harry Potter to join him. tt0241527,F3YR1-gJjWM,Harry Potter wins the Quidditch match for Gryffindor when he catches the golden snitch. tt0241527,_v5g_GFm1W0,"When Hermione is attacked by a troll in the girls' bathroom, Harry and Ron come to her rescue." tt0304141,FeK3AM7NZzQ,Harry has a terrifying ride on the Knight Bus. tt0241527,50N2eB0JI80,Hagrid bursts down the Dursley's door with a birthday wish for Harry. tt0304141,GVhi1qkt5I4,Hermione impresses Harry and Ron when she punches a smirking Draco Malfoy. tt0304141,TsNv4tohJ7Y,Professor Snape catches Harry sneaking around Hogwarts late at night and compares him to his father. tt0304141,n1TqCGEBdLw,Harry and Sirius are saved from dementors by a silver stag Patronus. tt0241527,9JVNdsyjU5A,Professor Snape is not impressed with the famous Harry Potter's knowledge of potions. tt0122151,4NcH64kh_24,"Lorna won't give birth until she and Riggs are married, so Leo asks a Jewish rabbi to marry them." tt0405159,DlwuwiBLAmM,Maggie sends her family on their way without signing the legal papers delegating all her assets. tt0405159,EOyH6NwoQL4,Eddie tries to reassure Frankie that Maggie must be satisfied even if she is dying. tt0405159,o4SUU7XoRl8,Maggie remembers her journey and asks Frankie if he will end her life. tt0405159,jcXErUFrA68,"Maggie fights a strong opponent, but knocks her out in the end." tt0405159,Utz-RZwQpyE,Frankie makes a deal with Maggie that he will train her. tt0122151,A_S1oRHSH80,Riggs and Murtaugh pick one last fight with Wah Sing Ku. tt0104714,_P9ZorzeECg,"Riggs accidentally busts a movie set, thinking that a robbery is in progress." tt0177971,kNpbZ_oVHxE,Christina recounts her dream: that Bobby is able to say goodbye one last time. tt0122151,u-bWIkGa0QA,"Riggs, Murtaugh and Butters take a few liberties with laughing gas at the dentist's office." tt0177971,CeSQfi3eLhs,"Billy suggests Bobby swim to the surface, but then stays with his ship to die." tt0177971,W9Tdw5nG4dQ,Bobby struggles against the storm at the wheel of his boat. tt0122151,WsAVIpTwAP4,Butters and Leo Getz vent their frustrations about using cell phones. tt0177971,FM-wfXvcbAY,Billy scales the ship's mast during the storm. tt0122151,8jd1NKyFQJI,Leo Getz angers Butters by suggesting he's a criminal. tt0177971,O-ydNrUWOik,Billy expresses his romantic notions of being a fisherman. tt0104714,3A3iNVaLod4,Riggs and Murtaugh threaten to kill a jaywalker. tt0104714,cy-OKLuMikk,"Riggs snips the wrong wire, but he and Murtaugh escape before the bomb explodes." tt0114369,hImAmM5-Fpg,John Doe strolls into the police station to turn himself in to Mills and Somerset. tt0114369,lWZU3pPZWig,Somerset bemoans the apathy of the world. tt0114369,VN9icwiN6io,"Over Somerset's objections, Mills empties a clip on John Doe for murdering his wife." tt0104714,K49NaFf6i_E,Riggs falls off an overpass in pursuit of Travis. tt0114369,8vq_k0yqq88,John Doe explains himself to Mills and Somerset about his criminal motivations. tt0104714,cNOsA4nH8yE,Riggs and Cole compare the scars they've accumulated over their years as cops. tt0114369,h8m69o_1PoQ,"Detectives Mills and Somerset discover an emaciated shut-in, the victim of prolonged torture." tt0293564,smHHU_ONdGU,Lee duels his brother with a sword. tt0242653,FXKx1sX8ESs,"Agent Smith absorbs Neo, but is shocked when his duplicates begin to explode and he is destroyed." tt0242653,9rySfLgqHJc,A dying Trinity says goodbye to Neo and they share a last kiss. tt0242653,RP7pZNhYm3c,"The Kid, Zee and Niobe work together to stop the machine invasion and save the dock." tt0242653,jk3Z-MVoUg4,"Despite the Kid's heroic efforts to reload his weapons, Captain Mifune is overcome by a group of squid droids." tt0242653,YBQLEhzlYX8,"Neo enters the Matrix, now totally taken over my Agent Smith, for a final battle in the rain." tt0293564,Pry7CGd09jU,"On a harrowing taxi ride, Lee and Carter get rid of the final motorcycle thug." tt0293564,7DfNc-wxnBM,"The Dragon Lady tries to kill Lee, but Carter misinterprets the sounds." tt0293564,kmjblNu2_6M,Carter and Lee are beaten up by a kung fu giant. tt0133093,aOg9IcxuV2g,Neo leaves a threatening message telling of his plans to liberate the human race. tt0133093,r_O3k-RpV2c,Neo's initiation into the world of the enlightened begins as the crew starts the process of disconnecting him from the Matrix. tt0133093,j6oBbBfhgYE,Agent Smith interrogates Neo about his dual identity. tt0293564,HQkSMJFJu4g,Carter is confused by Chinese nomenclature. tt0133093,DMx-Az5Da4M,Neo takes on Agent Smith in an abandoned subway station. tt0045152,-wI4jJq98tU,"During Lina's performance, the men open the curtain to reveal the true singer - Kathy." tt0133093,73ytL_HAwt8,"Neo takes on a group of agents in the Matrix, demonstrating his unique and innovative fighting style." tt0133093,ZQaBYT4MxWU,Neo and Trinity face down a squad of Matrix-spawned soldiers with a combination of martial arts and fire power. tt0133093,XO0pcWxcROI,Neo learns a lesson about the Matrix from a wise child. tt0045152,_UmaFTEIZ84,Don Lockwood dances with an umbrella in the pouring rain. tt0133093,O4yuhvccQog,Morpheus and Neo spar in a virtual dojo. tt0045152,B0asbGJbLKc,Don Lockwood's love for Kathy causes him to sing and dance in the rain. tt0102798,Wg-UpYglAEw,"The Sheriff forces Maid Marian into marriage, but Robin Hood shows up to defend her." tt0045152,qu4v5hB1dKk,"Kathey Selden, Cosmo Brown and Don Lockwood sing and dance after staying up all night." tt0102798,m_1yILWMqFA,The merry men use Sherwood Forest to its full potential as they prepare for battle. tt0102798,fLWrnVuT4Is,Robin tries to inspire his band of merry men. tt0102798,B42mhJ4DY4I,"The Sheriff of Nottingham threatens Robin of Locksley, who manages a heroic escape." tt0045152,YMzV96LV6Cc,"Sound problems in ""The Duelling Cavalier"" cause the audience to burst into fits of laughter." tt0081505,WDpipB4yehk,"Jack forces Wendy into the bathroom, but she finds that she can't squeeze through the window." tt0045152,OTFCctdiS04,Roscoe Dexter coaches Lina Lamont through the technical difficulties of sound recording while on set. tt0081505,FLjixsUEj5E,"Danny, having been possessed by his imaginary friend, recites the word Redrum"" until Wendy awakes and realizes the word's meaning." tt0081505,yMRmV1Sj6j4,"Jack, now slipping into insanity, confronts Wendy about her decision to get Danny away from the Overlook." tt0081505,CMbI7DmLCNI,"While exploring the hotel, Danny encounters the ghosts of the murdered Grady twins." tt0324216,mV5UHLHdkY8,Morgan is torn between shooting the evil Sheriff or not. tt0324216,PRtTmayVhKI,A distraught teenage girl commits suicide in the back of the van. tt0332452,NjIszoXfvUQ,Achilles succeeds in killing Hector in front of his people. tt0332452,1SnPHdvPPxM,Hector faces Ajax in a fight to the death. tt0758794,EEm8IXm88Tw,The new Thundering Herd beat Xavier with a dramatic touchdown. tt0758794,I3wUstDFDN0,The new Thundering Herd are inspired by their coach's rousing pep talk. tt0758794,xM311HohUzA,Jack Lengyel delivers an inspiring talk at the memorial to the fallen players. tt0032138,BZSb0JCWcXk,"Dorothy wakes up in Kansas and remembers her wonderful adventures in Oz, but tells her family ""there's no place like home.""" tt0032138,louBM-Mix7s,"Dorothy meets The Tin Man and oils him up so he can move again, but she quickly learns that he's missing a heart." tt0032138,nauLgZISozs,The Scarecrow tells Dorothy through a song all about what he would do if he only had a brain. tt0032138,PSZxmZmBfnU,"Dorothy fantasizes about a land far away from home and sings ""Somewhere Over the Rainbow.""" tt0117998,dYg-LtUxhcE,"Bill and Jo escape the tornado, which completely destroys a barn." tt0117998,eFU730P9f54,Jo reveals why she is obsessed with chasing twisters and does not want to leave when Bill tries to reason with her. tt0313737,2cDcwnVNoGc,Lucy and June get into a stapler tug-of-war at Lucy's farewell party. tt0139654,82aLTSlTL44,Alonzo doesn't believe that Jake has what it takes to shoot a cop in the back. Until he does it. tt0139654,IIjzneqtAZA,"Smiley is about to execute Jake in a bathtub, until Jake tells him he saved his niece from being raped." tt0313737,ac9w0rKTRPM,George puts his foot in his mouth when he and Lucy interview for her replacement. tt0117998,2dQgjrrEeHA,"Bill, Dr. Harding and Dr. Reeves witness a cow being picked up by the tornado." tt0313737,K53sv3l9DB4,Lucy walks and finds June and George playing strip chess. tt0139654,Hy37hjPUFWo,"Alonzo and Jake uncover a huge stash of cash in a house. Jake thinks it's a bust, but Alonzo has other plans." tt0120888,Nfrk2UdEOcQ,Robbie sings Julia a song about his failed relationship. tt0120888,C_SFevIz1FI,Robbie negatively babbles about Cindy and Scott's future as a married couple. tt0120888,wAjHfBk-ZeY,Linda tells Robbie why she didn't show up at their wedding. tt0120888,lt9IJX0qI6o,A drunk best man almost ruins his brother's wedding. ================================================ FILE: data/metadata/durations.csv ================================================ videoid,duration PK0i_dyx230,83 cGTn7aRFttk,119 Lf6fX3bsCxA,76 zXBPTIjfZgA,132 0JmETteiVzo,133 CqXatBg5LtE,124 pw5Y_7wtJmk,100 _PZ_LyJfYe8,125 -4Q-MS_oFkw,128 RdIAtsbwb00,116 VYQoxBs5N2A,135 mgSQQjO5pwI,65 u73HoUZD7tc,131 Mx9z99YJ_7s,32 8E033uMGU7A,48 TWqf3iE2Gk8,128 7keYfMMBIws,112 IpQkAn4FnkY,70 1-lFBwn6bKg,131 OSc1_gfVfCc,132 YYc1h1Pymto,115 IhZrBku_eCA,143 oN832LNaq4w,127 V5xN-xNvwsw,82 f3tseBsU248,105 Ld2g77JckSk,133 _8GB76HyNNU,132 -TzrPYcpPvY,133 elvtIj_sPwU,133 OYuE4tFH7lc,122 XINddkzfTzM,225 lpwrDEfCESg,132 qdy5TZDOwm0,133 zZi8n49RMGE,123 IuCIhvIAn44,129 xehwopjgKGU,119 0TjrNjcFv_A,133 Z6oLbpQ0S0c,4 Viai9bgo5KM,132 t0R7IRtvvFA,129 9enPC37mHrM,125 qnI0g8RD7Bo,4 2ZiKO3NtZiI,105 0N9Fzv7bYCM,110 8D2TivUo_zU,81 0nfoP3bmd1c,121 9j0tqkW7Bd8,124 YCPDVVLUw-4,132 xaOERHG7Qr8,132 mGf4oL6RLGs,132 BSuaYQdLqV0,102 7tFLFMyA0EI,133 ajvCMC8Na3M,133 xHrOaF4Dq5U,120 pDcPRvZ9sDU,132 j19-hpjJ4ok,133 O1-lkTgl-ws,133 zBjq9UbpCtQ,115 9hEYOiPK79g,260 DebtnaQFX7M,133 YGlqg2jC3R4,197 DwOTJvwKKeU,133 pi6SInyE0sw,128 9mE6UqKoe5Y,105 8WrFOPPepCk,103 0VIefkYf2Rs,133 AJ4edZsgJAk,85 6ZZI6-zh0GM,133 Yc81Un8ltS4,133 gnz7BQ7lxJQ,132 ll5qiWa6YDk,133 sOgO4lPPK1U,132 xSmmiAl9ZWE,132 Yd8gK6EgpLM,117 9CKyWqb5-sw,132 EYKwSLZPwV4,98 PZalnJDYFDk,130 YP-rmIcxn1g,113 IdEekLJJc0o,131 pKN_6Javjnc,132 ipc4KfTrRZs,167 b3Aq5Vc0Ics,95 L-sb2Xeqn14,132 K7vOjKOdMNE,133 5pzJ6qzeXlw,133 3cqeNsSZYh4,130 vmnZ_-Mqb-c,102 LiNFLOs3BfE,91 CXJ8c0rWJsk,132 BpV5wTbvq8M,131 VrRhpEc9Ivk,91 02064E1SHtQ,132 CrMlZldzxSg,166 RGuY5r-7ta4,130 EmeHbU_s7Cg,90 OLhu6bw5EYc,92 2Q9h-B9OVVA,132 ZvMDRj9jFaE,131 8LhpYfjGZvw,128 hg27lxt2IFw,122 J97c0nWkJT4,99 3T-VAi2Xqq8,140 lJiMlgvygvc,132 UOOGD4DLy-0,126 GCOXBnHRdmc,124 uD2mdsAwJBA,132 sqjS__9_Irk,131 W9SemYK9HEw,132 i4h9xcdtyrE,125 ch6zVPr6lWM,116 JbNo_tlgYfs,96 n3_noySdJVs,120 EinsfcAsUoQ,177 M-APah17AQA,133 cACQ2548i0o,132 g5lJIy5IcWc,126 RrrQxZ4j7t8,132 IZGhNReGZTs,128 HLIVYHitYPw,125 sNcBUOlGBcg,133 mAtSvxJe6Yw,147 Fekzb5yWBZk,130 nkelgV49oGQ,123 ks32K99a1RU,91 7E8rxZMCldI,166 TW8ZML5OvXs,85 CTCkd8aEpZ8,168 JZtErr7VLKE,131 94mvgpMi-rQ,178 P6fVrC-RQLg,108 eSBnFu1YnrU,133 Z-GoRxX2exA,132 n9-Wk6ulBuA,77 reIyMTBfEwQ,130 YlwAVV3dC2o,181 plovZLxlpGk,129 Tlfd0Y0SjgA,127 E8LQ1SmVO2M,106 fZAksSuI1R4,99 m9vRMtJDEVU,133 MoInDyDrLKk,107 p8wvEC_cBU4,109 76ftznPZmgk,103 39gtT7pdMwE,115 DWa1IsbsiY4,132 9zUaNKBQ04c,133 DNWODAIBs7s,191 5y719xX1I5U,133 isyFunAeYnQ,119 jepTSaMF2ZM,125 BIPpar64F5o,97 xQOZMIbnpMc,124 _k6CZ13fAMo,21 ZKTMxF2PrHM,128 QHUcubYTt0o,214 cNLFuTms4go,127 2nFh-kxiEng,133 USGs4XhdI6I,133 nQunClrM4co,133 BNCwxQQcXv8,107 qZmteh2hT9A,125 qwsrKRo5gdA,138 jxkpgzL06B4,21 B_DMSu-NVZ8,133 23ZWuWe2riY,130 -dzyuUNTwUo,122 1Jaq36snpLo,175 w3HklXic1eY,133 GlXLG_rF9lg,155 _OpCOSHbqiM,84 xSnraJOeOyM,130 vEnbBgByg98,133 yHox089rkmM,15 ygOrLkyfHsw,125 DTXWi9iR2F0,76 vETxuL7Ij3Q,183 NDW6AQjK3Q0,176 V67ozonzKRQ,131 Z2ixl9gb0uk,133 717gDCZQsdc,134 BVs5TFKigUw,122 Z8E9FEaEm8A,134 qcFM5Xhg8W8,181 iamsdf-VSQI,131 WRtOCCfKEvQ,127 8wDlH8jWxYk,165 eveUzWmTxl4,132 2XuJzaDhV50,130 -7-C6lSAfOs,126 rypwboimK5k,138 -1gCG8m1SHU,131 KOGjVUa_iIE,173 yd13zj2PC1g,135 4XhNhG_zq-A,182 eQ9HJXZI_qU,130 g4v51XeJnkw,128 6NbgGhD4tdk,90 FhDi_WF5uOI,133 VUsdbeBqeeo,84 rNOZMZHDVB8,134 cLmDqUnUEE0,95 0zVmdCICQok,143 k2C9QOtoreY,114 NmNveyfhpBg,84 l0n2Od6zG58,147 P9aAc9ibVWM,132 rpUPWSqadTo,100 LHrkO46ERP8,132 Op0qrTGRcxk,127 qO1-at2DUGU,132 VGQWULimSCg,86 HGdt0QR55Ko,128 FXcu4V-8-j0,76 yO4oRzCAc4k,144 2DM0pOmClOg,132 5nilVcDLNYs,99 JNLW2R5dYOM,164 mIJdrHpr3_Q,77 n7KKfjFRw8w,119 1JDAa0BvD68,122 axqYHL-KPRk,101 qRGre50eHbQ,133 1BUBVkpQQGA,131 emVaK5MoPBg,133 ntQrC5iclmI,132 GB7Cq_W4-U4,132 C4dkYaeNLuc,109 srR56T9-j5M,133 DLuROR8kLy8,118 HznAlPzscvY,15 PykWxPq9JEE,133 YJnneXfx_q8,101 PEnOSwKyrb4,168 _deZCO2ojAo,126 LlQXhEOzLW0,92 B1kQLmi0q5U,132 f5f86alm7jk,130 7qPmEvrv3HQ,132 lk1As4QnaCc,76 OjHsjB_foZI,134 Od2dajJAbEE,78 oRMqBipT26M,130 RYlj-btwi6o,86 x6FDJAu5yMc,141 u0kF24ceZMI,90 lDksLpsqHwQ,160 nOFfrd6bOh0,112 XSa0_MGO8bA,123 cysxO5Z-0L8,110 ok-pfhEHoE8,102 6VUfXGlADjU,133 e5uhElLMLbA,131 YC65XWrNn4s,77 2Ji7Coh4O7E,113 mM2Tc_tYYKk,133 V9aRvKzTOc4,80 GLZXGflTTjA,133 Zh_r3u2RK1Q,133 5tpVvZo9hus,98 yIF3Vr_at5I,122 TyeZy_UPYKM,129 029Mdp9jYiY,139 7rN0Kk3eUSo,127 1Dhr1yiV7DI,21 RywZwxSQcvo,110 WRslUrt2NBg,114 rF1vfMM3W08,248 NeciZ5_hFTY,107 VHSoPTJNfPE,180 5AujBlOtU88,62 Yj-a2zT-r88,133 IelhpK-eDh0,177 r9z4qCu9sTw,127 Fc7bVIA-b1k,132 -YTLGLeKoJQ,133 D8V0rLDKZL8,132 4ca0T6jbhHo,136 LOb8UYWDz-0,77 xxfZmz7TxSo,123 njHGa4f1LwY,134 TIvNRHR6GbU,113 zhH9GJ7lpGs,168 3zPrtRFOZQY,128 MUQbmDMySpw,42 _3-cN9Bhxls,230 xQGzDvZq6v0,122 7AOct3hvL-U,21 40cOkf5fT7A,108 mydc8K7yaZI,117 BfHSald-ypM,143 h3VZ6IRrVlI,105 jJiKYmmWiCA,64 24qcFHAk1Cw,126 0I84IUKomh4,122 _frVHCLECNQ,166 JAiuiipD6Wo,126 9OFoTABYnY0,61 dJQGkx5LpuA,131 zB-hQWVCwwU,120 ifM0qy83_-A,132 I5TzyLhwKKY,127 jN_ftt-J7S8,132 R0k1CGlHAtY,117 wACyqCoTTno,123 eP2aBRb6geI,50 4Xvu9fzPGhA,133 Il5lC0E0nqM,128 25D3SlGLFKg,131 JInEj95yoUQ,192 WO-1MybFFvI,131 xu0p6CtioZk,74 IypE3rPP4sc,132 WXDIkldSPqI,103 9-Kvo3-7OZo,121 7ghEs2R68XE,130 rAKR-BBQY2M,74 WEszqunyV0M,62 6Vj6Up8OaFo,141 BoNAEfrI2oQ,171 k4DsinIrAjQ,113 Of8JOVXYU0Q,116 OQrJfULly20,198 1F-LMCJ2n4M,130 hLUSwJuMjWo,131 3l7-8yvdTLE,108 qlwQsJOKoIo,102 40CUuyOxUZs,132 Va6oQ_2-jh8,168 xoqU0B7BGQI,139 puXEHhZgXaY,163 iZ1_8kpRnW8,133 VNQP-pvNK9A,132 4vOHfYUUCJk,90 a4WffLH9UMs,132 qPpMWDyyHy4,127 DG5ZouipJNs,61 8rlohOLUi9k,133 javEwwHaNa4,126 TrxSTI517Iw,133 ohwhcMgHUKs,133 I1xQMJjTMLQ,129 W8Iw5W2_bbM,133 pgk_j6ehCEA,132 P3QI8hTpxl8,107 AYQA7kCTPN8,131 bNbi_KLd_Uk,130 qZubhGcnsHk,133 OgU8mEFGcfA,120 4dsgQb3jkk4,122 3rnomffKi0I,180 O1p6omIzsuY,133 20tvG54uZLg,173 bN3U1IwMvhI,128 aGMCd4SoXk0,133 rW7WlT6OJxE,129 qFWptPtHG78,107 uyfrK4LrXaQ,132 wpA9m3t6bNY,174 8RRzvri051s,122 ABpeiNlMOHU,129 t8yv6xn2HhQ,56 UsbCX8KU7jE,21 -Kd5zqw24S4,167 lsgl848rea8,127 tJimPUh3vmQ,126 hSUo-HJ01kY,128 X-S296ENSIo,129 c__26Uyp5eU,117 r8XE2-HpGuk,155 I0YUjv1u-Gw,125 lkMilWJJR_U,113 aKgha2AsDNc,133 0mwMM8VrYmw,133 Jv_AlRfm998,127 oWr69u4tLoc,72 7W78nWDG95s,126 Xwl5DKs5HL0,99 daUvbGlC3CY,132 oIu0P3gXxsI,113 ShCVyu04OCc,131 Vs2DOfnZ2vg,89 suvJai5IC6c,125 bE0mQSaYaNY,102 TJf7vDKfuFQ,84 h__j2aPe63w,133 zMwLa7IR2tk,4 2RXSVTFM3hQ,132 Gk3MgTTHdLs,132 08NGebwIr8Q,130 a4wb-xmYM50,78 6lw33XpYhGs,132 IVxzLITK1YM,82 lYGDkN8xPt8,111 WzlAPD4Ttc0,121 y47SwwfaTBk,122 wXnYmZhdm04,132 Qoh3YkxuwVo,132 h-a0Kx3RlIg,127 KldCgijNQyg,133 DS1YYtQ_LLY,106 nS-l7xvs5ew,120 SuJOuQ9PJ_o,127 YXjqTyQuq4w,129 0I7GjbhDYtM,96 1Z-MzwPzpBk,121 QBvJoXAu2zM,94 8aYUJSDZHKw,130 3qMNxVVQhzM,132 sloo9PMVoRE,127 t5qkPMvpDfg,133 luylsO8UlhE,148 c3nJu9SBkis,136 EqzhYb-Ey4c,114 JxZHAMfuwsA,126 GSR6orbPFjo,131 T7eWdvyCHyI,97 X1DvoMiJ6n0,126 20zF8Ug0MjM,80 SkEOY1s78e4,127 qGrKwxglKJ0,133 cJYwpfA3HWY,131 kU5tlt5wTcc,133 EKd7hAoXDPU,188 Bg5ll84eQTw,174 zS9ZrFqMchM,97 OwzlxG2_8hA,127 imtYtoHzPJc,138 9dCHSNdHZQs,129 JITv11rctGg,209 nCK7A5Zp9I4,99 04xSMg03sZ0,144 LCt7YtB6P7g,82 a72FDTElH9g,141 4IOwJNyILNI,132 TfWrCqaIAtE,83 OFlIZu9exco,80 sOesH75ggbQ,133 h5jZBcDev1s,132 Lei-isBr4ag,21 PlkdsidJA38,135 f8znwPYsuFE,120 kXvfBvua7GY,67 ZiO-hWU7IZI,133 A_6e5AilC6k,132 Ux1Er4tflxI,119 GUw4Qqh5Th0,127 gvoBpSAb-vM,96 BvwCwDf6J3w,128 Jhvq7EGVtUg,123 76S0ukfD8YU,132 i9upvWNN3P8,79 dfhICMh9UFI,21 _ASByCtlV_o,84 sBpNA3HWj6Y,107 OMEv7FPE7CQ,133 G-_QYRggMwM,175 j2lG-WtrrsA,183 9ZM4N1bdm4g,94 mFj1lf3ECK8,107 Isof3ww1UPs,168 srDyToPqozI,129 gdJC7j6maRs,131 MALjtjcdmt8,109 e0qpJCNLViQ,120 aNR8SIVnHTY,125 1KCTiqj_-tg,95 Ut_lRQbeQcU,132 GJ1KcXeNstM,102 Y6CMcllU8J0,138 lOaaPz6E6ms,129 bnitvEUDaBE,133 dcsByxGdYO0,108 5_npi1WISDk,162 FOzub_ghAbM,129 ev7an6-CYpc,132 xvi62S5Ou_E,121 PnFxS6a2aPU,132 b7Dxy34dFyY,105 T7-sw9PhQec,156 OkdLWuCRe0c,133 _c7cV5_jU5Q,133 FM_KxbSOjJk,131 EN0JaJN_fwU,69 XEQJU3VPjHU,128 i1Nh_3JCFj8,103 fpLdP56W3do,127 yoFS6X0RKkA,102 cHEoEuY_mTk,141 eZ64IFqMQuQ,111 4a55PnIKoz0,87 -e6lEsIUf3U,124 LBP8QDlm6OA,121 rxKp6tH2AKU,131 QSVX6S1zbjQ,75 MUFqS9iKzHw,145 wk34RXMFgM0,119 nNLk8GMdFd8,116 E2syhaH4Qgk,131 Pz3SOdEw0LY,86 SMCsXl9SGgY,132 X-w-beB9r3M,135 uY9VcYt2bKE,128 QfrPUNMOS6E,127 9Okpnw0Ktt8,121 VG7JAM6DQnM,133 w71n9tHYuIw,133 67cxJ9EynG4,132 xaILTs-_1z4,112 4gh5B_Uezmk,126 k1_OK7cug8I,131 yZvx9PF3NAU,127 ypf6WHYpeRU,127 9bvxJlLfzGw,129 oJHp0GrlX6M,74 jsL4-BxsZjA,69 Wg3iwI32C5Q,77 2djG7snKS8w,133 B1Q2f338TJU,131 kXuzMpA9MaA,71 vWokC4nx7PA,110 Jl4L_RREcpQ,132 _BMYVDOOQ0E,130 5nIwJTUMlE4,110 hM33ekZw3yQ,129 NLIbv_J5E0M,110 Ua3NXljreQ4,132 oZQ95ON2X-s,133 KdfwchgYp-U,140 U-JAuw8FsrA,102 JhGjwr3rLtc,131 KNmmwUDi4I8,103 qkvQOEJKHNk,180 LVkOD1Uy_9k,133 dvT333RoCrw,131 4YdP5YLuJDc,126 s2U0dL0k9s8,130 _i9YzGZS0I8,129 YOxfSSv14CM,132 r6Lf8GtMe4M,172 nAq5GhiMdSA,111 Cgfw3cjfO6A,116 Fh1ZUliQDFg,174 Jly4dXapR9c,132 C2NxwHIDTUA,133 HWe802TQAG0,129 M2V8jSFKVw0,217 S4YcLymVzXw,132 rcgygxfcywM,132 KhfsAokR-D4,101 Jwaw24W2bW0,127 4t94x0N3AoU,134 fuAo0q0a_Ww,180 xWpMF_EFqyc,131 B3oSlrpSf8k,157 qbIEepu8Z4w,133 u7kInn-7hcA,128 fhUXu7x66BA,129 hW0V7kZHRSA,128 rWYSBIpb5aY,21 i7hk-TupE5g,133 AIPb1OMTZ0Q,97 nRSaxtoy7fo,114 wVTFBeiqCSE,120 dF_BTmsWZXs,15 w9yRZoY0stg,134 MTGOnbJkILg,109 DknDCyfSe8Q,136 vW4TOsL7e3M,119 MA6g7AEH_kA,133 Ofifxt45nfg,101 _Rnaa9qtGgs,130 vjplEkEo_H8,214 BL-Jg7CyqLQ,127 M6gOHxwffBg,111 7Xuw-XKP1sI,182 D8aAHxbYCCs,106 8z7YDo44-xE,121 -WOw8ePUCEo,123 d51N1kUa4lw,128 HynidUYa_IY,10 bYVsnJR_f80,157 fjzcBqz2Cpk,127 Nd8HPu7y8qk,119 LkBmLiDPbxQ,108 S8mfOyCySKg,133 gec4_X9J2K0,130 HvDFdi92GUk,21 3VfuSHP-57o,104 D93lQnQlJcg,39 _8LrZ4NhPmk,124 EG4CMYnxQAE,21 H-5mWBsCOaw,114 IP0UFkE-Nng,160 jj5CG9kzDYY,112 dKFZ4T_Y9Pw,72 HWAQ8rTBLUk,131 oqCHL75LG3Q,131 uXyvjZa6x2o,132 cM2U8v8OuLo,125 b9qMqGTi1uc,126 f3z_ene1G6c,132 mFRhtRctzBQ,21 AQ0P7R9CfCY,131 gbbbs1uWxvo,120 nF2xGs2J6Gk,80 VcVDBbEpQx8,131 iClIIg_YtAk,130 Cf3YdE-vMyE,105 Of73UiXUvjA,123 a6uHu-9c23c,96 tvIE50OJfxM,130 jVxyX7FcS4Q,109 IWe5PTNQ6ko,131 nLeZGuvX7D8,125 wFSWmfqMp7o,126 MXYUFlvaGpk,78 ZpDnHh_JmQE,64 TQebazOCP4M,40 30QzJKCUekQ,254 exE414Mp-gA,104 -TAp26oPrvE,116 TvFwTMU0vyY,128 QsXsfrk06-I,105 IBUOACCdZi8,136 2QGI0KdwW8Y,121 KWKu1BbZhkQ,130 8NFxckpb-CY,61 GjB8z0Bvi14,170 QKEMn5rTRL4,118 tYPUzX8KTXw,119 OOBt6EktEVg,132 5_B-hXtddxw,133 YXmD6qdDCDE,104 Yo3qKhfO_V4,97 g6sSw9vrO0s,80 IXdycEK_38Y,133 Fj7KNHxzYjc,125 G8c6j-LS-ZI,91 jG2FwGoAPNY,86 i8oGdak7vN4,159 OeE1spoom58,143 5oOK3e53elo,133 8BgcozieWuE,132 tvRH4kLj-Dk,83 GKh4VG9YQ1Q,147 pl2HDVRj_4o,126 gW3KZsBwQzw,126 Kek4f12wu3o,129 8F8MBp-GBKA,125 K-Tad1Lgw7k,103 VKaGKi9OHQI,99 Izr-5yitrb0,123 dLLkOjKNanY,130 TbdjQ6LLFsU,151 jd4tpvAcKYA,161 Wxy1loV9jqc,117 ENkEuLrzmnc,118 dw4cZQicaVo,71 qIOC-6zluBQ,110 jr_bZ2gzRIY,126 PVuB1pBFA5k,133 r4SF22qFxbE,130 UCehCmHzBzw,116 W1p7SP59Vkk,123 2HgE2gZhovI,133 _U8k98LPpjg,211 6J3zkkpEkWg,152 0eC9f13FIJ0,119 72R97Mzaey4,132 0s_EWjNNgWg,164 -gkBCCbycmQ,132 hfW-fzTbpRg,117 UU8yY3gkZZ0,133 V-SMOiDv5pA,132 eRBI1VSO7hc,130 KUBIJLp4W2E,21 OuH_qx192js,129 YetxvEnpKh8,133 qKj2c67Ht98,116 YgqgSaDCgC4,148 z_eg2OjO6uM,147 cdkS0TgEG30,133 RAvoR20o9s4,133 Q1jBnVYmvgE,20 6SyjoKS9CXM,142 z5S3e6sCBV0,143 HL_VmoAOZtY,134 XkGVykfJIts,136 Pn_XD7jDwFQ,132 urWMTYuDxME,133 LntFGGP92xQ,83 rtqgJvhrswY,112 QnyzZbrrh9M,133 Il1j-dS5dBs,118 SMQ6aga9mI0,136 _AA7Q5bWirM,117 ziF1CU69IEA,138 gHfRl_ZjHj8,132 xrgGccehkKY,133 1IZtDOuubT4,129 QL412_xWtT8,132 cfDwQbxRoEo,128 GH3WNYCuRks,133 6BDzGP6HuGE,133 Ruw9fsh3PNY,146 G9puHtVcU5o,104 PZPOGfNlJyo,132 4Ufv8hcJZ_A,160 ktGwZKWClZg,75 xPLtxTJnVOY,103 9Dka54jH9po,131 JU189rHBIIQ,92 39vZZiM3kIA,122 UOdl87tD-58,124 acO1g9PEIBM,125 g7QBS0O7gT0,125 cYdScH3BmBk,90 J1rrdlXZ-pQ,133 SJeCtS4D2HQ,133 alziIIbUN9o,143 SEaGeyLjBUU,127 IqefatGKx68,130 ASVUj89hyg0,92 sZ0nA_2qOWc,82 YCSbEzI7Nz0,92 gKGmO34XgMU,132 Cx7ip9cWKJg,102 tBNjWDkNbms,119 4TSoSMLHTi0,133 akYf73cUU6U,117 9DlWhZ45k5w,131 vVjfW-P5yZY,94 uxhJ_E3LuNA,113 rs1V8Sxp3ZY,134 mjdgDECpWr4,136 f2ugRkVMOuE,131 vEv9tQL3b-A,132 e6omnFC9jC4,133 VSjHX4LO35c,106 zstIMA6K-Ws,107 H7XEyuPBE48,112 hHZs6i30Xr4,152 SvVYUW8r_Dk,146 T5d-R7FDG7s,120 aTPdWYo9zhQ,132 ecsPydUbYGM,133 lAhQbCN-Zvg,120 Rxe_run_cIU,35 QSQTYxhlIog,129 YiD9zhs0Lt8,166 GETldyxkTEI,133 cUQZVnerwI0,130 NCqhkbAkzug,127 -gD05qjgKN4,126 UlsRjhvfKJY,130 1fscFQfphvE,130 -I5e_GXU4Zo,84 3Bm1V7eZBR4,132 7H_MQ4OSwPM,74 RMRT3_djqqw,104 7WqzJvhR9Fo,141 6jBoRcyfSlg,31 bIbxR_KN2TM,124 mjbxL_v2DPk,100 WCenGKkj3YQ,127 gG5kz32ot20,139 ZAMQGIx3JKk,130 nukRk0WMspo,174 xCI_stZgRHc,85 KkLV3MzJM_8,122 WEScYukcD1Y,108 aJCCUdK7PiU,103 qb00B8U8UBw,131 qcP3rt5etd8,65 ioznxKkY_IE,70 urdf4g-LXk4,132 a7K1xgoi_c4,77 kVPIOjjbIpY,147 MGy5sF8PhRQ,109 uEJ_Ak34ias,128 J97F53CAA1I,116 XAWdzV2Bafw,131 LVt8wEpPgPQ,129 6uaqkS1AiS4,120 Iqenc7PJze4,121 2-oMhYVEk8w,124 v-OP9DnMN-w,132 DsLk6hVBE6Y,130 RD6BaHKMTXk,130 6QcrQ_TIoKw,127 qZIIx-X5Bbc,129 9N9BwAElBiA,132 3PHLmv4Zzu0,112 JpE65kS0aIo,128 PBF9pOAjXt0,130 3AD_sQbn9EY,121 cQA8oY5pwJQ,256 _lykwQIS_3w,140 Fs1k0EMYydY,108 mSD3SFHaqwg,129 wYMfDxQdnUc,87 wf02wZ_Okw8,130 x1brwiNhp6Q,131 Akl5BAnhh_M,72 8tp5RSId2g4,124 FiAJpDiz6Kw,121 -sq1AYZOWz0,127 VfXFbuW47kA,133 vXLLH1eSOZE,114 WgLyqfSdbDg,129 XGQpnngBL_g,140 Qae03boj7lU,129 XGZ0K5Rpacw,116 CCPDUXbLqVk,36 NaKBQWLRJqw,131 mszANpbvdM8,179 GSw9sjqYK_I,247 jVLk2tqreto,146 nFYtmrhEBZc,118 tlSZa51g_rc,125 MZhNDpll2Vg,179 i--0u4m_zZg,124 fqYue6YJVSc,20 sdNPmpfgOMw,92 jqyhGCHT-v0,74 5wUu-cKYMgI,120 Vs2Nq6isib4,133 RSEMLDUOqe4,130 2Jq7xgVqPYA,127 XMmlJnxP7Y4,157 ar72efkbkSo,131 dwecZ5D3tFY,128 03NoI9KiZOk,121 2IVX_4BG7m4,183 zQLLIxNky50,118 6u79wLUXGPQ,104 1g82D68N-ys,127 kSyIRLpdmlA,134 TfGmV-el44k,126 h_N5IH-bWNE,123 uDr8qT3BlHM,132 lR6vy0i_rRU,133 X1JIzLmbkA4,204 sKrqOTg_FJY,103 A4Sywg8Yw4Q,132 OXpqA3BvLLg,127 RineREyWP-4,133 2nChsqAPyHw,122 Z6E9SQ_ZLkw,129 Tg4_lfm5VrQ,99 TNsEK_IIs9U,104 OB4ppp4EAAw,109 -Ixi48TxkaA,130 I4ktnP8eOOY,89 fbmyMs5HAR4,141 E3LODyZSXT8,85 wa5asCQrdPE,133 vLAQiwEGGKs,132 bW0aNTB523c,79 aWinsyIVC3E,132 Bi2CHeMhNyM,98 R1ejcTtTPTY,162 NRjWEE0hmjQ,134 ScMlNpnLI3U,107 ceTBcVLeUtI,127 rYjtudWe7O0,132 aoZDSctyBE0,116 W3HDdYjGDzg,145 p7zF3vZL-4s,126 YSQ_eohNRrM,131 qHm2lHzV7tM,105 kRWvfBinmWw,133 7qVgjGI6Lsw,54 3_dGBLwXBIE,124 lh9z3hPGqgM,132 tcCo38aP8qc,133 Wwoxu41UkNw,122 nxTEOyfchP8,109 FIo18XdSuLs,133 TSaB7Oltgwg,123 rm2NO3Nr3hA,101 FGcla1_O220,131 fARjlj6q1uU,105 ojiHA64n6iw,109 3Cp_-nl5jEs,71 pv7Y9z9ZvR8,99 XYZ_oLTFzSA,159 UDqKtqsOwBs,116 wLTKQ-uXH1o,49 M0TjT53qpFY,131 sgzxcBufwS8,108 BSBKmD2TRow,129 KZrcqIvvB_0,130 tqjyFalTkw0,130 U318Nwim78E,132 kHFzcXAU8hg,132 cZwdCa0ynEw,105 jiP6PiKJLUs,131 MAzasda1GUA,124 t1x6i73klIs,115 MCo6TtUkCWc,123 iIeyS_5sJHE,108 ZWeqx9VP2zE,73 ZjWmPRPNWKw,21 G2un8xvArsU,128 foyloa1KiVI,126 rkuhTjnuQZ0,130 JrlQ3NAcPf0,132 Dkj-8VuWNJk,91 3XK3y_S1kP8,114 af_J2e4r328,120 4ImW1F6LyHE,133 Lg69Gwv4tOM,119 0aMQUngLy1Y,206 ftst7XzK21Q,51 xPulA49aBZU,132 R5SlDq1oRYA,133 BCHi6DrWgjI,103 CcPqBfuXdCo,132 1OcqJdBrRpw,132 nDbBWcwu1jM,133 7TBwFfjXd3s,76 mW42lBPbuTc,128 fnF1_aVlIio,133 Jh1ujB4gFv8,101 zXnWUj1a8Ss,87 d7pioagkX5k,96 M9yS_RvQ5AY,130 aTsjwO97Aow,132 MsSPAEtYaZE,110 1U9wqQ9a8GU,122 LoT3AimKXmk,131 tenCir3A3cE,128 YOO8a-wBTy0,142 gKGOG-Pr81E,129 RtWkewqIFDM,131 WS93LMcRGRk,90 gvJLNa16cdo,133 6zIWcCvQNqQ,129 sheRsZ2HOYI,133 -nkxnc1C6rc,133 ki8KblCCOuA,120 EL9EJL3O7bU,107 tiIiyG2Yebo,115 giegMz7BBPQ,122 s5XdRd5SQIw,132 ZDgFAFQGZbI,124 b9oREoCw3ew,132 -FGNt71n2oA,125 wFSW1l-Am_I,91 qIV6K8OOvYM,79 AD5N-le_1es,92 oXMUkgWoMlQ,73 qDJg1qnedF4,130 TUbgKkn9qFw,159 A_lu5jmaUbU,130 NjlzpbwMsz8,174 eh_vTiBMvpo,180 ZczgtOsK7WU,117 0EKDRD2sHI4,100 UJ36_9oVTO8,97 R_shARjqjLA,89 Pu5OjNuJl30,178 9KwuLlQrkVI,135 -HTF_tAUtkQ,129 IEfj3lH-scU,185 rOTyj0-PRRY,132 msKXGrgvzP0,116 Q1WdHuNv1uo,131 1dqc9SW9OFI,121 PJo7WdHSxoI,131 oviA5ncbmc8,139 LmZV7WtCRi4,138 1Q67bMYOm7E,127 pcMXFYqwPGI,132 uy8_ARH8yyM,133 IYju9ObPTTw,113 gLEioQymzKc,101 IwzcDydxQyM,118 0RWk0XTaEX4,133 O1fxGIiCt1E,103 HZCaSyid4m0,132 t209ljjmTqg,129 mPoxI4PmAl8,115 C-Ad2a7UD0A,132 jowNLHQCAAY,69 bLjFBMuBc68,84 PhBZ50d6Btw,115 d7c4TXqkMso,118 ptgpK6nH-5g,113 aYuatR0B8Uc,96 rhQ5dWLFLPM,114 ye_E3_ik9gQ,126 PuFTYd0b6n0,173 x0yNzsNUoK4,117 nTBBQQRE0Z8,145 HbdxvncHvCs,135 7hrG-FtbWsw,125 YdiAV1mo4ck,77 hMW3GQ2x79Q,132 rku6u5PmiZ4,107 _fPBDSFxGq4,123 nHpuQMB2pVU,120 iJMYIXoFGcQ,132 YOtz3kdBKW8,134 S7ZhqwAzKTQ,110 HwHADsTOVMs,101 pBq_lpX9LTw,112 _W5MVZjoNwc,132 45wce6oSr0M,104 CLZUz1TwsDs,133 SJB5InL3g7I,132 yvcIugB8yt4,117 _mwKm8tpz-M,131 1W4y_8Eu38Y,90 qYufeLaIggU,133 d3P2O-Up78Q,119 oJ3bzg-Tvt4,116 q7QxVddVEW0,133 hgCr8TOxcCo,133 wRLLMDtKPvc,111 jQ903giVNAg,111 QJYrz4jET9M,128 qjbkmhtAsJo,133 RNRZxWxgQlg,186 bZ0jZaH48b8,126 UnSxnVp8FzM,134 fp86WZ7Jn5g,115 sWs843kQxaM,132 OXcI5qu76jY,133 vKePn-57zAA,238 MeypYa863r4,146 Q-_d7CI08qc,129 3rd1U7VpPgI,4 x9u_a8eEPlM,132 zVeJ5F26uiM,134 aNUs1A_sUCc,122 BxFaosg1mV4,104 Ternps0JFwo,133 RZziZRbaCPc,126 l7unT_lKtGk,15 1LYn1my4jbc,112 rtVhMrgtcq0,109 2KuNMLOKUXE,131 x1BpKIb7Ces,131 Lk9wSrZ0fWA,133 s5jDTz07buw,131 um3tlxmK7Cg,117 Aqqc9H83ECk,132 JvVSTmfQJyk,126 YMhAvAFZ8js,130 AMtKsDnOw_0,121 SY3nCdfnsCQ,49 6QYrOTw1Y4w,130 ewGC9K-7NXg,133 VpOmvE4sLUY,132 bOKID-aX3z8,132 5LZfv0tLZKE,132 S7h60nfyg3M,125 bWJkPbBOXL4,132 4EfmKXE-Li4,132 9CIAkk-YENU,130 LYtSsBCYByk,102 cvakyq_EaWY,84 u3A8DoRXiSI,132 XARAo5zXJsQ,131 ZqTzBhLdJO4,134 9hbBpOHXAkc,149 gHfTsIMdlPg,72 5djUDJaY7Ig,133 1tZ2EZXxU6w,130 iRrAI8tl8d8,130 TXZ9nnOteV8,119 ZCYBYZDrmWk,132 Z18eK57wD3k,96 HHxezNV6ntY,133 _vxVcxYCyE4,122 t0Yf_fvD-lY,133 fk2MU617-Bc,74 O4itfvSP7-c,191 a6oC5iQB4u8,132 IBeMUoMTeZo,133 qU0H2mmgsjM,128 oK4FZ3ks17M,105 Wje5oR4NqYI,105 uxvN1tNASYo,132 CwowG9t4bPU,133 gAN-yHGtbY8,126 XGgVzfEptX0,129 YOcfHxXt_aA,111 IvWyoUACISc,133 JeeZA4B1qyI,131 hVZ9AGQL_oo,103 -NW-w5Z_vpk,123 MRmFis1ZxUE,132 bQzh5ugYzPg,117 mdYIqSZblv0,107 ffR1X6gndvo,132 iZxNbAwY_rk,442 te366vMoW0E,127 zCpJ5qcmPnY,101 eAJLWSg5PIY,131 QecVEAGoQ4A,132 u0ttQ8Dn7LM,178 -cOOPGQGqh8,113 cB0p96nOXjo,133 jw41pJtU6eY,127 MMiicN9p8a8,133 9z6_GAPIkTU,129 JBLwuC2gHVQ,129 9frZAZs1Cqo,162 HGCOxt0M7cE,131 6w6aNHXW93o,133 wwe_yos_-ew,145 LmCGd9zuFTs,117 8ZYQejxdHdc,131 vXmHNYtFll8,122 3CR_U8066OY,129 dUYCIwyMZTQ,125 R2n0ZDq1N2c,133 6zlY2XVDl0E,73 4tTTXKxHcKY,133 D3tnuA1OazI,91 M9MvIL2FDaM,122 7sUwnda1FUs,131 FKj1vfHB2i0,117 Ga9YztTUYaU,133 -JeKHhnEcw0,200 oR_XFDHk0Kk,134 PRKag5krnfU,133 RZ-__QD99DA,132 y3zcF3YvK-o,130 bXRv0TjJQZ0,104 50cIB7qKfnk,82 FZ1f-u8RqBU,105 VlBUPtKIoHo,125 bHoYO8b2xOU,21 YaLewAfBoU0,115 h1KasQ7pdL4,131 aM4Gyz0kd3Q,121 orGDoXo7xKA,108 IAYQUTYc_tA,173 _lSzhjggxjI,129 ZRJ_tgwyLUM,110 0S5lIhsh2Rc,156 UBMs3lfRim4,133 zzjFcjSFoqs,133 DXRDZkTNEuM,122 XObhhoFp6G8,83 cgogH0SylMc,82 6nvQySlxSWY,132 PRximULrt4g,133 G5nY_snMhic,99 oWuYilt9hX8,133 GP5MbvcXb0E,106 lp0FOpFdWi8,113 k7OWfTv3Xr0,130 RSvx75Md5l0,204 Ar-hnj5Zsk4,100 xPBBnS4br9w,117 89lwQxQm5co,62 m5aE6rnmIwg,186 YzPOjXIwbu8,131 2Yu7LGZcPus,116 fQJzgovGkSQ,170 HIf2wdbacpU,79 kZGlMOfzhC4,133 gqxV6mOE2L4,164 X9mTMZF-CTs,155 V4aBCK2UWpQ,120 m7_LwdyNsIQ,109 JcO_Cs2WZLU,127 4ZOT0aLogWU,131 6s8ZEFUSYAI,131 8kiNT3_17i8,112 HZJ7Y5JooZM,132 IYBAPVjJykY,133 27gWbiG9w5A,132 b0dtzloyP6k,113 JCLLZQFyGGM,75 UBbsHeltzEE,132 il4NFf0V_HQ,77 8N6q0Yprfwk,67 aPElaYUCTmA,124 fUxg-0j1Ijw,130 rILBK11XLA0,132 NH5fod3mC7c,97 6XWpPwp8p_0,133 BjbnFg5KBwI,130 g0mHVE8ebqA,84 Fsqymfl2Q_A,129 QikcO8tlmOI,144 -Y3tZpAdWTc,127 5UnFOqWJ5SI,59 VjlGwSBvL6g,131 ksFNCZ951Oc,146 M8LDQ6M_CBs,133 Vf2TpWsPvgI,214 SZDFWDc58TE,117 4hgt2hCDgr4,95 ujC4W8hJ4mg,131 U6uNt6h3_bM,163 _56dNRLXn8Y,131 MxtB_Ri0q_w,117 8JkLimZnZAs,76 WdehPsCJab8,122 QA029M9LIVU,107 zgEYrXfWhWs,123 jD4Fh0LsvjM,123 OILU3oEYu8I,113 UXCzmFHm3EE,132 32XOkSNoXdE,118 Q-xBDej7O6M,121 o-Hcz6we0mk,131 xa-P9llTLM4,133 QQ6SadUAXWQ,123 VyMHLfAg9bI,133 3GG_4UaCD8E,133 F9fEIstp82g,126 yhaoJxQpRg0,149 _r-R-b72rL0,112 FQunyqgIksc,120 k0tc08W_t-Y,85 pS2a76BS_bA,140 7r_DI5X5ROs,131 0R1F6r2-ngk,125 dQ0sgbvSQAk,127 FYh2_trJNiA,108 Y-N5lfNPLnY,117 93uAmv9qwNs,104 WPPUUvcO43A,124 LmiHjcCiYwQ,129 YGFrKow2KfA,85 smtDfh1TXe8,88 KNip2ZamrMc,127 9oDHw4wwTQI,102 XAm-zfxcktE,118 NcYbRZdgLik,139 bANgFADltvw,128 wAE0vlaKvkM,123 LwvvOrYPcuM,132 NGceQLxvFNE,131 D4QyCdRvXr4,113 1iFQ6IvEQXg,97 1hMMUJ2Gn7Y,133 rFXajFXNWQw,133 6ygujqr_JWc,132 DTJii7bLit0,94 xwRlSxS2azA,130 pe8vv-fGpWk,69 yPbgAbAimoA,133 42sANL2ap9A,181 JoNeXThhiqs,90 lQCPntZhPPk,112 mFBIlYRQBLI,132 uvQFoM1fj0E,95 DhGaY0L1lLY,84 BeRTEiGRbw8,91 qC7yIu-ZQZE,72 sxtENaaaPpQ,121 P749Vnd3WSw,133 BuwF3dRJiS8,111 rWvIBJO8T_Y,94 UJ9Q1b1FwKM,130 DEHpRuG-P94,80 AOKzlx8p6yM,133 -7krYJUfFv4,129 K_jwfCn9X6E,115 04RW0CPquaE,85 cqlk4EfEDJQ,110 wx2g7H8UvrQ,133 -Ml2V9Mos-4,81 2LWGe28axmg,43 V3s3OXOzoH4,115 _ewnZCc0imw,133 gvbI2bHohQ4,132 PjBQfqlstnw,126 QC6Sk0ysBm0,10 2z4o-jBlqq0,85 ESjSqiHhL0A,85 -jdRfe6f9YE,32 c9vl9Rurcc8,133 2vL7DtW6wGM,177 fniTZP_4V1M,106 JMa1f4jyBa0,128 pAs8uvKNkcU,112 DPksJcC1e_c,133 NpI0s0ky53I,133 C-DCupYm66Q,130 vXsKVaJTQCA,129 CmCNWoo1TD4,124 -sYKI4A3uhc,180 yu_9eQXlsVQ,131 rUmzIsaHTY4,24 2Bml42cWPpo,91 nic5WxX4BCo,110 AgJE212GTcs,133 2nmGS8rVuIM,242 AJqxvDQIwIE,21 onbiOVpX0_w,133 n4hHWb2UUQI,135 sa2TE--j394,145 qizUajHk7r0,139 1UeNQlmxEkQ,115 oFon0yFgldk,172 Z6bU-bOkm2Y,193 m6NeY3rTpJU,170 cH8W_cTQQvw,126 JPHzPWffUCc,62 FY2kKLvUL2c,131 ZfCZwP2Qe60,93 nIJQOFSGKks,95 t-T4RYRUNWk,131 LhbHp9ey_sU,97 OCXvMchSYX4,133 tjYSxlqLOew,131 6G7J6lZDW3E,133 dRwiGgbaM84,133 OboAFE4Tr8Q,65 GrMoki4-weM,133 _RVQuAICxc0,84 3CAQ0iZKP08,218 ye-S7zxbv9o,114 sLECDbDoXaQ,116 moYhss9sP94,132 ZFt3xJ6DvVE,124 aZe77wShCbE,132 7sQ6ktZxmYY,133 aTTbCJmc3Cg,114 T6QO7UyB5tI,133 zQydroqGFbA,133 JuvJl9iwKb4,133 5rrDUgMfVuo,225 B0FZhLeHy7A,132 _8s4_Nabo4E,131 KzWronMcXR8,125 EGX-t_U6vkg,128 dxsVIClobT4,122 WFsMguGrUVo,220 QV6em4mxnE8,125 kBJD6iSkqxw,101 BSy7Wzj4OCY,116 3hcmGG6VUsU,130 jihDFIqNz1s,130 7HHCL1eRdVo,129 wMvTR012Dmg,133 8yOBCGwMpeo,133 SmFDafzmklA,126 w7mr-fVLqis,83 lChJz2DSpsE,133 sehGLkGe-iI,125 T6QGAOSIE-o,128 6_Onrl4g6H4,171 omYsWxT4Mbs,125 W3-UIdApbyw,231 fa1DuNjhWOk,130 WgBb0YoMp1g,133 MlRFw1CvPd4,134 06yqAuIbuVw,126 SxgfSDgHGYw,133 K8qQO5DvYhE,128 d-nJUGK8ABk,123 FXZ3JnwIph0,124 tpyZHmGRPuE,128 x5Nu0PPrI-E,128 rCn7orvs0Ws,170 H4XqH0FHGc0,68 MTX0Ig39Nws,133 SHdKVf4jA0c,112 gQ3YdU0WlPw,123 E-dMy3oJGT0,70 I-xbToSaaPU,52 WA-A3QhXx30,171 ZWSHjks0ESI,133 nejXDl9BPbY,133 DsKfkkrTLMg,127 QZq0zhzgres,115 JWUrJ-zH7fw,133 VWJfmCFQjAk,133 FIaxR4Z1jVY,119 387KRtYq2mE,133 C--iuM8NcQc,133 5R7pGpChUVw,109 GwkD7itIsCM,103 wVpIChmQ7dQ,127 ZKIiHz62TR0,91 eensusNo-jE,111 2VKpd3XEbD8,77 Cf3RfidFKBw,128 LwioGjicbRw,132 Dpz8L-thRmc,133 3vi7043z6tI,133 DPPoZpw3NOg,126 ZARAldXlSyA,215 fnl5_3zT1d4,130 QD1FH9vC-q0,132 1yLt0kzJIUQ,130 u74DpEZeHbg,113 WkFdij3Wr9M,139 OFZS03hWtlE,122 BLHc07GYSVE,85 FOAj7BE1VEg,137 kROlgEPoSVA,133 1MnPXQSWAJo,103 wOzRG7N8_Ic,119 AYfAyTEVnVI,131 B7FkLh0uqdc,133 Ib8uNldNd-0,179 SoQzCG8nTbg,124 lufECeWtN34,112 x3jT6tQ_gJk,124 60ldo3xGfGY,177 Cfcaik7bDyg,135 YE0WStB-1cc,119 I2UTg_bYu68,131 BQO5Xy2ebhs,129 jrH2FZC1Z_U,149 v91LBP6w4aI,131 aqa74uEbtDE,131 JMWhU1FfqP8,132 IvPewzBKqYU,230 P38cMPv-Nag,107 ysIsqzXZyN0,134 uw63_YyNsF4,133 6wa4qfLmyoE,121 sdfDF8OuPPc,81 rBZQHST6BQQ,130 dOzJKThxL-I,21 30shqA196uw,117 NnWIRGdMR44,148 UvMusa65chI,79 wlhtHcN0wo8,114 rhNty595BeI,84 Z-Vnk_VTtzk,100 rGR6aO4JsH0,133 kTZLHA6zbnM,97 zmxWCJ8iM_8,105 abhF5CFFW4s,132 q-StMfE8NrA,133 LKR2bN9V2Bc,208 k0aqHfvHcsc,126 iGk8yvyixvY,185 Ke7vTfbeH0w,93 yjF_gSu6xCQ,131 EaPpa-eoxi4,130 Kf5iT31fZN8,133 5mAO3eeRP84,124 uJMPom6-xmA,128 0awcEOEug5c,116 tQkTtnCV1n4,106 _UZxXUwQX84,138 nYoAZo7L2w4,153 yLPFWQ0NcZo,129 KRhnyD4ZLkI,132 ncOY7vtsY8I,96 21mtTvR21Ts,125 hFON-hiGW8g,118 2lavod63XMI,128 njlI82MV0gk,133 9aPhLF7yfU8,131 m_7Bm1gyq2c,132 pz0R9XJciO0,132 IYuknBe73ik,109 sOpJs8Licp8,135 iNgDtwHreZM,133 F6AdQghTUis,79 5PPQutDwpmw,131 OmBxRiaJzFg,76 0iSD31ToSC8,120 lDduI2NkIsQ,82 iONYYY7lHo4,45 xTdNSA_CWvc,147 JhE3o7EwmEI,140 A75AgrH5eqc,121 lnf-VO8gIGg,133 BcW6m0Rg1-8,131 8TG4sr_y-Ys,132 fMI2u6Jp1FE,130 xaBIju-chWA,94 AcuaoDtYcUY,129 fTb9XrbAMRs,133 CKJcpp8ff44,132 7v6zdWNRtLI,110 XoW9HJEDk5E,132 s3TkMEuXaqs,72 Jrvr-VIymgo,133 RKBZx9XsCuE,99 9Jwm_LHAwVo,133 mbPEuV3NJIg,114 y-TUmx2Ow74,79 RVGyvDhPE3k,128 M_ejjr2-4WE,129 QbLPQWZWXjs,34 QUYNJvRn4jw,117 ojgy7kyNp5g,128 wOp2t0IKnUo,106 x883mrwYjDM,125 jqdKv0Vz0sU,117 buoodeEt_hM,151 rnlyf0wk0ic,154 EPtxN1YoQ3k,98 tX74H9IuYdM,70 8T6_bpLwTrc,95 ejJIihkZTGU,127 5sEZmMeH96Q,157 i1lkrSFlpss,88 KihpUEKi4TA,128 9lInNK2jtx8,133 xZOMiFk2ThE,182 3e-DXYUvxys,125 zE9G5pK4774,29 JQRV5_auS_Q,103 7kTGVJ5OKDA,133 GNQ2LOxMi9Q,133 IlLYqvnCs0o,133 KfprSGvOgpI,133 B1WG5mK06fA,130 i_Y5UB3xxW8,120 0zhatVdxShE,127 hQCG2AwzTxA,133 x1gEy9LSa4A,146 dcO8blFBl8g,117 cE71I4X9hWQ,160 84VVZEw9vBs,132 faZ88f6Gfzc,121 DERds8rPSi0,97 KtBMZ6VAZyI,131 -5Pku48YPFo,125 Hp7zxA4BsKg,132 1uIPM6h1gDg,106 l4bCchzGpkQ,125 TqL70V8rn9I,131 q-y6JBpCFtI,123 Wg89Bj_9Wg4,131 awYi2rXf1Ws,133 HOoHh7wHtvQ,131 39zzDqksCHc,110 u14YNz-Ym2c,133 1kAtlL7cZOg,132 JbRDwutWOng,119 Ls5834hbssM,95 5eSrShL8dt8,119 b_jYYdrSYBg,109 qE9eKngduGM,159 vdq609Xci-g,131 5d0GYRAD_aI,132 lfCVS3HWdjg,158 ITSOiqkDzrI,133 YCN_nis2E84,109 -L3D0BL9ieA,132 lU2FHV2lr04,113 TGyqMjtaZiw,145 8SqhsheKNqg,120 ZW66_8a4rqY,132 ydMwnnhLnLU,121 Xbf61_Fgldo,133 HDUHC--wGt4,93 EFgCZDRkacU,98 bXq3dytL6ZA,132 lDFltuNEfts,103 DZ2_coKUWcc,133 FRogQQGQn1g,106 farC0cWkpvc,121 Lgwj8KoDshs,133 HK4eFj52f1o,134 R1JHZFJyWds,87 ac6FZ59tna4,126 8Wg3WYlR2M8,114 l0VX6h8lP08,133 -zoOpeF5Yzc,126 IzkrKfk4kYE,102 ix0_IOPyX2g,149 qrCkASenz7I,182 FTgzyx6931A,75 TJj7YqhNxiw,125 EETi6NJFRjA,130 sPZUh1YRnDg,130 VCghHER3cOU,133 t4DCOpG1oNE,102 zAc3K7mjlxs,105 Op9k4MLjKSQ,97 7_wMbTKsnvQ,97 TyPhgetzMfY,119 NoiLYCUpS5A,131 WzBS3IIb-vg,132 W3c9wtbQTZ4,133 9BHXzftnFGA,118 e2FdM0YQSHk,66 FEddJ-WcZfU,92 fX4XAbCTdYs,118 LDnFpgimHH4,130 uFHReMA18_c,130 mWquYel6AI4,131 iX1ha-hADlU,172 Q9szFqOlDJc,118 vJFN-ZPqCiQ,128 JomrLxDiT5g,124 gvKBHCBBdf0,204 RfKKArjmRHI,125 KduMYNqIGBA,130 xknWZIAzBCc,133 tifUOGFTOBM,47 z6QWyZYi8ZU,131 lEiwqEMhS9E,128 McBW00qkAlY,126 3WscLkiiCts,132 4dp5Q3B20aE,123 qCq0IXXi_2U,133 9jI5AN2KZJ0,88 nNXxlYCU0aY,132 ufaAnz9XmsE,222 -fMCqLBMPPo,130 XFmCXGXAZ5A,54 3teArKtt1PQ,117 885EiuL9GKg,114 hp3inTPISwQ,96 URHjEpowEcw,91 Yg1izGf8EFQ,131 eoSPKSIxeek,122 mPxTwqzr1sw,148 FyS7kFIZJ6k,116 UqvuJLOCSxc,154 doVYFjIJcfU,129 AyrP-pwDayE,112 SLkR7mzysAs,109 7-59dVoKmik,131 v-UIgJgiPJs,130 ie7XVOuzf2U,125 s0bxFcZV40A,129 YFUCezoyzyk,103 eKbXO0f-mvw,102 sMt3SzAH_i0,119 0SMMbr2kXc8,139 fZzxZa0k7II,112 6M6cpjP7GIo,118 y7wj3bB6OU4,121 6f5ggdRQuB8,132 nd3MVcbnfAc,131 _oBX12cEu-w,129 -tlRw45_Ftk,127 ZGNoXIhKTLw,98 OXaqam1ZdZs,129 IxWEtRxzzhI,129 bnIEGNhW3ZY,133 VHLbq6oeSyw,133 MTJzGzdA3c8,73 RMd-tHAtdoY,118 wwwhtUdGOVM,120 GAEBkpl1cIQ,133 CmpDJs0Mjj0,118 lAgPsmTxBfc,130 Id3vqOPHk-4,133 CjIU-zqxJEA,141 RlPaVTRPVLI,130 KgqzMdBg7ig,126 WgFa1bVTQEs,130 q3OTEdZkBaQ,92 jDjZ_Dh6HSM,133 cfM9_PduF3M,115 wMZ5UJRpxfk,87 DtTgHuGgW-c,122 WdDUhHl-BzM,125 iHllnWESLvY,132 LwNWzSruov8,53 A1MEIKVyYPk,130 jr0JXSM_0Nk,133 MiPH7hknJ8k,173 ukvZvl0GElQ,179 NaFy_SWmRlI,116 U2iJ1VmhksI,133 c1nmARXTuvE,94 nr037owyBqM,105 AZIk5wIq2Qw,134 o3fUAorIxss,133 6-RSVTLojGU,133 1VkkHqm3q14,144 ylDhWZKbCrc,132 eKKd33QEB3I,58 7Qe11Thhwvs,131 vWyPfvAbUOQ,59 ep7wuwsdgqA,230 nuLPRAvxkDo,88 _FyezVyMFJ8,125 raLZ6l174_k,107 k8QQCwXyVbI,173 jTGak1m5o6U,68 6FJfcqLCkIc,133 QWMVhLtFtNI,217 jKu10hihpkg,130 jK0s7zfdDOc,95 -JhgmAgoDBg,21 R-PAimSAL08,108 2B4dnGQc9wM,86 6u14pLHV3Vw,133 MR93FRxKjTQ,123 1XBwwSzLqWA,155 ZYq7Q_UW0Vo,98 BJHzyg9AOsY,120 OyH39BhKP2g,206 SzfQ2Bwhkcc,120 jv2MsLBMi9U,111 JqDOosChydc,115 AqKpGR4EocU,128 6JSqeViZRU0,105 WqNMjZpSbnU,215 N-PI5nIwciE,129 x1DLLAqLiAM,105 QiVfqVQ5t9A,120 LBU5Yu6RFBY,120 PII5jcf950Q,130 8iqKSKK9_uQ,105 ZEqt7tr41Mk,133 2sY8MYUTfiQ,131 9wQHMLWpVLk,91 zcZJF81jt4w,106 WlHZBcuKDb8,139 Gc8MuT6L4Nw,131 dMJolQgBp38,133 SnJzOrHZwk8,189 78RKzUAQD40,63 CGzMqCfxpPs,121 tvCjr63AgtM,129 OsJKdxPwZdk,131 mJFvqNOorTs,121 dOTGLArtfrQ,126 IrDrwaot490,127 vyMggFe9WRQ,99 CuscvBChOqM,125 s3rv0BdxWfM,102 iptTDWFBsGQ,123 ANZUU_ev5HU,79 BZwbVffx49M,169 pXIcjMT1SUg,131 Q0wlGNISV18,21 yIzzVRK8u9A,21 KiOiYYsMcM4,133 _U82hhWfDFY,98 HqS7VyuD_Mg,114 eEUulOnl-n8,123 q7qwqVbZSqE,132 50j2eckQ1to,120 PTg0wFv6dZ4,125 bRzQBGwfMkM,72 yX5LfZK1wTw,133 0sdIO3lVTWE,159 WeVMy5j7ykc,119 cUnb4UuUS8E,111 _kocDBoWDcU,174 NyxW1SxFqzk,104 24QQqGjDEKM,129 F4vBy7g5vpo,130 g46IxT3MGP8,123 q4G5hUvL-wI,115 _K6U3FyJBv4,114 jgcD-DHpPR0,132 MdMVzxis5vs,132 2Qfa77SRZkc,169 -33sUQVbQ24,123 dNK-wsUHMvw,58 969gXtFAcZU,133 laQz2eLj1-0,146 0SYBBmzZPOA,150 0yYUlLFlw1I,119 DdqQsOC-A2w,118 SDS5UH9Nnus,112 JkJmzgDiUtw,145 YuuMHvaxXFY,91 iBaUUJOO6V8,132 jvCmoJHIm-A,127 bpcwhWgWfCc,62 daPR5OjY6bI,132 vN_HrPvTVIk,91 g0CFQF54ePo,120 N72sZx-UMlg,132 jXGV-MT-TmU,133 FHB3oMNWk1g,103 23x_B3MpUH4,132 1UybDydQpNY,83 LwgcvZ0z430,150 fgq0ecMHfzc,133 -bG0iKaxQYM,148 LNFINZN0KXY,132 _-xCcoG6Wlc,110 U2Eff0vnE6s,59 tskuP_9J2RY,142 4zhGIlO2Lx8,141 2vjWxyJtUdo,119 WhZEKkpf3CU,119 nATapY005XY,192 MjOXPVmOBSg,133 YJbQz3bTn6I,122 niZKrt4XAZE,130 o2jtBk4B-hE,122 vj6kMfad_2E,133 rRUuycF5FTU,132 isgx4Srs9t8,132 ETrY43GsoHY,119 eqk4fOK2VU8,133 UZqpweWv5_0,130 BWWfy9YSQmw,132 1cFyFvO56Sw,131 x90GleSXqIg,128 UgxCAQEI16o,133 Gg3woGs9ZGY,113 wYSIce1SzFU,115 Ya4RBKamUqU,131 EdxnFXQId-0,107 VCRyYN8DfUU,94 xSTf5WyBUQ0,132 ZDYLUH3BImk,133 GwQdBsTpmOM,111 RnTG-5XU49o,132 YOkboxqOKBA,102 qgmcXs02URY,133 ue0MJQmrIlg,101 Kq3nRBxVD3k,123 1crhwQPKr7w,133 3FDh8EtZETg,130 jlYY8xkTXOQ,132 gmYSTObayoY,132 59E_IDXFWuY,133 MDdgxMEIYFI,114 eLOVOy0CCv8,39 ymzHr_Uvp7w,131 Pv4M77BcywE,132 8fIL99qy9HU,118 pqDU_EJrb2g,133 hdIXrF34Bz0,99 8TIqqUbWUTI,100 CidMyd_Dz_Y,20 UgjmE8BWps8,122 c17KWinVFss,86 vnQ9yD_IIwo,117 hUAGX1IOMr0,123 n137CIxjKTA,104 NGtMNsci-zk,128 Mlb3avSMD_Y,112 Nc_b69ag6Eo,120 6Dye05tvSoo,103 dMOQv0rb6DY,123 rTCi5UsRudE,129 ujFUQwcAQ7w,106 9bHnSNlLZh4,115 OJiaifxaWCY,121 o-e8eejeHLA,102 hsE1N5mfvmA,129 ShB8ZLISubA,137 5otacrrli04,177 PbwgDqZazAU,90 gpytphKy7a0,125 i-6UVTMiDm8,193 1RTpXJVozSY,126 v6Xbfyz0aXM,124 sLlQvz0y7QM,132 vHmyJqXxmL8,150 JsJxIoFu2wo,133 YShA_c8OUl4,133 AQC83SamleQ,141 LcX1BSUZVpg,134 ZFwI8ujpT0Y,137 vqOByzMoS_A,162 Tx59CHKUgjs,133 8TJk9N4RrNM,180 GUyIWu59kig,155 PJot4Pv7dFI,119 3RgRVQqUhhM,133 10GtbJs6GEw,127 9qEoK4PYN5I,132 WEnGy2hTHgA,62 f9_1eujdVpI,132 OhtKiOEZBJY,109 O_GMXI7Pp6c,180 5WIwlJP6XhU,133 CWnDVW07_1c,133 vNrNofWBcas,131 FHs_-lvHG4E,107 KMsryQSdT_k,68 4cbfnH5APuE,147 yjdZhknwl2E,148 tAH5PR2SvXM,130 V7u623DEJD4,124 kW7IPAaL7I4,133 BhbazIuvUCY,124 7wLSkQOkAGY,133 JOQoxkx9uS0,133 nkwyt0ytVJI,133 TT8o1fvTB5Q,129 UchtzdG8HdM,131 aDUZ8IC6wco,132 -WN4uZXOltk,209 -uhpev-dp2M,133 Lcf227lWEek,114 xAV_XfpHSr4,118 WXsTZ7eUpBE,106 ZRdLFB-SJpA,133 1cCEE8-jhus,103 uLkxV_gyYbI,62 avXk2EamFs4,127 DdDl6mbcGtc,104 gEOOc_mt_bQ,21 UQDSN9a_Zgs,122 arQDNf6cjaw,108 RhUPit82Gm0,133 0QbMWpwr7FM,116 qAteApi_4IE,76 0PcN_4_J6b8,103 SzzO21mg8yA,90 wK0m72Rf7tk,130 k6v2NnHxYPk,91 Vc7HzKwZ55Q,88 DKMzt447niI,137 h52UYfkLhXg,129 EtvbEtPIGiA,155 XnJvHpxr1Lw,115 L6YJkhVYUXs,104 fSqvtspQonw,64 l1B1_jQnlFk,132 Btn6OKhfHHk,124 3bo6h-7ryfE,125 DPRsafiw4vQ,131 CttvEq-ypno,131 ewVwSrVSKS4,104 RkxAAilnLEI,104 bqxDIHYcp9g,132 Nz15PudXkXM,139 RXC48uE7UzM,90 5ntVWRhfqo0,132 mTx6_XT9Hns,132 ZcvlWuqqv48,133 bw7GnKjkThQ,133 hcvAwHA7usc,126 0UlzQ-bao3Q,72 d8FIxfJaAYM,118 ZGF2551BMIc,109 7_HpQA3rLWw,124 LC1Sb6tRr4E,132 6ohgHjQvK5g,134 iC-oZZbET3I,180 DLasTex8Vnk,132 QDeWmH3M9-M,100 S-PPQ9aewqo,88 FE8xpnLMZlU,131 Is9bN_cdTMo,132 _B9xQeIvdHM,124 hvvTxyks7L8,106 Bn0-7zClnWA,107 vAyq-3z1SYo,118 ccX1d19hmc8,130 xDvdVxr48UU,204 lRjxk7z0kOQ,148 _y5i94TfOxw,120 cku1N8eCUlo,81 LzdoMQL_jR8,132 DzUc3Eqzzos,133 EbarO9zF81Y,132 as_lXF3HqCY,82 pCQuhXDlfL8,95 TgLe98ts0QU,133 VEGSjiQq998,45 gv1nYk_OJjs,123 DZpfEy3OsrI,132 i-f0M5TqmsY,132 E6jJUN52anM,180 rKV-U-HcGVk,133 MpXp07KfSFI,133 pXe74ckEnME,132 ufcsS9E-JVs,158 TpXABjbV9cc,127 lJIPM69YQNY,133 XZWz-YlVw5c,129 K2JtNouF2rQ,72 0klA5lTNwyY,203 ph2dq-pPBnA,131 rllKhsQXZXI,103 LlWcSO9ok9g,88 rS3VUoThFBw,142 381Di8Cw0-I,133 xWTQN9bqbws,132 bvjLvggrYUo,123 WjY6_V2EM04,108 6H72hXsLZ8k,141 cuK7JbG06ho,109 5k_LOWBvWCw,45 750pEcgJqGg,131 r0Iq2_euH44,113 D8yY16GX9t0,132 T_ZImfAxOu0,78 0q3BH18BmZI,133 LUQGBGUI64E,116 K44KlE3sSMM,133 ghaZWnGSgMI,116 AP3GWf3p4fQ,133 5p9rqqJmDaQ,132 IwcQ6LDdW9Q,129 lvyRzKr6Bkk,110 Ea5k9eZg7rk,92 8Gu2ouJNmXc,125 ASnNWCK3kiQ,129 BVwLpNGBqqY,129 dbE2-VU-4SM,128 uE_EjcgtiVI,124 vLXjWGI8sfw,133 88fxqiFGNXY,121 qUiptlAJcyQ,131 rVEFouzc6LI,131 My4ojpQzoWY,178 mhPPLQqVP0c,104 prGnVwLgxPc,88 ZMHEIVKg_iQ,191 r3eNr-xxA7s,133 7vRhOdf-6co,133 iRdTetA_Dqo,102 QxXbtzn-6PE,113 aVCOzbRPapo,131 KJpaul2yTOU,133 sQolThygoGk,104 HSh63MNfwbE,133 w_BL6gnrtDg,126 JoPPsr14gRk,146 I6mpHW3SMcc,90 UZb2NOHPA2A,106 m_C2cbqPkx0,90 OPQbpZwpLtE,131 zmqhj8EOLBI,131 vm8sOhr-0lA,122 BSEx_EMtQW8,133 TdRbjlsp7uM,62 gdbIINpktOs,45 GiOE_3Smoqw,30 jxIm__RPZuw,128 NhpvvobULYA,133 hVGcbaoRtqk,129 s3RNsZvdYZQ,113 TJ9f2rnjB84,122 pEa07GOtQs4,122 9J0DZojg6-g,133 Er3iFTlMpmc,107 TiCSS1zLCCI,96 JeT0XHFyAU4,116 IrptxQD55zY,146 WTi7v77XZYs,83 i5znTCoKLPI,113 hks2iXeaxsk,61 -hl0hUWyqoU,130 I-xX6foX9zw,133 KvWWoKcefWo,129 Q3kOA_8ws6A,133 Xm6JHSUoLpY,132 UFXtRWVYQV8,132 BIt9IYPOY2g,133 HnqkmLTgv78,132 k4YuBxpQwqA,122 YBRg2qsJ94Y,131 7UsWapAIMGo,128 8O97aGzvU3g,121 H2iK5QHr3Is,144 44RYxAPH78A,127 a_7a2sP4WMw,116 9Vve6PAxRpk,132 z8fwAxhgA-A,158 S_PvnzDlqmI,109 xUAn-hrMa0A,133 gZaagSRp8F4,92 V4jg8o9wXys,130 MAu2e0VbvY4,117 vE0nmQGO4Hk,124 sN7zJBjZgHU,140 QlNXJ4pAoZc,126 PwmNvgd5kNI,212 jaSs0dUv0zQ,91 cfILhtwu9S0,116 nLKymV5rwAU,169 7-C1cpG6TLc,124 -L9EZRMgmXM,132 vFSAQ1Nj7fg,133 bKy6BtAbTU8,180 CcrrepikVtI,133 P578OPOe02E,102 x9U9Xi1yQMo,127 wbccgEaJudM,132 HONa-BdZMA4,88 jyerVX4GpBs,168 2idVkpn0YAU,73 tPgwaQKNKRk,133 JSHPdnYixNo,133 9Dv0rOjEVIw,133 GiG3ulYg9MI,21 Ya7Qs1NHepQ,48 xi5rxsY_Nsw,138 gHf9n0jhBdk,29 zK0JaEde4VI,131 og1c8h2UyE8,132 0xPu59_MHQ0,114 ZI63g64kDgY,132 iNSN6QhIWeA,133 0999Zftz6-w,135 n1pSObsJ_hk,132 1TroueqxAtM,124 OELFAF76DEU,133 9H1gvvzRk9o,112 0xjYQiEDbj4,166 phzJ2Iam214,122 9dcybKF8Pjo,123 AyodiwWneu8,133 ttJzJtRiN60,10 hXg2LXOwsoA,133 1pq96OQlUWs,129 _v-_KbjVPxg,180 Gx7y8ecslp4,67 f4wQCy4xIyY,129 AYZZV6qazes,121 qckVPZkmiNU,128 9_VgSGZxWlg,15 VYMQZsZUxeA,119 rM3mP-39_is,136 5RPUchAlppA,118 0tRSAQUheo0,112 _XriL3ARav8,105 6MbOPK4TCB4,129 _eruoEC4LsA,63 xtz6dAjWz3g,133 eZe4RbiIBpM,121 Ks2IFhAqBSE,128 KJmWpR-4AIg,99 21q8w_kAtkU,145 mmuJb30cigQ,110 D8e-_q_iG6Q,112 VEwLgrpyamQ,127 lHodSSB_YpM,133 lClRzGmpFrs,105 zMEjTw82zDc,132 vtXNIF662BU,152 brTGAgUYnIc,91 kF0JER-KtGM,4 OjHAZWyckMc,127 7aW8oyTgA60,99 Qn6tLR3RGgE,133 pOgf3IaWlgU,193 k3rxddIltIA,91 vBVkz1xSKFc,130 nr7ui14-O_Q,130 Dt3n2LVD4q4,95 FRLcggpffDk,101 tTbqVFrvn0E,102 wX2AeW_M-xc,180 1cekfpK8mZQ,133 LWP0KujKOKY,131 TaOTPhkNkbw,115 i5Y6BTlx37s,79 ebNbXsFdz9w,180 KF-wcaGD2UE,108 sOGhuhC4AF0,132 GpNzlh5ALRA,201 gQAZdGaMHu0,80 sW-ddNOh1hk,169 mMyrxQNItpY,87 6Wmzed6d0Jo,47 sQFqzFD78Ck,132 1FkVXCCfg2A,94 TzMC8kgib3c,133 inDZp80Sq6U,102 NvuCGs9iYSk,104 q_d_fgqJna8,133 Nn6y3CUpIfA,174 KAPU1-0hGRE,110 Vz0R6lgYJb4,129 2RQNDXuAIJI,129 90rIOemL6Xg,82 PIwZVG5wMi8,133 7xWlr8_R5YY,136 KJnIgY7l_nk,132 v4kXrblmBE8,131 OGKPmBtBpBo,101 VzZJ9-El-a4,132 R7stiKJsGjY,124 Ce6jdrqyW0U,129 IinUDFR7Sr4,113 MZW-4d7pvoA,21 9GYgmwMfGXU,133 cEafT-GQfv4,94 qOeMwWgruZw,106 I2jetO_ky7U,143 EG_6BpNd0Vw,124 -9Cf6w28dc4,152 uiWL3bxDifQ,94 0VRTOfZePkM,152 ujEbejephNM,119 -Zr-B5aIEvE,186 7lShqpv3i24,180 Af2wrig588c,94 yQi_ZJp9_jM,90 au5XE48PEeU,112 POEUgs1Shqw,217 PiyaX2sq_wk,133 gWyMDfvXfhI,21 zj4oU-cUE9E,124 gqU37m6uoFw,132 lfXtePMdNMk,133 G3iPKcMjGlM,135 9WY5gDBR0gM,130 YIw-r1yjxMU,100 YXzryi4HrVs,114 W7Dq7vqpGCM,133 XS4s3XXNLiE,133 _tVFwhoeQVM,162 PLBt2zwq_vU,133 hRRvrXxGJjg,128 m2REqMDEXNU,131 Buutvk0mHXY,133 riJRHpcshE0,125 HhbADfa8rmY,102 YKRFlNryaWw,124 aogWdNKef2o,201 _hMtM3QndW8,132 aOAgGeW7abs,89 Fqeo-bUOueA,133 V2wuTBrkBpU,133 EPDoc6alrlE,95 6UvEeQC0Odc,133 ViUbA_O3N5M,118 AVEnTcDIo0A,118 tIB4z4uMeNs,126 JmElZmlYkHU,133 aisjDMTWr2w,133 SYOiDFKwCsA,85 7O6j3eHsueM,133 lL2AwD_4G8w,131 fOv_N9k5im4,122 Tr90d0ZcrCU,61 CftR-xOfXsc,88 UC2zyr54O2w,111 d5jxXkpstv4,129 zVIDGJxo238,126 _OFfuZY_Pvk,118 WwHpeDtSMmc,119 _Nd7VxsQIGo,114 l0-EYjaAurE,122 ZXgyS34Zpto,128 0SHMCN-6-IM,109 pVZtw0LrIX4,133 ukmrk8JdGxk,69 Z7KYTavLTBo,131 uu-RxCqop98,110 BLNQrlY4HMY,106 2FKPDOpKzDo,129 Hk3IpNbltyw,131 SfL4U_bOGvc,133 d3-AXjkz3Pk,116 Wo2ZCh7vc2E,150 06lJhEc7zIo,125 vfW0mLeRXe8,111 9o8gzua-K_E,180 nZq8AiBXhiI,118 NY8m6lManpQ,130 pMSrolUBGRc,173 yNs0hmNinA0,123 ilZqZaSUC0Y,132 Io0PZTAcBes,177 ZCoJgCHXXK8,118 6M8szlSa-8o,109 kdbGqJtHWQg,133 YmIShBpwLPk,142 WBHjaRXCINg,125 fGV1kmATl0E,135 edVZXNgaYbE,73 IESky9kgqi8,67 JnN-SR_2ovA,119 dO_D5ilNoZA,139 ibeJlYiMz9w,132 lDa6qc93nNs,118 4M1mi7Ommbg,133 Upww38-2fyo,130 ZkynnGqL7QM,131 sogf5QgMqJs,148 jFP9_AxrurA,158 Mg7YM02K5ek,74 XGmHx9PAaeE,107 LR6C2oVQr_I,133 pMTlNUKE7yg,113 hN952f_jn8E,127 r0N4KlcTSUQ,133 C_uIIZdNVwk,124 Qn336Lxy1TQ,125 mFcz_U62r6s,123 v59kIbs3gDY,132 BT2RBCEH54M,133 w13ky72PcKI,121 ZNn6J56J5HE,133 BdgWnY2SCq4,131 2xUynRdzzsM,123 UEr47WrS7Ys,87 KLJ4xbE_j94,112 1H0J9VhDCno,137 Y55tkTIy5sc,130 A6CTejBh5QU,124 317Fhd1UwzQ,120 t1gkRAWvxOs,131 SqISCN4gNNA,118 9AyPzu3JmSE,99 ysFpoWSlo7g,111 IP-NM6Qdrl4,133 OkVJ0KvOV60,70 3jEZ_y7_kfs,110 I5iG5NitBgI,134 Vo5ycPggsGY,180 I_xrNryhq1Y,132 _QXyyj1RiCE,133 1qamIJWkKi0,79 _5qVrmBANTE,130 3TeYtmJXgQE,102 MjFgD2yLBI4,131 1ESVngpn1aA,141 _z5tcqcVgvA,133 lPrOstRqB1o,133 xvf--4i6NA0,84 tRHVMi3LxZE,130 QtoKDVTZfSE,151 JZZnBoruCik,119 5aXmi3hKJrY,105 WrnyKH7u6DQ,157 imyD8loUM-g,127 rqWU2zS3rJg,173 vD8p7k2-_zA,205 eqIkFkmb054,116 im1ZK1WNBZs,132 5uVVWV4FnVU,132 lS1KFyakAPE,119 -Nr56-RD_g8,68 ViPVPgUJUgM,106 nuPd4L7_0uQ,132 fsMC6d8DeMo,132 A4ktp_9Q5Es,133 UJbqnbXI0Po,120 ZHNyG9ykGDA,131 kgSDN6_VyR0,149 aARaYjgm_rA,130 84ybwb86tKs,86 Q8HMk-QX5hg,102 yq2t7SjUSoI,133 L4fJ1ht5TJM,130 Nf1uvt0zKFU,133 V5qEU07yVnI,132 geh_Mu622SY,130 xfIJV6C9-fM,91 zdyBsGHbs4k,73 6BS2yXD9Ggo,126 1TeoyEPmuzA,132 hgGf5X8-j1s,169 XSVzRBiiTxA,126 WFOM58iTTJQ,94 TY0LUIIwo8k,131 AV-IMZo2EII,10 ShdmErv5jvs,120 UFlhVGogIRg,120 kQUXf8oO73I,155 DDfuaxazcc4,107 xam8pRUej7A,98 cHQcdgc_Whk,128 1bZ_L0GOaYw,133 uOsxXi-tu_U,123 nshLAILEN4w,103 J_uWB_m7ML8,126 UD_gJShgozE,127 nHyK6uFdDWY,133 9nqpOwh4N_Q,150 2ObQm0XBmgI,133 80UzhoD-RBs,132 rAULcuSAZeo,70 tlNLhuxeDJQ,132 SF24fZvfoHs,101 wbMLxj0lKAU,91 2sROc10VoBA,88 0CixzvwslvI,10 0adv8zQsa9I,133 24kOoUWjz5Q,109 aESwFtEWnpM,108 jJ-o9HHw-_s,114 CaCW78inauI,182 LtCy6T9d6-s,113 nxRZisFQdTE,107 8Nbbi16tvYA,133 4qW3YcXJeyg,149 v5-gQQunvJw,133 HCMMbtnkRHM,29 c_BMbnWPWnU,123 J0lof7tFKtE,132 W3WRCxy2ZaE,133 CApovMdNxw8,144 DA2JIQh96iI,133 J0MXhoaoPy8,108 huE8fA3Ln18,128 -NgmhVRFApQ,93 3qZAvmpNfaw,133 w8td2mMGYjo,75 CMcqNCzUlGw,164 3cZIoQWyBCI,104 hQm-djU00DQ,10 KoNukbGYfFY,101 yqtmypCco-I,132 lA2ubmfr6Dw,93 c-ecbGNxEHM,117 qaQUmqNJTO8,107 5znSACsZMa0,132 LoZtHl2YXAo,129 WI00FLWTRrY,120 RC5ZiK6o7uQ,130 hKvpF7ACDBo,76 OeLnS8O08ng,132 dkB5SsVVlOI,103 paCyf1IAKug,202 asySRpuqnTM,133 e3siZO79KrM,119 Rkc09sTiS7g,132 bIHeoOh2F7o,128 xfxhI_l9UYQ,106 _h2BB1vo27s,133 hC6jyc9reW0,87 xLz4trRoHeM,127 HOr8EwpHNwY,131 PaYl9YVeXhc,133 5k5l5PQJFrE,167 QttI1akIG_4,110 djAkVv3P_pQ,80 HQK5uM8tokE,115 -rtUvlR1pZE,131 nKCIuHUFJnY,131 7iBFIlHDZx0,131 J6JcrLIvKUA,132 k7koR5o-fUM,130 YYlvedJn5W0,94 4pmBvrehyTk,97 2KGv86GLvXo,133 xdgjUPMiiEc,87 f_BcfyJea_M,112 n3F7_uaZUzU,120 3i76M1f3nB4,130 bQInfO7fE-s,65 c77JrXbqqV0,114 56fngopihOo,131 FK2rc4NbKco,140 wmbt1RjPn4M,88 ys3a4yA-5Eg,106 q9iIgRYUyA0,126 5GWj9H4JId0,76 22aRiNlHhaI,130 7gYbpM0GWTs,121 r763LgcxCyM,132 KGKqdRDo-N8,132 FdgyK4SErpU,120 58qDZgvh3jk,83 yJ5tQQhl8wc,165 -SJAzpHg4s8,78 7_PX1cVuaVA,28 fXwVoMcZa90,176 idKzxvXO9_8,93 LXM383MIFYY,146 D6uIONVMTxE,133 N4fylYYIrUc,128 Nq1D205cXss,131 FDGyKHeU2Es,120 WkfpLz3XMOI,110 NyPF-BmNQjQ,118 6_CtgelI6xU,87 kwMI7WIHREU,21 UgU1ALnQTFA,149 oXRixZ82ZqU,131 V_i1yhjzdgI,109 8JyxfJo-iiA,134 -i9mrpATCms,133 IomS4eaONdg,132 BWw0KCLcKHc,128 5IFvZMLDqXA,133 5ZHYDynRjV4,167 ejUWeYTslb0,131 H99XlWQ9KsA,55 meDRW5WV1R8,125 VB3awTlgRFk,131 K2vOPpJFstM,129 O7VH8LKDnr0,122 KRMxuHWOcTI,118 o2wVetrydrY,133 yie3IIh0HiQ,132 kglWIEtKSXY,132 PmvZQglWfJM,133 HtxIqa2mXaA,263 FFWLkCnT50s,130 jBYxPuIGu_o,132 51pdEOruyWY,131 5gN8YA_xeY8,73 9-tYZkJ2p54,100 uBiewQrpBBA,133 YfualY_RvlA,153 bVZ_-0df7XE,107 P9e_I-fkJ6c,86 oOl1Kvh2Zwg,132 7fYY9Fk5vg0,131 2baUXj3vrEs,131 V8Dm3OfSn4w,133 4Sl4t9JNnuk,133 XSUU-_0cWn4,132 pV2y0et0TT4,133 QaNag38SNno,176 GtARiQO8ljE,141 2CcanSjYzlM,133 6_0y_BGIZSU,132 JOidGUY4Dm0,176 4NES9LMRqAc,133 7VTsFtwO0u0,92 ld9ehvuVu-8,106 gpO1qCdOHGc,106 gaoBscEDdzM,131 6JynBr-1sSA,77 T0cNy3l6Zek,125 GpEhxhSoFAU,133 VAp9p0U1r4g,154 BF-sTHMVoOc,109 -vCVptWV5UE,131 cCNhONF1lHI,127 NELtiWqsHY8,89 ZG4DMIhSIZY,80 eC2O1zsfn2c,132 BBWQchYpjqQ,131 0S7olzuojGY,81 xEtptEM2_mg,132 ri8eqhvUN78,10 QNv1frrhj4s,122 -BOt25-zf8Q,117 lB6Gk5EtunI,212 BiO01_Fe6To,134 hAUbdHw8QG4,113 w57ga2Yiic4,136 dXvVa-6BDWc,47 e8J56HbIyvc,113 TsCTF8rAkqk,207 puwOGUjUKz8,87 q15Yv0rZXqs,115 c94JyVrcWwE,131 PlTz6i4z6xU,112 lDDtJ_J_hhw,125 vOnWEmbW3OQ,121 TB8q78FEwE8,133 UtRR6sLexR8,124 78xJ5ZYPQnc,119 RcqR5cnQyUo,119 ArSEv2hjwzE,132 jrLVuKks6lE,133 zzt_urtTkG4,131 pUtdFHAAGhE,125 dv0-EuBX490,102 yF0WIBF4lBw,133 DuvGxB60xCQ,115 LpPNvHq9rKQ,124 zDmvCNfvt5w,133 AI9AcMtuqsU,88 0BF9MkmTBjk,104 yy7H306nKaY,108 JnFHE_crn0o,102 ypKY-4583qM,103 -5RW2xQ9pNs,123 kjRTvd8QRJI,161 ajMVBGbsL_E,131 MG9L-S6J_18,126 vG8-BVdJ9_U,130 U0get4DzXqA,138 gK06H6EpKP4,130 JRQJyeZ0wkY,131 fIZiQDCK_Ng,116 -wX6_qCCnPc,133 TBS2UeiR7Mc,132 zlgStW-zp74,21 TVAhhVrpkwM,129 NWfz4zLi640,133 nINkPmHZfRc,174 EXTklH_oTI0,136 aUWOzyo-Kec,131 HEnmNkRRmHs,133 J0IxGD8-6Cc,131 tfvptl5VS08,100 19WT40D513Q,129 OdlFHPM3A2U,133 oFEEoG2s_04,91 PiJ5Ef63OwY,124 lMy-kxTpXKA,199 FZJK7bi2mWU,110 z54CDMBPKu8,89 QOCLLi8inz4,91 k8Tw4JhzORM,90 4aRryzzZLTI,105 4j7zD5ydpUo,114 MOKKPloglVE,101 zEYkLkJs5g0,129 5EN8IHljaaE,131 0wMU9XDIm4g,112 f2nODbzvaF4,21 iBSRk-DbhRw,136 NqYAnj6YcLk,115 OlqErSr6Rjw,112 TgIB5Yl4sBQ,133 oh8pzfm5QF8,126 3Vimb_RuN7c,114 WyjaZFv4lgI,127 CKGHiP4bs84,129 2QGYIM-8y38,126 cMbUCMRhH9M,133 aJh1RC2Z474,79 QH8uHNGEvbg,59 OLtnOGTdLO4,116 F5ZP1m4J0H4,85 qu1F98-YEz4,259 2wEjsHggyII,133 5Rp-dpnsqUo,75 oHpI2u95uUk,143 YwrX990kW9k,126 _k8uSp3-900,86 VDm_Pg2Cdsk,132 dFwt1vL1JOg,153 jlwA_X5iyBA,126 uvbOvG1gCj4,129 fPWCnwZEOqE,133 4IGM36KWmh4,29 yp6SO-tZpJw,138 Cjg8Hj75FPQ,149 cJti4-26uFE,92 mvkHPUZnww0,133 _kqyM33kijU,179 GjtM8XhcA-M,129 aQ6ZzIC7OZk,133 AA_yIRZNg1s,95 08iCLTmybXM,133 SESbcd2bp80,133 TOrEE5NeZ9w,180 BLVhog_zX68,160 zLBEFvMkQCo,131 G9u3Lbli8Uc,120 Za9pPzJJcYg,132 8qQg4bvTlho,181 WASIZITWvZs,128 8lTcU_MuQGg,126 cwprGyncs0A,131 L-HEnOelh-k,116 MoRaxm7lK8g,77 rMdZw9aBmnY,133 yWZtEE8C1x4,133 kaJv6L8vF-Y,133 VhRkUhY8MlQ,178 BFanCVteXfw,126 ZiXcZtfAbf8,133 QLAYw0vM-bw,114 oLIwz9gn00g,130 YRG4Q2gIWjo,131 FyCJ-hUXQ7o,124 61xq5Kja1Uo,122 F5g7u8WRwqQ,125 pexcH4Ffi8I,117 WQ71crXovIk,126 7UhOWJw9eys,96 udHPeemZ8zE,90 g0TZztZJGRo,72 zJZiy6BuuLY,189 rFuhmG2wUXw,113 qXTTXNZucIU,133 V81lVBQ8TCs,132 BWWTObc0KDQ,88 nZSxvozKoeE,132 hweZTM7VPbk,128 RairI_NdWQA,143 np_HgtPXDXE,129 HiNWDfHz8Io,132 dz6QtPfCmrU,141 JrPj-b18Lt4,66 8wTnBC7doPk,128 o9zfxe4JVlQ,130 r8zjtGUA6tU,127 XEsZK8pvveU,124 fPk-Dms1rJc,122 us54vk5--jM,113 FEdL1_zOyz4,130 MVy9DFwT-4o,196 7jVsQToSfag,129 Gq3WJ-sJj7I,133 GQlizbovQAg,149 MEYAoMSfCQY,129 ne4ZgnPn9Ck,140 a-KQ5h6WmJg,130 EP6Qb7rzBmA,149 FQfb9ayuY3A,110 V1wAemvxNaM,132 9lro80T1eV8,132 NFwg1siPn3A,180 EPBcADfQoJY,121 Ye-GPGstKFc,133 XmGOiqQm9B0,125 eR_BcTP8HOM,133 SKEvjOq6L6o,132 8c88JWPmDrA,158 DB5H2QGFFwU,119 pbI6qTih2TI,94 QKRPgJYHblo,163 V7N7EZ79mvM,105 ak4mtSDwxV4,90 uEchpjUjGPA,120 iTlkXQH-sdg,132 Sgbe_owOvEI,140 o1JgvBy3_cA,96 SPrK-BvZA9E,132 ur0U4xN0d_A,131 1tpU-Kt97Rg,55 fvYD-2ggmcc,128 SSgDunmuSAA,132 XS1DdZzYIik,130 QnaTtsClgc4,136 jyzhfamiaQc,110 RJACPfUU3nk,66 WA3_SfMxtN8,114 yOMv5lJpHwY,61 yehCJ076_zI,115 q7DHkw_5Wzw,252 ZynRcyXIGKM,76 Zz1Lypwfwug,223 -tuNR-uD_mE,128 eLLzlb1SN2M,131 2m_lqGnLtWA,132 A2Ey-t8Ic8U,4 n16wkJDq2VQ,131 OwCO4rmsct0,133 TdQkBU9p6Y0,106 KRCwsXtAeKQ,133 WB9uluVLP9g,129 Q0xqrvefO7Q,119 AhPCRPmHcxE,133 8csRJcVDQdc,109 bdm9LVNbuNg,127 H6DqWP733F4,130 HG3e03wWQu0,131 YkpHalgTqpw,129 4oY9E3_6jlY,128 oRh8qQyIngg,133 arfamPuUOek,133 WRdy4CcRchU,86 ohMzC_1W0ZY,109 ROYuupoGarQ,175 VgKqo3TvZoI,122 Z9GVG_9yN7M,200 78IG1HROeoc,132 rWGj8MCBBnc,89 1ubs6iUMdyo,131 1kk3Xvw7jn0,216 vg6-AbLe5nM,101 MrL_uWnwPq0,100 M9CkGS1O5WM,111 3FPsMeQ6Ra4,166 z6GmZrBKW98,88 S-0prbWRAUk,126 -yx9JK_HeQc,94 kq0YESApfvs,126 39-n35p2juk,103 32OtN3z_DNs,95 Af6v6H6gvcQ,133 Y99ODe7GzfM,169 mbkWniWSpR0,133 HHlf5HhqdOs,104 DsVUFXVx2pQ,113 tAp2Z3-zx9k,131 sCUSUl7-4Qg,105 _AUvAyx_fwc,133 k2VevzNW4AY,88 TvetwclCFq4,100 bbqRezPHMDQ,133 2gaEkPaykJo,187 CZaS2CCnFYs,134 LKpCK8OtA1s,133 ajcVgbrSIWk,144 w7VbNRVbRQY,155 USKy5QYNY70,83 I-kLvrKYP4w,127 AkEnbYvJGg0,132 hKoYPfcWpcU,133 1Pcd6RZexJI,79 JBOq0nY1rQE,132 iYsOzr1hPl8,108 X3aJZU6rInc,117 kzUfGDKepCA,107 i2uV68pKreU,146 NP7_SIRfo-c,133 8HZ56REwh3o,122 SmmKg3VG2jI,117 DEX-5gM0P8I,131 fzXK1hDkqYc,133 JGnxWlhfrrM,125 4B0FFnkSCuM,85 rDIF3XhXTT8,194 x4utH5uWK6c,130 upwUN92OAQU,115 sR4iKRfUwOs,133 q8_R4AG2o1w,130 kh1sYuFgUAM,85 3OHisdS9LXs,117 MjsSG8pPTy0,138 579nK0yB22I,130 46-oS8F8_c8,156 7SU_ZshgGro,125 E49Wkrqw_DQ,75 3QYGPGwR4x8,4 Wkm_Bp6pG9k,128 U3qhoY13AkM,131 8kIsYLV8bE8,129 GlHL_ippO8k,133 3Dit-yAwTgY,133 OaFB9lMthfU,122 -xX0mOMuxyI,132 tQkepXxAGq4,130 MIexe6aa14w,134 df1mSOyvsXU,132 4zT8gk15yrY,186 D4dT2eBWI2M,148 sSvxvpY7PZM,132 Y3WWNavHXSA,162 2WZCKiDOQ9Q,138 wzYht_EEf0U,123 Q7-BibZkYxY,113 7zwPRGbmrow,133 e0wRbbzTdhQ,171 NQdNfhG-s8k,143 moJvW1-7_Cw,138 zriRtxv9jf0,133 F6y4B_BFrJ4,132 lTc8TxNTh6I,126 P0ePytsVcpI,78 yly_wF8DyE8,132 fls3z7Me2Dc,131 OkphsYRRJ_0,111 KwnTYy2p0AE,124 C6hmQwfEmzc,133 7_pR6mUYtOo,93 UMlZ90ZNGJI,133 8AZk-d0z3ws,122 P1xdGCvNMEY,133 JqoH6dDyZmk,131 y603mzYAcas,85 bBzNPO001NU,124 9e-6wOwlHmM,133 cGbTf-FgG-M,99 EVGsdxjfeO0,153 JSyZq8Eg5eg,121 1YGyKYK1HuY,133 cIRL7jMVh8Q,174 vn9awsg8BjA,181 nwBlOt3WDUQ,152 xw5Iyx5ejO0,81 gj-Rl-cgKxM,122 ePUgjJofgq8,128 rn4Ff3MpiRc,121 DwKBxabn4QY,132 WzDlb8zf7gQ,90 V82hFRJcrj0,142 zZaA_9hN1Lo,97 cjyqWsrpQAA,54 KVyRBCk_V1s,110 ZErJ-R9PLFA,132 djMYTM1p318,132 QXB9qatHDSU,109 t0Hr0YA9_H0,132 Z8leMw24Nbc,74 sVbhGDytHk4,92 ryKepaMME_U,132 Dq6jS6uazUI,133 VyS-apNPxUI,123 I54GtHWXwpc,133 T_0IN7mMXZI,67 D4rlczOezQ8,113 8UMJAkQqhcM,128 ZI1jKmWANP0,132 WQnFe6vuWq4,108 5oAIVuFPUdQ,133 lSTkEHpkMf8,133 PyHK6QRniQ0,95 OIl2sEhU24I,133 odEociFdDN4,115 wRUXdHtHe8U,131 PUo-B7AEAWY,164 c_69KA0PKYI,52 KLieNRvLmd0,149 WhGFwk58h34,132 I1OmcMDFR0Y,96 05nRqVJlunA,100 zCz-i5sPrBo,126 5jAVjQh9S8A,131 U2g825zrVA4,119 MlhH_sjxXaA,136 1ODVyWqW4ps,160 bENL5AzvP4w,126 BYwC-WJQKd4,82 TuiyN5O4Q5k,115 b_BJbecP-Xc,168 mvgKGY5m71w,129 9GF-YNA-iTM,133 inAlpz8a0aU,130 NUAs-J9HatA,133 8Z60zTp6Izo,180 25_Kvrl7agM,167 NARUgQRZhL8,108 wweMxbvl86Q,127 RupELElQj6E,105 5ohlA__xABw,101 p6LXVK9rPbw,70 K8nX2uH-h-M,90 Io7wUtei6BA,133 rC6WAAlNHt4,180 j0sbjGj7ONo,131 ujhXgFBjcZA,128 OXvNnV-cwFQ,120 d6E6Pu3a5qM,105 UbxMhvcxJJc,126 e2xiwiWd_sM,132 V6I4cJ1kJVc,129 DHVyayHXOdY,132 xSyvjgWMsKc,97 1xI_CHaHWmw,124 a38HZFbhB-M,128 mTHQ0fQXf-0,124 rFHh8MTXs5M,119 8I5_zsRI4Zo,133 jJ_p_xhMEvU,89 4k9WHvF1QsE,132 i3EF63p3v-I,61 4xcqyJwEdd0,109 0ROplAtLJvo,125 Lhc_xw9cQ6I,133 H6kYdOSKX3I,21 3ema7lfEAMk,178 gjWdFgV-Vz8,105 OGpGO7K3aBo,110 qpZBUlqRoeA,125 LnqAE4Rjdqk,111 0xo0KxL_21U,184 O4di7-6b7eY,133 7bmB4RhsYgQ,133 FWx6IsqPUKk,258 3r2JiHZVEk4,180 t5KEbS5soMA,130 URt8hBsrHFI,133 MievQTukqMM,133 3SGIHbvcTRc,97 V1l3TboL5MI,132 SJHWGDkIxNM,133 34bCs92ACpk,113 2xfrmlcIQf4,120 hSLj5cQaXM8,125 9LvdctnZeWE,133 V7-kCVemvVI,133 h-Y7v9WyBug,152 fHYuhwnlTZs,112 qcMHKqF91tM,132 vnRi28Q4THo,10 sp4A_jU3oD0,114 4Qrs43i_S50,132 zyTCACwFsgw,132 mTr1vpzU00Q,133 nRTjNEP6v2U,72 215DJ7KbNsY,95 atpbdTo9nno,113 tXmgYy1D5MA,67 VrMWnHwh0z0,133 egC34ixXtos,65 BPvZa789l5o,132 mIqXkwxzUB4,130 otQNGe5sWaQ,130 LbMpSo9yvZo,126 cSUVLAM8jx0,133 UEndkOUG9M4,130 nSJxx_KUEes,132 FMcQ9qdYBUI,131 qkTP21NTcgM,133 ajE9h1zUbMs,125 h4wnyCRRi0o,100 1ZeDq4Yo6Jk,147 D5E23GxcVHA,78 xj04uvQx9l8,133 _gScnxmM2no,140 mTr6qV4PiMc,126 ofIzQbTGQ2E,114 CevDWRn-3-s,130 qUKBDcMN7tg,131 NsNN1eHv7MU,126 dwMz7K0kr-M,152 uE0DBpw09SU,133 mhaxNZs5MGc,175 8391icf7iLk,123 o4U1GZcMmn0,196 q9n96my-QzI,182 H46x8fD7WzE,105 JYKlYHwUiac,93 ujH4hnVthhM,130 zJfuNE2rsPY,132 r7k9mkm0TKU,124 L6IPj5zl9oQ,151 XPUqjed6k4s,132 CxCjXAy6HQE,150 1G9ED_K_IAQ,98 ljzkCBZuHM4,119 v8_v3EaYE6A,133 jq2tARSds7M,133 Zzuc4RiUjJs,128 ex65__9m7f0,90 yV5JUYhnJQk,133 fWPRhRM1V7I,128 QflHaPOXcA4,117 OIXDhgqDYV0,88 V0BHKgbef9E,112 8uHpWrtDfAU,131 JlbIb4XdF4M,119 eqYhouRLYis,228 o3uf4YSwY9I,130 0M6PP32wggM,121 SELIbxPbbh0,133 03Rl5exupSo,105 EPmNA1vLOH4,129 C-qXt_tIUJY,92 FGqPDYzAXdI,167 e2-VnrdN_Ng,130 yosiG9eEEHA,133 KUnaFhIJ17Q,103 pU4SIxi3iow,21 v-fwHV86PgY,42 fvVBKWMTSRM,76 4amekKHX28Q,73 icGkuwUzbGI,128 mX-qK4qG2EY,131 x3SUKG6l6FQ,133 sTI1U2BiTNk,128 _4jtkw-qFms,125 bWyLG7CWLjA,100 mXXucVAQdf4,131 ZCz2Ob5_-bg,114 vVRPMleD1SI,148 ntC0xJo2bSU,121 LrSA5tw_KSc,132 gvGNWLszAQA,106 nyKJeXDoqnw,129 -J_tiDK1tEA,116 wiA6bjzz-CM,102 QDYx2BOuAGo,110 YonDo9SCqII,129 pxHoR9Cc6Rg,65 rroHhssQbok,112 HJU9-MJ4oEc,86 -sJezi3j7O8,123 HxyKbR3GmsY,151 XLSkfVJxbwo,112 QKP-AZKNl9k,180 JqDoUCcJHPU,131 FM26ZXjPL_4,86 54kfWG3V-IE,100 vrCmp9js4YI,114 8zUemCOntvo,104 f9vhFEweovc,119 I_vzG5nYk1I,141 i1n8bNgTUTw,98 0EnNdIPjl6E,4 wur5ljnTCzQ,127 g2atr8aQ0zg,133 wJRb5MKvouw,132 4XpFpGcTh1s,127 xuUtu2xRGgY,234 b7lV6-iKiwQ,133 njFOIvoN9pc,132 50YQeugOMOw,133 SEM1DDRM5r4,76 AF9cqjNt9uc,92 aUIjcrHyvHU,93 wCDAFiLrHE0,117 ghwBg2RgBJM,128 e4IJ2LyK9cs,105 iB8YcYRzDdE,105 pFxOuE_0wqc,133 smVge5w077g,126 tBeJkq_by_8,132 OxqTSDSxRwg,133 NtkLxegTLPU,132 z1bpjIkTie8,132 oZEJTJSZQQs,159 JQwmeTKQLo8,52 G6EPGcF9mW0,63 TgZwFvKRqK4,131 Fjr5MSmxKJ0,131 dPXGowa6p3Y,84 CW_yC7l6PO4,111 9t2_DjGU_Qk,105 jJHNJjwNUWM,132 TtLvNyDGUg8,128 w6n3WpRNWTs,70 wPT49WXC0Zo,135 yrZ7CsXcTrI,89 eQMofmwnt6s,202 n2lTpPptOWA,112 o2joReiVA1A,161 qhzCkJXZVJg,129 SLNBos63EkY,133 _r4a-vgIqgM,43 2hWZyDGHNxI,133 9R_jeIGgaa4,94 B7zXxCAZjK4,123 Su6H2_SrpOk,162 iNxUsONmig8,96 p-zGZTYN9nQ,100 yUd_E5dnVx0,128 OE8Tc1cvSYM,133 JQ8nLSXGWWE,131 6Bk2AsTcdbE,133 k-mbJhVl2Xc,101 wrrxHvC1J7I,133 6GfFdTJiRmo,189 Ha4SHiHf8Vw,128 zPv0S1-ETdI,133 cmtXA6x6Jm4,72 R5409gLbXuw,237 QjCxoikhxSE,119 u1_fdJ0f2iQ,93 R7cqvLTR0vA,124 BF4-iXXZE-s,121 N4x1K97JZG0,68 j8yAjWvAqyM,48 vq8OmtyOsR8,133 cETZjbXsUog,109 Vdhhi9nYLTI,109 OUo2Klpa8AU,110 qlwxaCiNZzo,82 ei2dYpiS-Us,108 lyCbXVV-PAY,131 xLMzMKlv_Ao,130 oqyRFXXwB48,126 qdtCFKVtSls,131 -k34FungG-Q,137 GFLUYlb5jj0,21 hQDDQV-oCsE,109 FhBm4kprCkk,129 9lj3ebVWDUw,131 3H9TofuarsE,119 qb0Vd5ac82Q,133 NEg6faTj_co,133 yAXioyO-acA,85 AdJe8nZ8crs,132 iMzGaN5Sg3w,133 -_HlyIgHUa0,60 3-Q6PbschQI,60 XXVbPZX6qz8,76 wvPmP4xTruI,110 uECrYxTF-pU,132 RVevBZFMkys,125 v3IyV96FX74,122 92qwWy1aKH4,132 kKlihXmSqPE,126 QbfEULz4z98,132 FmiBHWtxHLA,72 p_-Zm_G8cBI,79 vEDyFvKFcoQ,122 cIE1fT395HM,128 MNWmA8mmbH4,120 w7ZY9tqDsEc,132 Xq5Wz1yJhqY,10 qeY1mkXqKgk,131 2LeVu2F6s4g,134 2tI3Dz2Ic2o,172 VFDN2EOGyDI,99 CiprWUwJX9A,21 9GT5Hc4NdNw,21 1iiGGpwLdQc,107 FnmbPDYmz0E,179 MiyfHiRy_tI,116 DSBU1YgGyt0,72 -F1-sTyGvwA,133 rHPTGJpgtFU,188 VAC6RfndhMQ,133 AoAK1JNNKR0,129 7vp7Lpjl_vk,125 ZEOI34R4iw0,173 kdj7BqZQfaQ,172 EHmjP1BExPs,148 z0j4sVZHUdo,97 c2TTFWzBuE8,129 2mezAYW6Qiw,117 ZRkiBDXDT5Q,119 YY4kKO6wfyg,156 gMPr9rchJMs,126 weTmdGoN_SQ,111 3MDpQIx8VPU,20 8d6AniF_vxg,81 Tpp5oqIzQL4,177 xSp5QwKRwqM,103 WLSQERsdER8,132 ep-ieEG06qg,125 R57cfRscNyM,131 1fdta94pfxc,122 EePcWVFtRCU,134 _T7T-0iR2Sw,92 dwMoiBGmH_4,126 KDyJYLDyBzc,131 EHeR5XCO3uA,133 6dgUAqGqS8Q,56 oEtIf_2mzJc,133 BFpoIHexhKQ,129 H4zYhsldk8M,122 KJCvbFLtRB0,199 j3k3xWKZIn8,132 5ud6mZ5SULk,133 SWEbahhZEyA,129 9ac3upRnOl8,111 TV9GpnvWxgQ,131 OGbya9Fm_Ns,99 dC1bJ1qmOCo,128 SRNxRvPSscQ,102 rmqvWkh45gs,179 8GbzfsvSY7I,59 fz19xrc_99o,130 QE78itp1Jn0,126 N9uT3yyoaGY,135 fyIATgssVJw,149 VOVOizcl4Gc,134 3VVxzAw0hzk,83 XF0e2BjTDh8,69 uWalH3hnCyY,121 DTpEhN9pzbs,92 s1Y023ZS4Ms,84 WvgG6VNS2J0,130 ETkJs0Mhnmo,133 n-G24ROD5g0,142 ky1W2n5RilM,133 angyfkPmHMo,131 2K-ihnb5kho,130 EV5W98Ql4vQ,129 cktXSK7io8U,195 _MeA5EW8FdI,132 M6mnrzwTxVU,58 2xRNmBGvfSk,130 QDs8PuzsbIk,21 vsBwRV2b3LY,93 IuFESp6a8hM,159 yBwa0z0kCrg,125 6ylO7RAbApc,109 tGDO-9hfaiI,104 3MK7O6w2Mz8,114 FxjONf9AXEs,129 c7StgLYxbPU,145 Yd1ndA1_G_A,133 soEFK6PSKEY,129 TnUS6tDANfc,119 QQyorpxZ8rs,158 zhXaZ2a1NcU,132 _-jXE-VvZqw,75 fb8Xk2_yqps,124 XIQbAhdlZt8,98 vE8mFDabqD0,109 4SWqNoW_zI0,133 K9ITp_xSaxE,132 FIGm0YdXotI,126 v4Zjie4qH04,132 6Tjcx6B5lbA,133 lAIJ6Twk8aQ,133 H8Ancd0WztU,132 KuXeOs4oOBw,127 -4_rMqeyOJY,131 kEKqDuIl8Wo,129 Cw1YwZlfijg,130 C7_7Wco4SWY,132 VKu1354bPug,126 a6mkbps0BmY,132 ap9g2vR32Vg,124 6e59qLPJxgI,96 WTs3TbtIwUA,133 Ka-SEhfCAUY,121 Hj9WsioJbJw,133 17MyPrAEQ28,131 SYHN3rt-R5Y,97 fnH1ZtugoqU,115 yl0jujA2jLw,139 qSbI8KRB74M,132 nDw_DOEdai8,126 Yg95nS9poCw,178 z-oaExbr_58,21 0bbWQy30oc8,102 QJ3Z0TSIpE0,227 izxDdUcC3Ag,144 kmGvvAof2Ww,162 jr7HNZg0ljU,128 kp3HaaTqYP0,128 sJusqH8NxP4,133 FCcdMEItd-U,121 FAWPEOWyWN4,119 ppUBsedlZVY,20 I2yuo_5AkCs,131 CO6yUpPvY7s,109 Z_0TQHoV_2I,131 5CrufNJ4A_Q,133 J511q05SReQ,132 r_a34DBcwCE,131 CvK9ZJVsiPM,110 RkH6Q6d8ihA,122 -pVDJkIp5sc,98 LTqaoTSCTc0,129 Cmhinct9OGE,149 ZSKSNo2z8AM,127 Gd6aLnPHqeE,72 3NCw83LVWFo,113 OdL9R0ZODYs,133 iCfBiIzWG9g,132 iGU6Zqxfw5s,107 K7Dd88h25kU,132 FYo6dKubr-Q,180 xiNxK0Xiv2E,95 ntgrRUML2ic,176 nhKgGtFIqXY,133 UGKRVSevWnA,130 xfwm9CY5dao,45 EMOE8Ub7-zs,89 V4rNLT7N_VA,117 RjKNbfA64EE,144 bIcPNZlEW8w,174 aFqlaPLvkw8,165 Qz836czauEk,92 LCxS9lUlCmE,132 vMC1uXWmVCI,20 qNCFZLQOj_M,132 MeTuNES82O0,133 KVDtV-uVRq0,119 BAqabMWnAmk,170 fY-Aprk4mtY,127 wHSH-NpCQOw,129 gHAJY34g-LY,123 wsvdvNRcUVA,120 XNfCPe5SGbw,86 0vVy9NBehoc,97 NgUGViWp3tg,166 KVt9YlotsuY,105 G_2PNOH_j6A,132 u9R34QNUy1g,89 YieQdHA9uIA,104 fO8nqGKrtDI,154 AWJPmyL5uHI,132 oCjXFnr826Y,102 EniROJmSS8U,134 qBWbxMv6v_s,132 V2E341Ilexw,132 gOb8HH2oKcE,130 g8YFtf6tfRg,83 6f2-XlVHGcc,132 PypxQNMzAHM,120 YdaeVone5qA,130 ajBK8B_kYO0,132 1UWy_6S-ZfY,78 ud1zpHW3ito,132 pKWLGY2fwZg,132 FVfoce-wfgI,77 hEiI72hLQX4,124 PTG0z3VWa8g,95 o2VM3B_izXw,92 BZejgesCJhE,125 s122VhgDbEY,10 S04ArwiZwjE,130 bKOW66PVjvA,128 IBN5GruNnME,181 QN5dfOs4TMY,104 f3u4j0hVy8c,133 D83XRiOVARQ,124 L7GJ018Avgw,124 LFhlnBzdOtk,119 cyEwqVnXGU0,134 0njU7LPADwY,98 AKpSGtlsBws,128 vEt5MqYD_3s,132 trLRP0-zvtU,77 3kfnzu3RrFM,129 2wTJfcaezu0,129 vykvU-52g6w,132 bU6V_rkvECA,152 ul_HuCZxxNU,62 nYkD6bPe9Ho,133 5Ipcnz96hE8,105 OAZo5VJVZCY,124 Ud5-cq0a1sU,177 Cg6X7ukYzTo,125 P63QUmBOP08,103 D6XLyg5wBHU,123 Ug0QqktJ5tc,106 SFHSKaQESeI,125 8XkrkBt-8LQ,129 nALXcRjbVzs,98 LN1WX6JkYaI,132 CcKPNcDGDLs,140 iYU7ltkHYXM,125 oa1LGWv3zkA,140 GfX0WTR-kNI,208 L38yiP7vLwM,149 4cZQOWaWYj0,154 Rh4ap8LIbtw,121 -NeY5tqk1N8,115 rojN1eCJgiA,149 rYXDky5UYks,123 8fvhchY0UmY,127 _SR4O2gcXYA,131 eqdLKw173WI,125 0r4uUQBLokk,127 WF724QBowDo,121 8MW3KJUa8FQ,125 o50HHf9f_SQ,132 47jfeR1H65g,128 TlcxW8KUzks,106 B8CGtuR9FnY,126 LpBQ2Q6GMlM,75 UNlo03HucLM,123 0MU_p9wU5kQ,133 fTEPaF5TjWU,209 GHRFqRbAx1o,130 -uQOkA8zuMk,126 DDv-GQjcZDA,128 C_QYZUjx7rs,120 pMoxr-jgd58,103 Nt3KcuHdwDQ,10 UJhTR5FTd2I,135 meN82_c9J_U,121 vRaCv5oNQ3w,133 mq2cz9Xvzcw,77 shO2tSVK0IU,133 nE58ZtIpNSo,116 uYV11ZwpaSQ,109 9FIHPZrHVGs,131 7dHg_hYZDCw,132 1G3a0mUEz5I,132 qq4gK8PkKNM,127 GDrnSzfL-aI,142 xVc_GWABEFk,94 MpGCnuiCSuU,101 LHpto8gCOso,229 lNHheEljm5s,130 HBrzlqErO_E,129 OuE_YH1pzC0,129 mQ3tgtzkz_U,108 1DANEtz59KA,132 v1ordVEmJQQ,183 jfbbUufb7jM,97 Fvka6JcREsY,133 35LPE5SjhiI,133 3ZQFpUxopm4,155 mUtHkSw9nEY,128 s4nMGnlbq9I,167 yeBqf6bYZak,56 GU6US0VlAio,124 eMuBBjnM4yo,103 Vz04LQ7GGzc,131 onxbHFyNqGw,133 lPfrzsQ2-Qo,130 WIrebinrQH0,107 d6Jy5tMv0GA,110 -lAXOMpPqYM,133 hWRG6Oar-aM,103 mcWrZOrafnA,133 toAOUXtlXXc,133 aHJKwOGb7MI,117 lhAQ43EIZ-g,233 Tp2V6oAgYbw,132 55wIwwmrHxk,254 _6AGOfGHzeg,131 7iMvnj_UBqc,132 PvtJeQ322eY,131 r2xpAXMPRHc,97 3V-kJbW3b54,132 1c15w3kCHkw,161 c5ZiiE8fyGk,123 U6xq6u7vv0U,133 PW-RHrX7Fnc,113 MEU2EJBkJcs,130 aZtlkGEwfSA,132 dL2_nbhJaTs,114 s4AzrUO3D1w,133 MqQ9-AP36z4,105 BI0lsk0EjfE,144 LEdvMVoFgro,50 7nUDA-4vD9g,77 Rv1LUObd720,133 nvdBfpA8r4o,219 uykR8csyO-w,170 _RYBglsS0tg,110 w4o45-EnPrU,123 XqSYC_vwhDg,120 ohgN4PexEv4,234 GvYsdMFsHuE,115 DtoCw2iOTSc,132 gzQt5VctFfI,131 ckAD2sg5SxQ,127 0QTBwHx-Wuw,125 dTllG2KdPMQ,131 BkGbYdSwFCU,106 XU8Xdt7tSyo,88 NAZYmJ_bVkw,107 8TIPGj4-f-M,132 rz41nM47q7Y,111 7OARf8dNLBc,158 vR3FPplcJGg,130 gINx5_Hs8C4,104 NJF70sHMFN8,129 va_wuPBP5kA,180 0v7Ea7kg2gA,130 0Nn_t_RfYS8,131 tcfI_6ZMZQo,133 2QCUgqD37fk,92 BrRdy4BAYp0,63 X1rnBQJxfdk,113 PGy7bpf9ibo,133 _nngOtRHAK0,130 0AslM2bC5DY,125 HapeoGg80EA,123 qvFduxMK7zo,86 Uu77LGPAlPA,131 5ai_pW6LPpE,121 0x05PrIasjk,122 7PcolFECV_k,143 CztbQ4Fgv_w,162 x9L9S7jEv_M,132 r0-vDDcDUMo,133 ltdgreWmnSY,121 EwdFmqEvG7M,121 9Hn60TQSyTQ,124 YJBNE7F49Aw,181 jbh5Q-eHULU,131 1niI0J4kdI4,114 Ma6SDu0V98Y,98 bW3ur5td00I,133 VR78Ss7yoio,103 89OOSFlcy98,89 cOe_8-IWvmY,97 aDm4L7gjYNs,184 qokWn0jfbM4,129 wAuzCjipF00,127 8BI5jFyAdZ8,131 re0xt6hDdqE,131 f5lTRa_ZJn8,212 HYFQ5Bx0tYM,21 MPQvVBaOx2E,133 DYE3nm9voUk,125 fsTh_5x_2ms,10 nLcCOlgev3k,126 oNI9u5Q4TLQ,131 50ZwjmYsIcY,142 LyfG5cnkuEI,119 V1bgBW9xx40,130 kELmSLtEiiI,90 hA1BikUzBKc,130 DM7JBXzCP1k,115 MoPFAlf393g,131 9leTC1Rk2bc,123 SUoTL5GmDGc,10 MM0kq3y2AMk,128 oJGQgAniyho,133 UpHWJ6959yo,134 renIgi40w5s,128 Paei6bi8XBo,159 HdCdfehvlN8,21 Ej9siBXzHzY,128 Hsi4X9MxtkY,133 oEODtP56lBc,141 8upFfAQcfEM,212 KHPPeGoWDEU,77 IYqE3JfSbzA,80 uU59kXuJHhI,129 ic5tRp5nKOE,122 RUvQEHa_lZQ,114 yxVC4lfxHGs,132 oxjeihyxCnY,132 s0_sBamhlIs,129 RLcngJeCHtg,122 oN2S394WfuU,138 j6_umKYN_JU,133 DK7-VL8Uxxo,123 nbvrhb33Ggs,22 zJ3ZcmivZhI,180 acs2qgkCHvw,83 g8nPKVElb88,133 hYq75Gm4UdI,111 2mXAB3HO160,115 enY9iKZ8mDQ,130 FmG9SZNVpmk,121 jbCyTUSQ6fY,120 0pxJFZ8HRV8,133 ZQzBHnXdPY4,130 cxgg3KTdRcM,96 X2YdsIm2Pj8,132 jBajVRGElXY,131 CSwnlwsBAFU,132 _fap4qRqTlk,179 Rv6_mS8l48U,133 j2e41FeccuA,132 HD8tSGHYaGA,132 iv2j0CJkzbM,115 _7Y_OCGOKTk,126 PLtPPtaCZQA,130 Zmnzw-Dxym4,133 rm6i_YfioZU,130 h4eOGlJpLYg,101 aQRjyav-x8o,86 qqWVQuCaB6Y,132 qZPjRshIz4s,121 8fbZvje4A58,99 AgZGoFX8xWY,121 cmYsRcLMvO8,180 6bRqnek7R6E,117 Ss7i62FguNY,105 hkHrNtJHbRQ,86 P5Mn2YHVg0s,70 b8SJezYEQHA,124 AfyZ1bWv7Ls,133 -swpG7VRhpQ,132 MtWRq5FXCbo,131 j3MZdcbv-ew,126 2QLbTjd693M,135 _U_s1OKHnlU,165 gtHSeq99_l8,132 fJ0myLkUGjk,144 KVy9rgFD5js,132 9fuapCaufd0,116 89c3RqTIxws,129 Gp22ZHf0_a0,128 x8kclPvcsTI,133 QihI3ORsFn0,130 Qz1-NSdsqNE,67 PjJzOpe9xEg,131 UEemdeEfw-Y,133 2BtZY3z72jY,69 W-OzWbkk5lE,134 Dgd6gV5Z53U,132 L_QCioSGgwU,85 QpxdbtnTXXY,124 DW3d5hYgV_Q,152 a861J6gxqmg,133 jj7BRKHml8g,103 Z9BefcGEB10,155 r-briQqhGZY,132 W1fv8bPOwGk,125 DCT__l4_m4g,133 AQ_Boszvgg4,128 aE4h5rX9u3U,128 TKVyyEsA-so,133 8VI6vvaZxbE,132 OK7Hm5IztPc,133 5clBF38sqqw,133 HaG2Mm5K6TE,89 RjdPAElUs9E,130 9M7i6Uaf_f4,139 l_7z4h0soHg,99 FdvsQb7f7uM,194 RWwhA2v9UFQ,118 WSIS3ZUDzzY,97 Uy5uLy_cpwc,176 oP43IvevmjY,191 b_HhiU1mOwU,104 uIl9IFcIXlg,156 nLTcdOr66lA,133 sCiErOySQtA,133 n1rhiQzW30k,131 D3XYhRv-rBU,132 q46jifWE-uo,28 6XFzJ3WtYPo,125 oXouSM2JOZk,186 d5lyojjyMl0,139 YklwFCfEEMM,120 bkxVMf2ozrs,166 l59t24vh3QI,133 itIDxKxfGJI,121 3gCyObtqSEo,130 HNfciDzZTNM,110 wj0aH_PiAnI,90 hEXsOOVWuGA,128 yfrnQMbd64w,133 75A7PFuBqFk,132 nq382fby2yU,125 0UBym5z6rgM,64 lBSi1KKCRQY,154 HYkSzS4v_sI,64 uAtcsqDjOr8,133 a5PoLM_QBuo,108 VWb1z6ZwUoY,97 -jiHKFt981Y,120 LOxqK6o4NN0,130 xEIhAu0v-kU,105 7SQWhD6OeRk,105 e-KbcJI8Rl4,159 qPZWb3abC9I,133 NSXcYEFY_ao,142 27CB8wWJt94,132 YMb-AODYc6g,129 5dxhOkrjfuA,119 jCatADs_uW8,143 XFOoJ3gwplQ,124 WcZSEqj45Ws,75 iD4lY0brr60,127 vrujU3pc7-U,100 538H6EYp_ZU,131 _MLgnDZguM0,84 1i2_WXJB6wI,93 9FnO3igOkOk,129 CYgJjicx0yI,128 CeMiILVlZgo,107 NOadx4ZICaQ,251 cJeYngoI1oA,130 CwLcHWwjkV4,210 V9jD7kLAmPM,120 RW4ADt4YSy0,131 Z8vCm7TUK8c,123 u_Bfpbz3owc,129 TuQLFcJ8Eyw,111 qTIc6y5mojw,129 sEaSAJgaLtQ,125 3bdQlGt3cEA,101 0lR2P8Uy1M4,20 Qns26Wdvph8,133 FL1acMVcHGo,140 xZYfE-65U3Y,100 3rtbO9uOirI,98 jgdFx9Epf78,122 8kBKeCR4xiU,133 9MyynB2RnZQ,137 JPofeRImxv8,111 mO2W96NCiRc,133 8CCo0EI6zIM,103 BjKq059eG6E,97 hACnmen0sGY,53 G3N_ELEBvH0,172 VtEOGd7tD9o,105 7ynMrmloUVA,124 c2TcT9JairA,77 lJVIu_wNm4g,133 rXqRZvG5LAQ,133 AiJP0M-5Mjc,133 qDTmyJdVAF0,118 V7yhBe0E85E,72 bAyb9cEDh2E,127 Fjj4a3zB1ag,131 wNqqn5NPJ8k,50 wQ6wc8oc_E8,133 _EZCG2Ex8Q0,133 MC2MLmGhc1M,43 QKKrwhcVEJA,131 Wxo_5gNakBA,133 bXZFFinWVYw,46 vILYE9lG3Aw,126 jcp5lTiZEUY,133 hdVQlYgFRuM,133 ZN9EtTazTl0,130 F6RpbWC4-L0,169 iqH7W6dLTZY,119 9a3z1lvLLng,83 0A80j2BuMaU,176 1i8l526qhzY,103 I4hc-GcHCsE,81 X7U_RxbkaIg,121 -5H-4fyylEQ,21 i7KcAEPxDwQ,80 cvEJy_9hy4o,120 1DnnWl0Qkts,158 NVB5kj4k6O4,113 gRxu0ooBrPE,125 V0MF8uNW_gc,127 5Q-wdaxsAac,65 2u1RrWj4RDk,132 i94ldGNNSQ0,133 WQyUUpQzdto,78 NxnXB1ViFEk,126 9aaVOicCVcY,120 sPS0cKOGZO0,80 yMiGHGsdikU,131 0GH64kmHZvs,67 CrKUXT6JZ7M,115 s109ZEZXQJE,56 3JLDAyAEaqI,131 Dv6rmmAk_Es,122 VlGVLpW7Dsw,132 Jc0r-WTEnzc,131 ZTGK6ChH494,123 fCQb93-RrZo,128 oJ_2e3gdfNQ,132 NMrgITIzg2o,71 JQXj8pF6Rx4,100 Lj7OCHi8x7c,71 RH4cgOQjITc,119 Oel3rZOooFc,73 iTwIwfvNJLk,131 8_2fitdIp4c,106 36WAEsNsfng,158 Zqp8_F9EXbw,115 J2ZnJvnPgRY,132 oYcKftzUS_Y,130 2mSiP5Bbdxw,129 ZPP70vRDmzM,88 tfL5f6cZlk8,131 ljdH53Ro0xQ,124 47ptIuV4NLo,97 lCs7qjJzoDg,132 YnpV0k673Ug,135 Awh5WP9BbGQ,120 MG_o8Id_UCU,122 n_Zor8p_ZsA,129 J4yrUjXQJdQ,128 KuoC25LQrdM,73 Q7spsnpuZQ4,151 lQWvCntonxE,90 feHbFy5zPNQ,124 -5Rohhkg-7k,113 YegA1WNRKnU,131 kF-KLIi97Uc,122 DHUSpAtemfg,130 OSfjh0d3RkA,131 HkfaRh__E6U,133 pxy0q9dp1GA,85 mQAlpiB3_FQ,120 ypKSbnYOrwE,65 -vE1JNGKvxQ,92 JPoZcvcPtIA,127 2OOUlE9F190,133 qSnUywWS9xs,125 x7CXlwS73iI,103 MHfk4edzvnI,131 Ts4u--T-fDc,118 f-zgBlWksMc,104 uCXHj1i42KA,142 AIkEAcjhQOA,133 cWYIlga8sas,166 HaTAZMTwVoM,100 j42TrAVceCI,160 3I6s_-Q_2kI,121 7euiG3tT2R8,98 UYOH5SCstlI,103 wdAXjMj6mfU,133 UONfi1pwQzI,103 1EnGKC9Lk_Y,132 Z7C6L3yRYGM,100 eDblDj6BISo,188 LozIIWJG9Fs,123 Jet1_E4O1MU,176 OgEr2VRg6n0,106 gZ9nPV_stFA,109 PKr0pj8Dw6A,130 hFqDZ3vzyRw,95 VF609NvGcCM,206 THLll7d7Dfo,133 OFmxUUOxZl8,132 CXacLvKGrQ0,128 XClRjF_xBj8,128 HgTsJ7hBQ-4,98 DZfq30VdBqU,118 8XglzsFYAJU,116 jMv808xIuwg,133 S__SZwFn0Rw,65 Pd8RaVEZlyU,133 Yv6L4DunPDE,132 KD5DVxqmjRo,131 -opqUSOUDQY,211 JtqEy9DW91U,133 hV-f5LD5aeo,21 N6ffGVe63c0,132 0_pN-X7Gew8,132 NOphOh3EqKI,112 u0N4nuBY2a4,45 Y7y8tLgvpCY,131 WSbK1kJvTkg,117 C2db3UusdPc,114 oQAqWa_86vg,124 nTz_lWcgDhA,123 7ZnhCcj4sXg,131 ZtahDAhvvSc,133 thOz5eO74hE,85 gmo_PhSftuc,128 u7tSASIBz4Y,128 MUeixjmY950,116 bBBV7uUGER8,111 Yorm8_AGu10,133 PPMM8VRgEUk,106 ddm0aMIKiqY,122 tPJ9WsQhpMw,125 oN-Ck_140ko,114 G4BGtSvviS0,132 g2h8xRzMxtA,67 -AlKOlUgzaI,149 cFzsm8tKWU0,130 1Mx_jHNEBtA,76 xVpk12wYQ5g,115 T60vdoUUk_E,132 ANYJbKdMHk8,115 e4RGh5iAykY,153 ltMrjNiI340,187 jFKbSAjlJY0,115 njP__lsFwE4,133 4gbvjHb0ZUA,130 QUVhbRmhn_w,115 LnDG46BruE4,104 ClrfnLtqXYo,111 Ey7El6aRRH8,10 2hlDkSg-Ycc,119 wXYRFo4rrrw,98 w6kumXHaOeI,132 qlUmBE6uGu8,123 YALDmRKFYSk,129 AO_t7GtXO6w,195 0oDBrYgawmI,147 RVDyoCWz0vM,180 3aCT8ZhNBrA,133 t9f5FmSQeB4,133 mflonVbY9gw,133 -KOG8edoC00,124 poxW5pFQVEw,132 xR9HuRUUTbs,128 _qJp9DwYgck,132 YldUEtdvBZU,131 TnwtTQlfaQo,126 UyVSJcL-7BA,185 y-4yAOPVjZA,125 OeEa3gTsVDo,168 MJJ8AJUn-p4,154 QhVuXKypPs0,132 o_vwPlWTrgo,147 CElBVpRFk4Q,24 E2U5HXLiy90,128 cQhgVl3V1Rw,166 eGJqzSFW9Zg,114 7FN-chIhcNM,150 a7qRJ9T9TPg,128 qYf35nBq8Oo,119 Og_AVlwo94I,120 DvTSWj2tgnI,99 2cExWs8VUN8,128 pYXkfLVbLIQ,132 5XINVbpWRmw,125 TgOGj14T0M4,152 FYcrFQ5boyA,132 CVyeyli6gzg,132 FVJX6ODlvFY,90 z7vdutawe8g,121 RslDexUKDB4,85 3J2Hm85PD2E,127 Q9AIDn-w3EM,119 siTZSTZwJ0E,78 HuzpoTGja5M,113 Hv-n7C1EU3U,130 0AUpWC9Whfs,133 tff_EEQt79s,133 buGiJK-dXss,159 -A-fBbIXbPo,133 q-5e6U4CdbU,136 GIiXwau_5iw,90 L-iyxIincCI,135 B3nAwyocJs0,154 P_mbrROQcME,131 lWflJvuYww8,65 _OtcwxERu50,112 H_SgDfv61O8,115 hZqVpO3_MP4,164 f3XcExCD3HM,134 cudAGo1nSKI,117 5Z8LHf9J6PQ,110 Bl0c_aXJtUc,133 irQ89Ny0HkI,105 -qs8tLNcMVY,123 du22ttQhRhA,217 sx-obtKU1jM,132 CYF7eLv3hMw,132 LfDjQe0B7Tw,108 EqoU4-wHxDU,84 yPQQzJGKOvk,127 gJCMd15eaW8,129 tv25UVPcgxY,123 o_49_kbx9yA,126 U3lA1kS-XKA,56 _Cr0nP3k_p4,133 TsT0ExNMK3I,133 G9wDgZk1s6E,117 _RUjbQGPytY,132 ICC99mWSW1s,130 ZQ-8RqS16uU,117 q254XDNZ2Ao,125 LQFM8e6gQRg,81 OinSJLNXgA0,129 DdZlmK8Xxsk,98 Jxk0QX01quo,109 WGBw3zwzqwI,161 NAH_6By9C7g,65 T-m_67AX5Ms,121 6BGmQ21EekY,132 eI8o5C5l9J8,76 qL1WqN1XKK0,122 _d4WkQci7zw,133 s2pqELFTepw,122 6Qhj03nCJn0,105 kRCO31JfDck,86 Rh-nBzPUoOk,116 ZhMpx9aeefY,131 F7UEddgJxrE,132 pZXuol2q1Yg,93 uFzV6DktOzg,147 6JHAWVBOq3M,127 GeYJEkN4fao,119 B7ZTNm5o780,96 Wpen_d9INlw,83 IqycJpRdVaY,98 vqlURGjq4AM,83 nhwtMOjWerg,130 Gmza139ypxw,108 fuCEfNfuoiM,203 oyaud2-X1QM,132 Kuwa9UzfMGg,132 c-f0DwbNF08,33 l-vk0fgFGd4,92 A1Tgrq5wLAw,83 zPa3qf25T3s,133 OnYQyspzLEc,121 glz-J_geNNI,125 uQ84SYJmHYI,112 OPmVkpUsbz4,89 ETqX2DZqAN8,132 ZkpC7VsyqaE,108 XWI8ugmXnwM,130 UyUcpWaa_p0,21 ZMb-qj1X1do,133 eYJYW_9mFVg,132 yJS6icRaOq8,131 5kmgUtppQP0,132 oBw2yV1ZvUw,20 TsBMOksruxA,124 78VWWyPDmss,133 yn_iiD8lxZQ,72 Nfah2Cy_mwU,131 f39I-UCl9Qo,132 1kh5X5CJAOU,179 6oUQEh-Xji0,133 Bd1CBat6DfE,21 bHPmA9JEEQs,79 b0SfZ4LMV98,73 5JLr0XUrEF0,130 2HTHPtoNJLk,121 BMVmbqSR668,122 re8jdVlrltA,132 mkYNhZvlHv0,126 5BKMV5PyjDg,126 H3E2nY0djIQ,120 LCEr8N9zXy8,132 B_CRLQ8VXAg,144 ySu6q4ydPZQ,164 eug4wbPSykc,131 BPrF_0Bg6iY,99 QEkSX1S4kwg,180 pw46kpxHbls,123 y7Ynxoqo8gw,150 8osn-0mHqC8,121 WU1F3XLgVC8,20 X7KoVUspHys,135 SMChQJPhzfg,50 DTXU2pMEZeA,109 R06Ujp-UBx0,117 EmUIfX9TSJs,132 HYvwDxWCSwM,120 NG3ru8QGwl0,114 ISTPRoBW2sc,129 zTueXqC-xfI,133 0AspXDFcGlw,129 gz-Uv494KFk,131 -o8b7tsVH64,130 SGbvYkCLZ9U,111 DHDOgbfwSlY,107 jmjcKSMwC1Y,128 bbTgmSIDyn8,133 DfNfg963uEA,133 2wOJBjpLTBA,109 4aI9-g_n_OE,131 oOFNIMMfTUg,117 HmGeJVIfb1U,81 HnnBvemHrWA,132 t5xpX6krGmE,122 6IPcEITrktA,118 QsQAo97BaBA,70 m5rfQ59cc0o,110 S_fzdjP3jKg,90 T3dPGXTusv4,128 G1IQQRRhI5M,193 BckPa2_A8gI,205 GCEBqhWnUDo,130 _th4Xe6Dsm4,123 vz2RAznAy9Q,133 DhhKbHpvGwk,113 wnosQPQgvTs,112 ovy6F76ip3M,92 KISK76nF-XE,131 7X3WSQtviJU,133 4pOlBSLt5cg,42 NQobuzmBNXo,127 5GL9pbYS_D8,98 z3GNhBE2yhM,91 JXnNKqu3N3w,125 ycKGXmtM6hk,101 p_UeWtpIW08,133 NjN_jPTXHys,133 tqfFZYur4sM,82 M9m4XUd6x98,132 v5wBisDJJ5A,128 Tb6tz6ohprw,125 bxegamvM8ME,128 GJz6eFgwgkA,131 RxjCZxfPA3U,114 ffPTYWq1YAY,132 IOmR8ZCYhzc,131 uc0l3djxQ5Y,129 7lKWPxDej7s,112 9h_-TIM3kdE,110 pbSX1diNIlY,125 JJAByeqjimo,91 081zoKkdEYA,133 ixbStXcVqW4,132 0BozXvlwFCk,133 rZuHQ94ES6U,116 kCqEADYRg8g,126 HSWtc01BlqM,258 shIHmOihazQ,125 eopKHS8iM5Y,133 ZryPGAMBuF4,112 IeMmE7HvO40,153 RvQ1y_CPuDw,130 opCf3mp24dE,133 -kRGB8yBnrA,94 TkX-TPaodoM,133 Giom5_byviI,126 maWXwv9cBS4,132 XobjkWljkXw,131 CjfxDT4SSTE,21 BZ1KEaetIwM,131 fjVyrWdUy0c,129 LnuqPEIHL9I,166 Eb3oEMSXPnc,127 aiilV691CzY,81 -2LmKW3TtuI,131 dYvCGjka2-s,185 Wj2sfYCpHOo,119 SXeiM5hAWvA,132 HYtuw0c3dJ4,130 z67cBIaUOzw,130 gZGFF-UGRuQ,21 DEDWjeRGMks,125 0I1Vh-Ru1z0,125 E6SfKJ0TmXs,132 pe1z-Tdk36M,67 MuBwxePS-s0,125 vYafR-6wNGE,132 2TWpil1VJ8I,55 xy2zgeQ7ECg,224 xG6V0I6_ZP8,119 Lc1MmNI8jLc,60 fWxKQF17YHk,157 NJJDRmtivWI,128 C1ZrzzP6tSQ,143 iMA4bMMh44w,92 fjsZJkL1lB4,177 hrcFkSMZBng,124 70yAXCvid4k,84 y587UlBV9jg,83 NVBPoGcuLK4,42 EcffcR-lgtc,96 ah7mS9H_TOM,132 _3CJHN6bBzk,85 VX5XAwBfy1w,131 AbI_r4kXbcQ,132 _RsQsYJ_oWE,91 cbzkmMaYSNg,130 4FsDFOIWiHo,179 cPYdLs7RRRc,126 pUNArJgkB2U,128 -c9-2KcnLXI,133 V2r-pCAO4rw,154 Wo3XrThPZzo,137 x2wH5RS58lo,217 qYgpnWoRbXg,107 cjS-Y6WsWMg,133 8FysZvGGiz8,133 MKVy1bpJCi0,132 uAO727Dw9hg,112 r_3r5f1W1Oo,133 fltSq_QHbbk,119 A27nH_TtN3k,104 ERw4l461lhU,179 Hre4nTAQcIA,79 aj-OpTHixpU,124 ktrHO9uETjk,118 PgeCL2KdU_I,130 gU8Ksz47C54,96 fhO2QtGb8tY,71 9ouTUr7L1oQ,10 uNsFppO-q3g,79 oHyebwN9XXU,103 WlaQZKko8bk,114 4F5sPA5E27o,131 kQoFdaWI4h8,132 x6oaXdPsiN0,132 eL9aiYpAyI0,133 bH5GtRBsss0,132 sfHaTenaRBI,124 zTX_mBbobME,109 MM01XhEgcF0,112 B_PvKCOXdiw,133 049R_wOazQI,98 eMFxQti1xHU,131 3SNcyADMY8k,132 1khqylEN_48,69 3b00UbIxbCc,131 CekWztEL504,129 3fjlQw23hd0,132 LTgahyvBMk4,128 bSW_sW_A8pg,143 GofDgoM13BA,133 7rDK27McgEg,120 Cj-H4ZcfVU8,113 rB0t5juhYkw,21 _qit_nq-jUk,130 Ku9rtTERy1A,133 F_HKGZRUroE,116 h0i97SWIdLU,131 dbH4Amzn-Rk,132 rTCpK6ONu9M,133 9SomT1Cop8A,117 7_OHC_nqFQ8,122 4sJi6VExXuA,158 bzRUc3Zrvfw,175 93tR96egox4,131 cjFIi3PC2cI,174 r8cegnOVDjo,140 i7vKbmKF9VI,108 h6M2ZbuGfYc,103 AHudLuix7As,101 _9JONJG6KSU,132 cidI_7BQUJE,133 DX5KZHeK3bw,159 BWm1l21hBb8,120 ULp3vJ6Dme8,133 -eocP3-Ifag,133 -heLeiCeD58,106 7khCMEgY5wc,130 ORy5ULEbQ48,75 e1NkoFF-13U,137 HKrJ0cZ4nDE,93 XtTVNCZEcAs,133 EOSJ6vijGyo,130 5aLrRe3K_6I,154 hTzqKlFConk,129 -dkz4Sk6UuA,132 MI0gOipkexk,133 d3hs2M_0vLE,122 1DkaN1nDQoY,133 VtVq2S8qp1k,95 B3v1kEzT4bA,152 H44ZLiOlN0A,93 HC9BNtZrnIc,123 OT-cPtnytxo,129 SDAdzb9IeGU,126 Y_bIzO41o2c,149 41h9uoNt6F4,128 hcUVOlbNb30,105 gknxRGof8Pc,143 twkjN0xQsWw,118 aW_qXKNDWtU,114 t8Ql94ApRSI,99 RCptP8ItWmw,91 m4VP7c5UCdE,51 nDTVpRRoqcw,143 gZbzZaYK3Zo,127 z8lDbb_76Ug,103 WdfgoDKArzM,109 E0NZlvha-KQ,132 rb7z1bFt79k,130 JR_bnlkaEss,97 SfQk_TF9KJ8,133 PpUWjff_OcM,140 L5Yu-IGx0-4,173 9lTKjTuPGEc,129 vgZL3KUbu8I,125 Qq2TXAE-Ih8,130 SZKLpJzv5JY,72 VwP_-8SCu5s,133 3y4KK8Bd5l8,127 OdaMqivNKZ0,145 A-BrlQ3h1i4,132 TBBN6WvPavY,126 SAYvv7GeSSE,166 lhhxZt-oU38,72 5WaI5NdGVw4,133 8rF5KWQw6YE,119 HJjBZoopPXw,122 SWjCrhbuvCM,130 UqbTLJ0U84M,101 HiuPgdW3E9g,162 7ycl6niFTsM,132 ZbeXU9FIFw8,104 esXVSyflpDU,133 AQAQUyNnXms,115 7Ro8QybNKu8,119 IXgeL39PXAE,71 RtabrwMvAuY,78 mSd_B5ZTP3s,107 aV2eCTRFJbY,122 xHlaIIyiRSw,224 qcFVUGNUWuk,118 cNkof76o8P8,84 tmwSUyoEItk,81 uOmPHEVoSa4,129 iwXsuJXUau4,133 RemcXMCCQVk,127 2AHC98YRBKA,132 MVSH6eiGvSM,130 mSeeLOr1GKI,128 0QeOXuuFo4g,133 4R-cTX0i2hQ,132 z8jAdF6Oy5Y,46 F5mTt2atvVk,133 eW4DpZkOe1g,133 ljK_2ZT44jA,126 w-jFuEpRFOM,145 cLYCKmqJApw,121 b2WuWXRVdfk,99 FXPNIj7q0lU,99 9d4Zddhcqbc,133 nkcLf1CH_MY,132 _VIWqtzAHQ0,151 1tdZ_k0eaHo,133 gzTzSOHP_HM,133 BPUpzQ4vX_o,131 qBGFAnbZS_M,107 i3jmM-Fc5Nk,111 KOV2C0jVS4M,132 oCE8jHLJe3g,130 a46FsHMRPkc,130 wz4HLeURVOQ,131 nXIu-RlvPJM,122 cUknJlnzdLo,135 lQoMIGl_NTU,80 2_fDhqRk_Ro,119 k26hmRbDQFw,163 LVC2uynUn8c,132 AmACeERgRA4,140 vTeY6H581pg,180 5nyJNNk1jCY,125 SiUT8u1LckQ,131 iCp3nEO3ttU,112 AEEf_00tNos,126 8YkX-DZDB4o,96 r-Pl3TQJqhE,132 Wj-RYFPvje4,124 lqA3TgVtN-Q,130 CXYlv-z_xHQ,118 HnZw65gsesw,177 rBgn0IhMEBk,123 D5a4_a3dIK4,133 gUrSHyV7Opg,118 dFIsw8XfF30,129 gNtGI_D85mQ,133 AWLkXfNg6ek,132 8Jd-gAm1wMU,149 6whKr0DDbdY,129 _C672_Fkzms,140 Njpz7jWgB04,133 pPDz5TWc0Zw,128 qSmjZYAZQp0,130 dZ-teGgl2tw,130 odWPv33yKAk,104 01qhgR0WsnA,176 G9GWMbrEu_g,132 QeydehWrRu0,126 Fy_utfWemC4,132 UkYl0Qxgkpw,97 CZVsWzIb6Vk,130 iMJnr5bhQUI,178 BKDnwX9P7vo,185 Po1GiAYyjIc,133 S4PYI6TzqYk,131 MTRBtcsZwjw,112 Em8I02rqbhw,123 sGuNGXmQZSE,152 5AwBYVybnY0,131 U_0oVOS3LC4,128 Z5DlqH0klZU,134 cPooLABE6Js,113 BpnXXI34rSs,83 EodapLIzTnk,139 FnRp0n0RhDM,181 mha0N1Cx1Ck,119 DN3iIszMnI0,111 S02T1j9qzwg,132 h4OULP90F0c,79 q0DZLuG2FiI,130 mD83kao4Q60,131 01X3KxC5GfM,138 zHzbei3YeFs,93 aJl8UJ7-JiI,127 I0jMv9vF9MI,95 -_YHQheqKxE,131 Tj9M34DzAKo,131 j67MZXY33c0,151 rlX19RmlimM,75 ghn35eUPiIc,126 wQhcRCuORak,61 pyyquXhcSk8,114 KE6dEjZ8qmg,122 -9P7Ge1KmTY,123 MyvEWQL7veg,111 HzCGd_bsWns,135 mLcwaMW919Q,123 IV40w-OYo0A,133 n86CV7VKvfE,133 MEOPA4dzK2s,132 DTkzFvyvzkk,138 9lX00rAetvU,93 Aedxe7JThh8,114 xamDprXBtBg,133 NCm1lI1L4LQ,129 D9lmk-9V_sA,21 hol98WRZtz4,142 Du8HRf6pRVY,136 aCEjVC3Dtn8,129 sqmzvduQ-JY,133 1lCWhKWBjbc,132 JvFNTD3NhH8,133 Bo47QGYq-LI,149 Gv_SuIRPPyQ,74 BQdE0_Hy10M,132 VBeTTZ4QBoA,188 gA9Z-Irh_Y4,132 FFVuNtZytfU,21 Xwob-vrMkz0,96 VNJehwzHpe4,163 t1TC-pegncQ,133 OzCu7Cvdsjc,133 tcQAs96Z290,21 VwfXJVjptt0,115 nIhrGSxslzQ,132 BuRr2uMsGTM,156 QXqBylUsyzM,93 7BEpbVXCbvo,107 VglR1HaNlV8,108 naUJM6Dp7qk,120 erILyrdpSqs,133 AL2Qj_h_d-o,128 I_X0TKL3bqk,132 2fEZc4acGC0,111 XFoP9Dy1jNc,122 TksvZdrx9_A,160 ziPAPWBYU5A,66 T_igwYlgnZ8,133 ZpJvQAs3_98,121 RfqBp4LFuIQ,114 ji4pvRXDMOY,96 xLU_GvlaTtI,123 Amd6hjScF58,81 f8Cjlv6nBTg,131 MBopFmu3yAg,110 eLFf1LzuM1Q,127 FkDrbUQLuHY,131 cCtn7_K1GZM,155 on6B12rsn9Q,123 OGEmY8RCF40,133 Wrs-qNpKvbE,133 B2I2s9rEOCA,133 dAc1rDS3YhQ,126 Z8lnce2Ij-4,118 n8yUoQP6Rwo,97 S_QFbRtEF7I,116 rdWIo5R10CM,148 j_txRPwTvpk,103 XkNQZg7yTvw,154 NTne-1oUAZU,203 qwblOHgiG5E,107 XHuewsIKvP0,129 qLFrdv2R8ng,129 vWkJPL2Dt9A,116 kTtxe4pWpfQ,133 o2YKoT7jL4M,126 XIJ-TpmNlI0,132 -zOoQRf6DNw,176 W112SAzt_FI,162 bMblXxTNWQg,183 JAd3SSNqZlI,142 757qJxO5D6Y,117 gjuizikJ2bk,181 RcccijujIjE,171 Fz43jl18aiY,92 7AnDGdVit4w,157 3U7pCM576i4,132 MY-ZusWqyqs,196 Y--v_LdWlQA,181 w_ZDbyiJlF8,177 xHtAfA2ctBs,131 qlUJueukntw,136 Cm6FChNhtSc,133 2k-G7TPLUfk,140 Pibr2kMG1HA,137 qTwgG6t94Ko,167 Nggy-DIaf-0,113 RsGRrlK84zM,177 S_rNBw8E98s,109 BshBOgRLN28,166 gBRwHB9FSas,101 bqUmYcmLCMI,157 YPIfHEdHjHI,160 KTIw9F3TY88,130 HpGmAvMtScw,135 MuG157PWMWI,170 Ln55e0EyX6E,178 ddhfpfnwgRI,93 jQp4IlURoNg,142 X55PmVk-KvM,128 Mkn0Iji6g9w,134 EHOt9vYunt8,145 3lxLsyE0CRo,127 i_9mM4F_JVI,112 zpvTZ0G0UiM,120 fD3pjFbgcyc,88 cSjzA3Wl6hY,200 Q-D1e1u4ufk,136 LWtB2BdJ3kk,140 ctjucF9fiFw,127 YG-plVmM7O4,140 FbI1dmDdLg8,141 CKtUpbJ30Dg,115 qaQQ3LLyKvo,123 UZ2IjJCsxxo,139 0tg_TU8EfCs,179 MZaX-RbQ7ic,130 Bfj5GHwgXno,132 qW7LtKsIfHM,189 7UANVfaybow,98 OiJ8mt6Nn5s,170 25UN_cgKaxc,130 x7TNrjPLDBs,179 BrGfzBJW-Do,240 8Q2WgdOSfms,106 bvl-DxX9N8g,139 2m2vmTtcCM8,133 XC0h9nx3Pw4,173 mZYTLYXT-CQ,180 TXlioVAN41o,133 D1IshjFWDJk,122 wAJQ-yWgSJs,133 Fo16J2G4bvU,115 R4JJihSXMRU,184 a_VIjZa76jI,162 oSEQnREqfF4,233 sGPeVmnAFAI,93 S76Oq-NDyvw,95 p6IvB-2jYtY,133 L6w-80CFfAs,296 3Bz0cqx4ZyI,172 dfoGRpHc4qA,179 QjZUS2455z8,107 mI6O2d4Ieok,225 0Dp--gKKMJ8,134 OvQctA3xsoE,119 PTOkGaI3ZAE,132 Ua4pj7Sxy-8,103 74DUcGnFH8g,280 EYvn7xDKKtA,128 oiQPOmrEAxo,195 6AE1I5edCfQ,130 b_fKzher8QQ,204 6tVC53rH37g,153 e80EOZnHpLQ,162 tktoOXBmflI,141 eXHKngWBha0,137 -ON8ZTCiuYo,94 6DlOr1PP0Fc,220 Qh5tZM4ybhI,208 nB9rg6sxHhU,254 vxFr0xNspFU,108 SDIk9DOro4A,202 PrBVgtAeNhE,135 1EkjxpUe5TY,184 P430SxnueE4,207 wLuRwDl3MrE,172 QABInjYQVes,157 eFF1grhBvsE,155 StoThowf7Y4,143 nQ2Y1gm0fRU,167 IFETv7hMlqc,142 Ca273QV9ik8,216 t6UyEPrqaQI,219 MzzWzX-HGbA,170 VGcOGt-OV7s,109 qI14dmYhHGE,169 vBtG9eqgf2Q,205 uDAIoSeEoZA,64 v3E4s7VN4xE,125 cqJitdI6d24,179 yQXi94aNwBU,180 15lEWX16LV0,281 gFJT9ziRAUI,183 3w6Z_-R4Kk8,196 xsK7WF3jWI4,133 _-6IvJMziRc,293 GRpcj2aG6MI,214 SkefiJco10U,105 GeAcikP5N7M,199 dX0dcSJE7ek,144 8rX7fkDLEx0,133 WItFgdMdxDk,159 gWHvF157sFI,179 a6QMSQ9NtGM,174 6RbMqRpNqmY,122 ZKxqB5gCX6E,121 _PXmVLPkYVo,176 DqOU6NcRVe4,182 iJrgXYnUVe8,131 htWhh0DIFgk,134 8zYGzyIpue8,164 NX12Wu1uqbI,134 lGQFgsEBe4M,210 NkzG9RZBERE,154 dfK91HGGVL8,207 g05nAeO-uKY,133 KuStVllxFuI,140 Sw4pvbkQ-jk,169 dgyue1tT-uE,144 mpG7K909Gi4,165 Cwqmd8pSkEo,127 jM2drh7uhsw,206 fIfQbocblZc,132 aa0NlkF7Rug,131 po0Gj897Tmk,257 oJT7pQyq63M,125 E1u3lo2EsMg,164 kf1bu5sUXaU,132 vozjOGBUz2I,153 q9X6tpvxZyE,235 uwta-bET3aQ,191 hM3nn30NxCE,165 swn9_FjwmJo,127 oH5Dww7Umog,104 Sf47YRUStx8,132 hT_G4j4nI-8,134 t6plGJhbkgM,134 fvXLs4FFSJc,142 uioT_3dqzXc,134 p9W9PhaNGOY,105 6JIY7mRvsRE,133 UVOJk8TFwpQ,133 lKBbFHMEvDc,131 qkHBpSypnHI,137 mPDFATjS8l0,133 7mm8aQCp_oc,143 KD6FsEaD-3U,130 83BVVnFnQkA,182 Q4B11j9T3hE,141 1ZVcZnWu57k,128 TJa_A5cVd-w,174 ckSC7ZLyGG8,94 EfX6L0wDT4Y,141 w_iXru-XxwU,189 40CAAtSZsbw,112 nTAYbwY6oeU,132 FHiB0ZTO8fU,148 vubylfvbMhk,124 v6nkTlU_iT8,184 d4QJy7RMxok,173 PDWuHeevSAk,130 1RwwTgTVnJs,123 YeDjVvr-6Zc,215 jBMb3PU-2-w,154 egwR6gS9UMM,131 PXSMKQqZjaE,139 Lbxeyn5IS8Q,151 ZzkELXr8siQ,154 TcBlM3VLePM,132 VuGGlc9x5PE,164 wuM_9dYtRwo,123 MrrYu07MIbk,121 QxrBZStJOGk,173 5CxYctMSiw0,136 WO0KS0mbu80,79 3reg2k9xS9k,103 4ZiwLxnl_9k,146 w80ZSg7kNbE,131 fvHgXzOY12Y,149 d0hM2Ekkk-8,144 A5CndWt2xrY,77 1J3WNRR4O60,211 ocDL_b6BRE4,208 U9qK-5bDP4A,143 bQObeZ5R0mc,122 pHH7NwBwxM0,164 JJwp_lEoOuI,116 W1w1qcvdTi8,134 Je3Vjos0TlQ,232 31LlQhZmSYs,94 DbJ1V4yEZP0,137 7F1OGZeeva4,216 3K0KQCvu2Xo,140 VLx6HcJ7sas,235 v0xXbyXI6YI,169 WtVDF5bNkqM,156 D_N9S0bAiWI,132 bTJAIONGv0Y,214 TMe71Lvy1lA,178 yWP5eC822Ac,209 rwDDgGuCVS0,131 E0og5D_sPpM,133 koZie6TLz3s,178 zanh_ElKfdI,239 x7TPeGns0N8,132 iswgTDjihrU,190 YPXkzktz5oA,96 tNYSeyXRkiE,127 EE2FUs9iI0A,112 ANEr1fSCLFw,134 O4PP1tdCHJA,113 TSnlLU5k9lU,133 cSO2u-StPbY,90 HNPRZ2M3h-M,177 sw1tJoYrs7M,231 XlOaSZy_S50,57 F3yawE_0QaE,125 zhaVycw4FXI,201 w01pKxgINao,149 MgL18hwJZ0A,212 eAVgMr_VCH4,217 6sfgXGPtVQk,107 282_VCffiTo,131 TzRrEgkfhG8,162 R81ZAKQzJ5Q,117 oyU6En9HN8E,179 nF74obZFKp8,175 pt94aydCMXg,169 a2RgwHcY9ZM,119 PWz21cujw28,141 DVQQY4-us8k,129 gK6JyAanVNE,134 CYO8cs7VRMc,191 3Cf6HfBCcso,133 G3qOB7PGBXE,133 ovmEekx3IcA,238 40NyqKryTUU,171 UCGdsPwcKKg,235 JPjeOAVkSe4,133 gwGqg69sqi0,158 Kcmz-QxexRo,116 UWS3FOpdFMU,83 40p6dkKil_8,132 qRQu4tZF1GA,150 p2QiCFAQ-qQ,143 Ru_KziPyopw,182 6I5B0jyLBUg,172 Pxr_FzpPM2Q,133 CMMXbRt2zLQ,226 CvnpRyO6pH0,156 NBfCeTdLDbQ,92 0quxzV2i_gQ,119 StUN1G5filU,134 YQxXtdN7j4U,105 QB9AY9Em4To,236 R-ciRNPLhWE,99 V6xx32EGypQ,173 tyXI3CQSQJE,168 ZCU-wmL_XNw,173 yMyXgCLhAXk,149 I3G-1_l97K4,138 Ajh84X59SH4,132 7yg4b79rNQY,175 _wkTjOjTafw,147 5Tqsh3b_lb4,174 z82GwvEQ3Vc,102 LMcBi9a8_RQ,152 cIEPiYHzTto,111 cE2bc0vU9pg,160 q_tMagfE-nM,134 06qgu4XoNL4,162 iK03b228mmo,180 u_jemmhoj0Q,123 c9YJ-KJZKyY,226 Pe5eL8LQdY0,129 HFTqyXV9Vio,127 VHkoII8ewWk,99 OBXQr25dHQE,125 U0HHhK_MrWg,153 P3Mo5t61kO4,105 0aKB_Qm-z6g,121 meVHiqX5mb8,152 xAlCbE-yCTw,134 sfgNK5f04iY,128 ATNjQgr7LXc,137 mpgaMjGOeJg,226 3wLF8oDA3ZM,124 n6zlrCAvNRg,181 oyXKvCRzYz8,114 aPdxMGV1Y28,163 SZnZMhfusbA,171 6BBGO5M_2A0,126 5UjmbtIRvLY,190 uw7rRlJvEl4,133 gnbjy2tWfd4,91 NWNMrmwD7Xo,146 W7BLikBY5Ak,176 PiL1okP-jbc,168 ESUdqZoRu3A,194 j71oHN1i2pU,147 ks7pfp1_V-o,128 t794eVHOIvo,22 y64QBxHJiqI,162 lCL7DI3ah40,98 jgBGoS4a5rc,189 sRGrUQRVPoI,137 S6rgOlhmAHo,212 d0ZOz1i5-PE,133 0bR6pUOhZo4,173 x1YvX61qS0Q,78 9nwSOUvKyys,123 ISKL5Sy_Mt8,134 aoc1wqaK8cc,135 Ep30EE2v0mU,128 gTKqZp_fABE,110 zgEsN9EckAI,73 pRwRO-DTniM,171 DWFZ7v72HjA,98 qIhQJubhA_Q,211 MGJlq-gjQj8,234 EZaYMKD6Iqs,133 1kuNl2T_mjQ,133 7_ClXAzhDQ4,157 FtoH7NJV5Go,170 taOda6ZwWyw,121 gi9EwdK-6L4,154 WncnbHD-JXI,111 WCf36CQxBfY,130 6zx4HGKU2E4,126 FJnJJOAN_PU,246 rYS9mUCFOAk,127 s43ARFFNrz0,134 _X6dHrTceEE,172 Veh9KV9fm6s,133 Sj3sHAe1bAY,178 zvy5tDkETfQ,130 R8r9iHY2pCw,217 Z0sFhnkRCsQ,148 L4MyGhbXKZU,131 ZQHhiZUNM3Q,198 V3aM1IFedho,178 a_hsjTExzbw,157 92eioWPPuOI,230 kevJJDQloNE,257 8Lv0BuXTgoY,134 i3yO0OagpNY,159 a2xcMwtUQFY,96 yV5w71aImSo,158 5QJGkxbb0wE,110 _qxAcodjpCo,49 MDv-LBBUkVA,88 jyDUZd-Orlc,180 EBLS3sCB4rk,134 ueMuCbXkDhw,92 CyGOqLQTww0,112 pOlGqiWm9yY,174 dSOFfyFdHXA,135 jlCEAJXSwJc,134 z7J95xF4vW8,94 9FcSX6y6OCA,230 lISiW7wcIVc,230 HbWD-eclNf4,151 F2GgBAXj69U,116 0tro-o0fOk4,134 Pl8E_9CTS1Y,134 hTpVCu5DzpA,182 6q5DmJCpaC0,167 ZyXHxrg-zTA,263 0qzRQ3qxv5Y,145 8TTWKlJdWVE,223 iG5M3WSF1DY,156 Ej1lqvtmcMg,70 hJ9hMyqKcg8,192 gA-VU0mczSI,130 SVTxvLaac6A,153 C9PYzGyIfF8,125 cMwOJoesx8M,156 dtIqkgW18-0,113 0QLGAhQDgsE,196 oRX8ramIWwI,120 480Hw45m9v8,167 gnp7Zn5t9uc,149 K93YrK48ZG0,210 I21bX4cEhRM,155 8v7xHt-CJZg,133 DdpMl3_vPmQ,91 -ZxtmDbqDRc,180 SaRtVS1Fx1Q,131 GuqCibVW5wo,106 LOIF-564wKc,168 h41ylpWhV1I,118 r28aUcqqgbA,114 V9GnOAfI4w4,158 -fRY1b6WAx4,178 7cZ3I9Bn9Rg,133 oTd-6xia-xY,249 Dyo5g-ozH2c,173 0X0-NpZpx6U,122 VD704T-c64c,177 4N_0iP8TSRo,133 hwQWBQjvbgM,88 W-rC7PEsItw,113 fWYs-bFK9_s,172 GZiLvbk8fL8,109 H92n6qsNHbY,134 rhFw9HYTReY,108 T16_n7praO4,226 85cnCW_4LIc,133 AryZBe8C69U,173 Nhj2rSOUjwU,131 MevYeKlyQM8,171 BGOL5YmTrAY,184 LTESHXdMyQg,175 5dCI82ffuIc,174 IsZdfna1LKA,176 eUogxXRPC7E,112 viJsUgnT_HY,157 2DpotjffI6U,108 Gdp4SEfQzy8,62 WGRVxwlEoio,190 D01cKQMu5Ew,106 MfV5DOQ9zac,68 h5f5GgqVWes,193 rFbe4I4SXGg,90 JgAmbGwTMbI,176 S-pmcO6U8eg,140 xxGmwvrt4ZA,162 22xJjwTRC10,145 __bdFiweOJY,104 V6SMgd9L6Z0,169 H6pjCQosMxk,139 B3bUD6nAKvU,180 6ya9GVSPiXs,177 Y7DGxkezqSc,134 nqEL7fP4Rvs,91 Vh7XH68xWKw,136 Xa0JBPt2cGU,121 gMdTl2R354A,249 H6jj52hYXeQ,147 cW7AkQihsa8,187 N26K5UeOTPE,125 UPAs32xduAM,140 I8-3VpZrBww,120 w6ivjvOqBy0,173 mycAsRhAr_M,71 zqv3YesdtRU,241 A3yrtArn5zA,151 wTf4njh9TnE,152 4F5AGPMRwgw,187 t-B2zR5O5Ys,134 UepHO767tO8,191 g1bhGNv0Ei4,150 OwG27DvQf68,167 FloKMOp4wN8,197 0p2Oyd040pg,263 1jEe_vPgNJE,179 CtcQNdbPsSQ,144 fKaiHVTL5nQ,101 H4hjg6jAhOY,153 eqarJw8A2YY,67 clDZPzwANeE,125 v5oVPhcW9nk,173 s7kCd2kuoME,111 3aBcNzAFnxY,79 gPJFxEvmHpQ,204 NPmAEqlzKqE,108 khX9fjqlf40,79 4YW2E3yaMjc,135 6LyYxpkxILE,84 qjJnk3MgNgc,149 jwjCPSUGPXU,105 vKuvku8JEq0,183 ZCrTaNYTk_M,140 BuPdA_CDITw,81 9eI4mt_lKTw,166 bCZRAcsuRgY,167 E-F92GOLVcU,173 AHLo7Vs6drM,136 8kzZwPsHkfo,127 7ygAdJYS9m0,177 HDOGthpW1Hs,125 Mfu_iFS-UY8,133 L6f07_-wG9o,161 JcAdeY9KlpE,168 RSl6bwZabjA,129 7dgOcvrxxac,91 kAKY4ZkKIPs,147 fOFGL7-qmqs,102 w6YTq-3hmnA,128 Om-y-goxpYc,134 y-qCvfXMTlg,105 BHJTeH6TLx4,163 Ud8doeLuJWk,106 _ZjTuvkIbcg,107 536GqWYOHdI,179 FeLR7tVzVeA,203 hudgzkYfSvU,132 Vln90evTYog,104 5gOfKFlEJvo,148 oUKw4qcGHZs,172 HVgu-41adSY,169 Q7r3HIkBJcg,212 Jmf4o8UalVM,183 c5JH3hyjFcY,192 RWYM4Npp9rI,209 yOrYFxd4En4,93 NBxg8a4TAng,83 MtyfXKbZUus,105 KoY720x5fuw,128 zuSBq10_5go,227 FX1FiZxQo7k,130 mXvst0jlR9Q,133 b_Wpqni4yMQ,105 YIhMJMRdGGY,84 cpZIiyp8juU,210 DpA2bMJlDpI,196 TNPMRbIE9k8,197 wVCf-70SKKg,163 N9d-c9ooO7s,176 rdc5PXKBFdE,109 S0pCBDjC9Wk,87 IspZWYlmYZY,177 G8FhdcsVB_o,107 Ofkb_7EnunM,164 DqSBqfDgOsQ,73 ySINkZRkHi0,107 Jv7PzcVfULc,134 o5NPINxrB7g,290 6puVCaR2E7M,141 4A-hmyHNaxM,173 fwITaMQj7S8,69 -BgZFaMJRxM,206 _ZzKJflnVHU,211 zZg6j228i3A,228 lJ7F2kWLGuE,213 lb6nAmbkk9Y,159 chvjkV0jRh8,183 ef7rQniaz5c,134 NgAjrtEmWxI,174 4RBnTZELQX8,154 yU6yKmqhhp8,100 hwI9jLgUnbI,267 70tY44WxygM,179 v9VqcsF7s5E,166 DawumJOyTOU,150 dPaM45IreF4,141 TcJjhnPrM9o,146 fxff52VbAa4,180 kT_dXxp7eAo,134 B_JVGEptSOw,151 V9LA86HF3i8,157 vT3QXNKoZKw,108 R0CN7Enq4Rg,207 YLhHH7GXdkw,159 VbQOa65nKqU,166 fBpNFLngzT4,134 7szH-UZx2JU,184 qYZw_tL0j9U,176 6ikH1EFDm6A,133 -Ian949JzDw,195 3zgwoTgXXuc,181 WcPbZiPqUlE,151 y6uK9wxhl_w,134 WcmMx1_lQmA,97 zn9D_4bE0hM,142 2qqJr7uFeTA,106 lVSMG8FTnpw,171 JzJ0EVqZAzU,85 39471A71y3w,128 nsp9ex69rQQ,209 d7WraA-roN8,118 wwnqJH8OF-I,161 3kEL1doAC4M,178 KOuClUYl0_U,229 lyM65FpQLlM,182 zZLAinjBShg,178 zGXxYW_Zisk,81 jME-000LFNY,131 kARcfM_M6VE,148 zdF8hHVUzM8,186 7DnCFrbE88A,162 u-PbWxhmJto,204 xYHBAXUJ-Zs,121 G1uBkHVIGfc,132 MGuKcmxMPQk,124 pPnfIsbcwfw,129 qMaZAi73HDo,123 _mnvg-i4Qks,108 M1J7yqXNItw,154 IqJWWBRnrH4,107 qURMZDMKpxY,123 ZMIGwSNQA4Y,181 I-6xj25pOP4,151 _iinqPkm6m4,223 i3ywt-oTQv4,245 zvGA7DNmxmw,133 n3L8UVTe6Ak,200 WbFri7eX_YA,123 miE1oJ9ysUs,71 K6Kkwi0nfHg,176 ibcYEwzgai8,134 DfKYwoHHceM,92 oX3yOgEmFOI,180 ntKYG1LdbV8,131 O12Ve5AFu7o,116 JqYtHZw-M8c,119 YbM3eHylkqY,215 9aIOR7dl2CY,184 FVRaOepQ02I,133 Uo1FfULMJ5E,97 tKeJ34qjORQ,277 a88UYg3uwZw,220 9JVQzj-iWI0,52 56v74zFOV58,178 neH8cVDLuac,104 0z9b9_n8-Ek,150 aQ2aje8PZz0,181 6w4Chzgna0c,142 eLKbRagkB7M,133 _65de63xao0,237 EoikWLSsmRk,119 3_SZ0F3VTVU,185 zhhLFNr_Jio,167 eO-4vwbIJR8,68 DPU8L2vJvsc,128 EL-Zzx9ZrOw,185 iVzz5FIaCkA,109 BL-fRfeQTNc,179 XRtuUFYTctA,87 p1k68Ri9DKg,141 HIOSYqainIs,131 11-AlLawdeg,155 WAX89Cuk-Yc,168 QQsg9djZsRE,179 RYP_NSi9g3Y,136 LzJ1fo-oUpk,201 0kM0c3Q-hHQ,186 585p7sJhiFk,133 bxEqg39v9Ec,177 6SLhTIdGfhU,72 hH3peh07eq4,153 is4ZtB0U7Vo,237 L46gYnVmYY8,233 5MINtb6BV6Q,176 TpNPIxWdZgY,185 gxuEGIzZrGc,169 Pl1dl--4OBE,134 -ZJZF6PuwxE,173 NxCa0cVaxQo,165 eiqBbLVXbQg,229 wn_8YBvVugo,122 wNRvgeiaVXA,156 q8HcMk_IimM,175 7C-aB09i30E,83 Mvrl3jeiJlg,162 SemxtZJHxEQ,66 7uSfWo-jr8o,175 27ARVhE-a58,154 1aZDrjQGvIU,104 shE7b_6NNpU,129 N7i4yZhm6V0,138 gQgdweybPwk,116 Ln91UqmKxwI,113 erX0T5r5xbE,192 qHizQ-En6Tk,136 vppCnOOwS_4,202 71pIZ76YvR4,134 kvzzBebEAHQ,134 xqeAW5qAHNQ,90 oPPxArk70IY,152 5TG1Wh04D1g,133 iJDnG2RAlzk,127 sZdVc2KAfWQ,123 ioUedV29CQE,160 Ap8p92HCAbg,146 4hY7f4nOQtU,152 k9DO26O6dIg,155 nPJFSx8RTzo,89 UWtFueVeqHc,150 CpcopOQAWWA,138 PIHPbvviS2w,238 IXyMkCDTmfA,153 2W7WM3CuXPU,111 XTjTXskLQO0,156 MVxXoBHtBfs,186 iPcAns5pKVw,134 NMbSKSzRvF8,106 nKkgc9WTY38,187 ybF7eOf_n4s,164 aRav_8OWESA,157 bKbZTFrWing,164 I-Iankzmv3I,133 Xv9ME0TfQjk,133 EGbVLHy9Lvw,148 RbdGl6wRKDc,179 VUljC2ih5YY,178 rmE6nTzmDqI,193 gC6gD7Qzry8,211 w0dNGg0OiAc,118 6_Ed23ettio,116 Vro5qtVA4PE,151 vId4AoKDg2s,118 EEaUjfxQQFI,162 q-kSu3KWfEI,161 Kfzxu_SIzGo,171 3D0gGgMTylk,134 ZrPvUd7E9HU,71 S5CmrYAWxh4,114 S_7ZwIV43zQ,98 7H3XPETdtmc,126 pUPliO3qy04,102 9qNFpkUBSro,155 BUqJMPAtmdY,169 z6JcuVWaVfQ,121 Dh3WAI9JeJw,150 Gklme1-eQGE,134 crKAy2dGX_8,128 IGDViR244hs,216 pM87ObBNOk4,101 vV30irsal-w,133 QpmECKEHSQs,87 puyN3edOOUY,132 f96ppJ3DSGE,199 zeGRvFbWbz8,205 SWlYiOtP5mI,130 0tnKF_qcXTo,202 xI9CLKI1h-g,112 qCjSApp2o1E,101 Q4r4jGPegHs,111 HTFjrXA8bFI,115 -7cV5cWQmxg,132 p9Bo67_slJY,129 lfUlATBIer8,133 LCj92toBBBE,145 Y5Y0SYRZRtM,128 vm-rgqRKqz8,131 i6AtG8BdONE,130 DTqY1j7wgD4,131 IQa9PQO3jhE,234 y_LVaQiyLrM,113 waeNIUB5wz4,132 R2lhQCxKx_Y,223 H2hbov4Rb6g,130 2hs-yt-Pmk0,134 QR6Ds-Tvd1g,113 MOLAFbjjOl0,196 BYrS2k5nPbw,210 q7V1sM0VNaw,133 hZvud4MnaQ0,154 7HEi1kmCzEY,158 JYymQ87_t8o,156 FYeKDtzDy60,166 1ovQhqQy7bE,124 vY9yCPmqbc8,139 oT_RsXOPjTs,129 9nc12yOA4jM,191 IBwJ7rFHpE8,132 n0PS-QVcoJo,133 7fOizvx1cUM,128 pQv0ZtpRdNk,154 HHRCWQEM7UQ,133 96dlvQbYEds,92 ePgiRqRIdwg,111 AajX1xvWnk0,152 DL-fT3OymQI,152 Du5YK5FnyF4,127 6KYxDFGC2hE,151 QsSD6_V2IYk,134 Spg3JX8dRos,145 -ecKc5pOEWk,207 n0QO2xOuqp0,170 j91qPMHaqbg,148 MWc0I1-Sfj4,117 7wgLb8Ykb24,177 WQP_cY7FAyQ,184 GOwehDo9xYQ,128 3hPy770hf_s,285 UvRaab90nQ0,154 CYs5HBcQBNc,179 fp8Ob7kBqJc,106 2vIINq7m10Q,132 ZNQVHnzKvjg,181 FzemDO1TITY,263 -mexzYsMSro,94 lQm7hpsJsPA,256 -1W4xHNKvAk,217 NQbCRZG4-jo,154 WzmAy1QyIH8,166 r0iSxOsPGl8,134 1jjQuF3a-7U,111 Qxzrv4GCwo0,190 yprYw3FQUpQ,133 RF_7uvTh-dI,236 rNxqb6KMtkg,88 Ypa0nma0aSs,149 aNA-hjvEyUY,194 0aX79Yt3Bno,134 jW2zOdceqr8,154 wkqss9zZOhc,183 BiPY5_H9EIw,147 cIesHaxakmU,110 rKQEYi53rvQ,159 g_fIDwoORl4,179 2-1_64NeG_E,159 i_zdyGw0tEo,214 IFBAXbrw31g,206 3hOO0D1rH-w,118 otOIqHsnQZY,90 OBQcsOUZ2u0,169 1HBiMXpncto,181 0z-FtAMg6Vw,70 urk-FzNJvzE,153 daVOnsL2wkU,132 RxyMbaDX22g,133 VkD1dhWMYts,175 dOZndhz24OA,192 ITaBaJEJLaA,179 5lekLtatLl0,129 2s7POrgTTzg,171 VAmXYYSt6TM,233 UWlxRKXD6sY,168 vejLIHky2HE,129 Se2zCvUqqWw,163 eclUi6kVFcM,133 JnuYlFhXWsU,156 a3HOCIXroqQ,132 -AZg55qXj7U,196 aUSko3Om3sI,83 q2YwvMc96VY,129 Co6hnyHm9FU,202 fEsN1FMfBvI,223 vo0cUbT4Lh4,75 OAqqb5FC_a0,149 _AElcgYtxpA,167 7h-q7bXYD1c,182 --hendERqm0,88 -wci2oycOQA,132 G-I4i0ClrmQ,205 bDW3OVitFE8,165 C5o1JYo-4pU,168 ag2wbvh5VDs,170 2GvyC7s3RpU,177 XDO8OYnmkNY,182 R-wQWw1geBM,126 ANTOMowTXZU,133 Q9Vl1VGj0LE,190 PBeP9JUk5cM,279 mlHF0Vv7yEc,183 EzjFE2CnTBQ,132 UHwiWw0vfps,187 kXXnZuu72DA,116 IfO6AIsvlKw,137 8zdNf9EtW-A,68 JWrDT-JGDug,138 cbEbCrrgWiA,184 LahMUQTEbcY,180 mjuNE5wyMzY,180 14pZQ6VASRI,86 _0gn0zQx4_s,120 5Io8n3JYNUY,168 an5-b_99zH0,112 jFjy1RkmXUg,133 gQMtp2WxEA4,197 gSG9bZu1NtM,188 ARQrc5qPDPE,172 iw-0Y6HWb9Q,133 njz1p35e_EU,133 8p1gevM0y-I,123 U7jlC1QNaUM,217 MFN2fMP05CI,132 a1dqJn-r0-k,174 Gdpx9aiEtmg,206 OFJKL2POF5I,121 t_JOKNfSn1w,188 ce5cnb_5dVk,156 NKewr9uDDck,192 e9_4oS3hTPk,158 ghUFMbHmw8s,231 sxGRFqybDw8,198 5BL8zybMd-M,182 ThWvubM3qSs,106 1R4FATHHlTU,103 cqUpOLpJ1iU,148 edQy5jBxhV8,175 vpEAO0gIAxE,129 Y2ZU8ZjyzoA,108 vBAK4o8zHF4,144 sRR3ukzqiGs,148 VIA2wUCj36Q,207 -19d_T472co,215 gnlvKhPzx5A,145 ljOOPtZAk2c,134 MTSpAVqgSso,204 iWHYx50w6ts,238 zvn05TBxdUo,129 8kcd603M8vA,230 ZgeAaV-OFvs,149 5zzYjkS_iMA,167 _i6Du5s9Il0,135 0N7ilB9wX3o,133 3WmyeqVxCV0,159 qC_pkxnYQfk,138 UGfYt2Ufipw,87 qTjz5LJwnOw,179 8n6mcd5Odj8,126 zZoxnqqZpDQ,298 MBgPSe_p1fk,204 3Sot46WTjcY,101 r5ilcq9hUZI,219 tDD6wnNN-IQ,123 z8XPccwMkKE,98 fr_ciJPUO1k,206 sneQ02FCals,165 Rq3xZDyJtMk,81 -ZRSgs6PHaY,146 wQ0QXBmaY58,177 mNd16XocjBg,197 KJ_8vD4Rv9Y,114 pf4EjhjgisM,143 wzlxR3dKjrg,126 ipt7yPT4Lkw,262 JIMykDzqRbY,151 luE7cUCzQK4,171 891-YR-fgsk,223 s6moLb_ieqA,133 1GYZPg_aQdw,216 Y6CLpg06kFE,132 DVA8vzEbm9Y,168 QaUjGv3GLeg,113 2vi_VeRSHbM,145 hN5We42pLhs,153 788ZdV-LT0U,233 QWiJ8VQXJzY,204 f8Jf9xoJQwI,113 bTpRY4tkyio,114 4RrAmzAYCQY,134 oNuGwa5Kd8E,139 WavZVQM3U00,127 PeliEV1oD2A,141 lTm0Gql9HME,137 Aq4LMaeZAns,174 EqYD_u86J8E,122 3FKMUa7vCZU,123 oSIR6UvH1G8,170 5tZeutuxfJw,149 2dn_r_sgBEE,81 Zufljc_8uLk,131 bHnpX4LBdGw,179 xcYhjlyrjfc,118 dbX-ekoWGWE,133 bYt5SAF0M3I,63 1s-qZUCH3xY,76 1Ylk2e-x--8,178 kZRq9scxIWM,187 yJ_3DswWIeI,121 5uEViMQGON4,171 V4hv2OSD3s4,256 pgkcX22u0SI,151 O4brzUAaTS0,233 nNGz1GspkbM,260 glDG7hJd9Hk,207 2GFzqqC8iUg,134 p-tvo3Hz3nw,122 2jqk0yyPkrY,211 rOu9FD63Z68,118 YI8DWdXhg5Q,133 MaqzxDPwOB4,141 WcsyV7eMrGI,96 2k0S-F8VIhI,208 gJDpyQ1Efto,128 vGqM44xx4zI,194 qN_sGdVG0Yw,134 A_R76lKU0DI,134 RruqW_fwhEg,125 iFzuPtVopnE,219 CMfYaFpa3nY,167 unWr90pLIvc,206 p2CR0S7DHyQ,126 1eg0tbBF6eo,141 l38Qliee6VE,161 RaicjdiN8ag,227 myZDn8fFRLY,133 DotrfvKEyiI,130 Tm1fX-cqfxk,156 8Q0KYSXhKMU,217 uI7ijvSCHcI,185 oUrT0qTcHBE,178 yebKBYB7rEs,81 dbGs2OWRYqM,212 GJE9jRmD3RE,173 UhL24j9G3tc,167 btVoaFC1Aqk,106 CTRZgOL-vA0,148 LB08HHk7Ssk,214 Wl6COOA3V6Y,113 vdZ7vQG2hzI,77 c-ej3IOxBno,113 36FYEbRBy48,127 haSWFp-ToRM,202 wWHOsR_cHt0,167 UHaEsAcQQ6k,134 f6Dan7z0p4c,93 KjbNSIIOEo4,129 IorAYhFwGII,127 G5aoRyZ-QtM,192 yAEUVz16MY4,155 uy4F1IeShVA,137 3hUkHF18IrI,88 ouQG7Pcq1S8,160 FJ_NU1sSk5A,184 r86n2JRUyRc,160 FLPGiFhKS28,154 Vchw3dbVeUo,127 2UOL-ZHUOC4,206 03uEq5dKcFs,145 N6SPrarFcBA,165 31fx9aF04ww,179 pwidWMvvsVc,153 m7HLqZP-l7E,189 gs0WQmW1icQ,117 UZ7PTLCQZwU,188 9hPgjW2ou9E,216 FZOF6ePjVcM,158 -t06SZje8O0,125 UsNnkax2wNA,228 bD8bl3omDIU,138 lJf8EW9800o,179 2FlG1Z6jY-0,178 yGrvM8gN0w0,196 j9FpQjinKMY,186 M16l8dqWTuI,127 dJBnRYy3mFI,52 2jzlSeFLr7A,156 qDQo4nvQ2yw,191 HceqAAw60vQ,124 ar_o_qS68oA,173 tF3eceBqcik,126 lUPTOiM_7CM,255 deUgUoJ4z5I,190 fHerVxCsbyc,106 8xorDb45ajE,103 YmC-BayMaDg,133 wR_e9lxh7Ds,134 ZKuscOD0LOM,133 M32XWG0NQPQ,156 kU74wgKk8lo,134 -DqmTaUK-Ow,119 -dlOM4ocKUM,212 t3gqjXINvac,194 Uovtut2ckMg,131 2WF0XgWQles,113 SmMmQHR_F4Y,184 TIu_CYwemFo,102 1zQvfrTK6Y8,219 oK1zfJausVM,71 W3x0ZxDSF38,133 bCtvFlr2hHI,231 GuAHdW8FdLs,168 DKtupzAQYv4,127 EDywdraYOBA,157 DSyCwx2AlQc,134 W_aGbCWYX2Q,183 yn2p3AV23-Q,173 IXl4S2_5sX4,77 MZG1HbQ3KCE,191 vnh7gxa0z4Q,133 jjPq-r91oB4,205 d6263F3UkWo,199 BFWChdiNlEg,161 wLhu6Zy6ixo,109 6fs-P3Vq9BI,131 bHW5h5O-e5I,169 BpAvVBwO8J0,163 48DTcfNRIoM,125 vizu1RigaBI,200 GC8KstVPxPM,134 JL_tj5M1o-c,134 18ARBQLResg,117 rPh94cOW-MI,123 v00zKyXbfD4,179 XnvMGSn4KHQ,164 QteR6PIwTNk,132 Xurw2Ar9NNk,120 SKTvxXjJ_MU,181 _X8bBE1M994,134 gSepgtf10wk,136 E9smjLi8m28,148 6AJH6b91rF8,96 oGFkOiYpEeE,148 r2fHzai5ih4,129 IKa2Mr-yHnE,130 bRehxlYZ_CE,114 jXReN1Nzlws,163 aPFbf954LJ0,177 1N81Dwye3VM,132 UX1-VvE01iw,182 0T3hXtyuX0g,145 yGWUHeP16Zk,142 BSWKnZ4-2eE,138 fKyoILW1Npw,166 QB8ken8pZ_s,205 MEYupVDPDRE,157 SRy397r355A,169 IgKQ8z_xNhk,86 goEiURelfsM,160 weEay_Y4EeE,232 cXlRo6pJ9ig,153 6oxCZ2CyGII,124 h3AqOR2Ru1s,217 5rQD746bDOc,143 0IuOpt3p3WE,173 LiogBSpbSE8,142 uqfD6UPvkR8,135 jo-aQkgNMKQ,134 epupZLvDDts,133 93U_80mhzVk,101 7bFIUJ_voCs,139 e_fI5no9SKk,132 Jye1gDePzgY,154 W2sUalav-ak,174 tXhTaL04ByA,116 rIGsI26-Bg4,147 c2ecZiVEs70,148 tEs0OuspG4w,159 N27ZYQKRYnQ,133 L3gtPb6y2xg,128 VBOg6u6zNUI,163 dYNP7UULtwM,92 Er_oU3Sl1GI,131 2NNOFLGL_VE,227 2kt3CmzYGu4,133 sjmh7BViBtg,113 7AajEaNH7g4,152 jH07BdMRP0g,137 vEWPq-4sa3w,183 2Y_CzHI89mQ,172 ML4CcaTFsZE,151 d7-pWfZgFKU,130 bfgJbZHRes8,133 up86hjG02yU,114 h5UGcMYOaaU,168 nHcRQhadzhY,214 b8Dp_WyoPSU,148 SHaByZZvfFE,131 UgSVWM44JBE,170 0frXMGxB0Ko,134 POpYt4cHlFs,192 9F3iBMYvQOs,226 4xLa-Rn-gdo,149 J7kO-7jEveA,133 XqqckmSFUwo,132 rlMANFZdCkk,128 FlCzygStNzM,113 gHJwn_JEazA,135 91Z-_ujQGik,120 J-fa9awvFBY,217 CjXwJJQ-8XM,77 7hDIu_ZNkbk,154 GZauEya_plU,120 PY8WEjeHGTE,201 qLCy66eZrQs,101 tSpOMNC3WtQ,81 4XSuEmqtnRw,111 vLt5ei598CY,170 Gi3K-CApAS4,134 OqyvMY1fcr4,134 Na9qhz28ZWQ,175 Zw7lsVV14Yo,152 z1PcJZEi_js,154 gaz2wRxRZ7s,191 TUmckZQBzvk,131 uh4bsAP7K4k,175 npaLKZ0Egus,195 -FQOaUEE69I,186 gs6FcpgTCqE,121 F5NFCYDB5hI,165 K3OlytfxzHU,154 UoDOFJsC608,94 rgmKJYrtmkw,158 57X3MgtTMfM,214 _i97zAZclkI,76 Kv9ygN2B8WU,201 S7A0JYPGklw,108 MASZNTnZals,111 jJeed7K-6fQ,151 NEDEjJ5FyS4,124 A4g68fTngpA,139 2SJ3eoUGXy0,126 ZR9qd2jynNA,188 HC1LN5AgjRU,177 6OKt2CZ4ULE,63 L9reo1mJVMg,186 mlc2UyZdalQ,135 4ak8huhsVKc,133 PlKDQqKh03Y,173 SrvRkUwIFfk,182 0NAWQvMZpO8,147 Mkkd7taPqEY,116 LiA9AsjqVWU,225 rsi2WcPIcQ0,183 FG31-KlqhCI,157 sCSTQpBwqqs,128 hcWY1CYRCsw,109 fhK8qpO-iD4,132 v4U2mAwO6-4,165 UsM7OBEMqnk,127 rA8NAlaMgPo,147 nqzkyfeS2Oo,185 QAO6uTkGpjM,182 9jfaSZXLxGQ,244 kdrPUm5zBqA,164 jEeRRb8wnqQ,143 qVhR3cLu_zY,107 cfnBcA2ckeQ,171 x5Gwzy2FY10,127 2C8fB8p6crY,200 u6W5OFK9jpU,94 xjYdRu4FiyA,150 UU_Ly8gXV6M,168 zQf0jUhqJYw,269 8fHMMPXUE5I,168 4CmmKmlXD9I,109 2JweD72Ains,104 E7fMOxGw-dw,177 ruwbVFvdfco,145 acZDS8WDtHs,119 F9vKkW_NNjE,134 aHI-JX6Q3Xk,103 xnv86GOjJz4,176 GM59PdNB7FI,193 rhnCmErsnYA,160 YKvG96jMVWE,173 iXo8qxLvcSs,174 1JLugcZa7kw,172 koahs44agqU,128 YU_Sm_2vH5w,129 PlJ-x-JNEj8,134 N5oKlOWxzio,55 MaSm7idHMtI,216 FJWgF5XnVLY,77 M4LidfkbW68,197 nXSfDMvXAxw,86 02AyhONR_DQ,126 kXvNxXDDHSY,176 X4lUmgN_ByQ,231 O0fQ_rrQedE,127 MyzSuy1v6DM,147 cJyhEAxnQ-U,129 VTTj-7UumYk,87 fzG_88hJcqM,180 6PrFocPT-Rs,176 irnju0G-lBg,252 LaajQCWsyzE,172 XLi1XYfldbg,220 yi2YuSALRzs,188 zErzJxN84iw,79 WK0fQueuPoI,119 zsiYUAF5Xtc,163 zfyDw7VR3Hg,144 3S35Cy1GMMU,138 Zsf-encTJXk,207 6JfQ82WowC8,133 YsCeolAfbLw,106 gCE5175IkoY,188 3s2XMsUdd1k,218 WLKpgzXHKLA,106 89HcLOHubgo,111 LZ6HA66dXVw,173 McmlPCS1kHc,136 IuiKCwrTYO0,78 KtumRXjIzQY,94 AySMP0SgVFY,167 fZB65wj9nz8,126 MO7Sa_dI0SM,179 WeMJebErzLY,165 7UQAjKVyjIs,164 bu5m4sr6e6I,133 4vekUOykIvw,162 p70o9g5gcdY,132 Im39PGAb82I,104 D56dpMQVGTo,194 q0k-b9FeGFU,127 SMd0299YDac,171 E3yX8lT2UAI,71 nxDhsiiBH7Q,106 TiQaVmutQwg,93 tY5el7dZ9H0,179 0OppC7vTtY0,164 74ZjOVz3gs4,142 j0c_RQDfjSM,142 Jftv5w9B3So,173 ZyMP_jN2Veg,65 -sD2jY0KMA8,131 zUCWPJk-XHk,141 o-HlGWzIqec,208 Y3gJGuQQPnw,202 Q-ABzsALkYs,133 iH-ioakPz6s,149 KxOI0mEOHsY,132 x_3EEWK-YQc,203 iVXVD0KxSug,166 c6pX60F0bsI,126 MHPp7bN1kXI,112 NYBMaVtMaEM,134 hCCpL0zgYoc,98 o6synmrDXqU,170 RuFd7DELPYc,134 4kAViGVuLmM,107 CYGCwkmaa1s,95 BN-FwrjSrFA,104 BiVnGF_72u8,185 pTxj-Dks1Mg,89 vxEvNuW12dk,164 eRNCIg86DKs,128 b5Q6A_1YyHg,125 X6zbmAt0YwI,111 8tFrGaU6p5U,149 rLj7k4gxnRg,112 HsMVFxZ43iU,133 s_SM1Hly-uw,176 jkmyjHYMH0Q,176 5Fa3enGmEfA,140 M06KzvYxlsc,212 tsCGLuufHvk,207 X8w0J4y5X4g,118 LVbkD8ZogwA,136 X3WA8eZ4Q_0,92 tRuqSw7mX5A,152 _YMLnL33X78,132 VFWn3fpVdEk,176 C1MsPeGKyMs,190 w3trh6DMpHI,114 vPpNgsJp4DA,189 R5h3Pynz-ts,101 cv8yjJQg4Nc,79 dRVq4Um7E5Q,184 YoI_YkIGXXs,126 v9UIDDlnSgA,129 xY6bhYtH8Pw,300 R8JjTOsPHo4,214 Cq2Wzdd_PYs,142 YfKjUgN_RcY,173 2F4ExP0q6RU,133 h5OjSHDUn8c,169 14I9e5jH9bw,176 Vb9wR2ibCRw,161 kEL5reRoNk8,96 paPWv3HjXAI,134 Dp8y3CiQDgw,292 ZVLaVxPjPcQ,159 tVxYCeRXzGo,130 M8K1rD4PGkI,154 HGZotWs54rU,169 WkEK2NyGq10,139 reyTknNqDjA,98 M5ny5tMsxrs,145 j0z0V2JJ5II,125 T5k1Olhmz_E,141 6eW1ht2HbtQ,160 i4NIiCSEiTg,135 DU8nLYGOMIc,99 uCG1EiqEAEg,130 oZ1Mz78d3wI,190 WOnHL_mSXRY,133 aP7GTu8tbvQ,94 jY4nU1rwWv8,149 vcdDRblTOmM,158 08rJmhhQHtY,133 YtceTJF_VhM,156 IoeYkolhKYM,100 uL1Q5YZ0Ejc,129 wxhUTK7xbz8,144 NInjsGq2yCA,174 aJgS31WWIG8,138 ZD9DyYVR3BI,135 PmYdvwAqwDg,133 GlP6emuR3z8,141 sxY6Jc1MZSE,197 86xtQC4rp98,123 GIASYqV_Xds,152 pHBKmT6eNGw,119 fpJjOz1Yy8c,168 MuW72eVCQno,204 6q2aPotJP7w,163 oexJPg9rZqo,128 9We9JImjg-c,163 IQVt4ZtUzgc,147 UBWIoJF2X4A,81 4YPxIpLpLRM,133 14t7g8Yq8vE,144 INGcULi_c2U,168 7a3vbSR4qWU,106 k2s7U_7gHtE,161 00QMS3Ldb20,218 nogLQrWY-bM,257 KLDQLqzbrPE,146 JrjycvHR0iI,243 ISXVGrqvV1A,198 ukNsgDQKqfY,130 liRaKtnWUAE,72 G6PcFmNCQpA,156 cZy7qSG8RHQ,134 xzPgefI2u9k,161 zbHFgQ419Qs,134 EelncXXu150,77 5WvXdaXIbYw,133 da1prguylik,174 -pXlicO85dk,133 aYbKjHmTdMw,113 Omewqh9iivg,108 wmm6PIPCg9c,166 rXxBQRh89AA,153 dP5e3MxjRiw,166 HZbYIyL-tUQ,135 f9wFKCfic8Q,111 456ZpoRaRWI,194 U74NUVSKuP0,134 NI9Na7U8cTQ,102 E4rFRdmeWqU,132 qv_DJYvELTQ,179 _iUWKODwAN8,187 5zileWIEgoQ,160 Kuy5Qgp5pvg,187 FGWPKiI0YJQ,89 PI8G4wCa8m4,125 0ONU_H0EjIg,195 umKFAbLoUxQ,103 nX4t6GMjNqg,117 Kq3ZaI7ccrM,62 _qw-Blkf5zU,149 mBiT0g4TIYc,158 YqNktpnzIf8,154 qQjdOtebYns,133 JV05-E5FF2g,159 8NZ9CLszc_g,134 ccr0gfJ5q0I,134 8Ds9R9puftI,166 HbgLp9_yU_c,173 ngLX1uDh-eg,177 vITX2N0hpYE,145 7mO_TD_Co1U,156 AVHPmsWZnb4,109 OSEHYgl2-_M,178 _NEfPBtUqS4,98 X2X3DxFAFlQ,127 tgBurIq9lGE,123 0BM-Q3BDrkw,186 8C3n6k49Dmg,212 x_6ZpxB4xIc,145 M_h6qdnNiNw,128 qUammhHxd1k,239 fgDgZGePcwk,125 NIDabDkcS8o,133 5IzNXdsZUHk,133 RHlGpxG_-wM,136 F2UxQiUoCD8,87 KMkdp0Uy8t0,170 3mNDakZu1JA,137 crI67brUX84,139 ymmlNaUhZE8,221 b8bioz2Eb84,180 z_98hXRRn2A,171 hIJ0gMDZT_4,195 0DPfRUFGaLE,146 6A7uz7Orp_c,147 iGsce-w4TtY,130 Bc_4HO3jI1g,211 C5lMZZxrewE,134 57VO_eSiDG4,152 9fFbDzUOD5o,130 nuhGjqaBzes,155 gp6FX1H99NA,133 AQfWibFXtO4,96 3Avu3KdHGdo,104 xL3ZOCRgJZM,187 7ZEqMqBLOOI,181 JXyisZLObHc,157 T15XvRqmhqU,157 wmu9xg12xuc,113 QBUTO2RVjXU,146 SmrdaRhZJt4,120 R_4_btP862g,168 Fz7dtq-saJo,265 4x8o78xHel8,148 I7pEk2hB5OQ,117 8tAKeZMOFHc,178 Qc9eycqDJKk,132 avdSnNmqs7c,232 VBpCoOfLlgU,216 r3BS4jKjRkc,137 2Qz0AREgsdQ,176 C_Emdu3KwHg,115 f8dkNziRlHg,133 pVB70-zPv5E,102 pDzvia9Yuk0,278 w80bZTK88mc,55 Y1RH4S7GPLA,114 j_sD0t5L8kE,171 ZEXNPj-4clI,87 6dA4C1NKChE,133 RuOjVbqLiZU,131 E_TbL7vdWGo,134 GP8HnRCjLGg,125 H_hW3ML6Ips,283 KToHdILd_p0,149 yUVhyWMVx-A,138 3i-ooDJMOzo,121 EGt-Nk6a1UQ,102 MLv1hfiUaNk,127 HUPoWdZ1ZdQ,117 5D20G8qe4Qc,181 2UBYT9teTIs,162 jYbI8iVYCpc,122 NzCTDwlquaQ,134 l12dwyHThc8,138 8OilisaAv0I,134 Nc6K_D4rtGU,131 6Ua_T32yaic,195 _nnGxztgrQk,244 sZ6t_-wKImw,86 zWW_SH8IFnI,157 c5IXZhctoV0,155 iLN9GLRC5is,231 2zHHkSu1br4,148 C4DPvNXtOzA,134 UIxwyNULzdk,241 HR2kbOK8i6I,131 79PCtxPbMlc,179 AhZw2QXKT1A,195 VK2Bz9yq2As,191 88T3elu2wfE,221 5aY5jTL60pA,188 HQrM6Rk7WWE,240 rCRl3aaJEdI,178 eb1AjU67W2s,226 Vz1MWTi13qA,133 KBmsdzLFpvc,104 gjmt7I1OJfw,111 _5kQ0ekY5l8,151 14zxmnIDoLs,101 xjAHbBY-UUM,186 5LdmmsMZU-I,231 s9_C0lmrp1M,135 zpmd0YiERdQ,149 HiPRBsFF-zU,174 fBXXvn4s-74,219 PBMH9WdsHDc,150 c7cm-r7oJ2E,207 tc7rC53gLUU,133 lFyh5QCd6kw,102 zBLsO7BKVHw,157 b_kHujzG_w0,117 xsHxWhCydMI,148 6_BnBOUwAPo,114 xBI5Rk9qYjU,189 2gzVWIUhUOg,149 aOCAfIWw2H0,119 MybqJCvM1z0,200 yEqjnlWEIcg,148 o6MDdOWCCT8,119 geiub8WP_XE,177 30VlDItRAVk,176 NRYvrDdntjA,105 Q3JqdmUTsLI,125 CgwNoOUtr7s,182 YvL_-Awg2gg,135 KH9yFcfLfOY,199 ljzeZK56UeY,78 l3H-hjiT6wg,144 wQR6vm3kDSI,163 nl5l8Vn3Syc,178 ZhGme4W06Kk,88 836TMubeCfo,121 wTqLwoaEUmU,134 t7LH7bMQgDM,179 IEaqLI9HAmA,160 S8avj5d8G6s,79 Afwy5S9__0E,108 ciue6Puy53s,130 3XX9d9BO5qs,172 tCDK-8hzqYI,161 Q0gx_D--iDw,218 4Tb7SrDUXWo,140 szqlpf28SRM,114 8wduU3eU6XQ,197 xSJaxpJHf-s,254 sbM9An15WNQ,126 HMyfwfUs64I,106 haX0ACElUQc,116 4IHDSpacpbc,224 QsP5Y1-eUIM,189 -nswXtzrfQU,108 yqVb0Ten3G4,226 N2s_Iij3Xfk,158 os1x0te4Waw,129 -_2TyCKWCcc,123 Dys_AAhlGqU,133 9TwfC7_M2b4,173 llTSaDl6Pcg,202 9JQEbj0uh0k,215 iSio5xjSYqs,133 xDkXQ7uBr5M,170 GHKfMt_4V7U,185 _QKwR14HKf8,165 x4IKGG_2L6I,183 -pKrpqoPu1o,129 PoAxZJMYRWE,191 Djlih7ELcTA,210 oQnm8w8f-lM,73 EBu9PvRBPos,220 XGsmIO5GUZI,150 ALO5aag-ZIo,133 9sVpipEqpD8,135 QDARBy0jCgs,172 GSkbcI9F5ec,217 GyM8LvY5RW8,132 81oozSLS2CM,134 CoXniP8kldY,133 jP6-fvz9W04,133 VMGKsJi34Ac,166 qrONj6Srq7M,121 XPsddyf2EcY,128 JCT1VtaBpqg,180 Z_WhAyucr_E,182 2MyJctzA-4s,99 AVxDyv1h9Pw,265 uzhsjyHUBt8,134 2-L4tBlUJos,86 sAvGdule3fA,189 q3deD1S7v5I,130 31vkz05skoc,139 M2UIT2nHDaU,125 F8UwjJzF4LY,167 AxGMySJ6ySc,102 oKdCaLj8b5o,115 6rVFFaIyfH0,182 9mwgsjG2Vtw,115 dwK_rODYMrY,179 yWeMWD-Yagg,131 XUyFzVAKCm4,165 Ent1UQJ4mdU,70 A1GJyyJzpCo,156 Q1khILbP8yU,170 0h0FeEzxCaM,205 BPuGsFSTy0Y,162 X2YJECANG6A,73 c_SJMeRltkA,102 de1vEYiEMro,159 yPD2Vq50JlQ,102 CeJQF4L0hx8,132 Dkd1ak3tQ5s,110 WmzictYYVj4,185 Nuwu9VTP3Ak,135 9cNdat9JJuE,133 M93XQJPV51c,197 VDCoR_PxceY,114 cV9dlsOzyVc,165 j1DtkoNFVHY,112 gkeddnrEeV8,108 4OyCzhF1A8s,239 XMGoOSCbul0,132 GfLc8Z4_lFw,176 DTWggpNq1a0,109 lMZzHaUh_Bc,176 jpeq9SWXrQo,178 3PoW8y_3rzU,157 ROqfvY68ijM,132 VohdBtnMchg,74 vbJsLuL2YzQ,131 gDtB0Sr8sbY,204 WgeM95snEhU,140 kurx75GAz74,141 6IXjYpPtjWk,150 xBr1UV3kWqA,130 CmUXU3VLgGI,125 DXFN60x3vP4,182 mBdWBpsA5eQ,134 i07yEczcujQ,112 IznFYCiGAPA,145 zwLOflhZOBg,60 FbY1BfonRu4,96 GNSkaIuTNao,104 G1Q68kAK4qc,162 yJ0RpuixpT4,143 -krDTO77jrY,174 Yvoy77W0Ofg,209 UwhUd2cPOYE,132 RA0xUXiz_dc,143 9FAeJgWLKRo,166 2cxG6iiqEdk,165 hb4N2SJjXRM,137 75EThT2il7k,103 6WKFs4PhRkA,146 LJym4mTtLRY,108 PurV6BzV3fI,132 u6HHla9ApmI,142 cPVM14Bnf5I,168 7KByxGMoiO4,124 Mi6CrAUhnzE,162 LZ7Thv4ztjg,102 avjdKTqiVvQ,152 BgxPmLpvxzc,148 hw3lBV-89M0,100 y8cL18qVz6E,140 SDNStLatNk8,169 qiRW4OvzELU,193 71ZR5BcX-Pc,172 Pe3mEnRE-EI,89 1Quc4FFOwBM,165 ujFOaYo5QME,219 Cm5NLiqmVtk,133 wZWNmL5VsIs,206 GNAJWwqr8cM,177 Sv-BxH3SVS8,211 qDBjp7fdIVw,134 bqy-R0SemoM,100 7ZzaLI6n1pU,168 wTfbHs4HlPo,146 p4ylvDhfiQw,190 7Ev8Q9RDC8k,156 uuNy1Ibdk_Y,165 FovnKIV3VD0,239 qO6AV-o8fuw,204 lG40tBFlGMQ,148 fKTTAEY4cuo,157 wIloYFMzS6M,202 4EEMDr8l_gY,191 TWUQypjv2Gw,176 I8qfzVFTQuo,269 OVSaW3-ehsQ,217 p0cf4-1zuOk,137 JzmD5wQpm5c,209 xPk6RGGwQC8,134 IXep9SfBhrg,166 Pf9UUPDJl9k,224 DIkKczv9Eo4,189 tFkpixS3QZQ,145 sCsMjWjftZs,143 GuqaloLJNJk,217 fXn18S0O52A,120 5MpwO0oMUBY,118 S3MGT2fahAY,172 5NlQiQfC4zQ,66 u4gz2yNW_Go,199 5RUWalajNYE,181 tBOZNOYMHEg,83 b_aJy2SE60E,144 ep-ggf8CcX8,222 arzwnRoAQP0,105 1SEsxhvzzT0,135 CpA9NJEL2EM,104 hIUrt0AsTjw,133 1LoGtPIr2-k,90 Gr9p1MnLMj8,120 c_5924m1jNM,233 MUeKujlb6gc,207 9zbF578--dE,133 8cjxrd4MMMU,230 801rBxBY-5w,134 Wafr97M23uU,89 FXeNdV-FTjI,191 NipqouLNqAY,186 BEKzJzaZ0Fk,106 _w2nm32Dbg4,185 Wq8gxNsz9ZQ,106 MDG6JsXqaRA,192 VlqxnvmTcAk,173 SaUYfjxV8Ic,145 qFKVhx9wBZ4,111 XnfiKz-Zk7Y,214 81MNbVi5a64,212 0hNbRd78jOE,139 ij-qB9jrMnY,92 WPggG_9I20E,133 q7S2ckr4IkM,91 n-2Lxsj7sf4,133 yXDgPREBssw,182 bK_2x293Urw,98 UIkY2KKWmdk,290 BCC8LOkisAI,128 J-D8n4_fd6Q,116 VNI6movTCuQ,134 W8fjSVywGGk,137 G4DcKX_XRA8,176 QFDZTfWnWGg,224 SEzrTYKabwI,130 4XHwJQfIyTo,165 1rKzD4yNMoc,115 CeX8drgioLs,131 w_ZzqN2TWTI,119 i7zzhK5XoAI,204 gOeKwFPUA50,205 ElidXD2F2eo,134 0ZkuRt2ZKRE,137 DZlM8Wm7OKY,187 4LCN8__54AQ,119 uabEMv5Sr68,172 nc0LwkqYGpM,102 7vWLiI04VCw,82 wzZ3S0ZC1Is,163 75k4CoAyT4I,126 oEHayxH_YT8,152 KdBP8sYgMT0,161 PvMk6sjZlTU,145 0uyVs4iKp_E,229 WZ6JK1mPT-A,129 YOCEHKSgwlQ,133 NpQNeUSJLjI,148 4c_4MGTCgHY,83 qIsyU3MH-Zw,241 j2JFTz9KQhk,146 foQnR1eZO-Y,154 fpwM2-jDwQU,158 IKnygn5ysHU,103 8bJzLt9AYqc,176 GEB8rnOevpY,152 qOeIJ8YVJeg,155 CEwyZcmwNiQ,88 xg5ZJAo_1v8,110 gvTCSxLPy0Q,173 cGDwEP-RWHo,181 q928Wa_h_gg,106 9tDGIpP7Kfc,161 ns7B5fzH11c,178 _f7p28YFgvc,80 yWSRVYU_JMo,90 _-9wCERdcog,154 SuSUwDgtq1g,156 wsooQlbj934,219 HCGVmIe_V1c,133 1d-Q6pT4pxo,130 r12JlwSBvVQ,134 GXZSat3AqwE,134 s8tXE43jYho,118 RZM3dVWNLG0,177 Iyv1Br-dG8Q,184 UNLFpS_xEZI,92 vrEjev5DoXc,134 eAx_rXKiO48,135 O9Q_5-rAw_k,177 9ZBPZ4b5LRw,141 K2NNznJJadY,125 w_XUAmQdKJI,142 VP8hyYS5WjU,82 65pGOp7qa_s,167 ZbL_db16k0w,98 V-hOCaVISok,180 -8ajIeIeJpY,94 mAB-hSPmzjk,134 _pZJUgFokcw,185 ZreZzV7y18Y,152 kVujmsfAIUk,141 70eKt79PSQw,131 NVSG5djzkdo,92 pvACjy-tYFE,141 y8i5Nwg_TqU,113 bvnOqxRHjuc,133 OypxsTReBOM,124 JHAtw0HRhho,144 OkBaZLq7gnU,143 cbN7TQSGYlI,196 h08whCp_tL4,115 ewiNzru8Kek,146 8myhALdcfvI,132 za8FVqsMmZ0,208 rTy_mgJIIrk,204 948o2mF4QAs,164 1afS6fOeldc,172 CToeYdx6SsU,186 4WNq9Yy9m_g,187 kxGdpZ6GCcs,150 hktlkG0QuKY,133 TAN8GthZg7s,124 aW3-E3My-kc,198 ewbUaMvCaYg,133 WNU59WxKw-g,226 DHzeRLN8UVc,114 WgCQS7EllP8,201 iNQYIdE6DOg,133 evM3k7ep4wo,148 fR16yYVpcPw,159 QQaLVYSCwrc,111 9AEbJDyNTSo,143 E9uah5ldjvo,150 VqZAfqVCEnk,130 hDA_Bn7UhlA,80 X3XwuyPljm4,190 uckdiNJ10LE,189 wLGpzRMJsVE,142 UVDRpF027l0,208 t5nBikdQ1kE,124 3v9Pfg4Ocbg,56 EIHtZl__2tw,137 DyUus5cUe08,132 0GEynXlmNYA,134 k8Vn9zLollY,110 67dyb52zKRs,64 LrQqG7HxUao,243 KBLBKR6bQCI,129 m7xTE3rvkDk,204 RFBlDixa33k,185 _v0aLo9ualA,199 P9jJ6Bejayg,143 yr5x9xFoI04,72 AZxn9md_aZI,191 4UC_5gXVXUk,145 db1o8mTCBXU,131 wsFQrTAEs7A,121 Yq9fKm8q0iY,130 7I6z51iYFg8,134 fRF7InV7TfI,82 aFz1y45KaHA,128 QxReNyiIprw,212 13h4zTXEjvw,211 wM5rRXQZvjU,131 kNtopT3-5t0,183 UadRg4D-PNI,170 OxEcQFG6U4g,168 mr0RZ7hUrpU,178 4a_1wkseCkQ,226 S-WVZ-d28yg,147 7sXlyaQ_ZHs,182 5SRxYONb12I,190 NPY5Iq-tCvk,143 zDQHwzF1n4U,191 HiavOVW1Iv8,132 aFIOmbHlYo4,127 iQxa0TuKY-c,159 0yAYgv2YQ5k,74 a_DkEkfAO4s,235 AXZhl8klPfM,143 Px2L96GVrKs,131 YRDc9SZWuE4,128 Pc4vZPJ4AVs,215 mNCLMfXv7ek,185 ADqmUtPjP0Q,142 q51BSsTrN_I,132 jq_tO6NAlPI,184 3iJ8esboOjA,168 nAuz36A1zG0,94 T69FlogsAGI,129 yLm_tJ-ZrNc,150 cslI2draO_E,143 9ccE4YIG76Y,133 ewANNniIEhc,137 ofrL7_UA04k,148 93qTzU2bNh8,157 En7TapBA84M,169 DYPR82c0v00,150 r-IE6wNNbAI,155 f_tfaeFZePo,163 xE4RRKaCifU,134 jWtYVevvApk,149 kdbRwpxZHJY,97 g2cIMCa6N64,79 GpMfzrGJvZY,177 N7wkGjBcjp0,209 Gcs2QIB_X5k,127 gnfp7yyQgH8,137 daJzFEzxXos,181 5oHNA8muC4I,182 hhjLmbn5YoM,185 -1zLU5N6uBU,170 o2gmatNTH1Y,134 5hriUO428pw,142 Dk2BtXCzdzc,148 Jj6H6tJvRjU,154 OjkIBSE3yfY,126 isQIyXfV6Cw,135 3UBXU1m7rkk,74 tMcUZSJ3xDY,158 BkZ6lFCzAwM,109 YoAV0xF7A2U,152 yqlAjK0PVsU,112 AvNNkDEqjdQ,132 cvPIBkkwvD4,82 s6JmX_n5oeo,119 ATid397QdsY,195 PyK__VjhdEE,161 emW6qKMxIUU,129 9BdW5LHQvjM,122 qFnqH95k_rU,171 IHDzQ29EgsY,136 4IbNz68R49c,112 LF0dTioXk3A,133 P7-rs7H1CAE,127 Zo0d4xk3BXw,197 8a2aEHT7v54,71 qnFWCagTOtw,173 x2S78gnCkRg,163 gp7K6ZwuDow,87 R1eDE5bXCds,113 wpci2WuWy4E,225 ZCdhsYpdRck,125 9zZLmOA4OsA,205 eOYwXi0B6KQ,141 eQSqgubHzn0,115 M9CgWWkwvdw,151 yLx3CabUdoc,122 o_3BdeGhzrs,209 oflbCHWZCBU,194 KUdG72N_mek,129 p7zS671gCo4,170 Zb10goz7guA,133 Al7y7aRrASE,160 0J4K03Owgwc,216 oMpbWgx0Cdk,170 9_n15K7rv1Y,131 qL5_xmtFVDo,222 AszdXufdl3E,118 vL21VCK_zLk,167 iKp5ARBBpyc,130 1-WimijgGEU,241 Tuceg816_j4,146 xwfJyzB6dow,90 MVRR0XlqA4g,134 WQth5UmIAbI,88 B-S7jkgEC8Y,141 rcIfzdLjjxU,105 QUgviX8jMaY,71 2lh1uIhuujc,128 -pq4FpNnvcg,182 q9jTg_91KxU,144 ViQZwRewYl8,189 d35M7d-E_PY,140 e70y31Gbhpg,198 RKlctKGIpsA,178 -uAEWFPmAwU,221 4fwQKF64AWY,218 uciRaLsFmfM,146 frZrAIZrOI8,71 oflnRQP6Woo,196 R7P5OWV436c,89 VLm7BuSsFK8,207 6nSu2qhTmNU,158 4MWlfC7QTDs,213 vh7_WKODlE8,187 ysRnmU7UZLA,215 IgeW0MPX60Q,150 6HboqAtIPA0,134 NfQcD7ZLWL0,134 GaUGoueAS4Y,188 O-W3C2RQduY,127 Nqt6-rPGGEo,134 9EF7lRxLbtg,144 YeqQ-Iae_VI,126 WgMhaDEPGXo,102 svwcgrDZVPw,199 MVo83HAnysQ,122 -JhNO_E3aEE,221 bEpL6Mt_jrk,131 S5Y83cDu8II,161 eVmYZJQxawo,192 NRuVbAAb_FU,199 Gif5ZnaOOQ8,132 9_SMqU969fw,182 Wf-GYKvvI58,133 cUFdtdKFaOo,139 EpCp0rAGDNo,73 w4TCxFKaqIw,116 lGAADj8laqo,141 3WIjC39hJF8,156 tr8peYDm1fE,179 IZxYRZdq2P0,71 ujA70PK6E7U,236 NiQGOyewakw,252 wS93oTI5JY8,160 11MponTu30M,166 9uXRIrNj_z4,129 SUruJPHdHUQ,102 gFX14TEiBOw,170 WzAHXnFWd5U,111 hlWL5Az4pow,200 IT4vcwIvSCI,121 ebkY0u1-NKk,125 y10ao1Tib8A,175 szIOuIIbVfQ,77 PUFwiKDWxUo,110 QH2Z3rBA9C4,133 tEyY-ijoyaQ,195 goRmKynyjqU,94 0IWmniYe7aI,135 Nwru3-Uif_Q,173 spy6L78o3-A,199 g3kYdbqIwBE,107 h7iSkEafJ0o,184 HliXkWOMgaE,158 PP4-LYtVpRg,96 1VEMit7JERo,154 Jf7jVM7NoVE,211 Rf02bF9xoaY,159 WUgVUfYuEiQ,238 Pq2Z7Qf45gM,214 GpLeHrROqRE,127 ZgAf9AuNc6Q,184 dapP5W153YE,212 F9M5eGoCnO0,220 9cw9NI4BKnQ,205 AxxKJ2QgPtY,173 xUHjhz5U1bA,132 Dhn_1iKEsQE,237 Pu8AnCsWdiM,98 7RBqyBb-MlU,114 FbDFmWdG3NU,186 k6dRH6fO3Xw,156 l1X4RDCFmsE,237 NCi4QNKpVB8,132 22LBB9jJG60,121 RRDbQPvtAxY,133 crSg7r225Hw,172 E7XIYOvcjuE,131 7rYqBdJdnqo,176 cH8ebYzr5f4,118 tJ1uXsPXyao,152 M7CL4l-bu68,207 YHvTfLaOREg,131 AcvWJ8bgA8w,163 TmALN8vdU0s,134 dhJPm7NolLc,150 UmynxNlSRaE,121 fM3FUot8TCY,129 a8mImo0aNDo,144 -rsImQShehk,125 G8_ch6wsWjs,78 nNtl5Hv0bv0,126 YJjM9EMhQ1E,152 O6Ap5AtXFbg,125 MDxkA-Msgdk,178 ThIBEo7fsSQ,174 P4aGofKtJsA,134 5VmWe3LyUDM,184 NieC8KA0EvI,274 YIg4Pcmy8ww,146 2kdSBZ2QieY,173 YpFmmzisOy0,174 G4ENL-T7Dyk,165 0XLEGFSKVhs,92 sjEDF282UvY,134 q9sjo2J6hIk,115 x6PMTIOZY4A,202 jcmTZfv5z-k,123 Gqa-biM6qKM,201 Hsh6n5RfCoc,108 clN9kykVhOs,163 -vT2ztIXioo,130 r8SqKn2AmKc,163 gWGhsJWFOrU,101 4XK1zU7zhkI,123 qTj4aSPwTBk,169 xI-ehlRwN8o,230 gDVYKkvkguQ,134 5h2uLkqpVV8,97 owUlPwoEfaM,131 o_rv7bmEDm0,121 u6IAct0ow4c,146 yV5UTHVjMME,219 O7s-DtIX_8g,176 hYIWCm-Lpj0,180 9sSxcSntcyE,161 5arl-jbtz4I,143 xDZfwTsiLrk,104 86mBBMobUdY,77 LABMISLl7Y8,188 E-EDJ6Z8mS8,126 ekbIXnK0_ek,131 aoBeDwBxv04,98 t9XjAhGr8us,128 RwMgEM9FNhE,118 K_NTydd3MqM,153 g2tNQ_6-kpg,126 mT3_2sDEBJQ,77 hD7KaqFoSq0,133 CsOM7mptOLM,82 ogUC0Fcvh7g,121 KVV02IJlGCQ,112 kCrtP_gPMwk,256 CRu7V9v8Nnk,134 HzvL4MonF-I,150 wWRnv1V8iUY,163 1a3iljVEif4,128 RVVBffj2v8o,197 E0BY209ZNEY,131 lunmhq3ZejE,130 yjw_DuNkOUw,198 85A2rWA5O3o,173 NCs2AelYw_E,535 1D8CfzvSy7g,115 aGMiaQISzq0,67 f06qimixOOI,96 LK-4Dmq6Hs0,113 ZCTCHQWhYCA,149 CVjRQMnURtM,192 5LvcBgWzjwc,183 Y6hHVWwwfPA,133 3GrjR4Fib1M,109 RtRffVRFz6M,166 dSSXODCgJOA,261 E5M67kHOzyw,159 c6EhzIb5NKo,180 FPYjy-ZWB-c,121 ghfqnmL0d_A,131 2LwWmJojqvM,169 QbthrROkWXM,196 mr1bVID2qao,147 S71iST-01VM,212 PSW5cd8WVwM,147 E-Ts3DuFLDg,179 A3Vm7zSOm7M,180 iGRj7rfPdQc,151 C2KN6BHuPWA,133 mcerWHb94yo,232 6CmxSs6Mmx4,141 yNmBX5mZvRw,136 far9-9beq-M,166 BCcw2q6KbbI,173 KNQpMgWWB5Y,207 1M00J5Q1Vv8,179 A6d0qIZY3Hg,138 g511NYTRiOE,207 QvMf6_foftw,258 485KJTKt6RE,146 p0CQcDumPh8,167 QbOo_FctFu4,81 N3_pKdxk5OM,131 U8fgto8IZLM,168 yQ62WM_w2iM,178 OAtwRoFSlOE,166 Sbtm5uE3cCQ,159 -Nzbwerwks8,123 M_TCpfWTFjo,183 Z9h-ht1mVkw,225 KXoFUS5Dzto,173 r3_IvtMPIi4,193 2Q7wnttjQgw,162 0igqAlu8Oqc,152 h36wtoBcAS8,117 p5BfdwK92UI,135 PbCNDD4y-Zs,106 6VvluTE_w14,99 kgwjR-pQ29o,159 3ReLHqluiXY,68 eS-f-9meg9E,298 Wc_pikEIkcQ,146 XHEs28Z99so,123 z7tcVyV7wjw,180 Xvyf7ml1ndo,131 WgXQnXPb-TA,157 XgGyrrzTBz4,122 KGwANfqAjNY,138 Q7r5VtqG7cE,139 vU1mJ4LF3u0,129 I4tqrGqT_b0,83 GU1zIn2BRN0,207 ruCFlIoCpJ8,116 NQBMjZqgGEI,101 Qwx9wZgxUoQ,123 hxi06yeErvk,84 zquC4ky_d6M,162 2uVdxC_gCro,120 HhmpYA22oio,160 pR8Lt5DyU88,142 UayJYYeMANA,132 3EdXrMS1gJc,79 jtSnHOkSJxM,128 _myZeGUaveU,144 8QbFslYlKIk,134 CwgIvhYyeTc,155 lLgOrvsA9tw,143 uEW0FlmiNec,126 lXKwuj1pqrM,130 AoHVBb8Bc_4,172 6rHHZ3hiwcQ,189 aR4h3HHzqlE,151 Y8AM8s9zoKY,261 7PI0v2ZWDl0,162 RcjY_I91okg,214 hCZqphs0Suo,114 jMxYv05A7B0,131 aZJG26fSy94,126 tekVuL2mT7A,239 1Oxtu2-DlI4,150 R9l_adCi74g,134 5ZCaXimXaxo,114 pXGsio9H1xs,214 aB6Tdk6f2Lw,160 M4fuweiQQCA,133 59-Yznur6tg,218 te4DfoUHm1s,282 oMH9kIyIl1I,121 Q7qNk9dKVpE,146 rQABiLDqdVc,130 6bO4ZsAMowI,62 jlcZPO2FhGE,128 OpCXQJyiXQ8,119 HUZ-rA7L0uk,213 05s6W7dLEbY,136 3jEDXJvOCs8,157 MfM4qCHUPH8,151 _klWa7UqpwQ,204 ex2RuacnG5M,183 A949a8j5Boo,113 cvaUo282fEg,195 1zl35F7uPoo,178 npSYPN8LXas,172 5RFz0uu2ZuA,272 qrIt5BPvCv8,135 UFFaqQYlg0E,132 6V22uyjiMpw,105 QtVEk0oKtkM,180 fbDgv4huUp4,144 XDlC8NyBBro,199 uQ_nGVp6x6U,135 AL5i8ko_Blg,172 RMWfAkUhGCM,139 PlPRa95iR3k,295 V9E9Nce1dC0,142 RJePUClQaCA,168 08cPFt1GzBs,132 NIZSw5HFr60,150 2qyJ5r7Wink,141 uTOoWlYv95w,159 qpxUYzNSGn0,133 Ok3_qMNWAo0,134 NQcQ3bA_NXw,179 faUJYzpcDec,177 40vMiKmqaCk,142 -jYZCqfUfVU,198 KhS2-vKr1JY,213 GxDvAEsMvoc,144 PWebnyN1kSU,173 5Svd15hqUfs,162 7ML-9r4M_qk,144 A_HjMIjzyMU,251 iGk7QYThMTk,183 H4YWQ0uEY2U,119 CHOpoOnkRJE,125 Jd3GwwxFDPY,175 -a1FAp677Vo,97 fRNR8-FqzM4,120 BCSe_CsI75w,118 4kaYp9uUNgw,141 M47Aq3yj_NQ,148 sw52VLDCFhk,132 pWREOi5GPZ4,228 hF_9GQFISow,131 Kq3TiuRC-VQ,226 Q_UdYBBk9XI,119 VlMy5-BAjzo,126 wnmtGj0vBo0,139 dcR7fdkLhJ4,300 D_D9eQtLpCI,125 r67faKKQyO4,206 Oj8S0fNum9g,126 -Kztqrjp2yw,202 6nmLldKD8fw,160 S1UpuPvAUss,123 OlLMqN-vjKk,101 41v_zrra00A,155 nAqJV2olXN0,114 7oDSPSwMw5k,110 honAzu3xOP0,202 0D35LZ4UBX8,175 h846tnckLFE,134 5noS6qGxcbM,136 xfF-ZL3xvxw,171 W18J6bcq9YI,162 PFjN94zKbc4,126 UUAQ3T09_os,70 oefn8TJ3_H8,92 v8CflcvxDJo,156 WsHqQAfZvc4,156 PdYD2Sdt8s4,161 XNwDyM81lSE,104 g1r-B5ZGZWY,204 y5ysUSgyVqs,164 1sz2oWajICY,83 62Zbtotq0B8,161 YNBtb-8zpko,126 44MohOiWwnA,194 IpoReT0HjsQ,91 fuCe9uaRx_0,114 uSLscJ2cY04,184 3mhdNBdzHO8,97 5K6sh7HZri4,129 PmxzK5IzcaM,176 96pSGRvBg3I,147 aL4dQo8iBLo,218 HudtZNmmVwo,118 0C-qxjiDP1o,55 a7t6tQVX7T8,165 8uLL9nYu9YA,135 uD-VMe03AdY,172 PNwyZMNu1gA,130 CflcJ-HSA_Y,131 ZRdnTHyJQQM,177 kSaOMRXiLVA,127 6PAMZYS1Fqk,189 ZOfisAF09AA,146 FqbR0-PbFOo,105 UpgP8aA8ABE,166 plkfDAtzmjE,177 A1-XFXX8rU4,197 wEvSZB_Dhqc,230 P-mT2D6iM5k,107 6QfunXjWCpc,103 rQ3Qokn9t_w,132 _rCRxCR06UY,144 yPJlBsQE96o,133 IKo0Eu-Xk_0,129 VRuV5oMqkDg,121 Uvm8N3wQDTo,179 1CTjGKT-hDY,167 157mo2VaYqc,146 ZvvQ3CLveAA,119 8510wKZLa6g,137 m07ShpSpKJw,227 6SDs2BTqYpw,102 q5eGg_CgBPk,166 MjrbUV78y5A,78 Gfje9_QRQbk,167 U5EKQ63wREM,152 1bpUlGBdKyE,171 mFA9-zsFtt8,197 yRpnEq9A3vo,229 _4oM1Sa1Pb8,143 R_moIp38Fk8,136 lFGfoPuKx9o,134 T_Kn_D-zfeg,185 6DxeFNOzuWo,154 S0X0KScmHvo,122 cLomnZIvoFs,215 BT_QpciXdcI,133 _LNnkttaKXo,118 5jsb1xN8byg,199 Vs0CShp6HFA,155 XF7nz6p4H9U,179 2_8IxyDXT8k,145 szVtrq1Wt8I,106 SbP_EGRp9Kw,203 CB5qzQrDnZE,224 cRj9pF0YGT8,190 pHXL7yantDY,220 TVSr02WLC4o,194 Eq4GnUgNeMg,94 jpEfgrff8z0,185 OeknFyEHaMw,118 gbIKuFaDbV8,130 MlUEy_9s0D0,157 dmy8Lcf_TiE,177 ByRUwa_QiaE,158 CnrR2upI8Jo,151 zjXn9UGZt4o,158 HOjApJYsWC0,164 t09QqjBkg0c,174 Ec2ek8MmHRA,155 O7S9X8e2uhA,130 N0V-2VgCwxk,122 zg0bUxwdano,162 wwHjdOzIloc,149 eNCK08cInIE,126 6kN5IkXFwcQ,130 9dqOdoFtNcM,177 HCNwZZ3Baus,158 7d4Sd1W25xs,189 kg3erAXOz34,170 LWoKa0wYTJk,88 ss7eqc_SHsg,87 a-CS6CjnEw8,162 xVANxG9gI6g,173 v5YaaXLJw2A,262 UpsprkCDFOs,140 hck3C2VMRzk,133 o6Jkz5TQv84,175 qvvcVzNqXVg,134 adxwpSdHj90,162 N1UxH6P-Fgc,160 BzKbRv8tcBc,151 MuYLaaVqJf0,102 zkRkL94VQxY,180 oWjtcWh-gyI,148 jGXpyMDIZ_U,237 cglsMVVevx8,183 i_Rupd9NU4E,128 R1zRKVLsmrM,106 0yDzNGZc9DI,133 0osA8jKKotc,215 rWlFWMR9MfY,258 AvIUAlTg5J8,134 es2xkV9Be20,190 8d3LDYM0GF4,116 ZjPPfwVPTDE,157 HrFlTjySp8E,135 U5nphwXr8VY,122 4psRZr3sxHs,133 0gKYY9NCTvY,265 tHHqfGeeXps,134 Kiw89e1mHpM,197 AsfxK5fWMu8,192 t1V-lbe6gII,145 l753e8ClbPI,170 r3L0e0izKG4,255 7_UHtWGKsuc,287 2Ht6646WCMU,163 dvlZ2PtH_zc,192 SdSQJTSYXJY,192 jjwg2PeDUxM,186 UpWvuwMabSA,163 TuBXSOUS-U4,129 mS4njwcS4dw,134 Pvva0sdUEkc,173 0oFdsgLP8n8,148 B2KSjVAskxM,91 JkrovwTh2rw,101 v0gGWiRkjYM,146 Oo67jMp9UbI,180 1xccuQBsJfU,124 ByIEbq6tv6g,147 wCmL4G9TYMk,74 TYJXBdLgPks,240 K3jk2RjLJ3c,173 4mYsa1t21Mg,176 2i8C-GOsHo0,148 Ihkrc6Srv0Y,195 rhfBzC5A79o,129 IRycPfFjVBI,182 29YDqiuyaOU,157 kokQDLJ1104,168 rsnLwzzkF_Q,159 s37owQJdelU,166 8c-NNYNy5Bk,102 br2rj_3KW1A,125 8xgUm0plA8w,107 ysudBGghmnA,191 fO8fKHbg4kw,67 Z0AxmKelYrE,148 S6yZ-K4SHJU,64 I7-GvXsr40k,122 FMbSH8g9vsU,116 DC_6r5VR5_U,112 5k-dlqqHE2M,249 cnM9pdjp5o4,102 js11RqXLkZg,174 hMYdeT6aOnE,130 i4NRgUeziqA,127 t5vDcrQIig0,165 gQ48-nl8wwc,115 xW4xczuVMq4,212 iNg7uRYtqLA,200 5W19mLb-9JM,213 JyTf7wR8vWI,177 JgTgQvvqRqE,300 tjRgzcM2HoU,121 mpDGnFwbw0U,150 xYfxboRtKJE,138 sSRmhI94MUs,147 q8Wj4buHUtE,175 8ISsNLwwmXg,123 -7-2-088LnM,112 7S2ffMUk7iI,177 NqJ6llRZg-M,130 dzGkUGKULRI,108 nCm4_MJstGQ,114 byUbi9hlirE,148 lyd4tC8LH1s,131 pJFZLCoqB9w,134 f0ui8NJnqN8,127 KU5yx6v_Jr8,148 XWgSKXw8ZwI,148 3RWHkM-krJA,150 Ky6GupHDuOw,90 mos7tNLWRz0,92 -Qq6ZZy0yGg,170 1UbxL1MVZ7o,117 gH1kstAfb5g,135 1pzV9GoSuys,64 3TF7zAiuX1k,254 4gftIIxf7B4,164 4HgHU5fVqbI,178 GQYCNF_zoDM,100 sJsCKwZLztk,166 Vez07Q0O7c0,128 mS1u_E53e10,123 bH3ulIPKNrc,123 kQnmD2gLRVw,157 XUcN9bf_jP0,135 CXdc2L3QH9U,137 _5IVdeFrhv4,111 O0PDEEFMUB4,145 IfZmBGcWkLI,201 GczlfeOFPDE,115 enG1CfTbT08,137 dTIoEMxqckg,134 oNpeuCWJgCc,124 2T51K4xsBjg,196 bIpQoVucszI,161 2c3-0yhNlfI,140 Q2x3eUH0ytI,121 DRtbf7iG8Nw,124 aZbGlkGWiZc,125 DznDZ_VH_2c,155 sqLiTaVHPdo,159 fkiY6TBT4mo,86 doKP3Il9R1k,109 9lOj8ThRAWI,168 ySC245RIiD8,66 zyaOnPSzcPE,125 iwryTZf6bA0,192 M-HysTegELs,187 4fgrzQIolcc,205 Jy8mz4gu2oQ,133 ArOB5wVIf-Y,115 tJ4H77qrLjI,212 L8JRx-zXz7w,90 TrWMrEKpT7M,141 YzIWoPLLktE,123 ob2QomOgStQ,239 KtwPWWCJHAE,176 NadEkwOLA7k,205 sWgPWKj2G7I,125 1rVMJNSZHZg,157 JKPRgXq8K1E,142 FvN03fXmnQU,141 PYkBs86HnUc,143 RRDzDy5wLh4,201 mHGHJwXWh1k,174 FuYjhxmpoOQ,132 1SPMnqTUu1A,227 oc8bWybEFFI,188 Wy4EfdnMZ5g,130 IoQ4G5p-Z-g,135 upPFFVaVSY4,96 O75p8X8YBtw,161 rjnLGy6uWKc,144 buIXWAgTUIU,118 mpfBH5WLlOA,154 Ng06lmNU4K8,131 1EtA0HrUrYM,117 r_tl6PA-Rd4,127 Z37CyC5UB5Q,157 rS_HIFTV7wM,78 tQ_Ry1KTluA,206 jL_AtO4yMio,285 3kvqIswrPhg,124 vEOtK-qX4kE,148 QKbA0PxeoaM,81 zSh-Wy2vvHY,133 9aR0JkmZLk0,215 QbJIRG4T680,157 0ov8ekqSAOU,130 7RSJehegfZw,126 1JJjo2GcRrg,143 8TcZDzWEVDM,133 plu5YA3t2l8,116 E9B65UGKQ5o,127 4WXN2HQ7PQ0,122 WLE2QEOBde4,109 M669rZIUGIs,140 eB-ldQkL--0,245 yyPkV_leKEY,163 50CeayOz-rs,184 b0p7_jQ8HiE,97 RKCrqtbqvio,141 hIokX-nhQd8,133 skrnn_M3e9A,238 crbN4daV5IU,130 DbcOnkSMGK0,118 8nSGhJRDjX4,160 9dN7jGSbsVE,85 5EN4MulDX_A,156 9Wy-6pabUwU,129 KVnOa_HhgX4,206 _0FLP8sxv2E,164 L1AHpY6Gcbs,125 a_iEYXLXbjY,156 7iajsLA5MKM,134 qhGsK4yvxmg,131 H1IhRMtTUno,169 AaMkmiZ9bMM,165 GqGPu-X3cv8,119 bYO_AhZaG24,167 JcF3Ay4sjss,185 qQgyoHsknIk,191 M5DZzTtbV1g,147 LWz_6w0paEg,100 k67i1cISzsI,188 3cBAmkzKEBU,109 yISManYcWqU,152 t45uy-QuRDU,73 Gr-s1mxnwM0,203 aG8bSNpEGoE,178 qrd5QtOa6O4,90 fyOv0TB4lXU,195 gH4dw-S1esk,179 lIbBAWzE6H8,211 rmpFmJfEZXs,212 ZXkKHnmKWoI,146 ZPDbP3gms30,111 Ooiw8ZYnzdU,195 HNPPD_4oD9M,128 SLC6o6KPuro,123 iKi2wYZNAnE,126 31G0GtKW8iM,139 XyrvvPsVxWU,134 Wn02SYyYhRA,128 psA_jrGe1PY,140 qDjmN1TyJAU,126 _oOULG_nhEc,167 GsP6mQAcxj8,101 -kKqgjrbb6I,74 ukXfvR7wi0U,134 D1YHdHw-doQ,167 0PPstocAAAo,225 Mg0bvyIEHcs,133 wTzfJT3zGz0,187 ktCIr_DMGOI,131 UIpSn7Kma80,174 lnPDc4XE77w,204 R3KOKpvoLIo,133 2nCjaCV1v0U,131 ULu38sbUDdA,128 CvLrYbRzjAE,239 gnallHWgupY,224 l94geYuwNJg,52 Zeg6dl4L60M,159 LVvJj9sDilQ,141 cNjcecvssqE,178 cOy7yCnHMAE,144 QPDuZ_Wq7ZA,155 aD4ZPXHAVCA,133 SeiUW113A_c,119 HeRIwSpHZCk,177 zOvMmwnFVa0,155 _ZwkQIBp4TA,157 n1VEmXiaFY4,168 OVCIGGHelu0,109 G77jx5jd2-c,171 b2P-oU216V4,134 YSN08rz66zE,259 gAI36zhS84Y,190 _3bYh7CffIQ,74 H5LLqPyF11w,133 m43-bLl6ZwI,182 TF2BDWsAg2U,199 56_IiZ3k0OY,202 N7vSJzq1zAY,180 y_Zo1Wg4RAM,134 l8L0q_dnoKA,165 JYwvFPjJ7dM,144 6hUiaXXj_Hg,153 oH-kAHKtbTE,175 B_cE7WEW5gM,104 wnvRIdndQdk,150 8coCtKWysGk,176 tdDDMrzq9lE,147 LJgqSSZpdns,162 nS4Zfx9BSX0,125 iIPeQxzLVlY,126 gcoKGdZcf7A,71 ge9ahoqNSLE,91 KiwEFBgGh-o,159 FIGj7z-7olo,169 ST9ouIvHftA,145 LeGBkG_sRNc,133 shal5AF2Gxc,132 ePtwxRF1WZA,174 atBUgwJAD0U,189 3lQ1fd0hBe0,144 auNkHDpPil4,178 qabChviGItk,119 6PEQcK6G_4M,182 4VDry9fy8UE,129 4d9fx7umXgg,286 ij0JLKDJOrc,109 z7siqPhc1qc,211 yCHoWsMt0LY,263 3tuV7dBxBPU,80 Ke-MYW3XORg,127 b31BhA8om1E,161 Bc3PB049HQc,121 de_Dik7HT6E,132 QC5re6k5nLk,58 6nrumyJrmZ8,178 tnZ55SLhan4,197 srpM16MbHAE,123 wB2w4t9dr0Y,57 ABLVvVkVtHo,169 K2bk8aUwIis,229 EOX8-c-_uVY,134 D4gPEFccxPk,115 jUkqho3OUos,123 HV6s5JiA82g,139 xYIhxXt58uE,185 DIlHR2SWW9E,134 kzxz5xezOAI,86 CFqO1y01qjs,195 J03m0CzUvJU,177 HfEjIU7Qbj8,211 VmCRT88HTWE,134 QS3UyqLs5KY,196 FVgkuDNTOa0,202 I9NGZteE31I,167 SyKWZOEqhzw,115 ruaqMoxwvjg,120 -nk6Gs6Z_Bo,189 1UN6pgpke7o,179 2w8LYlDlls4,125 kSQaXjYkZpc,179 1Igt8Zl7xwM,173 phGwatUEyzc,170 des_yFi9fiM,115 KJtfL83FLj8,215 e5gfRaN5gaE,183 4mfQVFVg16s,125 edaHyeIxzcI,133 ufllQr0ClXg,217 z1hLLDMkdlM,252 Mm9Y9JEmekY,116 0zsUFpPjt8g,134 wuRzu_xHPa4,276 m3XsVwEuULw,148 1TX6svl0Qjc,166 nEGbOGGiENU,123 Pui9t9vPUTc,135 iv_Q51lofKM,157 xhj4CAFsPt0,180 KaVglFjQynk,135 6Dg0qouE5Zo,182 nf_4vFdS80M,293 xc_90HgCenY,185 CARc1uUq1lA,148 FFnyDGETjzA,206 P_zAPM1cQdM,82 egTtyS-PlRM,184 HNV5ksTBzLk,131 XkvSrgngUrw,167 HxfzrUYFsLk,128 jhMCxDi0Xs4,237 XP2jPEAalOw,113 A7mWnsrRu6w,242 ooS5gVdYgRQ,143 rHIIMIBMvng,177 9jfRE_FljrE,113 Xq5eXYCKUF8,167 vI_kMlvUWDw,120 _t4L-ZdoEr8,206 B5uw3qZ04NY,84 yHo2Yx50F8c,140 4GRGY20zWkU,161 OroiRWIR2gQ,195 TzAEE887L_g,105 ZhbolQxBK2s,220 ClUoUHjr-zE,175 MczK8n5msJM,180 zUtw46VWtVM,268 Vk2MgC2loOo,164 IqsvjhHv5wo,113 h5dCFGJp__0,122 JuxyMqr7FNA,74 jatrkHMHR5s,172 eGXnEeW_KdA,133 rOzJnj3UmNE,153 4vJ6xB6ctaA,134 d0c6KWKMAF8,120 ph7amveyJHY,109 6EFzoEVp65w,176 _OaOalM_tcY,79 HPcr2gT_cnA,216 xoTuKbJE9aw,130 aNv_E1Gh-1k,158 aG3Oc5TNd-Y,152 HXmru6NrSAY,246 wBq7RLGDqKE,206 SN8buDY-7LM,226 2WDIu8XbVD8,126 _0vYFxJJcB4,84 Q1CJv_8XbmU,180 SroZoan9faw,259 Gq43zgK0T94,93 KMOr9s3kfM0,133 vAfD-vF8yss,133 ytEsz9ZEh_g,131 _UvKhc0wVU8,134 0WKopiIhAdI,136 RS01myY24NA,179 HJKL8Ta-kt8,177 jxEVFU6EN_k,99 L91dx9ovcz8,133 L9wacy030Kw,177 5W_sktmZuzI,43 6TOx7qsyaxU,246 l4S4IBACQCM,152 -dWENMR2aag,127 sQV6nuap8WA,134 miJ26dYcbBw,89 gs3GHB24IaM,133 qybKU4uNtV0,157 p7h8oBhP_lE,188 G7gklW3Xbn8,172 Td3qZIf5Swg,175 fPQJBHWr8zI,133 BL_RaZ6VCgo,232 igmlE2TDEyw,135 AVzJme0mGY8,134 ZrDL3HQCwE8,134 yZgf5wSULog,222 49BRJlMRZ18,98 fgbjvvCPa88,128 mPWo1Dsti3c,86 Hm8hcRPGyME,236 BGGyUpO3W-A,130 D4sj2Yq5bnU,122 wVFNjHAnpcI,99 rc5v5EODszE,129 geGO_emEsqs,174 3WksbH_r10U,105 3lR-s-Q5XsQ,241 nLDgcHxJ4Sc,213 qy58BaeEMyw,182 Lv41GcKWfJg,168 gCRokIMgn1A,148 Cl5eAgx8K8Y,279 poTqVcSgFRE,265 lS9V0oDrPfs,129 cg49Y3jpZsQ,125 FFU7WJWXrvk,156 g6DnsZvudTI,69 j7m47I9BuuY,225 BSmKQGvL9ho,213 gtHhlD6p8BY,211 S1Xm1jBc84U,119 h6klN0zNh64,166 3ZL5il1o-AQ,215 0zHERbRFxTU,153 IiQlYWhL_UI,160 Jhzm2AvUGHA,179 Xstux7DlrgU,136 VuUzda9kvJA,152 3yqsR2cziD0,180 MnTKULzMhMs,110 cnwddNSgakk,181 hYvxbtiGvrk,145 4QR_9BehbWc,134 3gD5egw3-Lg,139 OE7aSKZDjTo,180 W7_EwytEz4w,176 MmKlIGkxGyM,150 vpqzFo0aD0c,81 DQjDI3NorAY,213 MXa-QNQ1zfE,174 2Pl7zNuA-vY,235 PomVYrPHoAg,133 rbhNKSWKWwU,169 hoWEYBSlctc,153 ukWCpVUXs_E,164 3IZVz7ukKyU,193 InHZNhmQyd4,215 1bBOUr7rAHw,172 dKX4NN38vpc,277 w86nTX6Iixo,157 DmXp6Pm-uLI,177 vtdnjV0Q2fE,164 QSqUVzkUvj8,198 p2zDdb_MqmI,195 imITvYE-QBo,134 ob_6XAhj_1U,150 GALfESO3afQ,180 L6HWF_-Vmbw,78 zzabhummvzk,100 QXeYlaZJ64k,157 hcb0vROvmWk,127 Dka4AUVm_j4,153 2aFfcz677qk,187 Av0pWtQ36tU,150 D0bIbyAa_XE,132 XgZDk5PcLYg,158 oJITCthevTE,169 5H_MyLSpRSs,117 W_fixpI0BL8,134 NCjjqtamXzU,132 6efkIA6C2h4,185 nvAZrrDwecI,130 RM0NW8MF9wY,162 tPJJlCdrJ0M,133 L38j8UMd4oM,124 XFu7Fz4g1VM,124 JnjO0v-AYFo,134 PJze0WsDW8o,227 W-7hoLpXFXE,118 1DNNWWORGo0,117 FcSSNKWcReg,172 yjrvJkWU_5k,89 rpqgDDBcmcI,164 wQj8uFwQP2A,131 E-mnMI7Klyw,140 FubpK1Tho6M,300 vn-PJRh_nFQ,134 hqslb1FVoQQ,122 Yo8mYWU0oTk,164 pQwl5G0ZHdY,206 Q37sWrXU39s,204 IBsHlPPeaY0,161 BmuWHveTicc,214 BfF5J0uSC3E,207 r1md9sIev2M,162 QqFuGUbvgnQ,181 gq1gSTF2oyA,133 esg4w4b2xvc,122 fqKdFZ1jKMY,171 egC6XhnfuZk,91 gwdClG0txYM,142 MGIjofJUXyo,134 7Wyjo_hrIbM,167 ROf2H0OX39s,171 nRkXwphpaQ0,133 l0zmCUVB0Yw,181 JXRw_5ug68w,196 ikcKKvKkf4Y,163 k0LLcRLSSlE,203 cj5Mp68u2tY,132 TfKw3gvxff0,134 ItkWLEWFjVI,88 kvEgzOjGpoA,153 ZVlfttyv5js,145 96IU0EisCes,174 Z9vRmexWHUo,116 TvFCzrDQrD8,119 IJvZL-7xeSc,145 fV4ApYBVa3w,158 73Pm3rkTzb0,152 4-3B-Y9bM0M,180 NmSNUylSNvo,133 PMdokZIn2_s,129 aTxu-zthTgs,137 Jrn-OprEMLI,74 e_S58iPZYu8,126 c_ByO08UsWg,124 S0LBIxKRCHw,129 ojoC-Kbzpo8,180 IagCGWtNyTQ,213 EG9eUCA_MxE,104 8gUP_uUpmSw,141 BMlHiDzHkSk,133 HcjPZqjGuFA,196 KfxQi9_BfHI,120 1iEOBKuW9TQ,179 PkO3bgn-Qgs,148 psDtqypK3hI,186 C05qUz1ukWo,134 9qdMVMCGr48,108 Y69UrBaCUAs,138 7-5kYQLJnFw,130 Kqdi0X9vJ0Q,171 bCYs8v0Xji4,76 _613foTYfrQ,425 wgkxKdTVrHo,99 sDEWZnPJGRU,186 eUGtEOY5ZLE,161 lryUDOG6bS4,191 SHwGQTJ73Mg,186 IMlPpjJlzFA,127 noakeL8pCX8,219 KekChFdIe00,197 wYumvThtFrc,229 6ZUg51T5ly8,165 J9Sz39odDjw,106 YYZSg-BBAmw,86 aEIaR1nlEoo,89 vXQlXYcAksI,123 V-vgoh3ukPc,165 9YJRtvamIjU,128 W-KxBQyVfc0,166 v0AyEpFDi48,267 NTdHPAY7rOE,207 C2IvmQI_efs,133 F7FEV8M0ZZQ,152 KMcBrs0aWbo,102 YprQvoOj6wM,169 gQ8uzN8MSfM,239 gq6JKq3Q_uw,104 8zqwJl6lq-4,132 61nCIyBCmjg,141 C_fhEQGp9Hw,159 WuvoHScKCR0,167 RXkLf3ucqIY,190 CaQWWTLOzhY,185 MsIWigAwas8,121 ZCZyxZYgKIg,136 sG8uXeC_jNg,173 4gO9OFumO8U,123 uifDWAJ6rBY,94 0h0S6EmQWrI,130 kJVKPHBFNF8,164 87IqS4kQqgE,194 S1NFRvZE3FA,132 HpJfIRs8rfc,105 aNbtnYXp9-k,118 CqsCkhbCUr4,222 06L5y4Z9KcE,169 xq5lZuN6geo,240 UAoJ_mv0Pqo,153 qcaVM8TcZbA,142 S1C8tqyy3oc,107 uydWF18xoCQ,138 dwufX9GKI_4,166 wq-H7qGfF68,156 eng2A_NwG04,154 QCkiT56VSR4,128 VKl41s51JvE,191 qOeZ9TL0wHs,126 aNDj-H1jxV0,181 mZHlantNtwg,168 hT_CiaTcnN8,108 sOHoeZYeAeM,126 eK20uOpc_AM,138 CtdPDTJDsGQ,175 sMLop6XZBEw,161 0L1sL54G45Q,137 jsbjmWo3c38,132 QymZP9taonU,179 Btywn5TiBNQ,130 6tAbZpduDLM,71 dJsuwhIpSDQ,95 LrDnPOOQ7mg,142 AupnEJf5ZNw,193 cm1NBLlRxy0,230 woSj0M9Decw,133 q3Vvto0REuc,230 i44zbRoYBtw,204 I51Z3trNfZo,73 sUQ9cisQpaY,178 8VZctic_uTI,196 aX9m-xzauMw,124 VfzZIM_Mq54,164 Af-N8CLLoqU,176 lJmafWivAtQ,216 nsDjpgWu8F0,197 GM1x6UcMp0Y,242 X36kqKTClAg,182 1Rhs3PVAP4o,87 dXNu5a3KmMg,164 o2GcoDvPVuA,158 jFWnVdsSgxs,199 e3A2rtsjJV8,95 USjNhsetZWc,157 Z2SdWJJWe4I,174 4ZCtygwf67Y,176 VO_llDPp0kY,210 BkNCfTfR6fQ,131 PyUqYOB4ey8,76 Y9Nt3hlMUUI,175 aH6N58NST30,113 5VgRuLQgeSE,162 V0sQmOr826A,132 r1N-Xby5AnA,71 WgRUpptAcAA,164 JfsgeCwAYEM,133 yR3zsO8pCMw,106 USWXF1XW2zo,194 YUF1PIe1RVY,156 UgiK8333Np0,125 MpPwsiwPhF4,75 pAwdeWy9yYM,207 30IrWTTMWos,128 opXI29YEI5s,238 J3Dc6UV1ML4,177 1IaDQdo8x1I,202 hfzsR-3PLcg,89 3rb5s-BoCFM,131 gap2gWQy77A,167 r5zhPLNGAOE,186 qTey0qxMboA,155 lv0CgSfmWxc,118 ES496lmmGcM,100 U_MNiopwFxs,124 SjF_DpHczjE,93 BDvjjQvM498,175 PFG8nJ4gwvo,203 hv_mYkUEGko,86 0WRtWiz_Xvg,200 i71zp2X4XDw,186 Yn8Or4O6_9U,152 WgxNguNEMpE,125 XA0J-wn1Esg,178 7p0J9wVGwZ0,116 Omdvu0f-Wuw,174 IRdxr5ilGfw,171 _EjWpjky5lU,132 5RKld6BGJA4,215 W4vPyEk5UK8,158 AAN85u-udis,134 nD8KtgWozeM,160 -VnQ_KpOBm4,110 GgASWe5c8kE,196 oNWAiWBup2Q,225 MuLtmNixbdw,90 NdbZtOpgsUY,135 Cp2KrXtWwAA,140 IxRCDx-YV4I,157 164eTBYcySQ,151 ki5XFDm1ufM,120 W4zjAZcHUaE,134 xcTK6uPPiAo,170 eeWPnGsY-Xc,151 QmSSFYFSA00,92 Y5B6H8G2WcE,155 aoe4V2f2AHg,145 9qtw3cXqWfw,96 sVfmACBWnIY,147 kvtsZ1Edkk4,174 4fKRyf8BI-Q,189 eVzxDwu506A,121 95jCkyuV0VQ,183 wMclAYZ_6kU,262 WsgkiKu7AO8,144 4_SBdgdCwDA,139 Z6cDbMLcxQI,165 xRShAxpUZ6Y,195 aFQabbA_FMs,177 0OmDcj8U3Xs,207 1gj7X8C31Tg,173 2iF-cU-qnbc,156 bEBQWhgGM1g,268 9zcAqShAXPo,133 L46syxgju18,147 iaTG4JflfqM,103 obn9BZj6V-M,232 f-DiniX_1mI,83 H_pmwvIvi9Q,155 OuQTes47k14,153 zHwUR2EqUO0,209 1maNhuFVhmk,92 YNZmZ4ARr38,179 xsM9jr1e4F4,197 9nOc2GqCQ2Y,174 Ko8vqBmZRfE,175 gRP3sdjszlQ,159 TOzf01qWO-Y,231 WBY5O2nTvSU,175 pkogDQ3CK9E,169 UwN27CAbgFQ,257 lZ_r2Q0FQ1A,203 LGL0Gz_QgDk,134 6Mr9bQJEuN0,180 ieXrbTpZsvM,150 JFAAK6FfOSA,128 OCYRGGLywdQ,195 u_G4el-62Ik,134 1xUVBfQ-Bq8,180 urr-Zn5nq2w,127 rpPm4pAJQbc,119 iGawlpfe6a0,109 xxl1Hrw2eQM,211 K6O_Ep9bY0U,151 ntqVq02V2v0,142 1Aoukxd0GvI,289 IIJZj1M4tN8,122 dUMW1YRsWcY,166 tw84SFLxC_o,144 33uE1YctOf4,178 etixMqUt8Ak,81 7R9gbSQenqg,110 aOX72bZr_LA,201 XOfjQQT9O08,134 vuvmITfWFuo,121 -FU65KX7aJs,177 HnhM0M5UzX0,151 Oe_cBDzqBUI,130 R76ux4iCRzI,172 WjWpGhzYS6o,134 SajgVNIRdn8,196 iNiZJmh1ALI,252 _ZA8FE-nu3E,84 aKFriCo_HWE,219 L-zzxADqlu8,159 qSd4Q3GY7dc,180 yriA_JXQ8dw,179 4xtCQLbXDqY,162 ESEKkJNt1P8,143 sJsHcwZsNnI,180 KVvqRC018VA,202 9L-HJ7BVR6A,254 CA66So14ydI,155 Yk2ZbS2FKe4,128 5AMX5PaikhU,209 24adocMDT_U,136 wCFnoBDeauY,145 574oBJ7SR_8,180 _bJYiiCvPW4,150 DNHmujbuC74,212 hA063IaOHyQ,144 zuFtCz663GQ,169 Re6AZiB6JQM,146 L9EPJ7ZYjHk,129 FqtEB6j5jEQ,199 vlTPIYTd32Q,224 dQlExOgF5eU,133 T6GiDpoGg0k,120 AxrQtWFF91k,131 FTO-jtC7Hf4,101 uyMQqUwKVBY,134 AD26OcrFQOY,167 tNvDa9kTDUw,64 PjYVxXOmsrc,137 qwgO1dNfBl0,218 R0fmtWlMpHc,114 1lxY4Sc9eNg,150 PLOSA5L0dxE,170 vNk30YAdCEo,154 wQS5Cu_bGs0,292 hegwdxt_FjA,177 UBNLrL7RvJM,114 VhYxVXimdIw,133 exu61pb5X68,98 kVbmTKqZ31M,133 32pZcw3acD0,109 bICHpdNbsmU,71 0qkVyahL10U,164 A_bC8fF6WZE,134 pDdLHI3b7lI,181 sdkgpg4Plxo,116 Gpc4_pqXMVo,136 lKXUBB09y4k,170 ywlNZzvlaKE,195 BUB6TUH7N0A,179 8zomTUuLank,115 Q2GegbPq3Lg,115 VwkGKFFk-F4,281 6Bg6Zpi59CU,161 UECge-Vi8VA,220 mqkYeGeQ1f4,130 ec9h1IjltJg,145 nxKAr1Gebjk,138 Od3sXn4mOF0,292 PkUS3Y9bR9s,174 7sQRpVCnRto,124 kMcvRpOOIwY,186 FpFqjfqGyRE,189 BiXpNk-huqQ,103 PzTICfN0A-4,188 rS-P78D5US4,139 aEG9dwOsAAg,141 GdMQOwEnATM,169 X5dtBoyZ33o,165 zbAsqngq2qY,118 e198XToyAkk,150 7aYOGUPabd8,176 4Fa5YPKxwRU,181 YTdTD0TbEp4,130 GJleW4TCQM0,179 VILmrL5jP7s,104 vlK8CMKzWUY,212 o6tz9pga4H4,117 15MbDpZad74,162 vmWm02fUJ-o,211 vwrqj6aqJAw,109 WCB6zM_9DQU,101 SiY9kPYOZuM,131 ENEIHMJjims,179 tMB7LgnO2Wo,112 Pku1UxtmkLM,82 9EFxRx8EbDk,105 NdaWQm_UAF0,129 N7itFdNE2Qw,128 vJhO79OGi20,146 wyQmO-LFF4M,157 sF-j-GhV6xw,207 ow3Pf0LSXwc,107 I3akC_INsFc,175 frV4tvni8H0,103 CMMzjgpnLGc,133 g_HrR50Z5LM,278 qgm_ou3TsIs,129 Ueq8bUwdm80,199 j76FbuAQUsc,261 qp-uFNB9jYo,245 eG2Yo0l78tM,163 FGwgHAqBLDY,156 U7HxeKhKgwM,167 Kb2WClrbrAc,262 Dq7TcTBsAJI,203 fluKR9XbEjQ,121 3Y-pMJ4IcTY,212 5lgCxWubUnU,134 RdpvBc4bahI,149 4cl5cWYmvgc,187 __7NUrkFirA,127 h7ZUKB_zYQ0,132 b8t5kX7k0vQ,128 jfhEIIK-jB8,250 sgs4FFD0oH4,212 U59aJCoJLRU,139 1rd6owpXoC4,216 PhQsxcbo6gk,237 9tx1z5_iVeo,188 5XnGKA75dtI,62 aRJXM-rYZQM,251 McQ2XFcPCys,140 Ig6hIs0jsjg,133 wJROB9vIUFk,189 VhzodI8yBUE,123 Xr9GABUefT8,149 e2FPI_ylwJg,224 iTH2RpdXTBA,99 py7xqlpvCIk,111 0g32SegeaTw,100 8D7EY0zKevM,151 IrBymbqWH54,106 CzbL7AJIhJI,132 Irq818Ek0Ro,123 TRCSLhYz9CA,134 D2JzjzTWMxw,119 PKKSqcq9iGU,133 ay1hpFWZQnI,123 rUbY9uikvWc,123 NxrAVHpoBs4,167 POLkdKBw3LM,96 NL_vaHjmqC0,148 GFpm2LR0sGQ,125 WT6DQ_NO5zw,105 YJV5WB1wxdk,134 Da02cZG3NDI,113 7qhNVDPZ-0I,208 oo7VlD66ISM,128 9uGuf4e252w,131 sT7Xef0oYLU,128 1eP7huR6T3U,152 TrvXqosqkls,289 0k_yjEiPLoc,151 -G7OPYUlnT0,132 AAByjopE2GE,111 DCF_BXNE3oM,132 WhUvsKY-l28,103 oY31D4QSB-Y,125 944BOVL_y_U,189 3ge07nbMna0,113 __zoXOgNRvk,217 AhcxeUrWTRc,237 k6pHxD7qB7k,97 P3imZIQJez8,134 G6uZp-33qcY,134 S_lcxLCaxAw,76 rMH3omIA15k,166 RyQUewFDEx4,112 2xbv4AnWS3Q,128 sWqTiz8caoM,105 HYWSAtLFgXg,128 ClOGZ8IiO90,172 23uAYGDpS_I,128 C3TAMx8Gqro,107 0dmwDGkQJR8,96 9lqv-q15y1c,145 vjDxkz5LO7A,180 gcqk1NcWIGQ,151 MriW09XMJeo,207 BYN41wGmP8U,98 ElkY5U7WSiA,82 7tXcQ8BBqXs,185 REkL4uLFnPs,166 rC3OdZQgztY,175 futultLrWms,219 AJhPYwtbCo0,158 p74VOGdtMTw,171 sFRjPMAxn1k,155 4kIbIjoVakQ,131 hSBoEivF-hk,144 deUroRuOCwM,156 7YpyRO7N1YI,127 UPIr8vb7OeI,196 YIfrX-BJbgA,99 R07vQvbALWk,175 q_Gp2jL-V6I,148 p4Pq9aZVV9Y,131 Td1oEs-H3QA,218 iM0XndiNfd8,191 WhT70B0c7TE,126 kDTjN5dVCzg,125 t_9GTwEOdkY,180 O2yNsybczj4,107 rzuN9uvnsZI,273 qNXYR0fe1Lk,117 0t7ZsuI05Uw,219 BM29Ze3d_cs,229 XrujkDtd0iY,121 J90JKBCDzSs,147 BSXK08_Ivac,137 FaX0hq8BZc8,135 ZwQuo7dY_Dw,104 kPiMgLB7S7c,169 qULlmr4lxb0,119 Z_5l0p0gmvA,105 PdmlJSk6QAk,181 aWjBDI02kSE,199 _GjXqTtZjDg,173 bocu5uL8siM,78 BgCgiRitEmM,150 Vq2YQ_fXZoA,93 _t38ENQ9jlY,134 Nohgrc3m3z4,181 g2ElfIY2zfQ,281 29Pg9Oo6P2w,248 CBUtXwZNA8Y,161 Yr1quUpD0Y0,138 g0nhEzoCkJo,134 E-fSwxZNG-0,127 FFnlaQlI1So,149 -c5QAS76N_A,178 PldJ3snU1C0,115 ScJijQn6RyI,126 ZhqHIrO4ePo,142 IOV2-bbOHts,178 nXait2wHOQc,184 042B8vTl0ig,116 sMrjeejmCpI,185 PniQ5j9ZqQk,168 m-3Ohq-bVFA,113 tRtfFFE-bzU,160 6F_Wp3IlryI,127 Abb6BQgz0N4,201 CtBWf0Oq0bQ,129 w5oWgKtku3Q,133 jUYCTHwAQvw,133 ljMuEDlInLo,73 Tirgk-Is0QY,154 vi9m0JRo71I,154 hR4oc1us1aU,111 suYDvQwikn4,190 fAaVf_wel0c,135 txybV-1ao_Y,183 6qXs7Yp75M8,172 0pUMzDEV-DE,133 6pUt6xlMorQ,171 relfjwjhscE,102 T4WNCHc_MmQ,181 -H6l6-_elF0,164 LJye4-HVyCU,192 14drcivv0CE,160 Hh823sEeCL8,189 1wWk7qN62dI,171 UpYME9Wz8Xc,174 _HgOQNBkVvY,100 kQosO29X9Bo,131 RkaM5GL1LTc,131 6-s02HyO3XA,115 QfSL-PSHTkQ,133 2HuQzKat6hU,192 4lWui2b5GBI,163 sxKLANwXzzg,131 5nWugkh7A5U,176 _XuDmoP5scY,172 hgLkypdC6wo,125 Cw7Ed1B3g18,252 NZuXsiyF5Bk,271 o561o4AQdXQ,145 r5ia1XDzIAU,111 s039YJGaP-Y,185 C7vyta1sCfU,178 Z1DO7_hHqbw,201 _Hxk9-WNdGQ,135 xaIlgOMjspo,125 VC0PPBrYBco,152 nfQr0dDL8jg,120 DRTuzzBTrGs,130 nloEs-bbjXM,162 LN8iHxuFSts,157 VCJrgPb3y80,205 qoXJJin1e7g,167 erE6UlOi3E0,125 sOBIrjgDZr4,178 zXR_4li9ZnA,139 vyb2Imfghkg,180 NirTc-GvKLk,61 wuzbUsy6snc,128 4bT5OwL1UnY,139 vEaLVMOwHn4,103 ThBbbiT_cCU,152 fo0KBFhChFU,183 2ADaXnuG-YM,162 1TY9TWCU1z8,218 XAIeh0YarFs,113 bPZwO18R-1Q,172 4hA7ILi4l68,144 kLjET9nE2dQ,88 LjSeILLCe2M,129 -5twCD8tAMc,125 iN0ZnG7yo6o,134 oAjKMLcDlfc,134 4JjOrujlaLg,154 rwr1IzFzjqA,131 xC3PGTTjX7E,133 2eltEasOEig,150 NjUtH1NBFyY,144 _xUiCNlDeJk,161 edhJGqAjG7s,122 55uK9Lg3TaY,133 DECG3af2qh8,70 yId_D0rOn8Y,197 xNNd9Uc9J_8,134 QXruKKf3my4,134 5QMsr3UxzPk,125 0zuW4KMG7XQ,147 AKXKkeLQWac,117 WHcarLLrz9Y,134 u4NTe-ZIrGs,201 tuusFUTcCO8,133 irxaBbMXsUk,132 c3vmsUcknhY,131 8mDtsn0yrsA,119 pxQ07GfWFjs,162 vi8Kaoib33Y,124 NpjcjrKoeBs,147 jG7W6jwCSd0,126 W2UAnJuDL0A,213 WDAIccQnnV8,104 msWWI02CG-o,89 JivWELi2rFw,113 XMKKYshEbzM,171 AX-qpuOuDVg,105 I8yvHZ7de2k,135 pWfB7jrCgxk,133 LoBAmFanDhY,105 n_z0TcZkPzg,131 AbV04B_yV34,281 21Vg94SOqk0,103 vqGsQEGHl0w,148 W9Rb6wHuQXU,199 ALWV_EA6x8I,160 LJvCFAHRAFI,146 ANigqhwwafs,159 0cQThjQfEEc,136 ZKgJtlJDPcc,131 yKw8Cw13NmY,142 r76peMNNiyw,66 2UuM47BOqNA,178 TllGibabkYg,242 FC9AZFwoLVg,146 kyfMjDlcisQ,129 aSQrrou9CbU,152 -r_-EnupRXo,126 NxnafGrvcqU,126 Zxw1Z6pzKvA,166 sVc3ln7vaig,164 B4D0g5tfp7A,93 OunFjTXpbMY,89 aKE0S2gCOfc,176 riSEerXD6nE,130 rd1w9BCiy1M,271 R5wXxo6yIU4,134 syjdYGc2A20,131 _1tCmEtAbnw,127 jL6rrLaw6rc,171 l18i2Kxo8o4,107 LAajBhbC5Y8,107 lYu_8OE3sCE,132 Mcv-560wn_s,178 9FA_bAXW-Y8,106 -iqoJicDe48,144 vaJ2yQC_ktY,279 4-BWFsE_TQE,217 JPbZNEly1N0,197 GlrYbmdZk24,161 1ZJEtM585x0,65 -wwDqsmUkxQ,198 5XQqslDEoeI,201 Txy4-5uYN0M,172 WhsSP-hValQ,82 D7gk8nagjHU,106 n3tXVrGw3kY,133 bgZWbi1o8bY,176 GOYpqqTsO-k,232 Izp0m24gYRU,147 uxj3cKArYDI,247 HH37JTBpi2A,197 GfpVMjrhYQg,173 tdzX5AKWiDw,191 uIsdG0ydS5o,233 Te32eYR3jo4,181 ES20xt2nU10,149 Rd_gE_G9R1k,134 VHj96nAjRn0,110 i23d4uqAG80,129 AcSDeQhGGFM,208 b4TJqx34ynE,145 BIg5_09Tcf8,134 TC41JxKq_xQ,139 1eoKvx5X9JQ,133 8fizKw4z9fI,172 O3TmokjuQR0,217 urbo6F_qD5k,162 NYRHTYWWiGU,150 azRJpVsJ7AM,138 22Xiae6LXdU,185 Iy2kMtJa2q8,223 WC7TpzxGktk,122 0gouIFYgm2k,180 GwLec89XpYs,175 2NA_wZ2MWBc,133 hq4lKhTXzXQ,127 8tLhtdDVqzg,185 fn9gU50qXvU,164 5CO6DsmrIDw,123 y41KY83U1VQ,217 EodzQpkDFYo,125 3dJLDhRGBpE,232 pmAZlEkONa0,187 nxc6kwBYFSM,133 STfoetR9Su8,133 DLzp0YkZnRc,130 frwyMLRko_8,119 fin0EY5-n_s,105 x24Olya2NLk,197 pikL2Z9sykc,131 32OSGQmjP1Y,133 2oFTDbVMd18,212 nEAgLZRGV98,244 oDjuY9KCsI8,187 hOH-oOCfsX4,174 XvnWjkHgWEw,97 rglfoXHFty8,171 kcrHhDoUS1k,179 Kbb4g4m68sc,130 PW20LbwAmng,213 4RPigjaVctQ,200 6R2Uu5x6Imo,182 Y0IXtktHTgk,116 T0gaeDWYHr4,167 ulJXiB5i_q0,274 VbAh3UbaGHQ,93 SqFAf6aGTtw,60 uAroGB_YCmw,132 7uOhTRONUbY,172 F0xKJcGIQZM,70 j4onAJ-3FAM,85 ngdsRt31sIc,119 wBHZhBnXRew,180 gTkzaR0pGgE,152 V-uaIme1eqw,138 abyQFrI-BTE,186 tbty8Ao7_IE,112 AyYlJ6YQp3I,92 sWjVe9dMRHU,225 bwKwR3hV0zA,224 tfUt-J2GCmA,214 dXk2wGeBUHE,181 k9utcDoerr0,186 aQ8UQmMypws,147 nLlnq5zJKvo,153 usoH9GnfJrA,131 RWfQwm_BgZY,190 HFAGAjkDaOU,131 -cdk5mhKuWc,152 F0VmzZy-AF4,203 09zP4iK6QuI,122 AqV77k80Iw0,206 HZQlFhnFVjg,177 -jg0_iXfTE4,164 X0uMMVqQgeY,226 HummNgSGn8k,130 Zbmc8C3GaC8,123 e-NMI6o5ynk,66 0yngsYrBCLg,67 sg39yDRzklg,127 uZ_X4w_9lgk,99 G_ee7q8w-PU,86 sJALMf17QBg,183 mxIe3BjQYq4,134 P0yhCqbwnsU,120 ymoeXOQLtGY,86 d47y-Jm4m_o,140 VmT0mZH5ivo,252 gIZ64_sZbCY,146 4SDOcUPE1GI,132 TBLYqmHXPk8,142 S4WqfcnVT2g,212 VJECUbUadpg,191 xlTl5F96ZVo,154 ZoWhq3dNFn0,182 Xq4HZGi38qo,137 uYV3p1yRHyg,137 FETaRGJH_JE,179 12iewuXNhbE,123 UvDzmAFiUj8,174 s8gCo-QjtGk,154 9xp2WW4VPnI,213 mfgrntgrWTw,187 ze8D_5hdmTE,185 LUjMzKQtq8U,182 A-Ckh0slywY,184 rRUVmTXpPyg,170 msSsPzKVzW0,120 6mooNp4aWBo,118 0iUKZskQEso,181 0y5KiKKCD7A,197 Ed8T-GzBcIY,103 UxVY9CTaNNQ,93 9J_YOz9jvG4,136 PWihKQVb_aY,91 vAO2D0riCDg,197 ffmSFNEG6pM,187 8b1jfsKFu2w,132 vcURIKX8710,126 JHvgBh9ZC3I,255 aXYTDZr_rmU,142 AdmsyTzM7YY,80 YlbjPR7t1IU,125 GDpzofT_Pdk,181 T1IyMJOC0JM,195 Bf0HvoLXWdU,253 Qwr539L6kCI,84 DX1p8C_FuxU,156 9H8h3YZTsmg,190 N25MiYpmMVw,124 wX06J0jh7BU,234 PEg46xyJNPw,183 Zc61Xb1A3R8,224 YqkDor9GqqE,202 bbnkw5RyiCI,158 WdS4ZMa6tXM,184 dlzBcCsKQXY,66 pLqoZtmyxxk,137 QMBLWE0pu8U,171 YduLKKYfgSk,179 2sX5DMSCipI,166 4kmeixKc9yk,184 LJK2Ox4UlM0,219 sa2LecdGh5Q,122 dvIzAdqrb4U,132 KDXK5R3f01I,134 x4L81QLGYuM,221 MM1no56lIjw,133 p3zb4fwFd3E,208 TgujxmrRUlw,131 FSXijk37oNs,152 bOge5t77CLw,272 s7ougTo-pGg,162 fnV93ymcOME,113 -1eKufUP5XQ,133 SW5_v_8r9VA,134 Ded2FG1gA0c,135 Zauzaj2bpvM,113 _BK3aiBX43Q,207 lLScgb8ZP_8,83 XAVgIM5X42w,133 kFuzbEylajA,141 tbWLF2J10xY,223 dHXVvD4FFas,220 _vwllSx_Ew8,133 pppK-fl9a2E,152 4EWgdeVQzEk,159 H6XWqMB-Ow8,126 -2QFIXEHnOY,102 bxs77K1DkD0,212 UkPkaNawTUw,86 XDnXI6KXoeg,134 KTxT13DzNsc,175 h36L-NdLDhI,165 E2wr_tRqNZQ,131 mKLjOr5M5zg,161 NQgAVrZRz3o,118 IBTpVVTZJ5c,124 JyEYiaZW3Ok,172 b1MxW8nf_lU,87 fV-wb1gZOyo,92 8DrF70mcr38,149 2VgamrBe_vM,128 L9x5p-s4zKs,130 9LvgzVmAFxo,96 qIs2PMXvAmQ,138 tG2qsoC_-hs,127 bvEJjjYbgtk,142 0_UCPY-mSZU,165 TeSzBaedb2Y,172 BJWR0io_SuE,180 qG0W2UhUKRc,108 ZLjp7ahdbWc,124 CYTRQAy2o4E,181 y2_oXPF2b3Y,161 XeGGNf_-nYM,159 v04j4-SBv9M,95 FQoR9fu-CIE,183 h5nhyFFSweU,202 7wniAznxp08,107 6nZJPF_VgIQ,176 6ldKc6yXTyg,140 _mPOfQw2fmY,175 hsK4vleN-fE,178 kUMB4-8MTio,82 WQwgtpaIVkE,123 bmYXbieirM4,166 9Ou3nVQc4V8,157 CKIh_vKo7Fg,193 jirWCRbgK8E,132 7eYTzvoxmk4,174 uta8BACjLNk,147 nDrjVVyUjZo,179 -7Sow81yi24,131 IfNo8NJyy8U,162 BrWwVhnztcg,112 QMmxxD7h5-Y,156 NvKYxRmWYEs,174 5ZT2Mc8TEIY,185 w-6lVMklaKY,137 WxIgfDZXS4k,160 mwMmZ8dtWNM,210 teoyewW1bUY,177 4WdyyPhh4-k,158 ut_z2-96X0o,127 eFs__fovQyk,164 Iii55E60gfg,129 2CY78EjBHIY,173 Jd0XiJie7Lo,79 okdTt3VfJ6s,117 pHrp2OM19t4,180 E-MOzwWySaQ,208 bCD25qkPSwQ,117 ajm_632U-Ac,101 WCaRP0aT9CU,54 39Bnk6VU53Y,172 up79gU3V8sk,121 2bdQKmp6hc0,141 R2DhcfXooy8,179 60V3JFUPvIE,176 ZF_2tUzPnvw,154 4_mFP5qAVqM,124 XYD3ysriZ3k,108 5lCObNv4T5M,264 Gbvml-bH5Uc,147 qPVePtS52Gc,183 32Fz-BBjVXs,94 GfBsuOuUdoI,104 cfB1QaweRKU,136 ANXSdv-KaCQ,172 1Y11eIVNgQA,133 PPhGRj0W8e4,177 bCAXuyqUJzs,116 9hMrzEWpZM0,162 YWJMmQUGP00,112 nf1DA90KAIY,177 enNm82zd1Ho,177 Vh4rJorGhHQ,178 HYzSQZdBWVQ,95 FgIgeE7C6bU,178 E6AQQLVI68g,177 5GZbCRzKoTQ,179 rX6oUNKUbI8,176 TgfJD9geSac,191 VVvKuI8oK3c,105 tJPokP3FVl8,152 R_qiBsGsQfI,179 gDOSJkcKPbo,123 VXDHzJ1LYRs,164 ic7g820jOqI,114 g3FFfmWvyAk,115 OcS7veELZ0c,124 dkAv65bo8a8,172 193KvPnLO4I,133 -xZKHX91z9I,148 vF-tPvPAqhQ,142 -45cXUSpOw8,139 0E1TIcc29vw,62 jmC2y7EsXqk,69 GV_pMBUT-24,121 UBmxdy6C4JI,177 4us4K3KLRM0,130 o0HHjpIa8fw,88 TYiEofdhOgQ,158 DJZqFXSHyvc,176 _8hB8umrGlo,145 rYHCZi-tmTE,147 7OIn2KFDWjM,114 uPS3iKFXKR4,178 IXSNWvdkkic,173 -MNpOKICOx8,161 zeV1-Ito9HM,101 0IyuK069I-w,185 OliOEVSIsmY,163 wySz6ysIDhs,130 XBz2wuGU9Cs,132 Bo-2-sJi7Uk,153 wHqQzF4JXdE,178 xkjfSZtHBXc,169 g1jO4_HQQX4,156 J66HeAFlMV0,172 lPYFkRoFM-A,173 QwkW-Rbo3kE,117 nqK7Kk3ZKvY,128 XtduKM28ohU,160 8AXEzcuMQp4,174 _qbp2nGRp1Q,132 Y8eSWYGZXe0,211 vOfFVhSiwiA,172 s_7PfocHTmc,174 wx-HWqbwssg,150 MsKaN_QrVT8,126 13UIqhovLmI,130 _t1yxHW97xE,144 6-_tIPShuwQ,176 hfCRzaZuY6s,165 9xp2F5kPbRQ,117 vlg5VPKbGQg,90 Ae3HbC1X-_A,144 5AstACoPo9w,114 4DD8QRsms1s,179 iPgcg3DVoUY,133 _4juqo20ABE,178 an8Z9J29zWo,154 aHQQs4D3krU,136 xcfYbwSXFVw,221 AoWXSOx502Q,100 -E0UUIoS5xU,127 adjuOPzkpw4,192 qqZPej42OkE,84 I5ohJ4BBHzo,136 O-Odu2P8X1M,179 CFOC-_DYKXk,151 Ot5G0Nh6EyY,126 Ch1DsDy-osI,167 yzwheD19-PQ,174 DTexn9N2HMI,182 OdJlNbw8ru4,119 RDBywHkU6Wg,183 PkCxda_9xRc,190 2X8O8PN7GOQ,182 opyh8AAgisI,137 _x3KSXMXzwM,130 lEykI65QtSQ,108 t9SNzY1Hq1k,178 2rFXR3_DeMU,114 95N85bGdzw4,163 YSrOLez2GbE,87 dQNrOoc3NTA,157 QRwiLuz2olI,147 kJEvR6GEb7U,152 uEMTQYe1ro0,266 fuwfQJrMgLI,161 jKIG_-544gY,177 tOcnYAE2i4Q,121 rW59kLTHdBE,130 Ov2ErYiFemg,142 q30Pl1M6_DE,138 ZG60oroE7AI,86 tRRQX1SXcMM,118 ehxd3S2foDg,180 KgbASFn2Pv8,161 sLLp4bO6dDI,188 Fk69RQS7D8Y,126 mnXN-mRFoPI,175 RN-F41EZQK0,118 bBjLUZgx4WA,173 QHcl5XE4XuM,138 B9pucpn_NOE,156 S04wIhoGYQY,197 mBdFXXV9hwY,154 tjpRBPJGPjY,170 3FeBwyb5g0U,139 q8-xQspXFag,181 aDJgv1iARPg,122 nkuKrymtuCg,111 VRN37FGgEic,162 QUI-9FAwA8w,125 cmJRHlOcTVw,174 V0qYlLqMPNI,176 2ZyxEFqlA1Y,170 IC21keB1yaM,157 E7AA7Qv9LkM,154 JCo3QW-S310,166 Sb8ufI6z0zM,153 eWP8JMcy3O0,152 hQIL99lP484,135 b3IInexeGWE,80 E67jk75CRWM,179 5dE-JjnKznQ,103 T535zq4Kpt8,86 fRhJPuDCXRk,144 _aj999HtbtE,177 xhgWGU6cQ00,91 h9HV76Jl2WE,124 TAK8DeL_w00,176 p9XIPtizl3s,147 uPcTCWfQbzQ,113 f4LEgmt0roE,111 hjuvr5uGA4s,139 4JE04So6OqU,200 ca3ejioEyiE,70 NRBLTtDkQXU,128 of7H9H_aPxg,121 HwaqZA54GTk,179 XiXa1C9FECU,98 raGaJdEHjEI,127 C-FH-TOuFpQ,172 1EcAcWe08NU,193 dfofju459FA,110 JX2gQZj3-NI,169 WQXNChLdnvI,179 XocJyNxHsW0,180 3vjTjf7m3Bs,177 Bg17-zWqpkU,179 hN-1U-g15NU,179 9qorxa6iMm4,123 5_j3NrcDiS4,174 EAKyvP2Rnqc,181 qo1cSaFhPiQ,91 ukzIFp4Kj90,87 VAaeEoQq6jY,122 dfWdmxCHwfc,212 YDBqQMQB_ls,147 cWKL1gFCS54,165 o71CfblYCqI,120 b58Zg_TRqn0,173 wdlhhgAT1EU,132 tImxhYu2PG8,74 hTzUYt__ogY,159 VCLJGenGyB4,180 VflasoWmuoA,130 n59mG9_X35Q,135 SrqVUFbk_sE,178 fuXPZqYtnjo,121 hdQOL2aFufE,150 svAY8Rg8HFY,101 BnnkcdH5v14,150 AMHSm2gTUmA,175 kbVtjc-ygTM,114 usImFOQQEIg,94 ZJDgkjbsitw,164 JdWS7JkUno8,176 UUDv-oUehMU,134 hM1OunX-QBg,135 QGRAdMGb5tw,179 fFE8_U07a5I,127 eZHlWaIYjNE,193 M3Jts1DPcWk,127 Wm_7niZcI1s,107 qFvJloqBYTQ,164 B2zzhcU9f9U,170 ieVPPV5S0Ps,136 wJeeueogQQ4,196 ZKfVrsrm_ac,91 GZxal1kvCfY,105 nSCUWDt53fw,170 XQO-ftv4ePQ,145 99IsS-uXJzQ,93 OQjvys5lLk4,148 CEO9YAsxMfI,102 corlGzKJqAc,155 fmMPmWO6b4E,165 UK0wGi3JHrY,65 MMxE41xM9ic,175 itIt0nSWDGI,46 f4gmgTebHog,187 YihADAPOCWU,67 mt6D8QQ-nIY,165 0pRYoClF9w4,137 Joh9cLv0bp4,148 -yPwW5V4mhI,121 wTGRsKLqkGM,178 l7X3t5SOcFY,148 QS-7heS_70c,132 3k7E9zkTPLA,156 bFfnDQ3bDfA,116 WIZlfA5kV7Q,76 MIZSWO65BXQ,145 6WX8Ct4xMvE,181 B1uklxoaP24,179 RPXI3xQ2aus,148 MvIqR1cMbv0,144 oKW6UxOdICg,145 s0rlNw_cXqI,146 EeQ_0rq-z1M,167 Pj5ds2Q_tJg,181 DpQHj1R8kXk,172 Pq9kAmZ3X_k,178 aVUhnzQmx_A,166 aB0ABzNHvAE,151 AEYh9Sh6kk8,138 5KgptmAR3KM,152 FhXn_kxlWno,119 0qzhcuRwBnY,112 rMczYrlPwaw,105 lh8UIXq5ELc,177 32iBCneCYcI,168 VNLN5xyxwAY,188 pfPBf3mKwFc,139 zkX8cKUFOvk,131 YptUTTJjUVs,131 81XTZOlNHEU,137 xM4-RnBk-9Y,177 FNKYIVZOjqs,126 TXRHf6Hzg0g,127 pdmo-_KXg0Y,146 HAal8jdk5gk,213 gsG8sEK2md8,192 qQJmr9kI9uw,181 io-hA6pxffU,178 zm44ZmISCac,175 dZmGh0bXqqw,179 fwkB6wAxNVM,127 CoQM9K_r3kY,166 V11YeYfaxv0,159 cNMRDmf3000,89 mfP8p7raf0s,154 HR2-PHuh3W8,128 5ZUgU9CsjDc,104 9C0B94fFZkQ,157 DvMB2pgYRMM,172 VcnAtRLJS84,47 WFdOIU2jKpo,156 ZMlGZcr95To,150 kZz5k_xsG0Q,134 way2bfS3z1M,138 TktPJgdwMtQ,178 ZNo6GHJYrFc,178 HVlrXQ3qWqo,176 pf0erXl4pwQ,178 N45Gbn2AtWk,71 5N86yJbOjYM,130 _CuZqXrhEZI,179 pfOJfhbqJhY,131 W8tB9ZTiPpw,62 1WlF1nxQKgw,82 Htp6crkePuw,163 KXXwH7C3UjE,169 7dtQiqaxf_o,158 apasYYh6nEA,152 ra9UQb-OVqQ,80 8M0uWmbBrCc,177 odvIh7iwK2E,184 SZ3oe7dJdMc,233 vn8YIDxEGrw,219 -2KG4lLGEl0,119 RwN3A9iBARI,184 CyetT8hwwtk,125 KOBGjFHXnqY,155 FBpzRIzISeY,62 YauDSh8CfwI,178 V5hfxgrLuoU,79 iz3ETniN1NI,81 wAzEOzfIX_0,167 sqZ6ZrVIemM,101 KSZN8iThGZ8,118 2rJqM-hodGQ,169 8zMlPNdRRLY,162 woLbaFLoJI8,155 fuyK26nKaPw,111 aEfAFo99jEs,123 OSeQk_f4hSY,178 PHJisUS7KSg,214 PPl4KzH-bGc,87 Y6jBV4wDoO4,210 jDD8IQgUPEU,154 KaLpXs1SDWo,134 Kw6gubNxWQ4,113 -Koj9hvcBMk,105 XkYj78aDy2I,178 KKsVK5R9q80,144 GGVL7N6Wz8I,179 cUT0WQ9cTrg,175 0YOmyGX2kmQ,70 vagva7xKyE8,103 v4X6u53WL0U,158 q_y6O1yflZI,158 rezZBgaJGoM,120 3_2F9m4Rvw4,132 6bxX5ZV1qn0,158 5QEWc2zmxGE,112 Se38Z08pYS0,118 _eyLdmCxtPo,177 gOw5myC1PBI,178 9D5WsQNIAcE,117 SormU7hbgk0,178 GrWc2UKDo-s,174 S989EXPoZKs,158 CeE4xdFmuVs,114 VVlECM2KyYg,73 9Eont_yEGZs,56 xKrzCRKABjY,65 wrRy2TR4WtM,108 VM8ViJw7uNs,188 aDZSH05DM_c,179 vKcEalTIwfQ,106 NbSduHWUQDc,155 LdRoFo6JuNs,157 -iK4M_EFvjc,131 ZQfZtwole3U,111 2MFlcONJD-A,158 L6ayQbTmoxg,183 WShQx7lNPi4,171 EiYxgC78ScI,148 BuN4WOVbk7s,99 Qrj9qKZCuCw,153 ylvh800i85I,165 iP7_QcV9Q9s,154 uB6JMgU50J0,157 ogW6YDmEb1M,146 lcIuJs1vHrg,174 dh6yBmJDLpQ,124 sLKnt2jBax4,87 f9Wq05WVXiQ,167 c7-u-fyUSkM,108 V4rzoRzqmyc,150 lFet5R_g-vY,146 xchco5BLMQU,180 ecRAEoKp51M,155 FkjBXGnq8Jk,174 uJ_dVRo08Sc,179 v7QfNBfZT3w,149 2DdCmT_j5nE,193 e1FWoMLjAU0,99 5Ackdv3pgmU,122 Kh60xjnuAhA,132 BTeAQ_QLObc,148 pmU6-1I7eyQ,191 UkF508FI9ws,104 iI5M8zwvki0,164 _eHwoQ4VQ1o,134 ENC7ueK93Ow,152 mBAPx0F4e4k,140 -a4N0JuAW8A,120 KS1iOmeMGEU,164 5c3tOFFEcU4,172 Ma_h1r7VTME,150 e1BdvP4zenI,154 zgrvS0PJDrA,137 bBHFfXCAPLc,132 ry9yNbMVeMQ,149 hQm4WGUJtQo,114 dyXlsD7Gx0Y,151 ki3zzZ-GsGI,176 I3XgtCzF5UY,137 Jzr8lXSNRA8,151 ptAdtShJa_0,178 bpNxVXA5dcQ,143 B493yqCgpZQ,180 UeeK-Fgup9w,182 qyZXW5Md1HM,165 ObCiRECeCdM,158 vkXY0EqahbY,94 ECDKjStq8Eg,161 VonhME1FiMk,154 tuh3yZXagYE,170 Xu0QBBxHZWs,166 QN8ln3Hx1mc,153 XRKrwa_--2U,173 Pm_7ga5bxeI,134 bnLhMGzgfSM,169 ctDyR3Nosis,129 3ghKgAcPBC8,124 AutuCkT54KI,176 8qWfNcUZoW8,93 -vNo9qyUHho,152 3OFda9AT-U4,107 8tdYFT9BIuE,148 rDpyBEorPeY,181 iiYX4JT6C_w,179 jTz_VNAGqog,157 LKrcDYvwV1Q,143 OF_frDHo_nw,155 MWAMJWYNpK8,191 j2ZsEQ4Fr4c,101 fZMKMakjV_A,99 HyY-bOuj9SY,120 BhHv3Yxcuro,178 8wx1XlXs4Ss,154 3HMU2k7i59M,200 DooTtUcpKM4,97 XQEr5FlhFDc,175 WeSHSxMfC0A,152 8z4QVBaCAJM,178 SUVN09kOsAo,98 elcYyXvJF7U,152 qMMl8NYzcNQ,198 TjMQwe-R_5Y,169 dtgOzzBMl2o,135 ArGWpUHkEmc,179 YpDpOphD1zo,195 Kusz_-SyLfE,179 HHc1myygH_A,131 M89zKEGFuME,173 GCc99Gh-IEM,138 GGK2S2wy9sA,148 0LwM6-xXVQU,174 fLFf012Auvc,160 iAzMFB3QaBk,155 mTYe5PvlRno,135 pUtBYdlwUNA,119 hwb1MK66new,130 SWrq6xYYIbs,145 YHirkSmJcEU,159 uB-53DTWD3k,105 k5fJmkv02is,184 ieoN6CC-9ns,178 5U72xvlbn-k,55 RjyCXfloRJk,126 nlJqcYb65o0,178 adatkf9XY44,115 IT236O8f-J8,173 dluHLk1Hm64,144 LDmKhGcB0Xs,175 tD3vc9KZ9lQ,137 PdzjDn5zVXo,176 KmuxPl7RkK4,179 SV6R0ym_s1M,133 EXwr6U_YypE,158 D8Cra7i2kGc,179 Olt04UetqMA,124 gQO9bgOLhmg,154 UA1QG3_VoQ4,109 apJLTO5T430,104 q1SFvQhjK5I,132 5d1P50L28LU,168 eYrt5n8DA2M,177 5WT1QRZ2z6A,126 ZQ0JJpvMq-g,153 eT4bhNABlYM,83 kzxSZ5zCfXs,147 SD0eJL4D6q0,159 _9qsxe5kHdo,155 fNjMYPeG8IU,128 26nqXIUqVhE,165 HKJOcRnkRQ4,177 IvAjNuhubIM,145 6qxQ2l1DC6Y,170 Rsd5rA1MJSw,129 THuOIvlbIjM,179 RZdQIbRXNCU,137 5kQCpsPnnew,183 tbMeRyWgdW4,136 hl1z_vp3kXg,123 2jHKPubCPDY,173 -U9v7Nz6hOs,167 p_jspptikh8,100 Ga9WsLD5LV4,170 Kk3XhT9UJAM,180 74Od5-Fmf60,153 KNwhBAOLCXQ,140 km_nixuzb1A,135 GAozArqKtGQ,141 jpTj6qTyIwY,177 4VaSyU3yfMw,90 bxxHPYFtbE4,81 Y8ML1TO5-JY,144 P2eknXZ8aLk,137 LBLIa7bqcfY,143 j21idqW08wU,177 2AoKTalyiUA,156 yr-gQl9CKIU,193 BKkw8FslzOI,158 f-3Bldu8BJ4,173 -v_2hFPseDg,135 HGL0CEjSHog,95 OxKXKwijH_g,106 poU8QxFJjbo,175 vhhiJqQBMMY,140 6Tz9krF1K68,156 n9hjsuaj448,165 vyVGOQCHbTA,179 Xi3P8vUveVQ,176 7tb3_GWTIaU,180 5S8moDSqK0U,124 DjypYuuAvDY,181 N-ZFty2-G7I,127 x5z9VZO--G4,114 JzVCSXWeNnA,100 HKRXTzENFa4,150 xof2LkhAFGU,143 I8-FxxgRACE,176 D7tCnGstwcs,120 RmkFsYUz4cs,165 uqn1bgQX1lg,178 Ltjiyd-THC0,136 7MWts8-_LUo,139 KW7bMwCb2_4,176 lGTsRcHaMic,122 JV2dQauaWCU,136 YqRwOf0XHUg,146 wpxS1xSxUDY,167 0_0U4bhe6ag,119 zadI5ngwLsM,176 btk4Wp0RssY,115 izLhF-Oodrg,179 ADy7gUvipWw,173 oIyXMnHWjIE,126 PSDHvN95YgA,129 4mMrCXPCZAA,129 PDnA3LOm-xY,183 6PPNd2HqmoA,179 3TzAJdCNpZw,128 Yb9EnN_gvu0,151 FHeC_tenzrw,156 pJImKCcPIsU,152 3jWrsTACVn4,99 oqquLzHmH5k,134 BtvvvXRUks8,143 AE4RhPMAtp0,110 fXElquKFrMo,168 Hln19l9RtWg,172 wmXFSQdF3PM,175 7doKgPFilPg,191 SwOfGb9QwTc,163 VXlMfWObFCA,61 vnL8uiqp6_k,179 UBOcWFBBB04,99 xAf9G9cqQbw,179 V2RKM83CQ_A,150 6w5n1TfIFjk,104 t-t8eVDckH8,220 8QNDAaCu9dI,151 JkC83ugjyNw,132 rA6AZeHyw8Q,180 YEv7cVW8hBA,144 YzCruCXU8Xc,179 IBdgRBvFwlM,123 T2ph28ghuEU,221 4pUi3hbXF2c,112 CdppQAIYPzY,179 XlEkeUg2z8I,118 u_n1SEwWmYc,156 a7dRLlirThw,174 P2qz2B9snxE,178 vzzuOkCkHlQ,92 nwt-V8xfwkQ,163 duEErwP8eds,122 zOHL9JZPELk,181 vUzF61mtilA,199 7-TZCEyok_o,178 1y7cZSWu93k,131 i_uA0oZ3xnI,180 kYFrx0jdcoY,120 e7uz82t68To,151 gLzsj4U96oM,132 IC-u2-aQXS4,159 6x0i-FfeA44,123 _P97eUT7NH8,171 yaoCvjqu_co,162 P8ZCZJpluDA,136 kYlPBN4yMe0,173 8j4k-10bZC0,125 6K-d8DN3wDA,179 5VSg6c8TKNc,178 KarwL_yYLcY,178 V300Gtn8NVs,177 gNbqn47rt3M,130 BEsaqfzc6wQ,122 UmRkYrYgnN4,163 8Qw1dYiaCto,79 aSajnx9QK-0,151 7ZUVMim8ebM,159 abXL2HrEjyE,143 wxiEJrmUlL0,158 E1e4f8YdkLg,141 qlk05SwGu10,174 swEgflM5Ol4,198 cfB9siDjpLk,103 W6Y6riI56Dg,179 _j0onVyO18I,153 12KcnPMV3OM,83 NpoB6-TCGWw,165 SW-1sk_U8vU,205 ZfyjpKP8zDk,95 5asGTRoIqCw,77 CVxgFZixwlg,180 JxbvOwAB-xI,144 yDxNlPIFWHM,171 uuWIaDATbnE,136 Yfqg-PxRCD8,179 1DgOAPBMXws,96 raDWhK7iSqU,155 vVaBlzQzmjQ,132 1AhrD2-cvrw,171 ZYaLloEakCg,132 5c1qYWHkPEc,61 NufzJ2YVJB4,179 VGhUlUHKv7s,183 zaHU1FW_RZk,132 JdZHXwqDXB4,163 Tctmuish8xI,124 rZpeepxXh7I,80 GCSbGFMWzC4,170 ipb0Bfg_FTs,142 cRZ7bc3nqwA,185 uKtbfkmIT-A,155 GeLDjQIIkdI,179 uX7CAoxBNOU,164 2onL0hkBVJc,153 KdOgihoZjZY,158 bI1MOyt8dXE,165 ehyYdjaZnoA,177 kZCgrTDVRbI,146 7014C_6ABAg,192 xuhl1rceZdE,167 EVvEtTyJYCo,169 ONBLhIZCtQU,189 v5nIRiA5W-E,106 088CLxgnr8w,146 lCcWPDXqKi0,82 4q5rmjaO9Cw,175 NgLepPDh5tY,140 f8-6UgJ6dSo,128 6xYx1k3O8X8,159 z4NqFwQCHQg,172 HYog4UvM1zI,177 n44APWaJZ58,104 yg42xdVf9mM,109 8lsl4cNrpzI,132 CDQw1Ez9yOs,171 P1R_JOEIMS4,146 YaUe_zBgQ9I,140 bwnrdj6zZfQ,179 dUbNFv_h6Kc,119 ByPtVBI4_MI,112 96CVkRhfoKU,179 MrhV0mA-bWg,204 6vAYIYN2Iac,220 h6usdPpiqho,109 Na3loD5Xpew,181 WThmGeHf4hA,64 Hv3mUXCo46M,164 ORQ7CGUilMs,134 VIxumCmygzw,116 7ZTCXQOU5oM,146 dY9zZS6BNkU,179 bY-jTccddQo,100 hvuQCnADQRM,108 XjYQd3hE6xI,179 P2NiGznbIcI,102 gfXns_cU8I8,112 V32SkmBB1KU,224 yRlyvNmVWK0,181 2heRUn56wrg,79 dTQORe5M1tY,149 SqQmfQfAzzg,103 13wgcygv86Q,69 QnX-Xgbi37I,167 ZT0-DtdC93w,141 OyziGbUQBIc,146 H_sYBmKxmvs,50 atQYOl5KL-o,148 vEj9ZwIzk44,174 hoe24aSvLtw,95 vXXDqjLe4Ls,185 6CBfg5X9Z3Y,108 4iLKU2WRo4k,173 00I2Ofraf4A,156 jmwfCk8MBhk,132 eDPbu2vNrWk,160 eU4-wIieuWU,171 z3H-ozBnwQ4,113 HOY92xiGY2M,178 SJ1_epc6q2E,108 iQrYqaPeMlc,208 xerkgvDm4Ig,147 Tc7e-4kbDto,115 LrsnIyCjvB8,175 CRPf4U_MRVw,179 jCh_3SFr7M4,90 5lPGiKG9VI8,87 Jx-I8OfW0GI,113 4qdHRWWX2gM,178 KblaujDjQ4g,222 44zsdC87LJs,175 AnJm-acXQCo,171 jzhXtCHYrAM,168 ZIdKsGWToLo,42 jNIMe9C25BY,151 jJnJFGaJwV8,142 vJ6XJtlqqZo,179 xPwAEt1Ajmk,126 FKeJtRtug4Q,187 3WAg9OI2wn8,140 pLra48c-SuA,93 4E55_uKSR40,131 -05NPfkubKo,123 kZcr7bw6k_k,110 94J4AzRTLE8,178 I-6XHJFUBDI,207 kL8e9CEgm6A,153 kRuKg_khl8Q,149 J96X6ei7LRE,187 bGXeYGkiQDo,179 FllAsMCrdJE,172 UQmQ7d-wXQE,90 Zxlo0xmD51Y,105 GVGyBNIfPL4,128 BcRrXppXfEU,179 SzVC7ErC8RY,175 mlkWgiyQ-8g,178 3uUUeNqdMMU,119 UiHAMypGBPo,180 0lCR_c5Su1M,153 S0IfbNVCoCE,183 qHA5R-Q1Od8,127 Z2eTW8qZBtk,274 9gEtABdjiiI,128 1tryt4ddnWw,178 JbuGOroCWaI,167 8IJEqeoPPs8,131 N8QzCj1RdpU,157 W6KRJEKYY7k,119 QqmSUjxUg1M,119 QvdszN3x7M4,146 lkoWhWGcVR4,160 CtDBcCXiE3M,170 5H7YGAM9Na0,161 rCLzT9M7rCE,113 YnnxVknsLk0,146 rgd8TC1Q09g,74 1UXl3LGnRR4,209 a46m8g3grB8,120 LiAiWknkwcc,131 ICRVd--TY-U,180 YZrVYAXYyws,85 B13fDbQ75Sk,118 oEddtexPCso,147 v_lHiT6UVCE,129 lkT9aqC6Tqw,116 4KICpbB5YQY,181 b9pr0K7SuYk,142 fB_fwuJOx7I,131 5UnmqCr95HI,134 kKBsDfBDmG0,168 EeNJbbrT8e8,162 1rowOWuYacM,175 BK5ad9GV4NQ,131 f-EjBwpuVFI,199 gsVcJ5gGsE0,106 MZIPOu6WeGg,163 d3HAOZbAj1Q,121 rqKaJ4Yp_oU,117 1eN1O1j3LcY,117 6La5YCYlMZY,148 9i9S12dwwKM,107 ssxqmxjrx2c,157 cjy-8dXBljk,155 gjODxXACjnc,165 IeCZqVq7_pY,178 Yg1qC5VGoLw,115 cSWMU_rISfw,127 IMQADg1Dp9g,157 05foBuX_brU,87 WGxfP216OFI,177 x0rCYl4e1Lw,171 ELAfnYfUaAI,179 5K-YqPyi3BA,178 m_udTXudsnM,123 9O-NfAWrkDM,191 -ryd97UQcrI,129 TfGXctZRcLg,148 iLFMRsi07_I,179 lPB6exj8Kgo,198 v9Cq9nThaNs,179 Fr1A3ok_kfw,159 YZ8k016_bvc,111 5-Xw_z9dODw,202 0vcXvLUt1E4,154 oOWl14GlJx4,126 gSsaIqwGR1E,112 WsaXEsBV6b4,135 FAAKfmF5Jl4,162 ePlb7b2nQm4,144 GbCytLu1-3k,79 9tli2kwH5mY,94 XhWl0YaZKfY,170 snTvACYp8NA,167 yLFZcXeZymY,127 wmbN_BXQaho,179 Ub88RPZnHQM,137 Ovyfd29a1ik,141 Vb6cuUI7B3E,153 psW7sLoNutA,64 XP0SZTwlmMk,99 _oLBVF_VYRM,183 f6-8wpMn_8I,129 yFSvuz5aHy8,69 HuUhj-abydY,173 MgYmK3cDFq8,149 y1OhC9h3flY,137 vZHS1nXJaGU,174 iKscMa0XRXo,166 fbkfr-S420o,98 OjmXuqNMrDY,177 d1ZUnCbVoZQ,165 bPiv1wP8q7g,179 gBdbUMTXKIA,135 ZSQBKh64SJA,125 Z8JHamH3gW4,100 hqhm_-sWbFg,77 XztayplmOsE,85 vPYiq9JNq_c,134 CWwcW-iuP6c,123 31ZrzeS_ymg,199 5Wpy4Luh_uY,119 -u0yhzYlhFA,178 BS8I9H07wKw,121 TXLZrVcUcq4,146 92WjYrR0PEA,85 pmuDcYB17E0,162 pNRl-3kZPzY,172 1eSURYocFiM,152 vjmHq57MZso,198 i5dTE5dgWOw,212 LQVzgO14oIU,130 boGgXcQIe-8,124 MR8hXM7_6EQ,100 ZpmCdIS3TKc,132 FmEHRr23Hro,179 f6F6MzMT2g8,153 DubYVqV92OQ,87 jF0RYgX6Hgo,130 3J0d3ZwHy-Y,209 YM4Of8J6gLE,119 q_v3jNjwHNQ,179 I7pOcssa5uE,176 _sMqmGJObDU,180 v8kB6cqv8qM,129 fwkzz6A_Qv4,119 e0HzBST_794,163 vZqr-1GJIAk,138 mbTKo5Ylypw,131 Eduv1gpvg6w,180 cgoMJXAmLdc,62 XeasXb98akc,152 Qfv31xWBgGI,124 wn-e7FlYRJU,125 g9d1TR6Lb9g,186 yHw5A9BAZ98,137 Jq0iZ5okXgU,112 MVZn5gTph6M,126 lHqGIe8AZ1g,96 0EQXnRlIbXs,153 R1hh6MVyQYg,182 7Rx90r--Xss,153 xHDeLp0sWBc,130 wa1uJbTy6XE,173 rQWpTKfljVg,130 jqzTeVVmTvc,155 -08xWZTUbNI,179 Kkl4-30oHVU,150 wXDgyuxBuBU,115 LoRpJTD3HFY,174 6rvbWWlv_qY,103 XqwQlCAM3P0,121 bN1E4vf9FlM,176 DC2QaWmat7A,101 vfc3TGvcjEY,204 ngRthItc3Yc,168 d7Aot4Wr-Yo,184 tXrxBy-CDPc,153 NJQz-0F61yA,103 TEvVc1vsO2U,174 gSZ82TOHWc0,147 G3TWgClyD9E,170 opSAGkaqx6Y,186 LfL_KOOZvLw,198 BQl4CNHsgvc,129 YXzjSJDDRIc,119 qZk2O6OlYJo,182 -GRPXrEaqn4,128 OBErTpjVCQQ,132 BvcBo3De8Hc,151 6iGsAYTmnLg,110 wDfgx1Cj97Y,172 rqdEaDM2PWM,146 RbU9NjiFLV0,180 xxxnlkTZlCk,166 KAByPJJecxQ,175 Ei9RooSCn14,168 vw44oj_STSw,160 hRfF8Kes77E,150 gkStl7MVRnU,179 cil6HFXlccw,54 ORrQKFliVLM,268 aSwH4lpuKE8,72 ezOyoEG6GW8,99 ffxg6IB27GM,179 vLgTWXjMlWI,109 D-9zx3m6lLU,129 gm-sqEK2InM,77 fEA9BJfaaYA,189 n3YqrYcnfpE,123 iqZB7SIbeL4,176 DV5EHuaa23c,87 cKUwdiog-n8,180 2IIA6TYZynQ,181 YtWJKXNMmhI,177 lMXVWQCa_MY,129 4cH4xyezQv8,83 IYfuTlTiixA,131 Q-X3-JDIQLM,177 I0jOVXcnjdg,122 _4otc_6WtmQ,172 bJ63bxSclsU,102 4Mzzy3KQNoI,179 SLC0omm3N98,176 dN1RMOrtK7A,203 JkW-iBe_WyQ,102 f86_fLGHu6M,133 NS8z60XHJdk,90 8CcVO0mQ1go,173 onesjJyXdFQ,119 hJ6_nbGdWT0,153 nudL_t9u78o,177 BDZK9B4Gu6g,149 jsUGvhq2MLM,178 oq0Aj9JsmMQ,139 Eb9WH9OiKn8,179 YKYtIhbcyuo,128 7qi8llEviYY,170 GVzyzXZuzOU,129 aSwi8mzc1gA,206 -mlfefNP8cw,153 jk1IJ5ggyQs,108 FE42Xc_laYU,147 9j3y-J8IzYo,178 DcpIpj7RbxQ,128 CKtSDzT-SOo,151 aBFi3S-t9R8,132 tIj1luuOfO4,152 AxBkurGlhHg,93 e4Dlc6yqJuA,104 N-v-x6qmtcc,159 xXLQhqwMT3A,84 R0HGeVmyI5I,172 0mPTGVoG248,166 4F_jLtYFT6Y,134 XvOKgNVwLes,172 zZcYZmsSGs0,126 f2Hz2k2PcfI,173 Iqiyy26sW-Q,115 cPfMxQLlirI,134 uwkMYWXtFu0,142 mEmmWa3xK8k,95 kg2o35acq4c,180 9fHiacvqXLY,126 jVu_cuFHZnc,152 FAnP3FAu5sU,127 FEiK98h1IDc,193 eRITzdlHJXA,93 gZ-QU3KT1PE,164 7qjZeHpcVtI,149 gyRxos8xOyM,164 6ya4pGA6zPk,139 VAfaWTc3WlQ,179 I_X6zWElJdw,106 9di5MvVZb1k,108 buDmlhm8mKE,148 XarGS1AeEcE,169 Oe4jP8WV9lQ,60 agzK8ig7rR0,175 S_l6py_n6RM,165 lfObLA5H4Rg,150 _06GrnWiGqI,178 k7_V-3ApEiM,161 9VY3OKScxP4,164 IH8u5eKHNhs,176 ebHQ50ZRvM4,182 Z4G5St8apOQ,177 Ax83IEcbUwU,179 2nJCpOeT9x4,179 cOXVnmVPdtQ,153 fqnhqkXclUk,178 jR_kxdUm1bc,90 1DSkJxktHFY,78 eA-V5wUcWos,164 Iae-A9s8Nk4,176 gj2Y2uEcubE,179 6rNaFgA6YlY,146 8_oVkRFKukY,169 t5zrRGTShZA,177 S98AgHKyX8o,173 k3KR3Wz29FY,167 VqYLWPoXeuc,75 _LzgxVd1wF8,148 EjAwbjng__4,138 pLlcwabi5AQ,138 D_FRoxgOUNA,168 iBptyagVaEQ,159 9qwsfjnC0kM,100 v8UDjwdqzKY,178 MkKO-Z_Sjm4,176 7ezYV1mOdh0,174 aBxlJkcHDSM,168 XssDZqS6WzE,130 VD-_YgrNOk4,171 wKiW5OYjels,154 Z4nVqjAr_n8,136 nW92suQFQ5c,116 kPXFWplmSyA,179 1rJ_NvTBOmc,166 fQWMKUF7dvA,125 tDlL6QWvKNk,134 4NGNbrLnvhA,161 x7yAcIuyOb4,176 Hl1iN3hP-60,164 qv4BPYX4B8U,152 uG_KHjd_PSc,182 SplRDi4FOfs,132 X-VYaCvJwxY,169 M8yhM7zXdSI,163 j8nLPMys3b8,192 iYf3nqYQXDI,158 BSQeVY2fdL8,162 nD6DMtXc3mY,179 iAlU6xt7Y_s,158 _RHrQlqoTTA,173 i6oNzS6kCR8,105 y3L-a3R9OQE,165 FnFMS11g4fM,181 BxB1Mpj8NiM,123 Uy-L94Tio9w,180 QHU65AAx6uk,176 T4v_27FwSbc,178 7OsEWB35fPE,133 Br0BUZWEDQg,136 zd6ZUTrW5b4,131 r8-BFx3xFJ4,183 LKeegFM5SdU,114 5JCbdlUra28,161 8RGjds-aK00,168 Ubb88WMrdmo,176 WrY9UuucSUs,132 6xCIhFtDtx0,159 H3jNVPIi5YQ,179 mFH_r2w28rM,150 XtL5tGpGIN8,147 NsRhhZPAGLI,108 Y9HqtZTcTJk,141 mjbU4wy8VwE,157 2b-ip6hZYgE,136 1m_aN2-vauc,147 0i1ihIW8eCY,137 xLLOmh2nxWQ,174 FRhbIIkLlFI,101 zb5RJyrk4gc,178 IsG-jJcrlr0,183 KAE8h2rqA6g,131 uqS2-v7iZr8,136 GYh7IHTeLus,113 pvNA2JkMfSI,184 QPaP-XRQeM8,175 _Vyg1SVaZu4,181 ahCOQjOPTZw,177 I_TkNxwnJiY,113 Z0FKMJQR9RU,140 bLX_zt_MhW0,188 aKidFnGJDYA,113 ylzTTNLGlD4,141 QiCNpDYavbg,227 76pNjmVp58w,101 83Lfw7BxsQE,112 kcniTaNYikg,175 6_u456zQtkY,116 Ewpzngfnvcc,174 fZflzybv5T0,88 RgaUubM7yyY,122 nqJIAz0C5Ig,176 aViOusNEtoU,116 0xHe1zkABYo,103 IAb5uq3GzZI,105 mCSno4xODKY,87 ohZ_J5yHSkc,179 VpmnPgUwVO8,136 fkQHKvo7ZAw,174 iga0_T5B8dU,111 YKZRedzkeU8,143 JfEde8D6XE8,109 KY-bRBsLLtA,175 1mLEN1SN9Eo,121 oRe8EuewinY,93 I8_tVvzJ1xg,95 euJyO4E3FzE,147 wbwXHxqxDwc,173 RJEoUwZdwfk,160 Rpr0n3A3_BU,176 yBd_y4V7vtc,138 3kNqc5Hrh0M,177 2_BwhA8M9-w,154 qgRXFJqB-9Q,178 IYHAqyiQ2i4,136 WlvCTpjwaXE,112 3tvpgXQ4y4Q,177 kHAHQMb4Lmc,155 mymHgUYBTfk,136 -DXU2ZHuiTs,74 bwH_nxsCKp8,174 RdG9KwpjxA0,170 UJ_zLBr1NxE,170 KW1fyTqH0oE,169 vW7-H-GGYwk,142 m1p-vJzqPKw,165 NkhIROsY7Pg,113 tdfhiqOFtjk,142 tgpGrfh6gM8,132 6LBW-X4DnSU,109 te2WMrdJ3yQ,184 Ctux2wyz_W8,130 H79X1JQ_S30,132 Ll-Ff-PIPOQ,159 UuuzF8Pyh0s,169 JNkxfdR9dXk,129 rxC2ZWU4IPo,155 5wcg-4j9CZ0,159 h5WL8to9Gq8,164 yYQtZCaPFaM,152 YxQJTlFyebM,150 su9foi8t6NI,179 6rGBqovePfY,174 cMPXArN7f9k,122 Zle2EnAj0Ms,95 y-m4KWfeyvs,153 JcRuXU7cvmo,111 LxKahh3H-3U,128 gmJtNjLjsNQ,170 msoyjm3gCBM,168 SHIG5bfYTs0,124 guEyoPzTkQw,106 N_3_HB0AfdY,175 DNpBEvHATIs,132 9_T2VQgL2XY,184 _sHXbqFJCr0,164 lfKcANi5Zrk,140 a81pNygdAXw,128 PIeiRgfL9e8,121 tnwarNcu3fc,151 ulALOA2LeNw,161 lRlgx_GFwyI,181 ZvytnyM6lRY,164 aRPInpAD3_o,138 1_CfcecGCVA,178 lPrJqB8ljAE,118 pQX-KEXTwmM,173 u3oi4L5tWQg,94 D4HGK-_5TkY,153 B1uEaZ1xSaI,161 BVrhwsgCuFU,84 dH3dqXHH0yU,167 AcOMZUiVuJM,116 VU3Tu4K4MOo,143 x39ZG34sn28,130 1CXkATQLZGk,192 ptOc-HdvEW0,170 GKAPU5e7miY,132 wH-i4ImreXs,134 os7KKfG3QE0,176 1reD-PYDpvk,104 9oiFkoROlu0,178 qjqJtri_EG4,152 z3t0ltbfMJ8,119 i4l0vA9bzaw,166 1iOnKJA2H7I,183 GMnwXB4A1iI,80 OTAO1MRbmNY,143 T31h3L_egm8,189 eGLC0vhemeA,174 18Qa__JYKdc,178 FxcIBbXalVg,172 QQFxcGwtEBY,146 ANAUjvgYxjQ,192 dcCsAQTY9lQ,124 IQuxKuLkByg,117 tGg3h7NtiXs,52 ywcKkb5buJI,131 r8uOQupi1iQ,119 1q-FL1Wd0EE,145 bdJPnMKhsnY,87 Yb4Lrplxq_A,42 XPhVzIgYjhc,178 uqA0WkLSyKI,179 x2jLrsMN6YY,146 aJZL2uoPRZg,183 k7oRzwLIgbo,84 dTVEd7WtyAw,193 sfCQQLSwz3s,128 8OS1xorvbAs,131 Tv5BC6yJ61o,201 056HlHORCIU,136 OTjYvVfWORo,139 0ACTvENkyD8,124 MWxa84PirUc,113 uUA0a8U7PdY,96 81YXRcpQSpE,123 8DkbFJ3uz54,163 Q3n3k6XRQ8s,44 jNNX5a8ogr8,172 v757jrOBkng,122 z7gYF5LF-ec,101 vhv17audEAo,166 YjJ2tMg4tTA,174 2NR-tebGw3U,160 aiJtAU0V_60,116 Fz2HMTuqy98,162 CiqtsKGMblU,182 ZmKECCbMc88,141 NkmUIQL4spM,130 wIC34lZi_NU,163 UZVhwFUQwcs,175 jz6VC23rVTE,135 PS2CC6WdNMk,150 tOeINWwKvoA,180 nry9GG4Z0CY,175 mxz_RfabdUo,145 YQJoemnpWaM,172 UkH65BsZg_g,168 DSaBwTpdfkQ,104 zmdsY7PIJDg,165 uSZi8oPRUkE,134 j-TPDJFWErg,178 SK4l-e7UvRs,46 TtALqoM5hkY,173 Qw9ltquDJRs,125 noAefY8KRoQ,131 4Cw7JHJuTt8,125 IWZLSjyJPsU,141 AsR-WnELodI,155 f1mbRj3ejAk,94 z1RLdJwkFZA,115 otsIUxrcoXQ,177 btfIH4Q2BQA,120 nA1lAszNSoI,165 K2hcF1oOHb8,169 zjm_GqK-Kmo,83 HLTpxttylTM,179 i3VHMIy8wHI,116 aYNntWtMi24,181 TFDiCTUAJuE,89 BxvRz4RftFY,116 13YnorzVWTE,64 EOQeU_6vbeg,246 aWUJI1UPuHs,128 9smHLhj75CU,106 aPUaHUwJJk8,176 l8MFxT9ILKY,171 o9-cFlOdXn8,134 QoWIRCVeXBc,131 e6B-T4KYIFQ,146 4JtubCgodCE,118 qS1MeoM8iA0,149 59wvo9e2XQY,255 OXUmjMKCR_c,179 pzG1ckuBqpg,173 97qWmPkODZA,181 AoB_mdZxNlY,195 FNX19RFNdGk,164 kNAO6eHuCjY,175 zYZIHnjnGSQ,124 UyOxOyfX4uM,92 _O9lT22rCj8,118 uSCNsJDEf1M,139 -LCqZeb1de0,140 VMteZw9UU-U,158 zU19JLG88tA,137 YygwTWUI8vc,84 29D9SkdtVBU,150 pb8pWn_yyF4,169 sISJ7r3kERg,128 -bYLI4I8vkI,121 3lex4AAgAfs,184 dZb8CGMC1zA,206 ZFMSluy-4gE,147 l6TGERgrXmA,159 XYc1XujRb1w,123 L7YVcnBbeeI,136 m8KBXUCttEw,178 q_VK4zsJWNw,154 h0i2KfT2SB0,179 UUD5-dcDdBw,105 g_TTG6vhg_4,130 U9t_bzEKBnA,120 QsCBiq5cET4,76 fDSyuyOtPRU,120 nJIecTXKUrc,175 1nwaifplKCI,128 C3rDWENRI7c,130 SBW3d6oYdkU,149 i9OLZ8rhtlk,119 32I5RODje3o,75 XFKhIBH23-Q,183 9JTGNwLdSDA,149 GYexCnV6cLY,180 4k1Vx0equfE,186 u_nHHDkfBWQ,181 G7_Mq3-ivsM,158 EntbO16GpNA,107 Rt3u4bU6EMU,98 a2qE4hG9XCk,158 p39lIRTEPY4,133 pizMaFdtY-s,179 VMhwOytHUsU,165 aBACy7VwhhA,204 A_n2FjVMiVY,120 vpTj6-4d5qA,174 4m15WAC5khw,122 BANrqTBnEy4,100 sIY7BQkbIT8,224 Qgx38Vxw7Bc,85 FTGtcjSMjy0,128 j0IXQIUh3jQ,183 XQ0Tlb8z3ow,104 u3xIs0aajN4,113 v5llnbqhLZM,179 4GlXOOYL_5I,184 a1DuE8E4DpM,158 qV0h46fpZeA,86 RybQmyBoWEQ,109 0_-45EGFtA4,98 kP5GKIrGoeQ,153 1xhIWaxWINs,205 mRIaK9Vf0Ns,189 tD9DfbbK6OE,170 tpsGUGc8Ri8,178 KTVlvs7mtkM,168 FkEU_g5u_1c,154 N-dpQITO2fo,172 9KkV_swvE2Q,176 vKhAdR1G9io,133 6VhCGQODB5U,165 M4YhJdAsgdU,175 kJKWjeMtEDM,171 MHyA5fJ18HA,179 tru0WMH7yic,180 DoVnHRhvtKI,101 vk5Kr-zV8AE,133 gm5nPntwGQA,121 F6dN5Kq5NZ8,180 _DtsWj_e2vI,120 xz3nif1TPDk,188 z2PH2-yl5Ho,180 QRWluPmgyow,178 QUtc_tjyrsI,132 dfALZ10xUyA,138 OYsV5RbHvA4,97 10khF4-1rbU,145 kgs8NvXfI9c,179 rp07bmYWtog,178 S6iFW-HoFwc,115 Ct-zGV4TgKY,184 YYo5jJy61T8,186 6-IGOKWYCDc,141 UF2c01_glHU,172 A8BfSnbFxj4,163 nKuJ6UvlGek,119 kVQN0ZDzIqU,166 JPA1TtBEIbc,179 aKtrjeCFCAg,179 Ddj5oGNtezI,150 rpy7vhvX8jw,149 KuLvoPT5PQM,130 I4mtL3Zs0Zs,156 t5nPC50ST0A,90 2zSE8r8jU_U,170 EvUbi66AGKI,184 kHQq6ri9MDI,146 n03zeBpWC0M,134 tNheq6EGWuU,173 H7zXX6EqGbI,159 t9vWi2ItxMc,127 bSm3d9ftiJA,168 rdCzBg9Xw8A,177 kzf7hr9O00k,143 iraWz0XdffE,114 S1_AkfEVPpI,96 rM5Bg89j9qo,86 2EQCpQbUrzI,207 mN22-ZrX-tc,160 0dGLAOaTgyw,163 JZzbTqTLiqU,131 JhMWopjJiI8,168 o-cA_1F05bU,154 YFnErcVxB-Q,133 poVn84doiN8,179 Ujm2mTIaGC0,137 _4DRXSdPuCo,184 WJOMiXmwfYE,167 4cyZctbdFik,174 4YuwbC-9aDI,105 isct-XNu38E,192 9ukjNhwdbGY,127 qWiGcXSaKUc,156 0H3xMXZWU78,120 wI1LRBDvSFs,152 AHjOZLikqoM,195 fVoHEZb6imE,96 geoi6Sxyg7g,176 gxacglqQMqE,91 crZlpaRXKFE,82 636QHxJvvjc,119 4V9xYmVeNL4,178 MQ1YkJX4SJM,91 fJV0KtMZ7x8,99 AoKtg7t1Y0M,127 TEtlsYtj5-s,147 ijjYDSqZOyA,167 isFVKJA4E-k,147 rA69NDoXRhI,128 ByRXX8KHS5o,177 bNiztacMAJ0,166 68av2-Ti-GU,171 OyUea4_exRU,171 530g3-fuGGU,140 1vhyMvNS3Ek,191 rKUEBIPe5F8,179 -utei4CzIzc,186 CfaPUQMa1gc,116 3fotxrK_Spg,104 DkpNYjgUlhw,177 6Kfqy-8C3o0,173 Aks95ziAQXU,183 t_GWHV52Tds,104 wkoHQdbhfOc,173 UyKyxHFIT3A,153 AYQjmj7cSM0,173 Q93k0-I6RC4,128 7WkMxJKKITM,177 r2C-3xQskdg,68 Bcdz003oBg8,142 0mmSi-63Y9U,130 oZlQMLXqw0g,131 wzYPC7FOJtc,142 ssS5S_E37G8,147 umcyzRBeJtE,129 SSY6_T2oAow,117 odNZhZSydNc,129 6T_01swH-OY,131 wJzWgX63LRs,132 LSTU_JJcJxQ,180 Kzw5aWCSZs8,177 XLAGTl0Nnws,122 PXMASW5YQl8,36 LKVJLiiBlOs,171 0Ij2veeSsE4,162 dhNjb67EpIU,179 s_h-ZXgEtNo,119 0K-qOSq4vz0,178 Tt2oL1sVVhM,139 xPwq9go3HDc,184 -whQdRI7wUQ,110 H4d8EcquSUM,114 MhCI7MtnO3w,130 SdFZEeR8a2s,179 p4lBFrh79OI,177 OaGLdGjlV7Y,124 ntirWguFrfM,178 hqqlSTB5CfU,81 AapjOgixmfQ,90 DHnwNo7Z6Ts,75 akSjCFfKAMo,107 oHAtHxDF6DQ,137 4-hiooEmi-I,172 Dd0f82f8ymk,148 nifcKdVjpbw,194 w71pHLUz2i0,148 VhdCpMoShM4,164 LiZ_h3tUmMs,158 2anI_i9YYf4,153 Mdp4T_G0Xsc,178 x_Gr6RT8Aho,67 qLBpHZ9dUZk,114 YvNjJgJM728,64 K3VNZOc_Wo4,108 NpzigSg-YkI,104 pKHAhc31MOI,157 xM1MNPKYl5g,151 qCYYMqHyPKk,147 GH-oJGZKmq8,152 Ik8q8LDqWiE,130 aazXc06Oycs,153 PIfFHypWnf4,174 5Ka1bqIBXH0,173 kv9QW8UYCDE,128 nKDUDF3cgRA,138 v3bWb5qZMu8,179 ZXyLYqWUffA,112 AjAJNPCQ1Fs,86 ujgbo-_khSM,117 4TsgjtL0Qx4,186 xGeYzlEV5KY,142 cTQRH6MPV3A,112 BGlWalxUId0,142 oeF5tq_zeqU,172 n6mWh_43Azs,98 ns3j2exbdbU,173 8knM2DiWkUk,177 7SojZ1TuMsk,229 MGRJhDyY9ls,133 uWY60oFlfxs,122 w-juhvM7yug,122 bp_GxHYCq90,136 q9Wip3v8h40,85 Q2P2WsgH6mQ,118 lQr3va8emXg,223 _TmztVM7Z4s,180 yvzmLB30MwM,172 _0No4OkGHt4,180 zElzcOQWLLo,177 G_Rd3TcODj4,178 cEezHIqQrEw,121 E-NXKcnsDJ8,146 txQcaXvbRB8,120 ukZg66d96_Q,115 QO0K8wfZrHc,136 516x-cH_Cpk,160 b6vOp7_rI6Q,192 5oEUU8YjUkg,121 10f-q34JJZs,161 CvoAG6pgdC4,99 eKCkxzJFP5M,180 WqWefwlmFmI,127 1yi8Mc-5kLc,129 cazTXFYZ9gw,151 od6IxUWPMcs,174 Z6SklaeTne8,215 xQyVBxABGxw,162 5Qfba1tSw4k,132 g7bQ7ynurn8,75 _2vMtzWb6q0,129 df2QdWqKC6Q,176 7D_6z1EnSik,144 ye38FmLnLBo,168 QAJTgMZpigM,114 O3-W1ng-UWI,156 AtWL0iQxE7U,161 alE17GLFoQE,171 _GAA_LvDQMQ,153 ZBqZpBkiLiI,115 kxvkI8K7fTo,149 vJv647j5Ig4,168 9Q2UjqahNSw,179 wzkoiXWdFzw,99 TBHjt3AyALw,111 7Fj5JAYfWVc,171 -Bxv4jtiR-U,99 g4FOpeshqA8,132 g_O0J66490k,177 5qKySTAWpiY,123 ppaA4P4tr88,174 QQe-fCLVBVU,174 D6MN7T-tnDw,183 aYSdnLgl-FQ,181 2cJGGVlQ8X8,148 mr3L2D4yv-0,126 BW1kpbOz5Eo,53 P1bTMEsYPug,179 xGAAMQLb4ZE,104 kjMmwtxIRbg,177 Bf6FD5UbSns,168 z542q4dYk-0,124 KMI-Sxq9Npg,123 LbCGyHkR0ko,179 XlJpElakwP4,153 3a_nj9e_5bs,165 l3acfaQKSnk,172 0zQAUQGwv4A,183 b0KSEziycmw,158 qItvl5cX4-A,89 _a9IqPr1kdg,129 K8PDbQK7Jro,261 MAi6B_AFhH8,105 bubK4ybEy-Y,124 z-4DtLFGzG0,175 exCuIisMWl0,145 GCdylltS-m8,177 ECirl_sSf-M,132 2LhsuPLvtFk,177 Tg_Z2u4GShE,168 3yjYPrkMGdk,178 C5UD270jxfs,118 _ZLAt3zwEpQ,127 ZJ1UwZPZN6A,154 Xc3bqi1G5xk,184 DJWKWwfURtI,117 rZyjko9lXo0,171 9I-FCJRX2Cc,175 CTpAikAZ2aA,162 w01G5wVBQKs,98 57MtQQ5sm24,197 LlK6pn4qyrc,171 PdgSo4Ts7D4,177 Y0uLpcThaeU,151 Zp6CvBIvqZo,134 EXUzqVIocHI,186 oeQ4HWhPEdA,155 5M4VIDlRYjQ,147 9_LX8b0kmiI,175 melCNhYmwII,131 dCyrhdW9e8M,162 FMDgoOi_HLk,164 YRdXmtGnwCI,121 PywpJSG1dTM,180 mAhhCpdnVkI,166 gSpHZ8Kuh4o,177 OwfT8yTBPYs,120 nLpJ76VuXsA,130 yQVdwJcerjw,171 jVH_NN7phnA,121 2G5KN2wt048,157 jra4awMyUr0,156 gXVvoSa1xBg,176 jKPc2IbQQOQ,167 G6f0w5BRasw,177 K9z6npGGZAM,142 w9-ylaUijdc,176 p6oIR31ZgyA,143 vFPRSImZev4,170 DV_eqkGxAa4,139 ek0jTQAdN8Y,143 j4W7FAGrpiQ,167 zNMpSVorNr0,171 7n9xJpld-0s,118 aBMH3MEYNIg,171 EPj1eq1csm4,178 3tMHSQGSUzc,143 bOqZC-DXvk4,196 LwSsrFFa2Wc,176 BCGzM3s9-1o,162 rb_iLvMVihA,179 l0CbM-jK_eI,132 x2K8I28zejw,167 yJTucB8fH04,177 Q2gFrTuZhFM,115 6eV48Ir-RYc,177 S3-atF715Mg,123 MqIJKnUkGLY,228 uFTd09NNJzo,177 ih9NffWqWgM,148 mkIwuziqr0k,163 KKDCqTCoLQ4,119 3oqt6V9aJIM,179 mu9cObUl8Gg,153 2yZlrJWBLac,156 PX3By_Y0jTA,156 mSsrdFBpuqU,138 kwvSRZG285g,194 slegOy-GQMc,161 N9v6VJLZ8_I,157 n_lSwXF8wfw,130 e0xPCas2tHQ,125 eaFX0rKv2Fc,167 0ePC0mh4rCY,127 9UslcBJkmyc,179 nI6agjxMa2s,132 RbsNzYdNM5I,116 oeKyva3fU1c,149 N_aPyfiVWEE,163 TU_iltXEntg,111 XNUers0BuD4,118 k60eGmxn7Rk,165 slDxIGhBuIE,137 BOKbcDdlAAc,175 DVR6p7Iopec,118 fAdsL7AXW6A,157 YvT0GTWPw0M,109 1SkWbujEeLM,205 a7lxoNJJYEc,177 2_W3saVv0qw,152 -48m6UiKt_0,137 T3zIklxWw44,140 GuMg7x6_8No,177 ucYwV7EWIRU,99 sbIfW_Pf9vk,150 276AIPEK_JA,202 PSpIMEVCsV0,176 cvvBpQoiZpg,132 xm2ztDqbbZE,133 L3aF2hwu8yE,176 fLswSc81mw8,126 wEPZVYQqdMY,179 sf1LMw0a95g,137 WOSAa_l3azw,125 eMgfTq1Z2n8,157 yLtC-gH6ktw,178 GZACBCZQFt8,132 qTANCNgUW2Q,163 WsffSfKc-mw,137 MrWZWfsif3E,131 zpCCg4DtXCU,175 3wXG_J4cPpg,153 hZPz4w3jLXI,156 oe59hoX10vU,131 DGQkgqsHQns,47 tK4GDziddRU,180 ybRy055wBsw,179 -QZzReak2Ck,159 Km2lbJKGAqA,136 PwgxGA6pLhc,136 NLfY3XAZ6c0,90 uQR_i0ydJik,87 8_4rJG5TmBg,172 pjKnwaYJi6Y,131 9vn3DZZHC4s,105 8JhRzlsZPas,142 2vbGcYm8u1o,98 l-GbvgBXi18,148 0tq44zxA0Ao,153 fZNHk9DKvtM,183 xMoCoTO3d-Y,163 ik-n-L9UNTY,179 jEKFfdQEbcg,171 BbyMGiPjDOw,90 HNajZgCe5Pg,157 Lurs1FzrSio,231 kqFgnN10khg,198 alYZ8jQ5L3A,129 vrluM6pe89w,174 oyqIjdFcJVg,67 H9bQdTtfGCU,140 VAb8s41LLCs,126 90EupUjxPIM,142 wdLfTMSAErQ,82 djTx7slpfHI,158 Qzf3SFbaODw,143 qfq5VozCshY,192 0wTKzzRtGqY,146 3nVP-DM1egA,150 UYYIYehBS_s,134 7EcK-LuhzAA,198 ynG2qpTbFP0,209 eJPXQfvokV8,158 WzUMVMrEGnE,158 bqwH3cQUlNA,160 dbnWDDp4s1c,179 LmK0bMGzHpU,124 -s52VEAQmKc,172 9h6w198Yg_Q,52 hH1TgDvC7sY,190 kt1aHAlXi4g,102 kK6P8gN99eo,131 dDqhjzd8wXk,165 VR0NIF6PbCo,144 HMUbL4Vgb2E,135 PMLfJk1X64I,120 r_3ofu2x8qM,130 DAPrbiJaej4,157 padXZANlFwE,159 NXTrMtrTjlI,133 KCg0cDrNQvo,154 KKD0B8uROMI,121 NclH5qEfL5c,178 MsHusoTYzTA,132 eiuVC_cdyIA,125 Or4t1d_h0Y0,172 NVXDwL6XG_c,105 t_FRWUPcR7Y,46 ZlFVmr9iJjc,141 FPpYxPOjtsw,134 6GpeTJqqtG4,128 2HwVVwlGHU0,147 vtu0TbT35UY,179 n2YCseaZK0Q,131 Ot5T_oe47Xs,136 DKqFCG3UTEs,143 LE0TUN0Po7I,145 5YbynyAXAL8,174 XIhDPwuwQdc,170 Tiz3eN3KJRQ,166 gLWaU-LKIwQ,128 J_hkf20P6FM,80 iv8bdd2-Y0w,171 ZQ6XwJOrBiE,107 -4Qk4eACpXI,179 kpFSJhQ_30c,144 vdwWjsJLaJQ,153 q6ObhNBURyY,172 lV2XAU1JzuI,95 vMs9qHAQaZE,156 CpIgfRGUpU0,134 FYDEheLGrKw,111 mRwKWTGCd7Y,122 C3lLA69xOc0,181 WyBvHGU-djg,178 FYUDzpVRYio,167 jiHXahhmzjw,121 G9D_0pXaM68,130 xDe-990DWEw,69 gAbn72Nu_MM,100 JwAVnG8iemw,196 XWAuh7S1zjk,148 KsimmeikE7w,130 Ny0jtHcjrbg,133 S60NRfBYTl4,92 j_z70ZaqWUE,100 6j-vjtJ7PRI,151 2BQoPPpt_9o,174 onO71_aItKA,161 W1c-QSe7uU0,109 yWu4GUFpwWo,96 lLbWBsRVUAU,146 IoRpcIVgtUc,174 U-Sqe0DN_E8,175 nS1ePEA5XeQ,129 0_s8rbNokS4,162 IyFhDTUhX80,115 n9uVWlO0GAs,87 zjdesHuied8,177 Tt-GdLwV4dA,133 eNZnCwkHaDM,175 fr93wwtiKQM,140 eq3vD93GgLs,116 PhRyzmcEOVA,149 1J1osn73VYs,122 bf0eKlTbGtI,131 2thZKjnQnK4,124 ghZ6ntXQp3E,83 twPxMYSEJ-8,179 NP2fSxIpvis,110 5rOdGpkURD8,155 fB5HTcFhCso,188 rlXKgVlILbM,124 R5a3sZiNuu4,181 5vY-zNTuq8E,162 1rP402h6Euo,112 dLxHFwfWIcQ,181 Hsg_ZUoSlCs,127 njnCT6sD1Bk,59 vD6FkjOtIIs,143 3yVGaKmJrUY,172 JWXgBi3HDac,32 -uPSVWxV6d8,153 sfqjgFBIBFQ,63 g_wEMoy_wi0,154 9MhRoo23Wak,187 sSLdFuRVlmc,178 Q85twbu-Vvk,163 VPOd_Y2qFJk,132 XKlt7H8_De0,169 Vl3IiVDwgpY,135 Eh_0E0UdJcc,71 _-4Xy6CjAbw,147 TqivtOAy2No,128 tpmqajLJQz0,162 zjQSWtB7Kp4,110 TLOD07LZw90,162 90j6V8EjSuI,145 4At_9_s2lDY,141 _jF3JZMHL30,102 kidICVXLnRY,112 ddVQoF2TvNQ,113 eTGHFj1kdsI,167 lsmWjQdGHMI,163 0dC7aMWCULU,135 mAD2gJTRSbI,133 MzvFEBBZuwA,145 QzgJIF00Xdw,261 PZeVTlloWxw,172 DjNVqYjp3E4,89 Jo1OjI4Yfv8,188 ijaNlufpcMs,144 SzlHzRvw-MI,95 4TBnG3RuU88,155 UxjYMYu0F8o,111 xax--zcAdss,112 16op1FeUX1A,181 Xz-BR8gyPhg,154 Ey-zuaZV8pM,87 SNHn_jgFxIA,177 SJdUJZ7odoU,134 z-fCbA2aAyg,174 aex6V8aGvxY,176 tqTDKWhqvn4,82 GJwsVhQHggU,162 Eom_iOkd0-I,179 gw4boF1v2YI,118 WZrXR5HAEVw,121 SEtuhB8LEZU,166 QlYSFCvUGoI,159 rGAjkzbV8zw,74 acVDpeSHw44,176 GI67NK5cmxk,135 uJDmoisR-28,153 beearAU0yn0,152 1O9BbPEZRBs,155 DsSvkC4X4Ko,141 TlyHBaAJVbk,167 c4w-IE-Hsqc,124 r3fnCEjvPCQ,43 --QCZKgJt6o,176 lensYsrpsVY,131 XC3h9PPpQtI,134 jTnDuMlebNU,172 YdcWFWm4n6g,114 BtL6iIh95ag,98 vA1fVHBWuBU,156 r8swYmKUGJ0,73 RV0EbFEZpT8,134 izP8mDH8XOc,169 VXx_DVHO0go,120 Lk2gIdLgwz4,127 9QHYm5IVhHI,125 fWRkpKq-9f0,201 n1GlWng3oOQ,179 4kRRDuR7OBM,176 CYQXYJIN3Jw,177 _XSFVQhMC5k,103 IL-_pNnEuk8,179 sR_tidD4M_8,195 KsmXx3hB968,179 E2WZXK79_d0,180 i2xyQnF1kro,95 1c5xWXSWSgo,203 muMv1K99l64,155 6O554p-ovsI,176 NWvUNDAsYqE,72 -arTRBtT9d4,137 QoT8ZUDDmKs,116 r0MABEixxRM,121 Xh8fDMTvNew,104 dbGKS4GQbv4,179 58pw6PJAqZg,149 Mki2fo1Ou-s,140 VP5nSFxqyxo,79 gj_BH6Suku0,153 FrxenZhf78I,136 dIx1J8hHVkw,180 NGkLen8TbHc,92 Go55LztXeQA,146 P4KHpL7ZHlA,179 DU1C6QrVmuU,166 xV0HfZSFsiE,125 JjqnoH4D3mo,111 S9EIFSWUoOc,114 KwZmZ6mybdo,120 5ODDHpmqyWE,123 3v-e25d34pY,183 M9FAInQwCm0,170 -XggDv2QdHg,159 FOeyhFQK19c,164 soynQCpGMz8,185 zjdTL3Z77G8,140 pUmu0VJuwOA,97 nJ1hrmVHUJg,151 d_A4tfEukp4,175 tvxjJd08MMc,132 R6nZpcweYXw,191 CyhOZgd8ahs,96 C83hfoyHHHk,184 0xSSnfRYBQY,179 vwbryjr2BKg,175 -OUuZojE3aM,171 Tr_OzL7mupk,164 s2QlioAboes,181 zYTsJkuEPWQ,63 blQ8Wi0VAn0,144 MwcXLL103vE,178 C0gEMF9Tx7o,149 DUiEMltmojE,172 VPeXTe_6uOc,177 uE8yYJmpxeI,152 jPgV4d4ZmZo,141 4tMdFDBXDpk,181 21b9Nr4VIcI,70 ZLmRWzBjbtU,164 oG-MKxVWwi4,135 O4fYclm_0As,117 XqtGRpyXGXg,123 GUw4G1lDGYE,133 EYHLDJuEUoc,166 u5hpQ0KeRgY,148 0y-Y83y4kKo,168 pQ62TmdWnyI,189 dBif8nb20_g,165 wOSP7YOuOH4,177 MGGGksL1ziM,130 JjfbxBMmXTI,72 lwH4vtb9GA0,125 RY_D9rFoWLo,161 XLqh2vpx6BI,86 Yke_Lkmm5Bc,94 jSnvLrw4YR0,128 pikAt8prREE,146 rDnazOBaF1U,167 eret8dNSTqo,88 XFHh8V9eIaU,178 5tz8013avVU,98 25_58Uww0bc,178 Hp93d2bsfQc,133 FBhqtV3pVe4,170 7LxG9WBUbf8,177 eFrS6uCoMsw,154 q2EU-k9I5yg,134 6KHyMISpE18,180 ytHR10ZesTY,165 TSAdyzdX4eA,168 VpBuUC1P2jo,121 sTcofHd5IlE,103 3WfRT1c7Tz0,159 mEv2dXzZTV0,97 ocXYjytHb40,110 vgEq476aHxk,178 KngGYZgu02o,177 Nz4zu_fSHYY,157 z4cGnSZQni4,177 IMTJSKr7yJA,169 ttEZ7b4Cf9w,180 TmnPP66kwwg,168 HLlaSoozZbM,131 aDq_JsN2Y6c,95 08NzJRNAFGc,130 ROlSjAgE93Q,98 yKv7A92MoBY,148 Zbi-MbMsnIM,161 J38c6k11K3U,149 3KdgZgQRDU0,124 10TW3rcKMtA,106 Cu5F2Z9mKmo,177 3oFSNCmEZyE,130 Tq9zhCo-PTQ,204 C0H2SnzitoM,109 VAnkBQ7eWyc,133 1LwSe_JnByw,151 Tp9iK2u30qQ,173 sL6gDhH7FpE,195 UjjSZfAe8sE,171 ZFGBlZw2kIM,166 qEH9lnYIndY,162 nToATRUkpMI,158 yMe-7hW4evU,176 MpaMbLDTxyY,119 uZpvHkGMn5k,214 XCJxGxYDjQE,170 _pe3ht3F0A4,115 GylxYHpdxVQ,164 ZuCKjnYIRYQ,124 HrYK4U_a6y8,153 xD9G6rUq_5I,171 AAE6HOrW3rk,132 o9dLO77OSao,126 _VEDJMixt3c,147 qIalODmFrZk,197 Fecoe2kJdD0,178 ZPjREKxiNsQ,177 _EpizUY_las,172 Y0TF3T90a8U,147 jy9IGBTGVRQ,190 QiK2W8YshS4,105 pJIGy4zHo6E,126 27moTiftkCc,43 IJe-gy5sR6I,118 npvFfvyT8Pc,95 3A97Vc1eExE,131 ymShdFJoqiw,177 sG_cgDlDyEg,122 PVEIr4MGaT8,182 RWm6781MWb8,122 2fbk5E4JTkI,210 f6Oo9vLtKtA,134 dK2oGZK490w,174 w8mbmSijd4o,186 ilCjx9gigWI,103 fq5JFon-LOs,181 HRJ1g7i0Ob8,130 pQZkA0jRiKo,123 HYqSugRiG5Y,158 V_dtlMkvp2Q,186 tkNKZ8e4aPc,114 UtyiyBw401w,167 O4TI2Nx8RjQ,114 SVQDD7TK-qA,179 S-M0BOzttdg,164 CaIXZsmUl4I,164 oOBu3uqpW1A,152 ltcp0jylvgQ,161 I8gdjJYDJ4o,170 qB311wvyggM,97 _qh-4JFLd-s,158 mbRL9NE5NXk,180 4_p4EAmMa-M,163 ItHtrNSJwDo,127 nBGdf1uWu5A,145 bugH1m4LteI,126 -Dny2rWieIA,84 DI5t1Bxfy90,73 213l0Kv26uQ,114 aZGpjXdKQXw,153 6VUothtoSeM,138 wjVPv5aO_no,137 5yGE_RpI45U,148 dgM9V3lEZvE,137 ToF0U78xIyA,109 MvkN3003iU4,100 9PLm3XZsotA,154 zS41k2xmQUI,114 T5p0IaOt3tQ,156 COSkA00zJlo,111 eMru-ZnAzUk,169 PdKfp8IWgGI,167 KPOx5tioLeY,168 FGLxQHJ5NEs,111 zKATih1nvVo,89 I6JIv4ht8OU,179 GRrLWGMz5XY,150 A0FwoprE1cQ,158 osLhRtHZ4Gw,179 RcC6K2k6cwk,169 14Et05Okf8w,129 yEKOx9OHEz8,100 3snpAmY2xeE,161 9LqrBRqFxmk,179 Uc2sp69O0uU,147 Jb2egULZePg,138 1BS3mo_yHvY,163 kGQbCYm2kx4,173 Oui5yj3OvxQ,179 PI35KfPB7nM,123 2NkV6POGLOc,126 h9GHe5K0kOI,91 Z4ScRG9SDSI,179 eiKrNt30jS4,139 dVFDYCPO19A,109 G2EcYJ6Zjrk,180 Z_7N4TS_AzA,176 7_G8cPqQwEM,158 XO4HxR3dPsI,170 bp0aVPeUCrY,131 ab4MM9cHidM,137 vAYzTJIog1U,48 ONRzdzRMVsQ,136 wVC_xkrm6kU,162 U-FFwUkA2QU,179 hK62U-Gm_hI,125 Y3NbUilKutU,132 B46nugc-4c4,164 D97vMpPHzDg,172 hRg2HEpwD5A,179 zATNPZTinmM,177 h6iHbAju1cI,89 cP63R4QwDFI,122 c4X58OjlVPo,63 01Im5dacdqE,169 C-uCzmnXn-g,179 d2uvpiz5up0,120 Trx5K54MNp8,176 t2NytKIhd68,161 dudDh8KZiTE,174 lP-A8UaVbLE,179 ms_ERfOYnqI,104 mbBhikLj86Y,126 yt1pZiuyKJE,192 aCqeaDIGLD4,175 VlfBJLU-8us,213 U-R21NaE91o,179 uUEpwPiiGco,175 8YUnOHihAU0,131 fvNfhUZ-5z8,170 NrhBIkWlIfA,179 SuEt5n-k0e8,124 PhkGK4ga-Gs,174 N13exKaQgXo,98 jRSw_0zpNE8,83 IXmWL4J2wwI,178 5dlDHt93ng8,179 1O9Sgq0FK4c,145 79WfcpXDbg4,154 dYafG2EuZjs,146 pS-KE1LXpXU,74 R7qVgpQEVBM,174 5bWanpZTnSQ,173 TSxB1wKzjhE,175 w7DIFgkIh4o,160 BWR9aK0vAAY,171 _6IlaKlrXbs,132 trKur9bR2aE,147 IurXrQqZufM,221 SqSZ5RSaT8k,215 zUhsEXaj_oY,156 5i-LMWpJ_E0,116 dAlYuokC9R0,138 Awr5m5-ocv8,188 Ai5tZ8_dQUU,152 DuYmyHWZqwE,92 mGAaR9KKszs,79 z23vdob1grU,180 D8gSV_8abXc,177 qPkKjKAyJ8I,167 uQpHx3lBGms,108 8xZ0jOhAHMk,156 1J-U8tLUlsg,155 Jmls6360U9Q,87 p6HbXVaNFfc,221 VXPxIwL1e5g,143 a_DO8nd7FeA,125 R1GZ5ajb_xc,189 Gy9Wan4jskg,176 YLjwEodCmT4,174 hAVDAEaxv_8,138 B5goHV7tFnE,168 rGtJbW9sRbo,131 912ib1YghJ4,169 7rJZx_l_h1w,169 grpGRWYL6mQ,157 6UNDrO9PrzE,63 lOJnFwgpcMQ,174 lMtWWls4oas,180 mj04qm_DEp8,129 64-EdvBcZYg,176 MxMpRqQQ6o4,124 ovPXL1WPTMA,85 GbOXTIymvqc,164 rrMvGHoW7aw,153 xXi-6s-qrQM,115 L06qVvXrJus,91 EuZM3sfjqno,179 TmTq2M6xgEs,134 8rSdR6dU7KA,96 7DP-JKwZrA0,132 5SkzHjQrCXk,152 _oEolYMce4c,77 rW1_EfZ2pWU,153 IvgFrEk1JqA,171 PcyonXZoHfQ,151 Ra7oqFqj9uU,137 x5ajdqqytyA,177 JLvkvjU_iyY,120 Jf_AooayjPw,188 tdADTzvJtSY,121 VZM1S9VcjAM,167 XuLHSjIXpJk,131 PXmtu0Kd0ms,161 ByN3jkG-PzQ,179 qFprLPWDd-Y,176 UczxnDAsQjs,166 gJvoeKHjuvE,104 yq571gv49HQ,178 w2z6YPTKVsA,119 JSX5qtBpL2g,153 8o1QfQXKstU,142 8i7z8cEA4IM,135 DDaR9vzYJWA,134 4aKmbFnV-mI,178 AxhQq_-31FY,178 cwOh20xN82E,138 Pzk9hsEacmQ,175 QQAd5xx0XHc,185 VJgFWMPoK1M,115 03jGqiF-0Gg,179 Dwiczhta4e0,163 5sNY4Rn7bYI,109 bwj9ig-venA,155 _q1BSBGTR2M,101 U714emx9EJQ,119 qyXpj-yVjVg,147 xd9K2o_ZDdU,147 Fdq_l2-C1wg,168 U3ua5aIvPNg,113 V5P-1Vedt5E,191 h1aJoWg4vGo,143 dR0_tMYKwXE,161 O4TmwflckcU,167 n3D3JTzaiwA,118 pz6wAzZlnhE,95 LszhBmIWjeE,178 rKwnRWbuCx4,136 Xf2ZsLFeD24,149 m3UDahZjiK4,129 lYCq6x3AHYw,165 Cj80JkVCCpg,83 NQtL20JoP3Q,74 Y4SSkX4sRMQ,80 3a6TxHEyLdo,65 yxlXYm5Uo08,105 1WwlHv69kik,127 HlsvFTNrKK8,179 gFDIKfe91mg,126 y5_Q3HufngU,148 zJ08DhVEAiI,137 C2JaJ_FLYiM,166 6xmaoTphmLY,130 UCCkKfTVEy4,152 0I8xeAEpb8E,179 ntnqp7-SG7k,113 aTc9vNCS8vo,190 J440ql0zXuE,201 eAC2kNiKuEg,139 fyl1lmsVuQU,128 DUU7WFTBgBM,177 QCsjm6QI4WM,180 C919Gt7Yd2g,163 tStZuBeyeok,167 2GM0LKQ-ml0,176 4WibEcqn1c8,231 7j5VT6oDcVw,106 hzmZJcPlJlE,187 lKqBsgfSSU8,149 cXm_h4Zdwpc,131 lzo2hgdDUDw,114 uXG9v1_X8jc,178 liDkvm3hMtw,130 jV76HSEeAPQ,157 Pv70ImW-l3s,180 HBPQtYCDKrk,176 aPdLYN69cfE,190 Fb3LibJlRdM,179 xkzlZGohQ_4,168 kzVO5JrnEJ8,160 T2SlDOf410Q,177 Ft-7riREEaA,176 Vfi1V_SL9H8,180 a6--cEjo3bY,179 6PumiBR18C4,147 -wBOjw_08o8,180 mPxP11XFKcw,136 QHjr51lAne4,179 Qx1wXZHymV8,177 LRGzyb7-EeA,106 8KuNjb2xEoM,186 5YEw7F6ri_0,174 3EeGyS1BOGk,222 aucs5KRFzhE,206 Epzv2FLSjhk,166 RdTIzSuw-nI,81 07KUTJpbNAQ,103 X1ByBEw-WxM,148 mMG-Op_PPEE,162 3BIyw7X0j74,151 dWWjjk3Ody8,76 UUSLRRjc57o,151 P5kDAUzl-T4,129 KnXZP5yMlgw,136 KVbBkEyaoT8,185 gA3wJRuClks,158 wWpNqaKrq8o,144 YgnhijYmavY,116 vYtc_bS47oM,98 v4tdwXAnFnU,164 PvqQnJ7Fvz4,91 2BaBf4EEO10,73 jjDuR4d7Iik,181 WUVa_vf09dg,112 FH6ODEaH5hI,198 Q54GdrlgRoQ,170 Hj12WETYG0U,174 BG3bNlh0qiU,140 tf_RRItKJm0,150 5V-C6ziFKMA,66 bDcFILIfHU4,174 MucDLDFYNDE,124 tBVoGbg2ocA,179 Z2-9fWRAwMo,173 XMPTy7Iaw9s,173 91nX46JsnlU,162 dw95Qsj59NA,179 VlSkPA60ujQ,166 DLb9vR3Zu3g,179 8BplQQtTt_A,89 Y4XiKFvQ1rM,186 5ArOFrHp9Lo,144 7jXZpvSkCaM,159 6lv7o-rzkWM,111 PX5QjCErMgU,115 aaaPoObIxrM,131 pPcxCk8YBVs,164 oIymf1Bgmqg,121 piJUrPp2U2Q,177 TlxOj02Wodk,125 mz6dgt11n-E,78 Tn44a8_14LU,159 ODeWs0Eu8n0,160 DE6io8Y3FQQ,153 tlJM0tgXu5Q,114 6rDCHgWk7dI,179 u-z5139CW1I,118 b-w1bY8qhnc,178 sWCjRo30-Ls,179 SAQN4EyLqZk,142 9hNNrKNPGVo,167 vndiMloYcYU,169 cMmi5sRe8wc,211 aRMHp-wDvnE,100 edHmOaS0lRU,177 oP07gJASrGg,98 sG41m7hVl9E,171 qzQdwPNUcME,167 B9oxe-Dvvj0,148 DefILRrX77k,181 KrBI7YdIPYk,201 MZXC37sbqUM,132 A7gKFleV_JU,134 VvSlUEWVleo,163 57u_LsqMoys,128 wvknCnZ8HJ0,145 E0i4dabbAcI,126 H85jp6COWak,178 kpufOE3FIXA,122 ekakyXFzHwM,101 jmuC1ebmYQg,132 5Abq-DZrjB0,149 jakEl-SL35c,187 DzQjdpw73ZY,115 J3J92iSdERQ,129 5wErjt1ukFE,160 CfsveeSvZNw,179 zuqEfWjAAEM,129 iTQ4b0d3HxM,122 GLeGjBbLSJI,133 GJVYWd_3tzU,95 p1e3NC3IIF8,192 ZtHl67Oeb5I,107 GoDxjaW2if0,179 pCFld9GCy_Q,155 PXEJAEDVUkM,154 t8VC4GBHwds,106 ptJ8x9AERwA,127 3l3rJxuxpDo,127 fWx9V0xoYsI,110 jojFdN-oysU,135 7fduMinwJZ8,137 nhDX2exjhGU,145 ahxDiseuAak,118 xgA6VKUVRWY,179 Zlqovh9U5v0,148 58BDrZH7SX8,193 V8M4lPWWr3o,108 OppcXf2Vp6g,62 EwsHFGh6fkE,130 K3dG3JrXAJc,177 fS4vBoC4Di0,131 0-Whu5Hlbz8,154 MviysUwcItA,142 2rPDGz_0qvw,166 hOB4Qm1IiOY,144 9zdo9xIvR9M,210 rzCeSHk3aVY,147 VHF31ybakiM,133 EML4kWiax44,178 qe8IY41zyCc,140 uHuDwL4XEUE,139 nwQtd7csTKo,135 wz0UlSqctTI,138 Tt7LWRxtRcE,119 w8mpECLURqk,127 rbYJb_i2czc,98 ALYPTuyCxqI,167 VnLaIBz4VMg,175 FJZR935H0hw,190 wdVtcHMYAM4,152 vk3s_WgZl1M,139 p_wCMFyHeUE,128 Bi8Spey13uY,216 m2yxUTpM3IQ,173 _J6ipSZnD2c,147 BiuCpXg_jgU,169 saTBYjmhcok,164 bzSIHZcXwvQ,131 Fw19beLDqn8,113 Z2xooz6844k,152 h5KBS20Ke6U,147 AZ0AsuZu4ds,164 bvITByUy5fA,154 b4vpGhO2LwA,113 hkEXnpQ_c5I,141 -LfB7USrdis,180 PvoBUI7uz-w,176 UFFWH8N9SLk,159 fpOQzt9NtX4,147 ccH057kbWTg,204 -Ww_Bo5ghiw,147 k6kWvjAJHh4,179 0pPOxAQwRgQ,169 -V7_zk4wpQs,178 5sMFxEL3zhw,179 x17F1j6spHw,178 6f1VnWuk4C8,150 bhEMe--tKlY,177 8lnd2BulFkU,161 tTlhLBjQdPc,174 V15AidhVCSw,192 JVo7oslbnjA,131 Sk0iV1R72OM,154 cTR9Hnxfk7A,127 yGYPTb9T3MU,171 Ld8KOUtkHHY,175 wPmgfWpamb0,141 d82uV320Fzw,91 EtKt8Q32_Rk,160 i7Y0sXYRwhg,178 D8NMSoCRPV8,144 nTs76MbxqEM,167 56o2aefvmRA,173 H_xWhF2sSb0,91 gc19hOdR99c,109 jvBp6TqoHWw,158 3x0UxzeZBso,196 LagXmjL6EeM,178 jFQAy28o7Kc,140 Y9H1jFdPzD8,124 FSlLXYohrJg,104 QiT-jk74QMw,134 DEeqxarMzg0,126 uzeSNmjxyNg,99 dgdEr-mXQT4,136 ykBG9mW1yC4,120 Zd27SaRdxiE,117 pkwGEagSVT0,179 KvfIsbhIQLA,107 RsJmRjseSzo,121 NulXXh0cw4c,179 bplKA4fZ8dI,98 8yACSHANED0,161 hbDdiPNS3ck,64 p6AK2S2N6hA,153 jjpQORCD0ZU,131 _9lOz8mySPk,110 68CXG6t1mxU,172 yw2hoxOuiaw,116 wTLo8CdhxGs,133 wKPbi9oL5xU,174 wBM9Aa_HG8g,124 RVu3EPJ4-jA,131 0mjSZpCpsdc,167 Saz3f-zPYeI,109 HthNICfVKS0,163 IORWBsyIivo,174 Tt7qQmpLA2U,136 HDPj29dAC-g,141 RHmp-rhCrLo,131 J8hfrE2LBSk,179 24B-_HU7NLs,154 fm12-rhW8cU,170 vP7uKAQLwXc,112 qC7HofT0v4g,200 2vJOE2qvIEM,44 vsU27J8K3Tw,134 vhfk-aOAgIE,103 xcc3vzgR9QQ,152 Al3TIVxEPm4,165 g1lpI9wZtiI,179 NjfviAKKVj4,179 sdvrA5qnZo4,132 8QPhWhQ6zS8,106 CnyvrkabX5U,160 F8Y0hCMWyFg,157 1YsmGZIZG0U,180 ItMY_4RobkM,132 0djt409Dqps,163 HwZeiTzih4Y,169 iIP23U3q5FU,116 kKUsYDTykUQ,166 ZLIY6uk1pxI,128 wfq7O3AgXdE,177 3Ks6tKs541g,176 PbC7alhpFBE,137 lxlwKE2-3fg,143 bKWBb1_NJe8,178 w5mtX7FnO3M,177 IE_d_MBVR6s,173 CBbH4CVp1S0,117 DYt__vjvf9s,132 FnT4pAV1Cg4,173 engSFG20kaA,155 qY7EPDCU5hc,146 _WE7Il9dZCE,152 99kt5BrTa4Y,135 YOlt7yp_QIs,169 y9NhqnuoSAs,160 OqgFY6ZhOfQ,144 h7i8GGtWf_E,154 G8r48HzrYHE,88 OnJAp2emJ4U,122 iypUHnZ-9TM,155 UDhWyFDDrUg,145 WDrQaK1i_9U,151 Bmd8v7RypQk,177 7oqRCOYvOS4,183 1I2xNdoQXM4,132 SWKDbfvyZMU,166 kSmAfIP9CoQ,168 lKzUGYETlU4,153 uA1Kloz4Ics,155 yuQipNK_BiQ,148 ZWe2pwIiWsk,210 l081UdHizvg,177 gHluHS9kX5A,181 -CSIqCS1WIk,132 NCUOJMkDAyI,85 RHVyIHN6qOE,104 k6u3YvvvgjQ,97 Ug6yhGuDcUQ,129 k5bN73OnGmo,126 k62E1AtOYnM,157 5DaiI6epRCU,156 Qc3voNxG1NM,82 S3Po0Tld8Po,184 a6XtVMtUZI8,131 8RuMflmyF9k,177 aBxruaQibgE,132 L589GA-KKq4,179 MNQQS7QR9Vo,136 dkDGK_eFw5c,177 pkqyDC9YnfM,186 _RWkRZDPnao,172 7HlSKPTYZhs,170 3UbNdsZot98,154 5Y7gOcsg0Xk,177 zNSDAaeIh7U,170 Ju6_z5Wx9iY,129 MUvtyyo1vdc,106 AkjImI2Qpew,165 -KW0wz1xBfw,139 UAa5Lw5lseQ,181 _txmRGsX5ss,146 m83iX-zbiGU,170 WefEB2u3fwI,91 sVZLKLWFDYs,98 HGrPKwsAvqE,71 JaMejPOFVCc,213 SfMSiaxLslA,118 1A08em6Y-kk,179 fQ09ePfYLpU,168 Wmo60ltq-TA,104 Gn7MHo0ZZg8,133 Qft-ZvHFfmE,193 PXaE-weoKCo,79 Mh51HEise7Q,173 bsbgDqKys5g,131 s1-5EZM82lM,179 6XRJuEv5Ya4,130 JrPRGahKOoI,131 198uP07pieE,118 I9XmewMPVdo,139 kd01w5eLVwo,171 qiDGtIbWRVY,89 Yz6pNUcMwzo,123 nq33k1fFyK0,96 81mLKFXLNSs,148 gTt8yvw4MJE,108 8INjmc-WWSY,174 k_pB_zV6kVw,110 Nj61hQhTwW0,156 D143VuAxr-k,172 -jtzzs0_bM4,174 T5rzOU-4Bkc,163 Jey2YsDSyoI,157 UkZVQNNzUAA,109 xkMijsfMZBU,163 VPXd9ANX3Bw,117 G_5pbKwl4hE,134 wZl5uWOpepU,82 xAkmG6uqBd4,176 YdowX3H-hGo,100 L-5U2tIfxAg,161 hfXW-z1-aUY,179 oRRupV-lwbU,104 -FDEcmWJ2GU,180 7LraDj4Pjgk,179 dpKQxs7ashU,169 rcWb_qea8Eo,147 bwoxnQ4eLR4,129 dVzFy-4c-AY,159 qJznSue3tEs,181 IrU4ze3VfD8,115 pbv02n_zKvo,133 PJTb9EdYZDg,120 Yr3YqpkoN_o,150 Fq5yX9ENZh0,180 ERlyrvQbqP8,124 ETC85CgzTHM,150 5RGxUKhhRWA,183 54CMOjYbovs,178 o33ZCLXEHIU,73 gW7ozVNSL8k,161 gt6_2qd75F8,200 dy3yjv2YLh0,148 b2jnKIitsx8,126 VBTrQhEwFqA,149 djpX32_UUvc,68 buqRQWuVcw0,172 V25QF11MwDU,152 nJwGWiuonws,146 inMPeTx6hoA,172 MFUZGrdKqtM,131 KccpJ0xD-7E,179 bdJcCwoJ4KQ,176 kbb1MUQmusU,179 OPuOk309lSE,121 uTIfsQ15LPM,96 vTTzWRdAN4M,148 q_u6njqBaB8,139 NdGB1rnPcR0,132 LauRAuoFO0U,147 _KzpueROmto,255 0o9Fm3hnpYQ,179 iwGU5hY6stw,162 pmqBmTWq420,191 qNOk4yyxE38,94 7oi0cS5tNRg,126 DxCjqhDD7X4,169 mqhpZ30uNic,190 KlvWPWFYvo0,110 -Kv4O5dyrzM,133 1C84oQva04A,157 LNPf_P9svHQ,116 xNwPw7mQnpo,117 KVWBllfyysk,159 zt4ek_5zQgY,145 BGHB4Eyjqt4,102 S88bgODlrbk,108 8oq28m4uqe8,170 -Lrndfrc9yU,175 CE8VRLW8Zw4,130 Ro4xPHjRH8k,137 ccJ95yYf3Ms,93 1ccMqOW6LMs,146 OosAKayGMj4,116 p6SMuW5b91o,152 qL_XE00jzXM,172 Yg6sZ2htZfc,264 FoiZPbPUnlc,123 5OGX-e6WT88,102 yYUtAKXuicA,139 VbBi8ZIWbUc,52 fzRvMylDVi8,149 ZPMDA9N1itk,137 V9JniMBfW18,118 Wa3l6Q7e5aA,137 mbKiHp_ljJY,76 KUMoWS98jXM,182 hKTAeQKaKu0,178 ehv1cHqfQ-U,126 Bxne2K4K5GM,149 -QfKnft9uWY,151 1m8Ac21hxO4,159 ry55--J4_VQ,65 R0jAHXVoZ4E,138 lbqDuUjm4aU,130 GfUqvGxa6YE,151 9OMdSRrUdy8,166 hxwuvmJyM8s,179 N7CWWZi58bI,148 2BbpnPOIKIM,178 d5gSQLPcya0,168 9F5v795Cfo4,163 mmdPZs0Nvvg,102 GfhCds4VHbo,143 wdwd_fCVhFM,171 g2GlXX8nFHg,131 D-gTnaF9LVA,185 tm_W36kWahM,176 BdZN3EJVjo8,78 h7NG9ZEfyKo,171 9riBff-h-hM,156 IQWtTLEslg8,174 lQdx2baN7Co,100 fQy1yr_K_L4,195 lMiVewLfZKI,165 kaJbWpMZdwM,171 yywlulXZ0ls,76 mz4JJWjy-Uk,167 sX8SScsA8TM,98 -r_EtRqgj_o,164 tvxi9MyoiGE,110 GlVzp0Ldv4k,185 PI6Q87pjO0o,80 qnD5qOyIonw,179 XR7br4b3gsg,165 A83gS4JJXXE,132 QP3Pzr7UFE4,173 5gQ3nWBmAak,186 2MxnokvI6c0,198 4ri_ybNiTPU,116 6FtMdJEg2ak,107 uBP8cPLPWrQ,175 jW9JF2lCjqg,163 1ugiiAH40_w,128 E-gwIn1O1pE,216 tpnUv93AAp4,135 4w6WN2_l0wA,181 7A6HQOrRDiw,150 r_SuoUET-ok,179 mCfKPXX19Gw,169 IvGwIRIYlBo,178 gwEoo0r_8EY,163 5qWIaxikcbc,72 k96h1dYQrj0,162 A8nTO1XWlME,118 UnllAPMRnKE,132 8FJZS4bwRrk,145 MBNiDwytFow,156 w_92-vVfgrw,134 gQNFCRom7c0,159 MhS1b56Koxc,94 DGpJ1ndBxOA,117 0GYwcr3RD_k,75 -GThoBQbPjI,113 2rSnCcaMDdg,159 tlLSqeVA_no,160 Hxtm9DG4k4o,127 k01VcZkKDME,112 OpwYfz6uFaQ,83 LyhRCLswT6A,139 6nfXJd8nV9E,131 Bl6M9MfRbcU,129 PBVW7az0PkM,71 WG_LG1CfsCE,173 d46cDtFv_Rw,122 JOXYV6UN3S0,177 uHd2oehKwuA,179 kpYZ4G1AQ0c,83 B0vxLqX3oAQ,179 CpAVT7Y3vpM,181 nfteV9Dkml8,170 -cPDC0me1iM,170 PzjOxjO_LuI,156 bgoBjzXp3ww,132 KXMOURHEMpY,90 BKYpzJIAkeo,178 QHTbbfdmYuc,154 u1Pgftn5H94,157 6DmSVYtMoyQ,152 WoN5cCs0l2M,177 0RDDbfd_K74,135 DaWi5EoJVGA,172 SrNNEi50cl4,128 bkLs-xLbpNY,190 DaDZptGm6nI,195 FQLXXM-nktc,127 s33dP0ETrCo,131 tNuPwipxx94,97 9VsHtn_RSHY,227 sMjmQzP9D6o,179 z1e_c3E9ZR4,134 -v8l6cCrf0w,104 F1nejgJdusQ,179 SWl87YF_hHQ,84 W2gWVhYRyXI,176 15bAAD-awjk,119 rCUNazDU2mg,183 3XD34HIx-00,139 h1wWMu4nyRE,176 aIKVAAfZZeM,133 DEmZWy1aDuo,165 JWbqI-m3A3w,163 __f2KtcXAxI,117 f5RQrcIrlBA,178 6e4xlcfKHxY,146 osFbJZfBOyA,132 BZTDkSXwBD4,146 7RJnMME0XAw,119 uFNIrs3jtEQ,158 dHaZflS9Qag,165 8SvHSEy3xCs,83 PENNRVb6OBM,154 glrsnwHe_ng,100 SDq_ZTxHLh4,94 iDnE3PV4YNc,183 lKh7qSp6zIc,97 bIfMAhK7Boo,230 9ltpGvaDfBM,179 NFgP1bVZCy4,158 5W60oPaZOIc,173 xk9PtV1-Dl4,176 njq3H2iy2X0,121 LLeKCWFnlW0,131 _g-f7cZGqJ0,132 EMKD4L6Peto,187 E1k9eRHXFX8,161 V-mlZvBRoOQ,135 o3ya6zEv3eM,174 C77hQJ-zDeA,128 Z2-qppnyM3s,165 qLoufJLKN6Q,170 X-lp4KfK9Qk,126 gp8OWUqg4r4,124 S3phStzHz34,96 0v4aJAsXjCA,132 GjhHy-kMAw8,132 RmxqK1np7rY,163 1gjaw2BNg7U,179 sd2pBde6gkw,221 qtRfpAJHi3U,123 yzera03y4_0,87 nVvMBs0TFWA,179 TyS98_jQIA0,132 Gr18osLHHsE,133 LEq4-b61Hoo,135 V6WWK1gvpjc,130 xTKfpU41hbY,194 HIBYaeYQF0k,126 UeV6eAtHp0M,110 32QcvEuJYFA,120 QeWifFsvr8o,163 pZRDwBXv7T0,179 gzPiBOc_Nfs,172 1HfZYZ2sDwE,148 gkqqhFre2RE,195 tMQjzrxE2Kc,179 uhkfz535fR8,198 XndQbcPIsI8,132 IMr_irerhRE,125 t-5usV6m4J4,117 b8Dv782UIb4,113 9cJ1ZWXeOXg,152 AxUh8zdgPeM,112 hG2yx-PTxys,145 zFIHYJAp2rc,179 6rbUAMnadso,173 FN3SPnr9EZg,112 07GcBnddoMU,178 mtZ90MN57TE,176 obnODOdLD7k,128 IZ-VZCROw_4,152 Em-hPjFyY-w,104 2LX27W51kB0,126 eFzzQuYRw34,119 cSOwRJe9hSs,130 ez6GguY40SQ,105 CQ0Bt9PxosE,126 pRlsbwGqx8g,179 4HB9b-ttI3I,131 0cWnOxMXOEo,196 x3Uw69aKF-Y,183 2uZV27BttLM,170 GLBlIYIlND4,171 ekqjBZdbYJU,121 sm5Zgj8kjD8,175 Dv-ibHmFlS8,156 nS-0lfCTcrk,160 7hacgmRbdMM,128 mbl4cWCn6z4,182 EqW_b9Ec75w,106 ZnxMS3Nf6Ws,150 BFaqEfhGj4Y,127 1Dvx_8APGEo,45 kzh2pWa1lzk,79 T4ZusOrLSoY,80 twdd-yhC2vw,133 3YGQ4oen7gM,174 RbI_bPsWnmQ,178 KlC81iup2Jo,177 bx50ueZJgns,210 AgCF4dXv2JE,41 --ifbq2xY6I,176 0KZ6EPv2Gio,96 5X_ZiFC5RMg,131 8fzGR29bKjY,142 rDTZ6A5zsYc,155 lMmTZ7oTDRI,108 YH_vICd0WQ0,131 MODlCaeiT0M,256 QmEz0udgJsA,165 jvh9Kw3NbMs,169 hQUBid6LIPU,201 RZieTQla0dM,132 p9d7IXlAVUo,154 GrJGkWkkHZo,140 LJQAKDbq0hI,134 ocqy8r8rDI0,180 WYi4Bp1hmC0,145 HPir9pU9shw,78 Hwczxp7h7Gg,164 MmtvzIGaH1I,162 WmFiW2CSiO4,87 CW2M1ZyYArk,144 9DmxaUyjKTk,164 kOe-yLCbA4E,159 xR6jSh2HrAA,179 yygNdTxoHus,198 iRIIcZuSiBo,102 8wY9r2cpbxQ,100 Y5L_REhifRg,181 Wurqpe5tNjA,105 0mRRULBvuj0,175 Ynfvc7uaDMo,107 0-vcQg70AX0,172 ZP73cUcxidQ,190 I30x5dMvcA8,171 kFbDy90VZQY,134 SBIKhBgxq6M,54 XJsuAUwGz0M,188 d9TdwetEIQ8,175 p1dzglJEqac,183 6oUzjN26DoM,176 yzTbstnZYro,140 OJyRbpjlrmA,158 W2QDEiF7SGU,155 fY1s5Sn-GDE,129 bdFo-WtjOmA,138 -wSqiksvdD8,142 LyGXFcfRyAQ,148 F55uFHs0d-o,150 iJ_DrM05hp4,177 djTKMhvuXGM,93 64cRTXIxwws,180 OT61p6s77_U,194 av2VWuMUFCM,128 oS3Bld83J_o,108 o6FUdj0_fGY,160 tIy7sQGKtJA,107 cqHKducp4MY,87 qfKQJyqMnvw,174 FT1C1QdiMhw,146 15wjOeT6Qo4,181 3hcHRAFPBVY,179 25UjaIMN-rY,169 YXFkCH90yYQ,178 zIKq7DqdZa4,178 iG5oSrAW9FQ,149 KaqzKhM9-nU,151 YGwPTU-SvbI,183 WLq3zSm5SkQ,176 EYKOpaD_s1U,131 Q0IQ3GHGXdM,180 vOoyaqLrZnE,150 FZlm1ledK-I,233 e96_1NxL9no,180 VBahsJrr01E,131 MX7c3F1q8UQ,198 7x43p4KHLLI,144 6OYZi5KUFzg,95 pzZ9UdUTRNA,152 RZvJ5MoPjGs,169 20Q3Qa51MUs,179 gjjJePytKig,171 fnpUxSXWy6I,165 UFo40MSG5Ss,180 nCWBxPh4dGo,167 QvfcWxGZv9M,173 Mq3CFDYCWfA,100 HdbL45I6VqM,147 HLw1Og_JXK8,174 khK3EggW2DY,177 aiiJ0fBFjCQ,165 5enqrVvjxg0,149 jsyzJJFZzsg,124 6QYw68kf4sI,126 uV-0kDRYYbU,176 JyQczb2eCf8,127 0_7vIOvdKqY,131 lZltw3ubrGo,170 N5fCeYm3-rQ,154 lg0P7zox2V8,109 X2aVRBuYsNI,64 G629a_3MkkI,150 _41AKvC_uGk,138 hMCFlfCw0HA,186 q5_LSGwd19k,119 BXNuNJhLWyw,146 GwdgbTQ5cgU,173 P_Iz-WhpmXY,131 c2v3ZXKLzh8,136 Qk1y1yVQkJQ,130 218nJYQ3oMI,134 Hl9OzCY9fVE,131 bd0IiiCDDGI,128 PpxLYsi1Yk4,95 Xc2OmGesDgo,125 jt2BPBAWiEQ,99 dzzijuZof1w,166 LFg8eGuhlak,179 tUiVEKK8rWM,207 B8dPQzwGcZI,202 AOv5WvKX57s,156 GdrUYcOTUvY,158 m9Gg_VQP2zw,180 kC1Q45BQbY4,178 L_0imHGhC3o,126 rGnXd_krGA0,61 CL3IXUZKbto,212 u7DV5coBXSA,114 h3g5B5JhFcY,139 qA_zzk2c7G8,107 sL0fO-3JquE,164 YACsFmbB9Ok,137 AIQHqvG9Ql8,177 7UnKOlleCCw,127 w_5OidjXy5o,162 LYBdGadPNz8,144 ovxjAnlr7qg,149 RFAiq0Qr6uQ,138 dBbxzOOGUqA,147 cCwn-ROhwyo,257 g3WSsm57iVM,97 _SdYxgbXnHs,42 aDvjCbdyEHw,186 di3Xh95aXp8,130 Vmo12BffgQc,148 A6oAEu3DbKk,178 oMt4F9ELo3U,176 -rMac-9Z66w,179 MQ2PrvpAT-k,135 FcqJ2a3Dazs,125 5Ugqj1RATYE,125 iddBzE3syI4,91 gm0I_zdgs8o,153 ty_jbbvZDkQ,111 zkWthOfGYgM,86 ti3HSBmEoVU,142 yYCVu5ZSki0,122 CrlVTZFPnzA,179 s6QIbe248NI,179 u7IXETT9OEQ,95 J7_oE1uN1pU,136 lxl55rsNihE,178 cMFosgxgPAs,144 1Dd5HFJn88E,157 cNuHBU3DIAk,172 tF6XBuvWdPs,98 cmlELkvVPeQ,150 S1sbKYDgyWA,121 UDq-H6B36g8,140 40JQrUnvKUw,147 PsRTAWDrNYo,179 DTNDgoCP5TA,170 KMr9bWPy7u8,179 8Ojsvc_KsDY,145 FnPOuK9RHH0,126 X4jdgckXC9I,111 yIG_egCmhTw,130 FRvhNHgU6fI,171 iwZN1N7Denc,102 iyVCFSW_W1w,178 EfHvcHYz-tY,172 Qj7OIg9Vc-g,172 DlkXnN0cENI,171 jdYgR4Vqwuw,164 bJbTcRnSFAA,175 rx4sKoITt-Q,148 gxhMfM0QlwM,116 fPcbyFeefXs,125 ntVZPACMOYA,169 74PUHyVj4BQ,180 bWQ1ekGzhwU,116 hKuh_h2nzN8,173 FtPj029E3Qk,130 NTvvUL9OgLU,165 BB3VbfL6Xyg,141 MeyU68qSBMI,66 xLZDij_-ZRw,144 VkldXV8Pgi8,138 IVRy-Jac660,56 5hocAgn07-U,108 baNc64S4DHY,124 mJ7S9aUZgZA,153 pxSjP6JkAis,130 r8I0oejVPJI,168 AoPqvTGZv6g,142 4GYKaKvJ4Ng,137 iJKQl3uGg0I,157 Wla8a89Vm8I,179 6GhSM3Gu9VU,177 -QdBG7PfFeE,83 SlwofvltpRw,178 HCRagorblVI,180 2yWYCKoqKmE,127 21aXGNHDBWQ,168 mvgRi4K58U8,134 hEZcqWRB2iU,165 mExTnHwAcYY,148 3NpYTks1mDI,140 zLkNUykewic,87 STl0s9g_FwA,101 VBHqNEADzfY,156 N9EnEuH0Tgo,52 JOw4LqyJKyg,136 Cony281khiE,111 VCLL9aD-VKw,146 3rlz8tdE5Mg,179 nXqveIQdCvE,81 NONRLC7wAlM,77 RuZhnKanGQ4,165 772oaU4DFTI,108 SF5EacV4NI0,125 ra42YS4NRlY,138 Z9zrMe8Gn1E,161 bD8jQGwyuBU,171 UfoHq1-vpss,169 FYnYxm5Awfg,190 UJQvNi4m4LM,159 Csn39S3c0kI,107 4UOnDFoEPUQ,178 IwOoajZyRZU,161 MkiewChfW9k,136 lsSC_8Aqums,99 aELUig9qu3w,83 gvaa1ZpqoUc,148 8MSvuqf--9o,141 H0-STiAQTqQ,165 rZs0ZkhzpsI,135 KUMhlMS-z2I,191 LgKIQbxZZgY,198 5-2eKvFCqw8,101 GzMBisWrn_M,180 XcDzb6AeAI0,190 dIy6QpVNPuo,132 M1hXX6aq1wA,178 qV6EOCw8Zu8,192 5Vo99FUjbrc,65 FU0HEv8SNrs,154 NOACyJ1CYfo,162 2tqG6KMgyv8,121 yB1w-AypA_s,168 oY1tp2HG06w,179 yijQXDtxgic,118 udwKI7oFT6Y,124 zMbx4rZOMig,151 GrCmVFX9tyQ,124 SOR9UOc-alI,155 ZBvJyUTIU0k,179 58DPO_8Bd88,177 ZH81ElJu-Jw,132 aL_6-dQCzwg,134 gv0zKrCQscA,114 B0nhCPv8VB8,148 8-S0Drs1N9Q,165 DCW8XHP8ap4,154 P7J3raOVLNU,165 lLItY-Oyvt0,212 zY2G4v0b5IU,178 9RpdDbHL550,152 15WevUMiJI8,182 cWiljyh4NR4,178 VvfIdmaKwfQ,149 n94um7eDILg,119 3uIw6INr36g,149 tFBSGc3v7BI,142 ykcCGhbl1H4,127 n0Cg6MnUw20,144 OzliqFzK36E,121 Bwpvq4JhqY4,171 GvDcscZXfl8,139 pXrMAjB8ka0,159 QEv3zzKyiFQ,188 4OEhuma-rrY,116 PQbyl1vsn1o,180 1asspYdV3as,106 b5I9yFdAMzg,117 TDsPAXyCA9A,178 bqvMCDQ3HEU,155 SwarL21fqj0,128 Mcf2hNBzwqg,160 ppfnHlRju7Y,184 vWNDTaQG9jE,162 mhCiFB07I2w,154 pLooDtjrhv8,166 I0E-0kTdg-k,126 wXQ1EhVW2xQ,165 gq5WIcSz2ko,114 YqRnYf2cyI0,186 4QYYeDp44H8,131 Bf6I7N-DC7g,78 aUAVPdrvwoA,111 2OrlbOFhcUs,179 1kPvrYaCi4c,175 PkLpd8Eaah0,163 naPW3XAHz0g,174 AwtSK1gLBBk,192 fYNZsz9o3Sg,154 -ZTTZtzzbmI,150 6AWo-9MFBug,178 BLejeXcxLdg,163 6FxHQNSukfM,92 PXokYGWGASA,178 W95X207kQxU,154 5NTDlhH174M,120 -QT_Af7RLjU,136 d5Pc-tNsvT4,179 CujcdaQpYWE,177 giajSDY8kCs,177 w5WmCh-cRCA,179 LK5QIZgbfZQ,170 z-p4LnzhnvE,150 OwDRBPO9eKw,119 r_ckU9PkTbM,119 C0vM89y4088,186 oiYBUM-EE-w,134 F1ZPE23KT_4,150 nWd-gLPa5fs,179 x9mLSJS0n3Q,99 8gIZMane5sI,175 Br9zd0KkFTU,168 bZhBhpm6m_A,176 3xtKas3-ctQ,156 Y9b8tw9TR2k,195 iA_KZwlnrcI,131 BXXY48jjLtw,104 ukOx2hZvXkE,151 tG1crFI87ro,179 rjc3Et5D-2w,169 Kmnf2USgtiA,155 lhzE7_0RSow,171 SUfo49TsWOQ,136 IS-TH-YQbL8,98 hp3n_sA4Sqo,128 N6bOUves6hI,129 qYCEXS6Ws_c,175 B-Wf5QOHPxw,194 h5D7aOzmDec,147 WFAu7jYslik,94 Zti44ptZTrc,179 x1FhrhoudSE,148 1Ltz-vQPqgo,108 NePF08sMSDA,124 TSCcj7mYuhc,131 c_u4oXd_Lfo,200 84WvFryk-1E,179 abgTPYfdbOE,118 KzUKcXxbU4U,105 0W_kwmGYIS0,143 hM6KNsz7_mk,148 z_a4zak_zk0,107 vwrWW26_JHY,155 msqRzlYXXQE,86 9GBxXdJBSPU,77 oToIYlwJY9I,150 FAhcPXtCykY,128 xeLH_cCCgr0,107 S0wF9tshsyk,149 oUXKSovzDMw,194 4I9-0dipqo0,167 hdnrorjl0WM,146 tEWLG9sG1VM,116 xJb5tOlE1Fs,147 JYLVFSmlNFs,176 iGVsptoMsKE,176 1Kk_oah-wCM,86 TYA75RnDMGI,175 B0sO3FekHUU,140 1xXjjahIwr8,177 _cZ-D5Q-26M,136 415kITLNgvg,131 XwFR9NZfhUI,198 0ekAvNp_F9c,179 qzjPtczHQkU,257 07I2_etOYhM,105 WXUGWaYOnUs,183 85O_vS9vSCA,128 bWo3nlFcH5k,112 Irf50_-vVtI,158 LFVi_krq2PM,162 BQ8vGslccwQ,154 gS5vt3ZE-jI,177 aYTP2-S8fxk,175 nPGxeiD4mgM,152 MF_RlYTOmco,157 2iMVLR9jP1E,149 4XKZFS7EoCU,136 y3NLNK72mzI,147 FbV4VCCk3Sc,225 ZDbWeYRT7wo,142 VZRUqjnEPSk,156 DBooQQKsDac,110 7AB4ab4LtFo,176 R4ZGoNehEp4,94 ermD7PGA3Do,173 zIWGx1aneus,140 8UscACJkVxY,173 eKxv7whkFMM,85 XuGD4tGeLFc,180 ToI9OHLE068,184 SuoDkikuZjo,129 eYt5GYOLjNI,149 _B6AZdgQbeU,122 QhZbpE7mdoU,91 RMdS3Hi-rMA,175 rjLuhEOhj-I,179 0GGOfY9uE1Y,112 SM2LxRKqYR8,180 hotQs5eawqM,158 TvxfLhFGRzY,170 RPW4sx3UYjU,172 t1SbH-c0m_0,170 BR-kA4Jnn8M,69 1X2YeXs8FE4,123 19h6CYFMUBU,178 jcjMYkD-e80,215 ftOTPUX7vss,179 N35FsMxEmSc,197 Z4RCK8LAFM0,164 UNYBtjHAuSA,78 tKei1kTWmKU,140 hwTf9WurF4U,166 5xnSzPHjw10,163 EnAegC2mT8I,148 EDq1QNZ_JJo,166 -YiImyOVCj4,134 98O6geBet-w,177 TZ9xan53wuA,149 BF6tMv04X9M,109 hIHC635Q9dc,143 9EOazpvA7-U,208 UJ12I9sHqK8,175 9d30_Y2bF64,176 LZD-86lIgYg,139 TMeiAg1kXKs,165 WOBy9Q8Gf9I,71 2QKuy-mlQfI,132 7XaThsXXj_M,176 qIAWFde0FO0,176 TA4zkT8ov_Y,160 nO7qxQsQK44,166 x_BYzj4jQEM,149 Xa36SdTlCZE,167 x_-G1IuNv-o,163 jPRiyRmsLBo,92 4FkUmPvbDQs,185 wZcRiRs1x-8,144 bm3QkHapg3Q,114 kbGvnI1qIz8,131 taL06OVt4kQ,164 fBNzgfFkvEo,156 Ex-eX7zpZno,132 ox1SVCutwv4,181 dkjBBdHZNUs,84 uPFxRUeRfu8,129 PZBy1m-MmlQ,103 qbRoK8WhJQQ,170 _iMsHacXWd4,136 -PzL4MTu3to,168 fR8fl1fJftU,102 wRN8Q_Lts7k,126 TXAJapM6E-U,142 1x3IKujLO-E,191 318L0jBVIKM,177 VSdIYNSkQL8,136 VEsvArkVtYQ,209 fB8_lNQJ-JM,116 ybFMkEvDx60,128 b3lOpSXhT0c,154 2NNTVLRN-Ms,157 PgotX7s-2YY,165 yQ7JLXkHq2M,164 1DTrvZ3wxy0,146 ARgghWSmq7Q,86 rRlfzy7Rxdo,177 HCtR23MGwn0,65 YR4qgOi7VQ0,118 af1gSplQfPU,95 tS36ZnWoR70,124 zksgFqKxbVY,127 Kx56Aefjn7s,148 Q49KVa7jotI,155 Hj52vD7KGxs,136 _Mr6MQB8vRg,186 BNgJCuwM7CQ,169 AC9URVogG3g,153 gTakZ13l8xY,120 tqmbgqyc1bc,180 Vq5QdeqLYOw,173 xqb_BP27cMo,132 cBFrfA6TrB0,168 OSkFsRL177o,177 1fp6lBNB7aw,142 JEbShXn2-Vs,164 oS_Iap5D9jQ,218 MFbZe0ZJn04,127 _s3bHABazDA,139 blGRLfNok3E,94 i7Jg_6-fYF8,159 G1OstoTh_Bo,121 7S3biRDwbAc,171 mXz39lQAEmY,140 G8_iVf44j-s,156 68igl3sbzFI,177 b2hhdMiOTOE,158 UoMiVPjDb10,153 BjsuTimPBAM,220 Uk1MJFwGMjI,150 mHgXG0tmomg,149 Pg_mCxaEa10,180 gtngV41jpcw,81 o5CBItcNkFs,132 Gl5GVViqvjo,115 Ho0k513yN6E,185 7oOKwZlj4VE,77 zsmP1h809F4,181 MnLvPe6VSTM,131 vmOBZjVBCUo,114 DCThJoIT-bY,162 qqSS99m2dQ0,165 p3ZnaRMhD_A,224 nm86_ZWeUzk,147 j8cGENcePl0,131 SNwh7RP56S8,117 6VeUp8hdqj0,133 iMaL4la2Q78,162 sk0mjld_eow,177 Z7QbvD-gd0s,139 QLXSp9erPv0,170 GUDrinKzSus,147 YCiimJ7d2Cs,61 DII9AQZoUTo,74 TPDKmRQddq0,191 HlyzLOPYuKc,117 hKH27VchVb4,177 hf1wQVWs0DA,42 Fr6fIMIc_Jo,117 fC1zzL9DjdU,177 8PB5sU_QcUc,167 5jv7TlhbjAQ,138 1zi4R4EklsI,181 CJGeUFtiJP0,134 KAT5h_fimTM,133 TVViHShXqC4,119 oGV14YsOvWo,154 QPbUj6Ks8j4,112 CLWCgMVf6U0,176 COy16bTI_zE,151 43nQlnNaU-8,178 iqZmwwUvgVU,157 YwUShaY_lew,197 Igs1WM2pA54,152 Sq7RMukT_sY,130 8YQZMbgpmIo,181 gIaqrkn0ymo,134 fhCVsKgC12w,137 _BjawJWZIxo,183 vBLcmGPbryg,184 KEwC94CY-Go,131 g1axUa-NsEE,179 -SkeK7t74oo,133 4qseBKnxIpQ,126 iaxDwgBzVFk,169 wUVJf2CkNNw,131 PW3WxPo74c8,178 bqwS3qz3GhE,169 lQLchoQRlZk,169 e5cg1EeFISo,134 I-93Ijkhy4I,75 5AQC5oeDhDg,154 ei4m-fQ0bak,134 sR0wCC271s4,124 Cn_nTq97C7Y,131 MP414NY4kfA,124 hgQC-VGKUHo,159 cGd2BBjzb0Y,56 4tVEuWxns6g,178 ziue9g2nXZ0,172 DxdOJYRdABY,143 yk5d161ytXE,205 jHw_p75_LfU,177 FiVYtNf5Hos,94 jc2T3qbPJNI,127 PI82pNmQodk,148 QqQYNj15OfI,168 AvDUQXknug8,177 KsYil1zPabA,175 BX-hxkRsaT4,144 qEb51O12XFw,120 Qch6oK4qX2k,180 MBDyD5A2mQk,165 326RvY72nmE,158 Y4-vFWxvdjs,138 nepc-GLWtfc,86 SCR9s8egrmo,99 8QzFJA3QM7E,176 zYeRo6OtrYU,99 xwjw5TFPKwA,140 w4GgZsdpMDA,180 nM0h6QXTpHQ,89 UK-vT8iapA8,178 v1ef0grzZWM,97 UjOJ-AMtAzY,172 ie6rKW_Giqc,129 1jK2Y8vAM1A,108 iVsfWht3zmo,115 NXedF2XcFkA,176 1psPf8n2AKo,176 0LArIo7OUJ8,180 9-_TcYrv2YU,128 688uSEwvYnQ,100 L7rGRnu-2UE,133 csRJ-T2LNI0,162 ItDFQOAqEuA,130 kheP3iy8-6E,120 mHRbCgVCbIA,140 fN0w62AurJA,166 Kxyzb8LbVKQ,203 Mw8bNmfoC48,168 N0gOaE92ogg,150 cn35LhT9zBg,134 q_xuviCDyCk,212 YRCIuvKg4tc,179 1Zwl6vfqjNQ,176 n7l2RLvI7Ss,157 7fxvOlQLJWo,157 KnPfaGzmt4M,127 NvvU_4PsiKo,107 4wv_1umbZ-w,179 8QcReRkM8wQ,125 kS_QskTI8WI,148 IMPHXKW9ntw,124 9jL7oaQAPMI,130 KQDbtR9Z-zo,74 yoYPBCFehng,96 U6PrB5bbWRM,69 6Xn4tr2grtc,84 NTUNJ7f0tHU,182 15XqLhQ0_Oo,89 gfmtB17vowo,151 NTswp_20tsA,101 fbR1gtlY7FM,198 -Nj1XUtmKDo,160 gnWkYf8Peo8,174 _ODUt36beOo,132 2EojVDDg3xM,173 RMaNfwSn-pw,179 9Pn6NgaX8I0,164 r7aXjBDUk8w,122 9Wy6ekMz_Yk,174 1GfDQpfUaHQ,147 coDyfoCUaSk,178 WM3TedgbwIc,185 XIPjMKd3-1U,175 a2ZdXUZt3iw,125 SNXqtm-WAh0,156 Pk_-jIncT5I,165 TffPDHIwQtc,124 iewhzdra0DU,132 jHl4T9F9Vjw,130 f03hKUGdtzY,172 vLw24Xr1zKo,128 xI4s1uyYIX4,164 MrtT-vOpAfc,134 B6OtAXBRTSI,180 auMBMds7lQo,82 iUuWyMhkd9A,178 ryyEEyKD9EU,154 WEfMDGtX3K0,169 s3mwDA8sv8I,150 VRXkf4--IXw,172 0CYdSfhwWVY,113 kgYskjeMVOA,96 oeW9lZBY-VM,153 kbS0Wkxr49I,131 aiWJhEMskMU,99 Qy6dBc-9HRQ,169 VMLlpJdCYG0,179 FeaVbBKg8tw,124 iKQIxiobVGM,179 T-ELiRFK_v0,58 S-Io377-jmE,181 ZqCnbtz5IgI,179 m2aC-nkV1Zg,172 a7Y0CTo21uQ,78 wQFjbrojx4I,76 UiQdZRBhBAE,120 UVXRswx8I8g,157 pMFzy56i7RA,137 uj0x3TbEE7g,174 JjbIo_301ZA,153 Pt6VzQ_0k_I,212 IN0Nrftr8a0,144 ZFXOR2yoWCg,184 0GCwhGQEZ90,219 7lL9YOO31Ig,174 5gtFQegr2xA,171 CUzNygPSRZM,182 kIPK3l5gd9g,126 14nilke-mtQ,117 eVJhlVgr9lM,214 zSw2bGgrIQQ,163 WL4kf1SZAE8,136 Cd1Q6LsOR8o,108 7ktZEjwyFhQ,111 ab927ug4_xY,129 3EIqxstBVCs,57 lQhQeus0ItY,109 ThdpcnGKsVY,161 ZIHWAugnBWI,150 zPWwORb6PW8,158 vOJ1HPBID5A,66 ahCg__rBh1Q,181 ATOpJHEjvlI,144 KbOr1buhh-Y,152 Gfc_7pOTR28,136 NWdhUnTq3gg,170 CHs36bNm7xk,179 -fqOpmu8014,148 AZfCHDSJc8c,135 -vBO8PStfEg,173 mClqKZl0KEs,178 1dcHIATBkS0,137 exFv7Srgwpk,129 gQ5KDSBMFRU,175 -KVNfZo-cfc,250 AwR1RawiBU0,168 NfDBhc__ntM,180 ppJ38u-KyYM,154 Qf_EPkVA31c,198 PCn1uAs_0VQ,136 VmZ1ni2IDdo,183 8R8mxS2E_UQ,36 u6YtIOaN264,169 Pk-vHw-mstI,184 BbHxQ77anjQ,125 Exw1_k7Hj6o,152 Gae_um_eNZU,146 tDzuDRGP0z8,98 SeYgMYijdz4,179 31XcssmnGvM,148 WIBrEMlCGSM,174 P3YJLGWoPL0,147 YejzV_nWN1M,161 tuXSqMrfVW8,159 XBCML9xJI8I,178 F58XJgGx3DY,121 wmKfHN7NxeA,171 J5KvaQzBDoc,159 ZdmU6mM0Gog,178 nQeov6j0bsQ,160 06DLNzLaTlE,145 uSMxnpecSZM,186 MmBx8AMHTxE,178 O7z6rV8Gdbs,189 Rn0Qk4aHYfs,115 TzNPYPp_v78,115 I5RKRQcsDKU,178 WfCufFRo-hU,105 G2ngOQwMMek,159 mmSNq3ELTDE,156 31sP1-4GgsA,129 0noY-XrAJRg,180 AH4E6mdxZDw,168 dYaOu80atDo,135 yTq_QU464Aw,252 E_14d8dHpns,209 tg4jLJ6OiDY,131 j-7pVks8avo,172 cE5l32W6Oxc,81 5T4sIC7SB_4,176 ORV1uYzvZzo,99 gCF11he-_iU,173 bc4_fCULOKk,177 1Qd2hicvxBc,135 6U61OQAOe84,143 D3fVS2I9ZVM,176 nPRUkMAdukE,167 zpSLlRt7KGE,136 3bHDHRxatZg,148 A2yqIm58ULo,157 q289a8P8Ht8,193 yat2WR8Ishk,104 S5fwxvrutg8,117 wZTaXoogvDQ,126 hMbcMlAVxeg,144 Mfcqb8DD400,194 Ir4wUoK_-c4,149 Ntn3ksJwDpk,164 TwnfJ8d9NqY,127 im_-maHhOew,124 8ilbyubEDhM,172 DUYaGj7RBfk,182 DSO1F6sM63s,171 APxaNrWnSq0,144 sILyPxN_1Dc,74 ZhAeutRIUzI,170 UCac6K5YWns,179 3R7OdK-F91c,90 1id63E3KgH0,175 oDcNKpBgd_0,179 fcAhSCTiJm4,168 U87C_o3_qOo,153 XPsDyk5bJdE,171 pDj1GM3RRWs,180 5DWrrqP_HNk,116 Zagt2ld1pwE,129 NzJH4towI_A,170 5Ii0_2kAYlU,153 285xhqP7D_Q,178 F-HZzW_NS88,123 jzxMo2UKUKM,163 Q780MiOrLwg,168 LWIAWDjHhx4,136 wa_9eIwrEK8,182 4Q0eWJZIev0,168 M1TkG_zlh6E,170 aGE--b9ilhk,174 lFzZCgFxUSc,176 u7yQ7qs6Zew,168 o00oxyBzsb4,180 vFD6BbYg0-0,135 c_6SIVs_M5Q,163 dFuy0W8-Wj4,179 AC2swLcXfwQ,175 TShV3gWFAIY,201 xqmqskVELNs,175 U-7MSowBlG8,73 IPPeDiU4Vdo,174 QfATkY6jMtM,170 B1OK0eWfDB8,153 6hfzPfOrftY,116 zFxkzMB3qCE,63 tfiIjZGirC8,126 xKaCxkf1Ccs,157 fi7cppyGPPw,165 Ss5HAL8j7p8,124 9_yf1HCH5CY,129 E3lprGIkEic,139 oNtGqOsseNQ,174 0NXkZZqCGjs,134 dDX_fyIlXXg,73 kAFxKPtwYuU,142 WInIV1tcI28,220 h72ZN-oKzTU,126 QDroSLQiSRI,132 3oQd25IcII8,136 j0cqqCpIZHE,164 _zPImuBvnOA,111 Td_5-DJdFQM,179 SXVUCgoOcfs,106 SVSzVDnvkHw,143 wHfXZ9jcX3A,209 sRUb0GR0ZiE,179 lYtc2lvkpTw,149 iuPDl6n2vO0,114 xfdye3eXF8s,67 zEGnL7wKzXE,120 UcEl21V2btA,119 vmynulColPI,133 lBIi9tKMz2g,179 JZ5bvcWLEW4,134 LfL2xCfIMIU,133 7g5k1qwVLjw,128 Xjp16xSdsp0,176 KGPW4PnJtoY,123 FxvvnlcqLz0,133 DlJKjlgWFu0,137 ALfuWSv9YVc,114 VCDY6MTuU6Y,110 FsIaDwn2EtQ,95 oQIubudKQQE,160 uJw5rPEUblc,178 xxulNn8UDtY,147 y-gs5U3OMMM,167 2ZO0CFb3eys,106 NlPC4ag5S54,109 Og1Ptc7w7GI,178 H1TQv3qA7PI,150 EpcWBu5f2uY,178 kjo_zi4cLJo,118 9v9MVT2X0_M,176 N6jkWHo8D_s,93 v9pZdy4lZ7U,166 mDViU8OSRkA,168 OZJUtFROusE,176 qVzY2wmo8C4,114 lJjxm4xTVKk,118 BvS7NWvYZb0,177 p9kL3O1TuMQ,102 ejD-W0F0hr8,165 kZg0_oypRpU,180 1e_9GirqmoI,127 rzC1mABvnao,126 Tx1mcALQCFg,105 jdd1py-ilwc,131 i31XFSORRfc,166 Npdj1jv8JKo,130 UsBN2NyjX94,77 egB-SG97EcI,187 aENEFwxcrBs,86 IegMpeJM1QU,161 T6ji12DwRQk,106 0IQgjMYWVGc,152 8le-4mOgJco,172 CY5X8DD0ams,121 3SsvC_2wKI0,155 x2EI9M1XFOA,176 hn3XR4o8M4c,179 VB_ZrC1u74w,64 KHsn2smp4N4,203 Ys_zYL7K3KQ,101 fCNsIYsWjXo,139 taf0MZ5VgDc,119 syM_HVHMynw,94 lPFulJcbm0c,141 _-GaobqA1LE,141 O_rneC4S2G0,132 Q_GqOe9HFRY,135 hNiDZEwkT84,161 6IM3wUpXVfA,128 VlCkdkzOwFk,176 _I_F4a-oUyA,153 OqzgxMFTQfU,102 vsQak7aKH30,174 8jyiXMPl6EU,176 Sqnrzd0HCRY,135 Qt6F9WCle9k,171 XF33SnFIDAQ,132 Z9kPRWAjSNo,188 kD0zHgK3BJ8,189 M2AUEpmLf68,126 JT_59yK4Gm4,179 Kdu22nQNZmQ,189 CShX9zc_Zgg,177 J5K0XKyL3i8,88 8dcA5NLO_GQ,179 j_1k-SzcOrs,169 RCp2lpFkeeE,168 -2KGPYEFnsU,134 YDkE97uXjRo,145 Pb1N5TcA5to,115 IywRc7bHziQ,86 iCmT0IRM9Z0,165 POu3JnhEmT4,177 9YgorDRKoEo,108 2UK1aSp3bUY,179 q6j_0vS_NNM,205 QuZ_ak2qxeE,162 nvCEzZ3P_x8,176 tNnxJK7L3N0,133 89FuExOuBbI,138 jaM0sgoi0vw,125 Kxyzb-o56QQ,166 ApANYuSl7A0,171 i7QDt-z8ZjY,191 o-6E3Hd2OW0,176 4D1OVjTF1E4,122 yMiJp1nYlNA,166 oWSIUe5wYvc,127 i_rch_cy7dM,118 AqAm2IAg5Fw,179 TeeNLFHot1Q,77 YC0tFqipqpI,159 8Cyv7f65bbY,170 BwWzZtG_6fA,178 eI1dAmDZrZE,124 a7XZaIy4a9k,101 hAbVFxYi_q0,189 wSpvR9B8QXw,76 qaAz6YklimY,38 83Ax_EIMDVk,177 wC4MzUvxVa0,95 EYdIrPSIgio,134 4pSAjI9lOGY,119 C_TfdNAXOwE,259 BefYI15la84,142 tcgo6nFJXmc,177 Bjcu7KBoaNg,118 7T5KMMZfc_U,115 63Lf9kwyWd4,94 UPhZaK9jxYs,154 yRec3myBtsM,174 hAU8AQ6xlw8,159 _1fHeesAez0,187 U1GUJMTmoMY,131 HKcDfO71N1E,154 s9TKR7rSFfA,122 DHk_bI_wMcY,80 S5EWvpoWIBk,150 p8zwrVyJHxw,59 M4LzhjtD3YQ,178 DTdDzcr-7UM,93 jY2PzzjO3zo,106 9fUtcVIlocI,153 IjGKv209gAE,152 K2LCoTSVORY,179 F9ScROJxATc,209 ChD8PRF0hBg,171 P-M4AnVnnyU,176 xjdKPS6-8XU,145 CfRKGG52TPY,113 SV_eLd8wm70,134 nGx3WY944DU,163 PSjEQHBkcq4,137 M5mJMC_RpNc,163 LW8M-U3Q8ug,156 koWhZSL1Kwo,135 F6E2ojebPlA,178 3i7EvW15Lyk,130 jMvR4K4QICQ,184 kJnH45GslL0,122 vh2wmVvFUZI,180 A6b9rDbdOzI,144 VD8UttNfU60,170 Ece-FTMuKFU,123 -yyoLJuNIJU,179 N_c0y8BcKBU,147 tkWWtYRbnq8,157 ja00D_L5tm8,126 ibAU8weiUOI,180 a1ewWPS5ULg,128 ev-4cz3hlr0,95 KyfXb39rGT0,155 BH-EprDz8wI,125 q8woScnBklo,138 uuTeJ6tbyB4,171 uMWI1q_J3mk,131 MsUXCqHc8xE,134 ng95gpwSjZU,178 p-0nV3vGvTQ,123 wxV84RoUr_U,88 mlpkQuvDJbs,162 LtFw6_YJiFs,235 T6P6Jyhmj6E,179 kPNy_yGvpKI,108 2kV2EVWNqXQ,53 ZeuUMdNQTHQ,161 bsoa3DBmelk,107 h0aovIIojck,152 8ZkCvzJqCUY,173 QT1Tl6npLic,179 abTZPgqiEto,147 EMbzESGsxoY,100 1CKEXvHN9es,142 bCZVLjurkyY,118 ihJ8mtOVfmM,175 GcgIg6HEB7E,124 QAiVcQifKfE,164 wnMPRSiIiUI,181 Kdr51Y91SQE,177 ufhTl0M3rn4,112 6Gd4JbJxaf4,158 2r_EHD8QVYg,148 4o1O6Pt7zr8,68 5cbim7n9ARs,139 9WKilpdUoWQ,128 0C4yBk6syOE,109 hjhBzRH-plo,89 lHgEqIvG14k,102 5OfAMHeIr7k,158 ABrBbozUYaI,162 QjEfREkwJe0,151 FRSfDQyoav8,86 Oh0635HLx5s,146 GoqDlg4px4M,134 hV6I03_cIks,178 fthLa-kq3WI,90 fEwSNiZ3zn4,63 _2gI4vpq9fo,101 uHltDaQU1uc,178 TYCfoxmY_vg,185 My8kfz_Ddqg,134 3tbDLfgTAuI,175 hHRWVczf8d8,137 2WgBKaFO7wk,179 xNzE5UoQmZw,129 RcZo8hHZqkY,80 sPbOZXWbYNI,178 a8EeFNXk1TE,70 fUKoBAi7qCg,129 RgubwsCVg1o,180 oYQWryzBuhs,139 Ufv54teYXAw,101 2oDVJbZxmtk,176 RIzrkbF1-SU,144 FSj-BCOlGPY,177 Tht98G49dos,146 ATU0Znam5Pw,136 H9PmpwhBg8w,121 R66bHMRd6L4,70 VXkEBRtERnA,106 GY0btkKshOo,138 _dEEXgs7T1k,216 Fu82oMZobYQ,138 b74611maYgQ,116 oVLfIoIujHE,142 xbhm9F1ST6I,168 p0Iwafu7J4Q,145 lMA48vIxajE,149 ZdNa-FoYEo8,83 -zNnJiwo_5Y,171 6ZgWwouKUXg,122 95fAKnIgqmM,174 djr5QNJG73k,71 xdnibOE5L40,177 Pk-zBUDgesM,106 JIRijCir934,187 N5PNlMUcaPE,200 tZ2yXL_RLEc,122 WksivsiSF_o,120 M3DlQK8xFBQ,156 SV8jbzudYJ8,192 1IyD0DjLrrc,143 XfeN42X2UHk,101 x9GGBivRItA,161 rHYsSCKGZGo,172 ZsDOHhqqLCQ,165 fPEGcx4MFHI,134 rVQAt6GkMgk,179 xME4tintsqs,170 WK_rWzm86RI,178 hY0SFHtFq9w,173 9_GelFK6rdw,179 V-9fQTUix6I,185 6dDbnwQlCek,237 QyeYgwO4ADg,132 H0Bzz3gzvk8,129 yjQqsPi138w,174 75AdYZPT3nE,88 Vnp8CkPERus,127 lR8KTwcC8fc,171 wJZP20y0R2Q,171 E7CPLxlfKaw,176 t-lIuwPGT9w,165 7uYoJwMuN_8,184 Mgc3y6p-Bys,181 7-juqE5ASnc,155 xEnYDuZSSy4,179 DHYCHYsyqTc,177 pzE6SVUHAYE,107 ssK4Uc8SXnU,159 NY9q_Vfbi5Q,178 P1EIIQ0tZUE,174 vUbnqySPN8E,154 RgM_mn4oP04,178 68SlAT125f8,146 jPH8I5QWFUU,147 5Q52XfZ9no0,170 CScFydObPJA,177 SKDX-qJaJ08,93 C1PilkENI-k,50 CShHiYrQPGM,176 EpCLoqVPwqw,116 NWUxk3JPaqU,107 T-OmaEI2xrs,179 -Q6oYNUhNes,102 _zHhry-Ot0Y,177 huxXgcGvTPk,177 mkSxYpK4ALw,174 t80UDdbV3Mk,205 a5AnZBVyCCw,129 IfecgEak80I,197 TSclZRaacyA,152 be9FJeol_aQ,153 d_hNjBBdcyU,173 9n23ISvkbFQ,166 M6W-zjN_LYQ,175 gxsDfmzU-Lo,133 isY1TQ26Gnc,176 dyupZilayXY,180 cSSYFjtc4SY,149 E6T4nHj8afI,156 f4wmj-Nq9xA,81 2dPi-jM7Jzo,174 edjnSDwMFXQ,176 RU2IP_oUqyc,171 8cGUULb2K-0,186 cRgXwpwVe4U,176 O60YQRhi0s0,132 mqYkD0nMs04,91 lnfpTgAQ0Ys,163 S52bKF-hXu4,151 6iOxj7Lgn4I,177 eoffuyXUhLs,176 rl6soHoCV8k,173 9isn7V7c2gg,182 g1R5DmGvMCY,132 IrTJjUQ_xGQ,131 EpzearSkgOM,63 ZoYZl8-VEGU,177 TmFKGDfxH_4,136 y87LPJHRfOI,136 4Gs6pBwn5w8,93 zJ3hgBFfQy0,56 _6RI-8Ia4do,138 yAmTu-R5MQM,151 xIeyPrdc2Yo,143 PqOlbM-zmuI,141 ah_Egywb780,188 GusR6qF81kc,125 YV-vi9NuyTw,126 TgWu1QcM1Tg,188 97gMDmQV_es,178 CmMeT8MW1LA,162 W4kci76gyn0,126 czLSpZb6aWo,179 QlZ28Do9WmY,101 iHkMTqikRg4,177 9T60vF2EZNg,173 SjbUk89pY7Y,87 gM8trQSURdg,178 AtcaQ4_DBOs,145 WZNe0TD1E-I,49 yK9Y-rD7XGY,105 ZJF_1LQbKiM,166 SwCNp21CKes,111 9y7hXwrVgpY,128 Tanjysfo1SE,129 BWT3i-fgw0s,167 d6N8yKrG2Ps,154 fiP6h4VL-wE,65 q42thgSKkpo,160 T_pKvfMT5ck,137 VW_Bmy2Cm2c,168 TGqOd_3mrr4,183 5yGKubkHrio,124 a7gZgEpgKiY,110 gNCkFkii-tA,134 rLZ5aVNxV84,152 vp7r-h8OLm0,80 ktt64clTkj4,83 7UQFQ-FyV98,169 h0qniQTX3r8,177 PoIuiCAepLU,113 qKT2-0WUbGY,169 HsRwyJw5o7k,176 54x4n4FlV4U,147 s8cVCsIcGAE,153 EqNTVkdsTL0,143 wqQYEQ-fsLA,147 Pf2LbcDDW5E,62 2HMLj2siVxY,132 cVGZCFgH-Dg,158 o-kmndqHfF0,148 egrmjjy2Pgo,114 0PtKzdvq7bc,181 _kGt7Vv2Pyw,146 hE5rsmIsYPA,103 7qNZYicSJPk,119 KQlR_8YkRKg,132 71kAAVlpENY,189 6zfXkQ5QkrE,179 8CZcZ_b-Cmg,99 AgNH9Ktkrqk,158 uhBhYnRrOg4,132 nPeH0w6ZXZM,134 7URRIBRCm8E,143 ZCTqZhZRYl0,181 DflN8U5mO00,162 stqgd2mbvlo,153 jH1hWH-WvLg,143 OO4LqRUxinE,161 e9nVeZ8UE5M,137 Jou60MhXBcw,173 UwvIz7Vdhn0,169 8Wgkpfa5HMw,161 Kkg6cnUZ2vU,151 YDeGYXbeQV8,164 2ZTrUc824oI,160 kndeWhsNlJs,140 C3ajmVuQPk8,178 SOwJJPZKIys,170 v2qDlGbaqSQ,253 CyAW5eAhhPo,158 jn_D02Tvr4k,86 Xdzv5V4MVus,189 RxEkm4dDAL4,146 gpLzES4A7zY,176 UkamBJTqN8c,176 2U2zhXAXdhQ,172 V6W8AZMUipE,168 kn8k_ox5OXs,180 15gPYqGlkwc,178 UxHXWhEq5lo,163 8p6L3Vl8ezA,173 yEyQgxLmGmI,102 Z-DbvvyH6Q4,107 pxQNKJWZ-t0,154 tu6FDI4JBDY,104 KJI1SIvGZEY,178 mdgbtrpVBm8,151 sOmJgmCvISY,123 rF9Z6Hvmf5M,114 zZTH3HdE8Sg,177 aVHgGXnna94,177 MD9AvOexMWY,104 ZlzhOaHLFBM,179 yVRmafc7cqQ,118 cN2VCBTYgHI,107 8oZJuop-N_g,166 nBsxbjTIJxs,163 ABYeVd_JWss,178 KeiJDMd8loM,134 bHoe-hfh9WE,173 sPHeq8OM-dU,139 VWMSjhr1BZE,95 NBY0l7A2uLA,179 ngSM_wxh0lE,111 BL312TpdPQQ,139 JtgnLYdR2ec,169 Rdl0ApAeczQ,179 8jIPR2QUl_k,143 VQjjlqVjiII,131 DbUDOZoHYkU,82 1D4VF4WqJSE,82 X6keMEfkZok,173 6fJ9PDZDS1M,176 N_ooI6Wa0H0,176 NuTbNeev0sk,155 M9p2ix0s-D0,165 z9OUZNicTGU,149 SYffGozxMbU,127 BFSjHBVx-xk,152 2BofOahaB0w,99 xD1OPkq6-Vg,117 UvojHP56dnQ,151 yZ773W4UICY,110 bmIP1NM8GwU,172 REwimg6y1Cg,120 mZmMhrrh5vs,151 FzlxL1f-E54,132 7Q6ywfDSm_0,173 zeSe5X9ALXg,136 Se3ZAXB8sU4,181 zXF0zcwPGuI,140 VIlnM_wcw0w,205 -Svsz19yyPM,168 1fN7M_u4xt0,116 EHUO2DqnD-o,181 xRw3fodr6jY,169 86sXLVakflE,179 kZQ87E53U_A,113 pPCq9SIyHqE,145 pgDUFZ9TfPc,174 ryqyAX_lA7w,175 P8RUrH3UmPY,179 q-nQtR-WbIs,121 59rdzSTXs5c,163 9MSGSOjdViQ,61 ueC2ZLsV5DI,128 dc8glsGbIus,140 KJhlJ8p8v7A,194 GKNkucKoryE,151 iRdSH-u1wWI,82 e3BZn-XJ4mU,154 7oczRhQvSlE,135 ZLhyjNnrb6s,229 eBVqcDJbl5A,167 jXKc-0nVIkQ,181 S0ymo6QHMc0,174 YtqU_6Imito,121 6Nb7rSggCns,176 m7gCydjomXE,144 4A-T8umqRYE,179 0xHPBlFPCwo,198 J329mOtIQ_Q,177 YG0VNVGxyYs,71 oqQGFh5yiWE,131 7LoHCPOvmuo,113 Vk1Ca1ruQKA,93 qcYPASs4jMQ,131 QtQpMjuyHnM,155 RehVwEopIQ4,144 fxBoqr7OicA,138 81ZejwnzklY,181 ssZ1pf2Zuas,102 s_cz5JFWpzE,160 8VhgYX8xRuw,191 uLhrOeavvOY,149 7HWfwLBqSQ4,76 6D64t1trSRs,176 wytpJXfw86w,179 vJZe9sHz10M,86 h4lbn5nDXwY,109 e1oUspIUHEw,100 djh21tkgGJ4,98 Gnpxe9kO_V8,154 h4QvAd6nC10,140 wIb3cRvQYw8,179 vMWCg4TNWIg,104 GzL4f-4uQVM,110 TiQrmXZ_SZU,167 mat5twjYjJ8,156 BYmHra1d_Nw,180 8M1kdeDluRE,164 7InJqZBrCuw,105 JU_Vqys3Kp4,134 SccBZYmyjxE,132 0vuS4vo4c94,107 roLboEc4M-w,173 ZsqkTaYITKQ,154 _g79FGuo2GE,175 dXNmLJXEgQU,147 BleQjp9zglY,110 dwzoyEaHxSM,152 ETxIJN_avuM,186 NHg_SEfj38M,136 oXpKBkMq_OM,81 opWPxmr2h2s,150 UC6sKTqfgg8,160 ElBy0fKa9Ic,117 ZWszIB0z50k,177 g9hEJv2uZLM,104 aPDfc08u_s8,175 84gYIl6Zjks,192 lyvAjZw6O_Q,167 0bw8UM1eLFo,206 Xaj3Ohn7YrE,132 lwB834Vz_tA,131 JvG1hHsOFUA,72 eQ449GDHSA8,177 AV3CrPe-1q0,181 3N5u8TKtmfk,207 vZ3nHOtlQiU,154 czJL-TPz-5M,178 jqpkvCebSmU,122 _wAX37x54hk,165 vrhgkmAzWvo,121 8ILiVgno0_0,156 xrO8AQ4CrKk,169 BRBSfKmp3vs,136 agrpQQWiX48,178 8QDZKTF75Zs,109 6AWMlRhBN5U,105 TUMru_xqvMU,104 prAOME_9oP8,179 lUglQukweZY,164 gO6qemCFhEU,163 5rGPKIgdV6A,185 FeETSw95wp8,165 XftKutOVjQs,174 w_e5kx3ONfs,120 BLgX2oB_qn4,122 nxmaYsZjnXo,134 2hcGeToc17I,163 7bCca1RYtao,141 5UOJUZhe85M,132 wdS1l__SWms,178 klt86blKwaA,103 a7KgMV3DXw0,171 2ycw0UUyCm0,171 60QyvomMug0,135 pKsa_9TFG48,175 nC2HOMOxdkY,86 Uc--n6RoIgw,177 uJ2RTDbq1IU,178 Qrl_BpahMRs,172 1AlMY9fDHu0,81 ACcJF4BpXXU,88 JCGqUJddlS4,70 44BkOqV2jDc,39 5rVB1DFakzA,180 AYy3qj5Y84I,62 _XST7hft6k8,107 Pve6cemkiDg,178 1YrP2ICd6ro,179 cPBHxDtI3Ok,131 71Nmq8VOKnY,155 SH-HSmrjmBw,117 m9aEg5dlFOI,177 CYt5p4a8YzE,119 dEqrnOk8P1Q,171 L0PPveTZVsw,166 I2v7jlIBL1A,153 6EfYYxmfABk,178 n_ci8BbMilc,133 M4YOZHoDSyg,128 eBx_WJQ25Ec,162 4LvvutsvgrE,144 qXu7Ts5FWqA,153 Ghexrw8bpc8,132 ZN_59UzKu-8,153 S1Kbym7WYzs,218 oOhFc0F3jVw,94 WFUAl0Nly7Y,77 2haHRRfKLJ0,89 p4HqnBtsz1I,109 HgQDAW28DsA,152 ws5scfTVUA0,178 cmgeSY8YdO4,146 sjZ5I8l32CI,94 dfrJhivMJJY,92 KFwzRnTqgDU,106 gDSrAm2CKdU,197 PfBi1PAfWcI,111 CsXhHyDeJO0,112 a66f39DMwtY,99 jQVO3AWAgHU,126 2_ix6kre_tA,139 oezKQEF0deY,137 W5-oHwzdWos,119 9tHwS5Ymvag,144 RZKKrQ8y_Uw,139 IkVavN1lo9E,132 G77UaCXuoOs,148 Yo3rEGWrlws,206 RyZ-saoiIzY,178 lCqHKRjIMu8,124 sfWe6CUZUtc,89 TSQ770iqDgY,190 iJGazi2EdrQ,154 rsuNowyCF0c,184 aU9RYKxkRJk,125 qjl77Gp88RM,87 rnkIsbFHoB4,167 P94mqkWtfxU,173 oLJ7246t3-c,168 JOzVMqp3vMc,171 jBt5rfpIjws,60 RAqYpOzllmM,181 QD1AjTF83ds,181 ovFDrgui4a0,104 8HiCEPL6oa8,191 yk73thpx_B8,196 k_tU5DWlyeo,112 MJ9QAW4LUEY,105 VONBpGWaxL8,138 WKoY2kS1UNo,176 n6H7zga2Ks0,149 JFeaWHDQzQA,154 q5ZwRphkFuc,145 VrXUYjVCX2o,90 mVUQ88T2S6E,154 x-_17t-v9dA,177 pwuNGRVWB9w,141 MvRfyxGjA90,150 qK-5zQpICPw,128 gUKbFeHjYX8,158 lGVU-OuhTlw,177 bCOc7VCSox4,156 j0iplsU1qa4,168 4QCMLXFfJyY,174 AW8Vxng7dDY,131 W8EhiYDVPEU,174 xW2pDmzhD4o,133 IltqQORdPjY,127 fmRWWrBqiJE,178 BxIcBWi4ETk,133 dry7kY2BMlk,172 jBotZTDEcP8,159 heqpyT4kudQ,132 X8qBorenkn8,84 RNJ7CL89IFM,188 pduwe6sUsu4,141 X0d8qyjQ20M,172 GJ0-xGnrjBU,101 xHTAYPp_gzs,134 MBqT-UEySlI,178 FY8vuvzZHl4,161 m0DbfOnOBQo,191 NOe3intBN0w,139 RsSltFwkLPE,104 C-NaBwskUp8,149 yfg9cb_9NWQ,128 cwgaR1xDiyE,133 h9WDm1k4Hz4,165 nfFsHF8guzM,115 003kLKX8n3E,134 84UF11bJDFY,150 NIMWmy-1l4Y,211 V26hcTgoDLY,155 utYsQTUae5w,98 JqwzeAkRcJA,104 eZc3GMgzwyk,101 ZW-xfRn8vFY,172 QM8StMC7V6Y,186 NSTXoI3j4ko,144 5vFi7gu-g-w,119 LEQ9ISPbfyM,218 qodNg2Xr7mA,144 7SBBMiyv0kY,107 J6osFXTp7WQ,172 HUKu_iqYDOA,158 6p-S9nS21Wc,127 -wqnmuzG51c,162 PAw7vAf6HMg,104 FQwv6AGpdus,203 mCO14xw1nJo,168 jWP3sgGz2F8,171 HQCava8QqK8,120 aPcCjI--Cz4,159 s6n8HGwboO4,169 FWznyZ9Znuw,177 foPz4rJfgSQ,132 0Cufl5Gao98,165 V022pMeqRjA,151 PSWgZzUr_Yw,162 rtYKhaQStZE,171 _92v2IFT7WE,145 Tr3_HOXg4Ug,64 mG_G5waoSeo,174 8I1qHr1kjF8,170 vVbXluPyrTA,181 LRc6Awco5aU,176 GRADFiFVLJQ,105 IFVWE5XHflo,163 P-KZ7N30lFY,137 AnGVJ8Gv8aU,217 i-2kXcQgs_w,101 1DGrM6qhZHY,115 bn_Df5UNy3s,129 2l_mfcc2I8E,105 5NuvfSWbggc,176 FCJSJ2xtky8,140 uCsRqsNpF60,165 XhwgtlCns34,131 0LQZpUHbjDM,133 8rlAQ3q4RDk,135 Vx3I6XjqCho,121 v7Z3aLND9Xg,129 1kNZdy-IxNQ,203 rczP7CJB4Hs,121 m0etOugqkPU,170 rxno2wz0eKc,125 MeHr3ZYy_g8,120 srLwGlDe598,124 5LX01_nSeZU,147 jA83iWbczFc,172 8ITOvb7Des0,102 gFocZQa78ho,168 OrHgSvrG8Z4,164 Rpt-fbpiTU8,122 3B40Rhnt4PA,171 MLaMV6zQND4,90 JsdUzN20Sow,210 LWvcLI0lcFQ,123 gPAI19a84KU,135 YiCzTGRqCQ4,126 ybDsC1DzIPk,170 XB2CUyVSAq0,114 0RM_Ehtb5C4,84 yquyze0QbPk,97 w9I7PBSMBZw,131 1QC88NQZM-8,73 uMx7RJLn08w,137 MkNhAG2CUso,179 77DXn43fhVw,160 GEAh4nF90iw,132 ti39GhRZkrw,175 IMT0EqTWI6I,207 u_z2ttNkL24,156 7SNohNGz_f0,170 rvqm61CcOLo,163 tXF23iSwW3I,107 axWtCnuctw0,138 PiMWCFay_sE,187 O-QaGllHqN0,110 PLr1f84fj8U,173 VY50Mu29LxE,181 L5Jg3OVjPoo,193 ImO-q-hTdAc,169 6_yYxTkdIk8,173 UIKJTZC53hY,182 2oLedbPVWzY,103 TprgpfkdiRc,130 RvZfy1w-M7g,149 cRuYB2gXpM8,176 oyZblWujofQ,112 Sd4y4XC-qvw,179 lP8EYYjPEmc,85 5QFZ_Kh7vP0,157 45MzBLAUUpk,121 gcGvs4dw9CE,177 vNPCXKmF9LI,173 FmYGC2QdXd4,118 y04Q-2-ut0I,90 tV7wQ19UBqg,234 zPuVP5U-xag,97 st8QRZbJdPY,195 BbbXgjwlOpI,179 UbwxGgR-EAM,99 rC9MhZGgJy4,160 NyamI2ALbIA,238 glJzhylsfoc,143 K1ubjdkdmkc,172 ih4MIVjS8yU,178 ZE5ddEN5Nbk,132 yuQW4F1siis,179 ViF6HrzoOj4,135 piTAjb8dd2Y,154 2m-I23sWzEI,90 fbnpdWhOwIs,179 7EmNSHq1mh0,131 2Dlgg0Yqsd0,177 4sOjksh8vX8,184 6Tax5ajZYsY,177 knJ438gN25k,81 o-_ochO9CFQ,196 piYwvMvqXPg,171 JY4UoItJ_lA,149 cT1iUwGGUAg,130 KxcKAGtHl3A,100 LpDRf3h6OHw,160 Xr3vKjP1PUg,177 _AYtVmu9BkM,170 GoQhe_ntnR4,178 _GJG2JDvCes,129 j4OMpEp-bFk,134 271ymG6B7aw,162 NKjZRRw3-Fs,178 k8bJrJ7_LKI,114 cY3aFhbBzoc,136 oymR3xfYh4c,179 AJQd_pt3-pk,159 QwjfMOhKcTw,127 2cgMKpAGSQw,165 w3hwZ-7CWeg,134 bLqJo78X3OI,154 cRc7p5HzKIQ,175 YEdNAX9h_vI,150 Ak8uiLVkpy4,111 vDL4qARSaBA,171 35FF7e1-zCg,174 PB-KpT4zhWo,195 0EXwWYHzUNM,161 QWPntJVp6cM,78 nEf2ML7wkBE,130 EsTniU7j_yw,131 tFEKMdUMjEk,175 mRXz6hTAW88,175 wMa7Xd9GuUo,178 CGwzaIS-tLk,124 xlAwSNbAY8E,184 hH0av1iDYVI,131 dHSjJmNISjs,107 Q2-4x2KuRqE,179 ilXtCX0-CkE,165 zpccIJubm5g,123 xqtbz-pVp2g,120 IXwwGEJkx8Y,146 Aaj_WEYZJN0,131 kr2k20G3hCc,149 mdHpbI8Y7Oo,188 rzIs51GUVgg,134 GwowcP5KIIA,148 czOgJJqehv0,50 grdxSWSHJaY,132 o1RMSG4bnrg,179 m1JgMM8b9_w,116 _sZ4U5aOee0,95 afBwkWnwlD0,172 XKNZy6gahyc,118 9xbk-7HBIOw,129 7Tx0kjtoAks,163 e3RDBiiOJaY,129 E7i4pNsqnls,179 0NUDP-gxGyM,162 nzglM3ROd_8,106 i_3ktf3XwNU,142 iErVeElswus,133 6ZygVYbMrfc,122 sIDHrcDf-N0,221 dDGMTl1Ya78,158 f7l5I6ZPt_Y,118 kBTPEpA8BzU,179 NZ2qhFm6LO8,158 7LmO5fAuT8U,178 uzMEc37DGZA,103 1mqubJrf6KA,172 W09CmZtBFRQ,141 i1igdJh44yU,178 O_CorWKpGvU,149 2dB26bOiT4E,92 8gfk5E2iwdU,103 EOyAHaO7lwA,134 CECosJ9_6MI,102 os6khU56n2g,162 pYaJ7p8RrzM,130 mM5dRMY2u28,166 PDVyr--ODQs,138 pa1ZFxgQmUY,132 _4Od7V2mVG8,152 MI0ZlakXWFM,171 JnlOLl7Ew8I,97 3wqXNKYn-fQ,173 UwfFWXUEyfQ,132 QggV4W5BTkM,144 KgmFWHZXmiY,171 6C3HDhgTv8Y,179 YRruOzr9_w0,171 FJStfF_7w9k,178 lRpBlNgu8j4,180 Me3eSvA2K9k,131 QjJO-cEmxWg,124 ArnlIuuyPJ0,180 1RsuQNxE43A,175 hca09uawN_8,155 ecmDPqCP8ms,140 rNP5uIQxAfY,153 Vfos_yqayxw,158 g0RJFzg31xY,133 HPGSDBjsSWI,143 h8wzJimC5Zc,96 OS0rZQtDsoc,179 YZ5Y_GhXMKw,105 Gx1K7ynF1JM,177 qAfsU2gI408,168 a6cUudbbHl0,178 WIQhvHsTDU8,113 4koPfEQVo44,188 9u6xaK00otk,178 l_ZRivM0lSY,118 heoNF-PyZ8Y,158 x26Mst06IoY,153 6oqDO7aHVFo,145 3S5E22b49-Q,68 SLL5ziDWc6k,115 dR3cjXncoSk,201 -kHMOXNsE2k,122 oZ28XpWmN00,130 UISLDo5JtiI,138 xs8jGY2dnCg,204 --ABd2SeIGE,142 mc082fyyMQw,128 VOk7mIZRPzI,161 DzqzlpAo9s4,96 klnVwzouc_k,155 bPH152eXEfU,144 VCvOWhT1TiA,132 AUPdPriOg6I,179 Tyo-f87JA38,78 Y15QXiFUV8U,153 ESv_Pi8qlE0,127 QIIE8CobvEU,179 9ZEUnzRzvGg,111 CxrQd6Sn5PA,157 PM8-Hmfy6OU,157 E-wr7dD1n5w,173 a_9dO9k2TPQ,153 GcVogDQ4VBY,149 SCeW4Y-XPfo,172 crIlIvBYMoc,130 hCN8UAdH55A,162 MwdekXx-4ls,165 Uj6eiUsNwvU,196 C3J1AO9z0tA,174 8CouO6czPic,165 VBLIuICtHuo,150 xG6__eK9jIE,157 fxVsGcxK1nc,131 Ty0O5WKbLkU,146 7-H5Yu3_Py8,175 TTOlRTmEdoY,157 q5RSKejDWo8,101 v6Tkyyi43OU,193 IWmzBLX4j8s,106 NhtvtnrHon8,123 5A98txE5nno,117 VV26lYf6VyM,178 jEveVtZmPu0,180 T5cFTmim4Rw,120 JIkmOqrneTU,147 _liUxE_lefE,179 P2rpcVDPZEY,120 SUKdlcCiE60,105 WNUJIR9y-N4,150 j2MbvFYy_8Y,160 cIscGgQD4uE,132 wZj44nizNJ0,147 aiN0_53Rwjg,162 H5pj6ZuBgeE,165 0tVy79pRaBs,121 GbQy-0SzshA,200 JKbrP4cjzo8,149 8Pd2fpoD0Xg,182 CDwnIJ5ohu4,149 961QhyKlg34,174 S7iDxRJpDZU,124 LRHNkBU6YWw,149 SwjKQrYpe-g,178 Cf_0ggNhHMY,180 abBd7mEUNwA,155 DEcY6WXL6_Y,112 4G6VXPkfDvo,125 UkIwAAKv_iA,114 A-rs-kWL5-s,94 Wnocz8UrhQw,133 TvQmXzgtOeQ,132 9IYFHAnqOKM,195 mo2-63epZAM,74 XLMDSjCzEx8,118 _1rqGyHtE4Q,86 IxoCv_JpQVs,118 BGmXnidRtoA,209 G64ubBUMVek,158 61cBscxr69E,182 fQEGMNLTYPs,178 PzUxcPh1zPI,99 mmCjPdu2TC4,171 jSStdc_wWV8,87 _wU_3DGbYS8,161 raM63LAHuwo,179 PKG3eCpwYBM,166 Lr04AEabtnY,126 4V4jhMSJRW8,177 By05PXEvGWA,135 H6ImGh1Xolc,189 CU7-qLo7GPo,106 TGqv7BxCgYg,155 9HRIGCog9UQ,97 o2wFqjb9AU0,179 qXKeIDlP-ys,169 22hhTrBAFRA,179 1EJYZ1IlTF8,168 S64LeYg3Tg4,167 iMPV0eFLxbQ,132 phwcul7F-Ro,132 wMAAK7i1ib0,134 -u1uwI5qJ74,167 rRuulhJ2ARQ,176 CxQ4aL5IXZw,106 1PkqpkQQmwg,121 gtmmKXgSUwo,179 RIInmRkYOXc,179 puXiyRw_L6g,128 c1K32XLhn1M,169 FLjWVccRPOA,179 XTCEl_MFfHA,169 or6rCLpiS10,152 lXS7GWgCBWM,180 rcA0MBnPPM8,76 yNhbLL3Xvcw,67 8hWbptEarkA,156 PF2hIgWupGU,111 Rfl2M8B9WA8,141 LxAebgxJHyg,124 T8KFieVkVkU,74 -TqNDG7L__A,129 -O7sJe9k8w0,163 8tnIy3PuDiY,93 PK14gY9Gn-A,113 CzugC2PxerE,170 toiIOy7q4xg,96 q9FYBjSc3cU,189 k2-SBnbz7pE,173 OOfMTt2XfWU,115 i3VNgECX8Ko,130 Tid44iy6Rjs,120 yCrq5v5cg1A,187 evJPzjgv-2s,132 0zImze5PCFg,96 8gLOoFW3ke0,132 Yg53M7TYpuo,173 jeYdR_r0iGo,112 P20hrE8pmoI,121 cio6rIbCs-I,126 FKW1h53hSxs,110 WfAp-jZV5Bo,177 pN5RlyFWJBA,135 F2AbEJnPRYM,133 U4fnEAu1--0,179 yEeyJzItKAg,199 yunEcgw8va0,72 MnMwbnAWawE,166 2oFuSvs-WU0,151 lUyHKva8Wfg,178 YjbYhnnEDRo,176 -7mzQx0ebqk,150 W3u0prIyDTs,125 zdHVp6JC0mQ,110 hprw4GtCu1w,178 refu69Hu5R0,152 GwM5LleRnAI,160 0fAHVLBuwVU,179 EnfAVLatlmY,117 8_2tkIqD3Io,129 ptcDoIfzLtI,72 NPYyV_mq97M,118 NTTyF1mDtgw,80 nqF0yFLjiXs,151 wPw9GesZAcw,156 vlwrxfIiDBs,158 sidgUs-5R64,147 Y9OrRbeB-rU,134 iDTYtgkzpZo,145 -p4TkuB20bs,129 JyAbZxxgLw8,182 EJOewEP6tKQ,175 X67GWsa_NNM,149 ALw553euzsc,151 Mf0pWnkN_vc,152 qHisKG66fLI,179 eL62rDiuqDE,149 Hxc048RM18U,131 s_B1ul97bfE,175 ILwJA2feDRs,176 5N8eh_84W4w,117 SOa5HP_FHoQ,175 g3vxfUb7Sr4,179 rlaRlCFXUqk,179 oBURpv30IkA,121 W3cldIDgcoE,169 TR6tZ5CKRVg,179 OUztRf_TSHE,128 rTlfnymyrrQ,159 MBSxl8y36zg,155 ioQQ3gbY0vY,99 B3thiUpvzKo,93 DkGLIu6lnT4,217 wXzgVOU3Yrs,177 m8lzyaMZ-mA,235 tVBI-Fup8EI,171 2DgFlZwrD-Q,110 BjPUO_4HJeo,178 GHZSYBkKec4,162 sGLXpKnQfSs,172 x7qvOFN1QZg,156 rAdvJOAGEmc,157 m-ETkZmPNiM,95 v7tTCb-WU-A,161 kswPGoPPdwE,145 PD4Gq5GPcN8,112 osE84bZ1jNc,114 WRlIDIu2qpg,239 06h5HJo7A6I,172 Zdv1_Iimmgg,145 NlREC9TagHY,96 AOVHdyazjWM,141 vUrgn1Vm86I,144 Yaj2tnjamhM,180 M0iif-dNJus,173 hFZGh14H_J4,176 gmSeaKdO9IQ,125 KLkD0H3K5Zk,134 JvclIUy-JlA,124 Hj9q4NlwcXo,196 99IRJoGX238,162 zT4OxEg_-cY,184 mNUnCTKwS8Q,173 Hgee-O7ZAnY,160 _yxKJaVk4kI,149 _RG8hoGMxKw,148 wC2iSGzmdKI,161 6JIxbckE6MU,159 cY8yXitzluU,188 AHV1LepZ2KM,107 1Jk8IZYcxmQ,150 Bxh85MB9FOE,173 1NnwUUf3RMg,144 9yDL0AKUCKo,195 Hhs2RLxDgok,165 wfAfwKUkfHU,177 9j3KAnX0Nhk,174 5m9Bf48pWc0,185 xc2Ctw8pGrc,183 EqFFgltjVbg,89 TYJ-1E4hKAU,177 tQQ2Cp7xQho,171 tb9kVTItw3I,177 PlkvQ0NbjUs,185 VDGE0RPwLH4,168 dshJG5PEOqY,198 kOfY6wIKT40,181 WSYe57h6YUE,167 0IiCOhajpS8,158 mKrFcdRLGQI,157 X4JETt9w9Zw,153 kJg9uBKvDZ4,163 wIuKvNAGsH4,171 ncErLtJBlHw,155 sHjCcVC1uR0,104 WrZN5ouSodc,167 pEJHzQIMH5k,138 zFDNg1Swx0s,151 VeGtHpQzC6I,109 -wHSMnaUzWY,179 OpAEdqIIWpY,179 KXa2pXA7v6I,132 AkaPD_qTmok,208 97E7Kft_bno,130 tbu7lOVTric,175 YtktNetGOKU,143 Dj9G_kEq5W8,165 Xdp-MXh84BA,175 ttTyXqwsP0o,123 v7r2OuigZoQ,64 07mbIgWikmQ,169 9glAGvMjZiw,132 GC9MkHzTnRg,197 2g96QnNekOc,171 Zk5K-Z2enGA,139 gT7MQhe8gRE,170 m3CMdoMIX2k,121 XaI13YBdi_M,147 wt0klpk3tBA,200 vaCI48KHW1k,110 LWCK6VFF6n4,210 YjfLp0bll5U,133 t8vRwv9kRjg,184 cscOz4NHIWY,156 JanwLiyFPAU,114 At_y4RGfW4g,169 6wXeUrZ6p5E,201 wyifbBO6sAY,178 6loInvUSYEM,130 3Iy44xwjtQA,156 EFtdTsawXK0,127 EHqjx0MHej0,118 MdI5DrJ6V3k,92 oYet52yPgu0,130 UbQlBLCvOk0,90 kJ-UZ4DvYBg,103 pWt-GnERki0,119 _EPtenKdrDc,110 1GHCAqKWA58,155 c0XTkj3PIWg,135 UBnufwe-p_c,173 eTepvIyKhIo,165 qlyJNTOwkAI,173 8gvuU-U64d0,131 51reM6wq2XU,129 lzJV7k-LiC4,187 t1Wk3H5Xur0,167 gU886wmXhQo,113 3cdlwCCzujo,103 6fJNyx7kI6w,127 cFl_xXXCo3s,160 _pin0H9Udho,150 _525BmUkPmI,202 l0PUssYO5A8,179 9CD23yDPEF4,134 ALhR_LDm5Is,138 Yn_W5-xgf28,148 RY1FQGd1Bb4,135 NZ-u1BXI0YQ,208 ZYB22miPyjY,151 gmnU4tK8GOo,178 uov-TD5osLM,147 Y2NT0jeoBXk,181 UgtSRZHvyWY,134 ri8WqeTAUDE,133 G76ThtqLvWk,209 _PSEaTZSZEE,131 nhvRzLcCk40,187 c5ZISrFKFP0,177 Wv07oUFHGRQ,118 m31MSgGEIAk,178 qR9MgJkOFJ0,164 sWCQm58jJsk,120 nBZ39gX_FlU,167 kn5Sc8o9YTM,141 hjyWtmbAyco,176 n4pUbyGBD18,152 no7XR7s8Z7o,181 IzFSwZqBjFM,149 9ZmqIpTPFmM,173 RmEZwxFSsWE,134 F8vcszMAya4,175 TZdCMfr0Um8,178 J4ZnYc3tNyw,118 TknTP23YYFI,179 dmfgNHfdn8U,109 Eur_GSTH4oA,105 fcFKVVHQn7o,150 3SKk58UngIk,65 pFXW-7VNngk,165 t8_p_4sqv4k,170 KbRMCmnLU8o,112 I2s3FG8KpKc,135 nkVUb4kdhig,172 oUo_8mKGHvY,137 8e5fzbsfGCI,137 QC0kTcAlf64,184 xgkspBFxLi4,133 lwruhQqFttU,151 q8nzGlXDvO8,154 kBwVWrBk_uo,209 d5n-bZf3eVE,179 zfUzaYV1xfE,180 Kei4Jlhhz-Q,120 CbPAADCg6ns,79 p0vZhGqM_Rs,157 6wyRTKGY2Tw,134 z21tJkx07J8,131 L6Z80A-avdA,177 iwxe2sIgQL0,77 PkqrMMqSNaA,81 jgk96izcJbw,158 OgqkqYeNbOM,137 8Chr00fm6AM,145 w98xbfLGWro,155 9OlXAy0L0yI,138 7vx5baLs0NE,146 1UtDbLZsJ4Q,100 oxml1eY8urE,163 tlI--ATerwo,93 _r6i8Ae0cvo,200 pjHBTYOeSxE,165 cibZY1GwVQg,66 f0sDG0nnftw,114 cvNjYmDiV0Y,182 BSaGnAC8boM,126 mCsu9hGvNEc,179 8fBQzlJdubE,179 YZGetnQQU48,130 PxKcm6wWUJ0,85 XuNDB-xL6uc,104 IE9S8CehYco,146 _4EkJkuiwIg,117 mOicvmEloyY,131 AtgkgRgn8Y0,63 V4UM9BrSqos,81 P13rZWwIXmM,191 L1hEpMsgttE,172 hQmDmh3qA6s,132 _5uHK-fVMcY,150 34K-mcoEFuk,161 sp0O70Q5FAQ,129 Rf82VHBcoYY,131 zN8bZ1JjWWI,173 kqBMHRX-c-4,182 zha1tYGnAC8,150 ayq1fVd6Qhk,177 ok6H1OFTmyA,183 VA6nnlleAb4,138 e4EL5s__uC0,179 fZ99iSkvkec,123 h4XKQMfI3B0,172 wN1iAzPTBbM,108 ynC2_22yuGA,111 MQ1E_qYia9Q,158 HSjPTdKWcLA,153 -7Qoxub52B0,133 UinILaRACDA,195 m2tk7RatWsk,132 QO0gZrQw9KU,180 wQc-GpTtnR0,126 Ps3MsEdfpAw,191 6GEll0BI7ko,146 FS3hFDdeX30,173 xmzkZ12GMAs,178 1dLZuGiJRXA,141 6l0tsxNujWA,96 f_8dti9p0f0,101 E8x4G2WceJA,112 Mge3npvF4R0,142 OYpO9k6l8Bk,178 f0-Ea9Ki7YU,182 tRx8N7mJU9g,192 P27sTXSGrhQ,77 9xS3XqTSRr4,129 J73K7gabt-U,180 3XZ9vtsDiuM,35 hR8yyXbTjNg,195 JIvq1ObEOrs,179 hgGi1ODlBBo,181 P785O3-r7A8,117 08zyIFMP-LE,131 dACX3WiPVU4,138 rLNN6Kef3Yk,186 f8P51JbIp9g,122 3pEtiCv07Yc,186 r2RzBizjKT0,156 2cg4S8JO_hQ,159 FjT4_Bi-F0I,182 kTUnQubJMoc,176 s1QgQny2o5E,116 RUUhcK3Pt14,101 _5HRlIFjZiw,148 EPFnZSvRq6s,176 TgzbVMwrr7s,178 jS-7DpkGT_E,90 c4ibjfBu1IY,98 uU_ftZ6EfX8,178 NawsWUndVQQ,173 Pt2wNC6SYnE,175 m0FsyBlZtkk,174 nLMkSN2F2xs,165 s4esaE679Wg,182 sN16d6mhe-A,188 g_C56llGC1E,173 a4OWkIrQUJw,96 keTP_H6jqZk,112 XM3MRt89zy4,146 ZkZvK6v-L7s,115 NvUnzCHEfoo,178 re_liKgRGew,164 NqmZSSpvghU,134 JAXij_5Rr0U,129 EqRYx6Zgphw,61 hY6HUmWzaO8,144 s2Tpk6RnkaA,115 m-PsCZ_57MY,180 jJvvT_Sb0jo,164 R8UDjs0FAdI,153 WDAlAqy9WUM,154 IJIeGOw5bXk,176 9z8uqVHf39M,171 CXOjc3b_FZ8,100 jF6mqjUiljk,165 m4SWkyqSFxM,69 b7AjNXAF-7Y,124 fJqWAvvKS1A,126 gPjQr9sSrmQ,134 FPtvpjBEEqo,245 p7CweK_hS90,130 9f1adgpyRjM,131 -Ok6Y77DeNA,204 gC672314kEU,125 J_wbvP9hEFQ,155 r1NUy3Rq8n4,111 fF8O4drwH-I,177 7taghufoJY4,131 9SYhu10qJ-o,195 j1eQNUaOfZ4,168 Wx98L_LssbI,111 yvtb9A9ai9Q,153 xMjEmE1YLSU,130 SRlJ2SMwwYg,131 V6B3elF2pYU,155 ttjmXS4de4Y,186 WdzNa6wmtpw,157 hoKvbJSMShA,125 B7yi-MaUZaQ,131 dAoRRTPPIys,164 rz2FxTVVJi4,176 2wN8f0ezRS8,166 vqxbLAcIgiw,66 bp4HJ3JRxag,177 xSM_nz6gKOI,179 mUVup2pr_eM,155 wbWWF1RwQU4,159 bkhUe1txLoc,159 gx-03rUq-1Q,176 208MQEPGWLA,172 QyvbqZqQ0xI,193 WnAVeKAUxPY,174 -HjYVQXvxVk,175 0vI1R3VEREQ,167 yLJ5hUWH0yE,178 tskpXGAJMhw,133 XzUFmbuyrCc,81 57eIYneEz7E,156 ZyHoPZAsm60,160 vr2jJkcTcxk,128 oYuI54XUXkg,132 aWIcfkvKj9Q,125 AbU-6GsTbyE,125 MdfwpCH1Ksk,119 VxKyoOxyrdU,106 5PsKwqiRjEM,131 3SVCkLf0NiM,142 OstLbMEQM4Q,180 CYgNbOsiKtk,175 _pzN5x6Pepw,194 MfKGLmjlyLo,179 NUmE-c4ym40,96 Gokp5Aq-Yuw,206 YYsdcBacV2U,171 qeaiVveZWD8,140 iKS_327EF84,179 PKnfWnfvSGM,148 UfziV-fIbyM,128 M6aKImtVams,52 bTE69etu_fg,129 Ktn-Hd2BTzs,93 FeoFv3dOeqo,55 Xon0bfX3L1g,76 sFjraGFeU-A,49 nip7ztfMngk,50 nePEk4qB9to,152 9GFz8aB2BVE,133 9qzxNMENXJE,126 m2Bf7Viheuw,120 -g7jRpukoVg,133 vPTTP3gSLJc,121 HSckms_rfwY,130 wek_o4V_T00,105 DEJ_XECWRcs,119 sT8wMBeVffk,91 NpvlS6uBduQ,126 uSsUoxlSADk,126 y6daxZDW37Y,120 ba4niP3IwLQ,121 UUB75dkgT_c,131 pSNop1XHhU0,62 LhVNDhQKhJw,133 a5BtDmdw708,133 j_2-8115ZAs,47 AhHM_fCLsIY,108 XPRFb9J1CvA,114 OofNBvo-ABU,85 TfN-0IJACLk,132 s1vSb318d74,130 gW-Os5mjbGM,73 Wm_Z34Fyww8,73 IT-iX7o_ozA,131 keQtOFycgPs,163 I70sIrfz0_c,131 nII3ya0MuM0,174 eb6k3SU1T2E,129 IIr2CCwrYbU,106 Yp6X2N7tcKQ,131 1AU5OmlDrHE,76 lWvb6U-KZds,129 gWB-uAtqUIs,108 V6aDrQg-WVU,130 hXCnYkU0Xy8,121 I3Mg_5wqewU,130 urby-QPF1hE,117 5abHHDWcRAQ,117 zXm6Bc3RuJE,52 JpYjN3cZR3U,123 nWRxPDhd3d0,102 f4M5MT96FwY,44 bgCUriRuVx8,125 2eqWGVKtm5w,94 oMx6C31dCeo,130 fJBrWMxc_P4,79 kk2HQ0hCGTE,132 lKMl0NFXM4s,120 uXU3BDvq-sQ,148 ORrQYZCdCwI,127 rEWaqUVac3M,120 CY1lL585Gjk,24 LWxSBbBX4fs,108 Nr1FMis9MiQ,128 vGvDCmuDKKE,177 BYWVUvqDFh0,72 ZoFNL5lwimk,129 v8MuNXR_lCY,109 5Ei_2wS0U-w,108 Fe4JvbxKwR4,129 MhGl83Qsi4Q,132 ct9y-srjYjk,129 eC_Ua1svsSE,57 Jina0muBqRA,207 KFJmxST-xRI,143 7XFAamm-SE0,44 tlZsSLe35z4,145 zDYk7hXvQ0Y,104 xP_cM03sHgU,98 A2Eu5xmslWI,133 TsIQj8gZeo0,66 qCpSqCKBM-M,133 qaK_jsGvz6Y,133 uUPHlAbAf2I,57 HadRbtEI7KU,115 kMjUZodyvtA,132 C2gQo-0VW5c,116 S1s9cXYpxNo,131 y8Jkls3xgvg,129 Y4_1X9cpFWI,132 io2eeYm9sQs,133 N_20oqY8E2c,131 3skIjrkta2Q,169 WgcXxTUu0aM,117 FboJePoCAb8,123 pu2ArBfwZcA,180 l-uqZJwOieA,57 5XiEDoHueUo,133 YVOKgKYJB2E,110 Ed2KRddgv-4,114 dRTxXWB-lpE,133 4_4HFkbbbC4,133 SnpNDM1XeZY,90 nPH9cWTJgdU,132 BYoWNwhu0DM,95 ihyRhFcUVto,51 uKcFqL9-bHo,89 3mycwnQWlug,141 2elellCQiAE,7 uYBZAS59t14,55 Ij79LQXZDEk,130 4j9EwcO8tDM,39 XeN0t2sZaP4,153 Zx8vIjEKvT8,132 FmGg8C6mI78,133 331wiVQINn8,128 FosFEzsLKiI,158 bk9oFLFDsfE,130 WULhkipzltU,180 kb7T9oK0tF8,108 C_4LmbuSmpI,149 t8dJFMMvNQQ,123 2sJx9qbjetg,128 s_j4-cVHFH8,57 3fbtYisNC7c,179 gkGFvtW0CSE,112 ShQp2Qp6o7s,132 uEYm9Zm5zI8,83 c6GEJoLDcAs,133 cwJFMjOz_l0,130 g9GBuciv20A,199 70E-IYUdbZk,126 t3ttyoPvivk,133 Ixj8eXcClLE,127 uFzAxAEMwrY,113 YDV8PMVi-fA,107 BxQMT4R51Dk,155 KS6f1MKpLGM,45 J196d5nLSYA,76 BROZYppqsf8,118 hcWo8KXmhLs,171 5PT9OxwD6hM,109 435mkg6_eGQ,132 49LrC8wJLPU,133 JgYPxPGfaRE,122 HN-YqWQ3PEE,133 8ZezvNWgi4M,142 EFollUtH108,174 UKMuVFz3MOQ,120 APsmTB3F7Rs,105 gbu88CKkEzI,107 FRdIXmfm6PA,128 2eXbS-qG2GA,133 SfaY0KH76nU,133 sa8E_rZcXho,133 wG6wio8azyE,99 O4yuhvccQog,126 SykyfXBJgNg,73 mwAlagYhRV8,179 l1NB8NQc7wU,98 GDHVi3h6ZXw,155 NUdeuIj-yKk,122 jx8KlhQBsvQ,171 1EbSU5Zyx9Y,133 hE3jShGPscQ,179 cEjo0ajod1M,82 sYNUp5rAZJo,115 D9khHJTztKk,101 Yzu5yxVl3yQ,93 sOLnb7BrMC8,180 9iSVgAZ6bSM,131 7nO7han5KIg,46 _ptjc9Vono4,129 ytTswOdw54k,127 BztqFxMXpTQ,133 Jhxb2wWFK4M,119 qB2H-Gp0nlE,37 95_DB6GgLQs,179 PBXIOvTSzao,131 Mwk75Fek3qs,133 oqKAuNefcSM,52 k-oVuQpjG3s,133 8r_dXbWf2Aw,76 cH3mtHI91Sk,131 jNEnqzkT_QU,55 gnY0vVF0j60,131 iVpm6-9dPYs,133 HBdaCz2BeoY,80 132WIdxvgdo,76 cqOc4yl1bIw,154 6Wx2sfjX0qs,75 8aRwEJvaPiY,121 IlIhWS7-x1Y,133 fbc0TS1kJ5w,105 wz_y0fibuQE,89 ACiCfGoVIJA,67 trPOKL7Nguo,126 nqz6wwDRWiE,144 FrisJJ0G4N8,131 8KjAsaJdi2w,133 GdM1NCrxZvI,105 yY8Pf2rgP5s,107 psHsXebbbYo,131 neFpFiuvYsQ,121 uvFc0EPRSI4,126 0x6LPfRGAL8,129 5cU6TxpG_p4,95 kt5pjPdRDVU,133 zdja5DSb2O8,131 Dtou1hnP_Zo,85 kJsYKhEV6o0,175 m9rBv4Dn3Bk,126 pNJRoSfVZxo,65 PTCMc9G3bcQ,106 2IwV2bHqqyg,150 WRR4iYRRBLk,126 EEm8IXm88Tw,133 BgDmIxfkPFE,127 8IXVGrc3uOA,132 fCXWwJcplg0,132 9JVNdsyjU5A,53 WpOPOQw6nqg,133 ZmdWPv5R_J8,129 8NaBHCuxqhA,155 1BRteOP9UL8,113 Upj9_vP0WxY,143 vG833_jH7eY,133 dQSK2gmtNMI,133 RWS6EzAkSiU,103 GHZWWFmaFcI,89 B0asbGJbLKc,92 i9DMpMCCxuE,50 --RFXQ-Xlac,127 iJKhynhnPyU,101 PAC3F5dQufQ,146 o2vw_iYBAyY,124 NbX7nS8SG7E,128 q2nChVvlZ8w,132 cVA4BO2v7zs,116 QX1qfAa0np8,93 OMzGVY5_gpc,107 c9xahfssbQg,49 PoIdfRnQZ4A,30 xRtjf4AE2-4,133 2CEYOnJqPE4,107 CaAtavKP0-4,133 86F-fpdTJg4,122 9DJWMVR_yfM,168 uBB3Cvxq5f8,132 o7WSgC9oGic,150 -oWSoBQzQNA,133 T9tQanQSgQM,124 DXief-vtjIs,95 RRJ1EPuYkZQ,50 zlRuCc0kYQ0,125 dXQq9Y7KnmQ,132 u3XXKF0oDtU,156 7trB7i2xpfc,97 Ak1dPU8uXiE,101 V9K9m155U2E,133 _YrNQaXdOxU,178 3kX6rf9uw7w,133 vPB2g1y2VFk,115 DrIsPRZL578,179 iJ7r9jKl1so,119 uCtMTbKX6_I,128 q5BzDVDotzI,58 JCnZaM2qKYE,65 AKOtvcIssZk,90 KDqz--u8NYY,131 nl8PQAfhi28,71 45mmWoSzIAY,133 rnm2leIC_5I,130 PfnAhUBroF8,133 EiVRkqi02a0,122 C3hCT5jijpw,141 JtyvQx-YiCE,93 quzMffZuuCQ,92 uBf-pbxHb7Y,104 ZgngBG5JX_M,85 7ZFGP8b4Nz4,47 dKAvAAT2q_U,89 Doq_EUCSB5k,65 0MoJuaS5x14,90 TiupPnshH-o,74 H1JCgM_LHAg,177 JxTMuhVED0w,70 lWqHayjaOxo,51 dw7d707e-EI,133 iiA0J5rKoE4,112 faaBOJDQ_Lc,133 63exJW2rQdQ,152 rqVI2DmLI2Q,117 5Ay5GqJwHF8,118 L0oNukxzH4o,132 94AnEUa_z8U,129 reYcW3bp8gg,133 -TWsZukTS4Q,133 x7j4IiO_6RI,48 kcYN8phvjSY,126 PahVp7p3XHg,105 kGpNxt3bD6E,66 QAsI8z9qfKY,85 m7z0sOBPx3g,59 wV-0rTzEedk,58 KKW4wRDTI6Q,124 gI7UY6YCAoE,106 4C-aVLgAw8g,125 I_cEoK1mXms,130 gY7e586vhzo,105 5N0ifKLehLM,122 ahkwQhQZWG8,125 4QagAGmJcnE,78 v71Epv4g6jY,128 BahUC3EFWXA,133 71qm5ZOlpAw,35 CgZTVkjQwto,179 1TCzcINB8HI,124 HHqi6ZB_F0U,67 GurNiNV5XvY,73 WfUTDlmLMFk,180 dlYo5IHqD80,133 E-PIidaqCyU,109 uI8lzoeTASI,182 4jsUIgchHXU,79 0a_HvCBSa1I,132 eFU730P9f54,65 sRKtU9FF-8w,89 Fg9aUVqD1K0,129 op6H61wRi-Y,85 vWNDQxvY3iU,133 dFAd35ck7hY,97 AkR9wDct-0o,124 FPc4QZqz4ek,95 ecuuc8AsMjg,121 gPadm1Ql1Is,134 yy6j2LUyh24,133 TxhfeY6M8lQ,133 uSNvF3CEzno,75 VC1_tdnZq1A,90 oBoPQUIowHY,160 srTcK8ybXpI,35 HDxqSt_Ctbw,133 e8i7WCXqJ94,63 PSe5x7y-kVY,123 99odqGVYe4g,100 x2BuNuwZ9mg,88 tXp79rAS5JQ,157 ROO66Mi8gTY,109 GLPJSmUHZvU,95 _5UWCkgkSzA,125 ODZ_xokDAc8,132 ylGIAp_-JK8,106 RP9ywTd8bRM,75 NBTLvFg_ve8,101 Q6kNpNi_iJI,130 BnZTj4nADDM,133 RD2YJrvd71Y,133 xs0lwxmTaZY,129 jPiotGz9O9s,58 3FWjipa2Ztw,180 7gFoHkkCaRE,110 T04I6guPabI,58 KRBzWtOy1PY,150 XM3BsAAO8JI,131 0EC3NTMOF4Q,178 v-tma5YRyGg,27 6BsWrEwtDP8,125 ZrW0Vk-Y_TU,49 AWMxhZbiXLc,86 Amjfc9pRatc,57 Qt8R3n5CP-U,731 BWnG6--TRYI,35 P_gn8RkrNAE,154 rNoHdt36C7o,95 PH8Gh-5lQNE,95 CmyP-ljev68,177 mFxrm9Q6E4M,96 GsWZyvtX5tU,156 mwHOh0YPpBU,76 sYEGcfDCysI,164 c7tvfdSjRE4,173 117FZnev4Os,171 LGoKKhQPggM,180 Mn6WC1pxVNk,132 mxJtFvNByKw,36 IB2eLqqkLaI,126 qhquCQirt48,106 cX0S8SN8Cmk,132 y1tx1hn8Pwo,41 rWeaYCoh1qk,132 JBA3q4S1LE8,130 vw1dPsf0JgE,115 sd_I5ez3jwg,127 7rlvmkQy4hQ,43 _JZ7U3FsOJ4,97 f1fSmptANOU,105 zCB7RR3RaYg,133 ohz8_IafGwE,51 7hY_dAeX9hw,129 hGgWUKweXzI,128 QX7j8pCeD7Y,119 MEl5g32bzMY,114 CMbI7DmLCNI,118 nNXIh6RrvNw,131 sNGlmsj6C-E,64 j4ujHOSbQB0,112 NzfSLgWkTlY,179 BlG0jGX34i8,133 dAMqMErPIIY,59 szpq76d4ipk,102 Lt3HDRrYt9E,132 -2kcu-IpfoY,132 c8qfaEdYBJ0,132 I6_C4fK94-c,129 AA4zkmfbFD0,159 _PGcaxxd8Yo,111 OYwDIrdkJ3Y,115 su64KIPecuo,124 WbW8GgAWKi8,184 SQVw58aDt3Y,65 euorMDBYxrk,179 V5Rl2bVxD2o,133 dslpHxTuA-w,196 RNXEflQuWsU,129 -CgUGjRFukQ,81 x1ij_TEK_MM,133 2Wlur8mxYP0,131 j1tkwdfz7n4,130 dI7M4Om2ITw,48 _P4YRqZPT54,114 B3rFARaSAws,133 pYBS9Sp0xU8,133 kV1j2VYi7ho,153 kmjblNu2_6M,128 6_6Ml7hPZi0,176 1g9QEQrHOMw,134 hVxEoBe1UVg,79 x0VcDfDfx24,124 p1YmfANJdDA,126 ghew-s2zPjE,38 kxtAmNDjfj4,115 s5D8jf0k_1k,69 96sUPxlIfx4,38 X-_LZp9jUgQ,37 LEwJNM-Oj7s,131 RoCmHW-wdtE,76 WOjsnY1P7lk,161 vAUB7dcUn8o,112 s7EdQ4FqbhY,156 K58cPYCTiPM,161 SzJ6RfcDato,153 gLYTObRhcSY,184 EwYjmMjwF_M,97 xLL3-fP9NAw,126 lK93bvZ_fTQ,116 KuIheGaiFLM,176 Y-9QUziXV1w,133 qVwoeNk9554,101 rJSnxSjZIcA,46 yPBDhqwT8VQ,112 PuVXyMNeXOk,132 YNJflokcnFI,126 KqAGFmus6_M,99 99UdqbS8q2M,181 0JXwzlRcYWk,172 MDC-al-lnoE,179 pXEqXWfzyBY,42 yGbUcqCXe14,133 7ZkmgFpKdxQ,114 Drva4gp66lc,119 B4zWUki6-WE,84 oWBYpwZ5-AM,35 cx_45Z56ZQA,118 7uSz0mEtEsQ,75 Uv4YAx1nqDM,171 O6IMaR_G_sU,133 3gHqYddtmNU,132 csfyEVjimu4,125 lAklD2ULzh0,136 0wvJETrNQG8,132 F5eqkWRWZ7c,94 1NQhKtWHtmQ,39 fnTckzsYgg0,132 qPtAocA3m2Y,87 qqATa_flYaI,131 7UZpRynpUac,113 AIcUKqhFp4g,31 tlE5yK4l34o,55 WK682NdLvS4,82 1q5Us5iVWNI,37 wReulnRQA-Y,152 1KkrlhoFbBM,129 L24hGLbmNrw,60 JF4EyXhZudo,180 O5tNdOzsbvQ,179 HtagS7pfoJo,122 0TmugJo-c9Y,147 2GXdTkYEPm4,131 q_215iQ7KDs,175 q1Pz7ppcuJc,133 _cYlrtZSG-c,129 tUkE9qaVgmo,124 qSLZflG9sUw,124 C5x9bD6aoss,112 4xLBhHfpKTU,118 6GN20jud6MI,33 SHgs3LFLBzY,58 KcJs4qJPQ_M,127 iVoG7CivnH0,83 ctyDL-6f90w,142 9GxFab5uMPc,98 M94-kf_lXUA,121 7oQ-Usd7Tes,133 7SB16il97yw,179 09idDzvkxZ0,52 qM8jk56Vj9Y,132 XcNYS8j9Qkg,91 ygU3F1ho3gg,95 -meMCDrOmpo,125 gTWo9oLJOWk,176 yTeJ-41Tl9E,133 Ld6pt1jNCRw,127 2quc-iQ96R0,177 G4tfduPN3rM,90 smHHU_ONdGU,61 Q0i1ldFm-oI,157 UubHqEOLd8I,170 x_errHqd92k,151 0C6nvNlVx1A,132 ZEbN6Vnr1g8,45 AdiEXXKIcpM,130 vyQHWSbBCcQ,113 1SnPHdvPPxM,85 gZSxqyNDZvw,124 nJ04J0TWD1I,120 WEQOeQBpxvw,118 Zx0ME65y72E,147 UWyzrr2ch5s,131 Mg7RrLU3Uq8,90 X3mBsrFYwjk,53 hiq_FE5dmWI,132 cczh1r-Mb9o,127 LUmqBuS8GAA,178 30iTy8ws54M,145 HMziYymVYMs,127 xuQZJHfWf9U,131 6EEradwg8aE,117 Mo_AVIt369k,133 K8JhJPro-1c,155 jtD0Ml1CpAQ,30 M9nDop-5T0I,122 pl3Oay3HDo8,133 ji8ZM5nKsik,105 04s96zDt1RE,104 pTbelq2dtKg,107 Ae_PWQfCW1Q,113 2Ee6xrIGhcY,130 4NcH64kh_24,101 Ts5FbF_2Wus,46 FPPdbapD_E0,35 3LYT1O8DuR0,116 1qQEd9G7f0I,103 M-h1ERyxbQ0,133 E4s5mJQr94E,30 F9ktw07IEr0,131 q5rs99ZpXCM,77 u8QMY9JKlDk,98 DKCGcHQSvHw,154 f4ojzsvQhh0,76 ExU37Xz5Q0Q,99 Ad5ZJcmYc_k,132 VvfRXzxBe68,58 1sO7SyT9mS0,171 29NsPLHISNE,47 EcxB2iCU3w8,69 HEU-JXcdfIY,52 MCDerfZOnyc,122 BhtHFyjXaXU,97 sKFlL_G9S0c,147 9QNXD_Col7k,120 lC-DSaxzDzs,133 yRPwDJWhqis,94 2mmq2hx0tl0,215 YlpN0wDqUx4,133 vt0hblIsHiY,149 l6FPyq4wvuA,131 TEjRTNg51Io,126 ZOn8qKSFWeU,30 MXkFgmQ2O-Q,60 6hFxG-8I0Go,128 V5ej5BJ55us,102 FYDwyb7CJxY,120 wwzyveUAS80,102 LLyS4KzDsQ4,26 51y64KtGGRI,133 qOy1ncO2t8c,201 Dnfl290-aIY,128 n7cRx_7umjE,101 _1F59-J8Iwg,68 fvoNncvOHfc,111 63KOboifCig,149 qVZ2CgLYKgc,142 o504Z9dWRqs,133 bgXlHdBRpjs,50 rpvLdqBrY8s,37 _c_ufaxeSTs,132 kJg3GP4tH94,132 784nv_NRf4k,116 w3-V_82VwQQ,74 _IIp0gq_Jek,99 29vmOrsOjvM,117 S2XvxDaIwCw,78 z9SXvUdM_iw,146 q0yFqlPrLyE,131 Kr9_dJ6TPPQ,96 _pEz5emBI4A,123 GD-EP3ucPNk,98 yiRcSZp7tYg,121 AuWjXrFh1qQ,133 mtkuDgE-qOI,124 c5WfxwnLlLU,38 4l1Yek0Z1FQ,95 nJPju1f6p0E,173 0iz6-4QxGnc,122 0wNboYbgYjo,146 kLJCWb1apYo,111 yOJ1gWVYB88,121 Dei-j4tWI0A,170 TyoZkvsxrSo,58 H3ZYf8ECNWU,52 rRbF5cPxVIc,132 OCT_61zKMJU,151 B64yKhFe5Lw,132 DuyH1j2jMRg,108 EC64kf5_Ldc,114 EGWfothiSU8,133 8cp_Be49Tyk,179 YoQeksBRPLI,132 A63kIf5CfgE,100 4qMv02zxgdM,152 4gjiQwh1p6M,152 xCJZij74-J0,120 1-HbIkCjDbk,128 q06t8RTLqMQ,126 J0IXJNE0FXI,133 YnpzAImvPsc,125 R8-x5ORZe70,172 _c7XtFcDfX4,56 hZzQx9cEjhQ,73 pTptxpcYySI,171 FK-mY_mZAzs,68 kTk2jXiuo9s,37 fBkFWhWXWuA,118 9fwBPbt95vA,97 OTFCctdiS04,127 LBBni_-tMNs,116 LNIKYmO7noI,126 3cnhsHMhVZE,58 U5VW0XTFBZo,61 -w9kof4SQp4,176 ccAWioDHgQM,216 koWFIhw94xo,129 sk3soFv1wHM,110 3TWxK4Lb6ws,131 rhtLoA3X21s,59 Co2dpNsHMKo,48 1SOZ6caLdUk,179 q4lM2MGiS20,126 fsaidN93VnA,158 RkFcHUvyJ-k,133 FlxXhrDycHw,91 _9b7JgWu4PQ,133 e2g4Wr81rz8,133 lkq-Fd9TU8k,199 i9Iy9amffa4,155 MdTaJDKTgUc,133 RESwG23_YGw,133 C1kZTfHldfY,138 Ny1Q4bR5dMc,122 303wyvo5Uow,124 74256F5BtiI,150 9yPj41sNdn8,131 Fv9_YOL38MM,125 gj8H__MvM54,151 UH_mFlx9LHg,134 HIcIIBTJA6o,91 fbNz1vlRSyM,123 9fIrXo0raaU,104 IdSgAIq22b4,127 R9HPdX0TZAg,40 bZq6Gv7rP0w,125 dobHtRTf5rY,48 FBWubk2ItBA,44 VFqbGbU8f8o,180 VyydT8dy3Hs,180 PH5pgpWY1uE,27 SAo2EHsCPn8,118 cPsIU9BTbcQ,88 -zya4vJ-kQE,133 sw-oQlitqCY,123 OIyluGsy-zA,131 gRNkQRhMUiE,98 gmk1iStpovo,133 MQZES2Vkcws,95 5FZ7jNq8A00,131 Uoqe4phEwEY,38 C02zRnebZu0,132 dMhT03nH_HA,157 bBbLZ6m_9MA,133 SnvRdPwoMRQ,129 LUi7mkGXDRo,127 x7CGZ5vxlLs,132 z9lBvg5clr0,132 umOy9nT4Wpw,37 fLxSRdnGucA,133 YO2-9VWwiUI,131 gfXVOCNMpMQ,122 OQrzt7JI_DM,109 ylRqJapI0wQ,78 NDw4Lax2j0k,131 JJ83r886Kyg,90 9_8nY_LQL3w,124 9DKqoFCTC6E,60 stSweLZol7U,168 QnX_mQ9apu8,116 gprLI38JwQ0,85 QGNfrNJZin4,92 JXQWJ63fico,182 Ao5TqA-l2cg,131 XJTXpItCqFU,114 5dA3DePirsE,133 h8m69o_1PoQ,129 PFsl1cGHzp4,132 U72Ap0dAveE,121 IAsBghop-hw,133 NJmsKhstdgE,209 ZOoJoTAXDPk,132 NXMarwAusY4,108 bQutB3mYc84,132 I42_ESLXfWI,133 cu_A-aG8G7U,180 onyfp4uSmcY,35 JTu1R4b1yZQ,133 JBGkwf707Ls,45 MMeHpxjiU0U,35 XqtjMtEkDhY,180 lhZFyMTaIt8,133 EajaioMj-NA,133 RpatQWLKfAE,57 pkk8WIkTJPA,154 sj93sTcEJYA,114 w-4XyyU2w9g,131 kRg5-TIF9LQ,66 6uHak2M7cmc,126 eCfvE03ufF8,121 XwQuM34oBkg,42 bxgZWv4Db5I,174 HvJTquFs5Zk,34 EOCgXlRkmKk,131 j1q-QWHUU0g,150 8ucelPNuKdk,26 Iqc8WWvcTN4,127 9t8iEpdabms,150 g-GJDgd7D8k,131 4rJgIW-Qwzk,157 HQYiGnCpZa8,54 nfJqMoCXVho,99 SDesztIj8Kc,115 yOoGw9aTRhs,97 KjB6r-HDDI0,70 HdXfVjRZ0yU,105 wwLnrdD4l3U,133 oRKbez1LpWU,179 JcuE90flGj4,174 hjuYfeA2prM,179 KrDck8ocFu0,133 2YNlWDv95EY,118 E1I0hAxGFXw,127 yzb726TP-OM,128 5ZzIGV7JAwY,54 dpFSms_kfQo,130 C0SqH_PRfGU,98 MtTE8aWCe9g,159 X_akiwYsyYM,133 evoa_UWUobI,131 NamXvlffiog,71 W8_POt2KlfQ,54 cS3cT6vgiT4,47 -i9Fv-znJx0,45 uGstM8QMCjQ,109 JmxK_pBaG4E,164 vtjCVRm2DAM,133 sallI5PomoY,67 XkasRfjEqFs,118 HCqR0_a6_so,106 athtiym8OYE,69 YH7W2AR9b8w,133 mnUfDpO87Y0,86 E7kK38uDEeo,129 ELpItLsTKgY,132 xs8k31_ucJ8,132 9rDK1qdc9-Y,117 ZH7hyzPIbp0,83 3o2ACEr9NmQ,124 PuvONUFArdI,128 ifYK21xsVtI,38 VZFMY9mYu4Q,133 qzayNPEmoK0,87 JPasKum1U9Q,58 HaCRdT6wcyE,138 PlO7gaalX68,123 f0KpM0-h1CI,125 Q4DEaXN6Dp8,120 6lOPeGgf9C4,131 sPdJwBfuEDc,122 A_S1oRHSH80,136 65L7TzsFaD8,94 l8aozWddbPA,132 BT7WTaXcPLU,91 UaRyn-tb0U4,133 2A-SOVQvPyg,108 Lb13v2-bBJQ,104 W9Tdw5nG4dQ,134 h7CBrN19OY4,156 iYP5-Dl3rhg,180 jsZkkqLDFmg,177 8WraflY6rl0,63 DF2dkoIOm0o,132 WjQovCr8Tgs,102 PpD6HmPdadI,103 wVsMJ0ntvmc,36 zFgFyCSZUvU,67 XFrerPgK0kk,115 nBmNcy4zZNU,133 a88BNDMlPSE,68 _ElAIqSBTKc,104 AkOcZ0S8vDg,132 wxrmK9esHpc,133 Nrs-lyhcXmA,97 u56OqFjs1dg,81 yxnFEjVMK2U,132 gqKobRWnvZQ,133 _DgOdOLNiaI,130 aSUmLsp97mE,95 vFAE-ZIntVI,110 99PeJShwZis,129 NdYmIIbYoH0,131 MRSTpj2Z5cU,109 1YFJmGH_fl0,150 X-3TvjRKYPI,132 9CmgJI8aGDg,71 j6oBbBfhgYE,46 qs1QcRTOMEg,164 SmCSJ3akPIs,103 EHJoH9IFboo,61 uqMxfPMxW78,132 nekzfohNwuY,116 d_8TCN2wA7s,133 j-OcaLECz1k,74 TWjtzvFrA8c,145 lNWV7T5KlRE,171 iqyFc90L3zw,164 p0qVhhIfWr4,129 re5veV2F7eY,77 yAbQlHZz4tU,102 6X4Sukx3GsY,60 7VO2NcQl2-g,118 DTVnQBRfCAw,133 rwzNpFWiOTg,99 TJIWOgCUdGE,94 5qfoeuQFFHw,105 VUvB-jPvVuw,59 WPYqRaOm1ak,128 8COIJaMQGc0,75 5GlQJ1kKxMA,104 lPQ6VQzuyxU,140 DWoQcfvV1Zw,106 QzklMXES1BU,179 zk0AexuAhlw,129 9tzlsm5IvIg,42 azvRjKHhpfA,90 EZFLsjeeVmo,132 mtuuOV4FtKY,129 jocK7m_000U,133 lp6ibYQN8vQ,55 uJNHr8QQVJQ,133 aTaX_L7msxs,157 Hws-ExO9fhY,128 QQOWp3tLb2s,69 3JO11PBdCAo,126 btWDXgrF-bo,120 tB6Uj2RGhPU,141 Y9ewiC2bykI,125 O5ExjpCtg0I,97 MCXx5saaKOk,132 29E6GbYdB1c,179 Z8zeMXCxlmE,131 NwJEb3vJvWY,133 voPBcugOZPU,150 TofiEsdr7YE,62 ssukL9a99JA,132 P53a6QG4jlY,89 l29oT_LWdfM,133 GbW8sknTWZ8,121 58YNYqN6lko,40 ArXhfCr-vb8,132 ae-cYVuxBKI,131 yNDm5IA6nQQ,127 kxu97nWDapM,133 Sa6o9ovlX7E,131 m8-_aJ1BiFE,40 9JQRMnxE6No,94 IIjzneqtAZA,26 36IxAWko46A,133 _WyD94vNqWg,143 PNJ_FxaMYUw,169 CnSvI5JxRC4,126 6mreIgrIXQ8,130 YYV5f0Aqo4w,120 u3mupIlFIYQ,179 lDRzG3mH-DQ,133 9aCdzjCftgs,98 gZwxRw15AdE,131 NM_5sUMyd0I,173 2KtVKu9CfDA,130 -_XIgfmDa1s,132 qi_t-McN6Vk,47 1DA-nWsGNTk,105 SG4I8PHp880,131 jmCn-jfg8Jk,132 DoJaIZ2Sajk,109 p8fPj1-nKw0,83 eb46yXP211w,180 8t7NUEm0mMM,153 NnxcN2umAOk,87 MicQ48AuWhw,117 M4UpIJYB9Xo,69 rzXNFMVS7PM,58 pq9dj2Q6edw,131 _fJArvSVqEo,120 mZwKEa09xTc,133 EMTbkfgT_jc,78 fNMtHosai08,116 NFV2sZJrtDQ,131 d68yRIE9OvQ,117 jHZLatZGr0E,126 1CDlBLvc3YE,82 uaSkuUzEuq4,132 p4SqclCqxuU,62 kikLy1L-keE,133 xx2qTUg_buo,167 OofMJ6cwzLM,127 FZ65jfSwpAk,138 wwE7qkkri-U,138 h7wEE6Yx7IQ,128 TXs4RCJasOM,116 TzMGDdUyHkQ,101 934iAVn9CKw,177 F85KoecJotw,133 5sRrCX-pLPM,92 7xDTFtG9kYw,164 YIYJpbAK6MY,49 773E6GPll3A,179 8YSVapFtvtU,40 -AlTccRsRsk,104 f-77xulkB_U,166 EFkIZ-Zf32Y,49 0IL5GIcAS70,111 tcR7LgBVTNE,125 dMg7mCGd3js,133 ZoAlJJb4aYM,130 Nd5_lg9Ea0E,87 WzCgOrQn0GM,133 rylEfnxeUZo,133 6J8__fWphE0,115 Amd3bMqEdjs,40 ZJlmYy-mAZY,126 I_e8l4Lj8OE,173 rDXBM22wbrg,133 bXt-KqvrSh0,45 -9FxcS46YmE,132 UfmdBPl48uw,123 UEaKX9YYHiQ,123 WSlojAguwGE,43 8l4qdf_1nGM,131 xM311HohUzA,119 2ETruidd5lQ,180 CzOH54GemVo,114 l_OJuYjvKrM,79 Fe3c7Txx0Sc,113 3XK2wqc1cr8,102 qZBVXYYcCjQ,133 k72rrPUEDdk,108 IKiSPUc2Jck,130 fBqbMZ23n5o,133 9FLLYpUnuwQ,179 1ePe7Q_zH1c,172 8qaAKxJp0EM,180 PnUvSn9pVaA,143 AaHqtd4dUWs,81 BoTt0juJio4,119 n0ZGibTDo9A,107 sBDEE3_Z-cw,88 IQp7gtX4w0U,130 IUodLjwwSBU,133 cxQuvLl2E-I,64 8c-Na7OHYnI,126 lD1XDCbhtn0,54 zAeofWDUArU,120 BcufzXXaEoI,52 O-__QzkIWOU,295 HOpLncx62oY,152 2mz3oytpugs,141 aYzPUa-6BLE,112 dl1X9j-9Lbg,92 zWjlFN5hO6I,133 x0ce_01UW_Q,50 olxqe0CQ7W0,99 yAvJkoCNthU,120 RVbEs5DBPlY,128 36QmLon8dn8,133 GARQJHyaBD0,178 xeyFoIgQKrw,145 Cun-LZvOTdw,129 zNvYQ2ILSCo,71 hLrM7OaMTGg,132 pYdjNeFh6zw,131 DKtjBqJ4NxA,90 UUcH7wBp3G4,80 Lyyc9S3iufk,131 jpY79a30azQ,132 _dE4g2x-Ing,125 X6YLAmKFpRM,167 6lGs-tXWpR4,55 9Ihxdc2RbIE,46 xl01-vBoHsE,123 wwrzI3b5LxI,133 7CEYqIjhTHs,127 QL7Qq67AJrY,132 VLR_TDO0FTg,133 4SoC6atVsLA,149 vjvHNXSWvPs,83 AoWdk9CB-mU,133 6EFjbeXuNCg,36 oiikIyodOAk,128 OtCu9saoxeU,133 vjkkbQy9fLA,208 nYb42fv8pMU,70 CEtViNzvgf0,645 XmYC9RAMVeo,89 vKEqdQhX4lo,90 AMQgbNK7fGs,70 xvvx-0G7XHc,126 Rwtay9w8axo,85 hPmV9DBCrfQ,118 0qWMjgpIECA,84 3z0t0O6ZIPs,129 0KA8Qkw3nks,134 Dz9YWjkw2BA,128 YpIkOtgOdbo,133 -FyVSeNTqJM,130 sDKUL1YRZZs,110 8l7LGK2hnQw,103 Pnpgz413Wpw,132 vWyTTJE081c,126 b_BA368IluE,107 DPQ47h-k-nw,131 QCzH42efniU,133 ddGwvveSXxM,138 sHTeguzrPto,96 aU-Qp-5TsB4,50 _D2USWrWBL8,170 k79KJYXrBkc,51 feeIOZH7wr4,89 MqMD1DK0CTQ,94 hjoORS_zVWE,85 KuR_Z_vRD2Y,127 4pz2kXoDo_s,86 riicefV6xiI,66 LwELqrqsf_o,113 iMP3uLZl6UE,122 8prXNxNfEpY,150 4Os7yk5rXtY,133 sRk8Aentzic,46 LFinvO6-_T0,132 hBVvERsq-Kk,127 LekZbZ0ksyA,130 --VWN_KTxzE,132 C4Y-l40swH0,102 Cgd47hmpvE8,110 asxNFYNfOWI,53 SjNu8J7JQMk,62 1KdjUNIcP8k,99 q6zi7XGjQQw,114 r2ucpHgHo1g,115 PJkmvYEqRVE,135 uC1Lmk5qK2Q,125 kK6QQIvO9gE,70 hG6DmzzU8m0,41 9KstSfW1IAA,133 sc3H4UkkZgk,97 UmwLKU5DIGk,131 lkmpm4TeOvE,132 O5W1OfGz3es,88 UrIcAAryafo,134 7mtTvR0Rg_8,48 ILJTdnLyUC8,27 KjDfOAhtWwo,135 GrlUWh2ZlHo,180 19q6jSWFPCo,164 1Ez6dw3ywcc,178 1OQl89ewXvc,133 dS260nXz5d8,133 C3W5kkZLN50,115 MUVukUuF9tw,112 tVRPz6-Tkww,133 KNiplLivjQI,174 JEsQCm9Q3pk,165 YdzbjAEecWA,625 6ovOboVwB7g,96 z0ZnN4mivGw,176 MfeSSw69cC4,87 VYjyFQS3DWM,154 OMhzAcofd_8,132 yNvuIuWY3Sw,133 GnbUZqkXBQM,68 Z8auSdJSusE,60 BHWGn9p_p4s,135 x11OTizHwfE,108 CnT7g2Dit2A,133 dQRfWqSj3Gw,113 xZ96tl5MrfU,127 yb7aNfMvRy0,178 xz3CYcjdSaI,130 x-A6zERn6yo,67 qAhaYHHcYyk,45 rGS4bE0G3yY,73 M4-DIldIX6U,58 LdcIe3gGQHY,115 MQEwJdhfddk,104 dXe45jbpElA,122 fU9nP5V2vw4,115 _ZmzCV8muyU,100 ckjDSzjU-cQ,94 QN7he2e5qq0,131 vyML3Kd5wXs,149 ouppQFx3v-I,133 HppKwvQMZ4M,129 dPi40lQetew,134 BGX4nMrnxg0,111 qemi7V4jUjk,133 ETTsJggQl3I,133 NYFI1-FTw94,132 8W4DxSCopj8,173 7xohWvO9i4c,133 DMeR-bkC13g,130 4K8M2EVnoKc,122 DHzx2P4x63c,139 57TliyF8MFI,132 MH619vxtNdo,81 10Q3mew9R6A,121 Dk7DE4FghW0,180 EGa3R9VvDVs,85 r96GiSht1uQ,133 w5EQRIoHjQg,80 FKCmyiljKo0,106 M37QsnD6nZ4,127 6YbTy5AvRP4,133 9aHj6prYd54,97 y8MWkDexzRQ,144 34Rit1AnlVg,59 gcAaILQ0ATo,170 DaMf1FF-iZ8,135 jNN6FI1Gcr8,133 nmldcHUthLA,118 fCbf4DjlHuM,133 lj59KyjwK3c,51 TiHM7F5EUaI,116 -eIH1jFAGlY,100 YOrZHY_-ap8,132 I9uVquExMi4,117 OtNlrEBrp8Y,137 bmdgHN34hnk,92 m_PeQCPq8QA,158 zk6ac5Amzr0,129 nWWSMiBag1k,147 EYn7ZmFV2eY,52 pCnPsUo_p9w,133 EEGg9AZmHZ4,111 QRizQTLmAMU,153 6J-PhFYNbOU,98 jJZ5x-zUx28,92 OksadMMuXQ8,73 SoP7TLCtylg,122 Cer8qtPJiaI,132 dQbpx5Be5rI,133 oXybPR2g7VY,47 gXv4mbv8-cE,63 3lGZmV8_XxU,109 4Ky2p76AKSs,127 4CgNb8LRtng,127 yU5kwdXhSzY,162 fc0uxTiUDrE,140 4MG5Dy0gFFY,142 vSt6OezOAwg,57 GL2B4xLAjE4,129 AupQ8Vm51OQ,38 07FdVcspOfQ,177 PUH2nHjBYsA,234 TjpkMfTBVQs,68 yGMaZgUHOQU,235 0fwudBWsw9Q,125 jTtTZjp9ViQ,129 zlaLlT-5Lf4,127 yRLCUdWuyng,81 KOXE9k1TX-s,102 Zr0xGlPjTHA,132 u82elZ1sGVk,131 KH5Q12Yb5u8,112 ZgsJGHxZxcg,180 f8_4uckfT8I,186 u-ApxFOpl28,129 11TGIP2Kouk,99 9I0E9w8Nqfg,121 E1N0IvW6HyI,133 _nFXFkb8i0Q,132 5B5VRYzzz0M,132 qbYHRU551nI,47 lWTyXHZu09w,131 VsLlPXjtnVs,42 kGViaTOfSow,112 kBEhz8vw2AM,132 xwsTm8Xo7kE,132 uwV4iMoc7xg,53 fLvEcBoOpnQ,58 CdQ7AbtXZaw,35 Qub35DMB63E,130 kr_z37TgQO4,54 ir1sVy9JLyo,123 0-0MyjmphsA,103 lE4UQ5gh5Zo,124 Rd5dYQHoZS0,124 COGBbUM8F14,157 Z2WZrxuwDhs,180 FKu9sUXtjpI,84 FNWBoJNTc1w,128 0ZzNlA9uZ0g,127 Vy4OBSqz5dw,132 fHmesxUDVz4,76 fEEj6d3GTOU,98 YNTpnxwyEg4,133 TsNv4tohJ7Y,32 DUd5RPVDjPY,175 74Ern74xGsQ,113 QunxdSWz-Go,81 JWMjQEyfaQ8,133 vkkM9YAJ-Ts,46 yMRmV1Sj6j4,107 zmicfGmQZ9s,70 hyFgMOop-Mc,132 yoeV1e8dTTI,132 NoRnWATJPrA,115 32iCWzpDpKs,101 9vvMKxDvAt8,133 qoWjU8OAUaU,133 ZdN6HbD0paY,98 djv5gGXEyXo,179 vKjBFsyYC0g,117 9VEScwL3KGQ,162 _wpGttPSHdE,178 UPkb66KjZc0,196 TQezxXB6TYc,118 IAqy_BtCqM4,132 aqbP3OofrHU,133 MbrO-ZbuhIs,133 vm4p1tZAmEw,131 mRoffE53BJk,141 7xOOk5w5dDA,67 U6iLlH0l-4Y,132 vecXbFwYvPQ,133 ru6jbod6hHI,250 YafZPxB5DRs,133 js-337d3gqQ,128 KM9SPmAD6M8,56 qBFSCbptrJk,179 SmLwnNTfwHI,131 134ua7rOS4g,88 PlBpNTEaRTI,55 Qs_PHrILn6k,46 GfhTEwz56do,132 A4Ntv7DJURM,159 uOmtVFQ3WF8,219 nn3I6-DBLJM,149 lbiymQJsC8M,88 12Iosf6btzM,128 lGqBJx2xbqQ,177 zBErHC42Gzk,57 ocb7pXndlug,104 1Oetxnq_OG4,180 j4yXEmQRq34,157 dKMVUS6TC2A,104 Dj3px5kc0_Y,96 KXYxfwVioeE,114 Wzp2rpe06j8,91 KThMkPl6q5A,133 uLYYXvBlUgQ,83 qskwY84EXkw,133 Cg5acxVn2KI,130 i7AUpGXLDdk,68 EvQmjnk86zA,128 ArlsU2_cUbg,132 JZbJcEKVBqk,99 1LDL6H_on2g,133 bbuElXPp_s8,127 B52L95xRYFs,121 iqLDCIZ1DIs,133 s9jX0S7mvB8,122 mRmLfuhXHR8,171 la1tZNwaBog,131 RL_3JEsg994,147 Clr9NbvwbhA,28 bllBC-ThwjQ,135 wdaFZ0seZBM,133 psDnYKqgVT8,127 EHV0zs0kVGg,200 A-KN6ZbpIDE,71 lHqpwH6rqOY,119 9Najox-g4zE,88 cz1TJ4r7bOU,178 3jtF8hfimrA,89 RmISVHxjcAI,67 OBd1rEo-iyM,128 6w-07V2q_DE,133 pgET7AHDk6Q,107 tbcg51lQx8Y,133 J2k2CQgmaWo,133 ScHOVAo6tQ0,157 Qgsst15iI2k,110 59R3QIB6NqU,129 seqBLjTfnl4,180 6c_H45kt1_8,63 vJ3TMzKciS8,132 n5YGsbi7BNw,131 slW61xrU17E,133 Lh8dcvj-0NA,103 xl_aSDYuXhM,131 m2dMEucbXIA,132 2bx4g-8PY9Q,128 f58Ba78abHg,82 8u_gSd9eIO8,171 dxlbeqeGkQ8,133 89AsctCHnVg,142 kL4cEH2JdQQ,35 XOnuxo70q9Q,139 Lkxbuqvb5A4,90 FonBCrV4Fqs,132 Uk280jVuH1w,130 M3jyyQMbJNY,123 hnHERe72nQM,133 -zLOrCQ0BpQ,130 14HerspIb_U,156 9wr10j2nUJ4,157 g-Yufp_dafk,39 Yky4QtRX_DI,177 G4YcCF8uLiI,153 yuU67Mv4bFA,110 fZXtCHoRb50,140 VSDqDOLupNc,177 R7CbMBUNC6I,104 4lQ_MjU4QHw,116 fC976fuQm4E,133 X7futPJdeOg,127 kghbSGoV1kE,113 u3_3EUKbY00,130 Ezy42s9AacE,141 RjYsIv90zWk,113 2tmMMXTmM9o,133 -fIi-c3tSig,133 p8J-YmVs1j0,180 GQy5xztHVPQ,133 bTdvsBKjlbE,113 NHoU-7e_tw0,131 H6NlpE8B0b4,81 LJq1auJq_gc,152 b3DNx3kLY58,126 PTEskprXZOg,108 MFZGTRWVOjU,122 HvFU1MFkLm4,211 kQQfoIy7SNI,49 -riX6Xbvb8w,100 k98tBkRsGl4,130 I_yF6-3pXdw,77 9r4784rihOc,128 _f0TNK7fb1w,129 efNMnSL6Wlg,133 RMGsvyrEB-E,73 ADmX9eMEV9U,133 T0QshoW8SQY,95 M7iC24MaxxI,120 NIrF-rsXWJM,123 M4NDR6zyzkw,133 Z0W6ufDtdS8,123 6rTd81E226U,139 x2-MCPa_3rU,132 E6yFlIQxp8g,179 foll8sDGq4M,68 -Bprg2_s9mg,180 CVc6QvzHkk4,66 zoK9i_LiB5s,133 -UAElWXbk3I,180 UPu0PU6sLxo,105 ztSSzTA5Z90,127 xUp1My_eHn4,41 klCemtBU1cg,132 Gh3l6sVwMlI,117 al-tdoT3gL8,122 NgEOTc2qgVg,118 bcs2En6tGRw,115 veN5fuM-AwI,108 WBMHd6mCSP4,120 vvd0meL8260,133 LHv4eHp_gUM,180 xg4OR0Tpy6U,157 iJsNpzHlrgs,131 lFiX7y8KFoU,128 XW9T7s1U_XU,91 DONkgw00QSE,97 YDDzjijc6jY,80 KlWlhyX6rb0,113 cvmcGY_VwvU,125 1t867tCFccE,120 2RB3edZyeYw,147 On364s5HiSk,46 1iFLiN6E1qE,36 5sFu4iEF8dk,102 Bl6Wk5M1vjk,128 DcH_p1vfD1g,126 HcHdy_Vc1DY,108 Y0FAYOIt-VQ,133 WpCGV48yiNQ,58 Y4u6gpp399U,132 920BmIe4nN4,145 O-ydNrUWOik,131 kh0exWqvxeI,133 hP77V2X1Biw,132 QynjN9Nzr7E,133 r2NHTRgH3G0,88 Wy-H77tovC8,40 k-Rg51azVlg,110 l5s3_XV1rkA,107 JJ5290-0lw0,132 JaBh-B6F2sk,48 _flZU87W_Rc,132 bb_uXwPiNxc,133 jFPV16f182w,123 y7m2AWevwoI,132 GxGkcC1VrhU,131 _eqtVKrH-f4,86 -6OTbT0dkjE,97 gwXzOVu0x-U,98 4BRkb7LhkUU,133 HDq2KcdmVU8,125 4BXpDgTVN2E,133 Tt8DoNerIPY,131 pC76bYmEONY,128 tUpC4nJKP9Y,111 8_MpC8PcPQ0,66 0RlJNtKi_Pc,40 iB25eDhWImc,165 S9LRWazyNC0,130 KBUVZlTNj_8,153 qyLJCNyRov0,84 APS_K6M4Qac,133 UTAZimUwzCM,131 Fa1IN1GN4Q4,179 4YZy2deJstI,100 js-kku6X7yU,133 kTXlnI1XaSY,130 uPzTQvSPsqY,114 NAymJ-WVGOI,125 ZVpdb1HxgEY,133 z40Tipkm4IA,177 vj_NmzJ0mMA,132 dJOMfmVs9Ag,132 n4BJBz8GpzI,130 1wc_mZ86ypg,121 83twDFjlCjM,129 5M4QWD0U8-A,104 3VKQkg9cpio,115 HzF_TbmDH5s,133 FIKDkbVveeo,133 4lzhxfuOW-A,180 ZjDB3Pfl3iA,118 vRJ5cCP0ZPE,158 5bieIiX5KLQ,109 oY7QReO1WOQ,85 VMVzQ8rW53Q,120 JVWrVCLs8ms,144 qKut17314vk,30 -nX_jQxWFN4,94 cgGJhEgDgIU,129 LUr7o6R4u8U,118 -85ubSkzSWg,70 D-UBJzXzoho,131 Rv2hRfqlJaE,97 O47od13_x1k,132 Z9m4hRQkVSA,131 1VZzulIl0DI,176 pHvNvYijtBU,105 IdEsGZhAO7A,132 MGiNXAG0gjw,94 MdwuW8n3JYA,132 oK1X8SfGMs8,105 k6TPsaQRQus,62 LORyEX_5czg,62 KrwlDh465HQ,129 clr6zsehoTg,109 qOKE4dxjayU,92 HGU3PRBxQiw,179 2GMpuN48u5c,133 Vw_QOIebFpw,45 HqT0L6jFMNs,107 pOPWdQO9bK4,118 Ad4VvlLYJ9o,132 Le9uGkbtxHk,131 KY_G2f2R1Tg,107 DZN4r8p6KbU,159 IOXtBc7CJI0,132 Bnx95KyQEAA,110 9pl_3xQBPLk,41 5oav3ZjdRz4,48 khz9zIg_2sc,100 kR3VW07XfUo,133 E16S5BAkzQ8,44 pnTtzyItCQA,115 DsYP0ql5mzM,134 SuRxmapiDeU,138 1QDmLu5a0nI,131 Kv_9PD-_akA,127 uONmjd_RGk4,133 c-veUs6bPHY,133 qqhQ9jN3gj4,133 oOFm9UaRuik,64 1kj111rBzoo,82 5xzDAgFrnf8,63 CEuqveZyuQw,163 GbZMFMSKQ2s,107 cKewmzrevAw,118 GKT1gsoVouo,84 OYrxSQ_Y2Iw,63 ubgR8CKyzYw,122 14Fq0FgsKfw,121 6ibWJnY6Ur8,126 QAztYUCEhzk,108 RwyLbX4uOS0,133 sTYIlyRGrA4,72 AgB4n-1-_BY,168 6a9lq0bPrLU,36 OaSuSnUJm3E,124 jEHoNJLqbnk,133 gKY3ShRZPkA,56 t9eDVFrQDXM,56 P653N6uf3Y8,29 LLs-Oreo_bk,179 zAge7cKvs9s,133 PNOuZUHKneY,133 YCIqymquy54,36 _cZZ4xkgUBg,117 MfmOj8Rqcog,130 InDLvz0bN4k,72 ZMplnAKdBsA,128 NpiIAuEOzmA,115 qhAYzFv4HYc,41 -qG1Hke8w_8,50 bvRS9b2nhh4,68 g4-0zhNcrnQ,120 5uJV71s0r5Q,121 yr8bdlI4Moc,99 -WW51YaWO-4,111 56a5meaLhBM,39 G0yU-YJ6sjY,91 N_HXTmS-AF4,178 S-pHuT2666s,81 BP2zVb8Ufsw,50 o-iPiN_YHjY,178 FIekWUU704U,30 jYID_csTvos,117 FcqC3ZIsQRM,94 PPAe_7EK5yQ,133 3Z2NklQONgc,129 LYppdp_2GCk,133 Z-5JqDEHfe8,129 if34bKbBqXI,178 H2UF-eI_dj8,126 1JauH_EKpaY,95 E6N0yJRAAAM,132 M1fnkYbVijE,161 -nIwFGmgYMs,97 bXpq-sf0Drk,133 r_U2p-bdeww,126 I_kaUp8NDDU,106 y8SLxD3ATw0,133 tHdqS2Vda8Q,115 Qf8im5NX7JE,63 PWTptbb0vB4,40 TDecVpSLT38,110 qcZk7ketB4Y,121 5I-k7fSMhg8,143 B9nqewDmx2U,173 fgxnajrZN9s,133 wbVpwsKbFCU,47 T59ufBxosHI,92 7OmBXWA0Rfc,133 qmGHg5uJ7xU,129 f1gNWDY4gUM,128 3ArDaUOO6w0,99 5dSvsp3dxvc,116 7JlG7q-ld8M,133 KgSTMVwRSiI,52 VWELyY3orwI,93 eh3TXsx8B40,98 co9SNfJNDN8,61 mgU73GKlSFw,116 05nQ6FtAaYg,61 seMHoTTskQc,103 f2ygGoHSuPQ,88 Z5jvQwwHQNY,142 o-rVEtR9rfQ,133 _zSpueUqvcs,130 YW3MIixEps4,128 lBS9AHilxg0,127 HU3C0Vv0FeA,131 Yf7MT1p1VNI,99 iplfWUtKMzI,141 6aWxJ0cxD8c,73 5w8kGvQ2j5Y,132 MwAV8x0J6DA,128 fyI46_cfTW4,48 c35RsjYzAhY,46 32JbDv50hFc,35 Cs-L3psiK2Y,133 Rr_zj8D511s,126 5_2gW4c8hZ0,47 G_0ZVzUO3Os,119 -e3HqC2rbQc,130 fqM1ttqNA9k,77 MP7SCUB0fWU,133 7OXf2fFCRB0,179 l8WyXv7hQvE,133 dsCzZE_y0so,130 z0s6zZJdsZo,132 hgzSTQiMxj4,106 6soXf476aV0,98 Obey6WggwjM,180 I1L5vXswv0Y,126 wp4tgWYqjyw,44 7QZB_cbjdM8,168 bIaFHqnx6ns,133 YnKV34oNXiw,177 A7kyMbwD9o4,65 6mGJ0lFK8c8,133 fy-Ocaxlk1Y,121 nWAV_KcSkNw,132 yIUdnWv0MP0,44 GbLymMUHlXU,128 bwcLwZQGCAE,132 WlhyiskKER8,96 QxFgIsrvJR4,107 36T5BEpn3dA,46 KJI8TYE7DtE,124 L6FYDW1TC4g,122 NXwxYIjqocA,182 fVltuJq1SQ8,120 g9Znovljrq8,162 vbF4qz_-PCM,126 R80X3_lPzoo,133 W6GjHSOtv6o,77 CS-nCS9Az94,135 aqIYxDk4vh8,128 t4qrfjEgdt4,132 RAQD0bY2_OM,131 yMqQUG5t0js,90 6rl0rXHWtbQ,118 12DQN8oxKTs,133 0tjKGAwyCIY,150 UIfdjPDPM-I,71 H0AnJKKwhQ0,105 Fi51abVO4ac,128 xWHYmNrAFlI,102 1Ej-iuKgmvQ,133 YBc362_R2pw,170 fgMlyvq2oNo,122 LaYpVhckcL8,128 W3IgFbCSqSs,111 7-YQ7rO_JSg,132 YMz-skgeUdw,133 cOyt0_sRRvU,64 w-VBcSukH_8,67 xQvyGwbVWHk,125 jhFrFXWvnWU,67 t8eNpwLPwog,157 AwFtpeX3V-g,112 Iuz1irHmWLA,58 a4EqbYUl7Rg,133 Adh_8pva10k,133 mYZGSfnk144,131 ltO8_FJbRUw,180 lGIEwdZTNRQ,125 A7ZmPaAVJgo,127 hXWDSeVeaAE,179 _Er9cXkqWEs,70 332NO4_03vU,124 A0FU6cYM9Vc,133 S2fxN2JZ81A,120 C5LuP6tDw3w,93 TURTkb6N_FA,132 ujX0y3zcvP8,49 cZP4yFO6l78,121 JyjlwpXupvI,129 0cPmlvsRKhw,133 Olm0KUtsFE8,170 e6kJsyysbSM,101 wGvGiFhbmwg,40 lKE3zh_Hxqw,128 LvAIBDGIYE0,127 HXRuqpUG9RI,38 8C9qRHJxOO0,133 3VIKJMifm7k,133 H0UbjaTkx04,102 darXVyyQUlc,133 3uUlGkrzPWo,66 GSprkzio_pE,99 FNdcZckBm2Y,118 42xTE_bzg18,118 7BnAQgS15HY,119 f27cck3Bl-Y,134 uW8HDrKYisc,140 rIr6rEndy0A,133 XufQB4gbjdA,151 WQtoXhnhFwM,113 gQubL9r0qAQ,104 5s6vEQzHOcM,103 oKcbalkmH_Y,133 E3B_XdL7Z6Y,132 0u0P8j4vLyw,45 rNjX3tQMygk,201 qrzj1uVO-Lc,38 73ytL_HAwt8,85 f0-GryhUnSQ,133 LX_cW_dLweA,68 sSk2SvdopGY,52 aUNq34kNR0M,53 Udhn4vCPZ7A,60 tQPd0OAV7yk,133 fmT8JstRohg,38 ygVa2W2Qrac,107 iXyfNoBlpjA,96 QoJ5JJ3keUw,131 9w3E3eFMsLg,115 XhpJ11dNp2o,177 AZ042bsOWTs,91 nMtW7uy5RrQ,51 IthpPqgEteI,133 SM0CkReuGMQ,137 bWr67LK9-Uo,28 Vjiy9rCG-yU,130 dyVMPRxN0FQ,133 Q0bjuz5YBLM,133 Bj7R_2WWdKs,153 FFtP2SGrQsk,80 G2bsYSfXO5U,37 Q1MHXYx2820,130 i81cxbYNHks,103 aoXg7SSmGyk,102 Xi3ymXEMyjU,130 dCxgKZ5QV5E,118 utKueh6Yj9Y,132 WYzUtZMt5A8,126 LwbFwVf8yoE,174 Yhiy0ZHMyik,125 lplDv1m_Zhk,106 ATGMbNOmAYs,129 dAE7uOO_4v4,152 9JHi4K9XfzM,132 MAvccNVx9tE,87 pbmU2wMnuI4,158 i7tGEEWQIhQ,112 QpGGSlwgOPs,130 z0ogqhF4ems,80 MSVT6NNqldY,129 D-5P2iMf_ZA,118 SaWCkQzKopo,115 8gc-RSAJpH4,128 dIgGZA4qQoc,150 SAUabnHZ6OM,116 44TG_H_oY2E,180 vQdFnS_u8UM,54 Xy-cq_YpYPg,129 9Jt-bxV1gW0,102 4lat6XqtJ0A,139 tGs4xAZJkps,120 5ps3fGNzpd0,129 KusSGPyXugE,133 Yxzq9BLE5Hg,176 Tm3raIkeseE,180 nrqxmQr-uto,126 B2qVxDAonD8,91 jKXg2eMaNXU,133 T6RkPxawpY0,173 cglY-gszmNI,147 QY11UyRZBM4,38 S9eketMERqA,57 X5wAXtQ0oDY,129 cVIS31ghLNQ,176 W0ZgTVoA0eY,93 gsGm2Ohl7x8,117 zrECNEIUFZc,130 4jcflB38DNo,72 p0-xbD-mRLs,115 Yqf0AqAHhaM,173 QrRTUOebEpU,87 jLPtdXAVuwo,110 0SbVnjlPhjY,67 k4X42D5Gg7o,131 f7utYx1vcM0,129 FQqo-w1qvws,78 ErQGXlQV6vg,133 4t8bAQ-cGZM,60 vTFuGHWTIqI,132 PoS1eAVNXWU,129 VlS-HHdayMU,131 bWaxWtgjY1g,132 -hDPK865N9I,133 Z96Hz_Hio8k,120 5XW-Nxfx5Nw,152 gnI8phF08PE,50 sAO0owc4xeY,126 vvDkLhvUa2o,82 DvD9OryD6mY,123 I8PLjzTzy08,84 0_ArO8UCfyk,109 N7iMP1tPg7I,65 qnPV_MLgiIc,140 AHzW_z8rUyQ,91 TfzRP1tCmsk,180 r9aUxfTTLfk,128 ptiXfr5lJl8,133 -3mo5CqjvWs,60 aXbf3X56rGM,122 KRBLeqsoRew,134 lScMakd7h6w,58 o4SUU7XoRl8,136 XjC8-nEGnrE,114 73LReedA7N4,42 EMBCBSoE1rU,125 eXAvTZlmYF0,133 v8c2XZdCS_A,121 Hy37hjPUFWo,86 GpD2-wZnpO0,85 W91BHqxJIRg,114 em7EcaXPJF8,130 8aW-vJWY87I,81 HLO5LmnO8gM,46 804UN9XPV44,160 YTkSNIvrueA,133 7Q8m_vs3HzY,41 giEV8fvrDd8,119 ragJxrFknuQ,119 R0U9F4HexA4,107 pT9GPloXjA8,175 DXjOOS4zAq4,78 o3f521sUTaE,130 KQOWuUy-7qE,178 TDoj_T5cYhE,132 KerwQ_DokIw,105 ef77ViM-f14,117 NW2QM6c1wAI,103 Td8eEM9KDig,99 ExVWQ_I-elI,83 ucgU2DJlBiw,143 Te4G4EGjidM,175 HUNHxGDLfIE,107 4tnHIQmcSHY,182 rC0lnrzU0jk,82 rZ-_UsEBT5E,61 k8Pku1zXM5g,128 V4705kE44Jc,120 PQ-8JIzjq_I,84 NI7As3rOogo,133 JSetLbD948c,120 LGnYM0wT0t4,155 0hau_p3N-MI,131 aOg9IcxuV2g,53 yuI8BfvTwfY,154 duT6QvbGAls,142 ZlITgn8FjDw,133 9eUWf_j-y7s,65 VNtsVP42bOE,120 7U3F1uDBXrw,24 Lmsukmz3QQE,64 505KGEuKbNg,133 FX3YO40UDHc,133 xTyEZA6ILOk,90 5vKDb4dLu0k,56 OEgLZ58Xe0Y,135 1G5jMgx8GVU,169 sSx4IDKK6sg,80 dzvTHhWDjIg,92 f-ZCZ5BNloQ,90 Xh1Ls7C0UrU,136 sWTHIrA5L1o,122 KPgwj44PoP8,63 JaIhQFDdcJM,66 BPNUN_aCFAc,133 MSIAnJPZeaY,133 BcmM6kMxyBE,133 RTCMHLpNi4k,133 AEMXmcWOnwU,93 qRnjswr1swo,127 8WfKSXftr60,187 GCPMRHNwR8E,88 9-zf2UBp7fY,159 wY6sZJKyxo8,127 _E62a_RCtX4,124 oHJVJ_MEyQI,178 NWsc8gC3nSw,44 ROUu-unQieo,107 FpgyrIlhoyw,133 qUDMInHr_wI,133 3GoXAgg7rgM,130 5Weaop_aiTg,133 iHWOj17ISfk,133 XjTFVcgR0qE,129 zZK_bkxhJes,132 pTCTgL7_9gY,133 thG4yP1OdgU,118 c38GMlPPCTA,121 5kiNJcDG4E0,133 nXJxxahiC3A,132 YpkqDHGJzJ8,121 OJZhDHdlk3w,180 T2R4z7O4kg0,133 DxTFwXcsctE,109 OWYSE2bKbNo,65 cg-wxqxxWs4,97 VwYovLPAX0E,110 1ycpmrEl-9E,126 EmTXI8HV9nE,131 LLjiVwzeDb0,130 1_-RGLVHmOA,133 eW4wR7-iOMg,132 AM5EYO5wWMA,185 37KddyjUxnQ,113 mTfTGanKAJs,125 P0t4ruBVxSA,87 OmQGN9X57Ts,131 VtkM2SPaSJ8,105 N6HCOGj1lNI,133 bBil15ORYI0,123 oaVuVu5KXuE,172 KMD8yO3iM-E,74 C4MVQby0InQ,133 lHtMdj1rZks,45 VlaiBeLrntQ,87 OjS7LxDYad8,175 N7W2F1GcD-A,132 9zYrXFG6zSs,80 53GIt1w0LYY,131 O5Dec6RdFzw,148 fgcWfVvT_UM,116 nS8tqsjySaI,125 KNyFPVliMEE,180 bc2muGlQIlk,149 hEDeIvU1si8,171 x0YLLkr7VfU,131 0qvpcfYFHcw,129 WJeOTphX47E,47 iPQfwmfRq2s,128 pmLP0QQPqFw,67 _VA5a5QSYYA,133 jmgV3OFn0aE,153 ntxIBzJ0tU8,150 MLZZos7_fYo,81 ypvrfx32T0s,53 Vwd5W0M3ZC4,103 DZwnFcKAt30,63 BsxYfYCbVC0,133 A7UHJpZ4Jrw,133 OkR9Bp19nKs,132 Vd1j1GAExH0,157 vuuTS_WNw5w,68 SldtDNNTA2s,180 TReOE4LKcT8,124 ROhFRFmHexM,43 -4GsCEopbd4,173 t6wgyc8p_hY,157 XgZihg6-VZQ,189 vE_xjjCJWng,130 QZO_QFM5j_I,121 o1Izq-E3o7Y,180 U2ZOhOknNc8,133 zyJgcHwLP3w,42 uHEG_fTDZss,133 MLNvUsTBGyE,170 Ti9VcWX0vEs,103 plqzeUB9B-w,37 xs1kML847Ww,133 PLq5N_kVO5w,117 unl0GXfJRLA,55 AK0MPlMNHQ0,45 TNQ76UyurLA,90 R-aJ-2y5ICo,49 8-IbFKbycv4,129 XiYDPHi7Acw,133 3yp-s7ia9iQ,129 PXW83EUbeTM,184 9ofxELr5sa4,177 nfV87TgYH78,165 1g4V55DSrbg,133 tULIFKLFp_w,133 Zo3a3XvzTaA,90 WqO6vJTUOkM,133 x2WK_eWihdU,118 b9abCIgGxT4,113 pX71mALOPKs,180 yusKlHgtvIE,126 5RmABh8MCpE,50 KA-LkJdOzHo,127 wEnaRGQc8Ls,131 oQAY2uslGuI,57 3r1ssg1LIt4,229 0WjELXl_6zA,133 Rn2-wALgmMk,113 dp4qnnVSk8Y,107 y6WmWVpvGqo,74 5smoo7ipoc0,122 d7V9liYn-IA,133 VgyyxiZGzNo,133 80x9FmKsyg4,134 kBt6bwRR7ls,130 voNs3aHZmQM,116 jaiWxuKmaa0,131 hDH1ilg9NMU,114 BU6A7rn15oA,119 FWrh6KWGFo0,53 BAF9OAO4TtA,179 92ygYJw9CSE,94 jMaeuWl4qHM,104 G-ZJbAdw1Rw,180 t9iFa_dTcN0,133 Lpk6lNEGrg0,132 nfk-kn7YP04,178 XtadtlSUNQg,131 maEC9NS6CkA,126 E_tY5yc-yWU,173 0xW-3QH_WGU,133 FHmPBAJK4CY,28 1QjC0jXb-9k,64 qs0J2F3ErMc,133 fvxvrapx3UI,131 4D6bHTh4-tE,133 ahuPW6_t-z0,74 mnuJ_YVLL64,163 x2DospZTmUg,94 _Mk_f75TS1A,133 liJfZvXdiTE,115 zJuMyRu4kkU,102 x_H8vusyzN0,99 RYHaarxQTFk,87 cPa929v8Hps,133 hOgBvXEmScc,121 oqDlKpTihNo,123 XoWvE383hm4,126 W_7_2Uwl2uc,24 zEIqJ4321TE,129 6ZZHQMtbhxw,99 xxbFPdBBjc0,68 pnvy9q4UpZw,102 ANM7_NTFvE4,62 VbfjIg31aE0,104 L98X2ESOWU0,35 DXTLoQyijJ0,130 RJAU3K60wIk,123 1JyApnR4o9U,132 QzymqXvURkw,118 Pm5gb2FVYRQ,40 xqbb1FCX6wM,133 w_tQqymkPdA,56 oBtG0gj6MxA,130 JlaTtF1rdVo,133 d7_F5P5PygM,66 RF9vhf_r81w,133 Q9vxnIGIFXQ,169 jJ4zpJxcw4o,130 nzyDm-J065g,123 t5CxCy7VC7M,169 LWWG1eKmylY,129 HcREWDplGBo,54 YFTbj6DJbGQ,64 28wFNLwZpAU,131 ZKDQJGSNJag,47 zCLyLBrugD0,131 F_EuMeT2wBo,96 4Z3s1fJgCEE,89 jQKx2XTcd_I,128 0zHmeTeLgMY,180 4iMFUxeKJd8,127 kytDzjuBGJI,133 NqxvezqrvQE,29 5MBUVKzIyPY,57 w0NWPKGGFiY,124 ig80r0pbEv4,132 s-rl8q9jezU,173 Q_aPecwFK08,153 NOVNs9sT32k,89 5gkiHLA4ZuY,130 aKIM6q3awws,150 6AW4O4ohXK0,106 mQ13lRBge64,122 m1ef1Y2x8NY,79 MsxXJOiXEW4,133 GzeNMZcP8Xg,118 Mw1Z2Jlp9Qw,179 oZ868onS6YY,84 3UALmd0PV6o,121 dujvrGLRTlI,97 G5qjWjkpUaI,133 xTvdOjsJXRY,121 gAWrAQp7pWQ,157 vT6xS0mRapg,114 qJodFL7bxXg,130 qjKhJnrMamA,133 p29GuFPbzsg,154 9cb5Ka9SqGM,189 1BZoajBwbac,132 1LatwDo_ZL4,57 -Hk2z0z216w,91 I2rWcnXUllw,121 mDI2nymYW1M,37 YSrDBY0Tmdc,121 WL56IXifi9w,52 YOLGp-P5QFc,133 QCqdeiTnnTU,132 BOaImgyr7mU,125 b_uXZZRpO-E,133 QvVoH-X-Kls,133 eltUh-VMAKI,133 yywHSkFkfU0,41 W7WmhkO_GWI,171 CHPnFgyg064,118 sjeIpuOhuPM,130 V26Pogm8ktk,147 qYbwQoq9XfI,133 EYu1SK9XyP8,130 atzQpAlaojg,47 bObjXY24Ei4,88 Xf_j-iNi9CA,39 B4Us9Mq7GIc,130 xrUEjpHbUMM,114 t3TniZu-fk8,119 V65b70nPU7k,115 IGtoG5BnW_g,132 NY0e-PQeJbQ,133 _r8MRCkHY54,131 XquwlFI-Ygc,132 xJzCM_nI2mM,133 _vW54lAtldI,45 17gLdc5k_XU,133 7JISgsyVgUA,58 F3YR1-gJjWM,93 o3aqMjrFf5k,53 LqQJOr4Rx5k,103 FDxm9DsmBk8,130 5F8dAQs8Vo4,117 CZzW6_hR068,106 zG0CfU1YnNQ,64 uc7tYT1-Y78,104 pa-oUPTr9LI,111 8LM8A67uo_M,100 hdW1BlDtcyU,133 lxOV0MYBpeI,93 bS9N8dEdZCQ,201 exclwIbllXQ,34 IakgSRSZZ0I,75 QR424o5Wch0,101 aAF6B3USip0,134 neVOaWPM_Mk,74 IqqznoT4Jb0,100 Mlfn5n-E2WE,97 VrVEHszxL7E,147 cP95rCyLijI,132 rqT82hS-rMw,130 EyXDqVQ7MBc,124 3dnf7FK-BPk,60 uNE1lEBsBmM,26 pFriRcIwqNU,104 jgyZ7yb2mmI,159 1o56ZKPhPjA,126 CIUpb2aQ5rM,108 c_YHTdu1jFc,133 uNJPSc_4RCI,125 uvtLHXUjt_o,124 6e3dn30X5D4,103 fYvvenxELZA,105 Je8n23QMWkg,126 uMH_Ajdp3E0,57 eq5NSAyQEtI,169 J0WkBVu2C38,68 TGqcz-Xtd6E,133 C0mHRQn_YrI,122 CzBxp4EtOXw,128 wDZyu8jYw90,126 GKt6dCi-LJo,133 QWlbUhsTD4c,169 _OMy1p_m3_Q,96 Q0Eh0iTF2Bg,95 ortccjAUofU,133 3TLYO2I5kgw,148 KlNmtsP9OHQ,133 TDMdoNM-pBU,39 RP7pZNhYm3c,101 ti2qUYIgpjM,133 cLjX-SEPnR8,133 eKeTSR1yYfY,175 0GiMAf9q3hQ,97 hXce5-f8mkA,67 iX-nnY0x-SE,149 _OiXT87RhvA,133 bkH0i7fGo6E,47 oEFPcljAXgs,90 lEPfDu4pVqg,76 tTtKhD_s3mA,131 8DNqpUH4tpw,122 9-qk52E7zj8,133 9gQIJ4id6pg,96 aPvptS4t6RA,70 bcokL59jeqU,133 r_O3k-RpV2c,59 PAcLQ7fRJlo,71 8Ufi7Z8OokA,99 0SwgAb1effg,95 9_sNsOl5uUI,94 _WjIlCZJtLk,53 pPuAKVnqJdk,132 M1VNPTj-1uc,67 8Qi3JERmk9E,133 viCosY2u6YU,132 QUtMJNJWcus,79 sJU2cz9ytPQ,86 TezfzLdFv7o,35 YCIYe01lg1E,131 BvWSMD2FIpU,62 NJk-yQadw_U,108 nVkMrqrZKmc,128 A6f-6l0W-0o,60 HigxGvmHEdQ,98 k7GcyfPypGY,126 TFmga8EIQpo,133 EoBngEuWM_o,180 vpJbP-sA1gg,132 7WD9MVTfdjs,75 xbga181nm84,115 3e7wbs_xfas,132 Q7w2V95g5ew,56 i9dK32LLtY0,103 KZtF_gT3Sgg,163 Wu7xiJ_HD6c,123 u8oHCJ8LxtY,61 cLTBa54o70U,132 QJZ83TqU_x0,38 wknywxfcE5M,79 3zsTC5aeypU,129 FWEQfN39sTo,133 PT3GmTvF9t4,133 j6IS8ftaiKg,133 kgRlzeYc1nk,133 1Pb1vdt-SnQ,114 2ah3GNQL6x4,132 KOi9hHjmYq4,133 Rs0tk-z4b2c,109 TVfHmkZlp3s,88 U16anbRFRyc,163 g92cHdRbgag,110 LRPEYUlE8rU,162 sDsoiCkKuZY,109 alQVZ9YxUJw,44 qRAQivSrtm0,36 lJxNtmP2Nas,102 r9RIcLpGaHY,130 o3NneX3NJ-I,133 b8U1na74Bcc,141 rF6a1GG1taY,131 1eH4YUzgfN4,121 mdwLxOK7xLc,131 mwqxM-ccpNE,44 hVnFKJJYLPA,133 dIUK_wn5If4,130 9yoRcn3UcyU,119 1itYlP2GpI8,133 kf8NklFXAd4,115 Wd16x0wExDE,127 GV9TBb-8Kec,133 TEZtSPLrsiQ,115 OMMs6m-HIxM,130 A3oL7v7PLac,59 kLNdMY1JlR0,46 wF_UpYqYJuY,123 LixsNtGM8tc,155 PWN2ntVDwoU,131 wrAksGY1TSk,133 ZTAVOF3D4vY,93 N7hG6mx0csE,129 nyn04CxGBLs,103 rx1TXzxMEfo,62 0vv4ycVEVF4,30 NrriZYH49yE,118 lQfG0D7wPKA,100 RdR6MN2jKYs,169 8eu9yZ6pWjg,76 jyqr-hGGpQg,131 QpBfwsw4OaE,114 QMDO-3fqU0c,131 Slf_2J57SyY,180 aPrURpNEtkg,81 o4UVXgAzYb0,123 PuK1rOn_8Zc,731 nQZd4bNOSAI,86 Lk5QIK3_Cjo,150 KejnRkhhY14,46 tiYXgCsoqaA,128 AAmxzswlvIE,133 piOK9oDxl2w,130 ZzOzVT2o2BU,133 dwykptqZBj0,129 lZQF83kf-a4,102 lD6hI1yKd7w,87 g3hYbDHwBJY,133 IWQriJ_Nebs,132 lf3MqrE07I4,179 qrCKDRFj-A8,127 IT3BdhTyVXs,43 qCpDKjDMo6Y,138 PnMJqjE52VQ,57 0g39c4d1fKQ,133 W2gTKUd1gfQ,182 kpsUc7HBCoQ,133 5VMWNnFoi2g,131 Or3okI_mad8,155 pv6EZGMlgX0,177 p2esJ_ypn7Y,133 7DfNc-wxnBM,104 sQ_4m2ocxhI,177 4nJl2BZ6obg,132 KQM0klOXck8,133 OwBlTJrvL8Y,133 Wl-C_I-ZhRI,65 cvvweP3N_f4,132 nxHTPahkN6M,132 eK5PghRFnBI,53 sLrDrvyhNDc,137 HegpqudDvwE,41 LWEklaaHGsE,117 kewajS6fh3Q,130 x0XE7KFZook,133 nhTupXSJkYQ,180 QsCPatNIpPE,111 lKeaVq6fUpw,178 PKIpCPS-oZc,56 mNtK6UvRjO8,117 M57AIegsBz4,131 FptZhFrVXAY,133 Fjb55wq2xuI,132 82aLTSlTL44,47 fRdo188PjXA,195 3Ag3aRRoPzk,127 XkFE98rP1eo,121 xIbilLMZLHw,72 7eng0FHSiNk,80 iUZ3Yxok6N8,149 c8EodW2ossg,147 KNaj7uCVPCI,91 4865Vc0ptnk,132 3LY5dV3xghY,173 26oRZCLHR1M,84 0bkaFNVY2UQ,61 VIJIbL0ujtk,133 8x_8B2imlgE,129 DaR6i1hQWfo,132 ttIN2nLcy6s,128 y_7o1pAwhDA,113 6IbECSkNmiY,127 OhGVVnZZW5o,85 Zml7qQpL8Yo,98 NL812ag82xI,32 PcRJie18fYs,133 xSQxtMWJzGQ,110 glMgSCdK1xU,117 qcE-e6xcfUg,93 vpHEQqApoAY,106 _KXS58EqEHY,107 WRjPRZEg7kM,72 V5B75zKswc8,131 bNMFBgUFBpE,120 YDmULxspTJM,145 EOyH6NwoQL4,68 vy35F-wk0uk,69 UzBE29ENnjA,133 ltwRv-C1EFQ,74 mGA_uH0-n28,98 nSQ5EsbT4cE,157 UmNPw-PeG8g,123 m3QyTiNVwWA,103 AEucDLp8RdQ,130 OG-CQgtcbqg,92 ba2VaalmijM,176 3B_rRmkbA9I,132 52FdiECWnhQ,130 Wmu-F4mJ-eI,133 o5FT3IGXtAk,106 tZ97edZTrHQ,67 zxqYjEzGEPs,94 K49NaFf6i_E,74 cqzRb7sAL9Y,112 PAxy4zrKs-Y,133 zJiCswIaIkI,167 8xf7Ee4KLiE,66 Q-R4SPTgjmI,101 bU0STezaOyk,150 u9O_Xs8wAZk,178 XI9RzX6Xvyw,132 9ZY9i9-hoQM,44 mT5NiDGbnVM,153 ixljWVyPby0,132 gyUrAK47OY4,131 1YBkXbf8dg0,48 U2p88URI8lg,43 NXqs_wYohxM,59 ZK4Ly7Ij81o,133 HPwD7sgVtkA,75 dShmoHD7PdM,133 fvuqUVSwpPY,75 tRT1ASnVfmo,130 f_5nHV8FJyI,81 VKTT-sy0aLg,168 WZkuKkPQjbQ,130 OORXuVmd9YQ,146 VpehD7unUGw,64 TlnLO-nYFG0,94 qslhUrtrjXQ,132 BnrKndkqLaY,116 ePzOShBS9uU,123 ZKtFIgmoqoI,112 yNyLTVFv8KQ,137 HO4TjpZw5zc,116 NNzMjrJQKsc,150 ugXeKGSjvKw,79 ZcQtUdZ5Afs,180 hu2AlkyvIe0,128 hPF9nzzuMfo,133 j5B70NEq_fY,100 4hQ0ILw1P7o,180 qvFBGYjAXW8,161 54LTsr8IAU4,121 o1SrrJNjIh8,76 rMWZUV287WA,119 f3_39H9_3Qw,131 rJWLdQ9vylA,53 N_vildqkupI,132 US9enXEHnR4,39 XgTtI5D-INw,127 EmkAdY2AT-U,91 LkyMbgKtCAs,133 Rlwhv7m3CSI,132 RJsnx3Fqk6w,96 7BwxSHs9elk,183 9tIcnydrwFY,114 wyKfuDzbbOI,124 h1UDUqeJh0Q,68 yWPyRSURYFQ,133 M-FOqHC-G6Q,130 _3F3eCypuko,133 EdEl2_GReMY,116 _s4J6vN1t9Q,165 FYlySSs_-JI,131 2u8cHrJvlHQ,104 lc0UIhNuudQ,97 Inj01auwE9c,127 mn60YWO218k,130 Z6XIGZ51VMo,166 6PpQk63iIWw,130 AMibptRTFdo,142 CUJJdnMG7VU,121 u3UyGrnv1-A,133 RLUhwGLJhsI,137 iD9tENbIPHg,96 RiTXscx2pJY,133 8QZgJWf5aqg,132 FROgIia2cb8,180 CGX5n1pvu5s,132 iNqWC_4LooU,94 irnb55gfwNc,133 rYGWG2_PB_Q,131 Nwl4xV6wuRI,177 bwf_EFTMZ9k,199 uFPINtBli58,131 n16wxs5pgvk,132 l_nlMehIAqk,133 KtGm2OkQa3w,132 2x7aG-JRlCE,133 Je4QCA5KCuc,132 QNUzcLPS_LE,67 QRGusFszwdA,100 DGhV02r8Vq4,125 doLHipw196I,121 mw2AqdB5EVA,119 DZqOhS2M-DU,122 iGig4Dk3tXc,68 a6kk9d5OQ-c,127 jA0RnDQiFbQ,133 mWblxPany0E,42 QPKFPLL4XQQ,132 cDpI6Zzy-vo,75 sjVgX0A8Jtc,133 -Y2wqkD2KVM,131 huOZPQ6Hl2c,131 UCd_bEZa6k4,132 2yhGVaVwceE,127 R5b0a3b6XkE,131 W-T51n6etp8,210 hd521kE7f0A,132 6DZ7DfrTDds,132 NJ8rJ-i-OKE,145 kal9JZpTFJ0,125 a5WKH6TNlDw,132 IIdGxR-aU6o,172 6mBFhNSqBk8,133 6QFgsy9R4uc,132 lhHv2EyaaNc,56 6AVMcJa77PM,133 A0WEpT1SKV0,137 U7D-kOB7-PU,127 NvNkGs5bFtA,43 N0gaRYJH5GE,130 C841wEogE4U,180 TpwYtP4Kzbs,34 7n1uwzYOBa0,32 rFvaTVV7yO4,172 TSaU7qATRHM,121 5NOmw_kzrJQ,58 sT-wJhtlMGs,141 xb8n4wftl08,97 sUa9WglkKCI,36 QJpRSf4q-hI,132 3lfTLYMECtc,133 idfa7VqkSOw,111 ReAGCpATawk,130 qXL3aXIGIKc,70 CqgXhXx-EAk,136 XNAVsV-Jqfg,160 tAp6HB4WAdg,132 gTVoFCP1BLg,87 xMdDeWfS3O0,64 NRqxxQy8sLs,57 PYLokGkYl4E,57 85-2A0PHLIc,94 atGNvojXOvM,132 B_YYf8Z4b3Q,104 OOMIZUsKlmg,110 FHNT4E_55jY,164 u9A2CYMFfNo,133 bdFKfRmmbk0,131 Pdi_kASSsJs,137 x7dGXb7jrHw,102 isOtwdqD3y8,132 1n4wtaSq7AY,133 bIVzK-h6qao,142 6HT1K-XoREU,58 3BB-PdHTQHg,113 sh0IBg7GBeY,64 C-dzbTNdd04,122 diteeSODzTQ,131 IHDv7SriHB4,133 y_5YoG-iXjQ,139 1nVThHLqda0,138 YiMIAKXwHg4,133 BRZh_NO5tic,180 -tUodP_Wus4,132 K1C2odNXI4E,122 pwr6OtkCTiw,133 p43EnAUd3-w,55 XcWgeikhrOA,85 -3ywc_7_IE8,180 MBjVMydv63A,37 qilGSZ9UWTc,133 DUbplahEBfQ,133 UW-Y3QyK-aU,155 FuZNswuwAxM,126 rngwd6ExGmc,34 ZywVV0T5DcA,95 PEo3OnoPBI4,120 -MG8-wCvzpE,132 kI9rnng7ns0,89 fq_QSi29iGQ,133 p56k6QCjJnc,143 xp7F-8G_bPI,36 4snGt8OzUV0,157 D0vCzkK_AJ0,133 OHNZUmdqdv8,180 tVl78xgPyow,36 dCRen85hQ7Q,177 wsSlB31dwiE,132 iNUv6pnKd5s,75 zLso3zVuBMQ,134 R65UmAfIZpw,99 Qt5TuFHZh5E,129 VToA3hOd3tM,40 zPvglo_VB9g,59 P0ojZI9qBPc,56 wIrUoTYd9hA,108 9-DOuX-Pi6o,133 BiQ0NRRraIc,51 _KpSBVJq7jo,155 p8CPTHEAfJc,91 lv_LfXcjWew,130 TBURp00dftA,103 RNP4caHnknA,109 ynGvGgy6K2Q,131 iVhpg1Gvh7o,89 g05Ja_89tOg,131 0ZQln6DsWgE,127 9PM9tDtmaaI,127 d51kNuh6K-U,106 lIzqZwDHis4,133 BkvVBZwXVhg,152 vWZapP8b11s,133 RY-4FCh9UFY,175 Q1vQUG6GFNE,105 gljJhOFXrUU,133 ZUKCW08_8Og,127 JUQS0Q_0aQg,55 RehkdOxmytI,86 5gV4JcPhi9I,132 Mp5IvPj4ay0,111 kBJDz4ylQO0,134 a_4TTRfXkgk,130 a4-FtMD0_sk,131 ClehpiAu764,131 7vZy9ra8kdM,121 PgZp8EEzrJc,129 dvm7mLmAtTM,182 xMpgI4DCKyk,72 ViZ5qXg5xQA,123 T50_qHEOahQ,169 CaHL7bVTtQQ,131 I2AjeXpxmI4,131 pr335ddgcuQ,132 r1fR4JfojCQ,149 eE-FSOWD_ac,114 LABD2un-vIs,131 tMw_xOuU9DA,127 WThlmxAdynQ,102 nzeCMJw3Eo0,137 rQ7oKh5K7K4,59 -9IgLueodZA,56 mTkgIN2TteI,133 uCV1-C_0vC8,88 1WRLqzGkzNw,148 m8hsAr5C2UU,53 5RbN0rjWBAg,67 Kg0YrIiz7Sw,32 a6DTqXLuu_c,133 wWswgKOqkZM,68 gz_dPVrciwM,168 M--q4JZp5lE,131 gRzjSsXw9PU,133 vR_L-yH_3jY,88 hBpNWBQZK4s,109 tu-cxDG2mW8,78 jC5O4or6dB8,133 4tKHdEaBlXw,133 8ZDX262xJvo,130 CRuiuuKONUQ,128 w0AliJi4npk,81 hhGSeFrYSyo,128 nTOUiTegqrA,89 jzasSSMjsxY,39 HOldh4ePgnA,132 8bQQIy5TKZE,174 ws9--JaXKcg,132 UtIr2Cpk2c4,38 RwQVsB6k24Q,167 vn6qlQGDOIo,110 9EV3DKPo-4U,178 zJO4Chs7-lg,177 DvS7X6Zik1c,122 eX3czjlDO5w,42 jn2weAEOp4Q,149 TAOUtgdcjik,129 HdU-6bKqhzk,126 mPoyezWAghE,132 i8WK-3pUpwk,139 b-4JObBlWC0,132 fqtFUIQ7oWA,93 rQVDhPVyU-o,48 XdUKcQsnS4k,133 qDR_yTik_xo,174 2bkNfQBLCJw,82 uhpknFQJ7G0,63 nKIH1LgVMpQ,56 KaUEDYWofJQ,176 MnMZeDmfgmU,127 TVBx0r_xPCo,129 -A9rFt7ITy4,65 wYEn-ZKSg_I,180 lMrKsKQWrl8,123 n3TNGpjl-kM,133 vgEI-Zu4GQE,133 1tBCcfkkDKo,179 Z9mzzABiQUo,133 va6nRaZ9eRg,120 UWGtZ9Oqcwc,133 OjZadIbLAIE,127 ciWBzhmOC_o,124 1OCmZuUVZfA,73 uEoCU5cuQA0,124 wqvnT7u0mSg,132 vqqGZBRBLcM,131 Ae-mN5aD8Qg,154 sz8itUBsCTk,65 IeqXtCC8Osk,150 s-v7r3DxQ0k,735 nnJW5FWg9oc,122 ME2mnzfCdug,127 XTfUTOcdkqY,125 k7VW1xNAn5A,120 j1CC9YKFpXA,133 XMrWXjOuv0g,143 VPIP9KXdmO0,66 oLQsS64Mgjg,127 EKd7z5CY4BU,108 -sv5DJfslVM,133 SlyCtFYVQmU,170 U5418CiBukw,129 6DI_C-xXcOQ,163 ZbKU3_H3FVw,179 YGKJC22Roxs,100 FEAmUOrMd3o,129 naTncfYgYtU,112 ETcMNeJTfOs,85 pqLAni94IEI,125 XzKYNZY9Hpk,127 89PPmxL-EVE,133 xUllXfNznIY,121 nNLvDIcBtz8,132 ZSoIlS4LQiI,133 29nIXG5KJYw,179 MAviyhpn7Lg,78 drvaZz3FWOI,87 NG5ijPnfYV8,40 G_0o3NoEXJQ,133 MvzZbUKxNdc,83 ZiyuOaPD0eM,111 1U_GoiFy6kw,133 363ZAmQEA84,51 KdNQBaLVGfI,94 5K14lfXCgco,59 sJ9nOmRn6fg,122 7GIxoAbxvQk,48 yDq42VIYVnc,69 ZCjO50QLDhA,124 lWSPwOvJSNs,126 5yUd7SXxXzs,110 _syPeFclyN8,107 PscRUlsvhtI,174 VUChuDMVqvY,150 NIaiW1XrzxA,40 NUXt-stAcRw,131 __yiHzuT3ig,118 xy6Ak1DYReI,140 ajgeUrUcqfE,131 6HbrQMgOUFw,68 HG8iPGFvfxU,52 RntgG4p1m8E,126 _U4T80Jv9h4,109 zH57XU378EI,87 3RWATaK6rC8,123 OBJ-MpPBDug,164 N5i6B7WyZQE,132 hplpQt424Ls,171 KS8wdVZqVrU,77 SOBvUyimDo0,32 SNruq88Dlpg,132 3tfI9tTzlI0,149 1PlNSLBuUQE,103 mX5Vqy1ETgM,60 7_WLSh7GE9I,179 LXekH_8vXnM,45 _nqoPInNcvo,132 BbsJiMmpObc,80 O6DFHh2XxLk,67 XeZkZIt0zqA,118 l7-rpI0RrQU,47 _7vyrudcgOQ,138 tcIaT5D4Iwc,113 3GtWfPQ98Qk,127 ziVJd7Fwzvc,135 vXvHja7vtoU,133 Xei_IKhp9tU,132 Epo3jDg5skM,105 H-O-z5gELUY,98 YwM7NgPE5lw,112 yuklnScufbE,36 PcBKId4l6LA,35 K3ucS56rrpA,102 bu83p1i0D1A,97 HFduVeNEWSA,104 qIis4kiGo6Q,26 nggWTNLFifA,68 dSRxB66FLV4,54 2GvL2DyMfGU,129 s_hFTR6qyEo,130 dsONBwWtAts,126 Ye4fqNh_vbs,61 aeevxJaJl1U,178 cMNvYJ6O_Ks,75 h3Aam5h7qAA,130 sOxspReyzOI,128 WN_03KbkRdM,133 3zavgk2_BJs,106 jJMXxv-hYPo,127 smNgpBRjuFs,131 GaBjbzvkxNk,49 W0_4w6GsngI,125 PMVqjEj9eKI,53 -C7Fcg58rZU,59 yjFU7KJH8AY,131 k2NaHBVVYzY,65 XbTEusaf2nU,142 BSFgVoDNlG8,133 8k_gzuVqZmk,131 CXgaZeUY6fM,113 L_b55QpXdsg,116 0CE6iuIo3UA,38 VrJiU9BOEBI,133 Ci82yWg-9Q0,123 MaRBZ90WDYo,116 8wh62mxbLy8,126 AqutucmM6S8,97 iRmIef02Ajk,94 OseaEf8Qy8Y,176 CfAS7ONO8OU,179 6QOqWyBhTVo,118 kOS8g1D6MXk,133 y8_oqgPwHfI,131 AqTaIbDTNnE,107 MOB7nv-1G3c,125 tdcUxHh3tAc,131 PLOMwlZsSYM,122 xA5QELbB-vU,179 wzIwPkZkSTk,89 3et9liRrywY,178 2I91DJZKRxs,86 FOM6rvU9xN4,178 8rsx2IP3HWY,52 3kaShGPva2Q,57 wPmTp9up26w,131 jEXEQRL2oQw,133 F3FrLQdbyKk,35 X9yDWojz6YA,70 009tNfQRd4o,133 swhep7_jkeY,166 JyJBz7Z2EWE,87 CIAyyugbq54,133 E1BBS1rIgIw,127 LAvuBfU6iSg,127 bSDqN3UTrPI,90 pwdhau_agX0,169 -NkNYd_ku_8,130 EuSGUhhmYfk,132 i16c8n45lR4,88 h8QQbFolJZI,110 Eyokx50Jhrw,46 K2qNJ7IzzqE,109 Gm1BZxc4tmk,120 p12OcbmjVgU,129 0PraJ0mNgUs,133 z7coL1WcCoI,185 83AbvPYqIko,146 9lTSqc1UnLU,162 LlUWLkrBL_Y,132 xKpYBStDLVA,111 95XSvfimW_E,125 NsQ4dm3q8f0,44 rJGOCtlPzUs,142 _mpyFEkzhoo,84 i1ZUVkU_XK4,116 u-bWIkGa0QA,130 mbKEarx9CCs,147 KnhDO1G0ieY,127 2pud_rEsxMs,131 SW2HRaFUXV4,116 Kmn7tIRUImY,92 0xWMqsZOYWg,130 PkOIMjJrl3Y,38 1xqufX-xMr0,110 MbRhuUtKHV4,138 DnYv2MyCXss,66 -l-VCl5kQuY,133 hJVXg1AHQTY,102 BS8zi7Dg8TM,162 Ui8Y0Pqlg_4,133 kPLNO4WfFJw,93 MvajGqWodvM,128 dvmqIBOExp8,92 uPAXLQIxBGY,100 T4V4NqEU668,130 Ugd_VB9iVFE,133 4xdqgzNNHn0,47 61XUb28jkUI,112 jAZbK72VLFA,114 oqBWx58n1Yk,133 H38XiM2EOnQ,146 L-IoFdCv_Hs,117 zD0YTr7ZF58,126 j1dkwnqffaM,89 RjcvXspLoyE,56 yjm6WiV1bBo,133 D0Led4y5r3I,133 2lVRcI0zsvw,71 nKdSvhCg3VY,160 r9nG9RByMRI,176 x421Na9VfNE,178 Xk5epHF844w,101 eP7VXLIgaIs,130 lbdeAhpIPhE,151 BS_wIUrlOPk,132 ARdTVbhhy84,62 Ya00KlBMEyc,45 3F_Jlo1A4oo,122 mOpvoWxjz90,126 KZ04pEN715I,179 z3dwJ734jbE,40 tM3Zg8m373Y,40 K_LGi3aiF7E,165 Z5lyNKWvZfc,132 Tb-PscLsY9I,46 df0j-m8xV58,181 2bcSpgxPG0g,138 C4o-zcihGN4,112 ssM67LXOwQw,131 DmokH6o-nKU,132 MMSpFkvPOAM,148 kmYAgJwpE-k,95 nHKJaG3sXMY,51 S1i5coU-0_Q,177 AIw6mK0Ob60,133 4wVmrgVqQlM,150 NTd3y71iKqE,113 YIZlw1Ou77Y,71 6OofgRuJnIE,127 Q0UDJuPozw8,53 dKSAKBEI4w0,130 6cwIlJvjP6k,126 _T7vEyicx6Q,100 wyUDbbWIXS0,59 cSXgqTUqtOY,133 aRgUxpmvZpc,43 c1gSDo9bO2g,61 16N4rRovDzs,30 _eZeYq2r3tM,48 5R0vcopCNG0,140 tKOX13gKlf8,132 FXKx1sX8ESs,112 JgacDwgKiZg,143 uvIZ4ST6HqE,119 s-DcMXlInkU,131 17oDZd93a-U,116 4zJ3a0K2DP0,123 ngV0RBhGZmE,67 LwpaOr1hVZk,108 LFwCy1HuMCY,85 wEByIZn5qeU,135 OwB1Fd-IeS4,133 vXNr2xtv09Y,129 rAu-0Ko7uBQ,133 XHdmamu0zPk,133 _6O2sYLkuO4,133 MkMqRDBKUwM,116 pgL4IvoR7tw,110 DlwuwiBLAmM,107 rsHK7n7hVBQ,129 kYlPy24WJzU,128 UBU2McO7-GY,49 b2dewDwIQyM,177 oG5vsPJ5Tos,123 Dl4hTIp8QbM,54 _rGPOReLRzs,130 Qe_3aoChgwI,104 GR0R9KfU4tY,114 0zJpr-bB1sg,180 KN2W3JON7Y0,81 AO-VFDYy9Rk,133 efr5PYBNZCo,130 tdCot34--pc,178 pK_ffLZIOb4,127 jGWM1SoLAm8,107 JVgqhPqHPa4,133 vkmf3Hbnh_4,143 PDBjsFAyiwA,149 qDc-OGF_NJ0,55 d-HW0aPbfIY,93 9EBnUERX_cU,91 IeRLdVndLpM,104 B42mhJ4DY4I,92 3nc6Tf26afI,65 p-echNQGbug,111 7q-lFxf9-p8,80 CW0Yfk66UxE,46 t6FIm6TCkCE,66 ZTT1qUswYL0,143 R5WC60UwB_Y,84 xhcXLeRqsu0,136 Cr313z3sY6k,124 uGsWYV2bWAc,133 TTX3bYbKAl0,133 NULabIAGubY,173 rGvIBT10JDU,99 lFHKj8M1maI,123 Ls_8cFgBUj4,135 PZGS6N3zG4o,132 e2eo-95zSp4,65 5kI7hvWF_BM,71 ALImNM6jWZw,116 Bpw7M2Heuk0,72 3pDOsNri1Ko,117 KoEPdETXy4k,100 YHKkh9b1Oi0,129 mcUWG23hqvw,162 qb4Rfj1wp0Q,99 v1Qu3dZlRGE,180 HUrzvLhxA0M,56 NlSuj6YIG94,86 i5jTH89HjTA,143 aDFJMSlmxBg,74 itdD328hLuQ,84 rP0QURktz3Y,50 eKHYnWepyRU,110 roeLoZuFI1I,72 nF_6OfgbF7c,70 DfcpuhTr8R0,105 -aKc2aFeCOk,40 W5ATR6lZw4o,107 sRqeX6qMlak,85 3fLWNvP8V98,128 byPJ22JDFjI,179 rdFZAYliCgE,133 AP2kX2vE_L8,175 8TOTUOFMjuo,179 L5xFe4LFtb4,133 EWBVJF9sSPI,132 cP_OM5VVcSo,161 I7MwxFdb0Ls,139 Nz1NJ3fhso0,133 bQWaXlsdyko,151 IH6fifC3qSE,111 mKgy5W3S6nw,124 P2pgWsYSyUA,145 YKjzDMrSX3w,132 AR4d7r6--I4,133 1R5Li-f1IP8,133 5CdiJbnuvYg,46 8j-53yv1nD4,125 ZjPiVMyfJPs,69 uopoXtR0Kjk,131 HZNy5irM2YE,71 nQkiJT2MR4w,142 PTENrQnBtXc,133 0KJ7l4gy4oo,175 yiZpb7GPLYs,179 cQ_dL_IMPP4,128 D15UY1FXJpI,124 qowk8kRtc8M,128 PNzvucMz1t0,127 o6bYgD2JDus,133 VJivXSErhB8,98 mbTZ4ywa1Dc,119 FKw0NTnXAMc,128 9IMNpGeSLT0,133 RpKQ0AC0p9Q,18 _j9qAhXfNAU,133 XyGbtYaVcaA,131 Uu31b0VHCc4,34 dYDxxHrlmUg,103 Obf7CnOmBak,131 1Gk_oU1m5CY,113 EbyOz1yJgYs,104 g5e3qoREpuA,176 oUQ9ZKUt2XQ,122 5ztwns5PkJY,63 0u5O2--9www,168 QAygM0YfY10,176 iBRhat_CcQM,133 bP9A87VOaYE,131 oiYIVQm-qvY,132 TpOPvupzWow,129 b0ydPnxtSKY,133 Mhu2Ij0rWCQ,133 TumSHtCzjAw,131 MosezS_qfk4,129 DOl-8LrZapk,132 H3plWCGH4wM,133 NC756fAs0Hk,108 zEE7xzwogMc,123 z8oaq50tGRI,133 LI-SbYy8hMo,77 NXXS-UOKbao,123 75M1XXEZciU,180 optHzRmqdFk,147 Go6nwid-CaQ,101 Anue5RDt4Bs,117 1JVewdBZyYA,41 7-VAbEyf9V4,128 OLSHQCAncC4,89 9_4S_-cr9Rs,179 zr5fCCcWRJ4,133 kNepR8njvT8,133 ZsRDr3miUyc,188 8ktMe0xclxA,147 iOb_w3y2stg,133 -13ScnosXAk,115 Hfoa97N4-4w,132 3WNqgV1M5Zs,133 xKL_T4z0QX4,132 nS0fxM7sCHs,117 X6WHBO_Qc-Q,133 DWl0gnig_X8,59 vdbQpDHAq5U,36 3Im7ZYrXCOY,133 qLvGnro4Cgw,151 -ArVBL8EgKU,133 Hf6qAXWkX6w,61 kORHCVmSucM,82 f4zl3CuJvt8,173 J_i4XvgEVDg,47 iRIxb6_ELNg,132 bKLQBuSPVwQ,166 iKqGXeX9LhQ,82 2u8m1yeCoyM,98 jtoYZoKsAnY,71 5Rl0mFRWfzc,131 kvHcswMy05A,132 A9KjjvZE0Lo,62 sM3PgyGpO7Q,131 Ol7EpMrfbGQ,61 QZocvme6cYc,70 S78_9yWvSi8,48 u83fkqXPIGE,133 tYnbJrIv6qg,159 h1F9-NKqDDk,131 Nq295Mg6PHg,174 SBLMTDMdTIU,119 IsBB4i4k2PM,180 2P6sN_5eM_M,120 VUGhvs8zMZ8,35 fZt8dti-r14,129 wxlvZpMSxM8,132 v2sqjebFODg,120 ZS0rEz8wR4g,133 xEt5dEOcW0I,175 9y-f9F8Hl0I,120 EFQeLtT3Eik,148 2cDcwnVNoGc,71 tbjTxvs1nPo,118 0yc0knpkAxw,130 KJFbhzrJxg4,115 898OUCyBulM,44 7L2qP-xQ_7o,134 piOTzME87Dg,138 2rCTuXAbyTI,100 m2giPgQXSn4,177 NtgFKdWcKXY,133 -EZ9f-GgWVQ,179 VevqDJM8KH0,132 D_Acqs7T5-0,40 zWY-GWMn4Ig,133 DO50JhaRp4A,132 nBQDz9PiMDU,177 ca_Ac4lF2Vk,109 P9iflgkOO-E,61 TDo2llQRSOw,103 I6RwgD0b9xA,47 qo0uCiDpp0k,100 V3Av8JD__sQ,65 WuHkE1eU2AY,133 c_TB7MkrGyc,123 YL19Rvtea4k,125 -ZODi5SGAyE,111 mS5WLkb_Cxk,178 56fdoTQTfuE,118 rQbj9uvYL8I,90 zmRPZJp1pYQ,122 UOVyhaDQNfw,156 RQH_q5kOlCE,91 69RNNex-sig,132 KVK6yLqY54w,174 9rstlW2YsmA,72 J8tCOzttKMA,120 exIGslwFcMI,98 t7OQIn7Yuvc,131 kSk0pCs4pGQ,123 eKrEVWGTuRg,180 Km71QCX39rQ,76 rbsrjcXynlg,41 hc0o1zXNHAg,129 u4T5X47MKm4,133 jPsXJlylRvs,108 TJf9Pf9rjO4,133 1E7f6xOPL3A,96 2vV-8TyFBTI,139 _6up-uz7Q9k,129 0CZAYJ_sotw,131 x4QJwGTOny8,66 AlV_R7v4DFI,72 a_z4IuxAqpE,180 piFTKwqrqYA,41 8yX0E-XQcms,131 FJU-pWka9lY,133 i77quMJ5ihE,221 xCQ2qh3Tu9o,130 a8DNOaAifkE,127 1zOSmScTr_w,128 xqD1y_cJAaM,121 dpBTugwEdaQ,132 ntGBzcfpKYg,132 H07DuZQ-rLQ,167 na_Fzn77bBA,119 dXj2MnkN2nA,38 EmRlXmyl54I,119 4U8n5Kjd0LY,133 7RS4PfQHCX4,27 meSIVfOyerg,98 3lX50Lh2Iec,118 Ddnox9DoK88,132 _ghkHlthIqM,180 y8svNN8saeU,129 idqhhcppnUY,124 ClBUr1FFo4U,133 EJR1H5tf5wE,49 YedqV4Gl_us,141 MKboBvadcD8,125 hZ8PfLIc8MI,120 5ibO5kob3OQ,136 f0MBL-DyXaE,101 398qkvR92GU,132 k_uINM_XI6I,127 esrBtSFDlEU,128 jdZ6RA_c6oE,72 NUJVU87Qb7A,68 uBFxCK913PM,158 EFpsSudUhQU,133 -BYVM9TrKzg,120 ACCoL8xk0Jg,130 2QT4mFNVyzc,133 wfbdNtfo7NA,114 VWwkLEUn-a0,133 PUV_2cqbrbo,134 yKfQ_-lnMJw,43 FDfUBxkDaWc,127 D60dQGS_qNE,179 9DLcDirhBAk,22 biYVl18JAFM,98 pDy41hvdq4s,175 hwWsAUpr9eM,115 _kItBZZK1p0,128 NSsW9EXadik,117 9XvQJ2Jbg8A,117 O4aMxMg0Vn0,133 rD3kI-nioGA,69 SzVAyGry2Ic,113 c8m6M4RV8p0,153 FtZb1Kbh2qY,152 w6v2DUJi-C0,132 68XJpm3q2b4,133 VJOO-fcRLzk,129 obxWLczHe0c,133 CR08UnlmGKc,121 5gQUCqEQVLI,133 g0j2dVuhr6s,130 PUvS_htXD34,83 xxFSUgehWbk,42 EU70jtTYN0E,71 rRLP7r6OuYE,50 JhSRGLe18OI,80 F1Bhl3yjzsQ,73 6Z7FN-Ii1lM,60 TyDE15kKDpI,75 ftmRf0AY8Co,133 _7z8a8kTj1c,133 3eJ8A1W3jqM,95 janre4HxsX4,138 aaU-KRx8Zc8,114 DUhgY4ohhQA,60 gcu30p7VEKI,119 Sd6LBK8KhuQ,133 Pe7G8iCN_nM,132 KyHilwSRo28,95 ZYZsJYZVt5g,177 0wFkRRILnPo,92 jmOvg7JKjVI,130 CJGNkuaveUE,168 U0Sk5u00YHs,131 yElIQDAEtOg,113 hVQT9mDDeJo,179 9QbJu_68yS4,133 kA10xksmpCI,78 hdlfKy3AXDI,157 zFuw7sB1zxE,36 -98BSUhcZtY,49 FcvCuyT-zWs,101 ZZGHXZmxlZA,58 TotAfd4ercA,96 6wN78_E4AAs,71 _mSvR3aQeWU,132 FHohKkrVoMI,107 dxqJ_k_uw5k,131 jmpuAz59EbQ,109 B0vKK-4qJac,176 bhGFCS11OR8,90 0VYvdsrV6Lw,132 oTzTcic-1qs,61 P1_QqWRpUQg,86 M_MJrybDRKA,133 NL7nLSSSWjw,133 JtBmjD4WDnM,133 MYpqwTSpp_E,126 PhkCGApLP30,117 AHHH770W4Wk,132 UuVuFO1cCFE,110 tPy34tjLOyk,131 RlphfLO3MYA,79 9Qrhr8MiuCU,149 NQp6RWrHxRE,126 jj1lH26Ky08,128 JUbVxse8ZrQ,132 ZpuHoppfsN0,110 o1nS19OOD-U,130 pKNsKKRGrzs,100 _mVMG_Rbk5w,131 _2WBjBnwlUs,88 lqT20npvohw,133 IZocpwWLsyE,146 q5K1fm56gI8,180 A8eQgWhFg9M,101 Cht63QybtiA,127 wsl5fS7KGZc,108 lIOwxzY4M6s,126 kDHxHA2RzJ0,133 N7UtdTiuO3w,139 jwrWJXtNYWU,32 _3hajwRww6I,133 euV2U_M7RMI,66 9IUZkug8qo8,118 kUAXs0LhD6I,131 onD3Eppv3EQ,103 6q5a0W2pxS8,133 J6Cg05MhWbw,118 QXa6FXKJQpw,133 dpAoVOU-q60,132 NXG6CKgSNdc,129 F3GFYKIwJ9Y,133 GtYAzKwm-R0,132 j6gLJ4_sfG8,133 JRpouK0KmWQ,143 AcEe0LbP2wY,109 kHq3y20HhRk,122 pZE1CyPdDMo,122 _ss0nT5DGHw,131 a-9990dlfvo,180 ZurT6BG1OM8,100 uMb3tldMyn0,170 JV8lJEE1p0w,66 hh-qKqu3ZJ0,140 FRaIvI54IOw,46 ba-U_sXRFqg,73 0fTXzdHoip8,174 MHzcc00ZXCM,132 eNK7N3AwVFQ,180 FD3Xh_Qez_Y,163 KAeAqaA0Llg,123 s2wBtcmE5W8,128 31lZFoSS-VQ,133 bX6BKxFkU78,103 3Tqgp93zs3Y,131 b02H0dW2xf8,33 gTKpKBzd7jg,114 MnBarCQ9BE4,130 mdcXOlUMfq0,133 1KBWO9Js23k,67 Mvs2nUuXWLo,36 vlynd7r6pLU,133 -qq785V7JOU,133 Y2y_dipI6_M,112 UhkYrd0Sg3o,39 97ZiBty1eTM,117 XO0pcWxcROI,69 FUR11zrrNb0,174 8AUEcXu2krY,93 6kw3u6O_SxE,133 Vr9OaXD19JY,132 r4IBPd7-LlQ,90 uRxCU1MW8B4,76 XKl9WKaYVRw,58 DLVfYn9pvwo,132 GSruhwZsc9c,115 d1VyT4mI-8g,133 901lYbPmqu4,131 geiS49_p84Q,179 oMLjP2ajXvs,132 owJTZiiUoUQ,107 WTW9la6_mEY,132 n86XlheDzhc,62 aQ3LqlDbwOo,139 zEdVDymxYQc,130 Fa1zCdRj3MY,142 w5pn48wzBuw,105 C-PxIfoch_Y,151 QkAHUSwy8Uc,129 PW2Wr4-2oyM,105 Uf0P-Ezxg5Y,92 O888bu0QrMg,96 O3P0SMpqK-8,133 Vz7PIPZgT0A,130 4xLmxgd-AYs,76 r4mQmoD72tc,126 FvJMbz4vgNY,131 3hwRv9BXdOw,134 uBX2b-zback,133 uj8ftsuP8T4,56 a8xs3O-NwsY,133 YV2WQTL_45A,120 EvCuX-oY4_c,104 Fgfe6pufnLM,109 Ls9p2CEVQMo,120 Whw_HyeXyCY,147 PvMxbRCBalk,124 rm49NpSVgo4,50 FfdJdZ5_guM,133 zhWJUB-Sub8,106 U9bgSiDUqtg,129 LqneoJRRqbg,130 6WWdim-OLok,166 f0eTISgJ3Io,95 d2vcACp2hNw,127 tN4mmLewz_E,154 8fbGbPwKbQA,133 5aa_kvfMxBs,59 pwOhqGhP-mk,178 LDsw5Fx76jI,117 yO3eVly1GSI,132 a_6tguZWgmU,127 3dMF8cHKHZA,154 3tXDymBcnJY,128 sqpSc2wwTaE,133 Pf0COLjWys0,175 u17vCX9koaI,25 vQWmd8REdaE,108 MflY-IYl0Bk,99 AjXl70vbOwk,132 IqOqMdra3rk,133 nH51jEGD7G8,133 sHwRx4bc7fM,133 Z1bYkHffGXI,97 qDF1YfpUaNs,127 rOOymP2hx_c,130 Wt5LAZa7LAU,123 yOgdjlPRWMg,179 1ZT_oKZGgew,129 HoW8jQX83Fw,122 9blGmvMjHlk,128 CccXBzfhDVA,90 U0tTT_87Hh8,112 fh1Y30QwRGE,61 yjlZPv-37h0,69 sEnFt6neTu0,121 ZS9SXH3DfT8,80 1rHtYKAv7Vo,74 Wv_JTjYYaQI,41 1Wk9V6yqmZE,132 QJFwZP8DgVE,86 3JJaD_5oQq8,85 LtKCcSEgPJQ,133 2TTfvxYUBug,133 KSrAg-DG4Xs,40 uw9V_NayRVY,89 fERCwTTOU3M,180 RIN6AtTxFgE,131 vHbBhI0xLjA,29 QbVzoV4GgM8,50 mFwAm6oIPtk,132 dv7OKoxjLQM,138 Gh3AZit48Uc,71 Q-LFUnE8zzE,157 vfNW11vcewM,130 jj6ECLiWbxo,72 rrbEQDRYpy8,104 O_4Sx5NtOPM,133 cagsLW2dKTI,118 Z41Lvaw_W6E,133 eD4l8wpbrRI,132 QOgqUHk-zDY,178 7L2NhtAzHYw,133 TZQWu0gDpO4,121 MLxnvq1E-ag,132 CbMYk-lCKOw,126 yaGbKy7gAkM,38 SqOnkiQRCUU,111 764r3kF5tZg,129 fpKl9lrLfx0,140 zjwBNUXCA-M,179 -fJwmmnPHok,131 SgO2khv_SDY,111 hKqQSFaX4NQ,113 X3vQPmO3i7Y,99 0tN0uV9DebQ,126 3ZpmjPc9Vcc,105 OLvz5E61UNs,133 lWZU3pPZWig,127 7VV6BZWittk,120 wqj7Q2jOTc4,50 m_xLtlNx7Io,81 n9L9jMlulXI,106 gtKp8oxOzAU,132 MfRi-a8hPh0,131 G7GXq4M7SuI,131 zL0ipXUD-uU,132 82KgLj5UKUc,47 ZThOaBpFIGg,128 X4xJLbsa4PQ,67 t8loKEw-wlA,99 VepWTt1DzTA,131 dOObdbjoJ4c,86 mrx4SwMyGdQ,76 ariuokNFhSw,175 l-EWc6AcPvQ,108 qTUAF-_v55o,109 O7dHybpZ7Mc,73 PMtkv1zgi8o,83 Wzt_d8eA_m8,114 t2QvuZpxmeo,113 uBIAcBKvF28,132 -L-z8VNbrcU,144 BrXYAZzLZTg,133 7Lsh9PH4cn0,132 K_31ZHeMlB8,127 cHUML0EZ1BQ,79 fOHbTh1Wo4o,114 GP1KHL0j0GU,78 F0wFS45JjWA,45 yQ3jp-a5JK4,32 -BiLCJxpqi4,77 n-mpifTiPV4,130 bLqwpb4eDeA,62 GLQd8ZTeYlI,70 0woPxIfjVTk,133 kgxhkCKXyRs,169 RQmCVPN6V-s,133 4PXcUkIkulo,56 FLjixsUEj5E,124 gkfAyFT8xGc,79 O_aziIIp8U8,133 5hXXFQLDsoA,69 ZI827BuJgx8,132 ilfv_YzaP0U,133 oXjCj86GB-I,80 5L-JTSGZQ4E,127 9eGwOuyKu1U,59 U9nydZd_emI,133 ZRJgexzNOMo,104 ZtuLM666bLo,79 pnaWqq2eRcc,179 -BhFk_mOlxc,120 -W2T5Gm7i74,133 YMzV96LV6Cc,133 AysV4mGh4fc,132 WsrIYleq2KY,131 pLKZ0Adi70c,51 m5n7XpAv46A,55 rSWBuZws30g,178 NCAOKR1jpp0,85 C_4mdGA9ehk,64 ZuqwMQTc8cE,119 TY513V0RMgw,129 ZWrv3l_2tGQ,133 TpGPSRGrL3s,109 0SSgv8t0QbM,133 6DU0mdThjg4,100 tnhW2iYL25k,132 CxxuM1HCI-8,29 JB9rdCKgGuo,84 kFhIMrW1Yk4,63 ayjftbSDeVA,132 jJze-x__3o8,128 MDwNSR0QmBY,86 J2Ws0QEADsU,174 b0xYU8jHaH4,119 zPeqoWzZE5I,52 MgtXKQbmYRM,44 eBE2Wgz32nY,155 n_c7JtDNNUo,84 mzZgTmwmkfo,132 XrxIR2uja8w,180 -UJ9K8lMxPA,176 Zur7hoLFsrw,104 PtozHYwIkNw,133 WEfVr2S8eo8,145 5aBsRxccPJI,177 K-cBT5AxRrg,138 cXCMz340CRg,120 -wSYsQS2-NU,39 LeNRbtWgero,50 TE95amqnEx8,122 F3hX-mdx80w,113 cg7wSv4ALRo,50 yGbG0TmmRDg,39 w0Z44BIDPPc,128 36FJgdiYYs4,101 Y0p3egpGwAI,131 OHAVcgjGDqM,93 mHJH39bjALk,129 vG6bW7_-CRQ,180 9IzZsjED07A,58 DYsJH2JWJTY,58 CemLiSI5ox8,166 uNPU0cPPsmA,57 jXb09CCPFO4,109 EbxlqGXQeEM,129 ND-nldJc8kU,133 dbgOACJpZg0,133 OD69M9N_ihQ,95 _MlQzLtPA0Q,104 cW7Q7UySxRA,162 t2RUtqJGxlw,133 368Nrtkmrls,152 WhyNjvISFac,73 KMnK0as4TSc,41 ExGQSMWhujY,103 DiNE5iYBuHA,123 GUwhnO-nTLo,130 SgwBAXfvdFE,132 2jvtU-_WDUw,114 sKrpl-KBTzQ,89 5Ui9rRepv0Q,118 7tmC9Qq5RjA,127 Pha96r6s_g4,42 Y1Q93Zi9_kc,129 Nj7HiMh778M,105 Ustq_iSIqgQ,132 dLpCZ8g5uK8,127 M0N1Q7Eav4M,130 LiHKY-bG36E,26 TCQQtdtZmv0,135 yl_CgAqNvKc,129 NEYwJbjyF2M,132 JylK4HuKMvQ,180 cDfQo1ANeLM,133 givOs4_nb-I,63 aHM8kYwl1R4,59 uC74Ix65Aas,129 d6ISJ_dN-80,133 SH4PhFHyC5s,55 W5PJrYN8lUU,140 Zowmpbv1za0,122 kY4iDLi0pV8,122 QFOHhusNwtw,37 fi6U1d5eW4g,115 AKONPxrqFxs,114 TgXkBPFZZFY,128 NP5IK_pn1eY,32 HIPljGWGNt4,122 AyNEyYnJ_ds,103 0zyVlsLgJ8U,118 JAG9oylpNiY,82 PT-2kB0dajE,74 Yq5csaHc_GE,118 Y7LbtFY23wo,129 prnQLmVg5V8,118 GxQPnTqPeVM,112 ZpXzLVGlnc8,168 TbI7_iOYJvg,129 2TAOizOnNPo,101 gsJlkWp0p90,131 ugw3DUIVKow,131 jsLOtv4yqIM,132 hHVZ_viVD9E,156 tp7ss_bTP4Y,117 czIb_WZRk-U,106 VqLghmct2i4,76 2hcVZo8jP6A,85 omTBgliYDKM,69 DqpPwu8MQ2E,126 GCfWXNmFFbM,180 b1vFQilhgrY,47 DXSoxAHjqRg,81 tkN8fCU-rzU,119 o6zEapyz33o,51 0t6IIdmOIOQ,178 uuYTVl0iOkk,91 6f1jYUTo7AU,133 sEgsFoQhy3Q,133 CxzCn3OZfeA,99 A-FV2T68Bz4,51 x2vfxsdVhaU,122 FNLQdquN0-I,130 P1tSxwpUz7Y,135 WDiwa8H0DTc,49 uSkVR8Tbu8c,63 m-1vkYcqRRw,132 AGk2Hr3GcS8,128 cH80fIW-mrc,130 zYRqTV7WyMg,55 VWnIhMU_pRY,151 LMagP52BWG8,178 tSXp2wB6kXQ,130 E_Rabq4muu0,122 LPe-N0frxvU,109 P8JnW9dWBRo,126 U4iAA0B9fJU,133 RHUbiL36yjo,42 vlqQwxeYtr8,133 Ob_Sq__g01E,158 WTw51Ynkn7A,75 PBObihCz2L4,133 rChS9MeLW-w,125 FUbC8WBChng,109 -MQNNzaEt2s,37 CiT-XIWEC8c,121 GrD-bVBIVTI,103 9ekHf_EMmSk,124 C8IBujBZjaE,133 aCqhUO76MTU,97 V2Sa7ey52f0,124 0dlFAtbte0c,36 VnAR2qB24yQ,118 YTds2jCQHKA,41 _zlqhZOE4yw,35 iIUzHUOdLhM,132 No7DllIwA3w,46 U6PfGIrWIak,124 Bw5UwRasras,171 _KlpD6dr7Qw,135 FuJ2soRp1VI,130 iseaUTEhwzY,38 IOECGWT9KwE,128 eBU1T2DdLsk,97 2xB5GBvOqEY,179 8LFQun4HQj8,176 cJBjSpKIRWw,131 g0UV6ug96c0,112 n8hmCcXvpz8,129 rCg9zLCbhZ0,133 5wThW2AGZw0,132 Nbl6Y076TeQ,69 if5npkJHfik,125 KBfD-4BCMR0,133 trP4BilUtI8,86 aGMhMCHyM3c,130 hImAmM5-Fpg,51 s3znWXpeLPA,133 ByExQg6WGeE,114 1atAz0BIlm0,193 PJ1i0HuBXPg,133 YJPebmYS95E,70 XUxAGsL8b0o,83 vV3Utpy9vCI,132 aMBtKhTlQHk,132 F_EJsjP26cI,119 wCL3OtOzYuQ,84 zdX69cWtu6w,133 k7o8U7h_YHM,61 GxznDWMsp8E,90 1jQP0Y2T2OQ,178 X7Vt8oHsr0g,132 Y4ZHPeyJ4ss,47 gTAMKrPh1AE,73 zyRjUeY6YOc,130 9pT5FVBFunA,117 AekHQpGS_AQ,143 TDrGHP9Z8vw,118 qEMbpl4V-eA,94 _yy4qamWAmk,122 L25W_b8Or5Y,37 e8KqmFe953I,96 Pz0RfOVm-So,63 18eaNSxhK5c,180 rrejfviNpqE,127 QO9r8aO07YE,70 HpISLkb5L5E,131 CG88PCHKwOk,130 vQyK7Re2-Jc,131 VN9icwiN6io,139 cw1dB9PxWzM,107 o07ecRzkLuM,122 iTLUzEjV3Bg,118 QXFR1L_gOg8,110 wxb_X12HZWQ,131 LmRLxta5-4U,125 aURe7hHL-Dw,79 er2a5WhYU-4,169 eORAWRKW53s,128 ZOtIoBAxDUw,133 tumI28B48wY,130 GolLDhBuy74,116 nGSrqmJr1Y0,127 B8cWjLMuJgo,132 Hh-QeqsDXKI,129 -nkqrSaJf1g,133 irglc0zZbvA,66 5WuYr3fFNFg,89 NaGkSrOXOp4,180 T2Y7oo3iB40,133 jUM7RRZWW78,132 o9guyPNZglE,119 yu2VrqdOVdw,102 UUiiyiX_STo,126 5FgtVXFRyTQ,92 4_9ZfH_x1hE,133 COhtZbBhOYU,133 S7vH1F6nnug,132 9pXTSPcZEWE,123 -a0vqBmrAh0,107 9QIPuX7vf1U,87 phJJFbxyino,133 jrIc1SlA7O8,63 d6mZ4guAJK8,120 0atATbXbQ9g,42 GG4VDjXtt7Q,133 xfwBwk7k3Gs,86 dcsVnpHXXX0,90 Ls8-mu4kDpo,106 su2njbUCQhg,133 FhPUGeCMKCE,67 LldAqBKjyJ0,133 l83CcqhP-kY,129 O6ZWqQ53cJM,90 Kd9_2TRib3k,253 0nycksytL1A,125 KwsyI7nWrG0,131 EPweJNJOQz8,69 CJBoHk_Ld1g,47 9oVoJMVsKtk,71 Uyo69utc9bM,104 ub-t6RcoeTU,133 6RAn28uDZHc,133 pB-bN-RkJLM,91 TGWJfpAwlrI,132 3sDL4LJUc_c,121 7bFi99Kojrc,114 kaZ87rTNkDA,127 bg9SuuzPdVE,133 DiAtgmRa6fc,122 kg7goEASO5E,170 JDN_C4L6Bjg,132 U6M-YT5kkio,127 4OgldRzYvD4,132 CZK9pY1dA74,133 y935w17KA18,133 ZF9RBPElv5E,88 9vUcfymkjNY,132 hpb2-ZOzc_o,133 txHNcE_d7ro,172 BziL_wBTw6A,126 aEpa21af2j4,127 pEjOIBe21a8,126 Sk9mR3zjrkk,102 BkO51g7oXnw,59 NjIszoXfvUQ,129 NEwspgySg5s,84 i75piQgUKa0,74 JL9cenVTdOk,133 EQP-k2x6Yzo,132 f2c-tMZSZtY,162 EnrWZiqgv1E,124 7Vl03BBrGEY,116 gOx8scS9_sc,90 lJDRkVKjMOU,154 IBjrQR_1ef8,119 Z519Bs2Kidc,128 SQoNv-hzC_Y,98 aMQysPMcE4M,61 xZXMOpt1jds,145 mudt7nvWwo4,62 Vbw4I7BhEBk,119 5WuZvuZjk3o,133 v5FtI472Q6I,172 HYUfT__t3jU,133 bC2pBxh1LZc,27 o8ETRMZt6kg,58 tMIO48oFmHc,125 JIhx0f2y25I,133 dHLDknvGAn0,129 j91DsC7XvdQ,113 Oio9JPB1GzI,122 8-UdwBkXJBI,108 ruN_KcF-Ouw,131 P4-obzmm_T0,114 139c6HgY7jA,71 jLwbUJiyc8U,30 DY61X243BoU,68 hFICuHeg-CQ,119 jc6_XgtOQgI,143 XfBImxhVWTw,130 U6X6o4CAqL4,53 Yjs3BLAsvOc,74 44rUlHYg-MU,82 8CZ-ICxcEYg,57 b9T64w0cdDA,125 Rdp3LSS_czA,84 dLcQb08EVvI,133 7_OiqaOaeNc,85 FzQ0GeLVLhk,101 dXBUdCvqpNg,179 WNnxjpBMF7U,124 fF12SZcPQ1s,42 C6k9TFjWiGs,188 lKTGkLcn3yY,126 gkEsrZpCdOo,129 4sO94xn-C6o,68 Mwmy0awMZXY,178 zZB1N4IMjlA,120 mw96cSYo9dU,130 CcfN7q8rN58,108 UnXDK24wbSg,133 yBS-MktwqgI,132 67jgvKFBCsY,133 ifkYHEoe6_k,96 LUDEjulbqzk,133 I3znSbbu9IU,104 ToZx1LjLmrM,126 hLCjV1eOAoA,91 kWoC8yYqPJk,109 Dk0roE34zLw,35 wytwlFfk5dY,63 WyNGkhmkuus,130 jvZk0rzVeBw,122 WyW86PD74dA,133 DMx-Az5Da4M,133 eVUsVW87kSk,132 VkGD-6ebYJ8,92 Uii-wMha6mE,128 W03miqzGMcc,89 ersxqFwDkWA,166 _wD15vBDzgs,133 -9xP6hMwNy4,133 SSk0B0dVq4g,119 W7Ic9rZ9OQw,94 yLrN6wSSGqk,59 KdMZwqYiRH8,65 IMo_Jx35SZw,94 ndItN7hhtII,107 UCh-HA6pIA8,54 74Y7PD_uBe8,103 0N-cvihnyqg,43 n4Mohc3SrHs,56 M-cO3MLYOy8,180 uDISBx2Ry7s,131 gTLqDBbrmPM,43 au_5dPh_Dm8,51 xA57pKdLCbM,130 7GLhXtUgUg4,126 1nLc8ZZUKCg,133 1DNyLD2SRjA,88 r3TEbOR9SyQ,127 0lCPmaq960E,180 Itr0jcR0S4s,172 ZbPoAOc_iKw,73 Wuwev3p4rKs,133 TOUrLn1FFCA,72 XZzaK0UZJ08,138 x0KnLMaLLcI,129 yFMFSxDF3uU,35 -v93NKIFBBw,90 8CsWUwcJgHA,133 VE6K18Mfln4,81 coDtzN6bXAM,145 PAHFNiNl9JM,180 EHwxZtRyOok,64 IToYFpzH0_U,42 Ig-Vf5-qTSM,115 rhc_Ds85lG0,113 TRAlGwGvlXs,133 CeSQfi3eLhs,98 CmcZU82YaEw,71 0qeD9nc9nwo,72 54A7W6eEBnw,53 WwDJZhI5IRM,111 ZIOCaOpBGpE,152 q5v5DOEF45E,126 NlP9f8i-4c4,130 rQknyebGfo8,126 HQv0WWhoZnI,160 8vq_k0yqq88,105 GuuUX-4_K-A,143 fBlAMqoJ5BA,117 ACV4Krf8JTQ,110 EQCf1YAzPsg,120 Mb-3XGFTpLQ,132 Zf_Dt4lo_3c,129 nImG5bpVpVI,47 76Dbf85Vo3Y,3 lx0z9FjxP-Y,124 dLjnIpWhLZ4,40 d0xC6yVjU9Q,133 j84y65YfUS4,132 NYTS7NBDKKU,53 PHcV9HUfr0c,133 Z0092DSphF0,125 WS94fK4djqg,117 xfTtfDBUrvA,124 KKzWTwJwrGc,127 53o7_NqrTQA,129 0vI6TtIP4t0,111 IxjYJayuWoA,132 I3K8xBfywg0,176 Y-CJgOlRfkE,156 ZhzpLQbMNjQ,133 8WqRrq_lM14,33 DDYj5ChFwbU,119 _kD54-q1uFM,134 kEwJ2uBX7sQ,132 0eBehC1Ky8c,110 n3K6Fkd5ri8,46 IEOqAlmq2NU,97 8DrzN7pcJpI,143 X9N-BROIbeY,132 3ZuQQQTv48I,91 b6W1FIgCADQ,111 arbY3Yvs_Sc,131 D9FBXb4G4GI,91 wBLliPipoYI,178 f_Pc2_cTQnk,180 ji8jpGMlBE8,44 chDeyAHI4ck,143 YhK1fYhl5dg,52 p84uEGZqFlk,180 EnIL4KXQI2g,112 giXrOAZtjaE,132 R1hGaVoYZxo,115 cjkkKO5Gsno,47 vhQ4S5ajwDQ,126 LZo51T6e928,117 z09OYmZg6-Q,152 HNrYPzxrG7I,91 vb2GzRckU9s,129 lyuwBW9lNa8,133 TEodx0CTTgE,74 7Z1PBPrjZPQ,107 3c6F_0KpK3k,93 SM-1QC6F1-k,133 aSxScp7zUpY,174 4disuwEvw-w,212 25Y5O97c1Aw,133 adOO9YXZ9Ys,256 HYOjY7JJDBI,132 v6bD23vEigE,187 FUL6DhVU7E8,137 mHh8PKWMQEw,180 8hJlwQwwCGk,128 NjFLXuCHUiw,158 d-kcczAff40,116 6NvDZa8hWSs,104 WjyJ_ZUEMEw,169 mg5e_rjtHw0,119 Bb5tMhOeg5I,133 aZV1XI9qZUc,86 jzEhVsME8p4,106 63lE3AOBgeA,82 NIOWsdgnNiI,130 NMaLs9vr7ko,91 pvni4Q-Xh7k,133 wjHd0VWfuRU,131 tjsQP94DIfM,155 ZlGg7QIlGp8,115 -ikc2VldgSU,133 _UmaFTEIZ84,132 FRC8Nn6PREI,247 SzQ4cDkdsqg,107 tIypF4ODIsM,110 dO7tQ5fXGCY,87 _wfy0wdA2pQ,129 x0Fnxdv5rJ8,76 0NtiiKd1HnA,126 gx9O6q0pDAU,127 GNWJFqW17yg,179 hVZ0Y8l14M4,125 4LaL9XB_Cx4,127 bBg5uLCQrbU,93 YzW2OjTJc0o,131 G4_3pzwFYKw,56 CZrA-i6kOdc,130 b2IWTMJV2cE,99 ehdAEyAGBEc,131 CoHgpkuV1hU,133 ndrr3vif10w,132 BkW-4CWw3XQ,133 l4L9Yi-lXbo,131 f783E8Zi8Q4,84 zFo_QE8j1Hs,133 6fXGKCKcXk8,44 fuJceBJIp8k,132 uyj1CeZt23A,103 Ho5a-qYCpQo,139 BKV1SxfmeYQ,97 AXukn4q48sY,47 SY_94CSMlyE,84 Iy2GKyD2IoQ,112 WVx0SlYmaxs,128 6G6Z60EPieA,133 3a49kwfRAtI,119 xmwm0RH8i-4,103 ioTMlrCoU2E,98 nauLgZISozs,132 qPfLNjGXa2M,120 Km6bFBSVty4,118 wAjHfBk-ZeY,86 Po_w8OmTfoY,57 excK59qpaOA,131 GJP8XTzpOCw,60 RObb2QfBnUs,133 qCv3989nvog,141 QtBnuCwAJeQ,47 iK0-76FChfk,176 S48AVqtonXw,128 TZAvqLk4o-g,102 9pDIRuJt-gU,115 rPTis4f5DG8,38 zyVKJXfRm_g,122 hZdl2FFp0eA,180 _7dr6PCeW4c,129 bd-fVqwNZaQ,125 ETC82KEplac,164 Hjhg4s4nD5s,127 CQcGrzmNihY,133 kvhcXo9QzqQ,44 KPxDoFbsvWA,133 uHmd86pWvmY,117 ML1_2lHFftE,132 QZ4EwBtyfaA,142 xsyNWPpAb14,104 HRbf5iuWZt8,133 4vcNnS9k884,132 yE_JbyAR7qY,121 Xlj9wg9q6f8,179 iTiWC8GpOgM,75 PnjqfWEL6bc,107 phxMG8YZltI,30 jyZU7lfGjyk,177 Z0pOWMHRgfI,180 fgq8TsyNTXM,42 UQzUOKKGfLs,111 MFd88DSTPgI,169 oKXV-XQzUrY,179 NvxttHABP1o,132 iOGo0EHHtCo,36 GXwVNAl1fN8,41 xPxs0Qh72kY,69 hqVbOSEsJNo,178 ksJuTetxrDc,130 91wo3olctwU,109 s-EheX9m-dE,103 Qg4NBOIbwXc,115 rV4DxcJOCLs,120 S63g8N9Wb5c,127 XQLKAVpgHQ4,84 5DJehPkkRSQ,128 Id6oS3L-D9A,129 dp6WEWGtqRo,131 fr_9D8OREfk,109 Kjv-HBYitgk,119 qUcMohewjvI,115 d9-DFXwcmFI,110 2Gd39qysshg,132 BIfyebxopuM,58 50N2eB0JI80,112 jHyXx_8HuYQ,147 OvRYeeFT7BA,188 ZqOF2mZJ9t0,130 1tYwDHxg60g,118 9XoPQEOY7L8,60 BWWFJ2yjQGE,120 LmrLiS3ZWxo,109 maaoRjQN42c,100 nOu9n4ulmRk,100 VbrKHPGdDT0,125 Rf9V-yzCzR4,176 r5X-hFf6Bwo,177 Jjfj3SkBkpg,133 lKEihcQaa_g,119 AzGePmv0GD8,114 kwdRauyX_Sc,47 rWqVoaYxgRs,159 PYTXPrmSwmc,132 CFstDwSYjkc,94 zkBkTx-GL8s,132 Y9yrupye7B0,176 oqAu5fVDwAM,53 xt0TyfTl03Y,65 A4DSD-ZbhoY,166 9plvG6cSgVk,119 9V2nsuzAzb8,72 02A2a-aEvmI,216 n2A194yTWoQ,103 d8WHOiQZGok,141 KYUolurihOQ,128 N9hJ6pUeqxQ,142 8GPu-oZ4p64,108 BFeuE0wAHnI,106 qrKbJd8QR8E,30 oAb2_-uv41Y,120 f7q5ce9Jwgw,44 T4mRbRYaf1Q,133 KUGH4XQ94tc,131 RK27DwSEetI,69 NOZMlcY9MC8,263 IC8xA-bOXOo,143 0ofpRxc0GVg,126 bQme3XqjpCk,65 oh3KwtatlkY,172 wANxoR0GtCs,131 8V2XD5XS9Ys,133 4weEXyoXZKs,131 PtgGWFzIQq0,133 sR528E5_8yI,106 g1JAILio6-s,133 Tcwz8-EfFYE,169 g9vPtCW9pJ8,131 w6CQUyyPvAw,84 Xekcysu64Rg,72 CGivL32FazM,129 XlfvWdF-g_E,80 y9DslHbBubA,130 5nvZCMkXEFw,36 4dWE_ag9W6o,110 TO0OWazmdc8,52 5SnIUYLRXro,124 -yZVme3ToO8,92 Dl8BO_ZLdEc,177 yJJA6WRpvlg,180 jA-BCSOaa4Q,133 Q1IQ49BHkEg,133 nRq905BT8HM,131 BZSb0JCWcXk,114 zP0dxHW41kg,133 RBBmO8dhn-I,33 mTysQF15PHE,110 3MzOdxCbTgU,67 axGVrfwm9L4,143 -RhmDUj_GJs,104 kPVaohv2-ZI,95 qaBlaPsuHQw,98 Ev0Dm5qX0bU,133 SihfPA7vJms,47 jb0Cjzd2lKU,75 NZxjmhwogCk,82 ij3HAftwQQ0,80 0668UNhYjXg,127 qru3WdOfj8s,98 -s-DjmXYEZQ,150 q7CX_5D6y6E,70 6z6MpYHnbRc,131 r-zlkOg6_Zw,24 pZNQ-Jo7nsI,44 bU6ZsvCba7c,132 d2zY1WRtG94,80 YlT7x_8VuMA,57 aJ_NWmLawAM,49 fEcClEBT6QU,179 2ovvUa5WXU4,55 dfT_2XRB8aU,124 IMjO-38v2cs,97 pDv-C_TpyG0,133 31KYorrCgag,112 0gBKE5MUiQc,109 kflvHGnIkoA,126 mO8roISHjJo,126 fvBB1KK_VY0,133 VUG-5kLRjeY,90 5fLlgS6aO9k,121 wYBcBpFZYF8,133 5EFH9AmTg6c,123 LuQ6qCNwWY8,111 x_75yMOHMiw,175 FuE5BaM0BdM,64 1LxDWSYgiUc,118 DoUYnGrhxi8,180 8ce557hlgEM,133 ypmu86_sKpU,181 HhZ3H18ynTA,115 GNUP-so0ndQ,133 BcRIvgk2USU,105 KMm_fkYUdo8,134 KeTBqolcrO8,132 Au-u9RWe0Jo,94 v1M3w_o7cOc,117 1b_sbGJGx0o,133 Aw1mnorjq-o,128 9VAkRDPA2fk,79 KLoOI5Laplo,143 xDwT7-3BQ5c,123 GxKkfTq41zc,115 4Wu598ENenk,133 pcqaeLRop58,180 VrJMgYRC_ys,125 gILsE7uSUkA,54 Tsz_tamjpmc,125 6KgxpUSWsoA,128 TbiSXYT1-SY,40 J07_XVy9Hns,129 dofECCtTfaM,52 QLNUIU7AzTg,133 i27WEap2cLA,108 R1dILTUMJQI,166 -YjwJY6m9k4,127 LQNKhY7ws48,104 wzSYH0nT6Qk,108 Vw8BozG_LVA,132 fbYS5f3GFek,66 m_1yILWMqFA,82 6u3GAQgZpww,92 yp-LFlDEVdk,64 9HGMxZEl60k,88 gAVNayJY7Tc,132 DBZUhOSY6g0,106 NCgUx9-REsg,113 n0cG11lTS1E,180 06KH47jZbG0,178 nMlDPsRwZE4,117 J8yKS1RRJbU,150 uySQvxQHbdI,66 7cTI5pyy3Fw,120 ZAerssgC4pc,127 yQ8PoAkZnew,141 ILwoKfeDJO4,116 pDzkhDjTY64,122 ClQNLSnl1ow,139 -yEB9DCX-Ek,125 0wVgg5t2LAM,96 XFYNHsSzMOo,131 louBM-Mix7s,132 qeZ0SIG2eJY,118 TfxoCicKvCc,130 mw7xjHBJOvs,117 b3z4_gJ5hGU,132 TrqpRcocmrw,180 CsZUGoa3JHc,179 H2uHBhKTSe0,94 mXEgUS1i_m4,117 Y937MAvxTZI,86 lpPH-pYm7LI,67 g_wc9JvTXGc,131 Nn4pMI2q_PM,132 WSyi9bIVryk,51 4Te3H4lBaBo,162 Ya2mPO0f-uk,128 FuXl-Pmr5kc,122 1iJNC4ty1Q4,132 weCxCxIIjHA,30 aQ5PyaHQWVA,101 3KNEj-B5HB8,74 bSxuXQCEC7M,43 XsdRpsG43WI,42 l5KY5zpDGZs,120 KKjCm_IoPRQ,160 Qpux-Drk6EY,71 MHpyl6uVPrw,119 nXqdGyqR82Y,132 yFWgaAX2tCU,107 c-tGV96ceBM,141 HEGucJf9y-w,133 5kaBIMuW74Q,133 ac7D9kcETUg,130 v9qbXZZD-b0,125 LldI0SRzJX0,133 rW23RsUTb2Y,174 8qohrMCMzLc,38 FFkQN5DyvXU,175 _g9RI0GgRIQ,132 -aH-cLQqwHQ,120 TQXuazYI_YU,128 uvgBCv4v71s,124 Onqbwlqk4G0,121 Kocw_F48CGw,130 srUhUPirCHo,153 2ZhQWROtg58,132 ql_VifCJG7I,64 1RBwoUbvxx0,156 UCskICK1t1Q,131 Lzx24hw_K5I,117 eSlWWZpF2Z4,83 3A3iNVaLod4,49 mIZOUXRYVyE,58 ja4l7-L7n6M,120 eu2OiA65JOA,123 2fc36Hc2n2s,173 n-WzTlw0scA,106 sUhg39GEqGA,63 NAGgo5AtHzE,126 p7cYf7GaXgY,117 Ji28PrD7P-M,132 W1Ipb0WpoGI,133 MCwQ4tdtev4,56 R9jMf8U74cY,65 xGN5cFcaD5A,94 fI-F18nRHBQ,133 kzu2Gwn-sPA,123 dyxcQ4FV6KM,50 r2jbK6dGLGc,133 eFs_YLy3Ld8,133 xWShDNB5XZU,132 bcY4Lhb3yhI,113 IoiZtWDO6CI,144 rf5MnH9pG_s,133 VKbyotjwcDw,180 hL71tkydKPM,91 3c5pbePUc2g,114 fWqnZTTRkm4,133 zMgKNI5A9ps,132 mFglGV3n5SM,96 l9MW39UXFmU,123 9B7tjXbhnog,59 _x4ZoZAzlL4,128 FEioKHlkczY,92 QmgPw34Xm3A,193 GhSSEuAEcm0,128 EcOENbnXxQ4,97 9da9FqZc8DU,74 HuYvFH-he5Y,131 FJBpmWxw3o8,42 eQhNOc_Bo78,132 H6XIREQHU8M,162 98wG4OA6iLw,133 RXvm3oOIG8k,120 7Lv6KX12Fbs,127 cbulyV4O3qc,128 weL-NjlIQ0E,142 zIC2aMlqEZk,72 UKAi_Zpp0_E,113 fNqz4AY0pm8,141 zxeNP1dHgXQ,133 5e9vyyrP4Zs,68 BFTqHJw_Nmg,56 pPZ7eetT6oI,53 MLrd4hKTVLQ,92 BmylCJhL-5Q,126 aZiDvfhRpz4,73 yxoE9td3Hko,133 dfrZp14tFjA,79 Oa1LpwUBNAA,104 ZVuhyX3w4Yg,122 YtDqlEcfr9w,131 4rT5fYMfEUc,117 iMliaXlKxow,133 jFoUWFmM-NU,192 0XOzPjsD_ec,176 G4cvTaP7RS8,167 T3Xlw651IoE,180 LIm8HfwnmVE,133 -Mmq6Kmd75I,79 OxCVucvlF1o,157 xFkARs9CHaE,180 o5l0Bw2jMO8,133 9U7_NBIHsQk,83 LkdJwYQIR2o,46 ppWi_bhS2eQ,125 KPowlurwWzU,143 7_hS3YLPHvI,133 7phF0rMpBiw,97 Nlyai-wfZLw,132 0L-Zqr0eyDg,47 pieqR7-byq0,120 -NzSDbGmTpA,95 GkPbF_FJuho,146 Gor6z4YDPhU,146 Oj7mIWCoE48,70 leQiIU7fzPs,47 jri0U57iWWM,180 _jFgF0gbIuk,55 TzHrqDQ1OJM,132 OBWwzOCkE_E,81 pnqh4SI-E6c,133 aopdD9Cu-So,87 dJS8Umi2b0Q,129 Vi5pdd7xHNI,134 xkzkmyOln6I,52 6Q2rF2uAH6g,83 hLQQfSmgoGY,88 DnKAU918UaE,132 JS6Gw6NVgRg,131 U6Lt17rALrM,133 KIxetRsd_2c,127 h4SMndWj5To,128 u9S41Kplsbs,215 g-gebDSBFkY,117 o1mDknOtAv4,133 1TNL7KlEI8g,44 5ecF_TOyhfQ,80 KBaCHull47I,84 J2_tJIgfnDA,31 y59dykC47mc,109 FCYA84FwbC0,116 D1kIRqy-sbA,112 VSo45ZD29oo,107 Tq8robO5eJ0,82 bCaHwP04KK0,40 N13WI3oVda8,117 j0silSyYFPM,117 xD1H-FIqeMA,133 LIXJaTQTDAg,133 BW5hIGrXcEs,104 E2kt9XttAzU,99 JMIukdtLDt8,128 CsWFLaHiQa8,179 FeK3AM7NZzQ,90 ExYO7B26kkw,104 W4xO0k9LcIU,133 cqpvoIx9wbw,34 r13I-TuDcWI,147 U49MXakb7f4,26 jk3Z-MVoUg4,135 28C0A4CEUsc,114 h1-T9LYq1hI,133 i-VeLFEMeko,122 CWN1xWdKbHY,133 TxKxj0ZWEcY,160 uqLr5PR6sbM,133 h75sq4lELLU,132 Qbnv6eHKjCQ,180 4uHWjeoTol8,51 BXqeQxRvQGY,68 AHyK8eTGHNs,82 nfcci0C95tA,67 hohZbtTAtRA,133 9B3TN2rEckQ,113 jfgWw43Fcuw,131 1UqJgV10-wE,133 wEE-EVC0P8M,133 A-Cj7v3rTWg,118 lnYzb6P_1Wg,144 hwc74Ns9EZI,57 BavTQmiA9mc,138 Ad7rUGIPVqQ,130 wuZwdLfxTQ8,68 6vSWuFYVbE8,34 _tpfO7RS7-U,121 CApLHv_NrAw,144 fbbatiKJ6rQ,112 2dYyyQdjgLI,133 eZjR4aso7VY,130 7wYMAJSnpVo,132 KOWckOfARBE,58 9CJ9EDtZ2p8,174 PSZxmZmBfnU,133 8LGY68ppqVk,132 8MuZATnrE3Y,119 HWrjBBXjjhM,87 aFt3FGQcyMI,72 _ZJUuDLqjzU,81 hvZiZFDE3A8,119 CNH4A1sI_oE,63 JMt6zz_dYWI,76 6_KOLqpo7z8,112 U8XrE0FSQv4,131 gBjOW9luDWw,124 -oheJ3ZSgiA,78 CymY_Rl1fEs,132 0SXgXYo-Vk8,134 uLquz4Iz-30,152 diLE4umndNM,174 LlRHSFVV8cY,53 YGf3jBzkUeg,174 ZXHuGyv1KXM,133 1T53iV8HKXQ,142 gP8_w1J5raY,182 9cTHj9NKHXk,131 8P3Q_di3Lo8,129 Z5KU79wCSzo,86 GwFaz1nukyE,88 t0qYTDYyNvs,132 AZ2EPeq1TK0,29 aXg3HXlsdg0,126 zS3qOr0zAJg,132 ZY_uGAx3rxE,126 SB4SyMKugU8,161 L7tWNwhSocE,116 RH3I-IE0Xhw,133 32me3lMxEDU,122 VyEM6uxoo7o,129 iBbWqmzzKMU,97 Ok32VyEQYYc,111 REzwusMDvzE,113 MhWCHfeHWJE,97 bBaNdHqC_Yo,125 m1t9QOSYqYM,127 kmU4DlO3wzc,131 9_OMUgTFQhw,130 _b25Fbg8xqU,179 nM-RPO10aPY,110 onK1BeyHSZ4,34 QSWGpf7NQ7k,133 BuoqHpvCzq8,132 TYEvhdLuW-U,55 NTaSvSldlk0,110 RAKPzL6uNOg,101 fsOsSaJWOBA,60 eVarVWL4PwA,84 38ok415yQOc,133 b0fZtW9Niic,129 y8Jqk1kPtQI,133 Zx2SsdhKqbk,131 ONRLZIY7gbs,68 M6HxD6sZ-I0,143 4ZaIb1kBnX8,130 HtpiEXXf7dI,114 4SNTodFS0h4,96 ewwKExvkqXQ,164 zoFt-5SqUCs,87 FNHM2JEA1qg,100 uAERYfeiYBc,104 DOtd-mykOhE,131 PHcwHxzDQDs,85 OP4zJ101EPY,180 1kejVGS-5q0,92 gcZPWkNY6x8,113 y69ebASPg8A,115 2TI2MT0eoSo,115 DNt7PNTuePY,103 MH9ZK7vSBYY,132 dRTKQQtFoRU,133 YzpjrMci980,38 zZH3OD9d9Sc,45 FxCpDJ1ZAo0,93 LoSLZP0e-M4,178 WUJNkDE4d98,133 7LhZupa1Bng,113 03a-vG6wHDI,179 W2Q27LruEnA,133 HBxcalnSzIk,51 q-1DREuXwjc,58 m0z6-iFR-S8,94 iGgiGgeCwM8,132 86CKsczBdu0,133 CAeFPZ-yXYM,175 mvc_bbaLhSg,132 SoL6a37d1Rg,180 LxnLNUq0abk,38 lAlJRP1W_rU,113 cLm4oCbovsE,132 E2VBcVxwUqM,126 TY04QewafKc,133 esHt1mAYF-g,130 jl0ny6ij7jg,114 2Vam2a4r9vo,122 qKerIOG7jdI,132 tPImdMknAO4,144 LdsaucLvRb4,171 1edv56TCvxk,112 ZhjyZXJVm4w,133 PhXFRRVBKus,123 rp4nf7xR9Uk,117 1LvSSeZfWmI,133 SI7LDY6E1Rw,122 kvAByCIqoOM,92 iZLnEfsXttE,129 xNHt_KWKMbE,147 ACkEugMxFvk,116 noq0Lb6lVEI,136 r51WXifMsZg,127 BGnZognK3Oc,132 w-DFg1aS_2E,90 2vOhL_Hw-gg,124 5v5JjUZpAPk,42 fRCKKlTNxt8,133 V9Ul46Dj3Hg,133 hERyYjy3O3U,55 gtb_4pNuYIA,121 B2TqswpzDlg,127 x1srznPx1qA,132 05O77oX6bQE,178 dGFrhVeMm6U,180 Bu2PFyl689w,177 soTciHbL4iA,72 trn1aO8h9Uo,142 rrDG0rQCc28,86 3fwlRWBtHLg,89 mS-uVaGMOtw,71 qdbrIrFxas0,166 YmMAmPFhSqw,120 eFqD0yeyGTs,97 Ci3uRpwFlZ4,64 QN_Nod65e7o,132 qf-4TDEpycw,144 TTLjOAdckzM,101 mBLotJEfjDg,102 1IlqRjk27JI,110 lhQRz_BP1v8,130 lh0yfYUCkIw,131 4HWP1l_KtTc,74 qFc_0WXxOXI,122 hOz9L1KrJJY,113 kaU2A7KyOu4,127 AhpGExo2hbs,49 Sgwfvu6k0xs,129 dk3BfcWrx8c,123 chDaFqJMDeM,99 a_OuIUbxu6U,132 Xm-UligdIrQ,133 yb_-UHyPC8c,42 quY0mRlL5FQ,137 K9WNBO3szgQ,148 Auq9e3lBq6I,125 4Albtnu3zyQ,52 WSUWoBeJ6dg,57 DQYjgqnTmJ8,125 DmBEdpsTwxc,104 6vg44SEEMmA,128 9tkDK2mZlOo,115 RUX-bx6rwdI,112 V4qu6AJNBQ8,46 O3CGLSyIwNo,104 HzWikU7ir4Y,134 X-RU-b4OyuY,115 VHJ5pzTGtag,139 _XbL7lG0Su8,118 Qxa4zjRostg,56 obDVqhso9l4,61 QAUmchzQJAE,124 u2pu0m9iTo4,118 -TPRG6Yqzf4,131 W6IeoTNRVf4,53 73ZsDdK0sTI,77 3-EGP38lS5E,65 LAd6SaXDdZ4,108 mAs4z9GV84Q,86 QG_VaTDn9Uk,132 NWcBwgxUyuM,150 TeGaTTIBv1Y,179 MOuSrB5BYJM,126 gLvcrsbliOo,125 AuYaiXT_1tM,133 B_4YNm9mMvo,43 ozAXbxleK-8,58 BydT8m3NdRY,106 Bkwke3UCbCQ,80 39M16Z2aYYk,118 dAOw8dXcMpw,72 dnThWk9ib1c,66 5t_tgiWatvs,133 IFbKYqUofRs,130 1-G0Fxf9IYU,133 EOwmzfyF1oM,50 3z637yWEmHs,116 Q8IqpcS31Xo,97 0c5gYg3adeI,151 cdVMT44nWzk,123 3jLbKr11l20,174 y0iBQV-yyLI,148 ctrJ0-TLUHQ,132 YkjmtfQVzWU,81 2L0A2D7zV7A,93 qIxHb7cA6tg,46 OUHFpvPxmRI,97 gDymr00KVAg,130 X6CEEc9g9vk,132 dwT9BEh7qZ0,135 FnmVnBcfpWw,62 FEdyNyQCjwE,132 wF6xVdnFJho,133 b-f5iMDXvcA,102 a2Nw8Hen7Bo,98 dSpTTf_dzDI,77 G4RvOmNedls,113 b9WFVLRPOJI,54 OToWh3nrWn8,130 N9vKzv8jLw8,132 _kopi8gT9KE,133 vgZ-MV0YbMU,119 hR1XzVQnfqY,133 GXZ-NAPnfsw,133 uwstRxD2BkA,103 pJJjycrT0RA,91 Sy7YnrVXudg,151 q74RKOmIjC8,119 Ppa4gvsZHDE,46 o9W8bxAxvvg,96 BDiB3XcDsT0,137 HKpWEkSUs9U,105 bC3oNsbOyWY,133 5ITNMF0kSn8,87 tAOaV-CCaxQ,150 SKMOhrpxUSo,116 oJFKZnePh3k,64 6HJqPZ-KmZs,119 J7PnM3ji7uA,131 bxAiioYl1bw,117 nOLCO4_AKiE,110 XP71dJlnLJQ,124 yde2ib0YiVQ,55 lFHLE24hDQY,103 wq26A_QK4So,74 BnjXFpoLJfk,91 JzOSF71-kl4,73 RG9LKdqzru0,123 solCkKfZObE,97 Leh6zCbQDrc,132 L897JSOP21U,128 nsQtI33UbGI,47 yrEvK-tv5OI,157 saBoM7O_imM,162 Ppj45Ai524s,103 -T16rxR-nCo,88 sZywE0AT1qY,62 nCO2V7YS1nQ,130 AoSA32zQ754,128 kNpbZ_oVHxE,61 v7b0_Z9dzoM,133 20dudgZjeaY,100 lAxgztbYDbs,108 PJFA-emTgT0,91 ptj6u-cdPEM,126 ZTUXWwbqu-I,114 gs_g4ai4m3Q,133 g8fheDIG_RA,166 uvPjPzmUC7w,64 61AWnIZrT5g,88 dTr8dXob7YI,160 EXS5TiBYESk,128 wJCqOhdzatA,130 DsugPaXH4kA,148 9AQGhFGi1dM,113 MEdmiHCUvYA,127 yo7C-Sp_-MI,75 B1QVeR_p7WQ,110 Gq75bSHMKPw,112 99h9RG7Rfp4,132 UWjXERbOr70,132 bw4xDTQYIfE,128 AcNkJ4_bQ1g,132 eQ87hBFrS_I,179 fPUJS7w4Dag,133 6lzU26KS9yw,132 3rcxMDaDYL4,140 Nd5HqEJuY1g,52 9W7Ifu4OrvQ,105 U2p1u13R-eE,149 ar0xLps7WSY,133 U4D0HSqKiKU,153 U3nWo59iBg8,159 fA_1iRByNFw,132 iXfhOj2PobA,180 rAchA32z2zM,113 14t1taTBtmc,132 trgDVhZHIrc,137 hQEej75JeUQ,72 EtTIxHlaue0,35 5dBd4x1yxaU,133 JCruFiGN5h4,37 Y3Ij2iWHFV0,45 uOnIqWuSCIk,104 qopdYE3_QoU,119 wowXQ9ZrN1w,111 UaqCBqd8NcA,131 s4iqKjufJe4,133 mlpWVL2gHG4,117 WsAVIpTwAP4,83 SAPKjWHikzM,208 5Jdk3riKKwo,128 irCUvLD1t5U,191 FfIAWygymsc,132 VBR3jDS-Ad4,145 4KJD4aP90YQ,133 H60kzF257OI,121 -lb8E3qQVKY,132 OB_iV-135-k,131 _5TCxc7G31Q,171 bPavpV1D-g8,28 a5SoIFm-SrQ,158 3lz4BuydE-Y,83 LwuZzh79ds4,179 ToxlyJ4-zBM,102 z_udbrboBXk,132 JVjlqTOPdls,138 7I7OErGVS68,99 jLvu6WNWzKg,178 lW1vzy6psfE,132 Fjh3TxOHCxE,90 6ZNNfq5l5Ds,133 M9JQBS2Km-Y,116 MxqsmsA8y5k,146 c1HS49PeMUM,93 Hb7zhYzenhY,157 KJ4q3cWQPsM,45 kBifgLJF5og,69 4iW0kneOMyw,130 oZu2JfM2Aq8,125 T8QSGSX7joU,123 -zPjGsII_fw,133 IPEX_RXRKgw,58 2N5UcZJHy4g,150 Am-uvoQN72E,134 XdMuekkeCeU,126 itHVWrhsRSc,134 slGnGr6kHIA,132 TaLsQSCK0Jo,109 AWKQSDRekBM,56 EZ7HxkZKDuk,129 fsWhDcon8aQ,41 zStjjc7SBto,121 XAnnWoXD2tI,149 Oq3cGgqbWG8,157 0j4aiJowI8I,125 dHPnUPFcxdE,177 aDwNCyqgVA4,129 P57Z6LOoh_k,76 EVlaur-kEds,112 8D11eYo3bNY,46 F1adM9oDbbw,123 ZuYoEtEI_go,126 uBrvKhAs4S4,70 wqwUdp5-2D8,105 FCJx1uV38ZQ,179 7RD-I8AOf10,132 C1NgX-w54RY,133 Lp3r6mBRUXI,51 bOR38552MJA,95 i0p2X2rQ6Ag,131 Jfddc8LwQL8,152 fMxA90YU2Jw,78 VKFsmZhQWtg,174 eCR4DIi8SzU,131 Drr7dxV6I64,133 l4AmSVb6Hew,116 dkCUjz7I36M,24 p0WBxRosKq4,130 wuw6lFV1rRs,131 JxL2yg_bRnQ,40 SbTWLdT_tgk,90 -Fmvuy-4U_A,133 3H0V4XiAyv8,63 KSZwlMDSOvY,27 A2WV257yma8,40 jpPCVq8UmX4,124 FI1ylg4GKv8,117 BS-f_KwM81I,88 wM2NQimHkTY,101 o4E-yb-1_FA,123 HZjZbJuhPAo,124 JsFO0ZY7whQ,126 zxJQgYPXjN4,138 uI4fVgVVpiw,48 l4srSgqgncU,103 3a3zXJ7biqI,109 2l_IUAcvfv8,122 fuOY4W9QFNI,62 3Lq9NGTN8Pc,131 9-cPWheNyaA,132 jniUBhuJSuw,130 bg5SLBapMiI,159 RrQppEXvRcM,110 2fwZfyxiMFY,100 _jDLZyo3Kg0,130 Kz234-_khjs,101 8w_naC0saGI,96 SOcgrVL8Dg0,106 0Z286w5pRSo,62 dXngQtk0BCU,127 ADl0wC_cAbk,128 Fz9HnTVx52g,133 xeE4wGavBhE,129 dAzXib-thq8,131 _kz7e2_Gxoc,133 _3K4VtyM3xg,119 d1U3MyX0pmE,121 _b6S8tpQtdw,133 udn4UB_EZ1E,60 SRWyQELLODg,116 SxJvnJyF7xA,123 X8gUgmkzHjs,129 2jTjWGNMo4E,108 nimkNFEKUkY,102 cqeUgjPpCCM,133 pAZOyJPs5bo,114 wixLlPFJgyQ,70 lYa7NsegwsY,130 XBZfsb7OO_k,136 gPbn1uWQywg,133 Ksk7wPX-MI4,122 _QE6prpcauw,104 dH1SeHOpEO8,114 41IWZRnmb68,113 spvSw-wR6qg,132 j7EvXsSJHQc,151 uAphWDkKWcg,180 b1eMAFWXZ4Q,124 v-0Z_0SUtJw,133 vfIUYDjo8WM,143 6SEp2FQYS84,128 IptkOvp53-A,167 f_XHjqABQQA,133 22gw_64AGKM,61 LkqiDu1BQXY,126 Z9agItiMEEk,125 GA4Ozqt7338,130 e8HRcYG3Ftg,117 qSabiG8q8-k,119 JC2eKssXavo,128 HdRDCNtWUnI,90 uDffmOSVnBM,172 JcTBwzDucE4,88 BG6uMsq8PPs,144 xJjCnWm5cvE,180 w7tqVEdyteg,129 QEp-lhl5ImQ,133 _z7q7HzR9G4,122 kQ6BSOZ0VGQ,114 Z09MpDVYWSw,122 0_avQPM3L90,178 X9f_YUaQGWw,132 ITszRkvBcUg,112 9yEylIfDkms,139 t9P2B7NUPfM,109 0DFBoLZC3Bw,133 yedsblplSMg,128 4xh-Hz14AA4,60 A3xuABrdKis,50 ix08f9qDkk8,129 joTY2Wir1w0,132 Dyme80H188w,111 dwIgQqWOKCg,131 GanDtOcF0M0,129 aDdBoZOylmo,159 H53kBYo1Jx8,114 dfFFgV624TA,71 I3wUstDFDN0,81 D0NZyQWyZfI,133 0ShWGyC408I,137 QQJDkZZaA00,92 82IXVFuJllI,134 29KrhW9Ft4E,133 Znook3DEEaI,124 rQOBwQbssgo,91 f1N8-L5cuWQ,85 S6UlqI_pZr4,37 c3uOWTAuaTQ,40 zVwWDprMFiI,101 QAFttSucKH4,125 aIPmu6bYZOs,57 l84trT4b6yE,126 mV5UHLHdkY8,99 QZjmr4_K8To,132 4xpGjslC5Vs,119 d6NOGc2Dymo,39 NrE3t6Pgps0,130 FhAIXOkAUhY,130 lrvMjEmOFhE,132 yJzn9MhJxRM,88 HrvHeKH9kLg,38 Gokkl2br7G8,180 Cvl0iKbdV6A,132 9uFe61ebm30,134 Q4-XxWqSgH8,132 MNV86VFd4Zw,160 KMFxz39Qhjk,128 j38t2lDi4GU,180 wLaXJWcrgzM,133 Y1aP-YyBdIw,159 q2h6EFk36kI,56 eUNWIKp6nR4,119 GjOcw8d8yn8,133 lfJ7WzyoZH8,44 nIYAfX4gYO0,34 YgcSs9Qt2vU,88 hYQIObd_bog,172 2qKoFdPJ4rI,130 8sHaAvi0SJw,133 GU_FUlOapf8,133 XmhfuDf1hZI,98 0wC8Ab5AZeE,106 XHrw3AFW0Z0,141 TS6_Y6r5r-8,78 0bhCbZG80HE,133 EddCNkvpmjw,169 CaaKsf8zOyA,131 5KsjPjE-sTw,55 gAM2Q7Sqlbk,132 FRvxzdkj_YI,77 pwkzSfo-JA0,132 Zvbwq_7AeU0,132 UBvArq7u9N8,133 IRvVdVENFmo,133 u7tXpBrpecA,131 uAMrR05Xil8,133 S4AmLcBLZWY,127 1pJywLQLzcA,133 qMwvHLe5m3g,178 P10AWBi4-y8,133 HbA1YOueC_A,180 eevdCdOddZQ,101 r0ladY1kwco,123 L_NfCmTkLPQ,180 _ZfmXzIbHI8,128 -oCLDHEt6Rk,145 XkvIlrLiy9o,130 MGwI25DNrHU,106 fKeNgrRRoN8,57 Xdzp0AluNuQ,134 G0rXUr-msX0,126 avt_f-TaDBs,109 lnSoyix5fA0,116 t4U-Q2nd6u4,110 Z0JXPVm_Ohg,130 B4xzP6H_N1E,180 dOnoBJvtVMU,148 Z743dOLiGQI,97 2h8rH8zxA64,174 gFKba_Esjt0,94 qgE9Lbwyzc0,120 eN4fDGHpf_c,65 Fxx7g5nz4WQ,131 KdNSlyrbcDY,104 4mdd9P7Tn6I,133 nJJ4eyDjlLk,150 U1v_Ed4QFC4,180 b95SzqTrjRo,54 PRtTmayVhKI,86 OKn00A40uWE,90 8iCwtxJejik,148 MgBCnwI_Hq0,126 Jc3GBDJ2sK0,164 IUbn5ss8j9c,179 SZfw1S80QoQ,180 Ws7Uj5D6354,110 OC195SrxRmQ,173 qMthVugT2wo,124 yqmreq-dV84,47 _4ezPvzKe5M,134 ac9w0rKTRPM,30 ivmjSqQ_7aw,61 j1VL-y9JHuI,148 sBjNpZ5t9S4,94 GVVYB8gaSqc,86 hW1KqOVCeKw,58 KqAIrFLuymo,133 gfLw0KJ6bLI,76 PzocCTnSU3w,127 _TRUBZVUg8k,43 mzP8haJXI5A,54 CTlALiQtH5o,129 JoEU1L2kueo,132 BHFoI47tc9A,106 7pDEOCYPRf4,94 QEcxsTjlIJ4,128 Qpbf9NUuuUk,113 D1Sh5qIqc7Y,63 _fibH0WUWYg,45 IHPjxbcPnAc,83 r1S-yBBZsDI,90 9ExnVKy8hao,133 AZLoDR3AjX8,69 yGPikMkqr3M,130 ee6yIS-0NrI,97 VwvlEZJMbg0,126 PJpGMrH7RWs,132 KTyLJftgoc0,133 926SVUFeJ94,128 0l5h8k9N9pI,133 oNGklu1muXI,76 h30PnSefeZA,127 H7Y_mHNgnpA,145 4iaM0-kcWtc,24 sf8rDpu1vCk,127 xCnFME3JqIk,116 kgdr5vmYZLw,122 20M_teQf-l8,180 _DK3DYHAQvc,133 KAPjaNfNw-I,126 7GF9Ic-yNcc,133 e7X01_j_oDA,133 nnESedN4vSI,133 BQ42Z2UGeS4,111 cIiMDK4UMQM,133 _zlm3MXTK-0,128 Wjm3qeQvGxs,133 qRAE0UOMyB8,133 A-3SeVkGrjE,93 E3bgtIIw9JM,132 _OabFZytcp8,132 wtMDZyMGKe0,129 JcP-yeailEM,113 fygiSfJjTLc,166 S2LkKVM-dRo,141 lgwJVRwJn3k,128 y-qFqfSjN1U,111 zip5M8y42fk,125 vQLNS3HWfCM,50 CO5K227sues,180 bHSnlMlFC94,132 9nrVYO6LU6I,108 VT2pepdAtJo,100 byObeFcFXmo,53 SCXs7OphbUU,124 vkPx0oyfzeY,150 l6SNAV2S5es,99 zcgxBHBsl-4,72 1VXH6jctlV8,127 uDimGOcZ24U,59 jXA-4rN9-ds,133 PmoU153vF3U,132 dRQtjVzj1bo,132 mqkqDSAIaBY,58 jRYdVUtQs-8,84 TgBLraZlGww,92 TPsW2FYprfI,115 tkRvLFdrbTU,81 eN7zGm5KKrI,133 94zjOvSzcM8,138 xPnV2392Tck,132 VN8DStEDHd0,133 3nydBUSR08o,157 1AtE54HpXBM,176 Od1ZBTstSHg,141 wbt-sAOjnQQ,189 KcHfK9kvnvs,64 yHBT_3vRbq8,97 U15kcueM3Og,116 LQdues4SA4w,152 A9qAaecuaFk,107 aeneVqyoBTo,123 k9gcqiIfw8E,80 S1EsCWrUY84,125 301qydVqZzM,94 sdtIgE33BvQ,61 Kf-JPkSfjug,133 YV-Ik4q-o4k,129 oD4UHPNEZek,59 jfk6JSgLdQQ,130 qvDxgXX9lww,155 ZP0mhGmUbr0,131 lpyg94OzHK0,126 1qbYMSC8ggg,119 3TA-GALQJfM,68 YcbZKza_zUg,89 9mnLbhHR6-g,122 P5GNspEWA68,132 swOuQBjbiLU,60 0foXV1hWrx4,132 ALGW3PA12XE,113 5TIiQZo6snc,125 QHYccOE4h4c,118 vQWF7zqozSI,133 z2OoxzYqgNY,164 CXoJegmhbI4,133 2ZDDIJV5ypc,131 6y0Uh3qzK-g,133 nOQCz7STLIY,61 4zULAL9VioE,79 2V0WuzhmAjY,133 HUwVxqQz25Y,133 SZ5YPfWeYzA,130 rOaNhtHWULw,130 HtBebT-rKeM,133 mwE7hDBei2g,132 mqzu3AI7Dow,119 WsPcC5TGxlA,73 OTfb7n61HIQ,121 _dl2L4v6ecM,180 bXy8AgE7jBo,118 vkdH0nuDWX4,132 7IrB1OE9Blo,148 0u_qMyWIZU4,113 VUgsvd3ZjvA,147 E8LYvflSTAE,125 s-D79Y-gBrs,120 9s-a1vp4LLk,133 Pry7CGd09jU,71 FNSNLXNnx-o,95 oIC-A9h4cfQ,100 ZrF5rZ3FTbg,78 3i8eIzSeC8w,132 GwYqUTPQT-w,132 W_gYRFDb8_A,57 Y2DV9PUx15s,106 YYSAcTkd5B8,102 fbZelII-89A,130 8aXqgoiVb8E,81 k9vHopyEtzs,133 fZIWDis34Xs,123 udHB3tftPz4,131 PgOO8Z-FoKY,109 2nC7GyHvy0w,133 cyiC3x6-Kzk,107 5AsYaSut428,72 MUn6X9lpOZE,128 ZlEXOzC6vqE,133 fXXmeP9TvBg,171 E8eiFdoI5W0,133 83Jr_6b9pHA,179 Pdjgdb-OxY8,36 f_lRMCPHbuY,127 tfvoOEa1OOI,133 H5woQdVbaC0,103 UI6mgCAcXzc,78 938jCranAMo,132 pV2XJZjCvP8,62 9BOOv6NNnP0,131 v2va7CRda-s,148 K8HgAzIL-iA,132 2-1pev4OEJY,123 ZQaBYT4MxWU,135 qj_NSmG9m5E,64 63gchPBSN6Y,126 S1waPNwf_ns,48 xM2mL0y9i5M,101 FNaOG7EN5jE,130 juik-nkFIoU,125 YGEL2muzPEE,44 WSS4dOe8Ul8,39 5FtZqXd6IJo,103 eFDq1K4ZTls,147 FiAndeAR9wQ,72 fzAKSbtYBMU,123 ySEkuf94my4,128 gAKiWvjfCiQ,93 faMh6OYfuNE,175 MFx343hujgA,129 wjkdynBFHuQ,102 KVIXNJIaQBY,43 2_SfD5cdrnw,133 y-HKigPxUi0,176 iucMQPRSNDg,89 2NdymhVOFF8,38 4hkg3Zut97U,161 3zhqCccFsGc,147 55X_DAk6K_k,67 Xb6svoM3UWE,180 EMS4lYA-hEo,130 7b3-D5qPBrI,147 _eCWpUV7cOI,120 sp8Ufx3Ej24,133 sJwgNs3BWYY,69 LHtgKIFoQfE,133 kyY50rBet2U,88 IfJuol_Q-jw,109 u3M_YKjLOkI,61 NKCskfhsru0,130 moiaW_zgh1c,133 ycpEjbV4KRM,78 zeyaRxHhVu4,198 znxRGH92XDg,128 omiio7SJIOE,103 DHkGu6e0R4I,133 t4zyH4BsmgQ,76 IfggccwQrcY,72 35RzyYwEnH0,49 jlUPc1tu64s,131 0-EcLwovpbU,133 y7gfbVpraWw,89 TZYf96eyE94,113 yBrv-a6Nxuk,133 wTz_kSiZaIM,164 7d7OeDwkfTg,67 PizeDn4baqM,123 kx2FhY_akDY,80 HU7Ga7qTLDU,130 -JbSkxI2DrY,177 TVaP9kEYVZ8,131 drdEb-EYhHU,121 oEOsbgXpiNg,133 eGu2camh0WA,169 5pJOdrchPlo,133 bFsgLhx9dxg,178 CJHV8XKftbc,130 mTVRho54mAg,48 A8CNtor4BPA,130 8tanKqukbfM,180 HWFpzw87VZM,79 hKNeFHBPgRo,133 lCiravgbbJk,42 JuPSeaf--7g,20 NWuqkpD_A6E,132 ea2fcCJ0_u0,133 _LvUmxUqPTo,133 DnwnDFr9kOs,115 AgbKPzg3rAk,132 lYb1h0iDWSE,99 zy0HtNZgbjY,173 zAV44x9vVrk,105 ZtUB8XCrqPg,203 ExI6DdBEu4c,83 1p3NnJ_oiE0,129 pLRk4xG-JCI,83 MyKNmvJYO7o,131 FlyWwjIuCeE,133 mVcHdILwsXQ,55 XDXuWwNXAZM,53 JsUh_lfcyKk,133 8KjvR8FpYaQ,121 Pu3BkumJXpk,133 V7bO0UmtpFs,105 ndV1BsZ1q88,132 YF-7cPk04OY,150 GO4D8MjC6xU,132 tYRzkKtCRuY,52 sguNMcMJQv8,131 CgU-5WQGClY,123 qU5QbKnQHak,115 J8pmj6RkiQk,132 8G0BVEIjGyo,61 ppjyB2MpxBU,133 ofYq-2TXzTs,58 42asJ9x0-po,133 kearXmroxUM,140 1fbxiPh8RoY,133 CWPoQO7bMRU,133 xdXKP_4pbhM,128 21Vohd23VMI,59 HxrS10Oa4qU,36 Fzx9OpDH8HY,133 t7S_kRqYshw,127 R_VEQI2nS48,272 ARUzoPWS4Uk,166 MrboCh44XGI,132 Z89Q2fkgbRo,130 cy-OKLuMikk,53 9G4TzgRUKGI,132 EMga19u0TaA,130 c-zaHGYURv0,123 dnRxQ3dcaQk,179 6ZcNHOP3wdw,151 QcubF7zXxwo,178 Q1yT_LIMb30,133 a-VqYtkvmzw,127 MKl8s0EO5T4,61 tz56LhvDFho,132 A1HqjBc6LhA,144 8sQfEoUNxRo,133 1nqF0ddDc8I,134 IEVDBboDFcw,132 ZKie_34cpJI,180 KMUDG7AOw1w,131 Bf4YINfjQaQ,133 Y9NVQr1r9nw,133 1qNeGSJaQ9Q,171 1p8N6MlPDvo,176 JqyCEV_iACo,133 RS9Z138meRo,133 d76CwsWbV2E,30 nKB-Ij0vyB4,111 BCTFuIw1Bv8,128 ty5exYQi3wg,122 8sJaglGoByg,127 -szJznl-3UE,95 _oyt0p3Kikg,188 f-9ErKOlWyE,113 EFE17jBlSmM,153 gZ6x-hUpoPo,133 CbF9_x6zFYo,102 pYBo5eS5pW8,174 SzO7T8P4_JA,54 G1JAVVZ_fMA,133 hGOHE1zqEmY,133 K40Gt3dk1LY,161 6-2doIEpFVE,118 wnfHqnaM0yI,80 KsGS0BJ49LQ,154 GPCN0TioP4A,157 bOPnZZMObXU,133 9hT-t19CJ4E,64 -qK58CZslAs,66 sSHxFSaOV-o,76 pSQkW5soVhk,125 lcns0VMck7s,71 VTyBpsX1TdE,57 _SwvSu3jxAA,114 EC3EYlsUiAo,94 Ozpkzjl-oCU,81 GkM4SQ--vss,133 91nfNp7MVIw,95 WlcH-5LQbhA,108 qdK7QVuaSlM,179 FXy_DO6IZOA,133 wm0fKKHMUJI,133 mVNG6xFwq2M,101 TbFYMfIpRss,104 V-GgWCBVhrg,55 nMW1Rfbl0tE,140 eHx-v7Xto7E,132 0sNSVtTcxpo,156 1H2xudG3BPI,133 Ru2Mvkf9dL8,133 l2IJxv1lbAc,133 NRd2gti9rHE,132 xTwrrDANnoU,139 fL4j9mZfUdg,129 3rpHa7RLvc8,125 AO9pxLEHVfI,132 _SQr8I3lcW8,121 o69EA3eSDf0,125 lJ9V5BgkzKU,122 -SKfkvvtqN0,168 qFNBUs7O-h4,180 b5I94bT23cQ,182 hoHyqSZGPt0,104 OX02QBHid7o,133 VrFey4EPA8Y,133 fD1FCHmu2as,129 eBxVWEnuSC0,119 kxBu82Dte10,56 WBxpXxZqKms,133 IjrWOZby8s8,83 vkoJH4fum58,98 fOgpQEngn0c,38 k4-CQXg0Z88,105 S9RbwDvpqD4,133 70ut3wLkQmo,130 7UKx-6P2F-k,128 0eJpmeoLXLg,116 1eyMnUczVLY,33 dm61r3qnPKQ,131 X0NIR5-QiAM,132 wdTbkO_9HrA,57 dYQpJJySnwU,130 00pBYZ1yofs,133 kaQPejxLNRw,133 AoRafeVBNvc,81 KWaZiVG1RfY,27 qhH634B4jGg,140 hAoYV0HwjDo,72 SGzmYFcravM,118 bmgWabhgTyI,132 rh1lZYqwJAQ,110 oFwbpFJpQbg,100 L9x9zuoAEl0,111 ROxvT8KKdFw,169 WRx0b993Lj4,123 HzAlqdHBZzs,133 9k3swSqYKP8,119 DSGYElDi38s,143 vaIRRbuiarE,129 P-4jKZ3X1zQ,106 H7H1eydzTCY,132 SN8hW7AeoQI,210 7ZhnS45Zexo,132 AnPDhq6O8jo,69 uYIe9o2jMSE,66 Q57LY8NI6xQ,30 Jdyo4evwMxU,133 i_sT5Jl3qM4,121 ClylV3dp-Ok,77 Daz5Pc5rXPA,177 bd0ZO7Ewiq0,123 g5m411zcNA4,83 DcaV2VQgea0,133 JZhLiJowzNY,118 2tKQW10sje4,133 BYXLKRNCVrw,74 F3H_X9-yFZA,132 TkyLnWm1iCs,174 1RbdA_geYpU,68 2C6FHPmqETM,128 6B6yElrEeKM,78 2mo6oM4vnWY,127 Jjv5GQtJTEw,133 EQG3I5efwWo,132 7CkTYPnJS0E,100 tLUrEgC-Dd4,121 OhOvnL8Q03c,36 bSdm_eA1Css,134 GH4IhjtaAUQ,122 A9dYo-Be_ZM,112 IN5zv7oMwwg,68 1z2AjhGr9XI,132 MRs1EBoZQ7c,128 evzxQrEfIG8,133 qwMmxh3r8YM,131 w4liPmQEPEU,170 IdOF7xg5lug,109 MKbX6ilLdRQ,130 5paBdZiLhqQ,132 aRM2YcGpmxg,131 NYefwzfGRWA,128 e2RQwVyRSGU,108 IiD7lmQlL-0,130 K-xthcJWXn0,91 E9wcK6qvCqI,110 VIp_DOwafcg,67 ng9LMtcmqNs,132 eolBcBPpwyE,71 jz4VT9zHLTU,27 G-FYkB9M72k,129 -eXI4uy3Mlg,100 bNkeBqdWGzE,39 POR5t4hjtPg,155 _64Qv0jV_PY,159 9BNJuZn72tg,106 4t7GADjRIuA,180 rLx1ABxely0,133 VHMi-j7W2gM,108 lfrEnzxJFps,120 6oPn0DwJOZA,126 UephHvStdWw,207 pLbS8f9IplI,136 scrKz6PN92g,125 K7AKLKQqfj4,165 I_mYmJVMef0,115 st0h6-5fVtw,124 dyb4ztHMFf8,89 dl2NG3vkMTk,48 _Xe_d5rtWpQ,36 HuKVUxMpoCk,129 nVhrWyZtYFk,108 CCicXUbaalU,129 H07ghIFjox8,129 28B_sZZ6km4,130 BX91rzHyMv0,127 Ut06d4dptWo,144 HEKPhSJ0PjA,95 f_GI8syIgIs,120 14bY6pwza-Q,46 DiCQwUtulqs,125 VsdeqOdkdTY,129 oozQe2Bk2cA,45 Khjlz5bMb2E,132 l-PmluGC2wk,54 BFUVGfsVzhQ,162 AjeO7aL1efU,178 CH8HV5gXQB4,116 P4KH_RSZyl8,60 RUE4v1rUpSM,168 F2zTd_YwTvo,240 nCuYBELZjpY,103 nby0t43dlIs,80 DdGZ4WYTdHM,163 3bgPH3rOWVk,101 QJVsS-vIDdc,132 bXEglx-or6k,63 S7C-PTowNSU,95 bTUrWYv2vtU,128 DxRzEdg0p4Q,140 r99wnIibUQY,137 jKCpGDv8vuY,73 MiT3ky_83Vo,73 gXQhdB1y674,36 yDoaKW48_hk,133 tesqTwX7cpc,133 qTwXudZTWQA,128 0s0m7xO0S9A,126 7P9EEB9Mr18,121 gJyibprvYQk,132 nIsuwv3VfxE,133 SUu7hWUv7f8,82 Z4vn4UWaeZU,41 -IZv4Jfl6ZQ,107 fDx628jn1YI,111 XdlIQCbOvrw,182 KwmiEuEoY6o,129 OLjVIg8OTNI,132 sfzVAilcMAM,133 iN4yYrCgb0o,129 4Q-Qs3loKoc,163 Jd1QPUL_EWo,53 IHLzITVRlCo,127 IeFdeC6ukDY,129 m7mbDPykHoc,179 jr60kvuKw3w,96 IAx_10MJbfE,133 3nRy9hw7tr0,128 LD-DYjqW7HQ,156 VKhEFVAoScI,131 bCIXKzeaAAs,129 U937JR-ir5I,110 9oTVECouTO4,123 gYhC67R4g64,118 20g3QIUnOgY,128 U3sOMWjM7aU,133 QQvcg1NNqWQ,130 RZvwbfpE8CA,105 EN8q8mJrAZY,132 adT3VQ_Krrk,46 0-lcqIuVaR8,60 YK-ys6sY_q0,59 HVyg4MchBYM,128 jxsvzuRl1O8,140 coeU38xEhVU,159 NodMkxK5ndw,126 06u-a5jmi6o,118 M-rbVvVD60k,127 Pu54Ka5I6lc,124 WQEkAbLJ5L8,67 -v-KiIuYkCo,71 8Px7Lr7VzvY,133 FPIgb9k3cUo,145 65nUs0FyUys,116 Va4gTqyLJeQ,120 oCDk1jDXZnM,47 7OFROViP0J0,180 igEO_oyUs6U,124 Sk990pKn7vY,131 OpZknAZxSjU,132 EzW2MKQ5q4s,118 a_Txm9dQuhM,57 GRG-2ocGGnw,105 PaMAFPMi6cI,124 QJfhiv1Te6o,107 QVGOUxQrISc,104 inmQqyn5fhE,133 UdhxL9r9hkg,133 4gAFIGnJ8zk,96 BjCjlMXLVtw,110 _MRTgD04QMw,151 cxWRWbdsTjc,128 JwfDV_Y54fA,131 huvEARIzQNc,128 V80rHpEZCl0,107 NZ94hNaoyLA,133 Lxuqbh2tjTs,178 H-h_xgdM8FI,123 gwnFTbQVOwM,119 ZruKu2N6nQw,177 5lPsmFSNWc4,133 9RTPdAAdw30,105 wmFhHU38IhE,63 qJKahA8B9Ro,127 IIoBuBiTfS4,130 WMhx09c4TcQ,80 5T607c23L8M,177 25_F9irGdow,133 UlqSJeiOYPs,133 aYKt-7msPic,59 qntho2Y9bLk,123 9sx5r-n9uYE,68 T7pci4SIGCo,105 hUz7Nan8kpM,130 39OHlSguIy0,49 lIk-3o2CkM8,118 TKpXTy-sCxg,180 -QB2gXiOAKc,53 jlFLcKaBLz0,143 _wAG98wcrYc,167 QuVUH1lm8NY,133 E41tGRgKxNk,179 z8Z8Qx6-rPY,105 qq38b_oRYr0,182 gJvgjH9Tvpo,108 PtwRKtvezd8,114 AL7UDurxc3w,100 Uvtt94Oz4N4,180 3Nzc3Rezt3w,185 EtSPFXj_eZM,177 uDJsCE01LYI,133 rkrnVkFn59c,68 7mJ0HSLMba0,179 tK49SBXBK_U,132 1d8oqIXtjdo,134 aF3x3Bad2Wk,180 i3JbGwGNRI8,33 JCKh3Jsge4E,165 CEtLeoXjttY,43 25Lb1YpSEic,83 Qv3wA3MJnJk,131 C_dc5WzLq_c,120 q85fsxWYG6A,133 O3FndxKOnMA,124 rGw2mX72ytQ,123 TvTdzkWNq28,131 m9Wh66FXZJQ,115 orgbJEoA7ak,179 LO2Ej4_42xY,112 hKBHte0cc_0,120 nET7V9DsWgo,94 j8Zucea5rlY,121 6bDAYP4kpGk,80 ZbaW0HZ_Qy8,133 kdW1wdpEP4Y,30 gM4-jiKNuIs,106 VpLXPIihj60,126 nHByIEUb37Y,73 Qk_tn8K0OwA,133 SmfPtEWejs8,176 bjAM2J_D4UY,180 uqeGxkIdBiY,119 2eMqB3CFMkI,132 sSkwCIpxqxU,124 dgJKcCZkXxY,66 nxdpR5oyCOs,116 n9r_Sd0cy6Y,113 R9goLghpPBg,110 bXYobuaTjNs,133 yVE7YDYgtHE,62 KcINC5YSNbE,132 6SLDMMGzkyI,77 3oLuIPYxGpE,65 kntQNeSge5s,151 yRess0-DpRk,27 PSd562J8ZFU,132 rroMPRc4flw,131 kvzIRuIg288,132 kq6E2hQ20wc,101 4qW5feZgSM8,108 SnMSSAqPSaw,121 TwTQUFCYFsc,47 DY1HyTONAT8,122 dZbWmnVOhbA,131 K4czoAgsH-0,80 PJjFb1RSFdw,133 K5IU4bPS_S8,82 euxVy9j6TTU,114 C7G9Q9JcN34,131 ghQOllvR2cE,119 -RJ6USD2nEU,155 pnjWGD-WW8k,133 fkHlhiG0h70,100 llzXzUe2KAk,190 YNdZAZ-SPX4,123 FF9t_GekWjU,68 fbwsXqUpZRU,133 Y2u092TuA8g,122 oG58-Vs838M,125 uCjC3h_Gc5E,108 ktrGDczwkec,89 yVcieIZb3_U,154 t5cn4BoYSEE,166 umIEp9WZI9E,37 zVuuooZqVaU,150 0uSOiu_WUDw,125 WzeXsjGmkjI,47 _6CT5p7fh9g,133 Wl_vyjME-ug,98 NRQifnaioeM,133 RBrzUwP2whM,148 Ow8mG8qutkw,91 AzIQg6Ly_Rw,133 kDeUWLhm-0g,127 zqIOu4ki5-Q,128 5mEsXz-Bpog,178 ena0xfW0_Lo,133 fQBlpIivzY8,128 mYqUdiWcOok,120 99z-H_NEccU,179 nvqUv0ROtFA,93 qdrvmgnw1YQ,69 Eyh5RlXHBLU,94 lllLnc58CoI,122 5rEwN8tIRWw,36 Y_RUAeNZs44,152 cb9FUUFtJmc,90 VHVxpLDEAo8,132 aqvTaYLP8yc,109 yJBIO7B_XI4,149 qmBAF_JTwDs,133 vA8oTgiA5WI,130 bHjHDiu2UR8,79 W4_F1oMTEFc,90 dQoqvTs4lvg,37 fN2AXsF-kwc,109 jDmw_MLAQSU,132 kPsFoudYVSg,174 PWU9g1Fce3U,133 JOBYJrVQm3A,155 JXEpQzze8Wo,109 S4m848bh1iY,100 22VmzX35pvM,131 pIWh28WPyxQ,133 s-pgK_Rvuwc,114 GrG6AZG-ZOQ,115 -zIhorOBLZM,133 kuXEfuC92Ag,133 NfcmrwPNn7A,126 JhtaGVmtcwU,133 y69iLU9cSyo,119 t8HQInlblys,102 ilrpqagxBf4,128 2bujRZhOt9w,125 57yGBikRJec,132 aHix4qGIYHI,127 LR6zTixElx8,115 W51M5otbulY,128 WMX_DNeziH0,140 nPWRoCkmaQU,126 MPp_UJZTU78,72 rvjVIwMPxqA,133 6xSLNonQJSc,114 fLpmswBKVN4,45 PPO1EQmj05I,127 33MiJMF5z7U,133 ayl2X5zfUAk,117 kReNcBdLDa8,42 KxMHqnKgF7w,128 SNrMqIrtbmw,80 L_TvaJulWx0,129 hkuy44c0Hx8,90 JR_yxYYp8NM,133 9QWRxT9oHYI,52 uPwo-nHWQaM,128 kzw1_2b-I7A,133 1KbamNWEfdw,48 dLjNzwEULG8,171 f890SC1schE,90 oBO9Uy4uc_c,140 j-47cwN0w_c,130 mVv14yZ1c44,172 p890hIa1w9k,125 ShQD76s4WZk,32 PsqrgV2RCCM,132 SWAJPB_5rSs,133 exVcH3m_G5c,92 g3E69dpurZA,179 PoBD69ANBUg,56 OqVyRa1iuMc,103 CjYxp2UFfL0,110 of7ZP6vXAPo,133 OqCTq3EeDcY,116 Pb3txlrBZaE,121 PzZHiGYjhss,128 BeJMZm6DDtk,111 Ux_ruB_nt94,134 n7DQNB_OKZs,125 XNG8wW6Ffw4,116 v5Co3A3fLBo,179 GgYOGHU_IOY,101 mDXU3KxBpCM,172 Fu6QrGkRdJo,98 q2pzOimT9so,148 xaCe8T1fXSM,133 sxNHNxmgzJU,171 C7ke6vWUu18,131 J8_CIsow_Y8,128 vTbcPIKxmP0,118 ZxkxWhiTQnc,133 mtWSL_-mJaI,132 9nhbb-EhMYg,133 Q720Fe7IDMk,178 weHHBdmI_Jw,132 87w655s3xKc,154 6eWsFFQP0gA,58 E_wUrAXTbPo,58 y9jS6a7rIVQ,62 gTTHW0Hynbc,58 EHKfoWh8t6o,132 wBxRwF4qnhU,146 3cDavZFKopc,133 Bzb3rASU-pM,146 cs7CW6xDbL8,74 LwdlYGPcikE,127 ITfoGnAkw4I,133 pBNKarJukms,48 lKv7aGku2RQ,92 QwQ7gl5N41I,100 TEAIVXJ1Qds,133 VC0uIqac2A4,65 qXJF21RuqlM,124 dkdrbg4EwGA,123 S5IHNcpa7p0,148 KbKQQZsQJwk,45 79LzBvBRPx0,116 DSCWB4GqcFE,131 ZlFSjq7eU4Y,133 Dwnkxpu0l3c,174 2r8yw_fjoHA,79 G99Olp16O7M,170 2_YvzQoCG68,133 YgdWrHFx0I0,127 LSEkG5z7Il4,150 QqY-Ikm0kc4,115 JcvSNsyvwNc,133 D407HWykw6o,122 fxWE6pnuPzo,138 u6GTs78NHzQ,51 CzaHTATaPAc,125 1WybekasErM,56 6QoON2Vq78k,27 jcXErUFrA68,120 IMSd1IbxmFA,51 ri44Zx810p0,132 BN8K-4osNb0,98 qIleHfrMWWE,128 e62uLLsvUzI,175 MLFezSJBdC8,130 QiymXl8HTlA,132 tPnacrrdjIk,110 qalHjNdHFJc,129 pYwgIQaq9qY,98 nYhuIXk_CPk,133 ZNzVgqv5MtQ,124 oeCRY2mdih8,133 YL_90r0J120,180 CjyutBNjVns,133 FWvAYNw8r9o,135 PJlmYh27MHg,179 fBaXUdPo_2g,110 Urf145tA2SM,131 gZY_zy2hAHA,126 4wddfKqi1hI,49 M_beJ-qJlQo,131 4WNfrd5hsdI,39 PyeH_sv2TEY,43 ByNjiy8-j8g,98 iI0hgr8Kff8,46 82TS-sLA0P0,77 2O-CC3IVPVg,138 XyBWsO1gVTk,129 YVrMyqmDg3g,130 Utt18i8DSSg,111 LdEwXHHohHs,133 GjPCk494e5Q,143 QvfJieP0KVA,40 Yc1M82PB8C4,132 dejp7HK8Owc,132 l9c1k_m6POA,183 anAmUhhnwUk,130 Qwx74IfTNwo,131 3XPzF1azIkI,127 TIccuJuQg3w,132 bLsM1z8lX_A,43 dMxAYJDzSls,132 aKOmGhBOJZI,112 DSuUJ-Scbeg,132 i5j1wWY-qus,83 pyXdB_AYiDs,185 8ARqfD6Wm3E,161 VhtJpZkTZ1M,133 uIJDIumyakw,133 xKdtuwTr-iM,157 OJZGgPoJ_u4,133 083OMBnPA3c,98 Sn25NmBKxSU,133 CmkT8YU4jH8,174 VdlxHA_WLn4,131 xHH-tuDq-T4,51 zR7Zj6ZFyUY,132 iOHElDaRs5E,178 mzNUbT2sQT4,146 4_Anuo4_Tlo,157 Wd4DobcYu30,133 wFPtFkZHpBE,121 Eg8MVTZ12pE,44 b_uKO3N_JJQ,73 tfX2C-Zewuo,162 UYovQZUBzpA,133 WlB-BbWBzd8,131 IgBQwCBi8vI,61 t6bhgzR3gkY,36 6oyxLFD2IIw,178 cYjv9uWxW94,174 MrfsbtOOdGA,132 CMvdeSxmPKg,50 sIMxtj6czX8,102 yqTTejoQVXw,179 Iaqusi3cAAc,122 MV-KVBADWMg,133 0DTD2i-pMl0,130 Z_OVcsaEOXA,123 ZJOTrLdxCPE,177 apq46lA0uSM,155 gZXv9XswYM8,126 zNyykRpFBQY,55 tFAX4TdV6ak,130 6bANKvFGxGU,60 2n5Jy27aVqk,151 wsQJVAzezrc,45 zWkNT5A3wIk,177 7eI5BfzRCY4,42 3JnxaZunOAo,150 azYL1oPxMGg,46 OCGGXaMANys,71 AgLQ3qTL-t0,132 HqAbjHKO5jM,62 CDywMUdVPqk,133 Uo18enRpmG4,132 ZPk3nEFRuZg,132 wNWaYfZI3Ak,115 cAM7skQKVk8,106 mMRQdL_xvME,96 A59SQO2FvPA,181 mNQx3KPxifQ,119 l6NIVn6_m1c,180 xo2meR8UHJ4,130 ISs3m1aHZxY,106 weUbXakK6Fw,132 9Oi7sZ13tNY,53 ymjvQZ6nSd8,124 kDnCoiYKmtw,133 E3wiJJOrgho,133 kTnEyRLMvqk,129 pcV9ceH4UvE,175 97QNsiDKamk,122 CtIhkGu6ahY,177 3u_oizn3fg4,56 _qG67vGwgcY,162 tUmKlW2VmKo,132 riYhck-Z9tw,106 WR_LpHsIp7Q,82 QRHGpNm96gY,113 1uLzZVSIo1U,102 gtSXreFMPpc,133 AFk0BnxndMA,102 5xWrsFC7pG8,133 FBV_POzEeks,63 k1pv94Y0fbw,47 aUhex6wK5rI,105 Dq6dW6XbeLI,73 mUP1a_bdFRQ,152 KcG5AQMRFVU,133 mYhkrT5de2Y,44 vf6nfEZgorY,43 Bck7alQwzIs,141 N5EYRBPqrgs,81 oZzS9hBwaqg,143 4u-4PyidIeQ,133 v0KOJWyR4SU,257 oj0LXmHzUoM,92 G3xSISRjDR4,176 H1t84X0iHTY,47 sY1NGOTGpUs,103 7BapYJuMHMI,97 W1fkINKMwHA,132 YBEUHTsxyXs,131 9KhqPTmsCJU,119 xkNNB9f_3Mc,95 pobSophb2UE,61 OA6wpEFU-uw,132 dX762k_3zWg,155 h9jsnAD4aNw,122 _b3_-pPzDVk,129 9V_bukpqoPY,133 rhTGE6TQdSc,72 Ee8NvgURCZs,133 _vjn86zTNVI,126 -Y1lyQpBVJI,28 Wa6au8A-3Zg,130 0IWdfqsImMU,44 cfNzZre-sIU,178 b4teoyYZsYk,96 6vry0ijbJVE,133 dht_3NziwSw,128 6xU4PZNn6RQ,49 d8sDpSZeDBE,67 g2KF7DAlM4E,177 IjMTiKtwyKk,100 kDfvxJUxL10,195 NrDO7L8jXWo,54 JbyemdsSfI0,130 gP2sCE166o4,35 z4nPyI-zA74,86 PolzQMFju_s,100 mIM8G1SoJAc,104 ShqQo3JOdew,118 FaYvxUgA4cw,40 TzatMfqIf3A,97 y-79cpg2VC8,101 pWPn-C5l3Sk,133 I-AhUVGpGoU,77 HSfxl1KI6y8,133 WZ6p4t3StSc,184 eWmiv9uIXQk,124 fKncYRJQRC8,132 -RBjiJto4hc,97 9DaWcHIGk7I,53 dsRTzhbsAmQ,87 3rYbV-Q-VFo,47 XTMeDBVknQY,122 4G7TTDEHl5o,179 8q8m4-7ciaE,133 hf7_JChVnAQ,132 EDyDOkeEge0,131 afW8dxL3qZM,132 GSSXEGoO53Y,133 o9splceYBXQ,153 8-TDW9Cm3TA,124 oCayZiKmJBE,90 DH80L45zXJw,130 IFTHxZ22woc,111 zQPE6MCV2jo,133 qq8xAukB-xI,130 JMJAl7PfSlk,103 dhPSvTyGSgs,132 vrf1MjmWFRY,105 DbqqjC92PP4,133 jcNFjpxU0E8,140 xftZzmdlCKk,115 mWq15lDh8yM,170 GLfcxIq-zmY,128 pQT-QFy5Nig,239 6teHF2I4UuY,127 7SZMEImptPQ,87 1sCRrXnBTZ8,69 nGWtzmsCHgc,128 YBzWTIexszQ,179 827EAYtM6XQ,180 NQFMeyWVe3g,111 Rdb-5NHyGOA,46 HZ1D6bBiufI,131 YHJnS2dsT-Q,45 V2j9MRkQE78,119 ql0DycjR8wQ,97 CIRLLPa-j9o,84 1KfyTORRMXk,127 Yf_toKBYCl4,102 W-qUR8qovy8,37 -x6njs-cGUE,166 W6bT7Y-WfoY,133 AU0NLheu8mU,128 tH4JJtuyLp4,31 IIn0MEHnMC8,133 a9eT3NaWLPw,128 EsRoSsauhss,124 BKyuT9l-iCw,95 pNRdxsTmV1U,92 _42qmKBSC3g,173 cHJd_bAK9C0,133 GrWqq9ukRY8,128 1VEcaRh4c1A,89 wSPAPeO17Zk,92 uZWDke-bpmc,112 jx6Rgn1ioAk,129 gnaDj74UMqs,133 D_A6gdlNh00,178 BbjSOt7NxIY,112 Nj-F4OvzyLM,136 Q3QqG1UavAU,133 xEQ_h9zO4II,130 En1SvG9tOSg,57 gMBEqbV0mw4,53 AsBLdj7OyXc,178 P8JW75Lv25k,60 VMFwVNGGfBc,162 iF_053JQnQE,128 3KoW7h3Auf4,115 ifG_E9BKfuc,46 QTKNzDn8PzA,114 rnnt0KYtwFc,118 GQ5ICXMC4xY,133 TBiLIqhNiAM,109 OS2udCdOuqA,189 FNvk5X4D7g0,132 aRmaCLDJ8Xk,178 bw0-q-wjSIM,132 shogibE67W8,133 n7mEYDnXaMg,133 lBeh1jkanrE,165 bQzBPo2qRuk,47 ex6X6rXcXKQ,91 LpxwR_9EhlY,176 zHjeOiB-cxY,62 cZP3u5XAeHk,90 fMTn4M2qfNI,117 uE-l84hG_BE,155 wgHRj2-vvs8,133 T5pFuaH_A98,60 3ohBUYQJflU,178 HJhNgjVydac,115 a0QpNMW2kws,126 1BkNaaNscqU,46 UJUWDZ9JUEI,174 C68UZJevw2Q,132 Wc2CaWm1Gno,132 Z58VID4Qjf0,132 iH9hjyoAugw,98 UWyz-yfEIN4,39 BvPVgwp_M18,110 VcV-ZLbd-pk,176 cCn4FUNWvQ4,133 iPt2PNpjOq4,96 tHNjy3BH4qE,199 nQYsHLwXnMc,125 IzYmyWR3pJs,77 FFUPB-cVozg,160 1Zro4CfP9wY,133 gL17bwbFDAI,125 1mxednlcHSs,133 0WtDmbr9xyY,172 X7ut7L-X1NQ,132 M-VdYzNgtng,133 KDKB37gY7OY,26 Mw0IakmQri0,122 Zp4qkAJFHrQ,133 rQP1duR2tf4,95 aQQsBjOrNMY,118 XVINVuRkUFg,88 mefq68nHSMk,123 AyJIq_BNPME,103 wP3H6lZ_mt8,180 sIKTzEgkucw,64 VgQOZkXg9t4,133 DwDzyVvtR9M,130 ZuVe3leQQgE,173 qD6IXIE0cok,180 lt9IJX0qI6o,99 EW4_qWWvxfg,133 n1TqCGEBdLw,89 mgyypjEpK6U,132 26MkbK_C-lM,124 kYcvOPf4GqE,79 FePVICEsBZY,163 XbSfFmKJJ3c,104 JVZwoLZgrRs,74 4EdkUt4f5wg,106 JbrBIbtupp8,169 N8f-APll5f8,68 0EeL2FeI7NA,129 l24yOwR9saU,105 N1xvQ7iLD0I,120 c9O1VVeMzhc,115 _yYDzLUH1NE,116 lBvrfWqCjYE,106 jnRIqedIizM,71 7uSM1gbWQKo,59 OJVDP7FaiqI,103 ovV34LOq9Q8,111 _c97olSX4hE,81 69vn_WxKBUs,154 XHiFqBo1rWI,133 e8Bn6XVv9ew,107 DqHxOQWW_Nw,57 JgIJDix2oy0,111 ZHGLbVKq9T0,131 BjMrxHxraio,133 bj2JORdzs1g,177 s6pAWtuEIR8,104 Ig8UNiVUfc8,47 GTCKAy3buxo,174 Xyd6zzq97LY,99 hw8D5KSx5p4,126 3FgbU0ZZzQY,129 UCjoOOrgVMM,88 nHCEOK9n5z8,35 xGvLjaA4Zek,128 QAxmwbQ_7sI,129 VgiH-x1eRpw,101 -BUI1BdZz94,133 pKEwvDFqMGw,132 -KvWckPXGIQ,121 fyuoIqeL-bc,150 v2pWzqZqTyk,104 pJ6XiEEJndw,133 mqnB2ef3S6M,130 AqtOrW-wiZ4,31 M0HjlCowwuM,74 mSa_kUf6cxs,56 eP52omnnZmg,69 d6HReoQl6Mo,194 n8mK-A_0viA,133 Nv88ASiLmgk,123 u5AzB4EGGpc,132 hIhe-VqMBVI,129 6svLqrJqoWk,61 yKwIEIVAMfE,132 VtPoKS5cCL8,125 NpOTp73r0Cw,131 MLnzF5NcAc4,129 tTc26ZemSGY,120 YY5cUX_o770,133 DedlZ0Es_dU,133 WmD1a_N83ZM,383 sUa29Kqpdn0,124 6g2JN2PrHJg,67 kFJm_Gedi7k,133 OBp-kKju0IA,195 vKLbd6LeUv8,35 Rxn-KDDZ8RI,100 1z6MvVWZfuc,153 npwnO-yPp8g,132 az5NDvQ41ys,128 nr2mDvF5-DA,151 IE0S6NNXiYM,125 zy8dUJEOqos,167 guq6F4Jm5Rs,133 JO-L1PjLp5M,42 z2itQkiQUOE,131 zcDoyBvCyF8,109 vzt7Yb_-yiY,133 -o1N2unFkSs,51 HurQLHiIVcw,183 5LN23qErZDM,68 VBA_fhQoArA,134 b2mm79vRuzA,128 iY68ovrzfXc,122 t4_obOCNYls,62 F-LlyzCIG6I,132 l6zm1uCb30w,29 pLpIARbS5Xo,159 RH0zWG3Crzs,179 bQbH32KcjG0,130 LOVgTjeg4fY,160 eLrwCyXUOLY,118 bqPbkGVa_wc,133 Mi3s2DWKiUo,132 P9Fg8M0JCHE,56 0642x0-QL0Y,130 Y3Q6BzRtl5w,96 i86FbeyKK1U,132 Y9GAufJIe0I,104 gADayU4DP9U,115 xCtMlhZskDE,44 PCID_Jg1Djo,145 _NrqftLip64,122 Vq1W_C-ft0Q,86 RqCVbiHCYAA,105 2sFAyhjR8_o,127 gecFWdSkng4,148 OnrORwEG4lQ,74 JdfCyow-Tiw,174 ccNvps_rac8,114 1m9DjG3QRzs,139 iotRit7KMDc,73 JELOhEjLgmU,111 bMtdrKIdDgE,159 jK6suPB_vTk,139 4eLsFtya4Gk,133 jYrKqg2TqUo,133 pHxvNgorTQA,122 lIpUIAl6ltw,132 Oc2xTMnIwrI,132 idxHUQY4aDA,124 fOSuCsgJ26M,116 N_HE8beijHA,58 dtwfZd9KGpo,65 aIm1ZGm03WA,164 FhODkuXIda4,124 akyfR8zcmIo,117 _yqWh3OBDEE,131 YGeFi3Ap61E,154 IiIwhalEAwU,129 0wsXkU-Crjw,109 A4k_HCZNCgs,180 yuCbYNe3aZY,42 gUpkU0-pS3U,131 4p7hZ2WJXHs,124 aF4En8CIaNk,36 xy8a0GKO_Ek,57 sUkZFetWYY0,150 B_UjiJy0t4c,100 MYge4RghcNQ,128 FGiocp7_jE8,159 2LuJ9QU-6X8,107 vU5Weh2-5Ow,129 L9tK9HYspFM,130 IZ3BR0J5vvw,128 KJciGsgcYN0,92 FRY9K78uDRs,98 q7vtWB4owdE,166 sxI6RnTFj3U,53 36p5Jk_y16Q,97 a50LKwRt5CU,98 Zer3Rr4CwjE,132 dgoDvnebHRw,27 zZGqwY_J8Vw,132 kqEj45pk6aE,133 JRLNdcmRcFY,103 mI3QaSoJado,114 VSMKvHRbHC8,130 AVMAbj_Pbnk,127 Pqw0GsAAzEo,113 wAZPdmo7LVA,132 td3p2XKHP2M,82 qDyiygLEd38,133 4cAxmhotNbI,132 S501ojiA52c,137 QfVKP_ibzsI,45 mpMweFgS2cg,133 BxL5O2tuDtk,156 GmslKQBmdzg,132 -TogGxzlfhM,128 28JhyDR8-5M,118 8ZgKfSqsN80,133 EemLsTG5fX8,116 RSm6z78KnxQ,125 kvVlP50LSq8,128 IEcxOcj3LGA,116 UrUNUzp14Bc,31 U6fx_zJtL8I,85 uirBWk-qd9A,106 xI836Tp4cq4,75 5PKVmzdQGwg,22 RBvtPZ6zyHI,128 m8RpGUXeHFQ,133 IimC6oXVZpI,128 _9ZdW3KXuMs,81 wYwlDchIasw,123 r74QbwaIWFc,133 bB-OwUZc-cE,108 IG4FAGxZvtU,33 r9bfL4Jz-M8,98 b1Qxbu777zo,70 8QjrBjdb2T8,43 KY_pTVfz3gU,126 -rq6IBVPcBU,135 WJB3hqUsHDE,109 Bogko_zvcaY,130 nWVrZIz3Nt0,85 mm93ELyLN1w,31 HQkSMJFJu4g,38 B00qOyB7CuE,133 YjQP7xc5P8Y,58 BGZZ7s7FJlM,125 Bmxi1VgTb-I,133 1eWz6aeGexk,80 EF6ss3d4GyI,133 KA2ziAAXoqE,106 kP6EOOdTQP8,82 3VgqDRrUIOo,85 pZJ7QK2d5-A,164 xPZ6eaL3S2E,93 EeyNlzFdjtc,137 tGYc5woadps,133 J_VTn3SAV20,117 NXvcleOF798,126 tB9_C5zQLZw,131 nrizm2gnQBo,132 nVrzbfxxcZ8,132 T3tidwW1gGM,106 PR9wl4Qve5E,129 2dQgjrrEeHA,98 JjRx9IJSTMw,113 Vv0aAv0lJ3s,120 aeavPOh2Wws,118 sGh6m5Ilw_Y,86 AwgrZd_BjtE,81 4sRzks3eR-M,178 S44FXSiI--Q,126 pZZ60jrw6cg,156 tvGHSvfnlsQ,133 KTuGK7Ob2QI,126 gGKNhGbPp6Y,42 IY3FRWcK_LI,92 F_VIM03DXWI,83 ucikAqewZL4,34 TtHffqqdh1Y,84 uXGr0rSGz0A,133 aoPKajvq3gE,177 2wCqM6rbeWc,133 Rn2_vtaTLM4,133 Fyuo3Z5ZTX4,100 aCW9NsrV6VM,199 I8ilwspLbDM,65 ZERmWM-OrK0,58 IdIEDlLAaJs,46 3tSWRJ3j9fs,99 esQgzR6gTjw,125 NH6x4IDEGKU,104 K61WsiAs4rE,133 5LApVevs2II,97 Ywd-UZnkfR8,178 39mBogAVAQc,133 1bvaqpSmBLQ,174 WcZ62d0PATY,133 9y2y-Tkn7eg,43 ma_XNn1bwOM,108 hTv7HXqqqXA,133 83LNTbeatHE,187 -ncFDuKdgNE,133 qw0kuEG7NR8,94 HzAzwbkW7tw,87 D7P4FYWHVYQ,197 NlqESIU9i3E,133 WT2D-ZhTkqQ,112 T2-1TBORh9k,126 kXjKUXgoyL4,181 665wQwXkq6M,40 LjOibAVPQKk,146 ePRYhNNdzwk,132 q9QJ_S62yVo,132 88HW9wtz3F4,100 WSFqs9iugBI,133 5tbx8osZ87M,102 kkZWXM6mShg,133 t_lvc5iBnNg,65 gCdXiOssbM0,132 p8Ejl4eeFXM,131 HOp1wRImIxY,143 dDDbmin38gg,131 _SVlezvh3zk,106 Bw-Y1sEUlSk,133 eHh6bwuPShw,65 v2KtG9kFZOI,131 02Or-Hx3yqc,133 z6aek_pwEGk,92 NpwkIYB3ZEY,43 HTE6S6x8ixA,103 rCHGzxSBn-c,131 lOoT4gTTMVg,131 8KaBhZM-PTg,133 AjZ717HtRy0,179 GH-r4HXHcCk,133 FmiVlyAfTnw,170 aLVn2GWY-Ec,110 i6zGEBhJMHA,133 _kV0xtzcwg8,132 sNJmfuEWR8w,110 jnA7jmNVYFs,78 4wvMWwwCRYU,133 kye191FZmeU,52 DNZ5NXKtdxs,179 zATlpF_gylU,50 lhbHTjMLN5c,179 w42uRnJwoIc,132 NXRbXCIjxR0,132 Q4HY544URjA,171 lscdNc0qTnI,132 KW23B9uZBVE,111 8pIeSYhipUs,132 HmNJ03s2ZuM,71 mkNO5Y4LOMs,49 pYI0bXZVZek,133 OE5g_nESOeo,70 nhUW_MrQGTY,133 WjJQ6L_BS58,29 vTp6sSlv_aY,133 zeKb7O1KtIU,138 cz4XgiXhVOo,119 lrhNPS4nbmQ,133 bSE3gq6Sf6Y,99 LmdcbtSwX6Q,109 S69qPup6hyk,128 eeGuOguh33o,112 NVR6-HnKtM8,70 7kMyom2sHyA,96 9l_U2xXb9VI,117 wUZxSf_P2r0,120 4VJrMSbPe00,130 BW4-PA9Xksw,85 JwGZDfu-PZI,84 4sMMt2M3RiU,89 z7NxEj4A1Cg,132 ePU2Ux9JIMM,144 RHULBucGlA4,104 rJodsSNioXY,57 BAG_EkEcofI,132 Cra_JviE1sk,129 jFrVoG-edFc,180 nJ98f7z14WI,142 avB-gC3PO98,132 F_qsH2om2VI,132 4pVd11CW1qI,89 hnNXvk6sLvw,179 7h14GBiAZxo,133 VyiCDq6Y0c8,132 iXSKAf6h5vE,133 _akwHYMdbsM,118 nur4g4r1LN4,167 6U4-KZSoe6g,108 -LjxKR0q7Yo,126 fuEG_PSb_Ts,144 458GisQyQLg,132 tCb_6mO6CmE,179 w6RItV0ZDgI,148 b2B7w4Z3uOI,117 GfoSukpWVos,153 e77ybggTHHg,133 ZPKEtczECDk,130 bd165_YTXZQ,39 TQ4y7GPeFBY,180 LSMl31b3OKc,179 YPmYDxnmGnM,126 Ocr0aNwQvVg,72 cyrDoGdif_o,190 yXl3ENKGAUQ,175 mzuVsHCLSOg,133 xLxCXburq2U,76 KS_Doe-4fkM,127 6nWWM8tTn84,132 VjlGOec7RVU,73 rtkI87FeqOY,101 oZrpLQFH960,132 6Ewhxrht6cg,180 eq3-F_738gA,72 TQrzX_5FO1k,133 meBbz4hop-w,132 bmHLulbWm74,91 CHnbS6ZthM4,56 wnrdetFAo1o,132 _hyXwvNIKZM,104 n1lbpj6868o,129 EhAiY3hTPpo,159 JUGSh3BMuaQ,70 Bi3QsK4sVVA,131 iBSLBl-64fk,80 vFHYiOfBRng,180 Qxn6aafaNP8,130 HAF359uuWUo,174 qFcIW6TtVEI,133 LMU895wYEDI,133 rgQjzIVzoh4,118 Tb6dbNhFk7I,87 _HCS9AJ0rEI,25 t--mSXDeETc,180 jAZRevRbGME,38 HUmelrncGRc,175 9Xy3PgufXHI,130 qhMhfHHeT_g,129 ZKdcYnlkhx8,115 Vt0rz5iPuaA,102 zU3Hs36FIrw,192 xeSDsBS_cvo,41 T4l9RZRce58,133 WtnTZSJndPc,148 Wj6vEYwwJFI,99 4VfWFRMVM_M,132 6vNGX3c03gM,177 3WCcFVnEKh0,128 TLZClsaDEw0,75 sLB6_-ZNR6E,133 swpveBgb0Zs,40 VVp0l2Vas2I,178 IH_dSlEAl0A,133 3yqPdLURXjI,127 jkHrHAKwPZk,26 0mGmEE20CR0,169 _P9ZorzeECg,53 _v5g_GFm1W0,133 ZJhHYsmJra0,118 VZpMlm4xYG4,111 mvmAa1cYZK4,90 MalJ_GPU4vI,59 vjeGS4bwPX0,116 EmDQiL3UNj4,151 FwfrVozwn7A,128 qF0CMv413PA,33 r0cRrtcU5X0,61 7n8QlEg1k8A,132 TnniBE14vQY,53 oGxBx8RzzrM,161 Jo4XXm8OUP4,122 58uMOyQcvms,133 KPeHFDxKUP4,124 3F8oJh3J1T0,133 lrZAnOGjydo,132 pE4-ePx_OAI,169 Juv96hHY62A,41 vnHkr84as-4,117 t9BqiLLt9SI,130 dYg-LtUxhcE,131 YVz211iI26o,133 qfym2Neaz4c,128 93Z1sPjzz8w,125 6OPp0MyQfoM,133 zg4tFOmYKpA,133 3eGHDodwIZI,130 rwk6Obqrj9M,89 ll1H-9Qm1UM,149 ZSFCW8cDIU8,75 0rgfZzE6Ulg,75 TQSMmwQyEjk,158 EeEhcPAOGUo,122 mZ-yMd-bmCY,129 f7oHNrQzfis,132 -wI4jJq98tU,133 41MHIJIg6u0,129 RGvWYYCWFq8,75 2NnR3gblKYI,68 lMOS1ohLHMg,126 5klqA0K7K8k,128 WiMw3ttzVMs,145 GFB8DiM-SLQ,166 mfg2O0A6L4g,133 WziC9cSTCWc,129 rBtzudk40pE,56 6xZif3WmG7I,170 c9wVzDytTFU,176 p-Kyr2Ibq3c,56 hJckGOSkTG0,106 iR-4e37VUPo,91 v8YgSZAbKgQ,133 kFCUCnNKmmI,118 SDRcCeWRVRA,126 pPZMrs3QGug,125 Y-Mhn3xTlUk,180 e0WpcoS_fU8,130 M7tNqjsclhs,68 fGJIFMA09cE,133 JES2fQLPoGU,156 DiIgAES9zt0,132 s9JqbCH4aVw,137 Mwo-Wd__tTI,131 v3e2maV8MlQ,132 e1DnltskkWk,131 ASP2K-sFud0,131 4jv8ZCoQyZE,129 tzKEAdJLRfg,176 wNbKp6IGhrc,180 s-kucHjKbG4,128 SF887rPCz_A,131 JvtwIPa3c9A,129 avH2K1iR8Oo,107 sKfQGRwlm9Q,109 qIEDFvdDbVo,133 sL9vUjm2mIE,81 DjANcJEduN0,111 s0RwiqEDRbM,133 S8kPqAV_74M,131 hSgNZ6R5Rbg,90 Qb2tjzecJX4,129 P90noIrmLZg,92 qN-_cZNDy0w,52 zrR9re9NV_s,28 kZgE_sUrXFY,178 GJkn0wEMc4w,95 Agic36OeXC0,92 NF-httKm7RU,131 c5Re3lGYUA0,128 biFZVekspJ0,133 sAgSUFT4cVk,131 JjIXwkX1e48,151 8U56CTlGkx8,133 oquM3yN0E4A,52 H1SvA7bU0oM,132 7gdtw-l0GqQ,131 _P3bnWz5GL4,133 c9cV7bFKMNQ,57 6zAcU68P0GM,133 eDhJ-xXsbHc,133 QxXRhbuqFEw,142 PztgWdMEJdg,142 5e0cFUGyfzI,129 g5AixBKy7b4,63 4IErqIMLwtQ,110 -v8C1H99O_s,128 hlNvdfv76WA,200 IHbIf3K5pdc,181 GtV5-2QXj9Y,48 MuTaXwt02vA,113 HueqqIRaOQA,79 C3Um4x6M8ew,66 9nFrp7Z9wEU,138 XvvzZUhRSbI,33 n5_WG3WZqVk,133 8DlxO2frMPE,142 jMTT0LW0M_Y,133 veztNJQyRJg,180 59BWCEaowC4,80 FKDCoc_i-ZU,164 RU3F4QPUVQw,121 6_nHubnKxqg,131 WK--S8kuxOI,60 ppGd-2nEOVQ,82 W6U80LM5b1U,128 vO2jvLIyIV4,92 FOdizWKG4qk,131 5yGuDDemqaw,141 N6pHjvoxDI0,132 jGCY8thosNw,88 ZJJGXUlqb_k,113 Tg_qXTVaZSE,133 Id3Lr9GyGh0,126 je6L2clZOGM,180 f_G1oYcHFsk,133 q7heVIEyvQ4,50 AGqdE1NdMTg,180 8S62emxyIEA,96 NE0ne430gbA,57 tLj_Bzw8n90,130 2zZUujqZfQg,129 9dyhBVEQi9U,70 mkn6s-f8PqM,88 GeOcsY8foxI,130 Dbz02p90CV8,115 IK1HlBRMGwk,131 69ux9TSbEKk,58 t4k-USM30aU,117 -6fuDrAmhNc,180 eLyhRYJXf1U,179 rYD3-pIF9jQ,84 Jjq8Ng6cjxE,96 N_YrFMAEKKA,151 wPJE21U518M,133 tSrLgG6rOrs,120 _71L2__mFtE,132 6oijcajbnM0,175 zJ5Nxx3H-Tc,85 Ihd-NwI030c,132 0IBCWdlr-fA,150 docSqZBVEUY,129 RaDlQYFo7eU,66 G2UTjomYxkc,109 l0Io_aXWgkQ,125 gRGbGI2-kPs,134 Clgb2YB9sVU,126 fr5rDEInWQA,152 oVOTx4Lx3pY,130 37oJqWp4rJM,117 UL-ot8sR0P8,87 XXLpjT6qjCg,133 sTDhNLLglf8,129 -OOTo2P1ivQ,111 GvwHxn_ziD4,93 Uif48WrZza8,98 rBsvuoQMmuo,112 wEUwtFg7PeI,166 6f_Z5OBzY1k,132 oGKr8bdx_5E,117 umjmV3SwDjw,126 QHH9EYZHoVU,130 8MmtVx1A8BA,70 giiuqTdBSTc,132 sL6QJSdqlt0,133 Xpga1vtS3tA,150 aStYWD25fAQ,171 RWwGXIjxbnI,133 8lD16zBpcog,132 qqX1d64OcvI,124 FBpPaF5Kg_Y,106 6nX0100wUB0,142 zi-vtjCN9Rw,147 4RI0QvaGoiI,127 0lq1JIWQSlc,174 jP8dC8E6Emk,65 VY6PAkLG2p4,95 KIsAH4rSGNo,131 imnkiyOsu_g,90 4cWDWIgBXrw,132 2Tjoz_0I4Gk,120 aG55Y-zpxyo,106 R0zmkkcEdKc,121 dM6waznJ7No,64 eg3LNIOchqM,719 6H1AotVSFPE,82 cgBz4BKSLRQ,175 qbfjO2d2S4Q,123 G45X6fSk1do,129 1PKDDa6p-xE,132 yGzCkRwbFII,43 wJmIEj-uVYk,178 Tn6y5TARbnQ,133 6ZMZYrdXtP0,123 -5798-VRVYA,178 KYa1IsxGVuc,181 B-tq7mbTvrA,39 81jCPIag4KA,95 IZT7xLjxuhs,133 l6StIaMaRsg,117 AZ_MUktgWxg,133 XVOsO0E1E34,133 qAFgj8mqPk0,132 tJIzs4CS-TE,133 kzrHg5GOvXE,130 OKjpAsVT-8g,85 FiQnH450hPM,177 lxQZQ8uXBwg,103 68pN_c7DGUE,149 UvNE2bjUfC4,130 JVKMNw0uUGw,108 3obteqT0VJU,178 jrf263yJwic,105 pdE83FX-Mto,104 MLkaLveElpM,126 oowcsynjIwc,179 TMUJpec6Bdc,132 NEc_n0W4ans,133 6Ocnj8-_508,147 7MF2IgjAjjA,66 AKMLjQycW0U,133 Vzpu-P2eRuI,140 abh8wBYFeuE,107 Kyh3foJVk2k,157 GVhi1qkt5I4,38 KQ6EyoqFWQM,39 1_NERqSdt9U,131 OzP8k0R-USw,132 Ng7jUTiM21A,132 TqB34Q7iy-A,112 -CzO7z1dZ1A,120 330mxTrSMLI,133 wMgKj3QGv2o,177 GEp_uGRMbFM,131 qu4v5hB1dKk,112 Vje8Fp3yQFM,133 4uuvZl95Cyc,143 xr3TcE009HY,163 08_UIVttBK4,131 wRRvq70yOt0,132 1B8juGIsDl8,98 ecWhXP2jM28,89 ozksR8QLWzM,131 zANq9Dusk6Y,116 402xHwQGVsE,131 qW7Nq2UBlbk,103 qp27BT2g0BE,122 C-iQldPiH64,133 IV7jcaXQgds,133 F2hiFbuQ-Qw,178 3orSzPUIVJw,73 rcJ5q5BdJi4,118 LOACsaFA_FY,63 YWmwAdK48vg,123 c38HJR-9vhU,131 8W3_WigxsXs,125 jfVzY0OTW1c,130 2t2iFLshgWQ,112 _bsnYbe6Dp8,125 0c-UIkfsk1U,174 v7FL42Fon3g,133 gA8z3Yk3wWc,57 kGVQE0m_V3A,123 oR1-UFrcZ0k,130 5ECsW0x8svw,133 -zIzLRgwdxA,100 MGsGQAu3aNM,129 Au47y23N-QM,85 sOqvTLXZsMs,115 4Prc1UfuokY,134 lsxZwAnu8LQ,131 lpOdAHwRnXY,115 f6L3Ef1JCC8,45 4t2pP2KLlgU,40 FRhGCEIB-4Y,108 sEXIC0OaQSU,77 5a9WupjYFoc,722 mklRbf1JoGY,130 PUXpgitNeOU,115 _U-WwYlinTw,54 c_7V6VgIvTY,129 ErqotNH65_E,155 QP2uPNypJlE,73 Wuntz3KDIAk,92 5YqbUhVM6Jo,132 S0IGwZy9_xg,131 92fOw-bQ12Y,144 -r_jjQ_idz8,174 fFan929BTPE,117 6vO-XDUiRqU,178 BVrhE9NOwww,127 iaofBseh0J8,132 WcRpuNfGtXw,119 zV0rK6KXfwU,131 zhnB6vIifkc,212 6ooboieA_eE,132 nLN36pgwS5o,110 5ut37zda30I,41 sOA84te9mAw,90 DfDQo7Gm8CI,128 mZ2kxdQf3t0,129 b2zQmmYEDY4,122 Lsm-snDPXnk,130 _d5jXDvrOu4,124 hajGYP3CLKo,131 a5QBuJla5do,129 cAEth6FATZk,190 xtRnl5zHKxc,112 1hw9NF3zzrI,37 C2pUVmGEEeM,128 5xiAs8GGqD8,113 8nHwpjCIJqM,133 ILwsJ3_o4es,117 ECDGpYuMRDA,127 2rha-6qG4OQ,71 iqRZb8tveM0,133 LVt7Zvxk934,131 Qt1cF93u-6A,94 MMuen83l-Sc,176 FKov1lmq_OU,99 BHBmOFFExso,31 Fh-7WQr_daM,131 eswi0L8WNzs,132 BwDlobymMk0,179 l60Xedjvw-Q,131 fKoYXxN6x98,133 9OufCgFZCyU,122 HiMImmy3l5o,90 WtdVnmI_nYM,101 KKNUjL6oLeA,132 UdZuHyttXbw,127 dnnrhhZjTh8,115 -W93ly0pQGI,106 mK10Ze-mcQo,133 dB2iZKhWArQ,105 r5o-M7K5GFU,36 toJPUHh3EKI,144 GyJGnNFU5dc,97 psru6_9PPcw,111 u1QIbENq66w,111 lcDo8iV-rPg,98 btRNa3CItMc,114 TVOIig2xLq8,133 6-wvim2zLFw,153 jTLsI2Z9GiA,48 U-XEvzDp70Y,131 tTVFP-9AdMk,80 77XaekZUvL0,115 jT8TUowrkLU,152 MbFux7_RQpA,178 4yZZbtwliVE,150 DCnvuyK6ur8,38 eJ6y8TeIeAM,93 KBh1vdpGWhE,202 _xHw_zAJRDk,94 _3EcvKXH9zY,389 TBiqsgxbxLA,54 GhF060VmS1g,124 XwJGqNQapO8,71 KYQjUOjBx0A,132 67w5bt9eMtM,103 Zh6NzOHOU8s,127 j8nZBlPfR7Y,79 rxZc0tyTqEg,110 yVGlKrziG5E,141 sFW15hEqZQk,102 SbYzo8L9DLc,180 8j5sn2UyTp4,128 Ddet2d9EtTY,130 XZT1cB8KU_I,133 4W5KhfJHF_4,131 I6f0U4QbrIo,90 35fEjN5m4ds,113 VK-GL8zzH9I,103 rl6SpFVJoUA,196 4rJ4een9CcY,59 NQ-8IuUkJJc,124 paNPEeQVCTc,32 HZs_qERvDko,81 dX-C-8rzN7I,84 skuMakhGnn4,132 SIQb3d-piF0,80 q_wefCacDTE,61 DxguAU_KxS8,120 Z_9GcqiwxF4,133 -MEOfLvOuas,95 OB8uD8FaPXU,133 B5FcZrg_Nuo,104 xdPtumdfg9c,133 kvbYXGOZHnQ,101 9S44kVrFB24,132 tB0th8vNLxo,129 1rw_bJ8wFCg,59 fDA85m3v2TA,133 hSe6p6SLuvI,125 10fKN4nHNd0,98 hcqpyBBYg_4,130 DR91SIIPCkQ,133 HmyQDH_PSC4,180 jaRbZJBLIQo,105 bQqcnMHjxvQ,130 6af1dAc9rXo,85 OfUV-F9jFro,131 toq0HYc9mmg,57 pwt49IF0uG0,133 DMo2qyKq4_w,183 yisFmY4OAbs,96 xfoGEGTl-sg,69 NTPT4BHAmRI,131 VzonTHZSaq0,112 V2weMKLFJLo,127 EnGXNEEHPG8,133 fPJQ4T2TQ0E,133 DkyCu7ryu-w,92 bbJEqSj7Wkk,88 Ju4vhscaYII,103 JGV_h36uZ5E,131 fpiyrd28vfA,178 6XyUIXqIoAM,149 R6Vbxei-TQc,147 ezj13E-cX9I,77 EY2tpd1CejA,37 AVKK_tDNQMc,132 3gt4aiQrmb8,133 B3fgBOG1fWs,105 YQdnuL6YRBc,131 xFfUAjUMVY8,130 vz7jp6GiwTA,89 HzpxTmlWOC4,129 tLujRN5bxVA,131 IEDhXioCYdc,132 cdaDQcs-XNQ,133 UHqUN3um9Bc,34 n3SrAOdy-tE,51 3p1rb_t2Jg4,56 mCdbIDiib5U,123 F6-7c3I_egQ,131 AZMg4vFcRQs,113 flvyCwagnF0,105 yVRv5u36Huw,155 ndrLDbtM-CY,34 0AmxnNxiNWA,108 vsevdTMBfC8,50 ekOi-hwWNoM,133 3wtgdxKJI_A,131 WX_9RZSjar8,133 LakGqZmF-Gg,140 OH_cAf9RFSU,132 q-kLlfq4JpU,47 OIBtFHZy0xk,77 T8oTlWwAPFI,71 LUV0AjnjaT4,33 YBQLEhzlYX8,85 AD9YlbnGwpA,129 pm7LihLP7kQ,187 YVHzS7B1NbI,131 aErDEFpoD_0,178 hKNSpQwCIdA,131 D_-VW2paVeA,132 Gd6ruQcgu9w,82 ctTSLWXE58o,100 FZUfhfHbjE4,177 l2K4Fw-pmLw,129 UJWni94vAAU,82 L8TDBSlgFAw,92 1XkC9it8OPs,200 DFEuw-bNldk,129 qw6k-69hm90,132 sGbVR3TgQUs,104 WUApETooc_g,130 ZBLtiP24yTA,133 eLW6uxK_MOI,31 Re5jTn8Cv4M,99 -WmDszVxti0,177 wkH0WdBYT4E,132 3QCSrQEGvZA,54 -AXjzZskE9U,132 aHlMCu3-R3I,118 0c48KT6uWvo,148 uJPI1qu9bE4,133 JexO-N39Nzg,115 nZE2tGoC0H4,89 enJJeOqHbqE,157 UneS2Uwc6xw,128 zrIyn3yuip4,127 _Gm42rDEb38,133 EbU1vOVwnOo,133 qsJ6BdQuUxo,133 kLskn7jHXrg,133 hA0OlCQLC0Q,82 81hWxoHF1uA,46 9IdM84YVmV0,104 87idpAngKc0,114 qe_BzGXRDzo,126 HWDBMnxAk0A,45 6c5Qlf1Fr28,37 waE1U01kwxY,133 p-Tjby4VNH8,121 Ybfc9RkRUY0,95 wZ30Qxv0vtI,127 2z8XAo4Lpuw,179 sNom4k5Pwb8,82 f9_akBxA4mU,108 g5Y-PN_duno,116 x-Vvl8gkZAw,133 ERmo8TmDYCI,131 fBtPMUJJEg8,133 c_a5Y18mdLo,111 FCRdTWGdngU,133 BsTrRttExpA,150 6EP_KsI8k8w,132 P5ooU8rf1f0,133 LiYdMadk89Q,125 5TcimuSgJoI,134 BU6P24jMDLw,108 nIGy0Jw96PY,113 u0Mz_e_TQCI,128 mjt0iNTJrWE,131 bsBxt2RpiIU,175 DQO3aIpmIDg,67 8WsHwXs_aq4,131 KNAgFhh1ji4,106 yJ1hoVGPxCY,127 YkGv4M2y3zg,133 3si4Cv66RSM,133 G5GJHYXrjhY,133 oOZ7KbI0Phw,133 8nYPCDXHuPs,172 GiRyIbJ7IFg,126 V75dMMIW2B4,146 dPpj1KEhwpo,145 N785xynvkME,116 4uVgjb0gO9E,133 pPjYhPGkhGA,67 i9_lCyG67Rc,102 uy3UaHILcig,55 Pr9ruvxA3K4,192 lF_KpWfFyR8,133 NBG53Xzikp8,131 Upr2DiiSRDE,168 UFnmq5PPScA,158 mK8ad1nYFQA,81 rwd5hlQnu0I,178 72le_jwmXfU,149 UGn03bNlFuo,133 QaDy4LHwyec,37 3kTQBCokfAg,155 9f8liieRepk,121 ayTnvVpj9t4,150 SL40LOsREzE,133 TY2PGciqbg8,181 tOZTZP_qzC0,131 vHIbZ0uOAL4,133 DNC3OciAF3w,79 LTgOLHxQ9mM,121 PqGuiXKC320,133 xw13vA86I-I,170 59ZcTCijizI,133 ytFFiCYItjI,133 JzH1Z17c4yc,76 O5ROhf5Soqs,86 pDWR5RkWRTY,97 mbGDV3lPib0,131 WUuTs5CXP3U,73 4qg64Ml2OdE,49 HsYC-hVEpQM,130 v9kQdDFUWuk,133 jL6oromerXE,107 XRz0pSQXTQ4,95 k5kTx_bZznU,129 JuQmiyLzHdw,131 iQISI7DOVCY,133 _xJ1KmjXSYc,55 Zz-mpgYNUW8,89 Sj8eNDOZAAk,162 oxA2tQ6kfdE,132 B0YqZqU_z0Q,160 LPPEPzpSzwM,133 gNCAj7eS07I,129 bolHm17q3ik,133 ZWly042cYCo,138 KIAzalQUui4,180 J_oIvRfVXoA,165 Z-365iujWk8,133 hzV5qSWRfKY,97 GP5ss2lYb3Y,156 C_SFevIz1FI,23 Qf9xTFEhRS0,118 8NzL8n2GEC0,117 kdTfLDIbwow,129 m3TAK8ty_cg,90 3E-C9PipmaA,87 wALbxbEBLU0,56 fwI7COVTitQ,58 ezRPVES1oQs,64 qFUISvEZ3aw,57 s_CwatXdxUA,46 2UCoVnTjV4k,102 qZfK-VnxBSo,133 4dW0aROYEk4,127 SlPGQ7r0f7w,30 TI5XVZEwtiM,132 dQTwbSY0z_Q,133 FaSlQP79M-M,127 exObFY-sHQw,78 c71vLQPwjdU,123 scEuS9-TozQ,31 nV9U23YXgiY,132 8OTa_eNimUE,188 rxM8oCm4TnM,98 IyOu9xCNMK0,132 eP7cLId4ocM,130 1qO81pgfRVA,121 6I1qP8w8DxE,131 R1G5HwXEw9M,133 nW-NiGp1gys,131 cOE2gQrXchk,72 gVgsadEybgQ,132 BXvryt6UCC0,180 g5Gb7V5-pts,120 DF-ifsJZQEM,112 wPSEC3PpLuM,129 38PbAk_SMdo,128 mXp99jJtyII,118 3uHIpj5JpvQ,121 d921M-ACMM4,180 ouDfr9Jh0s8,98 ow9U0uWCfDY,128 -UEeG5IIQK0,132 YNN09xbsN1A,43 JlpBRPIgoIk,132 ChIS70dX0eU,130 sBACvIGmLh0,127 6U6MOfuFX-Q,133 8h6r3S5zjtk,178 LsaLeOKK-EA,30 _2iIyoxqN54,133 uTW2Hrn49Yk,129 IV79EIZVuHQ,36 se9hqOIp810,130 zX2LRszGCro,115 k9pFp6iRVM0,133 9Qesj84cHLw,40 joAodEzeK34,100 YFtHjV4c4uw,133 c27gUzZEjvA,118 RF0YXIambdI,180 k59rG0r-sqI,132 OA-FmsSdSMY,179 r4IlzPnP7ew,133 dhRABm5GgHc,131 NnEKQD1fS20,133 z1hgz7vgIt4,49 O7why8Xo_RQ,149 3TmzG_fqqU8,125 LIIzjJjsW8s,169 n_6sNnucN9k,132 QlT6RMtJb6s,49 Y6wE2W3ag1g,133 OhYlQ6kSQFs,132 jszED6T4Gik,133 0IxeTLiovq8,127 SooANfD9sWc,126 mro3v8ZZA_E,108 j6l8auIACyc,99 wJnVVC4784c,62 OYeox3LLQ08,74 pVjh7-4ux7g,52 odrqxoaNPC0,126 ONaPfzjl8qc,174 Rt7_IUmuwHw,132 c0RlK3VAmzg,129 Pf5mDMWYRmE,68 ao1FgvPnUWQ,149 y0jPHehx2EQ,133 SnXhWbEfDNA,36 GKuQDM9OlAQ,122 qSU0iCmocCE,81 TWJEVnNwAtk,171 iKw7Ndv4bRM,38 eCCJzVqLBvU,132 xG7kLQh4Qn8,130 Mq462kfFKI8,129 vinDi5O-fu0,131 5k2vzUZYdfw,131 Puh__Ef3KkI,166 W3GsHtZu0Bw,171 US6tvODNVu4,124 spwoWkSEmsE,58 G7HkBDNZV7s,137 98NAf9zhIu0,74 fpxPstb2DAU,223 Vn3IRHhPXMo,179 VlmanKoPLyo,176 Yrph2A1xc94,128 CWAAUSNLZXQ,130 y2t3XqFAjt0,130 kiv4EChGJVs,101 Ky7ncpdpMUc,165 ncDQvy5GoK8,109 LnV_NPHo7Kk,35 nkVK4JHRQfk,48 Wvyi2PEVFcQ,128 E3WlOWMP9KA,37 kATiU-cZCPc,105 _GxSQs0FNN4,65 q4Qlk7sfZfQ,175 TipOwV7y_q4,25 CKJSr3Uw-N0,162 TklrBmHo7Do,102 -3cmJe_Kw30,132 mHa1zTLrXO8,71 o6TYEHyv00Y,46 QXtkzFiGsxw,108 _xiz8CnP1-0,84 xQvaoRScND4,149 c1EyN9xTK94,61 h52b1cHKeJg,52 b_wnD6jxREU,170 qjhh_5PMBZs,38 kC44tlr_KsU,176 Vc_4eoSHwK8,133 D5Oc_sYmlt8,103 v8OMHtUg9sU,128 uzgQ_xwWlkQ,178 O4qhT8oRvss,133 ntALVSmIUrg,119 JHkM4OUkF8E,125 5yR0wlrq_h4,161 Dj8hhzx9Sfk,52 PD5Imb7vWSc,120 vUgs2O7Okqc,112 akrTlYc40XE,67 Htt0B7bZ4tI,127 omy5TVA-fY0,159 IxnZIoP_5J0,179 2MtY0yfM0nI,133 XxsSp2qJIZg,133 cNOsA4nH8yE,92 Q7wHV0r256A,97 fpdnG6Fm3LY,133 qFL0bfzriR0,93 3SiGgXIYppA,98 oDNgxbWzpf8,132 lPe61El1_3E,131 hsBtuhWw7RM,137 1vJpAXf5wyk,183 3e7JKCUfrpo,129 -h62m4d4MmA,150 jgvj0XwxagY,74 j7O-SUEh-54,242 OsI3mSgTFnk,62 z1cXKdmKuV0,183 CTwZmJronis,133 svyPswixryM,70 7jj-8TCQTXc,131 TEmvPX06cJo,132 IBPc_SnNPzo,102 5OMaEgJv-KE,32 ik4LH5ksOn8,159 SNdc9-hv8co,133 IvZ-SaKeNuo,143 ns-qtoxnAS8,130 2ikHoBKVlCA,72 OkvebeqIrqk,58 OYt6asKb5bw,131 9ZvkGoQ1dSU,133 AOh4PeDIkWs,141 XYjynyKDAdY,133 m6ux3-Z03B4,96 usUO449hUXQ,133 sceJ1R4JzMU,121 Ur4Pg0Jyph0,133 ZIc7bCHSmKo,47 1c8XLJ9MEhk,133 dcmwPYCUysw,126 lXtrwkdSkow,111 3_U1GtNY5xQ,50 74M0hPAeFHs,72 eKLKoFIrXgg,66 uW9Q1cm_Tnw,132 Utz-RZwQpyE,77 XoJN7k1BMYg,150 spu_6dxLcok,132 _undGtyUxeg,128 hBlhWP2N4j4,112 7Xgj1Csnr_w,77 De9FeSg3WTc,117 D15HPy4x73g,97 wgmwBXh6ExI,128 hKSscAR4cS8,174 xEU2YTN-svo,104 Q-BviNtL0PQ,112 9tGWHkKzeeI,175 SyiA_t-8c7Y,132 gXJH5jhO9to,133 TBKiHfVkYCY,97 EECf2o9Ivaw,146 in-1BIg_Mec,179 f-PnGRaJaSA,175 sUv04cGjaDI,59 j1C0Tw80Fgk,147 fCjsUxbNmIs,146 FM-wfXvcbAY,133 km-nbIRZJYk,64 MWkN3akP3cU,132 Md0LvQ9gANc,56 3ssOgE8RWSI,134 9OGKM_BI9zY,127 3m1JShNLCYA,67 AQnQ6irZyFk,119 vc3mkG21ob4,143 0LzZVYshI7s,98 iCfjoSbWHZM,42 SMJqQ3VrcCA,172 S32b64ns3fM,124 2pg_Mr4lIoY,100 mVbGpzsuNjE,131 HSh7FRalwdg,69 eCQIRkboAM4,160 j477dAxaeck,195 DTWYQhTT388,177 Y29DgVgmE2M,40 7xVN8Q0OIbo,106 4J_8tpDzfAk,58 K0zvX6AGd7Q,133 5QYQS9SYa6A,72 c2gZ4aOYOw4,130 tBw_BTLbjJI,133 D0wShZqevLU,85 s66zFW3nogU,133 PrpeARyTcx8,128 cNqSc_WsRJ4,102 HKXId9qgGfQ,181 gL0Ph_x8xmg,135 ycoe7us5bbM,117 TmoeZHnOJKA,57 YbcfcgX2U3g,130 EIz94vt-Opo,79 4nrgeASou5Q,92 WkOLYUmITfc,178 L6g6fH2ev40,114 S-6xoT5Z2nA,145 kAi0cSCUWfg,179 QF08ozhDX-0,132 uCCrethRf3E,120 xHO6nBc4YFU,133 h7CCnLwD2MY,127 o_N-H_5Pvu8,112 O73Q7jd3VkA,131 V3RHvyrqTak,153 hoSJVPaj0ds,109 r9twTtXkQNA,109 oSvVjh93suI,167 OPwRf_sD5fo,133 kiW7cj162rE,97 6LOwktvZlCc,133 Xqti-Sxsxk4,132 d9N--iGGW3E,131 RVFpy5UwsAU,126 DCOm4osfWn8,79 oXDyQju8my4,130 OJ3gsR-DqAE,184 eWgOjuLg5oY,180 3_giBWrUYKc,133 p-mlLMZXqg4,132 UqKkfcG36V4,130 Bu3n2LEcUbg,125 I5kkwmOapss,86 2X80aLjCncQ,131 IvKzfpZ1GUw,132 i9NIwHKBqy0,172 RN7YPq8i4w0,42 PeGDBR0Ej_0,179 fn58yij7rxw,133 tAx_zjVXTOs,132 e1zZYMKGw2M,150 3mieBC6wlbs,55 Nfrk2UdEOcQ,101 s_PLAOcbbzI,48 MPOPd2RNLko,49 iQpb1LoeVUc,141 03HGdrM25FA,96 s0EAZmF0k6g,133 -nh3g6F63qM,123 inrI2qvps58,115 j32LbrHGak0,29 Dv52JE3zqzc,70 mlAtuy15iIM,109 kk0vH1qJPHk,129 6Pkq_eBHXJ4,122 8jd1NKyFQJI,77 6iW8MoAsz9Q,174 KZzmopXXE2k,110 sdUbhlY-RP8,131 9rySfLgqHJc,110 dvodASNU58U,127 P8Xg1vVkIh8,56 QauBYsssnl4,133 cr13B4L-5-M,36 z-5iCygFd9M,97 mKl11EzMTAE,72 bXNwzKo5Yps,178 UqPRk4oFz_U,133 dmL4e3jljy4,133 GvZLaCfU4PA,67 jYLZsEioFig,133 n8JOgoI_2as,129 n57MunvVpIU,133 2gSf5UMZ8ms,165 lI-ty9MfICM,90 np-ndDy9YJ0,112 ZxpXrz-nEdw,155 weDm19eMl8Y,131 5soOhh80bK0,132 czzH5M2bUYc,133 SXjiv_w2i3Y,42 epHCMiCtt3M,121 liK550asDSw,101 DwrmKYIuYi0,133 HvhH6_TMxWw,138 JQc_dMcByUk,128 _2LMj-4PtdU,169 QB5379zBbtA,133 w9-IJEaGhRg,110 XLScUvabSr4,114 PJeobOT-LGk,118 I2eVbp_Jfc0,132 yBBKcecvEcM,121 QbSFxlfuf9s,79 8dhvm-ph88E,35 4unk6siO-tI,131 FNkpIDBtC2c,78 K9T33H_h0Yk,41 W59U7VWHZ1Y,55 2bMvW5QUMYk,128 J1668qPavto,60 3ThrlTaPWO8,85 nhomGXOMYmc,106 gkEZQDlj6OQ,133 63iuB-cSY7Q,114 OxhtzzpoYBk,77 60Sc8RmA458,110 QxPA0i_TVvk,132 4syHx4o_N74,50 tippFPLwGgI,83 zNkZr44VLFY,61 CDn1rXzkBEM,133 cbzBwleJnLY,173 5cqQdDitGuA,48 QiuXl1cPfrU,48 eyCCuHC08bY,170 5l1VEIQj0vA,133 WVLvMg62RPA,69 7uqoIuB8zx4,133 5msVl3oZl4U,113 AJRmY9VXf1g,128 bYQjcjDeGF4,89 CgX4uJSj00Y,132 RcPxPD4CcaU,149 oVzqiDMOlms,93 ZN6mp2NjMhs,180 tWmPkmMO-mo,123 ib3Hn188Jwc,103 F1SfzV67Bqw,116 vZW4Qk-wqlg,112 BRWeoTfbbbg,112 xwffHJ_pAM0,58 yZ1OgEqw2oc,133 hK2bLlVeh-w,160 Ku1Xc6NT6m8,118 YdF7wSrLk-w,124 2NfTq7LPnXk,119 FpxOLhuNXfM,180 dKsDjpKr2Mk,132 XawDF5UDgXY,98 6y-pdLyZPJ8,69 sPQLY7niQC4,53 pCHHv7ojfiw,133 dJma8pVAvH4,134 1Oge9qUat-I,128 MdQC-DD9fz4,45 QhDRkf_XGVw,133 K1AMs3IPQJQ,131 sLWhxB6QNrw,49 KtekLRYl3q8,131 3YM3AYZaTZ0,37 jaCofC2Bv-c,131 n3PGfjyctSQ,118 FMFJli50jdY,108 wPJvAzfaqlk,122 jwmRNTTDOw0,41 YfJc2bORFHs,109 V3EpNkdgmyo,131 yX0WnX27tJw,131 xtXdKETotbc,132 8O8_FMhW9dY,129 zZJ7cq6T3v4,172 WJlOBTLg4xw,132 OoKpYXTmYak,71 DurMO8Ayhn4,133 WDAo_p8At-o,127 SDls-ZJDLXE,60 hQL6_NbLwtk,116 ydLJtKlVVZw,123 TeL-XU97qyY,95 ST9DTmR2xG4,72 GvF4-C1EuJU,143 F4T2_xFNAqs,133 9fpDYMwJXQQ,123 cGP9TwLnG78,54 T1Z39yM9AVk,125 tr4beSTsJ1E,165 YjaEc9KUlBI,77 7MQUQQkzNSU,129 IgzFPOMjiC8,133 nr8nHHg80CM,133 d4WJ0CGGXo4,132 vdpUDOxQ0ao,62 qfJfRx2IAYo,127 cKADfQQILN8,133 Q6Fuxkinhug,134 EJXDMwGWhoA,153 Y_WiVEBST6I,123 EXmDxa_WlbU,127 irr4b40Ok7E,133 IHR5ljAFCGE,133 K3xHM2hrV6U,133 cliSp3FNprY,133 y5RFBLZV-B4,38 mV__PXYxQYY,48 rQvp_unbfFM,133 HhtRNV2v2rU,132 3VlyZIywY9c,139 OkIYOU1ObYU,88 Ly2Hr9qqp9M,133 gxAaVqdz_Vk,132 eKJv3dWsZ7E,54 LK4c5TIKY0w,172 sZTRUAFCzF4,86 uZgo9g8v76U,125 qhc9YD3ahAs,133 -Pd-uuDi28U,123 N3ug0dVCyeE,127 2DPSnOrJaXo,130 zGDk38z2mbE,102 naI0OgZq73M,70 c0pmWNOt3fM,132 9PpBLxJLihI,99 hReFx1kjuIE,120 GNw7aQdAfcA,128 B0cuLHkQDcA,141 mWdqcBWVurw,132 2k0mUKGYUQE,85 GZeehXqOYVI,133 pWGGQmeKdkk,54 -EuO6OFypLo,150 GQDLVpNKFhw,90 EnFcN2CMNps,68 5Gc9pviBlJA,133 muBDF7g_mXY,133 xcJXT5lc1Bg,144 2tQUU1c6MIw,130 Qse_uMLvdwI,112 ewvHk1nM5u0,126 Mw9Dc_MJF34,133 EBkacU72QM4,124 Fyvzidxs_SY,115 iwfU4ei5gWE,180 sZazSFEHfg8,79 KqpcmQhnl48,125 0huG2wHLCGA,116 6c4QghxZ3IU,131 eAvVe92mi5k,122 T9sKhnO9osM,150 4MFzzWkl0_g,163 QELMO-GsxVA,133 5Xk31NpUX1g,143 sarN01WcuZY,164 bwzuMk8SRzY,107 qIp_8RNNX4k,165 zUm6rC0o7Po,98 edX09NFZ3oc,108 GnjxY_zMxOA,83 PQCAqu6koEQ,115 9C2L5v6BfLE,173 VMqDBkf__xo,131 iU0CuPH7akM,77 pMQxW1t8guI,168 aRcxYPkFjh4,46 8K84sx9EJzc,133 fgPFXXhzBCE,147 uI-q42kRXi8,133 c8pZIocR-lQ,133 KlPjJx6pMNA,132 6Bg4HfBsmAU,132 0B61_5sRoBI,106 qYXoNC_LbcI,133 H98MLmW5tYw,131 gywGZDlDv7U,132 LGAfIx5VQ_M,94 GxhXJGA32YI,132 nPjlPgeaD_M,58 roA5fvzJsho,55 ZXXpX29Xt-U,165 f_xjQNnIcdQ,133 fGkSjNHEecA,133 c6dmj-WpTW4,133 WpULGtEqNBI,133 UX3HxJ3eTd0,165 z_r6KUYYO5E,70 4VWgFJUjmHc,89 tUaOBgXp_Pg,107 X7rfWPbEufo,127 etyH2OUxVuQ,94 w0cXyGVsUjs,132 8iQKnefUJNg,125 m6kFCNsnQpQ,177 cAePzEGsP5U,129 BBYLOxitgIA,90 q4RbzjuXB6E,132 HbYMkY74ikA,133 xJp2HXBJv_4,109 CPnwlNvwBLI,104 zlL7BbZoSAY,132 oAFVhwUVJt4,93 qSE4dF_Feng,26 SdNqYGbc0tU,95 uzDmyicwgnM,131 3osli3y94I0,120 Q5wdXytgRLI,105 _WF9UwKuitI,130 FFJo3KhcZw4,174 ApU6H2gqkMg,94 Fypw_s62Q0s,108 ExG7Ut6DJ1E,103 e50yvXvkaeg,108 a8FA5zBHiFA,207 dazYs4DgYtc,27 d63s74ijwb8,75 fg58hVEY5Og,129 PMar5oQ5Ha8,132 sFW-yxe13lo,132 9ZhgVCU6ehk,122 P9pa_8-WdlU,45 8BOU3JhcXIU,126 iioBwO6vnEs,128 EUvgqItrt1c,132 FvYtbd7YE3k,144 m0uAIT2O5P0,124 Rngpf0Yluog,149 A8Tw5xASluI,157 uKwwpmC02IQ,124 hFJlpOjXf9s,133 vYyz6nq1mBE,87 yvcHCRvP3Gs,133 JUuQ3MggHbw,133 AsKzZqVhH88,118 RTObjnUfgNs,133 kqc4KyCYA0Q,119 uiy-sT9JgRo,126 sP9ufyH-Pdg,133 86RH1KAwM2A,74 ftAorMqqjy8,48 pW3peNmE19E,124 9n27j_fe1yE,19 zE7PKRjrid4,131 wYrxIQf-s-g,150 09iu9EiAtKA,114 6bahX2rrT1I,47 LBO6A4kU5Vo,130 GVAVkeMQyKY,78 t1JsC1ur2X8,128 NDXWV-mGlPE,114 aFDFSGAIrxs,103 UgFBbUinHSw,43 Njwqb3iGNto,80 31Q9JbHAzjA,112 Kajmfxivtys,64 ofxfYinuKKc,104 qYW3MOezCc4,133 1O7AX7tqEHE,180 4w36z7XnwOM,128 moxAGYR4nYY,133 g0s18i95JKA,82 knL5zY1LRqw,133 7C1Pr4AU2wc,111 UKGE05RbsV8,122 BNWvtfCdBcA,131 2x5L2L4XZng,126 T1TrFjLKryc,76 5XP3MonWebI,130 rVFi-yeTe5g,130 OSca1EnBNJA,42 oOeGE7z8PAk,179 CdUzUdaC8tI,95 KPwY1uEFP-c,53 gr_OpFxCx-A,132 oirwXF98wo0,112 zd0FCDiFapo,130 JtHq6vKm3WU,25 GC_ehA6dd_I,118 ELzQ4OtDjrs,126 b8oFKKPfgi0,151 nx002D9N6qU,100 be-Ou9Xkh48,55 E-TthagAhsk,88 _6dtasEqpLM,168 OuGSXflBoWU,179 R9WGPRckS1s,132 1jiv5JxmUww,126 Fsy3TtA-3NI,122 B6E_rp80QMc,36 Apv7l4b68MQ,133 2V5LfF6uxT0,121 COsMa1MQIVM,131 rRNj9qpTgOc,118 l_4wAj6Kx-k,119 yGy0XuoyTvE,133 PGqB6JIUzBo,131 0lInUr7VgCM,133 v9vgJaU3g1Q,131 qO_4Up5Q5ns,26 hV2om9YBADI,124 W8AmENQ7_ik,122 tetwGGL997s,180 eFKh6cYmQ4M,129 MTs-HKiOQj8,34 cbQZ8GK2usU,84 2Fy8vK7IGIs,81 br-ljup5Bow,127 2wwC9c3iYK4,93 89hYiDNscBE,132 zirtzDl2RH0,96 k71x-TmobGo,122 0m3w2NeEPY4,106 smxGSlqjZNk,117 VDU2I4kxPY8,124 Gr6eFXNq5Wc,132 48jtU38CZS4,129 hHWcoaM_59E,104 KV143Jx9hFs,58 tO1oeKVFlPk,178 dKMY0jcisRE,150 Pn4mA5BIzxg,132 DCSeUhWzdBM,59 NI4En1gLsXs,133 ZLFDR8pvkf4,133 i6OCtSqrOQ0,163 wVWk6IfRuEE,102 GdrDuVImE2c,133 oW7IadnQblg,111 KSc0srYx9-4,132 Fe2CpAhZ9w4,124 fUlMUkd7IWU,178 e7dbge0Zk5A,133 3chYfqAbqow,132 6EUxC78eSjk,94 7hwkR_wvrM8,145 NCCUGkrIfkQ,127 A8wAYZAwQFs,80 fpXngRB-VTw,55 mVqKHUtKh8Y,68 xMy-NiI7q-M,133 NoD85qZhkWY,159 vcsl8fSgqls,128 nzjEYhUtRGc,132 PI87-0g_SI8,125 BEG66-Lro7U,105 6n6RVIIC8SE,133 kaXM8DMSm-g,131 JxRj80eLkMc,133 kZQwVWTB2hI,145 xLq2eTiqbww,123 w9pEL5BVnH0,132 n1BXpNTsoB8,129 8sClW0qW9LA,74 6LFRQNH3BnA,144 1Qb-2KSKByg,153 AMuVqFvM2Rs,131 2FtBOS5575I,133 ct-PElgfWJY,179 aBADjCeFnuU,247 w0C4gjdag8o,133 UGYt7xZWoPw,128 frMMK_rKwD0,141 RATBzjmcbh8,133 zIJgAMpRG-k,96 AxeeO1qdrgw,133 vKZhOw3Feo4,65 yycyKndEWcA,71 wUP31hGC1A0,119 mvBtzXZWWG8,120 yidXeyTFM48,60 zsgAfhsQkYU,66 0ynuAmC24_Y,123 Jgmk5D4a8K8,142 c-unYxWW6ws,179 idr40IexHQw,111 SJhnQPZtv0M,118 FnjrwacqDLc,70 0lNb6NAV6jg,106 ZJxNwE6H1SM,56 80ZafDq4xq4,45 BAXWxuKhcTc,163 4X5-zcyQc7U,128 T4Sk7RsIQd0,126 q8RTGMsDTiw,130 O0gse4WDTrY,123 RuC2eNMtAHA,95 lQj-Xzr29VM,151 HI_mwhUvqHc,102 vgzM_Q19DUU,83 kJ8_sMrSxns,133 NL4WWmwdV6g,96 Om3C1EpHLGs,130 AMT2RwFFs_g,154 Aa4bjQGD6oY,76 j7PgnjEiMcA,156 xCMsK2duu2s,123 F3peN7bOfOo,132 b5jr8NxFS-E,108 v5ueLuyLWn4,51 OZLVlajiihI,133 qUu8VHynw40,125 lNXTKVxOmfk,180 K-zYWpnMyXI,132 gL7zD3RjgTg,127 umK3KRcg1V8,182 P5EwYtPZxWQ,179 isBwMtlWLeE,161 wPvJ5OJ_P18,132 KPpwiCStA54,146 qBrEcM3NbH0,132 VfrbOQ4q_Bc,121 XvVhKYmr8cE,40 gB1LgDhJQMI,44 uqg7Ow4SNk8,121 OwaxFAC6rzk,179 fvptWDiYrIk,68 mqQ8Y9Sjp7o,171 jPf2y2QGoJw,133 yzGKgnbclz8,98 vvWyQxD3ZmI,127 F0-Ke_gCCNg,117 Cr04KncHozI,104 QAJkvEJ2QjE,82 2ed_jTFrZkY,98 l6uaxfye2Ig,96 WaF5AMiC4xU,131 4WuZapvSL0E,133 9sWnQ8y_M6A,171 pQEsnpbMwEM,126 6-NRVtIrrEs,56 -hRLd_jAOfM,88 yOpsJ8dh5L4,91 0fbR1RvOCQA,99 xtyieNg18O0,128 cXbzJ7xAVn4,130 iaZzcRtmXXY,139 lbaWyJwff-U,116 FPbDFxXU_74,125 UT2YmXPRg6c,130 dMCHG461B58,152 bTeYncx1xmI,180 0NH8i-Q5Nck,57 mO5UNbKzcpQ,180 c9FCOAEPHHM,131 gAxuiJdRBjQ,128 RvNuTuiKyIo,136 F44mBbuqA2c,45 zYySG-Bwo1Q,133 p5lEvn7ejJI,129 fSeWHl1PaKs,149 i2_F9kuo998,720 77tn-KPS334,27 Lj4adAAHa68,81 IZQFJ6hZNJc,95 KPz_yW2gjmI,133 4kQb8kUDq5o,129 6wJXBUfcIOE,115 Er54USCnsds,155 8Kx0qYRv8XQ,103 8sUWwozOFww,94 6439wcfAL-E,51 oDeQU3l-JSg,133 qiVy40O1_Lc,50 gNGmuLYwd3o,37 eOgMuHykBAA,112 OYlBy85zxdo,178 P-E8ZrQ06go,130 77LZW5N_Tic,132 K53sv3l9DB4,99 nTh9qpzhunE,54 cgBAJefErZY,110 5iZUg7tGlxM,133 vn1ZcpwPlAA,127 5ZXyC0SDHNw,135 BkVDaT2FTM8,128 VjlUWwstdTU,84 aAnJ9iO8DAE,123 PGqBHvtmtgE,127 EiATQ04pH14,102 Y_SP86WfXZ0,123 eeR4VQyoLdc,133 o_KXbKa2crI,180 3B4fl7vqi5g,133 KSRWc7zwzC4,132 fmIaHAtabSU,128 lm7nrQTysm4,118 5dVpXj--7kY,134 s4heu0mPm-I,38 w29PG-8Tywo,179 4lj2ISTrfnE,126 PWvWrHzlfAk,131 U0sp1K-D1RE,133 cnvdC5TGc3g,41 phKe4peWFG8,94 Lw0Nn1xSMHk,76 YsrQUrJ7AdM,60 IBJGHvt7I3c,76 _d4H6lx9-Is,168 01ZWXIY1mcs,120 9c0szHKahlQ,133 sdb8G26294A,132 _Pbi5kod89U,123 rG1qXTVH1t4,132 qTUcFhCim_A,110 0Z-o1RVdnHE,83 6NRK8ai2U0Q,133 Tk5XmgEEHoc,111 MteufVA29iQ,133 QIBTN3qSB44,131 DHMF-bVxlkc,181 A2QayxN3z68,45 FSSlOmgUf0Q,27 wSKGygJ2-oQ,84 LaIsEAR_R5Y,38 rJCltwaUrXI,151 9NCpU9laV9I,132 TYmMagkfjfI,133 e9t5ikxjAQ4,133 rx4BjUnPGss,102 ADMAw7UKLsg,94 4WAxDlUOw-w,88 PYJFzOzpwHo,133 R8Oo8hf_n9w,132 WDpipB4yehk,132 QxL3vcwOL8E,117 28BXqQWqYJU,130 Mn5ayQd7Y0Q,108 oLnrsZa4EqQ,152 GmXGVDnPU9o,104 aP1FZToPFxA,92 IioYhtWTb9Y,77 O6KVfajjyGs,133 HduXGYkoc_w,116 DIlG9aSMCpg,125 p8xEvj1w23g,123 8QJiAK-s5a0,173 xX08f3GV3v8,91 1M6oW6a0iAw,130 dMt-XLWY8-g,132 UTIjIC00VwI,91 HlXsMMnAlmU,180 Zd17-69y_i8,180 iOMuP1qEKUc,102 ielkiD8w-M8,64 SojaL9M5Pqs,179 olXUIcb80N0,138 niFndjwElIY,111 rpp930f_fhU,101 Yrx2bv_LoG0,136 gJ_cx3AmCuI,174 i9KJXFbkMH0,88 0Dy2fo6E_pI,179 rukUxz5J7qg,74 gmpBzm5RknI,171 BJ3BAzRulPY,72 rRGfnT_LUBQ,130 yjU5akwca64,130 fD5ZHKN90hU,41 wD8pQ5eDneo,125 PTjIRQU_HdM,124 fbrN51dPm0I,180 5t8Utwa_YYQ,116 p1lnXM7l2_g,102 w4RwU6t2rNA,30 2wnVCoeCXbY,163 CwdGYMM2bHM,180 _xNB1WCQ5NA,54 k5oJnFivwSM,85 V8K5d3pEUl8,129 44ZZN9BqlEE,154 trxN4ftuxKQ,133 jYnRBX2Trtk,132 8oi8aVwb_Tg,53 fZ7X5JDKmSI,137 jHessqORWLw,125 2W5dr790cKo,75 -ftyIj2_b8Y,132 hf4KXHSvKD8,109 qSYAT8jpqgk,153 uwcJaUaVfR0,132 Od4nSd9AVH8,101 ECoL3IaXgRI,66 b4kKWa_hjCk,123 G36NDRDO6L8,139 QsaG8rJGlyQ,133 NBTTipJX-h4,138 2zomyWfPgjE,42 EEjI0A9iMow,133 8ReMLVUwKmA,122 3cmp6g1fbhs,94 F5bAa6gFvLs,163 VzXjtxZaGS8,145 5lqvuMwYODI,125 P0GZAeKVtfg,77 0pgWUvW97ek,30 yknIZsvQjG4,144 kdkVnZsOgJA,85 Gt_pfAghaHA,131 gPamy0ygNs8,124 K8yeho0MbYc,157 DWjJlErBPX4,133 8JfgfdHNkvg,133 PCNdV_Du58c,132 uaEUk3vFsss,133 5MC-cGN0bw0,51 VCfFCFkVSss,93 GBV01HnuTz8,123 YKRnEOUxZm0,65 Vi5nIuJQVpM,131 -p3FtQtQ6q8,127 Su5vMTdI0yY,171 zGIIiQyyuYM,133 0jzYpSrpVqU,127 yMjMgMaakMY,104 4EUsnCqqc9s,163 6esR4uGEFCc,132 jvhap1vcLDw,133 C7Rmtxf-NVE,158 diFDBNNmnnU,108 3DmchoOLczY,62 VnrIuEa7ep4,122 EwSSmKP7ADQ,80 exMmixM3b3Q,133 Eb5uCh-8rZ4,132 UkdFtNyvsBM,133 15s4Y9ffW_o,141 QB91tB_5u88,98 SlVK7ogwyUI,101 8n2vsSHAs0w,122 YSmSuiMNbDI,71 kgfgiLlW-yw,116 qNkP2Y5wme0,112 KeX9BXnD6D4,110 EVdo5BfJMCQ,133 qFsoL6ed_2E,133 2hs_qcU6410,123 trGyimjcGRI,179 1MJg1718M74,132 gkJAPsQ2YHE,53 zCv0AZeyCaQ,42 QQWyeLLMwmo,58 X_SthyaIImM,112 hRa-69uBmIw,124 wcztDZ13TLI,157 pgMyGwm-71w,781 7tNEvCdVtk0,133 C5-RnOKEZ-4,124 v3MPODJTzFM,131 TUlYMYQD3ZE,99 wq3EAVEnW8Q,52 eSm68IEDDT0,89 cKFA0tZIc5w,133 A3WUhMCsZds,78 CZ1wzoCOQ-Y,123 dxmqqCK2FaQ,98 MCkKihQrNA4,72 8Ppo5YIYwTM,109 -xQ5nH_-yyQ,180 vp94AFms0V0,132 iLYeR6v-fVE,126 MfBkwdh4GU4,49 e4pMjAtdmO0,108 JuhTQwzizDI,143 MsMsnCypMuU,133 VcKVgWYkZa4,121 l-byywMA3b8,147 7e6DCyXotE0,94 KQrBeGqz1W0,133 jutOpRQ7Osg,178 aAWIZFqE6L4,130 FdxUNsKZ4T8,107 WeZiTVev7vA,117 NPgEZxjtt-I,150 26-SvRLhthc,121 1tfK_3XK4CI,107 zySQRLbqyng,128 qvwHppI95K0,114 uvUH_niF-Zo,126 qhxDQ1g964U,121 BmLPVUYQM34,135 57ge-WVuEY0,129 QNVWY5jUIbc,132 OkSIAlL4f-0,251 bhGWWY1nCWw,72 7msu2ugXGW8,109 qnNr8etyi08,132 H2tltm5wUCs,128 ifS04il68Yw,130 X1u5iUcD0Ag,45 yEQtrdTpJFU,133 3RLPHNi_2-A,133 k1z5PejkIyY,150 FtM7tdP6UDE,133 XYumOva6Xr0,80 T2Lh9Lt3_w4,112 jal6Pf2DFlg,172 N7LxzkB0imk,88 UpLg7Ma-c4g,180 mbWtLBLt1ro,14 lYCBKgzuNak,119 GLH6JPoOLJY,48 1RIOFzhufm8,89 lnNbDaNP-yg,108 dJU1SZIfK3Y,68 tdBNwAJMgW4,133 nU1jeDXloRs,131 USKDdEg8N3s,180 UlIBiZxArGY,132 rNPcxSp5a2o,148 EATS70yNA0E,133 3ZPlgOWbkcY,147 uIUCcORbMvg,112 --jPdm57jQs,58 1H96OfI64Fs,129 Yg3w_8_fwIc,97 DVPGcQ1Ljgc,133 P2A2nKAbQqI,98 OqSg7WO4tT4,132 TSKzL-8RHuw,141 o2Oev2LZudg,114 -c_ctZ4lUCk,141 VMU9Yos0mkk,109 jLo7tHDHgOc,71 9NqWMjMX548,85 NOMdMmQWgjQ,26 uAS_k95ZRUk,65 1YCz4y8b58k,135 SyM4ctfYzks,177 3F1uAggQmYI,122 5xUMeF5rgQo,125 b3EWsHg08x4,72 mT1QTyuTr-M,133 bHTWme5Ks9g,124 Spl7doGUZTI,89 dZgbeIE9Xbo,100 Aow66vqHkmU,131 aW4tjKzDEDU,158 xE9YSmsKm8I,126 8yDjtE3wmFs,64 2cSY9R-ka5o,129 -cBGthOZ-Ls,125 f276MnhGqGg,69 JMBzKJj-nIE,46 rSPj_G2yVz4,162 nqaJ3f0z3Lw,62 Jf3-qH7OhmM,133 jocnzvDLA60,44 ndfLW-xm9Xk,51 -hqNz9Ve-Hs,58 wOlCQYZWJRE,72 ngThTIjgCMw,74 -wc5S8xwxJk,52 WmeaAGe4uMo,133 LdnaptnNXbo,133 AjGIJPE8B8I,125 iyPGMUFQiW0,132 Cho039BrHpg,132 3EIgmj6gp1I,60 az-Q_fYNZrU,133 ZFofgS_iQ0Q,111 IzOtTXOVc9A,133 z0BandJg8y4,152 jn8SVc374U0,133 2X_LdH71B6I,126 eG9QMl_w1pk,133 rSB9VJcwQsc,133 vGgdg2q1eig,133 yhf9YADtuyA,133 ewkroL1cP_Q,162 p7aigA4gPiw,122 O71paEZERHg,131 r421zjv-hoE,125 GuEFmBxmIT0,106 os1gnR5k3S8,118 koPEnaz0Qm8,54 X11uEGRnCDs,133 nzWDzGxqqa0,86 H3Epwo8vFpk,132 DYFQ9vVqiMA,114 XVEnOs2HVlY,123 FMENQeCbxfI,139 NMi4ONkFym8,38 vdHBsWXaHN8,51 qlrpmMPkRUM,77 Kp6aaQEK5y0,130 42ikB9YlkW4,114 x12Dai43I8Y,131 q3NI5sE3KeY,186 Tm0oAv2moOw,179 -nzW1T89qH4,80 e4yCxKv-2qw,120 cLApJ5OJaLg,107 kWmntegbxMc,128 6Diop4IOk68,179 L0CGJL5SlsQ,132 bD_rWCvgDy8,61 -qmkhAXmBNc,112 NBQAXiZ7KG4,66 2cjvwTzhG8g,109 6_-kw-0PvJc,71 6hxOoM0-NJI,173 WcXt9aUMbBk,150 RJjhiIlRzw0,83 CYGtLUZg1xA,166 3SLoG8B0HTg,126 ojydQ3_FDqI,133 I9mJ2oBONug,131 Cb1Pbk3gQSM,129 rRaHWuWTtG8,121 ViUAWLUF74Q,132 uAgvdtpmXBk,133 UbTBbTDjjHI,84 d-ZaywYsJk0,108 3dluAhOU1cA,180 vjSMyoCFS_o,111 UGBZnfB46es,119 KKsEwCmjRP4,90 yGgOimJaqT4,53 nyExbZwBM2c,128 p2Md_248enw,133 fImqZCIebuw,43 wyaGIaJsmTg,97 _m9qecEehqY,60 gDwlbuyDPfk,131 FAY2LYoYCAU,131 spVHsj3_MEY,39 krqNvqvhvp0,121 a2dHmOQuDaQ,103 e_hkxbNpQMw,102 XFC2o44koIA,126 dEjdEoovBR4,132 JnBh7KBjgwM,141 M4nag_xN0Rw,96 1FZ2FA-epcE,180 7vjP2EKf7do,181 11nfPZqT5c0,131 IZhBhfty0LA,132 WMIho_dolCA,74 VjfjS0R1bdk,176 4WcOcgc3WN4,35 6FRUFQXnhBo,26 ivchILnrn-g,31 uV5YFJgGPNQ,101 WzTIhm6YMQk,44 TKKzI-DKhuQ,100 fIT7VMVju0A,171 fWLdsqhYVxM,140 As5-06N6Rko,158 so4D0cpOaUs,133 PqtjbWJPIgQ,70 mvLpbHKV1_8,95 jei1Q_fP_Es,85 EUtdnTk7wIE,134 IZS7zpXftHA,54 NfDUkR3DOFw,67 hX5s15LBHqo,132 Wg-UpYglAEw,116 VGqjv_CkCXo,39 9UMX4dGRYEw,180 bJgem6Xc3TM,67 OPC2Ahuklt8,133 uLt7lXDCHQ0,179 Du95opzY8qg,161 ZTVR1PCRopA,173 sdc5bkFd2X4,58 Y3kXNEX1Ghs,118 kqVqHxVJCaA,127 a0uMay4ExT8,129 6xD1JRKscGM,125 -UAV4O9oZy0,40 0yOwWkbamyM,178 MOJFi9-64Qw,132 sh8VHDoEDik,127 BfcfTmh8RKo,43 rNAXkGt7rFA,160 2XgWUoUe_lw,132 ThzCQZyzCkg,85 DnFk_dGSL5M,133 WDTRyjMnDOk,53 nP7OKtlMO2w,154 wf-gIUYRCyk,178 L1YN9QMKpBo,133 xTseWiI_yns,91 5gMuofAdW6A,46 waWs3T-HJas,131 Fwi0bsJ5F8I,83 KaxcWDmXbBs,130 fw_IEdXIuYU,133 TscPOjzk0hI,122 CdwdX5PxF9Q,77 oxLuG0BYYwE,133 x5f6nNMdbgU,158 kicjYh3v1FI,80 3JXcqzJjHf0,84 NBS7J3KHWhQ,132 m03MTJCH0Ns,69 rnbDA4wKrg0,178 UmmXGbFASC0,176 -3A2TNWXDXA,133 Gxd-OPuy2tA,133 tdmGoIYtHzg,133 -uU3MTcwg_s,132 cacjl7UwuVU,51 F9b76RWM7qE,75 d5TglK8v1xs,87 iuL2loyB1bk,101 _yHgZUYOYdY,133 u1pJJOaKdiQ,159 lW2JBJSaXUI,82 eHpBhm4LMfw,63 OfsHMuWn95I,135 fLWrnVuT4Is,76 00rpUGdvcY0,133 2HOwFvWBZ3A,128 cgXTRSSX3cc,119 l_a2GN0Ix4o,130 sbz_Xq2aEQQ,128 lYf4jdLpg5E,86 Y0F2c4VgxW8,47 06B3m6L5fFw,123 ax5e-46rAwA,73 H19uKs99vIw,122 7TcMmmC-PqQ,133 ySQ8WJNGp0U,124 vBH4Hv39SEo,136 rr6eufh4DA4,133 17dU___xcdA,53 SakCFLhbAJA,130 GK7IQ-raJOc,133 XHHg1C8LGnk,131 6v6C3lZ9Ic0,133 GTv9dFFHtW4,132 NACwfzRou0w,65 8bY4qPadkSo,153 Y77zaw13B_8,132 SI1K-_VTFrQ,78 upyAJ-kEgNY,133 1mJf24luhuo,125 dQUjkTOrAn4,178 b244Z-Otu4M,8 ifjmJHoUzc8,180 3LEa0FN1bf8,130 nVwOCEibZu0,129 zpmLSGixYwM,179 TQeP6GWU0e4,149 yvv9DRyxTFo,133 aF3BXL1cQYY,137 HZkrxGuKHkU,131 rfYZT8xR1Gs,124 u-BIr0fW5cU,132 4MzZD9mNlww,176 CWxkPQXZo6Q,106 rxX-JLi1FB0,133 K0qG34a5oqY,118 AqWLMW73b6Y,112 0IVFxW63RxU,48 fki-LTswICw,169 4pYu83JHg0E,31 c5BJJbtFP4E,132 lhsWHmJiaXE,131 mFXxro8aD3A,37 5P7bIH5iC7M,86 Z7RKrb4jLOU,149 MOO9hFCMw7Y,133 LJY_pChREVY,115 SAPvfHqWNFE,131 OAhF3wWBxbM,127 N3U5ed3dRAE,129 NdVRDlmWhg4,65 Nadp60OP4D4,149 NBh_b2SBDHs,132 7_ip79SGVLo,133 dnIPfZIKYPc,52 f8zZksymCzw,90 on28B5qrgtY,92 a-IU2mBY1_4,118 1ao1yR27lak,140 VdG34y8kUyc,52 yoGdST0RFuc,132 P-sWReV2DDQ,123 jNuIn4T-CLk,92 FYDrPt06XNI,125 lPCt2BBqR2k,122 q9OUIk4Oaq4,177 ar5YGIFyEUY,129 1JMCvX6qXuo,150 JnXi3SVJXbM,133 bqOMJ-Qrg1Q,132 o4Dly22Kcfs,122 up7I_0JGTgQ,132 -xTty5scUwM,133 REBkkS4Axtk,150 JbI9xgX8H-8,130 958GzzqgWnw,175 2xxZ6kju6xo,178 KE-ok-meF3E,59 -U_IRXhodds,182 kmgRv2V_7P4,121 EA-9nqoIXs8,132 PxtuovqUgYU,114 6UV_5HvpmgY,83 u3xawRs6Rik,131 p-YvF5eXwYM,115 vFqitPr_Gpg,58 B8dldLG_ZhI,134 Z7xJxo223YA,183 -NtpPdMGluE,167 goikm-zX9r8,38 3OYeaLGRfug,57 OxzfUI1wSwU,133 JPEmc2HcMmY,169 IkQ_uPNWp28,114 QPzZIJ-4Cq4,41 hnum8SxuVCQ,128 jeoUH00woxs,33 7RLU1N4-8SM,66 t15VVQjK16Y,33 4m2WutlqBk0,75 buRR_o85qhQ,134 OTq3-zG1lCE,122 C_2-E5uR-k0,120 GNTdNXkhZ8Y,119 X1UmHfWCw-4,132 3fXPZqrKduQ,83 Ciq9ts02ci4,179 yrLutFhQLgE,163 tBSbjKyamRo,154 ZcCHgCXxkgs,180 LSqb4e8mUd4,60 d7RrYVI3Xw0,128 WZppJUaR7_0,57 aEBLrCGhTVM,126 CblvDFObgNA,110 Y5drWYjmJFY,168 v38lu0Bi0Kk,114 ObbLapUaZd4,179 IsskB0D2GC0,130 sF6TDdShI-U,129 pkfyn6mYlCg,151 QQwJyX56Z6o,132 dVCki9kwF_4,89 guMVb47aD-k,72 FbmnqGqWgc8,179 tvKzyYy6qvY,110 EFmvTRmRtms,133 AhAHDaOGHFI,132 FARSnLU-NJA,100 5cKRTdQtq5w,130 BCruokZzMXc,132 qNk-kc0XH4A,130 B7t6KoVULDQ,126 sR22u1bgrog,133 DvOrBPJGAnc,144 3-fzc0e4dD0,79 0Rl9Cxc7uZA,79 bMVWECam8EA,101 -nXBi-mtvR8,133 Til9ScLdyv0,132 uuUEqTKn5Ho,106 9acYlZC9RLI,52 l1GXJBIkb74,153 SR5BfQ4rEqQ,173 NjN-PLW521s,102 fy-PoYl4bQI,133 9nabHwRMjcE,132 guQnnPJgtUo,43 mE53H-ZbD7c,138 YAlZyCUJKt4,122 k8zDVhc4XPs,176 reJAzTE980s,133 0l8mYfrxpTw,176 RGl3Y1gvv5g,177 g0AMLVSBfSs,54 ok_8VGksYow,101 sdLG_FvIvtk,77 hrVLeHMpsDY,131 VyLZlTLEY4U,133 pGeODfpFpUQ,131 GhaxB8afkj0,38 M-HCaHXzQRY,133 2zi4N3_c4sM,128 uU6LIbi7NZQ,66 n75PgMSxAOw,134 0kqn9qQZdOs,127 X09M4YjeE78,113 quJX9XLQe78,140 L5-JXPcM3RQ,100 136NiOTy4Xo,119 g_U9jZQ54LM,175 AEa9kbnyzEE,151 XDZ_lSJjgvk,133 gJOWAISZDhs,132 8G40_afpkGA,132 5zInmil5iT4,130 ujxDA9VsQG4,179 2g7MZJfmBA4,45 WH9nsFQH6KU,132 meBbBnp3FcA,111 AJuIYcVnc2I,133 P3jRjtbkmq8,109 I5cS0_op1IE,134 L8eQ78agzQg,110 J215p0P-ieA,133 5DefW3MeD_c,87 4cJs-f3NC6s,93 OrjUfQFz_os,102 DJnKxIj_D6A,136 Cnh4Vr0UruI,180 w4iERLpYmzU,133 MAeQV2NBbhM,46 0cHePp1_EMg,131 WUfY9jgSrLI,122 hw6GwhfNl7U,122 3XeLFSaoyAk,74 j6oHprwdTeA,104 5iKhN22wsmI,122 QeoL6G4bW4U,101 7YdgPy21hBM,133 mCqrIptSd9k,127 5rivvvWeYh4,132 2v-VkDiUm0Y,56 NzbhbetwYFU,132 OjxvPz5T7YY,131 BqV0lNOqaPA,167 jSidQZzJfcc,168 qVhCNgct9JQ,85 JWGVdLHio5g,49 RfvKvTlQHuw,63 7b9sNVUPFyM,132 TrZuYfti-pE,133 wXf_eaQcSdM,130 AOiL4JRqh7c,130 yyYfKxW1T8Q,114 yoWz1IdoTIg,77 Naf_WiEb9Qs,100 oZePQEUplJs,192 2wy3acVALNI,127 rt8L4_lD-_g,133 KocHmCmLwro,115 uB2eggtlTfE,124 5HaKHp8glPc,161 lRd5iD73g2s,131 G0aJ4C7y9Qc,130 1mJ49BcUM3E,133 B6iOniIX5eA,82 74ocbvwam7c,180 sthFTs2gWeg,126 zWXZyd07k2Y,44 GUclZ3JhJoM,121 tlhxBAhYnS8,162 lLepw8cs6eQ,160 ykdrEYrEaZE,151 x1H6pD3vNwQ,83 b1jqSRnqLMw,154 nCLxHi2oZVM,145 LEDYzJazfw0,137 fGiaJDWSWKE,168 bluBJ-eeBBs,107 D-QqctD6nCw,87 vVTASz4W2hA,152 Bzd07cbr3y8,157 Hg_aGQjwjmo,138 zKSDHbVKY7Q,133 -ASYRiRflDM,157 KNO5Mhxm8G4,139 65yzqqmXs-Q,132 BPWhOdRSQ6U,128 LJAUOJDM88o,145 RqAmUMayBk4,264 oJuU7gvcwdQ,143 LWnHl2_xh4M,197 xVT46mh22iw,96 1afEpntCGXk,117 AHw_6AOK7bg,148 4SPwmO5wHjM,110 gL3mN-UpSyQ,116 ACh4ghU9eok,71 _TkhbfmrmD0,93 F5U5PKWgHQo,92 5D7JRwROZ0E,166 Cpxs390x5N4,73 mtuBqolFOVs,64 hwu3LxjW22o,127 mGpalRiltP8,127 c6TNgqIAYyE,140 8djvfSfVPO4,69 rlXL9FlYW8k,144 FGwRe_5L1WM,132 tjJPFWAtG4I,131 cuMmCpE7-pg,80 ay13eiuH54U,140 GgtGlyKIMh8,69 h3QK9udRbWg,60 DesiCKdiCDo,132 Urj46blH8vo,132 uKZQEDh_KAA,129 RSUmB80GqDM,171 ymZFsUBiKJA,58 OywTdKpHE8M,133 I44NZgYW6_4,159 clslrqHA26U,140 QhZ86T_nh3Y,156 xGj_wbPl-6w,122 sfVRk14aLtE,131 YER_g7jph94,117 BGWe0FvWW54,132 yw7tuJeWXlA,134 voYRf2GVXbc,71 a4DTqmln40c,76 zvry_GtQIeU,100 Ovp4lQhkIGY,121 2JHbw-BXN5s,139 aHw-fJZ7mD8,123 DtgKqQkglyY,61 vli6rJX8Xac,90 hrZxBMTQO0c,132 ggEPIKZuPn4,71 NrXQSp7Uz0A,133 PWeRWbuEN7Q,180 UniUFSan3Bg,130 Z92aHy9-fkk,157 AUqVNqZdqRw,115 _Fw6TuACCKY,130 SLgV3ynglzg,158 lqbzUCMEK0o,123 C7Y3b732UVw,91 zH8ZeRDlyb4,71 GPuCrJujOkk,130 06gTnB_5-Tg,114 l9k9_K8Tea0,88 VB9pptEqFl4,96 SIwi5PRNTfg,147 Chy1Cu5WOgc,200 c4ux2NclHoE,137 guK3fiVFU98,140 KIqqvICYqUg,124 pu0pYw6lG_c,101 lVMviKEztGw,133 DX8o_ql6f-E,74 OCDouPR9v9E,61 tfqqS90iYKY,139 QslzL-DhXDY,119 8p0YBrmfLyA,229 yThTYeRr5BM,109 L0yOTA3Wq_E,104 uq1JHKlUtOU,98 JIHGn-BwZMM,129 DAlyvQ1hNag,133 v96ND45Aqmo,181 m0gUcNGsGYU,85 TLNhcMerK-U,99 0vlBQqEc5YA,130 oIEtwZK04wM,187 PB5bvrhHFIw,130 BN4GI97RoSw,122 1-rmOabireo,124 7rTb-n96yS8,221 8xsYjrLw-Qk,105 yga9OU5yuKE,94 Ls4Ua-QtHYE,131 sh7lb9j3k5s,122 8_iFDOIkRFk,168 Wh4U2TtNn-g,149 yDo7fA8sAlM,132 h0z4HetQWME,130 RnWxwJxpDig,130 eh4jLrZ2IK4,122 kh62SjGdI0s,148 TAkyNyQBnyo,133 cR7GV9Fdkuk,256 5-kyVZ5swXE,154 BXmMRlQtnP8,178 NgSS_lMllOw,110 uztZUqKrHVo,143 V07Z_XYMnmM,200 aBgs1Kxh9nM,114 abyFD6LO05w,136 cb4dxubPYEs,253 yNkcLZ0BPuc,120 k87Hk4JNqGY,151 AH9_BGpsNCo,141 IQQDJahY-Eg,118 qPbOVPtdaZs,147 obbz_0P1wVs,131 yIGiGtjHUS0,154 aJY0vUsHL9Y,127 rJ9zBV97d5M,147 eOcimzsviFA,160 z-0rKpuvnT4,115 1ISntRHuJ4Y,131 waOQ8ECkEcQ,98 RAG1b0H8nv4,131 2G4Vfuk1dJM,74 JLWaJTCL_V4,118 I2gqWarrj-Q,120 Wx7IOoX7l8Y,148 jE5qCSOAsXU,127 jr8BKtgMJA0,56 XnEKbUbww9s,169 afnlOjES53Y,123 cLc_O-kQOoc,126 cV0Db20loyg,191 TdOMp1LuvJg,61 xXTuhmtvXNg,146 yrUXPvP3Gk0,153 IBRvIQdd6UE,117 3rFMyjGI4cg,139 0Z9Pl7oF9dI,210 fpqwsexDM0I,220 JDxlbYa_THM,90 QB4WFBsaeus,132 KcLVm5KkTjk,129 cDI9o67o7bo,165 ZreKuv4qWY8,119 GBGdp2p0T30,119 tp_djeJB9sQ,149 zdr-f3MZgqo,133 fNeCsZY7I9o,122 2wctAnLU_cE,106 2yXz1r5kn_k,130 LZhbH4pHMQ8,107 i2gVXd7FzhQ,202 F4d_PYyHSOM,103 7kikXTi4fFs,145 w8txE148NNI,143 peRHtqEZMLk,186 sPZ2Ukl7EPU,169 LcWRSHD3cAE,136 D0rFBU7pVL4,129 St16P31BURU,137 AHV2k4t593E,98 _dm0Oj_fF14,118 lu3fmlUJQsE,81 p7bpv3zs8Dk,150 vAd0QlUaIBY,123 tojv7SZkBOc,123 Z7VT-r3RB-4,151 rkD3FLsiUiU,125 yZLkEOM1CQ0,87 3CeKpU2WaBQ,194 ACdEiMqOVvs,204 YBmz0YGT2kI,123 7JICPsjLMis,100 8GtyX55FtTs,78 Tc7H9s4PdSI,145 IC2crLlclNA,131 ozf32hrXGiY,162 0wAtjDAyv4M,132 AXgHBzoymaQ,76 jF78Fs72X4Q,122 z__IAJ1Q9lk,131 1eQh2-2W_1Q,129 6Cz2mIx0y5k,126 FPDAxknJFW8,143 E6gWFTv3xE8,143 d5MJBYofzhs,96 jE5w-Jl5BSE,261 uVXQWXpXmvc,130 yjMXMAKF-Rg,140 8X26PR7abAU,277 26mzWqdJnis,173 zRYmoB7ayDU,108 TCrV8NUSTsc,104 8_phNWJu9BY,215 9cR2Rh00ndA,120 KmlUAuGhy24,170 AdGVl3AP7fw,124 rbFIs5-Rn_Y,124 bVAiU6Jp4FI,107 IyT1ogi3fE0,128 LyszyKhpc88,116 ToDDs9twuno,120 P9clz3jnMVo,129 gOJJm_cSRds,215 DLf5iJ2jOZ4,123 XjjZyyzdOvs,131 eTVHMQb2OyU,100 bvuDpEE2MQM,131 7m3Mv9f_P1U,127 C1zseVrJQLk,161 _epn5foR_Ts,116 4pUPYVW5GWI,179 7GDnbK8lTYg,133 8FX2FZ0fFlo,104 92h5_0bE8Nk,95 JSmcnUcLVHA,129 O5s3Oj2cPgc,93 TZjB7MW9Q-E,128 jTHFCMuIrzQ,126 WQnv22Qnp8s,118 Fyd8tAhnKig,131 59ZImWWRR50,177 V1dPrmENIVg,113 Il1NzkQ3rYs,132 LtkstS3KlIA,96 Ysdz8bIuyWY,123 mKQYPa9Onac,105 LdHfwFIuXtw,172 BV1Nyf_u1AA,158 Paut4zNx-3c,203 lVmwqKY9BX0,137 WOLfIBsXq4s,74 vZ2jwhdnmw4,172 Rn2__xGApzQ,119 T0StyKPJrNY,100 JIfu8g9EUzo,133 MoJqPqmjxUM,121 gjliVll3Uyw,90 a3uqv0eP7Tg,194 SeqT3GyDb2k,49 BYh-iVr55EA,115 9UtRH9enIUE,104 iLgMFwStTHc,128 yfYKkvq5dow,104 rKjMBYlak2M,132 rZsLiY_Yyhk,116 m8Mc-38C88g,188 UwslgPscal8,133 N204ncRytIE,99 Fjl9b_vVVnk,118 QpoiFakmREc,179 zTV295EGtOk,133 r9ma_9tM48k,98 HcD7driLtCQ,83 g_tQ__pEoPs,149 48kV7uKAzEU,118 YJLeJG_bG1M,187 2ceG37UZvzQ,144 TbgusehY_sQ,177 CrFsSJPnHj4,118 AFBqbhNngJo,153 B5D_aDaMqkk,133 f08pzusjWTQ,138 8G84xAalZiY,122 BI5u7jAxIjo,133 RDdc0-JD8Dk,119 dv_26E-a_mA,141 7iWEk7k_kio,185 PXn6o5uTfEU,133 cpdt1EljZp0,85 R4cgP1_M8ts,90 t4fqGbC2mQM,144 L4TIQxyJEcs,160 I2ci4vKm_cI,133 RiOhh4AG0rc,126 y3wTKua41bk,113 TDCa_16CiCU,116 KXo_Enhm-xM,123 OL0I-Tf0QRU,87 7kAoU7bwDFM,124 ltY3ZLA6dA8,133 A6ZOCb2gaqs,123 kNOz8Bcb9v0,57 aIZsVuaUWB4,159 yQAICCf1oug,111 x0D4unitqpE,132 cYlCe0SYmWI,160 De-dBcPZlIM,204 TfeZeRIdyNM,107 RNMZD_WiAvU,148 Y6uj9ZZl2LI,96 hTOzxqecG7o,74 QsveFtQaP7c,133 x1dA_SM1vxE,116 5QFPjo1DGE8,164 BL-d6jqZ858,126 OCV4kaP_0-k,143 hGuXSd2s0jI,108 UOYi4NzxlhE,133 UMjzEWOWXk0,148 WJOL4xoamoQ,100 YeNQ5WEKggc,131 hRoE2HRnpkk,128 LCsNRcdlAkw,125 wAadouGkwMQ,131 EgsFR3Y5XB4,134 6krgl6GpIbM,209 iGAwKHHaRAA,125 XQUKOgrir0A,139 I3GuNWUhXDY,72 _nrXdj11-MA,133 8Ad8rMLFcRo,164 dBal-Rb366c,125 3I0AP-HwDnU,96 2G-BNvZvz8I,86 Z5Hmi5x6JA8,136 clTG6sYtJig,91 EzqRc-RLJfU,132 R-chvFgDLnM,199 SiLFLIp8I14,133 13_ffd4CiG4,170 0MUWDGcRCOQ,148 aWLRULhIyCE,142 2aN2OU0pk-Q,160 3SYMh5owQcA,138 4Zb-n9MXbPE,235 pdYYAu24yVQ,121 45RmWBZsU1Y,143 7ikLl_nUM2A,153 MRCXvZjeOx8,163 26ISV0QFWPU,101 -R2UHh9T0ck,90 pDEJr2Sqhxc,65 MXM6Hz_ItMw,81 D1hNiK3YZ2A,143 _ysVoV3x5Zo,246 3IAUIQJXHUM,150 H63L0VBnCDA,105 mbj-OpDla5A,125 vsSTRzIow2c,80 OS8NUnMpllc,118 ufF5p8VBsVk,157 RmhSgZ106Wg,108 LjKZiPNHRUU,131 HFbgT-GSYhk,131 cKw1b2-4aeU,141 XrvB53IDIqM,120 C7qekGisCs4,135 6E26ye_66xE,138 -WBeglzkZNQ,180 SPSP9BHo1_c,150 6J4faUNOGuI,74 dAxijzivjlc,152 w2T2xsIYH0I,135 HFUCwBt4pK0,133 IQ4Yt16z2PY,106 EPCFcnp0R3M,170 iojZt-Ht4Nc,119 xcYzjbIVlX8,114 k0XGlpR6iLc,110 ZcjvH_shI5I,159 lJuxU-aVeT4,118 l063S2tqZSg,157 In9QzIAgiFE,119 6cjNvLAvIFs,172 v5qwMeiEF0M,133 lQbw0_5O8CQ,142 QU2qTjAFWKQ,117 n5PnSNCFBYs,85 fEZuzz0KmN0,131 S3dCv5aTB2c,85 j_UtDuZaeZo,172 GWrQ2H3LhI4,82 OEw-cBg0lJY,228 QTHImytcib0,217 BFkcX4Qi11g,133 u8TwN5M1fEY,104 qDAFxENuoCU,118 XVNNkjY2YDQ,131 VAh7ZGHEp-c,132 Ic5tk6Afu0g,176 XLk_91MKjgs,125 UneHDzMhbbw,132 kPSk30qzgFs,210 ktXm7CRXbsE,134 ngeORuhnajc,133 1AZuIPGAQ_s,129 S85RSn20wJ0,107 zn9pjQIMQVQ,153 0E4d_pXA7dI,67 bc6k19YKBN4,109 T8X4r5X9c-Y,159 Ky7rHZmk9Yw,126 LtFyP0qy9XU,192 rpdnpip1X4A,137 lTWY11J9Z3o,171 3GcQp2JJvv0,125 xd7SESj-nfA,116 CQtbqB7NcXc,53 HM1U0PSGMn0,109 4xBY09_9H6g,172 ptBGusJjkTU,116 jTFSVXpq1Fg,133 Y4yQoJ-LBVE,130 3pdDB7-UcKM,118 gKmsNU2CWo0,131 phWjHc6hsRo,57 CAYHD5mAsfo,148 JMpTeDvOnLA,151 yJUGxCV5OiQ,75 2A60QcsJtlE,111 awHrfxqEofc,129 jU6nB-uJh68,165 uF_721BvdJE,77 cWuFfrettMY,96 DsGsRazwHNc,121 ky1semsHhAY,133 d9K2p6NtV40,133 IwC3OUA8_s0,55 oYDde0u4TT4,132 b3uEOvtuMyc,128 yPHYjeHk1YM,153 7EHVvWxKKro,138 utJWIjtBBvo,65 t9do_YtNsnM,56 ypvzo6iiM7M,203 tJLdaKUBGzo,145 -QWL-FwX4t4,119 3UjujuY8fbU,144 4bY-bFqj97k,124 eqQtfjs7YGg,194 Yh7Qz4fiKxw,102 hn09SKCZgtI,132 2H7XknY3PMA,109 YUSxYNj_kM0,162 bwTe_vZ_2dg,115 Q3gK7Oe5gbM,91 ay1pxLNtdxE,114 xwN0ZIe-cG8,68 aKUcMTQgl5E,86 yqCFtEZRFPE,153 SJZ_LT4GwQE,178 kthFUFBwbZg,65 nlOF6YhAoJQ,141 QCrKGjDt00c,104 JMmp4T6mbkw,101 HFZSTBmWyd8,136 G4Hwsz1sQmc,149 34_4OMd4I2I,177 KLYlTxCTu20,130 -yvnWPZy1FQ,113 fxriLTLhyyY,151 TVtvBoELA-g,126 UkObc3-RKYg,76 ic_89aGltSg,147 oyYuYNnSq9E,114 1ve57l3c19g,133 K5xM1SxgD6M,127 FpKhobkTOyY,134 WriOEr0A1tQ,157 juw328OfWnM,90 xGGRJg-EzoI,143 847dUNGFwsM,130 urN3pAtiXdg,127 4SCJoMT1FCY,144 CkNjOs-7Sv8,138 jgOMHLuBup4,111 Y-YsM2a_N5Y,105 jWt7wiLImmU,107 F_3zkj4QVvA,136 nkQAhpLBok8,131 TzAnOnVKwzk,130 cCoD237oWtg,128 X5SaZ8EmSpw,131 5oe8grtUxI8,141 DH6S0wKKGBM,170 1NfrTfIPl9Q,118 QCTgWRNnfZM,132 E90s7ZR3HNw,134 hdt5QAIC81Q,166 8NSR7Pod8O8,211 5XuaulOD0ZE,132 QRACf_ehgis,143 buNwwAximcE,113 oJJM7GnED2E,175 x5bONeuC6BY,136 dNwHQsv3tgE,132 F8RkAzAX2-g,180 GcSfbaac9eg,149 F7bAUwj2HEs,131 yr-HmSz421c,125 XI12czsGYRc,126 AO_944kf0RA,127 GvRD2YqBi74,187 fO8-yVmcQCo,208 FvsbTxZZgxM,93 S0_2LuMWicY,124 anQHZRrZHYc,133 JQAyLEhEoQw,239 9NKu_Kyi1qY,121 IRMNacEVuT4,137 vqgb0X4uuEw,128 ocVeenCXGaM,109 UlT2oHT2RGY,153 DYOqsNNCOLQ,154 RZ9Od4LBqDg,147 s-te8zRj4WY,90 vKEWdfB8yo8,195 -0f67QE-HP8,190 lVsH8dttw4I,127 WqyvGyBJbcQ,120 qYxJ5YvIJX4,207 hm9ZzMSoPB4,70 0_aAMNEqylU,164 w1iNrckWufI,146 A6zqLx8tii4,128 fU3enCcXY80,132 Qp4Vo2bMgJk,52 rGqSj0MA4eM,130 njPq0Ld041k,131 Cbijjb5aLYo,148 8MnF5ok8llg,156 iaIYk3DZKwE,107 VmwM9EXyczw,201 _1A33xDs0lI,143 a75Ywerim8M,84 0k8XW2V2dCg,117 BNxai8Y9IXg,133 bXtvpRR4VbA,128 ewEreSjPyC4,82 aAg3LPuwfJM,137 HKNo8yzXxyM,132 Vtpo8d2mME0,97 8bAvbwlCsHU,133 stoxd02ubG4,113 fgp77jbQkW0,98 YhYn-b84MvE,190 VRxRsbDfLaw,103 vNgB9PxOAdI,87 jvAZ0bjChvk,112 6HXgPGZcXe4,154 9lORsaux9Lo,133 ijnfTK6LgMA,141 a0n9iFb4i70,134 mwa7-cCuwCI,266 LFc-p5H9AJI,140 FVoOLRhnkYE,58 tVBVeXfbo6k,119 f48wH7l3c5I,130 RAapNGRfaBI,194 oISBveQNkzA,139 Ckem1kbmJdQ,165 H-cxAVTmQ0I,95 BjJxoKtYj_w,110 Cr-WWckkejQ,176 f6DDYCf80hw,148 cniwN1YsUW8,138 -n3qpOM31Pc,128 ujwZug46-tc,182 FaH-7N7iRjI,63 3jBfvv_lBEU,95 dKC2CPS9AFI,130 NkaJFlr5Fhk,207 gQRANiw4JLw,120 4GraEwTsqFs,133 vT3kQdSXrMw,132 xcgOzHorYag,135 iK6cDwd3yH4,102 E_UyAj2V4pI,132 2P3uaREypD4,199 R2zNRrOXbPY,192 r1UKhlSdV-M,131 cP7WEGuVwig,169 VY4Bo_Mcws4,135 Lz-ihW8RXSM,95 2nhZzcQBkp0,142 LvtFcK8BaY8,124 almVKV4ywQQ,149 bUWnZAFfxYc,207 Wy3IoFyvWOs,243 vs6V8EILM0M,118 At6Q3fUFU1o,126 1_7FYr4JsF0,123 YDuDd4tmZps,145 MOEy-Da4ra8,104 H3h2opMD6rM,133 EubG9_KSoGo,139 qyMVXU7qMGw,144 BbYPFSGnPZs,131 LYbU_99u22o,78 BXa-BfF9qGc,124 VjdgqT_xtEo,87 s4KQbOrnRYs,183 WDq967Y_e3U,124 w9SWbpW5bNo,133 R7f2TkxM_rk,126 _ZHytX1097U,131 TVMg2iM-XQg,150 oCq7TUmVmt8,141 p5n3koQZVDY,175 kM781iUqdrI,132 -TuZo-mugDw,188 d4MZPbERTFs,157 tx8GFMF8Pd8,128 kMkxtj-mu14,133 uVNCyp4Verc,118 _Z-tCU-sULA,125 oMvMqeThVPk,82 hc51ExPQJcQ,136 eCu_yXPkwGc,152 GukkVxrTLaM,117 sRPTqsO_SoM,136 1nIPSxCzfVY,105 9uA8c4XGVxk,138 cWMP0aAueQY,151 BahgFrLFgpk,123 tQlujXWP-5c,125 jXqcrXqphIo,128 ji9C_R6HLvg,137 tjSf6v-dztQ,100 vgGb9tSOKbs,123 Hzv74uI9Cr4,133 NzzSr5StuCE,95 2V6d3f8W-oc,157 DkIr_I_E1dE,110 4nGA9zBslBg,142 og36vWGn5CU,153 LkimMjwfjrQ,164 3iZIOZrzbYo,132 v8KA0GieSoE,132 IfNhqLwtuA0,135 iWFpqo0_43o,128 MNBd97oTtq8,131 vpir9eGi8Mk,167 -scWJO2h1ak,180 dqbddxpASRk,92 Mlv16s4DxwI,158 GTqz4duPdYQ,142 HB7ienz0_IA,170 4NLUpuo3HGo,85 sdea5Iq5D_U,217 7t7gG3XVqW0,133 2Owa3LiOrOQ,88 gI1_6ob3hio,136 l1OgTkhFJn8,159 b9KIXCf4U48,177 DoKxkx0bYRk,133 ns_HTpxc-g4,102 THFVJBcv7W4,151 QJOXvLGYEwo,184 uIBDomdpK7Y,107 Xv_qHFUItVo,132 aJHRyOrRnQk,193 SHvBT5RXeeA,114 9WpVeYgwugo,137 HO6yGAV4G0A,150 qWlS0TrvHXE,154 dkcsqI6hZz8,166 3SIsMAk_Yhw,116 Rq4ucbgrV6U,96 _nEWjcGHLJk,78 _83-1qzRNpo,141 b_W5rtfzadQ,148 r1NHFfwmJZQ,119 XYVKWFL9irA,135 A8PVoyIiqrw,118 zT639dQIhck,177 SU6tW2cZQeI,233 aIekhk4NDA4,133 vE3T2n8wX4k,133 9XVy6vDxQDk,74 zCfnEpand6k,126 CVs-LAC1zrQ,105 ElyptgRxg0M,180 7LBM8BX4UfU,96 ecmRksfy--I,56 8PDbRr_7bI8,147 U0FBVju7fVI,203 RotJK471KDg,93 _zxlffOr1GA,112 LVYMePfXin8,157 GUoa3MFLEO8,116 NwZlSjkXWnk,112 BHZKSYLAecQ,186 dzkjnPSbxJw,120 wdrhl_I3-E8,149 KCbte6Zhaqc,102 i0KnbzRHwaM,86 _gb6yX-Uiqk,191 eSeYw5yaU9A,106 HUcO7rqSLEw,84 6p6tevRcEXY,99 CQlI4zJnxho,228 hHibPPRQB40,118 c--eNhRG5B4,132 JnXCZbZipJg,106 JPbkeLf4zU0,179 cMWSTAEs-TA,178 pbd1pcdHRVE,220 pKdszbbvQGc,153 Ed5xIjGdqb4,181 mvWdOSJ7l2c,132 P9fOKOsEX8A,133 BZVmJdnVVBw,131 KZHIVNGrtLM,153 G2SpqqxJiig,133 tUZYyuHIbJw,131 QNWXsYZWiiA,113 8ypUiGzOsOs,133 ve1Brtly9Y4,126 BLz2rixwPpA,127 emda_fIsz2o,179 ccyTJYkiGqE,101 M-_XQTwadHg,152 nuVzF_r0kHQ,105 i1jS0AMWtgg,163 5ZjdYG61Wpc,130 zx0PxIdo_pw,103 PNRScegrA_E,127 64Kac5hYLBM,109 MjC0kVIUGYU,112 AGCDh4gBj8U,171 C8l7cD_YI4Y,129 Tv08VahBEBg,131 ag14Ao_xO4c,150 cUEc9ZF3G3M,180 ydYaph8BQkE,127 KhAtVQuAjVc,88 _33snCsG6nY,132 WSoMlpQ6yz8,130 CBP-t2AJ8M8,132 -UuYTHwZbOQ,247 zKWgTSNMESI,152 a0dkF8CZxks,157 4L62b92Prk0,64 BUAUwc7g_gY,155 4Q8CqPioUFA,122 J4Mq0xr4gwU,72 rEAbZTpV47E,122 ukTcTd6wUD0,107 CLAepDJtUJU,89 iReLGcSZtwI,114 LUe27-RMDX4,171 wRNOxvIxMpk,176 rFPCkGmuUO4,127 AhH1Yqw-gmA,179 lO8EJQzkYxg,132 oY0IQEEQ35g,154 d_t77ai5GEk,131 YRi3-AbHXbU,71 jmFpZsBB53s,121 tDpyGID-qHI,111 HieAi6H3Gxs,107 wavVceonMJg,178 q40Kh2-q6X0,161 W91ITNEiEF4,107 W2o3KcKAldE,113 sx_oR6WXO0I,108 yYCW5Eo72VU,97 5-MjWWLPdqE,139 aeF3Q6eTU5k,128 VKE_B4jMF5Q,130 HAqKJv1ndXo,184 f3mAVsy7WbM,148 WofqydeWMJI,131 dzO8DzLZAuU,125 ettu4zJOh3M,102 R4ODWXEmvKQ,115 AuF1AN-ugM0,189 DLyLE2LUpOo,119 tc4zPfUtP8A,78 LLrfSeyGCls,179 0WY4XiwS8Lc,102 UqStvc107-M,144 bXzp-98u468,98 EyzSRdxeqrU,106 3FG9eGmAPeY,144 hbki4pbNi10,104 LWRuMnDhCy4,129 QoSE9w3o068,128 rHwc3Jc9rD8,117 sjPnuqcrL70,127 nuUuXO8D9mo,99 fhsngAtICiY,132 LEQNosAHrD4,118 tCtZfBVS1Tg,108 8kmCFBwTmGY,128 -oRm-YxsEH8,133 Mmcr5WLNtZA,124 sHTtCAH7l6Y,123 Lma2LDjYf5k,140 eF77Id3wbZQ,132 FgF-RJYNzzY,122 4gehr6BLqRU,127 ITN9541Gd8Y,127 TvSS_-BohSc,151 YlAmk5w3qZw,129 Tp84-New5aA,98 pVzqfF-qwlY,116 AQa015gBmro,66 HbWxE7l4F3g,157 r6dLxmPng8o,133 O66m3X5mYpU,128 M5IO69jDb2M,129 QUVXO7h3-mQ,114 in5f7RMtnoU,126 E6W4v8DYh4c,132 -w4bcJF68u8,73 _2EQFo-vIH0,80 nfC8sEnM_5A,232 Bp9AClR8qCY,116 9dnvta78Oc8,223 TmNPJTt2ZsE,121 0HSDU71_U-Q,132 8b0SHCBsDRM,100 xZw3A072F30,70 tM4qhFW0FPA,71 b1s-ewwrpQY,192 xoRXgE6j9po,169 ygU2QenlIvU,118 ySpuo4tFo20,150 lZ885HzflVc,136 Lxfe0cKOx3g,211 NcmpDcaWa3c,124 BaccIrZHkno,98 8gGPt8Eg5lw,62 5RMx6st2-js,172 TYC_FD2YXro,95 2N73a3SRqyE,132 WTtAAYgzMjo,129 EWvPNbC9KfQ,127 OkrJTqGkSWI,168 qb4e_GJzmrI,43 cr-rgM1-wXs,140 uuAGxjrG_gs,79 F4-pp1JORFc,121 djIvmaYI9LQ,131 EUC3JOXJBYw,123 0p1fLn6_ExE,90 rft59wPnoqk,149 MmKjw9UGi78,100 WrQdlQo-E5Q,118 9_ouUNFC5AI,67 BUKTDsI9Rbc,108 s1hs62Is67s,133 3D2hC2C_Wpw,73 c-NDI-HvYd4,134 01ovMSvDohw,109 kO0kWTR_7tQ,124 ybbS5_qlkaQ,133 71GRwoL1tdA,145 AV5hAxICHsc,179 Ls2be_G7bHc,173 3daIUo8UtM4,76 GM0rZv1Lii0,124 tp-eANZcnVQ,209 xwMMpJ9EWmE,156 XFoGxUA8btQ,114 P7JKRDjM_Vk,142 pjmRcGHqKZ0,91 2CM_ZbYvMDI,41 BXloUAxs2wI,88 poZubOWaras,116 euffalJGKn4,130 SpMvmtj35y8,134 fHiIfSLjJE4,121 55gq831fmzE,140 _qqw8iHQASs,144 DwyqcEjMMI8,202 iImMlbzg5Qc,132 qGf3--y_rcQ,150 tfsPfimgjFU,131 dtVoa1vg8qk,106 GU0BYEZb-Xo,146 XUwybDr5HlQ,114 FqJJfBeuxUE,133 W1KhvPZmTgc,102 n39lwOfvb2E,160 5rKn9BNhQ0Y,189 NCh2VGy8AR0,133 0HjAT5lo4Ts,131 ZCYbGGfwbfk,131 X0FxwPfYz0Q,121 LU1A0sHWYQg,111 RYlKhpi--QQ,124 6CwHxJUF8DQ,100 LqDoPnJn9vg,122 ZEshWoP9if0,100 JuKhaVdSGms,151 yUXdDmn9wP4,132 7k9bFzgXeXE,133 Xr4ZDbix55Q,185 bRilciIycJQ,97 hsIdl6x2Lck,132 _OzammfDblc,162 EzocwDE3VK4,160 V-PNT54Z2ig,105 9ogtJYnjD1I,130 al5NvjTtyTI,265 OhH4bYnAdzk,92 _NhQKmjXz7c,193 e1bMBM_rgwQ,77 vVzx25uDVaM,133 IhTgiNhfF7k,143 kzGR27NzXKA,132 TArcc_WduhE,138 2oWgJ75kqxg,114 RitnM9n0jTY,128 Vsx0zX06F_c,179 aJoVRUNmqIY,135 MbbKc8GJtFA,130 AiqgMdj316M,134 W26hbGkeEWo,103 SG7voVeJRC0,149 k3yUlJtCkJg,179 VFPAH3uEo_A,76 ifDBVFHT1DU,175 BBdShysGs4Y,249 spI-9R3B6zk,111 qw34BbyVK7c,168 wUPc7frUlD8,126 ViXH47OcqYA,100 CmKzzu5ELHU,131 y1lzIInBQOs,169 Z-Hyq9A4vXo,120 M96f_K13joo,128 p9BRNz08eUs,162 BRV1CDa5_Z4,130 dcKdr89ngtI,147 U1usNHIi-L8,108 u0wNMcfOIXM,89 3zW1STojfq4,154 EmYyxwO2IJI,124 sy7Lx7jY2SU,151 Akr33uOKP8M,132 5WnobKuNaO4,128 eIvl2bRW9S8,125 WBuXu-20LZs,142 G92KKZEiWy8,81 9NErcOfza10,132 PFbxA5HjwyQ,165 J5nmxHjPuvY,161 gUccqktilDU,111 9d8VhjIG6No,142 HrK6dbGxq-E,160 TMvi9NJlv_s,123 4VFhBMwArqs,122 8T2dOyo64Pk,121 Jx401J_oG2I,119 er6wSXJC57U,127 vAalnLmiZrc,123 GVjV1SKLJ9E,117 nEJKLKKO0uY,132 gfF5C7j-2jk,129 CuAXqRNpFdo,228 3agyeKATELQ,148 cqZVc6GtV8A,91 aMwqijj857s,83 mx15l4L4Zlk,126 ew5-ui5CvJI,127 AB7mSGjpn8c,119 sWEvLBzMpYE,115 FEWZFq14JiU,121 oKWpZTQisew,169 Geneo4_3VbE,68 nDKhoXEpIq8,131 8ExIPKUEZ-4,176 1YXJuW9MNGc,230 371S-YWcKFU,146 YFWDhaI6BqY,197 L4x1S9WYV9k,75 O2VkpNsOM4o,128 2tcG49k5vdw,125 M3j9drozqlM,185 73BHmDv4qYc,106 hnXqavr1ZMQ,124 4ln7gkWQXys,176 VBgDKUVxAyI,130 gozRrRCtj6E,119 NJz68D8NcE0,130 t_NZNgm66xI,132 TFrdPPdwY2I,151 D6_ZC6BywXs,180 qUwfcycK5X0,132 EYO__x8qn2w,133 -ayGBx5Igyo,80 noLAdkr7WzY,110 q14F8WFr7EY,198 mxgE7XEbc48,152 mokXxWsIsWg,156 SRlmBs7EwMk,137 AFXFoDiTtmA,114 v75c0QugkBI,130 7fOYHqR2Gyo,122 buOVuDwsbOM,143 IiMacKBYPZg,126 EI_QlYraNl8,99 DfSToqJxCSI,133 eApCe2z67Gk,163 FkoI5jde2es,177 7X47UIYChis,141 JEjsNsrZuHI,119 BcCzxUMcrVc,121 yE0aTqijR3o,133 Mnw2rmLB4_I,169 Gtg2d74VHH4,128 Lf1ORGBLKtc,108 XF7QaSY-8lY,179 a_nd6odxaHI,130 Os49ky9Aiqg,253 OOGcesOHlDs,124 nC-it_V8df0,139 5u5ixEyjZng,148 ymWU7EuLXNc,126 QgYPzXlF1xM,117 5-Al98JQSUM,153 tPJ_rBWLOxA,133 KSOhzWTWuxA,63 mTNkmMUcQfc,133 x4CEkYJNir0,147 V5U2yhrsXv8,179 8svIExZz6Dw,129 DDwsfoudwuc,133 MxlTo0BbQlE,169 IMF8PvqFN-c,113 uNqwzdw5uKE,148 E9v4TSOvOIc,224 bzRIeXSIS_w,196 QCXgvx0vPZk,180 5AAni-jpFaU,133 mCu3uKNGuZw,120 ynZqnGTUHcM,104 gbPolHxofuo,120 O2U0qOzibf4,189 eQBlcP9ENk8,132 4_zn64bRf6Q,171 3sr3yQ4mGbs,130 4D20x3Pfg6E,132 7uvW1U9UXKQ,128 hYNYTcpIDSs,133 L3eM2_0KE2A,132 CgHWwYQ3XSg,128 A7iVMwpaYmk,84 eXHdqulNiBs,162 VtnxXJy01ag,132 7_AiHZa026w,122 eCyr2_QTNVc,276 p2fHtpp_umI,121 0Q4cKXYFIxU,124 fv34SxLog3o,123 VIVMDMDxnQY,97 1US29KtfPrQ,132 poQL9Yw2kNI,113 rZAnSJl6VKA,136 gd2-0TMNqZw,125 mgr2tLYYha4,126 PwuTr5z4Bec,114 xsNboBgmN38,193 2gKXgAzFV8Q,115 jthkBksMaXY,73 WlwLa7Jh3HY,150 euvUARojiiI,139 NwqIdPSNr6E,93 8LbCb592C0g,118 lVg2pm0YdQ0,152 IziNmIErmWw,132 r9w5dIeVamA,118 OEiioh2L3jQ,131 SQGwcLUuQUs,132 Bt_VjoF2lGo,177 XRxL8KW7dbo,173 VSiiYMgJ3h8,128 09MjH5hbF5Y,133 QaKCmtbKf8g,127 iZx1W6cHw-g,133 Vn5ilm1jMgA,90 TC_3tiLJC8E,165 lmDII7sMIF8,104 v98Rh9qzmPs,187 CU0lA1M1_3I,131 gaoMc6MgvNA,183 iD3pUnlGJxU,157 tteCp4cbON4,152 XmGKlWjQHic,126 ajj5MxJEJ1Q,75 EdDMvB9Y20o,131 FSbcZ85iPvU,128 IGlBlA7Vr0M,133 ABW5RN51NqA,177 Vkrb_0DiD4E,88 5Gmliz8GsG4,63 mVzdHEhC8YI,178 zyIccO0lXiQ,210 q3LxjwTz-b8,118 AiaIf4aJgfE,70 buH0CUEx-_Q,109 YbABtps7aY0,135 TdPu6sQ9l4g,133 bjqjgoiV6BQ,131 kjx9LAJ6Wu4,114 wmlNvVvfXNA,94 jSbmgZG-0Ng,107 vTy2bx3jmrs,133 CYP38A-nwLY,235 l65KNW2ZGV8,129 O7wmAaT-TBk,109 GJgKIC581V0,133 DwbFUmWjd3g,97 mW3KEJNsT2Y,146 DogM3vTZsuo,154 7jO1tzRBFFw,102 YGenu4ZFnmQ,215 rsmsMeT8EYs,127 6HwzVqcNaSU,132 EgIkHYVwNrM,64 n0Fz-ACCMHk,120 tCDZOw9BoPU,132 xhhfBsq7qao,164 EMta7CcNgGs,124 UcaPMGGla4o,151 s_zget0Z7Xc,130 M09CkmDfntY,142 v_R9dxNFKWY,190 GBDUy8au-_E,131 bXq9Pa9Txg8,133 xW1CrQu_H6E,162 Lva7xOJRRCA,179 r8759Q-oR3E,121 yDgZEL9-ITE,148 E9yuGEux_OI,260 vEfhLwt-8wg,103 wEvrmiK_WlY,133 kBgO6ctmq8M,90 3_dOw0UilDY,167 ZiGf0aDV688,131 SQj4HtDOjkg,139 X6frLQWOSlQ,131 LkLvZZiL3Vo,128 FHSwbggymEU,126 TmO1R-GqD50,92 bMemNwITgjA,132 pwlgVnituhw,126 RB2mOFx7jfY,102 kFa1DI_4vEs,129 4-Ml8OEXLbE,169 LI0o8Nhig1Q,110 F63pia00pLM,177 MeQCLsUrCXo,80 it_WqpOBfWI,181 OC82kTAQZew,184 bFWMtZmjwR4,131 vMyTIoLhoZY,48 ueR0lJzIxWo,148 _YYmfM2TfUA,164 aK1r7tBWnro,103 hdhW0bChQwg,145 4NKk7BYl0Rk,108 z4QNCQD7LvU,87 lRzsGDSofxo,133 cGgPJKE_jSs,95 P6PLrI4R4x4,102 Boi5obDmX-g,68 UXjZbdc79dU,126 AIHlnQOkZiU,134 tANIXMqv77U,175 o8A2gIt799I,130 lPJzoxKtSxY,115 cQHAH3t5oJI,238 mD7NPkG9kwg,130 qAdNnZqKGiQ,92 -nboVp_nTkg,126 VYZmHG6_7Rg,133 3P4LUt0qcX8,202 2b3mwmOTR3s,142 nVpfljH55TQ,85 GllksI139DM,66 jnuQMlB2uyw,177 XAORGJKfEcU,204 igD13c0l8Sc,127 vMwPmm9UmtI,137 7_WoelQbZyM,143 AQaOCIrb9Fs,122 gUjOiNR6HWo,124 CmPZjdlK3Qw,154 S76IuL89zVY,88 Ux4y_2RNi_E,72 HSJRevnIGww,162 k7WkN_gPNaM,198 qLGjjHXyiOQ,155 Jah71XURbIg,126 ymA7OFZ9lF0,138 buVMAoBMl34,120 _KpfRDVjsKI,126 mXwYp2IwFFw,113 4vOQu8rERuo,181 qDYuDtyvVVQ,106 GM5WI4MTXzc,119 ry88dGpJKZk,165 6m5KyzSNu3s,205 04tTXJeE8Gg,138 HPeiybjTy3E,70 6cwTpQj9E4U,124 0p1OYPs14T4,117 85CcD6t5cx4,147 2p-FeYouCx4,101 USLznFhxNF4,202 4KX9Ojp-yic,118 wRbKDoyN5oc,128 1HfdZj-RzI0,129 zGrIGZifpwg,50 EC20KdIDiEY,120 x-HRlq5Oldw,147 8XTt2uGxh9E,131 KvVR17L6j0E,133 Io8nlxyMTd8,110 BaSoze4fhGA,133 gMBkkaB0pp0,88 tvaROfCgPPE,157 fjnGwAftnDE,131 c3zRfKmcqv8,133 0uYmyOuu5xs,132 y4nFzow4tLQ,65 4EYZfAO5ZWs,155 4SD245xSSVk,137 GhisL6dCqV8,217 A08XpT2q4Xc,197 CdMDIBgp638,131 qyj1tT-vqSQ,126 DLFB0sj-xkc,87 5XWG3eNY298,214 EYoO_t1M-Sg,162 Q1f_3XxcqKc,115 YfUodLRuU-A,120 Xvs1TPM9g2s,144 adFRKm9ezw4,182 gacB8xCQ09s,105 gN2ZP-q_qpc,66 yFX-95l18ng,224 1L-4-XQYxrs,121 b3lLWO2d7b0,213 NWO-iP_Sbtk,96 hSAx87qd-fs,120 IKrh9Q6RU8M,245 snqs566G_Zg,80 FPyap6DbfHw,120 TsGOIi6JI1c,112 m5Qn-tIKwD8,133 v14aCycvoYI,179 s9IqypZYH6A,130 ZsL0rDZPGb8,132 nIAzIbEBdeM,190 rU8cUBCZn9c,131 i5mSHPKEbas,133 JVfMbJjbIpw,170 RyObt_1eT8M,138 dEfBtVYzWks,94 PSNqibKHIys,167 qHD4H60rCfA,174 DVAIrYCyB1w,130 DicBrlK4pEU,135 ZjC0F-xFL5s,87 lyrv1rNWg0o,179 0UrClwjpNA8,171 tDVlpRBhtWQ,94 Ul0qToCSdfQ,100 AdaRb_fg8dg,137 kq-GLDVKqMU,122 5hete-GzD9I,138 aJSh1zkPEvc,186 C_L23E0FwCs,97 GTRAmbo04JA,161 hQogMjsahWU,133 iiMNb99KaYk,144 PBAzBWYoR9U,185 1fNnMtn7BiU,133 Vjo0hn0kAvY,124 KoxDD5gYIYk,131 UtS2awRAf5E,108 xdQyp5ewyew,165 zm2fF6nj6W8,131 3qp3AeWmt38,228 gMIvHGdpQpE,124 XUxsLiSEi9w,156 3bqc-TIPv4c,133 EVPxub5VJMg,126 7y8pbljhMQs,153 6l60PJOMu3U,58 qsdgNxuhPgc,132 XX8y_mQIewU,140 gX57uKMrxp4,133 7qfgWGJpbgA,116 BHx0kYdl9Nw,252 26cjR330Ceo,130 jVsXMF9sbVQ,131 hML3kvOUVZU,108 mb63Ds-XWQE,195 v4P4cS5jKmQ,198 U0YkPnwoYyE,139 oUTQFpVOWGE,263 MIxtdrML0rE,179 CwBH6g7UEI4,132 O3bTMw3bb5o,136 5ijEAMP_zW4,137 jj0765rFtxQ,163 Q92raMBaQ4o,85 Rf7NrtrHs1U,65 43DN-b_k4ZU,149 OLkKMHRUB9A,151 mt0zR2uOAB8,172 o3sj7nGzC64,145 zi7HyTbmVe4,90 cKQf7jAt6xM,78 CkW8xFVXPqI,98 FsWEzJJlyi0,110 IIGAL77OuM0,126 _3wnaxan4qw,106 ah-M2AYI4Ac,100 BgWOqRD9RPs,151 2S8FhT1CLOQ,168 7LFtoz9sERo,245 tdMQZ0g9ykE,163 2F64BSpClag,104 _pWW7Xmat6o,145 9oRspg2ktcI,108 FdMEJqe55dc,125 PFajeb2k24U,131 sPgl1DyIn3U,110 tgiPVB4iLMQ,131 DBa4fJc9rE0,152 yV0IgLYLoC0,133 qFOp7gSiC0I,206 0tyZ_m6t2Qs,126 oxxBXpnn2Jw,146 ZGcMRCaBh_s,131 GVuaTdn9TnY,133 tSJ3DYrCdNk,143 VXobEyKCykQ,100 0FNk4sNdPtQ,128 -zXmGloh-P8,136 pjX20gL-rnc,122 wZAxWIJZmo4,125 OWXlfOnU6tc,106 Z97maI23aNg,87 R5YZoDFeQlM,72 l6e1M2d4BJ0,179 ZIjuiq25Lzk,172 QhYydmeQ2Yw,136 JEcfknHqMyc,116 iBptW_7wlwQ,164 AwUpqAQNZCY,146 yK3DX2F0JWQ,143 Ay4MOACH9tQ,109 k3sfGEvPoHs,150 5-afmnViCr4,81 gTgm44dkSCY,168 s9k-uO50300,148 cxFXMll7PWI,143 4ot1Y-WYGCU,122 IX3hYYzIyoY,120 _gwHTYw2ThM,121 i1hu0ErzPc8,180 Us7XgnZ5OHE,155 h8E3sSTc11E,137 BdOG2-Gn044,157 8xBrQp4oZs0,113 38mE6ba3qj8,150 TETjB2zHhAE,137 944Xo94Owx4,73 opxtApiyARs,144 n2eSLdqwSYY,143 SYM7Js4_I_4,110 LGRbJ610dkc,177 cv36jml_lAE,141 zCu2iserep4,157 gEw3FHiTb1Y,124 kXBTh2sv4Lg,129 lDWXlJG-FDI,181 QW1kAlnQLd4,102 fXcIZFeYivQ,124 9B7Y2tMDlEA,143 BNWF_QsuetA,109 P2p410SndXM,123 ekwnp5L8shM,96 -iM3hKlLS5E,161 3mN85wFz_Vk,211 1q15xQhI6Lg,125 2RA-7QUYrHA,79 NBRHljOdrh0,183 pkylHxUSxLM,129 90li7tw4CCM,126 _AdhEPNDxeg,164 a-SnsqKFHLY,114 wrO6W6vTjV0,147 7pk5PLxQXJI,113 3izxrCNCbUQ,134 B8rq--5MbZ8,134 Jd86VeZU89A,130 ypw7AA7tf-4,132 1OUMXpkRHNA,93 DYfo3nt-O_U,169 6GC872xb5dI,118 hU0v5lzJzXo,132 h6nVYkTWTZw,132 4OcM23Hbs5U,128 g6mF_yokyiA,65 NdDOmuWz92I,107 oTTfW63fY6A,166 tSWhP2gwhms,138 ZM3mRir3-LE,211 zWzRkf2uwQk,133 NKaENwBlGFQ,176 QK1Xnd7cPJw,189 yzSfVpQ-1ns,89 _58I2YrkKdk,125 kSKnJn8gksc,132 RsnwTCPo9RI,71 h1q5X5asH7c,145 vMrWJki0r8g,133 MuFfh15AMLU,119 lYxVM8oNxRM,133 opyCsftx7D0,108 6MrxdKGZaWI,91 XbuSTq9TZSI,123 jK4lxjvrhHs,196 d5bK1xSr2dY,166 kGXKWSmXrEk,104 -YykCz0f3Vk,131 JpdTx3k0VoQ,129 cBvFsIF5GNE,131 gYTKHHhPk08,95 B4ppeyE6UyU,199 -PAIOy41SjQ,154 XVePWDEck4w,133 GNdpxi9F1AA,128 qVNAGVSKEBQ,116 RVM5hFMx2Kk,103 2AeJ2VHssPI,151 ZqZZftydH0I,142 IKFthgUbCdY,132 IANjTUtZimk,145 pnzYOL2o_To,133 RgofngIgfsY,128 58C7ep68GMw,158 gtHCnru414Q,120 9LpOzLU5k70,180 Xw2cUrd_Zt0,143 CHV9FhjbFLQ,115 lLX3wpgs32Y,75 NgcEbuMsrS4,79 7uO7VSK2XMo,86 laWUdsC-3Pk,68 KXIJv1NoXmo,132 eIo_S0aHyfI,151 kjzRZCxQ1EE,115 h8c0Q6aqZG8,56 gm2PdV3UPfc,81 q-H62GgHjeg,155 vtxo451I_Qk,191 1QJXKLwmN14,128 YwzGw_SMwAc,97 _JtPO8an9xY,94 zQHhbhtpJ3M,131 LS4oNHk0tlk,218 uMug9lL1Sgg,96 8TlVDn0j98E,152 svBPXPXgpqc,118 UeIxzCUMEsg,135 0Qkk8a1IVxQ,132 TtWqejfxiVU,117 qDkEnNVpn0g,266 NEcaoimX3qY,131 PioVmXuOv7c,87 ZVHIsLK07ak,127 fSOh-vTjWk4,160 -tXr3ask1fo,110 xU61FGJ5aHA,104 59Ntwoot4_s,136 gknobwKAStE,104 qX0rYjUdFik,129 y1O2kicdfzo,123 RrDdgbo_NaE,152 UG7lwsjxwz0,164 fqteEi-ypuQ,102 ctdY2KcX-lM,103 AbRlLFpC34s,178 EkRzpc98bwc,62 tCjohxqJ-0c,127 EcRdEs_Vxtk,60 RxogsPx7JwQ,133 fgDsOV1YKpE,136 ObAOGLArxGA,132 YKce1fkBRrc,141 06OkoPlUGm4,196 7NReUd2_0u0,148 pyvthgZdQhc,132 UqnjC1YM5pk,93 weqGiMyn8AU,73 QVw-cRLFWOI,119 6bECCbRJ_UM,124 nODBN75vrH0,129 ZC2SlM2Eqa4,132 W_URoElm3Ts,67 1VzqryDpBfM,51 KK2MOKkkp4M,167 AEhitq9yTss,147 aokJADOVMC0,124 uki4lrLzRaU,154 5tMAe05kTXo,182 tvON7JZAqzY,186 frgfTkjkcxo,110 4oJk7-aMiNY,126 e0d5svC0xQU,93 Orwz44-_XSg,139 zGa7K2HO1-Y,75 bOEcxxyOC-s,139 k4WEx4-yh-g,99 hLBV5Mj09q4,74 Vyq3eN0DUU0,81 k1WKpdhcJSo,121 X6UG7H2dcos,123 alvAo3qQRQE,115 -cvGAF7LbqE,125 m6eVFDJA9EM,196 l3vcMU002rk,147 hpfufHZI0yQ,130 _INsYrEpEFo,121 GeqbeBDtYkE,131 EwC2ZHxoDu4,133 TMspI78Dptg,133 BR2Bcczm9EI,62 LzXKQvdRZQU,167 dPfKQTaEcEA,66 VKcpoyC6RMA,86 rj7e6WvyClY,179 nZy7fW9IO0s,134 ViRs8qaB5YQ,135 ou4WG7HhFZM,133 5XU9Sz69aKA,75 L-3Kx6xAUTM,165 0vklrunpo7c,118 cJEE1-5uQXI,152 nEFAuOF_8YQ,192 p4t0OpJJ0MI,129 AridlIyM9ak,122 q6LqVs7P-pI,135 FdVyibVMumc,131 nfoIqJWYqX4,130 bmIx71yf944,128 d7ye5zFyuso,114 JZsF7-7VBYs,128 oQotF_oLWTU,67 sZI5ebqgfaw,120 wbrTwrgyOrg,76 X_KqKO48vwY,75 iFpB2_WOk0Q,133 KAal6-tvckw,123 wJJDM675Ypw,131 7zDmlkn1gbQ,128 kKHr9gSW7HM,133 YI02lc3SxXs,214 mb2bzOdITdU,126 vf6PZfksmfg,157 gif34AkAFIg,92 mjPh_oYqKPM,139 fhGy66B0CIU,139 R66c0UiUCZ8,98 T7uncpUQ4GE,106 8QLB_CGDDPY,180 DXT4GZfUONw,139 qPVAxNvS1YQ,156 hq-jlSdx5Ck,117 2WGvnOdTfGw,132 sEWuVNk2TKA,90 rxJiE5EKnD0,133 1YrG1iLwEWk,133 mHA7T9yOI3A,133 3rrfqXl52tc,164 W1N-a0SDw0k,87 bmmxeZEnsL0,138 V53g8B7Ljqg,106 iYetsX9JdIU,130 MRTCRVf4ppc,128 G9VI6SExDms,124 ckremwNAupg,165 r3Owzt1HZkY,139 sDB0bxWhS4A,127 b4CDHFMO1R8,112 TlB_1W-qc14,138 S9Wi3A3skb0,128 rL1VrbSK0IA,152 m4MdMCS5EeE,112 bK3dyRu67A8,123 3dzw4t_dB5M,107 WTMcikRZcBk,213 S-xuQp2fW7I,102 WCbXSTBBueU,93 R6-LDKl3FOs,154 8DYT3ysI2UY,140 O7LsLRMEg1Y,99 Nx0Qte8Wfgg,71 m8oSm88EIhM,86 Q5o7eYFRp_U,130 wNWy3YmM3Kw,124 bTuSlICST0Q,131 KWWQP82Gqt8,92 CB-a6fmj21U,170 _gOQq1ygJgY,120 mNcyNmX9B_A,183 sytZ2amRbpk,147 qF5BMKYv94Q,111 cErG8_neSa4,121 QfSjs_6MZOQ,237 Blz6dosZ5oc,68 2JA3UQCYkQs,120 ks2GU3XYXvM,180 VQnDBor2tWg,108 ik_WAfUpVKQ,108 edDfsrTAI1k,107 96T06Ema-Fc,132 PdmE-Ga0f5s,165 8WQG1IHkv4k,116 TgaoKPuLtpg,129 kWrOmEtXk0k,179 iVojYtEpstY,133 fJjBf7yY1P8,86 7A8pZX7GjR4,110 UPnwEYjEMP8,87 oaqTzvd4aq8,125 wcenhpP37sg,171 WTaUYNnX91g,131 lj66AQ2uzug,156 70NH2okaBY4,128 Q3LcGb0DGM8,147 JJ0PocoUWVI,131 XlZUBUSKbFk,185 2myyH9c7mYM,165 et7jz9CSPqo,230 KGf_Z5s891U,165 xRT4EyI63jw,144 M7Bao8cJqWw,132 zhGOkVH91z8,130 7nHXSTzcVX4,132 vKsWNzKjVEk,156 dZushQttfzY,136 qEJNox8TCOw,153 aKnvOP-1U00,126 zE0vrRRohs0,116 e6WyN4z0VGc,159 f7131IkiSCg,144 plGWKSHrzCk,157 _P6ywXKM8kc,145 zgXQFwcTJsY,122 jW9D4lY0TUU,86 _pWx7N8gSoY,100 7X59lLfqm3c,190 H1_mdoiwhBY,80 NV9oKGj_CcU,103 mxnq8jkwttE,154 hyopxkr7RuY,158 yxOMkjGIZYI,169 fZrN9LabLQQ,180 MZq_z08pLqI,190 FQH9s2dJe50,111 8H_aePfIMzQ,118 5bTmqPTQPOg,201 MVY7ci-BTI4,166 nma6daFY6b0,133 SKC8iPeIvEA,163 lsES3-QXzZQ,108 xpQ1_5xZuKY,144 cl3sud_uDhc,180 L5Ub_8HT6HE,127 cycPu9OddzU,186 XsHBLhORcls,113 dq_RCN3esGk,107 -yMT2S8fJ9g,168 2pw_36yxgXI,85 5Le4OlAvuME,133 QcFKRqQENrI,103 wcN3fX7oiSQ,181 3WlMSPpQlMs,167 _pH9HcBNO2I,115 A9QknjLLso4,82 hAf3IBKWubo,282 PmNdhL9_nPM,171 K8yA801TQVQ,184 nQuKmZkCDZ8,138 M1dWcUcCAgk,256 AN21TljYB8E,137 Wd5RTjtSSxk,133 5x1FeyWYp9s,160 gZE1B2zL1fg,122 A_CGtuDwl-A,212 nL3o4MGY9NQ,181 0SNckpLgK_Q,137 intjK7aTbjs,155 51IaQuowCcA,218 ILkyIHOOoq4,149 URDzGjLruJU,150 l0IIvZcUH_s,203 ZtgEJOBzX6A,149 fJDl0RSPWBg,198 A8xy9h5olhQ,146 ZdhLQ1toP9s,177 ZFrDw6oQai4,210 HjQPsZjrgkY,181 ov5KEgF0hgo,138 8aK7LsC0G-4,111 71_zrDEkRc0,78 ZOhpE4LjR5E,152 VPaFRrTJZ4U,145 7p9YNPcOJ-4,147 8jfrU0a-Ayk,162 cRpMdH1D55o,165 HYctFVhe2Rc,135 aRK4YcnTtIk,160 Iqkw8K2hT74,299 TKszvumsyFY,135 grwlYBNyMk4,199 0QNpXi4k5eU,132 iLH6Fzd2V94,175 SBIpGdJA_5Q,103 v4np7L0aJd0,155 dVLMfoIop9M,202 DGOews8SVLw,134 djPS3AC9DKk,95 _8w9rOpV3gc,214 EOavA469Z24,222 wbROoMNi8Ho,185 wxlD2wwIgVk,94 BpP_rFPFUPM,200 F8q-K4BTbEk,102 HRmLJScvW8M,146 bN7jTZKITG8,157 4dNwoRFjOkQ,131 3IUoqFHJ6wk,147 aaGgRabJ0NI,159 ZDyEERuK31Y,147 D6OAWdqi-s0,88 tMYOmMWbUME,124 efkuXTpfxhc,140 UZnkAElIe_c,133 e80zdJ6pWlI,136 86Vd7XFiYZA,141 rtn4-lDSB80,112 ykQ9g2HT2sU,203 SUr7fu-LXj4,212 j66Fsl_q5Ig,202 -pix6UL8ONk,134 srpCm9gPmZI,145 5Cv1ENey4yU,163 ULElX0fO5JE,150 JvTQZxz-KBk,82 GLQiaEzx03A,106 A9MNy__qBaQ,135 q4feCJ__GwI,177 UvSGGd3ewFI,199 aDU5CcINqyI,176 jTkt23CfSp4,108 XdtbL0dP0X0,156 YRpgfi7L9Rs,121 hp3HX9PAkcA,185 eYCV5Zm4Ov0,208 oNySP0X32eI,171 2XYukLbcAew,145 89RJwGDFpC4,178 uNjrnjiEEY8,168 KwpO_4Rq13o,196 MPQojemDuDo,109 ceWNY5eNSWY,134 1CjLSig2Hv0,174 PahRJMVNho0,164 wmBGdpkagEc,200 OqvD4NC-s9E,186 KkBUMdYMw-8,123 QLkt-SfsCsQ,207 MBeBFVoomg8,165 AGi49DPszHg,174 euCWQcrBwPY,148 y0DYykDLU0Y,145 MNmdm8voYFE,235 Hj7OFElSIlM,116 OC6SxQVSMHo,173 u3E23a-SpF0,98 -XnDw75Lp1Y,68 bJ09DFHWeXk,83 yzSjRcABUBY,176 iropsnsCEjA,209 GVqoyzJUzJk,133 PJ0NkZgbrUw,205 fb-9_MV15I4,65 pLXw-1RPsJs,179 WiQ09XUO_NY,339 U1_VGnnMle8,170 AD3baa_nijI,200 XEF8mU3Vanc,175 wstckFfu1z4,163 0nEWiH0pYR8,175 29VjYkPPY2s,131 UIRhpmPhehk,104 PMFU8b_2cC0,140 z79ikmr3JY8,239 21rlL3oxEIY,169 qlfI_AppyIk,138 bCBpo6H97oY,136 KEfLE_bvsSo,155 VKonjShA8Rg,230 6kktAYxwo7M,133 2iD5pPwbDJ8,212 RgPuswoKZtw,149 AURxtujY4MM,195 XcgNkFuPBV8,159 g50ARHr0mkA,175 88dS92rgWhA,134 D93GR0PGUD0,139 1mVk7wal9bk,177 btMisVovQKk,79 1etjTR5wYhU,145 4N-rVUkv-lw,119 vTUM5grJwTE,184 8sURhgulh7E,167 RRfoHyYJnAc,96 hFfQhVgQU44,235 zDGDWdvLCrM,163 FBpdDE96XhE,81 DgpMTfkui0w,151 aWNJKbGrETo,187 KJtmyW2urUk,135 EWSHsRBP88Y,175 _PSZEvsYD6o,76 droww43JVyA,79 5T17qRlPIiA,214 Up7TU2t7_8g,217 wZ6Dlo8z04I,171 5ve2E8iEbSQ,177 LiioO2L5ZA4,75 nLkmfL6IVQs,152 WXeW1HiwAtE,154 0B3lnfdJ_iE,155 mpr3XG5Tzmk,171 Z0Fm3Ym-aJM,89 s5F51a7xkiA,167 MFmLZibi7DE,179 Vn5WazNB5sU,169 zJMCctR8ivc,149 sB1jRg2iQsg,134 8TwlBdCGS24,178 fYVAGoTb8w4,179 W9d9oZEjvGI,230 vq6ofw0hqkU,135 Ov6nBKuu6pI,194 SWgcv5EwMgI,132 lz98akbX_NE,185 AaF3SiD4IYM,177 Ct21N7taYlc,134 AhbCYVILusc,189 fdw_aFH3To4,151 LBm4aJ0ZcqY,179 0w8oeXvLXOw,174 01rrDGEzBc4,130 Fdy2A4nbNik,103 r9ae_frgcpU,178 dSdY41CWixQ,217 IXOq5goG2G0,186 c0N60xOU9yk,184 QNlazlRan6A,161 KZJetTa4DjQ,104 lp1s4-tc2U0,232 y7-LHFxFS8o,146 e56FOw5rIhw,130 uzTuGHYRJ9w,166 BrLcbi68R_A,240 uPQcsSuWlB4,133 f4GS9OS2SRg,132 U4fHvCvrTjQ,155 Lw5Ss6z8IoM,93 kKH0IEVUhNw,120 xmbmcfVs1u4,180 GBu5QE-EsSg,144 _RG4iCmljGE,60 VcH7mgvr2jY,194 j1tXIl0snEk,125 UQes95Ouciw,173 OxLmmTv6CTs,178 w294_yaM85M,147 ILbn3iOiOiU,134 7CVfTd-_qbc,218 rHvCQEr_ETk,168 qj3TqaXp2Mg,133 ywRWNlbXD8s,141 mXgY4vnucPc,239 JKJsu3JatYk,120 LbPm19yBPis,179 awuqJuO5WOc,161 WcmGju9lzAY,168 eWuiIzqZryQ,158 _Du0A1y4Wh4,167 vAaBuA-ZeuI,183 H0uJcY_yylE,143 qsyYw2x1-js,179 ijBU9q7fb3U,139 nbssDN3Y75Q,138 94pYLwdWTW0,134 9Wfswn2lkAo,157 uOHMPcGgInI,185 nWwlcubR7s0,180 ApuFuuCJc3s,163 JJrTnnaEZ_w,146 EQWtaLTOwCw,273 RHz9rXVt3cQ,239 NJNAE_e-gM0,147 bp5HRI2hEW0,164 a3bI7kbVBwM,122 PBHYbeg2nao,178 Tvmzk3Ce8-s,166 CMPJ23f8BeM,147 GbZZ2TDY5dA,178 LgNSetWhfhw,152 t3nm6EPiuyw,153 PPhxsJho48c,192 Hs8mVGI7uVc,167 Uiqk92r4luQ,208 Hl1mw0-APy8,180 Z4kBo6FO8bc,120 Vbj9JcYGo_w,236 iy-SmSGYYBM,120 HRkSVkOdXcU,93 gdkJ2WwMhAg,177 jz7WEh-DK0w,129 zNT4XSI1doU,87 9g5pe-B6uL8,133 Tpz4Dl8focY,181 k7ej9E5b8js,178 F0ga5pmQjnc,139 wUkrRABqkzg,146 iog7zMkTVmQ,227 P6c_kQL3ZdU,165 FgG9LDxHHv0,223 eCvY-ualWwY,195 X_4WgfjyOyg,170 DC3rYQXOTjA,51 BVAo7tAxtVw,211 2aKkSYvLvXk,178 VDwI61e2_6I,129 i_SnR25Zoho,208 s55ay3OA1vE,188 zA1afZS6G_c,149 2h6NGVrMQ20,247 DstF9Ge_6wI,142 IGFdF06VVF8,174 uKlIPUovwIc,151 uETwKF_fgKw,205 u_EXq_1slS8,171 oP_Y5LgieXA,178 UX8ua4_z-kg,173 g8hPeRFRiHY,107 1PRZi8t38OQ,102 aB5g_U4qo_Q,157 zllKdwaYi50,175 SxJcAxTBKOk,123 jJ8rgMkWFWA,144 9NTvToplMlw,147 LSUPf57En54,152 w0qfQaJtF2E,184 KKsaYBeEr1w,172 SCn7SurOKdw,85 Wrb8nkLKkxU,71 23zu-1Nsqg4,178 49rUb1-JaIM,148 sohDA6TQuiE,175 ljifYuVnH1Y,144 6O_dprt5rts,181 ACvjoLAtwnU,214 nixHRzTvCUE,179 A7a7RtpKzYY,156 9T4kKk7zH34,141 n_3Fsg5qGfk,133 JfJSwQkRgbk,160 u4T7slD8Mq4,134 WDuIl_uPY_s,132 _WUyZXhLHMk,118 Jn23_pn6aAE,208 f1bk5a_jaEA,238 ZyirxKE2aFs,136 Ku3KKPEi-Ag,156 Kpxk3UkX5s4,119 37O1H9YiBJo,132 y1-gPBJ-C_U,126 D1Iu4JKRGIM,96 szDAoChHbrQ,134 uhOCeh9oGK4,81 r29P93wUiMg,134 jF6JN1VSpmY,74 ysLBlalu91s,239 TunbuB_bBb8,196 BznPcrTUYvg,238 iktC8imMBnw,175 Ywn0PmxYgGo,115 YZN59OZIz30,156 4xg-5TeGvQY,134 zoo3aMvQdMw,162 zvY-EPgYB4Y,216 idvqLiOeLgc,199 hhmPqQpJWks,135 xA1Uz_TMzhs,167 wDFOO-dC-Nw,167 2GvL0jFY7u8,116 MnosttqGIfw,166 M-LhdLDYOps,176 5nDwwq0ANPE,180 y4fdm5gdvnE,159 1-9573qxk5g,100 T8qZ73IazvY,135 sSu-nM25zqw,179 GvHBefStM7o,136 VJW2e8_cIfw,179 XPKzmSSQ2xk,115 X0vQQA32UAs,133 RfGOwHvIyK8,126 O6Stx_mwAVY,168 9IVd9X91fiI,126 pJCgeOAKXyg,237 XUSzvNtSsFE,200 RGaBXM3EHUo,118 BpnlB0ILpWw,202 jk2mjuWhQ_0,134 DJTF3NmqF7U,125 nFpK9Si2uUc,150 gxqt6x5ThcU,138 EVy-c7ZaMvI,112 vVqCU0iWlFM,196 GQM4dSjjQuE,196 4UzVKW_Iqi0,131 GW475l4IoyU,116 w0A-YZ0Yd2Q,164 ENmpNBFdwFQ,85 HBj5pxrFyE4,181 FTzUto6toxY,175 tB7Ml4tO7d4,171 FpekkNyDPcc,202 ftDkeswkEYU,258 xNSWp7Hb5tU,147 Ff20ZDSj7d8,134 _gVrJIUmCqU,103 jZXuLQdIrEg,80 QNUbwijCKfw,86 zzkjLhitH7c,238 5ckqhebte9o,179 YmRuVv2V5Go,68 WCM5kknf5nI,178 kfdeG-hRX7A,141 rvpFERo3ZnA,200 C0NVo07t9UI,205 6H6RGCBUcf4,159 vaWlmr2BwuE,168 xUNy6fZy4WE,178 f2FzrfnfQPY,158 OFDJnI4RczY,161 j6kHHLVRPak,164 ubwNf0oYYZI,266 NKhTArRP31Q,124 JaTAjmSppvA,174 Tazw08OZpwU,90 iMlCK0hr8Is,105 YAmnMBHMPso,114 RG4exoyldqw,244 BfRUV4g8sYw,156 QS8fJMeJqsQ,166 F70k-PX3p0o,174 BLSFQUjyBQo,188 e7qjmOp9G34,187 wWKQ2aOTfN0,131 F67qzjMABFQ,172 T4wxOGDv980,191 ssgm3-sCY-Y,132 43mOz_bosUY,155 2bvUOFDgo_c,155 2DCjXk4qpLo,127 fWgpZ_2oYfE,135 PxuQ1n3xaRQ,134 DYAdSce8Rd0,132 FVGKgrxQP9M,103 kBErrmmqnkI,222 2ReEFgaq_9g,171 8PALGqaFoFI,154 EzRtOVxgKCI,94 9QJ2mqXdr5I,184 PGbBz0m0pTc,170 DEKdqE9W_i8,170 z8NcTAIV0Wc,174 sCr9YZRDsJA,235 mWB4xc6-Pdk,179 mFl8nzZuExE,217 9svQ60inP0g,161 x7S89GM5N7w,136 E7mB8U4nCCU,155 gQATrdAXELg,178 ndpVsMLr424,127 wyRpsUOH4f0,180 DbORPqtzyx4,175 -XuS9JQgu4M,117 o6sD0PvhkWc,157 g0PEGEYvZd8,79 xFoBu7P_Kwc,218 SBSzom7RbCs,160 AALREbJZEZk,260 ZNzEreKcfUU,189 QlDqtuo10fA,134 rvQZ6MdHSEk,100 haeQVOcIyKY,175 Vh-olAK5vrs,134 QP_o0yWJYKM,190 wmEQUpu_zeA,176 Gh9kc9DiDnE,155 bbX5KM0tFVk,178 vhEOInyNr54,145 H6ZNmRApuGw,169 nIW73heJdg4,132 LSD1fq3xDA8,216 WQLTwtwUnEI,152 Q0IHL6WGFY0,149 dZjgSYTxWsY,134 3gSOZW-vNFk,156 Y5EkcuhBwiU,219 ddGbf6I8UH4,167 Hi93mYJyO8I,88 iwZzRrzGLfE,155 MuIkmspTRo0,224 eMyuRmZNaTk,220 x91Nyuo55_c,176 tp1eVLXEXm8,176 2oLqQw8jHts,127 CKc8xHhxP0Q,162 h8Rxb-9snJQ,134 leSpIIaEblk,134 ihKHvNOTcwk,177 wO4P6Yz_LZg,162 4g_oMoSgIas,131 y3E0ot-4Egw,177 NcMHcR5IzEY,128 TfbuiIc3pME,158 1cHRBd6l2UM,178 t0tIXAlLX8s,165 HexOzLEvLGA,148 sC78ImgOLQI,110 Z0k-0HG4fR0,142 INrZ0l5JbrA,132 9ecrIMjE4GQ,155 gKJerAxfSzw,165 fJlJX4Rj_WU,87 ICJi_nMcUQc,74 ExvYKH9z-9A,152 yAo3144gBw4,133 3U0EdULZGes,143 DyCfCl46JSE,115 GewQTlvA_3Y,103 YOUt-qq-snc,111 05qid4p_cfw,249 EhyXopafOeA,185 lpBYHa7VDRk,238 7mPDafCQ5iQ,210 LVGZy2YKAh8,192 snkc0SvbR4M,170 HXubLg3o3qY,138 Ev2Z-YUO2f4,128 KnI9MBbPCT8,168 rCEbhr55ISU,130 j_3wS3OIgc8,162 9VwWPnHZMrs,120 T7kklmGWLDk,146 DUjB9LTtzGg,169 JQOay4rjHas,198 DdNfSuTpDbA,112 Lgpg6frCrvw,224 9lnovJPbLTc,181 jaSSXV5AFHk,129 YfdRr7MWax4,189 UlxZ06150xI,179 k3TpBfnaEmI,152 oIlpo2mj_qk,113 Qulj96h_-W0,143 LmsnknGIx74,151 DrOLHuvOMi0,119 PLgNzEctkO4,176 zDEPob22tHs,147 whFoAKQ10gY,69 pjF6bofXAvQ,171 6HrTgWedKG0,185 SQH8if7dbqw,128 wMu4IBsX--I,191 AUppZZuFnJI,135 UYzF0CAcN3I,174 YFIIcUg_C4I,152 ZrW_1_rFaw0,110 QId6ztQeHCI,197 0g2o-CfakW0,132 nSH_S3LDUYI,164 dye8cQvz0Kc,137 ldzjtk016bY,242 F_cS_kmSiRY,170 TRgkvisG4yg,97 RQUwqHaBuOk,192 nmaCobIvt2w,138 IBRkROD4KAU,112 TqRBV9xkrAU,82 H-Mr-QmgheY,153 y2wupV34DRk,160 6qZZWAScCn8,295 ISQMNhOd96w,177 CUnezbuG4fo,101 R7vFG7jQZGY,155 jBMZnAIY_Ng,124 oo5SkNM3c1Y,181 PjPEnXNEX_E,95 mfCwgYR1yS8,120 HavLrFJcqMs,109 c9oE47YW6YM,148 2WZkIK0cbLc,120 ThCnJ2m0exo,75 _JoP_xhSETM,209 -qGU1hiiJfU,118 rPuW7T25Yuw,127 fz_9uPJnGEQ,128 SP8YbyZwVeQ,185 a87b-bsz1Mg,143 Jy2_J5WCzDY,180 sVfuigRSl8g,127 6R3tTi_m8VQ,133 UYhBmdQ0VWc,169 mQTPziHf9Qc,156 cbH10o2VTXI,179 CyJglP6k8lE,194 IvFBobchMoc,192 tAHCa87P8YI,147 rxWQfQcLAUA,149 AxGXZOLn-U0,146 9tqaHOTOasE,187 5qE52hylNT0,180 nUpmxMzBCjk,128 6IJ8LfJnJvQ,159 CUYNZo-8cDM,140 jf_-d13-UNw,150 WEwS34zf8mk,164 xPI7JdEPCP8,160 u1MRGbWEI9M,132 sH8nzHarprc,185 Ri408Ie3zQs,179 -7uYlaqkkzw,174 BYQ0Q0oqYOA,178 ctLnaDxvAFs,465 EHqhCxcRkwc,233 1qYVJgixc3U,295 G90tPiniLd8,179 ueeK1V8j-WQ,209 LjKWOmIeSQs,202 zm9XOZXVyyU,175 OLZhL2R4cfg,132 KhOfO0lI9-E,62 bq5vS1a-smo,181 VvNX7pOAK58,266 OHCVQcnqGcY,169 bmBh8DSdcnU,168 PBaQezez_UU,169 2nclzm_QlLw,155 uqVEYJGg3J0,159 ilRq_PR6oi4,130 PIAvGkpGZXw,113 IB7BvgXIKOs,133 5BLZxhN2lDE,220 41BnkhKxWHA,123 pFmo1haIgtA,133 GtqIqWKdlD4,170 yHjejU3HvRE,117 7l79p5apaqQ,170 oS6AtbHHjSo,134 infMR62l_dc,130 G5_nIhUCuhk,180 rhkkbjKcaJ0,183 _RsxXzFxqdg,123 XyEHIOZf5yE,102 s2TbUio6uF0,175 _H0EYJHeddU,197 jh_EME9M-mg,133 diNo0cO2Je0,231 0OqXqd_s0ho,165 CNuEnlaPuls,149 0ERIepJUdPc,214 UrCi_k2TXOA,85 3NRVJdoihjY,115 m_Wx68QkJSU,214 tVubEM2oUj4,151 XT2IS2dn8gM,166 xKYgXZQuqm8,86 89OqkIyNnfQ,154 1Pk2FQUbnm0,177 T2IZiCyLFmI,149 GP9FOGsbYsw,129 Cre1DOpQFx8,278 V9RhgEHIxkI,182 -YaPh7shnWQ,176 dj0MEV7d1NE,103 0v74ANWBqv0,217 JwlhFfOC5Zo,110 mfkzA9zjRdM,181 m3qnMx_kA2A,139 PRk69Z74hPs,129 8bZMd3JUu0c,87 cEyfq9j80Do,173 htHKbsUKDDw,247 CG2YRWPhfiA,183 3gLxv0qizPY,134 Uxo5LmSDK34,71 sIGoScxocUY,196 XxWjAkr7ujk,192 6_eBGV71X0w,210 UqPsrqpwLmU,126 VgO0K_0mi1U,165 UsZNj9srzR8,217 LFO-xqbWYpw,216 rey_J7jIvno,150 64tSUb_LTdI,148 8DOn4fKtpEc,109 RjDv_swo0rY,107 gVdIiTE1ykg,176 oZVMUM4k29o,172 JJ0IOFvfu3Q,143 poswRRB_2i0,287 tgHcYxKjwVE,102 5XZcn9qR5SE,131 LTyelOWIGh0,250 cmkZeTX5fq0,210 wSOMPH85zvQ,239 Kc2Hv1tPMig,145 cgGOnelqMi8,186 otlsrvaxpdE,172 p07sXB8H3zQ,104 nA3-p6SeWtc,118 UP6UWl1Y1-Q,156 DrrwX4AnbMk,119 nr1sLngjJXQ,232 vM7QMLTm1so,215 XUnfvueexSk,172 duU5cdQtpSE,134 KxoJQx_MgAc,182 iQPvgoJ5l2s,187 E-OEyIQ12Mw,196 ALSUu2CSBOg,155 kDSiyU72RpA,122 Ozg8nU5yyWc,193 dMri-2QuZtI,178 S-2cloMm4Lk,190 b60DLSEemEY,155 jCSsP6ooQf8,176 Og88KQM5nVk,174 ty68MEZQPS0,178 ulFxMs35-P0,170 4CVFOnmW6v8,98 dcSalZZ5YjM,171 ln_5-pRR-HQ,148 ZbtcQZ1yDjc,142 wIw19V0b390,215 zpsNG-exYxE,102 gvANfpQnohw,178 nbxAMHD0_dc,177 QrXSZJ3am_s,195 c6mLa5_GvCQ,185 fegOYb4_PSk,134 e0UZ0rc0KH4,144 IW3rXhNFyVw,98 OArHd5pe8Ls,133 _-9Pewr-JgY,167 xVWAp3OLYTM,205 Ad2-FiCzJxc,293 Wu9dzms2w6M,158 3sP7UMxhGYw,241 g425SDBoDBI,212 HGgfJkZAx8Y,134 KQzNG70KguM,178 FAK7ssvx3oE,159 ETu553EnTJM,135 kIIY1-f_rBg,164 PMjbPEGDJ7w,209 QvVUxPcMZQE,97 rSAWPBO-ewA,208 c2k_kuU84ro,204 oNiW2ftWINg,178 _bUaFRyP80A,119 -OMiOIbouaA,114 1didVrNjTpQ,123 ZUmTlIUmbmE,173 M_7k0PCONF0,176 oXGJeQDRuxE,134 H7tyPUAH1lo,180 ku4GcEUQ0TA,113 G-lDaFtb7eE,102 Pj2K4FrqTmw,100 DhUcvFP_Tas,198 bY6jLt3owBQ,134 KMHmLy9C2hU,135 q7tLJC4pC14,180 mIGCgzqFR0s,280 880-MqUhhEk,127 z08tZYDrY_8,137 9v-2_YOVxGw,134 2k6F2WITgac,168 Lh3y_KLTwWc,133 an9Zfn3IZCY,193 JNcNy7bJxDg,146 CkAf_qzHNwo,205 pK35em6gl0Q,175 XN7uqQnAxIc,192 -0SHIbuEO3w,132 L5jFIw9yBbA,88 CtYTXG1RFQ0,148 vvBW4Szes1U,135 Pv2MlxSgwv4,175 T5KjTcbQVMs,210 s0ADj-PzbF0,132 YkfEc-PYJ8A,134 1spvdwcb7jg,171 Q2-Jg_2l1FA,172 iU908ncV2q0,80 eGtDmvtBZQY,154 sxo7GjhsghQ,77 Ggnrvt77YOM,152 nCw-UbptqD4,168 uvZImlL51Io,137 OtjQUwKlR0U,133 JmSmZRCl6A4,127 lHxzWs9NcS0,174 8FHO7Ry4_Jc,96 J3Sl8B7RzUg,133 2kK1wyTEMUQ,180 Cp3FHbNWi64,80 LJl8SSI8MHA,87 yadi1fTl4p0,181 6moZJqA4iuc,168 CyUZe8xRNnQ,166 urNeTIDRg6A,134 2FQ5suBkp6o,193 99wezqewopU,127 06456EaXTVM,226 9UrJ60MVNao,145 a3GgzkKvBVY,113 S0_bjXPRlio,152 cvuTnguNL8g,173 kgd0wuSVHXo,176 KtEzZuRX23M,143 r2GpJzIdoYQ,165 G7RTm-c2aXc,168 _uwVIMdk7hc,177 BK9Rn_s8idI,163 QQCv4rxlHVg,125 XG3hNDnidfk,166 Cn_70ds_Slw,172 tiu9_CUkGn0,152 InkyowbQcIs,89 iLJtz-2nkGk,168 cyUf4tLI53o,92 ccgVkEP4hLs,182 UciEIYZ-Eos,175 sPlsA3_6hB8,160 nYvvM0FXKWQ,164 MYErK-XLJv0,157 PnNS71ethmI,170 taGt2UqFdm0,134 W_qA7Xt_UPw,118 wcjCEUeC8nk,174 WnrOQRdqiQ4,133 rsktGDtzKhg,176 7Ecvvu9ovIU,158 EPa8iQyK5mQ,101 U_74PjS1Epk,189 SZCtfLaCWO0,180 s-vP7WgMkpA,180 QYUhwlQe0IU,178 38jXOaoZQZI,146 Yh03Vnp8pCk,137 9T7zP4Ui9VE,136 1JHqVsXnQxQ,134 b0kunBGZmK4,182 elpUGB9Ap1Y,134 dtQLSM8VvfU,137 tLXNDzc-2fA,236 Fb1v9LGaZ1w,168 x35VnGsGrFc,133 SEn179T1Apk,243 D6XNq3CrDBU,173 SCRZD2_Tkeo,168 6QB5kS_JcuU,172 zdOov2A4-os,115 upoh7LbKZR0,153 jpoR10Zh0ig,176 fYbbxzLGpbI,173 AmYSeovvscE,169 KD5-tY6m9Cw,208 5U8scp5J9Is,131 nP-P4IYLJWY,171 xgX9WrVFO0Q,191 X3nIJPj_7J0,126 -QGGk3M5S3c,176 CRjB5ImoHXk,140 rxkB20Tpvx0,156 DQU7X4QDX80,159 pXQjNz6Pyzo,147 8ZSuFOPBDmI,162 TChg5dQ36WM,186 KgnrxjgHngA,132 qYEOmZzqX28,242 lIbKD5ovjok,167 3oIQCt6GVcY,184 IOUbfaHj2HU,145 W4jxHLn-00g,173 4MbRVVP6rPg,126 9ykMeXdU_Ng,175 B9SkWFyq-EQ,78 aP22KbKvaMg,179 BXlYuaycRbU,176 eesYEZ3pp5Q,173 xzBC35K-vug,209 2WJjBuXiXK0,200 F2V5i3EyRd4,149 LQFc7IKhUuE,179 yaWmlDjvMs8,179 m-2WmcLl_PQ,193 WBreuW9LLSw,135 z2NhPvlzjcg,167 Wf6feYvdHs4,140 DBUXGB_L5q8,249 Oy9R8mpKSmM,134 iaCvBhskyk0,169 PwBs-mLkZyo,202 XHuo5etrwvY,178 OjDuQ7O9XUo,292 gA0u3Iir0CU,213 ZPCSC8NM87k,231 weDQxJm9K-Y,191 Q4KRYWe3ngs,133 Yz7PedIGC6A,168 xe6kO-SJYCk,103 GgBt0TlbwUY,230 mvH6IhKpehk,158 NM0WEaC8LcQ,154 PSWftrnsEcU,172 jMqI9UV3ob4,61 b_SJOg2q3PM,178 IGCJTr90IZk,291 mkG2YdCogPY,187 luF2eyiYlyE,164 VjRhsK7p8gY,162 9KYrqmQdvsI,183 D7LCHE4pTe0,151 TV1QrgMYa3M,113 HOePjj-M63Y,195 BFAfiz1daR4,80 AWi8x9ctlps,179 HkXGq2kJAlM,134 OYSVICsTq78,148 nVNjq6BS5c4,168 QkrYlP8-Cmo,204 N2Yk8EvrrBU,189 sIbYUg1FKK4,94 5CrXuWBxVVk,103 e8EAVtsvfxc,139 kTNDYiONld8,175 qjUsrdzDbuY,134 ekSSp-zvdgk,134 DOmIpiTMs2w,170 94k4a1GI9rY,114 MxDtKTClKGI,151 Qc-E0u_1Ei4,144 pBd7XYjjvRw,179 0K6bVf4ra1w,134 uXUPYAomwDU,154 lKStI-3GHDc,134 LehcJeNbFBw,198 UqXJc-VxorY,145 q8NwQoVkAr0,259 ODIZKyevVxQ,132 7SZcDW_1o8g,197 yMo3ISSjYn4,164 2pCUsMk0Zs0,147 z4216EVIfdE,158 Vv9KJYUnVvA,293 ZObhl67NCzQ,106 _jl40Gzivhs,210 y-1iNc7NzNM,176 NFj82X1Fdh4,123 pl7JzW6eGZg,134 285uHkPZOkE,142 wgb4Fz7D7wI,98 X7Jay8hlfHY,79 mD5CrAC4LPI,76 Us1MxXdSHw8,159 aSsFjcw8R3Y,152 R5BlH8IPv9Y,252 QsY1JHFo9c0,190 4KkCEjawUHM,205 DTZylvspsps,138 LoCaeI5RffI,204 chCsCDHJZtY,175 7pzz0eGQdyQ,175 RNPPrvhTKuc,131 9YyC1Uq84v8,116 -W_4EZvbrEI,134 kWHOafRR0Sk,96 SJSDO3IHsrs,157 NqXxeZTvuYQ,87 NO9Qt8NB7JQ,131 8O9FIRPJRXc,159 C9rUREflwDI,134 8R0wW6GTMk4,119 6i7cWj1WqDU,133 PR1WWVvDs3s,81 E6AYVGKx6Es,134 lPOo7SzR7Sc,151 B1bYkou_mnY,160 aak6BqNR150,172 bNFWITNVAKU,130 NqWsINBcm2o,181 sbb9Re-KYlE,109 EAd7cMSm4Ng,120 -Xb-ryuTDlE,135 ch_JeDyNaFM,245 2XmLLBZnvDg,267 8wMS2SCtVM4,169 ESgYnVVq9AY,180 dg6PaO0e6wA,225 oBeMUEkfDtk,120 nBRbD7RKrK0,127 lfeYgfKa2cY,134 q1bV-D8cSz8,122 kCxqmweKXZ0,159 HcGpEScyT5o,139 uraQr7J0Tlw,164 LoG_2u-0rWo,175 FOXEyMTnekU,134 WXne2B_inx8,140 4o1x3FxQLf8,148 lNFbbWOM5FU,189 UXldWskFeFY,288 GwtcfnmV68I,80 c95YKkIbTGg,167 5-kt5Av0s2M,181 qqAzmt1d8kU,75 D0p6abBHjZU,210 Tp5Q4AyqFOM,143 mpBQ883QIUs,205 M2E0xzfvDMw,134 kbpdM9ORaI8,116 m-5pPy7zuyc,69 xCvyw2bipUM,176 mkbZvLfg2Yg,145 AdKWXA8npgE,103 wcYfLYh8ixg,197 WS8Sc1nCi8U,134 7SybWD4iYMA,193 OxBd2RQI4eQ,134 vYm_2A_cg0Y,109 AUbfGwY4Fco,196 wyHOKleZzFM,172 VwlkxIN9tfQ,134 kDDU-k-5v6s,172 5Ehdu6XTlBc,118 4Tu7_tAe2tk,121 THmBqW0zLuY,282 jXIFh5Gwqno,177 jEav9DdL4iI,151 91GNWPp-a38,172 uycL6ws3vMc,106 CdVuOYKr2cQ,136 -HwJeE-iuIY,159 69v1tcsG6nc,194 vRUQ_q5mivc,181 9WpO5zPo8Dg,203 1U146AYx6-M,197 pdwGNiv2q4U,79 GOpFSBhGjuU,67 YSOUTJUdTgs,263 HBYW2199vpo,151 3ND0jZIthFo,95 SSQJIBb_9gw,124 -agdK2N5wX4,169 N_qIfvDbZjc,132 ql8RBlb-IJQ,189 4DKTOdul0_I,140 fLRlh8AHh8k,112 ZekXmBuhS5c,133 qu68Gym5PvE,133 K0QjNiVA6NU,160 Drt2w_iit1M,129 DRGjkQ_iBL8,135 UW80kY7-HkY,166 l17e0M4TTBA,179 D4x3BaaJ2gY,126 ZiNx61K8QT8,178 Vx0MQxIFBW8,219 9WQJxS6-2iI,156 npkzgnKAgXU,134 dzabuGq1wIE,171 AvPljYL3Sq4,240 a2H-pXAgx6s,160 L_nh3Rtyj-Y,226 ctB6OIa3Pz0,161 iHQZhYadNwQ,147 lLeY8-bhEuQ,114 3QoYCS0iOq4,157 H6Y2GNQfNo4,135 -oL4NpO7eAw,135 gGz0wTHCHK4,233 Cw9FQ_X-gP0,133 IJnig4nc0xg,219 lh5IiK9eQhA,132 HgqmQ4RN9vo,121 D0yfau4bAXM,123 go4K4rCFjMQ,230 OhM4B8B6B28,100 eJ93IIgvVyI,135 F0YzQbNdlpI,105 eHj2IgKYofo,132 ZvGaiZMBOOI,144 2dOsofLx6jc,134 KBCL6GBurNw,165 Uz6jhOP_nm8,179 5eNVHUxlR1Y,161 hwe32v3I7R0,192 vdMEu03CjTk,162 7yBBNmR1CLg,176 D4E8UpMb8SI,133 5Zpj9911g6I,145 S-EfnfP_cGY,217 Wn73_KG11Wo,123 Tf9j5763-Gc,163 S99xKAAo43k,134 usmBCn2WxYU,167 sYWS5RSmJ-s,102 sbZB1drlKWI,97 Wo4U1SqnRpA,180 99qifKCGPfA,116 eg8WzaSrZpg,134 JZCM0ZW-GMw,138 w-nqMWvpzY8,170 nprJvYKz3QQ,126 hIMv_pWXqFY,177 nyJ00UjcA0c,179 2T01Xm19LJM,155 jT09lgUTdFg,117 KXTBm9eUiko,148 bu9YxTb6gf8,146 P9_EB2_tUGA,95 UFiKhV_Ay70,146 1GiYwJRA2NA,180 Q7--4JW6y6E,160 PuUMs6fNGo0,159 92lO2Bum7v4,151 dEAaneP7a3g,259 QgqXAXhRvYU,178 E_PIi8tRcCo,196 CaG_6UWfyLE,170 4InwO1SSp5o,170 CLxHRE-Knmc,140 ddQe0gG79zk,178 CHBydX2-I50,169 b4kRHpvisxE,156 e0oLpONe5O0,263 STqJ_Up4iFg,165 gMCgkXpEOIY,211 ZUchY9Hw48A,178 1DvFzLRPc_w,91 fTIIhYZ_CzA,156 HcrTqof683A,164 AfNCKS2a3nU,145 fwZw8vujVMU,187 WNAjVd38Q1E,134 P3WCkLjKW-k,174 5PaUTnk9k9Y,133 Yn8ZE58MFEc,174 YwnX8My7428,202 jgosH8zc83Q,129 O0PAT4-kuY4,181 D2l0Qk_lxo0,243 vMzDPwqnJfw,162 AmCR7Owu6R8,131 DHXHxop1gPw,133 -6IX1nWqW3o,174 eEt5ebZFVWE,201 9UE8ospTDgA,180 ZjEnS3hA1B4,168 eAp8Vm19uQU,134 LiODoFVKD40,180 lGuivq-6xrw,278 6IdswAQLBKk,202 3MhzaQnLhRY,177 L2inhzv1Rs8,209 CN6dU8mcuMY,171 MwjIdhPU43A,100 EdiZzm9bA2I,83 dnrJELv76n4,239 vmpSyqa5kXQ,109 W-phG8nc1Xc,173 BTJ-smMan7Y,284 XSX3JKL0DpU,145 fn5dXUu_qxM,288 bfKu5Jc8TjA,148 c82FD6lh2LQ,117 oyuHdD6ORAg,194 AvPVexWamGg,126 iKduvC0uNs8,183 9fEMKGFr-Sk,157 kPE7ZCGjw4o,225 wXLFg03in2U,132 HV_SMZR6gjg,159 8N9oQUJJstQ,175 EIrEOL6S6sk,247 vtEw8hLJKzo,89 kv-hhf-kPkw,164 sa9AzlyS9h0,164 Hiwu7Hu2hAs,191 skrdyoabmgA,286 elR_OgHND1c,136 znjpkKX6bek,176 FNA0Ejpu22Y,151 z9uP9znP-mA,206 Snbbz0C_ZiA,131 hMGHJFVuqpg,266 8m3HqHIpcWU,159 Ye3l05tkIcQ,171 OkZ0AKNb82c,131 xIsVK254RXU,122 kzZQYnvw-6E,183 sgB8cpEi_zU,202 hITWJ6vE1os,133 PTQLBv8sgDI,194 sr7zvUpRxIU,152 KGV-R-dVuGA,174 FhsFZDrRvoM,225 I9r1j1ZKBYk,159 -rkhqMzCUnA,110 hX-ezXejcU0,166 9C5A-YyMLnY,175 t6w2XWv2A7M,196 4zBMw2XqgWY,128 BICqcEvzhVw,133 gK9-i9Y6LQM,157 a-qtnTRl6HA,177 UglfLjHUNbU,133 JyEvCZ8kwW4,157 TiJBxtM5iKw,175 9pF_vfzjbpY,179 KM6fEMvPvqc,163 2UPj8FTPaXg,178 FlQd5p9_XvY,183 4t7oXxFAlHM,156 6SAzrCAaFG8,164 V3JGZdiYwIg,168 tlSscKeO9Cc,169 pwSkfvXD_ug,188 y5vxDOma1Ok,134 rvYoAzmAcAI,174 CDTnjLPgMKM,133 jorhoh0NNQI,177 43OVm86-4rU,271 uo6yyV0N7y4,156 L_l2ii_25tc,292 Ts8WRHAQvk4,193 2-qyN66Kr24,158 tJya-fbl4R8,190 AeM2PgL5hm0,105 rbrIQjVNl0E,137 oJAYU5a8zTs,180 k1jq4jHNYpg,152 DyxkjYmlzhg,286 JXiJ7GS-9aA,113 CWS1CWSAmjs,177 RFtZAVgf1Yg,98 NC34ce5BkWQ,68 7nWfsF7ThLw,134 wXc9z1SmLJM,212 MtRlOvoq9Ls,133 7XBizI9jArU,227 nXV8YHeJfOs,114 Eu1EfSDUKFg,157 JSqbIAemGcs,148 S0hTkEECANg,153 DZuHwW24HUY,200 HfgFZz6gCOM,137 R_rN21oKxSE,177 ivG26TnBWGI,132 xLdIkC6qcow,148 UB1xsj0ZiKA,209 lx420G7IDnE,135 bhtJNsUfHIM,147 qqhyIIZt87A,99 V9mx4UV8DNc,116 awhN-boYW_I,136 bbtIanfT4oo,135 MqiNJmj_ODg,261 aecYY1vUiDU,154 IAaXyDc1gjk,205 pVqOcGEbZvo,136 STh780YGgIo,134 mySMw3VkEBE,134 evQcKvkQCl0,166 PitkS4aYur8,214 3K3KlDWq-qo,173 lCF6_l8gtdA,194 REWaiDiKDIE,147 YtprbvdApU4,171 aqTS6jAqmUA,179 howhfMAoEt0,139 U5XIY-s43aQ,171 SEmSJCzcxyc,154 76dXe1ePSrQ,92 6MaOE8YiJy8,178 GHpQUOP8vcE,153 3IVugy6dK3E,145 4l4OmZk59Gc,164 6MIGRX1AVKo,179 LJ8UoUA2_uE,179 PaqNqocHJ-o,197 GSrtUVzdt6M,134 qB93c2JU4uQ,249 jwnPI-d36vU,159 XUdBdsMc5EQ,133 XlS3PKbK2Wc,173 l46yjkR0SqU,178 Sy_thm1fviY,134 RxLb-Iqyqps,127 O7jHiw8IyxQ,174 5YgMl4JQxKw,121 JVRdRQaccL0,134 fBTODK66ymw,190 up1wTd5shfc,167 gV6Y3OwR2n0,187 X1SJgm2hIAY,175 BCyz82L_61E,151 vIgFGJRGlkk,132 SiwL_3yOWRM,120 fAiJAcgjWeQ,148 pE0vTejjWuk,105 DtuXEqWdWCI,133 t1RkYJaG9bo,251 LHcbbXpKIrc,152 rrWLFKZafAc,133 dxzktMx1jbY,207 QkKXJ82vfJU,127 2AmY_TaUh8M,176 bPL9A5VyKrY,156 2aTxwlSE2mw,153 WMFxWlrpnLM,146 lqnKLTA2GVE,177 B41g0ZjS8M8,193 U9WHLcpvVz0,125 wdcRrpMHIGM,187 Q-_wlz6jYSw,159 wpQ4R1jlFHs,169 XF5omSq8eRQ,227 DsMU1n2HUDo,174 8O8gYNK3ULc,179 Uz8w8WHmWMI,144 ju9K6nk07iE,229 _CuE3lto5XA,192 Jf8Sheh4MD4,131 kjLqB63ihJE,121 P-SVl6Ql7xU,180 rLVwKpyUwWI,141 io8KUjovuYo,168 9w3jysNGqeA,179 UN5YOny_U8g,129 PQ3Qc8bOqlY,191 yiPqxnLMKbs,110 sYdqpWTQyaI,230 UaCGeQifvdo,100 ws7Ve4mehqs,188 NE6nLFq0eqc,168 8ty1025m6XQ,223 018kRNbZj0I,168 dHxPxFeI6GQ,145 xmcpR-iaa7o,161 EaizaMokSqI,282 9V_GlFhNX2g,194 r2x4QueC2As,194 W08YzBOfqV8,128 nUxHF4O3GYU,148 e2Cuc3oHb4U,166 KC2YLhHiXv4,119 4f7U_YO0fVc,159 BLElh2JGufs,223 alhVUKh36_Q,180 nXrsB2RMo2w,133 K2zen737biU,174 StvrI9z9kLY,123 Rz8gvINyqvg,403 4gSkh86zcaU,193 RxPJd3_j5O0,179 uhDhzHrffBQ,239 DtH30Cz2Zec,75 k3oMPqUTxCE,172 0m5VGBc8VrQ,143 1lt4euqZLsY,92 aF4SahLqcxw,132 nAbqTdINpOk,111 SMaYCguBHAA,81 rJv6bP5Lvao,224 OflOQW_pkvc,113 Qdgk7Q1dn34,101 TZXt5K8U_HM,120 EchEZ7BmRos,141 UoNbV-qxEJE,178 6o8Eq0LEpf0,152 v8L3Lyit8Ro,183 elmk8Hsbw_0,112 vh-mdPoc92Y,179 _OZS09-GVTg,176 XNZRK35VNrk,130 TKpYtp4Io9U,194 _3v30bJGaCg,137 Dc-fBk3yoqs,199 bTPrlCglvFo,187 Qm-fzB7OmEU,144 4sNyWmYN-rM,172 gzbYTUXZkSI,213 roST4TM0ccM,196 ZcO9A2DK_8o,219 ea8yIgbLo7Q,151 NnDKut3pxoU,192 1YpDd1nVthI,180 LKJOXcFUSzc,166 NZzeLRspnMg,175 vhmFJKHhdw4,187 Rf161T4RyxA,129 UTGEXJSxPvY,155 -EZS68nXwHo,133 GZ3fgYIUrJU,166 e48T01eVXtU,128 _HoKFu0orAs,158 EL3Ma917bug,134 RtxMw4sua3Q,134 uTUupV0ZfBk,160 k6VGwPFIctQ,180 _0X1jPgLo-A,175 hV55sjy1QFI,179 C_06Kac9rpg,185 gDVyEzQNvhU,175 1DDHNN3oums,179 t5GdZx7AS-E,189 mDdr_qQMu5Q,91 XTtjLtf_Tw8,288 fKpKz3dysY0,139 1GbNS7IcCj0,135 aB6SfK9qD5Y,90 acBlGJZCIiQ,151 JpQqyJbdb44,186 2Zi7Y1-rgts,137 rTvJrOUuOTM,171 qwwLKFCR4K0,94 rt3FEbzjM3o,138 gcPY3RIvtCw,240 lNVb-ZNIO-A,199 KjWPSq6-Ets,220 AUCbYHVFnf0,176 dShLedyR4eg,138 vOQ211AFtLU,134 vVmZO3W0I1A,162 KfAm5nyHM3U,159 aQqAUXKn7t4,203 U6GY91u1I_c,211 pDjY4qorZrg,201 ZoL1epfoq-g,137 Ed__PtLnaeo,154 g4BV-MbeTjM,150 OfnIw7Y8IUY,134 duZLaW_6qLc,76 QEfuINMgcnI,91 HMQpYC2SMX8,99 5uvhg1AtZlQ,188 Wka1m7CSEro,137 SriHCm7dhyw,179 4HOgujwklBY,172 vDzbcWty6m0,129 Fp5iPmpZiNE,132 K3Po5dqfTgc,122 u_6tnXDfxBo,157 mbzNdI-1iUc,184 L90uDzDbdV0,172 6EAVY3gCWpY,244 Tcnr8WoHAOI,173 XGoagkYcJ38,135 DGW436DH8Yw,142 OByY45anMr4,164 eMHv9pPuDiI,140 IaeWrM5PlmU,178 wka4snE-AmU,216 YIqAz8SfE2M,173 Uc0Cd3LErFs,167 hfNlv4HLZ5k,109 cWj-sdxFiY4,133 7bCqTdKJPFo,151 e5LZR3vCkzo,133 kvBiMHIuFbw,145 40ryheWGyZY,119 WbcZ3k4Mr6Q,102 80fHUAW_up0,126 OTp5qNMBuRY,179 OIf1BFh8UwA,175 jypAc6XYFfA,130 SVtUDd2sBwE,124 FFvaLp9s1p0,134 F70EkgLs4DM,145 TjvHy-IYET8,89 vYH5urNq1Ao,161 9oS260wm-UM,160 lK8cWFLr5qE,189 JhMO7RA7-VI,147 C41s4A5Wq1Y,159 0_1NU60qHWs,151 uun8fsWOaeE,146 aFnS18LM8Ws,186 OfXLQt6B8v4,170 WyqeTjEcUTk,114 UPBK16auS2c,248 G61d-lcbLT4,147 AX4i2YZqE14,164 dwULCnXeEOA,177 YmGBAiHnK0U,148 MXcA1Ow7Lzw,127 HT4kxxCpWYM,101 2pOMv-jM5lU,115 QnDgw7XXaOU,121 xWYBaNVEpVY,239 bx_rua3EXFc,208 tt5BJlT7f6I,208 9E1ulvRRYFM,107 jUgr32wtqiM,205 yqvlrJQVAP4,162 uNcKTuAqLag,100 QeTaNmnwFHo,177 TFfe7ZgIVUc,180 -npMZStX7dU,109 M9C1xAQdSKk,179 ExsSDD8Lpsc,132 qiAPls8Te0k,164 XHCai_8cuiU,102 mmH76155CuU,114 0KjO3YwlhEE,250 wMr2d10-xf0,162 NQw5e3HJgfk,98 Kekb8jHfDxI,150 aHoNp7pBeCA,198 sIwsArbH5ck,170 yiOUEU4KG6s,162 BN8VnFVqRRI,106 2Q0IkYxSo3w,182 ztbbFP3r02o,177 Yo5vlaDH-1E,104 uAjGtAOqMQw,130 mtsQ0CR4Z28,133 GwvrEz7vTZY,179 _7DVsN761n0,195 b65C_muXajk,164 fR-2fk_qusE,179 BuQKVYgI8S0,106 wHgeI9HnroU,128 UDINZf4W4mw,112 hFyZEmmngOk,103 xxoeXvIeZXQ,171 FE63fpN64EQ,116 MLCZ_B7FKc8,113 SpOd7BwzlMU,125 5mcjt53aqlE,127 Bo8mRH33NCw,151 8pDCGWKvBlk,162 hgqJjr7pBa0,133 KEc0SGkBDJ4,130 zH80pWTYSLg,140 TfsGgp4go6k,125 H1sEkNAlW9w,103 FYZrWswLpu0,89 tD8f4Xk30bg,97 n5tMCxz-9uY,159 6hT5xOszncI,146 Wuer3mLqIxc,230 dJltbkhK6-s,138 CZfwkp00apk,100 _ICXfAWaISQ,147 I5RQnCgbn20,125 dJhNjpuc9eo,91 pW-ZHlM3RxI,93 ZpwDcgHhFDQ,176 1lVlP8o6t94,183 6MJJXdBz1q0,135 gpjYU0C2yrY,179 gIig_bRnDz0,122 tJwt-LcbRIw,168 SY40M1lhknY,211 kFhDGoJh4O4,145 ROXLPqlbJck,158 JcC5XdvOWWM,124 dfLN2aPZ5sM,145 Uu2u8T7tS9o,190 VzXMcMcBwA8,169 2gUFZCRHHvE,177 xvZRXcg4iS8,171 Mc_zp1s60NY,118 mIeU7y3CGKQ,151 vcsbzGfvqJQ,75 VqL0Mr9uNL8,133 JJyK0EX6s_Q,86 cj8XKnVdCDs,143 m-L3k3ElIQE,195 Qe2m1wxb5_w,174 izWrKfUUP9o,148 uR7yS87K1tA,199 n0MX1a8uh3w,88 oNoOFf527GU,106 lZrD7xTi8Ss,178 5aegHe2iS8w,152 tr2hYRUEkHk,152 E9pB6_WUR-U,202 mji8ZFst3ws,158 ROeFmcvZRf8,196 _y_We1FV_RQ,147 xNc951Hq2WA,186 EqiDQxAatPQ,186 4Ls7S2nvf70,85 7Mz5jmOePsk,131 nvldRH4OC_k,134 g3D2eGiLoeI,119 --UgPWRVt8A,195 BGZN_6xPw64,115 OGEfW_fV9ZI,77 _uXfbxevYyg,186 sg-d9ZBsiWo,87 34FTDewDftA,162 n4bsNkDyF2s,92 CsfBuhXV2lA,167 V4SyBSgOIgM,168 GaIcAaHFc0U,239 7Z3ccysbMwE,150 JIsrqAWzVoA,93 PECLt8uCcRk,148 fKGjSXtCou4,139 jkZtAzrw3Q8,241 TcaAWs46kog,167 vcw4b2U_0nU,140 Z6cRw6CU7l0,106 aDcfm_9GTyU,57 klg2YuapPFY,216 7wZdMPB-O6Y,193 EaCGKhxR0P0,178 Y_U49qqwDGI,180 vJi3kGaAQfo,191 TEZq-_XkcRA,130 FgUKDQA1qFg,142 9KTEYDd0F7g,180 a8cviBPaWJ0,124 QRoWiTcO7dk,233 MYkSUEjYLc0,179 AEBd24_Uxfk,133 qp-Jr4oEFWo,179 5OkvZ-y_dgI,96 TL91ZYSxoag,203 _IwNoboTiHU,134 3PhcsTMfqIs,158 bC0vGFJbMjo,191 -DXQJLwDAwg,121 06qgPR9Eqww,155 Rp8A7gf0dZ8,179 f9Od8yx9gmg,206 oY0spjrKFdM,211 AQpPxTYahZo,143 cINFeXqwbDo,178 eoREjwjeH30,209 t3mwyiOBDrk,188 hwevrtap9AY,124 836dGO4v65I,191 s_8zJYpN2mc,123 ioE_djgs810,175 kE8qSUcrrmk,161 99ziSsaLUpU,245 vqPT1IbJrX8,239 jBxvOT0p-1k,106 zHqM-oKCPBY,149 HaK75RHhEEw,72 gNdQdrKADh0,78 fDcZoI_wy_w,137 h3-FAzeYut4,191 -Jf-E7oEguU,267 8TbUl9dhTRg,153 NGmtKz6HMkI,102 ffknf2fIpiY,112 XMt98-MEWmw,111 KFzIZnYLKSo,135 rKh4muRk_s0,226 gUeHamRZkSY,159 L7FVtB7mKEU,163 B9r99FImuSc,167 PvEongWRs5Q,128 1dwtsZ4IJQE,244 sf2RRCNlz38,189 104odr4s7Yc,91 YlHQAbd3Pvc,182 foV6LGohzBI,232 1V4SU2_-Ppg,149 I4_AaEazcbk,192 9QwQbE5Eu-I,178 l2ATZgmj6FE,125 8X5miLF1n5M,150 prTlJO34AHE,182 4FppyDurg7c,194 8pbM30ZMO84,117 Y-rxY2LxPI8,235 w5yJV_TKOWg,124 NBYfDP0IO18,134 gCHCR0wZclg,206 -c6nNzrAqs0,165 qULQCbfqJm8,165 -nCYpOC-Gtk,164 1OxDZKordaM,273 t0oqEjxOUww,211 Hb8I1My6zOM,158 MdoBOoR576Y,133 lSmcbUFG-W4,179 fDeQjTPTlDE,176 HpeiPgkqEro,90 qFH0mR6eVLg,143 VdAC6kNpXeM,134 0p9Q6tDJJ1w,177 l2zrJ_LZrhg,175 4T8OrSXKqVo,87 LunIbcmUQtE,157 95FV_p0Rivo,81 FAmaskY8eXE,235 Ycv2RoyxW1w,133 h4Zho4DUcXw,168 notFMAwEQeM,235 sdwghUH-K14,160 9Ro2O9YAkAo,149 VqAqUVcgQdE,239 r0eg-ieT77g,173 Oro8uCubA84,175 _O8yGbcFmc4,122 hFNZy6iBNVs,178 _HcDe70cSRU,149 ozkF8KRjeO8,133 3Blk7Vo0abY,134 rilZTyv9RLo,142 daULewxdD8w,132 axhUtepWokA,134 J4fNwWwH2lw,105 ikqLKMZ86d8,134 x3OTeacsT84,231 V3Gnq8VFai4,269 u-eTCyG0jpA,177 cgLMSMIU124,130 aTSa6E4_Zgs,162 Bzk_5Jzvxdk,246 b6WK3MwYFSk,128 a7vAR-7YBWE,137 5JjVwGi4aHU,282 dp2MR9fswWk,187 MPY58gIH65M,148 4C7VpH9VvC0,120 xmihht20Z0E,144 g5-KsABvVzU,189 STcAVDuOkv8,196 b3OlGLDk4pY,241 U22aGOTlIy8,211 BN77UGYk5tg,238 em9lziI07M4,186 tmUleIek9Fc,150 VbP7jMN_v-w,170 3s--5gsc4bs,106 dWdQG4BEX3s,170 Z-l7wGkNyko,168 f1WnZO7NZDo,142 yWGLNaCYevk,206 lU3H9Nt3p_M,166 vKT_HKcwxFY,183 rBy7ZDob8a8,152 2dvchK48Z-o,200 -yzEjTjo2IA,114 6TVik8mYxrY,150 IGaJfcOD6gs,51 oB1yULtM2Mw,158 LTfMvliqiGk,134 deth7hZBzxs,168 HfFM7RZ5GxI,175 4ozs0VI04xI,81 pAwoA-XPzsQ,134 06MiYpKxjCY,177 yQpFQFL-YLI,199 raSWINBYtuc,176 2rSSxAdDhuU,97 YoIcmX40-_s,190 sxyaSXAF5kI,164 z5NuK6qTdBc,168 LT9qOeKcL-o,97 16xSXPPqBfM,95 v2iOrjYQOHQ,176 wV7vM4-FzJM,130 lMYtQlLlu3c,113 vq0OqfmArnY,132 K4lTsRzlorA,175 yuU4pFcEgWo,168 J9qv_a_s7Gs,148 6P5yW3rYuMs,94 eIlzY-UcYZU,136 -vvxRiJkXAs,161 jFQUE_6Zhn0,158 rJ6wWIo3hFA,240 2LsMNs4hW1s,181 9C6DANHgdrE,174 wNuVF4lnszE,135 QzcXi2irovs,171 bMjYOV8VnYk,133 7VOpGn2RTP4,180 xURDJ-IW5YM,171 klpN-W3Z8Cw,124 dmASD5tRwV4,175 3jYu-qta0mU,125 CkKUHwyFqJw,236 njfu6wuNC_w,143 OqGw-1_vIWk,195 gqe-oAUoEto,166 wr5-v7rYg70,137 ctd3NPx1pdM,145 wKIL7__ybL0,131 IlH-egwG2pQ,186 _OrEOa0TYTY,134 1bKCN4B2g-g,106 qVDMu-erGtc,225 OEvu7pkH8o4,93 Wi4OhwrVwP8,163 R4O0t9jkkUg,153 WEvTEdLLa2s,171 Z-WSedqa5zA,180 xGon_kZAVtU,153 YNAv6w5RDIs,194 X_7TJFVH3R4,146 ZTsUO_9AT20,119 Dr6eV4y0atg,75 JkQzE831VM8,196 IgTIy5MUBxM,160 YSfBTZfswSg,129 iQJh6I8kH_E,133 3wjBPKUDk_Y,180 C0KLb_v50-k,166 TZyl-21DgPo,158 XAa7RcPdE2U,165 w424xCe0eGQ,164 L0-Ye--I0Uo,227 SndhPCSVtuc,132 JlvCQXYfOAI,142 DtV4RnADOeA,206 V99QCtwXKsI,168 KwfnVFtdn_E,96 NizLAsFlvww,64 bxPCTjukODY,87 kFeduM49hBY,114 yceziOf95-0,120 oR3h33DSGPM,146 BdZgC84uYUo,150 07kluxoO8j8,211 oZ-BCSM4O8g,194 mce5xJi8uH8,70 AZlZO5TT0wo,218 dqfoyAnszH0,113 CB73lI-OjOE,249 _bS2cHSqgnE,75 oNGZFJUThHY,155 JJeNvH2hmPM,131 MH6W76ILmEQ,129 BXveaReACHs,132 w0ijJ45l-kM,179 GZQMDeQs0-k,130 apo0KrJVXMk,101 BtTX4ExS5sk,80 sHqb1FwBP2Y,178 GIa5OfDBSBE,131 P04IYEOIr38,216 --Jiv5iYqT8,123 pu523TrIMpg,132 ytd6Q9IxEzk,157 f__qWwak6Zg,166 BwnOv84Uaf4,229 mEPcdSaEXEo,153 _j_ufc9wHmY,130 jrhB_dBxc-8,131 DMbglmaMzB8,193 LTS4bKTgyik,125 -8CnljMrH3k,114 dEHht_iK6qY,120 oMWqB05lpRU,132 jhz2fVM1rMA,120 cBzuWSSTTs0,142 JGyNRQzR_Vg,107 zVw5a4OjcIE,58 7aW8QnLYxY4,132 82dHCGddOSU,175 ifkFfWmEc_Q,169 TUw1XgBLILA,108 glkk39pJQQI,178 2KvZqLVSL9c,87 VuVAsd9jMjo,153 e0lfNxwgszA,175 uSO45koeLhk,123 -fL94BTrFhs,132 1adrUPgj7QQ,130 xKffjQ-iU9E,121 2wdQcUUgce0,165 KU8y7u-xqHg,230 6KqG8CYcMKk,130 6wC2DqFJ7UE,102 TKBQuK1988w,131 ataOtn-F5s4,125 senNDipdmPo,132 d4Ljj8W1hE8,145 wwQev_zC0y0,106 I6uGId-a758,145 EeYI0V2j12g,96 z67zZuCIL-s,100 CaGEzKJKMTs,131 DvS1BdiVC7o,200 zTlfN8HuEJA,120 4akqi6YYIJw,125 Oic7kJRg_F0,132 lUQJN1xzKpc,191 2ad7SgwLNXo,162 6vjDZQtAKuc,126 I_4ZduVVJrc,171 97hoM2qv05s,131 3BSdoHadj2w,131 cXjzLXjLBTo,130 6Wk1Sob8Quo,126 lu2-RuTwlto,178 SVHcUk9WH_s,201 ljGqb2loshQ,91 e7Efjj3_uME,119 MfBr9ylnuX0,110 PEU2sirKyiA,125 QrmQqEg4isU,117 4-8adc39DV0,149 bvFHRNGYfuo,178 De2qscGlWX4,133 0YzsWVUO-_o,113 _tBJcD9jxvE,119 QxcCdLaKhd8,113 QcqrOIxjeOA,125 3QWd5rCd-R8,150 RbMtPUPVZ_s,178 xSc5s5MKarM,175 EMpPWRLRQZY,82 PzuBG7VmIlk,179 exsURQ8bUkg,138 I1LFslpgsRw,189 5f0cBrCTeis,130 _q36_9BaH4g,126 TabNBDP679U,87 5HoL98HNOr8,178 85RZMIAL7vM,124 dadFHEMhfxo,229 fSu5W0BtXG8,143 8l7lDn2hUTw,128 78WFIwR9FrY,134 8fRq0mDBzi4,134 N6CNJBPPVyk,106 p9shpHAh8uc,129 IVhxiyqp4do,155 MIjkFrmSCYU,124 mqJxvhBThw0,110 Z4tC4qfv92Q,168 ZpkIPtYw01k,132 q1ogthNk040,100 Tx-kB1KKLJ0,168 lrViTBpl8_A,95 M_y-ZHpKCqs,182 pMx5aSV7qFg,122 6xaUD1jKFWg,130 N18AtSAxJ1I,167 M7Ot2vswJLE,141 aHV7IUgaCy8,235 OFPi1vG6A90,129 WKDoWddM0vg,131 rsyw13yrRoo,128 QFzkyceRlW8,157 aq45c8eGVoA,133 qFbjSxE1xzU,149 jZtlV8eroS8,122 2oMW26rEZUk,156 tQJTJdTM0Wk,132 zD5BdMcO4yo,131 -HPjEz0u-9Q,131 y88S2uDB1ks,143 ZEwg4041Q9M,172 yaxDM67F72o,109 o0Y7v_EbE70,125 qZRbStnLn3c,153 Y-zjMdsTYyw,132 2GSGR3yaFss,209 ebj_l5icPPg,131 fdOrjwuILCE,127 Y--MuIgwfQ4,125 Jj0UuTkXIyA,126 afifn22_IR0,117 F5GWqOrzQ3g,189 5NZXmq-E2tM,131 g1RVgC8Vw0A,117 fUnQuA1z_CE,195 bMg6mfghJHw,132 vZyIBlDO-E8,139 rtQQwsPJeBY,120 F37WD6OCu7s,169 nDBs6ywP9ZE,159 UUZsR3rFjEU,132 TOSUY8Jmjzk,152 zHoZ2Ti6xco,131 Sj_A7OZz8TI,132 01tx72R0gP8,98 BgUQldQC440,155 YP2dblWITA0,132 ePhMSnfYanI,177 MYv8K_joa6A,129 L2PdSg-w5T8,132 oeGwe_Y07_k,87 1y1cthozBuc,120 HpmdYRs4lEs,132 E5aXYsk787U,127 7kihC0VFaQE,154 Jr9tBcUO68M,130 hnsP1etZkr4,127 kiEe33aAucU,70 tgg-Fay2zzs,131 AUDCrt3eXyc,109 6ZSsIZ40GAQ,115 46kWbFAMHoc,134 bjqsWtO5Xjg,101 -Jzi-2lYWEw,130 urpXO9VLU0U,139 yClVlc_niac,132 UixHUUJXcSw,63 jWUnIBHVLYQ,143 -dUYR2apxdA,123 hfNvGT9X-7Q,110 sKNAfihSpnk,131 kHRe9qdfLsw,147 _v1FiZlF3bU,179 As70qOtE3Cg,132 9F_FhwkKdSw,168 StnmzjqMKRo,131 MJBoXI6pVQ8,81 3jNEs5M1Sik,142 WqYtAApeiDA,132 oDRFKZVZwcA,164 LeVEbbheUck,121 ZhBCiQ49Iz8,145 YpHAGZoV1ds,88 1QvItdreFLk,123 UY89o4QFvQM,134 kG8GuXOjIPA,98 IRZrsNC5jpg,126 cGN5hLGphX4,114 Z5nYySfvSi0,132 -N2mhlvygq0,129 pqzMo6SfXX4,147 1_BNy6W4sRg,183 Q6luiTx1pM8,175 --aqjaJyZLk,124 i-9K5-x7_so,158 qTa5iKsbAno,132 C2ILSuQOmEg,127 0IyGdSEdk3g,149 Ja2fgquYTCg,108 VagrTsi5vsw,132 8OWCY47wOAI,175 1p8KG7IdzPM,98 rKfcW5cTU6o,76 nAZi4yusqlk,180 yg6v5Ur4pcM,132 HdcT33sKbn8,178 qN7dJ2r3zoc,141 OhO7kPNJJn0,144 PuCu1XUGntA,130 IYITxGniww4,215 fgRFQJCHcPw,90 kQI3S3inEXg,176 3GlfIStWMSY,179 xuVz2BPLRBY,101 UwTKqqfS8FQ,141 JD-K9Exe8jw,128 LFN4NtioY8Q,102 xuLi1MdUKQw,120 XYiiAHc3CXQ,113 rry383W_mJU,177 YrtS2_TfbeY,132 1hiv8o-SRZ0,195 ih0GAi4HWwA,162 Of7LHW5cCBQ,114 ZXhrgVj--6Q,173 BKR1-S8aRaQ,254 5vvtNVnzxaA,139 vsPVyvwwVns,165 m5-bSlttk18,60 oLO_o48BejY,241 4otU-hfAOO0,80 -9T4jMND-4E,184 nOpwufXdkIk,128 xf3htc2iZ9Y,126 WeBy3_xqYtM,131 mt5IvL1Uw7g,153 EiTYwecY41c,128 zXmrYueNCC8,131 5QGrgYkudfo,210 9D9RXt18Qq4,96 BDLvzvFFRu8,174 35D2hJCrDVw,103 r4vQbzdjQW8,157 yg0yDvEqfw4,163 jZYr6ALcDy4,156 thhYv6-lz9A,60 Qa_hiWmXFUA,203 CRXyWtv-huc,132 ORQgPS4lxmg,155 s6WV534Sfss,171 kMRM-0GvaQk,218 yc-qretrU8Q,84 mw3M1fIiegc,114 4RhqR2ZGkc0,132 8jkM1zBTJIA,153 FvEi2U7IKRE,171 nLykrziXGyg,47 wbfsRXuNwDY,107 zW7btaVY-Lw,132 In_UKcRXzHs,86 lNEX0fbGePg,155 GQJMW4W_278,123 nXmtkGrPEuU,78 ZYzQFudZ70k,142 Re5WOfcJg5A,130 4ipKK450XwM,197 _gEt3iNmLyw,133 -_HF-nKeabs,103 Da7GSy-6mJY,130 t8DHTGsC528,140 RAFmFyb1siI,139 lrGIfJdbUHY,135 UBPOSCR4el4,102 v5N1Aukm4Bo,177 5SrayNqew08,131 rUczpTPATyU,186 o0lDxz0-Ukg,171 RCEgNkU7flA,131 XsiXAckgh6I,98 3OLIgEua4PU,167 VfOrY7CidTA,140 Tz4liX-da7E,181 bAI6N5Uo7SQ,130 up5GI3Sp7Lo,132 G2mYFXmFQPw,127 DvoPZUYUdEM,150 jOAHxkUMseY,110 Rj9fUYRr81A,127 xk3clsiBnRE,54 HysSQiXYjdE,201 5FcTzH6A4a4,145 JY6N-tEppkg,131 vUTQexv1mzM,70 5e7c30eNNy4,130 bNdddrIe6dQ,122 YC-2vmyKkV4,160 CR5Jp_ag2M8,106 TxuEWb4b_gU,120 ccyYHEuCHKE,106 xT7F0eKfctg,125 8H9u7P1d87Y,52 UqLq7sMS2sU,129 H-xjMjmrdl0,89 thyfYONK0Hs,121 ZObnyBWAZSI,131 V9hO8rmmaXc,157 oLPTh_DaPa8,112 b7fFwDI39Co,115 kIrQoHQzxnY,52 lnN9r-mmKXw,155 FixQE61iSDg,132 E6KKYD3eGlE,125 jpIVQIuoX1g,174 CRnadHP5JOo,120 _5p4QdtkbC8,105 vuJrsCBt0rQ,83 5s5GkWkrX5Q,111 hnCQCX3AHzY,228 Fbt2UUthWg0,116 eeXePDLKsmU,131 wW0WRqnLYMw,227 Ip7GGf2_b6Y,129 Y3Y3HySArOU,136 SR6W8_yd3yM,140 5EEMxJOxXr8,138 vbbHaMTLrbg,172 gJDosSrvlJ8,164 YLID2odh-WA,86 iKY407VXg3s,81 GsbHL_lQy44,172 DGABqdbtQnA,116 gS56O-aHEMs,107 LruyfJJT7qY,157 hD5eqBDPMDg,47 x0Ev2qiY08M,84 YWRzPLzHJl0,110 oHOnldgbjy8,130 z7Zevt3riNc,128 LJq_hnR6CHc,227 tCFb_FossHk,128 G1x0zmX-PEw,146 Z6_Ti4ntV7g,119 Y6B9nkrSuMI,177 lViscSQzK8Q,88 nuVfizTRHZs,153 5CuKjYdDd50,188 dqG51nM9k9g,282 gP_GbzDWoY0,117 -Ot948zIr0s,131 gPlxDB94t80,141 EsFrRaMQMPA,130 SEWMcT6bIi8,131 u0fi902X3qo,147 lM8xJqeAEGI,130 2oGfncb2usc,207 swo423cXQuE,195 ZlawibQ_QKI,123 IixTpVt9Enw,100 jbeyKcGqxyI,178 qLwEQ_18_V8,122 LVflxqHuw2I,134 GkkdbPYW5QU,131 a-h2glY0jyg,125 RY_kXET2cyc,85 z_gsKwtCy4I,131 n1gQ-1zEljg,152 wHNB8IHfHdU,169 Ouht1xip9NQ,131 EIzFKMtPjH0,76 hgAlSQ4Ckz0,134 Pz1OFqEVi3c,131 JNPW2wZ4D2s,67 fWcPwWR4C_w,134 FwCOP-yKD5w,205 KPAnWhVV5dI,131 9lCBRKyCsVg,132 fAenzYV3Cmc,132 Br5umHOm3TM,126 TuTOzEYtgzQ,158 Mh2Tf40llqw,121 Ta2vBD-qOwk,65 2mbvrOmirQg,170 -CyRDSP_b5U,117 ucQmXLgGIVA,110 oMpgPQbRt8U,132 gi3gqlWetJU,78 b60vt92AzKQ,131 RB_-9bINJCM,162 5dL4tZZ-Jq8,134 421eYc8zCtk,132 iFm-KZgioX8,154 zPtKevwg7Ko,131 yK78AHB5dSs,162 nBnICWrKboM,114 dwD4JZsAuew,127 7WdGe1bDiuU,122 CR462LcwVBU,165 FHL1AJ0wbck,124 vbUTbqwKtEE,160 zdSMdOcyfOU,175 qA7XKmC5QbQ,136 pLm07s8fnzM,111 y9d6Tblt1kE,146 d0x7-oo9NAk,210 YczVaT_czPE,170 ZzBJxdyktNQ,96 Hrztxo5t4Ic,121 MhMqjcT7frc,104 Pwv4avomXYo,118 b44FCgewbdc,147 LVm_DbyklO0,106 bTx918Kpg30,189 xV-Sj_rjJjE,99 2j6I87SIfbM,149 vG_FLK4K_T8,136 0niEZsahtEo,107 23v-gPJiaZs,154 gKEaLU9m0Gc,119 DfW_3qH9G5M,176 0quEnseH0zo,155 2BuU0LMgxl0,131 ESkmmFHikgg,183 uCZStp0Z_xg,130 aW4x-PAnrO8,118 8XREKqJr9mo,69 Wjc5NqqF-1o,87 XhxddKZYvH4,134 oZoXYuatXzI,127 AwLRD7iEEKI,132 sWKTV0ScR9k,131 A4iXXQr7tqw,121 NEJtJu--hto,132 Gt5xBpmHS5Q,127 JghXTjexZpE,117 jxID8oHnCW0,120 xpkA68e5HN4,129 CBOzczGQh9w,132 S6bKFjxPbC4,99 PA3kETvUXJg,131 FKwYBGdhUpc,97 0R_0E-YNBrY,99 7FkWC2S0MfY,124 5PgAKzmWmuk,130 0P4h2-R9Rak,124 C6hIucqz4_A,178 EANmB0vOPqo,159 gxeIvClLpKI,135 XadVTfPZ6yc,132 k6YFnGzHfKk,105 VsZ4L4HwUFs,125 pO09fucTEuk,42 YkjS7wTVKB4,69 iKn6FEEToy4,196 X32pSJrgF3Q,147 G6zOqkX6qTo,293 htCHOTJBiSc,179 0Tv6PQbWvJA,72 BRHFpsNB1PI,125 irkGAhW7wlQ,128 ryRzxiWudaA,179 c_GNsQnPdi4,102 tuq5JMwWRSg,91 aTUTnjUBitc,182 sKnZBUh-Lx4,151 0mtMkMvdwBw,104 Z46LYLKuros,109 5OZPyf-QseQ,134 OtXieOlT7SA,128 x8HjCP3LqHo,155 bq_WJS_HlPc,161 q437KEcmwmM,130 Cq_Fag11NRg,131 GMCKHfREAPA,122 f15ob_n_tfM,163 w2eNQ75wdq8,129 bNg1XX5ofhw,166 m5p1wM1ZHQ0,104 mYS3zyHIxqA,145 LimvO4zrETM,132 2EWQ4s0Z5oI,85 C2s_9Cx4AG4,120 qoxMZtAmAiI,107 _ZrJXN_vrBs,125 pGhBFh0cXRU,153 cnQEo4bazIo,101 SLn4BL4gP_w,119 V_tlFZCiIHo,108 SqpBUHMR99M,142 zlfMo6Qe2o8,128 bPNkEztLgeo,173 tLadr2v8AAA,162 TxouT-qgqwU,171 NOXp0ABEFC4,162 yPg84oVPnE0,70 eYMbAHC6RxU,132 v-WZINgHnFQ,70 xMOzBw0mrcc,223 MKf_SL_owsY,125 eUELANo1Fic,123 cf_0FH_2934,118 JfJVmzthD3Q,183 D8e5MaEaWJw,155 hEY2L9sXjwU,132 HxdxfEN2v9s,179 AQX2Q-V2Uh8,170 Xwmvrx1wq4s,152 rjsre1tcGWU,130 WCKRXHDI9Ro,178 K0xpWKgNCk0,132 i_FoR7ZV2EU,172 Y15DS1LKh4g,102 qzkFTptrfbw,143 RWIS7olVbGE,162 dFxzdwS4yE8,140 4zT1vWidAJ0,124 zFxq7CCpzss,130 D-NH8NiKb54,159 8rNVaY7Stt4,147 EJ5ywAAmiU4,132 shj7YP98Yxs,127 ZVQNsHBi9oA,179 INE0g4kvXLc,119 HzLYedqOPIY,121 zV3AZFuaJVQ,143 mv3qeSxmp68,132 On6-ADTS-g8,74 _nmYaR_ZllQ,162 51iAljD9Q7Q,155 pytH_ezVouk,117 d9ykU9FkH-g,118 Bl6eouVUsCI,154 _ihVsEYQP8E,203 P-GgTCUYjhw,191 0W9jZQetuB0,156 vj3mnCSJq7E,132 zuKBp_n_o14,121 YG_z4RpxKWA,159 uwHPOHdscwM,112 blWBATSOCtA,125 gr_2UA-6hIw,212 X967_4L8pmc,175 hAiiaFAJ1mY,117 ls8-S57SGSQ,158 lPMSGTfK4Aw,110 MoOwbXap6LM,131 AgsxHmawNqU,117 ESSsStp3pFU,149 LW8CpOzdT5Q,127 ys16MvJ2XVU,158 aTJiK1i4iEQ,131 x-FLqiu9nTs,130 OwYH_j7c9gE,129 M8gGpyKPAFQ,66 IGVwlBTTqYM,160 70kZeFs721U,174 pHQsot2suvI,163 Aqo9z6lp4GY,172 hLbozjgBIE0,115 _qVs22tSUnA,162 cNKYmHmy9OQ,143 A5xTu6AMxq4,127 6kKCbDw7lR4,121 ZGFHY5JjTZQ,127 BZjqqKqaw60,112 aKojFoPzQoQ,132 5evtdZtPixQ,111 8iQfU3VUrOs,143 bjLdEjOL1s8,131 1ZVwo_elP7Y,125 0PdeHy_87OM,153 MLZ4KzVPlHM,123 kPHbIyDTPHU,128 quaACkqyF3M,127 RH3xL8H8tu4,152 Tsi-yH9juC8,189 TIP0eokPc5c,166 msaelEZ_eEs,192 FVg9En9jYSo,130 3lkG_MD7T9U,131 qjYP7J3oP9Q,131 BXLhK4ra6tQ,131 S58poUaNwiw,179 xEvb7B4O698,131 T3iSphEl9WI,115 kyGcsRDBJLM,76 x26YFcaLiNk,71 dFIuG_DTVOw,176 p0BpMFTYFpU,119 NW5u4cCsNUY,130 JvZ5nh7sIzU,175 vfutImUbN7M,121 S7rZsWVUAFI,124 ZpX0rril7QA,131 Fm4WFtwxJ9g,179 _QUAEFiNatE,130 SippOkFBMAE,128 upQ-MXF_ZgI,178 Q16cb-O1kTA,89 e9vPvHO8Kp4,152 -it68CFJkNg,173 36LnnBNcETk,126 hEZKrsmIGyg,158 uzcyJ9sN98c,158 L3vbfkRB6gQ,144 ZptjN0wzIdA,116 e72atw7hctA,131 sAtsZPmjExo,164 cNiuEFffzf4,136 T6wetejGqh0,142 yQ0FgE-WKi8,138 GSu7BGbyJqc,179 ITMren3I3WM,128 BKTyV8Msk8o,118 -5be_UPkLRw,103 51euUliFZ-w,132 ulGMlIZNr6M,60 QHuTlVI2zgQ,185 qmzYvuFtlM8,115 fRQsuCJ-g4I,130 A6Mwoov-lGc,209 LmxUk-KxjoI,177 lixII1thTO4,132 WT1ae3uyKmI,134 XeO3jMZphhs,142 amtxyPO7At8,108 9Z3eCKZ69eM,86 S8XR0_wlYUA,134 ZvvlFocf6LU,132 qAZcl9BFd38,127 el6nzbxrsD0,178 mnEpL-H7pms,138 EroyjPcw3sg,173 1sE-YwK6_PI,134 eiLeBJUf1iE,129 aPeZmPcpiu8,98 97wa5FUtuG4,77 5fAASR7YMDE,175 4lNoSUurdKc,116 WLqx522tlYU,52 oL8QGyo50_M,175 nxWj-7FF4CI,134 dj5zbxA4bEI,129 mDnYsc5SIJk,172 dp_aLWPZY8I,128 -IZLCY2_esQ,123 jKC6UsetwN4,113 elng_KRvuqY,113 xG4b0-DSLrI,128 I6wRZCV7naE,131 _uRGjnG3G3o,114 4mC5CUTwjno,130 bLsnl_fdBoI,161 qDFzVZklg1Q,132 HKUXzME_3ew,140 9pX1hxYW3YY,131 5pLpIsdg50c,124 qcdR-kyqqHs,165 -SXbmeFCnTM,135 CHyJRCF3sEc,116 UFcmai6iKzA,133 tI4RvWvgulc,76 hpaXyCsOZUg,160 5JU326dvQ2g,121 BRccUGaFz2s,131 MCFqMGgv1YY,142 9iPH8MXkPEE,209 d66vE__YWME,130 G5qPGKpTzXU,208 LAmOoIdTjsw,172 sOPwbePhOXs,187 G_tk-vS61to,169 U0s0czlJ4xA,113 wGmDAjRRNXs,179 qWsC4YHbOlw,187 xEOHMxA4C-E,113 n3BgbwW6PXc,88 GacX6Le_uDM,123 1rlSjdnAKY4,92 kui9LWtON_k,163 gSN6EodbL1c,151 S7gyibsEUAI,238 RUpKMSWPjZw,127 sL1b7ZnItoI,91 BQpfa9RZbTk,185 ynwah7YV2LY,149 QOWkXpnwlek,142 TdT_PiRLsaI,131 yL3JcykFL40,74 R84dKkPAVpg,162 9cySKHPqIjw,133 JH3ydCS19Ys,179 D2HaKTqp4fQ,171 eqC9wr776KM,132 4iNd-1IPrGI,78 Jipg0KQ4id0,131 qSGfcCO_h4I,108 z9P5NdzCcJo,153 3cTyY36ENxY,129 f_sRtGI7Y0g,100 KrHaRP-Y588,104 6UKeesKIuZA,81 BGyfOMCRBn0,134 9Eo8snaeDJs,168 kWz4LQXH6bE,167 jm73CCe1e4o,129 5ttoICpH0Vc,140 6_5QkJsNCho,131 UsJjfS-i2zM,129 ImZ2LrvQcCY,146 m7aDde36EpM,158 jaA7_aOD2ig,134 mFoZz6PG72k,129 -mHhr-aaLnI,90 HEMqddRGVBY,130 PE-3JxqiV7M,132 8YGn0l9zfew,124 8Fgz5cARQZo,129 IsG-tXSQRX4,93 P1o2faxmQYQ,250 XXk8J83A25A,122 zB6pvQt0I8s,132 8Kfr7BvVmlU,108 mDUSjBiHYeY,128 SpSnm6rxTqU,138 fNxA27iQkGw,171 UemGzlKVwsk,113 zvA-7VuKQCU,111 xvOaMA9l4Sg,171 lISBP_fPg1s,159 l1jCg_FmQmQ,100 S_PMSA9fgiI,118 oh4GYHtq2hY,132 lHNgUHi-WPM,176 dTM13gYxkoQ,116 OvE_mDtTj20,107 tUuzV9kwSBE,131 t3XiTgsmyZc,170 Uv4Wpz-N9Gc,172 I-wCCN3yowU,130 4kC1v_wKF7M,103 HJV1Cqh8M5M,155 CpFUyd_7XIM,130 1idxZC0VSxE,132 h-r9Q-YItnk,127 5wS_6ok9u2c,119 LVpnmOXvBR0,131 x5m9etGofg8,184 QjLwuMqSb7s,131 FAaogkawcOk,143 H8ToqWfFevw,98 Z8GFmshpZ0I,200 m2lBtBvgiHQ,165 lJ83ILGA8yI,210 5fg1GTRuYHg,112 b854qv-Z-ZQ,178 PmFEdtB8eNw,121 GQmt9W6Ky7U,129 b7NJkxnU7xI,132 _IdlZCqJ8kk,159 pCiwEO_6xS0,129 MpFrgOc9KLU,121 XL4aLIj7q9M,127 u-2jqTXKQyU,119 ic7F0sCFcZ4,51 r-xcvVWqny0,187 8R1OS5jPh2s,130 JaGoM25tGVA,132 DvSmeQSDTco,130 Q0yQbpoQ0hY,125 ZTCtiADVAWs,130 -ip57avHn8E,170 K6qGwmXZtsE,131 TUzp2XUhskY,122 _vNaSVn6qSk,181 09-K2ec8lyc,131 8kaJJGWYXxs,156 2bpkd6hwH6U,114 NJIjNs_s2NI,102 DruCG3LJiiU,131 6RVyL8lNtj4,179 xsL7T32XG3M,140 sYk8M_ZTNlY,131 NocIDIeLTqA,94 zgYGbR8f1PA,130 _qjEm2ll0qc,165 gN1BjYlhKvc,153 WiXoeYPz1LY,80 _BeHUjskbZo,132 TEpJFWUw2ts,74 srJAamXGepU,87 dUi0j-vedRE,165 LkWeBzzBUXY,121 l51fnzJxYUE,160 3ucBVz_IFGk,129 gRLpvojaVBM,131 01RWw-3AKaE,119 EVmLV7swH2k,131 EQW38-aU5gI,95 hSdrwqLUpD0,130 tSZtoveaa0A,179 WSxjWLWu1WE,136 4MyVJn56UFY,126 z1F9D6LVTkA,126 vRXk74BCp-Q,143 iz2ro0h_TmQ,95 Zc3wIAs3coU,188 i60a-KYSCno,167 LBTE3aH5gpw,165 mphHRcrJfNE,94 bbVqciFRioA,112 fWa-h0maM1w,91 rsT1bLR2sfM,163 _kyTyYh6LZ0,132 QhGtm2E07w0,101 Ko0E8tEu7HU,95 uB4qHneHB1E,116 XlvqgnIkzZU,145 mp8chvACVBk,125 hBXcQhkyRE4,143 ghDDdQxgXRw,74 JtFkc9jD5KI,136 8IG_Y8BrorA,159 7_uvEuNwUj4,178 ofmssjTsGnE,132 F12X8zh4aCE,185 bnHKWNBCKQk,109 q6XF66xysgQ,83 S4p8_i1lcCc,177 OViadirUIp8,155 dZwnXa6XHSI,131 7CmJFYoSgII,166 -HwMH2_-oKA,97 XECoJa7AU-c,115 zGw4fC_Dxo4,123 PoLLgzdPkss,174 xRkZAfoaEw8,155 J0SN6An2yCg,147 wUJccK4lV74,149 m_KtsgEoK4Q,149 mIpX6PnT9UY,182 ai1wUoboyNM,132 5ogVT5mpg6c,130 H4PpclIJZHA,159 Ogl0mA_15ys,121 lVdSRz3Jsjo,145 NDV-ryLLkiU,117 5KnFcsSIzbg,157 ME2S71b553U,129 ter7pAZF_nY,138 jzeYdxu9S3o,160 NweXJhbk9P0,97 GO4ExuqatyE,134 kxjwb5cXTI0,119 zkTbNH79i9A,157 7mGr4Uc7ebA,127 PU4PQ3OJn58,129 k2edI8Gu6k8,131 xHd5cUGpJs4,101 ioCaBQBjEBU,163 Fz9Y72jbsxU,107 FTV4FUlcIwQ,88 _qfIfbYkBUk,137 P3CF3QER_h4,145 PxsbL4Q0Lmk,208 09oumdE0UFI,210 xfeLsPRl3so,134 S5Y8tFQ01OY,81 aDCXE4Np1OI,172 dcIVsX1-Aio,55 delffcg5VZU,129 XPcqVHZo22M,179 ro74_tScvSA,123 pIPr7nbUCAw,85 FVqRqUIDG-A,177 jVGX-_Iodwc,178 c8wj-v1Jdyc,83 ahP1JZwHSh8,132 HZEaFYQecn8,147 uy_2GCNyzgk,118 QTI8XMmOjE4,158 tdXshjACQx8,84 t-Ojbv20L80,156 yLz4NXK6jkU,135 qkHSTpTqlug,134 MeRtEy1FVAU,130 YADVuSMFS2M,294 3ESS6HqOuoc,138 yVlOitZ19Wc,71 D1TC1n9lhXU,297 7ke8XUZSYLw,170 4cSZVMEi710,149 LjiRvVUmets,187 1MWZ3mZ-tUM,131 eMURCJgRJYM,133 dWQ3B8qTpes,131 sXHsY1eoIzA,134 7s91-5542Zg,143 JDbwEQG2cqI,121 gFb8e3uaeIg,131 EF2WHYOjGhE,154 gAmo3FcaovM,121 ih_V1Ns2UFg,131 edgiUq5ymRE,174 ARLZaZd3fAg,132 AUBAs5rWsaY,159 mGLXbK2XWMY,131 0u0SEECyGlM,95 F0uwp_eoMW4,141 7rI4qKw_X5g,128 SauYDhRS8qQ,157 woboXYiH548,190 ue_EAEC12X0,160 eKmMFRdNCEw,126 fg-43OlaJtE,97 7o40za1wAlI,117 pTvbSVyWP9I,116 Gyxw8a2hTMg,111 hFH6FoRzSpM,131 MXcxWsdjYHA,62 FPBY03u-5Zg,166 0_m8AmAm-XE,131 8JoOpx6VwHk,130 w3sv1-F1JeI,186 rETUKp1A-xo,174 5Mx0JL_2YKQ,126 uiuioAkuDro,77 4WfCOqrgbSk,128 zzgvxdPlUwA,132 qFiFKP6Jxoo,118 f92X44rgum0,155 ILbPhe1Wg9U,143 rxGjeoSRNQU,139 I2JSXKFWqGI,171 P_8O-iDvlmA,128 qUi5Lo9SHTY,87 F8QVrLcmRdA,126 Qe5bvae8I2k,169 cAKtpCo8fPE,129 maWca5IRGt8,128 AmAklov1ewQ,113 RKui0n6Z7cU,130 OI2JPJj1d6s,131 ntsuIs20RW0,169 e2Odq49gEbs,135 BOwOiWDD_SM,143 1Up-oGfiosE,139 EfT-5v5YIt4,167 uCMat1QDt6k,114 vjFG-4Ge668,132 kJzOYZNQv6M,147 _jru7QsVP2Q,122 iE9CEAzLPKg,113 UuRb2YYEYfc,102 d4ftmOI5NnI,195 jVS8e7I6Co4,40 qjFCVTpsIps,131 I5XMnxp2S9Q,86 Gt4t3ZZsAnQ,132 SeOMiErBnks,133 Ha-aaENx0Fg,110 rfeDWXk1jso,131 b_FQEg7ScU0,190 wYMJal35N0o,131 4uDUNAPdYb4,76 3vDe4jJvC_o,172 VASm7dDXDcw,146 21Dc8a8X8qg,131 6hiEMyCIoQ0,127 xrJkcV4DGZ4,124 cgg9byUy-V4,125 yJXZwWi2NdE,175 _3w-4zC9FHU,132 wRM5Flw2nXY,178 uSYD6YSaKgQ,132 MJ_32rbrHdk,131 mu-YLZpB6is,132 exl6XfbWP0s,131 oh2MX0EftaU,136 BP6N_JrLUIM,100 YwqlCZ5mCdg,102 fCuS78YHrOY,132 WkjEuV1fTrk,98 jsz79bztNJI,132 uzHwlt3dmmo,139 SRJsBidnCV4,105 XCHKYNFH9Lk,145 iH0GlpUQYJY,144 vMUONm4ihP0,151 rZsQJGk__DQ,129 xcSwBHs1uD4,131 eI4FXLtPBL0,131 JjSpGeBqJR8,146 XqmCa8WjX5Q,131 5tSi-wyuccs,123 Xsa_dy0w84Y,133 JXq2nnnhqRw,178 7SZs2Qr0zvE,73 IOK6qpQ1vg0,197 F7_aagPOpUU,132 -w0WPkB3XJ4,130 ZhdlKgAakHw,172 DKQXxsio-Gs,151 KnzWMPHQ7Nk,137 3opX0w7T_qo,179 ya84jIkf3b4,98 9EilqfAIudI,131 CvuOZXVcCHQ,181 zF-3wgcDRk4,89 zGzurjIEhNA,104 9rj02jWyo94,183 uXsQ8IIi6YI,122 unrqBYYTZI0,98 hQD_fanPkns,120 5ywvhn6Y4aE,174 VEc6d81jgQ0,173 W_hzD9mTSpc,148 u2107BTcDbs,132 TstteJ1eIZg,157 Fyo66z0NtHY,126 qdq07pa6sPA,83 Dw_6CTZVb7c,146 GXnlDTh9sCU,112 RpbUeRN_rcQ,93 iL1JlXnbnt0,143 eO1Jm4N4rlA,149 RlOcas4K61c,178 IP7jsmECPbs,156 nzz_3bQHyiY,132 fFUR02kaGTQ,114 Cr4KHgNuxcA,132 fxYkJbBKxZE,91 J7M8LuEC99k,148 6ZGvkZAP4lY,129 P8ROhP_3-Qk,128 hFoLv3bTLSc,103 w9WoH1MlgvE,114 KmdBHOUCDnM,229 Lf93YLs4004,85 YGQZwZadSfI,141 5wRnpjDfEz8,171 6WGP7utz8uA,148 PrzgybNYBs8,103 3GiWce_xXzA,168 PruSWq_FycA,131 km3VtR6mqmg,177 p1tcs_fTz8k,131 IIBg9UQ_mMU,98 lwfuUyTMpVY,85 y03ITmppyMI,86 L0CL__Tvp-o,79 VshyrsRdoF0,130 WqFEn5wQhBI,144 20IyieiS-TE,121 lOwjq5Cuo-w,64 vR3yb8mNLYo,169 Mjkt4UgcTmg,141 I8xuqClrB3Y,205 OaZa0tw3Fuw,132 9UZ8XOTp19c,132 vSLOINP7w0s,130 yV8-IGY64pE,161 0eQBa4JQzDI,104 r1gBq45CkgI,135 SfQAxD8v6Mc,194 SXbUNuTQJds,96 jrPvugl_NVA,129 bJNpX5bfXcw,132 RGF6Qyvz2no,158 LzKWVeX9qQU,146 x7RM1MOhSic,132 uO47LgAVYCc,152 JDC1IK7TWZA,69 O6Obigg85oo,157 1wP9Mu1NKXk,62 cH_nhvO8stg,131 uopLUlluf-I,129 q8sWDRO5C4Q,159 UQRxN8qagG0,123 TBRqPFkAQCM,172 Ajc5z4sg-O4,91 2EKDKks9qtA,125 QtJwMKMz6-M,141 s6DlYFmuJXw,126 I-RrVLbC-q4,130 OqGUDvVYqlM,114 -34RUyP-DH8,124 LPPJdOGshUM,132 T-KYqRfLg4U,149 6F-zsgYCXwQ,175 Hpc8yqHTq-I,74 lPE1uBdcB8Y,131 YPZqfRINveI,178 pzeu5peH2n0,136 VxwsEqiptwo,187 JBNOsPP2yhw,154 1x4SX6FUEUo,169 -qdHE9-8spU,132 SxCUyc_brKA,130 G21su-YdW5k,153 2kDPrNRTuQE,131 nVRCznRsCgY,137 uiik3zS4y4I,109 bz8JoC9BpV0,134 ad65spfln8w,168 18ogMe0oYvg,146 Asm-9UXAOog,130 GJdCx-hCKsI,52 -QNxYSDdpig,129 b5whTkIQ32c,227 Fr-ilDHT3gM,84 3YTIMGmZUr4,124 KhAs8aaZNok,184 Md12rwlpeFU,116 kpjWox_c9Ig,130 HFWG8MMnr3Q,138 5xIU6_w6ohg,131 7dw45dGMGNY,171 BLbh7T1mPZ4,139 fIh6HDeXKGY,125 xd1f5GeUWpg,115 RxFBi3z1i3k,128 xAPOeXEUwnk,156 iEV_pQIf3Og,113 at0yN2HBrt8,225 yqdfje9b9WI,131 cTVafG4_CaY,146 gmedATt5viM,132 KpOUP8mC9fk,132 xuaHRN7UhRo,119 OH1mI4-LqHs,141 fZPyHZo5oDE,152 AbCowKGckKM,181 Ol5eFltyhLE,150 S5-Beq8JVsw,186 QU882zzREY0,129 xK_P_l75a7Y,92 m9pdH02FxPY,161 eN1XH8BQGqI,137 UG215AsHyBg,122 gGxrQOUaM_E,132 AbyNlvzydeA,138 bt6-F11LZsQ,142 j-V12tL78Mc,132 TPESLZ0sGak,214 qraA12BrzVo,89 gappVpWfuCA,178 K6iF5sINVns,132 Z6vsW2RH8kA,129 7ppcbkjmuk4,184 fWallK7KgrY,70 HgmE4x7yg3c,97 G59JnM4JKNQ,100 SPiSR_YDfXc,132 2I5V3zd1J8M,99 hVPSsxFKDLM,139 8uAUNIySn_4,154 vUuAbRVVZwA,169 lsOQqbPYVHY,126 TPlxZPhOsQM,97 hge2AkSJSIw,138 5AZ2yDKNEXM,58 KyR7XB0VBPM,131 RP941IJJEx4,121 Xsa1B-RyyXQ,118 18QXG4aUP60,131 fjqjWC3Ycr4,93 GOqTRPdrXgc,132 RyotYUKsVyw,171 yz8GjHOA2xo,175 uZ0YGah7MsE,94 lpgQU4piAYw,131 1V-vD4bHKR4,171 Zh1yLx3srtQ,131 QtWhkoqRKqw,113 qG-B9IzugQM,139 2NPSwpdx6iQ,179 FTHoIehOkK0,96 3E9TWmE3dfI,178 hON2sYpnJoQ,91 tdvq6Usjydg,132 6CxSbcM0vw4,95 G7Mvs5Ic8us,137 w9KBOhPXhds,133 lfrC_mA6o8o,163 WCDmhXz9Gsc,88 ZS5K9DzFIco,184 eLdQluY23UI,132 JRloSmzWBOg,130 2Pkky-Dncw8,115 lCUBQnsS9go,132 ITdkeKIFqL8,173 AjmbgZ2wZvk,189 ARoB1nWPsxo,102 JaeHMEw9KAg,131 MQRZuEppgT0,163 _qu4ZBCU6Fc,113 o2xprwwIMXM,115 haN_gCgewXQ,161 H9PhEc4cgVw,174 AePRD1Ud3Lw,119 UgjzHp4TVtk,116 1cNBL3OOMRY,132 GhIDZhPP7d4,131 jawZFND4Bfc,162 peUyLXrgYZ0,129 ZR2txV7X8sE,131 pf1K2ACmGKY,56 DcETqjNSB4U,152 TEq446woKOo,106 H0BUIYk2irQ,130 19fWdIvK9mU,109 DZFydcYiOtQ,128 R4vRfIL-Cv4,131 pU3klLr1CPA,162 5EFY3vpKDII,130 dxfqu-v68IM,161 I0EUKDhQ7vk,184 q5VokxxNaHw,90 JC2TvxRIR4Y,99 dObTXYa-_n4,120 47IVX23yRyQ,127 8KFPOKVSi7M,140 2ATYV1LOIH4,137 Zypt5adu71Q,59 gzRy-pvwdL0,130 QKq7tIL9aOQ,212 sv9XNFpRdhg,132 x2vhOIjmS2s,132 Gqc-VRIHfuk,121 sT47KfDlwI8,132 dtOaXCoryQo,108 8qyhhOM76Rg,132 ESmtdvc5zk4,129 Pvuv2sn5fDQ,129 iyHNryKojDY,131 -DF-MgSuhQ0,177 WYliK36fyCU,151 usyxBVGLU74,128 dLgbWZYjYfU,212 fzRk8ovZ06s,136 aAMVebfAZ7I,132 PtlmPi0DXws,166 oAJYONuey_8,169 858FWgtLMZU,196 I2E8wW-YGBA,130 sBSibz9xdic,132 YNaTu-8atDw,230 nxvXYa6n0pY,141 2zTqIJeCd3c,128 XF-736UPy0k,90 T4Z1mnjLwiA,132 izxkFm060yU,129 7AjmrbE-NTM,96 VdXfnWThrek,106 AWmHgNv0xUc,170 GSQpio_F0Vc,147 -rHnyOJuB0w,72 W_Piq1uGGfs,165 qkIEwsirwBU,120 79tBbaqvbjM,146 uAHjDGPOQEQ,186 lX4H0NmDMck,184 8RVVJmuoAQ4,130 wlwh5x9eHBM,106 HQSGHbbDR_Q,132 5lkqZP5rBvg,130 FtykdGuzX-4,136 OA-SQ7lCV2I,156 8wUtvaL4G9s,131 G95g0vzTAKI,129 CkqAe9DL56w,76 yrxRCTUt6OY,132 H02B31zvSKQ,130 _-D3PfhuF5o,170 UCYjKqnTM_U,170 0wngG1BlZNI,120 VSnBrgm2PM4,132 snpoOWqCy3k,204 vbKfMbxFfJo,156 ABUroSunjEY,130 9aqopEQr7wI,109 9sAv5P29YIY,98 UmpctrXzd1E,167 qG8YoqrNMEA,132 NiOPGDo5UJ4,181 tmZiGfLVs8w,130 p5Lzdntomy4,124 OdU3vEh3qfs,129 DdG74P7j6h8,171 DIt0_zQY00w,130 NHRtlXDOqOU,133 TTUvtnPvN8k,140 VvcANYZCseI,66 jDMfIPRm7jY,120 7UhFzTWxzBo,140 bTrFBrULLmM,145 o1_U-Iem8fA,148 NBJhQqGxJBE,195 xIMi15Erjvo,148 6sMjSp6yOBY,131 L4_-rVenLVs,129 7j9gs7xZ-9M,128 Atb5LNPuxyU,174 -QyAhZv-o_U,168 RDnvXAkMnx8,126 Z4DDrBjEBHE,192 WEJZDUTGV8s,127 fy9XNAkyfoc,99 nAgSecmB9lM,106 Rs28rq81pGo,87 tzybulrxn3g,73 FPZ4yah3ROU,107 Pf4RjsdJE0I,179 m1Q_m9pvy2A,131 bpc3TKhS6MU,123 CTVWHGj92Xo,172 HEYktlQpnGE,138 ZoZ_4nNNn9M,109 A65Jq6NKdeI,132 OoSOmcTZ1ok,159 Bnmo8X2kwpk,119 Rd87CKvUHjU,129 8KRzqPxR5zs,69 XA62refAB2w,129 dEgTjVHmjdc,114 pX0LbjUM5Uo,55 H07vHL7APyU,144 MnUGqPzLojs,109 yAhuaFMTSKM,95 sFJmNKLW-2A,143 mL-M04A1D0g,128 qU93Cguv4W0,130 T_HWlDa9t6o,124 6qIBzPrHoVk,132 pMPJV8sYt7k,181 QXUXlzzOl44,113 xGugDtX55CQ,132 thSPQDFYyiE,144 3wft012b2tk,178 HMUnEpn0n9U,135 Xh-8LVuPArw,120 dw9seHSkfw8,91 aJ7NA4hNNc0,132 8TM2yB381fc,73 wS9RtY8dVpo,114 -CKzCdneg04,111 8eC08uGwWiw,133 roaWSb9xc8I,162 N7FKW_RLs3c,169 7lbPHodrgC4,171 1k1r2zFnwQc,121 EqDntjV9GIY,121 hk6Vxhx28bo,132 plUXguATsTQ,157 4Y9X5wDG4Dw,126 oLLfx_GN73I,117 4xVAvx5hTic,107 Y9nW4w5tHVM,169 Isx0GBj1fxU,130 vVfLenSAj8s,128 EYh8GOoyv-M,132 -QiOCO5-ZPA,132 34c473tq72E,132 aQsyA4n7GZI,104 nLXoZ69ce-I,131 wE4I9l7Sc_o,146 pQeZSHyCe4Q,106 agRBVqecl5Y,122 HTbSaYy2Bhk,103 fEocj1eLsmg,164 kpzlCDIwzEk,93 t5zLt-NZrtI,140 TIQP5uv3D3Q,128 8EcrxgHLhIg,126 GBXYXp04Los,203 _Q9JnjhXRyA,260 5kopF-bCBC8,131 CY2ruk5Vkq8,66 gwY85_MC_AY,166 ECiut2qgJck,131 dNlMe4kU9TA,129 NH_wHu33CMw,129 jF5_WqbTmW8,153 9O0D63xWNLE,106 KoDrm4b6SH8,204 fohry-3J4dQ,132 -e_vbnd9bV8,234 HSPYgwP9R84,130 HTjeSsgZVW4,132 mlcBwNHilHE,133 hcIZa8FePZk,170 ats6Rg3WPbM,117 twPFRVuWNjo,127 0zgTcrZ5030,128 2R1lEWNNsV0,131 RK-RPsc0czc,119 gKRyD4CSjto,131 hfKhRRdMrVc,191 73b7dIqGdUg,89 jKyhNbLEKxY,139 MeY7MlJJOdo,51 BI_Vx6y7xG8,174 aU6KHvuvxBw,130 iGhEOyypT2A,78 ypEtxZjRJz0,154 zE2-th0lNbg,131 ZSL_Z4FFmjo,85 GhTOt1_Miag,132 7Zx5tpFmv9M,142 jTNoDcmRc0g,132 rZRX4JMxQMs,160 9s84zV2VCgI,123 1ZpqDhQJhFA,144 jWyeugspkUA,123 Yc9vYLgQb4E,128 Mq0xthZjW-s,179 HuSM3bZf0R4,118 MmIk10arVaI,131 HnyvaqsAcVQ,164 YOhPdUMzXjY,117 t-JFogFsPHQ,238 zQTDoxrgBeU,148 NzbdfpYUxNM,76 oNmhgpAGlBs,129 QwrGZWHTbt0,132 yPAPYhU_zsQ,111 QznOO8Oo0Aw,93 spAkj5YYnIo,131 uk04S-0HOXY,132 eFnw_27t9-o,120 1iWqn89nvJs,106 nRGCZh5A8T4,109 OcoatqJqmX0,132 QqVgAIcPfXo,219 pPkWZdluoUg,187 WHFy_iSnR4M,241 ze-GArhI0iM,143 0R3pEe2OW6M,126 u4bLh7SN53U,79 V2NGM0LYqss,138 ozpct8zUA_U,206 fq-wBS0z4NQ,158 ddXUQu9RC4U,128 lyQ1m8xbJW0,131 xL-VX3WbA9U,91 i2isplJSa8E,129 J7zl9A6-xHY,162 BShi3Dn0cRs,209 c_TXof1C-OI,130 QhCISxbO7rg,132 yuBFthJcBiA,148 tqtqEZqGg5A,128 aU3KvhyJk-w,132 JVg5X7dUlLM,140 qNoGZiSKCaY,94 cFjGykszgK0,131 wKbZcaU-83E,132 bDm5fnJ1Hg0,144 vJCHzRIOOL0,77 TAX4AOdqFD0,107 9kJBc4o_3k8,153 yDtGS3G3xtY,131 CR8tgmpmgIk,107 vmm8P0V1W4g,178 M6rf7s7NXnc,170 1lBbY5sLWno,116 L08fJmbHcPo,89 gYMmTK1rFvA,207 dG6C9JuB4YA,150 7PqjhsPYyy4,176 Z0myXa48shI,115 J0uhG-I0GZ4,95 RCzC3ZeMxws,165 2OmHGM9zHqU,165 JtW17JUoeUs,69 L3VyRESBqek,168 42YiyEjitsI,79 QNpPmiU7BBs,122 YmoTJu2iOfc,177 KWK3PRNjZdI,129 IsgHQHIeiBk,137 DyYuDAmUqRk,131 c0P_u-zs5-I,129 PC4wbTAa5SI,96 l3n95qTa5ko,124 3lqYg7jpjfI,149 LveQLUDjnaw,172 LIIz82ZUCQY,127 NbhfbT2aU0k,164 X236AeHt5RY,116 2-Y-e_9P8ko,128 sTWdAdhTfYw,131 fAfd4y1IY-U,155 I0jSE4K2jH8,125 OeSwSYmipqo,132 aQHOzbF0qH0,131 ujJJyIKIAjg,137 -fQs640Ehfw,128 ZBRK8rVHVW0,122 7ALP_3eWKZg,85 eCKRI2wEw7I,128 JzPOYDni_FQ,140 ITu2LTUPniQ,132 q-hS7nZ1Ok0,131 c0JxgKT4jZc,86 4rwJ3BnGrl0,110 LX8mxeGuqi4,109 KKOR6WC_fUg,189 k6eXuHmQoiM,49 Vz56mS8Zz6A,132 CWAYKPvjeHo,156 JwgvbLF28fE,140 cHT2zdQT3Ps,131 FgYr00Scelc,70 DTZ1bgOIaAY,34 niul8Hy-3wk,193 Wi41GDMQxr0,145 oqwzuiSy9y0,130 FhtwCGpDs-0,160 -TLCaDbBv_s,98 mDLS12_a-fk,132 JPDhxTbWjuc,111 UHPq25mUJwk,135 zpFlShhUcIo,109 2tzvi3Xp6sw,177 PP9l4LP0WPI,199 RZCFh9yDIOs,188 -qSADHn4nqw,166 li2zByHeanQ,120 IA0v8pCN8cQ,133 DSmDEMdKauI,174 87YM78J6ebQ,149 q2rT8XyVHhA,126 kOBAOfh46Nk,108 1j4ITRCTJL4,206 NdcXHqLPufg,177 RFTI9DnYSpY,138 DTMVpuLIp18,61 P0Tt7VUMLs8,131 Dh__Anjhn6M,146 gUuOvBQoaHA,131 wZaCK0PDUMI,125 KqQ1UmDPvgA,133 iKqEJ2xeATo,61 Mgf5jaQO9sQ,158 0iwVPWstvGo,176 XeGQr6g1i9I,174 DkMA0rGCU3s,115 VqlqOiOST78,160 g2iWVWVSb6Q,143 v79foBIrar4,129 IoavfE6TCbw,230 1Yh8ZXaDY00,173 S7OWoc-j8qQ,115 ifl_AGVJee8,95 8DrsMeY29Kc,176 PO8fJeJP8AU,113 g6Hf6Wbk6B4,172 YyWG5DAJc6s,130 ZgIp4Y5NoZk,142 BHQdl3iBhkE,122 oDD1tW59Mjg,125 0xWOfczSAe4,76 ww_lUn3jUoA,120 Um-Nj5FvfE4,104 GHWClE2g3Ew,179 ENRq7P9lAtg,114 S_yY1PaFEok,119 EEF7cXH7BWo,109 i5ogNBaY2BY,138 BrXDDicE1VE,79 a1YFvMDu0M8,133 Ib1awvls274,79 KdkEzfozXss,101 SyNzTdVQIno,162 CZZEp8EaO6g,136 XvGmOZ5T6_Y,131 8-n-ybKQ_X0,135 xn3J0iYO7sw,122 WV12BpbBrro,158 NGeFA2fWzX8,167 kWjZx3bSDHI,150 qc1k6uf-Mbg,138 8_JPDEHU1ok,124 yP5TAs29e0U,132 uOPuo29uzFk,99 NZJrGuC92U8,103 uq4bRVYBdts,112 NnxqVjeZzZw,99 wdB2lzxIfGg,103 vuR9pDhXPqk,176 iz3l5GLSWJk,131 184hH4AknlM,117 y1kqd_RgNac,129 OUfJ9E9zfjg,89 9FqZ2BMv_RU,163 3ERuhks3GNk,135 xUMqM8hl6F8,164 qCG-yxYUgJU,124 jaIVHdFwqnQ,108 GEDL7dCxWvs,123 6pJC0FLA3Sk,131 tNZKO_68_WI,130 uUuTz9Hjc34,171 ouXz_ETh2eI,129 wG5Lt-pineg,48 SxztUnejrvI,164 IvDNfFVpvZI,107 lVZNAyNWcgs,131 4F9i0gj9KKc,96 Ix8Gxp7XlDs,126 F656vZAFGdM,99 XQdE3ydNvCU,131 PJ8v0jwQGXc,78 4diIC2MRjiA,116 vXrH5Nk8r0U,121 KAEUeqJRxB8,175 WpZ4kY3AJWU,143 Euld6YN5liw,162 5KderLI5hEc,131 PnffktauNZw,157 do6yVKI5M-o,161 1m3y_pIJ304,93 GSwNuK9xedg,128 TsyLQX9NH18,104 rgVm_KasYQc,132 k7Awv1n438I,152 6DQTWY9wTO8,130 U1ngzzlFqgQ,148 IFTljGCli5U,137 pUO9-h182d4,119 zRFatzj_5do,153 pWRCxdh4PTM,160 i-2EJ-HDYg8,186 bYUJuCsymVM,119 JgqoFj8yVqg,105 sXPBgnBxTFM,235 cy2Xj8Pz2Tk,208 70gIBwjO49M,101 0VJnFDz4VP0,289 -mjnbKL7fHQ,119 rKHW39mShF4,137 K5eVu2qDISM,136 J4ciEVJMzIE,188 E_RNZFm1mls,125 8Y_Vepe_rVA,90 kk14nhuvBIM,101 rcjujixxfdY,87 GnWalWAmryk,145 SAWm5lLfGZ0,151 flWMIVVknEs,96 LwXuIb6j_e8,127 BdYd8q4jbqE,151 VICyZk-XSLA,105 HKDxpkV14IA,171 JiI91igl180,129 9RfC79nFT3U,93 Yk84fGy3q-8,97 SXeVjXg9BFU,128 TyB1CcaiPbQ,125 FFGAP7FxZKQ,172 v0i-Th0bvPw,134 hlzm7-gvTRg,240 iB89FIStq7Y,164 hwN_h9eiy_0,73 T2Qc-56h_J0,103 czU3M9Ye268,113 tPgRnFg8ZTU,158 fluJSCbNpDM,132 676TpKq_6Ok,127 4uRK1MPvUps,163 w4RGgEi7T8E,101 c0wH6YDfCzg,172 Ws4ETwvXFw0,179 fqDTy6JWcqE,144 cJOqz6CPxLY,129 eRRG_PNOQmA,121 1nKBe0dzhvg,130 1ccZkqYIluU,147 Ky5Y99wb_00,130 TAZulrjrEDo,76 fdrR3NbPARs,137 hlKMLkrSrDo,179 GuX7TUIGvRM,179 0H0br7XdsYY,107 aqsJPtd8Cis,129 f4-sMr967Jw,118 DvcLVg4rz-c,146 3HtWFx3oHTo,198 _6FnlEiyZ08,128 9M_shJ1_q68,148 kGK73er3UdE,163 qS2Np6zxXm0,129 TU7CDejp6Lw,132 fdSW39wQL_8,133 EzxET3KpvSM,130 eurjNgZtg-g,129 Hc35xCKXOrs,185 PnbVXrBlmJ4,127 0jSVwZ8w3C4,163 9j4v32pp0m4,102 Lt-Suz8LGEM,149 McIJxpY89Kk,179 G-fyxbtiDDo,127 45X0_m1KYQM,85 hV9ArqfKqw0,108 5HksV7ZFuhM,189 EEPTRC2OP4w,187 3nGQLQF1b6I,124 s8WzJJoKq_4,127 5USau0NMAxU,146 m4a6jkZiOkM,145 UfmbUwrXatE,176 NQhm9xmVHdU,179 wNibi-NWW4o,138 cTOlg3u_fZk,150 Loo5BhidY-4,126 Xh2kwqss0dQ,135 6zquYbMbFNk,97 7Vhxv6URu5I,140 -4QqksHXUCc,129 LMQd7xw1Wf4,175 eS47L5yU2k8,100 R6oNHDPMOKQ,173 11tbL8l5Av8,163 yGUwdRBZ4-8,130 qs0Fyp2bqsA,125 VUNpJBzAyXk,70 AAbtiIrTqCE,82 X33UjqGVc18,119 BvjorMEnuUI,194 i7iLNcJKoE4,95 moYXL6hX8vI,77 JjgKkluHXJM,88 F1hMkfopHfc,144 KJZLcsAmLbM,132 YXQ11lY6v7E,173 I-OaeRbZtk8,128 Vz6AlIZAe2s,171 94cC4uVE_HI,138 9l07Tr1w4Ls,131 2PPNVF1tT6o,186 7q5lFxaC2f4,138 SwGjsWSn8ak,116 0Wt72bHrHFo,169 Jkk2ai88ED0,158 ncnq2pu4PlE,106 IYmiSXEQ7ys,172 IlLkXPTm6ig,121 Cj71TWcfot4,134 M3byaFhO18Q,178 EzLXmzcs1Ho,148 kFsoiAa-ulY,128 1pJdFkkeu0U,125 QCS1Gnwbtp0,131 dHwJ6zB8B-4,130 fYb0fQOH11g,173 90KNvOsvEiY,109 DTPq0mNS0-0,131 dWJuJlmcabY,121 LcjR2Z2iI-E,58 80EaBRgGylo,120 Y3nUE1cWM8o,104 lOmeZW0N10k,117 cHRpQP_dp8Y,118 aCaTMqs_Qsc,150 rrzV0FvYypE,104 RHasf1LEG3Y,153 1FXO-XToURQ,127 4kVGdo53gwY,79 1e7FILJsiZA,160 4Vlw-NzSvoc,111 crZXwRmMq2k,130 F7SNEdjftno,65 tLiM-49DJ7k,147 oK_wtjlQcns,151 uYWlWG9d4LE,81 -nFHhXrXWzY,137 IqX6z6djbD4,150 B3ECx3J3LTQ,153 MBIIKCaK5PM,121 qeytg9JLx-o,227 dGmuICb8a7Y,223 7TG6R36bkgs,159 gBxaGB65TB8,132 tXDoydLr3YQ,63 YAcZjKbm2tk,173 _E84Vp8Rnfo,121 032myLDgIqw,117 EKdQ1jASEmw,169 2XV-EU8JlNI,125 aB2fSWvsVt8,179 wB-4zgJ2LLs,131 GyaIF1iTs-Y,125 rDbMqG0EObM,132 88UgHHl7W7A,215 4H1Lc_JHF7I,110 NjjDcdIAK60,181 dCCo8xDMsJE,143 1YmOfCZ3ZIM,113 R4lxBhDtvXQ,219 WJs5SraEnMM,151 7okueIbuBDE,201 7WXKfXCiWW8,234 eRI0kASoaqI,161 fa4IKrf2YHI,118 z0MOAFFBXEM,116 ARTwLLhQZHw,105 -iuSE7NVc8c,158 dyaqk3LFlBM,178 V0gKBcEoVdg,223 QjLYqCsggvg,131 Tzmt5YLzDXQ,131 87MO-gtYFT8,176 kcONgsdSLq8,87 dLl5PQg_Hag,178 11Kv8mnxdCM,135 kgNMy-k2VnA,131 dvloIUSHogs,130 rny3UdYPDn0,150 fiqJGHbv3ys,108 iMOquId9FGU,168 P4BRIozjuKg,118 Cty2dqTZSTY,125 n3Ubm7iCzuA,127 KXldzNF7Y4Q,143 TQCgzi4j3eM,131 lmlX39gM9-c,131 JKD_ZN2VC3g,131 KAOlo7Ijo5k,130 yKguB1M0JFU,89 Dw5W0T5fV70,100 tTsOHmaiMq8,133 g9U0df6KJiA,131 uW7Pev3qG1k,136 20gzgK-Z5Yw,83 Tf7suGi96l0,131 6rAcjVEXvSg,80 F2Zm-637bQQ,132 3smxtEacf40,108 ovkiChacfc8,130 QL__AjJr688,93 cUX2Mj4SN7o,171 FgrVh865bX8,130 RPl5MeXIM8E,254 KTpzQ8vWHTo,38 95SKqMz1Wdg,131 a_i-mCZH5bo,142 O10NcrfHaT0,128 GPdEP_fFQhk,62 8dXF7y1QUxU,123 j3WOgT1A0XI,157 3-16Bov2JfQ,119 qwMUlFU1Db4,179 I8ltv_SROgc,210 hEzyoeRuxYk,189 a9biNJwX3OA,130 2J8mkHUsiXY,108 guWGxRXZbis,122 Ro_k0jgMvKU,164 lI8p0rzq2R4,177 0zuRe3QwPG8,135 mJYE0HuKNfI,35 D7Ax5jr6mDM,125 7GRQKoapDIU,114 gmbInMp4ioU,132 wM-OyBwhuOk,122 _Nz64htsk9I,122 nhm5xXXqzqE,101 ba5F8G778C0,80 UfeogSVgTsU,211 RFjVbXNMsNk,132 szLCkEBB6xs,132 mVybomocIw4,130 BZjSJ6AVd74,109 WnZWACO4OOc,171 N3qEvEGFdKE,155 Lh7bN_qJz8U,124 JcWawUzwoL0,117 TrjLNpfDTi0,220 cKpV6Wb81Ak,176 -kFJKQvCrkY,124 YTcFsdIJ_Xo,120 lPr_GBMu4O4,94 LNqOTIBKycE,131 MochwVdcaEk,175 4Z5rOXxjRWI,126 HehUdDtSt1U,136 SrbO1c8QBSg,154 5OZbydb0FdY,136 kNrid4Vvxkk,155 XeU6SJorcvw,132 B2g2yYkNegE,115 gLD9INIOo00,127 k8Do9tamQSM,153 9Hcl6jzgFu4,93 4bAPlP2HX7o,132 yeBM3nwwmlE,132 sLAan2iZs_Y,108 eGoXyXiwOBg,85 OxKtn3THP58,84 nRLP98lG1YA,158 FAOoSmjHsog,133 2_pqFqYME68,94 KfUxknvLpwY,168 -64q4HpZyaY,132 _GsQYT-btPA,131 ADRGgyhX4YE,124 8myrr8HPt_I,111 yFlxYvgV3VQ,165 xi7nytFOO2k,131 2_g-cXgaDhE,198 FDDEVXimR2I,177 iedK7wzunWo,157 yHf9QshbQeE,175 jMAy36cl6w8,86 x_9lcdX85Pg,131 0CrSOPGvblI,132 hAnmYHMCkRQ,54 VVxYOQS6ggk,96 evCesc80vho,173 -x8fqJDLsu8,145 CF7-rz9nIn4,132 QBip3RFko4I,168 k2QekuUhgIM,138 eTeBFTlR0VI,177 n5ArS3Got4U,132 DuKvU5jh2os,125 JqoqnJ6VNgE,179 7m8_QLnRBFo,132 6zFeIaPbJwM,131 rqc2lyHj63A,124 ChPLYyubXiE,100 YaSPWpKQzKE,125 m99cHo5NBZ8,99 4xcUJXRCRWI,170 XVYzO4IEKro,99 prLok_8YD8w,156 ipkF3xkP63M,116 I2qyEk67i4Y,137 WlS2xnW-LY8,119 5FQ7xVuqOJM,102 q3CTxWUxHUg,108 rKfOjJJ1ql4,131 N_xWF7HBpJk,115 qAw0VczZGC8,120 4z9TimZytDI,100 u455yxBv35A,172 1WnfdpZYp_s,198 2L2dyDpd7LA,182 KTHJmfCHWc4,69 wXWoyVboDpI,132 LiN26NHb4ao,130 f20aUH5IG9s,151 XBJSfGM5dGY,134 -3upqhXz0nE,88 cONYIjOytm0,108 ud1tMFmSp2I,131 -edZKfoS2V4,123 6cseBu1zBC4,127 pRyH7gS__WI,205 IZcMgDET-fY,131 LSlXOh60wk0,120 -QOahlrO8Yo,159 esJNnh-d2E0,126 dt38_iS6u64,83 hHC_R7ATGuI,88 9W5MiCLa9DU,131 3Ds0DRCNXN4,132 mn5crhTusSA,143 gQwpd1247J8,131 02uIi7094E8,179 FlaH13fnXk0,130 uL2gxb-TcLM,132 VtW2yWZHaO4,134 rkaXuC5hrCE,132 Op_fgLBxUQE,145 meEN8tfT7b4,109 Et_Bdct1T0U,143 jOf4crp-WVs,133 kS9NLX0pFVs,129 Z1N_U1c-fUo,132 oz6wjc6xLFU,131 QOb4mg7oXO0,125 enLijb7P9tg,95 Fk_NuqIXhtA,180 _m90Rm0RX-8,192 tvy0nfXbStY,90 ZcD75L4QLrM,69 eXGYvqetC18,173 nsyud-sEm-w,95 E--mNnOvCm0,122 ZCphcTQguUY,179 0dsEkpDiwBQ,87 U-RYUQZFIhI,131 O-LGISfFS4Y,176 KAVqLKDwSOo,157 xNGdLsWV0_k,113 2FxpNCvBV_s,145 SgqfufV0AL0,123 hpDjzODXpBQ,119 vCo2uqlAi4s,160 14Mf_nTyWBc,125 8RlDsORXN7c,131 wgzxSr6l9Y4,130 x2lBq3c3AIY,181 IBqY6eBSQZw,80 irNr2fMIvTQ,174 K4j25DUQLgE,127 8Qklz6BqVxU,143 oDA4sUtM9B8,168 3w-MGV1cC78,92 jbdRO4BSXSU,176 y4Eo2_YMZtE,90 o-0PQaLy0lc,201 hM6ItEXb_Us,132 2Y41IMoi1TU,158 Nae0ywUHE-c,129 XGCcothBtRs,231 seFIcguvgXk,148 JFo6iLDNzX0,138 QjUkgodriIo,88 bI9CAfqY3hk,131 oceYG6ogT_E,115 grEV7MeCTsg,180 N5L2PXUdQg0,155 zh4yF8r5uJI,130 QBps5R-4JrY,161 D9MS2y2YU_o,138 7T9nzAu7orw,132 hwpHOq3Xbks,130 PoaOwSPJPHw,265 D2XKjKc8DKg,129 rU3GNIhA7fk,125 S3HubCxt0hM,166 DcfEOMgI_5o,76 njyllF8b_W4,142 0p9yD4E2hQw,125 FhnVceTIOTw,167 akMZQpIbTm4,109 VDWYVgMxBss,150 sf9038zMVgo,209 JKMpRikJeLI,131 D0Gxk6zCSFQ,69 5rvk07eB9wk,131 RH2IK1jcLuY,125 LpOc7D4G1TM,162 IHVBdcgvTaM,175 13zrff9V3Tk,125 tyoB7bjdzgE,131 cBHvRuBtJqI,126 Ixi9imJZ40M,146 GWL0Cj7bAf4,118 c2HEnbmtknM,120 W0ThLQIEwxk,133 xsrkNeInaiw,115 0SUcAyNL198,140 F5XztYH-X-o,43 DdktDH98D_g,149 ggC1uf1QTjw,214 4uaPFQxS6pU,123 Ah5f0zWgfvQ,112 STrE338cTBk,158 G2Mbj06Ns2Y,131 5wxD59EtYks,180 Is4mo3dbWvs,156 QsuIp03FENc,198 MuWwCUXGzWE,133 7NjHdqTSahU,180 0OdOZTw1sAo,70 oCHEAaCGj7k,60 wqMPRiWvJEs,173 XcFFaRpPdzs,128 bb9m4vvEkHc,212 WUujUq9VHVs,117 OBuai_Vg6BQ,85 zD_yR7ixRmo,154 0B0YWUYWHS8,84 fLjZJgc1nvo,114 SrJEWL6QHzo,152 0ay2sO6tWbE,99 NyOTaHRBTXc,131 W7uOKhmp00g,216 Vt-VF8GzQvU,131 aQq3mHLZ-X0,129 vldYVG_5cZY,124 Jb0_V7JCbbk,120 rCmp3o84w6A,95 IayveLLh-HQ,132 I68rpTRe8CE,66 tOpPh1MQ9sM,147 cAYVS8aRQ1U,132 oEPNSzLHZ2w,114 E3RQVcNUcTA,129 2PdWkXbnArk,171 CqgTNaplJdg,92 SxtPzI76s3E,131 fcnYQxHinu0,101 PvwjtOewYu8,67 jDP0UCV21Ew,139 WwzmDbzboQM,154 nZWo6dP2zVw,104 FmOvzaWdpXI,166 ZoJqs349ahs,142 M9phuyRknPw,111 z2G1Ht59cpM,165 TwgvEloIXVc,132 7SU4vD1T4oI,130 tAbYODvO524,123 RL6JZfQq_qI,124 _oSK6l24buk,142 H8zCwVOT1U4,127 PXEuRW2cOqE,101 M2sjRRcONOc,129 yk-b5jvZjLM,146 xfnmRVym22U,184 RM2N1w6t1KM,209 nhP_9bFQvjg,131 vOTtCjGqXYo,215 xHCQd9zv3ak,106 KEoQM4Q-FFY,44 S8Vu6A9LW20,172 q6nz3GR5Ano,116 -YV8tJhGojY,107 kk8MNQHBJkY,93 Y-4pm9C-jeE,131 evY1lSaPyjM,182 GHZnuSLPSG4,142 USD2Y7wRNgk,79 U44_sEUJROI,142 r449aYwQvE8,101 -s0ov88pD0s,94 ts4gt7f_rek,130 aF_Ijr621tM,128 sCG88QHentc,157 0jxVnlRdelU,221 GmvpP26J-40,131 woBSpMcgW4g,160 pMrk3l8El24,128 o2J59hT1Vto,129 FuzefcAKLmY,122 3MKwR7JipEc,132 ot3mRlgseio,78 DDueSsFUqc4,131 9GQZ2hl5oQY,130 mp_oRA5-HLM,125 YsQEo4ja5Z8,174 HUIP208nZZs,188 63IwUcBK_Rs,128 g6q_n-SZg-A,107 YmbeYlShWZc,164 Du82ML6YGRE,130 4dm-ZfP3fbs,149 d-RR_vV7qDU,134 1ZA2qfP3oPc,132 7hsAbjmNpKU,131 oknpBL5cNOc,209 DJcTG-VnLrI,131 D6DPbztWi8U,127 qU0Y6zo68t4,148 KGoS1jrmgHg,144 Vhc7iBAAawA,229 5Ji_OS5Q17s,111 Vyrr1vSRYjs,175 zyTVafoAylI,144 1fsFQ2gF4oE,221 V2j_JLlNU-I,169 PGU_sBj_q5g,126 Y92N7SFJ0Fo,117 E5vZWrsaYWU,146 A0R1F_FhwRg,118 93lz5IE7Z0c,147 2fsMce1OvXY,131 yyrC-l87Sdc,156 RUJeDvZRsps,171 iDrYp0LApwU,135 ECfvSmDe_-0,131 31t8eDmC1BU,130 SyQSH3XmQCE,131 RGdgqkgcvCs,50 -XCvw6NPfVM,93 XhrT25xehqs,194 IBjOZQCPPXQ,152 0XCqc9fIGJ0,132 j85FRIQigrg,130 zLKCXUGISSQ,104 dezECMjxlCI,179 YgJvgESR920,150 yJlbyxOHrdI,175 qj0L0g36IXU,121 clP9p1ipHEw,102 boaKhP_0KwA,115 fIleQPfCec0,84 ILqwaOR70mU,231 YWDTyG3z3VA,134 wLPEeDsZwGs,119 GPJNP0RvWHs,179 0Ba6y1Y8JjU,104 IthAv1JkF-0,131 NTJXKGOgN-k,154 aJ67Fz1Jf6E,87 h55rTtbCy7o,117 12wHDwNXBL0,128 djUYiJu6K48,130 RuPWLi5ifL0,211 e3mwmwPhr08,165 VkwwtlAGSwk,179 CCGpFb4lNgI,161 Zyl9lO3o9_0,186 EkptyQec_LM,158 acnUb2KcgdU,131 xqsDUwDwdUM,127 5vecZ4JxUZU,127 sMWnN_9GiX0,124 5BkF6NzmHTQ,89 pGZtlbYLpck,185 WbsZeLsYgGI,188 2gzMbWXWIA4,144 7O-kshviycI,131 e6E5v6jLGpM,130 QWepLWTflW8,128 XgBvOoE5uG0,48 n6rv6RO9ZFY,140 HvIGrLYKRh8,118 UTEUIdcqSfo,150 HEB1OaFSaRg,65 VbJgsN5PcyM,147 HhFqWgJrtb0,109 28MSXeKCm00,83 JOD_65vh8GI,169 Vx9EOI4RyBs,178 RTnR82EswKE,155 268ZUL4dnn8,122 UXK7kf1wmqI,92 CpdolY2GNYI,133 rYVsdfE_Wh8,169 cAIHoTstrTg,129 FDektpHARj4,131 TD8G-aSlweI,142 2aiVI2zBW3g,131 ryvvNrcMh-c,130 xO7O6zwFZ1k,214 v-8bLcH0iD4,106 pbzjsBcOuB8,171 rLcAQVgMTSY,91 yIj06I32Gao,175 bDT3nUjN2fs,127 GHKtN9jPK1w,131 K7l3r0bdlms,131 MneFTo1gRq0,171 L1UxZJ9owXY,132 iEattbpjGG4,96 mNVB-qi0qyY,168 m1AuOoDw25g,157 U89NOSQdgqo,235 cDoyywKt1_0,178 mFktba3DL8g,143 I3hVaKO5olI,182 SB_LjL0lUJ4,112 WvITkVaOpUs,131 1fxRMQLYRWs,156 CatwTirgWZg,197 4Iza5db5Zvk,132 ZD5vHtlpl3Q,128 qYwrQOJ2eAE,121 188YJIcBUkQ,118 hmF_IO6Aiag,130 sidn04cetvU,131 i2MdefwrjCQ,151 YsMdkGG2b0k,138 xpXxwJNaZDY,120 rVjV3FNsMtk,128 --uyzf7X_0c,121 ghpYpbgtLIs,147 dDQ0rUdj0KM,132 GAsqObV4ExM,54 dy9fKXNAhA0,116 -9UJGi_b2UI,126 SM-Y8FPMqzg,178 rF2GB1UYxtw,121 9I1aM1EQZ7o,226 NVovWtkGbCc,135 4x_MfkJvgbU,179 G6tC5Mp9NVA,139 wsYNpHaKJIc,132 yZQYClpkJ1M,140 l6qtq8aC2Cg,178 tr97dNKSBao,164 GmjAp2eRDH0,132 VeghLYlAYxo,131 frE9rXnaHpE,228 jVGNdB6iEeA,214 TXlHKTPfLVA,137 m-Wccy-Mijg,157 0yKd37DXIVQ,142 t31U3QAkClM,205 gBjC4SgMKDA,136 w13Y3PHCqVQ,181 vcxEgyiu16Q,137 25yR3OUlVbI,156 TrxJeKnKaAk,100 eNnr60_UZtg,118 zS6OX5d-ZYM,151 QErELQ48OOk,189 9aldDI2WF7g,148 De2BarsD4jU,132 7xSB_efH2N0,128 OANpF6uHmBQ,132 J03lpGKZ0xc,132 CDeNNNPzUlg,162 F8dW1ddAC_4,120 jagJeaLXRRQ,122 JQO8MTlO69U,129 pCQ0k_WvwvQ,121 f5umSa_YYX0,117 5s8dYeDZPAE,58 LRD16Y5xR9Y,128 HrRSo3a1ZYU,128 xSVasSOEG28,132 JYp5uIodwEE,217 Ki6bBFE0o88,45 i7Bx0--TioI,178 pbWOEIzQ_r4,132 fgJ2CaTfaxU,132 5poOduTF5pM,125 ntNMz754DEg,132 9OhIdDNtSv0,176 ui3pnIeA_HM,131 63nDBr_Qavw,145 Ia8LqyDsdbo,134 FKY8Wsd3fDM,210 KFASQKT9JSs,95 VdYPqVZIB9M,142 Ah8ALKwclVk,130 92YrRetDlCg,70 6R__cRZAVCA,218 jsLUidiYm0w,130 AH25lc44Og0,165 yclP414CLEM,129 ih2vstLiKps,168 MAXHXJ2WgrQ,83 ByLhxX3WUxY,176 vB-sBJ_DrGo,166 b1KjK4fd3ZU,169 oTx_o5B0J1Q,126 d_FUI6kf1b8,111 Qd4hB_s-GzA,178 d90YEOlhtRk,59 okiMnLyCMbA,121 7tK-k8UURYk,90 RsmcYTQsgIM,103 88qGMm1AoGQ,144 vAJAM1jm2xI,113 MgFF-JBCHUg,132 z-3ETV74ygs,147 f2SskRLd4F4,100 2kymD_HxRfA,105 IYcgbsw7yc4,132 kDtabTufxao,258 NSOB8nt1Uc8,77 T_SHaqh4NdQ,131 CkgFvisOr_o,134 38yH4yeJM2I,109 ZxhqyHBujFc,154 6w0F9xVXn_E,98 -4kio7152q4,85 u9gzHfq9RsQ,174 npI-xPUygXY,111 YMA_1YDqjYc,156 QDdroG4R9hE,124 ZtrhzVGMWZc,185 RyR51MqOl5I,131 rGvblGCD7qM,151 YcSXHU0zktM,127 rdzVVp7e_0Y,107 -G_I8dQHN5s,200 Ats9HUDVBxE,179 4qLgo75Lfhc,132 rMz7JBRbmNo,219 BeAtRdD4roE,130 MpiqRi2JW4M,179 54jjaJTov6s,169 Ff_G9EYI1xY,132 wIqMqkMIjEE,127 IK5-KZnzxwA,86 UKaGbPJZicM,79 yC4LZXraLBM,179 1w4rZE1A-fc,91 yOItNhVYC3I,118 6a0at61sWkE,80 Z4wZt4J3Q5k,130 QQq6L1Sw4Ck,77 1VGOy2dylYE,126 x2W8BqPt7mI,70 J2gKEelDYpI,168 7VbYokM9dY4,107 Up1eNda6Rt0,99 2KOuM_aZ1-A,131 eWL0obbYYOE,117 9lYe-ez83H8,194 2j3adcbEwSM,113 bfzJMOBenVA,111 VsLUFKIRr1s,186 ET1bH9TqwCE,137 NbT7rgb2QSU,83 5eC6VCiJYq8,114 TMVem9xHaHY,127 CbB6CosDNV4,125 hKr4-rNmLFo,238 2xLWJOG7dO4,145 0O5CcvLk-uE,121 UhRriAA2Kf0,105 diX4myfR6vU,115 2QD3ND3XiL4,151 xOYb0ZdJCQs,105 fw7p7tAdVuE,130 _LKe8V-h7h8,125 Em4igIXJRgw,109 Do7U7AkA5jA,109 2uRRExAY-8g,179 COqQwiq4uA8,146 jFEvKqbayIQ,135 eM3CovgD8Bo,134 ifPpI0fXMlw,211 EBu1PyU04FE,120 QimMZHQFaXk,130 3iJMdVAsPpc,109 hHsWQA500NU,114 KTQnnwDN3eU,169 yeMemdNO_2Y,131 CCwUD5fwJwc,136 sGCjNn2uJr4,92 cNW7dRdPPC8,130 KuMy7-yMXO8,176 hiHZWeeoEUg,153 XC3yGH4nETQ,111 9l_USfDRi2E,102 VqTMLtDj83c,147 -gZPZLSUZZ0,128 4bb7URQIpcA,77 EQOuGXTYAj8,139 N6mFvYxmiM8,104 16hnbNPCFBo,278 Dk5SrjFVQIM,131 0A0VANPUG-g,132 xby81m1GtH8,144 ib-1a-0LHh0,172 KzCVggIa4uE,135 aaGlVyyFOl0,129 Rtf8uPmgq0A,155 Ie6YmUGcPYg,166 mEzXLJL48nA,136 I7NtDM6eJq0,131 oIjgZ-i9v_k,132 nuNQY06FEOc,166 BbryMMaAUKo,179 PhKy0fGOJz0,132 q6HYlg_dJRI,162 LDC0ii3Rwww,135 UpsxCiyuxGM,156 TLhaRe7Wvww,119 7Za7WMgQqKY,131 jsGX_I6mFvc,176 1u0rQ7J3oS4,83 dKJa-KQNjQU,130 AabFChK-X1w,75 d9PlKlirxT4,132 mGGwDmCTha8,67 cFVtyYzs48I,132 H44YauhtGPU,151 5p8meeqGJbg,106 ybst6CAzXCo,111 BctOA1EbnPg,111 QkL9783wNOE,47 GkTXRgNHzug,105 E4e_QytNF4I,129 F5gztKbIoaY,143 UVmSx9Vv5M8,127 z2y29L0uG-U,147 jnN4PnoJ1vw,164 yth5JoZKnGQ,150 Y4g859J_920,131 qxFHPIFGFmk,126 1TqRcAl_928,181 f5wOz-3L1jQ,150 oZ51e9IJjjQ,131 mWqGJ613M5Y,183 UB8wk3MOgVU,116 THaIWPlHvLY,177 dp5dgNKh77M,131 xEAsC8A1Ins,165 C3ZMp57PKEA,130 VkUKAtzE0r0,155 BB_1LSxIC4o,119 XzWlhLSitJ8,84 vmyGlOoCbp0,179 M7V-9UG5Pn0,32 xx4t4fBIY88,179 at6F59Zfqlw,176 HZzHIl9mBsI,124 SDW2CT5neyM,132 VNBzjYyGcd0,208 qb37bdNexuI,148 KQt2qAPhUAI,112 b2f2Kqt_KcE,113 y_fgX9MUfVM,132 sE0hL32wswo,152 F-IumwPd6b4,135 D_84bHFra4s,128 XFdEntyO6TY,111 EgXDPt3eW3Q,129 NGhqTwxz4eQ,128 ZS7BASI6gpM,177 4_hEef258iI,106 2wXBmSecjDo,80 T3nGqPQJqlQ,132 sZTpI9Q71rs,130 dCTd1XHbliU,86 LkCHcg-UOfM,179 tXNMNMLQzwg,174 lgRkMyW_J5U,132 DegHehO_nfc,291 zrc1us4sDcE,155 CvVeJJ-TnK4,121 ZIOGfLuHu3Y,152 MTEXVT8P354,122 IsGdB6a1Evc,137 64IwbhFYuUM,131 xTebNVZEvT4,184 NHiG4hmxkjQ,169 891M2sACu0U,178 XpEtHWMpiFc,132 oSo9Wu-jAyY,173 0FkeGnobtfo,130 SlL11KaxU7w,151 lNla5rf4idU,119 sAwwDhNJJO0,109 T6Lor5hg5nI,179 BzEjGy7EPIc,159 ee6jqUkxkZs,179 dME9-07ZvJI,134 84k1F9o1g7k,170 4nEpmBhIy1w,170 MDJ7Du14G-4,118 4ybEyyoBxts,134 _z3Pfq49wYA,155 eVPIMety0MA,189 a2872XpfqKY,110 441D9uXF1ac,95 yCIgtidXAnQ,164 GpQTd7WhT-Q,131 PunAKEccqyU,149 lCCeLue8owM,148 vO6EKe8gVXk,130 ae6HngmeUq0,152 iOaD5cZNw0E,112 THPVDNnsVT4,101 0PIbNyzb5YM,107 G_OMV0N_Ls4,129 tCLO2N6IqJc,127 DDQzRai6Uao,176 r-ddXOrPiZ0,131 tURhk-5mDpE,131 J_L4nLBweuQ,118 uh677-ClXCY,133 tpfOhYRYv80,117 OeA9yeqG91A,157 nouLQZCXW4A,114 dLxtD4f_DA4,164 Jgv93j5xcpQ,132 8QMRQeYNd7M,120 Dp5YwZCGpm0,69 Jt0kFbvL7yg,132 -9DrPi3ki0g,78 kCb1R69h92Q,170 QvKGF4DN9RE,102 kfJINAKOgEY,179 DDlHzP-SYFw,109 S5jj3vqPau8,137 2iWKnf3C8ZY,95 GaNKOew-TLE,121 fWP17t95S2k,131 G-50M2Wex20,179 NnrweogniK0,132 A3WWrwBRH_w,131 2-FvDteymnM,125 ZWLQiviq7SM,109 wrRkC8RYqMI,166 h5Qri9_giqQ,132 N-MWa0s5iFQ,89 eUL9XgE3G4k,145 n13FhFrtu_8,115 flOMk-bWIxQ,141 I64nwvRliGY,116 WhWW2IXg_-E,64 _YfbSVO6nz4,173 _r-SkfDZphk,173 941z56i7QJE,84 HTa0oe5Ntvw,140 PPNHvoOU1kE,104 0PCcz5_8IEI,134 wb1HDnYPPoo,129 Ur3JKxaUvUc,70 B6-nYQbUteA,119 0zfQoHORIFc,74 eiQD0Wk6Ekg,82 gRyEkrwnyaI,117 wWrB-Gbjnik,131 Ypa0vpmCzdc,131 Hur4Esxuurk,130 gawe9W5HYtQ,155 XPwdUzG03SQ,134 dQGlAzHgPw8,169 xQFsE2WoXL0,179 lxKvt5Z9Bok,154 GLQiskRb02o,131 aumRE2Eq88o,174 vP8C80lIRt0,100 Pr6lspmWBQs,126 j-a68r1d9iQ,104 75PCq-Wcdhw,132 spbfax8dOTk,94 X8slBBJG-x0,117 -kYzHmPDZwo,166 DcwhTBEcbBw,101 AClQyr2koxc,176 hF4ErLUEW9E,177 okGQj644_Ds,135 6sQWxbE2RAk,150 SMuET3l5cbc,214 ga5qeKd7oxM,94 MY5NspwaVgk,54 B1dK_oxzaX0,109 o2K5JzEAzcs,161 t7DgbPjFOfY,131 6p1EuLz9Fes,132 Aap_UtTuzYs,161 QtrJ6ojRtik,126 L8Ig4HbgA0c,139 2-7Jdip2Pfw,132 3aSdLAndoJU,124 jM8cy3uB5N8,165 Rb5mk6TfzoM,156 GaGIb91Mi2w,117 nR532k8M35g,145 53uT454cHiU,128 QoJrjjy0WeU,153 PCXI31d3vlE,82 WJXF9gcUcNU,197 dlhTO_Pqq9s,132 P4kQvkvGi9M,186 1_GUmXl_dcg,116 qvo_HDqOKww,149 hcBF8zYH0s0,126 ZxcUzbEJx98,131 zZab0Lq7_vU,109 LKp3HoZGP2E,153 bT6NizTtXug,249 Nus1mepMrDc,175 kpS1Pghejt8,119 dyqDd8esYdc,118 0-HM2VCdrC0,132 bbpQmRxCYUU,98 FOYr5wApG3k,131 8Ut9pZyyS44,88 W98LPZXSzHE,95 jZiR9MHumCk,131 DXA3GJb6V-M,122 _NVC5g_Yngg,136 g0yYxO89lQA,131 0XjLzDVi03c,132 qr7oBpkkxIQ,117 BgfcwELYxUA,145 QY3RIezZPks,130 oBfLI1WWrAI,131 ZEliNNDLyUg,154 UCZNyjhoINE,106 Sv_GcxkmW4Y,177 Z9mMBj-yFuE,166 UeC962qKMrI,124 beAc5oqxBHw,90 1UOLqmhi3AE,188 lkAYkfIqivc,131 FIyHh9pO464,84 XIcTr-m-R9U,131 lTiCL83_dR4,178 1XqI8Lyp21A,152 0Ihq2_hNnX8,198 I73sP93-0xA,106 62tZR_Z_y08,160 1l7e9BD_gos,87 NMKgdzm1pWs,128 B96DjgGIxv4,109 8-q2CNPDfOU,125 Aac0krsfzSQ,134 zpdFj0w6Eg8,131 Pojd3KNQq68,113 7tg6TqW7u-A,91 XrnUNfRvAho,198 bR4b3meiMlw,132 eCdRFMp8Xwo,131 RjtmKIWa4tY,107 aLDrW2AXClk,132 90vUFwUp6mw,137 WCl3EnHnm_c,164 IaOlL5WMFI8,104 JRU1SrdXEZc,132 -PxCqrjP9pw,145 2PjZAeiU7uM,125 KI-GzP94V8o,131 6mQAgXT_lVM,157 b8ZW-98Zn-w,154 VGGxaRYEfO4,186 CQ67ZyZtKjU,125 -RuK7XKbefY,131 KKiVFZcwx6g,76 ZTo-aIIxihc,139 zBeW_hheeGo,100 shehrh353Oo,110 VP-S-KGKn1k,129 p6XV7oYBMG4,135 WjDLin6Egyw,195 f-DgdMpSo7c,126 8EdOdfCM1hM,131 IjtqQ-ojgcU,58 a1GeB9y9zzo,126 b-QlCUByMcE,127 vxTyxT5z0hs,83 pfLTbzU0FXo,124 FstG27JuaRg,130 JrYtD7gSWsI,79 hXiTQfzucK8,130 cqiQmO5frrE,229 rSCm0viS2mM,186 uYTl9G6HoW0,131 sGS5r7NK5ZA,199 CVdZXuc265w,169 7enE0xOxDQ8,87 BSRrzrQtmto,47 F2Bw4OLZHq8,163 Pb3QUVXfKto,102 JHACE2LTz_s,203 zgQsfeosMf0,94 ___OJkS9RK0,130 N1GwJt7fEGI,82 hopRenk1oaQ,133 X_nUklmV_kM,179 1nmWEA68h6U,79 6f24cpQ_Q3k,133 vCuU2y6qR2s,129 vSBQt-6fDr8,122 AFMFZiFr458,118 rv7NsGCDVDs,214 LMT8UN9bSiA,142 EqDd06GW76o,156 wICMOVrSal0,136 GNCOjiBvwCo,124 HS7OG9zcV-M,124 GRjqtMFumZk,103 grn62a_8fZ4,125 tjrB1BtTnB8,172 JG7S1-DC_KY,124 gVseixK20cM,137 rNmmNleiY_4,144 Dus8r5l5cys,122 a1REfTIc5po,132 j9h6JvfCOOs,112 GV3Rt3A7TAQ,74 WRF2fIzwT6k,178 kR8Xje2x0sA,113 FCMMjNlNSuc,136 G3BQd2K3maI,120 H843vNJgIaQ,236 rZlzxsrv4ow,129 k95b72QHu60,89 g-bxs_daoCI,122 B-NhD15ocwA,131 1AmiFfP9u5c,127 1j8l24hHhgA,130 TRHN5vxnZrI,131 Ao50y1xdfW8,127 N2HtiOaOGx8,73 3_zKy7ygsHY,124 tGxxl7LOe_4,110 rWvqkw0_xFA,216 -BuN5efFTXA,82 428tr8ixT3Q,118 kHTAJHod8-g,132 k2PsfXZ3wyY,153 uu4tB54Uw5I,133 pZfva5xDNLU,102 3JkBKGttM_U,131 2UYrsFeBZoI,128 _Ib_lBGuoUQ,132 E-bYTMU6Dks,173 ytCAMgdi9sw,235 613uBNehFWQ,159 cFvxjIsjwoc,156 G4WgfNcZgo4,179 i6klSHVWbrk,111 IicsG0Br1q4,139 6mdAoQZkrjY,153 4WizLeIdckw,128 WpO_eNT9StE,180 KNby2wixjzg,125 dC1yHLp9bWA,130 AYWEjOf5pBM,132 2MdAw_f5pAU,179 reKMIuxFqzY,148 -rmALJkEprY,127 uMp_5iP13r0,121 1v38MMDYEMw,131 qv-kBgAcyUA,130 FDwpGLz3Mr8,152 IFc2QKCnGEg,131 Uc6tQH8yHF8,119 Q-bDppEz23c,105 SswN494Jxr8,131 nPXMny-9Ntk,131 nCzYHB_8hXU,137 hWRJQvuhs9w,123 ERvEZwe88JU,136 nAp6q0q84vc,137 0ROOrIJuhJw,155 Cn6TkV9mxmY,103 ixYWkDAPPzA,157 UvJ8UDYipAg,137 TqNaJxRC9NM,113 TIbZNmvyLBI,128 BFeySGJ75WM,98 RFpNZ_n9rcI,202 w78NFd5q_0k,149 9k2nstrtUs0,139 0Dc0Oj08S7M,102 x1-axqBZdNk,136 f-vA6GMMKgQ,131 5tu_42LmfEw,130 gNSs_gF1T_Q,133 jki2_TXdG_Q,145 pcj4boVT4fc,119 DX3oTDhDOXE,112 _yMeXMRn9KU,144 Jc_h1ufAXYs,170 Wy6ANzdhy1s,110 G4lzPC22k8A,72 ElD6Vos6Jbk,130 zJNfkO5ujy0,181 wVP1wO_E4yk,157 8jN4i-6ikWY,167 rMlkN-7GRDw,122 xsnWRnOdpS4,145 GqECd_A7qhY,90 ITicydPuKRI,98 _Zfqh2OxGFg,131 gt3ntYidpvs,177 xq1QFVrNxfk,126 1PwmcgK9qno,135 le6AAhqa_8U,106 SnjxkiSs1Dg,178 VmVWuswEBSk,204 oZnFQrIavwc,141 0hL-fpCsGR8,119 toT3JGFEwmw,217 5Bv5yv0n9Tc,186 zBe5T01yBUI,112 QBghpl5FZXk,78 m8CkFFna7Ew,163 fNNMKJ1f9JM,130 xbhR3UYKLws,122 A1mYM5yA6oI,275 EPJGFrntGfU,184 QR4x2_6qzXg,132 gJGMeacAmec,163 DNuzmKc7mq4,144 gpCFk7jK810,124 kjJUffVZtDs,171 geOqbM03Hf0,132 Jf8OtaR_9MM,166 p4IUUBVAUJA,80 NUOag7luIOE,131 UuuyzaRWiA0,125 7eTl05KHwFI,154 sEycv_wZaIA,218 ILLkD7hTxms,131 EhsfKBbm1f4,123 dxNL9-YlUk0,166 km7CMB9s8ok,128 2TVyJ-51jzc,130 o2oR9qYeySU,128 xqcSo_Yb7OQ,232 sqhPvOlgzjo,132 gh2apPe9pSI,97 yooamJf-T_8,29 tjRYZON0o9w,124 wFBlmb2beQI,176 4g4fmiFvXmk,130 rClviS6MMvk,76 Ks2OUiW2_QI,116 L1Z7sGSUhaA,149 G8EUObgUFvc,121 pNo2v1jE8R4,212 CQuB7dB-elg,110 tXSER8y44do,121 bHMka69DJZ4,117 J4LB77duP_0,108 -yG7Wp5-8EI,153 uNSSfdkcppw,131 VZrBzpfh6hM,122 9sngqjpu920,177 qf2p-tkn7cE,172 oARVdCyRT98,132 z39yOZpcji0,123 fEpjHtkttYg,131 Xob7w4hR5Rw,109 _v5zFIqjEZg,105 bhGfpwfae-k,71 jbXNiAQHn_A,112 xvQLAg16ZD0,124 Jmlx4p_9MfA,126 mvTjdnz3s_4,184 XhT1nAzegiE,172 pUWlaORsqw4,88 KrIUn0qTaCE,165 4gB-5OngLWQ,178 OVXpH5cKWf0,167 G1DG6f_6nZ8,132 rviQWy48B_w,259 Yr1lgfqygio,102 PehCORojjtw,127 dIu418Y0TGY,126 xN0R2xFmcYU,177 bchPm7InHcg,130 F4dOAIo0rrM,124 Q1WdlXsvk3U,161 10r3vyu-zDM,114 JAHLYTVcm5M,128 9MdivySyCng,166 _yotZXdH09k,131 urnRVr1P2bc,75 qJkMktF_QUE,149 L4PPqiuDNK0,131 E303pbjYRdo,131 zsqpY4w2e1Q,127 p0udEu1z-jg,80 iMIWQRhrAmU,118 6OEA4J0sobo,74 RiaUv2MwZ3E,130 dxMTCKAWIJg,117 v8pFeR0jO38,172 m-OaVzrf_vc,109 tNGuXckF_sc,178 lGFrkYzbfoU,170 SpZfI5x9PyE,107 WVqv9kKOfvA,187 NAWL8ejf2nM,177 8O06gqOG3fE,114 38nBkookHsI,51 ajBHZKoKYbU,131 h_bUcNjmuSk,131 M2hhUTxFLWA,130 -qVNWgbzbS8,178 -UZY16_K3Pw,115 bBLKvPSgQ2A,131 ZEfbID-2TlQ,118 O5TE0yg-mEA,164 n7mNY2F938Y,73 e9LJG1JcXDE,130 ze-aAIzwD_E,132 UyzhnEqtWAc,152 9NG5mJgw6Yg,154 3odMTPuzLwY,164 t4WP3bODmfo,130 BLFU01WKeBs,123 jKGudyrV0v4,93 sYVz2G-r01U,134 CsZmsu_-53E,152 g-uc5_QEmuM,131 B2CEGhwMjkQ,129 Zo70vB9nubo,142 XrEpuPzxk9k,124 CFQKJOXdXJw,217 ZZyXtEMFfaw,113 sUxkumq9UJY,180 fpE3kI1HOWQ,132 ujJ8talVp90,159 s8jfw7FxNqA,129 kQLYkEvyReQ,130 hlx-FULnwJs,128 RRcYHJ1uTro,80 ijrCSknWjeI,139 crB4KD3p8HU,117 yfy4and2vPg,164 GOjeFlHlPwU,131 iNvdewR9znk,161 IThWCij8W0k,131 8BNvCu2iqmM,130 te-hhtqatQk,130 _KCXk-BhTd8,131 aofM4j2teCw,132 8pvAI1uDW9U,87 PWjl2vignic,151 FJv4vY954UU,132 S_FAk6ykdvw,141 dkErNkX2HKM,132 orhrsjDwamY,132 8DbzvqOPUIk,172 WmOiz8rBlmw,125 RKn6FWvaVBM,215 LXtVS8SFmJw,124 LxMYNhlh0Tk,132 BBkzG9_vrZg,98 Z-hoEoga8no,192 fkC99C2w4-o,132 Dz6Pe77tpPg,128 b6X5bVMoCJc,119 J11TVWwQNvI,178 1zWf02vGl3M,139 BeYx_CBH700,137 _32En06MgeU,153 KvAVAKE_pRQ,138 aSZoCaL7HIo,191 1BimnTWx1b8,125 bO7iMQGQjhY,130 TJmgMmjx2eU,113 Dh1V8GyyNYE,113 WVE-c9ghcww,180 _tYTcz52ZB8,249 6T_cb2U5lro,126 10fn13Q4wAA,62 jmmawolzwCs,132 sXnYoBCJGwI,147 kTsFXQ2Y_dI,100 jPF_mENo1Fw,131 SeKVwumCmBE,102 tg2X2RZsGy4,116 rRWT4FRDq2U,133 aWyYZ3-8oAM,132 XBPrLU4Zspo,164 yvC60Y-AqLc,131 2tVvgJbqH7U,133 VN54kkl_nTI,131 xPHXfJZpSms,56 5Mb6xTtmtuA,167 wCHqch4ILBU,125 PZheNUuK8jg,120 PlwmOgcEry8,206 GeqKdTZugxs,129 ifFEIzFztAo,177 aNOmTuwnGYg,131 hq-vTEalnj0,158 ryuW22MWnOU,182 P056r-oeODU,143 Y-szf9FRi8M,170 Y6SIARg-j5c,176 Fgl7tImKroU,140 RHMKRQocaQ4,209 ReFW-5bgoCI,77 D9SLyzcYXw8,178 IpW3QbVzNCI,84 Boq7rlWzVRI,149 aN0alpNLQak,181 sojzO-UWObY,175 fsUKVpvzMHk,182 YMwZaMNf3L4,132 zFaEUnrsjL4,130 ej_hfok3bEc,123 AqNEZ_QgvI4,131 heeS8J_KFt4,162 4pUeurfZ5n8,124 8mmqyI9CVWI,131 fRs243dwWkw,132 5WGQCJmdEoM,109 rbYJ1-y-sk8,143 r_9PgiNuwDc,92 C_BolURdHXo,115 mR4FXksKdKg,124 _CO3CMXf19A,154 _s5fgacYzjA,137 OF-1RqeBf7w,111 Cl-BpGO92Lo,155 WC60ALoX_Nk,95 X5Vb_FUuRDE,166 YgXPN03oxkc,135 79kT7fUtLD0,179 M3u94uEBq9o,129 SwtSrzKWoK4,99 qVzfIUAzda4,198 QAMDKK5sfd0,184 g7yAbv_u-FA,125 KYQELfxxAck,217 z_Bx500h-DQ,62 KWAQRU2PeeM,132 zMFxbMh7JYY,142 B2LLB9CGfLs,114 kIFsRm_1G4o,201 TKkrgiTpj1c,132 9lCOuDWaGHM,138 lssQ4w2V4XM,140 wTk1noW_8Lo,110 Cqc48kDMG0Q,106 crPJvv2Y3hk,107 56djkHojg2g,116 tw6zV9CtczA,100 LJhKwaZEEy4,139 FccBG82Ocds,131 -HI25-gfvxE,126 dZt3TeTClV8,72 9knEvoHQfEw,108 HCLQRZmD1EE,156 j3d3mrWBTpM,132 U-mmbStFrAA,131 CkN1FvtBg2k,131 pWhT-4m-4ro,129 upGmHcSsGmc,148 RcsaFXhuAwc,149 jQPhLeyzkLY,130 mgSDir-wcGk,114 PVMnl4sBl8A,128 yBsFjC1fVx8,126 6nTk0X-QW_0,164 zPN9c-AIezE,112 _snQsFAwjxQ,178 LxmnOxCk3dM,194 5AJvo1pc3sw,124 F_NkBmFzs4s,143 5KeGGAzEkNE,106 TrwIvCFIMZA,137 TNkvLDF7JOY,123 4rGia6hIWmk,129 PsWbydM-u8w,132 ytTSb8302aI,183 85WDSyWnTZg,167 AApQkNSViGg,117 X8J0iWSsYV0,159 oKYBGq7pt3M,131 mbFx0CbaIlY,129 7s3dzArIVok,170 K7p93XsmJ0c,132 fmZhcaq6QV8,103 M_bzbtdfaik,139 LxWJ4QT74hA,112 lA1bgUYjJ0I,173 Id0cqNWZ50Y,130 bJuDofIoW34,157 ESvZ51pBN14,155 Om_HVqAXZYY,132 cG0ZIxenJY8,85 --b-8xt2PeE,129 C09knP1SAyA,179 7Mbfa0caPBQ,130 uZRTLpXXlds,132 GnRb5AHOcuc,165 s9prJba2vkw,170 QMJfw8aF90Y,132 ej6dxNrh3Dc,88 YSkZieDG5U4,128 coWFeBI9XoQ,153 0MHIzgCZcxc,84 jzzrFFivBKk,130 ONit4ATZmhw,126 MfHiFaZIc7Q,173 X-HeG5tFKUo,60 1l30kkPQfJM,129 HraqSpgcdgM,154 F2r8a3juyr0,147 Yfof0ch3R7k,92 qH3jaW3YJ9o,148 0U-kaLEaThU,170 Jg7LxmHGNd4,92 IhdqG2gOvvg,137 zmaZsAPGd5U,91 W5_sieIOe88,173 i0yWgvRAqTU,122 8kssysjyPl0,160 HwYyKEu2_Mg,208 Qxju05tBuLM,124 kLovCSv9-Ks,129 _vHFGZXqIis,179 nwvUihSxHGs,210 mILfbvj0xtk,178 Q3znhTOUqi8,108 K8IgSndDsjs,179 8iI9iC2OgFY,131 zbJwjn4p0cQ,132 2pVPaPFm5iI,222 9yHJcx89XXk,166 dLXri8sYr6Q,138 OurCnuyC8zo,134 HZtQl0lF3OE,59 fZNPbMu2Ge0,178 qlJ2951IShM,82 0oxx_2M6Ctw,114 1Oq6vztcjgg,215 wW0L86VZScs,132 ql5i_tg-wZY,92 E25WrYP_1tU,84 pWYPN21XIEU,131 WGxTMoDAI7M,87 hRBkyOT8ZPk,105 6qqJOQltyTY,198 Aok-54MlYFk,163 Zl9yu2xvv78,121 z_hfmThW4fs,141 Sqb85Gfj0Fw,178 GvyKxUL0x0M,116 GI8Vrbnwre4,192 zXroRe--2QM,129 WwrlI3z89Pg,72 SCiMcDcoi3E,100 AYS6V3rDT6c,146 dd_IWBNSKY0,156 t78EgRBYIh0,129 UsKSjKrIEq8,172 Uc21Z4ffSns,132 FGSmKV6K__o,156 kGot2YelCpE,125 t9QcyYlB7Ac,146 kmigfm9ZONk,161 CglQW97hCe0,200 chBVj94zYDM,132 DI_2i5BZcwI,87 7DmN0--tZcE,172 8ltYYXhGCBo,99 j9JfUXYQY2s,122 BFaNTh5aqls,68 epBGWHCrfr4,100 OjIh7FHeH8c,105 Is5sRHNIAwE,186 _KinUMIS3Yc,85 m3s7ZwpFCsc,129 ZHRWbydTGrI,132 M4oJLImqZds,161 Dh0210A-VZo,117 KBbowtlzD88,101 VhCQj6D3JQY,138 v_wQqiFXgkY,175 9AmyJhS8WWc,128 zqWR21AIFJA,134 UmAVyowgDVE,131 2bWostOI7uo,189 kQrU0KRsCNo,171 ikqDLmNc678,164 07rlBwvlBDk,126 _DWgvYbpexM,41 ocyplDqvhuo,129 FaLsWjMiIrI,94 z2ZqFFFcXmg,215 dIw0nCJpAqE,123 Vy-simXeFBc,133 FcfsKx3pADI,131 6O9GrKXP46o,177 j-dYZPMpoqI,189 8cLtNUD4Hcw,179 SwITnQv183g,130 scDWdIV7Fes,211 80sCD2p0W1Q,131 mmOGHo7MYK0,105 a2Th8JGsJuo,65 jX09Cesfxo8,139 gbbnGtoH37o,118 AQUEnmFhk7s,122 JA9ZcCBGQ-M,179 U7xQuGf5QHA,162 UdYapy35qJ8,222 aeWbTffMq-A,182 Kd-81VRVQXw,126 0JDyXQvCsOM,142 ElFzH0wPql4,95 CJKeL-ziA_A,58 JA4fL1qiQTU,151 rzs0681gdf0,131 K1YndrF8GiU,86 kuVLtcqiPrY,122 viSCkcVXoR4,181 E4sgImaJTlA,52 Y1vBIQiyh80,122 CE8HyH5ldEY,118 Z0iCcI1Owys,163 xCKGA9yDNgQ,127 Xh1TwRilcLo,130 1tclZvb40QA,166 ZkPfZTLecL8,131 A1p4HnyG3Rs,165 TDhk_Xhxc3c,149 PPwud5IUnYs,118 RQV-8HxVB44,93 qkfcZ4zdrfA,138 bQyfZXYp7Mg,103 BG59rpilakA,151 kHk2-mOOYQg,131 TRDdgGdGfbE,169 xRFVqsmbLWY,206 0NRYcIcHfV4,128 ALsbjcqNdRo,262 GfHOoFVUk9Y,140 cncKzAr-jis,132 NNfMLLVwiN0,181 -Cc7j0yr2BY,104 tPkmKcc-LAM,163 Ki5TEx2nIHQ,140 AhaulXxlqCQ,129 DPl05d5mi54,168 6z1TOMdI0i4,135 AdBu6VAESeI,132 V_qYvdPSRto,107 f4vVtsfEMRI,80 sBJ2jguXBes,126 ILfjXR8rMgY,156 cv7_7dSbaOk,124 ax59TmvzCEg,183 G-guv9Pd_RA,85 PXetdfRsmwk,120 QxK_EsMjCQE,190 xs3_hNYAVRw,120 gRadASOF2m0,112 -3KCgSpt3hU,129 Tu1RZaFnkKs,170 fYKLuSKW4ao,129 0JnpUYMPEiw,127 gGmzT-Km9-4,182 _JuHsTbZKqA,99 _p0nSJeyRcw,127 YBgsfgkgtqk,102 -37Mhsak-XI,132 WEP25kPtQCQ,161 VvH6ZeCJNHA,132 Fm7B7WzAA1M,132 PUXHIqGfkXs,116 MSIKLnc1CSQ,133 QdDQrp0xXWU,119 2hZFC6Q8zk0,158 LxXjsQbCZR8,132 9h9W4c2YLCg,126 Egb6g_c7Nek,128 VH6D36VQ_uo,97 MUgLPMuwDfU,129 gEqHJ1tomnk,132 VVLlZy4m23c,122 BHJ5KGh-Xnw,147 A0mUARG3EzE,198 Yd1Bx8u7Om4,131 hONljrAJrH0,115 _3GmO3aiBKY,108 MK1fYMxkkTA,150 ChcCflTm4-k,201 FBi8SGpLTGI,115 8V18ashYdDM,149 hr0hb0gc2eQ,132 7JOey0CIgMM,130 0XesK2hB_Wk,109 TVjIzlCjKcQ,118 InIEECDCSYU,132 -PWyO04IJYQ,117 NrLSAjP5Ibw,154 frFwwg5GJ4A,122 6GAilUIUtpw,193 Gqbrt_dz_TQ,140 huCdZLvSyBI,150 75UHGiJjNuw,52 AD3JQD0N_iA,77 zvtUrjfnSnA,129 QfS7XUWUgL0,132 gEhB7HuQk7M,151 arJc5qABgO8,129 cBiLSCP95Nk,148 _ItWcGtaJro,149 bGWyL-vJAn4,85 _kz6s5Yi5Ns,114 02DzpeBF4es,115 DMyBC0gLSgg,130 I7XHygPKbYI,164 yM7iQ_plcpA,154 IhJbjhlRPSk,127 1orN1oGScbk,130 _SVAzrGlEmc,150 dzw9h7GnERM,137 gwTTsc0zMco,129 DMUnxdly1zI,123 5yCSPi05MyA,172 UAfx1pipLQg,132 3JySRf9aTPA,160 DomJHvbM7qE,71 z2QvrmvECo8,169 RdU8F4C9oDw,89 IaAhl7maKhk,173 6B-QUGSCV6c,179 cNqstBuw5ZY,131 hnfpujruuv4,107 mj-34Q3fCHs,169 SX9tVVvLb2I,244 keth0g3CMK4,170 rXs41JvueZY,111 eSDTJ1sE29E,159 k-m4QOtv-rQ,148 YVjyXY_mcl4,132 fU-ICxohwSc,100 NsjUpOTLrr0,111 CJIECQdjuLU,131 cZcI8QATy2k,106 o7_kf3hUg30,77 Ekl021fmWGc,112 1XEn8W3UA3w,140 k6_TBuGcwzA,132 6NmCTA1AK54,128 s1Qz6N4-tEY,122 b58fAt0MdgI,129 KaCyEft6EmA,113 IrDm-HzK2y8,95 88YBTmbAaoY,119 aVv3r2pUtFo,96 o36m-2TPwck,155 UpiqcjnWZB8,125 M49PmHt8PEc,132 a51EYR5AeNk,165 VRTb5eck250,178 qoVuQxxeAl0,56 YkBuZCr1O4U,153 CD0k2oB61h0,125 y5oIDeR0YjA,67 iX5_-FORI1I,180 -T0PH7Wv3eo,69 F0KcFyR2uAc,200 r4K7eNzseCI,82 BHIg0d4KQMc,100 R1k_1p3mitg,210 Jqa0bO9PSqI,131 ASsNtti1XZs,127 IvagCOQJuYg,129 BnPQSD0Pg4E,199 oPS8-oRvVh4,131 bAjGVN4f6wM,193 B5vXrSsvqqs,132 j-v6XtJFNQE,121 GY0xXOTwWoA,158 vOaX_Naqxb8,170 -QJsljIDKkk,126 bHwiXFc9MOw,105 0jTSJ6NK6-4,87 URquvu9F3jo,131 XG-c6CmPo4k,146 P8zlYvk98gE,45 NxSdB2L-Ffk,128 UyzInzm8gW8,131 gwjAFSu_VKM,175 nEcnNSQZpoE,229 rGDHR_rveJc,171 YZ11hDE35QQ,123 dApRtXZRw1Y,162 h4u9pO-98ZM,84 HprI62nr3GI,105 mUxLZWWRKUI,130 noT3bA3Ibyk,110 Z3m-Ht3_tFc,132 9t1IK_9apWs,132 FEEIJNnfoVI,134 ud421fnpmYs,149 KLp6N46er6Y,178 Q49LEs_bhaU,132 I7nWj8Q_FgI,88 1UbSL3Bri4E,189 blbqbdPFfns,86 FX4J_vERu9I,178 BT5Z6_xe86k,66 w5PGP9-_x5E,131 QBMv724lzZI,116 Qo1WkD59F_w,179 g-P53rME1xE,131 pTqtWm_DTKk,132 wlFo4ydbP7c,182 ylvCOlF5RLI,135 vIwfwyjbP4g,216 vkj3RBOD3cA,215 uIQL79UQG40,133 MHpGJ-jtGy4,114 EBPZaYv0_AM,158 ZCZDWZFtyWY,129 F9ZeSn27MMY,134 DXdQoyWxHZs,121 OjxcWhQYMKw,181 HjNQLXXwYfw,131 bdYiJgwzumg,128 PJ7W-dz1OvE,136 P4fFh-wHWl0,177 bdft59iqlKQ,132 F9E_PTTHvgI,136 sdNtnZbJBRw,173 oHeh8nSghcE,136 4PcxtcrI9_U,132 mKDqrUqOe8Y,132 nM0u8GRt_hU,131 SCcBom6117E,117 NTGOA6lPP5w,150 uen_1bL_TXc,170 kQ65F_pf868,103 PPKdHP8zWuo,129 ani6MlnXj2g,134 iv1eE7qxDXA,131 9LiQ5MZKYUY,99 0vXx2vS4iC0,132 Y10g9umKQcM,125 gXRw45jyIsE,134 faX23LNpQGg,126 STKWsvhZSjc,143 Cg5dSosn_fk,132 szNrOdjjhkw,113 TiSGxWluH-g,131 -n4RtjEtFUE,237 XrZN8Sy-z6M,117 -Pf1f0pZdnQ,126 HLnNY2KiQEQ,173 bCKgFFmf_iI,131 gw_zwDaiuJs,109 ZHS4xXmL87I,139 _BhAyhppOvw,137 zal_hU83ruo,130 d87eHGVaoc8,82 tab4Nxd8GlY,122 I3LIwgA7Qpk,176 FIlBqZ0fksM,140 k6TUgccyzNs,189 quEBzmchcwc,131 zR7e8cPlhzQ,175 cKe4qiOYFyM,118 wdWM3tzzH08,127 wreBOqv-y3Y,161 wUT5CpgYXMM,118 yD3r8xx3iX8,208 19qTZoeOEZg,173 zOTlBEbI7eM,161 c5aNkzn_8Bc,131 RfltPijijjA,125 EK9aDAUBBhE,170 BevEBQsAoPk,131 QCJ_a5AYVEY,153 R01bex9Ejvg,116 cZZJMc6QPR4,130 9CjMbFa2Oj8,131 c4S5JKBUYHs,185 2BNVMvzHvT4,100 VTZ0N7VTDtY,130 q75FfwmyF4I,136 gCnWKrvrCNw,62 l97NtEMUx0M,93 ZAhwNITS1WQ,92 o6NxwI5Sbbw,179 fjodt2JnWT8,85 b_2-97kqlzs,178 yKloyDDxo7g,167 s9nYXJweTPU,176 xAmgUnwxCUc,191 HrIyLLIHrDA,178 -IIHYIZSFbk,108 fyXyDW0pU7s,128 hggAh6GibqQ,163 LydYnbMzIGA,178 vxloU1qqM_w,107 2Nd_TsVQwgA,146 zzORtbUYE4c,158 nBRTe09eseE,149 UDcu3Pg8LiI,154 bzoIipqEbXE,132 iWrr0qhRNaA,166 bdJt1Mggjl4,129 vdyYR85RNkk,122 2pFBwbyyNac,174 E81RLAQyhCA,179 px2rxAmJNHU,176 5ke6m-Y8DHE,107 63KhwUcX8dE,132 FARHf9b8zyk,124 8rN5CaA7OUI,95 GIKfEAF2Yhw,131 4WCDgJSCQpc,196 ybq8gINMdBs,165 DFgmFM-w0Rk,178 0mwkZUkwEHw,132 61ZwsdoEI9U,178 85PpxPJ52us,72 AbkZAbJqcIA,174 ICPNrxD783c,132 0x6usdVsGbI,99 ViIuvUSF3YU,135 2k2hQ4dI5Zs,137 vAJ_RdlVzgw,118 FSB26l-iDEw,54 lq13hsPI-yY,105 V0Y4f1UoH9o,129 AtZDj7gset0,132 -CXBIAH4Kgo,165 sCSUnot0u30,139 fI5qOb-otrs,137 f187FGFi1AM,146 eqv02JDVQ1o,153 KL5rXhSkP34,141 ma7zprvD7UA,171 KY7hswfdxI4,143 sorSQzGGdv0,106 Hdh3npiRip4,150 btwtChuzeaA,110 Jq19-ZzDlc4,172 eAvVsXliFxo,97 THe7-5-D-gM,155 q1V_8cCX5Vg,132 kb4jEHmH_kU,184 X5HvuYGCyzQ,167 yYhuz0q21_4,112 RYgoemOYknw,92 xrggI-ISIQc,151 ygNoJlu743w,132 mn6Wmceebfc,148 41VUCQfnnco,146 pfk_iBQzECI,129 SjfMBu6JQ-0,125 uzIEsj6Me9g,128 Mr7Ned_vQgU,154 yWuZtDeeZmc,100 YHTyGMYFsU0,125 EjWWHD7bN3A,132 Q1B3sGDIxtg,113 CRXtW09cufc,132 tDW4X-r1dQI,130 BtEfmxkeEcY,131 EuUUunxYat8,120 jKa9O33GXLI,131 rasqcYuX80A,133 f0wEV9jySXg,148 2l1u5Q9AYjM,111 6S__xAKQcF4,132 yBM4SCBZ7qM,173 uBAd6Nfv3uE,211 a4QlQy31HIk,164 _XAKjc2gIfo,117 _mzI1HQ0cYE,103 E7fcdG_azPE,81 RR5kEQ9LgvU,168 Ab3QDSj2ws0,124 Td6UanhjhVs,132 cr18oXaI02Q,129 GCM5SoA82w4,113 zSBXBMVa_Y0,105 TGoICPqXjAY,174 LbkjkJzREd4,131 qerH8bjHVnI,132 q_y1Qe8dyCw,43 _T6r7w_m504,178 s8hKbzuOAQY,160 nIsM8bP-GHQ,170 nB95pK8TgYw,101 jWHcIO4y8kk,110 kEnK0ZdMThc,178 H37dm_eRkLU,109 koWVPnRRGlA,131 MvFkGlAqYYc,153 TwQ1KE0CRrI,122 GlCN1EPAoHI,179 6_gHh5IEgi0,211 H9Anw9hFNQE,67 n0MW9qK_xlY,176 VN-AkfFZwfI,122 XX2EpE8SLK4,181 TzpamJ6GsFw,172 xWZtwOffj1o,171 gsYcnpq1HBc,175 aBpwrORhKWU,135 5EeD0NiVALs,158 GYPwh07eWok,148 1fM9KjHmVNw,123 gNT4N5W81Hc,173 GfH27NmFVSw,122 ml_zSw6yWOE,170 Z4zy9tTPl2c,143 JQoNhRN9CiI,173 QPmSOAIRsj4,110 dDH3nlKHRQ8,176 dGVvqcGBn_E,134 UStNNBG5K0Y,147 d5nAgnojNgk,166 Y4fkp_IINqo,121 t5eRT32QWdg,78 wyzpqpXHcSE,175 Mp6aKCE3jSc,179 8kAtef-L6do,62 t-dJ4I7rGp8,149 4oJlFH_1q3Q,247 k39MKOaoDhc,146 btXmzToD3W4,177 oLQ5NOAIAw0,143 wVAL10Zb9Q4,127 rLtmIBRWQVQ,150 Dvi6n89JWUY,171 I9npL6x8oFQ,72 ayplsqakP80,86 p8lLNtyeSz4,132 qB26s5dx_sQ,151 wEzZX_MFu4w,86 edBNDiSwnlg,184 846by3LOKlA,168 oDDexxBBWXQ,161 atNVzztHoUc,138 UbrDTO9asW4,188 aj71pJABFFU,166 gLLgGSdfy3I,196 rITjAbXej3o,149 pDnPZ0Ccdus,159 rTBkVOYzVZA,132 o3f8UMtGyoA,112 P-3iw8l0lB8,166 8aegfjXaTmY,160 -PFdr0SiAEw,153 --vFXH3mH3A,179 37yJV-YPBJY,151 2YbvpD3WQnk,83 Kpomd1Lwn6Y,139 MOA_WeKu76o,118 qgbSfZMR99w,133 yuochlbdRmQ,127 NFdvt3FQRoQ,149 4HSdmiu24xQ,149 KkV42m5wVTk,113 jv6-p4kphmc,139 42tGOQelinA,132 CgmI90T4Efk,175 l4Ws4ou6UO0,167 CtARWCZGiag,112 2QRFeV4rPZE,86 8osP7KRacWk,155 LCljgWh4L8Y,174 wi1iG6DIFOA,159 1PoAz1WNBdM,132 KpM_NyYKwkE,130 QzzcHhFa66Q,104 U8x2PcmL4pg,132 JQLBuA1JCfg,103 BktKAiQQ_tw,151 uvAd-GbYBVw,178 kBI3jfVTQ04,144 lhY7RZxINlY,131 qtKtxLmxl24,120 1KBy8-7nc1M,153 wQlyX4xKYeU,117 HtC2c6DQvSE,149 LxxFi7igv2A,144 WPrJDDvstbM,114 dvJqm3PFKLk,117 _lJxUhMK4ZE,165 9fs03_cdppQ,175 AtJ5phl1iVE,113 2as1htsiNxY,124 PW-I6rrNzyM,123 3AfqCkqJVt0,149 0NHFYpXhiiY,154 p76b_u00SSU,116 Vjc0wdQtl64,148 J-OLwCyAtBc,177 X9YOhb0FiIM,174 rpZI9it2rJM,221 QxNZJZrkdM0,107 zt-zQ_EzPsY,178 ZMZxDJb5V8o,169 mqpQgFfidcA,177 u2D0kDFKaxE,176 NpSkrZRlGbk,177 J9z4myiIVww,132 jnoCeqeNM3g,142 7g4XFGQutFM,178 N1Jg10AGbGk,117 wUEYIhP_9ag,155 -ZDt52_mxS8,179 XVyVUZrzGrE,132 FK7N96w_3FU,166 W3s4HSqODSE,132 lnQRXfjI664,94 IMYTK5IyZ9E,165 ARSK76A2xts,131 UzTveNwweRM,118 SRoBDfwS2xU,131 dWhFW021gwM,132 cudA9HUl6AA,139 FGL4-sXko9w,169 WvJZlC93jVM,126 FrH_IKiZTOc,95 M5UXOwphsLk,133 sdc-LNkYA78,132 CDiosBMzR_c,199 FYm6LTv7PKk,79 m8LWjDS3IkQ,173 hSe-_6hmDgI,100 G0y14S8h4ic,153 xJOME7D6-ow,130 AC9SF7TOyHQ,171 Y7gTgzqJD-w,195 XXcdcrn7usw,132 CKMpPpuKLFI,172 f-mlUVx01MA,179 N1HQEIaRZxk,177 goKRpR4XNg8,89 4hAjAP6kPg4,168 AYxHnjsJOik,179 VMXUsPGKzfQ,173 yr923CbtKsU,173 PwSihgp_iTE,131 MMNICLfHE3M,175 1LoKbaf2vrU,138 Iwye0A9pCVk,178 kuAwUNzVX2I,148 9LglzW3HFyg,174 GMk7xOOzK4E,151 LZcSMyk5Obo,127 MJNG_rYJPV0,161 _ia3xfBh5Pc,123 OwQCAyUyuSs,157 u5qpNA4ZIFA,162 QjrvHsFzbvI,35 gd9ZzDgPVFo,92 7wSQMwlqy0s,132 nFRuYV4QrnE,70 JkeXMSrRsYI,179 qlX5rnpp0iA,151 B1Y4s89sBpY,118 65N3OBBrImc,131 RisSaXLB5ok,116 EKLCchi0iCI,98 KNh81oYmq7A,81 4bB-IJBlZms,149 9V8IRFmXcQI,156 iASBdbiKSHU,162 8QYlXDYOhM0,77 _S6GYF1B8Yk,148 pQOcRJKuXd0,79 WSADpIlmqQ8,157 tX3qqCP99Tw,226 PGTXynHmp_o,113 u-M2Zb_B7BY,136 LtGQwP3jiUk,143 RkINjKcnVuY,144 bjUMh2wObW8,132 CdHKXmEn4l8,147 p32OEIazBew,148 F4QzrKakPmU,122 FPgDrHxAntE,155 m49ub45c8AI,146 IqJSc4WySE8,131 ZGM5Y16SSb8,109 6dySVi75n7M,116 v3JlEi3CbGI,131 _emU23tTUAw,117 QfNYdXHjGV0,132 _msjEt4-jZc,73 W_CvL_fMIm4,153 0Gq5R5ffrtE,167 ZTi7bZGkJk4,179 riDe28hGBuo,186 JXxF-_0u_qU,178 OkiJH2Y4z08,91 gbXZzvvp2uc,147 Zm0f0oFUxVA,118 3JF7tS3pxmc,152 xQ6yM4Dxpbs,117 txbmUDJcF6k,119 5gf0f8WioTM,140 DuGfgv_eDEo,129 UZnEqDr9PKE,160 mAtmopQxu0o,167 xcqbp1ysN1M,175 BUrDm2GmJ5I,132 fw5N8DF4js8,110 OCvg2G2SEhU,172 2cRMH4HXfzg,82 -pCVsB4Dghk,132 BTbo7NyijNA,118 XcMH5ntEWGQ,152 8KJkEQx2lKI,82 4GCBqzsWF_M,176 m6-AzGII9Ts,126 r1fp_NVGr6Q,129 WoACzZ_FUzs,132 yp1luet0nkU,131 jhvqJs7apdo,141 7RAzClJ4XLk,155 MUlVu0L0A0I,179 f9qQfURhph4,150 wAZ6dSIMivk,114 _dVAPmlzo7g,121 izbOPZezYiQ,141 sNrOsj0xDPs,174 dZtW9n3C2gg,148 u5gSeZQbbq8,97 7mwZYGcbQCo,188 UY0nYr-dXEI,157 f_zpkjkB8ac,89 8mZEPgvvd4I,170 n2GAcA_P9Tk,131 sVg5_6gjzlg,131 oK0u0F_Y2EU,130 hTdBkXMvY6o,179 ax3ZNv5jqQY,159 yOWS9e_r5OI,163 C5pZipJa09s,132 7tUYeqOLuYU,159 OqnFSU27fuE,131 VbdaoAYveUA,132 L5SM0HY5-vw,149 o02NQhYm4lU,164 N92pfxjHXkg,129 ZMplRnotp8M,148 GCQrTxMgMiM,95 giGWC-o1mvw,178 ddQniqjrVdo,58 naCL7BZb4Lw,164 YPQJOKn0I0s,125 El0_VgXqgXU,186 WZxFIAFTfEU,85 LiI1LdPRcQM,171 rnaCi4rBfqw,109 jB9WGpVrYBs,113 MzFCoTidaDI,89 IMzMccLiMIc,176 bJXBNZ7FU40,66 XTLruQ3tl4U,93 oX3PL_u2LbQ,160 q38QzB5dw0A,163 iab2tzXfWsU,121 lTyNEv7TXmk,127 4gYG7purQPk,156 Eo87byVKgfo,140 n5HtgUGCM30,144 7moP2oVrQ7Q,89 7NMQnDrBp60,171 zDdHlO3v8Kg,131 fXGEXg5q5HM,126 U0xf89hs1Mc,170 b-7IuyhoAxg,132 OF22NIhPKgE,117 iY5fvk3H2Js,122 Sl1G9Jxc9hI,132 ttU5gs0lj38,183 bzGDMtX1IU0,161 l3zxPrDoN74,179 PczVuk7L0MU,157 HcpDdWIaAuE,145 mdsLJ_ciPHI,105 qZD-BA_Cxus,125 Rdxv6jaQZKM,157 0dbyPr97N48,180 4wPqQUl2y5A,133 eYR0zgfAcQk,141 o94LScznlmY,156 s9FoorJGkrA,155 UNvtKMt78aY,127 U6CGGUJKymk,140 fOONIlhXFh4,156 5sr-kuYhYGU,57 XtFr2BdLrv0,174 93TnnyxGBqI,194 p_ixTZLD7k0,160 o2sjOBiBXSc,132 q1D9i-d1m4Y,97 _uhtsUzb7fg,84 h0lUVSpj310,136 JGB0ZvO8J5k,131 qfwei0pOLVs,132 h0qWin97VyI,129 Ux6L0eRqDGY,177 9z5YYwpysWs,121 Od9Z1C8dboY,168 6qAar5htD0g,178 tkj3klWMn5E,129 BocJIlRPVvU,145 NUdXYkBhHkQ,132 iSIDCcqERkI,128 U6tzqlxOr2U,132 svXObgE9fXc,132 NHDA6rk-bek,187 eRqgQiBel8I,166 sW1_A07itgQ,171 HJwSvsEaai8,148 gpgsfivrruk,135 oQ39ssiQ-4A,129 3O13oeNWWfU,62 AiZf4-eJQUA,130 7y9stFHCvEY,96 KVGVHjX_bkg,99 RonS_bJ7mcU,130 tpkTStVMv_Q,171 wAE_PelhISM,132 5LXDBdoZfy4,119 izRUBt3oeMw,102 fi3K18p1Pww,131 KbZQdFPxeXE,114 8tnQxuIPgXQ,77 Gtt2ibEe1NY,129 tdvj1iOOUE0,159 SWnqUVFoQ9w,158 EbMddMJU97g,178 uF7ftHMCN1w,147 sUad0ZL-nBU,180 4kNNwEV5XJI,140 VF_-AB2-Ux4,176 Rv1MSTB7QeA,103 qzZegCkbJAw,129 -WbsnXGKkIg,216 TjGfTL6l-HM,122 UEEIFRxwHSM,169 76gNp5rkFX0,132 oc8Hm_t5BRo,164 -cFW3A13o8s,132 _s2FEVQePMg,119 yPzAML0fs2o,132 BvXUga4d3Zc,179 jm7zMNBEgmA,102 HJK28cWPvH4,136 PHFG3ZC0fZI,110 EgkBHCLS0cA,176 t1-maJWU3ag,132 mwVsJoafaP0,80 8qkahQVFzMI,183 mvFQciz5wRc,150 TZ2ryw04fx4,127 7OpujffVbUQ,80 P4JGOWnX9VU,132 LgMEyrPhq3k,132 SI_DOVqlJA4,127 yX5TsLuIEy8,161 sS1L9wZXFic,160 tYf5ENc39dQ,124 1-pgYgfRbZE,129 GVmIqRcglvE,72 NtxR-xgJWwo,127 SRMuzjyoMRg,131 xP7yIQladb0,151 08UMKwdtWk8,125 ndZVwNuTYa4,126 9P-MtbTe3O4,121 j95Tk1SLXOA,131 p4z5ZU-dHr8,89 5_C7GNWPinI,177 FcEchaH6EJk,204 qgv_7j1_CdA,121 H_GApJWNWiw,120 zUvgi8Rxl9Q,139 xllpnvAmnHE,157 t3XewsVnx9E,144 YBrFMKQOqDc,132 I5xqeX3lAgk,169 IXXv4DMkBpM,99 KQa_SiTfU34,175 OGXdRrvCW2E,179 yWGL8RTONpM,143 7UvSGe2Md6g,121 -dMBMU9FCQU,142 XemAlj9_qKE,135 ObyANYT5y_c,172 kTKIACVqDzQ,174 8PzQmtwNeXM,258 ulLxPcOmDmU,152 WD2I5Jpe9bk,78 OvdQYzRHlO0,110 2GLDqvA6tKI,171 hFjIRET64r4,61 8wyhEmMY_yc,178 -zxyN9-P9_c,82 omFpUjAzM9M,140 X4b1jFHAC98,168 EnBWc20FGuc,177 a_UjNi8M_bw,101 rlXTyrGsiHQ,143 ucuU6zGryPE,131 vtyIGp8uv8w,133 HUJtn_Bwm-w,178 pxiwqleE9Do,137 tBMAuUeeqdE,159 LrIJa8zJs_0,138 J3Uq3-vH_I0,121 BOo2x6MlAtI,102 jW1CeAVPhVg,131 U-42oAzybn4,91 zOiq-2Jpy-U,144 KS_KStIPiwU,147 pgae5kDwHT0,179 nwrLvq5W58o,176 zU9rHffZVBE,117 iCfplC1mMoI,127 5X_mnh-S0pU,167 6cxpiPSZHmE,105 ooXE33T2Dls,100 l9LOKUiY0Dg,162 KGk6xZWTgBQ,161 svytEWJK6Qk,174 JaTnlFHOkZ8,179 OLgi3eAwNGE,132 2ul7iwAUMN8,132 FY00zwMZsqM,168 JBc-gNIjGuc,131 qr6vDBiESB4,112 UeCpUca9VUs,131 UlddepR-iRg,173 Ho-Sv55Yh20,132 oHB3yg1vFAQ,128 QyOM1rQ7iT8,139 CMFFeWPy-NM,85 LPEVs0FV7Os,125 M3FtlKHZXhs,71 LCD5BDaqANw,160 Oe_sEQkEIZw,129 mfqzWZW_kkM,179 PZrRQrPE-Y0,122 UdRma1qSMGo,91 gCFBkXA374Y,88 Nr6NPOkDbpU,132 qoftQY-P85o,159 pGxyOeypYFs,122 C42zpLSVjCY,113 Df3535-5wE8,134 AY1ze9t3lus,141 8-0dpreHXFM,85 k-RHqxyYzMo,131 V0UBmkWw5Oo,106 z-glL87s5lg,172 _6iwpd8yeQc,118 2JMmof1eg1s,161 NNouwnR8QQw,172 KtZQO636AQw,129 62z8SYqpuZ4,124 Q9-NzGEY90w,130 2AHF50fxTNw,121 moeAot5_Q_U,169 xiVeUn1rF3E,137 ZDbhvMyusZ8,166 o3vv1SPEv1c,120 KbaqSn9LDiM,102 0pbdha7w0V0,132 sT7nVSNlpTE,126 XURWRujGTNk,175 p4TZcBFacUg,215 WrGf03jRHSE,136 evWlSySuiII,107 wkyZ8pJD0Uo,132 uU0DNCV22dU,112 hhRIhD6BvMo,163 BDYgCu8m5dQ,132 VMkhYJEjv7I,131 f5e73A39TF4,132 sggwHnudtH0,184 b10LyOeq5Hs,159 sOxAN1jqfpQ,118 tbdHhLOzT-Y,135 H5I1DyJ3w1g,151 xMJFie7JfbY,126 pxOZAWSn-dc,179 xaYlkjfpdG0,156 cjIv83h6Tcc,96 tz-XJMspLOA,134 Tw_kFAuhkbI,161 SWYmSp9wxUM,175 J9aEPBqeLr8,133 WSBO1fuXCCE,127 6s_lBln0kzg,121 BIW6tF1dE50,123 H177TSRFiTo,125 rh8OdlSXiDo,114 HfKAC6eOlXg,170 EJFm05MPSDQ,122 dLc8QqtMhYQ,165 m5dfATd_ZY8,159 Uw1WGruy_KI,148 khfeRoRCp7c,147 SKoj1Its8vo,43 sQcgpyPhaIA,95 ztEcn3h90g0,167 s8BQXJxRw10,101 ZHCd8doza2M,173 8pEobIigs5Y,131 _zFjP61xNb0,69 vv84nq5_ZY4,168 2xH234D7lao,130 fCuYlKKFAO8,127 CZO8Dh7dXvM,177 2hqwpvVHly4,177 U8VDmQw-FAo,110 Yxa48jQBfLc,163 WFhKV35sbCE,111 tcH0KwS_YEA,87 0f2bU9SzCzs,164 0JoIRmQW2es,179 KtDkR9YdBS0,132 kaPdOgl1s7k,164 mIvQRRVbt9E,132 TGAHQorruwA,132 jqvMzCLAE0g,126 aLVjmX-ottU,120 EUB6R41g7cA,108 sHt3TElCugg,182 yq7rSvWzhNQ,178 uQLeZO2Z1YQ,158 l0RkrxY9mH8,138 KwIg2QMWVOU,179 dlxT9ot5Bi8,156 s3PbszHh8vE,140 ISt_AN1f0Xw,132 2Qx3hHEoqMs,177 c_lWrv5E18A,117 gMODOv68SGE,127 w6zGX2qpxzU,122 fQmbxg6z5ic,136 0_hajel24IE,132 tvj61hwINaE,173 gIdOE4SoDfU,129 h5RMM02YE3U,132 qI-CTJnYdBs,170 X2zBKcPda98,98 hl31RQCC_Bc,156 SD86_k19Rx8,138 M5F8dw_FfPc,149 QDurduePMWE,131 hsxRROsF4D0,171 XS-R1raNESI,179 f6kcBGKxGtE,116 huI39DZ4b44,155 s0eHgfzlrF8,100 QNCuoEO3jFY,170 cypqB_GKzjA,174 ZmOUutOuqn8,178 06Its9LhIHQ,148 D6AzQTg_bPA,171 ayLJJZh7RRo,178 SBq1FLgZJug,128 7iLdxVgHWlM,115 mh7fUlkkX68,124 Jp9IN_iver4,81 Axru07JeBig,157 Tggs6HJxghE,118 vnJE2OLp55w,132 z7OEKs7hAEk,142 yP9sbfNwtv0,126 yKNauUKkW9Q,133 7WzJb1l2wtg,114 7rGY9Tw2hSw,131 Boona4-qLSE,184 eKCpwUXh_Qs,163 4uc2qplSyss,225 DNAwkyyq3kM,162 w4-b-D0iByQ,151 _Y8RUTZ6CKc,152 AVpd8G_48FM,144 i4zxmn6_aRA,162 s2gjCGRLfKM,131 WquPun-ky2Y,84 CoFFpId2-Ak,104 AMOb_w6Jfug,123 YkYypI0-OAY,175 zlwaUJzGqns,153 sjWdByLxTuI,113 ycyXqWAMzZ8,171 xP7ctkX_Nm8,177 jBuygQyZbf4,179 lXy9Lp8bu98,177 fn1dNeTNduk,66 h9Rb7mT3juI,176 xyiG9P_Vc7A,175 lmqQPyNsXpU,78 hAQ2xTr4U64,172 z7_AwjQz_AY,111 99dOPdlLIw0,126 1SnNjUe_vuQ,167 G_r06v8SswA,136 2KLf6pNcizk,204 TqVLkE4Lr8U,166 sJOA_CvMqvg,177 cCpDJlAnHsg,140 tSYhESdFisA,179 cyEqzALZmeA,165 v3bQ1GiWhJk,91 KcPIEP0GpSo,132 Oozc5zchP98,132 PAkRrp46SBE,130 0WwbRHBAg9w,131 CQvEBaLYHJE,93 854Zlz5-vXQ,131 _7pkwL7yY5g,130 MG_ZMkTJ1dA,134 LxOEBk9PqQQ,178 qVS1E2L7DYg,150 8pi1bm3890U,160 C0uo35iCk0A,103 7478n46dKCg,144 gwFW3icyEZk,178 uV-u-N8RkKs,121 sSMoOPktKsQ,168 OhncteZCJWE,99 K1R4hHq8yr4,132 axcECZzlPVI,112 Vcxvmi26Kfw,128 mEiLmu1IF5E,155 I5tF_zv73vk,178 puGracMskK8,173 Ur1StpqHA1M,159 uZC4v8_fApA,178 FInHKeP2UoU,210 zZSiCTrPiXU,177 eB46dRO0YZ8,93 5CgpROI6ivM,143 4RKjRiO1FPU,155 4MTf0k1vqTk,171 dshmyllg2HE,169 WHu2355LLQc,125 tj3Trywp_zk,158 JLTtgzY_7-Y,107 8s4TDbX1B_s,125 mRRLEgHhu3U,126 EyexoSJ1tsg,119 lLxVEs_X_9k,159 zaYgv8likRs,132 oaSLgsnsrBk,165 Sczun-f_Uiw,145 MB-oElVuFoc,111 wtnRz9SIZAY,144 gFES6-SLD_s,84 4J0fchFqprw,170 iNLZ1J_Gslg,97 5qzsQMiYINo,131 zDQueu9EF6M,119 pbfBzWJVbX4,135 j_a_zvQOrIE,213 sKHJuOqcvOg,173 bCLTAaa3qMM,183 YKFQfaDL9gQ,200 Atyyr6d7-u8,153 tJBeQ9Ewo3o,130 wJZHc5SJ9eE,187 XS2yOMGv5to,178 lAebdantAPM,114 UV5zCTfvurQ,174 7Lj3LydT1uk,131 vHBKdIq9RGs,179 mLKA_BX6xKo,136 93njceSaOMM,132 XrBTDbxOZE8,139 Rz0JV0WUjPo,121 DFa_oIuRDQ8,132 q4VIMzhfeYc,129 uwEFn60u9SE,168 1GvlSPJ37Hw,92 i_qYwD16FXc,131 d6zX6-Rf4JY,85 AwH6-Yh7_SM,129 ADXqDq5zCTg,89 NR-BaVehxrA,195 p8L6CtsqDE4,118 eT5XhG7qLcU,128 G_v8xjmxtLY,169 3T-wqo8lamY,38 MLFzROHNLmM,175 kbLP4mKMTYg,158 xPYQOuxYES0,123 L1bqqCJlCpg,179 N27gumJNHP0,115 CEvHsuyVfRo,138 G_1jQkCRF58,75 xB1tKdhnGaE,175 4DAJ2QupBUc,105 Y0SFyVdPfO8,69 EBnn_Y29Pks,183 3IklTegWKfw,128 9AtlQm1jVpM,176 0eBDwVSU56s,143 WOG22C6GDMA,179 sh0UuxRgqgk,106 pVfx0OQcmBk,164 UczoOVtUsDA,157 zbZmKqU90pE,172 Qp3NWzLzaek,89 1hag3avWVXs,66 0zROMB5cxBA,167 fhgqKH6V34k,173 A9sd10CHAP8,109 lwkdeQQiCms,125 0JRdzrh9in4,179 U6CQhcLjjfY,96 W1W5JF4lRIQ,147 iIcbE_xFIuw,130 MH7EgG6Y5kc,107 WrfxIymvEhQ,126 n1lQR-GjWYw,129 aDJJBMXiwiI,178 S8aigz2j7-o,160 P2oF9-9UpbQ,166 ZdhqVdIsBSE,168 zUL_yawY6Ks,135 UoM7CdIs2b0,108 a1Bx9nyw35w,193 jPfje0jZeMo,113 QvUl28vA8oM,132 5mAI-v1nfOw,131 mA1FWjriD60,195 0WOnDEx4QLc,130 ZMQCyJ2lhu8,72 LfSLyM9XiCw,163 Frwrlztd8C4,131 00Tazm9Z6XU,86 CiWjwS4lqLY,124 v3H9-sHDZSA,141 ELqdLvz60zA,90 X_VSJfHiNPA,177 TSPaaPqteCU,122 ftNK4JPSoto,116 LWG3aFFhg8k,181 sWd44kgjkeE,179 CjCmtqPIRp4,132 FLCvFcaZW3Q,181 GtSNSaW9IRI,147 DoqPEhVHdBM,128 S7yCsHLwg30,179 jNPBfvcLIMs,158 MMcWHkb8Ank,107 yB_0DHi3Z4k,132 FjKQ2_lTY_c,174 56F_nTxTQj8,177 tsIYleoAQpY,118 5cxSYatteJ0,149 IqfczS-tx_4,109 Yz0YrG0oJQU,131 yxiNPHXAH0s,134 s1nXXro4Aio,174 KJ7Fv2QvzpI,122 c7RyGNzyGB4,117 5NY_8ulSutc,152 XO3-PumyjoI,136 UOsM81pRVWo,179 cIG0COsZmjg,152 SKMgjxAgidE,121 7WjOFzTTiHY,131 ISeGBx2JvGs,86 Dye66uJlLRc,193 asNSRS-UbHM,123 nW-iQzgmyeI,127 cA-laLpcLIw,172 2tWroNJp2zI,132 2W9aISYBJXY,130 L-y9V-gpj9U,97 SH4vCrz5Pb4,170 cP4Q_O_ZKWA,129 8lRysx2QaZg,169 yGGZUbqbTWg,204 ofWdRHOZpV4,33 5ktmcS1L3-A,232 NK_Gt07WU5o,174 hZZG0M8zj_8,110 s1s6SqHLUQA,176 b0VU3j1hp70,177 VvGhOtoy5iE,176 mGq0iyW-f7A,170 vT4HrbzMVgI,164 n2ZkOcq4vWU,64 DPmHrgbe3xo,128 cmBN-X701Gg,117 sZU26D42s2M,101 y_3OE_uIS8I,121 YrIvuBpSGio,128 S2NZ6XCtqMQ,130 Xpy157qTtng,131 AZtman1rdUw,142 8R9KLz7qDIY,73 rFBErC8napg,169 AwXJIHFo84c,122 JWLd18_ViOM,180 ZrCtTXl-84I,135 _n3aOgYXQ6o,132 1X1shl06ZPo,177 hSwy6UI-djc,116 ZSrz2g2kmb4,235 TTXjgOan_KI,125 8APhdryZ6m4,131 cJ4mSB-0OA0,167 wojHQib2wn4,111 D_xUviDPUOE,200 udTmoc-i1Q8,52 Tolt_g4y_tI,132 t_wR8zbM5VI,140 ajb31pJMQmw,147 pHB8Z35H29k,135 W2z88979aKM,131 m1HazoM2hOY,179 4QOA-TyD42o,148 w9sO9o8LNvQ,131 cUy-J4YGxcE,131 F6mWKtfNVA0,71 ehNNyfvhcto,99 Z1RHhhCqpqs,121 C1_BoN9f1hw,179 JaEv5uq8sJs,141 293PMWaznLM,123 0TvKsVxgbF4,175 oUleBi3j0o8,132 C6MgTAuqpXc,125 1MVR4GmqfHg,92 pVssi5x6rxI,142 fxJ9dLfp9k8,124 0j9yDnytwPU,94 kAd-K7nteyI,133 byrLv_402BU,165 38mMNp3gyYs,145 wyuPoWs79fo,162 V3Tlo0EutEQ,154 bJSDrRcwwKQ,149 5P2p_4ftJjE,148 bfn9-AjAJCU,94 CHz--mmu5RA,131 _ZIpnWucimQ,146 ttOuvmYYeps,180 CKQiEEWqW-0,104 Gk_2euKF9MY,160 gvuZShYhzX8,160 rXwdnHnLvms,121 BLIuci6IBIg,132 k4sAUqI-y8A,117 dOzGnmkbahw,132 BIdtUDoR5A0,176 BKtBN0KHq5A,97 0fBA7VUZEgY,131 uvyPBpxL8ZY,138 ZAF804tkZ8o,133 9VLcxXz-0w4,119 XvZhDq1NRhk,178 1lYlFbsVOjI,130 OWRqJA31H_E,134 J2vVweGS13Y,97 xCQ3ZdnptUM,139 i5JmxPGoM7U,132 Hu-xJbVwgPM,79 YqjCnk31_Ss,122 7IsskjJnGN0,103 7FK6P0sTBrs,94 I6uZjdjkRVg,140 LZDir3e680o,133 -28eBo0EDDg,147 79hXvDohqgI,173 2ZGmI0V_Hgo,172 _RD0zpFbSmY,94 5Q8BbiDiI5c,120 iKzLZIbUM8o,142 LIYNk4ARUR8,179 Jipo-s5DGj8,61 tQl5ypxi69U,128 t0hEHI9fcsU,126 OJNBsuHFdM4,178 5azSB3B9dgU,124 jQTtJ71PkKE,125 Z9QsVa8r5Fk,125 FxzaTk1VwGs,168 QrbBBAXBPE4,138 fbS0gOz76iw,132 qWOQp-rJ0Vc,169 BGyHgJ9DunE,146 yrfpRh2SqIw,152 -zEXV5oiWgc,171 gjUN_o1mtW4,176 hTF5JMKgI1I,132 EegnTsyPDF4,146 dWhKh27tEHQ,179 19u6S4Fqnss,144 lN4oFlIKm7A,95 DxVqAcNKMNk,146 MmPU9OjE2X8,151 ghtGcGtVtho,112 6Cf1MeHEZn0,102 -y6RPL5v1bU,197 5BBhXUaqDZQ,179 uTINsxfQwUw,140 4IsISIQpKTc,126 HhEyYbmTh_Y,138 Sqj803KC3T4,96 cW23WpOvC6A,100 f4D3R4tJNMo,128 TaJeShUtQjc,130 dIv1kqivuZc,187 m0XrO4YJyeI,144 Z6rYB0AOMjA,154 Tsk9gCcchg8,150 wh9ZsEMo0-o,61 M8s2txilG08,178 LAk5KEGLzmc,133 ETchiCkaaYE,110 9YFfoCKHAQQ,123 zVzeXqLbqug,131 EN7SYqdbsm4,173 Q_j14lseORE,133 TmdzJyoeQls,127 LKXQQmMdiws,125 MvDNoWSnSsU,132 4tEfbGzxI-E,137 V5Np7vmtIYc,189 Z1Zrfm1Ylro,89 WYY9Epog0rs,118 GHOgErGvyTE,144 8-9wlwVvR1M,151 jtHIEO1Zdfk,157 qq3C3psItOo,149 uhH9ewIEbnU,116 GE64zY42bUA,155 nKBE3U4mwuY,130 DhW1_LX5xZg,113 HcuptmqW_kA,90 8MoQTjNnlmA,131 rFy2252ierA,70 ZgbGOBeeaD8,125 TeDEtT7YjYY,199 Yp2w2XxXKD4,128 e434wHYilA0,155 gRBOrpdfsiM,122 M_HMbS9bEhM,157 Wk9-oZ9OGjw,152 eYx5m_iT-1U,122 JhNznuSZ1n8,125 lt3h5Ez9t4g,132 uQlKjRScXww,122 bGQ9QznPQ_M,139 DLUx3hDY2wI,162 pDCzYY0bjbc,171 4VKym1WU9go,146 PTwqLCxIMiU,132 69bd2hhDLF0,127 YpnqA-vr53Q,202 PC_O4NLvktE,173 blWwfkSF89o,172 tv_xMisf9oc,167 WazcuKEk2to,140 FIjtDcICyIE,178 g3svdzmBtic,175 BW3ZFYQQXb8,100 BS82G9f2Xaw,141 LxXrccK4S3I,179 0x0muJjYzp4,160 ULCyXL8cTFU,144 l7FkN4ooYvA,175 0CQi2Bb7WE8,87 nM1xpUM4uUs,118 aGActTYN93E,129 GyhrH5E6B6g,139 xGCLACE7SUI,178 0kgLLa9gnsU,144 k8VqG4ftlK0,160 BgkEy5fF1rM,155 C58_gjlogWY,178 5LE2vO_aQgU,140 -qijwXk_bnk,133 9FKgmafi1p8,190 UdZi8K3PLs0,128 9qmOMFvxI2I,92 FXhW_IAJ_Yg,132 hYwxyijuhOQ,164 n1X2w0tinkg,127 YUaq56T5qSo,168 UkDKxprXy_0,145 ZV7UY6RYG6M,130 4YFz0PJernc,153 r1mN6K60148,169 Mk_C5QH2Eb8,165 YjewWZ3JWiE,129 1iCqTxtsqvw,194 hmYIR6v-oVE,126 LFB_SKdGuLk,132 O9zWwhJYQNc,202 V7gceiThJ6U,134 6FVwlgBDCo0,173 UnM6dPbV9Ng,128 JauxWp4eWnM,74 cKJ6Jyo_9to,177 W_0WRTR2vSc,160 cYGVkLGyGqE,126 LpP3_e3ioiQ,176 o3s4QiK4MSM,158 yb5FDpFLc1M,116 zjiAUjrvTrw,161 _o490P6zeZ4,121 lot6apnbKk4,167 q2vaQZMf7LI,49 sfh3DVzcGAI,130 b-_C0lWgga0,85 EauDkPyyz8I,181 ROzcf7QoDjU,146 ShCW6mr_rsM,93 y03_LmnDaTY,169 -lX6P0PFKy4,97 mcp6KbG_5rg,128 sfObDKSfaZA,131 60gXuCsTsPE,134 ZQsCM4wE_es,176 2RYNIbNVFhg,177 MDsC2TNfF3g,156 gvAl9GR1kDs,115 dKPw9-jpA3Y,140 P5Q7apxWucc,128 ruOXWHbyfjo,158 NAEDVsrKk5s,114 -1U0LH6dPfw,136 2kLkwWVB9Wg,103 ilG8mzbHNNI,146 yuvBcB1oLI8,152 snRRa2Z3DFo,36 ilYccsPDTXM,143 CmssRVrBMxU,158 GMXgGPnbnow,179 eiKSmbxn4UY,144 4nSA_B8pC_s,129 Xe8LJ4g7Dpg,124 FxwaraxX89Y,125 dlwR6MhC2Hc,129 rd8JDPjEoE0,181 9FuvuHFUeoE,129 SXOm6AEArjo,89 DmDtPzG5aU0,120 vkX9jHBsmwM,169 KsZ3SpIoNos,177 09m9ltjwuJU,131 aCx3jrZJjPM,168 WCO594skLRA,159 QJwdXqGBEPQ,218 sRFINj9g1iI,171 cwkEbwJR0aM,179 VHsRuDuQKo8,121 QEQp25xImoA,138 TcndF9QpYAU,113 OgaJLKX1sUo,164 rXDhJmUGdiM,71 W2roZO0kTUs,186 5h5zurZsIQY,148 DOeYRNcSjWM,177 1_uvjP9QZcE,151 xswJpwb7Afs,130 SELFeneZL04,131 _iw7PLtjjow,173 cMxPAkZgoy0,131 KQbGttprUMA,176 _FurW3BTcjw,160 NtQdJIeh2ho,79 BWMFLJwEVyQ,178 iWII1mMM9HY,106 Equ4D2mZDHc,182 sXrZaiADkTU,159 O5TthS_9-9s,130 01ClRWyf9I4,258 cVPTibn-ewI,213 JIqfgLLZhAk,169 rMS4ESFlfDk,132 yan-Tdiyrig,124 azkJMOVoNys,168 vEd2sU65NQI,167 rXpCjDg0RT0,127 OrxsZHRGxRc,165 iZqKmtk6Vlc,81 8mYlqWefu-8,136 EdC7U0ZRALs,142 j2aGGNQW_7M,132 kZMKLwtkLrI,159 19KoXOFVCCM,127 KwWHPqidGuA,175 iFEr1xsuksI,177 cU2j_kP6U0w,171 wu-RfHKCK7Y,125 IPdtCQV4Dz8,134 9Ipb0xcxdqk,95 QiVqI3oxdtw,102 _WWIiTlGyYQ,132 B_FpV0CZjxY,133 xSNkZYKC_c0,151 ZwlQdSE1LdM,128 3PBo1ef-18Y,154 iFKyzbCLQQA,132 Kcf2d8epCXY,159 dpIyHx-GsbA,126 VV97_cn54bQ,165 NVCvHb1UK_g,129 Q1XwIK9Ykvs,96 zMzCxBRDhlA,140 DUMW--Zlrcs,113 6Dg8xn6Rdwo,179 8cQVspzP0Ms,161 peBuMWtkw8s,100 GWxf8Hb-Xis,179 0Cpa6Zn7ffA,148 DslpNlhAfLo,73 VnAmEovifpU,179 Xq_9TDk-hj0,138 yTNjsgJ1wwc,130 W-cZK60yWbY,191 mszPMVP_qcw,171 7yhDJzI-hjg,124 uIEr1T_jZlQ,145 uat-LZ3t7i4,120 w0X84fml-Bc,116 Fy988XyqFhM,171 3DsoxW8AUEE,166 MnZJSCtPQtY,178 i7hF7BAKV_I,164 9dmlcGZta9E,170 jJ9VFThsqtU,178 zaQa4ttIyNo,131 ATDt5EBims4,157 LGmthB51XUc,101 qwUgyrgP9H4,147 CBS7b7HPuCo,174 lwhQK2kDfBM,137 4S8_1PIolnY,150 JTgbdnNC5ZE,179 -o-C21COWIQ,154 iOhZLY0cDV8,115 Lt7yltFpVyE,166 -jFiu3zG8dc,179 7iM1XM9SvdQ,121 zie94YV7W4Y,149 GiykTnvV8Mo,132 Ern5-LGeU50,128 UsonrKXJoas,106 CDbpKJDcbQ8,116 mohoyRj_VpU,39 RRLisRc0j1c,179 jsLRdkCMvxI,164 vkFKHF9Fs_s,111 7SClmJTqKo0,177 XY2mzqw0vR0,97 1w_JdfgygYY,107 1WA_d9qBf4E,152 vTSmbMm7MDg,165 8jWoq1fTwJ8,117 vEFoOcev00s,154 UYpqBY5DTUI,177 TAZ3_IuoGew,179 tEptrqj1R50,131 myOTp1wr3Bg,96 UfHqN7KPZ5s,162 2nZBPdh9_Jc,132 -JNyHnAi8zk,179 KprKHSAAn7U,129 wb8HFGVE218,106 us_GLuu2SAc,145 M8T58oBOsAU,74 ilV5Qt01eyc,117 AQkLWa6J3dM,121 FTJcaJziQ1I,118 w2fpC1izWPA,178 NeTnaYH-08o,84 4LY3sXlBbk4,118 qFbklFTJlCs,178 aIBT3l54BAg,125 GrIJLWISdlQ,162 Ep85AkCkk-U,115 CqHyrmbiD1E,152 PP8BpNVk8JM,132 Xt0Fv0W-CSo,170 7d7J-rlXWvc,132 x6jUAU8hoBk,140 7PfDjA-3RP4,132 jGAsihLnYqM,135 utS5IxGpAPI,109 j4mo1ywVR_M,128 gQjGFMTbNxU,164 zI6U8UWPhWk,164 YiE8wDRFfvM,132 kjtPUnPa0LQ,167 g5wB0DNvM8M,86 1Gnmq6nB1ws,172 vm29fXJWuOA,179 D0Rs2n8eCPQ,117 4frYhsIGjJU,179 kaWU7XlPxV4,137 SqY9GVVUo4w,178 AeZQ4Oi1wu8,196 99-v2bOxnJU,102 StS0_Y5Dh4Q,166 Gl4bRwYs1tI,137 SQzC9SO66pc,149 -3RMOO6mHr4,137 aWaZMXiimms,126 x2yXtHyhu-k,130 KLIB40d6Pz8,142 _KC5AJdRgBs,166 ARKPBJdE_QU,168 L92EFtI5VxA,179 K0xwTAJROW4,131 iKRpMjVJKZc,183 yodVQ5QAc88,177 9-NoQwwRDJY,177 H8nX1mhYFk8,131 Snt_FLn3dwM,139 6FqUyxVD4qc,132 Z2yt_J6z2FQ,114 MiBcK87oWBU,98 sR_xG8DNCSI,132 MMigS6B4t3Q,132 GKsKm9KYbaU,179 SVZubVb2L8U,159 zlVbQsf7vpk,136 fLWjUBClszw,198 iRLGo522K5A,179 oe6nOL82mmU,90 3IiKTJztqFY,133 Q6jbNsSNxf4,148 2NhF6zphSx8,171 R-Rc1lQMjQc,99 VX3u1HUl2Zw,150 HHSAml1BAR4,113 _9xxKArFYfo,138 33NlZaZVCgw,127 4_23t4NzAMk,188 p4JPMo4bMa4,103 KZt-mGmTpZI,179 9ejzBYus8qE,170 dLVgEWrfdSg,86 dpg077fR9Mc,165 zbkojhq6Ryw,181 olTfms7kJIk,74 lZ4ouD3RVKU,157 e2dAiCB6igE,114 41AhzyLUBFM,143 E-g_up1kWt0,132 WnBzLtUAnIg,146 r9mcNXIJFbY,119 23Xxotom7bI,189 sHhFAITCEPs,153 6df7al2Ez0U,132 Ew8AJsPAyLg,178 9qrDi2o-eEw,177 OTX8quF1g4I,112 oQjMZTetuEg,183 IpW3LbAEypo,179 B4jUZUgKhFQ,178 q0YOdmVSceU,89 A8WBlVOcSs8,121 aQobE1tPeGw,105 7a-OSvw0tjg,104 _9rqQ-bOcLc,124 KOxmixap5yw,140 AtDwOreXh-k,132 9rTcIUk9Aio,157 f_LDdElm9fc,149 ZLbDKSo2QLA,172 m9PEvezB8Nc,129 7ru6HnpJJP4,166 5Q1f6Oij1NQ,179 Ve1oHq8JIwo,127 IgrJkJ8NYrw,105 80xURylcWpI,169 nvnag6ta7LA,173 gVIdf-kZJXk,163 eyvwHF7NIGc,162 gzyR9eQJMvQ,109 whCKn6cV-0k,86 74c-fV_AjAQ,39 mkEMQ9OK088,179 3GvvMpMUwQc,129 DKp509HHG0w,125 uRjbDsGz2tc,132 07YuuA_2O9w,128 _8dcjZCqilE,179 KYeZm7yCOaE,126 yVAFP91HfBs,92 s1pDel1G9Eg,130 odUsOcEqT4g,140 FQjvyy8gOS0,207 BhSNoxyn9ao,166 bJwzDAtwJQU,104 W6qWnmb_22s,207 BnnCQlp2msk,166 O87gR6xJ9Hw,112 b56RExAdg7s,128 aPQcQ4IhHNE,175 xXjPITaIjPA,103 rvOq4hFIRJg,189 C-c8T2hNNoo,126 YOuQ9V-tzps,132 5lBfYlWmDC8,159 ohoPpyAG0zA,148 ZmNGTR9Y7f0,178 6NbloMPJuRY,112 _7aTnDiBVEQ,160 ZnIkMhuNmjo,161 UCgvftiw0t0,137 FOWZ7B1QenY,148 wTqPJaupccs,131 r1scNthC8NI,144 iJiQsEZXz_8,122 vrVDJcw40BU,162 4RsVOfPT_is,133 mQpZdtspStY,167 g2py3Bx0Nr8,144 XB401RfGMlM,152 8Yqw_f26SvM,171 RDrZm6eEY6E,179 SPMpDCxhKGU,178 EonKIlrj7t0,86 aaaIdkgVahY,114 g9S5GndUhko,176 EYpR4aksH3g,174 dQQd6s5gYhk,102 71cKzwJPI5g,109 LHEPabAiiTo,129 PHHgumL4rUI,130 DZwobit-Zy4,154 9Fj1STjqFDU,99 RKcDDLS3aqQ,105 41FRwoAJkpw,115 BzeKxlcKil4,151 PuI5bs7mZG8,131 TrRogqsarno,130 74BF0nnqO5o,178 6yXY1OKtYPY,123 ct7Ox_OKe-s,137 wt0_m5mUsbo,95 komxaWgJ8O4,177 LoDGQLw_iLM,148 1uX_OAhcgb0,123 cxRYIDsZzuE,131 gjRCN-nrEl4,104 A6PpUgfZcRU,157 PLPb1pB0vJg,128 k9mzgW758k8,109 0npouzhhZTo,175 fG1_01gDUoc,183 I_v5km4eDik,164 S8HUYXl6grQ,178 f4OPBNbNWnw,124 rvImiPkES20,131 xjCbC99HMdo,175 GECuST_cjC8,109 IwA5uSA5ZBI,92 es83ejXi5wg,113 UKvQEHlkqJU,156 X9A5UFJ1iZk,172 mLl9jkYywZY,132 aJVHnyq7Nz8,46 ciL0tWi56tM,187 KhtepI51wuo,134 5aBVbBiojuM,122 IvwJ-KwPATw,130 rdEbjNy5BNs,141 UUzW7NqutUg,154 1y20NC1_MGQ,126 JHlNsy6rMUI,113 OJiN41xn8iY,166 kptIt3LwGWc,131 DQaHIFC9034,193 1S3Vom2V2lY,179 rpWuKoDm_9o,161 8VItLIW2D4g,151 ER6BpmtBLkk,129 YCIt5jn2XPk,126 1iwBRoAb_Cg,150 imcPspMbcL0,148 BVrZAIo3wX4,135 0BXa52qz-kU,114 8w4UZGP7OGo,189 u1CmSdzgYiY,131 kePIiYeH2Ko,132 mCbY7cAv7r8,174 iQ-P3eRhpKI,176 QYtcftNU7Gs,178 WajS0jEmEG0,170 8koQ3N3w7aw,107 DgUvg4sBGcs,157 CbM6muvlHOw,137 GN1LhsTj5CQ,185 WVDrmwtooj4,167 wBIVUUflNb4,223 tX6-gQGKm40,178 m2cUbp6Vkfs,178 W2EZOorGpI0,138 u34dzFKx4Rg,148 fcfYrTFbM94,99 u31Fyx8g5ZY,129 2dD7upKpLks,150 0M0dGWXQt6Y,132 H2cgoxJHSPs,130 XS7Tpc7yY8Y,124 RCzgkvkbVI4,131 8_mRYeBdwcc,118 xb4rFYLKzHA,118 gHWnmlpmub4,121 PbnhCazvuts,132 qcGEIq1AEGM,166 9MDbaBqAqMg,96 Go6CJ0JVOUc,131 1eTXG8FReno,171 H6FYQzuVMfA,145 5mMnqYaXDk4,132 dEqZRPnfSqo,143 KTes0O7QBR8,140 i7eR-SzImZQ,80 0GsFiFVwfBE,177 xxmnK05iITY,178 5Nw5r8_YCFw,132 SWxdW9jlHqM,142 cRoIsrSzapo,132 tWHVvdPw2t4,179 WXVmCSMEpP0,115 YK7cNXMRifo,177 598QZf6lkKw,167 taAwMJ4hsdk,85 N2EC0gAi2lk,179 umIBbT6uwZI,164 a469ezsg86A,153 Fjr_CQHJiCo,188 Xq_a8AYpKYA,99 ya0uliWzUTI,80 gusrRGgXCJg,112 jQPKeltJ-Vk,179 BoGZH9krgjE,163 zQX5VL1XU5c,170 lntqgt5jbjg,115 66f94DU8ab4,175 5h9E5SmLCVM,177 VAp8WVZm3cc,142 SV6dKGbbkIk,95 JupxjoCyrBE,132 RmSIKuobH10,142 w-A750XbFAo,152 tWuBw5082gI,176 A8GRnS_49gs,168 CK3cE7N1pzU,94 Ze4qFn-a-2E,110 ayOLECuygTQ,120 nXjnagPujjE,114 11qpNfXStVI,172 6SoBKiO5mlY,129 OsgEdYjoqUI,163 J4me49IF70k,129 h2Fbdx7N2Kw,112 RxhenI5eUDI,164 ueAsO0Gq8vI,149 vSa0UepuyTo,178 _zjqM0Hmk2A,179 lq2V4EnoY68,166 zSd5uTUpuAY,137 6OizpcahOZA,117 mLk_txo4sYc,128 TuOYe44bL0U,120 XRx0KtjPoX0,178 o1DgvimHOvw,178 8yXl1yKbBiU,179 xdMilnKGJdA,132 BNHVkYhC8Po,179 EqEDcrYPp3U,170 kKC8076NZOY,110 d3GeSiD2HIs,179 bKkJKMjnYf4,110 R4CiWP08yes,121 ZvG2Q_KNCOA,173 qYEceRHS8jM,87 WyKHdjh7_2E,132 07k4FaH9dTc,161 69yTsxMTNnQ,131 Pw8FO7eRAoY,131 vk9wMNmKk6Q,126 IV0hoLATbJY,161 vsfjzfGZVyQ,137 Z1sTQ3g7V-U,132 n5wiHK9V_ss,126 I_oKf3IEGmQ,103 c0-3FQ-_SAg,153 awPDaFp70yI,115 loVYzYPJBTE,142 dGz9C2xMADc,165 NJe9WplQKN4,132 NYo4WkYNLn4,172 kRwFOUeh-Ro,39 P94WndY58eg,174 d7vy5NkiJJE,134 9b32VkOh2nQ,155 JyVZgdLjGOo,130 e9cysHm38Kg,99 3wsMRsZ2Q3I,91 iX23r272kqg,171 U2SdWVntd-o,161 n-omBTsCIDE,131 Xiki4aOO4tw,148 ux9JHznPT8E,140 eX7t2x1F5wA,132 BXq-jB4MZdU,104 nxnkxubWt5A,140 ioKNba1RRys,179 aa2agiADM04,170 ZrKUk6S3XSc,129 AP_hr5nmo9M,125 ek_w1fGGUT0,177 1l1qpOrjsi4,186 1To7zCTHAv4,138 Vx357DNh0vw,156 KINtZPTjGOM,111 iB8eR7GugQY,142 UrRDXFXZUhw,179 iJHyw2pjpWA,159 XGg85Qv_gK4,121 vR1WPNzcXHE,176 6i0sEgnPLms,80 4nSkJZ3i2-g,248 jMHH-fH6oBc,176 g-g4vCbZsDM,123 4VX7ZvbbLrE,139 2MYB0Gp7RLs,157 7yVV04Hi1Ms,61 X7ME7WkPyC8,67 zxO4SgwCONk,158 KKfz8C48EJk,175 rxCuYueuyxM,158 4E_jCd4LZL8,116 5ql5X72wS0I,165 _lpIHzRR1xY,133 WVed9LPelUw,179 _08wo4Rxayk,127 PEOiWoM2q6Y,179 jot1h4tgY6M,179 7Dxxk1az9Uo,147 8Dw3DomVuwI,132 otk_S_5inBM,156 bLbLsjRVm9Y,145 db50XeSEtv4,109 IcawiMd_kkM,72 NPS356u_u08,174 IEA7PR8i5Gc,155 XN0tr43oqjI,129 b_5M03JfdQo,126 5mbqW5rZaCI,115 GXumhcRLN_E,130 Tw99DKA5tss,163 7rVMT0xklto,136 ohnkD-gjNVQ,132 ZNnk9L2LSZI,165 c6XHLe94SJA,132 8EUTXbhTFg8,139 Rq-hSPn_Elc,128 4Em53e2p7HQ,166 xMuWufwEZiA,105 OE5CnBYFkZA,87 PwfZYNFfEfM,93 cbBTkI-JxVg,69 5zXWLbr1LyY,132 k2ih0cR-fEI,131 qB78U2aWihU,178 9Dd423YO56c,89 bHGyGED8qCc,132 UppZwnbIvZI,119 oI2bCE3FNZk,124 jYpYTpKuT_k,146 EFhZ72P48bc,86 qz0rKdYiqDQ,158 Jig6r9FAwAY,147 PT3Wpc71ebk,131 J-7LezqtuMY,146 YGOmoGwJbTk,134 GnAKqKB8ryc,138 QHYatXsRFEI,166 cQigrDa8S60,99 gbr7Qazpy2E,132 rC9LfNF_CW8,130 OEf-Lee0YnE,179 i6XlRCrUvxU,133 AebCDidbqI8,178 86TpCwZ4FvY,128 8jK3RW6rSCM,137 0sUHxfXKUas,113 e4-STTC0pNc,129 VUZBpBTqRJY,135 B86JJELi5Tg,183 J1wEoCLDl9Y,65 7ELmyf41TnQ,206 0mE11Cy_xAo,179 jla2i4bOfjg,132 p9Iw3217IRs,175 k10DDJ4L2lc,159 f57Vat6YZUI,151 OIFEMSfu4pk,141 FuJsy0k28tk,102 7KF4iJzBVWM,117 HqquGvHwicg,146 me9Vweatkto,182 AjXsoJGi1fo,140 Mb1kLqoiDuA,127 EQDbDIz1Y0E,134 M2_cj-txN9A,178 uJlhwWFAAxI,53 7lQT4xGTpIA,178 Mp1_PuUoSaM,131 l1SZ4ccagFQ,130 aNQL0s6v8nI,154 PSvMn5gSLWs,206 0Y_kftjPpUc,130 xzW255065XQ,162 TNVwN7IfVAw,157 LGnwTTGzjpk,135 2jgk4c5V3b4,132 4tehW9FH9aw,71 -BNqJHOxNp0,161 oUpzcxwFI6o,141 x4oAO_kDHTY,178 wT2zu8zPXHQ,93 nfzJCrxKVMU,186 OAMxHdzk0EU,119 RQZFCcsvtew,126 O2hN7307Nio,147 zdbOXyz1gpg,153 6zqeWbDCXMM,118 xbHSfACHWQE,181 j2u3UksivgA,107 T5CoWL_wdC4,124 gDPJG9FP3iM,166 3k9G5rq86PU,158 lRAsSTNZD8g,167 cZKYcRqPh-o,176 E8MitqqUuBI,164 vIrRt0vaySY,154 bhYOGuozHd4,153 204zPTniPrU,171 qE_SJYfhUc0,124 39HR8ZjQnYA,151 utFeHmJ1iUw,123 7Ce8fa-b_m0,176 kIUgcwJeN5A,96 vMwfVOf1-vM,132 o7zebTh4tHo,92 Tkjw0XB9Xuc,163 ooiimi7zkoE,156 JfFRCGgpkSg,131 fjAnmRjjY3E,123 HycJFYsUxaU,148 pjJU7RkSrr8,125 YCAW0hzka8I,165 1Fxq_n8e1qA,150 mryo27tUcJE,125 IbkWZDej_v8,118 GjZ2eEcUTrE,132 m_adoXQ7GT4,96 Yd_u2G_ucCU,101 a4Td_W5dc1w,156 YCleI91Af3s,131 HOrCBUADkMM,164 KVu2o2fTKlc,65 j6qjibwpEzM,197 kymk0SPNe7c,144 rnTrWINYDsM,176 AgZbPNlvHe0,117 O31rBYqYkuQ,168 LepvQqFvoWc,135 _N1L7UsUeuo,104 MB5PMwcYLqg,131 VGA1SZwZC7A,135 gnqyCM42fOU,187 DeoXtC4c5Ck,132 gpEiNwKpq1U,69 Lrr_z_4VLdU,179 Ew9wk3EGlJc,134 eIAiu9_4JDs,178 W4Zj0uwpIwo,178 muVopS3Yn7s,136 4KFtwqYA_kE,148 SFEc7iy6zmI,82 Ma5iacR9d74,179 GM8DRazH4ck,179 ZwVuw2rvu4s,131 qy_ZclSCUwA,208 XSTakNMoF2s,150 OOgShYNNtn4,179 LDDFccHEa3s,173 PKLVAeI7MU8,132 kFFuJQRlm38,133 Ge-ilEFgJ34,84 FvUs8613_TM,174 bfgRDarWFnk,131 3ycDiqPVBqo,179 y-PhkF8e4rc,125 wrkeOayCv6E,154 NP5PcpEDjS0,156 CGHuALdM57s,181 f505OHOUHoU,164 0YDejqKggWA,146 7nZ0VyXfpec,121 9nvHAma_Lh0,209 QhVvJyCaQS0,116 1-70_Trz7M8,131 ZGha6pmwigQ,124 gYdm3PIHyaM,146 SNCyMweQ_8c,108 P0JUY_IEZts,122 VwB6p1A-FwA,102 yXyrZImvR7c,112 UzPRCUNCoIA,132 -IV-ZZwXUkw,165 ZdkOLsRkjBU,128 lKqS8lnlJsc,102 LkkVEYz6y20,115 vLxUYa47OXE,150 aKNOSJT3vCo,178 2rq0nLbL5fg,118 iNa97wFdFyE,85 FyuQ13ZZNIQ,131 22bHxTTLcdc,118 Kbsi0KOunj8,189 CZRn7cU3UsU,132 RF2gzBNsZQ4,176 4nEsHsxsjew,122 ietWI5HT_nA,123 uEV9jxF2tOo,170 RLsGDXjTW2w,121 kgu59EAXbic,140 p6dUf7YRWao,143 VaQo1PTIzXs,147 cEJhVm0TJUQ,122 uYDdBUasjxM,84 ft9XnHcLYiI,151 6EM223j0wls,135 Ia7el1fEff8,149 XAw8Qpr0NK0,162 MPu6DXTG2ps,151 Eva9_scd290,139 hVGl1d8hRBI,101 N-2stIHQ12U,130 OG9EDE_bnws,178 ZfcfpjiFZAQ,131 yQYUTyaODfE,174 6WArrD9VPJE,106 S9U3ajjpH5A,76 s6lrBldtwVk,170 MEBibAHnEK4,85 2PQw2qw3BDw,133 NOVhlDQthwM,141 ip1igmoPSD8,122 hRBRb2eiK4I,167 XzSBAvxA5GE,139 TxvqZhVwrSY,170 wehE7YLFmGI,174 6Knf2lu45Yw,179 Bi75jrN5yDk,129 zVBa2vcgozs,131 j6SBSViczK4,149 nftQNmMRqG8,152 CLfY0oLo7o0,109 nna-IuI5SDk,132 EY18WYrcYHw,132 SVYv9SJAr2M,166 Q9NJiwYZt4Q,172 bcAACOrgVKE,131 a2_9fQ0U57w,178 lOR8JBFySr8,175 VLXwMhs4ODU,159 SQrD5lkN18o,134 lMilbGNSGtI,218 EP74OZdI5d8,119 5TSXq6wBPVM,133 2GGLMLNbZpE,179 o36MJbiMMH8,128 iUi2XKRnJD0,103 U97UagTDW_0,136 -zD7CZtUNbA,128 7ocMJfJATEw,106 5vZ-SYX-4oY,130 JhTVkpj8g_o,179 w2XWa1XuKSI,112 FTjFM9edoD4,88 89qTnQ_TK4c,106 aPkfoqjZXog,177 XWxNXRPHQIQ,131 iLBL-XeNrRI,77 v53yiG9-_xs,137 q3kcQHhvOWA,132 8Q-DUxHMLvg,132 KsU5oT6FhE8,69 kYHCKF2WLA8,178 Kcv1B1aZIvs,174 TnkyKOn81nA,168 YDh2u5hneLE,147 SCp3HsyGqeo,121 FvJp6IklZUA,172 BlC3yzpzATY,166 0B1NRC3WYEs,153 DdGYUf-E48g,117 oE_FGufcMpI,179 Rb3em4rmYxs,132 t3dmXdp2O0Q,132 Sp_ZkjTIRiI,170 WIr_dCgNAjM,150 YAhyJTSt_9o,176 Tn1YK5UEr_c,130 lWERfZYWdA4,140 GxA7BICC_zM,179 b8wlb-8zFSQ,75 nPGxSotEa-c,132 RQlXH-KzlXg,202 UDSfJaVC0KY,171 uaLxw2PDnmk,166 KGPl7ahFDEc,116 2foDdTT3cG8,134 HnKmwbVpRno,129 GLOcJyFEXIw,118 lniVpfK5SW8,149 FwkbHnPwEYc,110 Q59V4qwZI14,112 vQSkLuEOdMM,119 1OV3T6GWhIg,260 c4Wls5pZlxQ,124 3TN3wohDAXg,178 K4fpErUdp3k,181 IsKNaQuuL1g,173 r6AmK5ecvRE,147 tIZfD-LANtA,179 WMWI2FTLbhg,131 53vQBW_4hzw,149 x2CizSzk9s4,94 1V53lOLjgiw,167 TE4ZWi6xkZo,139 DujyJ1EDft8,114 TU00uzqJGKw,179 HLpC0bnO5_o,175 9UMiW3dzW8g,126 Q-MVoUlU-OY,126 f7vRR8-n_Rc,125 YkYqKiASqJM,176 Ipf6Zg3UFTk,99 hfOL-PefOz4,179 XDI3snWDWuo,131 son5FnMtr_8,148 yKhHoh_H350,88 Jz7ZWKumqfQ,132 V2M1t7HAj1A,97 _V0CWwyrJUw,136 moH3FSt88FY,99 LlJx0tWUuGY,108 4pHgq_uwXjs,176 XKrIeZTVBQ4,178 _41uCWOabEU,179 a3Xm0KpUYj4,59 ZAtw0w5b_1o,104 u-ywf1_Aqy8,132 TyXD96iAjuM,131 _WovFZ_MDW0,120 YCIO_JbmcZ0,99 mFkxrTfAkq8,168 vjMRE5A5tVc,148 8YzEce7XN_E,132 Ix8ShPSjmtE,160 o3w6MouV4NE,102 u-LCigQRPdk,168 yUrcH6c-FX4,133 DHWbxxpKb04,179 RzngZOLn-bk,122 OlAEXT0Hg70,158 TxHITqC5rxE,94 iGIooJXEu9E,128 SfN8z2mHAmw,172 DkVjSKOdczM,136 aIau-DQHI3Y,131 746lMCHNZeU,174 UIdm6BTefb8,108 HSQl1nhi3N0,121 AcJq5nGwm4U,127 h_Awe6CI91k,123 oUXPpeE2pv4,173 MUEhAUpa7iA,131 KxRDIx23Xmg,119 nBlkMaEmWeI,100 1Wm5NiRIKB4,105 uA7BbE1cF2U,231 lGcW9Egfm2M,131 lYZKtD3RwAw,176 NUI_ZNu-GXM,90 u54-0h7QZN8,148 GexB78wQ6Qw,115 F-gTRiA6Ncs,90 yRhRZB-nqOU,232 VIKvQVph07A,157 whEcud8GBTo,128 WfQ8qbtS63s,175 Pn7M9PpQEgo,132 9RrN7k_5fl4,140 vBasqtPRco0,139 IE1ZeXC4vtg,143 VV55v_IKVJI,108 HPjZKKV37do,130 5xx4Ha3kGtg,125 CRbtvxbu6fg,134 mZzkE03B64o,131 Qrg2m5OnJT0,149 r7J-Qx2InoU,131 Np4OojYGixI,132 vROih4weKoM,123 6UY9MtqSMgs,132 KNdmBWoCfAc,85 Qwi6MbaOBME,171 nkmg10eebk4,126 K7I9ERiBZrc,174 NLDt8Iyh5f4,163 FRP0MBNoieY,97 UVGzuUm3uzs,149 V8oMGhl8FFg,148 Vz2OwX1XETQ,151 HNxe49fa2p4,165 y1gkMNjkFiQ,172 YYPpg3_Y4XY,147 7ZbYv65cJ1M,157 mvYdMO5ZfYM,122 51t2_o_H_Rw,176 psB3Ta-5XWY,192 VBYiVoNwzQo,183 yTKHZcQlMP0,149 VOgIyusLSOA,171 RUox4o5J5x4,174 aGcvpWAhP6I,181 eL2DjnXT4wQ,36 XYwGKDK87DI,176 tyyPSnHcthg,183 ctsrpWvUQB4,176 E5KigabenVg,132 r2e-9oBXk0o,132 7fkatAePOnI,134 PzL7MICU_OI,134 nAK7Uyg_Y7Y,167 r_Bdli4c8TA,160 y9ZcKltnEx8,145 cA9k-dz7Bqw,219 itk5hcD2sFs,179 5kvHTPJfo7o,132 4EF1zYFHbus,167 MIpPd7IhPNA,112 y6i9UH65q2g,170 udcb-kQs-GU,152 IyN025OadaE,189 SIgiRJmMz1A,76 K_0hl7Yc0fI,132 EdJRbvXr4zs,131 bZ7ZsN1FXuI,142 h-UqMU-MIig,126 bLD14JwSiYs,114 yvD3X3RcK3Y,175 3gLU99wxUyA,126 1vNv-pE8I_c,166 3I44VJIIzKM,173 J8JhG2j8E_w,170 RARFpfBt66M,184 nsR0Z8f6QAM,174 Uk4tuWVB-ho,126 IUBx1ZoP6PA,128 gS6ibQuZIS8,173 BlWpx55Mo5s,115 _6G-jfNOkIc,137 bFrORNp20Js,179 ujhnKE7fscw,146 aMOraCoYToI,129 lh3WF7shhlM,174 tMaXLU_KG-k,98 UUnnQwVC0rk,105 h-Ss_FvzZcs,174 oAheN_ARn1U,155 F9puQXwExbY,133 wOuk6V3Dj5A,133 yCUaXGVdi_k,177 SFy70juGAHo,131 sQA199D8U2g,177 F8lEfmjN9C0,179 i6n8VyqaCQ4,125 -_Bdf9C0SAU,131 Cdgq2SQcKcQ,196 hK9v_6lK_lw,131 d9YfIZP8qPE,144 PnjkPSAncPc,160 wRCiwDkYtVo,179 Jz0Ueh_tkFg,155 Fl9Cexw3ACk,74 I6f8bYDvpKY,146 VPXC2aQZyEs,161 BH3ApQHJslA,178 F-q3C6jSZYQ,119 38AYeNGjqg0,63 PbndU1PQlPk,127 z6ViDZpVoYc,127 P94nUxbIgs0,121 qnyoHZa5rrQ,120 YlF1gLpUZp8,78 D3PcFuLPhG4,161 KRyazQjCRD8,119 HcadJjFOhcg,122 BcfTPLZTAog,120 u0c_2Mk4rJA,73 YnsmoUntOzI,166 vI48ZXLGoBk,148 C73kXYUTC14,132 QaSr6mpkTII,137 GKNv1vjCnQI,45 xpFArzEh9Dk,174 xB-h2YkIP0Q,179 esFVrrZCvwA,114 faEbd7LEDOw,177 DXH2BXpwCAo,208 AI752yUQd1o,138 pYhlVR9GzjA,130 wyMDViXXXXU,155 Br3e2gRhBZw,157 QJX3XvkTJQk,152 wwDCSzZx37I,135 xZXOBmW-7Jk,98 Bx9JRDKjrwA,166 XcE9IUjMtOE,116 P-3Aca5nRn0,212 zGdF6OXr6t0,178 L2GbnErVDqk,145 AUxAITobkNA,174 wTP_SdjD5ms,128 gu_ckpTcrBI,177 nlH_5ejw7Gs,175 K57aIbpF_Co,176 awkGgPALfho,158 iso415ggxMg,127 kRNhyHiBUXs,116 ElXKzY-3DoU,132 8CCr6_Xqt1k,119 kfYzoHzwZZY,106 xZ_GOyfnTTs,143 lKwghMLo0AY,153 9WQnbIVJZjs,139 kZgaz49f5aE,165 yF0HUzSCd84,126 9sSXNopytKQ,114 6mtG2DSbR3g,109 vSCT2CffKDI,98 GLmTfdkWZp4,131 ACr98cpjXnE,179 60d2lmx8LQM,140 8s2lUiTRbpU,131 aGAInDBQOoE,160 9bjpF066edk,165 RwuhnfKnTYY,142 tM47HMT8GGE,155 kr5skPIftSY,105 NvKOhmZA9bU,131 u0aPph3nUwQ,133 MlACEw_4JXY,132 5CfzQ1956jw,82 gHr0P3Px91c,124 ba9YG9xCC7A,157 wBFzZM9YqEo,116 LurparxqlNI,177 8fGU90-I_H4,165 Ej_fgugvtRg,105 mk2OptcsXuo,185 AuGJ_SZEXFI,98 yYF0oK8oXSk,123 B9aW-CumBFg,148 eWirsPiHnA0,186 vZKaVV0ZyFs,210 qmJiZfD6n9M,112 hphPtQjqfQQ,147 t4M3hbVh3U4,124 3bcNygIQfMU,129 p-5nqrOtaug,132 y6u4QEi3n2g,165 6kxFTk_Yoq0,178 iCTkYP-7by0,105 AxpzOZT_C0o,179 OMSkavUrzHM,165 JFwhPbsr5RU,132 tpzp6-BkkIU,179 jfA6jr-y7_A,142 Xt2JzDaHiNM,167 o6V1Ov1GCuQ,161 ZCMwz1K-Cso,85 JTJKIuXBey0,125 a1iQDKCkh6k,180 hvACHvnVCbw,176 olg8NTkDXrI,131 RPS05ujl9FM,130 yhjD1CmE9gs,152 NQ1-De19txE,130 _azX1Pr0vkA,132 goAo5dC8P1s,174 rLh0UcN75A4,119 dP9mVoZ-cmQ,83 OU4AuLhWTv8,120 S9ryLG-cAHo,54 LP22LQEq-tY,127 Tf3r8Bty06I,103 3Sz7dbX2kTY,145 9b1Ii-U2lao,177 Y9ajaBIbzYI,164 rk0WkrT6L1k,129 9dSVd8ISfl8,162 4d-EYIZAqXc,157 SAMMLF75HmM,90 LX4AIei6zUw,123 auMWOnofBSI,131 5y_SbnPx_cE,58 -yEE_toKFxc,117 2tWRTtI7huk,90 1OXNsIjuAnk,123 zeTYlUcrfRY,175 rtsis0lgx7k,102 W9DAFX_ieak,99 Hdmi1UbW4Yk,123 oX5iDM-DnQ4,127 Ht3gFCqpFkE,168 5wUezm-K0Bw,89 gFsyI1eps-U,179 EFlCixq_HEM,178 85PCzIbeQGU,178 82wvQMuzbow,130 xihdBpPICZY,168 TVPDfLM9zIw,140 oLUmNV0tmMo,179 1hyzWfYu6J0,148 Xd5ESRqpz3E,186 3FOUAKr22K4,98 EGqPXMAThig,142 QaxQWGA3wys,179 sb8IU6c5obc,99 xiwtX0NC0uA,161 TjY8crETM6s,112 TH0d-3NnNUM,129 9FyqTQ9ywnc,103 riXp9rJ90Xw,79 ZG5aSjd3ejo,178 m8A9XOElA2o,171 6Z5bmj561YM,138 BfniNOclXKs,162 6_ZBUhBx3w8,121 nh8mjiSlAws,112 i8BG2g9YJAo,179 TdffyS619Qw,122 sO6DX9YCIPw,155 7xMhKadE7gU,174 YejpJgtQtuU,131 l2zPMIA3SYk,178 7jrjZ5DIEzU,166 no5XxM0OY4o,167 QVNrihP8ME8,113 CWBwJk1f-gs,72 55d4Hx_kaGc,100 Nds71RtsnxY,179 2V_LmUEtPMs,129 RmqqNrg2cKg,167 ctU1dN0Js1M,169 CjqKicoWqZ0,158 ficjws23Qjk,177 smwBZ-3HAPY,140 gw4Sj4hJy4s,133 ucqBb8FMJ74,127 T1jK-kQgdeo,156 n-5bVE4K2Ls,119 uZhJYIZthNg,132 F_BH945RjPM,171 EOO8TwyVFYI,132 6uRycxZgotc,177 Fhhbua6ELxo,177 hh7_pDbACts,124 yygkcTQjw7s,178 o-OKsTWIVxk,152 Q1Yz3J6OGQQ,161 XFK5SV1-Pzg,205 BTZArvbmG_o,210 EcDcNDlil_A,153 eF9nKXO2Zdg,183 jJohoC479no,128 KTugpKzfZJk,175 TPgdAesH76E,178 10X4Th3YE30,149 iHDhfU-N87E,117 ujcglOdwI1E,131 OlPauBNIDAQ,127 JNRFWtS0LlM,155 77X1yGjjHvQ,149 6hxZUTUMkf8,176 arf7Bi4CCmU,120 TajTfrf2yXs,179 cx2YdJwQaeU,122 L9pxOwibtWQ,155 ivzvZlKaKAs,148 Y-cCAY2hGPs,116 uYBCAaCGGcc,124 I6KZlznXyiY,190 2son-vLime4,70 qRahFLj59bc,178 m5Qi_YVxd5M,130 XZXg3WkUGPw,48 VPzrMnBW_JY,166 SVUcZ0sAf9c,152 lr7pyggTmmY,160 X3Ujc0YaltE,148 _UhMIImQ-Bo,123 oOp7Q_xw94I,125 cighZsv-N2E,192 uLtUl4pDmOs,84 pQ68ImO9dBU,87 g95ZXrh2oK4,202 jn4Vhkmb4Lw,132 GA_4dJb-nQg,138 oqEm8mihoA4,111 S6Ze8IndlBo,148 0ezPVizHpY0,195 RsSl85y9JN4,89 REXJhZBFD1w,186 kO3MXkSKwZs,83 ZawJ9EBOLVk,89 U1WzINCahpw,132 Gko7aal3o7U,99 GcPyVMO8bcA,101 FEAfMv14l5Q,47 gSHomdp3o2U,132 pQ7F6S4FrdY,102 LHTaiCLZO3s,143 hW_NzisexqU,141 KOAAIBdD3bM,167 x63YlKqGZhI,174 vdnA-ESWcPs,132 u_4L7Dx1rIg,98 fJpdVdl29Mw,156 wNhse5NZgR8,144 wnwsSOrmEKI,159 Oneax2fARKs,129 uPQlrPGbD6k,142 w-_BMZo7mik,122 VkJAnikGNCQ,170 _GksGDm__8U,123 cneoNgk9dhM,131 6R_37O7HwMI,176 NuEXMD5przE,162 x2cNjm0VUmY,95 Y91jebCjFBE,179 s0vNsH81YeA,122 yjuTLT5OWko,137 luuYRrPaEpM,172 sHAoAwDUkBo,133 ABAYY_S63CE,86 K_a1_SO8hu0,188 0REROw4SOGc,104 BiukHSW8Az4,150 r38fEGep2yU,119 W1GrNDtRkgE,132 wZUKOxIXZ8c,130 COZxvXx4bSg,179 CyXxBjk4UaQ,151 4331uXY0nxA,153 UxIpYfsTkew,120 1yMhC0o3y_0,113 nELxnSK1SHk,201 xpKYkGHWB7E,179 zCttJu0ZFpw,179 9UNV2c-A4BU,179 2uyy1EOBBm4,132 93Kzx7azL6c,174 KapEcfMelL4,140 BgvJlZKbqlw,179 5DEINY4WTVY,127 4GUliPk7fK0,121 UTKrefMHcJQ,164 toctHJpW6no,177 m3262E3sfb8,161 N2IfyUBU9_M,166 zFbHwupcqpQ,131 O0Q3TOvvZNY,132 mGJ-2YWYrgE,142 bLi52djkRTs,119 HkNa8r5E770,132 HNPyZsPH8TI,122 7jz_uA1dv9w,164 8pUjbhH7A7M,130 Kz6J6Y2DpL0,171 D_1bty7dttk,122 ev_UF24O-oM,108 U45CzgrLE9s,210 QanZzw7zh7M,162 IerddGM-xO0,172 EwWuQOBBcFA,174 gQ2HC6eotDg,87 1xFsHF8ZF2Y,178 IhdEKY1b0tk,132 EB74RP-oZqE,134 LDWuu8GZnkM,167 Kc2EYuV33Ns,236 ivZaXeAv5X4,167 H_CVt8o2GAc,127 P8Cv5p0cgG0,172 t-DJLPtSaHw,129 PsAtoPJeiys,73 cqD8XBONBHY,177 xSvW3Gxd-h0,132 e5SbxMFk6Vo,131 Jj6S3vtJPaA,180 z6FcMyuo0R4,173 f6hhVIV_LPs,42 GDhe2vbzjwU,132 K04WrySpUH8,145 LYsdYDbW_Iw,94 KGW0LbnEraM,167 ySwvsZ3KWhc,118 9xEXh16KupI,114 zp-g3uxoQeE,179 _oFhIKlIBr0,179 t7mMEDZkDlY,159 ueNjp9QfQFM,148 IWpThrDfQEI,134 sTbJQwezQZY,113 PJYZAww0pgI,156 CNuEPee1qOU,52 gHQV6AMclGA,62 0XZlgVrxKfg,132 _d68kyNY0jI,174 ymbKDavsVaU,187 xLD9iygFMgA,178 5p9BA72SfkY,129 hE7Nc_la-l0,139 avQ9Wvp5wZQ,132 LoLBuoPL7nI,87 T2jMiMTHY80,160 iI8w5AQJcN8,104 70zF5FTAfAE,134 Napj_I8kdHY,148 JYVhLnjKKC8,173 63fCYTWuVoA,180 CNYtVjUf5uc,167 kp2u8LURkgQ,90 6MtwwUfJ8IE,124 H08d5DSdT6U,95 ykeqEK7m5oI,192 NiVB-n5b0hE,216 8k9h0yE0XIg,132 npWeWCC06fU,179 tp_TZ--JHEA,132 IYVg4o3KVPo,167 L1DsFsUlgwM,103 EV3y3ehKePA,98 frxxz1Nx3x0,132 PeFLEFUNxzc,119 vQ-bN0fv4Uw,179 -pEKUJ9MADs,113 xW0Babu_t8U,176 2fweZsmH4Tw,177 SiOImcd9L2c,169 QImoaNjTtng,145 h6jcrXOs088,177 A7HmqwyZ3oA,147 eXVVSJUhDmo,153 vVPtQKHiWwM,143 x22ZX9dGaKk,167 3l4Uuh_byns,138 VMO06PHDR9E,176 3izQonrYukE,132 BhWg1G0czSQ,94 Cy6I9ydBSWc,210 P_VgDHPDtK8,114 t75KclV8x0U,114 DWyzPO2x67E,159 SeiltyhdQGg,158 6CO4uEdr8p4,150 pfVP6HBoflg,178 K9Z6ZZIZPFw,124 0bRr_MER6Vg,175 5bBti58el_g,142 J-AftfYVSI8,111 6VdHec3IAn8,145 3ExJ909lWds,130 2CxV_NKhsgY,167 wwxjFuoLYzQ,179 1UqGimF2hkI,125 rqS6CaouXwE,120 7HZj_fM4yTg,131 l8kCCIoP1jg,138 PWfgDuO0vmI,157 j8Sb4-hMhCg,132 N_O0XDnM2AM,179 btug5ZMTWuk,122 5C7dB-dOS_U,171 JZGQiDSJRWw,118 bQXJoR6tLao,129 e37vIq1VL0I,158 9diokRIKGT8,100 J6i7WPT1cFk,145 pLC_hRDO7Hk,172 DnGpfWa6FAQ,153 vssoBfErh5w,167 nvRcQGBL7Cw,152 dyCbGaYPSIY,170 MnIzvH5GvOA,114 -ZlL0LLfjKY,151 LPRHiok3nzs,164 Vcgn4EY5_S8,164 1CJuzTFRGhE,131 gpkncObsNqY,215 T5-LhZ2YpGc,130 gEdTciZtW4o,192 2QB-g-9tuEk,141 W9vPRj-c6VQ,135 AUBx-geW0Tg,160 jCXcE6DvgLw,166 3iZ1TVOskhA,119 Rj5XdwnuQ80,222 opt5yQqMIdc,130 w_V5UPmEH_s,92 dH5RKJLZ7HQ,88 Q1ACWidWmjo,181 uf-v_lzbcp0,161 FJ7rx8LeTgg,175 kYA9hvcLekg,128 bkeLkORd2y4,92 9hXnvqJ7uxQ,176 sl1Jjq82XUA,170 727NnSLXsxc,130 5rkVGXHv2Ow,174 xbBD7VIJ4cc,132 LalslCf2kLQ,164 utHcPvSz6AM,93 CYXBxG1COzQ,108 zoSzqHlvN6s,134 5KaMqmlEcJQ,115 xsHeAaSmoe8,112 H5ocMbhjb-M,123 K6bTibRdNxE,115 61LA1soyYkg,155 WFGyCzl7_zE,130 0BQZb44R_IY,131 hVyVNcP83Sw,172 g7kdpW2hZOI,130 rgFfioIzPgs,156 x8tbSHuoB9E,114 25CbQ5zMNfU,132 plEvMJ44Exs,166 s0bZ80iuZdQ,131 HhBAeTBIj0U,153 KsmXgmhjUic,143 Pw0CzPQdaE4,168 ZQ146HsyzE8,126 Dd0PTNGBFUM,138 B98YODkeEqY,170 AWvRcWDr5y8,181 R1f88CiYzes,140 3Rayb1Y5SmA,123 PBBZHnc8Jxk,99 EBSjabRNztY,122 _-JtvyLvSlo,162 -WrDbBvPN00,152 YmbXanCiB-U,215 hSvJRk5OH_o,178 pIyrp5Aj7LY,100 oKCF_TzQ6Pk,98 03WbdaZCGAA,102 7kGm_xBgi1k,179 F5Hme0QUyXI,113 Qwyo6C87zdE,155 tdMF1i45oks,177 04uN57jOg-Q,132 TuafKNbgTCA,90 _W1RJXCb0xo,129 S7GMNTJa5zQ,188 pf2q0HemaFs,265 TPdR8MCjRGQ,146 mBUdGRqiIR4,144 3ce2e-d1ZEc,179 WNZNGn_nkOU,104 iwAciIQDE4A,138 mgh0nSkIy04,127 DOqHpCInxQ4,169 4rzrz48Fa_o,130 BzMaqlt74NY,140 1H_5SNtiMIs,159 jm7xE-OyJUY,133 q4FzgqjlrVY,128 l94WdhJc8ZM,141 LIhdfU4RIdo,123 HJCm9e0Q2Yc,132 8skrIns6h6I,132 Z1MsMWSkKWE,121 UFuxiZFwDPs,175 6K7Xjdfc0bA,128 CsOFvj63I2c,131 Acmav3U4xOE,171 vicOpIdpQVM,150 9uRPfjWwOL0,178 77326fqWeR4,128 l-aUy9_L22o,171 5y4ZUMVTGcI,104 5D4D0Hby47o,132 FHDq1ehz_cg,124 52QPxxtu1-s,96 6ljUgAVSu0M,115 Hx3l8vu5L6Q,174 yShrBo6NiI8,177 X-t_25jG36E,108 41T9HTzQ92w,132 keumDslluNk,179 ePaK5-b1oec,109 v7kRQXWpSdE,130 KSfYdl24m7s,171 zjFMyK_bRso,143 rqWz0oKJQ5E,70 t9_VbtJdDSQ,97 jx757TP9spg,177 OKR7b6NL6IU,168 W28kNzz50pw,160 pShuaMA2rY4,71 h_htCIiCXfE,130 Yauy9nMQU04,179 vKMMeOLK9Y4,152 z_3ODalPzT4,156 EkE_bNKYqCM,214 RMRJQL65AqA,142 z_G7CS4mJqc,69 PnmtF6EqeXU,124 h1vDFFr7nNs,130 m6U7qRsCp6M,136 QA34Dlela4Y,63 104ZQtfYDso,145 FmPwgLX9fAQ,164 Io1xroeJoBM,124 5kgYUoeOPj4,163 BqcHbcPo7zk,107 Jj-mAiTMvX8,93 19j24of8C_w,126 XHJI9tya2cM,175 8nOx6uj46XQ,154 ah6TYuJ1iQg,153 -X9XaNXkvCI,121 QU677HiXf6M,168 SwPPG_B3ArY,144 eCXv9LnSKeA,176 1fVPS7eLbME,122 gvBe38KoiVc,96 ow0vNLhDNzI,162 HLi_w5rCH1I,132 Xm5eKjy5MTg,128 A5fwu8OlNG0,159 Jhho1OqCSiY,127 YdhnqI-beNo,132 GltdSC_5Zzw,132 f69ceThb6ec,211 e3BQROKhvgo,144 38jPEmoNjAw,46 UeKhKcL5efg,177 3mw9rXZv4tY,113 5wAlQf4WdiE,163 3Iambpg_8w4,164 9kcwYNK9cp8,132 k1MdKI8kiXU,132 0DnThxPfhJE,125 ijkNii0A80I,130 alh8b1lYuRU,208 o4ARk91_ptU,119 5CS1t_QtZOU,127 krBjSShSxu0,163 gx4ZNttML0M,119 hqJxDiGXTWc,133 6ObWyt4Hfaw,128 qgcQxJuBfY4,153 M1uBjOpTa6Y,154 W4efgyM82kE,70 LCWzLnaJqBw,126 l6cFM5Ubilw,137 yZWEB9JWLHM,162 VDGKUOjQ-Zs,126 iMigt5aPvPQ,179 _CWSn-Zdi5w,156 HLJHW3slPW0,176 zh5VtQ-x4QI,121 ns9WcZlqv_I,178 VwSWeeg9RSg,175 W_Aq6Mu-bQU,127 VazRhsh6uys,161 4rGu9dMtQWA,131 QUP62JKYg2I,92 0QoGNA_9zqQ,102 L2ozJHHf1ec,146 0vtLA9LFkSs,132 YYsc7jslsc0,149 Bmz67ErIRa4,124 sIPWv4xB9-0,131 4WgLRH-FpWQ,145 cZumS81KSw8,117 AGY5gNpoPfI,176 NJtOmLkUSKs,199 4TgJgyypajE,152 VScQtueKnXM,173 71FkH7FwfFg,100 y2DC74NT5G8,128 dbu7AfaXHvE,104 hiREoiox0Tw,146 Ua0oqZfJFN8,123 LODjoHqYzyw,171 bX-o8WaWp2Q,136 75ovyrTzuYY,116 aDrR7riBeLA,153 6QEYgLKNZd0,142 nID1enI2xW8,166 0GBAUGvKy2A,131 -jiQdqoe1cU,135 FnahBy4Od9Q,178 sHFXRjwKOG8,163 Y9_k4iGJMco,168 VUqea11tvH0,120 VVAlND4mt5s,152 TCK-ODyUwoM,126 zz0w0KDwhWg,151 dlEoKlncQsQ,168 npaJix_AarM,131 ajRRS6NzMBU,147 918j6y6IMY8,131 OFcprqLHg-M,129 SUQaxkWkB0s,157 3YWCnhDDMac,173 6MDRk-oDzAE,102 E9paF0XzmtA,157 7TY3DFSCrOc,167 vF3sZj6ge18,154 wr4rZEPQ09Y,123 gaLJooLoKjE,120 _nk2ZNKOxCY,40 gEC1WbYzZYk,122 iIUhwUKRg28,177 z5xRXKOAu-Q,155 gIQWTB6lNlw,99 QLTlJDjPfHI,153 wDsYB_uRbaE,81 nQBrfPjwAfQ,158 g5iR3s9FA_g,131 nSO22k4XGUo,122 0JVZ0bE8hpk,163 tYs7uguB_JQ,169 0KtJi_MLKqY,162 U2HWD9dymUk,172 Cgow0KNc4Hc,127 4_3PUB38zJU,131 ti9jg0JOK2I,184 zbN6F4tfbgo,124 9dDKx-vREdQ,84 k4Lpr1sqKbQ,163 tKjyNywkBEQ,179 q1QELI37duI,135 jR3JlEXdBIo,179 YLjkzy7nhc8,165 MPqg9uMHTDQ,176 jOLLiuCk420,179 tTFOv5oFe3E,105 f8a97iauRtw,159 ST7mR3xLdys,114 gmElew2NIS8,145 M6aTyZE_Zss,130 WrCCnZaSlKE,96 MBY84LUh7s4,122 MFvi1YVig8w,131 ejRc7XEbAQI,153 NXH48hZ6798,162 PIAzmZ3FFy0,137 Q0okgIEkRJM,174 qJ_EsjyYevs,132 KRfJqmecqUQ,117 jAwlK8vL8OQ,151 yjrwCXMRh24,80 Le-bfbn43WE,177 -zAp8NOpVKU,132 NgQmrSNWY0U,99 UvFclgKfUQA,125 SQ9JOrG0mUM,178 RAsK38Vdep4,138 dRz8OjNEtaI,84 UwPJMQwo2xw,129 2UrB8TI5El4,156 hHKUBg_c9no,145 QZ9b-TPTC_U,168 swcFDa5jYfw,168 qyvR5lglbTE,154 lRQXQXsXIm8,88 R8JhC8HArkQ,129 yDd3xayehVg,130 wyRq2S8BTVM,67 7FGCTdYcdIM,158 sS8ECvGKWT4,179 h0w6WywbohM,91 fTMY9OkzTBA,123 H1rttoUCeUg,149 ewvkTkHfJqQ,173 Z0l0sXacQ9Y,177 toe0MwxNN1o,86 c5zKpr5gmgk,89 xCWkAXGz8W8,123 jM7Eou4bV-Q,148 9pcfdiFrBEQ,125 qnVGIFPFry8,139 7SaFvv-XoIM,144 3TWv-3cC9NM,125 ikWTYTomQI4,179 w8IS7igzQxw,171 ltmHZiXkb9c,154 Hi_NmfSbE3g,178 gPv4C6gIdOo,125 0pfqzjPMnoE,138 6mJk2i7Lfjs,123 qcVr2eztQEk,130 hdrvg0jmL8s,174 4kQr8dkriIg,131 5ACVz6Cmo3M,161 lQ2RStfZii0,178 k92e50obPsQ,177 KtHucDG9t9k,132 iRd63BXG6nE,177 euCE7LJZxvE,133 b7C69HqnV8s,124 tRwyOQw5zcw,90 3ynO7Oaj2oY,88 SUMtjCypolU,135 PJQgGszBO9s,137 7MJd-RSHTqs,74 M9F-ZtKswww,174 ivGfI_8TE9I,150 v-OKZSh7tQ4,126 0isiQvOb874,76 rWLEdpLkmrc,167 2N4Tq6Zpx3g,105 lpod4qQzO7Q,123 dXqs6yH3KF8,130 C1QL0e4B7N8,127 xiXiMxTbu5k,149 -oPHsR72Lfo,150 o0wTt_xDlpk,153 ZLJX6CEkgto,126 nQLSbuSZzE8,165 vwObck9twes,100 7YYge4b8MBk,132 vl5LaKMkhYw,135 bQ9vlCKo04g,177 lYEy4it6m3Y,126 7umeeSjxQl0,174 PlSt57BseA8,172 4932enSiFRA,84 ZtQD3EqQAC0,126 0slaW0ARW1Q,132 DvX8DbtVspE,74 SlYRjU2KBfk,104 FPnF0-VdHNk,126 mvbLx0pbohk,132 lyuqs9s8134,118 phOJkEJled8,170 7cJS4h5_KJ0,128 kJ-wkP8Xm40,128 Y5oZr-5C1eM,135 PMmvUWqeS80,159 I8yAmR1UymM,110 Bdc_wuMUpP8,131 foPh0pXXq-A,47 YVmZ5gRR_zc,178 kYA44FTePNQ,127 Hda6MwCdwI8,144 VNUBj_27Z-A,142 dTGuyNnJJFs,166 y7T5Ea-WGII,149 9hoSF_oY8Jw,132 yLj0FvavCe0,153 JduADWt0XMI,166 lH7EYLWHT4Q,119 1YklLet-e8s,177 Fi4ixdzoA7I,157 z7fOP7aW1P4,151 ktEW65QQFgQ,95 GVt3XFTYp-0,184 rUW2mfL---k,160 g2h4ycVI7AQ,132 CdAJ9-36cAM,175 _JcFaIDdphE,146 vZlWLj1-eC4,178 MVqK6wNkSxA,197 Hk-_1SD1pic,167 dGIyVafU14c,171 _ZiRPpAgOlY,132 5MB15iYADy0,129 wC-N_KnYNLw,131 bVKJscj58DI,184 nNKsj8rQGHc,179 sf2eXsM6Kik,93 wU7TupjcCbo,96 GiQJxD_bQCI,101 wsIybRQaDE4,131 Ei5IEWld1xw,177 nuNIO9LLqYY,142 DMhcIrShxec,138 MCJcxb_RtII,206 y6mlssn2bl0,71 tn24Ca1sslc,166 yc8UHdsuy68,177 XfKq2_EzkE4,131 ElvTXO2A3Uw,154 c2HZzrcEbZc,191 I_Ld8Rtl-Gc,173 1KPTpxxZJRs,179 ZMURdEkb_3Y,158 L-xNqfIXuaM,97 kJlqNXhZE_I,180 wufYHJkbl7k,119 FrGGFHPDN3A,179 4a3OH0EcieY,204 RqNXT7abtQQ,165 4V7dPXjZJC0,132 JtuMPxXQ2l4,151 IwQVcVqDUqE,132 6yuDWX2prJg,143 rXyyr3kSB3s,165 IUu1T75RjTo,133 uGrrtkaWoU8,128 arsAllZIa1Y,171 nKISdYhQcvw,179 AFJ_QnfENd4,132 RX4-U2r4lS0,125 lEFx1qmW4ts,129 zdKxziIlC-c,101 zvdLSI3-j-A,132 QQCeQOAVWFw,108 HfiKoIVr3T0,125 RlPspkeaFrU,179 IMuAOVTXtLM,102 KjdjDz8jhN4,132 PhLfIqO2SLI,178 i-VM7_DJlkQ,92 gsXRITF5hcI,177 1UpUjmKJaso,189 Y5pRDzBxZtY,165 2COP58ej7QA,179 UtSE9OXHIgw,122 GJsTqU9Ujxo,91 OzWA6M7VnGg,168 0WoyXBXCqdg,139 b-2p52a82UM,166 YW6VrETYUfU,118 eKrrYByQTQI,124 mXLSLzeu-mM,154 c_k5BK-ONiE,82 1VIBA_mPdPA,93 pR5to9mS2cg,173 3a7e-npyunY,175 WOcSwhJCnr8,111 JLH_smT7Qog,104 xnV6hJs2Zu0,142 En3JBEKvxr4,139 qhgkpZecrTY,132 cl1Yl57gCW4,113 HmwZxnQbox8,179 52sXSYdNPsg,159 7GrURVFAC2I,176 RKt17dM8eFk,180 Q1-jHyQHGl8,127 f6m4J0AfEOo,97 5mL4wT8DEuU,132 xHgLwzZ2_8s,104 yayNXxs76vE,122 F2CVL2cAV80,178 0OKdy3Hpzp8,132 olj-IIjnxLY,178 Jfk2QR-qyZk,93 3xmFjLSU7MA,149 Rw-EoS3td0c,179 ihOU-LC0ue8,131 dsTyKFkGPuM,81 0t1TFwXKL2E,132 AEocciZMBjc,132 IR7xuySx1v0,125 ru_PLKD7w4c,179 aRAHfPrf7C8,131 rWe5nzPq1JA,125 0oHT-rtiFZk,172 p1aWpCsLn40,119 F0tBvKtpT-I,129 bDAdgXd7Znk,119 OzVZMadRoSQ,150 w0BK_hLT-Wo,160 d-Sk3AvyR24,99 zkR_E8jw6qE,156 tUr2KIu-nvE,120 PDSgyYfLpdo,154 DHL2KTvQ_eQ,141 AdjVK4hPaOo,140 1u7U16N_yJg,172 qe5s8UTNw4c,108 GjJzcjwVF8s,179 T37ezlBVMME,124 nOkJXxd0cNg,68 A_ry95V0zNw,114 4x1rlz-IYUk,174 oEUB2LSsbe8,127 wvVrDGmqHjI,126 RJ2waor6V0g,129 WGy01KGFK7I,154 6bDF7ZQgkZA,174 sp2FvfOi928,122 HXtYMxtMlhI,118 19moJ8AP49o,82 OGG3HuI6HcY,166 Z3yJF1FX9hY,131 tkDK_YLfTO0,134 ydFjplhKYng,141 pesYeCruSyI,132 AJWkS8Ja9YA,157 zTh8P8BTQVE,109 cK2a6BzrUO0,119 ZfKsbOpsea4,175 OMHAwJjp-YI,114 d5CmbbyeDco,179 PkLE7uHqRt4,123 2H2c3F_rzqw,82 D4_CGzg3fmQ,144 uxXMshs5exs,130 FUWdPWW4csI,132 EyqjJVgnJMo,124 -D3PMCmZot0,132 D6SVqGVTlFU,74 QYLjbRd1_DE,130 0H8EmzfVSbg,141 o6hrLFJq63E,110 b_tZKOxNR7o,109 XFTJJtOtFtI,100 WxIIpvpAEEM,172 SQNzOyXHbYY,114 9PllxjcicFo,181 GYJ-Z5o9gUM,125 zct1tPK1Zk0,172 N2A4tcaMl9c,165 8YDVV75itA0,111 -78FgmNwyD4,106 5kGTDvVTAOw,163 I13gMF50oqE,117 fpK36FZmTFY,175 nVKSBDddFxM,124 fOdzgxEe1u0,102 7pD2vZ28a3E,168 vf2EeAvsHAU,176 KQz3KBKMFg4,131 IRRYuq7qYk4,162 S5x3QGlo22M,193 BdC4os4SOH0,159 Or3JIDwWgH4,179 gG1XmKlqhIU,156 OtsMWS5Z2Oc,131 B7rcsBCaMI4,128 Jr4HhX_kbf4,181 MB5zQ9X-2tY,102 CsukLjjPv-U,141 LeA8ojVy8Fc,159 DHww3Tdh26o,101 9OhXJOQioeU,145 mG1vn39lP3M,129 V6TrgQxf3lk,131 zdTmdoeLgAc,172 GBTN4LA7pTs,129 w6USFL0JYAU,158 g7pwgA-oyYY,124 smUy5NzszX0,124 vioUisPavvA,178 GKuPSf9P3tw,162 W1U_sJhDIXI,132 ViWgPQKgQYU,82 BBXUqYlAK6o,176 DzpGeXWsQKY,165 n3Y6B_UKam0,128 phTSTiwPBUk,179 _AgBIeTHzTM,104 xrbaFa8zV_o,155 Z1Cv11vpjhQ,189 JY9Iq3-iD7s,133 exo_QZ07_BU,129 t_BSGcc9XkY,131 ddrQKAMzUGI,131 iekeU-w3im0,92 6n99ZpSgKg4,103 sNi3hwriXyE,143 jS7XOEttewM,165 dmqo-EuR8Cw,110 hK2Em4D7fhU,178 Rl-Fx-2zzdQ,142 xDC6IlQdTLs,108 bc84pYZICbk,61 ucBnN5N2fn8,124 kdDH7Ynw5Lc,97 TFGYMpZUv4Q,132 h_JeXTLSCQk,132 t2ydTbUJ__8,106 e-6fZ7wiPQk,155 VA7J0KkanzM,132 2f2hB_pRG24,130 eZXgYKx0aQI,97 irhRobBI3BE,174 1kAMrmDG-68,127 DUJHFbmzhtQ,115 LMGAxyUnURI,181 A-zeWjOl0rE,132 x94XSdW6eEE,99 r7ApEmhlxro,150 kAyPdsYr2K0,99 4UgTUqi3Xxk,108 _ilh4ZR3aUo,174 frIi1u8PAlc,126 t3aYQKl1qbc,179 tsQS1b-fNSs,143 7yjowqaIUnU,117 38tBs7AinQA,123 qkVImymH0A0,182 SEQuHP-wL5Y,117 83xaGtnlvR0,156 pxWCOG2v42c,98 PM5TJ6vZ9YM,123 jyNtMzHeJ6I,179 2nrHffYUXqQ,131 f5mcMmE3RL8,218 0cPT4zspVc0,153 kH6SUxCwXzs,120 iHheroBxkuE,104 eG4B_DIenu8,102 dUoKiRrGu4c,125 zkRC3GX5BEQ,164 vapcFQlS6Qo,132 hJErQ3vUD24,178 ZFuV5x1drXU,132 dwh6SShhnVI,168 ic9PvDGkzf8,87 nn1qvGiHvLc,126 3nDCPEcEuPs,115 QnMDpNk1DFY,126 wk-P07PoFAk,162 jBxnTnikZEo,148 dx07n7Eov0o,200 kRZxEorotnY,126 AqMWvk5DMcU,178 OY5yOdITL-8,145 azot-mIuW3Y,119 bmeh1eFkyHg,183 z0bO_2sgBZA,157 D4TfTzW8GVg,132 rDGRAHBojWE,141 PHj4OVnU6EY,90 eCS7qPuOXQI,116 MCN-beeZSKk,184 v9AtWaaaShE,132 -xCS0zZPAoA,116 QbwYDkPwfUM,178 5PikP1s15F0,159 5A9D-XVmK10,147 HhP2rEHWxCI,118 AInSCWWY14Q,168 glNH68Iaa3E,171 g3a9qZnTzJQ,137 uJnIaD7gDlQ,176 EegoLE6n-Gk,178 SoFgHbVPrSk,132 G4OAR22W7Sc,136 dgXARu_D5d8,164 _AmKz3iZ1K8,171 wxRSLer7VIg,176 LQnfBdZnLmI,116 EvWX1drAfhg,132 fpgKY0I3taA,131 CrYqMX-T7G8,157 Q1ITCuUHAnY,102 p03u3v6GF-Y,158 5ZxVaJcxkMo,154 6Uz7wmX_6nY,170 YjF4rd3J58U,116 FqYJIUS39Ck,120 aGk88ZwiLRs,85 JDnjiQCk2JQ,130 o4lq3SOB8sw,131 BKgd8Q3X0AA,129 EVIsqHrME68,100 IMOAEKRuaeI,140 -JERO2LQSKc,154 ROy7gCg3hJE,168 emW6TopzEe0,169 fQ5sMUzf2bo,190 c7AescgZzEg,177 EQqdhMcUSAw,156 -fnJhOLKjv0,132 2ZpWLuAc7LE,122 ZeMzb1DXoFM,99 FKPNubrWp0A,167 -i6m1i3JLaM,120 W6aifznLeXE,125 05GysooKs0g,145 TvoWGxM8TU8,115 FHXzsBsOVjY,167 LMViEmB4_Fk,131 4i3CEXiGKgU,186 oKTtRDYwIG4,118 MoHQNC_-45U,123 sQPrjgzEcAc,171 tWEBbYoDaU8,144 Y0LuDSiX63M,126 27U6dyYE9rA,136 av5eE5HTVzs,179 gijYgnVD9vo,99 2-i06SAeWs8,180 WJpSAnt7s98,119 1c7FYxTa2mQ,157 t4pLZtTuryE,152 _aePd1mFn7M,117 kzueHOeJk40,135 s59yqpV0ICo,89 wSdltnqDWV0,115 7RsohcD0tS8,193 HAW15MhSWuM,155 jsTtWLXjHZM,130 iuKNXP9LcSg,124 Y4HSQKUAPKM,122 6-PJPTcT-o4,148 aRr8QkQ9Qrw,109 oA-dHypOn9M,160 uO1YBHAbBSQ,177 MPhIzvgB31Y,131 NerShU5K9Ac,81 NJzij2bw0f4,144 PX-PzFNkU50,98 TCIgI-AObzk,152 Hc6cJ6xmfM0,133 plcl4YShR5Q,159 38Zst1IDgIs,102 GjA92f_iCHQ,167 VQSA2-NbbL8,160 Cf5dlMw2d7s,115 C4UKfmu_m8I,180 esHXIrYgSzo,160 BgjJ00HhyCQ,193 5rkWzIzJiiA,132 1PLIzuZNuJI,105 dcB5igj1k6w,148 suz-NZ9GZ80,178 XFosHLSA03w,129 VUv6vjIidho,132 aAkF2Du59Qw,145 pLKhG9v_0fk,67 xzwBLuOLjzA,131 0SDvqDdbhSc,169 hEH49mSRWGw,100 8tfmRZV1vnI,127 DOrvXyOMjhQ,124 ovD51p3YDFk,167 9C_429woeJ0,129 -b-EFcA7ing,133 73F6wZrDxao,174 i3u7nvpgDTM,132 T6BDCLnWSes,147 lF3IIOXn5qU,167 YcT_oPYKOw4,132 n1r4aOeOxgo,126 8MVN6SVnO_o,77 XdPLA-egIeQ,132 rkPT_6JWenQ,125 ivlV5kanNFE,132 t6nqp5MdMp0,181 V5DgQr_g6SY,120 bryVfEK0U4k,174 QGNI11LEG54,127 8l-HZqArmXU,150 uk2ovL8llCw,130 fp4Rib-6cm0,73 GUWxHgIn91w,160 8HI62qvNWPU,59 xCLCNJpKLx8,133 keymL9b6W4g,132 gnfJ4wcpQsk,132 -fvfHqNEmGU,159 Pu1vplwgGAY,177 j2SPawJewxA,155 J2ugazPv__M,124 XAuxvhZzUhE,165 01OfrTMVeD8,203 QpqCLenOeAM,165 LFT504CjJFA,172 7AkMzkl0r4E,130 epbmsvL_da8,179 KAZVdaHzWNc,100 NmsLAaKjKEE,177 BTUIaeLGBPk,88 98I5LTPcRnw,165 pv7lZRQDygc,179 4009LQ96f4E,108 Jxs8p22Pq_Y,162 iAMImEbSpDk,145 2ZMYorajMhk,122 pYmo3PXF_T4,155 zs5bqvL5Wh4,133 mwrMEQnMRCQ,141 7lAIabgWtbI,164 OjGiHy7VIhI,124 QbzJtP75NqM,387 QYHTRRmkung,158 yLJU7uywTXc,176 MiQsEACG7_w,143 8hGqSM0OV9U,132 u-pvs7gVNHo,157 EWQsR8em1BM,132 IWjPXaM20kY,157 3aJHkdlvdHM,105 iY2xD9VKDiE,159 5h8EbDuS0so,136 j40IcG_BZuc,165 L8cLSkIAgJ4,150 2SiwZWhmbS0,167 Mu4AuoaIuHg,132 3TAoWo3kBkw,128 2OXtHJgLJr0,178 6COCjzLI5kU,126 5HbKxlvyiLk,129 djquKsYMo74,128 9Fu4muqAsBM,119 YXt8RmeU_AA,182 04BZh6E-Nck,159 y_eZw262fhM,169 8YaSWlYa9u4,174 CcLJWUzDSbA,132 yu3iX6zxbm0,178 jf9d3cwVWBY,114 8ZLUn8xHbiM,131 dJcvUGXOMMw,131 7booh4V0jaA,162 rpE_9A4LXWs,105 LxnWduj4P-g,157 tFeew6TgM8w,103 GzsGxfcPyTI,133 YGmK5uMOgZ0,178 yef2bvCU2Tw,145 X8YOtEocd6I,127 jdp_wn_UrcE,169 FCv0BgoGj0g,178 y5cSt5uqt3E,126 RvClpuFmfm0,237 PhbkMQ89QPM,120 OnExOgppDJc,149 pvZXE-e5Yo4,171 SqaM88u082Y,245 JCVLrJfjsIo,168 6vtpmEd3SNk,94 SnKEQA88PXg,167 H6bQXth1CEs,170 m8Jm9_iR6cg,163 Li8ROpFUD4E,129 W_EYrVGI7LQ,171 R0p6s2L8yk4,163 _ZpONi1-f24,177 ogEjqyO09yg,139 309Cnimrm5A,143 Jch6T39j20E,137 SpaZXamzgwA,132 wFg1qWPryvI,171 ouN3vJJmPgw,131 qWEaCJlKZXs,152 tyUJnwrI-FU,148 BXx51SR_3Sk,119 OW1bbk4wVqo,122 uvUaNcx7mlg,130 kMalrBgdRvI,103 KTFG9YDV_8o,132 MATnKRvs8K8,179 5IPCNRlCYP8,168 QbMcPeuQsfE,178 crX0CMJ_aIQ,151 pzrbB0XK9eI,121 vL5LepmOUQk,179 kmr68ZevIrM,174 WQXqhk-8h7o,131 pvS3j8VtanM,176 Ax-iwIoIxjY,132 3pjwMG4hrFw,124 gEq_wldXBww,166 LhbPVQUZV0A,177 b7wurDomuVs,110 BaSUY4geCtE,197 oSc-5smBhRQ,120 6bNyU9A9LlM,131 Eum-rR934sQ,143 dStxLpnwvWs,163 zqTxw0eiZaE,245 emnU7uOpYtk,177 VHz5xaHrCCU,87 nrqg6wxuqFo,126 jyO1ILQAGsU,131 Q91iEtSRiwU,156 XLJwlFShttg,92 U5fkvkaFqt4,164 aY6ZwMZqaBk,156 zu9vz_Krzb0,154 DDClFYXZmtM,179 SxMetYMwzUU,143 9eosfNwMpMs,123 N7urptsSqNY,128 G6EzUGdelYg,64 MC_Wv7-i2Es,192 V0dVNpmzCyg,83 lIVO6oEk4Hk,82 hXCaF68sDPU,161 cXfD-Ai_QuA,153 WE4iNhRivzc,144 FaWvQNVeDag,73 DECt9uTxaLE,133 elwNOiCaRIs,132 W_WSGHIPSrM,166 lOgPGO4JnaA,170 QtSzDCV1CHI,148 1shru4620TE,149 iM0hP-LZIvI,113 p4yCboEAjLk,167 ThbFbz_0qhc,206 QGq7H8ku2cI,132 bOP-THNe4m8,175 PSG5uNsnkks,162 UUPZ8Bzq1wA,112 7DkV8WE7DFA,126 Ih-zPWi9INA,119 SN9LQ05sQEU,132 ENsr9cH6irs,149 KNol4Te8mCs,175 P0A0LnjsGSA,121 L4kxEO7Okhc,112 uBPs4AHD52Y,128 583Eukgz0QQ,173 zWQIwJsqXrI,182 8cAlXSNQeUY,179 tagDBoX24S0,159 OA1pcNFRhXY,152 Mhev_TsgOBw,133 gQ1o6y8iYXs,131 UQ15FRltlsY,162 ubD8vf5WvnE,118 4dVIxwhMYL8,106 9cwWiC6Gs80,179 n2dBpP0yhUs,122 eH7EyPs_Va8,148 5Xbdu0wnun4,145 7H_6ZZLNsvc,131 nqIhzUUH6Ts,68 k-e5rthOQdQ,172 drTH0CDFgx8,62 lCyS2Gxxzfg,134 6v098-aMBj4,182 oD-1eCD7lkE,179 oX3g90bTn1g,119 mY-6iHAZZoo,123 8HO4C01n00c,136 6lRIgVCdLP4,170 FB1Go2JVVqc,132 0mT5xT39Zvs,161 PnZpYoBuiGw,131 Dh6M4SEdLdU,176 O2RUT5J7T4E,169 hOnolgR_8tc,115 vdED1lRQ-N8,121 YZPkrplfycM,157 mVdTVvgW4EM,175 ML1hxH1yQb8,172 JgPlgAnASbY,152 PurkHHO7Gcc,179 3V2gt6bAYxM,167 d8Gg9rPHKNU,84 pF67F-hlVaA,109 Ht6uQH8qIf0,157 6kk46qE9oWk,171 _pzghUqM1QQ,132 m946LkLieG8,111 pKjMt3cBv6g,74 i_qI6LOc54w,201 hl8e9i6YiA8,133 ZMROlNs8iWw,123 51Kfo8X3V18,175 iQoNLmqqMQA,149 OuacLAbhxqc,119 JegIRfX4LJQ,127 FVTtA6m68rg,173 5FHPI2NlOm8,131 HStPxrLfM9k,184 rqwx9NRpmHc,176 Ehaogw2TNOQ,148 qNnfnI8ai6o,131 WERocs57QaE,178 jDnp-EKD-Qw,145 ZizMOl5Xllw,178 FFGm__skOH4,171 i4M2tehIejI,122 vV3RTL40nmw,163 _NcD2k_QmgQ,130 VtGNNvJF5Qk,178 xNu0qNfOoGY,175 gaZOIAJJ6Kk,167 q0vvYHuA10U,125 1TGWdRK-Ykk,166 BKER7E61cvs,127 G1BREAJI3E0,87 9e06PDg1pgs,129 PWf0rLp7sUY,128 lBs_nLdio1M,110 rxme5eLoK5E,178 ShwCEMe6wFs,111 QQsH99EAwoE,148 BGEFW4kc5EQ,161 zWtQ2tYVagg,170 VhTqGpjZzfk,115 9jxlrFSiLCk,184 zJ4owMQIKuQ,157 swnHnXKbQPM,142 OvbvCOM89Ew,173 KuebMqpuoEg,132 _Z_n2Ray64o,171 pwL0PcIHtxQ,177 VWX9yxvtjxo,100 Ig5uMkprqEk,203 2aqgKA3uUwM,153 NBhmNRq0uU8,132 x03pWg-naqg,132 qnp1jfLhtck,130 Sei2JdiJ5Ic,128 a6CsW4dCk_8,151 C_0W1Q51_z8,142 bXS1LMaU7TM,172 lKU5GNOEj3Q,178 SFzxuEm9MyM,132 _NQec_YluKU,167 3uzjEETq9oM,179 m4qQ9IIo23c,131 EJCaAADpCuQ,141 Qe5hop7o4ZI,171 3bmDhfEtNh0,182 Y9isIphHz2w,132 8YMGQMcNu2s,131 --oCWVOBuvA,132 JHpXWiJJbL0,126 rCCCJ2tXF7A,172 1egkqpDOn2A,126 wXer1Hj8hR4,126 AFCv59zRbGo,163 YcR9k8o4I0w,131 dUFtkBtGIgg,154 hiO38yFF-Q8,129 GwyuRxkac2Q,149 Ge-zBQLa7FY,167 obeGwYOdAPc,162 TaYnzfexuFg,169 OtBnQ30-Iio,168 2v0aoYD6OOM,93 onNv1u-qdZY,176 K7bA4PB0zdk,145 G87BCljOeuA,207 nFJvGENqc20,152 0D5EL4HLd3g,83 31ZCtppXSoU,158 tqqSIT1D0vU,165 3lgcViU45Fs,132 XOUauBpPRNk,61 fVVoh_Xh0xo,152 IfY49zx7RU0,132 qBdgJs4tf60,132 myJttzKxu64,104 wQ5uso-R6aY,183 TPiRiwKEz28,149 9F9KKPakio4,169 Oa6OoTVXG6E,184 fk0O_cdBbMg,191 _jkSWElBWf0,99 3QyEUXjHzOc,175 SaaTUj7m8e4,150 3PRuMx1gqdM,177 nIuuhtJM_Dw,144 0gAMfKzCJsc,127 Lbq1U6X78Io,153 q292IDwEWZ0,140 n8r0JS4Z9tI,166 Gw8uD1xHhBc,81 ha40ifVCakk,90 0T0QWPRBau4,131 qKrNYYuf7Z4,103 z-KB47AFQAY,132 kV36CHsDZ_c,129 petKvkHfPJo,133 K2Lt0Ek64eM,230 bTMjiAJwQ-k,90 reQPn8oDC2c,133 zZlbperC3ns,104 kuQQoH9skXc,86 fNcnudXLN2g,138 XQdxHzDK12o,169 dN9rfJvFHgw,136 JdeH3lqGvgY,163 7U-et8qOXLs,143 qbYyYYHysqM,144 672m88mMLZ8,155 Bzqkq2LwnOQ,122 VEB-OoUrNuk,123 1MUi4ZiJUsA,132 0IP7ihJrrqw,120 7FgWn6jQuTQ,140 Pys1zBR5jX8,106 yySvdJeBcEg,166 dw2jrtR9Px4,131 nBRPKaHMFn4,166 k8oFMkg7icg,133 4BUDwj_mXKE,75 ytQv31xRLGo,104 HkDkImVLQGc,124 QlKuJBiw1ac,214 qKYRwuoqETc,132 AZIlLRwCn08,134 4GLcbZQoPNk,63 JNuiAZP2dtM,51 1cTY-JnvfYI,180 HSc1i2XKjCo,51 yJjnYpZCH8A,130 cpQQpn89mEs,133 fpnoVKmulZM,137 w0l1ukaxeBg,132 PZ93GNHBHsE,225 dTSXhhHDOk0,132 dso8WOrSRSQ,206 iWJTDTs9ymk,57 Ymze0Je2Tm0,133 DHJDwY4xoEc,113 GGkg5ytaXlA,155 YjwB9d1tpJE,120 auccmqO45a8,160 vK7tEsNZtFs,89 iGJCWeK7YCA,85 kNMc5CKw4G0,241 kUkbUoZ__X0,59 844ONMSqRWU,127 yUgQNj5-PaY,117 i-bRuSNSvcU,145 C94ag0ondig,101 cdFiubg8UnQ,146 F7qOV8xonfY,102 BQ5nPyRi6l8,177 gOy7KDtN3mc,111 LzJEXl2ie4E,140 NG4z6W4Zp_0,125 goOhv_1FYsE,96 jVjq_m-PWSQ,104 Uqn_pbUUfKg,115 9IuMUzCJ5m8,135 p8t_xV4Lf0A,91 ZtE1j9UnzC4,138 lQ8JIa98kAw,101 2KfWymDaTmA,67 O0twX6iB62U,87 pHu6mCqzpyw,124 KmCgqSJnzrc,108 GZJ6sC4nKNc,81 dDtFWw1mZuw,121 hhGWxqj_bC0,141 meZXqa_CE_o,117 ealJoNJuKnY,128 DlBuWaGDP0M,38 JWqaTJbxbW0,97 Rc8ybU83qHU,129 05-e-YTw4r8,131 3COpxKYnjPY,68 HcP-chk0FwY,104 Keejr4iFv5A,124 k6_nTAS1M4M,133 stelirVdNdI,116 Q067OuCUl7o,147 yKFEKBIXPxY,96 fXcQVdBqtaY,125 P_GbbXL9E78,132 Z3yR0aNriPM,122 XY3urIUUizU,109 LDxOZ6cv-DU,94 dJFR7xbOIuw,173 dKoFTEK7O_o,113 _kKO_1Dr4Go,125 2uSOBDMv_S0,111 EzR4I2hJyxo,168 ulMNuwN1C-8,153 Js0YTLpY9bY,102 C2PhwDzcQJY,162 JFblxacw_CA,103 Sp1xdUY8R14,123 2nacHERVnsY,79 3t1YQOfYndM,101 X03tbD886IQ,95 DCUGRi_FlNE,115 SiJQJiUZ5Jw,105 5TbuwxXBfoA,110 tYmvgGjSiN8,132 G-tFJHYBqjo,131 x7mnUeDZWRI,124 pSzusQmqyxE,101 OopV0xphrrA,167 cqwrFYjHahk,114 ZXfw1y8Mbfo,95 blDYzZvYAak,137 cigrbhwjTnI,261 QbRnDoXuwkQ,133 NSuYLeI3d1U,109 yNeQm5aqrHo,170 81fH2bYF59g,171 XWXmnyflZtw,122 NG1KirPJLSQ,180 tVfrMp_MWw4,91 kjd3eUIBSj0,98 4SzQZn8xGnA,68 vtxPupFohQA,131 qrTBSBYpzg0,85 tGNBdjVO04Y,108 MeAMVy0ybYA,180 BoohRoVA9WQ,148 SATdGPY78z0,114 xAMy0g4w_ME,115 5GyAcr1BrNA,113 WCES5LXQn9M,210 7xt32rq7iD8,120 5xl30KAt6-w,78 jArxL-3-j94,114 SzUPAc8HTOI,117 Fnvug-nXPYg,133 k1Xv18Vy-q0,147 OuEmfmfgw2Y,143 rzG2L4Nbm3E,67 JPtEnl6MpHU,101 bEA-o4IJAic,126 otQ_oCvSq6E,149 MvYuTdiMcRk,128 4uVC-cDpdpg,105 Pbr6HpxJYm4,132 _8N1uJZUyaY,96 UPaTwmDXLWE,121 -YGxccN_j6o,43 _PvuoEb4yeQ,108 e89qDsf6Q3g,108 5RzSW0dc9dE,107 1D-v8EcGV2Q,133 xvVqMR_f6IY,158 FzOGfMXmfF0,127 x87nnioiLP8,133 y5wsjMSXolU,177 ccU8NJFeBSA,120 7w2iVXAHiPk,135 o_6VSJ_RjkE,113 jRRY7zgE4K8,96 1C_7b05Rlvo,126 cvy2tRH7HNE,128 lwo1GnbKOW8,119 usWA4j2ED_Q,135 hMMAB3MNCKw,196 vSjkkQ6Bfc4,121 kKk9o476WM8,115 tYGiUUnoZhk,131 VqtAA8dO7Ww,107 hdaAD9fxKXA,162 oYx2teRxnvw,134 worFlbNJG_w,59 RdL23CR9K5w,113 l53Q1UXk2DE,176 3_NMhC6GR04,65 ITEod2_WHoU,88 fVv7WOgDC0o,157 lSzT54HTpeY,153 qbdg6o8Z11I,130 OrZB5n0tNAI,154 bkpuLB3ftow,120 jZyhfkpsGGI,227 vBhBkvkofjk,117 0t1xR1LX5Kg,103 wrmwJx6kYKc,166 RczW1gIRBjY,148 2i-3w7WnPiU,120 QuIQ_S_WH7M,111 6Mwtt_EKIQk,106 DcZgodKg9OQ,168 KVncpZkleFc,128 gIGtDdiHlA8,219 owM4is78C0o,117 nDlEcFRZUYI,128 4PcE-gNqFfU,154 aikBhgSFE2A,181 l2g7v4DYYik,142 9bVHNqrqvjI,115 GiNKTYoCWG4,127 J181xxxzqyg,171 wKtcmiifycU,149 qa2Ng4a5yk0,132 X115jd2e6e8,117 BaFBFmJG-LI,122 7gc1EIrxjws,163 teZ52l28tys,133 sua9tcQ14hs,132 whUo8sI5OuY,133 03L12Mqkzg8,121 e6UB5Za3nYw,95 qpLovLQoJ6c,115 2ATVtP3BK64,126 b6xbga06ApQ,133 PSmJNK9zhR0,123 WGGlUlvJffY,130 gcM1pFxO464,135 Imyqnop6grY,114 sQC7OzU_d18,126 MBYRmSeYB4A,127 vIaVITC62Cs,98 -rebHHoZJSM,105 wUf0QFFi2Mk,112 n7AIwvbyT5c,129 IVZd3YBqxEc,153 L45abB8vyEo,145 cpO3ALFscmQ,125 j638xTM36I8,133 4Spw9eH9GBk,123 MyINcc8SDd4,131 Mvu47rYJ1Y4,104 MIGDyLqwY7Y,165 sA0SngAZcdA,96 1NBRkyfy4lA,133 C1QZn415vh4,123 Pj4y9M7cPy0,189 6JTplpmC6AA,115 HdaBcsWogXE,91 lWopMAZt-sw,111 XRUO2E9UQro,133 54SNIVms9vo,133 snKDmQJqQ1E,112 pIvTIG3tWok,247 J67wKhddWu4,132 ghNPXViyQoU,97 5rlFiEe6S24,88 77KnithfRRk,164 YTadpFs7QAI,154 16bGLMEtAww,131 4x1dHdc5fD0,158 oXcDMKOD0O0,207 5BL7Fj5SUhU,117 7WQTYb36Cew,105 W9fV8EusSWE,63 -O3_WO63fhU,230 jUcER281BOg,94 6ISHd9kAsTw,87 Mr8aBk7ub2g,100 fgEjlKNllEU,129 9fnjkSES3VM,134 opseGWIdLd4,163 5iyXb_jNvgc,78 eo6MfN5Lcws,127 PFDnRg0lxUE,129 PSofqNSuVy8,129 mWqZWXSj-s0,97 iTXqcn1qyCk,130 s4veow_qEDk,163 YAjVUJ5RB3E,133 cG0GDlP4oH0,84 lbIbVWmpcCg,147 KDc6dZxh0Cs,132 H3KbLBwQFW4,164 rSturS8MP9o,123 0NSgeb0dBLY,124 w3-djlpw4iw,73 4ekcTVeV-1w,135 kp2UhFQQb_k,43 8dPqVrwBp7s,119 L8_G6h_pK1o,163 mzddAYYDZkk,129 g2dAymk715E,185 F10EFVISERQ,80 rOoBvxdO0Ac,179 45d4aoDJnhw,105 L0rNCGRjvtU,80 XVGIvc6G6yg,128 n7W0yxKnuvs,132 nvFln5J-6uY,72 CoDnI1qW8ys,186 hy0b9Rz31Zs,133 frqy8o30rv8,127 xhlW1DSEAiw,127 Fk17A1jyjKo,165 DyofWTw0bqY,155 2Z5WH83Vhs8,89 zSCukxfXdAQ,93 x6fpplPaxG0,111 NZqeFQasslA,128 6PvYbL69oyE,163 fXBsUOysL3c,107 5DYK9Xq-aF0,122 e-oTHFL5_ec,86 gqRIBKn09_M,133 v3dCP69-IFU,129 m89SmMCynWM,143 luhE1BFZN9U,130 XGkwMwwlTLQ,128 GNsD8EVetbU,105 ktFZq_8XXOg,113 zLhfa5tKJyY,131 YBqruLJZAcg,133 rfeKwl7Dyg0,133 ZYOhqPzYRjs,72 KIE436-2xcE,132 RQk7-GqzZCc,96 8YCMjAOgFpo,163 LKVcX3959I0,132 _DbFZkXD8WA,132 Ip-dPqtyXRs,120 tm6qzug9AS8,161 4ega5Rcct2s,57 5E3TSzke-Fg,132 c93bejkDIuU,106 5FMiM08gFtQ,132 MpmGXeAtWUw,150 zm7wCb8IXx4,130 pyDG32yotmk,136 BTVWvOpPkIo,74 AIeKpxgasMQ,113 8-ECgs93q1A,113 MJ0qQkcBNPs,132 xVWpHTafYuA,128 FeecJ5bAGHA,133 ENAuQIAgXIg,133 w4i_ZwMT3H0,141 2uQeLmDx98o,54 1VwF6VuVhkc,83 Z08HN_2m24o,122 Sms4grRcCck,110 LKpLGai9GxA,115 faRFVdrRpws,211 FD9lsX7gyeo,129 W2Et5nGF5C4,120 tz6dNnahwCI,106 undTPa_iq1Y,94 eZp6EmVqq5o,133 IL_B1fmfl_c,126 irglCpn_Hs8,132 ZgBPFyzsqFg,133 0XzQX-i3y_I,144 vPs5yv77m9Y,129 KXzNo0vR_dU,128 VI9lWn1dpzg,176 d8Ff_W4-4VE,149 3iD4rM9utqc,119 SOnb-cyRdAg,127 FwnnarFw_T8,165 jIyn1q4Ilpw,126 OC_NauqyoSg,180 XYrGVKzAJjQ,188 2CFBewOReY8,141 8lnEGuCcmXs,133 P06IeXkgRNA,131 ZnsLPtYvqj8,133 lhGtoYnSdl8,110 SJ671CSV2-M,128 E0aNsWbWr1s,111 6jS65g5UnWM,121 y7rxncDh6io,96 bMDdjhWe9NQ,129 w8O0iiBrIzM,108 0A9ppII7eVA,133 4qFxfRN75HQ,82 s2xKn06X9cQ,101 nkUx3zstpbU,118 lDetwrOZPZg,114 aVEtuBwgly0,104 bjaJxs12l44,93 9ecF-Go9lt8,134 PlGtHAZOWbo,129 gsWHt9OIofc,133 JOqFKM-dt5Y,129 coOguh0UhcY,144 8hG-F24aroc,169 4a71NDQWOMM,57 tr3ORGLT_W8,142 EEVcrvlYO-w,156 YhSKk-cvblc,239 RhirMa1wvPc,137 w610fTL5O-A,134 d3ZUSI1_lOc,84 Ok4HEhju6J4,123 N69MOeO5bi0,93 DSoLhO7jVzk,123 DKwC6X7_JU0,93 eJWSp6A1Ks0,127 j5Fd6TqePnk,158 FRVB-HBxR98,125 XBz6d2VPgZw,130 S6QH4oWys_Y,129 YyZ4gGCCqss,129 lu9yr0xefYQ,117 EdN4MiVmI74,161 gwEeqSGSL3g,119 W2OKX-PIpco,117 yXcVX57I2JU,135 yKxkjtLBq6I,126 E4D7FEZx150,101 1zOmRBOYLpc,140 _F4WjvMnL6Y,110 wPO6KyIYst4,233 8NOmVkx7fWQ,132 61_aprVh2FQ,107 XRGOhLyLS9Q,133 jAR5DtTUdHM,133 aClqNJOXy-w,127 80htzZ3-XwA,127 OeUbPposwAo,128 J_OsoyDByWo,87 iltOTKedsM0,133 O_NBFJ4pow8,128 lAAxpdk0Swo,131 CCF5MCx5Tes,109 C-7X5i_EQPE,97 i_9C6d3VVHM,103 0pVwRO2dFVs,139 LPxNka5Ll5U,122 iWW0Tk58kXM,144 l3t1ZSuwLzg,158 9R0If3RWk5M,115 MfIvSh-tko8,133 nSEGOd89xWw,121 FHUpEG_qdVc,119 sRwqd3eCNUY,179 8aQFiCfxz6M,121 xLIEyHRfbv4,137 OHHn-_aJQ7s,78 RZAkOfxlW6g,126 _e917WJMzl4,102 8BY36nM4_HI,136 k9WhxTOA19s,130 qPXny_mZ0iE,115 4XG4OPjDKJY,115 AwMjkeZbRZ0,126 vyN2oD5tI80,91 NvPYToFoU2M,133 d_jEVMQc0ig,117 Y_lgyJtcb2A,87 SV73jXKrQ80,120 ugm8RMqRSxs,133 QDNELnksfnw,133 CtTjc4nJlDM,112 iJcH2hCMNiY,100 F3f7Li9T4n4,126 2Et6MGSeXOU,264 0-81bpcuz44,163 i3xjZomB1s0,145 V5dA92wqmME,129 lqdyZpgCnXQ,60 cEPa4RFLJ-0,109 1IctSkdJICI,131 CiOFGnNgnnc,133 UhDZPYu8piQ,130 FwHnNe_ItOY,135 B3g8p7_d8r8,132 khg8XoyKzs4,126 _mVT_JmJ2Bo,133 9CSMoJr51IQ,65 nQIfRCUlfz4,133 qUMSld6BwC0,142 qfIzHlWOiuE,95 SN7sOR35KCg,124 rxwADdYa0YM,132 efqBAU-lT5Q,90 Zj3ggkkj2Pg,139 MCtE3Y28IR0,112 VWWchm35s-Y,61 KQcLnNoYMWU,127 kTXppLCyuOk,72 YCuSsetzzg8,58 qqaFGM-AyNA,109 2_WO15gq88k,126 w7ngnhj4snE,104 fR0Sh0C6jFE,192 tLzcAofC4WA,129 -GaJPgI3jh4,132 30xxXgTH4OE,179 pKJOqt7BtB8,120 9yh3GgjFpxw,94 6Dyph0wJBcA,115 V39FjO5t9BY,187 7DhLw2aNu_Y,104 pwqOYWnLxBo,133 WRJWb6SViK4,178 173I36m3rr8,107 WoDvOu6PqLk,109 g-2hB5Kd5aM,121 LL2LvzUVsZw,65 IaoE6JAGhh8,130 g0HwVyKSC_8,130 F6Y4Vd970zw,189 OQVIkVIf_BE,96 aUCNlDzsDH0,103 Ii5azc-GzXg,135 6lYiLycAQSo,68 SyXqFhSPWBg,131 LHVll_0Hmh4,158 y-AJwogMrAU,133 y_P5zX0ejXI,172 goyoOGbDjNM,130 hIoCskqjp9c,155 3SessG74yMk,191 cMnkhxzCLyA,57 3wJY4bd_M-w,128 P4PPhm_fJug,146 e0cR6R3SccI,100 PpbNn6gMTUE,120 82sgwc-34Cg,81 b9EAfTyu5_I,133 YTnxiXd0qwA,61 o_yIykgKbeQ,132 IW7worFAFlU,169 85dpTb6PRNw,133 sbJ89LFheTs,132 vozS5ppNzAM,118 KzVgbCFwn0U,140 ZBc_xWnmHRk,124 0xJcu3vc9tI,223 nwQ5zHdDFng,128 pmC3rsgHD9E,129 au9pGQ9AuUs,250 LfKPfJmfGgU,106 eu-afVml4MM,130 wJJ2RLLVzcU,102 gpW3ywIoyr0,157 6i3eC2gzxXA,49 JMlpAPKDm2s,138 v3aqGRzL0BY,131 0en0UJ180yc,132 ddwe3cp5dt0,132 xR1YEOrYOdw,133 U4DZWsXvRUA,55 pN7yX45G6WA,152 VEgR-CiTK2E,97 WIZ0J4rWO88,118 BUAPTnpOdVM,133 2315p7LJusg,129 z5s04znNyMM,116 Dvze9_LZmC0,56 naKm_rLxRCs,217 EshEWL1ZhCc,109 j1CcIP0upoU,69 9ioRMsPEf8o,126 XHGWTDHchVQ,133 evo1frlMjHQ,115 GxMoPTqev8g,131 RhMsnnZ-0qM,57 ZU1CFYBhGT8,142 HrFmuAN50BA,132 _07OFEHs0iE,124 6CxOSOVI76c,102 9RRGvAB4HF8,134 K7iGuEr-u0s,130 A0gGIMaQZJs,96 Tzt-axwwOUY,45 hJUtiOm9dLY,133 2SnugUXqVJc,122 tfGpUcIEIf0,68 i812ZsyyeLg,126 Moq-NmqnZR0,133 jfYvV2tBEz0,113 tyazEYlueAw,115 S-hMzdxcOD0,125 WVxz2j4_skI,126 LwDbgE54QYE,126 15i99XcYpc8,131 vH8nss4M93g,111 99Ptctl5_qQ,120 dPKG3WMkMxQ,126 MYuEOOe0xSE,132 _yY3iR3yuT0,241 yqy6z3kxWdI,99 yo6AWtLxoG4,203 C2YKcU5rfm0,115 PJQ2AiURctI,89 sXtlR_7l6xQ,121 lKJ8pyN8Cm4,136 -Luy502C920,146 5Ddap2Pyhtw,132 FlB2v8LQHDM,223 SwI_ITgsSks,121 lVQgRd34Dlk,163 DdZNLekEcIQ,110 080g4Ylkv2M,97 fBB_lJ3Axqk,133 9anDqvXfdu4,132 37zZ1ULVBa4,122 nuVY83HU5Mw,126 daoD1UtU5XI,117 CSuwuvVcRHU,133 EDdsxJLhp-E,132 2Rlao83KneM,132 boCpijI2k5I,136 OF-QIOuucVk,84 xKvmGfNhbF0,84 oow41RrqpHE,132 txKlsWFlkcs,181 poAxbGphYmA,127 NsMwPIy4Ax4,230 LQhfDQoYERY,98 hBsnb6M-lr0,118 RoP15HrFNu4,102 GMiD6PU8SKI,132 hfufT3MZQm8,184 xHunA6CYHvo,135 qTpB6q-YJwM,131 skMchQx_U_k,129 XI5o939LHrE,90 i6ymVjU5hno,135 aA_j4KpP0W0,240 iRmtQ5DlvuQ,122 DGtD5QAaAGY,172 U2_h-EFlztY,123 7EXefCHq6OQ,164 l1DMfq2zSks,75 Q8rhm3wBFE0,116 B62wGNHDYHA,111 n92XBsqbSF4,179 S4s8LTNnufA,119 9lU01uvS3Nk,113 Lz3XcjwKGmQ,92 B22vWcjNR9I,67 ZFM-OxDGrkg,147 URvrDySPc4U,179 iFnPpSNqKYU,127 6bxEuaulT4k,70 Wlrq_lGAn78,133 c-jOeDA-X0k,132 hgFClV33aH0,100 Nt9wqkbXyyU,108 jPSjDk0CM68,125 q8CXKTH5950,114 Ur3uTKbrqIQ,94 aJhtBJETQF8,96 SyGAQwggjTw,86 H6fBnHvdZeI,162 eZtQn-GAemQ,124 MM42NkUhSnM,125 rARKAStGRy8,83 FcFtBqXUud0,144 _WzzevY4_Ys,144 Lt01tXTT0Ak,125 ei1tTWCrHqc,80 _uHTonkUqW4,129 PM9t2KSOfK8,132 2PVdztmMSzI,151 LfxeHobEC9g,82 kVXAITzqSgc,181 ZYLekT6cYwY,109 IhDAJ1Tug4M,141 SMYJOm56YvY,132 mksJyq7Z-mQ,177 sIB8AdUqEqg,119 U_5JpJYsufQ,123 jd3KM4imjr4,99 ENjz0-Ut-nQ,205 A4E1rEzhnz8,120 WfteSIZ1Fyg,104 3JL2XIwueEA,124 FjrKzRGUXWA,133 J-8l4bdfL9g,92 77Uk4kkFEnA,88 t3c_a9M1E7s,94 _uw-hnKrV80,112 r1jgKSXPL84,131 wZheb1gbe58,51 nn-nEk5kpz0,132 WrYDmyHlxqY,145 __3ylv_JWqw,172 WAwbrOJMKEc,123 CPRh4gw_GmQ,118 2TITAbyObTw,142 33KUnZf841c,107 _4lDASeWsFg,107 Wd7iSbGIDqs,96 LwdMHOiN6ko,218 hpliHwPiYYU,126 89hCOgVa5LI,61 d1lql0Z0e-E,117 4vmjX0sQrIc,243 a2lb_3-fYFc,120 TLsRWN6G77I,133 E0wfFdGnwx0,131 XPEWBEa8pqg,127 jWQ1ITS94cA,131 2xujTq-ueyo,132 2DkHvEZSBOg,160 JhX_d4BCzhk,193 HRrbt00Abv0,92 H7GwaAh6G4o,166 kItLDGtPMMI,95 XHbdoO7uCkk,41 dgGvAQ3kcs4,240 ti42vZVtgvY,117 Om2UW4c_vqU,130 Kk6l301jwOk,78 xkzNVP-tQ-0,123 _wLWdDRIkis,99 WvQTrzonQAs,153 sJGWczuXzT8,130 OvaNgegisKU,123 ioXW5Fg_q_g,139 rAEv7dJC5Iw,133 raVKed5rdgM,117 a-Z66uN97Ds,148 Qo91sVEacq0,133 yXeBhFzqzfY,126 VklQQrb9-4c,102 bR2Uon5BWC0,133 6G8ExBEJEMQ,179 CgBeBag4ir0,122 yEYUc9oIVD8,166 2_iIEQ-hlKc,127 RgHtBxOs4qw,165 YDCHojBWEhg,131 ArMePKKjiSw,156 opoVbcNO48o,132 kEsfYG_bF-E,133 D_5kpc0cUWk,133 cs6MZqTBBC0,155 _W1NRq6DekY,129 -xSV3MoacUw,105 xQi7ABaeCx0,130 H2_tkNGWYKs,134 3gDvO7H5iEA,203 9K_4ZaMc1-4,124 WcSLuxBdYJ8,69 wmG3O9RvEaU,130 MlD51EzRE7c,107 kA_BtqogJNk,133 wz29yiGSrB0,86 fWBAKMYKPSc,123 kYQkkpRXgP4,92 KDQqlRIFcAQ,132 Y1IEtzj23ws,180 mIIZqCaHUFI,99 siHzbnn1Bxw,119 _cmX1kEbl4g,78 jZXHcvhr2p8,144 LDsysmP_8yo,129 Tg3A7u83stA,155 89g2af1Qw0I,222 qkjpTwOa0GY,133 b9KCMBBn0EI,132 FypqAWaSTFU,127 Hhep61HLkIA,120 Oum7mEtv05g,98 iyCfFXxNtp8,131 PXBBHe_SwSs,123 WI5B7jLWZUc,111 p7rtU_AM1bE,132 XnD8FsykE08,184 qUqtwCfbjVw,111 k-WW7ULn8RA,112 KE0awhgSLmE,94 HHFbltJSRxo,244 oKmBIC6X6Fs,129 crBqPflvzyQ,126 6kdms5umbhA,130 t69ZfcWPZFY,132 mjo4d488_yE,131 ikfmhFpbWJk,131 p92CKGAeQUY,149 6xNFwkWJug8,125 0J_lTFS0ouM,124 tk2vET4aFW8,125 q3JlGPF4Ko8,124 z3YKH7m0P4c,131 Nk4JsPf8xX4,133 eZWHAM2EG3o,136 zMNUcNokvkU,109 wUul0bIkS6g,143 2_kQHIUwJMQ,133 0JBU9hgQ_T0,133 MPDs_ZJMc90,83 gV4WFBjc01I,162 7dqjg1TwbXs,122 iWGL8PRdM7E,90 _dtNz4Te0Gw,132 Rt8Bfir3A4Y,165 BEkjNAsakzA,105 QRqXBsgnYok,104 g3jImb6V4wI,110 SehEKk2gcSc,123 PBHZhxrhO4E,133 cv62uysSvQE,132 v1dTnLPL9gU,148 g3WtvzmKCQQ,109 z4edIxzhU80,105 EpD-Hu37w5k,111 eSYNuO9GTU4,103 8riyzFyGdVo,143 65XtOM1UUGw,127 pE5pl9UG93I,131 tJHkiRzd05M,147 aUdbjoT_DPQ,162 DcmzHtokiMw,132 _hX3fkzGrxk,131 9u_76dg61ns,133 QNrM2ICShJ4,87 NT_hyjakJEI,97 PLNOftwFMCA,102 bCk9vtlnr34,94 7ux7Dd18Rw4,133 bh2ShAQ4lw0,120 qh1KCsqqHFY,46 WdD2JN10zpY,157 Qr9F2ij1jfI,133 AlIvRiDePlY,140 nCgg5XIxxjY,125 CeYoUJYqAQc,133 QL4mGMAjHBg,166 gboXDP4L4b0,68 Qq8BlVT4KtY,180 M9rOG76v0qY,222 lh6Y9EU0wPQ,118 BZH32FuXeF4,165 nXoPEmh39ls,151 HLxJLrrC5mE,130 4GUk-1i2_Zo,126 BS-6KavRfww,95 Ubr_vvAzvtA,143 3SAElnJHcNc,130 mAeceNqeNtQ,95 d79o09D8cuo,129 231TmvIPzQQ,126 nDGZMXNYfF4,133 SVGc5KwWRtM,130 mvAkLCKYvwU,68 u1Dxy8jBmYE,202 I1CjDw569ss,129 -GSZwG_s-8A,226 aYBTp7dH_XE,128 liH8CRkWl3Q,110 vjKoaNcefSU,86 zJQujcyncBk,242 uPqgue3xfPI,106 Y3vhSZJthJM,41 RlnrFh_APX0,50 65ltaw4SF38,119 cRsKzW5Fszc,120 IF-3dxM0df8,94 grlDMsiQ2Yc,181 6svL10xXulQ,157 6UwcLeAV31Q,126 tTrgUKsKetY,153 Tt9v8E7Owxo,170 p-dnhwIY2G0,162 e0fFbNV1ySY,108 SN39w-Bnlgg,132 DO_uVdE-KtE,169 Kye_x3QOSU0,132 3lyx7UsMqmc,121 OuLL5R3sb-w,130 OinNCchV-xk,125 xpSqCE8wCOU,95 uGg9-5_0On4,119 69aok-u1esc,123 bLPMGLsf1c0,139 4OW7CMS8PBQ,100 koX0RDUQHFs,130 OcNjc5lfvpM,103 B3UhbtdxYak,77 0zLL_XdqxmQ,100 f1Nh9DlkZ1w,78 r6fpS6P16NI,130 U4se5hr9O84,192 3uAh-opNpDg,56 JOkwDeIX1jg,102 iG4GVhx6oGc,126 UdT8lSEVHZU,239 yJlwArJRkmE,117 YJhs9wqT7qE,119 yBxr5ACMH5U,79 raIdZiSZ970,132 AU-paVv6zTk,148 ax0943uaZUk,134 7WCR4dZt7Uw,133 hkFSMV93VeA,148 R8_HfT2ndyg,193 3Lf57-rBck8,131 bBeHRwjwKk8,136 D7MotG6VP4I,177 WK29KgQKP8s,45 VwE2USOqfNg,132 -oeFJvhvMik,153 BL9xCIeznI8,138 J2yzM2nkylI,126 yjEcOkwV2MU,133 9gdhd-EerNw,140 QC4b5Aoff1I,133 mJbFV5i5ay8,169 wirXvuRATiE,156 V-eoS6kEyeg,202 44-8o-jEDB0,149 osfdb5BrLPI,128 9O1-5MNRbKE,123 DeYew_zLc_c,118 21GAl13VImg,115 F1cWO821sR4,193 lAcZxn1DeHs,133 lh3qxTgaa1Y,144 NiAbqHXwclo,158 uDqSQGOtixE,112 vlZQj4OrTUM,134 vU1_EJh6Atc,127 mpDnD5Pp90I,134 oub2YWXPV6g,118 hghczTVgav0,118 Yg7ulcF39e8,114 wy1eWsC2sL8,147 3VeXn9KEvSA,180 6HH44dvOLJw,132 _SQ4ogstDVE,148 QdIw0bzY3oc,128 RZa79QGDeo8,133 ChQG9RAkBiE,124 6-L8WG51noY,65 jusrkQ2Zg8o,133 9GagOWlFd-U,132 e5Tb2YSkGh0,133 hAxEEf5p3Bw,101 rwwMn3Y6rUA,130 SQ_rMhKlNFE,88 OK77tkb6D0c,118 lGlvNt-N140,132 aErChTKF6u4,107 T2WbeZlfB9U,103 ogkh8GaUkBE,76 BWDYUMTmHjU,99 ex_KPw6bVwQ,66 yocBQlw_mCA,114 2T8HUyL7zyA,101 6bn4rdEiqg0,127 tDWQvA6IhG8,86 gKpPQ6SqHvQ,136 LagYNt1QpT4,135 oPOqdtLP8XM,133 3fIng0TRjXI,135 QgdvS-09ygk,77 xEqdoVnIFug,133 uSvAfRaxSu4,129 Ze8Yt5V7T6A,101 UwnVloaPX5Y,132 JyxSm91eun4,128 1XUHPC3s3rM,130 Cc1VTko8xJM,131 JrGE2knBQsM,86 lRVUsY_rcCo,128 UVj_fFGA1Vw,137 jcTv-BEwabk,130 Z-Hye1zg5IU,148 lxQj06LN31A,88 aYbNb8eaTCY,133 w1pIFZb7480,83 chlwxs2dfVA,146 W6udsqodIzo,55 KzSRd6xpR04,146 pt-Ir7xS29Y,102 DCzA_11fJZE,127 5FQFrCgi8d8,96 IC5DpSRkHps,94 jSabMn5UXKo,133 kWPc7z2IMkA,132 _f_1Or6RhiQ,117 S3GG_HRE-D4,81 m7xTvb-FAhQ,268 IfwHIwPbHaI,132 rfdF7LBQ8Ic,75 OBPgy6HGL44,185 1p8rDhTaegs,131 W7xrlkbp0Hs,90 Ejp4AjvBuGw,146 yUsoVGj1Ta0,216 F2Y7FnlkuCg,175 Ph6hXpPbl0s,200 Bk2dqynryeY,133 7L0xuL1thp4,92 yAgMoKBGjT8,142 pcyg0H7EU3c,104 mUzu93AhMuE,126 JmcifAkvDn4,71 TPQeRElxu2o,137 frTBOhJ0XHU,133 bmJ4doOPxd8,116 me7nuXZfXVM,88 dzbazAbjk8w,136 Bi_YR5xkRx4,143 mTYwZEhFwu0,145 5938LUU-UAY,166 6d37Zy95yDI,133 p12YiRom_Kw,102 Xk7IjHYLVH4,132 X4_8ByCyrUA,133 4dS7rsMy1-Y,91 R5UsZ1yoTO8,70 rfix60WuBxs,30 dKleqAHv-Zw,101 -bzOzD2QShQ,82 AXsbWJC8VM4,180 uvXwt5HNFLU,137 CxkpSGI8L8o,158 jH2OKc8HPw8,124 zRsPSJWe5sY,85 fiziIJ6zTU8,129 PrjcxNpxOos,74 0vOulnDhH8A,133 a2gMY3TRx8s,125 KggovdPWfpk,90 MlSzWgyNsAI,89 9BB9JHog-mg,161 8tteR5k1l-A,123 tgOwPRAbRdo,130 JL9SnJbeZQw,133 z0-rv13DDk8,132 GxcZL7EM5Zo,68 Y52_WuvyKoo,107 _lnD3Fh-kYg,123 N-VlQuj49a4,129 RiBRrKC_6pE,170 abM-sq8s2_E,131 FVEiScxUQyY,122 qkGDaroLl_M,85 Do4Z-aFeJMs,169 iaQdh-Hbp3I,69 iiUiiK9dMPg,97 YY-l3FmgXKw,230 03QHVB_n6N8,124 8oDxIAKnWx4,168 YBQ90wbJ7MY,123 1vmnp7ghGPk,135 0NNaypyly_o,30 hLNZCf1nuRo,58 aPPMHA65HIg,129 XITc_tguH2o,129 5UKpz6Gsyu4,121 q3a5wxfm13Q,130 2xRlAbbcG0Y,129 GYYuyvyr2HY,87 9zugv1NdMj4,124 E5zvQmTrzVU,119 8ygfQ6oSNiU,137 wO1s5eRplKs,133 D7H61Y1yUr4,120 ijXLPE7SB3c,129 ZF4nYBty_FU,69 uaDgwjVu8ik,174 Kw5qjJslyNU,121 XpdrOUgweIA,165 8I_QMs_Mjb0,99 LIugIUixU_0,127 MBfp_LuEfqA,150 9hCHM2Oj1wQ,78 H9TUkZR66o4,107 2KwdvymU_ao,118 E0TmjA1X2N4,71 AGUMsaszNKM,110 gLB9F9QftwM,132 pFm8RKAyU_Q,183 JpvqpzU7eEc,133 PK1aYqQgn-k,113 _LAoGdcXG3Q,132 Kujzb5PT5ns,119 AesICMoanS0,97 Lgmzj8eWK8M,97 oSpMQ0WtrSs,133 7jtGp6xaVPU,117 qA73y2w3WUc,113 Pi392aPIVHc,194 G5sYuuD7ixA,112 nNkIWyfowzA,77 wosztGGnWt4,133 9_AMztckp6k,198 BJ1tNYfDZa4,194 KwDvrv9byqM,107 dEnoofPhBtE,163 c6ik-AA87Uo,100 kCtsoBRr1Z0,86 gNEB3vRczjA,135 jKVDdMG37ig,108 vY04JLQa1MQ,163 roxNsu1YELE,128 R2MxWZTrgxw,164 bLmYWtqC8pc,74 k-WrZcFJo2k,114 c2tWZFAL5t4,170 zpQFjWoRhGc,100 jF9GE50ioFo,190 dPk7S_LiI1I,101 gbEDjhLuPAs,131 LWkbKaDHXbw,104 CFCnY49pyII,154 d-2r0wMjfrY,128 AdyWIiYQv7E,122 8r354VUktU8,111 JAz7hBbOoc0,131 E5VOPMr7SKg,108 Wh4oSUvSQTQ,133 p0Ov897MYiw,134 gXHhy4c4UZw,123 sR176VaCLXg,68 snTaSJk0n_Y,133 hyXCJXsHX3A,90 lTd2m2J2XmU,133 QL9sZG6f5rQ,85 OK_v02xShhs,76 Eghn9oMlSy0,128 m-YWYdwcexU,128 UvpLAMfYgJ8,152 oUxsU2oZ27s,174 sO2RBLeWYyg,133 zvgXyU1STYI,133 ovQk7fd4_Co,133 G6i3bDGOLB8,133 Bb2XlqE9OUg,96 1daKtciMLiE,124 4QsATC7VdUk,131 xOCBpMs-9hY,75 KxlEI-kTY2I,80 sCJ_SlkCT_o,139 NMOjCohQbXY,136 5485fd0CtKw,133 2J4gviivSJU,133 1_vxyocjxg0,140 wfbqJpn8fN8,131 BHEe0PqpvNw,107 BcRXmoGWHtQ,123 DDb0S3nIfNA,112 79HayHaaXDE,130 amGJwP2p7D8,132 N_tNwz5Bxwk,133 s-Sx_dMw8oA,124 i4GeD9FWdG4,133 EimQSagV_8k,132 a_aZ01raOoI,91 tLiJueTgu44,133 VCxGD8VH-TM,45 9fQG9Zhv2_I,82 czBTbtS1YpE,111 OZNLJj4pJsw,202 3pON6S9aDy4,32 BITmqWGegUE,168 QFQ4izzxtec,122 qJ9YL7qMG80,87 BWYNt1N6xWQ,230 h44egWnbrrg,77 ZkCH653K2cc,127 TO01P7dpKV4,147 E_tzgBTGxEM,73 DE71sZbjvbs,98 Wo3qdzlpPdg,62 kCsm28_ULw4,87 p0CKoz0u6Eo,111 70_b9ZEcxp0,81 2ohNiVtAwJY,130 sTu7aCTkp9g,108 Rtv_BhYXLh8,126 uSuoZcrKq0I,132 lD7Xo_FhL4s,92 Ao-ipKN7iQE,132 lyu3QUjAFtw,110 Si5R7-KZWFY,143 2fWpPZaxmM8,77 -ui9TwNrNEw,142 x21gkEu5lKc,124 Z6oeAdemFZw,99 yY6EgYygsAg,120 ohnhJ6gyLhk,113 RFAfyPXisjQ,141 mZpiKdps530,154 TlQ_qOWPTnE,91 7FOk4bCAQhc,57 Btdp-sC8MJI,121 Ax1Vgvp5Cls,126 bWm1GC01kGo,192 3eA0tlN-WMY,81 OaZ30IajJ2w,73 XwS5WsjPg9U,122 mCVwWrfOT3s,122 KI97hqN52Ik,158 DToj3xM2b1E,132 -kkP1Pvzvgs,109 wzJObNk-flo,82 YhdrJfDiIkM,88 2fkfpdMG-KQ,124 hJYfFD_MNoY,103 rba9NiqG9PI,80 zDRmwZxOJ4o,120 nWRelGmpmxQ,85 d7he8f2L_BE,126 Tv6tdiEMGaY,178 31usxLUiuhs,131 ijueTjJrMQ0,101 456l6TpeE1E,92 nfGKHa_mn20,131 AguptuYeDRU,194 89uZslA-efY,118 b2gz0vSh0J4,62 kDFwUhn_1Ao,130 PbgLbYd2zYI,123 Ce0zSR2ParE,81 IXi_VrFakL0,141 9PyNL2ahKwc,114 sXatQewZKRw,104 dm3xv5sosng,83 bsaA903oxvc,173 c9_46Iv_GGM,133 LVKODpCrCpw,176 O6frj4BOJJU,131 HSH9SG55kBU,133 jWJqzIUntho,127 tu0NflL0_9c,167 nyMtN_aHC_8,130 k1fiQFCN2Zs,180 S8WazHAxJLM,120 5F6pso8VBhc,133 L9-FR2MUfrU,132 nH40NtYdL-U,116 60PDxhI6y4g,153 RE6QfwhDMhw,102 m5bPIty4Dww,80 g_mjMjs_eFY,113 OLBotH5Bki8,133 jTRa22j4OUk,86 LS6oxPMMdas,132 e-5SVm2NUe8,126 a5WAyc-EaNc,75 Qa8kCQQUjHM,131 zwQRQ6SbyMk,40 caypUMEoKf8,96 hh5iOitreQ8,157 tHe6ar-X2cQ,116 4QL9q2mwZXI,88 YlRLfbONYgM,127 wrYcEEv737c,119 Nl0BGD-SxS0,173 oepaVuuBAtA,133 k6UQZv_ElZE,147 4qHuiCLkYHc,136 _j0KhXH6xLE,97 jtQcr7lJXB0,127 ouPU0xazha4,159 df-YzAnQJpU,223 BOYsnywXTu8,84 S01OvbVQhGc,115 wwoxXiyWf7A,133 QUTDoPuCUcg,130 pOQv_Ng3CaU,179 yh17pzVY6BE,133 KSheZC9C__s,132 Uw98q-YIFec,102 DCM-sEpyh1Q,151 0WuMU0zi02w,112 H4dh0EmCQLg,120 u-oetP_iX_I,102 ulwUkaKjgY0,131 ToK_9NLtr7M,146 kHRSh7JOKxo,140 2zGJ_oOECv4,68 RzGyyYgXffQ,118 fSNdh-3k6-g,161 rthHSISkM7A,133 cFZWNfXzFLU,248 i1nbM1Gg5OI,103 Xp_xKQZigM0,125 iYG8WCULpNM,132 M9WaDhm3bE0,92 8x6RDkjZj8Y,131 9VkmshlGEvE,101 LcHtYOV0bVo,116 kcDEHkSgpuw,102 eOdZMwIh1I8,130 2NLGmRYLvsY,79 Ih-_ZmPZ1x8,155 z9MEhN5rjmg,127 dUCUs8EtHoM,133 yx2giHzJ4-I,125 eFd0VyfLf1M,81 K0uzT9bWryU,91 ================================================ FILE: data/metadata/movie_info.csv ================================================ imdbid,genre,country tt0020629,"['Drama', 'War']",['USA'] tt0020640,"['Comedy', 'Musical']",['USA'] tt0021814,"['Fantasy', 'Horror']",['USA'] tt0021884,"['Drama', 'Horror', 'Sci-Fi']",['USA'] tt0022913,['Drama'],['USA'] tt0023027,"['Comedy', 'Musical', 'Romance']",['USA'] tt0023245,"['Fantasy', 'Horror']",['USA'] tt0023969,"['Comedy', 'Musical', 'War']",['USA'] tt0024184,"['Comedy', 'Horror', 'Sci-Fi']",['USA'] tt0024216,"['Adventure', 'Horror', 'Sci-Fi']",['USA'] tt0025316,"['Comedy', 'Romance']",['USA'] tt0026138,"['Drama', 'Horror', 'Sci-Fi']",['USA'] tt0026714,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0029947,"['Comedy', 'Family', 'Romance']",['USA'] tt0031381,"['Drama', 'History', 'Romance']",['USA'] tt0031679,"['Comedy', 'Drama']",['USA'] tt0031725,"['Comedy', 'Romance']",['USA'] tt0031867,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0032138,"['Adventure', 'Family', 'Fantasy']",['USA'] tt0032599,"['Comedy', 'Drama', 'Romance']",['USA'] tt0032904,"['Comedy', 'Romance']",['USA'] tt0032976,"['Drama', 'Mystery', 'Romance']",['USA'] tt0033467,"['Drama', 'Mystery']",['USA'] tt0033553,"['Drama', 'Horror', 'Sci-Fi']",['USA'] tt0033804,"['Comedy', 'Romance']",['USA'] tt0033870,"['Film-Noir', 'Mystery']",['USA'] tt0034240,"['Adventure', 'Comedy', 'Drama']",['USA'] tt0034398,['Horror'],['USA'] tt0034583,"['Drama', 'Romance', 'War']",['USA'] tt0034587,"['Fantasy', 'Horror', 'Thriller']",['USA'] tt0035015,"['Drama', 'Romance']",['USA'] tt0035140,"['Drama', 'Romance']",['USA'] tt0035423,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0036098,"['Adventure', 'Family']",['USA'] tt0036613,"['Comedy', 'Crime', 'Thriller']",['USA'] tt0036775,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0036855,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0037536,['Drama'],['USA'] tt0037913,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0038109,"['Film-Noir', 'Mystery', 'Romance']",['USA'] tt0038650,"['Drama', 'Family', 'Fantasy']",['USA'] tt0039628,"['Comedy', 'Drama', 'Family']",['USA'] tt0040068,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0040724,"['Action', 'Adventure', 'Romance']",['USA'] tt0040823,"['Drama', 'Film-Noir', 'Mystery']",['USA'] tt0040872,"['Crime', 'Film-Noir', 'Romance']",['USA'] tt0040897,"['Adventure', 'Drama', 'Western']","['USA', 'Mexico']" tt0041090,"['Comedy', 'Drama', 'Romance']",['USA'] tt0042192,['Drama'],['USA'] tt0042208,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0043014,"['Drama', 'Film-Noir']",['USA'] tt0043338,"['Drama', 'Film-Noir']",['USA'] tt0043456,"['Drama', 'Sci-Fi']",['USA'] tt0044079,"['Crime', 'Film-Noir', 'Thriller']",['USA'] tt0044081,['Drama'],['USA'] tt0044509,"['Drama', 'Romance']",['USA'] tt0044672,"['Drama', 'Family', 'Romance']",['USA'] tt0044685,"['Biography', 'Family', 'Musical']",['USA'] tt0044953,"['Thriller', 'Western']",['USA'] tt0045152,"['Comedy', 'Musical', 'Romance']",['USA'] tt0045920,"['Horror', 'Sci-Fi']",['USA'] tt0046250,"['Comedy', 'Romance']",['USA'] tt0046303,"['Drama', 'Western']",['USA'] tt0046754,"['Crime', 'Drama', 'Mystery']","['Italy', 'USA']" tt0046816,"['Drama', 'War']",['USA'] tt0046876,"['Horror', 'Sci-Fi']",['USA'] tt0046912,"['Crime', 'Thriller']",['USA'] tt0047296,"['Crime', 'Drama', 'Thriller']",['USA'] tt0047396,"['Mystery', 'Thriller']",['USA'] tt0047472,"['Comedy', 'Drama', 'Musical']",['USA'] tt0047795,"['Action', 'Adventure', 'Comedy']",['USA'] tt0048028,['Drama'],['USA'] tt0048254,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0048356,"['Drama', 'Romance']",['USA'] tt0048380,"['Comedy', 'Drama', 'War']",['USA'] tt0048424,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0048545,['Drama'],['USA'] tt0048605,"['Comedy', 'Romance']",['USA'] tt0048801,"['Comedy', 'Crime', 'Romance']",['USA'] tt0049096,"['Adventure', 'Comedy', 'Family']",['USA'] tt0049406,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0049414,"['Crime', 'Film-Noir', 'Mystery']",['USA'] tt0049730,"['Adventure', 'Drama', 'Western']",['USA'] tt0049833,"['Adventure', 'Drama']",['USA'] tt0049934,"['Drama', 'Romance', 'War']","['USA', 'Italy']" tt0050083,['Drama'],['USA'] tt0050212,"['Adventure', 'Drama', 'War']","['UK', 'USA']" tt0050419,"['Comedy', 'Musical', 'Romance']",['USA'] tt0050468,"['Biography', 'Drama', 'Western']",['USA'] tt0050825,"['Drama', 'War']",['USA'] tt0051036,"['Drama', 'Film-Noir']",['USA'] tt0051201,"['Crime', 'Drama', 'Film-Noir']",['USA'] tt0051364,"['Drama', 'Romance', 'War']",['UK'] tt0051411,"['Romance', 'Western']",['USA'] tt0051436,"['Adventure', 'Drama', 'History']",['USA'] tt0051525,"['Crime', 'Drama']",['USA'] tt0051745,"['Comedy', 'Drama', 'Family']",['USA'] tt0051786,"['Horror', 'Sci-Fi', 'Thriller']",['USA'] tt0051878,['Drama'],['USA'] tt0052357,"['Mystery', 'Romance', 'Thriller']",['USA'] tt0052564,"['Adventure', 'Sci-Fi']",['USA'] tt0052618,"['Adventure', 'Drama', 'History']",['USA'] tt0052832,"['Drama', 'Romance']",['USA'] tt0052896,"['Comedy', 'Drama']",['USA'] tt0053125,"['Adventure', 'Mystery', 'Thriller']",['USA'] tt0053291,"['Comedy', 'Music', 'Romance']",['USA'] tt0053604,"['Comedy', 'Drama', 'Romance']",['USA'] tt0053946,"['Biography', 'Drama', 'History']",['USA'] tt0054047,"['Action', 'Adventure', 'Western']",['USA'] tt0054135,"['Comedy', 'Crime', 'Music']",['USA'] tt0054215,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0054331,"['Adventure', 'Biography', 'Drama']",['USA'] tt0054428,"['Drama', 'Romance', 'Western']",['USA'] tt0054698,"['Comedy', 'Drama', 'Romance']",['USA'] tt0054997,"['Drama', 'Sport']",['USA'] tt0055031,"['Drama', 'War']",['USA'] tt0055184,"['Drama', 'Romance', 'Western']",['USA'] tt0055614,"['Crime', 'Drama', 'Musical']",['USA'] tt0055706,['Comedy'],['USA'] tt0055798,"['Biography', 'Crime', 'Drama']",['USA'] tt0055871,"['Drama', 'Thriller', 'War']",['USA'] tt0055928,"['Action', 'Adventure', 'Thriller']",['UK'] tt0056172,"['Adventure', 'Biography', 'Drama']",['UK'] tt0056193,"['Crime', 'Drama', 'Romance']","['UK', 'USA']" tt0056197,"['Action', 'Drama', 'History']",['USA'] tt0056217,"['Drama', 'Western']",['USA'] tt0056218,"['Drama', 'Thriller']",['USA'] tt0056241,"['Biography', 'Drama']",['USA'] tt0056264,"['Adventure', 'Drama', 'History']",['USA'] tt0056267,"['Comedy', 'Drama', 'Romance']",['USA'] tt0056592,"['Crime', 'Drama']",['USA'] tt0056869,"['Drama', 'Horror', 'Mystery']",['USA'] tt0056923,"['Comedy', 'Mystery', 'Romance']",['USA'] tt0057012,['Comedy'],"['UK', 'USA']" tt0057076,"['Action', 'Adventure', 'Thriller']",['UK'] tt0057115,"['Adventure', 'Drama', 'History']",['USA'] tt0057187,"['Comedy', 'Romance']",['USA'] tt0057193,"['Action', 'Adventure', 'Comedy']",['USA'] tt0057251,['Drama'],['USA'] tt0057413,"['Comedy', 'Crime', 'Romance']",['USA'] tt0057449,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0058150,"['Action', 'Adventure', 'Thriller']",['UK'] tt0058461,"['Drama', 'Western']","['Italy', 'Spain', 'West Germany']" tt0058586,"['Comedy', 'Mystery']","['UK', 'USA']" tt0058672,"['Adventure', 'Comedy', 'Crime']",['USA'] tt0059113,"['Drama', 'Romance', 'War']","['USA', 'Italy']" tt0059124,"['Comedy', 'Sci-Fi']",['USA'] tt0059245,"['Biography', 'Drama', 'History']",['USA'] tt0059287,"['Comedy', 'Musical']",['USA'] tt0059575,['Drama'],['USA'] tt0059578,['Western'],"['Italy', 'Spain', 'West Germany']" tt0059742,"['Biography', 'Drama', 'Family']",['USA'] tt0059800,"['Action', 'Adventure', 'Thriller']",['UK'] tt0059803,"['Drama', 'Western']",['Mexico'] tt0059825,"['Thriller', 'War']","['France', 'Italy', 'USA']" tt0060086,"['Comedy', 'Drama']",['UK'] tt0060196,['Western'],"['Italy', 'Spain', 'West Germany']" tt0060429,"['Comedy', 'Musical', 'Romance']",['USA'] tt0060438,"['Comedy', 'Musical']",['USA'] tt0060736,"['Adventure', 'Drama', 'Thriller']","['South Africa', 'USA']" tt0060921,"['Comedy', 'War']",['USA'] tt0061385,"['Comedy', 'Romance']",['USA'] tt0061418,"['Action', 'Biography', 'Crime']",['USA'] tt0061452,['Comedy'],"['UK', 'USA']" tt0061512,"['Crime', 'Drama']",['USA'] tt0061735,"['Comedy', 'Drama']",['USA'] tt0061747,"['Drama', 'Western']",['USA'] tt0061791,"['Comedy', 'Musical']",['USA'] tt0061809,"['Biography', 'Crime', 'Drama']",['USA'] tt0061811,"['Crime', 'Drama', 'Mystery']",['USA'] tt0062153,"['Comedy', 'Sci-Fi', 'Thriller']",['USA'] tt0062512,"['Action', 'Adventure', 'Thriller']",['UK'] tt0062622,"['Adventure', 'Sci-Fi']","['USA', 'UK']" tt0062765,"['Action', 'Crime', 'Thriller']",['USA'] tt0062803,"['Adventure', 'Family', 'Fantasy']","['UK', 'USA']" tt0063350,['Horror'],['USA'] tt0063356,"['Comedy', 'Crime', 'Drama']",['USA'] tt0063374,['Comedy'],['USA'] tt0063415,['Comedy'],['USA'] tt0063442,"['Adventure', 'Sci-Fi']",['USA'] tt0063518,"['Drama', 'Romance']","['UK', 'Italy']" tt0063522,"['Drama', 'Horror']",['USA'] tt0063688,"['Crime', 'Drama', 'Romance']",['USA'] tt0063829,"['Comedy', 'Family']",['USA'] tt0064045,"['Action', 'Adventure', 'Comedy']",['UK'] tt0064115,"['Biography', 'Crime', 'Drama']",['USA'] tt0064116,['Western'],"['Italy', 'USA']" tt0064276,"['Adventure', 'Drama']",['USA'] tt0064381,"['Comedy', 'Drama', 'Romance']",['USA'] tt0064395,"['Action', 'Western']",['USA'] tt0064505,"['Action', 'Comedy', 'Crime']",['UK'] tt0064665,['Drama'],['USA'] tt0064757,"['Action', 'Adventure', 'Thriller']",['UK'] tt0065112,"['Drama', 'Thriller']",['USA'] tt0065126,"['Adventure', 'Drama', 'Western']",['USA'] tt0065214,"['Action', 'Adventure', 'Western']",['USA'] tt0065446,"['Comedy', 'Drama', 'Romance']",['USA'] tt0065466,"['Comedy', 'Drama', 'Music']",['USA'] tt0065528,"['Comedy', 'Drama', 'War']",['USA'] tt0065724,['Drama'],['USA'] tt0066011,"['Drama', 'Romance']",['USA'] tt0066026,"['Comedy', 'Drama', 'War']",['USA'] tt0066130,"['Biography', 'Crime', 'Drama']",['UK'] tt0066181,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0066206,"['Biography', 'Drama', 'War']",['USA'] tt0066434,"['Drama', 'Sci-Fi', 'Thriller']",['USA'] tt0066448,"['Comedy', 'Western']",['USA'] tt0066995,"['Action', 'Adventure', 'Thriller']",['UK'] tt0066999,"['Action', 'Crime', 'Thriller']",['USA'] tt0067093,"['Drama', 'Family', 'Musical']",['USA'] tt0067116,"['Action', 'Crime', 'Drama']",['USA'] tt0067185,"['Comedy', 'Drama', 'Romance']",['USA'] tt0067328,"['Drama', 'Romance']",['USA'] tt0067411,"['Drama', 'Western']",['USA'] tt0067589,"['Comedy', 'Drama', 'Romance']",['USA'] tt0067741,"['Action', 'Crime', 'Thriller']",['USA'] tt0067992,"['Family', 'Fantasy', 'Musical']","['USA', 'East Germany', 'West Germany', 'Belgium']" tt0068245,"['Adventure', 'Drama', 'Western']",['USA'] tt0068284,"['Fantasy', 'Horror', 'Romance']",['USA'] tt0068309,"['Crime', 'Drama', 'Romance']",['USA'] tt0068473,"['Adventure', 'Drama', 'Thriller']",['USA'] tt0068646,"['Crime', 'Drama']",['USA'] tt0068673,"['Crime', 'Drama', 'Action']",['USA'] tt0068699,"['Drama', 'Mystery', 'Western']",['USA'] tt0068762,"['Adventure', 'Drama', 'Western']",['USA'] tt0068767,"['Action', 'Drama', 'Romance']",['Hong Kong'] tt0068833,"['Horror', 'Thriller']",['USA'] tt0068835,['Comedy'],['USA'] tt0068897,"['Action', 'Western']",['USA'] tt0068909,"['Drama', 'Fantasy', 'Musical']","['Italy', 'USA']" tt0068931,"['Action', 'Crime', 'Thriller']",['USA'] tt0068935,"['Action', 'Adventure', 'Crime']",['Hong Kong'] tt0069097,"['Comedy', 'Romance']",['USA'] tt0069113,"['Action', 'Adventure', 'Drama']",['USA'] tt0069495,['Comedy'],['USA'] tt0069704,"['Comedy', 'Drama']",['USA'] tt0069897,"['Action', 'Crime', 'Thriller']",['USA'] tt0069976,"['Action', 'Biography', 'Crime']",['USA'] tt0069995,"['Drama', 'Horror', 'Thriller']","['UK', 'Italy']" tt0070016,"['Animation', 'Family', 'Musical']",['USA'] tt0070034,"['Action', 'Crime', 'Drama']","['Hong Kong', 'USA']" tt0070047,['Horror'],['USA'] tt0070328,"['Action', 'Adventure', 'Thriller']",['UK'] tt0070334,"['Comedy', 'Crime', 'Drama']",['USA'] tt0070355,"['Action', 'Crime', 'Mystery']",['USA'] tt0070379,"['Crime', 'Drama', 'Thriller']",['USA'] tt0070460,"['Comedy', 'Drama', 'Romance']","['France', 'Italy']" tt0070510,"['Comedy', 'Drama']",['USA'] tt0070653,"['Action', 'Drama', 'Thriller']",['USA'] tt0070666,"['Biography', 'Crime', 'Drama']","['Italy', 'USA']" tt0070735,"['Comedy', 'Crime', 'Drama']",['USA'] tt0070814,"['Adventure', 'Musical', 'Family']",['USA'] tt0070849,"['Drama', 'Romance']","['France', 'Italy']" tt0070895,"['Action', 'Biography', 'Crime']",['USA'] tt0070909,"['Action', 'Sci-Fi', 'Thriller']",['USA'] tt0070915,"['Action', 'Drama', 'Crime']",['USA'] tt0071230,"['Comedy', 'Western']",['USA'] tt0071315,"['Drama', 'Mystery', 'Thriller']",['USA'] tt0071360,"['Drama', 'Mystery', 'Thriller']",['USA'] tt0071402,"['Action', 'Crime', 'Drama']","['USA', 'Canada']" tt0071517,"['Action', 'Crime', 'Thriller']",['USA'] tt0071562,"['Crime', 'Drama']",['USA'] tt0071577,"['Drama', 'Romance']",['USA'] tt0071675,['Horror'],['USA'] tt0071706,"['Action', 'Drama', 'Thriller']","['UK', 'USA']" tt0071746,"['Biography', 'Drama']",['USA'] tt0071771,"['Comedy', 'Crime', 'Drama']",['USA'] tt0071807,"['Action', 'Adventure', 'Thriller']",['UK'] tt0071970,"['Drama', 'Thriller']",['USA'] tt0072067,"['Crime', 'Drama', 'Horror']",['USA'] tt0072081,"['Comedy', 'Crime', 'Mystery']","['UK', 'USA']" tt0072251,"['Action', 'Crime', 'Thriller']",['USA'] tt0072325,"['Action', 'Crime', 'Thriller']",['USA'] tt0072848,"['Drama', 'Thriller']",['USA'] tt0072890,"['Biography', 'Crime', 'Drama']",['USA'] tt0073190,"['Drama', 'Romance']",['USA'] tt0073195,"['Adventure', 'Drama', 'Thriller']",['USA'] tt0073260,"['Adventure', 'Fantasy']","['UK', 'USA']" tt0073440,"['Comedy', 'Drama', 'Music']",['USA'] tt0073629,"['Comedy', 'Musical']","['UK', 'USA']" tt0073747,"['Horror', 'Mystery', 'Sci-Fi']",['USA'] tt0073802,"['Mystery', 'Thriller']",['USA'] tt0074119,"['Biography', 'Drama', 'History']",['USA'] tt0074174,"['Comedy', 'Drama', 'Family']",['USA'] tt0074281,"['Comedy', 'Drama', 'Romance']",['USA'] tt0074285,['Horror'],['USA'] tt0074559,"['Sci-Fi', 'Thriller']",['USA'] tt0074751,"['Adventure', 'Horror']",['USA'] tt0074777,"['Drama', 'Romance']",['USA'] tt0074860,"['Crime', 'Thriller']",['USA'] tt0075066,"['Comedy', 'Crime']","['UK', 'USA']" tt0075148,"['Drama', 'Sport']",['USA'] tt0075268,"['Comedy', 'Drama']",['USA'] tt0075314,"['Crime', 'Drama']",['USA'] tt0075686,"['Comedy', 'Romance']",['USA'] tt0075765,"['Adventure', 'Crime', 'Drama']",['USA'] tt0075860,"['Drama', 'Sci-Fi']",['USA'] tt0076210,"['Adventure', 'Fantasy', 'Horror']",['USA'] tt0076239,"['Adventure', 'Comedy', 'Crime']",['USA'] tt0076489,"['Comedy', 'Fantasy']",['USA'] tt0076666,"['Drama', 'Music']",['USA'] tt0076723,"['Comedy', 'Drama', 'Sport']",['USA'] tt0076729,"['Action', 'Comedy']",['USA'] tt0076752,"['Action', 'Adventure', 'Thriller']",['UK'] tt0077235,"['Drama', 'Sport']",['USA'] tt0077288,['Comedy'],"['France', 'Italy']" tt0077294,"['Action', 'Adventure', 'Drama']","['USA', 'UK']" tt0077416,"['Drama', 'War']",['USA'] tt0077504,"['Comedy', 'Drama']",['USA'] tt0077572,"['Action', 'Drama', 'War']","['UK', 'USA']" tt0077594,"['Action', 'Crime', 'Drama']","['Hong Kong', 'USA']" tt0077597,['Comedy'],['USA'] tt0077621,"['Comedy', 'Crime', 'Romance']",['USA'] tt0077631,"['Musical', 'Romance']",['USA'] tt0077663,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0077745,"['Horror', 'Sci-Fi']",['USA'] tt0077766,"['Adventure', 'Drama', 'Horror']",['USA'] tt0077838,"['Documentary', 'Biography', 'Music']",['USA'] tt0077975,['Comedy'],['USA'] tt0078024,"['Drama', 'Romance']",['USA'] tt0078111,['Drama'],['USA'] tt0078163,"['Comedy', 'Crime', 'Mystery']","['UK', 'USA']" tt0078227,"['Comedy', 'Romance', 'Sport']",['USA'] tt0078346,"['Action', 'Adventure', 'Drama']","['USA', 'UK', 'Canada', 'Switzerland']" tt0078504,"['Adventure', 'Family', 'Fantasy']",['USA'] tt0078723,"['Action', 'Comedy', 'War']",['USA'] tt0078748,"['Horror', 'Sci-Fi']","['UK', 'USA']" tt0078757,"['Comedy', 'Romance']",['USA'] tt0078767,['Horror'],['USA'] tt0078788,"['Drama', 'Mystery', 'War']",['USA'] tt0078790,"['Comedy', 'Family', 'Western']",['USA'] tt0078872,"['Adventure', 'Family', 'Sport']",['USA'] tt0078902,"['Comedy', 'Drama', 'Romance']",['USA'] tt0079073,"['Horror', 'Romance']",['UK'] tt0079239,['Drama'],['USA'] tt0079240,"['Adventure', 'Crime', 'Drama']",['UK'] tt0079261,"['Comedy', 'Drama', 'Musical']","['West Germany', 'USA']" tt0079367,['Comedy'],['USA'] tt0079417,['Drama'],['USA'] tt0079501,"['Action', 'Adventure', 'Sci-Fi']",['Australia'] tt0079522,"['Comedy', 'Drama', 'Romance']",['USA'] tt0079540,['Comedy'],['Canada'] tt0079574,"['Action', 'Adventure', 'Sci-Fi']","['UK', 'France']" tt0079592,"['Mystery', 'Thriller']","['UK', 'Canada']" tt0079640,"['Comedy', 'Drama', 'Sport']",['USA'] tt0079714,"['Horror', 'Sci-Fi']",['USA'] tt0079817,"['Drama', 'Sport']",['USA'] tt0079945,"['Adventure', 'Mystery', 'Sci-Fi']",['USA'] tt0080120,"['Action', 'Crime', 'Thriller']",['USA'] tt0080339,['Comedy'],['USA'] tt0080365,"['Crime', 'Drama', 'Mystery']",['USA'] tt0080388,"['Crime', 'Drama', 'Romance']","['France', 'Canada', 'USA']" tt0080453,"['Adventure', 'Drama', 'Romance']",['USA'] tt0080455,"['Adventure', 'Comedy', 'Crime']",['USA'] tt0080487,"['Comedy', 'Sport']",['USA'] tt0080661,"['Mystery', 'Thriller']",['USA'] tt0080678,"['Biography', 'Drama']","['USA', 'UK']" tt0080745,"['Action', 'Adventure', 'Sci-Fi']",['UK'] tt0080761,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0080836,"['Action', 'Biography', 'Sci-Fi']",['USA'] tt0080895,"['Comedy', 'Crime']",['USA'] tt0081071,"['Biography', 'Crime', 'Western']",['USA'] tt0081184,"['Comedy', 'Horror', 'Thriller']",['USA'] tt0081283,['Drama'],['USA'] tt0081353,"['Adventure', 'Comedy', 'Family']",['USA'] tt0081398,"['Biography', 'Drama', 'Sport']",['USA'] tt0081455,"['Horror', 'Sci-Fi', 'Thriller']",['Canada'] tt0081505,"['Drama', 'Horror']","['UK', 'USA']" tt0081562,"['Comedy', 'Crime']",['USA'] tt0081573,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'UK', 'Canada']" tt0081609,"['Action', 'Drama', 'Crime']","['Soviet Union', 'France', 'Switzerland']" tt0081696,"['Drama', 'Romance', 'Western']",['USA'] tt0082010,"['Comedy', 'Horror']","['UK', 'USA']" tt0082198,"['Action', 'Adventure', 'Fantasy']","['USA', 'Spain', 'Mexico']" tt0082200,"['Comedy', 'Romance']",['USA'] tt0082250,"['Action', 'Crime', 'Drama']","['USA', 'Canada']" tt0082332,"['Action', 'Crime', 'Drama']",['USA'] tt0082348,"['Adventure', 'Drama', 'Fantasy']","['USA', 'UK']" tt0082382,"['Comedy', 'Drama']",['USA'] tt0082398,"['Action', 'Adventure', 'Thriller']",['UK'] tt0082416,"['Drama', 'Romance']",['UK'] tt0082418,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0082432,"['Adventure', 'Drama', 'History']",['Australia'] tt0082495,['Horror'],['USA'] tt0082694,"['Action', 'Adventure', 'Sci-Fi']",['Australia'] tt0082766,"['Biography', 'Drama']",['USA'] tt0082782,"['Horror', 'Mystery', 'Thriller']",['Canada'] tt0082846,['Drama'],"['UK', 'USA']" tt0082970,['Drama'],['USA'] tt0082971,"['Action', 'Adventure']",['USA'] tt0083131,"['Comedy', 'War']",['USA'] tt0083511,"['Action', 'Comedy', 'Crime']",['USA'] tt0083530,"['Comedy', 'Sci-Fi']",['USA'] tt0083550,['Horror'],"['Mexico', 'USA']" tt0083629,['Horror'],['USA'] tt0083642,"['Comedy', 'Musical']",['USA'] tt0083658,"['Action', 'Sci-Fi', 'Thriller']","['USA', 'Hong Kong', 'UK']" tt0083739,"['Action', 'Crime', 'Drama']","['Canada', 'USA']" tt0083767,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0083866,"['Family', 'Sci-Fi']",['USA'] tt0083929,"['Comedy', 'Drama']",['USA'] tt0083972,"['Horror', 'Thriller']",['USA'] tt0083987,"['Biography', 'Drama', 'History']","['UK', 'India']" tt0084021,"['Comedy', 'Drama', 'Musical']",['USA'] tt0084191,"['Sci-Fi', 'Thriller']",['West Germany'] tt0084434,"['Drama', 'Romance']",['USA'] tt0084602,"['Drama', 'Sport']","['USA', 'Canada']" tt0084649,"['Animation', 'Adventure', 'Drama']",['USA'] tt0084707,"['Drama', 'Romance']","['UK', 'USA']" tt0084726,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0084732,"['Crime', 'Drama', 'Mystery']",['USA'] tt0084745,"['Horror', 'Sci-Fi']",['USA'] tt0084787,"['Horror', 'Mystery', 'Sci-Fi']",['USA'] tt0084814,"['Comedy', 'Crime', 'Mystery']","['UK', 'USA']" tt0084855,['Drama'],['USA'] tt0084917,"['Comedy', 'Drama']",['USA'] tt0085127,"['Action', 'Comedy']",['Hong Kong'] tt0085248,"['Adventure', 'Family']",['USA'] tt0085333,"['Horror', 'Thriller']",['USA'] tt0085382,"['Horror', 'Thriller']",['USA'] tt0085384,"['Comedy', 'Crime', 'Mystery']","['UK', 'USA']" tt0085407,"['Drama', 'Horror', 'Sci-Fi']",['Canada'] tt0085470,['Comedy'],['USA'] tt0085549,"['Drama', 'Music', 'Romance']",['USA'] tt0085636,"['Horror', 'Mystery', 'Sci-Fi']",['USA'] tt0085672,"['Adventure', 'Fantasy']","['Italy', 'USA']" tt0085750,"['Adventure', 'Horror', 'Thriller']",['USA'] tt0085811,"['Action', 'Adventure', 'Fantasy']",['UK'] tt0085862,"['Action', 'Crime', 'Drama']",['USA'] tt0085959,"['Comedy', 'Musical']",['UK'] tt0085970,"['Comedy', 'Drama']",['USA'] tt0086006,"['Action', 'Adventure', 'Thriller']","['UK', 'USA', 'West Germany']" tt0086034,"['Action', 'Adventure', 'Thriller']",['UK'] tt0086200,"['Comedy', 'Crime', 'Drama']",['USA'] tt0086250,"['Crime', 'Drama']",['USA'] tt0086393,"['Action', 'Adventure', 'Comedy']","['UK', 'USA']" tt0086425,"['Comedy', 'Drama']",['USA'] tt0086465,['Comedy'],['USA'] tt0086508,"['Action', 'Drama', 'Thriller']",['USA'] tt0086525,"['Comedy', 'Romance']",['USA'] tt0086567,"['Sci-Fi', 'Thriller']",['USA'] tt0086619,"['Drama', 'Musical', 'Romance']","['UK', 'USA']" tt0086856,"['Adventure', 'Comedy', 'Romance']",['USA'] tt0086873,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0086946,"['Drama', 'Music']",['USA'] tt0086960,"['Action', 'Comedy', 'Crime']",['USA'] tt0086979,"['Crime', 'Drama', 'Thriller']",['USA'] tt0086993,"['Adventure', 'Drama', 'History']","['UK', 'USA', 'New Zealand']" tt0086998,"['Comedy', 'Drama', 'Music']",['USA'] tt0086999,"['Comedy', 'Drama', 'Musical']",['USA'] tt0087065,"['Action', 'Adventure', 'Crime']",['USA'] tt0087078,"['Action', 'Adventure', 'Fantasy']","['USA', 'Mexico']" tt0087182,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Mexico']" tt0087231,"['Biography', 'Crime', 'Drama']","['UK', 'USA', 'Mexico']" tt0087262,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0087277,"['Drama', 'Music', 'Romance']",['USA'] tt0087298,"['Horror', 'Thriller']",['USA'] tt0087332,"['Action', 'Comedy', 'Fantasy']",['USA'] tt0087363,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0087365,"['Adventure', 'Drama']","['UK', 'USA']" tt0087469,"['Action', 'Adventure']",['USA'] tt0087538,"['Action', 'Drama', 'Family']",['USA'] tt0087597,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0087727,"['Action', 'Adventure', 'Drama']",['USA'] tt0087781,"['Drama', 'Sport']",['USA'] tt0087800,['Horror'],['USA'] tt0087803,"['Drama', 'Sci-Fi']",['UK'] tt0087928,['Comedy'],['USA'] tt0087985,"['Action', 'Drama']",['USA'] tt0087995,"['Action', 'Comedy', 'Crime']",['USA'] tt0088128,"['Comedy', 'Romance']",['USA'] tt0088170,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0088172,"['Romance', 'Sci-Fi']",['USA'] tt0088206,"['Action', 'Adventure', 'Fantasy']","['UK', 'USA']" tt0088286,"['Comedy', 'Music']","['UK', 'USA']" tt0088323,"['Adventure', 'Drama', 'Family']",['West Germany'] tt0088680,"['Comedy', 'Crime', 'Drama']",['USA'] tt0088707,"['Drama', 'Sport']",['USA'] tt0088763,"['Adventure', 'Comedy', 'Sci-Fi']",['USA'] tt0088846,"['Drama', 'Sci-Fi']","['UK', 'USA']" tt0088847,"['Comedy', 'Drama']",['USA'] tt0088850,['Comedy'],['USA'] tt0088915,"['Drama', 'Music', 'Musical']",['USA'] tt0088930,"['Comedy', 'Crime', 'Mystery']",['USA'] tt0088939,['Drama'],['USA'] tt0088944,"['Action', 'Adventure', 'Thriller']",['USA'] tt0088960,"['Comedy', 'Romance', 'Sci-Fi']",['USA'] tt0089017,"['Comedy', 'Drama']",['USA'] tt0089118,"['Action', 'Thriller']",['USA'] tt0089155,"['Comedy', 'Crime', 'Mystery']",['USA'] tt0089175,"['Horror', 'Thriller']",['USA'] tt0089200,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0089218,"['Adventure', 'Comedy', 'Family']",['USA'] tt0089348,"['Action', 'Thriller']",['USA'] tt0089370,"['Action', 'Adventure', 'Comedy']",['USA'] tt0089457,"['Adventure', 'Comedy', 'Drama']","['USA', 'Italy']" tt0089469,"['Adventure', 'Fantasy', 'Romance']",['USA'] tt0089489,"['Action', 'Horror', 'Mystery']","['UK', 'USA']" tt0089504,['Comedy'],['USA'] tt0089530,"['Action', 'Adventure', 'Sci-Fi']",['Australia'] tt0089560,"['Biography', 'Drama']",['USA'] tt0089572,"['Crime', 'Thriller']",['USA'] tt0089730,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0089755,"['Biography', 'Drama', 'Romance']","['USA', 'UK']" tt0089791,"['Adventure', 'Comedy', 'Family']",['USA'] tt0089822,['Comedy'],['USA'] tt0089853,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0089886,"['Comedy', 'Romance', 'Sci-Fi']",['USA'] tt0089901,"['Action', 'Adventure', 'Comedy']","['USA', 'Mexico']" tt0089907,"['Comedy', 'Horror', 'Sci-Fi']",['USA'] tt0089927,"['Drama', 'Sport']",['USA'] tt0089945,"['Comedy', 'Western']","['USA', 'Spain']" tt0090022,"['Action', 'Crime', 'Drama']",['USA'] tt0090056,"['Adventure', 'Comedy']",['USA'] tt0090060,"['Drama', 'Romance']",['USA'] tt0090142,"['Comedy', 'Fantasy']",['USA'] tt0090264,"['Action', 'Adventure', 'Thriller']",['UK'] tt0090305,"['Comedy', 'Romance', 'Sci-Fi']",['USA'] tt0090329,"['Crime', 'Drama', 'Romance']",['USA'] tt0090357,"['Adventure', 'Fantasy', 'Mystery']",['USA'] tt0090555,"['Action', 'Adventure', 'Comedy']",['Australia'] tt0090633,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0090685,"['Comedy', 'Romance', 'Sport']",['USA'] tt0090713,"['Comedy', 'Drama', 'Sport']",['USA'] tt0090728,"['Action', 'Adventure', 'Comedy']",['USA'] tt0090756,"['Drama', 'Mystery', 'Thriller']",['USA'] tt0090830,"['Drama', 'Romance']",['USA'] tt0090837,"['Comedy', 'Horror', 'Sci-Fi']",['USA'] tt0090856,['Comedy'],['USA'] tt0090859,"['Action', 'Crime', 'Thriller']","['USA', 'Israel']" tt0090927,"['Action', 'Adventure', 'Drama']","['USA', 'Israel']" tt0091042,['Comedy'],['USA'] tt0091055,"['Action', 'Adventure', 'Comedy']",['USA'] tt0091080,"['Horror', 'Thriller']",['USA'] tt0091129,"['Action', 'Adventure', 'Comedy']",['USA'] tt0091159,"['Comedy', 'Drama']",['USA'] tt0091167,"['Comedy', 'Drama']",['USA'] tt0091188,"['Comedy', 'Drama']",['USA'] tt0091217,"['Drama', 'Sport']","['UK', 'USA']" tt0091225,"['Action', 'Adventure', 'Comedy']",['USA'] tt0091244,"['Drama', 'Fantasy', 'Romance']","['France', 'Italy']" tt0091306,"['Comedy', 'Romance', 'Thriller']",['USA'] tt0091326,"['Action', 'Family', 'Romance']",['USA'] tt0091431,"['Action', 'Adventure', 'Comedy']","['Hong Kong', 'Yugoslavia']" tt0091530,"['Adventure', 'Drama', 'History']","['UK', 'France']" tt0091541,['Comedy'],['USA'] tt0091699,"['Drama', 'Music']","['Netherlands', 'Italy', 'USA']" tt0091763,"['Drama', 'War']","['USA', 'UK']" tt0091777,['Comedy'],"['Canada', 'USA']" tt0091778,['Horror'],['USA'] tt0091790,"['Comedy', 'Drama', 'Romance']",['USA'] tt0091875,"['Action', 'Comedy', 'Crime']",['USA'] tt0091934,"['Adventure', 'Comedy', 'Crime']",['UK'] tt0091949,"['Comedy', 'Family', 'Sci-Fi']",['USA'] tt0091983,"['Comedy', 'Crime', 'Romance']",['USA'] tt0092003,"['Action', 'Drama', 'Western']",['USA'] tt0092005,"['Adventure', 'Drama']",['USA'] tt0092007,"['Adventure', 'Comedy', 'Sci-Fi']",['USA'] tt0092076,"['Comedy', 'Horror']",['USA'] tt0092086,"['Comedy', 'Western']",['USA'] tt0092099,"['Action', 'Drama']",['USA'] tt0092115,"['Comedy', 'Fantasy', 'Horror']","['USA', 'Italy']" tt0092493,"['Action', 'Adventure', 'Comedy']",['Australia'] tt0092563,"['Horror', 'Mystery', 'Thriller']","['UK', 'Canada', 'USA']" tt0092605,"['Comedy', 'Drama', 'Romance']",['USA'] tt0092644,"['Action', 'Comedy', 'Crime']",['USA'] tt0092654,"['Comedy', 'Crime', 'Drama']",['USA'] tt0092675,"['Action', 'Biography', 'Drama']",['USA'] tt0092699,"['Comedy', 'Drama', 'Romance']",['USA'] tt0092710,"['Comedy', 'Crime']","['Canada', 'USA']" tt0092890,"['Drama', 'Music', 'Romance']",['USA'] tt0092948,"['Documentary', 'Comedy']",['USA'] tt0093010,"['Drama', 'Thriller']",['USA'] tt0093075,"['Fantasy', 'Horror']",['Canada'] tt0093091,"['Comedy', 'Horror']",['USA'] tt0093137,"['Action', 'Drama', 'Thriller']",['USA'] tt0093148,"['Comedy', 'Family', 'Fantasy']",['USA'] tt0093164,"['Action', 'Crime', 'Drama']",['USA'] tt0093200,['Comedy'],['USA'] tt0093223,"['Crime', 'Thriller']",['USA'] tt0093300,"['Adventure', 'Horror', 'Thriller']",['USA'] tt0093409,"['Action', 'Crime', 'Thriller']",['USA'] tt0093428,"['Action', 'Adventure', 'Thriller']",['UK'] tt0093437,"['Comedy', 'Horror']",['USA'] tt0093493,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0093565,"['Comedy', 'Drama', 'Romance']",['USA'] tt0093605,"['Action', 'Crime', 'Drama']",['USA'] tt0093640,"['Action', 'Crime', 'Drama']",['USA'] tt0093660,"['Drama', 'Thriller']",['USA'] tt0093693,"['Comedy', 'Romance']",['USA'] tt0093713,['Drama'],"['Denmark', 'Sweden']" tt0093748,"['Comedy', 'Drama']",['USA'] tt0093756,"['Comedy', 'Crime']",['USA'] tt0093773,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Mexico']" tt0093779,"['Adventure', 'Family', 'Fantasy']",['USA'] tt0093822,"['Comedy', 'Crime']",['USA'] tt0093870,"['Action', 'Crime', 'Sci-Fi']",['USA'] tt0093886,"['Comedy', 'Romance']",['USA'] tt0093999,"['Family', 'Fantasy', 'Musical']",['USA'] tt0094006,"['Drama', 'Romance']",['USA'] tt0094012,"['Adventure', 'Comedy', 'Sci-Fi']",['USA'] tt0094027,"['Biography', 'Drama']",['USA'] tt0094072,"['Comedy', 'Romance']",['USA'] tt0094074,"['Action', 'Adventure', 'Family']","['UK', 'USA']" tt0094118,"['Comedy', 'Fantasy']",['USA'] tt0094138,['Comedy'],['USA'] tt0094142,"['Comedy', 'Crime', 'Thriller']",['USA'] tt0094226,"['Crime', 'Drama', 'Thriller']",['USA'] tt0094291,"['Crime', 'Drama']",['USA'] tt0094321,"['Comedy', 'Music', 'Romance']",['USA'] tt0094608,"['Crime', 'Drama']","['Canada', 'USA']" tt0094678,"['Comedy', 'Romance']",['USA'] tt0094721,"['Comedy', 'Fantasy']",['USA'] tt0094737,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0094744,"['Adventure', 'Comedy', 'Romance']",['USA'] tt0094783,"['Drama', 'Romance']",['USA'] tt0094812,"['Comedy', 'Romance', 'Sport']",['USA'] tt0094862,"['Horror', 'Thriller']",['USA'] tt0094894,"['Action', 'Crime', 'Drama']",['USA'] tt0094898,"['Comedy', 'Romance']",['USA'] tt0094910,['Comedy'],['USA'] tt0094921,"['Comedy', 'Romance']",['USA'] tt0095016,"['Action', 'Thriller']",['USA'] tt0095031,"['Comedy', 'Crime']",['USA'] tt0095082,"['Drama', 'History', 'Sport']",['USA'] tt0095159,"['Comedy', 'Crime']","['UK', 'USA']" tt0095179,"['Horror', 'Thriller']",['USA'] tt0095188,"['Comedy', 'Drama']",['USA'] tt0095253,['Comedy'],['USA'] tt0095348,"['Action', 'Comedy', 'Crime']",['USA'] tt0095444,"['Comedy', 'Horror', 'Sci-Fi']",['USA'] tt0095489,"['Animation', 'Adventure', 'Drama']","['USA', 'Ireland']" tt0095497,['Drama'],"['Canada', 'USA']" tt0095560,"['Adventure', 'Family', 'Fantasy']",['USA'] tt0095593,"['Comedy', 'Crime', 'Romance']",['USA'] tt0095631,"['Action', 'Comedy', 'Crime']",['USA'] tt0095647,"['Crime', 'Drama', 'History']",['USA'] tt0095684,"['Comedy', 'Horror', 'Romance']",['USA'] tt0095690,"['Comedy', 'Drama', 'Romance']",['USA'] tt0095705,"['Comedy', 'Crime']",['USA'] tt0095765,['Drama'],"['Italy', 'France']" tt0095897,"['Action', 'Crime', 'Mystery']",['USA'] tt0095925,"['Fantasy', 'Horror']",['USA'] tt0095953,['Drama'],['USA'] tt0095990,"['Comedy', 'Horror', 'Sci-Fi']",['USA'] tt0096061,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0096094,"['Comedy', 'Drama', 'Romance']",['USA'] tt0096101,"['Comedy', 'Drama', 'Family']",['USA'] tt0096118,"['Comedy', 'Horror']",['USA'] tt0096256,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0096316,"['Biography', 'Drama']",['USA'] tt0096320,"['Comedy', 'Crime']",['USA'] tt0096463,"['Comedy', 'Drama', 'Romance']",['USA'] tt0096486,"['Comedy', 'History']",['Australia'] tt0096487,"['Action', 'Western']",['USA'] tt0096734,"['Comedy', 'Mystery', 'Thriller']",['USA'] tt0096764,"['Adventure', 'Comedy', 'Fantasy']","['UK', 'West Germany']" tt0096769,"['Horror', 'Thriller']",['USA'] tt0096787,"['Animation', 'Comedy', 'Drama']","['Ireland', 'UK', 'USA']" tt0096874,"['Adventure', 'Comedy', 'Sci-Fi']",['USA'] tt0096895,"['Action', 'Adventure']","['USA', 'UK']" tt0096933,"['Action', 'Crime', 'Thriller']",['USA'] tt0096969,"['Biography', 'Drama', 'War']",['USA'] tt0097138,"['Action', 'Sci-Fi', 'Thriller']",['USA'] tt0097216,"['Comedy', 'Drama']",['USA'] tt0097236,"['Comedy', 'Drama', 'Romance']",['USA'] tt0097239,['Drama'],['USA'] tt0097240,"['Crime', 'Drama']",['USA'] tt0097257,"['Comedy', 'Musical', 'Romance']","['UK', 'France', 'USA']" tt0097322,"['Comedy', 'Drama', 'Music']",['USA'] tt0097336,"['Biography', 'Drama', 'History']","['USA', 'Mexico']" tt0097351,"['Drama', 'Family', 'Fantasy']",['USA'] tt0097366,"['Comedy', 'Crime', 'Mystery']",['USA'] tt0097388,"['Adventure', 'Horror', 'Thriller']","['USA', 'Canada']" tt0097428,"['Action', 'Comedy', 'Fantasy']",['USA'] tt0097441,"['Biography', 'Drama', 'History']",['USA'] tt0097481,"['Comedy', 'Crime', 'Drama']",['USA'] tt0097499,"['Action', 'Biography', 'Drama']",['UK'] tt0097500,"['Comedy', 'Crime', 'Mystery']",['USA'] tt0097576,"['Action', 'Adventure']",['USA'] tt0097613,"['Action', 'Crime', 'Mystery']",['USA'] tt0097647,"['Action', 'Drama', 'Family']",['USA'] tt0097659,"['Action', 'Sport', 'Thriller']",['USA'] tt0097733,"['Action', 'Crime', 'Thriller']",['USA'] tt0097737,"['Adventure', 'Horror', 'Mystery']","['USA', 'Italy']" tt0097742,"['Action', 'Adventure', 'Thriller']","['UK', 'Mexico', 'USA']" tt0097757,"['Animation', 'Family', 'Fantasy']",['USA'] tt0097758,"['Adventure', 'Comedy', 'Family']",['USA'] tt0097778,['Comedy'],['USA'] tt0097815,"['Comedy', 'Sport']",['USA'] tt0097937,"['Biography', 'Drama']","['Ireland', 'UK']" tt0097958,['Comedy'],['USA'] tt0098042,"['Comedy', 'Drama', 'Thriller']",['USA'] tt0098067,"['Comedy', 'Drama']",['USA'] tt0098084,"['Horror', 'Thriller']",['USA'] tt0098090,"['Drama', 'Horror', 'Music']","['USA', 'UK', 'Hungary']" tt0098141,"['Action', 'Crime', 'Drama']","['Australia', 'USA']" tt0098206,"['Action', 'Thriller']",['USA'] tt0098258,"['Comedy', 'Drama', 'Romance']",['USA'] tt0098309,['Comedy'],['USA'] tt0098382,"['Action', 'Adventure', 'Fantasy']",['USA'] tt0098384,"['Comedy', 'Drama', 'Romance']",['USA'] tt0098453,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0098546,"['Comedy', 'Drama']",['USA'] tt0098554,['Comedy'],['USA'] tt0098577,"['Comedy', 'Horror']",['USA'] tt0098621,"['Comedy', 'Romance']",['USA'] tt0098625,"['Comedy', 'Crime']",['USA'] tt0098627,"['Adventure', 'Comedy', 'Crime']",['USA'] tt0098635,"['Comedy', 'Drama', 'Romance']",['USA'] tt0098994,"['Crime', 'Drama', 'Mystery']",['USA'] tt0099044,"['Action', 'Comedy', 'Crime']",['USA'] tt0099077,"['Biography', 'Drama']",['USA'] tt0099088,"['Adventure', 'Comedy', 'Sci-Fi']",['USA'] tt0099141,"['Action', 'Comedy']",['USA'] tt0099180,"['Comedy', 'Horror', 'Sci-Fi']",['USA'] tt0099204,"['Comedy', 'Crime']",['USA'] tt0099253,"['Horror', 'Thriller']",['USA'] tt0099329,"['Comedy', 'Musical']",['USA'] tt0099348,"['Adventure', 'Drama', 'Western']","['USA', 'UK']" tt0099365,"['Action', 'Sci-Fi', 'Thriller']",['USA'] tt0099371,"['Action', 'Drama', 'Sport']",['USA'] tt0099399,"['Action', 'Adventure', 'Crime']",['USA'] tt0099423,"['Action', 'Thriller']",['USA'] tt0099487,"['Drama', 'Fantasy', 'Romance']",['USA'] tt0099558,"['Action', 'Adventure', 'Comedy']",['Hong Kong'] tt0099582,"['Drama', 'Horror', 'Sci-Fi']",['USA'] tt0099587,"['Action', 'Drama', 'Thriller']",['USA'] tt0099653,"['Drama', 'Fantasy', 'Romance']",['USA'] tt0099674,"['Crime', 'Drama']",['USA'] tt0099703,"['Crime', 'Drama', 'Thriller']","['USA', 'Canada']" tt0099726,['Drama'],"['USA', 'UK', 'France']" tt0099785,"['Comedy', 'Family']",['USA'] tt0099797,"['Crime', 'Drama', 'Romance']",['USA'] tt0099810,"['Action', 'Adventure', 'Thriller']",['USA'] tt0099850,"['Crime', 'Drama', 'Thriller']","['USA', 'Canada']" tt0099938,"['Comedy', 'Crime']",['USA'] tt0100054,"['Adventure', 'Drama', 'Thriller']",['USA'] tt0100107,"['Crime', 'Horror', 'Action']",['USA'] tt0100114,"['Action', 'Adventure', 'Crime']",['USA'] tt0100133,"['Action', 'Drama', 'War']","['UK', 'Japan', 'USA']" tt0100135,"['Action', 'Comedy', 'Crime']",['USA'] tt0100157,"['Drama', 'Thriller']",['USA'] tt0100196,"['Adventure', 'Drama', 'History']",['USA'] tt0100232,"['Action', 'Adventure', 'Thriller']",['USA'] tt0100258,['Horror'],['USA'] tt0100301,['Comedy'],['USA'] tt0100403,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0100486,"['Biography', 'Drama', 'Mystery']","['USA', 'Japan', 'UK']" tt0100502,"['Action', 'Crime', 'Sci-Fi']",['USA'] tt0100507,"['Drama', 'Sport']",['USA'] tt0100519,"['Comedy', 'Drama']","['UK', 'USA']" tt0100530,"['Drama', 'Romance', 'Thriller']",['USA'] tt0100680,"['Drama', 'Romance']","['USA', 'Canada']" tt0100740,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0100814,"['Comedy', 'Horror']",['USA'] tt0100828,"['Crime', 'Drama', 'Mystery']",['USA'] tt0100935,"['Comedy', 'Crime', 'Drama']",['USA'] tt0100944,"['Adventure', 'Comedy', 'Family']","['UK', 'USA']" tt0101272,"['Comedy', 'Fantasy']",['USA'] tt0101301,"['Comedy', 'Family', 'Romance']",['USA'] tt0101318,"['Drama', 'Romance']",['France'] tt0101329,"['Animation', 'Adventure', 'Family']",['USA'] tt0101371,"['Drama', 'Comedy']",['USA'] tt0101393,"['Crime', 'Drama', 'Mystery']",['USA'] tt0101410,"['Comedy', 'Drama', 'Thriller']","['USA', 'UK']" tt0101452,"['Adventure', 'Comedy', 'Fantasy']",['USA'] tt0101507,"['Crime', 'Drama']",['USA'] tt0101523,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0101540,"['Crime', 'Thriller']",['USA'] tt0101587,['Comedy'],['USA'] tt0101615,"['Comedy', 'Drama', 'Music']",['USA'] tt0101625,"['Comedy', 'Crime', 'Mystery']","['Germany', 'USA']" tt0101635,"['Comedy', 'Drama', 'Family']",['USA'] tt0101698,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0101701,"['Comedy', 'Fantasy']",['USA'] tt0101745,"['Comedy', 'Drama', 'Romance']",['USA'] tt0101764,"['Action', 'Crime']",['USA'] tt0101846,"['Action', 'Thriller']",['USA'] tt0101889,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0101912,"['Comedy', 'Drama', 'Romance']",['USA'] tt0101917,"['Fantasy', 'Horror']",['USA'] tt0101921,['Drama'],['USA'] tt0101984,['Drama'],['USA'] tt0102005,"['Action', 'Crime', 'Drama']",['USA'] tt0102011,"['Comedy', 'Drama', 'Romance']",['USA'] tt0102057,"['Adventure', 'Comedy', 'Family']",['USA'] tt0102059,"['Action', 'Comedy']",['USA'] tt0102103,"['Biography', 'Comedy', 'Music']","['UK', 'France']" tt0102138,"['Drama', 'History', 'Thriller']","['France', 'USA']" tt0102175,"['Drama', 'Romance']",['USA'] tt0102266,"['Action', 'Comedy', 'Crime']",['USA'] tt0102303,['Comedy'],['USA'] tt0102316,['Drama'],['USA'] tt0102370,"['Documentary', 'Music']",['USA'] tt0102388,"['Drama', 'Romance']",['USA'] tt0102395,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0102492,"['Comedy', 'Drama', 'Family']",['USA'] tt0102510,"['Comedy', 'Crime']",['USA'] tt0102517,"['Comedy', 'Sport']",['USA'] tt0102526,"['Action', 'Crime', 'Drama']",['USA'] tt0102555,"['Drama', 'Thriller']",['USA'] tt0102744,"['Action', 'Adventure', 'Drama']","['Australia', 'USA']" tt0102749,"['Comedy', 'Crime']","['UK', 'USA']" tt0102753,['Drama'],['USA'] tt0102768,"['Drama', 'Romance']",['USA'] tt0102798,"['Action', 'Adventure', 'Drama']","['USA', 'UK']" tt0102915,"['Action', 'Comedy', 'Crime']",['USA'] tt0102926,"['Crime', 'Drama', 'Thriller']",['USA'] tt0102951,"['Comedy', 'Romance']",['USA'] tt0102960,"['Drama', 'Horror', 'Thriller']",['USA'] tt0102975,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0103074,"['Adventure', 'Crime', 'Drama']","['USA', 'UK', 'France']" tt0103596,"['Action', 'Comedy', 'Family']",['USA'] tt0103644,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0103759,"['Crime', 'Drama', 'Thriller']",['USA'] tt0103776,"['Action', 'Crime', 'Fantasy']","['USA', 'UK']" tt0103786,"['Comedy', 'Drama', 'Family']",['USA'] tt0103850,"['Comedy', 'Drama']","['USA', 'UK']" tt0103859,"['Comedy', 'Drama', 'Romance']",['USA'] tt0103873,"['Comedy', 'Horror']",['New Zealand'] tt0103874,['Horror'],['USA'] tt0103919,"['Horror', 'Thriller']","['USA', 'UK']" tt0103956,"['Horror', 'Thriller']","['UK', 'USA']" tt0103994,"['Drama', 'Romance']",['Mexico'] tt0104009,"['Animation', 'Comedy', 'Fantasy']",['USA'] tt0104036,"['Crime', 'Drama', 'Romance']","['UK', 'Japan', 'USA']" tt0104040,"['Comedy', 'Drama', 'Romance']",['USA'] tt0104070,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0104107,"['Drama', 'Sport']",['USA'] tt0104231,"['Adventure', 'Drama', 'Romance']",['USA'] tt0104257,"['Drama', 'Thriller']",['USA'] tt0104265,"['Drama', 'Thriller']",['USA'] tt0104348,"['Crime', 'Drama', 'Mystery']",['USA'] tt0104377,"['Crime', 'Drama', 'Romance']",['USA'] tt0104409,['Horror'],['USA'] tt0104427,"['Biography', 'Crime', 'Drama']",['USA'] tt0104431,"['Adventure', 'Comedy', 'Crime']",['USA'] tt0104438,"['Comedy', 'Romance', 'Thriller']",['USA'] tt0104558,"['Action', 'Comedy', 'Crime']",['Hong Kong'] tt0104567,"['Comedy', 'Drama', 'Music']","['Switzerland', 'France', 'USA']" tt0104573,"['Action', 'Crime', 'Drama']","['USA', 'UK']" tt0104691,"['Action', 'Adventure', 'Drama']",['USA'] tt0104694,"['Comedy', 'Drama', 'Family']",['USA'] tt0104695,"['Comedy', 'Drama', 'Romance']",['USA'] tt0104714,"['Action', 'Crime', 'Thriller']",['USA'] tt0104765,['Drama'],['USA'] tt0104808,"['Action', 'Horror']",['USA'] tt0104815,"['Action', 'Crime', 'Thriller']","['Mexico', 'USA']" tt0104952,"['Comedy', 'Crime']",['USA'] tt0105046,"['Drama', 'Western']",['USA'] tt0105112,"['Action', 'Thriller']",['USA'] tt0105121,"['Comedy', 'Horror', 'Mystery']",['USA'] tt0105128,"['Fantasy', 'Horror']",['USA'] tt0105236,"['Crime', 'Drama', 'Thriller']",['USA'] tt0105265,['Drama'],['USA'] tt0105323,['Drama'],['USA'] tt0105327,['Drama'],['USA'] tt0105414,"['Drama', 'Thriller']",['USA'] tt0105435,"['Comedy', 'Crime', 'Drama']",['USA'] tt0105488,"['Comedy', 'Drama', 'Music']","['Australia', 'UK']" tt0105690,"['Action', 'Thriller']","['France', 'USA']" tt0105695,"['Drama', 'Western']",['USA'] tt0105698,"['Action', 'Sci-Fi']",['USA'] tt0105793,"['Comedy', 'Music']",['USA'] tt0105812,"['Comedy', 'Drama', 'Sport']",['USA'] tt0106220,"['Comedy', 'Fantasy']",['USA'] tt0106308,"['Comedy', 'Horror']",['USA'] tt0106332,"['Drama', 'Music', 'Romance']","['China', 'Hong Kong']" tt0106364,"['Animation', 'Action', 'Adventure']",['USA'] tt0106379,"['Comedy', 'Drama']","['UK', 'Japan']" tt0106387,"['Comedy', 'Drama', 'Romance']",['USA'] tt0106452,"['Horror', 'Sci-Fi']",['USA'] tt0106455,"['Action', 'Crime', 'Drama']","['USA', 'France']" tt0106598,"['Comedy', 'Sci-Fi']",['USA'] tt0106664,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0106673,"['Comedy', 'Romance']",['USA'] tt0106677,['Comedy'],['USA'] tt0106701,"['Comedy', 'Family']",['USA'] tt0106770,"['Action', 'Biography', 'Drama']",['USA'] tt0106856,"['Crime', 'Drama', 'Thriller']","['France', 'USA']" tt0106873,"['Comedy', 'Crime', 'Thriller']",['USA'] tt0106912,"['Biography', 'Drama', 'Fantasy']",['USA'] tt0106918,"['Drama', 'Mystery', 'Thriller']",['USA'] tt0107034,"['Drama', 'Thriller']",['USA'] tt0107048,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0107050,"['Comedy', 'Drama', 'Romance']",['USA'] tt0107076,"['Action', 'Adventure', 'Drama']",['USA'] tt0107144,"['Action', 'Comedy']",['USA'] tt0107178,"['Crime', 'Drama', 'History']",['USA'] tt0107206,"['Action', 'Crime', 'Drama']",['USA'] tt0107211,"['Drama', 'Romance']",['USA'] tt0107290,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0107302,"['Crime', 'Drama', 'Thriller']",['USA'] tt0107362,"['Action', 'Adventure', 'Comedy']",['USA'] tt0107387,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0107426,['Drama'],"['France', 'Liechtenstein', 'UK']" tt0107492,['Comedy'],['USA'] tt0107614,"['Comedy', 'Drama', 'Family']",['USA'] tt0107616,"['Comedy', 'Drama', 'Romance']","['UK', 'USA']" tt0107818,['Drama'],['USA'] tt0107822,"['Drama', 'Music', 'Romance']","['New Zealand', 'Australia', 'France']" tt0107863,['Western'],"['UK', 'USA', 'Netherlands']" tt0107943,"['Drama', 'Romance']","['USA', 'UK']" tt0107977,"['Adventure', 'Comedy', 'Musical']","['France', 'USA']" tt0107983,"['Crime', 'Drama', 'Romance']","['UK', 'USA']" tt0108002,"['Biography', 'Drama', 'Sport']",['USA'] tt0108026,['Drama'],['USA'] tt0108052,"['Biography', 'Drama', 'History']",['USA'] tt0108065,"['Biography', 'Drama']",['USA'] tt0108071,"['Drama', 'Family', 'Fantasy']","['UK', 'USA']" tt0108148,"['Action', 'Crime', 'Drama']",['Hong Kong'] tt0108149,"['Comedy', 'Drama', 'Mystery']",['USA'] tt0108160,"['Comedy', 'Drama', 'Romance']",['USA'] tt0108162,"['Drama', 'Thriller']",['USA'] tt0108174,"['Comedy', 'Romance']",['USA'] tt0108187,"['Comedy', 'Crime']","['Italy', 'USA']" tt0108525,"['Comedy', 'Music']",['USA'] tt0108550,['Drama'],['USA'] tt0109045,"['Comedy', 'Music']",['Australia'] tt0109120,"['Adventure', 'Drama', 'Family']",['USA'] tt0109254,"['Action', 'Comedy', 'Crime']",['USA'] tt0109279,"['Adventure', 'Drama', 'Family']","['USA', 'UK']" tt0109288,"['Comedy', 'Action', 'Crime']",['USA'] tt0109305,"['Drama', 'Sport']",['USA'] tt0109340,['Drama'],['UK'] tt0109370,['Comedy'],"['USA', 'Canada']" tt0109444,"['Action', 'Crime', 'Drama']","['USA', 'Mexico']" tt0109445,['Comedy'],['USA'] tt0109447,['Comedy'],['USA'] tt0109506,"['Action', 'Drama', 'Fantasy']",['USA'] tt0109676,"['Action', 'Adventure', 'Thriller']",['USA'] tt0109686,['Comedy'],['USA'] tt0109830,"['Drama', 'Romance']",['USA'] tt0109831,"['Comedy', 'Drama', 'Romance']",['UK'] tt0109835,"['Biography', 'Western']",['USA'] tt0109913,"['Comedy', 'Drama', 'Romance']",['USA'] tt0110005,"['Biography', 'Crime', 'Drama']","['New Zealand', 'Germany']" tt0110027,"['Action', 'Fantasy', 'Romance']","['UK', 'France', 'Canada']" tt0110074,"['Comedy', 'Drama', 'Fantasy']","['UK', 'Germany', 'USA']" tt0110099,"['Comedy', 'Romance']",['USA'] tt0110146,"['Drama', 'Romance']",['USA'] tt0110148,"['Drama', 'Horror']",['USA'] tt0110305,"['Family', 'Adventure']",['USA'] tt0110322,"['Drama', 'Romance', 'War']",['USA'] tt0110329,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0110366,"['Comedy', 'Family', 'Romance']",['USA'] tt0110367,"['Drama', 'Family', 'Romance']","['USA', 'Canada']" tt0110413,"['Action', 'Crime', 'Drama']",['France'] tt0110475,"['Action', 'Comedy', 'Crime']",['USA'] tt0110516,"['Comedy', 'Romance']",['USA'] tt0110588,"['Biography', 'Drama']","['USA', 'Canada']" tt0110598,"['Comedy', 'Drama']","['Australia', 'France']" tt0110622,"['Comedy', 'Crime']",['USA'] tt0110638,['Drama'],['USA'] tt0110657,"['Action', 'Drama', 'Family']",['USA'] tt0110877,"['Biography', 'Comedy', 'Drama']","['Italy', 'France', 'Belgium']" tt0110889,"['Drama', 'Romance']",['UK'] tt0110907,"['Comedy', 'Drama']",['USA'] tt0110912,"['Crime', 'Drama']",['USA'] tt0110950,"['Comedy', 'Drama', 'Romance']",['USA'] tt0110989,"['Comedy', 'Family']",['USA'] tt0111143,"['Action', 'Adventure', 'Crime']",['USA'] tt0111161,['Drama'],['USA'] tt0111255,"['Action', 'Drama', 'Thriller']",['USA'] tt0111257,"['Action', 'Adventure', 'Thriller']",['USA'] tt0111280,"['Action', 'Adventure', 'Mystery']",['USA'] tt0111282,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'France']" tt0111301,"['Action', 'Adventure', 'Comedy']","['Japan', 'USA']" tt0111512,"['Action', 'Comedy']",['Hong Kong'] tt0111653,"['Adventure', 'Comedy', 'Western']",['USA'] tt0111686,"['Fantasy', 'Horror', 'Mystery']",['USA'] tt0112346,"['Comedy', 'Drama', 'Romance']",['USA'] tt0112384,"['Adventure', 'Drama', 'History']",['USA'] tt0112401,"['Action', 'Crime', 'Thriller']","['France', 'USA']" tt0112431,"['Comedy', 'Drama', 'Family']","['Australia', 'USA']" tt0112442,"['Action', 'Comedy', 'Crime']",['USA'] tt0112462,"['Action', 'Adventure', 'Fantasy']","['USA', 'UK']" tt0112508,['Comedy'],['USA'] tt0112572,['Comedy'],['USA'] tt0112573,"['Biography', 'Drama', 'History']",['USA'] tt0112641,"['Crime', 'Drama']","['France', 'USA']" tt0112642,"['Comedy', 'Family', 'Fantasy']",['USA'] tt0112697,"['Comedy', 'Romance']",['USA'] tt0112715,"['Action', 'Adventure', 'Mystery']",['USA'] tt0112722,"['Drama', 'Mystery', 'Thriller']",['USA'] tt0112744,"['Drama', 'Thriller']",['USA'] tt0112817,"['Drama', 'Fantasy', 'Western']","['USA', 'Germany', 'Japan']" tt0112818,"['Crime', 'Drama']","['UK', 'USA']" tt0112851,"['Action', 'Thriller']","['USA', 'Mexico']" tt0112864,"['Action', 'Adventure', 'Thriller']",['USA'] tt0112887,"['Comedy', 'Crime', 'Drama']","['USA', 'France']" tt0113026,"['Musical', 'Romance']",['USA'] tt0113074,"['Action', 'Fantasy', 'Sci-Fi']",['USA'] tt0113101,['Comedy'],['USA'] tt0113158,"['Drama', 'Music']","['France', 'USA']" tt0113161,"['Comedy', 'Crime', 'Thriller']",['USA'] tt0113189,"['Action', 'Adventure', 'Thriller']","['UK', 'USA']" tt0113228,"['Comedy', 'Romance']",['USA'] tt0113243,"['Comedy', 'Crime', 'Drama']",['USA'] tt0113277,"['Crime', 'Drama', 'Thriller']",['USA'] tt0113321,"['Comedy', 'Drama', 'Romance']",['USA'] tt0113326,"['Action', 'Comedy', 'Crime']",['Hong Kong'] tt0113360,"['Action', 'Drama', 'Thriller']",['USA'] tt0113451,"['Crime', 'Drama', 'Thriller']",['USA'] tt0113464,"['Comedy', 'Drama']",['USA'] tt0113497,"['Adventure', 'Comedy', 'Family']",['USA'] tt0113537,"['Comedy', 'Drama', 'Romance']",['USA'] tt0113636,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0113670,"['Drama', 'Family', 'Fantasy']",['USA'] tt0113691,['Drama'],['USA'] tt0113749,"['Comedy', 'Romance']",['USA'] tt0113845,"['Action', 'Comedy', 'Crime']",['USA'] tt0113855,"['Action', 'Adventure', 'Fantasy']",['USA'] tt0113870,"['Drama', 'Thriller']","['USA', 'France']" tt0113957,"['Action', 'Crime', 'Drama']",['USA'] tt0113972,"['Action', 'Crime', 'Drama']",['USA'] tt0114069,"['Action', 'Drama', 'Thriller']",['USA'] tt0114134,['Drama'],"['Netherlands', 'UK', 'France', 'Luxembourg', 'Austria']" tt0114194,"['Action', 'Crime', 'Drama']",['USA'] tt0114287,"['Adventure', 'Biography', 'Drama']",['UK'] tt0114369,"['Crime', 'Drama', 'Mystery']",['USA'] tt0114388,"['Drama', 'Romance']","['USA', 'UK']" tt0114436,['Drama'],"['France', 'USA']" tt0114478,"['Comedy', 'Drama']","['Germany', 'Japan', 'USA']" tt0114508,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0114576,"['Action', 'Crime', 'Thriller']",['USA'] tt0114594,"['Comedy', 'Crime']",['USA'] tt0114608,"['Action', 'Fantasy', 'Horror']",['USA'] tt0114614,"['Action', 'Comedy', 'Sci-Fi']","['USA', 'UK']" tt0114694,"['Adventure', 'Comedy']",['USA'] tt0114746,"['Mystery', 'Sci-Fi', 'Thriller']",['USA'] tt0114805,['Documentary'],['USA'] tt0114814,"['Crime', 'Mystery', 'Thriller']","['USA', 'Germany']" tt0114852,"['Horror', 'Sci-Fi', 'Thriller']",['USA'] tt0114857,"['Action', 'Crime', 'Sci-Fi']",['USA'] tt0114885,"['Comedy', 'Drama', 'Romance']",['USA'] tt0114887,"['Drama', 'Romance']","['USA', 'Mexico']" tt0114898,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0114938,"['Action', 'Biography', 'Western']",['USA'] tt0115438,"['Comedy', 'Crime', 'Thriller']",['USA'] tt0115571,"['Sci-Fi', 'Thriller']","['USA', 'Mexico']" tt0115624,"['Action', 'Sci-Fi']",['USA'] tt0115632,"['Biography', 'Drama']",['USA'] tt0115639,"['Comedy', 'Drama', 'Romance']",['USA'] tt0115641,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0115678,"['Drama', 'Romance']",['USA'] tt0115685,['Comedy'],['USA'] tt0115697,['Comedy'],['USA'] tt0115734,"['Comedy', 'Crime', 'Drama']",['USA'] tt0115738,"['Comedy', 'Drama']","['Japan', 'USA']" tt0115759,"['Action', 'Adventure', 'Thriller']",['USA'] tt0115783,"['Action', 'Comedy', 'Crime']",['USA'] tt0115798,"['Comedy', 'Drama', 'Thriller']",['USA'] tt0115857,"['Action', 'Drama', 'Sci-Fi']",['USA'] tt0115906,"['Comedy', 'Drama']",['USA'] tt0115963,"['Drama', 'Fantasy', 'Horror']",['USA'] tt0115985,"['Action', 'Sci-Fi', 'Comedy']",['USA'] tt0115986,"['Action', 'Crime', 'Fantasy']",['USA'] tt0116126,"['Comedy', 'Crime']",['USA'] tt0116191,"['Comedy', 'Drama', 'Romance']","['UK', 'USA']" tt0116209,"['Drama', 'Romance', 'War']","['USA', 'UK']" tt0116225,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0116240,"['Comedy', 'Drama', 'Romance']",['USA'] tt0116242,"['Comedy', 'Musical', 'Romance']",['USA'] tt0116253,"['Action', 'Adventure', 'Thriller']",['USA'] tt0116282,"['Crime', 'Drama', 'Thriller']","['USA', 'UK']" tt0116313,['Comedy'],['USA'] tt0116324,['Comedy'],['USA'] tt0116365,"['Comedy', 'Fantasy', 'Horror']","['New Zealand', 'USA']" tt0116367,"['Action', 'Crime', 'Horror']","['USA', 'Mexico']" tt0116483,"['Comedy', 'Sport']",['USA'] tt0116493,"['Comedy', 'Drama', 'Family']",['USA'] tt0116514,"['Horror', 'Sci-Fi']",['USA'] tt0116529,['Drama'],['USA'] tt0116629,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0116695,"['Comedy', 'Drama', 'Romance']",['USA'] tt0116705,"['Comedy', 'Family']",['USA'] tt0116743,"['Crime', 'Drama', 'History']","['USA', 'India', 'UK', 'Japan', 'Germany']" tt0116778,"['Comedy', 'Sport']",['USA'] tt0116861,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0117008,"['Comedy', 'Family', 'Fantasy']",['USA'] tt0117060,"['Action', 'Adventure', 'Thriller']",['USA'] tt0117091,"['Comedy', 'Drama']",['USA'] tt0117107,"['Crime', 'Drama', 'Mystery']",['USA'] tt0117108,"['Comedy', 'Romance', 'Sci-Fi']",['USA'] tt0117128,"['Comedy', 'Sci-Fi']",['USA'] tt0117218,"['Comedy', 'Romance', 'Sci-Fi']",['USA'] tt0117283,"['Comedy', 'Romance']",['USA'] tt0117318,"['Biography', 'Drama']",['USA'] tt0117331,"['Action', 'Adventure', 'Comedy']","['Australia', 'USA']" tt0117381,"['Crime', 'Drama', 'Mystery']",['USA'] tt0117407,"['Crime', 'Thriller']",['Denmark'] tt0117509,"['Drama', 'Romance']","['USA', 'Mexico', 'Australia']" tt0117571,"['Horror', 'Mystery']",['USA'] tt0117628,"['Comedy', 'Drama', 'Romance']",['USA'] tt0117666,['Drama'],['USA'] tt0117731,"['Action', 'Adventure', 'Drama']",['USA'] tt0117774,"['Action', 'Crime', 'Drama']",['USA'] tt0117802,"['Comedy', 'Drama']",['USA'] tt0117887,"['Comedy', 'Drama', 'Music']",['USA'] tt0117894,"['Fantasy', 'Horror']",['USA'] tt0117951,['Drama'],['UK'] tt0117979,"['Comedy', 'Romance']",['USA'] tt0117998,"['Action', 'Adventure', 'Thriller']",['USA'] tt0118073,['Comedy'],['USA'] tt0118113,"['Comedy', 'Drama', 'Romance']","['UK', 'USA', 'Germany', 'Italy', 'France']" tt0118564,"['Drama', 'Mystery', 'Thriller']","['USA', 'Canada', 'Japan']" tt0118571,"['Action', 'Drama', 'Thriller']","['USA', 'Germany']" tt0118583,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0118607,"['Drama', 'History']",['USA'] tt0118615,"['Action', 'Adventure', 'Horror']",['USA'] tt0118617,"['Animation', 'Adventure', 'Drama']",['USA'] tt0118632,['Drama'],['USA'] tt0118643,"['Fantasy', 'Horror', 'Thriller']",['USA'] tt0118652,"['Comedy', 'Horror', 'Mystery']",['USA'] tt0118655,"['Adventure', 'Comedy']",['USA'] tt0118661,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0118688,"['Action', 'Sci-Fi']","['USA', 'UK']" tt0118689,"['Adventure', 'Comedy', 'Family']","['UK', 'USA']" tt0118708,"['Action', 'Comedy']",['USA'] tt0118715,"['Comedy', 'Crime', 'Sport']","['USA', 'UK']" tt0118750,"['Comedy', 'Romance']",['USA'] tt0118771,"['Crime', 'Drama', 'Mystery']",['USA'] tt0118798,"['Comedy', 'Drama', 'Romance']",['USA'] tt0118799,"['Comedy', 'Drama', 'Romance']",['Italy'] tt0118826,"['Comedy', 'Drama']",['Australia'] tt0118842,"['Comedy', 'Drama', 'Romance']",['USA'] tt0118849,"['Drama', 'Family', 'Sport']",['Iran'] tt0118887,"['Crime', 'Drama', 'Thriller']",['USA'] tt0118900,"['Action', 'Crime', 'Drama']",['USA'] tt0118928,"['Action', 'Adventure', 'Thriller']",['USA'] tt0118949,"['Adventure', 'Biography', 'Drama']","['USA', 'Czech Republic']" tt0118971,"['Drama', 'Mystery', 'Thriller']","['USA', 'Germany']" tt0119008,"['Biography', 'Crime', 'Drama']",['USA'] tt0119080,['Drama'],['USA'] tt0119081,"['Horror', 'Sci-Fi', 'Thriller']","['UK', 'USA']" tt0119094,"['Action', 'Crime', 'Sci-Fi']",['USA'] tt0119095,"['Drama', 'Family', 'Fantasy']",['UK'] tt0119109,"['Comedy', 'Romance']",['USA'] tt0119116,"['Action', 'Adventure', 'Sci-Fi']","['France', 'UK', 'USA']" tt0119174,"['Drama', 'Mystery', 'Thriller']",['USA'] tt0119177,"['Drama', 'Sci-Fi', 'Thriller']",['USA'] tt0119208,"['Crime', 'Drama', 'Thriller']",['USA'] tt0119215,"['Comedy', 'Family']",['USA'] tt0119217,"['Drama', 'Romance']",['USA'] tt0119282,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0119313,"['Drama', 'Romance']",['USA'] tt0119324,"['Comedy', 'Drama']",['USA'] tt0119345,"['Horror', 'Mystery']",['USA'] tt0119349,['Drama'],['USA'] tt0119360,"['Comedy', 'Romance']",['USA'] tt0119381,"['Drama', 'Romance']",['USA'] tt0119395,"['Action', 'Crime', 'Drama']","['USA', 'UK', 'France', 'Germany', 'Japan']" tt0119396,"['Crime', 'Drama', 'Thriller']",['USA'] tt0119426,"['Comedy', 'Crime', 'Drama']",['USA'] tt0119468,"['Crime', 'Drama', 'Mystery']",['USA'] tt0119488,"['Crime', 'Drama', 'Mystery']",['USA'] tt0119528,"['Comedy', 'Fantasy']",['USA'] tt0119567,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0119576,"['Drama', 'Romance']","['France', 'UK', 'USA']" tt0119592,"['Crime', 'Drama', 'Thriller']",['USA'] tt0119643,"['Drama', 'Fantasy', 'Romance']",['USA'] tt0119654,"['Action', 'Adventure', 'Comedy']",['USA'] tt0119675,"['Horror', 'Sci-Fi']",['USA'] tt0119715,['Comedy'],['USA'] tt0119717,"['Comedy', 'Romance']",['USA'] tt0119738,"['Comedy', 'Drama', 'Romance']",['USA'] tt0119783,"['Crime', 'Drama']",['USA'] tt0119822,"['Comedy', 'Drama', 'Romance']",['USA'] tt0119874,"['Action', 'Thriller']",['USA'] tt0119896,"['Comedy', 'Drama', 'Romance']",['USA'] tt0119978,"['Crime', 'Drama', 'Thriller']","['USA', 'Germany']" tt0120004,"['Horror', 'Mystery', 'Sci-Fi']","['UK', 'USA', 'Japan', 'Germany']" tt0120053,"['Action', 'Adventure', 'Romance']",['USA'] tt0120082,"['Horror', 'Mystery']",['USA'] tt0120094,"['Biography', 'Drama', 'Music']",['USA'] tt0120148,"['Comedy', 'Drama', 'Fantasy']","['UK', 'USA']" tt0120151,"['Comedy', 'Romance']",['USA'] tt0120169,"['Comedy', 'Drama']",['USA'] tt0120179,"['Action', 'Adventure', 'Crime']",['USA'] tt0120184,"['Action', 'Mystery', 'Sci-Fi']",['USA'] tt0120188,"['Action', 'Adventure', 'Comedy']",['USA'] tt0120201,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0120241,"['Comedy', 'Crime', 'Drama']",['USA'] tt0120321,"['Comedy', 'Drama']","['Canada', 'USA']" tt0120324,"['Crime', 'Drama', 'Thriller']","['UK', 'Germany', 'France', 'USA', 'Japan']" tt0120347,"['Action', 'Adventure', 'Thriller']","['UK', 'USA']" tt0120382,"['Comedy', 'Drama', 'Sci-Fi']",['USA'] tt0120458,"['Action', 'Horror', 'Sci-Fi']","['USA', 'UK', 'Germany', 'Japan', 'France']" tt0120461,"['Action', 'Drama', 'Sci-Fi']",['USA'] tt0120520,"['Drama', 'Romance']","['USA', 'UK']" tt0120524,"['Fantasy', 'Horror']",['USA'] tt0120577,"['Drama', 'Music']",['USA'] tt0120587,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0120601,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0120604,"['Action', 'Adventure', 'Fantasy']","['UK', 'USA', 'Romania']" tt0120611,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0120613,"['Drama', 'Romance']",['USA'] tt0120616,"['Action', 'Adventure', 'Fantasy']",['USA'] tt0120620,"['Drama', 'Mystery', 'Thriller']",['USA'] tt0120630,"['Animation', 'Adventure', 'Comedy']","['UK', 'USA', 'France']" tt0120631,"['Comedy', 'Drama', 'Romance']",['USA'] tt0120647,"['Action', 'Drama', 'Romance']",['USA'] tt0120654,['Comedy'],"['Canada', 'USA']" tt0120669,"['Adventure', 'Comedy', 'Drama']",['USA'] tt0120679,"['Biography', 'Drama', 'Romance']","['Mexico', 'USA', 'Canada']" tt0120681,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0120684,"['Biography', 'Drama']","['USA', 'UK']" tt0120685,"['Action', 'Sci-Fi', 'Thriller']","['USA', 'Japan']" tt0120686,"['Comedy', 'Drama']",['USA'] tt0120689,"['Crime', 'Drama', 'Fantasy']",['USA'] tt0120693,"['Comedy', 'Crime']",['USA'] tt0120694,"['Horror', 'Thriller']",['USA'] tt0120696,"['Action', 'Crime', 'Drama']","['USA', 'UK', 'Denmark', 'France', 'Japan', 'New Zealand', 'Germany', 'Australia']" tt0120703,"['Comedy', 'Drama', 'Romance']",['USA'] tt0120735,"['Comedy', 'Crime']",['UK'] tt0120737,"['Action', 'Adventure', 'Drama']","['New Zealand', 'USA']" tt0120744,"['Action', 'Adventure', 'Drama']","['France', 'USA']" tt0120746,"['Action', 'Adventure', 'Comedy']","['USA', 'Germany', 'Mexico']" tt0120755,"['Action', 'Adventure', 'Thriller']","['USA', 'Germany']" tt0120757,"['Action', 'Crime', 'Thriller']",['USA'] tt0120768,"['Action', 'Crime', 'Drama']","['Germany', 'USA']" tt0120770,"['Comedy', 'Music', 'Romance']",['USA'] tt0120772,"['Comedy', 'Drama', 'Romance']",['USA'] tt0120780,"['Comedy', 'Crime', 'Drama']",['USA'] tt0120784,"['Action', 'Crime', 'Drama']",['USA'] tt0120787,"['Crime', 'Drama', 'Thriller']",['USA'] tt0120788,"['Biography', 'Drama', 'Romance']",['USA'] tt0120794,"['Animation', 'Adventure', 'Drama']",['USA'] tt0120800,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0120802,"['Drama', 'Music', 'Mystery']","['Canada', 'Italy', 'USA', 'UK', 'Austria']" tt0120812,"['Action', 'Comedy', 'Crime']",['USA'] tt0120815,"['Drama', 'War']",['USA'] tt0120820,"['Comedy', 'Romance']",['USA'] tt0120831,"['Comedy', 'Drama']",['USA'] tt0120841,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0120844,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0120879,"['Drama', 'Music']","['UK', 'USA']" tt0120888,"['Comedy', 'Music', 'Romance']",['USA'] tt0120890,"['Crime', 'Drama', 'Mystery']",['USA'] tt0120891,"['Action', 'Comedy', 'Sci-Fi']",['USA'] tt0120902,"['Drama', 'Mystery', 'Sci-Fi']",['USA'] tt0120903,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0120907,"['Horror', 'Sci-Fi', 'Thriller']","['UK', 'France', 'Canada']" tt0120912,"['Action', 'Adventure', 'Comedy']",['USA'] tt0120913,"['Animation', 'Action', 'Adventure']",['USA'] tt0120915,"['Action', 'Adventure', 'Fantasy']",['USA'] tt0122151,"['Action', 'Crime', 'Thriller']",['USA'] tt0122541,"['Comedy', 'Romance']","['UK', 'France', 'USA']" tt0122690,"['Action', 'Crime', 'Thriller']","['UK', 'France', 'USA']" tt0122718,"['Action', 'Adventure', 'Comedy']",['USA'] tt0122933,"['Comedy', 'Crime']","['USA', 'Australia']" tt0123755,"['Drama', 'Mystery', 'Sci-Fi']",['Canada'] tt0124295,"['Documentary', 'Comedy', 'Crime']","['USA', 'UK']" tt0124315,"['Drama', 'Romance']",['USA'] tt0125439,"['Comedy', 'Drama', 'Romance']","['UK', 'USA']" tt0125659,"['Drama', 'Mystery', 'Sci-Fi']","['Spain', 'France', 'Italy']" tt0125664,"['Biography', 'Comedy', 'Drama']","['UK', 'Germany', 'Japan', 'USA']" tt0125879,"['Drama', 'Music', 'Mystery']",['USA'] tt0126029,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0126886,"['Comedy', 'Drama', 'Romance']",['USA'] tt0127536,"['Biography', 'Drama', 'History']",['UK'] tt0127723,"['Comedy', 'Romance']",['USA'] tt0128442,"['Crime', 'Drama']",['USA'] tt0128853,"['Comedy', 'Drama', 'Romance']",['USA'] tt0129167,"['Animation', 'Action', 'Adventure']",['USA'] tt0129290,"['Biography', 'Comedy', 'Drama']",['USA'] tt0129387,"['Comedy', 'Romance']",['USA'] tt0130018,"['Horror', 'Mystery']","['USA', 'Mexico']" tt0131325,['Comedy'],['USA'] tt0131857,"['Comedy', 'Sport']",['USA'] tt0132347,"['Action', 'Comedy', 'Fantasy']",['USA'] tt0132477,"['Biography', 'Drama', 'Family']",['USA'] tt0133046,"['Comedy', 'Thriller']",['USA'] tt0133093,"['Action', 'Sci-Fi']",['USA'] tt0133751,"['Horror', 'Sci-Fi']",['USA'] tt0133952,"['Action', 'Thriller']",['USA'] tt0134067,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0134084,"['Horror', 'Mystery']",['USA'] tt0134119,"['Crime', 'Drama', 'Thriller']",['USA'] tt0134847,"['Horror', 'Sci-Fi']","['USA', 'Australia']" tt0134983,"['Horror', 'Sci-Fi', 'Thriller']","['USA', 'Switzerland']" tt0137338,"['Comedy', 'Drama', 'Romance']",['USA'] tt0137363,"['Crime', 'Drama', 'Thriller']",['USA'] tt0137523,['Drama'],"['USA', 'Germany']" tt0138097,"['Comedy', 'Drama', 'History']","['USA', 'UK']" tt0138524,"['Comedy', 'Crime', 'Romance']",['USA'] tt0138704,"['Drama', 'Horror', 'Mystery']",['USA'] tt0138749,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0139134,"['Drama', 'Romance']",['USA'] tt0139239,"['Comedy', 'Crime']",['USA'] tt0139414,"['Action', 'Comedy', 'Horror']",['USA'] tt0139654,"['Crime', 'Drama', 'Thriller']",['USA'] tt0139699,"['Comedy', 'Drama', 'Romance']",['USA'] tt0141926,"['Action', 'War']","['France', 'USA']" tt0142342,"['Comedy', 'Drama']",['USA'] tt0142688,"['Mystery', 'Thriller']","['France', 'Spain', 'USA']" tt0143145,"['Action', 'Adventure', 'Thriller']","['UK', 'USA']" tt0144084,"['Comedy', 'Crime', 'Drama']","['USA', 'Canada']" tt0144120,"['Comedy', 'Horror']","['USA', 'Canada']" tt0144528,"['Comedy', 'Romance', 'Sci-Fi']",['USA'] tt0144715,"['Comedy', 'Drama']","['USA', 'Australia']" tt0144814,"['Horror', 'Sci-Fi', 'Thriller']",['USA'] tt0144964,"['Action', 'Adventure', 'Fantasy']","['UK', 'USA', 'Luxembourg']" tt0145531,['Horror'],"['USA', 'Mexico']" tt0145653,['Drama'],"['USA', 'Ireland']" tt0145660,"['Action', 'Adventure', 'Comedy']",['USA'] tt0146316,"['Action', 'Adventure', 'Fantasy']","['USA', 'UK', 'Japan', 'Germany']" tt0147004,"['Comedy', 'Drama', 'Music']",['UK'] tt0149171,['Drama'],['USA'] tt0149261,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Mexico']" tt0150377,"['Crime', 'Drama', 'Mystery']","['USA', 'Germany', 'Canada']" tt0151568,"['Biography', 'Comedy', 'Drama']","['UK', 'USA']" tt0151582,"['Crime', 'Drama', 'Mystery']",['USA'] tt0151738,"['Comedy', 'Drama', 'Romance']",['USA'] tt0151804,['Comedy'],['USA'] tt0155267,"['Crime', 'Romance', 'Thriller']",['USA'] tt0155711,"['Comedy', 'Crime', 'Drama']",['USA'] tt0157472,"['Action', 'Adventure', 'Comedy']",['USA'] tt0158493,"['Crime', 'Drama']","['Jamaica', 'USA']" tt0158983,"['Animation', 'Comedy', 'Fantasy']",['USA'] tt0159097,"['Drama', 'Romance']",['USA'] tt0159273,"['Action', 'Drama', 'Thriller']",['USA'] tt0159365,"['Adventure', 'Drama', 'History']","['UK', 'Italy', 'Romania', 'USA']" tt0160127,"['Action', 'Adventure', 'Comedy']","['USA', 'Germany']" tt0160184,"['Crime', 'Horror', 'Mystery']","['Germany', 'USA']" tt0160672,"['Crime', 'Drama']",['USA'] tt0160862,"['Comedy', 'Romance']",['USA'] tt0161081,"['Drama', 'Fantasy', 'Horror']",['USA'] tt0161100,"['Comedy', 'Drama', 'Romance']",['USA'] tt0162222,"['Adventure', 'Drama', 'Romance']",['USA'] tt0162346,"['Comedy', 'Drama']","['USA', 'UK', 'Germany']" tt0162360,"['Comedy', 'Crime', 'Romance']",['USA'] tt0162650,"['Action', 'Crime', 'Thriller']","['Germany', 'USA']" tt0162661,"['Fantasy', 'Horror', 'Mystery']","['Germany', 'USA']" tt0162662,"['Drama', 'Music', 'Romance']",['USA'] tt0163025,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0163187,"['Comedy', 'Romance']",['USA'] tt0163651,['Comedy'],['USA'] tt0163978,"['Adventure', 'Drama', 'Romance']","['USA', 'UK']" tt0163983,"['Crime', 'Drama', 'Horror']","['USA', 'Germany']" tt0163988,"['Drama', 'Thriller']",['USA'] tt0164052,"['Action', 'Horror', 'Sci-Fi']","['USA', 'Germany']" tt0164114,"['Comedy', 'Drama', 'Romance']",['USA'] tt0164181,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0164184,"['Action', 'Drama', 'Thriller']","['USA', 'Germany', 'Canada']" tt0164334,"['Drama', 'Thriller']","['USA', 'Germany', 'Canada']" tt0164912,"['Adventure', 'Comedy', 'Family']","['Germany', 'USA']" tt0165798,"['Action', 'Crime', 'Drama']","['France', 'Germany', 'USA', 'Japan']" tt0165854,"['Crime', 'Drama', 'Mystery']",['USA'] tt0166396,['Comedy'],"['UK', 'Ireland', 'France', 'USA']" tt0166924,"['Drama', 'Mystery', 'Thriller']","['France', 'USA']" tt0167116,"['Action', 'Romance', 'Thriller']",['USA'] tt0167260,"['Adventure', 'Drama', 'Fantasy']","['New Zealand', 'USA']" tt0167261,"['Adventure', 'Drama', 'Fantasy']","['New Zealand', 'USA']" tt0167427,"['Comedy', 'Romance']",['USA'] tt0168501,"['Comedy', 'Drama', 'Romance']",['USA'] tt0168786,"['Biography', 'Drama']",['USA'] tt0169547,['Drama'],['USA'] tt0170016,"['Comedy', 'Family', 'Fantasy']",['USA'] tt0171359,"['Drama', 'Romance', 'Thriller']",['USA'] tt0171363,"['Fantasy', 'Horror', 'Mystery']","['USA', 'UK']" tt0172156,"['Action', 'Comedy', 'Crime']",['USA'] tt0172493,"['Biography', 'Drama']","['USA', 'Germany']" tt0172495,"['Action', 'Adventure', 'Drama']","['USA', 'UK', 'Malta', 'Morocco']" tt0173716,"['Comedy', 'Crime', 'Thriller']","['France', 'USA']" tt0174856,"['Biography', 'Drama', 'Sport']",['USA'] tt0175142,['Comedy'],['USA'] tt0177789,"['Adventure', 'Comedy', 'Sci-Fi']",['USA'] tt0177971,"['Action', 'Adventure', 'Drama']",['USA'] tt0179116,"['Comedy', 'Drama', 'Romance']",['USA'] tt0180093,['Drama'],['USA'] tt0180734,"['Drama', 'Sport']","['Germany', 'USA']" tt0181316,"['Action', 'Comedy', 'Crime']","['Germany', 'USA']" tt0181536,['Drama'],['USA'] tt0181689,"['Action', 'Crime', 'Mystery']",['USA'] tt0181739,"['Animation', 'Action', 'Adventure']",['USA'] tt0181865,"['Crime', 'Drama', 'Thriller']","['USA', 'Mexico', 'Germany']" tt0181875,"['Adventure', 'Comedy', 'Drama']",['USA'] tt0183505,['Comedy'],['USA'] tt0183649,"['Crime', 'Thriller']",['USA'] tt0183678,"['Fantasy', 'Horror', 'Thriller']",['USA'] tt0183790,"['Action', 'Adventure', 'Romance']",['USA'] tt0184858,"['Action', 'Adventure', 'Crime']",['USA'] tt0184907,"['Adventure', 'Comedy', 'Family']",['USA'] tt0185014,"['Comedy', 'Drama']","['USA', 'Germany', 'UK', 'Japan']" tt0185431,"['Comedy', 'Fantasy']",['USA'] tt0185937,"['Horror', 'Mystery']",['USA'] tt0186253,['Drama'],"['Canada', 'USA']" tt0186508,"['Documentary', 'Music']","['Germany', 'USA', 'UK', 'France', 'Cuba']" tt0186566,"['Action', 'Adventure', 'Thriller']",['USA'] tt0186894,"['Drama', 'Romance']",['USA'] tt0186975,"['Comedy', 'Drama', 'Romance']",['USA'] tt0187393,"['Action', 'Drama', 'History']","['USA', 'Germany']" tt0187738,"['Action', 'Horror', 'Sci-Fi']","['Germany', 'USA']" tt0189584,"['Drama', 'Comedy']",['USA'] tt0189998,"['Drama', 'Horror']","['UK', 'USA', 'Luxembourg']" tt0190138,"['Comedy', 'Crime']",['USA'] tt0190332,"['Action', 'Adventure', 'Fantasy']","['Taiwan', 'Hong Kong', 'USA', 'China']" tt0190590,"['Adventure', 'Comedy', 'Crime']","['UK', 'France', 'USA']" tt0190865,"['Action', 'Adventure', 'Drama']","['USA', 'Germany']" tt0191133,"['Comedy', 'Drama', 'Music']",['USA'] tt0191636,"['Drama', 'History', 'Romance']","['France', 'Canada']" tt0192071,"['Comedy', 'Romance']",['USA'] tt0192614,"['Action', 'Crime', 'Drama']","['USA', 'Canada']" tt0193560,"['Action', 'Adventure', 'Drama']","['USA', 'Mexico']" tt0195685,"['Biography', 'Drama']",['USA'] tt0195714,"['Horror', 'Thriller']",['USA'] tt0195945,['Comedy'],['USA'] tt0196229,['Comedy'],"['Germany', 'USA']" tt0198021,"['Comedy', 'Drama', 'Romance']",['USA'] tt0200465,"['Crime', 'Thriller']","['UK', 'USA', 'Australia']" tt0200530,"['Comedy', 'Drama']",['USA'] tt0202677,"['Action', 'Crime', 'Drama']",['USA'] tt0203009,"['Drama', 'Musical', 'Romance']","['Australia', 'USA']" tt0203019,"['Biography', 'Drama']",['USA'] tt0203119,"['Crime', 'Drama', 'Thriller']","['UK', 'Spain']" tt0203230,['Drama'],['USA'] tt0203536,"['Action', 'Comedy', 'Thriller']",['USA'] tt0204946,"['Comedy', 'Romance', 'Sport']",['USA'] tt0205271,"['Comedy', 'Drama', 'Romance']","['USA', 'Germany']" tt0206275,"['Drama', 'Music', 'Romance']",['USA'] tt0206634,"['Drama', 'Thriller']","['USA', 'UK', 'Japan']" tt0207201,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0208003,"['Action', 'Comedy', 'Crime']","['Germany', 'USA']" tt0208092,"['Comedy', 'Crime']","['UK', 'USA']" tt0209037,"['Comedy', 'Drama', 'Music']","['Belgium', 'Netherlands', 'France']" tt0209144,"['Mystery', 'Thriller']",['USA'] tt0209163,"['Action', 'Adventure', 'Fantasy']",['USA'] tt0209958,"['Horror', 'Sci-Fi', 'Thriller']","['USA', 'Germany']" tt0210070,"['Drama', 'Fantasy', 'Horror']",['Canada'] tt0210358,"['Drama', 'Romance']",['USA'] tt0211443,"['Action', 'Horror', 'Sci-Fi']","['Canada', 'USA']" tt0211915,"['Comedy', 'Romance']","['France', 'Germany']" tt0212235,"['Comedy', 'Horror']",['USA'] tt0212338,"['Comedy', 'Romance']",['USA'] tt0212346,"['Action', 'Comedy', 'Crime']",['USA'] tt0212985,"['Crime', 'Drama', 'Thriller']","['USA', 'UK', 'Italy']" tt0213790,['Comedy'],['USA'] tt0213847,"['Comedy', 'Drama', 'Romance']","['Italy', 'USA', 'Germany']" tt0215129,['Comedy'],['USA'] tt0215750,"['Drama', 'History', 'War']","['Ireland', 'UK', 'France', 'Germany', 'USA']" tt0216787,"['Comedy', 'Drama', 'Romance']",['France'] tt0217355,"['Drama', 'Mystery']",['USA'] tt0217505,"['Crime', 'Drama']","['USA', 'Italy']" tt0218182,['Comedy'],['USA'] tt0218839,['Comedy'],['USA'] tt0218922,"['Drama', 'Mystery', 'Romance']","['France', 'Mexico', 'USA']" tt0218967,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0219653,"['Action', 'Fantasy', 'Horror']",['USA'] tt0219699,"['Drama', 'Fantasy', 'Horror']",['USA'] tt0220506,"['Horror', 'Thriller']",['USA'] tt0221799,['Drama'],"['USA', 'Hungary']" tt0226009,"['Drama', 'Comedy', 'Romance']",['USA'] tt0226935,['Drama'],['USA'] tt0227005,"['Comedy', 'Crime', 'Drama']",['USA'] tt0227445,"['Crime', 'Drama', 'Thriller']","['Germany', 'Canada', 'USA']" tt0227538,"['Action', 'Adventure', 'Comedy']",['USA'] tt0228333,"['Action', 'Horror', 'Sci-Fi']",['USA'] tt0229260,"['Adventure', 'Fantasy', 'Horror']",['USA'] tt0229440,"['Crime', 'Horror', 'Mystery']",['USA'] tt0230169,"['Biography', 'Crime', 'Drama']","['USA', 'UK']" tt0230512,"['Documentary', 'Biography', 'Music']",['USA'] tt0230600,"['Horror', 'Mystery', 'Thriller']","['Spain', 'USA', 'France', 'Italy']" tt0232500,"['Action', 'Crime', 'Thriller']","['USA', 'Germany']" tt0233277,"['Family', 'Fantasy']","['USA', 'Germany', 'UK']" tt0233657,"['Sci-Fi', 'Thriller']",['USA'] tt0234137,"['Comedy', 'Romance', 'Drama']","['USA', 'Canada']" tt0234215,"['Action', 'Sci-Fi']",['USA'] tt0234354,"['Comedy', 'Crime', 'Drama']",['USA'] tt0234829,"['Comedy', 'Drama', 'Romance']",['USA'] tt0236493,"['Adventure', 'Comedy', 'Crime']","['USA', 'Mexico']" tt0236640,"['Biography', 'Drama', 'Romance']","['Germany', 'Canada', 'USA']" tt0238112,"['Drama', 'Music', 'Romance']","['UK', 'France', 'USA']" tt0238380,"['Action', 'Drama', 'Sci-Fi']",['USA'] tt0238546,"['Drama', 'Fantasy', 'Horror']","['USA', 'Australia']" tt0238924,"['Comedy', 'Drama']",['USA'] tt0239060,"['Drama', 'Romance']",['Netherlands'] tt0239395,"['Action', 'Comedy', 'Family']","['USA', 'Australia']" tt0239986,"['Comedy', 'Romance']",['USA'] tt0240468,"['Action', 'Comedy']","['USA', 'Hong Kong', 'Mexico', 'Taiwan']" tt0240510,"['Action', 'Adventure', 'Drama']","['UK', 'USA']" tt0240601,['Thriller'],['Germany'] tt0240772,"['Crime', 'Thriller']",['USA'] tt0240890,"['Comedy', 'Romance']","['USA', 'Canada']" tt0241303,"['Drama', 'Romance']","['UK', 'USA']" tt0241527,"['Adventure', 'Family', 'Fantasy']","['UK', 'USA']" tt0242423,"['Comedy', 'Mystery', 'Sci-Fi']",['USA'] tt0242508,"['Comedy', 'Crime', 'Drama']",['USA'] tt0242527,"['Drama', 'Mystery', 'Thriller']",['UK'] tt0242653,"['Action', 'Sci-Fi']",['USA'] tt0243133,"['Crime', 'Drama']","['UK', 'USA']" tt0243155,"['Comedy', 'Drama', 'Romance']","['UK', 'France', 'USA']" tt0243585,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0243655,"['Comedy', 'Romance']",['USA'] tt0243736,"['Comedy', 'Romance']","['USA', 'UK', 'France']" tt0244244,"['Action', 'Crime', 'Thriller']",['USA'] tt0244970,"['Comedy', 'Romance']",['USA'] tt0245046,"['Drama', 'Romance', 'Thriller']","['UK', 'Australia', 'Germany']" tt0245238,"['Drama', 'Romance']",['Canada'] tt0245429,"['Animation', 'Adventure', 'Family']",['Japan'] tt0245562,"['Action', 'Drama', 'War']",['USA'] tt0245574,['Drama'],['Mexico'] tt0245686,"['Adventure', 'Comedy', 'Drama']",['USA'] tt0245712,"['Drama', 'Thriller']",['Mexico'] tt0245803,"['Action', 'Comedy', 'Fantasy']","['USA', 'Canada']" tt0246460,"['Action', 'Adventure', 'Thriller']","['UK', 'USA']" tt0246544,"['Action', 'Adventure', 'Romance']","['Germany', 'Luxembourg', 'UK', 'USA']" tt0246772,"['Comedy', 'Romance', 'Drama']","['Germany', 'Italy', 'Austria', 'Switzerland']" tt0247425,"['Crime', 'Drama']",['USA'] tt0247745,"['Comedy', 'Crime', 'Mystery']",['USA'] tt0247786,['Drama'],['UK'] tt0249462,"['Drama', 'Music']","['UK', 'France']" tt0249478,"['Crime', 'Mystery', 'Thriller']",['USA'] tt0250202,"['Comedy', 'Romance']",['USA'] tt0250323,"['Crime', 'Drama', 'Mystery']",['USA'] tt0250494,"['Comedy', 'Romance']",['USA'] tt0250687,"['Adventure', 'Comedy']","['USA', 'Canada']" tt0250720,"['Action', 'Comedy', 'Crime']","['USA', 'Australia']" tt0250797,"['Drama', 'Romance', 'Thriller']","['France', 'Germany', 'USA']" tt0251075,"['Comedy', 'Sci-Fi']",['USA'] tt0251114,"['Drama', 'War']",['USA'] tt0251127,"['Comedy', 'Romance']","['USA', 'Germany']" tt0251160,"['Crime', 'Drama', 'Thriller']",['USA'] tt0251736,['Horror'],['USA'] tt0252028,"['Comedy', 'Romance']",['USA'] tt0252299,"['Comedy', 'Crime', 'Drama']","['UK', 'Germany']" tt0252866,['Comedy'],['USA'] tt0253474,"['Biography', 'Drama', 'Music']","['UK', 'France', 'Poland', 'Germany']" tt0253754,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0255477,"['Comedy', 'Family', 'Fantasy']",['Italy'] tt0256380,"['Comedy', 'Drama', 'Fantasy']","['USA', 'Germany']" tt0257044,"['Crime', 'Drama', 'Thriller']",['USA'] tt0257076,"['Action', 'Adventure', 'Crime']",['USA'] tt0257106,['Comedy'],"['USA', 'Canada']" tt0258000,"['Crime', 'Drama', 'Thriller']",['USA'] tt0258038,"['Action', 'Adventure', 'Comedy']",['USA'] tt0258068,"['Drama', 'Romance', 'Thriller']","['UK', 'Germany', 'USA', 'Vietnam', 'Australia', 'France', 'Canada']" tt0258273,"['Comedy', 'Drama', 'Romance']",['USA'] tt0258463,"['Action', 'Mystery', 'Thriller']","['USA', 'Germany', 'Czech Republic']" tt0259324,"['Action', 'Fantasy', 'Thriller']","['USA', 'Australia']" tt0259567,"['Drama', 'Romance']",['USA'] tt0259711,"['Fantasy', 'Mystery', 'Romance']","['USA', 'Spain']" tt0261289,"['Comedy', 'Romance']","['Germany', 'USA']" tt0261392,['Comedy'],['USA'] tt0263101,"['Action', 'Crime', 'Thriller']",['Thailand'] tt0263488,"['Horror', 'Mystery']","['USA', 'Germany']" tt0263734,"['Comedy', 'Drama', 'Romance']",['Canada'] tt0263757,"['Comedy', 'Drama', 'Romance']",['USA'] tt0264150,"['Comedy', 'Romance']",['USA'] tt0264323,"['Comedy', 'Horror']",['USA'] tt0264464,"['Biography', 'Crime', 'Drama']","['USA', 'Canada']" tt0264472,"['Drama', 'Thriller']",['USA'] tt0264616,"['Crime', 'Drama', 'Thriller']","['USA', 'Germany']" tt0264734,"['Animation', 'Adventure', 'Biography']",['USA'] tt0264761,"['Comedy', 'Drama', 'Romance']",['USA'] tt0264935,"['Crime', 'Mystery', 'Thriller']",['USA'] tt0265298,"['Adventure', 'Comedy', 'Family']","['USA', 'Germany']" tt0265459,"['Drama', 'Thriller']",['USA'] tt0266489,['Comedy'],"['Germany', 'USA']" tt0266697,"['Action', 'Crime', 'Thriller']","['USA', 'Japan']" tt0266747,"['Comedy', 'Music']","['Germany', 'USA']" tt0266915,"['Action', 'Comedy', 'Crime']","['Hong Kong', 'USA']" tt0267248,"['Drama', 'Mystery', 'Romance']","['USA', 'Germany', 'Canada']" tt0267913,"['Adventure', 'Comedy', 'Family']","['USA', 'Australia']" tt0268126,"['Comedy', 'Drama']",['USA'] tt0268380,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0268397,"['Animation', 'Action', 'Adventure']",['USA'] tt0268695,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'United Arab Emirates']" tt0268978,"['Biography', 'Drama']",['USA'] tt0269743,['Comedy'],['South Korea'] tt0270288,"['Biography', 'Comedy', 'Crime']","['USA', 'Germany', 'Canada']" tt0271219,"['Comedy', 'Drama', 'Romance']",['USA'] tt0271263,"['Animation', 'Comedy', 'Musical']",['USA'] tt0272020,"['Action', 'Drama', 'Thriller']",['USA'] tt0272207,"['Crime', 'Drama', 'Mystery']","['USA', 'Canada']" tt0273453,"['Comedy', 'Drama']",['USA'] tt0273923,"['Comedy', 'Drama']",['USA'] tt0274166,"['Action', 'Adventure', 'Comedy']","['UK', 'France', 'USA']" tt0274309,"['Biography', 'Comedy', 'Drama']",['UK'] tt0274558,"['Drama', 'Romance']","['USA', 'UK', 'France', 'Canada', 'Germany']" tt0274812,"['Comedy', 'Drama', 'Romance']",['USA'] tt0275022,"['Comedy', 'Drama', 'Romance']",['USA'] tt0276276,"['Comedy', 'Drama', 'Romance']","['UK', 'France']" tt0276751,"['Comedy', 'Drama', 'Romance']","['UK', 'USA', 'France', 'Germany']" tt0276919,"['Crime', 'Drama']","['Denmark', 'Netherlands', 'Sweden', 'Germany', 'UK', 'France', 'Finland', 'Norway', 'Italy']" tt0277027,['Drama'],['USA'] tt0277296,"['Action', 'Adventure', 'Fantasy']","['USA', 'Germany', 'Belgium']" tt0277371,['Comedy'],['USA'] tt0277434,"['Action', 'Drama', 'History']","['USA', 'Germany', 'France']" tt0278500,"['Comedy', 'Drama', 'Romance']","['UK', 'USA']" tt0279493,"['Action', 'Comedy']",['USA'] tt0279688,['Horror'],['USA'] tt0280438,"['Crime', 'Drama']",['USA'] tt0280460,"['Comedy', 'Drama']",['USA'] tt0280590,"['Comedy', 'Romance']",['USA'] tt0280605,"['Comedy', 'Crime']","['Australia', 'Canada']" tt0280609,"['Action', 'Horror', 'Thriller']","['UK', 'Luxembourg', 'USA']" tt0280778,"['Biography', 'Drama', 'Romance']","['UK', 'USA']" tt0281322,"['Action', 'Crime', 'Drama']","['USA', 'Germany', 'Japan']" tt0281686,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0282120,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0282209,"['Fantasy', 'Horror', 'Mystery']","['USA', 'Australia']" tt0283026,"['Drama', 'Thriller']",['USA'] tt0283090,"['Comedy', 'Crime', 'Drama']",['USA'] tt0283111,"['Comedy', 'Romance']","['Germany', 'USA']" tt0283897,"['Crime', 'Drama', 'Romance']","['USA', 'Argentina']" tt0284491,"['Crime', 'Drama']","['Spain', 'France', 'Italy', 'Mexico']" tt0284837,['Comedy'],"['France', 'UK', 'Germany']" tt0284929,"['Biography', 'Crime', 'Drama']","['UK', 'USA']" tt0285487,"['Drama', 'Thriller']",['USA'] tt0285728,"['Biography', 'Crime', 'Drama']",['USA'] tt0285742,"['Drama', 'Romance']",['USA'] tt0285823,"['Action', 'Crime', 'Thriller']","['USA', 'Mexico']" tt0286112,"['Action', 'Comedy', 'Fantasy']","['Hong Kong', 'China']" tt0286306,"['Drama', 'Horror', 'War']","['UK', 'Germany']" tt0286499,"['Comedy', 'Drama', 'Romance']","['UK', 'Germany', 'USA']" tt0286716,"['Action', 'Sci-Fi']",['USA'] tt0286788,"['Comedy', 'Drama', 'Family']","['USA', 'UK']" tt0286947,"['Comedy', 'Crime']",['USA'] tt0287717,"['Action', 'Adventure', 'Comedy']",['USA'] tt0288477,['Horror'],"['USA', 'Australia']" tt0289043,"['Drama', 'Horror', 'Sci-Fi']","['UK', 'Spain']" tt0289765,"['Crime', 'Drama', 'Thriller']","['Germany', 'USA']" tt0289879,"['Drama', 'Sci-Fi', 'Thriller']","['USA', 'Canada']" tt0289944,['Thriller'],"['Denmark', 'Canada', 'UK', 'Brazil']" tt0290002,"['Comedy', 'Romance']",['USA'] tt0290095,"['Action', 'Comedy', 'Sci-Fi']",['USA'] tt0290212,"['Comedy', 'Romance']",['USA'] tt0290334,"['Action', 'Sci-Fi', 'Thriller']","['Canada', 'USA']" tt0290747,"['Action', 'Adventure', 'Horror']","['USA', 'Germany', 'Australia']" tt0291341,"['Comedy', 'Crime', 'Drama']","['UK', 'USA']" tt0292644,"['Comedy', 'Drama', 'Romance']","['Germany', 'USA']" tt0292963,"['Crime', 'Drama', 'Thriller']",['USA'] tt0293564,"['Action', 'Comedy', 'Crime']","['USA', 'Germany']" tt0293662,"['Action', 'Crime', 'Thriller']","['France', 'USA']" tt0293815,"['Comedy', 'Drama']",['USA'] tt0294357,"['Adventure', 'Drama', 'Romance']","['Germany', 'USA']" tt0295178,"['Action', 'Adventure', 'Comedy']",['USA'] tt0295289,"['Comedy', 'Romance']",['USA'] tt0295297,"['Adventure', 'Family', 'Fantasy']","['UK', 'USA', 'Germany']" tt0296572,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0297037,"['Romance', 'Comedy', 'Drama']",['USA'] tt0297181,"['Action', 'Adventure', 'Comedy']","['USA', 'Hungary']" tt0297884,['Drama'],"['USA', 'France']" tt0298148,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0298203,"['Drama', 'Music']","['USA', 'Germany']" tt0298388,"['Animation', 'Adventure', 'Comedy']","['USA', 'UK']" tt0298814,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Germany', 'Canada', 'UK']" tt0298845,['Drama'],"['Ireland', 'UK', 'USA']" tt0299117,"['Comedy', 'Drama']",['USA'] tt0299658,"['Comedy', 'Crime', 'Musical']","['USA', 'Germany', 'Canada']" tt0299977,"['Action', 'Adventure', 'History']","['China', 'Hong Kong']" tt0299981,"['Action', 'Adventure', 'Drama']","['UK', 'Lithuania']" tt0300051,"['Comedy', 'Drama', 'Romance']",['USA'] tt0300532,"['Drama', 'Romance', 'Sport']","['USA', 'Germany']" tt0300556,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0301199,"['Crime', 'Drama', 'Thriller']",['UK'] tt0301470,['Horror'],['USA'] tt0301976,['Drama'],['USA'] tt0302674,"['Adventure', 'Drama', 'Mystery']","['USA', 'Argentina', 'Jordan']" tt0302886,['Comedy'],['USA'] tt0303361,"['Comedy', 'Drama', 'Horror']",['USA'] tt0303714,"['Comedy', 'Drama']",['USA'] tt0303816,['Horror'],['USA'] tt0303933,"['Comedy', 'Drama', 'Romance']",['USA'] tt0304141,"['Adventure', 'Family', 'Fantasy']","['UK', 'USA']" tt0305224,['Comedy'],['USA'] tt0305357,"['Action', 'Adventure', 'Comedy']",['USA'] tt0305396,"['Action', 'Adventure', 'Comedy']","['Australia', 'USA']" tt0305556,"['Comedy', 'Sci-Fi']",['USA'] tt0305711,"['Comedy', 'Romance']","['USA', 'Germany']" tt0306047,['Comedy'],"['USA', 'Canada']" tt0307351,"['Drama', 'Music']",['USA'] tt0307507,"['Action', 'Crime', 'Mystery']","['Canada', 'USA']" tt0307987,"['Comedy', 'Crime', 'Drama']","['Germany', 'USA']" tt0308353,"['Animation', 'Adventure', 'Comedy']","['USA', 'Germany', 'Canada', 'UK']" tt0308508,"['Documentary', 'Sport']",['USA'] tt0308644,"['Biography', 'Drama', 'Family']","['USA', 'UK']" tt0309452,"['Action', 'Drama', 'Sport']",['Canada'] tt0309912,"['Adventure', 'Drama', 'Romance']","['UK', 'USA']" tt0310281,"['Comedy', 'Music']",['USA'] tt0310793,"['Documentary', 'Crime', 'Drama']","['USA', 'Canada', 'Germany']" tt0310924,"['Action', 'Comedy', 'Crime']","['UK', 'Canada']" tt0311113,"['Action', 'Adventure', 'Drama']",['USA'] tt0311429,"['Action', 'Adventure', 'Fantasy']","['USA', 'Germany', 'Czech Republic', 'UK']" tt0311648,"['Comedy', 'Drama']",['USA'] tt0312004,"['Animation', 'Adventure', 'Comedy']","['UK', 'USA']" tt0312329,"['Biography', 'Drama', 'Romance']","['USA', 'Germany']" tt0312528,"['Adventure', 'Comedy', 'Family']",['USA'] tt0312640,"['Action', 'Sci-Fi', 'Thriller']",['USA'] tt0313443,"['Crime', 'Drama', 'Mystery']",['USA'] tt0313737,"['Comedy', 'Romance']","['USA', 'Australia']" tt0313911,"['Action', 'Adventure', 'Comedy']","['USA', 'Canada']" tt0314331,"['Comedy', 'Drama', 'Romance']","['UK', 'USA', 'France']" tt0314498,"['Comedy', 'Crime']","['USA', 'Germany']" tt0314676,"['Comedy', 'Crime', 'Musical']",['USA'] tt0315327,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0315733,"['Crime', 'Drama', 'Thriller']",['USA'] tt0316654,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0316732,"['Action', 'Comedy', 'Crime']","['USA', 'France']" tt0317198,"['Comedy', 'Drama', 'Romance']","['UK', 'France', 'Germany', 'Ireland', 'USA']" tt0317248,"['Crime', 'Drama']","['Brazil', 'France', 'Germany']" tt0317676,"['Action', 'Adventure', 'Horror']","['Germany', 'Canada', 'USA']" tt0317740,"['Action', 'Crime', 'Thriller']","['USA', 'France', 'Italy', 'UK', 'Germany']" tt0317919,"['Action', 'Adventure', 'Thriller']","['USA', 'Germany', 'China', 'Italy']" tt0318155,"['Animation', 'Adventure', 'Comedy']","['Germany', 'USA']" tt0318374,"['Drama', 'Romance']",['USA'] tt0318462,"['Adventure', 'Biography', 'Drama']","['Argentina', 'USA', 'Chile', 'Peru', 'Brazil', 'UK', 'Germany', 'France']" tt0319061,"['Adventure', 'Drama', 'Fantasy']",['USA'] tt0319262,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0319343,"['Comedy', 'Family', 'Fantasy']",['USA'] tt0319531,"['Crime', 'Drama', 'Mystery']","['UK', 'USA']" tt0320244,"['Biography', 'Crime', 'Drama']","['USA', 'Netherlands']" tt0320661,"['Action', 'Adventure', 'Drama']","['UK', 'Germany', 'Spain', 'Morocco', 'USA', 'Italy', 'France']" tt0320691,"['Action', 'Fantasy', 'Thriller']","['USA', 'UK', 'Germany', 'Hungary']" tt0321442,"['Comedy', 'Drama', 'Mystery']",['USA'] tt0321704,"['Action', 'Drama', 'Sport']","['Canada', 'USA']" tt0322259,"['Action', 'Crime', 'Thriller']","['USA', 'Germany']" tt0322589,"['Drama', 'Music', 'Romance']",['USA'] tt0322659,"['Drama', 'Fantasy']",['USA'] tt0322802,"['Documentary', 'Action', 'Comedy']",['USA'] tt0323939,"['Crime', 'Thriller']",['USA'] tt0323944,"['Drama', 'History']","['USA', 'Canada']" tt0324127,"['Crime', 'Horror', 'Mystery']","['UK', 'Germany', 'USA']" tt0324133,"['Crime', 'Drama', 'Mystery']","['France', 'UK']" tt0324216,['Horror'],['USA'] tt0325258,['Comedy'],['USA'] tt0325537,['Comedy'],['USA'] tt0325703,"['Action', 'Adventure', 'Fantasy']","['USA', 'Germany', 'Japan', 'UK', 'Hong Kong']" tt0325710,"['Action', 'Drama', 'War']","['USA', 'New Zealand', 'Japan']" tt0325805,"['Comedy', 'Crime', 'Drama']","['USA', 'UK']" tt0326769,"['Action', 'Drama']",['USA'] tt0326856,['Comedy'],['USA'] tt0327056,"['Crime', 'Drama', 'Mystery']","['USA', 'Australia']" tt0327162,"['Comedy', 'Horror', 'Sci-Fi']",['USA'] tt0327597,"['Animation', 'Drama', 'Family']",['USA'] tt0327643,"['Comedy', 'Romance']",['USA'] tt0327679,"['Comedy', 'Family', 'Fantasy']","['USA', 'Ireland', 'UK']" tt0327850,"['Action', 'Adventure', 'Comedy']",['USA'] tt0327919,"['Adventure', 'Drama']","['UK', 'USA']" tt0328031,"['Crime', 'Drama', 'Thriller']",['USA'] tt0328107,"['Action', 'Crime', 'Drama']","['USA', 'UK', 'Mexico', 'Switzerland']" tt0328828,['Comedy'],"['USA', 'Germany']" tt0329101,"['Action', 'Horror']","['Canada', 'USA']" tt0329575,"['Drama', 'History', 'Sport']",['USA'] tt0330181,"['Biography', 'Crime', 'Drama']",['USA'] tt0330373,"['Adventure', 'Family', 'Fantasy']","['UK', 'USA']" tt0331632,"['Adventure', 'Comedy', 'Family']","['USA', 'Canada']" tt0332047,"['Comedy', 'Drama', 'Romance']","['USA', 'Germany']" tt0332280,"['Drama', 'Romance']",['USA'] tt0332375,"['Comedy', 'Drama']","['USA', 'Canada']" tt0332379,"['Comedy', 'Music']","['USA', 'Germany']" tt0332452,"['Drama', 'History']","['USA', 'Malta', 'UK']" tt0333766,"['Comedy', 'Drama', 'Romance']",['USA'] tt0333780,['Comedy'],['USA'] tt0335119,"['Biography', 'Drama', 'Romance']","['UK', 'Luxembourg']" tt0335266,"['Drama', 'Romance']","['USA', 'Japan']" tt0335438,"['Comedy', 'Crime']",['USA'] tt0335559,"['Comedy', 'Romance']",['USA'] tt0337579,"['Comedy', 'Drama']",['USA'] tt0337697,"['Comedy', 'Family', 'Romance']","['USA', 'Czech Republic']" tt0337711,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0337721,"['Adventure', 'Drama']",['Canada'] tt0337879,"['Comedy', 'Drama', 'Sport']",['UK'] tt0337972,['Western'],['USA'] tt0337978,"['Action', 'Thriller']","['USA', 'UK']" tt0338013,"['Drama', 'Romance', 'Sci-Fi']",['USA'] tt0338075,"['Adventure', 'Comedy', 'Drama']","['USA', 'UK']" tt0338095,['Horror'],"['France', 'Italy', 'Romania']" tt0338096,"['Drama', 'Music', 'Romance']",['USA'] tt0338135,"['Comedy', 'Crime', 'Drama']","['Canada', 'France']" tt0338216,"['Drama', 'Romance', 'Sport']","['USA', 'Germany', 'Australia']" tt0338348,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0338526,"['Action', 'Adventure', 'Fantasy']","['USA', 'Czech Republic', 'Romania']" tt0338564,"['Crime', 'Drama', 'Mystery']",['Hong Kong'] tt0338751,"['Biography', 'Drama']","['Germany', 'USA']" tt0339091,"['Action', 'Drama', 'Western']",['USA'] tt0339291,"['Adventure', 'Comedy', 'Family']","['Germany', 'USA']" tt0339294,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0339526,"['Crime', 'Drama', 'Thriller']",['USA'] tt0339727,"['Drama', 'Music', 'Romance']","['Germany', 'USA']" tt0340163,"['Action', 'Crime', 'Drama']","['USA', 'Germany']" tt0340377,"['Comedy', 'Drama']",['USA'] tt0340855,"['Biography', 'Crime', 'Drama']","['Germany', 'USA']" tt0343121,"['Documentary', 'Biography', 'Music']",['USA'] tt0343135,"['Comedy', 'Romance']",['USA'] tt0343660,"['Comedy', 'Drama', 'Romance']",['USA'] tt0343818,"['Action', 'Drama', 'Sci-Fi']","['USA', 'Germany']" tt0344510,"['Drama', 'Mystery', 'Romance']","['France', 'USA']" tt0344604,"['Comedy', 'Romance']",['France'] tt0345950,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0348150,"['Action', 'Sci-Fi']",['USA'] tt0348333,['Comedy'],['USA'] tt0348505,"['Drama', 'Romance', 'Thriller']","['UK', 'Ireland']" tt0348836,"['Horror', 'Mystery', 'Thriller']","['USA', 'France', 'Canada', 'Spain']" tt0349205,"['Comedy', 'Family']",['USA'] tt0349889,"['Action', 'Adventure', 'Drama']","['Aruba', 'USA']" tt0349903,"['Crime', 'Thriller']",['USA'] tt0350258,"['Biography', 'Drama', 'Music']",['USA'] tt0350261,"['Drama', 'Family', 'Romance']","['Germany', 'USA']" tt0351283,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0351977,"['Action', 'Crime']",['USA'] tt0352248,"['Biography', 'Drama', 'History']",['USA'] tt0352277,"['Biography', 'Drama', 'Music']","['UK', 'USA']" tt0353489,"['Horror', 'Thriller']",['Canada'] tt0355295,"['Action', 'Adventure', 'Comedy']","['USA', 'Czech Republic', 'UK']" tt0355702,"['Biography', 'Drama', 'Sport']","['USA', 'Germany']" tt0356634,"['Animation', 'Comedy', 'Family']",['USA'] tt0356680,"['Comedy', 'Drama', 'Romance']",['USA'] tt0356721,['Comedy'],"['UK', 'Germany', 'USA']" tt0357277,"['Action', 'Adventure', 'Crime']","['Canada', 'USA', 'Switzerland']" tt0357413,['Comedy'],['USA'] tt0357470,"['Drama', 'Romance', 'Comedy']",['USA'] tt0357507,"['Drama', 'Horror', 'Mystery']","['USA', 'New Zealand', 'Germany']" tt0358135,"['Comedy', 'Drama', 'Music']",['USA'] tt0358273,"['Biography', 'Drama', 'Music']","['USA', 'Germany']" tt0358569,"['Documentary', 'Music']",['UK'] tt0359517,['Comedy'],['USA'] tt0360009,"['Action', 'Crime', 'Drama']","['Germany', 'USA']" tt0360717,"['Action', 'Adventure', 'Drama']","['New Zealand', 'USA', 'Germany']" tt0361411,"['Comedy', 'Drama', 'Musical']","['UK', 'USA', 'India']" tt0361693,"['Comedy', 'Drama', 'Music']",['USA'] tt0361748,"['Adventure', 'Drama', 'War']","['Germany', 'USA']" tt0362120,['Comedy'],['USA'] tt0362478,"['Drama', 'Fantasy', 'Mystery']",['USA'] tt0362506,"['Crime', 'Drama']",['USA'] tt0362590,"['Comedy', 'Drama']",['USA'] tt0363095,"['Crime', 'Drama', 'Mystery']","['UK', 'Ireland']" tt0363143,"['Drama', 'Horror', 'Mystery']",['UK'] tt0363226,"['Action', 'Comedy', 'Crime']",['Japan'] tt0363276,"['Horror', 'Thriller']",['USA'] tt0363473,"['Biography', 'Drama', 'Music']","['UK', 'Germany', 'USA']" tt0363547,"['Action', 'Horror']","['USA', 'Canada', 'Japan', 'France']" tt0364385,['Horror'],['Japan'] tt0364725,"['Comedy', 'Sport']",['USA'] tt0364751,"['Adventure', 'Comedy', 'Mystery']","['USA', 'New Zealand']" tt0365265,"['Drama', 'Horror']",['Canada'] tt0365485,"['Comedy', 'Crime', 'Thriller']","['Ireland', 'Mexico', 'Germany', 'USA']" tt0365748,"['Comedy', 'Horror']","['UK', 'France']" tt0365907,"['Action', 'Crime', 'Drama']",['USA'] tt0365957,"['Drama', 'Music']",['USA'] tt0366174,"['Action', 'Adventure', 'Horror']",['USA'] tt0366548,"['Animation', 'Adventure', 'Comedy']","['USA', 'Australia']" tt0366551,"['Adventure', 'Comedy']","['USA', 'Canada', 'Germany']" tt0367085,['Comedy'],['USA'] tt0367089,"['Comedy', 'Drama']",['USA'] tt0367232,['Comedy'],['Canada'] tt0367594,"['Adventure', 'Comedy', 'Family']","['UK', 'USA']" tt0367652,['Comedy'],['USA'] tt0367882,"['Action', 'Adventure']",['USA'] tt0367913,"['Drama', 'Horror']",['Japan'] tt0367959,"['Adventure', 'Crime', 'Drama']","['UK', 'Czech Republic', 'France', 'Italy', 'USA']" tt0368008,"['Drama', 'Mystery', 'Sci-Fi']",['USA'] tt0368688,"['Action', 'Crime', 'Thriller']","['USA', 'Canada']" tt0368709,"['Comedy', 'Drama', 'Romance']",['USA'] tt0368794,"['Biography', 'Drama', 'Music']","['Germany', 'Canada', 'USA']" tt0368909,"['Action', 'Crime', 'Thriller']",['Thailand'] tt0369339,"['Crime', 'Drama', 'Thriller']",['USA'] tt0369441,"['Comedy', 'Crime']",['USA'] tt0369610,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0369672,['Drama'],['USA'] tt0369735,"['Comedy', 'Romance']","['USA', 'Germany']" tt0370263,"['Action', 'Adventure', 'Horror']","['USA', 'UK', 'Czech Republic', 'Canada', 'Germany']" tt0371246,"['Comedy', 'Drama', 'Romance']",['USA'] tt0371746,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0372183,"['Action', 'Mystery', 'Thriller']","['USA', 'Germany']" tt0372334,"['Comedy', 'Drama']",['USA'] tt0372588,"['Action', 'Comedy']","['USA', 'Germany']" tt0372784,"['Action', 'Adventure']","['USA', 'UK']" tt0372824,"['Drama', 'Music']","['France', 'Switzerland', 'Germany']" tt0373051,"['Action', 'Adventure', 'Family']",['USA'] tt0373469,"['Action', 'Comedy', 'Crime']",['USA'] tt0373883,['Horror'],['USA'] tt0373889,"['Action', 'Adventure', 'Family']","['UK', 'USA']" tt0373908,"['Comedy', 'Drama', 'Family']","['Germany', 'USA']" tt0374102,"['Adventure', 'Drama', 'Horror']",['USA'] tt0374286,"['Action', 'Mystery', 'Sci-Fi']",['USA'] tt0374536,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt0374563,"['Crime', 'Drama', 'Horror']","['USA', 'Russia']" tt0374900,['Comedy'],['USA'] tt0375063,"['Comedy', 'Drama', 'Romance']","['USA', 'Hungary']" tt0375173,"['Comedy', 'Drama', 'Romance']","['UK', 'USA']" tt0375568,"['Animation', 'Action', 'Comedy']","['Japan', 'Hong Kong', 'USA']" tt0375679,"['Crime', 'Drama', 'Thriller']","['USA', 'Germany']" tt0375912,"['Action', 'Crime', 'Drama']",['UK'] tt0376541,"['Drama', 'Romance']","['USA', 'UK']" tt0376994,"['Action', 'Sci-Fi']","['Canada', 'USA', 'UK']" tt0377062,"['Action', 'Adventure', 'Drama']",['USA'] tt0377091,"['Crime', 'Drama']",['USA'] tt0377092,['Comedy'],"['USA', 'Canada']" tt0377107,"['Drama', 'Mystery']",['USA'] tt0377109,"['Horror', 'Mystery']",['USA'] tt0377471,"['Comedy', 'Crime', 'Drama']",['USA'] tt0377808,"['Action', 'Adventure', 'Fantasy']","['USA', 'Germany']" tt0377818,['Comedy'],['USA'] tt0378109,"['Action', 'Adventure', 'Crime']",['USA'] tt0378194,"['Action', 'Crime', 'Thriller']",['USA'] tt0378407,['Documentary'],['USA'] tt0379725,"['Biography', 'Crime', 'Drama']","['USA', 'Canada']" tt0379786,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0380201,"['Action', 'Crime', 'Drama']",['USA'] tt0380510,"['Drama', 'Fantasy', 'Thriller']","['USA', 'UK', 'New Zealand']" tt0381061,"['Action', 'Adventure', 'Thriller']","['UK', 'Czech Republic', 'USA', 'Germany', 'Bahamas']" tt0381681,"['Drama', 'Romance']","['USA', 'France']" tt0381849,"['Action', 'Crime', 'Drama']",['USA'] tt0382077,"['Drama', 'Horror', 'Mystery']","['Germany', 'USA']" tt0382625,"['Action', 'Mystery', 'Thriller']","['USA', 'Malta', 'France', 'UK']" tt0382810,"['Crime', 'Drama', 'Romance']",['Australia'] tt0382856,"['Adventure', 'Comedy', 'Horror']",['Canada'] tt0382943,"['Comedy', 'Horror', 'Mystery']",['USA'] tt0382992,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0383216,"['Adventure', 'Comedy', 'Crime']","['USA', 'Czech Republic']" tt0383694,"['Crime', 'Drama']","['UK', 'France']" tt0384642,"['Comedy', 'Family', 'Romance']",['USA'] tt0384680,"['Comedy', 'Drama']","['USA', 'Germany']" tt0384793,['Comedy'],['USA'] tt0384806,['Horror'],['USA'] tt0384814,"['Drama', 'Romance']","['USA', 'Germany']" tt0385004,"['Action', 'Adventure', 'Drama']","['China', 'Hong Kong']" tt0385057,['Comedy'],"['Canada', 'UK', 'USA']" tt0385267,"['Comedy', 'Drama', 'Romance']",['USA'] tt0385307,"['Action', 'Comedy', 'Crime']",['USA'] tt0385880,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0385988,"['Adventure', 'Family', 'Musical']",['USA'] tt0386032,"['Documentary', 'Drama']",['USA'] tt0386117,"['Adventure', 'Drama', 'Family']","['Germany', 'Australia', 'USA']" tt0386140,"['Action', 'Adventure', 'Romance']","['USA', 'Mexico']" tt0386588,"['Comedy', 'Romance']",['USA'] tt0386751,"['Drama', 'Mystery', 'Thriller']","['Canada', 'UK']" tt0387564,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0387575,"['Comedy', 'Fantasy', 'Horror']","['Romania', 'USA', 'UK']" tt0388125,"['Comedy', 'Drama', 'Romance']","['USA', 'Germany', 'UK']" tt0388182,"['Comedy', 'Drama']",['USA'] tt0388395,"['Comedy', 'Drama', 'Music']",['Germany'] tt0388482,"['Action', 'Thriller']","['France', 'USA', 'Germany']" tt0388500,['Comedy'],['USA'] tt0388795,"['Drama', 'Romance']","['USA', 'Canada']" tt0389790,"['Animation', 'Adventure', 'Comedy']","['USA', 'Australia']" tt0389860,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0390022,"['Action', 'Drama', 'Sport']","['Germany', 'USA']" tt0390468,"['Drama', 'Thriller', 'War']",['USA'] tt0391024,['Documentary'],['USA'] tt0391198,"['Horror', 'Mystery', 'Thriller']","['USA', 'Japan']" tt0393162,"['Biography', 'Drama', 'Sport']","['USA', 'Germany']" tt0395169,"['Biography', 'Drama', 'History']","['UK', 'South Africa', 'Italy']" tt0395584,['Horror'],"['USA', 'Germany']" tt0395972,['Drama'],['USA'] tt0396171,"['Crime', 'Drama']","['Germany', 'France', 'Spain', 'USA', 'Czech Republic', 'Belgium', 'Netherlands', 'Luxembourg', 'Latvia', 'UK']" tt0396184,"['Action', 'Crime', 'Drama']","['Denmark', 'UK']" tt0396269,"['Comedy', 'Romance']",['USA'] tt0397044,"['Drama', 'Fantasy', 'Horror']","['USA', 'UK', 'Germany', 'Romania']" tt0397401,"['Comedy', 'Crime']",['USA'] tt0397535,"['Drama', 'Romance']","['USA', 'Japan', 'France']" tt0398165,"['Comedy', 'Crime', 'Sport']",['USA'] tt0399201,"['Action', 'Sci-Fi', 'Thriller']",['USA'] tt0399295,"['Action', 'Crime', 'Drama']","['USA', 'Germany', 'France']" tt0399901,['Drama'],['USA'] tt0400717,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0401383,"['Biography', 'Drama']","['France', 'USA']" tt0401420,"['Drama', 'Thriller']","['Canada', 'USA']" tt0401792,"['Crime', 'Thriller']",['USA'] tt0401855,"['Action', 'Fantasy', 'Sci-Fi']",['USA'] tt0402022,"['Action', 'Adventure', 'Crime']","['USA', 'Germany', 'Brazil', 'Italy']" tt0403702,"['Comedy', 'Drama', 'Romance']",['USA'] tt0405061,"['Horror', 'Mystery']","['Hong Kong', 'Singapore']" tt0405159,"['Drama', 'Sport']",['USA'] tt0405163,['Comedy'],"['USA', 'Germany']" tt0405422,"['Comedy', 'Romance']",['USA'] tt0406158,"['Biography', 'Drama']",['USA'] tt0406375,"['Action', 'Adventure', 'Comedy']",['USA'] tt0406650,"['Comedy', 'Drama']","['USA', 'Germany']" tt0407304,"['Adventure', 'Sci-Fi', 'Thriller']",['USA'] tt0407887,"['Crime', 'Drama', 'Thriller']",['USA'] tt0408236,"['Drama', 'Musical', 'Thriller']","['USA', 'UK']" tt0408306,"['Action', 'Drama', 'History']","['France', 'Canada', 'USA']" tt0408524,"['Comedy', 'Sport']",['USA'] tt0408839,"['Comedy', 'Romance']",['USA'] tt0408985,"['Comedy', 'Romance']",['USA'] tt0409182,"['Action', 'Adventure', 'Drama']",['USA'] tt0409459,"['Action', 'Drama', 'Mystery']",['USA'] tt0409847,"['Action', 'Sci-Fi', 'Thriller']","['USA', 'India']" tt0410097,"['Crime', 'Drama', 'Music']",['USA'] tt0411477,"['Action', 'Adventure', 'Fantasy']","['USA', 'Germany', 'Hungary']" tt0412019,"['Comedy', 'Drama', 'Mystery']","['France', 'USA']" tt0412798,"['Drama', 'Horror', 'Mystery']","['Germany', 'UK', 'USA']" tt0413099,"['Comedy', 'Family', 'Fantasy']",['USA'] tt0413267,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0413300,"['Action', 'Sci-Fi']",['USA'] tt0413466,"['Comedy', 'Drama']",['USA'] tt0413895,"['Comedy', 'Family', 'Fantasy']","['USA', 'Germany', 'Australia']" tt0414055,"['Biography', 'Drama', 'History']","['UK', 'France', 'Germany', 'USA']" tt0414387,"['Drama', 'Romance']","['France', 'UK', 'USA']" tt0414852,"['Action', 'Crime', 'Sci-Fi']",['France'] tt0414853,"['Animation', 'Adventure', 'Comedy']","['USA', 'Germany', 'Netherlands']" tt0415306,"['Comedy', 'Sport']",['USA'] tt0416051,"['Comedy', 'Romance']",['USA'] tt0416212,['Drama'],['USA'] tt0416236,"['Action', 'Adventure', 'Drama']",['USA'] tt0416320,"['Drama', 'Romance', 'Thriller']","['UK', 'Ireland', 'Luxembourg']" tt0416449,"['Action', 'Drama']","['USA', 'Canada', 'Bulgaria']" tt0416508,"['Biography', 'Drama', 'Romance']","['UK', 'Ireland']" tt0417148,"['Action', 'Crime', 'Thriller']","['USA', 'Germany']" tt0417741,"['Action', 'Adventure', 'Family']","['UK', 'USA']" tt0417751,"['Comedy', 'Romance']",['USA'] tt0418279,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt0418647,"['Drama', 'Family', 'Sport']",['USA'] tt0418819,"['Horror', 'Sci-Fi', 'Thriller']","['France', 'Canada', 'USA']" tt0419706,"['Action', 'Adventure', 'Fantasy']","['UK', 'Czech Republic', 'Germany', 'USA']" tt0419843,"['Comedy', 'Drama', 'Romance']",['USA'] tt0419887,['Drama'],"['USA', 'China', 'UK', 'Afghanistan']" tt0420251,['Horror'],"['Hong Kong', 'Japan', 'South Korea']" tt0420740,"['Drama', 'Thriller']","['Iceland', 'USA']" tt0420757,"['Comedy', 'Drama']",['USA'] tt0421082,"['Biography', 'Drama', 'Music']","['UK', 'USA', 'Australia', 'Japan', 'France']" tt0421238,"['Crime', 'Drama', 'Western']","['Australia', 'UK']" tt0421239,"['Action', 'Mystery', 'Thriller']",['USA'] tt0421715,"['Drama', 'Fantasy', 'Romance']",['USA'] tt0421729,"['Comedy', 'Crime']",['USA'] tt0423294,"['Animation', 'Comedy', 'Family']",['USA'] tt0423977,"['Comedy', 'Drama', 'Romance']",['USA'] tt0424095,"['Animation', 'Adventure', 'Comedy']","['UK', 'USA']" tt0424136,"['Drama', 'Thriller']",['USA'] tt0424345,['Comedy'],['USA'] tt0424774,"['Action', 'Adventure', 'Comedy']",['USA'] tt0424993,"['Comedy', 'Romance']",['USA'] tt0425061,"['Action', 'Adventure', 'Comedy']",['USA'] tt0425112,"['Action', 'Comedy', 'Mystery']","['UK', 'France']" tt0425123,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0425379,"['Crime', 'Drama', 'Thriller']",['Denmark'] tt0425395,['Comedy'],"['USA', 'Germany']" tt0425637,"['Action', 'Adventure', 'Drama']","['China', 'Hong Kong', 'Japan', 'Taiwan', 'South Korea']" tt0426459,"['Action', 'Comedy', 'Horror']",['USA'] tt0426501,"['Action', 'Crime', 'Drama']",['UK'] tt0426592,"['Action', 'Comedy']",['USA'] tt0426615,"['Comedy', 'Crime', 'Drama']",['USA'] tt0427152,['Comedy'],['USA'] tt0427229,"['Comedy', 'Romance']",['USA'] tt0427309,"['Biography', 'Drama', 'Romance']",['USA'] tt0427312,"['Documentary', 'Biography']",['USA'] tt0427327,"['Comedy', 'Drama', 'Musical']","['USA', 'UK', 'Canada']" tt0427470,"['Crime', 'Drama', 'Thriller']",['USA'] tt0427944,"['Comedy', 'Drama']",['USA'] tt0427969,"['Biography', 'Crime', 'Drama']",['USA'] tt0428518,['Documentary'],['USA'] tt0428803,"['Documentary', 'Family']",['France'] tt0429493,"['Action', 'Adventure', 'Thriller']","['USA', 'UK']" tt0429573,"['Drama', 'History', 'Horror']","['UK', 'Canada', 'Romania', 'USA']" tt0430105,"['Action', 'Crime', 'Drama']",['USA'] tt0430308,"['Biography', 'Crime', 'Drama']","['USA', 'Canada']" tt0430912,"['Drama', 'Mystery', 'Thriller']","['UK', 'Germany', 'Spain', 'USA']" tt0430919,"['Comedy', 'Romance']","['UK', 'Hungary', 'Germany', 'USA']" tt0430922,['Comedy'],"['Germany', 'USA']" tt0431021,"['Horror', 'Mystery', 'Thriller']","['USA', 'Canada']" tt0431308,"['Comedy', 'Drama', 'Romance']",['USA'] tt0432283,"['Animation', 'Adventure', 'Comedy']","['USA', 'UK']" tt0432348,"['Horror', 'Mystery']","['USA', 'Canada']" tt0433362,"['Action', 'Fantasy', 'Horror']","['Australia', 'USA']" tt0433386,"['Horror', 'Thriller']","['USA', 'Japan']" tt0433412,"['Comedy', 'Family', 'Romance']",['USA'] tt0433416,['Drama'],"['USA', 'India']" tt0434124,"['Comedy', 'Drama', 'Music']","['USA', 'UK']" tt0434139,"['Comedy', 'Drama', 'Romance']",['USA'] tt0434409,"['Action', 'Drama', 'Sci-Fi']","['USA', 'UK', 'Germany']" tt0435625,"['Adventure', 'Horror', 'Thriller']",['UK'] tt0436697,"['Biography', 'Drama', 'History']","['UK', 'USA', 'France', 'Italy']" tt0437072,"['Drama', 'Action']",['USA'] tt0437800,"['Drama', 'Family']",['USA'] tt0438205,"['Documentary', 'Family', 'Music']",['USA'] tt0438488,"['Action', 'Sci-Fi']","['USA', 'Germany', 'UK', 'Italy']" tt0439815,"['Comedy', 'Horror', 'Sci-Fi']","['Canada', 'USA']" tt0440963,"['Action', 'Mystery', 'Thriller']","['USA', 'Germany', 'France', 'Spain']" tt0441773,"['Animation', 'Action', 'Adventure']",['USA'] tt0442933,"['Animation', 'Action', 'Adventure']","['USA', 'UK']" tt0443295,"['Comedy', 'Family', 'Fantasy']",['USA'] tt0443435,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0443489,"['Drama', 'Music', 'Musical']",['USA'] tt0443536,"['Animation', 'Comedy', 'Crime']",['USA'] tt0443559,"['Action', 'Crime', 'Drama']",['USA'] tt0443632,"['Action', 'Crime', 'Thriller']",['USA'] tt0443649,"['Action', 'Adventure', 'Drama']","['USA', 'South Africa']" tt0443706,"['Crime', 'Drama', 'Mystery']",['USA'] tt0444682,"['Horror', 'Thriller']",['USA'] tt0445934,"['Comedy', 'Sport']",['USA'] tt0445946,"['Action', 'Crime', 'Drama']","['Germany', 'USA']" tt0446029,"['Action', 'Comedy', 'Fantasy']","['USA', 'UK', 'Canada', 'Japan']" tt0448011,"['Action', 'Drama', 'Mystery']","['USA', 'UK', 'Australia']" tt0448075,"['Crime', 'Drama', 'Mystery']",['USA'] tt0448115,"['Action', 'Adventure', 'Comedy']","['USA', 'Canada']" tt0448157,"['Action', 'Fantasy']",['USA'] tt0448564,"['Drama', 'Mystery', 'Thriller']",['Australia'] tt0448694,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0449010,"['Action', 'Adventure', 'Family']","['USA', 'UK', 'Hungary']" tt0449059,"['Comedy', 'Drama']",['USA'] tt0449467,['Drama'],"['France', 'USA', 'Mexico']" tt0450259,"['Adventure', 'Drama', 'Thriller']","['USA', 'Germany']" tt0450278,['Horror'],"['USA', 'Czech Republic']" tt0450336,['Horror'],['USA'] tt0450385,"['Fantasy', 'Horror', 'Mystery']",['USA'] tt0450405,"['Action', 'Adventure', 'Fantasy']",['USA'] tt0451079,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0451279,"['Action', 'Adventure', 'Fantasy']","['USA', 'China', 'Hong Kong']" tt0452594,"['Comedy', 'Drama', 'Romance']",['USA'] tt0452598,"['Adventure', 'Comedy', 'Family']","['USA', 'Canada']" tt0452608,"['Action', 'Sci-Fi', 'Thriller']","['USA', 'Germany', 'UK']" tt0452623,"['Crime', 'Drama', 'Mystery']",['USA'] tt0452625,"['Comedy', 'Romance']","['USA', 'Canada']" tt0452694,"['Drama', 'Fantasy', 'Romance']",['USA'] tt0453451,"['Comedy', 'Family']","['UK', 'France', 'Germany']" tt0454841,"['Horror', 'Thriller']","['USA', 'France', 'Romania']" tt0454848,"['Crime', 'Drama', 'Mystery']",['USA'] tt0454879,"['Crime', 'Drama', 'Thriller']","['USA', 'Germany', 'Brazil']" tt0454921,"['Biography', 'Drama']",['USA'] tt0454945,"['Comedy', 'Romance', 'Sport']","['USA', 'Canada']" tt0455362,"['Action', 'Comedy', 'Horror']","['Germany', 'South Africa', 'USA']" tt0455499,"['Animation', 'Adventure', 'Comedy']","['UK', 'USA']" tt0455584,"['Mystery', 'Sci-Fi', 'Thriller']","['Spain', 'UK']" tt0455590,"['Biography', 'Drama', 'History']","['UK', 'Germany']" tt0455612,"['Comedy', 'Drama', 'Romance']",['USA'] tt0455760,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0455824,"['Adventure', 'Comedy', 'Drama']","['UK', 'Australia', 'USA']" tt0455857,"['Horror', 'Thriller']",['USA'] tt0455944,"['Action', 'Crime', 'Thriller']",['USA'] tt0455967,"['Comedy', 'Romance']","['USA', 'Canada']" tt0456554,['Comedy'],['USA'] tt0457319,"['Action', 'Crime', 'Horror']",['USA'] tt0457400,"['Action', 'Adventure', 'Comedy']",['USA'] tt0457510,"['Comedy', 'Family', 'Sport']","['USA', 'Mexico']" tt0457572,"['Comedy', 'Drama', 'Horror']",['Canada'] tt0457939,"['Comedy', 'Romance']",['USA'] tt0458352,"['Comedy', 'Drama']","['USA', 'France']" tt0460732,['Comedy'],['USA'] tt0460740,"['Comedy', 'Drama', 'Romance']",['UK'] tt0460810,"['Comedy', 'Drama']",['USA'] tt0462499,['Action'],"['Germany', 'USA']" tt0462504,"['Action', 'Biography', 'Drama']","['USA', 'Luxembourg']" tt0462519,['Comedy'],['USA'] tt0463034,"['Comedy', 'Romance']",['USA'] tt0463854,"['Drama', 'Horror', 'Sci-Fi']","['UK', 'Spain']" tt0463985,"['Action', 'Crime', 'Thriller']","['USA', 'Germany', 'Japan']" tt0463998,"['Biography', 'Crime', 'Drama']","['Germany', 'USA']" tt0464154,"['Comedy', 'Horror']","['USA', 'Japan']" tt0465494,"['Action', 'Crime', 'Thriller']","['France', 'USA']" tt0465580,"['Action', 'Sci-Fi', 'Thriller']","['USA', 'Canada']" tt0467200,"['Biography', 'Drama', 'History']","['UK', 'USA']" tt0467406,"['Comedy', 'Drama']",['USA'] tt0468492,"['Action', 'Drama', 'Horror']",['South Korea'] tt0468565,"['Crime', 'Drama']","['UK', 'South Africa']" tt0468569,"['Action', 'Crime', 'Drama']","['USA', 'UK']" tt0469021,"['Action', 'Comedy', 'Crime']",['UK'] tt0469062,"['Drama', 'Horror', 'Mystery']",['USA'] tt0469494,['Drama'],['USA'] tt0469623,['Drama'],"['USA', 'UK', 'Canada']" tt0469641,"['Drama', 'History', 'Thriller']",['USA'] tt0469999,['Crime'],['USA'] tt0470705,"['Drama', 'Horror', 'Thriller']","['USA', 'Germany']" tt0470752,"['Drama', 'Mystery', 'Sci-Fi']",['UK'] tt0470761,"['Drama', 'Horror', 'Mystery']",['USA'] tt0470993,['Horror'],['USA'] tt0472062,"['Biography', 'Comedy', 'Drama']","['USA', 'Germany']" tt0472160,"['Comedy', 'Fantasy', 'Romance']","['UK', 'USA']" tt0472181,"['Animation', 'Adventure', 'Comedy']","['USA', 'Belgium', 'Canada']" tt0472458,"['Drama', 'Horror']",['Hong Kong'] tt0473308,"['Comedy', 'Drama', 'Romance']",['USA'] tt0473464,"['Drama', 'Thriller']",['USA'] tt0473488,"['Crime', 'Drama']",['USA'] tt0473692,"['Documentary', 'Music']",['USA'] tt0475290,"['Comedy', 'Drama', 'Music']","['USA', 'UK', 'Japan']" tt0475394,"['Action', 'Crime', 'Drama']","['UK', 'France', 'USA']" tt0476964,"['Action', 'Crime', 'Drama']",['USA'] tt0477051,"['Comedy', 'Romance']",['USA'] tt0477080,"['Action', 'Thriller']",['USA'] tt0477139,"['Comedy', 'Drama', 'Fantasy']","['USA', 'UK']" tt0477347,"['Adventure', 'Comedy', 'Family']","['USA', 'UK']" tt0477348,"['Crime', 'Drama', 'Thriller']","['USA', 'Mexico']" tt0478188,"['Action', 'Adventure', 'Fantasy']",['USA'] tt0478197,"['Documentary', 'Biography', 'Music']",['USA'] tt0478304,"['Drama', 'Fantasy']",['USA'] tt0478311,"['Comedy', 'Romance']",['USA'] tt0479143,"['Action', 'Drama', 'Sport']",['USA'] tt0479162,"['Comedy', 'Drama', 'Sci-Fi']",['USA'] tt0479500,"['Comedy', 'Crime', 'Family']",['USA'] tt0479884,"['Action', 'Crime', 'Thriller']",['USA'] tt0479952,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0480249,"['Adventure', 'Drama', 'Sci-Fi']",['USA'] tt0480255,"['Action', 'Adventure', 'Crime']","['USA', 'France']" tt0480271,"['Comedy', 'Romance']",['USA'] tt0480669,"['Horror', 'Mystery', 'Sci-Fi']",['Spain'] tt0480687,"['Comedy', 'Romance']",['USA'] tt0481499,"['Animation', 'Action', 'Adventure']",['USA'] tt0482088,"['Comedy', 'Romance']",['France'] tt0482463,"['Drama', 'Romance']","['USA', 'Mexico']" tt0482606,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0483607,"['Action', 'Sci-Fi', 'Thriller']","['UK', 'USA', 'South Africa', 'Germany']" tt0486259,['Documentary'],['USA'] tt0486321,"['Animation', 'Adventure', 'Family']","['Belgium', 'USA']" tt0486358,['Documentary'],['USA'] tt0486583,"['Comedy', 'Family', 'Fantasy']",['USA'] tt0486655,"['Adventure', 'Family', 'Fantasy']","['UK', 'USA']" tt0486674,"['Comedy', 'Drama']",['USA'] tt0486822,"['Crime', 'Drama', 'Mystery']",['USA'] tt0488085,"['Comedy', 'Crime', 'Thriller']",['UK'] tt0488508,"['Documentary', 'Family']",['USA'] tt0489049,"['Adventure', 'Comedy', 'Drama']",['USA'] tt0489099,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Canada', 'Mexico', 'Spain', 'Italy']" tt0489237,"['Comedy', 'Drama', 'Romance']",['USA'] tt0489270,"['Horror', 'Mystery', 'Thriller']","['USA', 'Canada']" tt0489281,"['Drama', 'War']",['USA'] tt0489318,"['Crime', 'Horror', 'Thriller']","['Spain', 'USA']" tt0489327,"['Comedy', 'Drama', 'Romance']",['UK'] tt0490181,"['Action', 'Adventure', 'Sci-Fi']","['UK', 'USA']" tt0490215,"['Drama', 'History']","['USA', 'UK', 'Taiwan', 'Japan', 'Mexico', 'Italy']" tt0491152,"['Comedy', 'Drama', 'Romance']",['USA'] tt0491747,['Drama'],"['Canada', 'UK', 'USA']" tt0492044,"['Drama', 'Horror', 'Mystery']","['USA', 'Canada', 'UK']" tt0492389,"['Comedy', 'Family']","['USA', 'United Arab Emirates']" tt0492486,"['Comedy', 'Horror', 'Mystery']","['Ireland', 'UK', 'Denmark']" tt0492492,"['Comedy', 'Drama', 'Romance']",['USA'] tt0492619,['Comedy'],['USA'] tt0492912,"['Drama', 'Thriller']",['USA'] tt0493129,['Comedy'],['USA'] tt0493430,"['Documentary', 'Action', 'Comedy']",['USA'] tt0493464,"['Action', 'Crime', 'Fantasy']","['USA', 'Germany']" tt0494222,"['Comedy', 'Romance']",['New Zealand'] tt0496806,"['Action', 'Crime', 'Thriller']",['USA'] tt0497116,"['Documentary', 'News']",['USA'] tt0497465,"['Comedy', 'Drama', 'Romance']","['Spain', 'USA']" tt0498353,['Horror'],"['USA', 'Czech Republic']" tt0498381,"['Drama', 'Horror', 'Mystery']",['USA'] tt0499554,"['Comedy', 'Crime']",['USA'] tt0756729,"['Comedy', 'Drama']",['USA'] tt0757361,"['Comedy', 'Drama']",['USA'] tt0758746,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0758752,"['Comedy', 'Drama', 'Romance']",['USA'] tt0758758,"['Adventure', 'Biography', 'Drama']",['USA'] tt0758774,"['Action', 'Drama', 'Thriller']","['USA', 'UK']" tt0758794,"['Drama', 'Sport']",['USA'] tt0760188,['Drama'],['USA'] tt0762073,"['Drama', 'Fantasy', 'Horror']","['South Korea', 'USA']" tt0762107,"['Comedy', 'Romance']",['USA'] tt0762125,"['Animation', 'Adventure', 'Comedy']","['Spain', 'UK', 'USA']" tt0763831,"['Comedy', 'Drama']",['USA'] tt0765429,"['Biography', 'Crime', 'Drama']","['USA', 'UK']" tt0765443,"['Action', 'Crime', 'Drama']","['UK', 'Canada', 'USA']" tt0770752,"['Action', 'Adventure', 'Comedy']",['USA'] tt0770778,"['Drama', 'Fantasy', 'Thriller']","['USA', 'Canada']" tt0770810,['Drama'],"['Canada', 'USA', 'France']" tt0770828,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'UK']" tt0775489,"['Animation', 'Drama', 'Family']","['France', 'UK']" tt0780511,['Drama'],['USA'] tt0780567,"['Comedy', 'Drama', 'Family']","['USA', 'Germany']" tt0780607,"['Horror', 'Sci-Fi', 'Thriller']",['USA'] tt0780608,['Comedy'],"['USA', 'Germany']" tt0780622,"['Comedy', 'Fantasy', 'Horror']",['USA'] tt0780653,"['Drama', 'Fantasy', 'Horror']",['USA'] tt0781008,"['Documentary', 'Short', 'Comedy']",['USA'] tt0785006,"['Comedy', 'Family']","['Germany', 'USA']" tt0785035,['Action'],['Thailand'] tt0787470,"['Comedy', 'Sport']",['USA'] tt0787474,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0787475,"['Comedy', 'Sport']",['USA'] tt0790618,"['Comedy', 'Drama']",['USA'] tt0790636,"['Biography', 'Drama']",['USA'] tt0790724,"['Action', 'Crime', 'Thriller']",['USA'] tt0790736,"['Action', 'Comedy', 'Crime']",['USA'] tt0795351,"['Horror', 'Mystery', 'Thriller']","['USA', 'Canada']" tt0795421,"['Comedy', 'Musical', 'Romance']","['USA', 'UK', 'Germany']" tt0795426,['Drama'],['USA'] tt0795461,['Comedy'],['USA'] tt0795493,"['Crime', 'Drama', 'Romance']","['USA', 'UK', 'France']" tt0796366,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Germany']" tt0800003,"['Action', 'Adventure', 'Comedy']",['USA'] tt0800039,"['Comedy', 'Drama', 'Romance']",['USA'] tt0800241,"['Crime', 'Drama', 'Mystery']","['UK', 'Germany', 'Spain', 'Lithuania']" tt0800320,"['Action', 'Adventure', 'Fantasy']","['USA', 'UK', 'Australia']" tt0802948,"['Biography', 'Crime', 'Drama']",['USA'] tt0803096,"['Action', 'Adventure', 'Fantasy']","['China', 'Canada', 'Japan', 'USA']" tt0804452,"['Comedy', 'Family', 'Music']",['USA'] tt0804497,"['Comedy', 'Drama', 'Romance']",['USA'] tt0804516,"['Crime', 'Horror', 'Thriller']",['USA'] tt0805564,"['Comedy', 'Drama', 'Romance']","['USA', 'Canada']" tt0805570,"['Horror', 'Mystery']",['USA'] tt0805619,"['Horror', 'Thriller']","['USA', 'Canada']" tt0808151,"['Action', 'Mystery', 'Thriller']","['USA', 'Italy']" tt0808265,"['Fantasy', 'Horror', 'Thriller']","['New Zealand', 'UK']" tt0810817,"['Action', 'Adventure', 'Mystery']",['USA'] tt0810819,"['Biography', 'Drama', 'Romance']","['UK', 'USA', 'Germany', 'Denmark', 'Belgium', 'Japan']" tt0811080,"['Action', 'Adventure', 'Comedy']","['USA', 'Australia', 'Germany']" tt0811138,"['Comedy', 'Romance', 'Sport']","['UK', 'Germany', 'USA']" tt0814022,"['Action', 'Crime', 'Thriller']","['USA', 'Czech Republic', 'Thailand']" tt0814075,"['Documentary', 'Crime']",['USA'] tt0814255,"['Adventure', 'Family', 'Fantasy']","['UK', 'Canada', 'USA']" tt0815230,['Comedy'],['USA'] tt0815236,"['Comedy', 'Romance']",['USA'] tt0815245,"['Drama', 'Horror', 'Mystery']","['USA', 'Canada', 'Germany']" tt0816462,"['Action', 'Adventure', 'Fantasy']",['USA'] tt0816711,"['Action', 'Adventure', 'Horror']","['USA', 'UK', 'Malta']" tt0817177,"['Comedy', 'Drama', 'Romance']",['USA'] tt0817230,"['Comedy', 'Romance']",['USA'] tt0817538,"['Comedy', 'Drama']",['USA'] tt0821642,"['Biography', 'Drama', 'Music']","['UK', 'France', 'USA']" tt0822832,"['Comedy', 'Drama', 'Family']",['USA'] tt0822847,"['Action', 'Horror', 'Thriller']",['USA'] tt0822854,"['Action', 'Drama', 'Thriller']",['USA'] tt0824747,"['Biography', 'Crime', 'Drama']",['USA'] tt0825232,"['Comedy', 'Drama']",['USA'] tt0828393,['Drama'],['USA'] tt0829150,"['Action', 'Drama', 'Fantasy']","['USA', 'UK', 'Ireland']" tt0829459,"['Biography', 'Drama', 'History']","['USA', 'UK']" tt0829482,['Comedy'],['USA'] tt0830515,"['Action', 'Adventure', 'Thriller']","['UK', 'USA']" tt0830558,"['Crime', 'Drama', 'Horror']",['USA'] tt0831887,"['Action', 'Crime', 'Fantasy']",['USA'] tt0832266,"['Comedy', 'Drama', 'Romance']","['UK', 'France', 'Germany', 'USA']" tt0834001,"['Action', 'Fantasy', 'Sci-Fi']","['USA', 'New Zealand']" tt0835418,['Comedy'],['USA'] tt0837562,"['Animation', 'Comedy', 'Family']",['USA'] tt0837563,"['Horror', 'Mystery', 'Thriller']","['USA', 'Canada']" tt0838221,"['Adventure', 'Comedy', 'Drama']",['USA'] tt0838283,['Comedy'],['USA'] tt0839880,"['Horror', 'Thriller']",['USA'] tt0840361,"['Crime', 'Drama', 'Thriller']",['USA'] tt0841046,"['Comedy', 'Drama', 'Music']",['USA'] tt0842000,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0842926,"['Comedy', 'Drama', 'Romance']",['USA'] tt0843873,"['Action', 'Adventure', 'Comedy']",['USA'] tt0844471,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0848537,"['Animation', 'Adventure', 'Family']",['USA'] tt0848557,"['Fantasy', 'Horror', 'Sci-Fi']",['USA'] tt0849470,['Comedy'],['USA'] tt0852713,"['Comedy', 'Romance']",['USA'] tt0858411,"['Comedy', 'Horror']",['USA'] tt0858479,"['Comedy', 'Drama', 'Romance']",['USA'] tt0859163,"['Action', 'Fantasy', 'Horror']","['USA', 'Germany', 'China', 'Canada']" tt0860462,['Action'],['Thailand'] tt0864761,"['Biography', 'Drama', 'History']","['UK', 'Italy', 'France', 'USA']" tt0864835,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0865556,"['Action', 'Adventure', 'Fantasy']","['USA', 'China']" tt0870111,"['Biography', 'Drama', 'History']","['UK', 'France', 'USA']" tt0870195,"['Drama', 'History', 'Romance']","['USA', 'India', 'UK']" tt0871426,"['Comedy', 'Romance']",['USA'] tt0872230,"['Horror', 'Mystery', 'Thriller']",['USA'] tt0873886,"['Action', 'Crime', 'Horror']",['USA'] tt0878804,"['Biography', 'Drama', 'Sport']",['USA'] tt0879870,"['Drama', 'Romance']",['USA'] tt0881320,"['Action', 'Adventure', 'Drama']","['USA', 'Australia']" tt0884224,"['Action', 'Comedy', 'Thriller']",['USA'] tt0884328,"['Horror', 'Sci-Fi']",['USA'] tt0884732,['Comedy'],['USA'] tt0887883,"['Comedy', 'Crime', 'Drama']","['USA', 'UK', 'France']" tt0887912,"['Drama', 'Thriller', 'War']",['USA'] tt0889573,"['Comedy', 'Drama', 'Romance']",['USA'] tt0889583,['Comedy'],"['USA', 'UK']" tt0890870,"['Horror', 'Mystery', 'Thriller']","['USA', 'Canada']" tt0891527,"['Crime', 'Drama', 'Mystery']",['USA'] tt0892318,"['Adventure', 'Comedy', 'Drama']",['USA'] tt0892769,"['Animation', 'Action', 'Adventure']",['USA'] tt0892782,"['Animation', 'Action', 'Comedy']",['USA'] tt0892791,"['Animation', 'Adventure', 'Comedy']",['USA'] tt0893412,"['Comedy', 'Drama', 'Romance']","['Mexico', 'USA']" tt0898367,['Drama'],['USA'] tt0899106,"['Drama', 'Romance']","['USA', 'Canada', 'UK']" tt0901476,"['Comedy', 'Romance']",['USA'] tt0903624,"['Adventure', 'Family', 'Fantasy']","['New Zealand', 'USA']" tt0905372,"['Horror', 'Mystery', 'Sci-Fi']","['USA', 'Canada']" tt0906665,"['Action', 'Western']",['Japan'] tt0910936,"['Action', 'Comedy', 'Crime']",['USA'] tt0913354,"['Action', 'Crime', 'Thriller']",['USA'] tt0914364,"['Action', 'Horror', 'Thriller']",['USA'] tt0918927,"['Drama', 'Mystery']",['USA'] tt0918940,"['Action', 'Adventure', 'Drama']","['UK', 'Canada', 'USA']" tt0923671,"['Horror', 'Thriller']",['USA'] tt0926084,"['Adventure', 'Family', 'Fantasy']","['UK', 'USA']" tt0928375,"['Horror', 'Thriller']",['Ireland'] tt0929618,['Comedy'],['USA'] tt0929629,"['Action', 'Adventure', 'Drama']","['Canada', 'USA']" tt0929632,['Drama'],['USA'] tt0935075,['Drama'],['USA'] tt0938283,"['Action', 'Adventure', 'Family']",['USA'] tt0942385,"['Action', 'Comedy', 'War']","['USA', 'UK', 'Germany']" tt0942903,"['Action', 'Adventure', 'Drama']","['USA', 'Canada']" tt0944835,"['Action', 'Mystery', 'Thriller']",['USA'] tt0945513,"['Action', 'Drama', 'Mystery']","['USA', 'Canada', 'France']" tt0947798,"['Drama', 'Thriller']",['USA'] tt0947810,"['Action', 'Drama', 'Thriller']","['UK', 'France', 'Spain', 'USA']" tt0948470,"['Action', 'Sci-Fi']",['USA'] tt0949731,"['Drama', 'Mystery', 'Sci-Fi']","['India', 'USA']" tt0952640,"['Animation', 'Comedy', 'Family']",['USA'] tt0955308,"['Action', 'Drama', 'History']","['USA', 'UK']" tt0959337,"['Drama', 'Romance']","['USA', 'UK']" tt0960144,['Comedy'],['USA'] tt0960835,"['Action', 'Sci-Fi', 'Thriller']",['USA'] tt0961722,['Horror'],['USA'] tt0963794,"['Fantasy', 'Horror', 'Thriller']","['USA', 'Germany', 'Australia']" tt0964517,"['Biography', 'Drama', 'Sport']",['USA'] tt0970179,"['Drama', 'Family', 'Fantasy']","['UK', 'USA', 'France']" tt0970866,"['Comedy', 'Romance']",['USA'] tt0971209,"['Drama', 'Mystery', 'Thriller']",['USA'] tt0974015,"['Action', 'Adventure', 'Fantasy']","['USA', 'Canada', 'UK']" tt0974959,['Comedy'],"['Canada', 'USA']" tt0975645,"['Biography', 'Drama', 'Romance']","['USA', 'UK']" tt0976051,"['Drama', 'Romance']","['Germany', 'USA']" tt0976222,"['Comedy', 'Drama', 'Family']",['USA'] tt0977855,"['Biography', 'Drama', 'Thriller']","['USA', 'United Arab Emirates']" tt0978764,"['Action', 'Adventure', 'Fantasy']","['USA', 'Canada']" tt0979434,['Comedy'],['USA'] tt0981072,"['Comedy', 'Drama', 'War']",['USA'] tt0981227,"['Comedy', 'Drama', 'Music']",['USA'] tt0983193,"['Animation', 'Action', 'Adventure']","['USA', 'New Zealand', 'UK']" tt0985025,"['Action', 'Fantasy', 'Horror']","['Finland', 'Iceland']" tt0985694,"['Action', 'Crime', 'Thriller']",['USA'] tt0985699,"['Drama', 'History', 'Thriller']","['USA', 'Germany']" tt0988045,"['Action', 'Adventure', 'Crime']","['USA', 'Germany', 'UK']" tt0988595,"['Comedy', 'Romance']",['USA'] tt0988849,"['Crime', 'Drama', 'Horror']",['UK'] tt0989757,"['Drama', 'Romance', 'War']",['USA'] tt0990407,"['Action', 'Comedy']",['USA'] tt0993842,"['Action', 'Drama', 'Thriller']","['USA', 'UK', 'Germany']" tt0993846,"['Biography', 'Crime', 'Drama']",['USA'] tt0995039,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt0995740,"['Drama', 'Mystery', 'Thriller']",['India'] tt0997143,['Horror'],['USA'] tt0997147,"['Action', 'Comedy', 'Sci-Fi']",['Japan'] tt1000774,"['Comedy', 'Drama', 'Romance']",['USA'] tt1001526,"['Animation', 'Action', 'Comedy']",['USA'] tt1001562,"['Comedy', 'Crime']",['USA'] tt1007028,"['Comedy', 'Romance']",['USA'] tt1007029,"['Biography', 'Drama']","['UK', 'France']" tt1013743,"['Action', 'Adventure', 'Comedy']",['USA'] tt1013752,"['Action', 'Thriller']","['USA', 'Japan']" tt1013753,"['Biography', 'Drama']",['USA'] tt10146586,['Documentary'],['USA'] tt1014763,"['Crime', 'Drama', 'History']","['Czech Republic', 'UK', 'USA', 'Russia']" tt1016268,"['Documentary', 'Biography', 'History']",['USA'] tt1017460,"['Drama', 'Horror', 'Sci-Fi']","['Canada', 'France', 'USA']" tt1019452,"['Comedy', 'Drama']","['USA', 'UK', 'France']" tt1020543,"['Action', 'Adventure', 'Comedy']",['USA'] tt1020558,"['Action', 'Drama', 'History']","['UK', 'France', 'USA']" tt1020773,"['Drama', 'Romance']","['France', 'Italy', 'Belgium', 'Iran']" tt1022603,"['Comedy', 'Drama', 'Romance']",['USA'] tt1023111,"['Action', 'Drama', 'Sport']",['USA'] tt1024648,"['Biography', 'Drama', 'Thriller']","['USA', 'UK']" tt1027747,"['Action', 'Crime', 'Drama']",['USA'] tt1028528,"['Action', 'Thriller']",['USA'] tt1031280,"['Horror', 'Sci-Fi', 'Thriller']",['USA'] tt1033575,"['Comedy', 'Drama']",['USA'] tt1033643,"['Comedy', 'Romance']",['USA'] tt1034032,"['Action', 'Sci-Fi', 'Thriller']",['USA'] tt1034303,"['Action', 'Drama', 'History']",['USA'] tt1034389,"['Action', 'Adventure', 'Drama']","['UK', 'USA']" tt1037705,"['Action', 'Adventure', 'Drama']",['USA'] tt1038686,"['Action', 'Adventure', 'Fantasy']",['USA'] tt1038919,"['Action', 'Comedy', 'Romance']",['USA'] tt1043791,['Horror'],['UK'] tt1045658,"['Comedy', 'Drama', 'Romance']",['USA'] tt1045670,"['Comedy', 'Drama', 'Romance']",['UK'] tt1046163,"['Comedy', 'Romance']",['USA'] tt1046173,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Czech Republic']" tt1051904,"['Adventure', 'Comedy', 'Family']","['USA', 'Australia']" tt1053424,"['Action', 'Adventure', 'Crime']","['Canada', 'USA']" tt1053859,"['Horror', 'Mystery', 'Thriller']","['USA', 'Japan']" tt1055292,"['Comedy', 'Drama', 'Romance']",['USA'] tt1055369,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1056026,"['Action', 'Sci-Fi']",['USA'] tt1057500,"['Biography', 'Drama', 'History']",['USA'] tt1058017,"['Comedy', 'Fantasy', 'Romance']",['USA'] tt1059932,['Romance'],['Indonesia'] tt1060277,"['Horror', 'Sci-Fi', 'Thriller']",['USA'] tt1065073,['Drama'],['USA'] tt1068242,"['Comedy', 'Drama', 'Music']",['USA'] tt10720210,['Documentary'],['USA'] tt1074638,"['Action', 'Adventure', 'Thriller']","['UK', 'USA']" tt1075746,"['Action', 'Adventure', 'Drama']",['USA'] tt1075747,"['Action', 'Drama', 'Fantasy']",['USA'] tt1077258,"['Action', 'Comedy', 'Horror']","['USA', 'Mexico']" tt1078940,['Comedy'],['USA'] tt1081935,"['Comedy', 'Drama']","['Italy', 'France']" tt1082601,"['Action', 'Crime', 'Drama']",['USA'] tt1087524,['Crime'],['USA'] tt1091191,"['Action', 'Biography', 'Drama']",['USA'] tt1091722,"['Comedy', 'Drama', 'Romance']",['USA'] tt1091863,"['Documentary', 'Biography']",['USA'] tt1092026,"['Adventure', 'Comedy', 'Sci-Fi']","['USA', 'UK']" tt1093357,"['Action', 'Adventure', 'Horror']","['USA', 'Russia']" tt1094162,"['Action', 'Adventure', 'Horror']",['USA'] tt1095217,"['Crime', 'Drama']",['USA'] tt1095442,['Drama'],['USA'] tt1097013,"['Action', 'Comedy', 'Crime']",['USA'] tt1099212,"['Drama', 'Fantasy', 'Romance']",['USA'] tt1103275,"['Drama', 'Romance']","['USA', 'France']" tt1107365,"['Animation', 'Adventure', 'Comedy']",['USA'] tt1112782,"['Action', 'Crime', 'Thriller']","['USA', 'Germany']" tt1114740,"['Action', 'Comedy', 'Crime']",['USA'] tt1116184,"['Documentary', 'Action', 'Comedy']",['USA'] tt1119646,['Comedy'],"['USA', 'Germany']" tt1120985,"['Drama', 'Romance']",['USA'] tt1121096,"['Action', 'Adventure', 'Fantasy']","['USA', 'UK', 'Canada', 'China']" tt1121931,"['Action', 'Thriller']",['USA'] tt1121977,"['Drama', 'Romance']","['USA', 'Spain']" tt1124048,"['Horror', 'Thriller']",['USA'] tt1126591,"['Drama', 'Music', 'Musical']",['USA'] tt1126618,"['Comedy', 'Drama', 'Romance']",['USA'] tt1127180,"['Horror', 'Thriller']",['USA'] tt1127896,"['Biography', 'Comedy', 'Drama']",['USA'] tt1129442,"['Action', 'Thriller']","['France', 'USA', 'Ukraine']" tt1130080,"['Biography', 'Comedy', 'Crime']",['USA'] tt1130088,['Drama'],['UK'] tt1130884,"['Mystery', 'Thriller']",['USA'] tt1131734,"['Comedy', 'Horror']","['USA', 'Canada']" tt1132130,"['Action', 'Adventure', 'Drama']",['USA'] tt1132626,"['Horror', 'Mystery', 'Thriller']","['USA', 'Canada']" tt1133985,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1133995,"['Action', 'Thriller']",['USA'] tt1134854,"['Comedy', 'Drama', 'Horror']","['USA', 'Canada']" tt1135084,"['Action', 'Crime', 'Thriller']",['USA'] tt1135487,"['Comedy', 'Crime', 'Romance']","['USA', 'Germany']" tt1135503,"['Biography', 'Drama', 'Romance']",['USA'] tt1136608,"['Action', 'Sci-Fi', 'Thriller']","['South Africa', 'USA', 'New Zealand', 'Canada']" tt1136683,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1137470,"['Comedy', 'Romance']","['USA', 'UK']" tt1139328,"['Drama', 'Mystery', 'Thriller']","['France', 'Germany', 'UK']" tt1139668,"['Drama', 'Horror', 'Mystery']",['USA'] tt1139797,"['Drama', 'Horror', 'Romance']",['Sweden'] tt1149361,"['Action', 'Comedy', 'Crime']",['France'] tt1151359,"['Comedy', 'Crime', 'Drama']",['USA'] tt1151928,"['Action', 'Sci-Fi']","['USA', 'Canada']" tt1152836,"['Biography', 'Crime', 'Drama']","['USA', 'Japan']" tt1153706,"['Action', 'Comedy', 'Music']",['USA'] tt1155056,"['Comedy', 'Romance']",['USA'] tt1155076,"['Action', 'Drama', 'Family']","['USA', 'China']" tt1155592,"['Documentary', 'Biography', 'History']","['UK', 'USA']" tt1156300,['Horror'],['USA'] tt1156398,"['Adventure', 'Comedy', 'Horror']",['USA'] tt1161449,['Action'],['Thailand'] tt1161864,"['Drama', 'Horror', 'Mystery']","['USA', 'Hungary', 'Italy']" tt1170358,"['Adventure', 'Fantasy']","['New Zealand', 'USA']" tt1172060,"['Horror', 'Sci-Fi']",['USA'] tt1172570,"['Action', 'Biography', 'Crime']","['UK', 'Cayman Islands']" tt1172994,['Horror'],['USA'] tt1174732,['Drama'],"['UK', 'USA']" tt1175491,"['Biography', 'Comedy', 'Drama']","['USA', 'Australia', 'Hong Kong', 'Switzerland', 'China']" tt1175709,"['Crime', 'Drama', 'Mystery']",['USA'] tt1179056,"['Crime', 'Drama', 'Horror']",['USA'] tt1179891,"['Horror', 'Mystery', 'Thriller']","['USA', 'Canada']" tt1179904,"['Horror', 'Mystery', 'Thriller']",['USA'] tt1179933,"['Drama', 'Horror', 'Mystery']",['USA'] tt1181791,"['Action', 'Drama', 'History']","['Germany', 'UK']" tt1182350,"['Comedy', 'Drama', 'Romance']","['USA', 'Spain']" tt1182609,"['Action', 'Thriller']","['Bulgaria', 'Germany']" tt1183733,"['Action', 'Adventure', 'Horror']",['USA'] tt1186367,"['Action', 'Thriller']","['Germany', 'USA']" tt1186830,"['Adventure', 'Biography', 'Drama']","['Spain', 'Malta', 'Bulgaria']" tt1187064,"['Fantasy', 'Mystery', 'Thriller']","['UK', 'Australia']" tt1189340,"['Crime', 'Drama', 'Thriller']",['USA'] tt1190080,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1192628,"['Animation', 'Adventure', 'Comedy']",['USA'] tt1193138,"['Comedy', 'Drama', 'Romance']",['USA'] tt1194173,"['Action', 'Adventure', 'Thriller']","['USA', 'Japan']" tt1194263,"['Drama', 'Mystery']","['USA', 'Germany', 'Poland']" tt1195478,"['Comedy', 'Romance']","['USA', 'Japan']" tt1196141,"['Comedy', 'Drama', 'Family']","['USA', 'UK']" tt1196948,"['Comedy', 'Drama', 'Romance']","['USA', 'Romania']" tt1198138,"['Drama', 'Romance', 'Thriller']",['USA'] tt1198153,"['Action', 'Drama', 'Thriller']","['Israel', 'France', 'USA']" tt1201167,"['Comedy', 'Drama']",['USA'] tt1201607,"['Adventure', 'Drama', 'Fantasy']","['UK', 'USA']" tt1204975,"['Comedy', 'Drama']",['USA'] tt1204977,"['Horror', 'Mystery', 'Thriller']",['USA'] tt1205537,"['Action', 'Drama', 'Thriller']","['USA', 'Russia']" tt1210166,"['Biography', 'Drama', 'Sport']",['USA'] tt1210801,"['Action', 'Drama', 'Thriller']",['USA'] tt1211956,"['Action', 'Thriller']",['USA'] tt1212023,['Horror'],['USA'] tt1212419,"['Drama', 'Fantasy', 'Romance']",['USA'] tt1212450,"['Crime', 'Drama']",['USA'] tt1213012,"['Animation', 'Adventure', 'Comedy']","['USA', 'India', 'Canada']" tt1213641,"['Biography', 'Drama', 'History']","['USA', 'Japan']" tt1213644,['Comedy'],['USA'] tt1213663,"['Action', 'Comedy', 'Sci-Fi']","['UK', 'USA', 'Japan']" tt1216491,"['Biography', 'Crime', 'Drama']",['USA'] tt1216492,"['Comedy', 'Romance']","['USA', 'Ireland']" tt1216496,"['Crime', 'Drama', 'Thriller']",['South Korea'] tt1217613,"['Action', 'Sci-Fi']",['USA'] tt1219289,"['Sci-Fi', 'Thriller']",['USA'] tt1219342,"['Animation', 'Action', 'Adventure']","['USA', 'Australia']" tt1219671,"['Action', 'Adventure', 'Romance']",['USA'] tt1219827,"['Action', 'Drama', 'Sci-Fi']","['USA', 'India', 'Hong Kong', 'China', 'UK']" tt1220634,"['Action', 'Adventure', 'Horror']","['Germany', 'France', 'USA', 'Canada', 'UK']" tt1220719,"['Action', 'Biography', 'Drama']","['Hong Kong', 'China']" tt1221208,"['Biography', 'Drama']",['Canada'] tt1225822,"['Comedy', 'Crime', 'Romance']",['USA'] tt1226229,"['Comedy', 'Music']",['USA'] tt1226236,"['Drama', 'Romance']",['Italy'] tt1226273,"['Crime', 'Drama', 'Mystery']","['UK', 'USA']" tt1226753,"['Drama', 'Thriller']","['USA', 'UK', 'Hungary', 'Israel']" tt1228705,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1229238,"['Action', 'Adventure', 'Thriller']","['USA', 'United Arab Emirates', 'Czech Republic', 'India', 'Canada']" tt1229340,['Comedy'],['USA'] tt1229822,"['Drama', 'Romance']","['UK', 'USA']" tt1230168,"['Biography', 'Drama']",['USA'] tt1231287,"['Comedy', 'Romance']",['USA'] tt1231583,"['Comedy', 'Drama']",['USA'] tt1231587,"['Comedy', 'Sci-Fi']",['USA'] tt1232200,['Comedy'],['USA'] tt1232783,"['Horror', 'Mystery']",['USA'] tt1232824,['Drama'],['USA'] tt1232829,"['Action', 'Comedy', 'Crime']",['USA'] tt1233219,"['Drama', 'Thriller']","['USA', 'Germany']" tt1233227,"['Horror', 'Mystery', 'Thriller']","['Canada', 'USA', 'UK', 'Australia']" tt1234654,"['Comedy', 'Drama', 'Romance']",['USA'] tt1234721,"['Action', 'Crime', 'Sci-Fi']",['USA'] tt1235522,"['Action', 'Crime', 'Drama']",['USA'] tt1235796,"['Drama', 'Mystery', 'Romance']","['Ireland', 'USA']" tt1235837,"['Animation', 'Adventure', 'Comedy']","['USA', 'Germany']" tt1237838,"['Comedy', 'Crime', 'Mystery']",['USA'] tt1240982,"['Comedy', 'Fantasy']",['USA'] tt1242618,"['Drama', 'Horror', 'Thriller']",['USA'] tt1243957,"['Action', 'Adventure', 'Crime']","['USA', 'France', 'Italy', 'UK']" tt1245112,"['Horror', 'Thriller']",['Spain'] tt1245526,"['Action', 'Comedy', 'Crime']",['USA'] tt1247640,"['Action', 'Crime', 'Thriller']",['France'] tt1250777,"['Action', 'Adventure', 'Comedy']","['UK', 'USA']" tt1251757,"['Comedy', 'Crime', 'Drama']",['USA'] tt1253596,['Comedy'],['USA'] tt1253863,"['Action', 'Drama']",['USA'] tt1255919,"['Comedy', 'Crime', 'Mystery']","['USA', 'Canada']" tt1255953,"['Drama', 'Mystery', 'War']","['Canada', 'France']" tt1258972,['Action'],"['USA', 'Hong Kong']" tt1259521,['Horror'],['USA'] tt1259571,"['Adventure', 'Drama', 'Fantasy']",['USA'] tt1261046,"['Action', 'Comedy', 'Horror']",['USA'] tt1261945,"['Comedy', 'Drama', 'Romance']",['USA'] tt1262416,"['Horror', 'Mystery']",['USA'] tt1262981,"['Comedy', 'Drama']",['USA'] tt1263670,"['Drama', 'Music', 'Romance']",['USA'] tt1265621,"['Action', 'Adventure', 'Drama']","['USA', 'Germany']" tt1265990,"['Drama', 'Thriller']",['USA'] tt1266029,"['Biography', 'Drama', 'Music']","['UK', 'Canada']" tt1266121,"['Fantasy', 'Horror']",['USA'] tt1268799,"['Adventure', 'Comedy']",['USA'] tt1270262,"['Biography', 'Drama', 'Thriller']","['Belgium', 'Netherlands']" tt1270761,"['Fantasy', 'Horror', 'Thriller']","['USA', 'Australia', 'Mexico']" tt1270792,"['Drama', 'Musical']",['USA'] tt1270797,"['Action', 'Sci-Fi', 'Thriller']","['China', 'USA']" tt1272878,"['Action', 'Comedy', 'Thriller']",['USA'] tt1273678,"['Action', 'Comedy', 'Family']",['USA'] tt1274586,"['Action', 'Drama', 'Thriller']","['Bahamas', 'USA']" tt1276419,"['Biography', 'Drama', 'History']","['Denmark', 'Sweden', 'Czech Republic', 'Germany']" tt1277737,"['Drama', 'Thriller']",['USA'] tt1277953,"['Animation', 'Adventure', 'Comedy']",['USA'] tt1278449,"['Comedy', 'Crime', 'Music']","['Sweden', 'France']" tt1279935,"['Comedy', 'Crime', 'Romance']",['USA'] tt1282140,"['Comedy', 'Drama', 'Romance']",['USA'] tt1284575,"['Comedy', 'Romance']",['USA'] tt1285009,['Horror'],"['UK', 'USA']" tt1285016,"['Biography', 'Drama']",['USA'] tt1287468,"['Action', 'Comedy', 'Family']","['USA', 'Australia']" tt1288558,"['Fantasy', 'Horror', 'Thriller']",['USA'] tt1289401,"['Action', 'Comedy', 'Fantasy']","['USA', 'Australia']" tt1290400,"['Action', 'Crime', 'Thriller']",['USA'] tt1290471,"['Action', 'Sci-Fi']",['USA'] tt1291150,"['Action', 'Adventure', 'Comedy']",['USA'] tt1291584,"['Drama', 'Sport']",['USA'] tt1293842,"['Comedy', 'Sport']",['USA'] tt1293847,"['Action', 'Adventure', 'Thriller']","['China', 'Canada', 'USA']" tt1294136,"['Crime', 'Thriller']",['USA'] tt1294688,"['Drama', 'Romance']","['USA', 'France']" tt1294699,"['Action', 'Adventure', 'Drama']",['USA'] tt1294970,"['Comedy', 'Drama']",['USA'] tt1297919,"['Action', 'Crime', 'Thriller']","['UK', 'France', 'USA']" tt1300851,"['Action', 'Crime', 'Thriller']",['USA'] tt1302011,"['Animation', 'Action', 'Adventure']",['USA'] tt1302067,"['Animation', 'Adventure', 'Comedy']","['USA', 'New Zealand']" tt1305583,"['Comedy', 'Romance']",['USA'] tt1305806,"['Drama', 'Mystery', 'Romance']","['Argentina', 'Spain']" tt1306980,"['Comedy', 'Drama', 'Romance']",['USA'] tt1307068,"['Adventure', 'Comedy', 'Drama']",['USA'] tt1311067,['Horror'],['USA'] tt1313092,"['Crime', 'Drama']",['Australia'] tt1315981,"['Drama', 'Romance']",['USA'] tt1318514,"['Action', 'Drama', 'Sci-Fi']","['USA', 'UK', 'Canada']" tt1320253,"['Action', 'Adventure', 'Thriller']","['USA', 'Bulgaria']" tt1321509,['Comedy'],['USA'] tt1321860,['Drama'],"['USA', 'United Arab Emirates']" tt1321870,"['Action', 'Crime', 'Drama']",['USA'] tt1322312,"['Comedy', 'Romance']",['USA'] tt1323594,"['Animation', 'Comedy', 'Family']","['USA', 'France']" tt1324999,"['Action', 'Adventure', 'Drama']",['USA'] tt1325004,"['Action', 'Drama', 'Fantasy']",['USA'] tt1325753,"['Animation', 'Action', 'Adventure']",['USA'] tt1326972,"['Action', 'Drama', 'History']","['China', 'Hong Kong', 'Japan', 'Taiwan', 'South Korea']" tt1327773,"['Biography', 'Drama']",['USA'] tt1328910,"['Action', 'Sci-Fi']",['USA'] tt1331307,"['Drama', 'Horror', 'Thriller']","['UK', 'USA']" tt1334512,"['Comedy', 'Romance']",['USA'] tt1334526,['Horror'],['USA'] tt1334536,"['Horror', 'Mystery', 'Thriller']",['USA'] tt1334537,"['Comedy', 'Drama', 'Romance']",['USA'] tt1335975,"['Action', 'Drama', 'Fantasy']","['USA', 'UK', 'Japan', 'Hungary']" tt1340138,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1341167,"['Comedy', 'Crime', 'Drama']","['UK', 'France']" tt1341188,"['Comedy', 'Drama', 'Romance']",['USA'] tt1341341,"['Comedy', 'Romance']",['USA'] tt1343092,"['Drama', 'Romance']","['Australia', 'USA']" tt1343727,"['Action', 'Crime', 'Sci-Fi']","['UK', 'South Africa', 'USA', 'India']" tt1350498,"['Action', 'Adventure', 'Comedy']",['USA'] tt1350512,"['Action', 'Adventure', 'Horror']",['USA'] tt1353997,"['Action', 'Adventure', 'Fantasy']",['USA'] tt1355630,"['Drama', 'Fantasy', 'Music']",['USA'] tt1355644,"['Drama', 'Romance', 'Sci-Fi']","['USA', 'Australia']" tt1356864,"['Comedy', 'Drama', 'Music']",['USA'] tt1357005,"['Short', 'Comedy']",['USA'] tt1366365,"['Action', 'Thriller']","['USA', 'Spain']" tt1368116,"['Action', 'Drama']",['Indonesia'] tt1371155,"['Biography', 'Comedy', 'Drama']",['UK'] tt1374989,"['Action', 'Comedy', 'Fantasy']","['USA', 'UK']" tt1374992,"['Drama', 'Fantasy', 'Romance']","['Canada', 'France']" tt1375666,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'UK']" tt1375670,['Comedy'],['USA'] tt1376460,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1376709,['Comedy'],['Australia'] tt1385826,"['Romance', 'Sci-Fi', 'Thriller']",['USA'] tt1385867,"['Action', 'Comedy', 'Crime']",['USA'] tt1386588,"['Action', 'Comedy', 'Crime']",['USA'] tt1386697,"['Action', 'Adventure', 'Fantasy']",['USA'] tt1386703,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Canada']" tt1386932,"['Action', 'Biography', 'Drama']","['Hong Kong', 'China']" tt1389096,"['Comedy', 'Crime', 'Thriller']",['USA'] tt1389137,"['Comedy', 'Drama', 'Family']",['USA'] tt1391116,"['Drama', 'Thriller', 'War']","['UK', 'Germany']" tt1392170,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1392190,"['Action', 'Adventure', 'Sci-Fi']","['Australia', 'USA', 'South Africa']" tt1396523,"['Action', 'Crime', 'Drama']","['Hong Kong', 'USA']" tt1398426,"['Biography', 'Drama', 'History']",['USA'] tt1399103,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1399683,"['Drama', 'Mystery']",['USA'] tt1401152,"['Action', 'Mystery', 'Thriller']","['UK', 'Germany', 'France', 'USA']" tt1403177,"['Comedy', 'Crime', 'Drama']",['USA'] tt1403865,"['Drama', 'Western']",['USA'] tt1403981,"['Drama', 'Romance']",['USA'] tt1406157,['Action'],['Japan'] tt1408101,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1408253,"['Action', 'Comedy', 'Crime']",['USA'] tt1409024,"['Action', 'Adventure', 'Comedy']","['USA', 'United Arab Emirates']" tt1411238,"['Comedy', 'Romance']",['USA'] tt1411250,"['Action', 'Adventure', 'Sci-Fi']","['Canada', 'USA']" tt1411697,['Comedy'],"['USA', 'Thailand']" tt1411704,"['Animation', 'Adventure', 'Comedy']","['USA', 'India', 'Malaysia', 'Taiwan', 'Canada', 'UK']" tt1412386,"['Comedy', 'Drama', 'Romance']","['UK', 'USA', 'United Arab Emirates']" tt1415283,"['Comedy', 'Family', 'Fantasy']","['UK', 'France', 'USA']" tt1418377,"['Action', 'Fantasy', 'Sci-Fi']","['USA', 'Australia']" tt1421051,"['Comedy', 'Drama']","['USA', 'UK', 'Italy', 'Japan']" tt1423593,['Drama'],['USA'] tt1423894,"['Comedy', 'Drama']","['Italy', 'Canada']" tt1428538,"['Action', 'Fantasy', 'Horror']","['Germany', 'USA']" tt1430607,"['Animation', 'Adventure', 'Comedy']","['UK', 'USA']" tt1430626,"['Animation', 'Adventure', 'Comedy']","['UK', 'USA']" tt1431181,"['Comedy', 'Drama']",['UK'] tt1436045,"['Action', 'Adventure', 'Drama']","['Japan', 'UK']" tt1436432,"['Action', 'Adventure', 'Drama']",['USA'] tt1436562,"['Animation', 'Adventure', 'Comedy']","['USA', 'Brazil']" tt1438254,"['Drama', 'Fantasy', 'Romance']","['USA', 'Canada']" tt1440129,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1440161,"['Comedy', 'Drama', 'Fantasy']",['USA'] tt1440728,"['Crime', 'Drama', 'Thriller']","['USA', 'UK']" tt1440732,"['Crime', 'Drama', 'History']","['UK', 'Italy']" tt1446192,"['Animation', 'Action', 'Adventure']",['USA'] tt1448755,"['Action', 'Thriller']","['UK', 'Australia']" tt1450321,"['Comedy', 'Crime', 'Drama']","['UK', 'Germany', 'Sweden', 'Belgium', 'USA']" tt1452628,"['Horror', 'Mystery', 'Thriller']",['USA'] tt1453403,"['Crime', 'Drama']",['USA'] tt1456635,"['Comedy', 'Drama', 'Sport']","['USA', 'Canada']" tt1456661,"['Action', 'Drama', 'History']","['Hong Kong', 'China']" tt1457765,"['Drama', 'Horror', 'Mystery']",['USA'] tt1458175,"['Action', 'Crime', 'Drama']","['USA', 'France']" tt1462041,"['Drama', 'Mystery', 'Thriller']","['USA', 'Canada']" tt1462758,"['Drama', 'Mystery', 'Thriller']",['Spain'] tt1465522,"['Comedy', 'Horror']",['Canada'] tt1469304,"['Action', 'Comedy', 'Crime']","['UK', 'China', 'USA']" tt1470023,"['Action', 'Comedy', 'Romance']",['USA'] tt1473801,"['Comedy', 'Romance']",['USA'] tt1477076,"['Adventure', 'Horror', 'Mystery']","['Canada', 'USA']" tt1477834,"['Action', 'Adventure', 'Fantasy']","['USA', 'Australia']" tt1477855,"['Biography', 'Comedy', 'Drama']",['UK'] tt1478338,"['Comedy', 'Romance']",['USA'] tt1479847,"['Action', 'Adventure', 'Drama']",['USA'] tt1480295,"['Action', 'Drama', 'Thriller']","['USA', 'Belgium', 'Bulgaria']" tt1482459,"['Animation', 'Adventure', 'Comedy']","['USA', 'France']" tt1483013,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1486185,"['Fantasy', 'Horror', 'Mystery']","['USA', 'Canada']" tt1486190,"['Comedy', 'Drama', 'Romance']",['UK'] tt1488555,"['Comedy', 'Fantasy']",['USA'] tt1489889,"['Action', 'Comedy', 'Crime']","['USA', 'China']" tt1491044,"['Biography', 'Crime', 'Drama']",['USA'] tt1492842,"['Drama', 'Thriller']",['USA'] tt1496025,"['Action', 'Drama', 'Fantasy']","['USA', 'Canada']" tt1496422,"['Crime', 'Drama', 'Mystery']",['USA'] tt1499658,"['Comedy', 'Crime']",['USA'] tt1501652,"['Fantasy', 'Mystery', 'Romance']",['USA'] tt1502404,"['Action', 'Fantasy', 'Thriller']",['USA'] tt1502407,"['Horror', 'Thriller']",['USA'] tt1504320,"['Biography', 'Drama', 'History']","['UK', 'USA', 'Australia']" tt1507566,"['Crime', 'Mystery', 'Thriller']",['USA'] tt1509767,"['Action', 'Adventure', 'History']","['USA', 'Germany', 'France', 'UK']" tt1517489,"['Action', 'Adventure', 'Comedy']",['USA'] tt1519461,"['Horror', 'Mystery', 'Sci-Fi']",['USA'] tt1521787,"['Horror', 'Mystery', 'Thriller']",['USA'] tt1524575,"['Horror', 'Thriller']",['USA'] tt1527186,"['Drama', 'Sci-Fi']","['Denmark', 'Sweden', 'France', 'Germany']" tt1528854,"['Comedy', 'Family']",['USA'] tt1529572,"['Crime', 'Drama', 'Thriller']",['USA'] tt1531663,['Drama'],['USA'] tt1531911,"['Sci-Fi', 'Thriller', 'War']",['USA'] tt1532503,"['Comedy', 'Drama', 'Romance']",['USA'] tt1535108,"['Action', 'Drama', 'Sci-Fi']","['USA', 'Mexico', 'Canada']" tt1535109,"['Biography', 'Crime', 'Drama']",['USA'] tt1536044,['Horror'],['USA'] tt1536410,"['Crime', 'Drama', 'Mystery']","['USA', 'France', 'Canada', 'UK']" tt1538819,"['Action', 'Crime', 'Thriller']",['Turkey'] tt1540011,"['Horror', 'Mystery', 'Thriller']","['Canada', 'USA']" tt1540115,['Documentary'],['USA'] tt1542344,"['Biography', 'Drama']","['USA', 'UK', 'France']" tt1545098,"['Documentary', 'Music']",['USA'] tt1549920,"['Action', 'Thriller']",['USA'] tt1551621,"['Action', 'Romance']",['Thailand'] tt1554091,"['Drama', 'Romance']",['USA'] tt1557769,"['Biography', 'Comedy', 'Crime']",['USA'] tt1563738,"['Drama', 'Romance']","['USA', 'UK']" tt1563742,"['Comedy', 'Romance']","['USA', 'Mexico']" tt1564367,"['Comedy', 'Romance']",['USA'] tt1564585,"['Action', 'Sci-Fi', 'Thriller']",['USA'] tt1568338,"['Action', 'Adventure', 'Crime']",['USA'] tt1568346,"['Crime', 'Drama', 'Mystery']","['USA', 'Sweden', 'Norway']" tt1570728,"['Comedy', 'Drama', 'Romance']",['USA'] tt1571249,"['Comedy', 'Drama', 'Romance']",['USA'] tt1572315,"['Horror', 'Thriller']",['USA'] tt1572491,"['Comedy', 'Drama', 'Horror']","['Spain', 'France']" tt1576379,"['Animation', 'Adventure', 'Family']","['Argentina', 'USA']" tt1578275,"['Comedy', 'Drama']",['USA'] tt1578882,"['Action', 'Crime', 'Fantasy']",['USA'] tt1582248,"['Biography', 'Drama']",['USA'] tt1582465,"['Adventure', 'Comedy', 'Drama']",['USA'] tt1583420,"['Comedy', 'Drama', 'Romance']",['USA'] tt1583421,"['Action', 'Adventure', 'Sci-Fi']",['USA'] tt1584016,"['Documentary', 'Drama', 'Mystery']",['USA'] tt1584733,['Horror'],['USA'] tt1586261,"['Horror', 'Mystery', 'Thriller']",['USA'] tt1586265,"['Comedy', 'Drama', 'Romance']",['USA'] tt1587807,"['Action', 'Adventure', 'Comedy']",['USA'] tt1588170,"['Action', 'Crime', 'Drama']",['South Korea'] tt1588173,"['Comedy', 'Horror', 'Romance']","['USA', 'Canada']" tt1588337,"['Drama', 'History']",['France'] tt1592281,"['Comedy', 'Drama']","['Canada', 'Spain', 'Japan']" tt1592873,"['Comedy', 'Drama', 'Romance']",['USA'] tt1594562,"['Drama', 'Horror', 'Mystery']",['USA'] tt1595656,"['Drama', 'Romance']",['USA'] tt1596343,"['Action', 'Adventure', 'Thriller']",['USA'] tt1596345,"['Biography', 'Drama', 'Sport']",['USA'] tt1596346,"['Biography', 'Drama', 'Family']",['USA'] tt1596350,"['Action', 'Comedy', 'Romance']",['USA'] tt1596363,"['Biography', 'Comedy', 'Drama']",['USA'] tt1598828,"['Action', 'Comedy', 'Crime']",['USA'] tt1599348,"['Action', 'Thriller']","['South Africa', 'Japan', 'USA']" tt1600195,"['Action', 'Mystery', 'Thriller']",['USA'] tt1602098,"['Drama', 'Romance']","['UK', 'Ireland', 'France', 'USA']" tt1602472,"['Comedy', 'Drama', 'Romance']","['France', 'Germany', 'Belgium']" tt1605630,['Comedy'],['USA'] tt1610528,"['Action', 'Adventure', 'Drama']",['USA'] tt1612774,"['Comedy', 'Fantasy', 'Horror']","['France', 'Angola']" tt1614989,"['Action', 'Crime', 'Thriller']","['Norway', 'Sweden', 'Denmark', 'Germany']" tt1615091,"['Adventure', 'Sci-Fi', 'Thriller']","['Germany', 'South Africa', 'USA']" tt1615147,"['Drama', 'Thriller']",['USA'] tt1615480,"['Comedy', 'Drama']","['USA', 'Mexico']" tt1617661,"['Action', 'Adventure', 'Sci-Fi']","['USA', 'Australia']" tt1618442,"['Action', 'Adventure', 'Fantasy']","['USA', 'China', 'Canada']" tt1621045,"['Comedy', 'Romance']",['USA'] tt1621046,"['Biography', 'Drama']","['USA', 'Mexico']" tt1622979,"['Horror', 'Thriller']","['USA', 'Canada', 'Singapore', 'Hong Kong']" tt1623288,"['Animation', 'Adventure', 'Comedy']",['USA'] tt1623745,['Drama'],['USA'] tt1627497,['Drama'],[] tt1628841,"['Action', 'Adventure', 'Sci-Fi']",[] tt1629705,"['Action', 'Adventure', 'Western']",[] tt1630564,"['Action', 'Crime', 'Thriller']",['Canada'] tt1632708,"['Comedy', 'Romance']",[] tt1633356,"['Horror', 'Thriller']",[] tt1634121,"['Fantasy', 'Horror', 'Thriller']","['USA', 'UK', 'Spain']" tt1634122,"['Action', 'Adventure', 'Comedy']","['USA', 'France', 'UK']" tt1636629,"['Action', 'Adventure', 'Fantasy']",[] tt1637706,"['Comedy', 'Drama']",['USA'] tt1637725,['Comedy'],[] tt1640459,"['Action', 'Comedy', 'Horror']",[] tt1640484,"['Comedy', 'Drama']",[] ================================================ FILE: data/metadata/movies.csv ================================================ imdbid,title,year tt1707386,Les Misérables,2012.0 tt6398184,Downton Abbey,2019.0 tt6324278,Abominable,2019.0 tt0448115,Shazam!,2019.0 tt6343314,Creed II,2018.0 tt5013056,Dunkirk,2017.0 tt0109288,Blankman,1994.0 tt7343762,Good Boys,2019.0 tt6095472,The Angry Birds Movie 2,2019.0 tt2709692,The Grinch,2018.0 tt5109784,Mother!,2017.0 tt0077288,La Cage aux Folles,1978.0 tt0069995,Don't Look Now,1973.0 tt0070666,Serpico,1973.0 tt2561572,Get Hard,2015.0 tt0408306,Munich,2005.0 tt7547410,Dora and the Lost City of Gold,2019.0 tt0071402,Death Wish,1974.0 tt0116225,Escape from L.A.,1996.0 tt0092493,Crocodile Dundee II,1988.0 tt0082782,My Bloody Valentine,1981.0 tt0070016,Charlotte's Web,1973.0 tt0073440,Nashville,1975.0 tt5952594,The Mustang,2019.0 tt0118688,Batman & Robin,1997.0 tt2599716,Jing cha gu shi 2013,2013.0 tt8079248,Yesterday,2019.0 tt4532826,Robin Hood,2018.0 tt5164214,Ocean's Eight,2018.0 tt0058672,Topkapi,1964.0 tt2495118,Yip Man: Jung gik yat zin,2013.0 tt7634968,What Men Want,2019.0 tt6017942,Kin,2018.0 tt0046754,The Barefoot Contessa,1954.0 tt1001526,Megamind,2010.0 tt2888046,Ip Man 3,2015.0 tt1860353,Turbo,2013.0 tt1386932,Ip Man 2,2010.0 tt0097388,Friday the 13th Part VIII: Jason Takes Manhattan,1989.0 tt1220719,Ip Man,2008.0 tt8695030,The Dead Don't Die,2019.0 tt0045920,It Came from Outer Space,1953.0 tt7958736,Ma,2019.0 tt2639336,Greta,2018.0 tt0068909,Man of La Mancha,1972.0 tt10720210,Buzz,2019.0 tt6212136,Paper Year,2018.0 tt7334528,Uncle Drew,2018.0 tt8426112,Pondemonium 3,2018.0 tt6806448,Fast & Furious: Hobbs & Shaw,2019.0 tt8426846,Pondemonium 2,2018.0 tt0092605,Baby Boom,1987.0 tt7207158,Pondemonium,2017.0 tt2872518,The Shack,2017.0 tt0095179,Friday the 13th Part VII: The New Blood,1988.0 tt2992146,Di Renjie: Shen du long wang,2013.0 tt1563742,Overboard,2018.0 tt4795124,How to Be a Latin Lover,2017.0 tt6663582,The Spy Who Dumped Me,2018.0 tt5186608,I Can I Will I Did,2017.0 tt0091080,Friday the 13th Part VI: Jason Lives,1986.0 tt9251598,Penguin League,2019.0 tt0332375,Saved!,2004.0 tt3887158,The Legend of King Solomon,2017.0 tt1846589,Hunter Killer,2018.0 tt7401588,Instant Family,2018.0 tt4530422,Overlord,2018.0 tt0104573,Juice,1992.0 tt0087298,Friday the 13th: The Final Chapter,1984.0 tt0109447,Clifford,1994.0 tt0080487,Caddyshack,1980.0 tt7282468,Burning,2018.0 tt6777338,The Villainess,2017.0 tt7040874,A Simple Favour,2018.0 tt6371588,The Song of Sway Lake,2018.0 tt7752126,Brightburn,2019.0 tt0455857,When a Stranger Calls,2006.0 tt0110367,Little Women,1994.0 tt0046816,The Caine Mutiny,1954.0 tt0060429,Frankie and Johnny,1966.0 tt0060438,A Funny Thing Happened on the Way to the Forum,1966.0 tt0104009,Cool World,1992.0 tt5537600,Susanne Bartsch: On Top,2017.0 tt2066051,Rocketman,2019.0 tt4911996,Goldstone,2016.0 tt2283336,Men in Black: International,2019.0 tt0369441,Fun with Dick and Jane,2005.0 tt6466464,The Monkey King 3,2018.0 tt4591310,Xi you ji zhi: Sun Wukong san da Baigu Jing,2016.0 tt7275200,Fishtales 2,2017.0 tt0092948,Eddie Murphy: Raw,1987.0 tt6212478,American Animals,2018.0 tt6320628,Spider-Man: Far from Home,2019.0 tt6857112,Us,2019.0 tt0155711,Flawless,1999.0 tt2025526,Choi-jong-byeong-gi hwal,2011.0 tt1456661,Jing wu feng yun: Chen Zhen,2010.0 tt1999890,Hell Fest,2018.0 tt0113464,Jeffrey,1995.0 tt3531824,Nerve,2016.0 tt7042862,The Man Who Killed Hitler and Then the Bigfoot,2018.0 tt0083972,Friday the 13th: Part III,1982.0 tt4761916,Unfriended: Dark Web,2018.0 tt8726116,Huan tu,2018.0 tt9251718,Pixy Dragons,2019.0 tt5113040,The Secret Life of Pets 2,2019.0 tt7073518,7 from Etheria,2017.0 tt0418819,Land of the Dead,2005.0 tt0085970,Mr. Mum,1983.0 tt6146586,John Wick: Chapter 3 - Parabellum,2019.0 tt0096256,They Live,1988.0 tt8155288,Happy Death Day 2U,2019.0 tt0289765,Red Dragon,2002.0 tt3281548,Little Women,2019.0 tt5649108,Thoroughbreds,2017.0 tt7287136,Blueprint,2017.0 tt4666228,Propeller,2015.0 tt5968394,Captive State,2019.0 tt0837563,Pet Sematary,2019.0 tt5599818,Kor,2016.0 tt3391782,Everyday Rebellion,2013.0 tt0098084,Pet Sematary,1989.0 tt6428676,Wonder Park,2019.0 tt2267858,You Are Driving Me Crazy,2012.0 tt6495770,Action Point,2018.0 tt0106220,Addams Family Values,1993.0 tt0117894,Thinner,1996.0 tt9428920,Something From Nothing,2016.0 tt5596104,The Ashram,2018.0 tt7014006,Eighth Grade,2018.0 tt3576060,Point and Shoot,2014.0 tt3206798,Lola's Last Letter,2016.0 tt6958014,Duck Butter,2018.0 tt6921996,Johnny English 3,2018.0 tt5610554,Tully,2018.0 tt0397535,Memoirs of a Geisha,2005.0 tt4092422,Love Is Thicker Than Water,2016.0 tt2798920,Annihilation,2018.0 tt7575702,Monsterland 2,2019.0 tt4953610,The Purging Hour,2016.0 tt0114608,Tales from the Crypt: Demon Knight,1995.0 tt7043070,Strange Events,2017.0 tt0455760,Dead Silence,2007.0 tt5886046,Escape Room,2019.0 tt5941692,Miss Bala,2019.0 tt3080844,Crocodile Gennadiy,2015.0 tt5160154,The Pass,2016.0 tt6205872,Assassination Nation,2018.0 tt0864835,Mr. Peabody & Sherman,2014.0 tt2582784,Flower,2017.0 tt0245429,Spirited Away,2001.0 tt5912454,Blue Jay,2016.0 tt0424095,Flushed Away,2006.0 tt2518848,500 MPH Storm,2013.0 tt0120587,Antz,1998.0 tt3120508,Bone Alone,2013.0 tt0110366,The Little Rascals,1994.0 tt6644200,A Quiet Place,2018.0 tt1628841,Independence Day: Resurgence,2016.0 tt4520924,Beauty Mark,2017.0 tt1343092,The Great Gatsby,2013.0 tt3626442,Björk: Biophilia Live,2014.0 tt3986978,Along for the Ride,2016.0 tt1210166,Moneyball,2011.0 tt2401878,Anomalisa,2015.0 tt2385752,Modern Life Is Rubbish,2017.0 tt1230168,Same Kind of Different as Me,2017.0 tt2368619,Bastille Day,2016.0 tt5081618,Sacred Blood,2015.0 tt6857166,Book Club,2018.0 tt5338644,Madame Hyde,2017.0 tt0318155,Looney Tunes: Back in Action,2003.0 tt2991532,The Bell Witch Haunting,2013.0 tt0093756,Police Academy 4: Citizens on Patrol,1987.0 tt6981634,Wanderland,2018.0 tt3597400,Just Eat It: A Food Waste Story,2014.0 tt6149802,The Relationtrip,2017.0 tt5167174,Rainbow Time,2016.0 tt0087928,Police Academy,1984.0 tt1791528,Inherent Vice,2014.0 tt3084904,Ovum,2015.0 tt2439946,40 Days and Nights,2012.0 tt5657846,Daddy's Home 2,2017.0 tt5700672,Train to Busan,2016.0 tt3540136,Zhan lang,2015.0 tt3922754,Ardennes Fury,2014.0 tt6015706,China Salesman,2017.0 tt1068242,Footloose,2011.0 tt2186712,Long Nights Short Mornings,2016.0 tt3261182,The Lonely Italian,2016.0 tt5354458,Lake on Fire,2016.0 tt2296777,Sherlock Gnomes,2018.0 tt4701182,Bumblebee,2018.0 tt6215044,Oceans Rising,2017.0 tt5460416,Active Adults,2017.0 tt1411238,No Strings Attached,2011.0 tt3715296,Sex Guaranteed,2017.0 tt5039994,Dismissed,2017.0 tt0113957,The Net,1995.0 tt2693580,Miss Stevens,2016.0 tt1869315,Born Bad,2011.0 tt1972591,King Arthur: Legend of the Sword,2017.0 tt5716380,Thumper,2017.0 tt0081573,Superman II,1980.0 tt1907668,Flight,2012.0 tt0185431,Little Nicky,2000.0 tt0096101,Short Circuit 2,1988.0 tt1258972,The Man with the Iron Fists,2012.0 tt0892791,Shrek Forever After,2010.0 tt3607812,The Sheik,2014.0 tt0448694,Puss in Boots,2011.0 tt8804688,Connect,2019.0 tt1192628,Rango,2011.0 tt0120630,Chicken Run,2000.0 tt1277953,Madagascar 3: Europe's Most Wanted,2012.0 tt0413267,Shrek the Third,2007.0 tt0481499,The Croods,2013.0 tt0138749,The Road to El Dorado,2000.0 tt7399158,Baby Fever,2017.0 tt1694020,The Guilt Trip,2012.0 tt0097778,Look Who's Talking,1989.0 tt0479952,Madagascar: Escape 2 Africa,2008.0 tt1911658,Penguins of Madagascar,2014.0 tt7454138,Elias og Storegaps Hemmelighet,2017.0 tt0298148,Shrek 2,2004.0 tt0312528,The Cat in the Hat,2003.0 tt7575480,Penguin Rescue,2018.0 tt5667482,Izzie's Way Home,2016.0 tt6499752,Upgrade,2018.0 tt4943934,Martian Land,2015.0 tt2196430,Alien Origin,2012.0 tt0884732,The Wedding Ringer,2015.0 tt0279493,Undercover Brother,2002.0 tt0763831,A Thousand Words,2012.0 tt1321509,Death at a Funeral,2010.0 tt0168501,The Best Man,1999.0 tt1640484,Jumping the Broom,2011.0 tt0081562,Stir Crazy,1980.0 tt0113845,Money Train,1995.0 tt0297181,I Spy,2002.0 tt7108976,Jo-seon-myeong-tamjeong: Heupyeolgoemaui bimil,2018.0 tt6231588,Sinbad and the War of the Furies,2016.0 tt6823368,Glass,2019.0 tt1091863,With Great Power: The Stan Lee Story,2010.0 tt7745068,My Hero Academia: Two Heroes,2018.0 tt2436386,Project Almanac,2015.0 tt0099582,Flatliners,1990.0 tt0033553,Dr. Jekyll and Mr. Hyde,1941.0 tt0190865,Vertical Limit,2000.0 tt0059245,The Greatest Story Ever Told,1965.0 tt4288674,It Came from the Desert,2017.0 tt8671462,Invoking 5,2018.0 tt0120794,The Prince of Egypt,1998.0 tt0095497,The Last Temptation of Christ,1988.0 tt0490215,Silence,2016.0 tt5582876,Ben Hur,2016.0 tt1411704,Hop,2011.0 tt0101329,An American Tail: Fievel Goes West,1991.0 tt5112578,Super Dark Times,2017.0 tt0970179,Hugo,2011.0 tt0085248,The Black Stallion Returns,1983.0 tt0093999,Snow White,1987.0 tt7616798,A Dog's Way Home,2019.0 tt3606888,A Street Cat Named Bob,2016.0 tt0103786,Beethoven,1992.0 tt7008872,Boy Erased,2018.0 tt2018111,And Then I Go,2017.0 tt1645170,The Dictator,2012.0 tt3553442,Whiskey Tango Foxtrot,2016.0 tt4225696,I Was a Teenage Wereskunk,2016.0 tt4217392,Kung Fu Yoga,2017.0 tt3228302,Kung Fu Elliot,2014.0 tt2839312,Barrio Brawler,2013.0 tt4537896,White Boy Rick,2018.0 tt2165735,Du zhan,2012.0 tt5177088,The Girl in the Spider's Web,2018.0 tt1255919,Holmes & Watson,2018.0 tt1758810,The Snowman,2017.0 tt4504438,Dream/Killer,2015.0 tt7074886,The Front Runner,2018.0 tt1477834,Aquaman,2018.0 tt1596363,The Big Short,2015.0 tt4925292,Lady Bird,2017.0 tt1663143,Fun Size,2012.0 tt1817771,Freaks of Nature,2015.0 tt5734576,The Possession of Hannah Grace,2018.0 tt5173032,Buster's Mal Heart,2016.0 tt5664636,Goosebumps 2: Haunted Halloween,2018.0 tt2267968,Kung Fu Panda 3,2016.0 tt0090633,An American Tail,1986.0 tt2832470,Dead Snow 2,2014.0 tt5938084,BuyBust,2018.0 tt0841046,Walk Hard: The Dewey Cox Story,2007.0 tt1302011,Kung Fu Panda 2,2011.0 tt7349662,BlacKkKlansman,2018.0 tt6966692,Green Book,2018.0 tt2119543,The House with a Clock in Its Walls,2018.0 tt4244998,Alpha,2018.0 tt1270797,Venom,2018.0 tt3766354,The Equalizer 2,2018.0 tt4633694,Spider-Man: Into the Spider-Verse,2018.0 tt7668870,Searching,2018.0 tt0181316,Blue Streak,1999.0 tt3450650,Paul Blart: Mall Cop 2,2015.0 tt0095647,Mississippi Burning,1988.0 tt0092563,Angel Heart,1987.0 tt1213641,First Man,2018.0 tt2671706,Fences,2016.0 tt0057251,Lilies of the Field,1963.0 tt1285009,The Strangers: Prey at Night,2018.0 tt0102960,Sometimes They Come Back,1991.0 tt0470993,Crazy Eights,2006.0 tt1428538,Hansel & Gretel: Witch Hunters,2013.0 tt5481984,Sinister Squad,2016.0 tt0365957,You Got Served,2004.0 tt4145324,Bound,2015.0 tt6781982,Night School,2018.0 tt2937696,Everybody Wants Some!!,2016.0 tt0090685,Back to School,1986.0 tt6911608,Mamma Mia! Here We Go Again,2018.0 tt3640424,Allied,2016.0 tt0427152,Dinner for Schmucks,2010.0 tt0077504,The End,1978.0 tt0111143,The Shadow,1994.0 tt0117107,Mulholland Falls,1996.0 tt0281686,Bubba Ho-Tep,2002.0 tt0089489,Lifeforce,1985.0 tt2042447,The Amityville Haunting,2011.0 tt1502407,Halloween,2018.0 tt6133466,The First Purge,2018.0 tt4786282,Lights Out,2016.0 tt1980209,Pain & Gain,2013.0 tt0479884,Crank,2006.0 tt5734548,Troy the Odyssey,2017.0 tt0409847,Cowboys & Aliens,2011.0 tt1335975,47 Ronin,2013.0 tt0076239,Joyride,1977.0 tt2543164,Arrival,2016.0 tt0134983,Supernova,2000.0 tt0062622,2001: A Space Odyssey,1968.0 tt0074559,Future World,1976.0 tt0983193,The Adventures of Tintin: The Secret of the Unicorn,2011.0 tt2279373,The SpongeBob Movie: Sponge Out of Water,2015.0 tt3095734,Monster Trucks,2016.0 tt2202750,Santa's Little Yelpers,2012.0 tt3860916,Cargo,2017.0 tt0938283,The Last Airbender,2010.0 tt0082348,Excalibur,1981.0 tt0026714,A Midsummer Night's Dream,1935.0 tt4912910,Mission: Impossible - Fallout,2018.0 tt1205537,Jack Ryan: Shadow Recruit,2014.0 tt2538128,100 Degrees Below Zero,2013.0 tt0101452,Bill & Ted's Bogus Journey,1991.0 tt0109045,"The Adventures of Priscilla, Queen of the Desert",1994.0 tt2136808,Celebrity Sex Tape,2012.0 tt0058586,A Shot in the Dark,1964.0 tt0078163,Revenge of the Pink Panther,1978.0 tt0051786,It! The Terror from Beyond Space,1958.0 tt5160954,The 5th Kind,2017.0 tt1679335,Trolls,2016.0 tt8560130,Space Guardians 2,2018.0 tt6408946,Easter Bunny Adventure,2017.0 tt9004516,Zoo Wars 2,2019.0 tt5936438,Star Paws,2016.0 tt0312004,The Curse of the Were-Rabbit,2005.0 tt3604958,East Jerusalem/West Jerusalem,2014.0 tt5974388,In Between,2016.0 tt1928329,Linhas de Wellington,2012.0 tt0064395,Guns of the Magnificent Seven,1969.0 tt5091014,Jasper Jones,2017.0 tt1492842,Forgetting the Girl,2012.0 tt4779682,The Meg,2018.0 tt7681902,Won't You Be My Neighbor?,2018.0 tt6599064,L'Opéra,2017.0 tt2833768,Theory of Obscurity: A Film About the Residents,2015.0 tt0389790,Bee Movie,2007.0 tt5363648,Fishtales,2016.0 tt1235522,Broken City,2013.0 tt0102388,The Man in the Moon,1991.0 tt5758778,Skyscraper,2018.0 tt1268799,A Very Harold & Kumar 3D Christmas,2011.0 tt1951261,The Hangover Part III,2013.0 tt4738802,That's Not Me,2017.0 tt2767266,The Director: An Evolution in Three Acts,2013.0 tt7137846,Breaking In,2018.0 tt7260048,Outside In,2017.0 tt2309260,The Gallows,2015.0 tt6883152,The Devil and Father Amorth,2017.0 tt5725894,Ghosthunters,2016.0 tt0095990,Return of the Living Dead: Part II,1988.0 tt5435476,Tilt,2017.0 tt0085470,Easy Money,1983.0 tt6580394,The Fast and the Fierce,2017.0 tt3399112,No No: A Dockumentary,2014.0 tt0061512,Cool Hand Luke,1967.0 tt0195714,Final Destination,2000.0 tt0083642,The Best Little Whorehouse in Texas,1982.0 tt8033592,Us and Them,2018.0 tt0111686,Wes Craven's New Nightmare,1994.0 tt0101917,Freddy's Dead: The Final Nightmare,1991.0 tt0417148,Snakes on a Plane,2006.0 tt0102266,The Last Boy Scout,1991.0 tt1037705,The Book of Eli,2010.0 tt1690991,Nijntje de film,2013.0 tt7424200,Teen Titans GO! to the Movies,2018.0 tt5639446,Duplicate,2018.0 tt3874544,The Boss Baby,2017.0 tt0061791,How to Succeed in Business Without Really Trying,1967.0 tt0126029,Shrek,2001.0 tt0974015,Justice League,2017.0 tt2126355,San Andreas,2015.0 tt0351283,Madagascar,2005.0 tt0441773,Kung Fu Panda,2008.0 tt4624424,Storks,2016.0 tt1935859,Miss Peregrine's Home for Peculiar Children,2016.0 tt0063829,"Yours, Mine and Ours",1968.0 tt1446192,Rise of the Guardians,2012.0 tt0083767,Creepshow,1982.0 tt0082250,Death Wish II,1982.0 tt3230934,No Control,2015.0 tt0245803,Bulletproof Monk,2003.0 tt0060921,The Russians Are Coming! The Russians Are Coming!,1966.0 tt0088915,Chorus Line,1985.0 tt0094118,Teen Wolf Too,1987.0 tt0892782,Monsters vs. Aliens,2009.0 tt2091256,Captain Underpants: The First Epic Movie,2017.0 tt0062803,Chitty Chitty Bang Bang,1968.0 tt1646971,How to Train Your Dragon 2,2014.0 tt0892769,How to Train Your Dragon,2010.0 tt7690670,Superfly,2018.0 tt0067741,Shaft,1971.0 tt0095348,I'm Gonna Git You Sucka,1988.0 tt0111161,The Shawshank Redemption,1994.0 tt0051525,The Defiant Ones,1958.0 tt0313443,Out of Time,2003.0 tt0087800,A Nightmare on Elm Street,1984.0 tt0089901,Remo: Unarmed and Dangerous,1985.0 tt5220122,Hotel Transylvania 3: A Monster Vacation,2018.0 tt1179056,A Nightmare on Elm Street,2010.0 tt6772950,Truth or Dare,2018.0 tt1540011,Blair Witch,2016.0 tt2660888,Star Trek Beyond,2016.0 tt0078346,Superman,1978.0 tt0114069,Outbreak,1995.0 tt0092710,Burglar,1987.0 tt0102526,New Jack City,1991.0 tt0106455,Boiling Point,1993.0 tt2404233,Gods of Egypt,2016.0 tt0104265,Final Analysis,1992.0 tt3110958,Now You See Me 2,2016.0 tt0101984,Guilty by Suspicion,1991.0 tt1411697,The Hangover Part II,2011.0 tt1119646,The Hangover,2009.0 tt5052474,Sicario: Day of the Soldado,2018.0 tt0112401,Assassins,1995.0 tt0111255,The Specialist,1994.0 tt2557478,Pacific Rim: Uprising,2018.0 tt0293815,Friday After Next,2002.0 tt2531344,Blockers,2018.0 tt3393786,Jack Reacher: Never Go Back,2016.0 tt0790724,Jack Reacher,2012.0 tt1055292,Life as We Know It,2010.0 tt1322312,Going the Distance,2010.0 tt0419843,In the Land of Women,2007.0 tt1340138,Terminator Genisys,2015.0 tt0090859,Cobra,1986.0 tt1469304,Baywatch,2017.0 tt0095188,Funny Farm,1988.0 tt4881806,Jurassic World: Fallen Kingdom,2018.0 tt1179933,10 Cloverfield Lane,2016.0 tt2118624,The Final Girls,2015.0 tt0822847,Priest,2011.0 tt2304933,The 5th Wave,2016.0 tt3862750,The Perfect Guy,2015.0 tt1198138,Obsessed,2009.0 tt2011159,No Good Deed,2014.0 tt2381249,Mission: Impossible - Rogue Nation,2015.0 tt0419706,Doom,2005.0 tt0483607,Doomsday,2008.0 tt0482606,The Strangers,2008.0 tt7518466,Conor McGregor: Notorious,2017.0 tt0795421,Mamma Mia!,2008.0 tt5308322,Happy Death Day,2017.0 tt5776858,Phantom Thread,2017.0 tt7109844,Neat: The Story of Bourbon,2018.0 tt4542660,We Are Blood,2015.0 tt2527336,Star Wars: Episode VIII - The Last Jedi,2017.0 tt5117670,Peter Rabbit,2018.0 tt6000478,"Roman J. Israel, Esq.",2017.0 tt6116682,The Rape of Recy Taylor,2017.0 tt4572792,The Book of Henry,2017.0 tt5325030,My Art,2016.0 tt1578275,The Dilemma,2011.0 tt3957170,Gun Runners,2015.0 tt0455944,The Equalizer,2014.0 tt3532216,American Made,2017.0 tt0462504,Rescue Dawn,2006.0 tt0102316,Little Man Tate,1991.0 tt0056264,Mutiny on the Bounty,1962.0 tt4555426,Darkest Hour,2017.0 tt0077572,Force 10 from Navarone,1978.0 tt5719108,The War Show,2016.0 tt0104815,El mariachi,1992.0 tt0066448,There Was a Crooked Man...,1970.0 tt0059803,Tiempo de morir,1966.0 tt4477536,Fifty Shades Freed,2018.0 tt0382992,Stealth,2005.0 tt0257076,S.W.A.T.,2003.0 tt0048380,Mister Roberts,1955.0 tt0250720,See Spot Run,2001.0 tt0077235,Big Wednesday,1978.0 tt0034587,Cat People,1942.0 tt0036855,Gaslight,1944.0 tt0071675,It's Alive,1974.0 tt0079239,The Great Santini,1979.0 tt6333066,Trophy,2017.0 tt4397414,The Motivation 2.0: Real American Skater: The Chris Cole Story,2015.0 tt0451279,Wonder Woman,2017.0 tt0918940,The Legend of Tarzan,2016.0 tt0211443,Jason X,2001.0 tt2967226,Killing Hasselhoff,2017.0 tt4872162,Countdown,2016.0 tt4497338,Interrogation,2016.0 tt3957956,12 Rounds 3: Lockdown,2015.0 tt4765284,Pitch Perfect 3,2017.0 tt5726086,Insidious: The Last Key,2018.0 tt6421110,Proud Mary,2018.0 tt3829920,Only the Brave,2017.0 tt3783958,La La Land,2016.0 tt1219827,Ghost in the Shell,2017.0 tt4966046,Awaken the Shadowman,2017.0 tt3371366,Transformers: The Last Knight,2017.0 tt6094944,Bad Lucky Goat,2017.0 tt4211312,The White King,2016.0 tt1291150,Teenage Mutant Ninja Turtles,2014.0 tt5061162,Ucitelka,2016.0 tt5529680,Darth Maul: Apprentice,2016.0 tt1293847,xXx: Return of Xander Cage,2017.0 tt3773378,Conduct! Every Move Counts,2016.0 tt1519461,Area 51,2015.0 tt2283362,Jumanji: Welcome to the Jungle,2017.0 tt5301544,Swing State,2017.0 tt1386697,Suicide Squad,2016.0 tt5612742,F*&% the Prom,2017.0 tt4848010,Fits and Starts,2017.0 tt3518988,Harmontown,2014.0 tt1754767,Toonstone,2014.0 tt1540115,Coal Rush,2012.0 tt3605266,Everything Beautiful Is Far Away,2017.0 tt1856101,Blade Runner 2049,2017.0 tt4877122,The Emoji Movie,2017.0 tt1650062,Super 8,2011.0 tt1648190,The Dark Tower,2017.0 tt1959563,The Hitman's Bodyguard,2017.0 tt3892618,Alleluia! The Devil's Carnival,2016.0 tt4335520,CODE: Debugging the Gender Gap,2015.0 tt2378507,The Glass Castle,2017.0 tt4131800,My Little Pony,2017.0 tt3469046,Despicable Me 3,2017.0 tt3564472,Girls Trip,2017.0 tt1711525,Office Christmas Party,2016.0 tt0498381,Rings,2017.0 tt2473510,Paranormal Activity: The Ghost Dimension,2015.0 tt3065204,The Conjuring 2,2016.0 tt3322940,Annabelle,2014.0 tt3799694,The Nice Guys,2016.0 tt3280262,Cult of Chucky,2017.0 tt2975590,Batman v Superman: Dawn of Justice,2016.0 tt1528854,Daddy's Home,2015.0 tt0088206,Supergirl,1984.0 tt1253863,300: Rise of an Empire,2014.0 tt3482062,Bad Roomies,2015.0 tt2406566,Atomic Blonde,2017.0 tt4139124,Keanu,2016.0 tt10146586,Minecraft: into the Nether,2015.0 tt3534842,Finders Keepers,2014.0 tt5278578,Newtown,2016.0 tt2250912,Spider-Man: Homecoming,2017.0 tt3717490,Power Rangers,2017.0 tt4005332,One Direction: The Inside Story,2014.0 tt3890160,Baby Driver,2017.0 tt6414866,Residente,2017.0 tt4425200,John Wick: Chapter 2,2017.0 tt3038734,Club Life,2015.0 tt4935334,Southbound,2015.0 tt5115546,Ghost Team,2016.0 tt5462602,The Big Sick,2017.0 tt6231792,Moto 8: The Movie,2016.0 tt5199588,View from a Blue Moon,2015.0 tt5226436,The Fourth Phase,2016.0 tt4698584,Neruda,2016.0 tt4939066,Operation Chromite,2016.0 tt2989524,Carrie Pilby,2016.0 tt3717316,Hunter Gatherer,2016.0 tt5072406,Moka,2016.0 tt7456468,Asagao to Kase-san,2018.0 tt5022872,Barash,2015.0 tt5186236,Powidoki,2016.0 tt5120042,I Am the Blues,2015.0 tt4666726,Christine,2016.0 tt4799050,Rough Night,2017.0 tt2763304,T2 Trainspotting 2,2017.0 tt3121332,Nasty Baby,2015.0 tt3416742,What We Do in the Shadows,2014.0 tt2592614,Resident Evil: The Final Chapter,2016.0 tt5442430,Life,2017.0 tt4698684,Hunt for the Wilderpeople,2016.0 tt3917210,"Life, Animated",2016.0 tt2398241,Smurfs: The Lost Village,2017.0 tt4160708,Don't Breathe,2016.0 tt0079714,Phantasm,1979.0 tt0101625,Once Upon a Crime...,1992.0 tt0406375,Zathura: A Space Adventure,2005.0 tt0079073,Dracula,1979.0 tt2345759,The Mummy,2017.0 tt2639254,A Little Chaos,2014.0 tt0024184,The Invisible Man,1933.0 tt0034398,The Wolf Man,1941.0 tt0355702,Lords of Dogtown,2005.0 tt1374989,Pride and Prejudice and Zombies,2016.0 tt2513074,Billy Lynn's Long Halftime Walk,2016.0 tt3717252,Underworld: Blood Wars,2016.0 tt1355644,Passengers,2016.0 tt3170902,Theeb,2014.0 tt5294966,After the Storm,2016.0 tt4882174,37,2016.0 tt3142366,Take Me to the River,2015.0 tt0084191,Kamikaze 1989,1982.0 tt1808339,Not Another Happy Ending,2013.0 tt3407428,Glassland,2014.0 tt4972582,Split,2016.0 tt4361050,Ouija: Origin of Evil,2016.0 tt1753383,A Dog's Purpose,2017.0 tt4649416,Almost Christmas,2016.0 tt2034800,The Great Wall,2016.0 tt4550098,Nocturnal Animals,2016.0 tt3631112,The Girl on the Train,2016.0 tt4630562,Fast & Furious 8,2017.0 tt3263408,Somewhere in the Middle,2015.0 tt2650978,The Dark Valley,2014.0 tt5182856,Harmonium,2016.0 tt8071196,Amnesia Love,2018.0 tt5974624,Pi sheng shang de hun,2016.0 tt0099938,Kindergarten Cop,1990.0 tt0112384,Apollo 13,1995.0 tt0046912,Dial M for Murder,1954.0 tt0091763,Platoon,1986.0 tt0095031,Dirty Rotten Scoundrels,1988.0 tt5052448,Get Out,2017.0 tt4465564,Fifty Shades Darker,2017.0 tt0395169,Hotel Rwanda,2004.0 tt0881320,Sanctum,2011.0 tt0095593,Married to the Mob,1988.0 tt0891527,Lions for Lambs,2007.0 tt0106452,Body Snatchers,1993.0 tt0181739,Osmosis Jones,2001.0 tt0119592,Mad City,1997.0 tt0104107,Midnight Sting,1992.0 tt0041090,Adam's Rib,1949.0 tt0031867,The Roaring Twenties,1939.0 tt0094894,Colors,1988.0 tt0044685,Hans Christian Andersen,1952.0 tt0077838,The Last Waltz,1978.0 tt0098309,She-Devil,1989.0 tt0101371,Article 99,1992.0 tt0301470,Jeepers Creepers 2,2003.0 tt0061452,Casino Royale,1967.0 tt0051201,Witness for the Prosecution,1957.0 tt0100232,Navy Seals,1990.0 tt0090056,Spies Like Us,1985.0 tt0113228,Grumpier Old Men,1995.0 tt0089530,Mad Max Beyond Thunderdome,1985.0 tt0116253,Executive Decision,1996.0 tt0053125,North by Northwest,1959.0 tt0093713,Pelle the Conqueror,1987.0 tt1391116,Resistance,2011.0 tt2586118,D'Ardennen,2015.0 tt3700392,Heidi,2015.0 tt0277027,I Am Sam,2001.0 tt0106701,Dennis the Menace,1993.0 tt0101635,Curly Sue,1991.0 tt0094027,Stand and Deliver,1988.0 tt0120094,Selena,1997.0 tt0817230,Valentine's Day,2010.0 tt0065446,The Ballad of Cable Hogue,1970.0 tt0090856,Club Paradise,1986.0 tt0094921,Crossing Delancey,1988.0 tt0085333,Christine,1983.0 tt0118661,The Avengers,1998.0 tt2318092,Endless Love,2014.0 tt1582465,A Birder's Guide to Everything,2013.0 tt0035015,The Magnificent Ambersons,1942.0 tt0234829,Summer Catch,2001.0 tt0056218,The Manchurian Candidate,1962.0 tt0057193,It's a Mad Mad Mad Mad World,1963.0 tt1488555,The Change-Up,2011.0 tt0423977,Charlie Bartlett,2007.0 tt0245046,Charlotte Gray,2001.0 tt0100486,Reversal of Fortune,1990.0 tt0093660,Nuts,1987.0 tt0120458,Virus,1999.0 tt1564585,Skyline,2010.0 tt0097500,Her Alibi,1989.0 tt0120787,A Perfect Murder,1998.0 tt0113870,Murder in the First,1995.0 tt0444682,The Reaping,2007.0 tt1139668,The Unborn,2009.0 tt1190080,2012,2009.0 tt1385826,The Adjustment Bureau,2011.0 tt2910814,The Signal,2014.0 tt2024469,Non-Stop,2014.0 tt0365907,A Walk Among the Tombstones,2014.0 tt1216491,Kill the Messenger,2014.0 tt0054135,Ocean's Eleven,1960.0 tt2349144,Mississippi Grind,2015.0 tt0264935,Murder by Numbers,2002.0 tt2377322,Deliver Us from Evil,2014.0 tt0102915,Showdown in Little Tokyo,1991.0 tt0367652,Deuce Bigalow: European Gigolo,2005.0 tt0374536,Bewitched,2005.0 tt0095925,Pumpkinhead,1988.0 tt2788710,The Interview,2014.0 tt2170299,Bad Words,2013.0 tt0243655,Wet Hot American Summer,2001.0 tt0448157,Hancock,2008.0 tt0118750,Booty Call,1997.0 tt0110657,The Next Karate Kid,1994.0 tt0120686,Stepmom,1998.0 tt0105121,The People Under the Stairs,1991.0 tt0102492,My Girl,1991.0 tt0164912,Stuart Little,1999.0 tt0243585,Stuart Little 2,2002.0 tt0439815,Slither,2006.0 tt3322364,Concussion,2015.0 tt1232200,That's My Boy,2012.0 tt1564367,Just Go with It,2011.0 tt0960144,You Don't Mess with the Zohan,2008.0 tt0371246,Spanglish,2004.0 tt0389860,Click,2006.0 tt0106379,Being Human,1994.0 tt0088707,American Flyers,1985.0 tt0088680,After Hours,1985.0 tt0274309,24 Hour Party People,2002.0 tt0101701,Delirious,1991.0 tt0100258,Night of the Living Dead,1990.0 tt1282140,Easy A,2010.0 tt0852713,The House Bunny,2008.0 tt0879870,Eat Pray Love,2010.0 tt1114740,Paul Blart: Mall Cop,2009.0 tt0117008,Matilda,1996.0 tt0099204,Cadillac Man,1990.0 tt0097757,The Little Mermaid,1989.0 tt0409182,Poseidon,2006.0 tt0089175,Fright Night,1985.0 tt2241351,Money Monster,2016.0 tt0172493,"Girl, Interrupted",1999.0 tt0112818,Dead Man Walking,1995.0 tt0310793,Bowling for Columbine,2002.0 tt0022913,Freaks,1932.0 tt1535109,Captain Phillips,2013.0 tt4178092,The Gift,2015.0 tt2717822,Blackhat,2015.0 tt0155267,The Thomas Crown Affair,1999.0 tt0063688,The Thomas Crown Affair,1968.0 tt0114134,The Pillow Book,1996.0 tt1596345,Pawn Sacrifice,2014.0 tt4183692,Woodlawn,2015.0 tt0112887,The Doom Generation,1995.0 tt0070460,Day for Night,1973.0 tt3569230,Legend,2015.0 tt3077214,Suffragette,2015.0 tt0318374,The Cooler,2003.0 tt0108026,The Saint of Fort Washington,1993.0 tt1285016,The Social Network,2010.0 tt1568346,The Girl with the Dragon Tattoo,2011.0 tt3850214,Dope,2015.0 tt2473602,Get on Up,2014.0 tt0811080,Speed Racer,2008.0 tt0243133,The Man Who Wasn't There,2001.0 tt0119080,Eve's Bayou,1997.0 tt0065112,Topaz,1969.0 tt0100519,Rosencrantz & Guildenstern Are Dead,1990.0 tt0186508,Buena Vista Social Club,1999.0 tt0205271,Dr. T & the Women,2000.0 tt1632708,Friends with Benefits,2011.0 tt0101698,Defending Your Life,1991.0 tt0210358,Things You Can Tell Just by Looking at Her,2000.0 tt0091934,Shanghai Surprise,1986.0 tt1307068,Seeking a Friend for the End of the World,2012.0 tt0091777,Police Academy 3: Back in Training,1986.0 tt0089822,Police Academy 2: Their First Assignment,1985.0 tt0102395,Mannequin: On the Move,1991.0 tt0093493,Mannequin,1987.0 tt0097758,Little Monsters,1989.0 tt0084745,Swamp Thing,1982.0 tt0263488,Jeepers Creepers,2001.0 tt0097737,Leviathan,1989.0 tt0144814,The Rage: Carrie 2,1999.0 tt2334879,White House Down,2013.0 tt1599348,Safe House,2012.0 tt2140379,Self/less,2015.0 tt0434409,V for Vendetta,2005.0 tt0114576,Sudden Death,1995.0 tt1648179,Here Comes the Boom,2012.0 tt1204975,Last Vegas,2013.0 tt1655460,Wanderlust,2012.0 tt3164256,Rock the Kasbah,2015.0 tt0114852,Village of the Damned,1995.0 tt1284575,Bad Teacher,2011.0 tt1092026,Paul,2011.0 tt0102303,Life Stinks,1991.0 tt0076489,"Oh, God!",1977.0 tt0069495,"What's Up, Doc?",1972.0 tt2719848,Everest,2015.0 tt1121096,Seventh Son,2014.0 tt0386140,The Legend of Zorro,2005.0 tt0091530,The Mission,1986.0 tt3062096,Inferno,2016.0 tt2752772,Sinister 2,2015.0 tt3713166,Unfriended,2014.0 tt2870612,"As Above, So Below",2014.0 tt2239832,Think Like a Man Too,2014.0 tt1621045,Think Like a Man,2012.0 tt1195478,The Five-Year Engagement,2012.0 tt1135503,Julie & Julia,2009.0 tt0457939,The Holiday,2006.0 tt2404435,The Magnificent Seven,2016.0 tt0090927,The Delta Force,1986.0 tt0172156,Bad Boys II,2003.0 tt0099399,Delta Force 2: The Colombian Connection,1990.0 tt0093164,Heat,1986.0 tt0162346,Ghost World,2001.0 tt0130018,I Still Know What You Did Last Summer,1998.0 tt0424136,Hard Candy,2005.0 tt0118564,Affliction,1997.0 tt1872181,The Amazing Spider-Man 2,2014.0 tt0990407,The Green Hornet,2011.0 tt0164052,Hollow Man,2000.0 tt0101846,F/X2,1991.0 tt0089118,F/X,1986.0 tt3721936,American Honey,2016.0 tt0401420,Fierce People,2005.0 tt0492044,The Haunting in Connecticut,2009.0 tt0098994,"After Dark, My Sweet",1990.0 tt1457765,The Haunting in Connecticut 2: Ghosts of Georgia,2013.0 tt3470600,Sing,2016.0 tt4302938,Kubo and the Two Strings,2016.0 tt0479500,Nancy Drew,2007.0 tt1219342,Legend of the Guardians: The Owls of Ga'Hoole,2010.0 tt0183790,A Knight's Tale,2001.0 tt0047795,Abbott and Costello Meet the Mummy,1955.0 tt4263482,The Witch,2015.0 tt0288477,Ghost Ship,2002.0 tt0093091,Ghoulies II,1987.0 tt0472458,Dumplings,2004.0 tt1700841,Sausage Party,2016.0 tt0119109,Fathers' Day,1997.0 tt0101745,Doc Hollywood,1991.0 tt0099077,Awakenings,1990.0 tt0097236,Dream a Little Dream,1989.0 tt4382872,Extraction,2015.0 tt2923316,American Heist,2014.0 tt4195278,Bana Masal Anlatma,2015.0 tt3598222,Mercenaries,2014.0 tt3106120,See No Evil 2,2014.0 tt1043791,Dead Wood,2007.0 tt0279688,Beyond the Wall of Sleep,2006.0 tt2396701,The Haunting of Whaley House,2012.0 tt2240312,Hold Your Breath,2012.0 tt1658801,Freeheld,2015.0 tt1489889,Central Intelligence,2016.0 tt2702724,The Boss,2016.0 tt2245003,Miss You Already,2015.0 tt1767372,She's Funny That Way,2014.0 tt4019560,Exposed,2016.0 tt1274586,Dying of the Light,2014.0 tt2381991,The Huntsman: Winter's War,2016.0 tt0985025,Dark Floors,2008.0 tt3307726,Bermuda Tentacles,2014.0 tt2493486,Last Knights,2015.0 tt2552498,Jack the Giant Killer,2013.0 tt4145350,Hansel vs. Gretel,2015.0 tt1509767,The Three Musketeers,2011.0 tt1572491,Balada triste de trompeta,2010.0 tt1031280,Splinter,2008.0 tt2872810,Mischief Night,2013.0 tt1982735,Killer Holiday,2013.0 tt0286306,Deathwatch,2002.0 tt0443435,Autopsy,2008.0 tt3384904,Apocalypse Pompeii,2014.0 tt2300975,Jessabelle,2014.0 tt1331307,Dread,2008.0 tt0492486,Shrooms,2007.0 tt3614530,Jem and the Holograms,2015.0 tt2005374,The Frozen Ground,2013.0 tt0382943,Return to Sleepaway Camp,2008.0 tt1757742,Emergo,2011.0 tt2474438,Attila Marcel,2013.0 tt1366365,The Cold Light of Day,2012.0 tt2395199,Enemies Closer,2013.0 tt2012665,Repentance,2013.0 tt3036676,Beyond Justice,2014.0 tt1014763,Child 44,2015.0 tt2304953,Reasonable Doubt,2014.0 tt1730294,For the Love of Money,2012.0 tt0269743,Barking Dogs Never Bite,2000.0 tt3202890,Reclaim,2014.0 tt0928375,Legend of the Bog,2009.0 tt2108605,Bigfoot County,2012.0 tt1876261,Bigfoot,2012.0 tt2457138,Battledogs,2013.0 tt1956620,Sex Tape,2014.0 tt2166934,My Man Is a Loser,2014.0 tt3203890,Pulling Strings,2013.0 tt2378281,No se aceptan devoluciones,2013.0 tt1278449,Sound of Noise,2010.0 tt2382396,Joe,2013.0 tt0107302,Kalifornia,1993.0 tt3093522,Anarchy: Ride or Die,2014.0 tt1396523,Revenge of the Green Dragons,2014.0 tt1663207,Life of Crime,2013.0 tt1972571,A Most Wanted Man,2014.0 tt1754656,The Little Prince,2015.0 tt1614989,Hodejegerne,2011.0 tt0479162,Special,2006.0 tt1617661,Jupiter Ascending,2015.0 tt2223990,Draft Day,2014.0 tt1621046,Cesar Chavez,2014.0 tt2103264,Emperor,2012.0 tt1811307,Burning Blue,2013.0 tt2106476,The Hunt,2012.0 tt1713476,The Bay,2012.0 tt1134854,Survival of the Dead,2009.0 tt3233418,Spare Parts,2015.0 tt2725962,What We Did on Our Holiday,2014.0 tt0391024,Control Room,2004.0 tt2017020,The Smurfs 2,2013.0 tt0472181,The Smurfs,2011.0 tt1130088,Is Anybody There?,2008.0 tt2094064,Much Ado About Nothing,2012.0 tt1833888,Angels Sing,2013.0 tt1815862,After Earth,2013.0 tt0490181,Mutant Chronicles,2008.0 tt1865393,Hellbenders,2012.0 tt0407304,War of the Worlds,2005.0 tt1321870,Gangster Squad,2013.0 tt1595656,To the Wonder,2012.0 tt1667889,Ice Age: Continental Drift,2012.0 tt0097322,The Fabulous Baker Boys,1989.0 tt1389096,Stand Up Guys,2012.0 tt2094018,Hours,2013.0 tt1747958,Blood Ties,2013.0 tt1551621,Raging Phoenix,2009.0 tt1535108,Elysium,2013.0 tt1764183,Arbitrage,2012.0 tt1770734,Shadow Dancer,2012.0 tt0079592,Murder by Decree,1979.0 tt1132130,2012: Doomsday,2008.0 tt1386703,Total Recall,2012.0 tt0450336,Blood Creek,2009.0 tt0457572,Fido,2006.0 tt0780607,The Signal,2007.0 tt0480669,Los cronocrímenes,2007.0 tt1758830,This Is 40,2012.0 tt1931435,The Big Wedding,2013.0 tt1878942,Date and Switch,2014.0 tt1839654,The Magic of Belle Isle,2012.0 tt0057187,Irma la Douce,1963.0 tt0094678,Arthur 2: On the Rocks,1988.0 tt0369672,A Love Song for Bobby Long,2004.0 tt0099797,The Hot Spot,1990.0 tt1270262,The Devil's Double,2011.0 tt1629705,Blackthorn,2011.0 tt1386588,The Other Guys,2010.0 tt1531663,Everything Must Go,2010.0 tt0093693,Overboard,1987.0 tt0095684,My Best Friend Is a Vampire,1987.0 tt1436432,MegaFault,2009.0 tt1240982,Your Highness,2011.0 tt0087078,Conan the Destroyer,1984.0 tt1181791,Black Death,2010.0 tt0109835,Frank & Jesse,1994.0 tt0433412,Material Girls,2006.0 tt1221208,Frankie & Alice,2010.0 tt0094321,Who's That Girl,1987.0 tt0114614,Tank Girl,1995.0 tt0399901,Woman Thou Art Loosed,2004.0 tt0111301,Street Fighter,1994.0 tt1155076,The Karate Kid,2010.0 tt1458175,The Next Three Days,2010.0 tt0460810,The Great Buck Howard,2008.0 tt0486358,Jesus Camp,2006.0 tt0944835,Salt,2010.0 tt0113855,Mortal Kombat,1995.0 tt0397044,Blood and Chocolate,2007.0 tt1462758,Buried,2010.0 tt0478188,King of the Lost World,2005.0 tt0305357,Charlie's Angels: Full Throttle,2003.0 tt0338216,Lucky You,2007.0 tt0104438,Honeymoon in Vegas,1992.0 tt1235796,Ondine,2009.0 tt0460740,Cashback,2006.0 tt0286716,Hulk,2003.0 tt0352277,De-Lovely,2004.0 tt0077294,Capricorn One,1977.0 tt0055031,Judgment at Nuremberg,1961.0 tt0053946,Inherit the Wind,1960.0 tt0061418,Bonnie and Clyde,1967.0 tt0062765,Bullitt,1968.0 tt0032599,His Girl Friday,1940.0 tt0233277,Back to the Secret Garden,2000.0 tt0109279,Black Beauty,1994.0 tt1895587,Spotlight,2015.0 tt1024648,Argo,2012.0 tt0810819,The Danish Girl,2015.0 tt0048545,Rebel Without a Cause,1955.0 tt0049730,The Searchers,1956.0 tt0475290,"Hail, Caesar!",2016.0 tt3203606,Trumbo,2015.0 tt0033467,Citizen Kane,1941.0 tt1790885,Zero Dark Thirty,2012.0 tt4438848,Bad Neighbours 2,2016.0 tt1971352,Compliance,2012.0 tt0100935,Wild at Heart,1990.0 tt0056193,Lolita,1962.0 tt4530832,Road Wars,2015.0 tt1232829,21 Jump Street,2012.0 tt3534282,Don Verdean,2015.0 tt3457734,Fort Tilden,2014.0 tt1783732,John Dies at the End,2012.0 tt4094724,The Purge: Election Year,2016.0 tt3079016,We'll Never Have Paris,2014.0 tt1440732,Bel Ami,2012.0 tt3746298,Vendetta,2015.0 tt2869728,Ride Along 2,2016.0 tt3760922,My Big Fat Greek Wedding 2,2016.0 tt1334537,Humpday,2009.0 tt0083739,Class of 1984,1982.0 tt0071517,Foxy Brown,1974.0 tt3960412,Popstar: Never Stop Never Stopping,2016.0 tt0366551,Harold & Kumar Get the Munchies,2004.0 tt0910936,Pineapple Express,2008.0 tt4196776,Jason Bourne,2016.0 tt0149261,Deep Blue Sea,1999.0 tt0107362,Last Action Hero,1993.0 tt1290471,The Day the Earth Stopped,2008.0 tt2191701,Grown Ups 2,2013.0 tt1375670,Grown Ups,2010.0 tt3499424,Hercules Reborn,2014.0 tt1663662,Pacific Rim,2013.0 tt7069210,The Conjuring 3,2020.0 tt3276924,Heist,2015.0 tt2547172,Larry Gaye: Renegade Male Flight Attendant,2015.0 tt3393070,Android Cop,2014.0 tt2709768,The Secret Life of Pets,2016.0 tt0400717,Open Season,2006.0 tt0423294,Surf's Up,2007.0 tt0787470,Gary the Tennis Coach,2009.0 tt1276419,A Royal Affair,2012.0 tt0803096,Warcraft: The Beginning,2016.0 tt1133985,Green Lantern,2011.0 tt3672840,Tian jiang xiong shi,2015.0 tt2216240,A Hijacking,2012.0 tt2310332,The Hobbit: The Battle of the Five Armies,2014.0 tt1170358,The Hobbit: The Desolation of Smaug,2013.0 tt0903624,The Hobbit: An Unexpected Journey,2012.0 tt1507566,Fake,2011.0 tt0988045,Sherlock Holmes,2009.0 tt1656186,Stolen,2012.0 tt2097307,Hit and Run,2012.0 tt1951265,The Hunger Games: Mockingjay - Part 1,2014.0 tt0844471,Cloudy with a Chance of Meatballs,2009.0 tt1766094,So Undercover,2012.0 tt2024506,Straight A's,2013.0 tt1374992,Upside Down,2012.0 tt0770828,Man of Steel,2013.0 tt0067992,Willy Wonka & the Chocolate Factory,1971.0 tt1646987,Wrath of the Titans,2012.0 tt2383068,The Sacrament,2013.0 tt0105698,Universal Soldier,1992.0 tt0024216,King Kong,1933.0 tt1709143,The Last Days on Mars,2013.0 tt1578882,Elephant White,2011.0 tt2279339,Christmas with the Coopers,2015.0 tt5323662,A Silent Voice,2016.0 tt0800320,Clash of the Titans,2010.0 tt0120912,Men in Black II,2002.0 tt1392190,Mad Max: Fury Road,2015.0 tt1985949,Angry Birds,2016.0 tt2379713,Spectre,2015.0 tt1409024,Men in Black 3,2012.0 tt0120685,Godzilla,1998.0 tt1985966,Cloudy with a Chance of Meatballs 2,2013.0 tt0097647,The Karate Kid Part III,1989.0 tt0091326,The Karate Kid Part II,1986.0 tt1234721,RoboCop,2014.0 tt1217613,Battle Los Angeles,2011.0 tt2637294,Hot Tub Time Machine 2,2015.0 tt2967224,Hot Pursuit,2015.0 tt1355630,If I Stay,2014.0 tt0089853,The Purple Rose of Cairo,1985.0 tt3850590,Krampus,2015.0 tt0119282,Hercules,1997.0 tt0296572,The Chronicles of Riddick,2004.0 tt0259324,Ghost Rider,2007.0 tt3628584,Barbershop: A Fresh Cut,2016.0 tt0948470,The Amazing Spider-Man,2012.0 tt0413300,Spider-Man 3,2007.0 tt1038686,Legion,2010.0 tt0091167,Hannah and Her Sisters,1986.0 tt0079522,Manhattan,1979.0 tt0316654,Spider-Man 2,2004.0 tt0075686,Annie Hall,1977.0 tt1289401,Ghostbusters,2016.0 tt3530002,The Night Before,2015.0 tt1430607,Arthur Christmas,2011.0 tt1430626,The Pirates! In an Adventure with Scientists!,2012.0 tt2510894,Hotel Transylvania 2,2015.0 tt0837562,Hotel Transylvania,2012.0 tt1051904,Goosebumps,2015.0 tt1288558,Evil Dead,2013.0 tt4052882,The Shallows,2016.0 tt7264080,"I Love You, Daddy",2017.0 tt1496025,Underworld Awakening,2012.0 tt0834001,Underworld: Rise of the Lycans,2009.0 tt0401855,Underworld: Evolution,2006.0 tt0271263,Eight Crazy Nights,2002.0 tt0385880,Monster House,2006.0 tt0119345,I Know What You Did Last Summer,1997.0 tt0115963,The Craft,1996.0 tt0808151,Angels & Demons,2009.0 tt0373051,Journey to the Center of the Earth,2008.0 tt2236182,Rise of the Zombies,2012.0 tt2978716,Zombie Night,2013.0 tt2621126,Mindless Behavior: All Around the World,2013.0 tt2518926,Age of Dinosaurs,2013.0 tt1020558,Centurion,2010.0 tt0108149,Six Degrees of Separation,1993.0 tt1623745,Little Birds,2011.0 tt1692084,High Road,2011.0 tt1634121,Intruders,2011.0 tt0988849,Donkey Punch,2008.0 tt1016268,Enron: The Smartest Guys in the Room,2005.0 tt3064298,Man Up,2015.0 tt2051894,Home Run,2013.0 tt4034228,Manchester by the Sea,2016.0 tt2345112,Parkland,2013.0 tt0038109,Spellbound,1945.0 tt0097239,Driving Miss Daisy,1989.0 tt3168230,Mr. Holmes,2015.0 tt0032976,Rebecca,1940.0 tt1876547,Zombie Apocalypse,2011.0 tt3567288,The Visit,2015.0 tt1623288,ParaNorman,2012.0 tt0063350,Night of the Living Dead,1968.0 tt1204977,Ouija,2014.0 tt0298388,Jonah: A VeggieTales Movie,2002.0 tt0339291,A Series of Unfortunate Events,2004.0 tt0112642,Casper,1995.0 tt0134847,Pitch Black,2000.0 tt0905372,The Thing,2011.0 tt1440129,Battleship,2012.0 tt0023245,The Mummy,1932.0 tt0085636,Halloween III: Season of the Witch,1982.0 tt0082495,Halloween II,1981.0 tt0116365,The Frighteners,1996.0 tt0780653,The Wolfman,2010.0 tt0103956,Child's Play 3,1991.0 tt0099253,Child's Play 2,1990.0 tt2230358,Curse of Chucky,2013.0 tt0387575,Seed of Chucky,2004.0 tt0144120,Bride of Chucky,1998.0 tt1850457,Sisters,2015.0 tt3321300,Spooks: The Greater Good,2015.0 tt0091778,Poltergeist II: The Other Side,1986.0 tt0092076,The Texas Chainsaw Massacre 2,1986.0 tt1659216,Spiders 3D,2013.0 tt0860462,Mercury Man,2006.0 tt3453772,Asteroid vs Earth,2014.0 tt0068762,Jeremiah Johnson,1972.0 tt0452694,The Time Traveller's Wife,2009.0 tt2554274,Crimson Peak,2015.0 tt2581244,Life After Beth,2014.0 tt1491044,The Iceman,2012.0 tt1341341,Ceremony,2010.0 tt0093223,House of Games,1987.0 tt2292182,Shark Week,2012.0 tt1927093,Fred 2: Night of the Living Fred,2011.0 tt2236160,Nightlight,2015.0 tt2490326,Cooties,2014.0 tt0093300,Jaws: The Revenge,1987.0 tt0077766,Jaws 2,1978.0 tt2080374,Steve Jobs,2015.0 tt0061747,Hang 'Em High,1968.0 tt0468492,The Host,2006.0 tt0079261,Hair,1979.0 tt2195548,Prince Avalanche,2013.0 tt1536410,Faces in the Crowd,2011.0 tt1524575,The Vatican Tapes,2015.0 tt3605418,Knock Knock,2015.0 tt2473682,Paranormal Activity: The Marked Ones,2014.0 tt2109184,Paranormal Activity 4,2012.0 tt2205697,Stuck in Love.,2012.0 tt2708254,Life of a King,2013.0 tt2226519,Plush,2013.0 tt0781008,Band Camp Dirty Diary: American Pie Presents Band Camp DVD,2005.0 tt1602472,2 Days in New York,2012.0 tt1350512,The Terminators,2009.0 tt1640548,Rampart,2011.0 tt0480271,Van Wilder 2: The Rise of Taj,2006.0 tt1748179,Red Lights,2012.0 tt0970866,Little Fockers,2010.0 tt0068897,The Magnificent Seven Ride!,1972.0 tt0805564,Lars and the Real Girl,2007.0 tt0091983,Something Wild,1986.0 tt0102744,Quigley Down Under,1990.0 tt0098577,Vampire's Kiss,1988.0 tt0095082,Eight Men Out,1988.0 tt0089504,Lost in America,1985.0 tt0106387,Benny & Joon,1993.0 tt1368116,Merantau,2009.0 tt0997147,Dai-Nihonjin,2007.0 tt1634122,Johnny English Reborn,2011.0 tt1959490,Noah,2014.0 tt1156300,Deadtime Stories 2,2011.0 tt1334526,Deadtime Stories,2009.0 tt1618442,The Last Witch Hunter,2015.0 tt1705773,Mega Shark vs. Crocosaurus,2010.0 tt1350498,Mega Shark vs. Giant Octopus,2009.0 tt1582248,Injustice,2011.0 tt2231253,Wild Card,2015.0 tt0044081,A Streetcar Named Desire,1951.0 tt2870708,Wish I Was Here,2014.0 tt1666801,The Duff,2015.0 tt3045616,Mortdecai,2015.0 tt1674784,Trespass,2011.0 tt1778304,Paranormal Activity 3,2011.0 tt1536044,Paranormal Activity 2,2010.0 tt1748122,Moonrise Kingdom,2012.0 tt2202385,Because I Love You,2012.0 tt0089017,Desperately Seeking Susan,1985.0 tt0810817,The Da Vinci Treasure,2006.0 tt0061811,In the Heat of the Night,1967.0 tt0785035,Ong Bak 2,2008.0 tt0081455,Scanners,1981.0 tt0047472,Seven Brides for Seven Brothers,1954.0 tt0274166,Johnny English,2003.0 tt0085382,Cujo,1983.0 tt0086525,Valley Girl,1983.0 tt1480295,Killing Season,2013.0 tt0089907,The Return of the Living Dead,1985.0 tt1605630,American Reunion,2012.0 tt0068833,The Last House on the Left,1972.0 tt1649444,[Rec]³: Génesis,2012.0 tt1655441,The Age of Adaline,2015.0 tt1245112,[Rec]²,2009.0 tt0816711,World War Z,2013.0 tt1925518,Warrior King 2,2013.0 tt1932767,What Maisie Knew,2012.0 tt3316948,American Ultra,2015.0 tt0029947,Bringing Up Baby,1938.0 tt0993846,The Wolf of Wall Street,2013.0 tt3397884,Sicario,2015.0 tt1592281,Take This Waltz,2011.0 tt1376709,I Love You Too,2010.0 tt0787474,The Boxtrolls,2014.0 tt4547120,San Andreas Quake,2015.0 tt0290747,Man-Thing,2005.0 tt1529572,Trust,2010.0 tt0096787,All Dogs Go to Heaven,1989.0 tt0238546,Queen of the Damned,2002.0 tt1453403,William Vincent,2010.0 tt1825157,The Double,2013.0 tt0453451,Mr. Bean's Holiday,2007.0 tt1853739,You're Next,2011.0 tt2039345,Grand Piano,2013.0 tt2235108,Dear White People,2014.0 tt0084649,The Secret of NIMH,1982.0 tt1302067,Yogi Bear,2010.0 tt0379786,Serenity,2005.0 tt0087365,"Greystoke: The Legend of Tarzan, Lord of the Apes",1984.0 tt3181822,The Boy Next Door,2015.0 tt4566574,Mega Shark vs. Kolossus,2015.0 tt0975645,Hitchcock,2012.0 tt0086856,The Adventures of Buckaroo Banzai Across the 8th Dimension,1984.0 tt1951266,The Hunger Games: Mockingjay - Part 2,2015.0 tt2908446,Insurgent,2015.0 tt2872750,Shaun the Sheep Movie,2015.0 tt0470752,Ex Machina,2014.0 tt1356864,I'm Still Here,2010.0 tt1116184,Jackass 3D,2010.0 tt2626350,Step Up All In,2014.0 tt0107983,Romeo Is Bleeding,1993.0 tt1229340,Anchorman 2: The Legend Continues,2013.0 tt1229238,Mission: Impossible - Ghost Protocol,2011.0 tt1583421,G.I. Joe: Retaliation,2013.0 tt0493430,Jackass Number Two,2006.0 tt2333784,The Expendables 3,2014.0 tt0286788,What a Girl Wants,2003.0 tt0120800,The Magic Sword: Quest for Camelot,1998.0 tt1571249,The Skeleton Twins,2014.0 tt3899796,Sharknado 3: Oh Hell No!,2015.0 tt1680138,Mega Python vs. Gatoroid,2011.0 tt1450321,Filth,2013.0 tt1587807,Mega Piranha,2010.0 tt2637276,Ted 2,2015.0 tt0104040,The Cutting Edge,1992.0 tt2109248,Transformers: Age of Extinction,2014.0 tt1399103,Transformers: Dark of the Moon,2011.0 tt1055369,Transformers: Revenge of the Fallen,2009.0 tt1792794,Almighty Thor,2011.0 tt0113243,Hackers,1995.0 tt2246549,Abraham Lincoln vs. Zombies,2012.0 tt0337579,Barbershop 2: Back in Business,2004.0 tt0388500,Beauty Shop,2005.0 tt0097576,Indiana Jones and the Last Crusade,1989.0 tt0367882,Indiana Jones and the Kingdom of the Crystal Skull,2008.0 tt0071360,The Conversation,1974.0 tt0077745,Invasion of the Body Snatchers,1978.0 tt1137470,Accidental Love,2015.0 tt2023587,Mama,2013.0 tt1440161,A Little Bit of Heaven,2011.0 tt1403981,Remember Me,2010.0 tt1699755,Peeples,2013.0 tt2024432,Identity Thief,2013.0 tt1649419,The Impossible,2012.0 tt3062074,Sharknado 2: The Second One,2014.0 tt2724064,Sharknado,2013.0 tt1772925,Jiro Dreams of Sushi,2011.0 tt0094074,Superman IV: The Quest for Peace,1987.0 tt0086393,Superman III,1983.0 tt1263670,Crazy Heart,2009.0 tt0162222,Cast Away,2000.0 tt0087469,Indiana Jones and the Temple of Doom,1984.0 tt0082971,Raiders of the Lost Ark,1981.0 tt1305583,Our Family Wedding,2010.0 tt0814255,Percy Jackson & the Lightning Thief,2010.0 tt0949731,The Happening,2008.0 tt0416212,The Secret Life of Bees,2008.0 tt0311429,The League of Extraordinary Gentlemen,2003.0 tt0056197,The Longest Day,1962.0 tt2553908,Cinco de Mayo: La batalla,2013.0 tt0848537,Epic,2013.0 tt1389137,We Bought a Zoo,2011.0 tt1033575,The Descendants,2011.0 tt1279935,Date Night,2010.0 tt1033643,What Happens in Vegas,2008.0 tt0429493,The A-Team,2010.0 tt2345613,Leprechaun: Origins,2014.0 tt1194173,The Bourne Legacy,2012.0 tt1408101,Star Trek into Darkness,2013.0 tt0083550,Amityville II: The Possession,1982.0 tt2293640,Minions,2015.0 tt2911666,John Wick,2014.0 tt2235779,The Quiet Ones,2014.0 tt1807944,As I Lay Dying,2013.0 tt1932718,Thanks for Sharing,2012.0 tt1935179,Mud,2012.0 tt2051879,Europa Report,2013.0 tt1155592,Man on Wire,2008.0 tt1398426,Straight Outta Compton,2015.0 tt2975578,The Purge: Anarchy,2014.0 tt2093977,Crush,2013.0 tt1196948,The Necessary Death of Charlie Countryman,2013.0 tt0044953,The Naked Spur,1953.0 tt0120654,Dirty Work,1998.0 tt0040872,They Live by Night,1948.0 tt1294970,The Angriest Man in Brooklyn,2014.0 tt2458106,Ninja: Shadow of a Tear,2013.0 tt0082332,Enter the Ninja,1981.0 tt1809398,Unbroken,2014.0 tt1470023,MacGruber,2010.0 tt1139797,Let the Right One In,2008.0 tt0378109,Into the Blue,2005.0 tt2322441,Fifty Shades of Grey,2015.0 tt0478304,The Tree of Life,2011.0 tt0822832,Marley & Me,2008.0 tt1131734,Jennifer's Body,2009.0 tt0432283,Fantastic Mr. Fox,2009.0 tt1698648,Girl Most Likely,2012.0 tt0109370,Canadian Bacon,1995.0 tt1659337,The Perks of Being a Wallflower,2012.0 tt1592873,LOL,2012.0 tt1735898,Snow White and the Huntsman,2012.0 tt1935896,The ABCs of Death,2012.0 tt0113161,Get Shorty,1995.0 tt0408524,Bad News Bears,2005.0 tt1496422,The Paperboy,2012.0 tt0120184,Sphere,1998.0 tt0078227,Semi-Tough,1977.0 tt2450186,V/H/S/2,2013.0 tt2105044,V/H/S,2012.0 tt0835418,The Babymakers,2012.0 tt1155056,"I Love You, Man",2009.0 tt3152624,Trainwreck,2015.0 tt2872732,Lucy,2014.0 tt2004420,Bad Neighbours,2014.0 tt2096672,Dumb and Dumber To,2014.0 tt1596350,This Means War,2012.0 tt1412386,The Best Exotic Marigold Hotel,2011.0 tt0356680,The Family Stone,2005.0 tt2382009,Nymphomaniac: Vol. II,2013.0 tt1091191,Lone Survivor,2013.0 tt1937390,Nymphomaniac: Vol. I,2013.0 tt2349460,Grace Unplugged,2013.0 tt1821694,RED 2,2013.0 tt1913166,Nurse 3-D,2013.0 tt1704573,Bernie,2011.0 tt1297919,Blitz,2011.0 tt0087985,Red Dawn,1984.0 tt0101764,Double Impact,1991.0 tt0829150,Dracula Untold,2014.0 tt1065073,Boyhood,2014.0 tt2481480,Rob the Mob,2014.0 tt2274570,Bad Milo!,2013.0 tt2265398,Drinking Buddies,2013.0 tt1211956,Escape Plan,2013.0 tt0469021,Alan Partridge: Alpha Papa,2013.0 tt0114508,Species,1995.0 tt0089200,Ghoulies,1984.0 tt1637725,Ted,2012.0 tt0780622,Teeth,2007.0 tt1213663,The World's End,2013.0 tt2557490,A Million Ways to Die in the West,2014.0 tt2318527,Hell Baby,2013.0 tt2017038,All Is Lost,2013.0 tt1247640,District 13: Ultimatum,2009.0 tt0120241,Suicide Kings,1997.0 tt0377471,Be Cool,2005.0 tt1478338,Bridesmaids,2011.0 tt1981677,Pitch Perfect,2012.0 tt2398249,They Came Together,2014.0 tt0351977,Walking Tall,2004.0 tt0985694,Machete,2010.0 tt1013743,Knight and Day,2010.0 tt1022603,500 Days of Summer,2009.0 tt0327850,Welcome to the Jungle,2003.0 tt0947798,Black Swan,2010.0 tt1542344,127 Hours,2010.0 tt1538819,Ejder Kapani,2010.0 tt0451079,Horton Hears a Who!,2008.0 tt0098206,Road House,1989.0 tt0050825,Paths of Glory,1957.0 tt0095690,Mystic Pizza,1988.0 tt0091217,Hoosiers,1986.0 tt0106856,Falling Down,1993.0 tt0048028,East of Eden,1955.0 tt0059113,Doctor Zhivago,1965.0 tt0250494,Legally Blonde,2001.0 tt0479143,Rocky Balboa,2006.0 tt0113321,Home for the Holidays,1995.0 tt0311648,Pieces of April,2003.0 tt1731141,Ender's Game,2013.0 tt1670345,Now You See Me,2013.0 tt1418377,"I, Frankenstein",2014.0 tt1572315,Texas Chainsaw 3D,2013.0 tt1588173,Warm Bodies,2013.0 tt1549920,The Last Stand,2013.0 tt1650043,Diary of a Wimpy Kid 2: Rodrick Rules,2011.0 tt1408253,Ride Along,2014.0 tt2848292,Pitch Perfect 2,2015.0 tt0369610,Jurassic World,2015.0 tt2820852,Fast & Furious 7,2015.0 tt2980516,The Theory of Everything,2014.0 tt0066995,Diamonds Are Forever,1971.0 tt0086006,Never Say Never Again,1983.0 tt0062512,You Only Live Twice,1967.0 tt0246460,Die Another Day,2002.0 tt0057076,From Russia with Love,1963.0 tt0058150,Goldfinger,1964.0 tt0830515,Quantum of Solace,2008.0 tt1074638,Skyfall,2012.0 tt0059800,Thunderball,1965.0 tt0381061,Casino Royale,2006.0 tt0064757,On Her Majesty's Secret Service,1969.0 tt0113189,GoldenEye,1995.0 tt0120347,Tomorrow Never Dies,1997.0 tt0090264,A View to a Kill,1985.0 tt0071807,The Man with the Golden Gun,1974.0 tt0097742,Licence to Kill,1989.0 tt0143145,The World is Not Enough,1999.0 tt0082398,For Your Eyes Only,1981.0 tt0086034,Octopussy,1983.0 tt0070328,Live and Let Die,1973.0 tt0076752,The Spy Who Loved Me,1977.0 tt0093428,The Living Daylights,1987.0 tt0055928,Dr. No,1962.0 tt0079574,Moonraker,1979.0 tt1436562,Rio,2011.0 tt1318514,Rise of the Planet of the Apes,2011.0 tt0477347,Night at the Museum,2006.0 tt0489099,Jumper,2008.0 tt0455499,Garfield 2,2006.0 tt0303933,Drumline,2002.0 tt0098621,The War of the Roses,1989.0 tt0120461,Volcano,1997.0 tt0120913,Titan A.E.,2000.0 tt0114885,Waiting to Exhale,1995.0 tt0120902,The X Files,1998.0 tt0105812,White Men Can't Jump,1992.0 tt0473308,Waitress,2007.0 tt0096463,Working Girl,1988.0 tt0084855,The Verdict,1982.0 tt0250797,Unfaithful,2002.0 tt0117979,The Truth About Cats & Dogs,1996.0 tt0316732,Taxi,2004.0 tt1753584,Sexual Chronicles of a French Family,2012.0 tt0988595,27 Dresses,2008.0 tt0094291,Wall Street,1987.0 tt0358273,Walk the Line,2005.0 tt0293662,The Transporter,2002.0 tt0117509,Romeo + Juliet,1996.0 tt1323594,Despicable Me,2010.0 tt0059742,The Sound of Music,1965.0 tt0048605,The Seven Year Itch,1955.0 tt0117887,That Thing You Do!,1996.0 tt0427944,Thank You for Smoking,2005.0 tt0120169,Soul Food,1997.0 tt0119313,Hope Floats,1998.0 tt0901476,Bride Wars,2009.0 tt0455824,Australia,2008.0 tt0114887,A Walk in the Clouds,1995.0 tt0129387,There's Something About Mary,1998.0 tt1216496,Mother,2009.0 tt0101889,The Fisher King,1991.0 tt1196141,Diary of a Wimpy Kid,2010.0 tt1201607,Harry Potter and the Deathly Hallows: Part 2,2011.0 tt0952640,Alvin and the Chipmunks,2007.0 tt0111257,Speed,1994.0 tt0247745,Super Troopers,2001.0 tt1840309,Divergent,2014.0 tt0376994,X-Men: The Last Stand,2006.0 tt0290334,X-Men 2,2003.0 tt0120903,X-Men,2000.0 tt0120179,Speed 2: Cruise Control,1997.0 tt0256380,Shallow Hal,2001.0 tt0268380,Ice Age,2002.0 tt0133952,The Siege,1998.0 tt0244970,Animal Attraction,2001.0 tt0120831,Slums of Beverly Hills,1998.0 tt0375063,Sideways,2004.0 tt0117628,She's the One,1996.0 tt0203119,Sexy Beast,2000.0 tt0073629,The Rocky Horror Picture Show,1975.0 tt0107977,Robin Hood: Men in Tights,1993.0 tt0443632,The Sentinel,2006.0 tt0069113,The Poseidon Adventure,1972.0 tt0120772,The Object of My Affection,1998.0 tt0098258,Say Anything...,1989.0 tt0343818,"I, Robot",2004.0 tt0093822,Raising Arizona,1987.0 tt0100403,Predator 2,1990.0 tt0063442,Planet of the Apes,1968.0 tt0119896,Picture Perfect,1997.0 tt0183649,Phone Booth,2002.0 tt0066206,Patton,1970.0 tt0265459,One Hour Photo,2002.0 tt0151738,Never been Kissed,1999.0 tt0110638,Nell,1994.0 tt0374900,Napoleon Dynamite,2004.0 tt0151804,Office Space,1999.0 tt0093773,Predator,1987.0 tt0433416,The Namesake,2006.0 tt0051878,"The Long, Hot Summer",1958.0 tt0104691,The Last of the Mohicans,1992.0 tt0455590,The Last King of Scotland,2006.0 tt0203009,Moulin Rouge!,2001.0 tt0104952,My Cousin Vinny,1992.0 tt0107614,Mrs. Doubtfire,1993.0 tt0039628,Miracle on 34th Street,1947.0 tt0183505,"Me, Myself & Irene",2000.0 tt0203019,Men of Honour,2000.0 tt0066026,M.A.S.H.,1970.0 tt0100114,Marked for Death,1990.0 tt0328107,Man on Fire,2004.0 tt0337978,Die Hard 4.0,2007.0 tt0449059,Little Miss Sunshine,2006.0 tt0240468,Kung Pow: Enter the Fist,2002.0 tt0264761,Kissing Jessica Stein,2001.0 tt0320661,Kingdom of Heaven,2005.0 tt0305711,Just Married,2003.0 tt0091306,Jumpin' Jack Flash,1986.0 tt0359517,Johnson Family Vacation,2004.0 tt0036613,Arsenic and Old Lace,1944.0 tt0107034,The Good Son,1993.0 tt0454841,The Hills Have Eyes,2006.0 tt0054997,The Hustler,1961.0 tt0120703,How Stella Got Her Groove Back,1998.0 tt0465494,Hitman,2007.0 tt0101410,Barton Fink,1991.0 tt0356721,I Heart Huckabees,2004.0 tt0119381,Inventing the Abbotts,1997.0 tt0388125,In Her Shoes,2005.0 tt0455967,John Tucker Must Die,2006.0 tt0116705,Jingle All The Way,1996.0 tt0119349,The Ice Storm,1997.0 tt0298845,In America,2002.0 tt0089370,The Jewel of the Nile,1985.0 tt0116629,Independence Day,1996.0 tt0449010,Eragon,2006.0 tt0104431,Home Alone 2: Lost in New York,1992.0 tt0382077,Hide and Seek,2005.0 tt0107144,Hot Shots! Part Deux,1993.0 tt0102059,Hot Shots!,1991.0 tt0120681,From Hell,2001.0 tt0377062,Flight of the Phoenix,2004.0 tt0099785,Home Alone,1990.0 tt0104427,Hoffa,1992.0 tt0356634,Garfield,2004.0 tt0067116,The French Connection,1971.0 tt0242423,"Dude, Where's My Car?",2000.0 tt0099487,Edward Scissorhands,1990.0 tt0137523,Fight Club,1999.0 tt0838221,The Darjeeling Limited,2007.0 tt0357277,Elektra,2005.0 tt0332047,The Perfect Catch,2005.0 tt0120631,EverAfter,1998.0 tt0364725,Dodgeball: A True Underdog Story,2004.0 tt0164114,Drive Me Crazy,1999.0 tt0099423,Die Hard 2,1990.0 tt0095016,Die Hard,1988.0 tt0458352,The Devil Wears Prada,2006.0 tt0043456,The Day the Earth Stood Still,1951.0 tt0092115,Troll,1986.0 tt0116282,Fargo,1996.0 tt0286499,Bend It Like Beckham,2002.0 tt0319262,The Day After Tomorrow,2004.0 tt0088944,Commando,1985.0 tt0452598,Cheaper by the Dozen 2,2005.0 tt0349205,Cheaper by the Dozen,2003.0 tt0115857,Chain Reaction,1996.0 tt0118798,Bulworth,1998.0 tt0297037,Brown Sugar,2002.0 tt0120620,Brokedown Palace,1999.0 tt0092699,Broadcast News,1987.0 tt0078902,Breaking Away,1979.0 tt0421729,Big Momma's House 2,2006.0 tt0208003,Big Momma's House,2000.0 tt0065466,Beyond the Valley of the Dolls,1970.0 tt0163978,The Beach,2000.0 tt0280460,The Banger Sisters,2002.0 tt0042192,All About Eve,1950.0 tt0168786,Antwone Fisher,2002.0 tt0118583,Alien Resurrection,1997.0 tt0103644,Alien³,1992.0 tt0311113,Master and Commander: The Far Side of the World,2003.0 tt0198021,Where the Heart Is,2000.0 tt0283026,Swimfan,2002.0 tt0467406,Juno,2007.0 tt0166396,Waking Ned,1998.0 tt0388482,Transporter 2,2005.0 tt0139414,Lake Placid,1999.0 tt0112864,Die Hard: With a Vengeance,1995.0 tt0333766,Garden State,2004.0 tt0094737,Big,1988.0 tt0090728,Big Trouble in Little China,1986.0 tt0456554,Grandma's Boy,2006.0 tt0159273,Behind Enemy Lines,2001.0 tt0115759,Broken Arrow,1996.0 tt0064115,Butch Cassidy and the Sundance Kid,1969.0 tt0118617,Anastasia,1997.0 tt0370263,AVP: Alien vs. Predator,2004.0 tt0078748,Alien,1979.0 tt0463854,28 Weeks Later,2007.0 tt0289043,28 Days Later...,2002.0 tt0086998,Breakin',1984.0 tt0095159,A Fish Called Wanda,1988.0 tt0103596,3 Ninja Kids,1992.0 tt0075066,The Pink Panther Strikes Again,1976.0 tt0120841,Species II,1998.0 tt0072081,The Return of the Pink Panther,1975.0 tt0111282,Stargate,1994.0 tt0095444,Killer Klowns from Outer Space,1988.0 tt0109831,Four Weddings and a Funeral,1994.0 tt0093409,Lethal Weapon,1987.0 tt0078872,The Black Stallion,1979.0 tt0107616,Much Ado About Nothing,1993.0 tt0100054,Lord of the Flies,1990.0 tt0333780,"Legally Blonde 2: Red, White & Blonde",2003.0 tt0212985,Hannibal,2001.0 tt0085862,Lone Wolf McQuade,1983.0 tt0092675,Bloodsport,1988.0 tt0103074,Thelma & Louise,1991.0 tt0032904,The Philadelphia Story,1940.0 tt0379725,Capote,2005.0 tt0080745,Flash Gordon,1980.0 tt0116778,Kingpin,1996.0 tt0098627,Weekend at Bernie's,1989.0 tt0050083,12 Angry Men,1957.0 tt0245574,Y Tu Mamá También,2001.0 tt0070849,Last Tango in Paris,1972.0 tt0424345,Clerks II,2006.0 tt0095560,Mac and Me,1988.0 tt0087803,1984,1984.0 tt0097499,Henry V,1989.0 tt0090142,Teen Wolf,1985.0 tt0040724,Red River,1948.0 tt0053291,Some Like It Hot,1959.0 tt0114814,The Usual Suspects,1995.0 tt0101587,City Slickers,1991.0 tt0100157,Misery,1990.0 tt0299117,Roger Dodger,2002.0 tt0264616,Frailty,2001.0 tt1046163,My Best Friend's Girl,2008.0 tt0151568,Topsy-Turvy,1999.0 tt0092654,The Big Easy,1986.0 tt1081935,Baarìa,2009.0 tt1403177,Hesher,2010.0 tt1277737,The Stoning of Soraya M.,2008.0 tt1213012,Alpha and Omega,2010.0 tt0164181,Stir of Echoes,1999.0 tt0245238,Lost and Delirious,2001.0 tt0367913,Ju-on 2,2003.0 tt0873886,Red State,2011.0 tt0090837,Chopping Mall,1986.0 tt0098141,The Punisher,1989.0 tt0173716,Cecil B. DeMented,2000.0 tt0090713,The Best of Times,1986.0 tt0100196,Mountains of the Moon,1990.0 tt0107492,The Making of '...And God Spoke',1993.0 tt0119576,Love in Paris,1997.0 tt0081398,Raging Bull,1980.0 tt0125879,Lulu on the Bridge,1998.0 tt0151582,The Minus Man,1999.0 tt0217355,Dancing at the Blue Iguana,2000.0 tt0218922,Original Sin,2001.0 tt0239060,Ik ook van jou,2001.0 tt0234354,Novocaine,2001.0 tt0067093,Fiddler on the Roof,1971.0 tt0226935,Chelsea Walls,2001.0 tt0250202,All Over the Guy,2001.0 tt0094812,Bull Durham,1988.0 tt0372334,House of D,2004.0 tt0363473,Beyond the Sea,2004.0 tt0098635,When Harry Met Sally,1989.0 tt0430919,The Best Man,2005.0 tt0426615,In the Mix,2005.0 tt0090756,Blue Velvet,1986.0 tt0357507,Boogeyman,2005.0 tt0397401,Drop Dead Sexy,2005.0 tt0086979,Blood Simple,1984.0 tt0100507,Rocky V,1990.0 tt0089927,Rocky IV,1985.0 tt0084602,Rocky III,1982.0 tt0079817,Rocky II,1979.0 tt0099348,Dances with Wolves,1990.0 tt0429573,An American Haunting,2005.0 tt0433386,The Grudge 2,2006.0 tt0114436,Showgirls,1995.0 tt0472160,Penelope,2006.0 tt0804516,P2,2007.0 tt0079501,Mad Max,1979.0 tt0097659,Kickboxer,1989.0 tt0060196,"The Good, the Bad and the Ugly",1966.0 tt0058461,A Fistful of Dollars,1964.0 tt0805570,The Midnight Meat Train,2008.0 tt0092086,¡Three Amigos!,1986.0 tt0059578,For a Few Dollars More,1965.0 tt0094012,Spaceballs,1987.0 tt0299981,Highlander: The Source,2007.0 tt0887912,The Hurt Locker,2008.0 tt1023111,Never Back Down,2008.0 tt0430912,Basic Instinct 2,2006.0 tt0486321,Fly Me to the Moon,2008.0 tt1124048,The Last Resort,2009.0 tt1053859,The Grudge 3,2009.0 tt0093870,RoboCop,1987.0 tt0465580,Push,2009.0 tt0093779,The Princess Bride,1987.0 tt1232783,Sorority Row,2009.0 tt2091473,Promised Land,2012.0 tt0100502,RoboCop 2,1990.0 tt1477855,Hyde Park on Hudson,2012.0 tt1814621,Admission,2013.0 tt0082846,On Golden Pond,1981.0 tt1272878,2 Guns,2013.0 tt1231587,Hot Tub Time Machine,2010.0 tt2083355,The Best Man Holiday,2013.0 tt1103275,Two Lovers,2008.0 tt1172994,The House of the Devil,2009.0 tt1612774,Rubber,2010.0 tt1640459,Hobo with a Shotgun,2011.0 tt0074285,Carrie,1976.0 tt1912398,God Bless America,2011.0 tt1172570,Bronson,2008.0 tt1175709,All Good Things,2010.0 tt0365485,The Matador,2005.0 tt0790736,R.I.P.D.,2013.0 tt0443536,Hoodwinked,2005.0 tt0426459,Feast,2005.0 tt0462519,School for Scoundrels,2006.0 tt0489237,The Nanny Diaries,2007.0 tt1979320,Rush,2013.0 tt0884328,The Mist,2007.0 tt0427309,The Great Debaters,2007.0 tt0386032,Sicko,2007.0 tt0368794,I'm Not There,2007.0 tt0367959,Hannibal Rising,2007.0 tt1817273,The Place Beyond the Pines,2012.0 tt0373883,Halloween,2007.0 tt0848557,Diary of the Dead,2007.0 tt0421082,Control,2007.0 tt0790636,Dallas Buyers Club,2013.0 tt0795493,Cassandra's Dream,2007.0 tt0450385,1408,2007.0 tt1266029,Nowhere Boy,2009.0 tt1007028,Zack and Miri Make a Porno,2008.0 tt0976051,The Reader,2008.0 tt0443559,Killshot,2008.0 tt0403702,Youth in Revolt,2009.0 tt2184339,The Purge,2013.0 tt0898367,The Road,2009.0 tt1742650,I Don't Know How She Does It,2011.0 tt0497465,Vicky Cristina Barcelona,2008.0 tt1483013,Oblivion,2013.0 tt0426592,Superhero Movie,2008.0 tt0362120,Scary Movie 4,2006.0 tt1077258,Planet Terror,2007.0 tt1411250,Riddick,2013.0 tt1028528,Death Proof,2007.0 tt0281322,Undisputed,2002.0 tt0280778,Iris,2001.0 tt1650554,Kick-Ass 2,2013.0 tt0171359,Hamlet,2000.0 tt1596343,Fast & Furious 5,2011.0 tt0104409,Hellraiser III: Hell on Earth,1992.0 tt0068935,Way of the Dragon,1972.0 tt0120604,Beowulf,1999.0 tt0122541,An Ideal Husband,1999.0 tt0240601,"I Love You, Baby",2000.0 tt1690953,Despicable Me 2,2013.0 tt0102370,In Bed with Madonna,1991.0 tt0110027,Highlander III: The Sorcerer,1994.0 tt0133046,Teaching Mrs. Tingle,1999.0 tt1905041,Furious 6,2013.0 tt0120915,Star Wars: Episode I - The Phantom Menace,1999.0 tt0144964,Highlander: Endgame,2000.0 tt0246544,The Musketeer,2001.0 tt0193560,Texas Rangers,2001.0 tt0252299,Buffalo Soldiers,2001.0 tt0220506,Halloween: Resurrection,2002.0 tt0290212,Full Frontal,2002.0 tt0282209,Darkness Falls,2003.0 tt1139328,The Ghost,2010.0 tt0427470,The Lookout,2007.0 tt0052618,Ben-Hur,1959.0 tt0417741,Harry Potter and the Half-Blood Prince,2009.0 tt0377818,The Dukes of Hazzard,2005.0 tt0348836,Gothika,2003.0 tt0112462,Batman Forever,1995.0 tt1120985,Blue Valentine,2010.0 tt0120891,Wild Wild West,1999.0 tt0289879,The Butterfly Effect,2004.0 tt0329101,Freddy vs. Jason,2003.0 tt0251160,John Q,2002.0 tt0331632,Scooby-Doo 2: Monsters Unleashed,2004.0 tt0267913,Scooby-Doo,2002.0 tt0186566,Space Cowboys,2000.0 tt0244244,Swordfish,2001.0 tt0100944,The Witches,1990.0 tt0105695,Unforgiven,1992.0 tt0089791,Pee-wee's Big Adventure,1985.0 tt0195945,Next Friday,2000.0 tt0066999,Dirty Harry,1971.0 tt0327056,Mystic River,2003.0 tt0770752,Fool's Gold,2008.0 tt0480249,I Am Legend,2007.0 tt0366548,Happy Feet,2006.0 tt0066434,THX 1138,1971.0 tt0100133,Memphis Belle,1990.0 tt0084917,The World According to Garp,1982.0 tt0037913,Mildred Pierce,1945.0 tt0036098,Lassie Come Home,1943.0 tt0239395,Cats & Dogs,2001.0 tt0103776,Batman Returns,1992.0 tt0443649,"10,000 BC",2008.0 tt0448011,Knowing,2009.0 tt1136608,District 9,2009.0 tt1097013,Next Day Air,2009.0 tt0464154,Piranha 3D,2010.0 tt0892318,Letters to Juliet,2010.0 tt1655420,My Week with Marilyn,2011.0 tt1637706,Our Idiot Brother,2011.0 tt1262416,Scream 4,2011.0 tt1655442,The Artist,2011.0 tt1270761,Don't Be Afraid of the Dark,2010.0 tt1504320,The King's Speech,2010.0 tt0361748,Inglourious Basterds,2009.0 tt1311067,Halloween II,2009.0 tt0489049,Fanboys,2009.0 tt0976222,Bandslam,2009.0 tt0375568,Astro Boy,2009.0 tt1315981,A Single Man,2009.0 tt1951264,The Hunger Games: Catching Fire,2013.0 tt0977855,Fair Game,2010.0 tt1860355,Undefeated,2011.0 tt1007029,The Iron Lady,2011.0 tt1093357,The Darkest Hour,2011.0 tt1045658,Silver Linings Playbook,2012.0 tt1673434,The Twilight Saga: Breaking Dawn - Part 2,2012.0 tt1321860,The Beaver,2011.0 tt1517489,Spy Kids 4: All the Time in the World,2011.0 tt0945513,Source Code,2011.0 tt1502404,Drive Angry,2011.0 tt1682181,Bully,2011.0 tt1586265,What to Expect When You're Expecting,2012.0 tt0431021,The Possession,2012.0 tt1764651,The Expendables 2,2012.0 tt1259521,The Cabin in the Woods,2011.0 tt1800741,Step Up 4: Miami Heat,2012.0 tt1212450,Lawless,2012.0 tt1764234,Killing Them Softly,2012.0 tt1568338,Man on a Ledge,2012.0 tt1838544,Gone,2012.0 tt1343727,Dredd,2012.0 tt1920849,Bachelorette,2012.0 tt0795461,Scary Movie 5,2013.0 tt1327773,The Butler,2013.0 tt2334649,Fruitvale Station,2013.0 tt0075148,Rocky,1976.0 tt1245526,RED,2010.0 tt0102753,Rambling Rose,1991.0 tt0053604,The Apartment,1960.0 tt0367085,Soul Plane,2004.0 tt0067411,McCabe & Mrs. Miller,1971.0 tt0478197,Leonard Cohen: I'm Your Man,2005.0 tt0117108,Multiplicity,1996.0 tt0226009,Jailbait,2000.0 tt1341167,Four Lions,2010.0 tt0348333,Waiting...,2005.0 tt0338095,Haute tension,2003.0 tt0344510,A Very Long Engagement,2004.0 tt1226236,I Am Love,2009.0 tt0048356,Marty,1955.0 tt0420757,Man About Town,2006.0 tt0070355,Magnum Force,1973.0 tt0064665,Midnight Cowboy,1969.0 tt0795426,Midnight Clear,2006.0 tt0095953,Rain Man,1988.0 tt0935075,Rabbit Hole,2010.0 tt0307351,Prey for Rock & Roll,2003.0 tt1262981,World's Greatest Dad,2009.0 tt1001562,Witless Protection,2008.0 tt0245562,Windtalkers,2002.0 tt0114938,Wild Bill,1995.0 tt0486674,What Just Happened,2008.0 tt1465522,Tucker and Dale vs Evil,2010.0 tt0084814,Trail of the Pink Panther,1982.0 tt0070814,Tom Sawyer,1973.0 tt1293842,The Winning Season,2009.0 tt0120520,The Wings of the Dove,1997.0 tt0051036,Sweet Smell of Success,1957.0 tt0098384,Steel Magnolias,1989.0 tt0120788,Permanent Midnight,1998.0 tt0839880,Lake Dead,2007.0 tt0363276,Madhouse,2004.0 tt0227005,Made,2001.0 tt0234137,Love & Sex,2000.0 tt0202677,The Way of the Gun,2000.0 tt0040897,The Treasure of the Sierra Madre,1948.0 tt0117774,The Substitute,1996.0 tt0120802,The Red Violin,1998.0 tt0981072,The Lucky Ones,2008.0 tt0070334,The Long Goodbye,1973.0 tt0165854,The Limey,1999.0 tt0097613,The January Man,1989.0 tt1594562,The Innkeepers,2011.0 tt1038919,The Bounty Hunter,2010.0 tt1392170,The Hunger Games,2012.0 tt1615091,The Lost Future,2010.0 tt0106664,The Dark Half,1993.0 tt0115685,The Birdcage,1996.0 tt0189584,The Big Kahuna,1999.0 tt0200465,The Bank Job,2008.0 tt0042208,The Asphalt Jungle,1950.0 tt0078767,The Amityville Horror,1979.0 tt0125659,Open Your Eyes,1997.0 tt0368909,Ong-bak,2003.0 tt1598828,One for the Money,2012.0 tt0035140,"Now, Voyager",1942.0 tt0395972,North Country,2005.0 tt0031725,Ninotchka,1939.0 tt0247786,"Two Days, Nine Lives",2001.0 tt0309912,Nicholas Nickleby,2002.0 tt0116743,Kama Sutra: A Tale of Love,1996.0 tt1175491,W.,2008.0 tt1855401,Tim and Eric's Billion Dollar Movie,2012.0 tt1456635,Goon,2011.0 tt0115798,The Cable Guy,1996.0 tt0114388,Sense and Sensibility,1995.0 tt1233227,Saw VI,2009.0 tt0120744,The Man in the Iron Mask,1998.0 tt0985699,Valkyrie,2008.0 tt0100135,Men at Work,1990.0 tt1095442,Goodbye Solo,2008.0 tt0077597,Gas Pump Girls,1979.0 tt0492389,Furry Vengeance,2010.0 tt0097257,Earth Girls Are Easy,1988.0 tt0059124,Dr. Goldfoot and the Bikini Machine,1965.0 tt0088960,Creator,1985.0 tt0804452,Bratz,2007.0 tt0162662,A Slipping-Down Life,1999.0 tt0245712,Amores Perros,2000.0 tt1602098,Albert Nobbs,2011.0 tt1399683,Winter's Bone,2010.0 tt1291584,Warrior,2011.0 tt0065214,The Wild Bunch,1969.0 tt0075314,Taxi Driver,1976.0 tt0258000,Panic Room,2002.0 tt0093565,Moonstruck,1987.0 tt1527186,Melancholia,2011.0 tt1615147,Margin Call,2011.0 tt1588170,I Saw the Devil,2010.0 tt0926084,Harry Potter and the Deathly Hallows: Part 1,2010.0 tt0190332,"Crouching Tiger, Hidden Dragon",2000.0 tt1436045,13 Assassins,2010.0 tt0098453,Teen Witch,1989.0 tt0094862,Child's Play,1988.0 tt0111653,Wagons East,1994.0 tt0327919,I Am David,2003.0 tt0094910,The Couch Trip,1988.0 tt0081071,The Long Riders,1980.0 tt0072325,Truck Turner,1974.0 tt0087727,Missing in Action,1984.0 tt0051411,The Big Country,1958.0 tt0102555,Not Without My Daughter,1991.0 tt0093640,No Way Out,1987.0 tt0083629,The Beast Within,1982.0 tt0104765,Love Field,1992.0 tt0049406,The Killing,1956.0 tt0052564,The Angry Red Planet,1959.0 tt0081184,Motel Hell,1980.0 tt0052832,The Fugitive Kind,1960.0 tt0084732,Still of the Night,1982.0 tt0079240,The First Great Train Robbery,1978.0 tt0305396,The Crocodile Hunter: Collision Course,2002.0 tt0100680,Stanley & Iris,1990.0 tt0089572,The Mean Season,1985.0 tt0048424,The Night of the Hunter,1955.0 tt0082416,The French Lieutenant's Woman,1981.0 tt0063415,The Party,1968.0 tt0057413,The Pink Panther,1963.0 tt0100530,The Russia House,1990.0 tt0055614,West Side Story,1961.0 tt0094142,Throw Momma from the Train,1987.0 tt0054047,The Magnificent Seven,1960.0 tt0120757,The Mod Squad,1999.0 tt0263757,Uptown Girls,2003.0 tt0070915,White Lightning,1973.0 tt0098546,UHF,1989.0 tt0098090,The Phantom of the Opera,1989.0 tt0102926,The Silence of the Lambs,1991.0 tt0086567,WarGames,1983.0 tt0086619,Yentl,1983.0 tt0092003,Stagecoach,1986.0 tt0086999,Breakin' 2: Electric Boogaloo,1984.0 tt0072251,The Taking of Pelham One Two Three,1974.0 tt0071746,Lenny,1974.0 tt0118900,Gang Related,1997.0 tt0251114,Hart's War,2002.0 tt0070653,Scorpio,1973.0 tt0089730,Once Bitten,1985.0 tt0091699,Otello,1986.0 tt0105046,Of Mice and Men,1992.0 tt0094783,The Boost,1988.0 tt0078790,The Apple Dumpling Gang Rides Again,1979.0 tt0086993,The Bounty,1984.0 tt0068931,The Mechanic,1972.0 tt0056241,The Miracle Worker,1962.0 tt0087231,The Falcon and the Snowman,1985.0 tt0076210,The Island of Dr. Moreau,1977.0 tt0057115,The Great Escape,1963.0 tt0055184,The Misfits,1961.0 tt0054428,The Unforgiven,1960.0 tt0383216,The Pink Panther,2006.0 tt0107863,Posse,1993.0 tt0091875,Running Scared,1986.0 tt0108187,Son of the Pink Panther,1993.0 tt0098042,Out Cold,1989.0 tt0114287,Rob Roy,1995.0 tt0122690,Ronin,1998.0 tt0075268,Stay Hungry,1976.0 tt0102103,Impromptu,1991.0 tt0059287,How to Stuff a Wild Bikini,1965.0 tt0089348,Invasion USA,1985.0 tt0102005,Harley Davidson and the Marlboro Man,1991.0 tt0093200,Hollywood Shuffle,1987.0 tt0080895,How to Beat the High Cost of Living,1980.0 tt0085672,Hercules,1983.0 tt0068673,Hammer,1972.0 tt0109913,Go Fish,1994.0 tt0048254,Killer's Kiss,1955.0 tt0071706,Juggernaut,1974.0 tt0070379,Mean Streets,1973.0 tt0283897,Assassination Tango,2002.0 tt0373469,Kiss Kiss Bang Bang,2005.0 tt0105690,Under Siege,1992.0 tt0438488,Terminator Salvation,2009.0 tt0059825,The Train,1964.0 tt0091055,Firewalker,1986.0 tt0295289,A Guy Thing,2003.0 tt0052896,A Hole in the Head,1959.0 tt0096769,After Midnight,1989.0 tt0049414,A Kiss Before Dying,1956.0 tt0303714,Barbershop,2002.0 tt0069897,Coffy,1973.0 tt0086946,Beat Street,1984.0 tt0068284,Blacula,1972.0 tt0055798,Birdman of Alcatraz,1962.0 tt0068309,Boxcar Bertha,1972.0 tt0097138,Cyborg,1989.0 tt0085384,Curse of the Pink Panther,1983.0 tt0069976,Dillinger,1973.0 tt0080661,Dressed to Kill,1980.0 tt0106873,Fatal Instinct,1993.0 tt0057449,The Raven,1963.0 tt0066130,Ned Kelly,1970.0 tt0313911,Agent Cody Banks,2003.0 tt1228705,Iron Man 2,2010.0 tt0085811,Krull,1983.0 tt0139134,Cruel Intentions,1999.0 tt0057012,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,1964.0 tt0089886,Real Genius,1985.0 tt0088172,Starman,1984.0 tt0118708,Beverly Hills Ninja,1997.0 tt0118615,Anaconda,1997.0 tt0381849,3:10 to Yuma,2007.0 tt0374102,Open Water,2003.0 tt0814022,Bangkok Dangerous,2008.0 tt0142688,The Ninth Gate,1999.0 tt0452625,Good Luck Chuck,2007.0 tt0218839,Best in Show,2000.0 tt0800003,Delta Farce,2007.0 tt0427312,Grizzly Man,2005.0 tt0099180,Re-Animator 2,1990.0 tt0838283,Step Brothers,2008.0 tt0117407,Pusher,1996.0 tt0145531,Stigmata,1999.0 tt1324999,The Twilight Saga: Breaking Dawn - Part 1,2011.0 tt1325004,The Twilight Saga: Eclipse,2010.0 tt1259571,The Twilight Saga: New Moon,2009.0 tt1099212,Twilight,2008.0 tt0415306,Talladega Nights: The Ballad of Ricky Bobby,2006.0 tt0119654,Men in Black,1997.0 tt0104694,A League of Their Own,1992.0 tt0119822,As Good as It Gets,1997.0 tt0425637,Red Cliff,2008.0 tt0245686,Joe Dirt,2001.0 tt0079417,Kramer vs. Kramer,1979.0 tt0343660,50 First Dates,2004.0 tt0104257,A Few Good Men,1992.0 tt0113670,A Little Princess,1995.0 tt0310281,A Mighty Wind,2003.0 tt0105265,A River Runs Through It,1992.0 tt0268126,Adaptation.,2002.0 tt0118571,Air Force One,1997.0 tt0074119,All the President's Men,1976.0 tt0305224,Anger Management,2003.0 tt0112442,Bad Boys,1995.0 tt0414852,District 13,2004.0 tt0981227,Nick and Norah's Infinite Playlist,2008.0 tt0106364,Batman: Mask of the Phantasm,1993.0 tt0094721,Beetlejuice,1988.0 tt0381681,Before Sunset,2004.0 tt0758774,Body of Lies,2008.0 tt0142342,Big Daddy,1999.0 tt0319061,Big Fish,2003.0 tt0115734,Bottle Rocket,1996.0 tt0101507,Boyz n the Hood,1991.0 tt0127723,Can't Hardly Wait,1998.0 tt0075860,Close Encounters of the Third Kind,1977.0 tt0376541,Closer,2004.0 tt0106673,Dave,1993.0 tt0068473,Deliverance,1972.0 tt0112851,Desperado,1995.0 tt0088323,The NeverEnding Story,1984.0 tt1213644,Disaster Movie,2008.0 tt0072890,Dog Day Afternoon,1975.0 tt0119008,Donnie Brasco,1997.0 tt0103874,Bram Stoker's Dracula,1992.0 tt0064276,Easy Rider,1969.0 tt0181536,Finding Forrester,2000.0 tt0065724,Five Easy Pieces,1970.0 tt0083987,Gandhi,1982.0 tt0119177,Gattaca,1997.0 tt0365265,Ginger Snaps Back: The Beginning,2004.0 tt0097441,Glory,1989.0 tt0139239,Go,1999.0 tt0120684,Gods and Monsters,1998.0 tt0107048,Groundhog Day,1993.0 tt0061735,Guess Who's Coming to Dinner,1967.0 tt0099726,Hamlet,1990.0 tt0308353,Happily N'Ever After,2006.0 tt0113277,Heat,1995.0 tt0386588,Hitch,2005.0 tt0102057,Hook,1991.0 tt0090060,St. Elmo's Fire,1985.0 tt0061809,In Cold Blood,1967.0 tt0107206,In the Line of Fire,1993.0 tt0025316,It Happened One Night,1934.0 tt0116695,Jerry Maguire,1996.0 tt0102138,JFK,1991.0 tt0113497,Jumanji,1995.0 tt0119488,L.A. Confidential,1997.0 tt0089457,Ladyhawke,1985.0 tt0056172,Lawrence of Arabia,1962.0 tt0110322,Legends of the Fall,1994.0 tt0097733,Lethal Weapon 2,1989.0 tt0110413,Leon,1994.0 tt0107178,Fatal Proposal,1993.0 tt0325805,Matchstick Men,2003.0 tt0303361,May,2002.0 tt0829482,Superbad,2007.0 tt0280590,Mr. Deeds,2002.0 tt0031679,Mr. Smith Goes to Washington,1939.0 tt0277371,Not Another Teen Movie,2001.0 tt0047296,On the Waterfront,1954.0 tt0107818,Philadelphia,1993.0 tt0093886,Roxanne,1987.0 tt0108002,Rudy,1993.0 tt0323944,Shattered Glass,2003.0 tt0385004,House of Flying Daggers,2004.0 tt0091949,Short Circuit,1986.0 tt0067328,The Last Picture Show,1971.0 tt0090022,Silverado,1985.0 tt0105414,Single White Female,1992.0 tt0108160,Sleepless in Seattle,1993.0 tt0208092,Snatch,2000.0 tt0108174,So I Married an Axe Murderer,1993.0 tt0092005,Stand by Me,1986.0 tt0120201,Starship Troopers,1997.0 tt0160127,Charlie's Angels,2000.0 tt0044079,Strangers on a Train,1951.0 tt0083131,Stripes,1981.0 tt0096764,The Adventures of Baron Munchausen,1988.0 tt0080453,The Blue Lagoon,1980.0 tt0050212,The Bridge on the River Kwai,1957.0 tt0382625,The Da Vinci Code,2006.0 tt0119116,The Fifth Element,1997.0 tt0070909,Westworld,1973.0 tt0865556,The Forbidden Kingdom,2008.0 tt0087538,The Karate Kid,1984.0 tt0033870,The Maltese Falcon,1941.0 tt0120746,The Mask of Zorro,1998.0 tt0087781,The Natural,1984.0 tt0120768,The Negotiator,1998.0 tt0187393,The Patriot,2000.0 tt0117318,The People vs. Larry Flynt,1996.0 tt0454921,The Pursuit of Happyness,2006.0 tt0107943,The Remains of the Day,1993.0 tt0292644,The Rules of Attraction,2002.0 tt0108071,The Secret Garden,1993.0 tt1273678,The Spy Next Door,2010.0 tt0367089,The Squid and the Whale,2005.0 tt0087332,Ghostbusters,1984.0 tt0320691,Underworld,2003.0 tt0383694,Vera Drake,2004.0 tt0120890,Wild Things,1998.0 tt1156398,Zombieland,2009.0 tt1554091,A Better Life,2011.0 tt1740707,Troll Hunter,2010.0 tt1306980,50/50,2011.0 tt1237838,Mystery Team,2009.0 tt0360009,Spartan,2004.0 tt0308508,Step Into Liquid,2003.0 tt0118971,The Devil's Advocate,1997.0 tt0129167,The Iron Giant,1999.0 tt0093437,The Lost Boys,1987.0 tt0120004,The Relic,1997.0 tt0086508,Uncommon Valor,1983.0 tt1477076,Saw 3D,2010.0 tt0816462,Conan the Barbarian,2011.0 tt0206275,Save the Last Dance,2001.0 tt0086873,All of Me,1984.0 tt0115738,Box of Moonlight,1996.0 tt0374563,Captivity,2007.0 tt0200530,Chuck & Buck,2000.0 tt0424993,Employee of the Month,2006.0 tt0317676,House of the Dead,2003.0 tt0160672,Joe the King,1999.0 tt0119426,Joyride,1997.0 tt0399295,Lord of War,2005.0 tt1179891,My Bloody Valentine,2009.0 tt0138704,Pi,1998.0 tt0114594,Swimming with Sharks,1994.0 tt0283111,Van Wilder: Party Liaison,2002.0 tt0283090,29 Palms,2002.0 tt0189998,Shadow of the Vampire,2000.0 tt0437800,Akeelah and the Bee,2006.0 tt0870195,Before the Rains,2007.0 tt0997143,Bled,2009.0 tt0450278,Hostel,2005.0 tt0364385,Ju-on,2002.0 tt0263734,Men with Brooms,2002.0 tt0274812,Secretary,2002.0 tt0831887,The Spirit,2008.0 tt0337972,Defiance,2002.0 tt0470705,Bug,2006.0 tt0814075,Deliver Us from Evil,2006.0 tt0353489,Ginger Snaps 2: Unleashed,2004.0 tt0811138,The Love Guru,2008.0 tt0115438,2 Days in the Valley,1996.0 tt0488508,Arctic Tale,2007.0 tt0393162,Coach Carter,2005.0 tt0410097,Hustle & Flow,2005.0 tt0100740,Tales from the Darkside: The Movie,1990.0 tt0037536,The Bells of St. Mary's,1945.0 tt0408839,The Heartbreak Kid,2007.0 tt0434139,The Last Kiss,2006.0 tt0264323,2001 Maniacs,2005.0 tt0384814,Ask the Dust,2006.0 tt0137338,200 Cigarettes,1999.0 tt0375173,Alfie,2004.0 tt0312329,Against the Ropes,2004.0 tt0101301,All I Want for Christmas,1991.0 tt0080365,American Gigolo,1980.0 tt0486259,American Teen,2008.0 tt0221799,An American Rhapsody,2001.0 tt0491747,Away from Her,2006.0 tt0414853,Barnyard,2006.0 tt0103759,Bad Lieutenant,1992.0 tt0292963,Before the Devil Knows You're Dead,2007.0 tt0482463,Bella,2006.0 tt0246772,Mostly Martha,2001.0 tt0294357,Beyond Borders,2003.0 tt0109305,Blue Chips,1994.0 tt0229260,Book of Shadows: Blair Witch 2,2000.0 tt0103873,Braindead,1992.0 tt0103859,Boomerang,1992.0 tt0163988,Bringing Out the Dead,1999.0 tt0179116,But I'm a Cheerleader,1999.0 tt0303816,Cabin Fever,2002.0 tt0961722,Cabin Fever 2: Spring Fever,2009.0 tt0375912,Layer Cake,2004.0 tt0157472,Clockstoppers,2002.0 tt1153706,Dance Flick,2009.0 tt0433362,Daybreakers,2009.0 tt0817538,Drillbit Taylor,2008.0 tt0116493,Harriet the Spy,1996.0 tt0276919,Dogville,2003.0 tt0150377,Double Jeopardy,1999.0 tt0109676,Drop Zone,1994.0 tt0097240,Drugstore Cowboy,1989.0 tt0326856,Envy,2004.0 tt0215750,Enemy at the Gates,2001.0 tt0428518,Fade to Black,2004.0 tt0119095,FairyTale: A True Story,1997.0 tt0289944,Fear X,2003.0 tt0106912,Fire in the Sky,1993.0 tt0050419,Funny Face,1957.0 tt0101912,Frankie and Johnny,1991.0 tt1034032,Gamer,2009.0 tt0828393,Garden Party,2008.0 tt0430308,Get Rich or Die Tryin',2005.0 tt0165798,Ghost Dog: The Way of the Samurai,1999.0 tt0405061,Gin gwai 2,2004.0 tt0335119,Girl with a Pearl Earring,2003.0 tt0104348,Glengarry Glen Ross,1992.0 tt0064381,"Goodbye, Columbus",1969.0 tt0093137,Hamburger Hill,1987.0 tt1235837,Happily N'Ever After 2,2009.0 tt0361693,Happy Endings,2005.0 tt0815236,She's Out of My League,2010.0 tt0180734,Hardball,2001.0 tt0102011,"He Said, She Said",1991.0 tt0251736,House of 1000 Corpses,2003.0 tt0770810,How She Move,2007.0 tt0110146,Intersection,1994.0 tt0186253,Jesus' Son,1999.0 tt0425123,Just Like Heaven,2005.0 tt1059932,"I Love You, Om...",2006.0 tt0215129,Road Trip,2000.0 tt1250777,Kick-Ass,2010.0 tt0113537,Kicking and Screaming,1995.0 tt0074751,King Kong,1976.0 tt0110305,Lassie,1994.0 tt0110329,Leprechaun 2,1994.0 tt0420251,Three... Extremes,2004.0 tt0079640,North Dallas Forty,1979.0 tt0119783,Night Falls on Manhattan,1996.0 tt0113691,Losing Isaiah,1995.0 tt0258273,Lovely & Amazing,2001.0 tt0438205,Mad Hot Ballroom,2005.0 tt0266747,Marci X,2003.0 tt0757361,Margot at the Wedding,2007.0 tt0473692,Neil Young: Heart of Gold,2006.0 tt0416320,Match Point,2005.0 tt0209144,Memento,2000.0 tt0291341,Mean Machine,2001.0 tt0117091,Mother,1996.0 tt0119715,Mousehunt,1997.0 tt0119717,Mr. Jealousy,1997.0 tt0093605,Near Dark,1987.0 tt0396171,Perfume: The Story of a Murderer,2006.0 tt0322659,Northfork,2003.0 tt0073190,Once Is Not Enough,1975.0 tt0120784,Payback,1999.0 tt0067589,Plaza Suite,1971.0 tt0078111,Pretty Baby,1978.0 tt0462499,Rambo,2008.0 tt0180093,Requiem for a Dream,2000.0 tt0337711,Rugrats Go Wild,2003.0 tt0388395,Schultze Gets the Blues,2003.0 tt0046303,Shane,1953.0 tt0454945,She's the Man,2006.0 tt0184907,Snow Day,2000.0 tt0040823,"Sorry, Wrong Number",1948.0 tt0489281,Stop-Loss,2008.0 tt0117731,Star Trek: First Contact,1996.0 tt0094072,Summer School,1987.0 tt0324127,Suspect Zero,2004.0 tt0115571,The Arrival,1996.0 tt0185937,The Blair Witch Project,1999.0 tt0064045,The Assassination Bureau,1969.0 tt0321442,The Big Empty,2003.0 tt0109340,The Browning Version,1994.0 tt0051436,The Buccaneer,1958.0 tt0101523,The Butcher's Wife,1991.0 tt0298814,The Core,2003.0 tt0435625,The Descent,2005.0 tt0116240,The Evening Star,1996.0 tt1320253,The Expendables,2010.0 tt0093075,The Gate,1987.0 tt0219699,The Gift,2000.0 tt0064505,The Italian Job,1969.0 tt0074777,The Last Tycoon,1976.0 tt0385057,The Long Weekend,2005.0 tt0380510,The Lovely Bones,2009.0 tt0071970,The Parallax View,1974.0 tt0314498,The Perfect Score,2004.0 tt1129442,Transporter 3,2008.0 tt0227445,The Score,2001.0 tt0095897,The Presidio,1988.0 tt0337697,The Prince & Me,2004.0 tt0268695,The Time Machine,2002.0 tt0290095,The Tuxedo,2002.0 tt0301976,The United States of Leland,2003.0 tt0159097,The Virgin Suicides,1999.0 tt0282120,The Wild Thornberrys Movie,2002.0 tt0161100,The Wood,1999.0 tt0469623,Things We Lost in the Fire,2007.0 tt0300556,Timeline,2003.0 tt0139699,Varsity Blues,1999.0 tt0070895,Walking Tall,1973.0 tt0049934,War and Peace,1956.0 tt0048801,We're No Angels,1955.0 tt0120524,Wishmaster,1997.0 tt0477139,Wristcutters: A Love Story,2006.0 tt0096487,Young Guns,1988.0 tt1186830,Agora,2009.0 tt1448755,Killer Elite,2011.0 tt0893412,From Prada to Nada,2011.0 tt1189340,The Lincoln Lawyer,2011.0 tt1600195,Abduction,2011.0 tt0805619,Stir of Echoes: The Homecoming,2007.0 tt0929632,Precious,2009.0 tt0082382,First Monday in October,1981.0 tt0049096,The Court Jester,1955.0 tt0344604,Après vous...,2003.0 tt0387564,Saw,2004.0 tt0285742,Monster's Ball,2001.0 tt0395584,The Devil's Rejects,2005.0 tt0107387,Leprechaun,1993.0 tt0408236,Sweeney Todd: The Demon Barber of Fleet Street,2007.0 tt0123755,Cube,1997.0 tt0092890,Dirty Dancing,1987.0 tt0375679,Crash,2004.0 tt0158493,Belly,1998.0 tt0078788,Apocalypse Now,1979.0 tt0144084,American Psycho,2000.0 tt0120151,A Smile Like Yours,1997.0 tt0261289,Serving Sara,2002.0 tt0089945,Rustlers' Rhapsody,1985.0 tt0068245,Bad Company,1972.0 tt0348505,Asylum,2005.0 tt0218182,An Everlasting Piece,2000.0 tt0118073,A Very Brady Sequel,1996.0 tt0096316,Tucker: The Man and His Dream,1988.0 tt0406158,"The Prize Winner of Defiance, Ohio",2005.0 tt0051364,"Another Time, Another Place",1958.0 tt0145653,Angela's Ashes,1999.0 tt0060086,Alfie,1966.0 tt0267248,Abandon,2002.0 tt0078757,An Almost Perfect Affair,1979.0 tt0258038,Pootie Tang,2001.0 tt0373908,The Honeymooners,2005.0 tt0268397,Jimmy Neutron: Boy Genius,2001.0 tt0795351,Case 39,2009.0 tt0099587,Flight of the Intruder,1991.0 tt0098625,We're No Angels,1989.0 tt0314676,The Singing Detective,2003.0 tt0134067,The Rugrats Movie,1998.0 tt0062153,The President's Analyst,1967.0 tt0060736,The Naked Prey,1965.0 tt0419887,The Kite Runner,2007.0 tt0366174,Anacondas: The Hunt for the Blood Orchid,2004.0 tt0044672,The Greatest Show on Earth,1952.0 tt0191133,The Fighting Temptations,2003.0 tt1305806,The Secret in Their Eyes,2009.0 tt0085407,The Dead Zone,1983.0 tt0072848,The Day of the Locust,1975.0 tt0055871,The Counterfeit Traitor,1962.0 tt0102951,Soapdish,1991.0 tt0122718,Small Soldiers,1998.0 tt0108162,Sliver,1993.0 tt0239986,Sidewalks of New York,2001.0 tt0061385,Barefoot in the Park,1967.0 tt1130884,Shutter Island,2010.0 tt0096094,She's Having a Baby,1988.0 tt0959337,Revolutionary Road,2008.0 tt0421239,Red Eye,2005.0 tt0250687,Rat Race,2001.0 tt0082970,Ragtime,1981.0 tt0066181,On a Clear Day You Can See Forever,1970.0 tt0078024,Oliver's Story,1978.0 tt0063356,No Way to Treat a Lady,1968.0 tt0056267,My Geisha,1962.0 tt0110516,Milk Money,1994.0 tt0068835,Last of the Red Hot Lovers,1972.0 tt0408985,Last Holiday,2006.0 tt0119468,Kiss the Girls,1997.0 tt0099850,Internal Affairs,1990.0 tt0119360,In & Out,1997.0 tt0110099,I.Q.,1994.0 tt0319531,I'll Sleep When I'm Dead,2003.0 tt0051745,Houseboat,1958.0 tt0080836,Hangar 18,1980.0 tt0050468,Gunfight at the O.K. Corral,1957.0 tt0082432,Gallipoli,1981.0 tt0430105,Four Brothers,2005.0 tt0097336,Shadow Makers,1989.0 tt0418647,Dreamer: Inspired by a True Story,2005.0 tt0044509,"Come Back, Little Sheba",1952.0 tt0163983,Bless the Child,2000.0 tt0075765,Black Sunday,1977.0 tt0326769,Biker Boyz,2003.0 tt0109120,Andre,1994.0 tt1403865,True Grit,2010.0 tt0384680,The Weather Man,2005.0 tt0100828,The Two Jakes,1990.0 tt0963794,The Ruins,2008.0 tt0117331,The Phantom,1996.0 tt0059575,The Pawnbroker,1964.0 tt0091129,The Golden Child,1986.0 tt0252028,Surviving Christmas,2004.0 tt0251075,Evolution,2001.0 tt0249478,Domestic Disturbance,2001.0 tt0821642,The Soloist,2009.0 tt0105327,School Ties,1992.0 tt0069097,"Play It Again, Sam",1972.0 tt0090357,Young Sherlock Holmes,1985.0 tt0756729,Year of the Dog,2007.0 tt0364751,Without a Paddle,2004.0 tt0277434,We Were Soldiers,2002.0 tt1193138,Up in the Air,2009.0 tt0073747,The Stepford Wives,1975.0 tt0345950,The SpongeBob SquarePants Movie,2004.0 tt0416236,The Spiderwick Chronicles,2008.0 tt0120053,The Saint,1997.0 tt0120844,Star Trek: Insurrection,1998.0 tt0113972,Nick of Time,1995.0 tt0377091,Mean Creek,2004.0 tt0115678,Big Night,1996.0 tt0120696,Hard Rain,1998.0 tt1126618,Morning Glory,2010.0 tt0114857,Virtuosity,1995.0 tt0272020,The Last Castle,2001.0 tt0406650,The Chumscrubber,2005.0 tt0830558,The Girl Next Door,2007.0 tt0097481,Harlem Nights,1989.0 tt0084021,Grease 2,1982.0 tt0077621,Goin' South,1978.0 tt0335559,Win a Date with Tad Hamilton!,2004.0 tt0272207,Narc,2002.0 tt0338564,Infernal Affairs,2002.0 tt0113451,Jade,1995.0 tt0780567,Imagine That,2009.0 tt0343121,Tupac: Resurrection,2003.0 tt0815245,The Uninvited,2009.0 tt0327162,The Stepford Wives,2004.0 tt0119874,The Peacemaker,1997.0 tt0171363,The Haunting,1999.0 tt0253754,Star Trek: Nemesis,2002.0 tt0785006,Hotel for Dogs,2009.0 tt0995039,Ghost Town,2008.0 tt0486822,Disturbia,2007.0 tt0099044,Another 48 Hrs.,1990.0 tt0120324,A Simple Plan,1998.0 tt0964517,The Fighter,2010.0 tt1251757,Middle Men,2009.0 tt0071771,The Mean Machine,1974.0 tt0499554,Reno 911!: Miami,2007.0 tt0203230,You Can Count on Me,2000.0 tt0452608,Death Race,2008.0 tt0112715,Congo,1995.0 tt0243736,40 Days and 40 Nights,2002.0 tt0118849,Bacheha-Ye aseman,1997.0 tt0426501,Johnny Was,2006.0 tt0099558,Armour of God II,1991.0 tt0118887,Cop Land,1997.0 tt0413895,Charlotte's Web,2006.0 tt0164184,The Sum of All Fears,2002.0 tt0445934,Blades of Glory,2007.0 tt0096933,Black Rain,1989.0 tt0442933,Beowulf,2007.0 tt0109506,The Crow,1994.0 tt0317248,City of God,2002.0 tt0124315,The Cider House Rules,1999.0 tt0043338,Ace in the Hole,1951.0 tt0241303,Chocolat,2000.0 tt0065528,Catch-22,1970.0 tt0118799,Life Is Beautiful,1997.0 tt0264472,Changing Lanes,2002.0 tt0088930,Clue,1985.0 tt0463998,Freedom Writers,2007.0 tt0082418,Friday the 13th: Part 2,1981.0 tt0787475,Hot Rod,2007.0 tt0427229,Failure to Launch,2006.0 tt0209037,Iedereen beroemd!,2000.0 tt0112744,The Crossing Guard,1995.0 tt0079540,Meatballs,1979.0 tt0796366,Star Trek,2009.0 tt0124295,The Big One,1997.0 tt0111280,Star Trek: Generations,1994.0 tt0099703,The Grifters,1990.0 tt0864761,The Duchess,2008.0 tt0164334,Along Came a Spider,2001.0 tt0829459,A Mighty Heart,2007.0 tt0431308,P.S. I Love You,2007.0 tt0080388,"Atlantic City, USA",1980.0 tt0090830,Children of a Lesser God,1986.0 tt1034303,Defiance,2008.0 tt0116126,Don't Be a Menace to South Central While Drinking Your Juice in the Hood,1996.0 tt0443489,Dreamgirls,2006.0 tt0091188,Heartburn,1986.0 tt0081353,Popeye,1980.0 tt0070510,Paper Moon,1973.0 tt0416051,Mr. Fix It,2006.0 tt0236640,Prozac Nation,2001.0 tt0822854,Shooter,2007.0 tt0054331,Spartacus,1960.0 tt0102975,Star Trek VI: The Undiscovered Country,1991.0 tt0486655,Stardust,2007.0 tt0402022,Æon Flux,2005.0 tt0116209,The English Patient,1996.0 tt0068646,The Godfather,1972.0 tt0071577,The Great Gatsby,1974.0 tt0368008,The Manchurian Candidate,2004.0 tt0469641,World Trade Center,2006.0 tt0116367,From Dusk Till Dawn,1996.0 tt0109445,Clerks,1994.0 tt0219653,Dracula 2001,2000.0 tt0068767,Fist of Fury,1972.0 tt0112346,The American President,1995.0 tt0091042,Ferris Bueller's Day Off,1986.0 tt0266489,Duplex,2003.0 tt0255477,Pinocchio,2002.0 tt0047396,Rear Window,1954.0 tt0110005,Heavenly Creatures,1994.0 tt1253596,Midgets Vs. Mascots,2009.0 tt0088850,Brewster's Millions,1985.0 tt0133751,The Faculty,1998.0 tt0077416,The Deer Hunter,1978.0 tt0090305,Weird Science,1985.0 tt0384642,Kicking & Screaming,2005.0 tt0107076,Hard Target,1993.0 tt0106332,Farewell My Concubine,1993.0 tt0082198,Conan the Barbarian,1982.0 tt0765429,American Gangster,2007.0 tt0080761,Friday the 13th,1980.0 tt0120694,Halloween H20: 20 Years Later,1998.0 tt0216787,Le Gout des Autres,2000.0 tt0238380,Equilibrium,2002.0 tt0169547,American Beauty,1999.0 tt0230600,The Others,2001.0 tt0357413,Anchorman: The Legend of Ron Burgundy,2004.0 tt0079945,Star Trek - The Motion Picture,1979.0 tt0106918,The Firm,1993.0 tt0099810,The Hunt for Red October,1990.0 tt0120815,Saving Private Ryan,1998.0 tt0119675,Mimic,1997.0 tt0449467,Babel,2006.0 tt0084726,Star Trek II - The Wrath of Khan,1982.0 tt0118607,Amistad,1997.0 tt0172495,Gladiator,2000.0 tt0401383,The Diving Bell and the Butterfly,2007.0 tt0327679,Ella Enchanted,2004.0 tt0095765,Cinema Paradiso,1988.0 tt0468565,Tsotsi,2005.0 tt0181875,Almost Famous,2000.0 tt0257044,Road to Perdition,2002.0 tt1182609,Direct Contact,2009.0 tt1179904,Paranormal Activity,2007.0 tt0302886,Old School,2003.0 tt0418279,Transformers,2007.0 tt0377109,The Ring 2,2005.0 tt0120737,The Lord of the Rings: The Fellowship of the Ring,2001.0 tt0236493,The Mexican,2001.0 tt0161081,What Lies Beneath,2000.0 tt0181689,Minority Report,2002.0 tt0325537,Head of State,2003.0 tt0264464,Catch Me If You Can,2002.0 tt0369339,Collateral,2004.0 tt0120647,Deep Impact,1998.0 tt0399201,The Island,2005.0 tt0942385,Tropic Thunder,2008.0 tt0177789,Galaxy Quest,1999.0 tt0477051,Norbit,2007.0 tt0043014,Sunset Blvd.,1950.0 tt0088286,Top Secret!,1984.0 tt0080339,Airplane!,1980.0 tt0091159,Gung Ho,1986.0 tt0115986,The Crow: City of Angels,1996.0 tt0918927,Doubt,2008.0 tt0086465,Trading Places,1983.0 tt0093748,"Planes, Trains & Automobiles",1987.0 tt0101272,The Addams Family,1991.0 tt0120082,Scream 2,1997.0 tt0106598,Coneheads,1993.0 tt0095705,The Naked Gun: From the Files of Police Squad!,1988.0 tt0112572,The Brady Bunch Movie,1995.0 tt1300851,The Boondock Saints II: All Saints Day,2009.0 tt0066011,Love Story,1970.0 tt0086425,Terms of Endearment,1983.0 tt0102510,The Naked Gun 2½: The Smell of Fear,1991.0 tt0273923,Orange County,2002.0 tt0110622,Naked Gun 33 1/3: The Final Insult,1994.0 tt0325258,Dickie Roberts: Former Child Star,2003.0 tt0063522,Rosemary's Baby,1968.0 tt0077631,Grease,1978.0 tt0162650,Shaft,2000.0 tt0104695,Leap of Faith,1992.0 tt0087277,Footloose,1984.0 tt0082766,Mommie Dearest,1981.0 tt0063518,Romeo and Juliet,1968.0 tt0090555,Crocodile Dundee,1986.0 tt0054698,Breakfast at Tiffany's,1961.0 tt0071315,Chinatown,1974.0 tt0077663,Heaven Can Wait,1978.0 tt0102517,Necessary Roughness,1991.0 tt0085549,Flashdance,1983.0 tt0056217,The Man Who Shot Liberty Valance,1962.0 tt0102768,Regarding Henry,1991.0 tt0167427,Superstar,1999.0 tt0116313,The First Wives Club,1996.0 tt0368709,Elizabethtown,2005.0 tt0112697,Clueless,1995.0 tt0094006,Some Kind of Wonderful,1987.0 tt0067185,Harold and Maude,1971.0 tt0074860,Marathon Man,1976.0 tt0163187,Runaway Bride,1999.0 tt0275022,Crossroads,2002.0 tt0758758,Into the Wild,2007.0 tt0332379,School of Rock,2003.0 tt0046250,Roman Holiday,1953.0 tt0213790,The Ladies' Man,2000.0 tt0398165,The Longest Yard,2005.0 tt0081283,Ordinary People,1980.0 tt0074174,The Bad News Bears,1976.0 tt0081696,Urban Cowboy,1980.0 tt0119978,The Rainmaker,1997.0 tt0185014,Wonder Boys,2000.0 tt0090329,Witness,1985.0 tt0108550,What's Eating Gilbert Grape,1993.0 tt0259711,Vanilla Sky,2001.0 tt0196229,Zoolander,2001.0 tt0443706,Zodiac,2007.0 tt0096061,Scrooged,1988.0 tt0114694,Tommy Boy,1995.0 tt0099653,Ghost,1990.0 tt0112817,Dead Man,1995.0 tt1046173,G.I. Joe: The Rise of Cobra,2009.0 tt0158983,"South Park: Bigger, Longer & Uncut",1999.0 tt1462041,Dream House,2011.0 tt0251127,How to Lose a Guy in 10 Days,2003.0 tt0108525,Wayne's World 2,1993.0 tt0105793,Wayne's World,1992.0 tt0093010,Fatal Attraction,1987.0 tt0097815,Major League,1989.0 tt0322802,Jackass: The Movie,2002.0 tt0146316,Lara Croft: Tomb Raider,2001.0 tt0080678,The Elephant Man,1980.0 tt0049833,The Ten Commandments,1956.0 tt0115641,Beavis and Butt-Head Do America,1996.0 tt0497116,An Inconvenient Truth,2006.0 tt0116191,Emma,1996.0 tt0457510,Nacho Libre,2006.0 tt0118113,Walking and Talking,1996.0 tt0099371,Days of Thunder,1990.0 tt0126886,Election,1999.0 tt0086960,Beverly Hills Cop,1984.0 tt0105112,Patriot Games,1992.0 tt0092099,Top Gun,1986.0 tt0119081,Event Horizon,1997.0 tt0094898,Coming to America,1988.0 tt0162661,Sleepy Hollow,1999.0 tt0083511,48 Hrs.,1982.0 tt0038650,It's a Wonderful Life,1946.0 tt0112573,Braveheart,1995.0 tt0107211,Indecent Proposal,1993.0 tt0064116,Once Upon a Time in the West,1968.0 tt0073802,Three Days of the Condor,1975.0 tt0076666,Saturday Night Fever,1977.0 tt0109444,Clear and Present Danger,1994.0 tt0120770,A Night at the Roxbury,1998.0 tt0118771,Breakdown,1997.0 tt0084434,An Officer and a Gentleman,1982.0 tt0094744,Big Top Pee-wee,1988.0 tt0119215,Good Burger,1997.0 tt0091790,Pretty in Pink,1986.0 tt0492619,The Foot Fist Way,2006.0 tt0063374,The Odd Couple,1968.0 tt0372588,Team America: World Police,2004.0 tt0297884,Far from Heaven,2002.0 tt0108065,Searching for Bobby Fischer,1993.0 tt0094608,The Accused,1988.0 tt0080120,The Warriors,1979.0 tt0109830,Forrest Gump,1994.0 tt0377092,Mean Girls,2004.0 tt0117060,Mission: Impossible,1996.0 tt0421715,The Curious Case of Benjamin Button,2008.0 tt0065126,True Grit,1969.0 tt1060277,Cloverfield,2008.0 tt0317919,Mission: Impossible III,2006.0 tt0094226,The Untouchables,1987.0 tt0120382,The Truman Show,1998.0 tt0317740,The Italian Job,2003.0 tt0371746,Iron Man,2008.0 tt0119094,Face/Off,1997.0 tt0104036,The Crying Game,1992.0 tt0128442,Rounders,1998.0 tt0469494,There Will Be Blood,2007.0 tt0409459,Watchmen,2009.0 tt0101318,Les Amants du Pont-Neuf,1991.0 tt0115697,Black Sheep,1996.0 tt0118826,The Castle,1997.0 tt0207201,What Women Want,2000.0 tt0117381,Primal Fear,1996.0 tt0257106,Scary Movie 2,2001.0 tt0340163,Hostage,2005.0 tt0110889,Priest,1994.0 tt0116324,Flirting with Disaster,1996.0 tt0261392,Jay and Silent Bob Strike Back,2001.0 tt0416508,Becoming Jane,2007.0 tt0113101,Four Rooms,1995.0 tt0238924,The Dangerous Lives of Altar Boys,2002.0 tt0120613,A Walk on the Moon,1999.0 tt0271219,Tadpole,2002.0 tt0285823,Once Upon a Time in Mexico,2003.0 tt0120879,Velvet Goldmine,1998.0 tt0110907,Prêt-à-Porter,1994.0 tt0120907,eXistenZ,1999.0 tt0858479,Smart People,2008.0 tt0274558,The Hours,2002.0 tt0115632,Basquiat,1996.0 tt1045670,Happy-Go-Lucky,2008.0 tt0105236,Reservoir Dogs,1992.0 tt0175142,Scary Movie,2000.0 tt0340377,The Station Agent,2003.0 tt0120577,54,1998.0 tt0111512,Jui kuen II,1994.0 tt0113158,Georgia,1995.0 tt0306047,Scary Movie 3,2003.0 tt0104567,Johnny Suede,1991.0 tt0307987,Bad Santa,2003.0 tt0240890,Serendipity,2001.0 tt0114194,The Prophecy,1995.0 tt0120679,Frida,2002.0 tt0105488,Strictly Ballroom,1992.0 tt0308644,Finding Neverland,2004.0 tt0301199,Dirty Pretty Things,2002.0 tt0247425,In the Bedroom,2001.0 tt0113326,Rumble in the Bronx,1995.0 tt0117283,The Pallbearer,1996.0 tt0077594,Game of Death,1978.0 tt0299977,Hero,2002.0 tt0213847,Malena,2000.0 tt0104558,Ging chaat goo si III: Chiu kup ging chaat,1992.0 tt0355295,The Brothers Grimm,2005.0 tt0117571,Scream,1996.0 tt0211915,Amélie,2001.0 tt0118842,Chasing Amy,1997.0 tt0115639,Beautiful Girls,1996.0 tt0436697,The Queen,2006.0 tt0338096,Dirty Dancing: Havana Nights,2004.0 tt0363226,Zatoichi: The Blind Swordsman,2003.0 tt0108148,Iron Monkey,1993.0 tt0270288,Confessions of a Dangerous Mind,2002.0 tt0160862,She's All That,1999.0 tt0134119,The Talented Mr. Ripley,1999.0 tt0264150,View from the Top,2003.0 tt0384806,The Amityville Horror,2005.0 tt0286112,Shaolin Soccer,2001.0 tt0107822,The Piano,1993.0 tt0120321,Smoke Signals,1998.0 tt0192071,Get Over It,2001.0 tt0302674,Gerry,2002.0 tt0250323,The Deep End,2001.0 tt0184858,Reindeer Games,2000.0 tt0300051,Jersey Girl,2004.0 tt0144715,Holy Smoke,1999.0 tt0377107,Proof,2005.0 tt0110588,Mrs. Parker and the Vicious Circle,1994.0 tt0119324,The House of Yes,1997.0 tt0186894,Bounce,2000.0 tt0110598,Muriel's Wedding,1994.0 tt0097937,My Left Foot,1989.0 tt0035423,Kate & Leopold,2001.0 tt0190590,"O Brother, Where Art Thou?",2000.0 tt0162360,"Happy, Texas",1999.0 tt0120148,Sliding Doors,1998.0 tt0117666,Sling Blade,1996.0 tt0780511,Everybody's Fine,2009.0 tt0114478,Smoke,1995.0 tt0115906,Citizen Ruth,1996.0 tt0494222,Eagle vs Shark,2007.0 tt0258068,The Quiet American,2002.0 tt0238112,Captain Corelli's Mandolin,2001.0 tt0278500,The Importance of Being Earnest,2002.0 tt0134084,Scream 3,2000.0 tt0116242,Everyone Says I Love You,1996.0 tt0427969,Hollywoodland,2006.0 tt0350261,An Unfinished Life,2005.0 tt0357470,The Battle of Shaker Heights,2003.0 tt0103994,Como agua para chocolate,1992.0 tt0489327,Venus,2006.0 tt0448075,The Night Listener,2006.0 tt0118949,Into Thin Air: Death on Everest,1997.0 tt0110877,Il Postino,1994.0 tt0114805,Unzipped,1995.0 tt0242527,The Hole,2001.0 tt0190138,The Whole Nine Yards,2000.0 tt0147004,Little Voice,1998.0 tt0240510,The Four Feathers,2002.0 tt0120820,Senseless,1998.0 tt0102749,A Rage in Harlem,1991.0 tt0107426,Little Buddha,1993.0 tt0186975,Down to You,2000.0 tt0338135,The Barbarian Invasions,2003.0 tt0434124,Kinky Boots,2005.0 tt0372824,The Chorus,2004.0 tt0287717,Spy Kids 2: Island of Lost Dreams,2002.0 tt0117951,Trainspotting,1996.0 tt0217505,Gangs of New York,2002.0 tt1225822,Extract,2009.0 tt0889573,The Switch,2010.0 tt0159365,Cold Mountain,2003.0 tt0227538,Spy Kids,2001.0 tt0299658,Chicago,2002.0 tt0117802,Swingers,1996.0 tt0119217,Good Will Hunting,1997.0 tt0358135,Shall We Dance,2004.0 tt0110912,Pulp Fiction,1994.0 tt0401792,Sin City,2005.0 tt0378194,Kill Bill: Vol. 2,2004.0 tt0266697,Kill Bill: Vol. 1,2003.0 tt1091722,Adventureland,2009.0 tt0452623,Gone Baby Gone,2007.0 tt0477348,No Country for Old Men,2007.0 tt0119396,Jackie Brown,1997.0 tt0203536,A Good Night to Die,2003.0 tt1334536,House of Bones,2010.0 tt1570728,"Crazy, Stupid, Love.",2011.0 tt1226753,The Debt,2010.0 tt0286947,Scorched,2003.0 tt1557769,Homewrecker,2010.0 tt1265621,Quantum Apocalypse,2010.0 tt0377808,Dragon Storm,2004.0 tt1133995,The Way of War,2009.0 tt0815230,Redrum,2007.0 tt1406157,Hai kikku gâru!,2009.0 tt0118652,Horror in the Attic,2001.0 tt1499658,Horrible Bosses,2011.0 tt1622979,Final Destination 5,2011.0 tt0420740,A Little Trip to Heaven,2005.0 tt0445946,The Contract,2006.0 tt0808265,The Ferryman,2007.0 tt0305556,Evil Alien Conquerors,2003.0 tt0858411,2001 Maniacs: Field of Screams,2010.0 tt0309452,The Circuit,2002.0 tt0363095,Freeze Frame,2004.0 tt0233657,Epoch,2001.0 tt0374286,Epoch: Evolution,2003.0 tt0437072,Animal,2005.0 tt1633356,Shark Night 3D,2011.0 tt1563738,One Day,2011.0 tt0493129,A Get2Gether,2005.0 tt1630564,Sacrifice,2011.0 tt1266121,Wolvesbayne,2009.0 tt0457319,Dead Heist,2007.0 tt0230512,Mayor of the Sunset Strip,2003.0 tt0380201,Back in the Day,2005.0 tt0492912,Subject Two,2006.0 tt1294136,As Good as Dead,2010.0 tt0138097,Shakespeare in Love,1998.0 tt0138524,Intolerable Cruelty,2003.0 tt0113074,Fist of the North Star,1995.0 tt1172060,It's Alive,2009.0 tt1161449,The Sanctuary,2009.0 tt1087524,Once Fallen,2010.0 tt0770778,King of the Avenue,2010.0 tt0119208,Godmoney,1999.0 tt1290400,Double Identity,2009.0 tt0476964,The Brave One,2007.0 tt0762073,Bakjwi,2009.0 tt0760188,When Nietzsche Wept,2007.0 tt0386751,The River King,2005.0 tt0455584,The Kovak Box,2006.0 tt0149171,Strays,1997.0 tt0425395,Relative Strangers,2006.0 tt0358569,Live Forever,2003.0 tt0276276,Lawless Heart,2001.0 tt0454879,Journey to the End of the Night,2006.0 tt0417751,Her Minor Thing,2005.0 tt0412798,Half Light,2006.0 tt0339091,Gang of Roses,2003.0 tt0470761,First Born,2007.0 tt0280605,Dirty Deeds,2002.0 tt0914364,Deadwater,2008.0 tt0285487,Crazy as Hell,2002.0 tt0482088,Priceless,2006.0 tt0832266,"Definitely, Maybe",2008.0 tt0069704,American Graffiti,1973.0 tt0125664,Man on the Moon,1999.0 tt1210801,Command Performance,2009.0 tt1583420,Larry Crowne,2011.0 tt0955308,Robin Hood,2010.0 tt0368688,Direct Action,2004.0 tt0318462,The Motorcycle Diaries,2004.0 tt0310924,Crime Spree,2003.0 tt0469062,Danika,2006.0 tt0327643,Dirty Love,2005.0 tt0167116,Desert Saints,2002.0 tt0174856,The Hurricane,1999.0 tt0889583,Brüno,2009.0 tt0101393,Backdraft,1991.0 tt1027747,Stiletto,2008.0 tt0455362,The Breed,2006.0 tt0317198,Bridget Jones: The Edge of Reason,2004.0 tt1198153,Kirot,2009.0 tt1584733,Suicide Girls Must Die!,2010.0 tt0425112,Hot Fuzz,2007.0 tt0116483,Happy Gilmore,1996.0 tt0243155,Bridget Jones's Diary,2001.0 tt1423593,The Imperialists Are Still Alive!,2010.0 tt0141926,U-571,2000.0 tt0078504,The Wiz,1978.0 tt0307507,The Stickup,2002.0 tt0119395,The Jackal,1997.0 tt0089755,Out of Africa,1985.0 tt0089469,Legend,1985.0 tt0112508,Billy Madison,1995.0 tt0097216,Do the Right Thing,1989.0 tt0127536,Elizabeth,1998.0 tt0160184,D-Tox,2002.0 tt0790618,The Beautiful Ordinary,2007.0 tt0112431,Babe,1995.0 tt0343135,Along Came Polly,2004.0 tt0114898,Waterworld,1995.0 tt0259567,Perfect Opposites,2004.0 tt0300532,Blue Crush,2002.0 tt0163651,American Pie,1999.0 tt0125439,Notting Hill,1999.0 tt0391198,The Grudge,2004.0 tt1645080,The Art of Getting By,2011.0 tt0463985,The Fast and the Furious: Tokyo Drift,2006.0 tt0414387,Pride & Prejudice,2005.0 tt0085959,The Meaning of Life,1983.0 tt0132347,Mystery Men,1999.0 tt1019452,A Serious Man,2009.0 tt0454848,Inside Man,2006.0 tt0106308,Army of Darkness,1992.0 tt1013753,Milk,2008.0 tt0120616,The Mummy,1999.0 tt0209163,The Mummy Returns,2001.0 tt0076723,Slap Shot,1977.0 tt0096320,Twins,1988.0 tt0315733,21 Grams,2003.0 tt0077975,National Lampoon's Animal House,1978.0 tt0120693,Half Baked,1998.0 tt0137363,Arlington Road,1999.0 tt0467200,The Other Boleyn Girl,2008.0 tt0087182,Dune,1984.0 tt0100814,Tremors,1990.0 tt1452628,Vanishing on 7th Street,2010.0 tt1421051,Somewhere,2010.0 tt0021814,Dracula,1931.0 tt0762107,I Now Pronounce You Chuck & Larry,2007.0 tt0414055,Elizabeth: The Golden Age,2007.0 tt0232500,The Fast and the Furious,2001.0 tt0170016,How the Grinch Stole Christmas,2000.0 tt0115624,Barb Wire,1996.0 tt0314331,Love Actually,2003.0 tt0859163,The Mummy: Tomb of the Dragon Emperor,2008.0 tt0181865,Traffic,2000.0 tt1357005,The Booby Trap,2009.0 tt0098554,Uncle Buck,1989.0 tt0477080,Unstoppable,2010.0 tt0388795,Brokeback Mountain,2005.0 tt0268978,A Beautiful Mind,2001.0 tt0089155,Fletch,1985.0 tt0070735,The Sting,1973.0 tt1232824,Into Temptation,2009.0 tt0099365,Darkman,1990.0 tt0277296,The Scorpion King,2002.0 tt0120780,Out of Sight,1998.0 tt0088847,The Breakfast Club,1985.0 tt0338526,Van Helsing,2004.0 tt0083929,Fast Times at Ridgemont High,1982.0 tt0452594,The Break-Up,2006.0 tt0106677,Dazed and Confused,1993.0 tt1201167,Funny People,2009.0 tt1152836,Public Enemies,2009.0 tt0463034,"You, Me and Dupree",2006.0 tt0087597,The Last Starfighter,1984.0 tt0475394,Smokin' Aces,2006.0 tt1082601,Fighting,2009.0 tt0384793,Accepted,2006.0 tt0290002,Meet the Fockers,2004.0 tt0056923,Charade,1963.0 tt0405422,The 40 Year-Old Virgin,2005.0 tt0118715,The Big Lebowski,1998.0 tt0082010,An American Werewolf in London,1981.0 tt1127896,Taking Woodstock,2009.0 tt0871426,Baby Mama,2008.0 tt0105323,Scent of a Woman,1992.0 tt0086250,Scarface,1983.0 tt0091225,Howard: A New Breed of Hero,1986.0 tt0095489,The Land Before Time,1988.0 tt0046876,Creature from the Black Lagoon (1954),1954.0 tt0076729,Smokey and the Bandit,1977.0 tt0870111,Frost/Nixon,2008.0 tt0478311,Knocked Up,2007.0 tt1532503,Beginners,2010.0 tt0412019,Broken Flowers,2005.0 tt0253474,The Pianist,2002.0 tt0340855,Monster,2003.0 tt1226229,Get Him to the Greek,2010.0 tt0097351,Field of Dreams,1989.0 tt0100301,Opportunity Knocks,1990.0 tt0800039,Forgetting Sarah Marshall,2008.0 tt0195685,Erin Brockovich,2000.0 tt0113749,Mallrats,1995.0 tt0338013,Eternal Sunshine of the Spotless Mind,2004.0 tt0360717,King Kong,2005.0 tt0365748,Shaun Of The Dead,2004.0 tt0096969,Born on the Fourth of July,1989.0 tt0212338,Meet the Parents,2000.0 tt0457400,Land of the Lost,2009.0 tt1078940,Couples Retreat,2009.0 tt1135487,Duplicity,2009.0 tt0372183,The Bourne Supremacy,2004.0 tt0385267,In Good Company,2004.0 tt0119528,Liar Liar,1997.0 tt0440963,The Bourne Ultimatum,2007.0 tt0258463,The Bourne Identity,2002.0 tt0119174,The Game,1997.0 tt0112641,Casino,1995.0 tt0329575,Seabiscuit,2003.0 tt0315327,Bruce Almighty,2003.0 tt0096734,The 'Burbs,1989.0 tt0087065,Cloak & Dagger,1984.0 tt0192614,The Skulls,2000.0 tt0087995,Repo Man,1984.0 tt0098067,Parenthood,1989.0 tt0493464,Wanted,2008.0 tt0350258,Ray,2004.0 tt0097366,Fletch Lives,1989.0 tt0120735,"Lock, Stock and Two Smoking Barrels",1998.0 tt0430922,Role Models,2008.0 tt0118689,Bean,1997.0 tt1486190,Tamara Drewe,2010.0 tt0132477,October Sky,1999.0 tt0284837,Ali G Indahouse,2002.0 tt0103850,Bob Roberts,1992.0 tt0252866,American Pie 2,2001.0 tt0993842,Hanna,2011.0 tt1034389,The Eagle,2011.0 tt0947810,Green Zone,2010.0 tt1234654,Greenberg,2010.0 tt1216492,Leap Year,2010.0 tt0899106,Love Happens,2009.0 tt0054215,Psycho,1960.0 tt0107290,Jurassic Park,1993.0 tt0083866,E.T. the Extra-Terrestrial,1982.0 tt0073195,Jaws,1975.0 tt0052357,Vertigo,1958.0 tt0131857,BASEketball,1998.0 tt0131325,Bowfinger,1999.0 tt0078723,1941,1979.0 tt0091541,The Money Pit,1986.0 tt0113360,The Hunted,1995.0 tt0099141,Bird on a Wire,1990.0 tt0056592,To Kill a Mockingbird,1962.0 tt0104231,Far and Away,1992.0 tt0099329,Cry-Baby,1990.0 tt0327597,Coraline,2009.0 tt0023969,Duck Soup,1933.0 tt0322589,Honey,2003.0 tt0088763,Back to the Future,1985.0 tt0218967,The Family Man,2000.0 tt0101921,Fried Green Tomatoes at the Whistle Stop Cafe,1991.0 tt0166924,Mulholland Drive,2001.0 tt1596346,Soul Surfer,2011.0 tt0382856,Monster Island,2004.0 tt0382810,Little Fish,2005.0 tt1020773,Certified Copy,2010.0 tt0273453,Bark!,2002.0 tt1486185,Red Riding Hood,2011.0 tt1194263,Get Low,2009.0 tt0119738,My Best Friend's Wedding,1997.0 tt1255953,Incendies,2010.0 tt1423894,Barney's Version,2010.0 tt1149361,Micmacs à tire-larigot,2009.0 tt0762125,Planet 51,2009.0 tt0388182,King of California,2007.0 tt0323939,Shade,2003.0 tt1020543,Infestation,2009.0 tt1501652,Dead Awake,2010.0 tt0284929,Bundy,2002.0 tt0242508,Harvard Man,2001.0 tt0413466,Wassup Rockers,2005.0 tt0070047,The Exorcist,1973.0 tt1242618,Deadline,2009.0 tt0405163,The Moguls,2005.0 tt0338075,Grand Theft Parsons,2003.0 tt0446029,Scott Pilgrim vs. the World,2010.0 tt0102175,Jungle Fever,1991.0 tt1013752,Fast & Furious,2009.0 tt0337721,The Snow Walker,2003.0 tt0100107,Maniac Cop 2,1990.0 tt0104808,Maniac Cop 3: Badge of Silence,1992.0 tt0378407,My Date with Drew,2004.0 tt0906665,Sukiyaki Western Django,2007.0 tt0210070,Ginger Snaps,2000.0 tt1095217,Bad Lieutenant,2009.0 tt0118632,The Apostle,1997.0 tt1294688,Last Night,2010.0 tt1664894,Cave of Forgotten Dreams,2010.0 tt1341188,How Do You Know,2010.0 tt1126591,Burlesque,2010.0 tt0913354,Armoured,2009.0 tt0324133,Swimming Pool,2003.0 tt1229822,Jane Eyre,2011.0 tt0328828,American Pie: The Wedding,2003.0 tt0872230,My Soul to Take,2010.0 tt0887883,Burn After Reading,2008.0 tt0114746,Twelve Monkeys,1995.0 tt0095253,The Great Outdoors,1988.0 tt0842926,The Kids Are All Right,2010.0 tt0108052,Schindler's List,1993.0 tt0106770,Dragon: The Bruce Lee Story,1993.0 tt0413099,Evan Almighty,2007.0 tt0101540,Cape Fear,1991.0 tt0026138,Bride of Frankenstein,1935.0 tt0074281,Car Wash,1976.0 tt0115783,Bulletproof,1996.0 tt0129290,Patch Adams,1998.0 tt0117218,The Nutty Professor,1996.0 tt0824747,Changeling,2008.0 tt0119643,Meet Joe Black,1998.0 tt0120669,Fear and Loathing in Las Vegas,1998.0 tt0110950,Reality Bites,1994.0 tt0021884,Frankenstein,1931.0 tt0095631,Midnight Run,1988.0 tt0120601,Being John Malkovich,1999.0 tt0034240,Sullivan's Travels,1941.0 tt0118928,Dante's Peak,1997.0 tt0082200,Continental Divide,1981.0 tt0094138,Three O'Clock High,1987.0 tt0473464,Cherry Crush,2007.0 tt0036775,Double Indemnity,1944.0 tt0276751,About a Boy,2002.0 tt0363547,Dawn of the Dead,2004.0 tt0322259,2 Fast 2 Furious,2003.0 tt0230169,Ed Gein,2000.0 tt0081505,The Shining,1980.0 tt0978764,Sucker Punch,2011.0 tt1182350,You Will Meet a Tall Dark Stranger,2010.0 tt1265990,The Roommate,2011.0 tt1646111,Le secret de Chanda,2010.0 tt1588337,Des hommes et des dieux,2010.0 tt1243957,The Tourist,2010.0 tt0298203,8 Mile,2002.0 tt1220634,Resident Evil: Afterlife,2010.0 tt0249462,Billy Elliot,2000.0 tt0971209,A Perfect Getaway,2009.0 tt0491152,Something Borrowed,2011.0 tt0421238,The Proposition,2005.0 tt1219289,Limitless,2011.0 tt1174732,An Education,2009.0 tt0989757,Dear John,2010.0 tt0450405,Cirque du Freak: The Vampire's Assistant,2009.0 tt0089560,Mask,1985.0 tt0079367,The Jerk,1979.0 tt0204946,Bring It On,2000.0 tt1545098,Kenny Chesney: Summer in 3D,2010.0 tt1313092,Animal Kingdom,2010.0 tt1431181,Another Year,2010.0 tt0775489,The Illusionist,2010.0 tt1371155,Made in Dagenham,2010.0 tt0804497,It's Kind of a Funny Story,2010.0 tt1645089,Inside Job,2010.0 tt0110074,The Hudsucker Proxy,1994.0 tt0117128,Mystery Science Theater 3000: The Movie,1996.0 tt1584016,Catfish,2010.0 tt1440728,The American,2010.0 tt1135084,Takers,2010.0 tt1415283,Nanny McPhee and the Big Bang,2010.0 tt1438254,The Death and Life of Charlie St. Cloud,2010.0 tt0020629,All Quiet on the Western Front,1930.0 tt0265298,Big Fat Liar,2002.0 tt1121977,Mother and Child,2009.0 tt1053424,Repo Men,2010.0 tt1226273,Edge of Darkness,2010.0 tt0369735,Monster-in-Law,2005.0 tt0103919,Candyman,1992.0 tt0335266,Lost in Translation,2003.0 tt0068699,High Plains Drifter,1973.0 tt0492492,Sleeping Dogs,2006.0 tt1112782,Thick as Thieves,2009.0 tt1151359,Leaves of Grass,2009.0 tt0884224,"War, Inc.",2008.0 tt0104377,Guncrazy,1992.0 tt0362590,Employee of the Month,2004.0 tt1186367,Ninja Assassin,2009.0 tt0339727,Stateside,2004.0 tt0460732,Caffeine,2006.0 tt0448564,Irresistible,2006.0 tt0800241,Transsiberian,2008.0 tt0362506,Chrystal,2004.0 tt0105435,Sneakers,1992.0 tt0087262,Firestarter,1984.0 tt0088128,Sixteen Candles,1984.0 tt0104070,Death Becomes Her,1992.0 tt0088846,Brazil,1985.0 tt0084707,Sophie's Choice,1982.0 tt0128853,You've Got Mail,1998.0 tt0396269,Wedding Crashers,2005.0 tt1130080,The Informant!,2009.0 tt0167260,The Lord of the Rings: The Return of the King,2003.0 tt0923671,El día de los muertos,2007.0 tt0280609,Dog Soldiers,2002.0 tt0280438,Ash Wednesday,2002.0 tt0802948,An American Crime,2007.0 tt0488085,Big Nothing,2006.0 tt0349889,Unstoppable,2004.0 tt1187064,Triangle,2009.0 tt0071230,Blazing Saddles,1974.0 tt0263101,Bangkok Dangerous,2000.0 tt0473488,A Guide to Recognizing Your Saints,2006.0 tt0084787,The Thing,1982.0 tt1212419,Hereafter,2010.0 tt0285728,Dahmer,2002.0 tt0320244,Party Monster,2003.0 tt0780608,Smiley Face,2007.0 tt1680059,Born to Be Wild,2011.0 tt0929618,"Erica, Kieran and Lexi",2010.0 tt1231287,Labor Pains,2009.0 tt0363143,Trauma,2004.0 tt1334512,Arthur,2011.0 tt0083658,Blade Runner,1982.0 tt0328031,King of the Ants,2003.0 tt1233219,"My Son, My Son, What Have Ye Done",2009.0 tt0480687,Hall Pass,2011.0 tt1401152,Unknown,2011.0 tt1127180,Drag Me to Hell,2009.0 tt0056869,The Birds,1963.0 tt0765443,Eastern Promises,2007.0 tt0206634,Children of Men,2006.0 tt1161864,The Rite,2011.0 tt0472062,Charlie Wilson's War,2007.0 tt0023027,Horse Feathers,1932.0 tt0040068,Bud Abbott Lou Costello Meet Frankenstein,1948.0 tt0101615,Cool as Ice,1991.0 tt0020640,Animal Crackers,1930.0 tt0119567,The Lost World: Jurassic Park,1997.0 tt1231583,Due Date,2010.0 tt0386117,Where the Wild Things Are,2009.0 tt1058017,The Invention of Lying,2009.0 tt0033804,The Lady Eve,1941.0 tt0120188,Three Kings,1999.0 tt0840361,The Town,2010.0 tt0979434,Lottery Ticket,2010.0 tt0817177,Flipped,2010.0 tt1287468,Cats & Dogs: The Revenge of Kitty Galore,2010.0 tt1375666,Inception,2010.0 tt1075747,Jonah Hex,2010.0 tt1017460,Splice,2009.0 tt1261945,Sex and the City 2,2010.0 tt0480255,The Losers,2010.0 tt1385867,Cop Out,2010.0 tt1057500,Invictus,2009.0 tt0878804,The Blind Side,2009.0 tt0362478,The Box,2009.0 tt0093148,Bigfoot and the Hendersons,1987.0 tt0390022,Friday Night Lights,2004.0 tt0080455,The Blues Brothers,1980.0 tt0091244,I Love You,1986.0 tt0352248,Cinderella Man,2005.0 tt0372784,Batman Begins,2005.0 tt0045152,Singin' in the Rain,1952.0 tt0324216,The Texas Chainsaw Massacre,2003.0 tt0266915,Rush Hour 2,2001.0 tt0425061,Get Smart,2008.0 tt0332452,Troy,2004.0 tt0758794,We Are Marshall,2006.0 tt0427327,Hairspray,2007.0 tt0086200,Risky Business,1983.0 tt0070034,Enter The Dragon,1973.0 tt0335438,Starsky & Hutch,2004.0 tt0468569,The Dark Knight,2008.0 tt0209958,The Cell,2000.0 tt0428803,March of the Penguins,2005.0 tt0455612,Madea's Family Reunion,2006.0 tt0825232,The Bucket List,2007.0 tt0496806,Ocean's Thirteen,2007.0 tt0120611,Blade,1998.0 tt0338751,The Aviator,2004.0 tt1000774,Sex and the City,2008.0 tt0450259,Blood Diamond,2006.0 tt0332280,The Notebook,2004.0 tt0097958,National Lampoon's Winter Holiday,1989.0 tt0032138,The Wizard of Oz,1939.0 tt0116529,Hide and Seek,1996.0 tt0117998,Twister,1996.0 tt0313737,Two Weeks Notice,2002.0 tt0139654,Training Day,2001.0 tt0338348,The Polar Express,2004.0 tt0240772,Ocean's Eleven,2001.0 tt0212346,Miss Congeniality,2000.0 tt0373889,Harry Potter and the Order of the Phoenix,2007.0 tt0110148,Interview with the Vampire: The Vampire Chronicles,1994.0 tt0349903,Ocean's Twelve,2004.0 tt0120888,The Wedding Singer,1998.0 tt0110475,The Mask,1994.0 tt0120812,Rush Hour,1998.0 tt0330373,Harry Potter and the Goblet of Fire,2005.0 tt0087363,Gremlins,1984.0 tt0407887,The Departed,2006.0 tt0145660,Austin Powers: The Spy Who Shagged Me,1999.0 tt0118655,Austin Powers: International Man of Mystery,1997.0 tt0486583,Fred Claus,2007.0 tt0122933,Analyze This,1999.0 tt0416449,300,2006.0 tt0088939,The Color Purple,1985.0 tt0367594,Charlie and the Chocolate Factory,2005.0 tt0295178,Austin Powers in Goldmember,2002.0 tt0096895,Batman,1989.0 tt0319343,Elf,2003.0 tt0089218,The Goonies,1985.0 tt0109686,Dumb and Dumber,1994.0 tt0034583,Casablanca,1942.0 tt0133093,The Matrix,1999.0 tt0304141,Harry Potter and the Prisoner of Azkaban,2004.0 tt0348150,Superman Returns,2006.0 tt0107050,Grumpy Old Men,1993.0 tt0031381,Gone with the Wind,1939.0 tt0102798,Robin Hood: Prince of Thieves,1991.0 tt0120689,The Green Mile,1999.0 tt0325710,The Last Samurai,2003.0 tt0234215,The Matrix Reloaded,2003.0 tt0167261,The Lord of the Rings: The Two Towers,2002.0 tt0295297,Harry Potter and the Chamber of Secrets,2002.0 tt0241527,Harry Potter and the Philosopher's Stone,2001.0 tt0122151,Lethal Weapon 4,1998.0 tt0405159,Million Dollar Baby,2004.0 tt0104714,Lethal Weapon 3,1992.0 tt0177971,The Perfect Storm,2000.0 tt0114369,Seven,1995.0 tt0293564,Rush Hour 3,2007.0 tt0242653,The Matrix Revolutions,2003.0 tt6836772,Operation Dunkirk,2017.0 tt1521787,Haunting of Winchester House,2009.0 tt1876517,Tu xia chuan qi,2011.0 tt2386490,How to Train Your Dragon: The Hidden World,2019.0 tt2381317,Super Cyclone,2012.0 tt7131870,Wolf Warrior 2,2017.0 tt2611408,"Us, Naked: Trixie & Monkey",2014.0 tt1610528,Airline Disaster,2010.0 tt1757944,Princess and the Pony,2011.0 tt1107365,Open Season 2,2008.0 tt1636629,Sinbad: The Persian Prince,2010.0 tt7204400,Geo-Disaster,2017.0 tt3417334,Airplane vs. Volcano,2014.0 tt7475886,Invoking 4,2017.0 tt0264734,Joseph: King of Dreams,2000.0 tt1912996,Barely Legal,2011.0 tt1911533,Anneliese: The Exorcist Tapes,2011.0 tt1473801,Sex Pot,2009.0 tt1615480,Cellmates,2011.0 tt1912981,A Haunting in Salem,2011.0 tt0096118,Nightmare Vacation 2,1988.0 tt1823051,200 M.P.H.,2011.0 tt2062996,Something from Nothing: The Art of Rap,2012.0 tt5218234,Linie 41,2015.0 tt1576379,Cuentos de la selva,2010.0 tt6874406,Alien Convergence,2017.0 tt0842000,A Cat's Tale,2008.0 tt3410834,Allegiant,2016.0 tt0385307,Miss Congeniality 2: Armed & Fabulous,2005.0 tt4172430,13 Hours,2016.0 tt1482459,The Lorax,2012.0 tt3250590,Equal Means Equal,2016.0 tt0228333,Ghosts of Mars,2001.0 tt3949660,Teenage Mutant Ninja Turtles: Out of the Shadows,2016.0 tt2538778,Diamond Cartel,2015.0 tt3911554,Mad Tiger,2015.0 tt0096486,Young Einstein,1988.0 tt2403021,The Green Inferno,2013.0 tt0191636,La veuve de Saint-Pierre,2000.0 tt3503840,Mercenary: Absolution,2015.0 tt2113075,The Inevitable Defeat of Mister & Pete,2013.0 tt1353997,Dragonquest,2009.0 tt1999141,Dragon Crusaders,2011.0 tt3677466,Age of Tomorrow,2014.0 tt0073260,The Land That Time Forgot,1974.0 tt2175927,American Warships,2012.0 tt1219671,Allan Quatermain and the Temple of Skulls,2008.0 tt1056026,"30,000 Leagues Under the Sea",2007.0 tt1136683,100 Million BC,2008.0 tt1075746,I Am Omega,2007.0 tt1531911,Princess of Mars,2009.0 tt2756412,AE: Apocalypse Earth,2013.0 tt2081255,Grimm's Snow White,2012.0 tt1183733,War of the Worlds 2: The Next Wave,2008.0 tt1846444,2012: Ice Age,2011.0 tt1325753,Hulk Vs.,2009.0 tt1694508,Moby Dick,2010.0 tt0942903,Stargate: The Ark of Truth,2008.0 tt0929629,Stargate: Continuum,2008.0 tt0115985,Crossworlds,1996.0 tt1479847,2012: Supernova,2009.0 tt1294699,Merlin and the War of the Dragons,2008.0 tt2456594,Lord of the Elves,2012.0 tt1758570,Battle of Los Angeles,2011.0 tt1261046,Death Racers,2008.0 tt2130142,Nazis at the Center of the Earth,2012.0 tt2740710,Atlantic Rim,2013.0 tt4296026,Avengers Grimm,2015.0 tt4685096,3-Headed Shark Attack,2015.0 tt2043757,2-Headed Shark Attack,2012.0 tt0085750,Jaws 3-D,1983.0 tt1094162,AVH: Alien vs. Hunter,2007.0 tt1586261,Paranormal Entity,2009.0 tt1640571,Titanic II,2010.0 tt0974959,Beta House,2007.0 tt1653690,Ong-bak 3,2010.0 tt0843873,Snakes on a Train,2006.0 tt0072067,The Violator,1974.0 tt1376460,Transmorphers: Fall of Man,2009.0 tt0960835,Transmorphers,2007.0 tt1270792,Sunday School Musical,2008.0 tt3063516,Bad Grandpa,2013.0 tt0110989,Ri¢hie Ri¢h,1994.0 tt0758752,Love & Other Drugs,2010.0 tt1879032,Rapture-Palooza,2013.0 tt0995740,No Smoking,2007.0 tt0081609,Tegeran-43,1981.0 tt5093452,Shots Fired, tt0055706,Tell It to Groucho, tt3305316,A Second Chance,2014.0 tt0498353,Hostel: Part II,2007.0 tt3602442,Leprechaun in the Hood, tt0116861,Leprechaun 4: In Space,1996.0 tt0113636,Leprechaun 3,1995.0 tt0118643,The Prophecy II,1998.0 tt0183678,The Prophecy 3: The Ascent,2000.0 tt5711820,Spy Kids 3D: Game Over, tt0229440,Hellraiser: Inferno,2000.0 tt0116514,Hellraiser IV: Bloodline,1996.0 tt0091431,Lung hing foo dai,1986.0 tt0396184,Pusher II,2004.0 tt0489270,Saw III,2006.0 tt0112722,Copycat,1995.0 tt0082694,Mad Max 2,1981.0 tt0385988,Red Riding Hood,2006.0 tt0113026,The Fantasticks,2000.0 tt1326972,Chi bi: Jue zhan tian xia,2009.0 tt0097428,Ghostbusters II,1989.0 tt0425379,Pusher III,2005.0 tt0212235,Shriek If You Know What I Did Last Friday the Thirteenth,2000.0 tt1132626,Saw V,2008.0 tt1212023,The Rain,2009.0 tt0432348,Saw II,2005.0 tt0109254,Beverly Hills Cop III,1994.0 tt1121931,Crank 2: High Voltage,2009.0 tt0325703,Lara Croft Tomb Raider: The Cradle of Life,2003.0 tt0105128,Pet Sematary II,1992.0 tt0890870,Saw IV,2007.0 tt3595776,The Odd Couple, tt0443295,"Yours, Mine & Ours",2005.0 tt0469999,Ulli Lommel's Zodiac Killer,2005.0 tt0339294,Leprechaun 6: Back 2 Tha Hood,2003.0 tt0088170,Star Trek III: The Search for Spock,1984.0 tt6560426,"Reunited, for Better or Worse", tt0758746,Friday the 13th,2009.0 tt0098382,Star Trek V: The Final Frontier,1989.0 tt0083530,Airplane II: The Sequel,1982.0 tt0424774,The Adventures of Sharkboy and Lavagirl 3-D,2005.0 tt0071562,The Godfather: Part II,1974.0 tt0092007,Star Trek IV: The Voyage Home,1986.0 tt0099674,The Godfather Part III,1990.0 tt9573086,"Mr. DeMille, I'm Ready for My Close-Up", tt0361411,Bride & Prejudice,2004.0 tt0092644,Beverly Hills Cop II,1987.0 tt0120755,Mission: Impossible II,2000.0 tt0085127,'A' gai wak,1983.0 tt0321704,The Circuit 2: The Final Punch,2002.0 tt1328910,Chrome Angels,2009.0 tt0312640,Dragon Fighter,2003.0 tt0339526,Shooting Gallery,2005.0 tt0489318,The Ungodly,2007.0 tt1151928,Cyborg Soldier,2008.0 tt0284491,Sin noticias de Dios,2001.0 tt0337879,Blackball,2003.0 tt5464234,Kill Switch,2017.0 tt0367232,Whitecoats,2004.0 tt0411477,Hellboy II: The Golden Army,2008.0 tt0144528,Nutty Professor II: The Klumps,2000.0 tt0096874,Back to the Future Part II,1989.0 tt1743720,The Greatest Movie Ever Sold,2011.0 tt0849470,Senior Skip Day,2008.0 tt5801296,Subway Film,2005.0 tt0099088,Back to the Future Part III,1990.0 tt0330181,Gacy,2003.0 tt0390468,Septem8er Tapes,2004.0 tt0163025,Jurassic Park III,2001.0 tt1627497,Llorando, tt0187738,Blade II,2002.0 tt2274064,The Last White Knight,2012.0 ================================================ FILE: data/metadata/split.csv ================================================ imdbid,split tt1707386,train tt6324278,train tt0448115,train tt5013056,train tt6095472,train tt2709692,train tt5109784,train tt0077288,train tt2561572,train tt0408306,train tt0116225,train tt0092493,train tt0082782,train tt0070016,train tt0073440,train tt0118688,train tt8079248,train tt4532826,train tt0058672,train tt2495118,train tt7634968,train tt6017942,train tt0046754,train tt2888046,train tt1386932,train tt0097388,train tt8695030,train tt0045920,train tt2639336,train tt0068909,train tt10720210,train tt7334528,train tt6806448,train tt0092605,train tt7207158,train tt0095179,train tt5186608,train tt0332375,train tt1846589,train tt4530422,train tt0104573,train tt0087298,train tt0109447,train tt0080487,train tt7282468,train tt7040874,train tt6371588,train tt7752126,train tt0110367,train tt0046816,train tt0060429,train tt0060438,train tt0104009,train tt5537600,train tt2066051,train tt2283336,train tt0369441,train tt6466464,train tt4591310,train tt0092948,train tt6320628,train tt6857112,train tt0155711,train tt1456661,train tt1999890,train tt0113464,train tt7042862,train tt0083972,train tt4761916,train tt8726116,train tt9251718,train tt5113040,train tt7073518,train tt0418819,train tt0085970,train tt6146586,train tt0096256,train tt0289765,train tt5649108,train tt7287136,train tt4666228,train tt5968394,train tt0837563,train tt3391782,train tt0098084,train tt6428676,train tt2267858,train tt0106220,train tt0117894,train tt9428920,train tt5596104,train tt7014006,train tt3576060,train tt3206798,train tt6921996,train tt2798920,train tt4953610,train tt0114608,train tt7043070,train tt5886046,train tt3080844,train tt5160154,train tt0864835,train tt2582784,train tt0245429,train tt5912454,train tt0424095,train tt2518848,train tt3120508,train tt6644200,train tt1628841,train tt4520924,train tt3626442,train tt3986978,train tt2401878,train tt1230168,train tt5081618,train tt6857166,train tt5338644,train tt2991532,train tt0093756,train tt6981634,train tt3597400,train tt6149802,train tt5167174,train tt0087928,train tt1791528,train tt2439946,train tt5657846,train tt5700672,train tt3540136,train tt3922754,train tt2186712,train tt3261182,train tt5354458,train tt4701182,train tt6215044,train tt1411238,train tt3715296,train tt5039994,train tt0113957,train tt2693580,train tt1972591,train tt0081573,train tt1907668,train tt0096101,train tt0892791,train tt8804688,train tt0120630,train tt1277953,train tt0413267,train tt0481499,train tt0138749,train tt7399158,train tt1694020,train tt0097778,train tt0479952,train tt1911658,train tt6499752,train tt4943934,train tt2196430,train tt0279493,train tt1321509,train tt0168501,train tt0081562,train tt0113845,train tt0297181,train tt7108976,train tt6231588,train tt0099582,train tt0033553,train tt0190865,train tt0059245,train tt4288674,train tt8671462,train tt0095497,train tt0490215,train tt1411704,train tt0085248,train tt0093999,train tt7616798,train tt3606888,train tt7008872,train tt2018111,train tt1645170,train tt3553442,train tt4225696,train tt4217392,train tt4537896,train tt2165735,train tt1255919,train tt1758810,train tt4504438,train tt1477834,train tt1596363,train tt4925292,train tt1663143,train tt1817771,train tt5734576,train tt5664636,train tt0841046,train tt1302011,train tt7349662,train tt6966692,train tt2119543,train tt1270797,train tt4633694,train tt0181316,train tt3450650,train tt0092563,train tt2671706,train tt0057251,train tt1428538,train tt0365957,train tt6781982,train tt0090685,train tt6911608,train tt3640424,train tt0427152,train tt0077504,train tt0111143,train tt0117107,train tt0281686,train tt0089489,train tt2042447,train tt1502407,train tt6133466,train tt4786282,train tt1980209,train tt0479884,train tt5734548,train tt0134983,train tt0074559,train tt0983193,train tt3095734,train tt2202750,train tt0082348,train tt0026714,train tt2538128,train tt0101452,train tt0109045,train tt2136808,train tt5160954,train tt8560130,train tt9004516,train tt5936438,train tt0312004,train tt3604958,train tt5974388,train tt1928329,train tt0064395,train tt1492842,train tt4779682,train tt7681902,train tt6599064,train tt0389790,train tt5363648,train tt1235522,train tt0102388,train tt5758778,train tt1268799,train tt1951261,train tt4738802,train tt2309260,train tt6883152,train tt5725894,train tt0095990,train tt6580394,train tt3399112,train tt0061512,train tt0195714,train tt8033592,train tt0417148,train tt1037705,train tt7424200,train tt5639446,train tt3874544,train tt0126029,train tt0974015,train tt2126355,train tt0441773,train tt4624424,train tt1935859,train tt0063829,train tt1446192,train tt0083767,train tt0082250,train tt0060921,train tt0088915,train tt0094118,train tt0892782,train tt1646971,train tt0892769,train tt7690670,train tt0067741,train tt0095348,train tt0051525,train tt0313443,train tt0087800,train tt0089901,train tt5220122,train tt1179056,train tt6772950,train tt1540011,train tt2660888,train tt0078346,train tt0114069,train tt0092710,train tt0102526,train tt0106455,train tt0104265,train tt3110958,train tt0101984,train tt1411697,train tt1119646,train tt5052474,train tt0111255,train tt2557478,train tt0293815,train tt3393786,train tt0790724,train tt1055292,train tt0090859,train tt0095188,train tt4881806,train tt1179933,train tt3862750,train tt2011159,train tt7518466,train tt0795421,train tt5308322,train tt7109844,train tt4542660,train tt2527336,train tt6116682,train tt5325030,train tt1578275,train tt3957170,train tt0455944,train tt3532216,train tt0056264,train tt0077572,train tt5719108,train tt0104815,train tt0066448,train tt0059803,train tt4477536,train tt0382992,train tt0257076,train tt0048380,train tt0077235,train tt0034587,train tt0036855,train tt0071675,train tt6333066,train tt4397414,train tt0451279,train tt0918940,train tt0211443,train tt2967226,train tt4765284,train tt5726086,train tt6421110,train tt3783958,train tt1219827,train tt4966046,train tt6094944,train tt1291150,train tt5061162,train tt3773378,train tt1519461,train tt2283362,train tt5301544,train tt5612742,train tt4848010,train tt1754767,train tt1540115,train tt4877122,train tt1650062,train tt1959563,train tt3892618,train tt4335520,train tt2378507,train tt4131800,train tt3469046,train tt3564472,train tt1711525,train tt0498381,train tt2473510,train tt3065204,train tt3799694,train tt0088206,train tt1253863,train tt4139124,train tt3534842,train tt5278578,train tt2250912,train tt3890160,train tt6414866,train tt4425200,train tt3038734,train tt4935334,train tt5115546,train tt6231792,train tt4939066,train tt3717316,train tt5072406,train tt7456468,train tt5022872,train tt5120042,train tt4799050,train tt3121332,train tt5442430,train tt4698684,train tt3917210,train tt2398241,train tt4160708,train tt0406375,train tt0079073,train tt2639254,train tt0355702,train tt1374989,train tt2513074,train tt1355644,train tt4882174,train tt0084191,train tt1808339,train tt3407428,train tt4972582,train tt4361050,train tt1753383,train tt4649416,train tt2034800,train tt4550098,train tt4630562,train tt2650978,train tt8071196,train tt0099938,train tt0046912,train tt0091763,train tt0095031,train tt5052448,train tt0881320,train tt0095593,train tt0891527,train tt0106452,train tt0181739,train tt0119592,train tt0104107,train tt0031867,train tt0094894,train tt0077838,train tt0098309,train tt0101371,train tt0301470,train tt0061452,train tt0100232,train tt0113228,train tt0089530,train tt0116253,train tt0053125,train tt0093713,train tt1391116,train tt2586118,train tt0277027,train tt0106701,train tt0101635,train tt0094027,train tt0120094,train tt0085333,train tt0118661,train tt2318092,train tt1582465,train tt0035015,train tt0057193,train tt1488555,train tt0423977,train tt0245046,train tt0100486,train tt1564585,train tt0120787,train tt0113870,train tt0444682,train tt1139668,train tt2910814,train tt2024469,train tt0365907,train tt1216491,train tt2349144,train tt0264935,train tt2377322,train tt0102915,train tt0367652,train tt0374536,train tt0095925,train tt2788710,train tt2170299,train tt0243655,train tt0118750,train tt0110657,train tt0120686,train tt0102492,train tt0164912,train tt0243585,train tt1564367,train tt0389860,train tt0088680,train tt0274309,train tt0101701,train tt1282140,train tt0852713,train tt0879870,train tt0117008,train tt0099204,train tt0097757,train tt0409182,train tt0089175,train tt0172493,train tt0112818,train tt0310793,train tt1535109,train tt4178092,train tt2717822,train tt0114134,train tt1596345,train tt0112887,train tt0318374,train tt0108026,train tt1285016,train tt1568346,train tt2473602,train tt0811080,train tt0243133,train tt0119080,train tt0065112,train tt0205271,train tt1632708,train tt0101698,train tt0210358,train tt0091934,train tt1307068,train tt0091777,train tt0089822,train tt0102395,train tt0093493,train tt0084745,train tt0263488,train tt0097737,train tt0144814,train tt2334879,train tt1599348,train tt2140379,train tt0434409,train tt0114576,train tt1648179,train tt1204975,train tt1655460,train tt0114852,train tt1284575,train tt0102303,train tt0076489,train tt0069495,train tt1121096,train tt3713166,train tt2870612,train tt2239832,train tt1621045,train tt0457939,train tt0090927,train tt0093164,train tt0130018,train tt0424136,train tt1872181,train tt0990407,train tt0164052,train tt3721936,train tt0401420,train tt0492044,train tt0098994,train tt1457765,train tt3470600,train tt4302938,train tt0479500,train tt1219342,train tt0047795,train tt4263482,train tt1700841,train tt0119109,train tt0101745,train tt0099077,train tt0097236,train tt1043791,train tt0279688,train tt2396701,train tt2240312,train tt2702724,train tt2245003,train tt1767372,train tt1274586,train tt2381991,train tt0985025,train tt3307726,train tt2493486,train tt1509767,train tt1572491,train tt1031280,train tt1982735,train tt0286306,train tt0443435,train tt3384904,train tt1331307,train tt0492486,train tt1757742,train tt2474438,train tt2012665,train tt3036676,train tt1014763,train tt2304953,train tt3202890,train tt0928375,train tt2457138,train tt1956620,train tt2166934,train tt3203890,train tt1278449,train tt2382396,train tt0107302,train tt3093522,train tt1396523,train tt1754656,train tt0479162,train tt1617661,train tt2223990,train tt1621046,train tt2106476,train tt3233418,train tt2725962,train tt1130088,train tt2094064,train tt1833888,train tt1815862,train tt0490181,train tt0407304,train tt1321870,train tt1595656,train tt1667889,train tt0097322,train tt2094018,train tt1764183,train tt1770734,train tt0079592,train tt1132130,train tt1386703,train tt0450336,train tt0457572,train tt0780607,train tt1931435,train tt1878942,train tt1839654,train tt0094678,train tt0369672,train tt0099797,train tt1629705,train tt1531663,train tt0093693,train tt0095684,train tt1436432,train tt0087078,train tt1181791,train tt0109835,train tt0433412,train tt1221208,train tt0094321,train tt0111301,train tt1155076,train tt0460810,train tt0486358,train tt1462758,train tt0478188,train tt0338216,train tt0104438,train tt0077294,train tt0055031,train tt0053946,train tt0061418,train tt0062765,train tt0032599,train tt0233277,train tt1895587,train tt0810819,train tt0048545,train tt0049730,train tt0475290,train tt3203606,train tt0033467,train tt1971352,train tt0100935,train tt0056193,train tt4530832,train tt3534282,train tt1783732,train tt4094724,train tt3079016,train tt1440732,train tt3746298,train tt3760922,train tt1334537,train tt0910936,train tt4196776,train tt0149261,train tt0107362,train tt2191701,train tt3499424,train tt1663662,train tt7069210,train tt3276924,train tt2547172,train tt3393070,train tt0423294,train tt1276419,train tt0803096,train tt2216240,train tt2310332,train tt1170358,train tt0903624,train tt1507566,train tt0988045,train tt1766094,train tt1374992,train tt0770828,train tt0105698,train tt0024216,train tt1709143,train tt1578882,train tt2279339,train tt5323662,train tt0800320,train tt0120912,train tt1392190,train tt1985949,train tt2379713,train tt0120685,train tt1985966,train tt0097647,train tt0091326,train tt1234721,train tt2967224,train tt3850590,train tt0119282,train tt3628584,train tt0948470,train tt0413300,train tt1038686,train tt0091167,train tt0079522,train tt0316654,train tt3530002,train tt1430607,train tt1430626,train tt2510894,train tt0837562,train tt4052882,train tt7264080,train tt0834001,train tt0401855,train tt0271263,train tt0385880,train tt0115963,train tt0808151,train tt0373051,train tt2621126,train tt2518926,train tt0108149,train tt1634121,train tt0988849,train tt1016268,train tt3064298,train tt2051894,train tt4034228,train tt2345112,train tt0038109,train tt0097239,train tt3168230,train tt1876547,train tt3567288,train tt1623288,train tt1204977,train tt0298388,train tt0339291,train tt0905372,train tt1440129,train tt0085636,train tt0082495,train tt0116365,train tt0099253,train tt0387575,train tt0144120,train tt1850457,train tt3321300,train tt0091778,train tt0092076,train tt1659216,train tt0860462,train tt0068762,train tt0452694,train tt2581244,train tt1491044,train tt2292182,train tt1927093,train tt2236160,train tt2490326,train tt0093300,train tt0077766,train tt2080374,train tt0061747,train tt0468492,train tt0079261,train tt1536410,train tt2473682,train tt2205697,train tt2226519,train tt0781008,train tt1602472,train tt1350512,train tt0480271,train tt0970866,train tt0068897,train tt0805564,train tt0091983,train tt0102744,train tt0098577,train tt0095082,train tt0089504,train tt1368116,train tt0997147,train tt1634122,train tt1959490,train tt1156300,train tt1334526,train tt1618442,train tt1705773,train tt1350498,train tt0044081,train tt2870708,train tt3045616,train tt1778304,train tt1748122,train tt2202385,train tt0089017,train tt0810817,train tt0061811,train tt0785035,train tt0085382,train tt0086525,train tt1480295,train tt0089907,train tt1605630,train tt0068833,train tt1655441,train tt1245112,train tt0816711,train tt1925518,train tt1932767,train tt0029947,train tt1376709,train tt0787474,train tt4547120,train tt0290747,train tt1529572,train tt1453403,train tt0453451,train tt1853739,train tt2039345,train tt2235108,train tt0084649,train tt1302067,train tt0379786,train tt0087365,train tt3181822,train tt0975645,train tt0086856,train tt1951266,train tt2872750,train tt1116184,train tt2626350,train tt0107983,train tt1229340,train tt1229238,train tt1583421,train tt0493430,train tt0286788,train tt0120800,train tt1571249,train tt3899796,train tt1680138,train tt1587807,train tt2637276,train tt0104040,train tt2109248,train tt1399103,train tt1055369,train tt0113243,train tt0337579,train tt0388500,train tt0097576,train tt0367882,train tt0071360,train tt0077745,train tt1137470,train tt1699755,train tt2024432,train tt1649419,train tt3062074,train tt2724064,train tt1772925,train tt0094074,train tt1263670,train tt0087469,train tt0082971,train tt1305583,train tt0814255,train tt0949731,train tt0416212,train tt0311429,train tt0056197,train tt0848537,train tt1389137,train tt1033575,train tt1033643,train tt0429493,train tt2345613,train tt1408101,train tt0083550,train tt2235779,train tt1807944,train tt1932718,train tt1935179,train tt1155592,train tt1398426,train tt2975578,train tt0044953,train tt0120654,train tt0040872,train tt2458106,train tt0082332,train tt1139797,train tt0378109,train tt2322441,train tt0822832,train tt1131734,train tt0432283,train tt1698648,train tt0109370,train tt1592873,train tt1735898,train tt1935896,train tt0408524,train tt0120184,train tt0078227,train tt2450186,train tt2105044,train tt0835418,train tt1155056,train tt3152624,train tt2004420,train tt1596350,train tt1412386,train tt2382009,train tt1091191,train tt2349460,train tt1821694,train tt1704573,train tt0087985,train tt0101764,train tt0829150,train tt1065073,train tt2481480,train tt2274570,train tt1211956,train tt0469021,train tt0114508,train tt0089200,train tt0780622,train tt1213663,train tt2557490,train tt2318527,train tt2017038,train tt1247640,train tt0120241,train tt0377471,train tt1478338,train tt2398249,train tt0985694,train tt1022603,train tt0327850,train tt0947798,train tt1542344,train tt1538819,train tt0451079,train tt0098206,train tt0091217,train tt0059113,train tt0113321,train tt0311648,train tt1731141,train tt1418377,train tt1572315,train tt1650043,train tt1408253,train tt2848292,train tt0369610,train tt2820852,train tt2980516,train tt0086006,train tt0062512,train tt0246460,train tt0057076,train tt0058150,train tt0830515,train tt1074638,train tt0059800,train tt0381061,train tt0064757,train tt0113189,train tt0090264,train tt0071807,train tt0097742,train tt0143145,train tt0086034,train tt0070328,train tt0055928,train tt0079574,train tt1436562,train tt1318514,train tt0489099,train tt0455499,train tt0303933,train tt0120913,train tt0114885,train tt0473308,train tt0096463,train tt0084855,train tt0250797,train tt0117979,train tt1753584,train tt0094291,train tt0358273,train tt0117509,train tt1323594,train tt0048605,train tt0427944,train tt0120169,train tt0119313,train tt0455824,train tt0114887,train tt0129387,train tt1216496,train tt0101889,train tt1196141,train tt1201607,train tt0952640,train tt0247745,train tt1840309,train tt0376994,train tt0290334,train tt0120903,train tt0120179,train tt0244970,train tt0120831,train tt0073629,train tt0107977,train tt0443632,train tt0069113,train tt0120772,train tt0098258,train tt0343818,train tt0093822,train tt0063442,train tt0119896,train tt0183649,train tt0151738,train tt0110638,train tt0374900,train tt0151804,train tt0093773,train tt0104691,train tt0455590,train tt0203009,train tt0104952,train tt0107614,train tt0183505,train tt0203019,train tt0100114,train tt0328107,train tt0337978,train tt0449059,train tt0240468,train tt0264761,train tt0091306,train tt0359517,train tt0036613,train tt0107034,train tt0454841,train tt0120703,train tt0465494,train tt0101410,train tt0356721,train tt0455967,train tt0116705,train tt0298845,train tt0089370,train tt0116629,train tt0104431,train tt0107144,train tt0102059,train tt0120681,train tt0099785,train tt0104427,train tt0067116,train tt0242423,train tt0099487,train tt0137523,train tt0357277,train tt0364725,train tt0164114,train tt0099423,train tt0095016,train tt0458352,train tt0116282,train tt0319262,train tt0088944,train tt0452598,train tt0349205,train tt0115857,train tt0092699,train tt0078902,train tt0421729,train tt0208003,train tt0065466,train tt0163978,train tt0280460,train tt0118583,train tt0311113,train tt0198021,train tt0467406,train tt0166396,train tt0388482,train tt0139414,train tt0112864,train tt0333766,train tt0094737,train tt0456554,train tt0115759,train tt0064115,train tt0118617,train tt0370263,train tt0078748,train tt0463854,train tt0289043,train tt0086998,train tt0095159,train tt0120841,train tt0072081,train tt0111282,train tt0095444,train tt0109831,train tt0107616,train tt0100054,train tt0333780,train tt0212985,train tt0092675,train tt0080745,train tt0050083,train tt0245574,train tt0070849,train tt0424345,train tt0087803,train tt0097499,train tt0090142,train tt0053291,train tt0100157,train tt0151568,train tt0092654,train tt1081935,train tt1403177,train tt1277737,train tt1213012,train tt0245238,train tt0367913,train tt0873886,train tt0098141,train tt0173716,train tt0100196,train tt0107492,train tt0081398,train tt0125879,train tt0217355,train tt0218922,train tt0239060,train tt0234354,train tt0067093,train tt0226935,train tt0250202,train tt0094812,train tt0363473,train tt0430919,train tt0426615,train tt0090756,train tt0357507,train tt0397401,train tt0086979,train tt0089927,train tt0084602,train tt0079817,train tt0099348,train tt0429573,train tt0433386,train tt0114436,train tt0472160,train tt0804516,train tt0079501,train tt0097659,train tt0058461,train tt0805570,train tt0092086,train tt0094012,train tt0887912,train tt1023111,train tt0430912,train tt0486321,train tt1124048,train tt1053859,train tt0465580,train tt0093779,train tt1232783,train tt0100502,train tt1814621,train tt0082846,train tt1231587,train tt2083355,train tt1103275,train tt1172994,train tt1640459,train tt1912398,train tt1172570,train tt1175709,train tt0365485,train tt0790736,train tt0443536,train tt0426459,train tt0462519,train tt0489237,train tt0373883,train tt0848557,train tt0421082,train tt0795493,train tt0450385,train tt1007028,train tt0976051,train tt0443559,train tt0403702,train tt2184339,train tt0898367,train tt1742650,train tt0497465,train tt1483013,train tt0426592,train tt0362120,train tt1077258,train tt1411250,train tt1028528,train tt0281322,train tt0280778,train tt0171359,train tt1596343,train tt0068935,train tt0120604,train tt0122541,train tt0240601,train tt1690953,train tt0102370,train tt0110027,train tt0133046,train tt1905041,train tt0144964,train tt0193560,train tt0252299,train tt0290212,train tt0282209,train tt1139328,train tt0427470,train tt0052618,train tt0417741,train tt0377818,train tt0112462,train tt1120985,train tt0289879,train tt0329101,train tt0186566,train tt0244244,train tt0100944,train tt0089791,train tt0195945,train tt0066999,train tt0327056,train tt0770752,train tt0480249,train tt0366548,train tt0066434,train tt0084917,train tt0036098,train tt0239395,train tt0103776,train tt1136608,train tt1097013,train tt0464154,train tt1655420,train tt1262416,train tt1655442,train tt1504320,train tt0361748,train tt1311067,train tt0375568,train tt1315981,train tt1951264,train tt0977855,train tt1093357,train tt1045658,train tt1673434,train tt1517489,train tt0945513,train tt1682181,train tt1586265,train tt1764651,train tt1259521,train tt1800741,train tt1764234,train tt1343727,train tt0795461,train tt1327773,train tt2334649,train tt0075148,train tt0102753,train tt0367085,train tt0478197,train tt0226009,train tt1341167,train tt0348333,train tt0338095,train tt1226236,train tt0048356,train tt0064665,train tt0095953,train tt0935075,train tt1262981,train tt1001562,train tt0245562,train tt0114938,train tt0486674,train tt0070814,train tt1293842,train tt0051036,train tt0098384,train tt0120788,train tt0839880,train tt0363276,train tt0227005,train tt0234137,train tt0120802,train tt0981072,train tt0165854,train tt1038919,train tt1392170,train tt1615091,train tt0106664,train tt0115685,train tt0189584,train tt0368909,train tt1598828,train tt0035140,train tt0247786,train tt0309912,train tt0116743,train tt1175491,train tt1855401,train tt0115798,train tt0114388,train tt0120744,train tt0985699,train tt0100135,train tt1095442,train tt0077597,train tt0492389,train tt0059124,train tt0088960,train tt0804452,train tt0162662,train tt0245712,train tt1399683,train tt0075314,train tt0258000,train tt1615147,train tt1588170,train tt0926084,train tt0190332,train tt1436045,train tt0098453,train tt0094862,train tt0327919,train tt0081071,train tt0072325,train tt0087727,train tt0102555,train tt0093640,train tt0104765,train tt0052564,train tt0081184,train tt0084732,train tt0079240,train tt0305396,train tt0100680,train tt0082416,train tt0063415,train tt0057413,train tt0094142,train tt0054047,train tt0120757,train tt0263757,train tt0070915,train tt0098546,train tt0098090,train tt0102926,train tt0086619,train tt0092003,train tt0086999,train tt0071746,train tt0118900,train tt0251114,train tt0070653,train tt0089730,train tt0091699,train tt0105046,train tt0094783,train tt0078790,train tt0086993,train tt0068931,train tt0087231,train tt0076210,train tt0057115,train tt0055184,train tt0383216,train tt0091875,train tt0108187,train tt0098042,train tt0114287,train tt0075268,train tt0102103,train tt0102005,train tt0093200,train tt0080895,train tt0068673,train tt0109913,train tt0048254,train tt0070379,train tt0283897,train tt0373469,train tt0438488,train tt0091055,train tt0295289,train tt0052896,train tt0096769,train tt0049414,train tt0069897,train tt0086946,train tt0068309,train tt0097138,train tt0085384,train tt0069976,train tt0080661,train tt0106873,train tt0057449,train tt0313911,train tt1228705,train tt0139134,train tt0057012,train tt0089886,train tt0088172,train tt0118708,train tt0118615,train tt0381849,train tt0218839,train tt0800003,train tt0427312,train tt0117407,train tt1324999,train tt1325004,train tt1259571,train tt0119654,train tt0104694,train tt0119822,train tt0425637,train tt0079417,train tt0343660,train tt0113670,train tt0310281,train tt0268126,train tt0118571,train tt0074119,train tt0112442,train tt0981227,train tt0106364,train tt0094721,train tt0381681,train tt0142342,train tt0319061,train tt0115734,train tt0101507,train tt0127723,train tt0075860,train tt0376541,train tt0106673,train tt0068473,train tt0112851,train tt0088323,train tt0072890,train tt0119008,train tt0181536,train tt0065724,train tt0365265,train tt0097441,train tt0139239,train tt0120684,train tt0107048,train tt0099726,train tt0308353,train tt0113277,train tt0386588,train tt0102057,train tt0090060,train tt0061809,train tt0107206,train tt0025316,train tt0102138,train tt0119488,train tt0089457,train tt0056172,train tt0110322,train tt0097733,train tt0110413,train tt0107178,train tt0325805,train tt0303361,train tt0829482,train tt0031679,train tt0277371,train tt0107818,train tt0093886,train tt0108002,train tt0323944,train tt0090022,train tt0105414,train tt0092005,train tt0120201,train tt0160127,train tt0044079,train tt0083131,train tt0096764,train tt0080453,train tt0050212,train tt0382625,train tt0119116,train tt0865556,train tt0087538,train tt0033870,train tt0120746,train tt0087781,train tt0120768,train tt0187393,train tt0117318,train tt0454921,train tt0107943,train tt0292644,train tt1273678,train tt0087332,train tt0320691,train tt0383694,train tt0120890,train tt1156398,train tt1554091,train tt1306980,train tt0360009,train tt0308508,train tt0129167,train tt0093437,train tt0120004,train tt0086508,train tt0816462,train tt0206275,train tt0086873,train tt0115738,train tt0424993,train tt0317676,train tt0160672,train tt0399295,train tt1179891,train tt0114594,train tt0870195,train tt0450278,train tt0274812,train tt0831887,train tt0470705,train tt0814075,train tt0353489,train tt0811138,train tt0115438,train tt0488508,train tt0393162,train tt0410097,train tt0100740,train tt0408839,train tt0434139,train tt0264323,train tt0375173,train tt0101301,train tt0080365,train tt0486259,train tt0414853,train tt0103759,train tt0292963,train tt0482463,train tt0246772,train tt0109305,train tt0103873,train tt0163988,train tt0179116,train tt0961722,train tt0375912,train tt0157472,train tt1153706,train tt0433362,train tt0817538,train tt0116493,train tt0150377,train tt0109676,train tt0097240,train tt0326856,train tt0215750,train tt0428518,train tt0119095,train tt0289944,train tt0106912,train tt0050419,train tt1034032,train tt0064381,train tt0815236,train tt0180734,train tt0102011,train tt0251736,train tt0770810,train tt0110146,train tt0186253,train tt0425123,train tt1059932,train tt0215129,train tt1250777,train tt0074751,train tt0110305,train tt0420251,train tt0079640,train tt0113691,train tt0258273,train tt0757361,train tt0473692,train tt0416320,train tt0209144,train tt0117091,train tt0119715,train tt0322659,train tt0120784,train tt0067589,train tt0078111,train tt0337711,train tt0388395,train tt0184907,train tt0040823,train tt0489281,train tt0117731,train tt0094072,train tt0324127,train tt0115571,train tt0185937,train tt0064045,train tt0321442,train tt0109340,train tt0051436,train tt0101523,train tt0298814,train tt0435625,train tt1320253,train tt0093075,train tt0219699,train tt0064505,train tt0385057,train tt0380510,train tt0071970,train tt0314498,train tt1129442,train tt0337697,train tt0268695,train tt0290095,train tt0301976,train tt0159097,train tt0282120,train tt0161100,train tt0139699,train tt0070895,train tt0049934,train tt0048801,train tt0120524,train tt0477139,train tt0096487,train tt1186830,train tt1448755,train tt0893412,train tt1189340,train tt0082382,train tt0049096,train tt0344604,train tt0285742,train tt0395584,train tt0408236,train tt0123755,train tt0092890,train tt0375679,train tt0158493,train tt0078788,train tt0144084,train tt0120151,train tt0261289,train tt0089945,train tt0068245,train tt0348505,train tt0218182,train tt0096316,train tt0406158,train tt0051364,train tt0145653,train tt0060086,train tt0267248,train tt0078757,train tt0258038,train tt0373908,train tt0268397,train tt0099587,train tt0098625,train tt0314676,train tt0062153,train tt0060736,train tt0419887,train tt0366174,train tt0044672,train tt0191133,train tt1305806,train tt0085407,train tt0072848,train tt0055871,train tt0239986,train tt0061385,train tt0096094,train tt0421239,train tt0250687,train tt0082970,train tt0066181,train tt0078024,train tt0063356,train tt0056267,train tt0119468,train tt0099850,train tt0119360,train tt0110099,train tt0319531,train tt0051745,train tt0080836,train tt0430105,train tt0097336,train tt0418647,train tt0044509,train tt0163983,train tt0075765,train tt0109120,train tt1403865,train tt0384680,train tt0117331,train tt0059575,train tt0091129,train tt0252028,train tt0251075,train tt0249478,train tt0069097,train tt0090357,train tt0756729,train tt0364751,train tt0277434,train tt1193138,train tt0345950,train tt0416236,train tt0113972,train tt0377091,train tt0115678,train tt1126618,train tt0114857,train tt0272020,train tt0406650,train tt0830558,train tt0097481,train tt0077621,train tt0335559,train tt0272207,train tt0338564,train tt0113451,train tt0780567,train tt0815245,train tt0327162,train tt0119874,train tt0171363,train tt0785006,train tt0995039,train tt0486822,train tt0099044,train tt0120324,train tt0964517,train tt1251757,train tt0071771,train tt0499554,train tt0203230,train tt0243736,train tt0118849,train tt0099558,train tt0413895,train tt0164184,train tt0445934,train tt0096933,train tt0442933,train tt0109506,train tt0317248,train tt0241303,train tt0065528,train tt0088930,train tt0463998,train tt0787475,train tt0427229,train tt0209037,train tt0112744,train tt0079540,train tt0796366,train tt0124295,train tt0111280,train tt0099703,train tt0164334,train tt0829459,train tt0431308,train tt0080388,train tt0090830,train tt1034303,train tt0116126,train tt0443489,train tt0091188,train tt0081353,train tt0416051,train tt0822854,train tt0054331,train tt0102975,train tt0402022,train tt0116209,train tt0071577,train tt0368008,train tt0469641,train tt0116367,train tt0109445,train tt0219653,train tt0112346,train tt0091042,train tt0266489,train tt0047396,train tt0088850,train tt0090305,train tt0384642,train tt0107076,train tt0106332,train tt0082198,train tt0080761,train tt0120694,train tt0216787,train tt0238380,train tt0169547,train tt0230600,train tt0357413,train tt0079945,train tt0099810,train tt0120815,train tt0119675,train tt0449467,train tt0084726,train tt0172495,train tt0401383,train tt0327679,train tt0095765,train tt0257044,train tt1182609,train tt1179904,train tt0302886,train tt0418279,train tt0120737,train tt0236493,train tt0161081,train tt0181689,train tt0325537,train tt0264464,train tt0369339,train tt0120647,train tt0399201,train tt0942385,train tt0177789,train tt0477051,train tt0043014,train tt0088286,train tt0080339,train tt0086465,train tt0120082,train tt0095705,train tt0112572,train tt0066011,train tt0086425,train tt0273923,train tt0063522,train tt0077631,train tt0162650,train tt0087277,train tt0054698,train tt0071315,train tt0077663,train tt0102517,train tt0056217,train tt0102768,train tt0167427,train tt0116313,train tt0094006,train tt0067185,train tt0074860,train tt0332379,train tt0046250,train tt0213790,train tt0398165,train tt0119978,train tt0185014,train tt0090329,train tt0259711,train tt0196229,train tt0443706,train tt0096061,train tt0114694,train tt0099653,train tt0112817,train tt1046173,train tt0158983,train tt0251127,train tt0105793,train tt0322802,train tt0146316,train tt0080678,train tt0049833,train tt0116191,train tt0457510,train tt0126886,train tt0086960,train tt0105112,train tt0092099,train tt0119081,train tt0094898,train tt0162661,train tt0083511,train tt0038650,train tt0112573,train tt0107211,train tt0064116,train tt0073802,train tt0109444,train tt0120770,train tt0084434,train tt0094744,train tt0091790,train tt0492619,train tt0297884,train tt0108065,train tt0094608,train tt0109830,train tt0377092,train tt0117060,train tt0421715,train tt0317919,train tt0094226,train tt0120382,train tt0317740,train tt0371746,train tt0104036,train tt0128442,train tt0469494,train tt0101318,train tt0115697,train tt0118826,train tt0117381,train tt0257106,train tt0110889,train tt0116324,train tt0261392,train tt0416508,train tt0120613,train tt0271219,train tt0120907,train tt0858479,train tt0115632,train tt1045670,train tt0105236,train tt0120577,train tt0111512,train tt0113158,train tt0104567,train tt0307987,train tt0240890,train tt0114194,train tt0105488,train tt0308644,train tt0247425,train tt0113326,train tt0117283,train tt0077594,train tt0299977,train tt0213847,train tt0104558,train tt0117571,train tt0211915,train tt0118842,train tt0115639,train tt0436697,train tt0338096,train tt0363226,train tt0108148,train tt0160862,train tt0134119,train tt0384806,train tt0286112,train tt0107822,train tt0120321,train tt0192071,train tt0250323,train tt0184858,train tt0144715,train tt0110588,train tt0119324,train tt0035423,train tt0190590,train tt0162360,train tt0120148,train tt0117666,train tt0780511,train tt0114478,train tt0258068,train tt0278500,train tt0134084,train tt0116242,train tt0350261,train tt0103994,train tt0489327,train tt0118949,train tt0110877,train tt0114805,train tt0242527,train tt0190138,train tt0147004,train tt0240510,train tt0102749,train tt0107426,train tt0186975,train tt0338135,train tt0372824,train tt0117951,train tt0217505,train tt0889573,train tt0159365,train tt0227538,train tt0299658,train tt0119217,train tt0358135,train tt0452623,train tt0477348,train tt0119396,train tt0203536,train tt1570728,train tt1557769,train tt1265621,train tt0377808,train tt1133995,train tt0815230,train tt1406157,train tt0118652,train tt1499658,train tt1622979,train tt0420740,train tt0445946,train tt0808265,train tt0305556,train tt0858411,train tt0309452,train tt0363095,train tt0233657,train tt0374286,train tt0437072,train tt1633356,train tt1266121,train tt0457319,train tt0230512,train tt0380201,train tt0492912,train tt1294136,train tt0138524,train tt0113074,train tt1172060,train tt1161449,train tt1087524,train tt0770778,train tt0119208,train tt1290400,train tt0476964,train tt0762073,train tt0760188,train tt0386751,train tt0455584,train tt0149171,train tt0358569,train tt0276276,train tt0454879,train tt0417751,train tt0412798,train tt0470761,train tt0280605,train tt0914364,train tt0832266,train tt0069704,train tt1583420,train tt0368688,train tt0310924,train tt0469062,train tt0327643,train tt0167116,train tt0889583,train tt0101393,train tt0455362,train tt1198153,train tt1584733,train tt0425112,train tt0243155,train tt1423593,train tt0141926,train tt0307507,train tt0119395,train tt0089755,train tt0112508,train tt0097216,train tt0127536,train tt0160184,train tt0790618,train tt0112431,train tt0343135,train tt0114898,train tt0300532,train tt0125439,train tt1645080,train tt0414387,train tt0085959,train tt0132347,train tt1019452,train tt0120616,train tt0209163,train tt0076723,train tt0096320,train tt0315733,train tt0077975,train tt0120693,train tt1452628,train tt1421051,train tt0021814,train tt0232500,train tt0170016,train tt0115624,train tt0859163,train tt0181865,train tt0098554,train tt0477080,train tt0268978,train tt0089155,train tt1232824,train tt0099365,train tt0277296,train tt0120780,train tt0088847,train tt0083929,train tt0452594,train tt0106677,train tt1201167,train tt0463034,train tt0087597,train tt0475394,train tt1082601,train tt0384793,train tt0290002,train tt0056923,train tt0405422,train tt0082010,train tt1127896,train tt0086250,train tt0091225,train tt0095489,train tt0046876,train tt0870111,train tt0478311,train tt0253474,train tt0340855,train tt1226229,train tt0195685,train tt0113749,train tt0360717,train tt0365748,train tt0096969,train tt0212338,train tt0457400,train tt1078940,train tt1135487,train tt0372183,train tt0385267,train tt0440963,train tt0258463,train tt0119174,train tt0112641,train tt0315327,train tt0192614,train tt0098067,train tt0350258,train tt0120735,train tt0430922,train tt0118689,train tt1486190,train tt0132477,train tt0284837,train tt0103850,train tt0993842,train tt1034389,train tt0947810,train tt1234654,train tt1216492,train tt0054215,train tt0083866,train tt0073195,train tt0131857,train tt0091541,train tt0113360,train tt0099141,train tt0056592,train tt0099329,train tt0327597,train tt0023969,train tt0322589,train tt0088763,train tt0218967,train tt0166924,train tt1596346,train tt0382856,train tt0382810,train tt0273453,train tt1194263,train tt1149361,train tt0762125,train tt0323939,train tt1020543,train tt1501652,train tt0284929,train tt0413466,train tt0338075,train tt0446029,train tt0102175,train tt1013752,train tt0337721,train tt0100107,train tt0378407,train tt0906665,train tt1095217,train tt1294688,train tt1664894,train tt1341188,train tt1126591,train tt0913354,train tt1229822,train tt0328828,train tt0872230,train tt0887883,train tt0114746,train tt0095253,train tt0842926,train tt0413099,train tt0101540,train tt0026138,train tt0074281,train tt0115783,train tt0129290,train tt0117218,train tt0119643,train tt0120669,train tt0095631,train tt0120601,train tt0034240,train tt0082200,train tt0094138,train tt0036775,train tt0276751,train tt0363547,train tt0322259,train tt0230169,train tt0081505,train tt0978764,train tt1265990,train tt1588337,train tt1243957,train tt0298203,train tt1220634,train tt0249462,train tt0971209,train tt0491152,train tt1219289,train tt0989757,train tt0450405,train tt0089560,train tt0079367,train tt0204946,train tt1545098,train tt1313092,train tt1431181,train tt0775489,train tt1371155,train tt0804497,train tt1415283,train tt0020629,train tt0265298,train tt1121977,train tt1053424,train tt1226273,train tt0369735,train tt0335266,train tt0068699,train tt0492492,train tt1112782,train tt1151359,train tt0884224,train tt0104377,train tt1186367,train tt0448564,train tt0362506,train tt0087262,train tt0088128,train tt0104070,train tt0088846,train tt0084707,train tt0128853,train tt0396269,train tt0167260,train tt0923671,train tt0488085,train tt1187064,train tt0071230,train tt0263101,train tt0084787,train tt1212419,train tt0285728,train tt0780608,train tt1680059,train tt0929618,train tt1334512,train tt0328031,train tt1401152,train tt1127180,train tt0765443,train tt0206634,train tt1161864,train tt0472062,train tt0040068,train tt0101615,train tt0020640,train tt1231583,train tt0386117,train tt0979434,train tt1287468,train tt1375666,train tt1075747,train tt1261945,train tt1385867,train tt1057500,train tt0878804,train tt0362478,train tt0093148,train tt0080455,train tt0091244,train tt0352248,train tt0324216,train tt0266915,train tt0425061,train tt0758794,train tt0427327,train tt0086200,train tt0335438,train tt0468569,train tt0209958,train tt0455612,train tt0496806,train tt0120611,train tt0338751,train tt0450259,train tt0332280,train tt0097958,train tt0032138,train tt0116529,train tt0117998,train tt0212346,train tt0373889,train tt0120888,train tt0110475,train tt0120812,train tt0087363,train tt0407887,train tt0145660,train tt0122933,train tt0416449,train tt0088939,train tt0089218,train tt0109686,train tt0034583,train tt0133093,train tt0304141,train tt0348150,train tt0107050,train tt0031381,train tt0102798,train tt0325710,train tt0234215,train tt0167261,train tt0122151,train tt0405159,train tt0114369,train tt0242653,train tt6836772,train tt1521787,train tt1876517,train tt2386490,train tt2381317,train tt7131870,train tt2611408,train tt1757944,train tt1107365,train tt1636629,train tt3417334,train tt0264734,train tt1912996,train tt1615480,train tt1912981,train tt0096118,train tt1823051,train tt2062996,train tt5218234,train tt1576379,train tt6874406,train tt0842000,train tt0385307,train tt4172430,train tt3250590,train tt0228333,train tt3949660,train tt3911554,train tt0096486,train tt2403021,train tt0191636,train tt3503840,train tt3677466,train tt0073260,train tt1056026,train tt1075746,train tt2081255,train tt1846444,train tt0942903,train tt0929629,train tt1479847,train tt1294699,train tt2456594,train tt1758570,train tt1261046,train tt2130142,train tt2740710,train tt4296026,train tt4685096,train tt2043757,train tt0085750,train tt1094162,train tt0974959,train tt1653690,train tt0843873,train tt0072067,train tt1376460,train tt0960835,train tt1270792,train tt3063516,train tt0110989,train tt0081609,train tt5093452,train tt3305316,train tt0498353,train tt0116861,train tt0113636,train tt0118643,train tt0183678,train tt0229440,train tt0116514,train tt0112722,train tt0082694,train tt0385988,train tt0113026,train tt1326972,train tt0097428,train tt0425379,train tt1132626,train tt1212023,train tt0432348,train tt1121931,train tt0105128,train tt0890870,train tt3595776,train tt0443295,train tt0469999,train tt0339294,train tt0088170,train tt6560426,train tt0758746,train tt0098382,train tt0083530,train tt0424774,train tt0071562,train tt0092007,train tt0361411,train tt0092644,train tt1328910,train tt0312640,train tt0489318,train tt1151928,train tt0284491,train tt5464234,train tt0367232,train tt0144528,train tt0096874,train tt1743720,train tt0849470,train tt5801296,train tt0330181,train tt0390468,train tt0163025,train tt0187738,train tt2274064,train tt0108162,val tt1386588,val tt0101625,val tt1999141,val tt1007029,val tt0075066,val tt0105121,val tt0062622,val tt1341341,val tt0110005,val tt7575480,val tt0462499,val tt0091431,val tt7575702,val tt5776858,val tt0113855,val tt0296572,val tt0437800,val tt0840361,val tt0163651,val tt0297037,val tt0037913,val tt7668870,val tt0103644,val tt0100258,val tt0918927,val tt0110148,val tt0068767,val tt0101846,val tt4497338,val tt7454138,val tt0023245,val tt1920849,val tt0086567,val tt0120347,val tt2404233,val tt1860355,val tt2553908,val tt0101917,val tt0134847,val tt1091863,val tt0110598,val tt0120820,val tt0362590,val tt0083629,val tt5177088,val tt6000478,val tt0265459,val tt0164181,val tt0356680,val tt0212235,val tt0098621,val tt0115986,val tt0105435,val tt0200530,val tt1659337,val tt0338526,val tt2599716,val tt0462504,val tt2108605,val tt0758758,val tt0825232,val tt0379725,val tt0050468,val tt0467200,val tt0051786,val tt0111257,val tt0340377,val tt1627497,val tt0097257,val tt1293847,val tt0042208,val tt4465564,val tt0100814,val tt7401588,val tt1648190,val tt0349903,val tt1136683,val tt2709768,val tt0259567,val tt0489270,val tt2279373,val tt0057187,val tt0374102,val tt0305711,val tt0480669,val tt0108174,val tt0414852,val tt3228302,val tt1640548,val tt3766354,val tt5226436,val tt0110907,val tt0305357,val tt0494222,val tt1213644,val tt2017020,val tt2241351,val tt0409847,val tt0428803,val tt1496422,val tt1630564,val tt0319343,val tt1645089,val tt0033804,val tt0305224,val tt0047296,val tt0352277,val tt5481984,val tt6777338,val tt2767266,val tt0412019,val tt0098635,val tt0460740,val tt0058586,val tt0337879,val tt0355295,val tt0084814,val tt5294966,val tt1809398,val tt0065446,val tt0408985,val tt1612774,val tt0093870,val tt2404435,val tt0419706,val tt4244998,val tt0078723,val tt0083739,val tt0448075,val tt0119177,val tt0375063,val tt0316732,val tt1979320,val tt3106120,val tt0400717,val tt1602098,val tt0348836,val tt0472458,val tt0976222,val tt0100828,val tt0263734,val tt6823368,val tt1217613,val tt7204400,val tt0108550,val tt0800241,val tt1210166,val tt0960144,val tt0955308,val tt6398184,val tt2230358,val tt0177971,val tt0118887,val tt0959337,val tt0110516,val tt3605418,val tt2752772,val tt1817273,val tt5711820,val tt0093223,val tt0085549,val tt1013753,val tt0118607,val tt0302674,val tt0090856,val tt2025526,val tt3602442,val tt0469623,val tt0245803,val tt1290471,val tt2989524,val tt2538778,val tt1663207,val tt0175142,val tt1600195,val tt0821642,val tt0120520,val tt5582876,val tt0210070,val tt0286947,val tt4092422,val tt0078163,val tt0266697,val tt1489889,val tt1666801,val tt0120902,val tt0078767,val tt1911533,val tt0186508,val tt0101921,val tt5667482,val tt1748179,val tt0081283,val tt2096672,val tt0200465,val tt1450321,val tt0892318,val tt0433416,val tt0151582,val tt1860353,val tt2378281,val tt0066026,val tt0083642,val tt1496025,val tt2024506,val tt0068284,val tt0183790,val tt0300556,val tt0105812,val tt0068646,val tt3605266,val tt1240982,val tt1876261,val tt0253754,val tt1456635,val tt1232200,val tt1135084,val tt8426112,val tt0145531,val tt0104714,val tt0434124,val tt0901476,val tt0070047,val tt0332047,val tt0415306,val tt0338348,val tt0046303,val tt0303816,val tt0070909,val tt0105327,val tt3142366,val tt0082766,val tt0100133,val tt0970179,val tt0420757,val tt0120188,val tt0331632,val tt0944835,val tt0100519,val tt0087065,val tt0335119,val tt5199588,val tt0817177,val tt1679335,val tt0120587,val tt1335975,val tt1532503,val tt0300051,val tt0072251,val tt0120620,val tt5952594,val tt1646987,val tt1060277,val tt0097500,val tt0283090,val tt0102960,val tt1588173,val tt0363143,val tt4019560,val tt0483607,val tt0093091,val tt0056241,val tt2832470,val tt0364385,val tt1051904,val tt2975590,val tt0031725,val tt1196948,val tt0068835,val tt0061791,val tt0047472,val tt0320244,val tt0259324,val tt0351283,val tt0073190,val tt0078872,val tt1357005,val tt0097351,val tt0115641,val tt2719848,val tt0079714,val tt1658801,val tt1334536,val tt3077214,val tt0064276,val tt0452625,val tt2552498,val tt0301199,val tt0082418,val tt0377109,val tt0293564,val tt6015706,val tt0102510,val tt0021884,val tt3164256,val tt1462041,val tt0113161,val tt1174732,val tt0103786,val tt0053604,val tt0054997,val tt0118113,val tt0246544,val tt5716380,val tt0022913,val tt0280609,val tt0108052,val tt0480255,val tt0102951,val tt3598222,val tt6212478,val tt1438254,val tt0294357,val tt0070510,val tt0109279,val tt0112697,val tt0324133,val tt1297919,val tt1091722,val tt0275022,val tt0100403,val tt0116778,val tt0321704,val tt0318462,val tt1231287,val tt2531344,val tt1549920,val tt6343314,val tt1423894,val tt0076666,val tt0438205,val tt1266029,val tt0384814,val tt0107387,val tt0203119,val tt0120053,val tt0118928,val tt4912910,val tt1465522,val tt0325258,val tt0138704,val tt0368709,val tt0103874,val tt0093660,val tt2708254,val tt0165798,val tt0899106,val tt0339727,val tt0186894,val tt0256380,val tt0097815,val tt5462602,val tt2051879,val tt1385826,val tt0119783,val tt0313737,val tt0378194,val tt1386697,val tt1563742,val tt0285823,test tt2637294,test tt0056869,test tt3531824,test tt0109288,test tt0119567,test tt3717490,test tt1563738,test tt2231253,test tt4438848,test tt3280262,test tt0163187,test tt0172156,test tt3410834,test tt0448157,test tt1270761,test tt1747958,test tt0075686,test tt0780653,test tt1409024,test tt0790636,test tt0884328,test tt3416742,test tt0497116,test tt0079239,test tt2543164,test tt0162222,test tt1258972,test tt0241527,test tt1285009,test tt1473801,test tt0106598,test tt1389096,test tt0472181,test tt0089853,test tt3397884,test tt1469304,test tt0288477,test tt0102266,test tt0298148,test tt0044685,test tt4555426,test tt0318155,test tt3371366,test tt0419843,test tt0455857,test tt1135503,test tt4382872,test tt0024184,test tt0090056,test tt0076752,test tt0067992,test tt0371246,test tt0081455,test tt1981677,test tt0250494,test tt1235796,test tt0063350,test tt0093409,test tt0320661,test tt2005374,test tt0082398,test tt1524575,test tt2091473,test tt0105695,test tt0119345,test tt1198138,test tt0097613,test tt0090837,test tt0844471,test tt5164214,test tt1133985,test tt1001526,test tt3960412,test tt0063688,test tt0377107,test tt1213641,test tt0071706,test tt0102316,test tt3170902,test tt1226753,test tt0104348,test tt0023027,test tt0181875,test tt0473464,test tt0100301,test tt0116695,test tt0118715,test tt1210801,test tt0103074,test tt1937390,test tt0096787,test tt0291341,test tt0085127,test tt0332452,test tt0059742,test tt0312528,test tt1869315,test tt1740707,test tt0762107,test tt3614530,test tt2395199,test tt0491747,test tt8426846,test tt0238924,test tt2992146,test tt0118971,test tt0814022,test tt0325703,test tt2923316,test tt0386140,test tt0104695,test tt0086393,test tt0266747,test tt0390022,test tt0449010,test tt0091530,test tt0274166,test tt1024648,test tt0482606,test tt1288558,test tt5460416,test tt6205872,test tt3672840,test tt0795426,test tt0083987,test tt1092026,test tt0473488,test tt0054135,test tt0062803,test tt0486583,test tt0099399,test tt0117887,test tt1325753,test tt0113537,test tt0238546,test tt2833768,test tt8155288,test tt0795351,test tt3829920,test tt0118632,test tt1205537,test tt3457734,test tt0317198,test tt0118798,test tt3322940,test tt0267913,test tt0452608,test tt1792794,test tt2093977,test tt0388125,test tt0110366,test tt0236640,test tt0070034,test tt5599818,test tt1190080,test tt0096734,test tt0103919,test tt0118564,test tt0227445,test tt3263408,test tt0439815,test tt2554274,test tt0061735,test tt0125664,test tt5182856,test tt0411477,test tt0283026,test tt0085672,test tt2406566,test tt0427969,test tt0185431,test tt0871426,test tt3482062,test tt0463985,test tt7475886,test tt0103956,test tt0093137,test tt0120844,test tt5112578,test tt1355630,test tt0091159,test tt1482459,test tt0351977,test tt0095690,test tt0101272,test tt0299981,test tt0065214,test tt6958014,test tt0118073,test tt0085470,test tt3569230,test tt0368794,test tt1623745,test tt0489049,test tt0117628,test tt1242618,test tt0391198,test tt0120631,test tt0067411,test tt0884732,test tt1340138,test tt2872518,test tt0367594,test tt1099212,test tt0303714,test tt0085862,test tt0208092,test tt2175927,test tt0112642,test tt0093565,test tt0074285,test tt0090555,test tt0120891,test tt0076729,test tt0120458,test tt0082432,test tt0470993,test tt0122718,test tt0207201,test tt0468565,test tt0100530,test tt1233227,test tt0111161,test tt0111653,test tt0039628,test tt0110329,test tt0070460,test tt0405061,test tt0391024,test tt0089118,test tt4872162,test tt0110622,test tt0118799,test tt0155267,test tt0114814,test tt0119576,test tt0307351,test tt0108160,test tt0043456,test tt2763304,test tt0339091,test tt1192628,test tt1646111,test tt0090713,test tt2113075,test tt1343092,test tt0099371,test tt1614989,test tt0050825,test tt0802948,test tt6408946,test tt9573086,test tt0077416,test tt3717252,test tt2236182,test tt2756412,test tt0295297,test tt1650554,test tt2381249,test tt0339526,test tt0382943,test tt0295178,test tt1020558,test tt1592281,test tt0229260,test tt0399901,test tt2195548,test tt0115985,test tt1692084,test tt0101587,test tt4566574,test tt0963794,test tt0477347,test tt1610528,test tt0048028,test tt0104808,test tt0326769,test tt0180093,test tt0119349,test tt2839312,test tt5941692,test tt2118624,test tt1486185,test tt0054428,test tt0116483,test tt2592614,test tt2103264,test tt7547410,test tt0234829,test tt0093748,test tt1152836,test tt0120755,test tt0094921,test tt1183733,test tt7745068,test tt0397535,test tt0988595,test tt0817230,test tt6212136,test tt0051201,test tt4195278,test tt4005332,test tt4795124,test tt0430308,test tt0240772,test tt0042192,test tt0268380,test tt0037536,test tt0066206,test tt1321860,test tt0108525,test tt0113497,test tt0454945,test tt0276919,test tt1477076,test tt0067328,test tt0055706,test tt0084021,test tt7260048,test tt5173032,test tt1294970,test tt0120689,test tt0092115,test tt1058017,test tt0455760,test tt0377062,test tt0117108,test tt0361693,test tt1232829,test tt0314331,test tt4572792,test tt0264472,test tt0119528,test tt1637706,test tt0800039,test tt3062096,test tt1270262,test tt0480687,test tt0071402,test tt0103859,test tt2436386,test tt4145324,test tt0270288,test tt0396171,test tt1477855,test tt0286716,test tt5117670,test tt1656186,test tt0065126,test tt2333784,test tt1114740,test tt3631112,test tt0096895,test tt0087995,test tt0070355,test tt0280438,test tt0995740,test tt0838283,test tt1279935,test tt0090633,test tt3453772,test tt0120879,test tt0113101,test tt0349889,test tt0997143,test tt0089572,test tt0069995,test tt0312329,test tt0115906,test tt0117128,test tt0112384,test tt1825157,test tt0357470,test tt4183692,test tt7137846,test tt0120915,test tt7275200,test tt3860916,test tt0454848,test tt0060196,test tt3316948,test tt0372334,test tt0138097,test tt1289401,test tt0293662,test tt0112715,test tt0486655,test tt0063518,test tt2345759,test tt0055614,test tt0414055,test tt0052832,test tt4666726,test tt0286499,test tt0032904,test tt0337972,test tt0168786,test tt0108071,test tt0093010,test tt0071517,test tt2368619,test tt3850214,test tt1237838,test tt0409459,test tt0221799,test tt0095560,test tt1195478,test tt0051878,test tt0097758,test tt1366365,test tt2097307,test tt0074174,test tt0120679,test tt1272878,test tt1528854,test tt1356864,test tt0045152,test tt1255953,test tt0085811,test tt0397044,test tt0111686,test tt0448694,test tt0245686,test tt0299117,test tt0119717,test tt5610554,test tt0421238,test tt0104231,test tt0112401,test tt0049406,test tt0118655,test tt1568338,test tt2023587,test tt0251160,test tt1790885,test tt0162346,test tt0093428,test tt0758774,test tt0110912,test tt0283111,test tt0280590,test tt2383068,test tt0822847,test tt0133952,test tt2872810,test tt0032976,test tt0099674,test tt2304933,test tt0382077,test tt1865393,test tt0938283,test tt0119215,test tt2267968,test tt0285487,test tt0118771,test tt3230934,test tt1649444,test tt0252866,test tt1637725,test tt2109184,test tt0372588,test tt0805619,test tt0386032,test tt2091256,test tt1470023,test tt0220506,test tt0093605,test tt1758830,test tt1253596,test tt0119738,test tt0094910,test tt0460732,test tt1838544,test tt0929632,test tt1690991,test tt0091949,test tt0048424,test tt4145350,test tt0993846,test tt1535108,test tt1130080,test tt1527186,test tt1531911,test tt0109254,test tt0101329,test tt1013743,test tt1502404,test tt1225822,test tt1020773,test tt1730294,test tt2300975,test tt0367959,test tt5974624,test tt0091080,test tt1375670,test tt0366551,test tt0106856,test tt0090728,test tt0338013,test tt6663582,test tt0088707,test tt0097366,test tt0264150,test tt1458175,test tt1594562,test tt0043338,test tt0107290,test tt1403981,test tt0120794,test tt0105323,test tt0098627,test tt0269743,test tt1235837,test tt0080120,test tt0330373,test tt0131325,test tt0405163,test tt0137338,test tt0052357,test tt0089469,test tt0107863,test tt3700392,test tt1068242,test tt1182350,test tt3518988,test tt0356634,test tt1913166,test tt0100507,test tt0099180,test tt2872732,test tt0106770,test tt0139654,test tt5529680,test tt0443649,test tt0066130,test tt0078504,test tt1046163,test tt6495770,test tt1027747,test tt0238112,test tt3084904,test tt0306047,test tt0142688,test tt3281548,test tt0114614,test tt0056218,test tt1322312,test tt0119426,test tt0493129,test tt0838221,test tt0110950,test tt0106379,test tt0074777,test tt0824747,test tt0040897,test tt0250720,test tt0099088,test tt0787470,test tt4911996,test tt0059825,test tt1584016,test tt0055798,test tt0070334,test tt0493464,test tt0329575,test tt1017460,test tt1551621,test tt0105690,test tt2293640,test tt2265398,test tt0070735,test tt3607812,test tt1300851,test tt0425395,test tt4211312,test tt1694508,test tt0255477,test tt1440161,test tt3887158,test tt1879032,test tt2296777,test tt7074886,test tt0202677,test tt1972571,test tt1291584,test tt5186236,test tt0274558,test tt0189998,test tt0124315,test tt5938084,test tt1586261,test tt0105265,test tt0763831,test tt0385004,test tt1134854,test tt1130884,test tt0828393,test tt0758752,test tt4698584,test tt0106387,test tt0095647,test tt0174856,test tt1856101,test tt0095897,test tt1194173,test tt0063374,test tt0431021,test tt0120461,test tt0059578,test tt0117802,test tt0448011,test tt2246549,test tt0765429,test tt0034398,test tt1670345,test tt0070666,test tt1440728,test tt2385752,test tt0395972,test tt0116240,test tt0103596,test tt0073747,test tt1640484,test tt1536044,test tt0287717,test tt1000774,test tt0388182,test tt0396184,test tt0482088,test tt2908446,test tt0081696,test tt0470752,test tt1212450,test tt0367089,test tt0395169,test tt0134067,test tt0087182,test tt0125659,test tt9251598,test tt0106918,test tt0478304,test tt0137363,test tt0340163,test tt0119381,test tt2937696,test tt1640571,test tt0133751,test tt3957956,test tt5091014,test tt1245526,test tt10146586,test tt1582248,test tt0427309,test tt1233219,test tt0387564,test tt0104257,test tt1219671,test tt0864761,test tt0076239,test tt0401792,test tt5435476,test tt1353997,test tt0110074,test tt0372784,test tt0040724,test tt0059287,test tt0051411,test tt0120696,test tt0479143,test tt7343762,test tt0083658,test tt0264616,test tt2869728,test tt1951265,test tt0343121,test tt3322364,test tt1713476,test tt7958736,test tt0388795,test tt0117774,test tt0106308,test tt0374563,test tt0242508,test tt0159273,test tt1674784,test tt0097937,test tt1220719,test tt0041090,test tt0344510,test tt0104409,test tt2978716,test tt0119094,test tt1811307,test tt0122690,test tt2911666,test tt0066995,test tt0089348,test tt0426501,test tt0101912,test ================================================ FILE: data/metadata/youtube-dl-dump/2011.csv ================================================ XdMuekkeCeU GxhXJGA32YI 6oPn0DwJOZA EvQmjnk86zA ViUAWLUF74Q 8fbGbPwKbQA jfgWw43Fcuw 458GisQyQLg Aa4bjQGD6oY vKEqdQhX4lo 45mmWoSzIAY CNH4A1sI_oE WmeaAGe4uMo WK682NdLvS4 ZI827BuJgx8 gRGbGI2-kPs oUQ9ZKUt2XQ wD8pQ5eDneo CWxkPQXZo6Q CG88PCHKwOk ToxlyJ4-zBM dKAvAAT2q_U eUNWIKp6nR4 TBURp00dftA H-h_xgdM8FI 20dudgZjeaY l-uqZJwOieA 9BNJuZn72tg Q0UDJuPozw8 DYFQ9vVqiMA zdX69cWtu6w _7dr6PCeW4c jaRbZJBLIQo sDsoiCkKuZY nekzfohNwuY 0LzZVYshI7s aqvTaYLP8yc 0DFBoLZC3Bw JwGZDfu-PZI KKW4wRDTI6Q sh0IBg7GBeY MQZES2Vkcws eWmiv9uIXQk -RhmDUj_GJs gAVNayJY7Tc KZzmopXXE2k gPamy0ygNs8 I2rWcnXUllw Cr04KncHozI jpY79a30azQ 97QNsiDKamk OB8uD8FaPXU 3Lq9NGTN8Pc kgxhkCKXyRs dPpj1KEhwpo KDqz--u8NYY TCQQtdtZmv0 hdlfKy3AXDI ru6jbod6hHI qvDxgXX9lww Fa1zCdRj3MY HaCRdT6wcyE InDLvz0bN4k PCID_Jg1Djo Sa6o9ovlX7E JUuQ3MggHbw FcvCuyT-zWs 0l5h8k9N9pI 1eWz6aeGexk C0mHRQn_YrI dcmwPYCUysw btRNa3CItMc 4VWgFJUjmHc zS3qOr0zAJg jKCpGDv8vuY cNqSc_WsRJ4 JoEU1L2kueo L9x9zuoAEl0 ALImNM6jWZw XeN0t2sZaP4 V26Pogm8ktk jPf2y2QGoJw BnrKndkqLaY Y-9QUziXV1w K8HgAzIL-iA y7m2AWevwoI VrJMgYRC_ys A63kIf5CfgE kcYN8phvjSY sOqvTLXZsMs 17gLdc5k_XU QaDy4LHwyec 6YbTy5AvRP4 yxoE9td3Hko -CzO7z1dZ1A Upj9_vP0WxY VY6PAkLG2p4 OCT_61zKMJU FePVICEsBZY GjOcw8d8yn8 v2sqjebFODg dMt-XLWY8-g AEucDLp8RdQ XlfvWdF-g_E yoeV1e8dTTI Wd4DobcYu30 XkFE98rP1eo 9lTSqc1UnLU ZHGLbVKq9T0 LdcIe3gGQHY o4E-yb-1_FA l60Xedjvw-Q KaUEDYWofJQ ccAWioDHgQM h7CBrN19OY4 Am-uvoQN72E -13ScnosXAk AuWjXrFh1qQ DONkgw00QSE 85-2A0PHLIc 2pud_rEsxMs Gd6ruQcgu9w gAKiWvjfCiQ k9vHopyEtzs etyH2OUxVuQ 8Ppo5YIYwTM 5ECsW0x8svw qs0J2F3ErMc QGNfrNJZin4 -ArVBL8EgKU sDKUL1YRZZs lFiX7y8KFoU RlphfLO3MYA FXy_DO6IZOA vXNr2xtv09Y -tUodP_Wus4 IQp7gtX4w0U 5uJV71s0r5Q WwDJZhI5IRM cXbzJ7xAVn4 Mwo-Wd__tTI TGqcz-Xtd6E 8gc-RSAJpH4 TEodx0CTTgE JyjlwpXupvI UdZuHyttXbw NWsc8gC3nSw gDwlbuyDPfk 1edv56TCvxk 6f1jYUTo7AU 67jgvKFBCsY nZE2tGoC0H4 kGVQE0m_V3A LiYdMadk89Q bmdgHN34hnk FEioKHlkczY kgdr5vmYZLw NTd3y71iKqE DfcpuhTr8R0 Id3Lr9GyGh0 x_H8vusyzN0 dH1SeHOpEO8 Y4_1X9cpFWI LLjiVwzeDb0 7hY_dAeX9hw 42xTE_bzg18 dShmoHD7PdM doLHipw196I 4D6bHTh4-tE BvPVgwp_M18 FPbDFxXU_74 iH9hjyoAugw 5sRrCX-pLPM bYQjcjDeGF4 3OYeaLGRfug TXs4RCJasOM ExYO7B26kkw 7UZpRynpUac xMpgI4DCKyk AZ042bsOWTs gL17bwbFDAI zlaLlT-5Lf4 Dyme80H188w adOO9YXZ9Ys olxqe0CQ7W0 1XkC9it8OPs oSvVjh93suI bd0ZO7Ewiq0 bhGFCS11OR8 JxTMuhVED0w uqeGxkIdBiY rgQjzIVzoh4 dJS8Umi2b0Q YWmwAdK48vg KNaj7uCVPCI 0KA8Qkw3nks cs7CW6xDbL8 -A9rFt7ITy4 v9qbXZZD-b0 C-dzbTNdd04 W5ATR6lZw4o 3UALmd0PV6o R7CbMBUNC6I ngThTIjgCMw aYzPUa-6BLE 4nJl2BZ6obg tvGHSvfnlsQ ri44Zx810p0 lv_LfXcjWew LHtgKIFoQfE LUDEjulbqzk Z-365iujWk8 MLnzF5NcAc4 IyOu9xCNMK0 RrQppEXvRcM E9wcK6qvCqI g0UV6ug96c0 j-OcaLECz1k 0cHePp1_EMg LwELqrqsf_o 0bkaFNVY2UQ -eXI4uy3Mlg Z89Q2fkgbRo FCYA84FwbC0 B1QVeR_p7WQ d9-DFXwcmFI KtekLRYl3q8 0foXV1hWrx4 su64KIPecuo BSFgVoDNlG8 1Pb1vdt-SnQ EZ7HxkZKDuk KQrBeGqz1W0 1qO81pgfRVA 1pJywLQLzcA GNUP-so0ndQ nrqxmQr-uto n3PGfjyctSQ uIUCcORbMvg O5ROhf5Soqs MRSTpj2Z5cU aKOmGhBOJZI 7CEYqIjhTHs fbwsXqUpZRU ntGBzcfpKYg CZrA-i6kOdc q8RTGMsDTiw cdVMT44nWzk S9LRWazyNC0 SooANfD9sWc DvOrBPJGAnc WzeXsjGmkjI Vw8BozG_LVA lXtrwkdSkow MwAV8x0J6DA I_yF6-3pXdw F1Bhl3yjzsQ WS94fK4djqg phKe4peWFG8 ng9LMtcmqNs N3U5ed3dRAE ZRJgexzNOMo Gh3AZit48Uc 9f8liieRepk 1kj111rBzoo fbNz1vlRSyM qPtAocA3m2Y O3CGLSyIwNo uZgo9g8v76U 1mJ49BcUM3E zZK_bkxhJes 79LzBvBRPx0 PAcLQ7fRJlo 53o7_NqrTQA hzV5qSWRfKY QZO_QFM5j_I OJVDP7FaiqI 3c5pbePUc2g DjANcJEduN0 Apv7l4b68MQ 39OHlSguIy0 ZCjO50QLDhA 9B7tjXbhnog UPkb66KjZc0 UPu0PU6sLxo Uii-wMha6mE Dz9YWjkw2BA qOy1ncO2t8c 3EIgmj6gp1I UrIcAAryafo 6oijcajbnM0 1bvaqpSmBLQ XgZihg6-VZQ aeavPOh2Wws AjGIJPE8B8I jA-BCSOaa4Q 1JauH_EKpaY G0rXUr-msX0 PahVp7p3XHg qzayNPEmoK0 KJciGsgcYN0 eBU1T2DdLsk g5Y-PN_duno zEIqJ4321TE m-1vkYcqRRw RuC2eNMtAHA wUP31hGC1A0 5soOhh80bK0 9c0szHKahlQ gnaDj74UMqs iY68ovrzfXc ELpItLsTKgY Nrs-lyhcXmA TOUrLn1FFCA wxb_X12HZWQ tHNjy3BH4qE gbu88CKkEzI QAztYUCEhzk TumSHtCzjAw HNrYPzxrG7I lBvrfWqCjYE SBLMTDMdTIU KocHmCmLwro FiAndeAR9wQ rCHGzxSBn-c -BYVM9TrKzg 8-UdwBkXJBI pWPn-C5l3Sk WaF5AMiC4xU jdZ6RA_c6oE -TogGxzlfhM rqVI2DmLI2Q ma_XNn1bwOM BGZZ7s7FJlM q85fsxWYG6A 2jTjWGNMo4E R0zmkkcEdKc IK1HlBRMGwk CKJJbZe4TWM VBA_fhQoArA ATGMbNOmAYs phJJFbxyino qAFgj8mqPk0 mFwAm6oIPtk f_G1oYcHFsk UmwLKU5DIGk 1-HbIkCjDbk qhxDQ1g964U -ncFDuKdgNE Dq6dW6XbeLI kdTfLDIbwow 9G4TzgRUKGI kicjYh3v1FI H53kBYo1Jx8 huOZPQ6Hl2c MYge4RghcNQ 5cKRTdQtq5w a_6tguZWgmU mn60YWO218k lKEihcQaa_g AoSA32zQ754 RIN6AtTxFgE pAZOyJPs5bo ouDfr9Jh0s8 C1NgX-w54RY nrizm2gnQBo BS-f_KwM81I l_a2GN0Ix4o s2wBtcmE5W8 fg58hVEY5Og Bf4YINfjQaQ U15kcueM3Og y8_oqgPwHfI dKSAKBEI4w0 avH2K1iR8Oo xz3CYcjdSaI VrJiU9BOEBI NY0e-PQeJbQ fmIaHAtabSU FpgyrIlhoyw JTu1R4b1yZQ dkdrbg4EwGA DSCWB4GqcFE 5FZ7jNq8A00 uopoXtR0Kjk 7ZkmgFpKdxQ pTCTgL7_9gY _NrqftLip64 0CZAYJ_sotw hhGSeFrYSyo 0EeL2FeI7NA 4ZaIb1kBnX8 K1AMs3IPQJQ n8hmCcXvpz8 yKwIEIVAMfE _P3bnWz5GL4 2GvL2DyMfGU SmCSJ3akPIs kOS8g1D6MXk 9PM9tDtmaaI WeZiTVev7vA PW2Wr4-2oyM yPBDhqwT8VQ b3z4_gJ5hGU 28B_sZZ6km4 ymjvQZ6nSd8 Nd5_lg9Ea0E tGs4xAZJkps SzJ6RfcDato BoTt0juJio4 JES2fQLPoGU NM_5sUMyd0I umK3KRcg1V8 azvRjKHhpfA LK4c5TIKY0w TKKzI-DKhuQ 8aRwEJvaPiY Bw-Y1sEUlSk yGy0XuoyTvE scrKz6PN92g hKNSpQwCIdA jszED6T4Gik ZpuHoppfsN0 8xf7Ee4KLiE 6teHF2I4UuY uqLr5PR6sbM US6tvODNVu4 YNTpnxwyEg4 rvjVIwMPxqA T2R4z7O4kg0 XquwlFI-Ygc ZlITgn8FjDw eWgOjuLg5oY 9V2nsuzAzb8 7h14GBiAZxo aW4tjKzDEDU 2NfTq7LPnXk BjCjlMXLVtw JMJAl7PfSlk ppjyB2MpxBU voNs3aHZmQM OkSIAlL4f-0 8DlxO2frMPE yU5kwdXhSzY x11OTizHwfE tK49SBXBK_U 6SEp2FQYS84 z40Tipkm4IA SWAJPB_5rSs DvD9OryD6mY jYnRBX2Trtk 0qvpcfYFHcw 1CDlBLvc3YE PJpGMrH7RWs sJU2cz9ytPQ VC1_tdnZq1A 435mkg6_eGQ wPmTp9up26w gCdXiOssbM0 AO-VFDYy9Rk 4dWE_ag9W6o _g9RI0GgRIQ em7EcaXPJF8 5Weaop_aiTg DiNE5iYBuHA KlPjJx6pMNA EwYjmMjwF_M Z8zeMXCxlmE lE4UQ5gh5Zo -W93ly0pQGI Drr7dxV6I64 dhRABm5GgHc QxL3vcwOL8E vgZ-MV0YbMU sdUbhlY-RP8 Rlwhv7m3CSI QauBYsssnl4 jvhap1vcLDw Z96Hz_Hio8k FJU-pWka9lY 6lOPeGgf9C4 AMibptRTFdo SUu7hWUv7f8 uEYm9Zm5zI8 rRaHWuWTtG8 3cDavZFKopc ac7D9kcETUg WR_LpHsIp7Q Qub35DMB63E BU6A7rn15oA ja4l7-L7n6M IeFdeC6ukDY BziL_wBTw6A FhODkuXIda4 ow9U0uWCfDY 1iFLiN6E1qE 5zInmil5iT4 Y0p3egpGwAI glMgSCdK1xU XcNYS8j9Qkg 8GPu-oZ4p64 Wzp2rpe06j8 VDU2I4kxPY8 oG58-Vs838M lPCt2BBqR2k 2CEYOnJqPE4 wEnaRGQc8Ls cagsLW2dKTI eHx-v7Xto7E XP71dJlnLJQ Ad4VvlLYJ9o QX1qfAa0np8 i1ZUVkU_XK4 MPp_UJZTU78 exIGslwFcMI hc0o1zXNHAg TiHM7F5EUaI rwk6Obqrj9M jgvj0XwxagY KPz_yW2gjmI JbyemdsSfI0 Z9m4hRQkVSA fEEj6d3GTOU YTkSNIvrueA WmD1a_N83ZM UJUWDZ9JUEI NBS7J3KHWhQ vj_NmzJ0mMA KS6f1MKpLGM 4tnHIQmcSHY OORXuVmd9YQ aIm1ZGm03WA 8sUWwozOFww m3TAK8ty_cg DKCGcHQSvHw xLq2eTiqbww kzu2Gwn-sPA YtDqlEcfr9w oozQe2Bk2cA CbMYk-lCKOw 1jiv5JxmUww H19uKs99vIw uBB3Cvxq5f8 excK59qpaOA WYzUtZMt5A8 MicQ48AuWhw dejp7HK8Owc Ao5TqA-l2cg rOaNhtHWULw Y9NVQr1r9nw qwMmxh3r8YM Kd9_2TRib3k mcUWG23hqvw mHa1zTLrXO8 gA8z3Yk3wWc GrlUWh2ZlHo UkdFtNyvsBM y-HKigPxUi0 SRWyQELLODg gmpBzm5RknI PgOO8Z-FoKY dGFrhVeMm6U Ozpkzjl-oCU 5I-k7fSMhg8 bXEglx-or6k rxM8oCm4TnM 9Najox-g4zE Z0JXPVm_Ohg X8gUgmkzHjs kC44tlr_KsU Td8eEM9KDig -6fuDrAmhNc 6bDAYP4kpGk R6Vbxei-TQc c35RsjYzAhY -e3HqC2rbQc JsFO0ZY7whQ lhQRz_BP1v8 PAHFNiNl9JM GvZLaCfU4PA k9gcqiIfw8E RVFpy5UwsAU L_b55QpXdsg 7xOOk5w5dDA -UJ9K8lMxPA 8wh62mxbLy8 F3hX-mdx80w BsTrRttExpA HbYMkY74ikA 8COIJaMQGc0 y5RFBLZV-B4 pMQxW1t8guI qvFBGYjAXW8 00pBYZ1yofs YnKV34oNXiw 1Ez6dw3ywcc YIYJpbAK6MY oOZ7KbI0Phw Re5jTn8Cv4M _b3_-pPzDVk GyJGnNFU5dc q3NI5sE3KeY 3GoXAgg7rgM xQvyGwbVWHk RObb2QfBnUs 6QFgsy9R4uc Vt0rz5iPuaA 8ZgKfSqsN80 VyEM6uxoo7o oLnrsZa4EqQ yO3eVly1GSI slGnGr6kHIA 330mxTrSMLI rDXBM22wbrg atzQpAlaojg l6zm1uCb30w DBZUhOSY6g0 sf8rDpu1vCk efNMnSL6Wlg XYjynyKDAdY jyqr-hGGpQg PuVXyMNeXOk bBbLZ6m_9MA 36FJgdiYYs4 hJVXg1AHQTY F0-Ke_gCCNg gxAaVqdz_Vk mS-uVaGMOtw Oio9JPB1GzI v2pWzqZqTyk kk2HQ0hCGTE 09idDzvkxZ0 Mvs2nUuXWLo 5DJehPkkRSQ G3xSISRjDR4 HBxcalnSzIk f9_akBxA4mU TVBx0r_xPCo PoS1eAVNXWU _s4J6vN1t9Q E16S5BAkzQ8 cXCMz340CRg 94AnEUa_z8U nIGy0Jw96PY _LvUmxUqPTo t4U-Q2nd6u4 aCW9NsrV6VM Nwl4xV6wuRI qrCKDRFj-A8 VlmanKoPLyo ZtuLM666bLo M-cO3MLYOy8 -meMCDrOmpo hcWo8KXmhLs fpxPstb2DAU aAF6B3USip0 OuGSXflBoWU IKiSPUc2Jck c5WfxwnLlLU qCpDKjDMo6Y Le9uGkbtxHk C3hCT5jijpw Lk5QIK3_Cjo ltO8_FJbRUw IAqy_BtCqM4 v7FL42Fon3g pu2ArBfwZcA QQvcg1NNqWQ c5Re3lGYUA0 zxeNP1dHgXQ t8eNpwLPwog EFollUtH108 B8dldLG_ZhI oowcsynjIwc g9GBuciv20A Daz5Pc5rXPA w5pn48wzBuw IfggccwQrcY fERCwTTOU3M MNV86VFd4Zw _42qmKBSC3g bj2JORdzs1g FosFEzsLKiI A-KN6ZbpIDE 9y-f9F8Hl0I nip7ztfMngk lFHKj8M1maI VqLghmct2i4 fgPFXXhzBCE lHqpwH6rqOY Vw_QOIebFpw 22VmzX35pvM jLPtdXAVuwo DVPGcQ1Ljgc wPJE21U518M 5P7bIH5iC7M FFJo3KhcZw4 zd0FCDiFapo NpOTp73r0Cw kytDzjuBGJI qw0kuEG7NR8 m3QyTiNVwWA e7X01_j_oDA H38XiM2EOnQ Dtou1hnP_Zo c1gSDo9bO2g tB0th8vNLxo JZbJcEKVBqk RJsnx3Fqk6w 3LYT1O8DuR0 p29GuFPbzsg 2V5LfF6uxT0 pK_ffLZIOb4 0m3w2NeEPY4 j4ujHOSbQB0 YgcSs9Qt2vU Ju4vhscaYII v8OMHtUg9sU -qmkhAXmBNc TeGaTTIBv1Y dYQpJJySnwU AaHqtd4dUWs k4-CQXg0Z88 LDsw5Fx76jI GKT1gsoVouo y-79cpg2VC8 lYa7NsegwsY vnHkr84as-4 -_XIgfmDa1s N5EYRBPqrgs ZWly042cYCo iN4yYrCgb0o U6M-YT5kkio EZFLsjeeVmo JVjlqTOPdls f_lRMCPHbuY 7tNEvCdVtk0 4unk6siO-tI _c_ufaxeSTs 5dVpXj--7kY Qt1cF93u-6A Rn2-wALgmMk vE_xjjCJWng 2ikHoBKVlCA PUvS_htXD34 BGnZognK3Oc rNoHdt36C7o B2qVxDAonD8 zR7Zj6ZFyUY JzH1Z17c4yc LkqiDu1BQXY DWjJlErBPX4 5kaBIMuW74Q P8JW75Lv25k PWU9g1Fce3U HCqR0_a6_so OofMJ6cwzLM 04s96zDt1RE iPQfwmfRq2s WlhyiskKER8 xrUEjpHbUMM 9_8nY_LQL3w KqpcmQhnl48 aeneVqyoBTo 5Ei_2wS0U-w CR08UnlmGKc 1tYwDHxg60g BPNUN_aCFAc _QE6prpcauw 0-0MyjmphsA Wu7xiJ_HD6c D0vCzkK_AJ0 zCB7RR3RaYg MhWCHfeHWJE rYGWG2_PB_Q qN-_cZNDy0w lscdNc0qTnI _kopi8gT9KE X7rfWPbEufo tMw_xOuU9DA pCHHv7ojfiw S2fxN2JZ81A WzCgOrQn0GM iMliaXlKxow ena0xfW0_Lo Pb3txlrBZaE 3rpHa7RLvc8 y8Jkls3xgvg EYu1SK9XyP8 Ee8NvgURCZs hKqQSFaX4NQ B_YYf8Z4b3Q XHHg1C8LGnk cDfQo1ANeLM ZP0mhGmUbr0 1Zro4CfP9wY LvAIBDGIYE0 OqSg7WO4tT4 u3_3EUKbY00 wgHRj2-vvs8 QnX_mQ9apu8 uW9Q1cm_Tnw Y_WiVEBST6I s66zFW3nogU X1UmHfWCw-4 Bb5tMhOeg5I FI1ylg4GKv8 r2jbK6dGLGc k71x-TmobGo spvSw-wR6qg ZrF5rZ3FTbg xfoGEGTl-sg wWswgKOqkZM ivmjSqQ_7aw 3uUlGkrzPWo 2hs_qcU6410 HEKPhSJ0PjA DoJaIZ2Sajk 51y64KtGGRI sSx4IDKK6sg YOrZHY_-ap8 WiMw3ttzVMs 1LvSSeZfWmI SaWCkQzKopo Jjv5GQtJTEw 134ua7rOS4g IHbIf3K5pdc mFxrm9Q6E4M eP7cLId4ocM i77quMJ5ihE H5woQdVbaC0 l_OJuYjvKrM LekZbZ0ksyA PUH2nHjBYsA l6StIaMaRsg NOZMlcY9MC8 mtuuOV4FtKY ayjftbSDeVA FEAmUOrMd3o BNWvtfCdBcA rD3kI-nioGA 8BOU3JhcXIU QHYccOE4h4c _6up-uz7Q9k Y2DV9PUx15s vjkkbQy9fLA df0j-m8xV58 zNkZr44VLFY XwJGqNQapO8 IeqXtCC8Osk 8ReMLVUwKmA SN8hW7AeoQI x7dGXb7jrHw 9AQGhFGi1dM mNtK6UvRjO8 l24yOwR9saU gPadm1Ql1Is cw1dB9PxWzM q0yFqlPrLyE IBPc_SnNPzo H2UF-eI_dj8 J_VTn3SAV20 vR_L-yH_3jY BHWGn9p_p4s b0xYU8jHaH4 os1gnR5k3S8 28JhyDR8-5M N_20oqY8E2c J8pmj6RkiQk FRC8Nn6PREI HvFU1MFkLm4 UCd_bEZa6k4 0hau_p3N-MI 8t7NUEm0mMM IMjO-38v2cs FtZb1Kbh2qY PH8Gh-5lQNE rnnt0KYtwFc 4uuvZl95Cyc -cBGthOZ-Ls RVbEs5DBPlY sdb8G26294A rrejfviNpqE EBkacU72QM4 qq38b_oRYr0 rrDG0rQCc28 lRd5iD73g2s GPCN0TioP4A JELOhEjLgmU r99wnIibUQY xr3TcE009HY mE53H-ZbD7c l1GXJBIkb74 mDXU3KxBpCM cAEth6FATZk PlO7gaalX68 dJOMfmVs9Ag x5f6nNMdbgU t4k-USM30aU As5-06N6Rko zZB1N4IMjlA dMhT03nH_HA nfJqMoCXVho -FyVSeNTqJM 3F1uAggQmYI GgYOGHU_IOY a5WKH6TNlDw qUcMohewjvI HpISLkb5L5E fgMlyvq2oNo v7b0_Z9dzoM mCqrIptSd9k uPzTQvSPsqY x2DospZTmUg GEp_uGRMbFM eCR4DIi8SzU D15UY1FXJpI kBifgLJF5og QAxmwbQ_7sI o504Z9dWRqs mvc_bbaLhSg 7LhZupa1Bng o5l0Bw2jMO8 uvgBCv4v71s 4jcflB38DNo 3bgPH3rOWVk hV2om9YBADI Bogko_zvcaY 4Ky2p76AKSs S1s9cXYpxNo XRz0pSQXTQ4 va6nRaZ9eRg _yYDzLUH1NE sFW-yxe13lo jJMXxv-hYPo NnxcN2umAOk 20g3QIUnOgY _yy4qamWAmk NUJVU87Qb7A bmHLulbWm74 kWmntegbxMc 5t8Utwa_YYQ IMo_Jx35SZw m1ef1Y2x8NY Cs-L3psiK2Y 5QYQS9SYa6A f6L3Ef1JCC8 CcfN7q8rN58 LqneoJRRqbg rroMPRc4flw EiVRkqi02a0 a8xs3O-NwsY yl_CgAqNvKc e7dbge0Zk5A iBRhat_CcQM hpb2-ZOzc_o 398qkvR92GU u4T5X47MKm4 bxAiioYl1bw igEO_oyUs6U b9abCIgGxT4 OA6wpEFU-uw VyiCDq6Y0c8 PFsl1cGHzp4 LUr7o6R4u8U PEo3OnoPBI4 9zYrXFG6zSs FUbC8WBChng NUdeuIj-yKk GanDtOcF0M0 AgLQ3qTL-t0 Jjfj3SkBkpg SnvRdPwoMRQ WNnxjpBMF7U M4NDR6zyzkw vPTTP3gSLJc I2AjeXpxmI4 irr4b40Ok7E WUApETooc_g F1adM9oDbbw 14t1taTBtmc xtXdKETotbc hu2AlkyvIe0 3tXDymBcnJY hRa-69uBmIw lCiravgbbJk tPy34tjLOyk r9bfL4Jz-M8 fMTn4M2qfNI hvZiZFDE3A8 SXjiv_w2i3Y Pha96r6s_g4 Ow8mG8qutkw DCOm4osfWn8 HYOjY7JJDBI sFW15hEqZQk O71paEZERHg i5j1wWY-qus R5WC60UwB_Y 31lZFoSS-VQ PNOuZUHKneY KAeAqaA0Llg DvS7X6Zik1c IHLzITVRlCo 5M4QWD0U8-A 8MuZATnrE3Y 9S44kVrFB24 901lYbPmqu4 GurNiNV5XvY 2l_IUAcvfv8 TZQWu0gDpO4 CxzCn3OZfeA 6mreIgrIXQ8 wDZyu8jYw90 lBS9AHilxg0 _syPeFclyN8 EMS4lYA-hEo oEFPcljAXgs C0SqH_PRfGU _xJ1KmjXSYc -nIwFGmgYMs 5s6vEQzHOcM VNtsVP42bOE vQWmd8REdaE TzMGDdUyHkQ Au47y23N-QM gM4-jiKNuIs j0silSyYFPM dQTwbSY0z_Q pTbelq2dtKg yHBT_3vRbq8 xPxs0Qh72kY 9dyhBVEQi9U KA2ziAAXoqE 7YdgPy21hBM LQNKhY7ws48 QZocvme6cYc Mhu2Ij0rWCQ mgyypjEpK6U X6WHBO_Qc-Q zGIIiQyyuYM qIxHb7cA6tg nF_6OfgbF7c EQG3I5efwWo JJ83r886Kyg nW-NiGp1gys qopdYE3_QoU _zSpueUqvcs uDJsCE01LYI FEdyNyQCjwE -hDPK865N9I n8mK-A_0viA 3VIKJMifm7k A3WUhMCsZds 6OPp0MyQfoM eXAvTZlmYF0 VCfFCFkVSss TEAIVXJ1Qds O_4Sx5NtOPM U5418CiBukw 7-VAbEyf9V4 nPWRoCkmaQU UfmdBPl48uw MhGl83Qsi4Q sOxspReyzOI 5paBdZiLhqQ xCQ2qh3Tu9o CHPnFgyg064 Ihd-NwI030c IdEsGZhAO7A UuVuFO1cCFE 139c6HgY7jA IakgSRSZZ0I E3WlOWMP9KA JUQS0Q_0aQg yKfQ_-lnMJw TMUJpec6Bdc Nn4pMI2q_PM _3hajwRww6I AupQ8Vm51OQ XM3BsAAO8JI ixljWVyPby0 7trB7i2xpfc kk0vH1qJPHk nS8tqsjySaI 3ZpmjPc9Vcc V4705kE44Jc iU0CuPH7akM evoa_UWUobI WSlojAguwGE fnTckzsYgg0 ba4niP3IwLQ oDeQU3l-JSg xdPtumdfg9c J2_tJIgfnDA EA-9nqoIXs8 r9aUxfTTLfk XFrerPgK0kk y8SLxD3ATw0 O7dHybpZ7Mc ZPk3nEFRuZg cGP9TwLnG78 cEjo0ajod1M C5LuP6tDw3w 8hJlwQwwCGk IBjrQR_1ef8 9EBnUERX_cU 8iQKnefUJNg p-echNQGbug 59ZcTCijizI IEOqAlmq2NU uZWDke-bpmc pPuAKVnqJdk aHM8kYwl1R4 gNGmuLYwd3o _ZfmXzIbHI8 uuYTVl0iOkk TJf9Pf9rjO4 qXJF21RuqlM 2jvtU-_WDUw ZzOzVT2o2BU Yq5csaHc_GE SbTWLdT_tgk mVqKHUtKh8Y OUHFpvPxmRI foll8sDGq4M gTTHW0Hynbc y-qFqfSjN1U Fyuo3Z5ZTX4 GQDLVpNKFhw 4EdkUt4f5wg N8f-APll5f8 Qf9xTFEhRS0 BkVDaT2FTM8 I6_C4fK94-c LX_cW_dLweA rr6eufh4DA4 f0MBL-DyXaE qRAQivSrtm0 5NOmw_kzrJQ PtwRKtvezd8 tUkE9qaVgmo fqM1ttqNA9k km-nbIRZJYk VToA3hOd3tM kikLy1L-keE KQ6EyoqFWQM GvwHxn_ziD4 bd165_YTXZQ uw9V_NayRVY _vW54lAtldI Ti9VcWX0vEs PuvONUFArdI uYIe9o2jMSE 4jsUIgchHXU 8G0BVEIjGyo 7SZMEImptPQ kh0exWqvxeI 9y2y-Tkn7eg 3BB-PdHTQHg X6CEEc9g9vk wnrdetFAo1o bkH0i7fGo6E 35fEjN5m4ds NMi4ONkFym8 KejnRkhhY14 SzVAyGry2Ic nfcci0C95tA EHJoH9IFboo EnIL4KXQI2g QvfJieP0KVA kvbYXGOZHnQ 2u8cHrJvlHQ f4M5MT96FwY 7eI5BfzRCY4 hP77V2X1Biw OQrzt7JI_DM P0GZAeKVtfg MTs-HKiOQj8 UUcH7wBp3G4 3lGZmV8_XxU vSt6OezOAwg TbiSXYT1-SY IeRLdVndLpM 7I7OErGVS68 Ts5FbF_2Wus ZKtFIgmoqoI FuZNswuwAxM TZYf96eyE94 nl8PQAfhi28 x12Dai43I8Y U3sOMWjM7aU Lp3r6mBRUXI qAhaYHHcYyk ppGd-2nEOVQ BEG66-Lro7U xM2mL0y9i5M 7uSz0mEtEsQ VgiH-x1eRpw IzYmyWR3pJs YzpjrMci980 Clr9NbvwbhA 0rgfZzE6Ulg tcR7LgBVTNE BnjXFpoLJfk 2lVRcI0zsvw 3eJ8A1W3jqM 402xHwQGVsE XkvIlrLiy9o 2rCTuXAbyTI jPsXJlylRvs mMRQdL_xvME MXkFgmQ2O-Q reJAzTE980s 7q-lFxf9-p8 WuHkE1eU2AY RU3F4QPUVQw QVGOUxQrISc ADl0wC_cAbk mzuVsHCLSOg 6ooboieA_eE 0ZzNlA9uZ0g LYppdp_2GCk MvajGqWodvM JWMjQEyfaQ8 cKADfQQILN8 kzw1_2b-I7A lbaWyJwff-U WziC9cSTCWc GZeehXqOYVI lC-DSaxzDzs 6nWWM8tTn84 SNruq88Dlpg q5BzDVDotzI HDq2KcdmVU8 2Tjoz_0I4Gk SdNqYGbc0tU MkMqRDBKUwM PZGS6N3zG4o B6iOniIX5eA VSo45ZD29oo Q1vQUG6GFNE e6kJsyysbSM NgEOTc2qgVg P-4jKZ3X1zQ hKNeFHBPgRo faaBOJDQ_Lc z0ogqhF4ems nYb42fv8pMU uvtLHXUjt_o qb4Rfj1wp0Q nOLCO4_AKiE 7e6DCyXotE0 ee6yIS-0NrI Tsz_tamjpmc hZzQx9cEjhQ 2fwZfyxiMFY i75piQgUKa0 euxVy9j6TTU WMIho_dolCA 8j5sn2UyTp4 37oJqWp4rJM jEHoNJLqbnk FhPUGeCMKCE Ed2KRddgv-4 zIC2aMlqEZk kdkVnZsOgJA fq_QSi29iGQ AnPDhq6O8jo EnrWZiqgv1E uDimGOcZ24U l-PmluGC2wk MgtXKQbmYRM fF12SZcPQ1s exObFY-sHQw 3H0V4XiAyv8 akrTlYc40XE YL19Rvtea4k oWBYpwZ5-AM dAMqMErPIIY 8r_dXbWf2Aw JBA3q4S1LE8 10fKN4nHNd0 l1NB8NQc7wU Co2dpNsHMKo koPEnaz0Qm8 rngwd6ExGmc ctrJ0-TLUHQ 63lE3AOBgeA PsqrgV2RCCM b02H0dW2xf8 IZS7zpXftHA lKTGkLcn3yY xSQxtMWJzGQ OKn00A40uWE OZLVlajiihI O6KVfajjyGs ZMplnAKdBsA kflvHGnIkoA 4SNTodFS0h4 0SbVnjlPhjY ZEbN6Vnr1g8 S6UlqI_pZr4 7CkTYPnJS0E 14Fq0FgsKfw lI-ty9MfICM PHcwHxzDQDs fsWhDcon8aQ R9WGPRckS1s NP5IK_pn1eY 1BkNaaNscqU 36T5BEpn3dA hVxEoBe1UVg 1KBWO9Js23k d2zY1WRtG94 nWRxPDhd3d0 dbgOACJpZg0 YwM7NgPE5lw Rd5dYQHoZS0 zhWJUB-Sub8 sGh6m5Ilw_Y nhomGXOMYmc Qg4NBOIbwXc ONRLZIY7gbs CWN1xWdKbHY dm61r3qnPKQ KeX9BXnD6D4 Adh_8pva10k jMTT0LW0M_Y 4OgldRzYvD4 wM2NQimHkTY HduXGYkoc_w bb_uXwPiNxc vpHEQqApoAY rGS4bE0G3yY A3xuABrdKis 5LApVevs2II mNQx3KPxifQ H2uHBhKTSe0 plqzeUB9B-w QbSFxlfuf9s S2XvxDaIwCw cjkkKO5Gsno Rs0tk-z4b2c Xm-UligdIrQ odrqxoaNPC0 rWeaYCoh1qk kaXM8DMSm-g Mi3s2DWKiUo XzKYNZY9Hpk 2z8XAo4Lpuw b_uKO3N_JJQ ZtUB8XCrqPg bcs2En6tGRw W-T51n6etp8 LqQJOr4Rx5k COhtZbBhOYU 2mmq2hx0tl0 cglY-gszmNI GJkn0wEMc4w vBH4Hv39SEo t2RUtqJGxlw wAZPdmo7LVA 4weEXyoXZKs lh0yfYUCkIw tO1oeKVFlPk DH80L45zXJw Tb-PscLsY9I pobSophb2UE fy-Ocaxlk1Y roA5fvzJsho u6GTs78NHzQ W-qUR8qovy8 x0ce_01UW_Q WpCGV48yiNQ DXSoxAHjqRg EGa3R9VvDVs TsIQj8gZeo0 MQEwJdhfddk oxLuG0BYYwE IAsBghop-hw Ev0Dm5qX0bU 6eWsFFQP0gA NfcmrwPNn7A nPH9cWTJgdU P0t4ruBVxSA QhDRkf_XGVw 5pJOdrchPlo AqWLMW73b6Y Id6oS3L-D9A DXjOOS4zAq4 5Gc9pviBlJA Ui8Y0Pqlg_4 SY_94CSMlyE kHq3y20HhRk TReOE4LKcT8 5ps3fGNzpd0 cg7wSv4ALRo XYumOva6Xr0 rQbj9uvYL8I y_7o1pAwhDA FNkpIDBtC2c 3SLoG8B0HTg Qse_uMLvdwI 36IxAWko46A EbxlqGXQeEM yDq42VIYVnc Y_SP86WfXZ0 YQdnuL6YRBc UBU2McO7-GY 1KkrlhoFbBM SykyfXBJgNg 9tkDK2mZlOo OqVyRa1iuMc NH6x4IDEGKU p43EnAUd3-w lc0UIhNuudQ tkRvLFdrbTU r96GiSht1uQ tTc26ZemSGY nTOUiTegqrA hHWcoaM_59E AMQgbNK7fGs ME2mnzfCdug EPweJNJOQz8 aoXg7SSmGyk h7wEE6Yx7IQ JHkM4OUkF8E HOldh4ePgnA ISs3m1aHZxY Z9mzzABiQUo 0SSgv8t0QbM guQnnPJgtUo 0MoJuaS5x14 e77ybggTHHg lKE3zh_Hxqw G45X6fSk1do JVZwoLZgrRs Ad5ZJcmYc_k 2dYyyQdjgLI HmNJ03s2ZuM UTIjIC00VwI GHZWWFmaFcI ycoe7us5bbM 8w_naC0saGI 6y-pdLyZPJ8 KnhDO1G0ieY tB9_C5zQLZw QiuXl1cPfrU t8loKEw-wlA krqNvqvhvp0 yisFmY4OAbs 6u3GAQgZpww Nj7HiMh778M eh3TXsx8B40 0eJpmeoLXLg kvAByCIqoOM OYt6asKb5bw nV9U23YXgiY FPc4QZqz4ek CW0Yfk66UxE KjB6r-HDDI0 KPxDoFbsvWA vdHBsWXaHN8 wUZxSf_P2r0 WK--S8kuxOI o1nS19OOD-U fC976fuQm4E uvFc0EPRSI4 GSSXEGoO53Y rF6a1GG1taY rAchA32z2zM 9JHi4K9XfzM EHKfoWh8t6o -nzW1T89qH4 W8AmENQ7_ik giiuqTdBSTc 3LEa0FN1bf8 Mg7RrLU3Uq8 HcHdy_Vc1DY z3dwJ734jbE cHUML0EZ1BQ a_Txm9dQuhM dI7M4Om2ITw m7z0sOBPx3g Md0LvQ9gANc zHjeOiB-cxY 9vvMKxDvAt8 ExG7Ut6DJ1E f2ygGoHSuPQ sZywE0AT1qY bOR38552MJA _E62a_RCtX4 g9vPtCW9pJ8 rhtLoA3X21s 6wJXBUfcIOE 4WcOcgc3WN4 xbga181nm84 1DNyLD2SRjA kTk2jXiuo9s HrvHeKH9kLg IZQFJ6hZNJc Yg3w_8_fwIc ACV4Krf8JTQ 7msu2ugXGW8 s_CwatXdxUA sJ9nOmRn6fg fBaXUdPo_2g kvzIRuIg288 SZ5YPfWeYzA wsSlB31dwiE ALGW3PA12XE JS6Gw6NVgRg FWEQfN39sTo 28C0A4CEUsc ecWhXP2jM28 hd521kE7f0A pKEwvDFqMGw gr_OpFxCx-A ETcMNeJTfOs PD5Imb7vWSc QJVsS-vIDdc RN7YPq8i4w0 1KdjUNIcP8k sa8E_rZcXho X3mBsrFYwjk 2rha-6qG4OQ 2k0mUKGYUQE 31Q9JbHAzjA kTXlnI1XaSY EcOENbnXxQ4 i6zGEBhJMHA 9fIrXo0raaU SI1K-_VTFrQ TNQ76UyurLA ShQp2Qp6o7s ttIN2nLcy6s X4xJLbsa4PQ 6SLDMMGzkyI u56OqFjs1dg dIUK_wn5If4 4WNfrd5hsdI TSaU7qATRHM wJCqOhdzatA OfUV-F9jFro 5rivvvWeYh4 ehdAEyAGBEc mklRbf1JoGY j6gLJ4_sfG8 gQubL9r0qAQ pHxvNgorTQA zZH3OD9d9Sc l7-rpI0RrQU sNJmfuEWR8w Jo4XXm8OUP4 26oRZCLHR1M LaIsEAR_R5Y 0u0P8j4vLyw RRJ1EPuYkZQ KJ4q3cWQPsM Iaqusi3cAAc 9w3E3eFMsLg 8yDjtE3wmFs QQJDkZZaA00 vkkM9YAJ-Ts KKzWTwJwrGc WUuTs5CXP3U uI4fVgVVpiw Wl_vyjME-ug 9B3TN2rEckQ V5ej5BJ55us Cvl0iKbdV6A DKtjBqJ4NxA se9hqOIp810 gADayU4DP9U wjkdynBFHuQ PT-2kB0dajE ZdN6HbD0paY W2Q27LruEnA 9PpBLxJLihI AkOcZ0S8vDg nVhrWyZtYFk BiQ0NRRraIc uAERYfeiYBc AKOtvcIssZk 7mtTvR0Rg_8 9s-a1vp4LLk jLo7tHDHgOc TVOIig2xLq8 Od4nSd9AVH8 02Or-Hx3yqc p890hIa1w9k 8aXqgoiVb8E 52FdiECWnhQ gXQhdB1y674 4m2WutlqBk0 W4xO0k9LcIU 8Qi3JERmk9E 74M0hPAeFHs o5FT3IGXtAk AGk2Hr3GcS8 dKsDjpKr2Mk i7tGEEWQIhQ HppKwvQMZ4M ZJlmYy-mAZY 61AWnIZrT5g jA0RnDQiFbQ 5XP3MonWebI T7pci4SIGCo PqtjbWJPIgQ J07_XVy9Hns 0668UNhYjXg wPSEC3PpLuM RH3I-IE0Xhw bBaNdHqC_Yo g_wc9JvTXGc rBsvuoQMmuo XDZ_lSJjgvk yBBKcecvEcM kL4cEH2JdQQ jMaeuWl4qHM hGOHE1zqEmY Pdjgdb-OxY8 LWWG1eKmylY 7C1Pr4AU2wc Drva4gp66lc t_lvc5iBnNg sSHxFSaOV-o ezj13E-cX9I JxRj80eLkMc f783E8Zi8Q4 uqg7Ow4SNk8 qj_NSmG9m5E pBNKarJukms niFndjwElIY h1-T9LYq1hI nzjEYhUtRGc _fJArvSVqEo 2Wlur8mxYP0 fGkSjNHEecA 4cJs-f3NC6s tnhW2iYL25k 92ygYJw9CSE zUm6rC0o7Po MnBarCQ9BE4 QrRTUOebEpU ahkwQhQZWG8 xRtjf4AE2-4 OqCTq3EeDcY OYeox3LLQ08 I70sIrfz0_c NL4WWmwdV6g dZbWmnVOhbA VdlxHA_WLn4 AhAHDaOGHFI 1U_GoiFy6kw GSruhwZsc9c mzZgTmwmkfo lyuwBW9lNa8 vyQHWSbBCcQ _ptjc9Vono4 vrf1MjmWFRY _kD54-q1uFM VtPoKS5cCL8 9vUcfymkjNY ftmRf0AY8Co _JZ7U3FsOJ4 98wG4OA6iLw iNUv6pnKd5s SW2HRaFUXV4 k-Rg51azVlg g0j2dVuhr6s vkdH0nuDWX4 a5QBuJla5do Bpw7M2Heuk0 AZ2EPeq1TK0 6LOwktvZlCc n2A194yTWoQ NfDUkR3DOFw gMBEqbV0mw4 1nLc8ZZUKCg ncDQvy5GoK8 Ls9p2CEVQMo s6pAWtuEIR8 nGSrqmJr1Y0 Oq3cGgqbWG8 5AsYaSut428 wXf_eaQcSdM MdQC-DD9fz4 JCnZaM2qKYE fqtFUIQ7oWA XvVhKYmr8cE goikm-zX9r8 6lGs-tXWpR4 vuuTS_WNw5w nXJxxahiC3A aU-Qp-5TsB4 6Q2rF2uAH6g MCkKihQrNA4 6g2JN2PrHJg uirBWk-qd9A DWoQcfvV1Zw iTiWC8GpOgM AwgrZd_BjtE _3K4VtyM3xg kWoC8yYqPJk aSUmLsp97mE knL5zY1LRqw NXG6CKgSNdc eN4fDGHpf_c YkjmtfQVzWU o4Dly22Kcfs fRCKKlTNxt8 0lInUr7VgCM ZlFSjq7eU4Y r-zlkOg6_Zw 2YNlWDv95EY rVFi-yeTe5g fL4j9mZfUdg npwnO-yPp8g PMVqjEj9eKI aMBtKhTlQHk NXMarwAusY4 L_TvaJulWx0 xtyieNg18O0 yRLCUdWuyng FzQ0GeLVLhk 6hFxG-8I0Go Lzx24hw_K5I Yf7MT1p1VNI vTFuGHWTIqI TDrGHP9Z8vw m8-_aJ1BiFE QPzZIJ-4Cq4 0_ArO8UCfyk iuL2loyB1bk h9jsnAD4aNw lW2JBJSaXUI Om3C1EpHLGs HzAzwbkW7tw mqkqDSAIaBY KlWlhyX6rb0 4PXcUkIkulo jzasSSMjsxY 4t8bAQ-cGZM umIEp9WZI9E dvmqIBOExp8 sRk8Aentzic dXj2MnkN2nA EwSSmKP7ADQ JlaTtF1rdVo lAlJRP1W_rU vWNDQxvY3iU esHt1mAYF-g t8HQInlblys SOBvUyimDo0 jrf263yJwic uBf-pbxHb7Y C2pUVmGEEeM inrI2qvps58 87idpAngKc0 v8c2XZdCS_A o1SrrJNjIh8 pYI0bXZVZek uCV1-C_0vC8 lHtMdj1rZks ySEkuf94my4 KSZwlMDSOvY qjhh_5PMBZs vPB2g1y2VFk Je4QCA5KCuc -NkNYd_ku_8 gprLI38JwQ0 -RBjiJto4hc 4QagAGmJcnE Ak1dPU8uXiE mvmAa1cYZK4 Vc_4eoSHwK8 -MEOfLvOuas GeOcsY8foxI iVoG7CivnH0 yjlZPv-37h0 MfRi-a8hPh0 OWYSE2bKbNo 6UV_5HvpmgY _xiz8CnP1-0 5ut37zda30I 5gMuofAdW6A p2esJ_ypn7Y ctTSLWXE58o Ustq_iSIqgQ K4czoAgsH-0 lD1XDCbhtn0 aPrURpNEtkg YTds2jCQHKA oQAY2uslGuI TpOPvupzWow NXvcleOF798 Eyh5RlXHBLU p-Kyr2Ibq3c c9xahfssbQg _ZJUuDLqjzU GtV5-2QXj9Y Mw0IakmQri0 g-Yufp_dafk f_5nHV8FJyI hdW1BlDtcyU E4s5mJQr94E J215p0P-ieA _TRUBZVUg8k TDoj_T5cYhE ltwRv-C1EFQ WsPcC5TGxlA iKqGXeX9LhQ Qf8im5NX7JE I3Mg_5wqewU NQ-8IuUkJJc fh1Y30QwRGE TmoeZHnOJKA nxHTPahkN6M 17dU___xcdA noq0Lb6lVEI Wv_JTjYYaQI hA0OlCQLC0Q w-DFg1aS_2E itdD328hLuQ NIrF-rsXWJM 7n1uwzYOBa0 YYSAcTkd5B8 -wSYsQS2-NU GxQPnTqPeVM oCDk1jDXZnM hDH1ilg9NMU JO-L1PjLp5M yRess0-DpRk vKLbd6LeUv8 _c97olSX4hE 3lz4BuydE-Y 73ZsDdK0sTI 6af1dAc9rXo VdG34y8kUyc QQOWp3tLb2s q5rs99ZpXCM 9DLcDirhBAk I8PLjzTzy08 xCnFME3JqIk O6DFHh2XxLk JBGkwf707Ls TYEvhdLuW-U rJWLdQ9vylA AlV_R7v4DFI Njwqb3iGNto GUwhnO-nTLo Nz1NJ3fhso0 wG6wio8azyE rJodsSNioXY TDMdoNM-pBU U49MXakb7f4 pdE83FX-Mto nTh9qpzhunE FuE5BaM0BdM 363ZAmQEA84 pJ6XiEEJndw tippFPLwGgI 5cU6TxpG_p4 AcEe0LbP2wY IT3BdhTyVXs NXqs_wYohxM 7VO2NcQl2-g P10AWBi4-y8 MfeSSw69cC4 4l1Yek0Z1FQ 1BRteOP9UL8 EcxB2iCU3w8 Yf_toKBYCl4 yOpsJ8dh5L4 kye191FZmeU Oc2xTMnIwrI 2_SfD5cdrnw Kf-JPkSfjug eBxVWEnuSC0 _akwHYMdbsM I5kkwmOapss 3XeLFSaoyAk S9RbwDvpqD4 K2qNJ7IzzqE ML1_2lHFftE vbF4qz_-PCM l6uaxfye2Ig 4KJD4aP90YQ 8l7LGK2hnQw 4mdd9P7Tn6I 7xohWvO9i4c LmdcbtSwX6Q 7xVN8Q0OIbo o07ecRzkLuM 9GxFab5uMPc R9goLghpPBg nS0fxM7sCHs 74Y7PD_uBe8 2v-VkDiUm0Y pq9dj2Q6edw LBO6A4kU5Vo TbI7_iOYJvg DSuUJ-Scbeg eDhJ-xXsbHc WJlOBTLg4xw RiTXscx2pJY W91BHqxJIRg tz56LhvDFho EIz94vt-Opo DxTFwXcsctE uqMxfPMxW78 vb2GzRckU9s QNVWY5jUIbc sM3PgyGpO7Q qYbwQoq9XfI 7JISgsyVgUA TY04QewafKc HIPljGWGNt4 iZLnEfsXttE u7tXpBrpecA U8XrE0FSQv4 DIlG9aSMCpg UEaKX9YYHiQ qalHjNdHFJc jpPCVq8UmX4 32iCWzpDpKs iJKhynhnPyU w9-IJEaGhRg SgO2khv_SDY _Er9cXkqWEs KY_G2f2R1Tg MH9ZK7vSBYY N_HE8beijHA Udhn4vCPZ7A NrE3t6Pgps0 5FgtVXFRyTQ hwWsAUpr9eM lPe61El1_3E CblvDFObgNA K0zvX6AGd7Q 3kX6rf9uw7w sZTRUAFCzF4 XXLpjT6qjCg l2K4Fw-pmLw akyfR8zcmIo ThzCQZyzCkg jzEhVsME8p4 DnwnDFr9kOs hQEej75JeUQ Q5wdXytgRLI 3zavgk2_BJs tUaOBgXp_Pg AU0NLheu8mU EMTbkfgT_jc sP9ufyH-Pdg gx9O6q0pDAU EUvgqItrt1c NRQifnaioeM sEXIC0OaQSU ExVWQ_I-elI kf8NklFXAd4 CFstDwSYjkc w0NWPKGGFiY YJPebmYS95E 3ArDaUOO6w0 Uif48WrZza8 T0QshoW8SQY yOoGw9aTRhs 3orSzPUIVJw 1ycpmrEl-9E ZurT6BG1OM8 gwXzOVu0x-U v38lu0Bi0Kk uV5YFJgGPNQ nWAV_KcSkNw k9pFp6iRVM0 cdaDQcs-XNQ -v8C1H99O_s wzSYH0nT6Qk f_xjQNnIcdQ c5BJJbtFP4E XkasRfjEqFs RUX-bx6rwdI 7UKx-6P2F-k 3JJaD_5oQq8 mYhkrT5de2Y Q1IQ49BHkEg hGgWUKweXzI GKuQDM9OlAQ Rwtay9w8axo VMVzQ8rW53Q ilrpqagxBf4 ZSFCW8cDIU8 XKl9WKaYVRw sLWhxB6QNrw o4UVXgAzYb0 AyJIq_BNPME 86RH1KAwM2A 0jzYpSrpVqU gZXv9XswYM8 u2pu0m9iTo4 j-47cwN0w_c xLxCXburq2U x2-MCPa_3rU tvKzyYy6qvY ZS9SXH3DfT8 JcP-yeailEM zL0ipXUD-uU KOi9hHjmYq4 tOZTZP_qzC0 aUNq34kNR0M qW7Nq2UBlbk dpBTugwEdaQ CccXBzfhDVA 6soXf476aV0 -zIhorOBLZM sthFTs2gWeg aqIYxDk4vh8 XTMeDBVknQY wsQJVAzezrc 9-cPWheNyaA FWrh6KWGFo0 TVaP9kEYVZ8 S1waPNwf_ns XW9T7s1U_XU -MQNNzaEt2s ZJJGXUlqb_k MLkaLveElpM YcbZKza_zUg Cho039BrHpg Lb13v2-bBJQ -lb8E3qQVKY 57yGBikRJec 6DU0mdThjg4 xuQZJHfWf9U HsYC-hVEpQM SqOnkiQRCUU 9Jt-bxV1gW0 _hyXwvNIKZM oAb2_-uv41Y HqAbjHKO5jM IdIEDlLAaJs 6vg44SEEMmA 6ovOboVwB7g 5fLlgS6aO9k VZpMlm4xYG4 W8_POt2KlfQ PoIdfRnQZ4A re5veV2F7eY LORyEX_5czg NpvlS6uBduQ WPYqRaOm1ak sT8wMBeVffk 4rT5fYMfEUc sR528E5_8yI RkFcHUvyJ-k -Y2wqkD2KVM 6esR4uGEFCc gRzjSsXw9PU DUbplahEBfQ 8c-Na7OHYnI dVCki9kwF_4 kyY50rBet2U 6ibWJnY6Ur8 k-oVuQpjG3s sd_I5ez3jwg ocb7pXndlug wwzyveUAS80 ar0xLps7WSY YK-ys6sY_q0 AysV4mGh4fc 2wwC9c3iYK4 zk6ac5Amzr0 CgX4uJSj00Y bXYobuaTjNs hnum8SxuVCQ QLNUIU7AzTg iXSKAf6h5vE GR0R9KfU4tY xPZ6eaL3S2E O3P0SMpqK-8 00rpUGdvcY0 AzIQg6Ly_Rw AIcUKqhFp4g S69qPup6hyk eVUsVW87kSk ZUKCW08_8Og YMz-skgeUdw FCRdTWGdngU 8l4qdf_1nGM gAM2Q7Sqlbk KdNSlyrbcDY QHH9EYZHoVU _d5jXDvrOu4 j8nZBlPfR7Y YVz211iI26o eSm68IEDDT0 QJpRSf4q-hI t2QvuZpxmeo dgoDvnebHRw qoWjU8OAUaU aRM2YcGpmxg 0kqn9qQZdOs bTUrWYv2vtU z9lBvg5clr0 oMLjP2ajXvs MdwuW8n3JYA wIrUoTYd9hA 7b9sNVUPFyM YfJc2bORFHs 6U4-KZSoe6g 6ZMZYrdXtP0 u-ApxFOpl28 UIfdjPDPM-I QXtkzFiGsxw 6c5Qlf1Fr28 764r3kF5tZg 2bkNfQBLCJw zmicfGmQZ9s dnnrhhZjTh8 GVAVkeMQyKY 6EFjbeXuNCg YlT7x_8VuMA r4IBPd7-LlQ jtoYZoKsAnY _r8MRCkHY54 ohz8_IafGwE 3QCSrQEGvZA ndfLW-xm9Xk gkGFvtW0CSE n1lbpj6868o HWrjBBXjjhM c1EyN9xTK94 ECDGpYuMRDA GmslKQBmdzg 5LN23qErZDM hIhe-VqMBVI 1_-RGLVHmOA AoWdk9CB-mU WDAo_p8At-o IH_dSlEAl0A psru6_9PPcw BkW-4CWw3XQ TEjRTNg51Io 4dW0aROYEk4 9pDIRuJt-gU upyAJ-kEgNY tFAX4TdV6ak OTq3-zG1lCE P-E8ZrQ06go g-GJDgd7D8k Ktn-Hd2BTzs bwzuMk8SRzY qYW3MOezCc4 3Im7ZYrXCOY t7S_kRqYshw qilGSZ9UWTc OYrxSQ_Y2Iw 3o2ACEr9NmQ p0qVhhIfWr4 3Ag3aRRoPzk a4EqbYUl7Rg dsCzZE_y0so e2RQwVyRSGU MbrO-ZbuhIs aXbf3X56rGM c_YHTdu1jFc XxsSp2qJIZg ciWBzhmOC_o 0ZQln6DsWgE _nqoPInNcvo HMziYymVYMs QvVoH-X-Kls ERmo8TmDYCI z7NxEj4A1Cg QAJkvEJ2QjE N7hG6mx0csE LIXJaTQTDAg _7z8a8kTj1c G5GJHYXrjhY Mn6WC1pxVNk klCemtBU1cg GH-r4HXHcCk KNAgFhh1ji4 -zya4vJ-kQE n4BJBz8GpzI x1ij_TEK_MM nVrzbfxxcZ8 Y9GAufJIe0I sBjNpZ5t9S4 25Y5O97c1Aw 1Gk_oU1m5CY xCtMlhZskDE WZppJUaR7_0 BcufzXXaEoI fvptWDiYrIk sp8Ufx3Ej24 kLskn7jHXrg d6ISJ_dN-80 flvyCwagnF0 4vcNnS9k884 5t_tgiWatvs 8ce557hlgEM XyGbtYaVcaA e2g4Wr81rz8 ZbaW0HZ_Qy8 b4teoyYZsYk QAFttSucKH4 jaCofC2Bv-c YDV8PMVi-fA EuSGUhhmYfk PYLokGkYl4E yGbUcqCXe14 JJ5290-0lw0 esQgzR6gTjw BYWVUvqDFh0 p-mlLMZXqg4 NFV2sZJrtDQ s_hFTR6qyEo 4u-4PyidIeQ zirtzDl2RH0 -ZODi5SGAyE nzyDm-J065g HzpxTmlWOC4 12Iosf6btzM MyKNmvJYO7o 5yUd7SXxXzs 28BXqQWqYJU xJp2HXBJv_4 hf7_JChVnAQ L8eQ78agzQg FeoFv3dOeqo urby-QPF1hE NrriZYH49yE lKMl0NFXM4s abh8wBYFeuE yDoaKW48_hk Q6kNpNi_iJI 8lD16zBpcog cH80fIW-mrc vn1ZcpwPlAA rG1qXTVH1t4 AMuVqFvM2Rs oW7IadnQblg C7G9Q9JcN34 4sO94xn-C6o uCtMTbKX6_I qqhQ9jN3gj4 qTUcFhCim_A prnQLmVg5V8 wEE-EVC0P8M PfnAhUBroF8 ssukL9a99JA b4kKWa_hjCk 5smoo7ipoc0 f890SC1schE HI_mwhUvqHc tlE5yK4l34o sjeIpuOhuPM t8dJFMMvNQQ RGvWYYCWFq8 i_sT5Jl3qM4 68XJpm3q2b4 qbfjO2d2S4Q T9tQanQSgQM tJIzs4CS-TE UGn03bNlFuo M3jyyQMbJNY Zp4qkAJFHrQ KUGH4XQ94tc pwt49IF0uG0 EMBCBSoE1rU ZOtIoBAxDUw FX3YO40UDHc sw-oQlitqCY VjlUWwstdTU js-kku6X7yU ZSoIlS4LQiI dvodASNU58U YkGv4M2y3zg CXgaZeUY6fM Ugd_VB9iVFE MV-KVBADWMg LldAqBKjyJ0 0Z-o1RVdnHE bP9A87VOaYE qvwHppI95K0 b0fZtW9Niic 7-YQ7rO_JSg ELzQ4OtDjrs kaZ87rTNkDA NI7As3rOogo HZs_qERvDko naTncfYgYtU T2-1TBORh9k vaIRRbuiarE yZ1OgEqw2oc Z5lyNKWvZfc fVltuJq1SQ8 qBrEcM3NbH0 RS9Z138meRo j84y65YfUS4 X7ut7L-X1NQ yNDm5IA6nQQ u3xawRs6Rik HtagS7pfoJo 2Fy8vK7IGIs kmU4DlO3wzc TGWJfpAwlrI NWuqkpD_A6E isOtwdqD3y8 xTyEZA6ILOk JSetLbD948c s-kucHjKbG4 Kz234-_khjs BCruokZzMXc RAKPzL6uNOg 9XvQJ2Jbg8A RHULBucGlA4 YO2-9VWwiUI wwLnrdD4l3U rQOBwQbssgo OsH_JszzicE oqDlKpTihNo qfym2Neaz4c lllLnc58CoI gNCAj7eS07I Wt5LAZa7LAU HO4TjpZw5zc 6B6yElrEeKM LTgOLHxQ9mM M4nag_xN0Rw 41MHIJIg6u0 mjt0iNTJrWE 8k_gzuVqZmk YOLGp-P5QFc HdU-6bKqhzk 9NCpU9laV9I W1fkINKMwHA YHKkh9b1Oi0 9KhqPTmsCJU -qq785V7JOU ssM67LXOwQw 4zJ3a0K2DP0 89hYiDNscBE o3f521sUTaE 2tmMMXTmM9o SzQ4cDkdsqg ZTUXWwbqu-I OD69M9N_ihQ A7kyMbwD9o4 DcH_p1vfD1g yuU67Mv4bFA BbsJiMmpObc Q4-XxWqSgH8 yoGdST0RFuc 70E-IYUdbZk rGvIBT10JDU xmwm0RH8i-4 PhkCGApLP30 xftZzmdlCKk U-XEvzDp70Y hPF9nzzuMfo UGYt7xZWoPw 1PKDDa6p-xE xKL_T4z0QX4 _f0TNK7fb1w xsyNWPpAb14 ajgeUrUcqfE CWAAUSNLZXQ vWZapP8b11s Qk_tn8K0OwA DHkGu6e0R4I JsUh_lfcyKk HtpiEXXf7dI kvHcswMy05A l6SNAV2S5es UaRyn-tb0U4 2wy3acVALNI jAZbK72VLFA KtGm2OkQa3w zr5fCCcWRJ4 z0s6zZJdsZo HzF_TbmDH5s 1ZT_oKZGgew EzW2MKQ5q4s rLx1ABxely0 EyXDqVQ7MBc Ad7rUGIPVqQ Qxn6aafaNP8 WyNGkhmkuus 2eMqB3CFMkI AVKK_tDNQMc b2zQmmYEDY4 3RLPHNi_2-A sHTeguzrPto q9QJ_S62yVo tfvoOEa1OOI RBvtPZ6zyHI A3oL7v7PLac Sgwfvu6k0xs T8oTlWwAPFI -zLOrCQ0BpQ mw7xjHBJOvs WUfY9jgSrLI GhSSEuAEcm0 ZAerssgC4pc Qpbf9NUuuUk UlIBiZxArGY D9FBXb4G4GI 9iSVgAZ6bSM 9I0E9w8Nqfg vzt7Yb_-yiY zAeofWDUArU Fxx7g5nz4WQ kSk0pCs4pGQ Qe_3aoChgwI viCosY2u6YU mqnB2ef3S6M umjmV3SwDjw AIw6mK0Ob60 o1mDknOtAv4 Ji28PrD7P-M SnMSSAqPSaw oiikIyodOAk Q1MHXYx2820 u83fkqXPIGE gJvgjH9Tvpo xaCe8T1fXSM KerwQ_DokIw c_a5Y18mdLo HZkrxGuKHkU 0IxeTLiovq8 tPnacrrdjIk YzW2OjTJc0o 0iz6-4QxGnc ugw3DUIVKow zD0YTr7ZF58 JQc_dMcByUk 9pT5FVBFunA j1dkwnqffaM 1n4wtaSq7AY a9eT3NaWLPw wyKfuDzbbOI bTdvsBKjlbE 8W3_WigxsXs csfyEVjimu4 BHFoI47tc9A lIzqZwDHis4 guq6F4Jm5Rs o-rVEtR9rfQ K-zYWpnMyXI D1kIRqy-sbA WRx0b993Lj4 T1Z39yM9AVk ChIS70dX0eU mPoyezWAghE O6IMaR_G_sU IzOtTXOVc9A xwsTm8Xo7kE ix08f9qDkk8 RATBzjmcbh8 2tQUU1c6MIw ragJxrFknuQ uc7tYT1-Y78 uC1Lmk5qK2Q B4Us9Mq7GIc XTfUTOcdkqY b3EWsHg08x4 N0gaRYJH5GE qKerIOG7jdI Y0FAYOIt-VQ qmBAF_JTwDs ntALVSmIUrg t9iFa_dTcN0 HYUfT__t3jU eN7zGm5KKrI wqvnT7u0mSg 6n6RVIIC8SE CzaHTATaPAc MGiNXAG0gjw IIoBuBiTfS4 ToZx1LjLmrM HadRbtEI7KU 5k2vzUZYdfw s9jX0S7mvB8 5wThW2AGZw0 -9xP6hMwNy4 pEjOIBe21a8 D0NZyQWyZfI x0KnLMaLLcI lGIEwdZTNRQ yhf9YADtuyA JcvSNsyvwNc VtkM2SPaSJ8 4_4HFkbbbC4 2ZDDIJV5ypc irnb55gfwNc ZJhHYsmJra0 EmTXI8HV9nE 83twDFjlCjM g05Ja_89tOg GL2B4xLAjE4 qjKhJnrMamA wek_o4V_T00 s0EAZmF0k6g NRd2gti9rHE Eb5uCh-8rZ4 4W5KhfJHF_4 PGqB6JIUzBo z8oaq50tGRI fPUJS7w4Dag P5GNspEWA68 Zx8vIjEKvT8 -zPjGsII_fw fQBlpIivzY8 f3_39H9_3Qw OIBtFHZy0xk 5N0ifKLehLM SnpNDM1XeZY lYb1h0iDWSE H98MLmW5tYw qslhUrtrjXQ y69iLU9cSyo l2IJxv1lbAc qPfLNjGXa2M NBG53Xzikp8 5TIiQZo6snc Uo18enRpmG4 xfTtfDBUrvA 6ZZHQMtbhxw IUodLjwwSBU dMxAYJDzSls mqzu3AI7Dow ZWrv3l_2tGQ PpD6HmPdadI la1tZNwaBog vlqQwxeYtr8 L5xFe4LFtb4 eG9QMl_w1pk evzxQrEfIG8 nCO2V7YS1nQ xMy-NiI7q-M RJAU3K60wIk RF9vhf_r81w jXA-4rN9-ds F85KoecJotw C02zRnebZu0 N_vildqkupI 6w-07V2q_DE 8LGY68ppqVk 06u-a5jmi6o _mSvR3aQeWU Nlyai-wfZLw FAY2LYoYCAU HN-YqWQ3PEE Wvyi2PEVFcQ CIAyyugbq54 dp4qnnVSk8Y qe_BzGXRDzo vp94AFms0V0 NdYmIIbYoH0 mvLpbHKV1_8 gwnFTbQVOwM zyVKJXfRm_g maEC9NS6CkA kR3VW07XfUo CiT-XIWEC8c xCMsK2duu2s iaofBseh0J8 Wuntz3KDIAk LWxSBbBX4fs kORHCVmSucM gVgsadEybgQ v1M3w_o7cOc p8Ejl4eeFXM 1EbSU5Zyx9Y vTbcPIKxmP0 l4AmSVb6Hew 26MkbK_C-lM hVnFKJJYLPA bQutB3mYc84 Inj01auwE9c mbTZ4ywa1Dc g1JAILio6-s atGNvojXOvM cxWRWbdsTjc _eCWpUV7cOI epHCMiCtt3M OmQGN9X57Ts Iqc8WWvcTN4 _undGtyUxeg wVWk6IfRuEE V9K9m155U2E Pe7G8iCN_nM Z0W6ufDtdS8 Tt8DoNerIPY 1LxDWSYgiUc JuQmiyLzHdw gXJH5jhO9to R1G5HwXEw9M JqyCEV_iACo PhXFRRVBKus xE9YSmsKm8I b1eMAFWXZ4Q AKONPxrqFxs bZq6Gv7rP0w zFo_QE8j1Hs bw4xDTQYIfE Auq9e3lBq6I vcsl8fSgqls UnXDK24wbSg VJOO-fcRLzk qUu8VHynw40 l83CcqhP-kY EKd7z5CY4BU IHR5ljAFCGE 36QmLon8dn8 iF_053JQnQE CDn1rXzkBEM _kItBZZK1p0 yjU5akwca64 nNXIh6RrvNw 4K8M2EVnoKc E8LYvflSTAE DPQ47h-k-nw RqCVbiHCYAA M-h1ERyxbQ0 tMIO48oFmHc n1BXpNTsoB8 Uyo69utc9bM F4T2_xFNAqs ITfoGnAkw4I 2Vam2a4r9vo xIbilLMZLHw r2NHTRgH3G0 -ftyIj2_b8Y k59rG0r-sqI EeEhcPAOGUo DiIgAES9zt0 waE1U01kwxY NnEKQD1fS20 diFDBNNmnnU uPwo-nHWQaM c8qfaEdYBJ0 xqD1y_cJAaM 1uLzZVSIo1U nnESedN4vSI mYZGSfnk144 PYJFzOzpwHo 3KoW7h3Auf4 8LM8A67uo_M KcINC5YSNbE kDnCoiYKmtw XVOsO0E1E34 kQ6BSOZ0VGQ OOMIZUsKlmg G5qjWjkpUaI Vjiy9rCG-yU vXvHja7vtoU oKcbalkmH_Y gsJlkWp0p90 iHWOj17ISfk Z-5JqDEHfe8 DiAtgmRa6fc MRs1EBoZQ7c ovV34LOq9Q8 TRAlGwGvlXs qM8jk56Vj9Y 9yPj41sNdn8 PR9wl4Qve5E JDN_C4L6Bjg F3H_X9-yFZA 1BZoajBwbac g3hYbDHwBJY 48jtU38CZS4 nYhuIXk_CPk 2tKQW10sje4 UWyzrr2ch5s DnFk_dGSL5M EDyDOkeEge0 4jv8ZCoQyZE LABD2un-vIs X11uEGRnCDs VkGD-6ebYJ8 99h9RG7Rfp4 u5AzB4EGGpc vvd0meL8260 DF2dkoIOm0o a-VqYtkvmzw kzrHg5GOvXE bC3oNsbOyWY yJ1hoVGPxCY 4865Vc0ptnk uOnIqWuSCIk GdrDuVImE2c p2Md_248enw bg9SuuzPdVE qYXoNC_LbcI dQSK2gmtNMI nOu9n4ulmRk IT-iX7o_ozA AR4d7r6--I4 M0N1Q7Eav4M iD9tENbIPHg 7JZQiC2eNdU xs8k31_ucJ8 rylEfnxeUZo bk9oFLFDsfE 1Ej-iuKgmvQ Q6-vRgNPGAw PrpeARyTcx8 TE95amqnEx8 oqBWx58n1Yk Dv52JE3zqzc N6HCOGj1lNI gmk1iStpovo fI-F18nRHBQ R0U9F4HexA4 Rt7_IUmuwHw RAQD0bY2_OM SCXs7OphbUU rAu-0Ko7uBQ DurMO8Ayhn4 7uqoIuB8zx4 hTv7HXqqqXA pnTtzyItCQA jUM7RRZWW78 s-D79Y-gBrs jaiWxuKmaa0 UfziV-fIbyM cOyt0_sRRvU 6X4Sukx3GsY CmcZU82YaEw _kV0xtzcwg8 3yqPdLURXjI jDmw_MLAQSU _tpfO7RS7-U MKboBvadcD8 oLQsS64Mgjg E3B_XdL7Z6Y dXe45jbpElA nIsuwv3VfxE 7OmBXWA0Rfc TAOUtgdcjik ZhjyZXJVm4w FuJ2soRp1VI 3hqspRARlc4 Wd16x0wExDE GlO90j-f2vo bXpq-sf0Drk fvxvrapx3UI wkH0WdBYT4E huvEARIzQNc kxu97nWDapM x-Vvl8gkZAw sceJ1R4JzMU LMU895wYEDI IWQriJ_Nebs CzBxp4EtOXw 1o56ZKPhPjA ZThOaBpFIGg BcmM6kMxyBE 1mxednlcHSs LtKCcSEgPJQ 9QNXD_Col7k 5XiEDoHueUo KoEPdETXy4k xD1H-FIqeMA ApU6H2gqkMg UqKkfcG36V4 -nh3g6F63qM qNk-kc0XH4A P53a6QG4jlY KSc0srYx9-4 NpwkIYB3ZEY xWShDNB5XZU uI-q42kRXi8 7wYMAJSnpVo AxeeO1qdrgw mTkgIN2TteI 3TWxK4Lb6ws 2zZUujqZfQg hnHERe72nQM 8j-53yv1nD4 wxlvZpMSxM8 4_9ZfH_x1hE kiv4EChGJVs gZ6x-hUpoPo PMar5oQ5Ha8 9OGKM_BI9zY 8KaBhZM-PTg kNepR8njvT8 T4l9RZRce58 ErQGXlQV6vg uTW2Hrn49Yk sIMxtj6czX8 i16c8n45lR4 wdaFZ0seZBM sEgsFoQhy3Q GolLDhBuy74 6mGJ0lFK8c8 pCnPsUo_p9w MOB7nv-1G3c RntgG4p1m8E rqT82hS-rMw s3znWXpeLPA 1IlqRjk27JI gUpkU0-pS3U 303wyvo5Uow T4V4NqEU668 IE0S6NNXiYM pnvy9q4UpZw Spl7doGUZTI FNvk5X4D7g0 zkBkTx-GL8s ZTAVOF3D4vY i9_lCyG67Rc dsRTzhbsAmQ aCqhUO76MTU rhc_Ds85lG0 v3MPODJTzFM NCgUx9-REsg BeJMZm6DDtk QXa6FXKJQpw rcJ5q5BdJi4 NTPT4BHAmRI 6xSLNonQJSc zg4tFOmYKpA qw6k-69hm90 _yHgZUYOYdY XHdmamu0zPk SDesztIj8Kc NDw4Lax2j0k OPwRf_sD5fo VWwkLEUn-a0 kY4iDLi0pV8 pqLAni94IEI lhsWHmJiaXE TqB34Q7iy-A MsxXJOiXEW4 t3ttyoPvivk Xqti-Sxsxk4 BrXYAZzLZTg lhZFyMTaIt8 KJI8TYE7DtE ae-cYVuxBKI SyiA_t-8c7Y mTysQF15PHE 2C6FHPmqETM 39M16Z2aYYk X09M4YjeE78 E1BBS1rIgIw m0uAIT2O5P0 Lpk6lNEGrg0 MSVT6NNqldY 5Rl0mFRWfzc fKoYXxN6x98 BW5hIGrXcEs _WF9UwKuitI M-VdYzNgtng X7Vt8oHsr0g p12OcbmjVgU WTW9la6_mEY gqKobRWnvZQ PWvWrHzlfAk 4C-aVLgAw8g WpULGtEqNBI f-9ErKOlWyE n8JOgoI_2as f0-GryhUnSQ QEp-lhl5ImQ Hjhg4s4nD5s NEc_n0W4ans c2gZ4aOYOw4 X_akiwYsyYM 6-2doIEpFVE K1C2odNXI4E aXg3HXlsdg0 -l-VCl5kQuY qo0uCiDpp0k io2eeYm9sQs sGbVR3TgQUs KAPjaNfNw-I lF_KpWfFyR8 TgXkBPFZZFY ytFFiCYItjI _flZU87W_Rc FYlySSs_-JI 4iMFUxeKJd8 zlL7BbZoSAY czzH5M2bUYc ti2qUYIgpjM rrbEQDRYpy8 ITszRkvBcUg pIWh28WPyxQ mT1QTyuTr-M KMFxz39Qhjk h7CCnLwD2MY OMhzAcofd_8 nyExbZwBM2c eCCJzVqLBvU znxRGH92XDg E3wiJJOrgho AjXl70vbOwk RTCMHLpNi4k 8KjAsaJdi2w k7VW1xNAn5A 99PeJShwZis J0IXJNE0FXI OzP8k0R-USw EnGXNEEHPG8 YCIYe01lg1E 06B3m6L5fFw YlpN0wDqUx4 DTVnQBRfCAw rQP1duR2tf4 Q0bjuz5YBLM J8_CIsow_Y8 qFsoL6ed_2E LWEklaaHGsE HhtRNV2v2rU yvv9DRyxTFo Fyvzidxs_SY Jhxb2wWFK4M B3fgBOG1fWs ef77ViM-f14 qZBVXYYcCjQ gZY_zy2hAHA ubgR8CKyzYw UqPRk4oFz_U _OMy1p_m3_Q 1H2xudG3BPI WQtoXhnhFwM sj93sTcEJYA uPAXLQIxBGY X5wAXtQ0oDY MLxnvq1E-ag Q4DEaXN6Dp8 XfBImxhVWTw rxX-JLi1FB0 qJKahA8B9Ro 3uHIpj5JpvQ c-zaHGYURv0 Mp5IvPj4ay0 sk3soFv1wHM 5xWrsFC7pG8 eeR4VQyoLdc -nkqrSaJf1g UUB75dkgT_c idxHUQY4aDA v-0Z_0SUtJw 5Ui9rRepv0Q diteeSODzTQ FYDrPt06XNI HUwVxqQz25Y t9BqiLLt9SI xCJZij74-J0 G4tfduPN3rM 3c6F_0KpK3k pYBS9Sp0xU8 neFpFiuvYsQ I2eVbp_Jfc0 sAgSUFT4cVk 4pz2kXoDo_s PJ1i0HuBXPg iLYeR6v-fVE Fu6QrGkRdJo uB2eggtlTfE LAd6SaXDdZ4 O4qhT8oRvss 7ZhnS45Zexo SlVK7ogwyUI L9tK9HYspFM 0C6nvNlVx1A H3Epwo8vFpk 1UqJgV10-wE BydT8m3NdRY ZuqwMQTc8cE tGYc5woadps Znook3DEEaI bcY4Lhb3yhI YV2WQTL_45A MFZGTRWVOjU sL6QJSdqlt0 XPRFb9J1CvA b_uXZZRpO-E U6Lt17rALrM Ovloa5lv7io p7aigA4gPiw xl01-vBoHsE TZAvqLk4o-g o69EA3eSDf0 tAx_zjVXTOs NKCskfhsru0 zk0AexuAhlw V2weMKLFJLo 0WjELXl_6zA QzymqXvURkw mOpvoWxjz90 X9N-BROIbeY CymY_Rl1fEs TDecVpSLT38 ndrr3vif10w TQrzX_5FO1k ZS0rEz8wR4g xo2meR8UHJ4 -g7jRpukoVg K3ucS56rrpA QJfhiv1Te6o yoWe1gHwSrs 2GMpuN48u5c vVpzpHtm5d8 oC1MpovG4N4 UYovQZUBzpA SKMOhrpxUSo JGV_h36uZ5E czJ6KqTkk9o vz7jp6GiwTA eORAWRKW53s aAnJ9iO8DAE NbX7nS8SG7E E8eiFdoI5W0 _6CT5p7fh9g RTObjnUfgNs NI4En1gLsXs WBxpXxZqKms vG833_jH7eY qUDMInHr_wI D-UBJzXzoho 04zHzVrubHk 5pM-n30jlRk kuwMlIheB7M PPEX4kaB1-M WIaK0Z7k-Gs gjiyh8AXkjc ofxfYinuKKc yek9a0zFGHE VevqDJM8KH0 2RnYLP4Hes4 dsONBwWtAts dDDbmin38gg hQL6_NbLwtk hajGYP3CLKo VgQOZkXg9t4 gcu30p7VEKI GwFaz1nukyE DMeR-bkC13g J6Cg05MhWbw 1b_sbGJGx0o _OiXT87RhvA CB9tbR2M5fg mLsptorbPUg O47od13_x1k r4mQmoD72tc nimkNFEKUkY x0XE7KFZook TbFYMfIpRss i9KJXFbkMH0 BztqFxMXpTQ -AlTccRsRsk M_MJrybDRKA 5iZUg7tGlxM pnjWGD-WW8k 97ZiBty1eTM R65UmAfIZpw eZjR4aso7VY e_hkxbNpQMw veN5fuM-AwI QoJ5JJ3keUw GdM1NCrxZvI ZjDB3Pfl3iA E-TthagAhsk 9KstSfW1IAA 8P3Q_di3Lo8 BjMrxHxraio _9b7JgWu4PQ bTE69etu_fg 3si4Cv66RSM Mq462kfFKI8 a-IU2mBY1_4 XgTtI5D-INw CZK9pY1dA74 VHVxpLDEAo8 eW4wR7-iOMg VpLXPIihj60 r3TEbOR9SyQ 3pDOsNri1Ko Qwx74IfTNwo KaxcWDmXbBs wPJvAzfaqlk r_U2p-bdeww FOdizWKG4qk oXDyQju8my4 gtb_4pNuYIA x7CGZ5vxlLs 2TI2MT0eoSo Vz7PIPZgT0A 0p6UQkoNDxc cLm4oCbovsE DmokH6o-nKU X_SthyaIImM XyBWsO1gVTk PIMIz2z-1mk 38ok415yQOc 2zi4N3_c4sM JgYPxPGfaRE YBUzc9wJMMI GBh5nZ3SNz0 hKBHte0cc_0 vJzOCmyQY24 SfaY0KH76nU SeBHPzqiUlg CWPoQO7bMRU sjVgX0A8Jtc 2eXbS-qG2GA 57TliyF8MFI fLxSRdnGucA VIJIbL0ujtk KeTBqolcrO8 E1N0IvW6HyI ilR3_PaGoJA UouRrAl48-8 YafZPxB5DRs 3WNqgV1M5Zs XawDF5UDgXY QqY-Ikm0kc4 4U8n5Kjd0LY hoHyqSZGPt0 OMMs6m-HIxM AZLoDR3AjX8 3_giBWrUYKc tLUrEgC-Dd4 HtBebT-rKeM exMmixM3b3Q n5_WG3WZqVk JwfDV_Y54fA lqT20npvohw Vje8Fp3yQFM fvBB1KK_VY0 Go6nwid-CaQ 6BsWrEwtDP8 DF-ifsJZQEM qnNr8etyi08 0tN0uV9DebQ r74QbwaIWFc dlYo5IHqD80 Pu3BkumJXpk n7mEYDnXaMg fBtPMUJJEg8 FtM7tdP6UDE 0-EcLwovpbU lIk-3o2CkM8 6ZNNfq5l5Ds xPnV2392Tck kBEhz8vw2AM uwcJaUaVfR0 az-Q_fYNZrU afW8dxL3qZM IdSgAIq22b4 Bi3QsK4sVVA t0qYTDYyNvs ND-nldJc8kU RSm6z78KnxQ 6QOqWyBhTVo OAhF3wWBxbM VyLZlTLEY4U VK-GL8zzH9I ASP2K-sFud0 NC756fAs0Hk l0Io_aXWgkQ hoSJVPaj0ds GU_FUlOapf8 _KXS58EqEHY nET7V9DsWgo HU3C0Vv0FeA S48AVqtonXw y9DslHbBubA MKbX6ilLdRQ Yc1M82PB8C4 yOJ1gWVYB88 iqRZb8tveM0 6c4QghxZ3IU 9GFz8aB2BVE fgxnajrZN9s yefj12M8xkY kCmyVaHZ4Is 3Krkeuic8GY QpGGSlwgOPs 1_RHhfIc5iM Q5HNKhhBjcw Tkeoi_cp0BQ -o2z2G3y50M pPOcpk9-318 CLp_t1uhYOs 505KGEuKbNg -yEB9DCX-Ek SIQb3d-piF0 RNXEflQuWsU fU9nP5V2vw4 Gt_pfAghaHA x2vfxsdVhaU Nbl6Y076TeQ wjHd0VWfuRU q1Pz7ppcuJc LmRLxta5-4U J7PnM3ji7uA 8ZDX262xJvo O4aMxMg0Vn0 2pg_Mr4lIoY cLTBa54o70U LldI0SRzJX0 kghbSGoV1kE qRAE0UOMyB8 dZgbeIE9Xbo H3ZYf8ECNWU IIn0MEHnMC8 -IZv4Jfl6ZQ OYwDIrdkJ3Y iR-4e37VUPo kuXEfuC92Ag 0VYvdsrV6Lw cIiMDK4UMQM H60kzF257OI yGPikMkqr3M 5abHHDWcRAQ KA-LkJdOzHo q06t8RTLqMQ ig80r0pbEv4 8JfgfdHNkvg uvUH_niF-Zo esrBtSFDlEU Xy-cq_YpYPg IB2eLqqkLaI JC2eKssXavo iRIxb6_ELNg _9ZdW3KXuMs ACCoL8xk0Jg 8n2vsSHAs0w uONmjd_RGk4 _VA5a5QSYYA GXZ-NAPnfsw 3F_Jlo1A4oo nKB-Ij0vyB4 dRTKQQtFoRU WH9nsFQH6KU Jf3-qH7OhmM hiq_FE5dmWI 3yp-s7ia9iQ lsxZwAnu8LQ Yp6X2N7tcKQ qFcIW6TtVEI DnKAU918UaE JvtwIPa3c9A koWFIhw94xo fYvvenxELZA Q1yT_LIMb30 42asJ9x0-po -BUI1BdZz94 GrWqq9ukRY8 9ZhgVCU6ehk 6RAn28uDZHc VbrKHPGdDT0 c-veUs6bPHY 9gQIJ4id6pg Kv_9PD-_akA 1TCzcINB8HI vJ3TMzKciS8 fPJQ4T2TQ0E gY7e586vhzo jEXEQRL2oQw IiIwhalEAwU 9NqWMjMX548 ilfv_YzaP0U mWdqcBWVurw tdBNwAJMgW4 4cWDWIgBXrw ZLFDR8pvkf4 SM-1QC6F1-k 4uVgjb0gO9E pW3peNmE19E 5w8kGvQ2j5Y lcns0VMck7s iVpm6-9dPYs 29KrhW9Ft4E e50yvXvkaeg qEMbpl4V-eA KS_Doe-4fkM Urf145tA2SM E54uRkIuRDE qmGHg5uJ7xU 043UFkOXvMo OrjUfQFz_os 59R3QIB6NqU gBjOW9luDWw 0qeD9nc9nwo _OipkhcxS10 7_OiqaOaeNc oLVqE13mMps QF08ozhDX-0 gljJhOFXrUU Sh8lx4EXs4c amrMaNtgMl0 Smp3RNfgjqo qBCb0lSh5u0 ulLABtzLz-I irjKC9_1l3o frqWSqg35iM cX0S8SN8Cmk W0_4w6GsngI Kocw_F48CGw IYB9NFCd5s4 rChS9MeLW-w FfIAWygymsc IimC6oXVZpI gYhC67R4g64 MdTaJDKTgUc shogibE67W8 cg-wxqxxWs4 Wzt_d8eA_m8 AqTaIbDTNnE psDnYKqgVT8 UQzUOKKGfLs BOaImgyr7mU HRbf5iuWZt8 wYwlDchIasw n16wxs5pgvk c_7V6VgIvTY AVMAbj_Pbnk gJOWAISZDhs oxA2tQ6kfdE -AXjzZskE9U d7RrYVI3Xw0 Aw1mnorjq-o zWY-GWMn4Ig 5EFH9AmTg6c FmGg8C6mI78 Hh-QeqsDXKI mfg2O0A6L4g nRq905BT8HM M-HCaHXzQRY Qt5TuFHZh5E FwfrVozwn7A dl1X9j-9Lbg cliSp3FNprY V9Ul46Dj3Hg PqGuiXKC320 gZSxqyNDZvw Kp6aaQEK5y0 rV4DxcJOCLs hw8D5KSx5p4 qIleHfrMWWE CjyutBNjVns wSKGygJ2-oQ Y77zaw13B_8 L6FYDW1TC4g IqOqMdra3rk _pEz5emBI4A fy-PoYl4bQI GbW8sknTWZ8 nnJW5FWg9oc IvKzfpZ1GUw gnY0vVF0j60 kUAXs0LhD6I 7BnAQgS15HY 1QDmLu5a0nI w6v2DUJi-C0 fi6U1d5eW4g f7utYx1vcM0 AHyK8eTGHNs kaQPejxLNRw I_mYmJVMef0 bSE3gq6Sf6Y sRqeX6qMlak U9nydZd_emI dCxgKZ5QV5E G-FYkB9M72k DLVfYn9pvwo Fwi0bsJ5F8I 2MtY0yfM0nI tBw_BTLbjJI liK550asDSw hohZbtTAtRA VrFey4EPA8Y wF6xVdnFJho 1z2AjhGr9XI MEdmiHCUvYA BRWeoTfbbbg if5npkJHfik uCCrethRf3E 2sFAyhjR8_o LrTMwBugt-Y 938jCranAMo Z58VID4Qjf0 NvxttHABP1o skuMakhGnn4 ptiXfr5lJl8 Ur4Pg0Jyph0 DFEuw-bNldk 9ZvkGoQ1dSU U6PfGIrWIak FlyWwjIuCeE 0PraJ0mNgUs 3XPzF1azIkI 9aHj6prYd54 btWDXgrF-bo PtgGWFzIQq0 z8Z8Qx6-rPY bolHm17q3ik bHjHDiu2UR8 EF6ss3d4GyI 17oDZd93a-U UTAZimUwzCM jHessqORWLw U937JR-ir5I 41IWZRnmb68 hLrM7OaMTGg M7iC24MaxxI bqPbkGVa_wc 0g39c4d1fKQ ifS04il68Yw C68UZJevw2Q xs0lwxmTaZY tbjTxvs1nPo DOl-8LrZapk OKjpAsVT-8g TJIWOgCUdGE UvNE2bjUfC4 4xpGjslC5Vs R80X3_lPzoo 9IMNpGeSLT0 9QbJu_68yS4 Cb1Pbk3gQSM EWBVJF9sSPI 0zyVlsLgJ8U 4nrgeASou5Q yxnFEjVMK2U YmMAmPFhSqw 2QT4mFNVyzc xJzCM_nI2mM GV9TBb-8Kec iGgiGgeCwM8 zyRjUeY6YOc BS_wIUrlOPk B_UjiJy0t4c hX5s15LBHqo g92cHdRbgag Z519Bs2Kidc uJNHr8QQVJQ Rxn-KDDZ8RI QX7j8pCeD7Y h4SMndWj5To FYDwyb7CJxY vT6xS0mRapg khz9zIg_2sc su2njbUCQhg 4BRkb7LhkUU omiio7SJIOE NBh_b2SBDHs vQyK7Re2-Jc VbfjIg31aE0 Mwk75Fek3qs P4-obzmm_T0 t4qrfjEgdt4 uLYYXvBlUgQ spu_6dxLcok KdNQBaLVGfI oBtG0gj6MxA LwdlYGPcikE gJyibprvYQk c71vLQPwjdU NBTLvFg_ve8 wPvJ5OJ_P18 10Q3mew9R6A iXyfNoBlpjA -KvWckPXGIQ XI9RzX6Xvyw IHPjxbcPnAc ty5exYQi3wg 4zULAL9VioE Pu54Ka5I6lc EXS5TiBYESk CTlALiQtH5o 95XSvfimW_E MfmOj8Rqcog 5l1VEIQj0vA cCn4FUNWvQ4 d9N--iGGW3E 8IXVGrc3uOA a_4TTRfXkgk ZNzVgqv5MtQ Z09MpDVYWSw Ya2mPO0f-uk Onqbwlqk4G0 3chYfqAbqow AcNkJ4_bQ1g 0yc0knpkAxw WZkuKkPQjbQ AzGePmv0GD8 qp27BT2g0BE mdwLxOK7xLc XNG8wW6Ffw4 OIyluGsy-zA gkEsrZpCdOo 9nrVYO6LU6I aEpa21af2j4 TY513V0RMgw AHHH770W4Wk i-VeLFEMeko v2KtG9kFZOI jx6Rgn1ioAk 93Z1sPjzz8w 5lqvuMwYODI vhQ4S5ajwDQ OxzfUI1wSwU TfxoCicKvCc q7heVIEyvQ4 aAWIZFqE6L4 lMrKsKQWrl8 cyiC3x6-Kzk N7iMP1tPg7I feeIOZH7wr4 ifkYHEoe6_k 8WsHwXs_aq4 xvvx-0G7XHc ouppQFx3v-I HSfxl1KI6y8 e1DnltskkWk gcZPWkNY6x8 yzb726TP-OM 3i8eIzSeC8w trxN4ftuxKQ VcKVgWYkZa4 C4MVQby0InQ DDYj5ChFwbU tp7ss_bTP4Y 3a3zXJ7biqI D9khHJTztKk up7I_0JGTgQ WTw51Ynkn7A Ng7jUTiM21A jXb09CCPFO4 NUXt-stAcRw FaSlQP79M-M AKMLjQycW0U IIr2CCwrYbU mZwKEa09xTc DcaV2VQgea0 PWN2ntVDwoU u9A2CYMFfNo d7V9liYn-IA KcHfK9kvnvs vtjCVRm2DAM QTKNzDn8PzA 0x6LPfRGAL8 S8kPqAV_74M LBBni_-tMNs tVRPz6-Tkww xHO6nBc4YFU YFtHjV4c4uw ZOoJoTAXDPk x2WK_eWihdU PvMxbRCBalk rp4nf7xR9Uk BahUC3EFWXA jYID_csTvos ppWi_bhS2eQ KrDck8ocFu0 mdcXOlUMfq0 6mBFhNSqBk8 RwyLbX4uOS0 9BOOv6NNnP0 6G6Z60EPieA cwJFMjOz_l0 jKXg2eMaNXU NL7nLSSSWjw I_cEoK1mXms 9-qk52E7zj8 fCbf4DjlHuM TrZuYfti-pE fWqnZTTRkm4 JnXi3SVJXbM uGsWYV2bWAc rIr6rEndy0A OLvz5E61UNs KQM0klOXck8 2sJx9qbjetg _Mk_f75TS1A kgRlzeYc1nk V8K5d3pEUl8 kGViaTOfSow TEmvPX06cJo zV0rK6KXfwU l4L9Yi-lXbo MnMZeDmfgmU ETTsJggQl3I sNom4k5Pwb8 RWwGXIjxbnI EajaioMj-NA W6bT7Y-WfoY QsaG8rJGlyQ r1S-yBBZsDI jYrKqg2TqUo -nX_jQxWFN4 KqAIrFLuymo GG4VDjXtt7Q YbcfcgX2U3g ADmX9eMEV9U Ij79LQXZDEk 2_YvzQoCG68 ns-qtoxnAS8 UdhxL9r9hkg jn8SVc374U0 GQy5xztHVPQ EEjI0A9iMow lDRzG3mH-DQ dmL4e3jljy4 -TPRG6Yqzf4 39mBogAVAQc MWkN3akP3cU c9FCOAEPHHM YW3MIixEps4 wtMDZyMGKe0 TYmMagkfjfI yy6j2LUyh24 -xTty5scUwM JXEpQzze8Wo rMWZUV287WA 1c8XLJ9MEhk ZoAlJJb4aYM HVyg4MchBYM OToWh3nrWn8 ZFofgS_iQ0Q pgET7AHDk6Q obxWLczHe0c 4cAxmhotNbI dxqJ_k_uw5k zMgKNI5A9ps 5gkiHLA4ZuY nr8nHHg80CM CTwZmJronis SDRcCeWRVRA _2iIyoxqN54 MrboCh44XGI yEQtrdTpJFU -TWsZukTS4Q X-3TvjRKYPI 8V2XD5XS9Ys jJ4zpJxcw4o ar5YGIFyEUY Zx2SsdhKqbk uAgvdtpmXBk wowXQ9ZrN1w jQKx2XTcd_I 6rl0rXHWtbQ TBKiHfVkYCY qFL0bfzriR0 hFJlpOjXf9s xG7kLQh4Qn8 oeCRY2mdih8 darXVyyQUlc UmNPw-PeG8g jmpuAz59EbQ bHTWme5Ks9g t7OQIn7Yuvc p8xEvj1w23g NXXS-UOKbao y0jPHehx2EQ d4WJ0CGGXo4 YVHzS7B1NbI SAPvfHqWNFE w6CQUyyPvAw m2dMEucbXIA Vwd5W0M3ZC4 TvTdzkWNq28 BgDmIxfkPFE kYlPy24WJzU ZlGg7QIlGp8 uy3UaHILcig L25W_b8Or5Y eD4l8wpbrRI KIsAH4rSGNo CaAtavKP0-4 ZlEXOzC6vqE QCzH42efniU dxlbeqeGkQ8 7gFoHkkCaRE 1OQl89ewXvc 3gHqYddtmNU 2TTfvxYUBug 3B4fl7vqi5g TscPOjzk0hI WqO6vJTUOkM 7RD-I8AOf10 eAvVe92mi5k 0wvJETrNQG8 3B_rRmkbA9I lkmpm4TeOvE dRQtjVzj1bo GKt6dCi-LJo C-iQldPiH64 d1U3MyX0pmE GH4IhjtaAUQ 6v6C3lZ9Ic0 Naf_WiEb9Qs VnAR2qB24yQ TzatMfqIf3A ACkEugMxFvk b2B7w4Z3uOI BsxYfYCbVC0 Ci82yWg-9Q0 OaSuSnUJm3E fBqbMZ23n5o EsRoSsauhss Gr6eFXNq5Wc AwFtpeX3V-g M-FOqHC-G6Q 3osli3y94I0 bXy8AgE7jBo N7W2F1GcD-A dw7d707e-EI 3e7wbs_xfas jj1lH26Ky08 57ge-WVuEY0 IgzFPOMjiC8 7_ip79SGVLo o9guyPNZglE I42_ESLXfWI xFfUAjUMVY8 6Pkq_eBHXJ4 Fh-7WQr_daM QELMO-GsxVA rW0sXd9Vl_I 5rEwN8tIRWw t15VVQjK16Y _eZeYq2r3tM FK-mY_mZAzs cacjl7UwuVU P57Z6LOoh_k rhTGE6TQdSc n3SrAOdy-tE bWr67LK9-Uo Dk0roE34zLw h52b1cHKeJg 9IzZsjED07A 29NsPLHISNE rQVDhPVyU-o eq3-F_738gA RaDlQYFo7eU wALbxbEBLU0 sdc5bkFd2X4 pVjh7-4ux7g dtwfZd9KGpo 4xLmxgd-AYs 5e9vyyrP4Zs dQoqvTs4lvg MBjVMydv63A U2ZOhOknNc8 eb6k3SU1T2E qlrpmMPkRUM m1DIBnkwrp0 lj59KyjwK3c 5OMaEgJv-KE UCskICK1t1Q qowk8kRtc8M aAtrw4G6Ino tGzM5IFK964 kVH74eYVAus xDkGfxCKMKA uVZLcXAc5aY lohIAbjwCBE 9nhbb-EhMYg xdXKP_4pbhM tKOX13gKlf8 lIpUIAl6ltw pwr6OtkCTiw ndV1BsZ1q88 kPVaohv2-ZI TeL-XU97qyY ZPKEtczECDk Nr1FMis9MiQ 3Z2NklQONgc PSd562J8ZFU wYBcBpFZYF8 6zAcU68P0GM 6PJ5GsyOt7M vlynd7r6pLU PLOMwlZsSYM 2LuJ9QU-6X8 smNgpBRjuFs KYQjUOjBx0A syi46NOW2Fo Zur7hoLFsrw Iip4iU0wuAU E3bgtIIw9JM kpsUc7HBCoQ PNzvucMz1t0 JL9cenVTdOk FNdcZckBm2Y cz4XgiXhVOo _U4T80Jv9h4 K3xHM2hrV6U 3z0t0O6ZIPs U9bgSiDUqtg DqpPwu8MQ2E Cr313z3sY6k BU6P24jMDLw ytTswOdw54k Rdp3LSS_czA sWTHIrA5L1o HuYvFH-he5Y D_-VW2paVeA KlNmtsP9OHQ vQWF7zqozSI qJodFL7bxXg dHLDknvGAn0 WcRpuNfGtXw Xyd6zzq97LY nVkMrqrZKmc d6mZ4guAJK8 qntho2Y9bLk GxKkfTq41zc C4o-zcihGN4 BnZTj4nADDM C5-RnOKEZ-4 -2kcu-IpfoY wfbdNtfo7NA rx4BjUnPGss oGKr8bdx_5E _kz7e2_Gxoc ReAGCpATawk rRGfnT_LUBQ wuw6lFV1rRs 6y0Uh3qzK-g imnkiyOsu_g d76CwsWbV2E NOMdMmQWgjQ -hqNz9Ve-Hs e8i7WCXqJ94 ZxkxWhiTQnc PAxy4zrKs-Y VwYovLPAX0E _z7q7HzR9G4 AyNEyYnJ_ds NHoU-7e_tw0 lWSPwOvJSNs KwmiEuEoY6o w42uRnJwoIc DiCQwUtulqs dS260nXz5d8 TiupPnshH-o d51kNuh6K-U 7gdtw-l0GqQ 3cmp6g1fbhs eltUh-VMAKI TxhfeY6M8lQ DEJ_XECWRcs 1iJNC4ty1Q4 8NzL8n2GEC0 2mo6oM4vnWY 0huG2wHLCGA NYefwzfGRWA Pnpgz413Wpw MsMsnCypMuU _ZmzCV8muyU YPmYDxnmGnM 5iKhN22wsmI 1rHtYKAv7Vo avB-gC3PO98 58uMOyQcvms TFmga8EIQpo 8-TDW9Cm3TA d1VyT4mI-8g yr8bdlI4Moc PaMAFPMi6cI KwsyI7nWrG0 ArXhfCr-vb8 fw_IEdXIuYU FIKDkbVveeo t3TniZu-fk8 MSIAnJPZeaY V5Rl2bVxD2o -MG8-wCvzpE GNw7aQdAfcA eQhNOc_Bo78 kqEj45pk6aE cHJd_bAK9C0 kJ8_sMrSxns KBfD-4BCMR0 _cYlrtZSG-c Wuwev3p4rKs r4IlzPnP7ew b2IWTMJV2cE YNJflokcnFI pDzkhDjTY64 f7q5ce9Jwgw CY1lL585Gjk mbWtLBLt1ro qIis4kiGo6Q dkCUjz7I36M PH5pgpWY1uE FPPdbapD_E0 wmFhHU38IhE k6TPsaQRQus 6-NRVtIrrEs qbYHRU551nI VsLlPXjtnVs ba-U_sXRFqg s5D8jf0k_1k na_Fzn77bBA m2Bf7Viheuw J8tCOzttKMA H6NlpE8B0b4 0xW-3QH_WGU 4pVd11CW1qI KxMHqnKgF7w PCNdV_Du58c LEwJNM-Oj7s 2Gd39qysshg 1DA-nWsGNTk 2x7aG-JRlCE IfJuol_Q-jw ortccjAUofU zip5M8y42fk 9d6eWkYfjsk LFwCy1HuMCY ZiyuOaPD0eM 89PPmxL-EVE fn58yij7rxw UUiiyiX_STo VlS-HHdayMU QEcxsTjlIJ4 xdNcrmG6P_Q zJuMyRu4kkU TQezxXB6TYc G1JAVVZ_fMA S7I9LpgwS1w eWjLy8S5uyk yHR-TMj88tc TI5XVZEwtiM Hia2AZPMH2Y 6EY8a5WbtLM gkEZQDlj6OQ o9W8bxAxvvg N9vKzv8jLw8 pQEsnpbMwEM gDymr00KVAg EQP-k2x6Yzo kBt6bwRR7ls rnm2leIC_5I MGsGQAu3aNM 3WCcFVnEKh0 GbLymMUHlXU xs1kML847Ww ws9--JaXKcg b0ydPnxtSKY Qv3wA3MJnJk 9QIPuX7vf1U LPPEPzpSzwM uC74Ix65Aas 28wFNLwZpAU bqOMJ-Qrg1Q MteufVA29iQ 2X_LdH71B6I SNdc9-hv8co QwQ7gl5N41I xGvLjaA4Zek JR_yxYYp8NM dwIgQqWOKCg F_qsH2om2VI D0Led4y5r3I b-4JObBlWC0 -3A2TNWXDXA 70ut3wLkQmo gPbn1uWQywg zWjlFN5hO6I xA57pKdLCbM 2HOwFvWBZ3A w4iERLpYmzU aLVn2GWY-Ec lJxNtmP2Nas rfYZT8xR1Gs QN7he2e5qq0 i27WEap2cLA thG4yP1OdgU LI-SbYy8hMo dO7tQ5fXGCY q4lM2MGiS20 PgZp8EEzrJc dLcQb08EVvI UT2YmXPRg6c uBIAcBKvF28 CJHV8XKftbc vm4p1tZAmEw nVwOCEibZu0 Uf0P-Ezxg5Y 0DTD2i-pMl0 PmoU153vF3U 4p7hZ2WJXHs _dE4g2x-Ing LFinvO6-_T0 4eLsFtya4Gk U72Ap0dAveE weUbXakK6Fw meBbBnp3FcA tHdqS2Vda8Q oj0LXmHzUoM 4kQb8kUDq5o XeZkZIt0zqA hBpNWBQZK4s K61WsiAs4rE Je8n23QMWkg lWvb6U-KZds QiymXl8HTlA Sd6LBK8KhuQ of7ZP6vXAPo uFPINtBli58 P8JnW9dWBRo bvRS9b2nhh4 vKZhOw3Feo4 nsQtI33UbGI ARdTVbhhy84 IToYFpzH0_U _wAG98wcrYc XrxIR2uja8w o_KXbKa2crI 827EAYtM6XQ WfUTDlmLMFk 0_avQPM3L90 ifjmJHoUzc8 OJZhDHdlk3w qF0CMv413PA alQVZ9YxUJw F3FrLQdbyKk azYL1oPxMGg 6xU4PZNn6RQ ZK4Ly7Ij81o gfXVOCNMpMQ AhHM_fCLsIY F3peN7bOfOo 6Bg4HfBsmAU 0vI6TtIP4t0 Obf7CnOmBak kEwJ2uBX7sQ mro3v8ZZA_E Hfoa97N4-4w 7GF9Ic-yNcc RXvm3oOIG8k dujvrGLRTlI sPdJwBfuEDc eJ6y8TeIeAM S0IGwZy9_xg WyW86PD74dA ROUu-unQieo c1HS49PeMUM _zlm3MXTK-0 Y9ewiC2bykI 5e0cFUGyfzI DwDzyVvtR9M Tn6y5TARbnQ l_4wAj6Kx-k h8QQbFolJZI OkR9Bp19nKs yjm6WiV1bBo IZ3BR0J5vvw 7Lsh9PH4cn0 A7ZmPaAVJgo 4X5-zcyQc7U y59dykC47mc AgbKPzg3rAk NXRbXCIjxR0 EATS70yNA0E BxQMT4R51Dk usUO449hUXQ Q-BviNtL0PQ Yzu5yxVl3yQ 6EP_KsI8k8w DwrmKYIuYi0 xUllXfNznIY O0gse4WDTrY Vr9OaXD19JY juik-nkFIoU 6kw3u6O_SxE uaSkuUzEuq4 VwvlEZJMbg0 TVfHmkZlp3s qhc9YD3ahAs Y1Q93Zi9_kc JUbVxse8ZrQ DedlZ0Es_dU sLB6_-ZNR6E 0woPxIfjVTk rf5MnH9pG_s cbulyV4O3qc n7DQNB_OKZs QxFgIsrvJR4 a50LKwRt5CU V2j9MRkQE78 4xLBhHfpKTU f0KpM0-h1CI oiYIVQm-qvY AHzW_z8rUyQ mXEgUS1i_m4 COsMa1MQIVM n-WzTlw0scA yX0WnX27tJw Bmxi1VgTb-I X-RU-b4OyuY QynjN9Nzr7E NCCUGkrIfkQ zqIOu4ki5-Q mbGDV3lPib0 _yqWh3OBDEE 5dBd4x1yxaU -UEeG5IIQK0 uEoCU5cuQA0 dyVMPRxN0FQ bwcLwZQGCAE gywGZDlDv7U nH51jEGD7G8 sSkwCIpxqxU FxCpDJ1ZAo0 NodMkxK5ndw 29vmOrsOjvM mYqUdiWcOok SakCFLhbAJA tWmPkmMO-mo jfVzY0OTW1c X0NIR5-QiAM BcRIvgk2USU l4srSgqgncU B64yKhFe5Lw B00qOyB7CuE 2bMvW5QUMYk LZo51T6e928 vpJbP-sA1gg o6bYgD2JDus giXrOAZtjaE E2kt9XttAzU TURTkb6N_FA hBlhWP2N4j4 Zr0xGlPjTHA qCpSqCKBM-M 1JyApnR4o9U ylGIAp_-JK8 y2t3XqFAjt0 fCXWwJcplg0 OxhtzzpoYBk -ikc2VldgSU ZoFNL5lwimk zEdVDymxYQc BQ42Z2UGeS4 DmBEdpsTwxc WX_9RZSjar8 F6-7c3I_egQ zYySG-Bwo1Q b6W1FIgCADQ 4tKHdEaBlXw kFJm_Gedi7k WBMHd6mCSP4 9cTHj9NKHXk l6FPyq4wvuA z_udbrboBXk 8-IbFKbycv4 wgmwBXh6ExI VMqDBkf__xo 136NiOTy4Xo IOXtBc7CJI0 mwE7hDBei2g zySQRLbqyng 4wvMWwwCRYU cSXgqTUqtOY aDwNCyqgVA4 -Fmvuy-4U_A LAvuBfU6iSg rQvp_unbfFM 2ZhQWROtg58 8AUEcXu2krY 5gQUCqEQVLI jei1Q_fP_Es dEjdEoovBR4 H07ghIFjox8 0u_qMyWIZU4 V2Sa7ey52f0 bHSnlMlFC94 MaRBZ90WDYo rt8L4_lD-_g QpBfwsw4OaE 8QZgJWf5aqg psHsXebbbYo cJBjSpKIRWw 6EUxC78eSjk M--q4JZp5lE a6DTqXLuu_c pvni4Q-Xh7k moiaW_zgh1c 7VV6BZWittk rsHK7n7hVBQ cgGJhEgDgIU ea2fcCJ0_u0 6cwIlJvjP6k YdF7wSrLk-w QuVUH1lm8NY 2wCqM6rbeWc 5L-JTSGZQ4E F_EJsjP26cI 0ynuAmC24_Y O3FndxKOnMA 4qW5feZgSM8 qDyiygLEd38 T8QSGSX7joU OjxvPz5T7YY pr335ddgcuQ HzAlqdHBZzs o3NneX3NJ-I 4BXpDgTVN2E gtSXreFMPpc a8DNOaAifkE fGJIFMA09cE 8sHaAvi0SJw XdUKcQsnS4k M9JQBS2Km-Y sguNMcMJQv8 vV3Utpy9vCI qskwY84EXkw 1MJg1718M74 qqATa_flYaI _wfy0wdA2pQ CGX5n1pvu5s QkAHUSwy8Uc MP7SCUB0fWU fbc0TS1kJ5w eP7VXLIgaIs xP_cM03sHgU OjZadIbLAIE slW61xrU17E JIhx0f2y25I vecXbFwYvPQ BhtHFyjXaXU iJ7r9jKl1so zoFt-5SqUCs 7jj-8TCQTXc vjSMyoCFS_o IEVDBboDFcw TIccuJuQg3w OMzGVY5_gpc Vi5nIuJQVpM 26-SvRLhthc on28B5qrgtY dRTxXWB-lpE Y937MAvxTZI TlnLO-nYFG0 oDNgxbWzpf8 49LrC8wJLPU W6U80LM5b1U _71L2__mFtE KKNUjL6oLeA Mw9Dc_MJF34 uHmd86pWvmY -BhFk_mOlxc 3ssOgE8RWSI MLFezSJBdC8 y935w17KA18 6EEradwg8aE -fIi-c3tSig Rn2_vtaTLM4 CjYxp2UFfL0 6z6MpYHnbRc QPKFPLL4XQQ xGN5cFcaD5A a0uMay4ExT8 SyM4ctfYzks 1H96OfI64Fs gFKba_Esjt0 KNiplLivjQI jGCY8thosNw dcsVnpHXXX0 Zz-mpgYNUW8 YgdWrHFx0I0 IkQ_uPNWp28 6PpQk63iIWw 82TS-sLA0P0 FNLQdquN0-I I1L5vXswv0Y GrG6AZG-ZOQ YiMIAKXwHg4 sR22u1bgrog qTUAF-_v55o lcDo8iV-rPg Khjlz5bMb2E vZW4Qk-wqlg GC_ehA6dd_I sqpSc2wwTaE 6AW4O4ohXK0 Fe2CpAhZ9w4 pl3Oay3HDo8 Z_9GcqiwxF4 V6aDrQg-WVU W51M5otbulY PJjFb1RSFdw ExGQSMWhujY tQPd0OAV7yk UL-ot8sR0P8 wANxoR0GtCs MOO9hFCMw7Y Z_OVcsaEOXA HueqqIRaOQA r9RIcLpGaHY mVNG6xFwq2M ub-t6RcoeTU ODZ_xokDAc8 KqAGFmus6_M inmQqyn5fhE J2k2CQgmaWo ecuuc8AsMjg XHiFqBo1rWI MOuSrB5BYJM lrZAnOGjydo LPe-N0frxvU RQmCVPN6V-s MUVukUuF9tw vA8oTgiA5WI Yrph2A1xc94 bB-OwUZc-cE Fsy3TtA-3NI 6KgxpUSWsoA IthpPqgEteI yBrv-a6Nxuk L0oNukxzH4o XiYDPHi7Acw SJhnQPZtv0M FptZhFrVXAY 11nfPZqT5c0 zAge7cKvs9s h1UDUqeJh0Q PJeobOT-LGk iucMQPRSNDg 56fdoTQTfuE 1Wk9V6yqmZE 0bhCbZG80HE 1LDL6H_on2g VfrbOQ4q_Bc 9qzxNMENXJE lnNbDaNP-yg 08_UIVttBK4 XFYNHsSzMOo N6pHjvoxDI0 Cra_JviE1sk mefq68nHSMk -9FxcS46YmE IAx_10MJbfE OB_iV-135-k BuoqHpvCzq8 moxAGYR4nYY qMthVugT2wo IOECGWT9KwE 1VXH6jctlV8 AAmxzswlvIE NIOWsdgnNiI wm0fKKHMUJI sBACvIGmLh0 tLujRN5bxVA uzDmyicwgnM U7D-kOB7-PU ZqOF2mZJ9t0 FDfUBxkDaWc 3e7JKCUfrpo Ly2Hr9qqp9M CRuiuuKONUQ JAG9oylpNiY PYTXPrmSwmc BAG_EkEcofI O5ExjpCtg0I zGDk38z2mbE e8KqmFe953I CdwdX5PxF9Q WSFqs9iugBI RWS6EzAkSiU De9FeSg3WTc LdEwXHHohHs anAmUhhnwUk l-EWc6AcPvQ mtWSL_-mJaI f1gNWDY4gUM GkM4SQ--vss tSrLgG6rOrs MFd88DSTPgI KJFbhzrJxg4 7OXf2fFCRB0 Fg9aUVqD1K0 uE-l84hG_BE GARQJHyaBD0 804UN9XPV44 QOgqUHk-zDY J_oIvRfVXoA 99z-H_NEccU GkPbF_FJuho z2OoxzYqgNY CgZTVkjQwto 7Z1PBPrjZPQ -SKfkvvtqN0 6e3dn30X5D4 7GLhXtUgUg4 j1q-QWHUU0g L8TDBSlgFAw 4Te3H4lBaBo NlqESIU9i3E 301qydVqZzM 9yoRcn3UcyU DaR6i1hQWfo QunxdSWz-Go mBLotJEfjDg ZVpdb1HxgEY B7t6KoVULDQ jTLsI2Z9GiA --jPdm57jQs RBBmO8dhn-I yidXeyTFM48 fgq8TsyNTXM 5nvZCMkXEFw zjwBNUXCA-M SmfPtEWejs8 xTvdOjsJXRY FbmnqGqWgc8 clr6zsehoTg if34bKbBqXI H07DuZQ-rLQ n75PgMSxAOw S44FXSiI--Q wnfHqnaM0yI _wpGttPSHdE VKbyotjwcDw DdGZ4WYTdHM 1ePe7Q_zH1c HurQLHiIVcw 3Tqgp93zs3Y lm7nrQTysm4 jx8KlhQBsvQ oIC-A9h4cfQ 9nabHwRMjcE 332NO4_03vU oVzqiDMOlms 0cPmlvsRKhw YVrMyqmDg3g GfhTEwz56do bbuElXPp_s8 SF887rPCz_A GBV01HnuTz8 Epo3jDg5skM PBObihCz2L4 OtCu9saoxeU PJFA-emTgT0 U4iAA0B9fJU R5b0a3b6XkE KBh1vdpGWhE yFWgaAX2tCU gZwxRw15AdE SG4I8PHp880 eKHYnWepyRU OBd1rEo-iyM hVZ0Y8l14M4 ksJuTetxrDc js-337d3gqQ 9ekHf_EMmSk CZ1wzoCOQ-Y ji8ZM5nKsik R8Oo8hf_n9w LhVNDhQKhJw Y4u6gpp399U hjoORS_zVWE IEDhXioCYdc bU6ZsvCba7c OLjVIg8OTNI PTCMc9G3bcQ 8sQfEoUNxRo 7BapYJuMHMI QCqdeiTnnTU 9_OMUgTFQhw EC64kf5_Ldc qcZk7ketB4Y IEcxOcj3LGA 65nUs0FyUys cqzRb7sAL9Y Ls8-mu4kDpo YNdZAZ-SPX4 ypmu86_sKpU wyUDbbWIXS0 xKpYBStDLVA OTfb7n61HIQ oOeGE7z8PAk OEgLZ58Xe0Y gL0Ph_x8xmg qSLZflG9sUw MiT3ky_83Vo QWlbUhsTD4c 2FtBOS5575I 1fbxiPh8RoY cLjX-SEPnR8 FNWBoJNTc1w WpOPOQw6nqg rC0lnrzU0jk rNAXkGt7rFA D60dQGS_qNE wFPtFkZHpBE nQkiJT2MR4w 4MzZD9mNlww aHlMCu3-R3I HzWikU7ir4Y FPIgb9k3cUo b9T64w0cdDA g5Gb7V5-pts 9pl_3xQBPLk 1nqF0ddDc8I kV1j2VYi7ho 9da9FqZc8DU sc3H4UkkZgk 36p5Jk_y16Q OhGVVnZZW5o ik4LH5ksOn8 yVRv5u36Huw 0ofpRxc0GVg kq6E2hQ20wc RLUhwGLJhsI kewajS6fh3Q rRbF5cPxVIc smxGSlqjZNk G0aJ4C7y9Qc pwkzSfo-JA0 qU5QbKnQHak H0UbjaTkx04 fpdnG6Fm3LY dMg7mCGd3js vinDi5O-fu0 _eqtVKrH-f4 _jDLZyo3Kg0 oCayZiKmJBE Cg5acxVn2KI jocK7m_000U 3jtF8hfimrA dX-C-8rzN7I hyFgMOop-Mc QR424o5Wch0 wRRvq70yOt0 YV-Ik4q-o4k Zer3Rr4CwjE HoW8jQX83Fw LO2Ej4_42xY j8Zucea5rlY rOOymP2hx_c CCicXUbaalU qhMhfHHeT_g l9MW39UXFmU CsZUGoa3JHc 4VJrMSbPe00 Ld6pt1jNCRw lD6hI1yKd7w CmkT8YU4jH8 pcV9ceH4UvE AMT2RwFFs_g BavTQmiA9mc faMh6OYfuNE Cun-LZvOTdw 8QJiAK-s5a0 7BwxSHs9elk fuEG_PSb_Ts 8qaAKxJp0EM 3dluAhOU1cA ir1sVy9JLyo 0-lcqIuVaR8 VyydT8dy3Hs qDR_yTik_xo GP1KHL0j0GU 0u5O2--9www z7coL1WcCoI S501ojiA52c MGwI25DNrHU dwykptqZBj0 GTCKAy3buxo kDeUWLhm-0g j6oHprwdTeA LIIzjJjsW8s Z743dOLiGQI 4YZy2deJstI KusSGPyXugE mrx4SwMyGdQ MCXx5saaKOk X3vQPmO3i7Y xfwBwk7k3Gs F-LlyzCIG6I tcIaT5D4Iwc dhPSvTyGSgs qNkP2Y5wme0 oZu2JfM2Aq8 p7cYf7GaXgY tiYXgCsoqaA 2vV-8TyFBTI BkvVBZwXVhg PlBpNTEaRTI djv5gGXEyXo qRnjswr1swo piOTzME87Dg 61XUb28jkUI qqX1d64OcvI mtkuDgE-qOI KrwlDh465HQ _rGPOReLRzs uXGr0rSGz0A 5YqbUhVM6Jo biFZVekspJ0 6xD1JRKscGM CXoJegmhbI4 qIEDFvdDbVo UlqSJeiOYPs kal9JZpTFJ0 6vSWuFYVbE8 EtTIxHlaue0 eLyhRYJXf1U 7U3F1uDBXrw rJCltwaUrXI 3VKQkg9cpio 2ed_jTFrZkY VMU9Yos0mkk K40Gt3dk1LY mI3QaSoJado fUlMUkd7IWU WjyJ_ZUEMEw RHUbiL36yjo DHzx2P4x63c pQT-QFy5Nig 3r1ssg1LIt4 dslpHxTuA-w IV79EIZVuHQ zy8dUJEOqos dk3BfcWrx8c tULIFKLFp_w oGxBx8RzzrM eLrwCyXUOLY bIaFHqnx6ns VnrIuEa7ep4 7n8QlEg1k8A WN_03KbkRdM -YjwJY6m9k4 yTeJ-41Tl9E d-HW0aPbfIY 7MQUQQkzNSU QB91tB_5u88 Xdzp0AluNuQ R1dILTUMJQI rJGOCtlPzUs AA4zkmfbFD0 pyXdB_AYiDs 0gBKE5MUiQc v3e2maV8MlQ WEfVr2S8eo8 uBFxCK913PM 7Vl03BBrGEY AP2kX2vE_L8 Xb6svoM3UWE -NtpPdMGluE wYEn-ZKSg_I sRKtU9FF-8w d8sDpSZeDBE j38t2lDi4GU Agic36OeXC0 DaMf1FF-iZ8 JRpouK0KmWQ j91DsC7XvdQ IxjYJayuWoA U6iLlH0l-4Y A9KjjvZE0Lo cAePzEGsP5U b2mm79vRuzA 8OTa_eNimUE 5VMWNnFoi2g WEQOeQBpxvw QB5379zBbtA X7futPJdeOg Ksk7wPX-MI4 2wnVCoeCXbY sHwRx4bc7fM FFtP2SGrQsk EbyOz1yJgYs kiW7cj162rE 1E7f6xOPL3A 4G7TTDEHl5o l84trT4b6yE fbZelII-89A uSNvF3CEzno TQ4y7GPeFBY qru3WdOfj8s cMNvYJ6O_Ks zeyaRxHhVu4 pa-oUPTr9LI HbA1YOueC_A jc6_XgtOQgI gLYTObRhcSY ba2VaalmijM YGeFi3Ap61E wCL3OtOzYuQ KIAzalQUui4 aF3x3Bad2Wk B0vKK-4qJac 6vNGX3c03gM o7WSgC9oGic wf-gIUYRCyk itHVWrhsRSc ZjPiVMyfJPs ql_VifCJG7I rukUxz5J7qg aHix4qGIYHI weCxCxIIjHA LOACsaFA_FY eKLKoFIrXgg mIZOUXRYVyE T4mRbRYaf1Q zWXZyd07k2Y uCjC3h_Gc5E eE-FSOWD_ac aUhex6wK5rI PzZHiGYjhss -OOTo2P1ivQ hBVvERsq-Kk chDaFqJMDeM eevdCdOddZQ k5oJnFivwSM 3zsTC5aeypU TBiLIqhNiAM cb9FUUFtJmc vYyz6nq1mBE LaYpVhckcL8 lnSoyix5fA0 4gAFIGnJ8zk LGoKKhQPggM 0zHmeTeLgMY MbFux7_RQpA 83LNTbeatHE Z0pOWMHRgfI oKXV-XQzUrY U1v_Ed4QFC4 KRBLeqsoRew CHnbS6ZthM4 nWWSMiBag1k JnBh7KBjgwM 2yhGVaVwceE ddGwvveSXxM C7ke6vWUu18 enJJeOqHbqE bMVWECam8EA KOXE9k1TX-s uDffmOSVnBM hJckGOSkTG0 HOpLncx62oY ZgsJGHxZxcg LoSLZP0e-M4 lZQF83kf-a4 orgbJEoA7ak KOWckOfARBE xy6Ak1DYReI 0zJpr-bB1sg VKFsmZhQWtg Fv9_YOL38MM W6GjHSOtv6o 0s0m7xO0S9A dxmqqCK2FaQ AEMXmcWOnwU 03HGdrM25FA Gq75bSHMKPw YpIkOtgOdbo ZBLtiP24yTA 53GIt1w0LYY 31KYorrCgag sT-wJhtlMGs aRmaCLDJ8Xk FFkQN5DyvXU mwAlagYhRV8 HKXId9qgGfQ ZTVR1PCRopA 3tSWRJ3j9fs COGBbUM8F14 PNJ_FxaMYUw Yjs3BLAsvOc FdxUNsKZ4T8 bQWaXlsdyko sKfQGRwlm9Q 2IwV2bHqqyg MH619vxtNdo 8sClW0qW9LA RESwG23_YGw MvzZbUKxNdc cgXTRSSX3cc NCAOKR1jpp0 BXqeQxRvQGY zStjjc7SBto 3F8oJh3J1T0 hZ8PfLIc8MI JexO-N39Nzg PTjIRQU_HdM _6O2sYLkuO4 -xQ5nH_-yyQ ArlsU2_cUbg kxBu82Dte10 6WWdim-OLok T59ufBxosHI Fypw_s62Q0s uI8lzoeTASI z1cXKdmKuV0 uJPI1qu9bE4 gI7UY6YCAoE dfrZp14tFjA mgU73GKlSFw P653N6uf3Y8 2elellCQiAE bPavpV1D-g8 yiRcSZp7tYg 4iW0kneOMyw mFglGV3n5SM fvoNncvOHfc kvVlP50LSq8 Kjv-HBYitgk Zml7qQpL8Yo 926SVUFeJ94 qOKE4dxjayU UbTBbTDjjHI Y29DgVgmE2M szpq76d4ipk yElIQDAEtOg iMP3uLZl6UE s-EheX9m-dE bFsgLhx9dxg ONaPfzjl8qc z9SXvUdM_iw LHv4eHp_gUM DZqOhS2M-DU lhbHTjMLN5c DNZ5NXKtdxs 8U56CTlGkx8 9yEylIfDkms VSMKvHRbHC8 Qbnv6eHKjCQ eyCCuHC08bY ucgU2DJlBiw PDBjsFAyiwA WQEkAbLJ5L8 kLNdMY1JlR0 g8fheDIG_RA Zx0ME65y72E kntQNeSge5s UGBZnfB46es QXFR1L_gOg8 6HJqPZ-KmZs OS2udCdOuqA pFriRcIwqNU B4zWUki6-WE NW2QM6c1wAI 6nX0100wUB0 uNE1lEBsBmM Pdi_kASSsJs 1kejVGS-5q0 JzOSF71-kl4 3tfI9tTzlI0 m9rBv4Dn3Bk XFC2o44koIA lkq-Fd9TU8k eKeTSR1yYfY VUG-5kLRjeY q7vtWB4owdE H1JCgM_LHAg dHPnUPFcxdE WtdVnmI_nYM KsGS0BJ49LQ _1F59-J8Iwg s4heu0mPm-I cLApJ5OJaLg XjC8-nEGnrE iGig4Dk3tXc aoPKajvq3gE kvhcXo9QzqQ 8rsx2IP3HWY mWblxPany0E 4t2pP2KLlgU 1YBkXbf8dg0 D1Sh5qIqc7Y TQeP6GWU0e4 Bj7R_2WWdKs g5e3qoREpuA mWq15lDh8yM bIVzK-h6qao 1G5jMgx8GVU AGqdE1NdMTg CfAS7ONO8OU kJsYKhEV6o0 qFNBUs7O-h4 u9O_Xs8wAZk mbKEarx9CCs LwbFwVf8yoE KYUolurihOQ b5I94bT23cQ Y3kXNEX1Ghs 7bFi99Kojrc 9DJWMVR_yfM FfdJdZ5_guM kFhIMrW1Yk4 JuhTQwzizDI aDFJMSlmxBg 7pDEOCYPRf4 f276MnhGqGg V80rHpEZCl0 YjQP7xc5P8Y 3-fzc0e4dD0 WSyi9bIVryk F5eqkWRWZ7c fOgpQEngn0c Bzb3rASU-pM dTr8dXob7YI uvIZ4ST6HqE SAPKjWHikzM o_N-H_5Pvu8 KjDfOAhtWwo uyj1CeZt23A TQSMmwQyEjk F9b76RWM7qE 665wQwXkq6M K5IU4bPS_S8 Tq8robO5eJ0 YSmSuiMNbDI sbz_Xq2aEQQ SGzmYFcravM b8U1na74Bcc aQQsBjOrNMY P90noIrmLZg j1C0Tw80Fgk sYNUp5rAZJo K-xthcJWXn0 4disuwEvw-w uzgQ_xwWlkQ qCv3989nvog Tm3raIkeseE JB9rdCKgGuo NE0ne430gbA Jc3GBDJ2sK0 sUv04cGjaDI ofYq-2TXzTs CMvdeSxmPKg trGyimjcGRI TTX3bYbKAl0 hOz9L1KrJJY WSUWoBeJ6dg seMHoTTskQc K-cBT5AxRrg isBwMtlWLeE UmmXGbFASC0 Su5vMTdI0yY zdja5DSb2O8 xw13vA86I-I B4xzP6H_N1E kLJCWb1apYo Dwnkxpu0l3c 6hxOoM0-NJI WtnTZSJndPc nfV87TgYH78 pB-bN-RkJLM pZZ60jrw6cg sBDEE3_Z-cw pX71mALOPKs DZN4r8p6KbU FMENQeCbxfI 18eaNSxhK5c 0Dy2fo6E_pI UKMuVFz3MOQ ROxvT8KKdFw EtSPFXj_eZM sarN01WcuZY 1tfK_3XK4CI ZJOTrLdxCPE nJ98f7z14WI SgwBAXfvdFE j7EvXsSJHQc 1tBCcfkkDKo O6ZWqQ53cJM EUtdnTk7wIE H0AnJKKwhQ0 BROZYppqsf8 XLScUvabSr4 oh3KwtatlkY uUPHlAbAf2I GDHVi3h6ZXw N3ug0dVCyeE SM0CkReuGMQ y8MWkDexzRQ Lxuqbh2tjTs c8m6M4RV8p0 hE3jShGPscQ BVrhE9NOwww p8J-YmVs1j0 C_4LmbuSmpI 0mGmEE20CR0 0lq1JIWQSlc eFs_YLy3Ld8 nBmNcy4zZNU cKewmzrevAw ct-PElgfWJY H6XIREQHU8M n9L9jMlulXI VVp0l2Vas2I Ws7Uj5D6354 LSEkG5z7Il4 8ARqfD6Wm3E lxOV0MYBpeI _ghkHlthIqM nKdSvhCg3VY 2KtVKu9CfDA -EuO6OFypLo UCjoOOrgVMM wF_UpYqYJuY 3XK2wqc1cr8 ZxpXrz-nEdw pkfyn6mYlCg wzIwPkZkSTk xX08f3GV3v8 OksadMMuXQ8 TY2PGciqbg8 NTaSvSldlk0 Kyh3foJVk2k ok_8VGksYow GiRyIbJ7IFg 9wr10j2nUJ4 yVcieIZb3_U gKY3ShRZPkA 5ITNMF0kSn8 PQ-8JIzjq_I HTE6S6x8ixA 0wsXkU-Crjw JbrBIbtupp8 DxguAU_KxS8 E41tGRgKxNk 06KH47jZbG0 1z6MvVWZfuc JjRx9IJSTMw 8prXNxNfEpY g9Znovljrq8 zy0HtNZgbjY 6U6MOfuFX-Q Lkxbuqvb5A4 DsugPaXH4kA 6_6Ml7hPZi0 cfNzZre-sIU mzNUbT2sQT4 JOBYJrVQm3A OA-FmsSdSMY xEt5dEOcW0I 9sWnQ8y_M6A PQCAqu6koEQ ghQOllvR2cE 5ibO5kob3OQ nggWTNLFifA Hf6qAXWkX6w zcgxBHBsl-4 BP2zVb8Ufsw gnI8phF08PE iseaUTEhwzY mwqxM-ccpNE Kg0YrIiz7Sw NL812ag82xI i9DMpMCCxuE zFuw7sB1zxE fKeNgrRRoN8 mDI2nymYW1M Y4ZHPeyJ4ss SihfPA7vJms DuyH1j2jMRg CemLiSI5ox8 cxQuvLl2E-I 2Ee6xrIGhcY Y-Mhn3xTlUk ZY_uGAx3rxE AJuIYcVnc2I oK1X8SfGMs8 pWGGQmeKdkk 9-zf2UBp7fY i7AUpGXLDdk 2bx4g-8PY9Q EmDQiL3UNj4 m1t9QOSYqYM VYjyFQS3DWM kAi0cSCUWfg M-rbVvVD60k nby0t43dlIs f0eTISgJ3Io BAF9OAO4TtA tdCot34--pc 773E6GPll3A vw1dPsf0JgE Lh8dcvj-0NA c9wVzDytTFU G4YcCF8uLiI LSMl31b3OKc lbdeAhpIPhE MuTaXwt02vA f1fSmptANOU fIT7VMVju0A W2gTKUd1gfQ hnNXvk6sLvw qXL3aXIGIKc 6Diop4IOk68 bSDqN3UTrPI 3fwlRWBtHLg jutOpRQ7Osg rNPcxSp5a2o f4zl3CuJvt8 y0iBQV-yyLI p5lEvn7ejJI Te4G4EGjidM -RJ6USD2nEU cbzBwleJnLY llzXzUe2KAk 3ThrlTaPWO8 A59SQO2FvPA hlNvdfv76WA gAWrAQp7pWQ SZfw1S80QoQ omy5TVA-fY0 98NAf9zhIu0 S5IHNcpa7p0 Tm0oAv2moOw rnbDA4wKrg0 bTeYncx1xmI w0cXyGVsUjs FKCmyiljKo0 6DI_C-xXcOQ tetwGGL997s ARUzoPWS4Uk AsBLdj7OyXc ersxqFwDkWA K58cPYCTiPM lBeh1jkanrE pDWR5RkWRTY GJP8XTzpOCw 6J-PhFYNbOU zCLyLBrugD0 YoQeksBRPLI u3XXKF0oDtU YL_90r0J120 _oyt0p3Kikg A1HqjBc6LhA jr60kvuKw3w Y2y_dipI6_M pgL4IvoR7tw 21Vohd23VMI R8-x5ORZe70 aaU-KRx8Zc8 bMtdrKIdDgE hReFx1kjuIE JV8lJEE1p0w 6J8__fWphE0 k8zDVhc4XPs bc2muGlQIlk YYV5f0Aqo4w Yqf0AqAHhaM QN_Nod65e7o sKrpl-KBTzQ bS9N8dEdZCQ 9IUZkug8qo8 4MFzzWkl0_g k2NaHBVVYzY JVWrVCLs8ms AD9YlbnGwpA 3kTQBCokfAg jLvu6WNWzKg QIBTN3qSB44 yiZpb7GPLYs Ls_8cFgBUj4 zLso3zVuBMQ fZIWDis34Xs 7Lv6KX12Fbs pTptxpcYySI bX6BKxFkU78 Ywd-UZnkfR8 xx2qTUg_buo trgDVhZHIrc eCQIRkboAM4 U16anbRFRyc d8WHOiQZGok Z6XIGZ51VMo NjFLXuCHUiw ScHOVAo6tQ0 I7MwxFdb0Ls BYoWNwhu0DM Olm0KUtsFE8 NjN-PLW521s MbRhuUtKHV4 wknywxfcE5M aF3BXL1cQYY rtkI87FeqOY sKFlL_G9S0c -CgUGjRFukQ ANM7_NTFvE4 REzwusMDvzE SlyCtFYVQmU uAMrR05Xil8 DMo2qyKq4_w q4RbzjuXB6E Ig-Vf5-qTSM KW23B9uZBVE bWaxWtgjY1g wTz_kSiZaIM sUa29Kqpdn0 c-tGV96ceBM biYVl18JAFM kP6EOOdTQP8 y6WmWVpvGqo iaZzcRtmXXY wwE7qkkri-U ktrGDczwkec PkOIMjJrl3Y TO0OWazmdc8 Xh1Ls7C0UrU M1fnkYbVijE w6RItV0ZDgI KZtF_gT3Sgg lQfG0D7wPKA eP52omnnZmg QZjmr4_K8To -w9kof4SQp4 mHJH39bjALk e8HRcYG3Ftg TWjtzvFrA8c nGWtzmsCHgc RehkdOxmytI A8Tw5xASluI Uvtt94Oz4N4 MLNvUsTBGyE nLN36pgwS5o RP9ywTd8bRM U4D0HSqKiKU pkk8WIkTJPA _D2USWrWBL8 keQtOFycgPs i9dK32LLtY0 lplDv1m_Zhk H7Y_mHNgnpA GCfWXNmFFbM 86CKsczBdu0 tfX2C-Zewuo PMtkv1zgi8o GvF4-C1EuJU trn1aO8h9Uo Vzpu-P2eRuI c9O1VVeMzhc WMX_DNeziH0 pYdjNeFh6zw frMMK_rKwD0 qFc_0WXxOXI 1p8N6MlPDvo x0VcDfDfx24 Pm5gb2FVYRQ fNqz4AY0pm8 T2Lh9Lt3_w4 Fa1IN1GN4Q4 dvm7mLmAtTM pYBo5eS5pW8 g0s18i95JKA x-A6zERn6yo OJ3gsR-DqAE 7vjP2EKf7do zXm6Bc3RuJE 99UdqbS8q2M 7OFROViP0J0 Vn3IRHhPXMo u3mupIlFIYQ oRKbez1LpWU Z2WZrxuwDhs jsZkkqLDFmg a8FA5zBHiFA vKjBFsyYC0g DXTLoQyijJ0 7xDTFtG9kYw 01ZWXIY1mcs Qgsst15iI2k MMuen83l-Sc gfLw0KJ6bLI ziVJd7Fwzvc mRmLfuhXHR8 Q9vxnIGIFXQ NEYwJbjyF2M YBc362_R2pw 0qWMjgpIECA p8CPTHEAfJc XZzaK0UZJ08 k4X42D5Gg7o gW-Os5mjbGM zeKb7O1KtIU _ss0nT5DGHw J2Ws0QEADsU Hb7zhYzenhY D0wShZqevLU 07FdVcspOfQ PztgWdMEJdg TfN-0IJACLk euV2U_M7RMI LLs-Oreo_bk omTBgliYDKM X9yDWojz6YA SQoNv-hzC_Y 3p1rb_t2Jg4 IN5zv7oMwwg jniUBhuJSuw 9mnLbhHR6-g sEnFt6neTu0 MHzcc00ZXCM u-BIr0fW5cU Z1bYkHffGXI WRjPRZEg7kM nx002D9N6qU yBS-MktwqgI Rngpf0Yluog 44ZZN9BqlEE tzKEAdJLRfg iIUzHUOdLhM nxdpR5oyCOs MAvccNVx9tE Wl-C_I-ZhRI op6H61wRi-Y -i9Fv-znJx0 sUa9WglkKCI g2KF7DAlM4E F2zTd_YwTvo 958GzzqgWnw -4GsCEopbd4 _4ezPvzKe5M KVK6yLqY54w BKV1SxfmeYQ VUChuDMVqvY LwpaOr1hVZk 5ZXyC0SDHNw fEcClEBT6QU weHHBdmI_Jw BmLPVUYQM34 2t2iFLshgWQ s-rl8q9jezU dX762k_3zWg bg5SLBapMiI jcNFjpxU0E8 VSDqDOLupNc 7oQ-Usd7Tes KBUVZlTNj_8 DY1HyTONAT8 wNbKp6IGhrc zmRPZJp1pYQ 9_sNsOl5uUI FUR11zrrNb0 vFHYiOfBRng _qG67vGwgcY pT9GPloXjA8 fsaidN93VnA WjQovCr8Tgs gTAMKrPh1AE BYXLKRNCVrw yrLutFhQLgE FmiVlyAfTnw 1M6oW6a0iAw 7L2qP-xQ_7o F1SfzV67Bqw bBil15ORYI0 8sJaglGoByg AJRmY9VXf1g nn3I6-DBLJM 1wc_mZ86ypg t6wgyc8p_hY iOHElDaRs5E 9_4S_-cr9Rs 2DPSnOrJaXo _IIp0gq_Jek IZhBhfty0LA Yky4QtRX_DI Zowmpbv1za0 gRNkQRhMUiE a_z4IuxAqpE kg7goEASO5E TKpXTy-sCxg ZcQtUdZ5Afs NXwxYIjqocA kZgE_sUrXFY seqBLjTfnl4 RUE4v1rUpSM xkNNB9f_3Mc xb8n4wftl08 WZ6p4t3StSc S-6xoT5Z2nA ZIOCaOpBGpE -EZ9f-GgWVQ hHVZ_viVD9E P_gn8RkrNAE Itr0jcR0S4s 2mz3oytpugs zAV44x9vVrk YAlZyCUJKt4 I9uVquExMi4 _mpyFEkzhoo q_wefCacDTE hR1XzVQnfqY CApLHv_NrAw ariuokNFhSw A8wAYZAwQFs Bw5UwRasras FnjrwacqDLc iiA0J5rKoE4 pNJRoSfVZxo yMqQUG5t0js QL7Qq67AJrY hLQQfSmgoGY WbW8GgAWKi8 kJg3GP4tH94 4wVmrgVqQlM DZwnFcKAt30 wBLliPipoYI 9VAkRDPA2fk rh1lZYqwJAQ wOlCQYZWJRE C5x9bD6aoss jl0ny6ij7jg VepWTt1DzTA _GxSQs0FNN4 FRhGCEIB-4Y JVKMNw0uUGw rpp930f_fhU XqtjMtEkDhY fygiSfJjTLc OYlBy85zxdo dIgGZA4qQoc S-pHuT2666s XbSfFmKJJ3c Jgmk5D4a8K8 VLR_TDO0FTg dQbpx5Be5rI yAvJkoCNthU YedqV4Gl_us LnV_NPHo7Kk jAZRevRbGME r9twTtXkQNA xJjCnWm5cvE -Y1lyQpBVJI 4Wu598ENenk wEUwtFg7PeI 4pYu83JHg0E w4liPmQEPEU yMjMgMaakMY Dnfl290-aIY QxXRhbuqFEw z0BandJg8y4 IMSd1IbxmFA VUGhvs8zMZ8 neVOaWPM_Mk 6-wvim2zLFw HSh7FRalwdg Ol7EpMrfbGQ kK6QQIvO9gE 73LReedA7N4 YhK1fYhl5dg wqj7Q2jOTc4 dl2NG3vkMTk jPiotGz9O9s b95SzqTrjRo tZ97edZTrHQ kRg5-TIF9LQ A2QayxN3z68 OoKpYXTmYak GnbUZqkXBQM 3MzOdxCbTgU TgBLraZlGww AkR9wDct-0o -Hk2z0z216w pV2XJZjCvP8 yvcHCRvP3Gs C4Y-l40swH0 29nIXG5KJYw pXEqXWfzyBY HEU-JXcdfIY 0NH8i-Q5Nck rPTis4f5DG8 FJBpmWxw3o8 1YCz4y8b58k e8Bn6XVv9ew cz1TJ4r7bOU aQ5PyaHQWVA 7SB16il97yw wP3H6lZ_mt8 6iW8MoAsz9Q swhep7_jkeY 2gSf5UMZ8ms 2xB5GBvOqEY KIxetRsd_2c xFkARs9CHaE oBoPQUIowHY reYcW3bp8gg np-ndDy9YJ0 RvNuTuiKyIo PKIpCPS-oZc P8Xg1vVkIh8 b1Qxbu777zo 4Z3s1fJgCEE FMFJli50jdY HQv0WWhoZnI 8Kx0qYRv8XQ C6k9TFjWiGs 0wVgg5t2LAM Sy7YnrVXudg lFHLE24hDQY XdlIQCbOvrw 1vJpAXf5wyk CAeFPZ-yXYM xA5QELbB-vU dQRfWqSj3Gw diLE4umndNM yNyLTVFv8KQ DTWYQhTT388 ZYZsJYZVt5g F_EuMeT2wBo fbrN51dPm0I b-f5iMDXvcA 8LFQun4HQj8 HmyQDH_PSC4 gz_dPVrciwM RYHaarxQTFk 6XyUIXqIoAM y8svNN8saeU rxZc0tyTqEg uLquz4Iz-30 qs1QcRTOMEg JF4EyXhZudo i3JbGwGNRI8 Q720Fe7IDMk cgBAJefErZY EoBngEuWM_o irCUvLD1t5U aBADjCeFnuU 9fpDYMwJXQQ ZsRDr3miUyc HhZ3H18ynTA 6_-kw-0PvJc Xk5epHF844w SxJvnJyF7xA OxCVucvlF1o wbt-sAOjnQQ -U_IRXhodds Fgfe6pufnLM VMFwVNGGfBc saBoM7O_imM 0JXwzlRcYWk bllBC-ThwjQ LuQ6qCNwWY8 7b3D5qPBrI KLoOI5Laplo 7hwkR_wvrM8 4hkg3Zut97U 3SiGgXIYppA rl6SpFVJoUA BG6uMsq8PPs c-unYxWW6ws zVwWDprMFiI UKGE05RbsV8 cgBz4BKSLRQ cYjv9uWxW94 0fbR1RvOCQA iX-nnY0x-SE GfoSukpWVos 55X_DAk6K_k CtIhkGu6ahY f8_4uckfT8I NzfSLgWkTlY Nq295Mg6PHg mVv14yZ1c44 87w655s3xKc X6YLAmKFpRM pDy41hvdq4s dAE7uOO_4v4 geiS49_p84Q JdfCyow-Tiw IsBB4i4k2PM ql0DycjR8wQ jyZU7lfGjyk Y9yrupye7B0 OwaxFAC6rzk 117FZnev4Os DxRzEdg0p4Q jgyZ7yb2mmI a5SoIFm-SrQ lJDRkVKjMOU LD-DYjqW7HQ 5dSvsp3dxvc aTaX_L7msxs 4_Anuo4_Tlo 6ZcNHOP3wdw CQcGrzmNihY 4hQ0ILw1P7o JRLNdcmRcFY lnYzb6P_1Wg 3jLbKr11l20 uLt7lXDCHQ0 3TmzG_fqqU8 LOVgTjeg4fY UFnmq5PPScA txHNcE_d7ro 2ETruidd5lQ hKSscAR4cS8 HSckms_rfwY IjrWOZby8s8 JmxK_pBaG4E z0ZnN4mivGw BFUVGfsVzhQ TfzRP1tCmsk SHgs3LFLBzY M57AIegsBz4 wqwUdp5-2D8 jFPV16f182w AuYaiXT_1tM b2dewDwIQyM gcAaILQ0ATo KSRWc7zwzC4 KYa1IsxGVuc k8Pku1zXM5g rFvaTVV7yO4 ZN6mp2NjMhs vkmf3Hbnh_4 -JbSkxI2DrY FFUPB-cVozg aIPmu6bYZOs 1sO7SyT9mS0 n0cG11lTS1E nhTupXSJkYQ CO5K227sues _b25Fbg8xqU tB6Uj2RGhPU HdXfVjRZ0yU zJO4Chs7-lg d63s74ijwb8 TWJEVnNwAtk Q4HY544URjA xcJXT5lc1Bg sAO0owc4xeY jnA7jmNVYFs 37KddyjUxnQ AZMg4vFcRQs qSYAT8jpqgk QxPA0i_TVvk aKIM6q3awws YDmULxspTJM NDXWV-mGlPE kATiU-cZCPc N_HXTmS-AF4 TyDE15kKDpI VTyBpsX1TdE iQISI7DOVCY Xpga1vtS3tA TtHffqqdh1Y 9C2L5v6BfLE VUgsvd3ZjvA bwf_EFTMZ9k yoWz1IdoTIg PPO1EQmj05I 1nVThHLqda0 eCfvE03ufF8 CGivL32FazM QyCMxDBGqF4 Z9agItiMEEk XHrw3AFW0Z0 eC_Ua1svsSE zNvYQ2ILSCo wytwlFfk5dY t6bhgzR3gkY Juv96hHY62A JtHq6vKm3WU BHBmOFFExso onyfp4uSmcY srTcK8ybXpI 5oav3ZjdRz4 4wddfKqi1hI KWaZiVG1RfY Uoqe4phEwEY TyoZkvsxrSo hEDeIvU1si8 oquM3yN0E4A NRqxxQy8sLs 3YM3AYZaTZ0 K8yeho0MbYc 9oVoJMVsKtk f-PnGRaJaSA YKRnEOUxZm0 oR1-UFrcZ0k 2I91DJZKRxs 4WAxDlUOw-w _WyD94vNqWg mGA_uH0-n28 5PT9OxwD6hM l9c1k_m6POA KPowlurwWzU CsWFLaHiQa8 S4m848bh1iY 1Qb-2KSKByg 6wN78_E4AAs 7WD9MVTfdjs hXce5-f8mkA NZxjmhwogCk yVGlKrziG5E RG9LKdqzru0 B-tq7mbTvrA kXnEMLzzG_s f9IkJzhoj_I ztSSzTA5Z90 CSSvNshY5dY IlMjQrpAPHo m_PeQCPq8QA CPnwlNvwBLI mT5NiDGbnVM IptkOvp53-A NOVNs9sT32k 1ao1yR27lak B8cWjLMuJgo idfa7VqkSOw PxtuovqUgYU G99Olp16O7M -x6njs-cGUE I3znSbbu9IU eKrEVWGTuRg C841wEogE4U A4DSD-ZbhoY oBO9Uy4uc_c 1FZ2FA-epcE VKTT-sy0aLg XOnuxo70q9Q AM5EYO5wWMA aZV1XI9qZUc 934iAVn9CKw G36NDRDO6L8 a2dHmOQuDaQ lx0z9FjxP-Y VHMi-j7W2gM nJ04J0TWD1I FNHM2JEA1qg 1g4V55DSrbg ruN_KcF-Ouw WVx0SlYmaxs aJ_NWmLawAM KMm_fkYUdo8 c6GEJoLDcAs LR6zTixElx8 L0CGJL5SlsQ wwrzI3b5LxI 9IdM84YVmV0 dfT_2XRB8aU Hws-ExO9fhY HDxqSt_Ctbw Lsm-snDPXnk W4_F1oMTEFc x2BuNuwZ9mg 86F-fpdTJg4 efr5PYBNZCo tAp6HB4WAdg -3cmJe_Kw30 5TcimuSgJoI YNN09xbsN1A 2nC7GyHvy0w IiD7lmQlL-0 7TcMmmC-PqQ QsCPatNIpPE maaoRjQN42c HZ1D6bBiufI u0Mz_e_TQCI AsKzZqVhH88 qaK_jsGvz6Y 3z637yWEmHs jHZLatZGr0E DO50JhaRp4A pZE1CyPdDMo OJZGgPoJ_u4 3FgbU0ZZzQY Y7LbtFY23wo V3EpNkdgmyo dp6WEWGtqRo 65L7TzsFaD8 LdnaptnNXbo 91wo3olctwU E2VBcVxwUqM jGWM1SoLAm8 m8RpGUXeHFQ PHcV9HUfr0c xeE4wGavBhE Gxd-OPuy2tA 1xqufX-xMr0 GFB8DiM-SLQ 44rUlHYg-MU yu2VrqdOVdw aP1FZToPFxA tVl78xgPyow soTciHbL4iA qZfK-VnxBSo JcTBwzDucE4 exclwIbllXQ yzGKgnbclz8 Ppa4gvsZHDE FvJMbz4vgNY WlB-BbWBzd8 9ExnVKy8hao vGgdg2q1eig YKjzDMrSX3w QAsI8z9qfKY A9qAaecuaFk GLQd8ZTeYlI oAFVhwUVJt4 6I1qP8w8DxE zNyykRpFBQY TjpkMfTBVQs GaBjbzvkxNk XQLKAVpgHQ4 -UAV4O9oZy0 scEuS9-TozQ gB1LgDhJQMI mkNO5Y4LOMs gTLqDBbrmPM kqc4KyCYA0Q sNGlmsj6C-E c3uOWTAuaTQ TDo2llQRSOw XVEnOs2HVlY Ezy42s9AacE zrECNEIUFZc nhUW_MrQGTY 77LZW5N_Tic nKIH1LgVMpQ A-3SeVkGrjE AekHQpGS_AQ dpFSms_kfQo FUL6DhVU7E8 -qK58CZslAs oirwXF98wo0 2X80aLjCncQ zQPE6MCV2jo R1hGaVoYZxo fA_1iRByNFw Y2u092TuA8g _P4YRqZPT54 hZdl2FFp0eA z1hgz7vgIt4 30iTy8ws54M SlPGQ7r0f7w Bu2PFyl689w WgcXxTUu0aM Ru2Mvkf9dL8 tTVFP-9AdMk st0h6-5fVtw jTtTZjp9ViQ 9nFrp7Z9wEU dXQq9Y7KnmQ 8q8m4-7ciaE qDF1YfpUaNs kDHxHA2RzJ0 Ux_ruB_nt94 D407HWykw6o UBvArq7u9N8 AqutucmM6S8 9uFe61ebm30 QeoL6G4bW4U xDwT7-3BQ5c qq8xAukB-xI pSQkW5soVhk H3plWCGH4wM kkZWXM6mShg K_31ZHeMlB8 EbU1vOVwnOo 5klqA0K7K8k dyb4ztHMFf8 hf4KXHSvKD8 YSrDBY0Tmdc PtozHYwIkNw 3wtgdxKJI_A 8Px7Lr7VzvY JtyvQx-YiCE CbF9_x6zFYo APsmTB3F7Rs M9nDop-5T0I 2P6sN_5eM_M 7cTI5pyy3Fw MrfsbtOOdGA 9k3swSqYKP8 xl_aSDYuXhM tIypF4ODIsM r51WXifMsZg cPa929v8Hps 331wiVQINn8 Jjq8Ng6cjxE _Pbi5kod89U Q0Eh0iTF2Bg GuEFmBxmIT0 rCg9zLCbhZ0 f27cck3Bl-Y Vv0aAv0lJ3s 6uHak2M7cmc swOuQBjbiLU v1Qu3dZlRGE yuCbYNe3aZY NamXvlffiog 56a5meaLhBM qrzj1uVO-Lc x7j4IiO_6RI -szJznl-3UE ZIc7bCHSmKo S78_9yWvSi8 eLW6uxK_MOI W_7_2Uwl2uc LeNRbtWgero jeoUH00woxs NqxvezqrvQE NvNkGs5bFtA pZNQ-Jo7nsI KgSTMVwRSiI GpD2-wZnpO0 Eyokx50Jhrw kwdRauyX_Sc vFqitPr_Gpg 7MF2IgjAjjA CdUzUdaC8tI PyeH_sv2TEY qi_t-McN6Vk F0wFS45JjWA _U-WwYlinTw vf6nfEZgorY 0dlFAtbte0c ifG_E9BKfuc 3u_oizn3fg4 UCh-HA6pIA8 vQdFnS_u8UM dobHtRTf5rY 7ZFGP8b4Nz4 4rJ4een9CcY 7Q8m_vs3HzY Km71QCX39rQ 4iaM0-kcWtc ILJTdnLyUC8 QY11UyRZBM4 tH4JJtuyLp4 sFjraGFeU-A BkO51g7oXnw TnniBE14vQY R9HPdX0TZAg mnuJ_YVLL64 WkOLYUmITfc 0l8mYfrxpTw CKJSr3Uw-N0 jSidQZzJfcc 1t867tCFccE mTfTGanKAJs NoRnWATJPrA g-gebDSBFkY dFAd35ck7hY x_errHqd92k FD3Xh_Qez_Y hK2bLlVeh-w ZXXpX29Xt-U wNWaYfZI3Ak t1JsC1ur2X8 HegpqudDvwE FIekWUU704U UOVyhaDQNfw nzWDzGxqqa0 8Ufi7Z8OokA LakGqZmF-Gg 5yGuDDemqaw riYhck-Z9tw _T7vEyicx6Q MLrd4hKTVLQ _5TCxc7G31Q Q-R4SPTgjmI FGiocp7_jE8 Y_RUAeNZs44 VFqbGbU8f8o v6bD23vEigE cOE2gQrXchk lKeaVq6fUpw vRJ5cCP0ZPE iK0-76FChfk eb46yXP211w 5ecF_TOyhfQ oXybPR2g7VY 9tzlsm5IvIg pLpIARbS5Xo cqpvoIx9wbw CnSvI5JxRC4 yGbG0TmmRDg Z8auSdJSusE QQWyeLLMwmo WL56IXifi9w 1hw9NF3zzrI -aKc2aFeCOk 9Qesj84cHLw UtIr2Cpk2c4 wbVpwsKbFCU 7XFAamm-SE0 QJZ83TqU_x0 n86XlheDzhc s_j4-cVHFH8 xTseWiI_yns y1tx1hn8Pwo 1eyMnUczVLY kReNcBdLDa8 HLO5LmnO8gM BWnG6--TRYI JuPSeaf--7g 6439wcfAL-E xMdDeWfS3O0 HUrzvLhxA0M nPjlPgeaD_M LLyS4KzDsQ4 dazYs4DgYtc weDm19eMl8Y Jfddc8LwQL8 jri0U57iWWM TxKxj0ZWEcY xt0TyfTl03Y fDx628jn1YI qIp_8RNNX4k q5v5DOEF45E pwdhau_agX0 CmyP-ljev68 ZKie_34cpJI 7mJ0HSLMba0 veztNJQyRJg j1VL-y9JHuI 5yR0wlrq_h4 lGqBJx2xbqQ G4cvTaP7RS8 OC195SrxRmQ 6Ewhxrht6cg eBE2Wgz32nY tr4beSTsJ1E PnUvSn9pVaA lbiymQJsC8M g_U9jZQ54LM VzonTHZSaq0 BRZh_NO5tic GNTdNXkhZ8Y V7bO0UmtpFs nmldcHUthLA FHohKkrVoMI ewvHk1nM5u0 H1t84X0iHTY 3fXPZqrKduQ 3E-C9PipmaA HZjZbJuhPAo eHpBhm4LMfw fN2AXsF-kwc ctyDL-6f90w Z7xJxo223YA BDiB3XcDsT0 76Dbf85Vo3Y CEuqveZyuQw tBSbjKyamRo 6vO-XDUiRqU -5798-VRVYA M6HxD6sZ-I0 o1Izq-E3o7Y POR5t4hjtPg 3zhqCccFsGc g3E69dpurZA FQqo-w1qvws yQ8PoAkZnew 3rcxMDaDYL4 cS3cT6vgiT4 xKdtuwTr-iM Fe4JvbxKwR4 7_WLSh7GE9I K7AKLKQqfj4 5XW-Nxfx5Nw 0t6IIdmOIOQ xwffHJ_pAM0 dQUjkTOrAn4 vO2jvLIyIV4 UX3HxJ3eTd0 OBp-kKju0IA 7QZB_cbjdM8 Y-CJgOlRfkE uAphWDkKWcg GxznDWMsp8E _xHw_zAJRDk kDfvxJUxL10 E_Rabq4muu0 FARSnLU-NJA SSk0B0dVq4g nIYAfX4gYO0 5SnIUYLRXro yde2ib0YiVQ BGX4nMrnxg0 5Jdk3riKKwo kFCUCnNKmmI fXXmeP9TvBg -Mmq6Kmd75I _d4H6lx9-Is jNN6FI1Gcr8 8ZezvNWgi4M -riX6Xbvb8w G2bsYSfXO5U 7IrB1OE9Blo DY61X243BoU 2r8yw_fjoHA yOgdjlPRWMg S7vH1F6nnug vn6qlQGDOIo USKDdEg8N3s iplfWUtKMzI m6kFCNsnQpQ -Bprg2_s9mg 2O-CC3IVPVg 74Ern74xGsQ 9FLLYpUnuwQ NoD85qZhkWY mqQ8Y9Sjp7o HvhH6_TMxWw nII3ya0MuM0 kXjKUXgoyL4 TkyLnWm1iCs nur4g4r1LN4 d-kcczAff40 uYBZAS59t14 AK0MPlMNHQ0 JEsQCm9Q3pk LwuZzh79ds4 r9nG9RByMRI 009tNfQRd4o JPEmc2HcMmY PXW83EUbeTM in-1BIg_Mec fZt8dti-r14 GP5ss2lYb3Y lp6ibYQN8vQ MtTE8aWCe9g qf-4TDEpycw 9JQRMnxE6No hYQIObd_bog ZcCHgCXxkgs E_tY5yc-yWU AjZ717HtRy0 joAodEzeK34 iYP5-Dl3rhg C-PxIfoch_Y Upr2DiiSRDE pZJ7QK2d5-A LUmqBuS8GAA BqV0lNOqaPA iqyFc90L3zw nQYsHLwXnMc EECf2o9Ivaw iO8Tg11euPU Qpux-Drk6EY -NzSDbGmTpA _m9qecEehqY L6g6fH2ev40 nJPju1f6p0E FOM6rvU9xN4 wBxRwF4qnhU bXNwzKo5Yps _bsnYbe6Dp8 GtYAzKwm-R0 UWGtZ9Oqcwc TS6_Y6r5r-8 XNAVsV-Jqfg pv6EZGMlgX0 cqOc4yl1bIw u1pJJOaKdiQ Pf0COLjWys0 zxqYjEzGEPs H2tltm5wUCs yb7aNfMvRy0 80x9FmKsyg4 l8aozWddbPA GnjxY_zMxOA C_2-E5uR-k0 1SOZ6caLdUk ObbLapUaZd4 vfNW11vcewM VhtJpZkTZ1M rdFZAYliCgE 9rstlW2YsmA EdEl2_GReMY piOK9oDxl2w AWKQSDRekBM optHzRmqdFk ZJxNwE6H1SM M6aKImtVams aDdBoZOylmo A2WV257yma8 fyI46_cfTW4 xW2dWkdxEVs KLv0iZ_NPi4 3dnf7FK-BPk bQme3XqjpCk 9Oi7sZ13tNY yuklnScufbE rJSnxSjZIcA dB2iZKhWArQ MgBCnwI_Hq0 oZePQEUplJs 4ld8-QuAFw4 -QB2gXiOAKc iKw7Ndv4bRM 6bahX2rrT1I A6f-6l0W-0o -wc5S8xwxJk gkJAPsQ2YHE nMtW7uy5RrQ 9n27j_fe1yE Dei-j4tWI0A ZrW0Vk-Y_TU iOMuP1qEKUc JaIhQFDdcJM KDKB37gY7OY HuKVUxMpoCk v5ueLuyLWn4 _c7XtFcDfX4 JXQWJ63fico aSxScp7zUpY 2xxZ6kju6xo 3mieBC6wlbs nMW1Rfbl0tE j7O-SUEh-54 jJZ5x-zUx28 FcqC3ZIsQRM -v93NKIFBBw OCGGXaMANys asxNFYNfOWI toq0HYc9mmg xHH-tuDq-T4 q-kLlfq4JpU k7o8U7h_YHM JtBmjD4WDnM byObeFcFXmo J_i4XvgEVDg gAxuiJdRBjQ _nFXFkb8i0Q wGvGiFhbmwg QG_VaTDn9Uk cczh1r-Mb9o vsevdTMBfC8 j_2-8115ZAs TpwYtP4Kzbs KSrAg-DG4Xs 1LatwDo_ZL4 cnvdC5TGc3g TotAfd4ercA ENZk6ZwsOzU lScMakd7h6w 898OUCyBulM 6a9lq0bPrLU lWqHayjaOxo TwTQUFCYFsc jmOvg7JKjVI AqtOrW-wiZ4 zsgAfhsQkYU 8TOTUOFMjuo 5MC-cGN0bw0 yQ3jp-a5JK4 pKNsKKRGrzs uDISBx2Ry7s d6NOGc2Dymo docSqZBVEUY UWyz-yfEIN4 Amjfc9pRatc VGqjv_CkCXo Pf5mDMWYRmE 0KJ7l4gy4oo hwc74Ns9EZI 7phF0rMpBiw 7P9EEB9Mr18 EeyNlzFdjtc G_0ZVzUO3Os Vq1W_C-ft0Q A4k_HCZNCgs gtKp8oxOzAU BXvryt6UCC0 5Xk31NpUX1g BIfyebxopuM P2pgWsYSyUA v5FtI472Q6I SQVw58aDt3Y DoUYnGrhxi8 i5jTH89HjTA FCJx1uV38ZQ 1qNeGSJaQ9Q wcztDZ13TLI lKv7aGku2RQ Gokkl2br7G8 9rDK1qdc9-Y 25_F9irGdow B0YqZqU_z0Q DSGYElDi38s OpZknAZxSjU --VWN_KTxzE KN2W3JON7Y0 HxrS10Oa4qU SaAuPbU0eOk sPQLY7niQC4 qB2H-Gp0nlE b9WFVLRPOJI 9DKqoFCTC6E HWDBMnxAk0A XwQuM34oBkg HEtlEkCoCDQ QNUzcLPS_LE 0TmugJo-c9Y SB4SyMKugU8 zATlpF_gylU T5pFuaH_A98 5KsjPjE-sTw 8D11eYo3bNY cu_A-aG8G7U b1vFQilhgrY W03miqzGMcc WThlmxAdynQ pPZ7eetT6oI FBWubk2ItBA zPvglo_VB9g QRGusFszwdA 5_2gW4c8hZ0 3_U1GtNY5xQ No7DllIwA3w IC8xA-bOXOo stSweLZol7U 14bY6pwza-Q S2LkKVM-dRo DNt7PNTuePY Ybfc9RkRUY0 FaYvxUgA4cw RZvwbfpE8CA qeZ0SIG2eJY SNrMqIrtbmw WT2D-ZhTkqQ EOwmzfyF1oM 5K14lfXCgco 0IVFxW63RxU P9iflgkOO-E KVIXNJIaQBY sallI5PomoY jvZk0rzVeBw spVHsj3_MEY NACwfzRou0w 5vKDb4dLu0k xI836Tp4cq4 au_5dPh_Dm8 y_5YoG-iXjQ v-tma5YRyGg RpKQ0AC0p9Q JMt6zz_dYWI JWGVdLHio5g hSgNZ6R5Rbg KMnK0as4TSc U6X6o4CAqL4 6HbrQMgOUFw zYRqTV7WyMg 5RmABh8MCpE DkyCu7ryu-w Rv2hRfqlJaE Lmsukmz3QQE 1RbdA_geYpU Ci3uRpwFlZ4 LkdJwYQIR2o bLsM1z8lX_A J196d5nLSYA 6fXGKCKcXk8 sSk2SvdopGY qD6IXIE0cok 2bcSpgxPG0g Puh__Ef3KkI v71Epv4g6jY QtBnuCwAJeQ MAeQV2NBbhM JUGSh3BMuaQ cr13B4L-5-M yGzCkRwbFII EYn7ZmFV2eY SnXhWbEfDNA QlT6RMtJb6s m8hsAr5C2UU ClylV3dp-Ok XvvzZUhRSbI oTzTcic-1qs zG0CfU1YnNQ n3K6Fkd5ri8 w5EQRIoHjQg Jina0muBqRA wJnVVC4784c roeLoZuFI1I I6RwgD0b9xA jNEnqzkT_QU bObjXY24Ei4 mzP8haJXI5A vHbBhI0xLjA AhpGExo2hbs u8oHCJ8LxtY o6zEapyz33o m5n7XpAv46A P0ojZI9qBPc O5W1OfGz3es IH6fifC3qSE 7RS4PfQHCX4 mFXxro8aD3A jwmRNTTDOw0 yp-LFlDEVdk naI0OgZq73M rQ7oKh5K7K4 adT3VQ_Krrk P3jRjtbkmq8 nBQDz9PiMDU FKu9sUXtjpI XJTXpItCqFU dXngQtk0BCU B0cuLHkQDcA q2pzOimT9so lf3MqrE07I4 pbmU2wMnuI4 _SwvSu3jxAA Xf_j-iNi9CA jz4VT9zHLTU wVsMJ0ntvmc WhyNjvISFac qiVy40O1_Lc 5T607c23L8M Mn5ayQd7Y0Q Or3okI_mad8 sTYIlyRGrA4 PPAe_7EK5yQ idqhhcppnUY 58YNYqN6lko ORrQYZCdCwI Anue5RDt4Bs rWqVoaYxgRs zANq9Dusk6Y fkHlhiG0h70 Yxzq9BLE5Hg 68pN_c7DGUE 9plvG6cSgVk nMlDPsRwZE4 mw96cSYo9dU jsLOtv4yqIM 33MiJMF5z7U 0N-cvihnyqg iOGo0EHHtCo MMSpFkvPOAM CS-nCS9Az94 Cnh4Vr0UruI VjfjS0R1bdk fki-LTswICw RGl3Y1gvv5g 2u8m1yeCoyM OP4zJ101EPY GNWJFqW17yg HAF359uuWUo ZbPoAOc_iKw A0WEpT1SKV0 iwfU4ei5gWE w29PG-8Tywo j4yXEmQRq34 5Ay5GqJwHF8 jlUPc1tu64s U6fx_zJtL8I yJzn9MhJxRM 4xdqgzNNHn0 aMQysPMcE4M VHJ5pzTGtag DJnKxIj_D6A EQCf1YAzPsg 3et9liRrywY I_e8l4Lj8OE OvRYeeFT7BA 05O77oX6bQE PoBD69ANBUg RwQVsB6k24Q hXWDSeVeaAE rwd5hlQnu0I Pr9ruvxA3K4 8h6r3S5zjtk 7vZy9ra8kdM 1WRLqzGkzNw 8nYPCDXHuPs XbTEusaf2nU 3nydBUSR08o zcDoyBvCyF8 Ye4fqNh_vbs zBErHC42Gzk aRgUxpmvZpc 8WfKSXftr60 784nv_NRf4k _zlqhZOE4yw GLfcxIq-zmY eQ87hBFrS_I VjlGOec7RVU hjuYfeA2prM byPJ22JDFjI LJq1auJq_gc ZKdcYnlkhx8 jal6Pf2DFlg tSXp2wB6kXQ a5BtDmdw708 UI6mgCAcXzc 5qfoeuQFFHw bKLQBuSPVwQ tumI28B48wY 1KfyTORRMXk ujBna-ZeAu4 aFDFSGAIrxs Ig8UNiVUfc8 Gor6z4YDPhU 1sCRrXnBTZ8 o3aqMjrFf5k 4snGt8OzUV0 fc0uxTiUDrE OhOvnL8Q03c _2WBjBnwlUs CzOH54GemVo C1kZTfHldfY bxgZWv4Db5I h1F9-NKqDDk udHB3tftPz4 cP_OM5VVcSo TUlYMYQD3ZE jFoUWFmM-NU c0RlK3VAmzg i6OCtSqrOQ0 9CJ9EDtZ2p8 3LY5dV3xghY 9fwBPbt95vA Gm1BZxc4tmk iB25eDhWImc pOPWdQO9bK4 edX09NFZ3oc sxNHNxmgzJU cZP4yFO6l78 al-tdoT3gL8 FlxXhrDycHw Ae-mN5aD8Qg K8JhJPro-1c pHvNvYijtBU DXief-vtjIs YF-7cPk04OY G4RvOmNedls BwDlobymMk0 gJ_cx3AmCuI RL_3JEsg994 LGnYM0wT0t4 B52L95xRYFs bjAM2J_D4UY qaBlaPsuHQw gP8_w1J5raY uOmtVFQ3WF8 L98X2ESOWU0 jocnzvDLA60 ji8jpGMlBE8 9oTVECouTO4 LsaLeOKK-EA BmylCJhL-5Q xNHt_KWKMbE AgB4n-1-_BY t--mSXDeETc b_BA368IluE YVOKgKYJB2E 2W5dr790cKo CgU-5WQGClY qLvGnro4Cgw GbZMFMSKQ2s A4Ntv7DJURM zPeqoWzZE5I 96sUPxlIfx4 iCfjoSbWHZM HXRuqpUG9RI J1668qPavto rSWBuZws30g 0XOzPjsD_ec kBJDz4ylQO0 Tcwz8-EfFYE 3ohBUYQJflU ahuPW6_t-z0 Slf_2J57SyY lEPfDu4pVqg Tb6dbNhFk7I FSSlOmgUf0Q hG6DmzzU8m0 ucikAqewZL4 Xlj9wg9q6f8 o6TYEHyv00Y T3Xlw651IoE W3GsHtZu0Bw Ppj45Ai524s rbsrjcXynlg lfJ7WzyoZH8 0SwgAb1effg t4_obOCNYls Qxa4zjRostg C_dc5WzLq_c xUp1My_eHn4 V4qu6AJNBQ8 JhSRGLe18OI G4_3pzwFYKw riicefV6xiI aF4En8CIaNk _WjIlCZJtLk z6aek_pwEGk ECoL3IaXgRI rP0QURktz3Y V3Av8JD__sQ IsskB0D2GC0 Pz0RfOVm-So uhpknFQJ7G0 Eg8MVTZ12pE YsrQUrJ7AdM TBiqsgxbxLA m03MTJCH0Ns w0AliJi4npk athtiym8OYE coeU38xEhVU PWTptbb0vB4 K9T33H_h0Yk xeSDsBS_cvo BvWSMD2FIpU tM3Zg8m373Y oqKAuNefcSM 8eu9yZ6pWjg P2A2nKAbQqI 69ux9TSbEKk KPwY1uEFP-c NYFI1-FTw94 ndItN7hhtII PolzQMFju_s MHpyl6uVPrw y9jS6a7rIVQ YCIqymquy54 dAOw8dXcMpw OkIYOU1ObYU 9ZY9i9-hoQM 1QjC0jXb-9k vjvHNXSWvPs 7d7OeDwkfTg VvfRXzxBe68 F44mBbuqA2c 4xh-Hz14AA4 j32LbrHGak0 7Xgj1Csnr_w FboJePoCAb8 dnThWk9ib1c oZ868onS6YY U0tTT_87Hh8 M37QsnD6nZ4 r0cRrtcU5X0 UJWni94vAAU BbjSOt7NxIY KMD8yO3iM-E wq26A_QK4So bXt-KqvrSh0 nHCEOK9n5z8 5hXXFQLDsoA 5msVl3oZl4U xy8a0GKO_Ek xxbFPdBBjc0 vdbQpDHAq5U MPOPd2RNLko mSa_kUf6cxs qyLJCNyRov0 vFAE-ZIntVI 54A7W6eEBnw Xon0bfX3L1g QO9r8aO07YE aRcxYPkFjh4 bJgem6Xc3TM F2hiFbuQ-Qw Z4vn4UWaeZU X1u5iUcD0Ag Po_w8OmTfoY 1q5Us5iVWNI LiHKY-bG36E nkVK4JHRQfk ByNjiy8-j8g sxI6RnTFj3U 5CdiJbnuvYg NYTS7NBDKKU 0ShWGyC408I LUV0AjnjaT4 71qm5ZOlpAw CEtLeoXjttY VC0uIqac2A4 ETC82KEplac DQYjgqnTmJ8 fpiyrd28vfA RF0YXIambdI vt0hblIsHiY hLCjV1eOAoA 8bY4qPadkSo NBQAXiZ7KG4 aYKt-7msPic yGgOimJaqT4 JPasKum1U9Q bCaHwP04KK0 VUvB-jPvVuw U2p88URI8lg Uu31b0VHCc4 5PKVmzdQGwg mK8ad1nYFQA 5sFu4iEF8dk WzTIhm6YMQk 7GIxoAbxvQk LlRHSFVV8cY NG5ijPnfYV8 P1_QqWRpUQg HPwD7sgVtkA zU3Hs36FIrw _6dtasEqpLM xxFSUgehWbk zrR9re9NV_s LRPEYUlE8rU IG4FAGxZvtU Rf9V-yzCzR4 NNzMjrJQKsc 7_hS3YLPHvI lJ9V5BgkzKU GRG-2ocGGnw Rdb-5NHyGOA 7rlvmkQy4hQ zyJgcHwLP3w lAklD2ULzh0 qDc-OGF_NJ0 WDiwa8H0DTc T4Sk7RsIQd0 5MBUVKzIyPY 0wFkRRILnPo yb_-UHyPC8c yLrN6wSSGqk _SQr8I3lcW8 4MG5Dy0gFFY -v-KiIuYkCo nHKJaG3sXMY ZgngBG5JX_M NVR6-HnKtM8 f4ojzsvQhh0 fJBrWMxc_P4 8WqRrq_lM14 OseaEf8Qy8Y RH0zWG3Crzs p84uEGZqFlk LJY_pChREVY -UAElWXbk3I 8oi8aVwb_Tg yywHSkFkfU0 WJeOTphX47E 32JbDv50hFc obDVqhso9l4 IPEX_RXRKgw 6QoON2Vq78k oqAu5fVDwAM 7nO7han5KIg 368Nrtkmrls mKgy5W3S6nw D-5P2iMf_ZA rZ-_UsEBT5E 99odqGVYe4g OSca1EnBNJA UHqUN3um9Bc HvJTquFs5Zk u3M_YKjLOkI qO_4Up5Q5ns 14HerspIb_U kQQfoIy7SNI ZbKU3_H3FVw B_4YNm9mMvo u3UyGrnv1-A PGqBHvtmtgE Dl4hTIp8QbM RK27DwSEetI bQqcnMHjxvQ mudt7nvWwo4 0GiMAf9q3hQ MCwQ4tdtev4 DUhgY4ohhQA aURe7hHL-Dw G2UTjomYxkc lpOdAHwRnXY UpLg7Ma-c4g 4HWP1l_KtTc dgJKcCZkXxY kx2FhY_akDY iXfhOj2PobA OHAVcgjGDqM eNK7N3AwVFQ jj6ECLiWbxo JxL2yg_bRnQ FHmPBAJK4CY kPLNO4WfFJw 8dhvm-ph88E ezRPVES1oQs XmYC9RAMVeo vGvDCmuDKKE qhAYzFv4HYc i86FbeyKK1U _xNB1WCQ5NA 4gjiQwh1p6M uj8ftsuP8T4 4J_8tpDzfAk FiQnH450hPM wixLlPFJgyQ lPQ6VQzuyxU Lw0Nn1xSMHk Obey6WggwjM ZVuhyX3w4Yg fImqZCIebuw p0-xbD-mRLs 5RbN0rjWBAg ujX0y3zcvP8 uMH_Ajdp3E0 fLvEcBoOpnQ bbJEqSj7Wkk L24hGLbmNrw HigxGvmHEdQ C7Rmtxf-NVE q74RKOmIjC8 G0yU-YJ6sjY 0wC8Ab5AZeE Sk9mR3zjrkk 9l_U2xXb9VI e4yCxKv-2qw MKl8s0EO5T4 CDywMUdVPqk oMx6C31dCeo quJX9XLQe78 meSIVfOyerg 1itYlP2GpI8 TpGPSRGrL3s Q6Fuxkinhug T2Y7oo3iB40 HQYiGnCpZa8 6_nHubnKxqg x_75yMOHMiw 1TNL7KlEI8g XDXuWwNXAZM iotRit7KMDc 9QWRxT9oHYI XMrWXjOuv0g zWkNT5A3wIk jn2weAEOp4Q DsYP0ql5mzM IjMTiKtwyKk i9NIwHKBqy0 ynGvGgy6K2Q d6HReoQl6Mo R-aJ-2y5ICo e62uLLsvUzI 3rYbV-Q-VFo yedsblplSMg ypvrfx32T0s QFOHhusNwtw 6oyxLFD2IIw _XbL7lG0Su8 LxnLNUq0abk ADMAw7UKLsg jmgV3OFn0aE Q7wHV0r256A CH8HV5gXQB4 69RNNex-sig i0p2X2rQ6Ag VcV-ZLbd-pk TLZClsaDEw0 9EV3DKPo-4U BS8zi7Dg8TM En1SvG9tOSg 2fc36Hc2n2s tCb_6mO6CmE 5aBsRxccPJI 9ofxELr5sa4 c7tvfdSjRE4 a0QpNMW2kws 2ah3GNQL6x4 m0z6-iFR-S8 6NRK8ai2U0Q --RFXQ-Xlac 1g9QEQrHOMw D5Oc_sYmlt8 hcqpyBBYg_4 5gV4JcPhi9I yJJA6WRpvlg h30PnSefeZA APS_K6M4Qac M94-kf_lXUA bd-fVqwNZaQ ClehpiAu764 7tmC9Qq5RjA zZGqwY_J8Vw kmYAgJwpE-k 1RBwoUbvxx0 mO5UNbKzcpQ GmXGVDnPU9o IxnZIoP_5J0 SoL6a37d1Rg 8C9qRHJxOO0 hFICuHeg-CQ cH3mtHI91Sk lK93bvZ_fTQ 6f_Z5OBzY1k joTY2Wir1w0 exVcH3m_G5c YY5cUX_o770 jfk6JSgLdQQ Ixj8eXcClLE TzHrqDQ1OJM vjeGS4bwPX0 JMIukdtLDt8 nNLvDIcBtz8 _wD15vBDzgs 54LTsr8IAU4 sfzVAilcMAM Mb-3XGFTpLQ A2Eu5xmslWI 4WuZapvSL0E O7why8Xo_RQ HUmelrncGRc 3hwRv9BXdOw 6q5a0W2pxS8 9V_bukpqoPY Lyyc9S3iufk PTENrQnBtXc XVINVuRkUFg DbqqjC92PP4 Fi51abVO4ac CaHL7bVTtQQ 8S62emxyIEA xEU2YTN-svo HKpWEkSUs9U BFeuE0wAHnI e0WpcoS_fU8 pieqR7-byq0 ByExQg6WGeE mZ-yMd-bmCY 0IL5GIcAS70 hrVLeHMpsDY Zvbwq_7AeU0 BAXWxuKhcTc OPC2Ahuklt8 L897JSOP21U p1YmfANJdDA EC3EYlsUiAo bmgWabhgTyI j6IS8ftaiKg EXmDxa_WlbU vU5Weh2-5Ow sF6TDdShI-U v9vgJaU3g1Q _x4ZoZAzlL4 drdEb-EYhHU jYLZsEioFig pGeODfpFpUQ n9r_Sd0cy6Y E7kK38uDEeo Gh3l6sVwMlI EW4_qWWvxfg 3eGHDodwIZI cKFA0tZIc5w u82elZ1sGVk KQOWuUy-7qE uMb3tldMyn0 DHMF-bVxlkc 8bQQIy5TKZE tRT1ASnVfmo AWMxhZbiXLc 4LaL9XB_Cx4 w9pEL5BVnH0 3RWATaK6rC8 OwBlTJrvL8Y Sn25NmBKxSU s-DcMXlInkU X9f_YUaQGWw uwstRxD2BkA mQ13lRBge64 pDv-C_TpyG0 idr40IexHQw _OabFZytcp8 V5B75zKswc8 vgEI-Zu4GQE 3fLWNvP8V98 KcG5AQMRFVU Z41Lvaw_W6E MOJFi9-64Qw ILwsJ3_o4es s4iqKjufJe4 4lzhxfuOW-A AjeO7aL1efU fWLdsqhYVxM mVbGpzsuNjE n_c7JtDNNUo n57MunvVpIU lfrEnzxJFps hXCnYkU0Xy8 09iu9EiAtKA qgE9Lbwyzc0 2cSY9R-ka5o d2vcACp2hNw a4-FtMD0_sk Q7w2V95g5ew A0FU6cYM9Vc bOPnZZMObXU 3nRy9hw7tr0 5DefW3MeD_c n_6sNnucN9k zP0dxHW41kg Rr_zj8D511s -fJwmmnPHok 1eH4YUzgfN4 qSU0iCmocCE VIp_DOwafcg 38PbAk_SMdo hsBtuhWw7RM CqgXhXx-EAk sYEGcfDCysI k1z5PejkIyY AOiL4JRqh7c ct9y-srjYjk AdiEXXKIcpM muBDF7g_mXY 9Xy3PgufXHI IHDv7SriHB4 Q3QqG1UavAU gL7zD3RjgTg S63g8N9Wb5c jmCn-jfg8Jk -a0vqBmrAh0 Oa1LpwUBNAA tdmGoIYtHzg Aow66vqHkmU arbY3Yvs_Sc LNIKYmO7noI DGhV02r8Vq4 l_nlMehIAqk MFx343hujgA PBXIOvTSzao CUJJdnMG7VU dpAoVOU-q60 N1xvQ7iLD0I v9kQdDFUWuk 3lX50Lh2Iec ClBUr1FFo4U 5F8dAQs8Vo4 a_OuIUbxu6U y6daxZDW37Y CnT7g2Dit2A fD1FCHmu2as AQnQ6irZyFk NAymJ-WVGOI ptj6u-cdPEM so4D0cpOaUs f7oHNrQzfis EmRlXmyl54I gs_g4ai4m3Q tTtKhD_s3mA yjFU7KJH8AY rGw2mX72ytQ Fjb55wq2xuI iNqWC_4LooU LlUWLkrBL_Y EFmvTRmRtms SojaL9M5Pqs -r_jjQ_idz8 KPpwiCStA54 4Os7yk5rXtY Pn4mA5BIzxg 8KjvR8FpYaQ h75sq4lELLU tUmKlW2VmKo WUJNkDE4d98 mpMweFgS2cg L5-JXPcM3RQ IFbKYqUofRs 8CsWUwcJgHA tu-cxDG2mW8 pm7LihLP7kQ kearXmroxUM p1lnXM7l2_g F5bAa6gFvLs 3obteqT0VJU oG5vsPJ5Tos 0c-UIkfsk1U eq5NSAyQEtI dCRen85hQ7Q yo7C-Sp_-MI wEByIZn5qeU 63KOboifCig hPmV9DBCrfQ Uv4YAx1nqDM Fjh3TxOHCxE ACiCfGoVIJA FWvAYNw8r9o JyJBz7Z2EWE EhAiY3hTPpo K_LGi3aiF7E W3IgFbCSqSs sOA84te9mAw 3ZPlgOWbkcY ojydQ3_FDqI XFURgTgl0MY fHmesxUDVz4 EVlaur-kEds 3TA-GALQJfM tjsQP94DIfM sdtIgE33BvQ 1KbamNWEfdw 02A2a-aEvmI mX5Vqy1ETgM 8qohrMCMzLc qSE4dF_Feng t4zyH4BsmgQ 8yX0E-XQcms yRPwDJWhqis 2cjvwTzhG8g J0WkBVu2C38 YnpzAImvPsc GhF060VmS1g Amd3bMqEdjs 3kaShGPva2Q Bu3n2LEcUbg b3DNx3kLY58 v8YgSZAbKgQ ccNvps_rac8 HJhNgjVydac yyYfKxW1T8Q Wc2CaWm1Gno 8nHwpjCIJqM kt5pjPdRDVU F9ktw07IEr0 SL40LOsREzE yAbQlHZz4tU KMUDG7AOw1w CoHgpkuV1hU EEGg9AZmHZ4 P5ooU8rf1f0 oEOsbgXpiNg -nXBi-mtvR8 bw0-q-wjSIM _SVlezvh3zk UaqCBqd8NcA EVdo5BfJMCQ JhtaGVmtcwU qemi7V4jUjk MYpqwTSpp_E fuJceBJIp8k 5GlQJ1kKxMA _Gm42rDEb38 AZ_MUktgWxg Wjm3qeQvGxs Z0092DSphF0 Yhiy0ZHMyik iJsNpzHlrgs cqeUgjPpCCM -oWSoBQzQNA Htt0B7bZ4tI BlG0jGX34i8 QMDO-3fqU0c uHEG_fTDZss c8pZIocR-lQ zlRuCc0kYQ0 n3TNGpjl-kM 32me3lMxEDU Vy4OBSqz5dw 60Sc8RmA458 wY6sZJKyxo8 eu2OiA65JOA cP95rCyLijI JpYjN3cZR3U dKMVUS6TC2A lIOwxzY4M6s _5UWCkgkSzA wrAksGY1TSk 3VgqDRrUIOo d_8TCN2wA7s 2XgWUoUe_lw mlpWVL2gHG4 Ny1Q4bR5dMc DfDQo7Gm8CI f-ZCZ5BNloQ kMjUZodyvtA c0pmWNOt3fM -aH-cLQqwHQ -W2T5Gm7i74 ZhzpLQbMNjQ 1_NERqSdt9U YBEUHTsxyXs PnjqfWEL6bc fr_9D8OREfk LVt7Zvxk934 YH7W2AR9b8w XtadtlSUNQg FhAIXOkAUhY cvvweP3N_f4 OhYlQ6kSQFs 2x5L2L4XZng PcRJie18fYs k5kTx_bZznU OH_cAf9RFSU y69ebASPg8A ekOi-hwWNoM H7H1eydzTCY 1-G0Fxf9IYU M_beJ-qJlQo iyPGMUFQiW0 GK7IQ-raJOc w-4XyyU2w9g Wa6au8A-3Zg G_0o3NoEXJQ EN8q8mJrAZY ndrLDbtM-CY umOy9nT4Wpw dM6waznJ7No GhaxB8afkj0 6svLqrJqoWk ihyRhFcUVto fuOY4W9QFNI DNC3OciAF3w wp4tgWYqjyw t9P2B7NUPfM NzbhbetwYFU 4w36z7XnwOM s9JqbCH4aVw OwB1Fd-IeS4 DR91SIIPCkQ _DK3DYHAQvc yE_JbyAR7qY VN8DStEDHd0 vWyTTJE081c 5WuZvuZjk3o UzBE29ENnjA zoK9i_LiB5s FonBCrV4Fqs Til9ScLdyv0 s0RwiqEDRbM VgyyxiZGzNo MosezS_qfk4 JlpBRPIgoIk A8CNtor4BPA Cer8qtPJiaI IGtoG5BnW_g -p3FtQtQ6q8 onD3Eppv3EQ 6lzU26KS9yw iOb_w3y2stg C8IBujBZjaE nXqdGyqR82Y 3gt4aiQrmb8 5B5VRYzzz0M h3Aam5h7qAA 1qbYMSC8ggg KuR_Z_vRD2Y Vbw4I7BhEBk _vjn86zTNVI hUz7Nan8kpM QSWGpf7NQ7k sY1NGOTGpUs U0sp1K-D1RE 6OofgRuJnIE n5YGsbi7BNw 2eqWGVKtm5w jnRIqedIizM ShqQo3JOdew fBkFWhWXWuA y8Jqk1kPtQI eswi0L8WNzs cZP3u5XAeHk -uU3MTcwg_s 3sDL4LJUc_c m9Wh66FXZJQ AO9pxLEHVfI hqVbOSEsJNo QQwJyX56Z6o 5mEsXz-Bpog q9OUIk4Oaq4 qSabiG8q8-k JjIXwkX1e48 P4KH_RSZyl8 AFk0BnxndMA q-1DREuXwjc jJze-x__3o8 uIJDIumyakw mlAtuy15iIM MflY-IYl0Bk Utt18i8DSSg PSe5x7y-kVY cx_45Z56ZQA NF-httKm7RU KThMkPl6q5A 0j4aiJowI8I lgwJVRwJn3k 2GXdTkYEPm4 aqbP3OofrHU S32b64ns3fM q2nChVvlZ8w k7GcyfPypGY 2V0WuzhmAjY Ddnox9DoK88 NSsW9EXadik HEGucJf9y-w quzMffZuuCQ wLaXJWcrgzM lWTyXHZu09w PT3GmTvF9t4 0642x0-QL0Y JbI9xgX8H-8 0SXgXYo-Vk8 sh8VHDoEDik Tg_qXTVaZSE EOCgXlRkmKk vvWyQxD3ZmI 4VfWFRMVM_M p0WBxRosKq4 QRHGpNm96gY j1CC9YKFpXA xEQ_h9zO4II jC5O4or6dB8 G7GXq4M7SuI FBpPaF5Kg_Y meBbz4hop-w eOgMuHykBAA lrvMjEmOFhE owJTZiiUoUQ nU1jeDXloRs A7UHJpZ4Jrw Wmu-F4mJ-eI 4CgNb8LRtng GwYqUTPQT-w EMga19u0TaA 11TGIP2Kouk FrisJJ0G4N8 YpkqDHGJzJ8 pnqh4SI-E6c oZrpLQFH960 HiMImmy3l5o O73Q7jd3VkA ca_Ac4lF2Vk ViZ5qXg5xQA bLqwpb4eDeA a2Nw8Hen7Bo S7C-PTowNSU RpatQWLKfAE XZT1cB8KU_I ugXeKGSjvKw dfFFgV624TA gXv4mbv8-cE W1Ipb0WpoGI SAo2EHsCPn8 VWELyY3orwI 7L2NhtAzHYw _DgOdOLNiaI solCkKfZObE mIM8G1SoJAc Q8IqpcS31Xo tbcg51lQx8Y JgIJDix2oy0 _3EcvKXH9zY 3ZuQQQTv48I _mVMG_Rbk5w 6IbECSkNmiY 0eBehC1Ky8c Zf_Dt4lo_3c Ddet2d9EtTY xLL3-fP9NAw 2UCoVnTjV4k l29oT_LWdfM U0Sk5u00YHs ROO66Mi8gTY DOtd-mykOhE zDYk7hXvQ0Y dOObdbjoJ4c SmLwnNTfwHI b5jr8NxFS-E VT2pepdAtJo 3JO11PBdCAo IFTHxZ22woc BX91rzHyMv0 Xi3ymXEMyjU H1SvA7bU0oM IqqznoT4Jb0 0a_HvCBSa1I utKueh6Yj9Y N5i6B7WyZQE FDxm9DsmBk8 1Oge9qUat-I ij3HAftwQQ0 B6E_rp80QMc 2NnR3gblKYI XsdRpsG43WI 5dA3DePirsE -3mo5CqjvWs eX3czjlDO5w 5lPsmFSNWc4 w_tQqymkPdA e9t5ikxjAQ4 __yiHzuT3ig KcJs4qJPQ_M yWPyRSURYFQ mvBtzXZWWG8 FuXl-Pmr5kc 0NtiiKd1HnA IlIhWS7-x1Y Bl6Wk5M1vjk CaaKsf8zOyA B2TqswpzDlg g4-0zhNcrnQ _MlQzLtPA0Q PzocCTnSU3w kqVqHxVJCaA VZFMY9mYu4Q FNaOG7EN5jE bgCUriRuVx8 Lt3HDRrYt9E a6kk9d5OQ-c GO4D8MjC6xU vHIbZ0uOAL4 GTv9dFFHtW4 1zOSmScTr_w gyUrAK47OY4 czIb_WZRk-U XmhfuDf1hZI zX2LRszGCro spwoWkSEmsE oJFKZnePh3k KV143Jx9hFs uwV4iMoc7xg MMeHpxjiU0U BT7WTaXcPLU UrUNUzp14Bc piFTKwqrqYA DYsJH2JWJTY 3cnhsHMhVZE Dl8BO_ZLdEc iI0hgr8Kff8 jkHrHAKwPZk u17vCX9koaI 4j9EwcO8tDM CxxuM1HCI-8 UubHqEOLd8I uSkVR8Tbu8c KNyFPVliMEE yXl3ENKGAUQ dSpTTf_dzDI quY0mRlL5FQ FBV_POzEeks L_NfCmTkLPQ wReulnRQA-Y qMwvHLe5m3g pE4-ePx_OAI UW-Y3QyK-aU irglc0zZbvA 8tanKqukbfM QAUmchzQJAE 8DrzN7pcJpI c27gUzZEjvA Od1ZBTstSHg v0KOJWyR4SU SI7LDY6E1Rw 8W4DxSCopj8 9r4784rihOc tkN8fCU-rzU ewwKExvkqXQ UephHvStdWw eeGuOguh33o QcubF7zXxwo ClQNLSnl1ow m_xLtlNx7Io fOHbTh1Wo4o 4rJgIW-Qwzk Whw_HyeXyCY -WW51YaWO-4 fRdo188PjXA bBg5uLCQrbU cyrDoGdif_o EddCNkvpmjw t5CxCy7VC7M 8K84sx9EJzc iU1C20Ap8og klz6IVHfHpY 5HaKHp8glPc _7vyrudcgOQ N13WI3oVda8 ILwoKfeDJO4 JcuE90flGj4 NZ94hNaoyLA dLpCZ8g5uK8 US9enXEHnR4 SzO7T8P4_JA fZXtCHoRb50 1NQhKtWHtmQ -c_ctZ4lUCk WjJQ6L_BS58 SuRxmapiDeU NJ8rJ-i-OKE LdsaucLvRb4 81hWxoHF1uA zCv0AZeyCaQ zIJgAMpRG-k xg4OR0Tpy6U p-YvF5eXwYM iBbWqmzzKMU 4qMv02zxgdM VsdeqOdkdTY pPZMrs3QGug _cZZ4xkgUBg NpiIAuEOzmA m2giPgQXSn4 0EC3NTMOF4Q _dl2L4v6ecM Vd1j1GAExH0 FRdIXmfm6PA fxWE6pnuPzo 9RTPdAAdw30 ZruKu2N6nQw WsrIYleq2KY FZ65jfSwpAk tN4mmLewz_E gLvcrsbliOo rW23RsUTb2Y FKDCoc_i-ZU vUgs2O7Okqc u9S41Kplsbs dPi40lQetew ayl2X5zfUAk q4Qlk7sfZfQ 0lCPmaq960E nP7OKtlMO2w OjS7LxDYad8 3skIjrkta2Q j7PgnjEiMcA i9Iy9amffa4 PUV_2cqbrbo 29E6GbYdB1c Ciq9ts02ci4 er2a5WhYU-4 rSPj_G2yVz4 8cp_Be49Tyk kPsFoudYVSg RY-4FCh9UFY qdK7QVuaSlM YGf3jBzkUeg 3fbtYisNC7c Sj8eNDOZAAk qhquCQirt48 QRizQTLmAMU RjYsIv90zWk -h62m4d4MmA VE6K18Mfln4 88HW9wtz3F4 1Oetxnq_OG4 QJFwZP8DgVE x0YLLkr7VfU Er54USCnsds ZpXzLVGlnc8 D_A6gdlNh00 ycpEjbV4KRM KZ04pEN715I 03a-vG6wHDI ErqotNH65_E BWWFJ2yjQGE yqTTejoQVXw zJ5Nxx3H-Tc Y1aP-YyBdIw b8oFKKPfgi0 8aW-vJWY87I NaGkSrOXOp4 fr5rDEInWQA MqMD1DK0CTQ s-pgK_Rvuwc Zd17-69y_i8 0yOwWkbamyM bsBxt2RpiIU 3dMF8cHKHZA HBdaCz2BeoY _ElAIqSBTKc j477dAxaeck z09OYmZg6-Q y7gfbVpraWw lxQZQ8uXBwg hOgBvXEmScc c6dmj-WpTW4 Zo3a3XvzTaA 8x_8B2imlgE -yZVme3ToO8 z_r6KUYYO5E 4uHWjeoTol8 g0AMLVSBfSs Wy-H77tovC8 xp7F-8G_bPI fwI7COVTitQ MalJ_GPU4vI sJwgNs3BWYY Dbz02p90CV8 ZuVe3leQQgE _YrNQaXdOxU T6RkPxawpY0 cvmcGY_VwvU 5xUMeF5rgQo 1m9DjG3QRzs B9nqewDmx2U FZUfhfHbjE4 5WuYr3fFNFg -sv5DJfslVM Cgd47hmpvE8 cVIS31ghLNQ w7tqVEdyteg AL7UDurxc3w 9t8iEpdabms 2h8rH8zxA64 p8fPj1-nKw0 LpxwR_9EhlY mZ2kxdQf3t0 eFqD0yeyGTs HqT0L6jFMNs CYGtLUZg1xA 8NaBHCuxqhA 69vn_WxKBUs pJJjycrT0RA hgzSTQiMxj4 0tjKGAwyCIY 4lat6XqtJ0A Du95opzY8qg -WmDszVxti0 cVA4BO2v7zs Q-LFUnE8zzE -T16rxR-nCo KFJmxST-xRI 2vOhL_Hw-gg TTLjOAdckzM jT8TUowrkLU trPOKL7Nguo n7cRx_7umjE gTVoFCP1BLg M7tNqjsclhs QmrEOTm0rOc PwjMgnUNcBk eKJv3dWsZ7E k79KJYXrBkc Kkh9BnEDT_s R2Dxx3_iF14 PcMHygYMF6Q 5_yRovTM8sY fk7GWw7MagU L3YhZvt8BlU gEygOJWaMk0 O5Dec6RdFzw nqaJ3f0z3Lw nqz6wwDRWiE O5tNdOzsbvQ w0Z44BIDPPc 9blGmvMjHlk td3p2XKHP2M JVgqhPqHPa4 GA4Ozqt7338 ZH7hyzPIbp0 oZzS9hBwaqg uSsUoxlSADk YDDzjijc6jY FNSNLXNnx-o gP2sCE166o4 ZXHuGyv1KXM 5cqQdDitGuA NtgFKdWcKXY i8WK-3pUpwk HOp1wRImIxY 91nfNp7MVIw avt_f-TaDBs 2hcVZo8jP6A w0C4gjdag8o wyaGIaJsmTg rx1TXzxMEfo R_VEQI2nS48 NMaLs9vr7ko kA10xksmpCI jwrWJXtNYWU U3nWo59iBg8 rkrnVkFn59c 1T53iV8HKXQ I8ilwspLbDM 9VEScwL3KGQ JZhLiJowzNY RBrzUwP2whM dOnoBJvtVMU Y3Q6BzRtl5w vkoJH4fum58 jL6oromerXE 9acYlZC9RLI Q_aPecwFK08 qhH634B4jGg fZ7X5JDKmSI MEl5g32bzMY 5xiAs8GGqD8 PcBKId4l6LA g5m411zcNA4 Nd5HqEJuY1g swpveBgb0Zs ZZGHXZmxlZA C_4mdGA9ehk DnYv2MyCXss 9CmgJI8aGDg W6IeoTNRVf4 4Albtnu3zyQ HWFpzw87VZM 8YSVapFtvtU 80ZafDq4xq4 p4SqclCqxuU OBWwzOCkE_E 5ZzIGV7JAwY wq3EAVEnW8Q zFgFyCSZUvU paNPEeQVCTc uRxCU1MW8B4 dLjnIpWhLZ4 BJ3BAzRulPY NrDO7L8jXWo t9eDVFrQDXM FnmVnBcfpWw -o1N2unFkSs Ya00KlBMEyc JMBzKJj-nIE mm93ELyLN1w hERyYjy3O3U eK5PghRFnBI unl0GXfJRLA ftAorMqqjy8 lhHv2EyaaNc MfBkwdh4GU4 OkvebeqIrqk hW1KqOVCeKw wV-0rTzEedk hVQT9mDDeJo X-_LZp9jUgQ 6bANKvFGxGU P9Fg8M0JCHE oNGklu1muXI b_wnD6jxREU kGpNxt3bD6E 9sx5r-n9uYE 0RlJNtKi_Pc x0Fnxdv5rJ8 nOQCz7STLIY be-Ou9Xkh48 M4UpIJYB9Xo QfVKP_ibzsI uNPU0cPPsmA 5aa_kvfMxBs CdQ7AbtXZaw mRoffE53BJk UgFBbUinHSw XjTFVcgR0qE IRvVdVENFmo vqqGZBRBLcM a88BNDMlPSE n4Mohc3SrHs 05nQ6FtAaYg Dj8hhzx9Sfk gGKNhGbPp6Y uvPjPzmUC7w GLH6JPoOLJY yycyKndEWcA 9U7_NBIHsQk RMGsvyrEB-E fpXngRB-VTw uySQvxQHbdI T04I6guPabI EY2tpd1CejA bNkeBqdWGzE wuZwdLfxTQ8 qdrvmgnw1YQ 2g7MZJfmBA4 On364s5HiSk DCSeUhWzdBM KdMZwqYiRH8 eolBcBPpwyE 2ovvUa5WXU4 nImG5bpVpVI PnMJqjE52VQ rpvLdqBrY8s YHJnS2dsT-Q 3oLuIPYxGpE -qG1Hke8w_8 JCruFiGN5h4 9Ihxdc2RbIE AoRafeVBNvc ExI6DdBEu4c 7hKcWzt4rBA 9HGMxZEl60k vvDkLhvUa2o oD4UHPNEZek k1pv94Y0fbw CJBoHk_Ld1g KbKQQZsQJwk YIZlw1Ou77Y Nv88ASiLmgk I9mJ2oBONug -98BSUhcZtY A-FV2T68Bz4 82KgLj5UKUc Y3Ij2iWHFV0 rm49NpSVgo4 ozAXbxleK-8 -C7Fcg58rZU DWl0gnig_X8 sUhg39GEqGA ZKDQJGSNJag 4qg64Ml2OdE NsQ4dm3q8f0 35RzyYwEnH0 E_wUrAXTbPo _Xe_d5rtWpQ mTVRho54mAg dSRxB66FLV4 WMhx09c4TcQ 7eng0FHSiNk M1VNPTj-1uc udn4UB_EZ1E aZiDvfhRpz4 vdpUDOxQ0ao mAs4z9GV84Q BW4-PA9Xksw ZERmWM-OrK0 DqHxOQWW_Nw fvuqUVSwpPY jb0Cjzd2lKU FRaIvI54IOw 1WybekasErM 3-EGP38lS5E 7RLU1N4-8SM fbYS5f3GFek tesqTwX7cpc YjaEc9KUlBI mkn6s-f8PqM DQO3aIpmIDg 0lNb6NAV6jg aPvptS4t6RA 3KNEj-B5HB8 KE-ok-meF3E 0Z286w5pRSo zH57XU378EI yFMFSxDF3uU Xekcysu64Rg 3m1JShNLCYA 25Lb1YpSEic _fibH0WUWYg HHqi6ZB_F0U rzXNFMVS7PM 9DaWcHIGk7I o8ETRMZt6kg 1OCmZuUVZfA -85ubSkzSWg eVarVWL4PwA givOs4_nb-I 8WraflY6rl0 bQzBPo2qRuk TipOwV7y_q4 pPjYhPGkhGA RoCmHW-wdtE s_PLAOcbbzI mV__PXYxQYY QbVzoV4GgM8 yaGbKy7gAkM 6HT1K-XoREU mVcHdILwsXQ EU70jtTYN0E IgBQwCBi8vI SjNu8J7JQMk t6FIm6TCkCE kYcvOPf4GqE ST9DTmR2xG4 uAS_k95ZRUk yVE7YDYgtHE 1JVewdBZyYA D_Acqs7T5-0 FF9t_GekWjU VpehD7unUGw gILsE7uSUkA 3DmchoOLczY wz_y0fibuQE f58Ba78abHg Doq_EUCSB5k RQH_q5kOlCE je6L2clZOGM KM9SPmAD6M8 kI9rnng7ns0 AXukn4q48sY V-GgWCBVhrg 6DZ7DfrTDds aeevxJaJl1U rNjX3tQMygk e4pMjAtdmO0 Sk990pKn7vY 1atAz0BIlm0 TrqpRcocmrw B3rFARaSAws yusKlHgtvIE 920BmIe4nN4 vG6bW7_-CRQ 77XaekZUvL0 7JlG7q-ld8M 3mycwnQWlug c38HJR-9vhU 7kMyom2sHyA EnFcN2CMNps hSe6p6SLuvI mO8roISHjJo q6zi7XGjQQw PJkmvYEqRVE LUi7mkGXDRo 1d8oqIXtjdo qBFSCbptrJk x421Na9VfNE euorMDBYxrk gWB-uAtqUIs nfk-kn7YP04 Y5drWYjmJFY CJGNkuaveUE 42ikB9YlkW4 kZQwVWTB2hI 74256F5BtiI fpKl9lrLfx0 BxL5O2tuDtk yJBIO7B_XI4 _KpSBVJq7jo 19q6jSWFPCo Pqw0GsAAzEo 3FWjipa2Ztw C3W5kkZLN50 4t7GADjRIuA l6NIVn6_m1c l5s3_XV1rkA Kr9_dJ6TPPQ OHNZUmdqdv8 wJmIEj-uVYk sQ_4m2ocxhI pcqaeLRop58 NQFMeyWVe3g wMgKj3QGv2o oFwbpFJpQbg Q0i1ldFm-oI 9cb5Ka9SqGM E6yFlIQxp8g Yrx2bv_LoG0 SoP7TLCtylg 0fwudBWsw9Q KKjCm_IoPRQ Z7RKrb4jLOU NlSuj6YIG94 FpxOLhuNXfM r0ladY1kwco pmLP0QQPqFw cW7Q7UySxRA gTWo9oLJOWk CwdGYMM2bHM dLjNzwEULG8 dnRxQ3dcaQk nM-RPO10aPY PscRUlsvhtI m7mbDPykHoc yrEvK-tv5OI iTLUzEjV3Bg iPt2PNpjOq4 ghew-s2zPjE P-sWReV2DDQ O888bu0QrMg 0fTXzdHoip8 d921M-ACMM4 GjPCk494e5Q pwOhqGhP-mk D15HPy4x73g M0HjlCowwuM IdOF7xg5lug v5Co3A3fLBo JylK4HuKMvQ PJlmYh27MHg 0WtDmbr9xyY dYDxxHrlmUg xWHYmNrAFlI 5bieIiX5KLQ dyxcQ4FV6KM hplpQt424Ls n-mpifTiPV4 Fe3c7Txx0Sc 9tGWHkKzeeI ydLJtKlVVZw Xei_IKhp9tU eHh6bwuPShw 74ocbvwam7c -zIzLRgwdxA lNWV7T5KlRE 0sNSVtTcxpo KuIheGaiFLM 4EUsnCqqc9s WlcH-5LQbhA Ky7ncpdpMUc 3VlyZIywY9c pLRk4xG-JCI uGstM8QMCjQ W0ZgTVoA0eY GCPMRHNwR8E gkfAyFT8xGc K0qG34a5oqY oHJVJ_MEyQI o-iPiN_YHjY 1AtE54HpXBM coDtzN6bXAM GuuUX-4_K-A 8CZ-ICxcEYg Km6bFBSVty4 8ktMe0xclxA zJiCswIaIkI Mw1Z2Jlp9Qw FHNT4E_55jY 75M1XXEZciU 5ztwns5PkJY 6xZif3WmG7I a-9990dlfvo VrVEHszxL7E TaLsQSCK0Jo 0xWMqsZOYWg GzeNMZcP8Xg NWcBwgxUyuM 2quc-iQ96R0 jFrVoG-edFc LMagP52BWG8 EHV0zs0kVGg 0IWdfqsImMU eGu2camh0WA SldtDNNTA2s WULhkipzltU RdR6MN2jKYs qdbrIrFxas0 HlXsMMnAlmU FROgIia2cb8 iRmIef02Ajk ZTT1qUswYL0 mHh8PKWMQEw 44TG_H_oY2E q7CX_5D6y6E aErDEFpoD_0 8MmtVx1A8BA oaVuVu5KXuE IIdGxR-aU6o 3Nzc3Rezt3w ujxDA9VsQG4 ewkroL1cP_Q 20M_teQf-l8 olXUIcb80N0 sTDhNLLglf8 pnaWqq2eRcc guMVb47aD-k 1O7AX7tqEHE KyHilwSRo28 mS5WLkb_Cxk SbYzo8L9DLc 1jQP0Y2T2OQ dht_3NziwSw 0B61_5sRoBI f_GI8syIgIs Bnx95KyQEAA Zh6NzOHOU8s fbbatiKJ6rQ DrIsPRZL578 Dk7DE4FghW0 HGU3PRBxQiw SMJqQ3VrcCA 83Jr_6b9pHA YBzWTIexszQ JCKh3Jsge4E zpmLSGixYwM G-ZJbAdw1Rw -3ywc_7_IE8 ioTMlrCoU2E IZocpwWLsyE lNXTKVxOmfk -LjxKR0q7Yo p56k6QCjJnc XoWvE383hm4 VJivXSErhB8 NdVRDlmWhg4 N7UtdTiuO3w nSQ5EsbT4cE apq46lA0uSM 5tbx8osZ87M jxsvzuRl1O8 n0ZGibTDo9A fgcWfVvT_UM DUd5RPVDjPY BCTFuIw1Bv8 S1i5coU-0_Q aGMhMCHyM3c SOcgrVL8Dg0 Mwmy0awMZXY tXp79rAS5JQ tPImdMknAO4 XhpJ11dNp2o zZJ7cq6T3v4 PeGDBR0Ej_0 QzklMXES1BU f-77xulkB_U SR5BfQ4rEqQ w-VBcSukH_8 95_DB6GgLQs f2c-tMZSZtY KPeHFDxKUP4 drvaZz3FWOI QAygM0YfY10 V3RHvyrqTak kxtAmNDjfj4 jlFLcKaBLz0 1VEcaRh4c1A ex6X6rXcXKQ N9hJ6pUeqxQ -rq6IBVPcBU o9splceYBXQ q_215iQ7KDs sOLnb7BrMC8 OBJ-MpPBDug yuI8BfvTwfY WRR4iYRRBLk 1VZzulIl0DI I3K8xBfywg0 PAC3F5dQufQ FvYtbd7YE3k D7P4FYWHVYQ S1EsCWrUY84 r421zjv-hoE vfIUYDjo8WM IUbn5ss8j9c dXBUdCvqpNg W7WmhkO_GWI zhnB6vIifkc nyn04CxGBLs fCjsUxbNmIs L-IoFdCv_Hs duT6QvbGAls KXYxfwVioeE zi-vtjCN9Rw WOjsnY1P7lk Mo_AVIt369k 9UMX4dGRYEw _2LMj-4PtdU Nj-F4OvzyLM f_Pc2_cTQnk AOh4PeDIkWs MDC-al-lnoE GD-EP3ucPNk 6Wx2sfjX0qs d68yRIE9OvQ Uk280jVuH1w Kmn7tIRUImY 59BWCEaowC4 xtRnl5zHKxc 4sRzks3eR-M q5K1fm56gI8 LixsNtGM8tc TklrBmHo7Do 4lQ_MjU4QHw HZNy5irM2YE UWjXERbOr70 az5NDvQ41ys cAM7skQKVk8 LmrLiS3ZWxo 5kI7hvWF_BM YFTbj6DJbGQ 2qKoFdPJ4rI EvCuX-oY4_c I-AhUVGpGoU SDls-ZJDLXE pLKZ0Adi70c 6GN20jud6MI r2ucpHgHo1g HG8iPGFvfxU f8zZksymCzw -BiLCJxpqi4 vTp6sSlv_aY d0xC6yVjU9Q Fz9HnTVx52g dAzXib-thq8 LkyMbgKtCAs MDwNSR0QmBY hL71tkydKPM rRLP7r6OuYE 6NvDZa8hWSs I5cS0_op1IE tdcUxHh3tAc 1B8juGIsDl8 8O8_FMhW9dY UhkYrd0Sg3o mCdbIDiib5U wxrmK9esHpc 1R5Li-f1IP8 P9pa_8-WdlU 6c_H45kt1_8 uBX2b-zback E6N0yJRAAAM dJma8pVAvH4 Wj6vEYwwJFI Fzx9OpDH8HY HIcIIBTJA6o 2-1pev4OEJY 0uSOiu_WUDw mKl11EzMTAE Wm_Z34Fyww8 jrIc1SlA7O8 f_XHjqABQQA RNP4caHnknA U5VW0XTFBZo Ae_PWQfCW1Q 5FtZqXd6IJo LGAfIx5VQ_M uiy-sT9JgRo dnIPfZIKYPc iioBwO6vnEs oOFm9UaRuik 1RIOFzhufm8 fOSuCsgJ26M UKAi_Zpp0_E HU7Ga7qTLDU L1YN9QMKpBo 4lj2ISTrfnE NwJEb3vJvWY Qs_PHrILn6k EFpsSudUhQU uU6LIbi7NZQ EmkAdY2AT-U KTuGK7Ob2QI j1tkwdfz7n4 nQZd4bNOSAI jRYdVUtQs-8 fFan929BTPE PTEskprXZOg NAGgo5AtHzE oXjCj86GB-I KH5Q12Yb5u8 C3Um4x6M8ew tYRzkKtCRuY Va4gTqyLJeQ Bkwke3UCbCQ mnUfDpO87Y0 H-O-z5gELUY Tk5XmgEEHoc mXp99jJtyII ygU3F1ho3gg ielkiD8w-M8 3nc6Tf26afI E1I0hAxGFXw EemLsTG5fX8 OLSHQCAncC4 d7_F5P5PygM 9hT-t19CJ4E vQLNS3HWfCM aopdD9Cu-So z2itQkiQUOE 4IErqIMLwtQ N7LxzkB0imk bhGWWY1nCWw W59U7VWHZ1Y aG55Y-zpxyo Lj4adAAHa68 oY7QReO1WOQ fMxA90YU2Jw ib3Hn188Jwc 77tn-KPS334 dofECCtTfaM uKwwpmC02IQ Cht63QybtiA HFduVeNEWSA Qb2tjzecJX4 bCIXKzeaAAs 1mJf24luhuo m6ux3-Z03B4 DCnvuyK6ur8 kdW1wdpEP4Y 9pXTSPcZEWE 34Rit1AnlVg j5B70NEq_fY hw6GwhfNl7U aEBLrCGhTVM OsI3mSgTFnk u8QMY9JKlDk c9cV7bFKMNQ 5xzDAgFrnf8 eFKh6cYmQ4M LIm8HfwnmVE 8_MpC8PcPQ0 fzAKSbtYBMU 3lfTLYMECtc ifYK21xsVtI TPsW2FYprfI _HCS9AJ0rEI YGEL2muzPEE W_gYRFDb8_A T1TrFjLKryc QP2uPNypJlE bgXlHdBRpjs -eIH1jFAGlY mwHOh0YPpBU OofNBvo-ABU 0Rl9Cxc7uZA 9eGwOuyKu1U 2bujRZhOt9w W7Ic9rZ9OQw wsl5fS7KGZc leQiIU7fzPs _3F3eCypuko KBaCHull47I sz8itUBsCTk u1QIbENq66w o2vw_iYBAyY kgfgiLlW-yw Au-u9RWe0Jo lpyg94OzHK0 sZazSFEHfg8 bSxuXQCEC7M 8QjrBjdb2T8 WDTRyjMnDOk Ocr0aNwQvVg gsGm2Ohl7x8 NEwspgySg5s qVwoeNk9554 bcokL59jeqU fLpmswBKVN4 IZT7xLjxuhs qVhCNgct9JQ VPIP9KXdmO0 WSS4dOe8Ul8 g5AixBKy7b4 bu83p1i0D1A dzvTHhWDjIg z-5iCygFd9M fBlAMqoJ5BA LXekH_8vXnM 2NdymhVOFF8 EJR1H5tf5wE pYwgIQaq9qY ZywVV0T5DcA onK1BeyHSZ4 OfsHMuWn95I 3a49kwfRAtI bD_rWCvgDy8 fmT8JstRohg GXwVNAl1fN8 ShQD76s4WZk zEE7xzwogMc cDpI6Zzy-vo TofiEsdr7YE EGWfothiSU8 5v5JjUZpAPk WJB3hqUsHDE SH4PhFHyC5s yqmreq-dV84 bQbH32KcjG0 HcREWDplGBo Iy2GKyD2IoQ RmISVHxjcAI yY8Pf2rgP5s ckjDSzjU-cQ MLZZos7_fYo nHByIEUb37Y MUn6X9lpOZE kmgRv2V_7P4 z4nPyI-zA74 uBrvKhAs4S4 MAviyhpn7Lg 4Prc1UfuokY NIaiW1XrzxA JaBh-B6F2sk cQ_dL_IMPP4 cbQZ8GK2usU RfvKvTlQHuw 9tIcnydrwFY fNMtHosai08 dJU1SZIfK3Y EFkIZ-Zf32Y 9OufCgFZCyU wZ30Qxv0vtI 9XoPQEOY7L8 63iuB-cSY7Q iqLDCIZ1DIs ZmdWPv5R_J8 0atATbXbQ9g ROhFRFmHexM kr_z37TgQO4 Ku1Xc6NT6m8 OnrORwEG4lQ rEWaqUVac3M k_uINM_XI6I 6AVMcJa77PM mK10Ze-mcQo buRR_o85qhQ IBJGHvt7I3c ylRqJapI0wQ RD2YJrvd71Y -9IgLueodZA TQXuazYI_YU Jdyo4evwMxU qTwXudZTWQA LSqb4e8mUd4 bSdm_eA1Css fKncYRJQRC8 GxGkcC1VrhU gTKpKBzd7jg ozksR8QLWzM xkzkmyOln6I zE7PKRjrid4 VKhEFVAoScI 9-DOuX-Pi6o ePRYhNNdzwk kTnEyRLMvqk KTyLJftgoc0 WcZ62d0PATY S4AmLcBLZWY 5kiNJcDG4E0 br-ljup5Bow giEV8fvrDd8 lW1vzy6psfE 82IXVFuJllI _j9qAhXfNAU E-PIidaqCyU yNvuIuWY3Sw c8EodW2ossg M4-DIldIX6U 2zomyWfPgjE lrhNPS4nbmQ GQ5ICXMC4xY NJk-yQadw_U 8ucelPNuKdk xqbb1FCX6wM 083OMBnPA3c rRNj9qpTgOc pLbS8f9IplI 22gw_64AGKM NlP9f8i-4c4 nCuYBELZjpY 8G40_afpkGA 12DQN8oxKTs IV7jcaXQgds A-Cj7v3rTWg rSB9VJcwQsc KY_pTVfz3gU wSPAPeO17Zk _b6S8tpQtdw x1srznPx1qA GSprkzio_pE FRvxzdkj_YI l8WyXv7hQvE sL9vUjm2mIE k72rrPUEDdk F3GFYKIwJ9Y O_aziIIp8U8 Y6wE2W3ag1g ExU37Xz5Q0Q uFzAxAEMwrY ePzOShBS9uU rBtzudk40pE Y0F2c4VgxW8 yIUdnWv0MP0 6vry0ijbJVE 132WIdxvgdo dwT9BEh7qZ0 NQp6RWrHxRE ySQ8WJNGp0U mxJtFvNByKw 0L-Zqr0eyDg iBSLBl-64fk VlaiBeLrntQ Vi5pdd7xHNI bdFKfRmmbk0 2L0A2D7zV7A qFUISvEZ3aw x4QJwGTOny8 XUxAGsL8b0o C2gQo-0VW5c jP8dC8E6Emk 6aWxJ0cxD8c kb7T9oK0tF8 BfcfTmh8RKo rwzNpFWiOTg cPsIU9BTbcQ w3-V_82VwQQ f1N8-L5cuWQ F3YR1-gJjWM _v5g_GFm1W0 FeK3AM7NZzQ 50N2eB0JI80 GVhi1qkt5I4 TsNv4tohJ7Y n1TqCGEBdLw 9JVNdsyjU5A 4NcH64kh_24 DlwuwiBLAmM EOyH6NwoQL4 o4SUU7XoRl8 jcXErUFrA68 Utz-RZwQpyE A_S1oRHSH80 _P9ZorzeECg kNpbZ_oVHxE u-bWIkGa0QA CeSQfi3eLhs W9Tdw5nG4dQ WsAVIpTwAP4 FM-wfXvcbAY 8jd1NKyFQJI O-ydNrUWOik 3A3iNVaLod4 cy-OKLuMikk hImAmM5-Fpg lWZU3pPZWig VN9icwiN6io K49NaFf6i_E 8vq_k0yqq88 cNOsA4nH8yE h8m69o_1PoQ smHHU_ONdGU FXKx1sX8ESs 9rySfLgqHJc RP7pZNhYm3c jk3Z-MVoUg4 YBQLEhzlYX8 Pry7CGd09jU 7DfNc-wxnBM kmjblNu2_6M aOg9IcxuV2g r_O3k-RpV2c j6oBbBfhgYE HQkSMJFJu4g DMx-Az5Da4M -wI4jJq98tU 73ytL_HAwt8 ZQaBYT4MxWU XO0pcWxcROI _UmaFTEIZ84 O4yuhvccQog B0asbGJbLKc Wg-UpYglAEw qu4v5hB1dKk m_1yILWMqFA fLWrnVuT4Is B42mhJ4DY4I YMzV96LV6Cc WDpipB4yehk OTFCctdiS04 FLjixsUEj5E yMRmV1Sj6j4 CMbI7DmLCNI mV5UHLHdkY8 PRtTmayVhKI NjIszoXfvUQ 1SnPHdvPPxM EEm8IXm88Tw I3wUstDFDN0 xM311HohUzA BZSb0JCWcXk louBM-Mix7s nauLgZISozs PSZxmZmBfnU dYg-LtUxhcE eFU730P9f54 2cDcwnVNoGc 82aLTSlTL44 IIjzneqtAZA ac9w0rKTRPM 2dQgjrrEeHA K53sv3l9DB4 Hy37hjPUFWo Nfrk2UdEOcQ C_SFevIz1FI wAjHfBk-ZeY lt9IJX0qI6o ================================================ FILE: data/metadata/youtube-dl-dump/2012.csv ================================================ luEg5bWRsmA IelhpK-eDh0 YfualY_RvlA PwmNvgd5kNI buoodeEt_hM _3-cN9Bhxls dvT333RoCrw hEXsOOVWuGA yjdZhknwl2E -c9-2KcnLXI -Kd5zqw24S4 QKRPgJYHblo 0klA5lTNwyY GQlizbovQAg lhAQ43EIZ-g vOnWEmbW3OQ RNRZxWxgQlg JOidGUY4Dm0 JhE3o7EwmEI pPDz5TWc0Zw daUvbGlC3CY V2r-pCAO4rw luylsO8UlhE lkMilWJJR_U eDblDj6BISo mSd_B5ZTP3s -bG0iKaxQYM 7ghEs2R68XE 0AUpWC9Whfs LnuqPEIHL9I Vs2DOfnZ2vg fWxKQF17YHk NMrgITIzg2o QsQAo97BaBA AZIk5wIq2Qw HQK5uM8tokE cE71I4X9hWQ bpcwhWgWfCc SnJzOrHZwk8 ujFUQwcAQ7w FY2kKLvUL2c 9lX00rAetvU kELmSLtEiiI oXMUkgWoMlQ D5E23GxcVHA A27nH_TtN3k IzkrKfk4kYE QN5dfOs4TMY YXmD6qdDCDE 6Dye05tvSoo RkxAAilnLEI i1Nh_3JCFj8 G9puHtVcU5o UONfi1pwQzI TNsEK_IIs9U aJCCUdK7PiU 8LhpYfjGZvw -7krYJUfFv4 8z7YDo44-xE Z7KYTavLTBo MM0kq3y2AMk PvtJeQ322eY 8HZ56REwh3o E2U5HXLiy90 S__SZwFn0Rw T-m_67AX5Ms iYU7ltkHYXM v-fwHV86PgY xHrOaF4Dq5U lQoMIGl_NTU tmwSUyoEItk iRdTetA_Dqo 9FnO3igOkOk nyKJeXDoqnw PjJzOpe9xEg kSyIRLpdmlA CevDWRn-3-s vyMggFe9WRQ WXsTZ7eUpBE ljzkCBZuHM4 NaKBQWLRJqw XS1DdZzYIik a46FsHMRPkc mmuJb30cigQ 6M8szlSa-8o KVyRBCk_V1s v1ordVEmJQQ va_wuPBP5kA fWPRhRM1V7I trLRP0-zvtU -WOw8ePUCEo FZ1f-u8RqBU LpBQ2Q6GMlM G3iPKcMjGlM mszANpbvdM8 IeMmE7HvO40 kXvfBvua7GY 2idVkpn0YAU Izr-5yitrb0 ojiHA64n6iw sa2TE--j394 5gN8YA_xeY8 YOkboxqOKBA Of8JOVXYU0Q uu-RxCqop98 7vRhOdf-6co BI0lsk0EjfE AP3GWf3p4fQ gnz7BQ7lxJQ TfGmV-el44k NJF70sHMFN8 WA3_SfMxtN8 nLTcdOr66lA mSD3SFHaqwg 8391icf7iLk ap9g2vR32Vg MyvEWQL7veg 7_HpQA3rLWw x90GleSXqIg nr037owyBqM SuJOuQ9PJ_o mdYIqSZblv0 yehCJ076_zI nHpuQMB2pVU yJS6icRaOq8 YdaeVone5qA AoAK1JNNKR0 ZRkiBDXDT5Q zj4oU-cUE9E CXacLvKGrQ0 gvKBHCBBdf0 O4itfvSP7-c Tg4_lfm5VrQ FEdL1_zOyz4 zZi8n49RMGE vETxuL7Ij3Q 42sANL2ap9A u0ttQ8Dn7LM XZWz-YlVw5c 1cekfpK8mZQ zEYkLkJs5g0 bQzh5ugYzPg PGy7bpf9ibo Vs2Nq6isib4 lAgPsmTxBfc l59t24vh3QI DzUc3Eqzzos Jly4dXapR9c A75AgrH5eqc MI0gOipkexk pbI6qTih2TI itIDxKxfGJI c-ecbGNxEHM v5wBisDJJ5A pqDU_EJrb2g ujhXgFBjcZA hAUbdHw8QG4 im1ZK1WNBZs MoPFAlf393g AYZZV6qazes Jet1_E4O1MU Cmhinct9OGE i4h9xcdtyrE Z9BefcGEB10 qb0Vd5ac82Q jvCmoJHIm-A 21q8w_kAtkU FIo18XdSuLs jrH2FZC1Z_U VHSoPTJNfPE g8nPKVElb88 fbmyMs5HAR4 MVy9DFwT-4o yJ5tQQhl8wc GvYsdMFsHuE -_YHQheqKxE -4Q-MS_oFkw o_vwPlWTrgo SAYvv7GeSSE DK7-VL8Uxxo ZEOI34R4iw0 OeEa3gTsVDo vE0nmQGO4Hk _3CJHN6bBzk Io0PZTAcBes RYlj-btwi6o Lcf227lWEek cZwdCa0ynEw vHmyJqXxmL8 Nz15PudXkXM aDm4L7gjYNs VhRkUhY8MlQ 3WscLkiiCts eGJqzSFW9Zg pEa07GOtQs4 TUbgKkn9qFw 60ldo3xGfGY z_eg2OjO6uM Gk3MgTTHdLs WPPUUvcO43A dcsByxGdYO0 vTeY6H581pg acs2qgkCHvw nDw_DOEdai8 vWyPfvAbUOQ TvetwclCFq4 orGDoXo7xKA UFlhVGogIRg UMlZ90ZNGJI IdEekLJJc0o 5WIwlJP6XhU RAvoR20o9s4 K2JtNouF2rQ 35LPE5SjhiI ZRdLFB-SJpA cfDwQbxRoEo V5qEU07yVnI gvJLNa16cdo paCyf1IAKug WkFdij3Wr9M NeciZ5_hFTY tskuP_9J2RY ySu6q4ydPZQ 4cZQOWaWYj0 HK4eFj52f1o McBW00qkAlY QihI3ORsFn0 GJz6eFgwgkA -swpG7VRhpQ 5BKMV5PyjDg OAZo5VJVZCY 21mtTvR21Ts SmFDafzmklA BQdE0_Hy10M vLXjWGI8sfw UkYl0Qxgkpw vN_HrPvTVIk C--iuM8NcQc W1fv8bPOwGk 5p9rqqJmDaQ aCEjVC3Dtn8 SPrK-BvZA9E SXeiM5hAWvA qhzCkJXZVJg eqdLKw173WI _RUjbQGPytY asySRpuqnTM K8nX2uH-h-M 9SomT1Cop8A T0cNy3l6Zek nxRZisFQdTE vG8-BVdJ9_U feHbFy5zPNQ iC-oZZbET3I PZalnJDYFDk NAZYmJ_bVkw VHLbq6oeSyw gA9Z-Irh_Y4 Wj-RYFPvje4 Q7spsnpuZQ4 rojN1eCJgiA iptTDWFBsGQ GETldyxkTEI r-briQqhGZY zyTCACwFsgw laQz2eLj1-0 JeeZA4B1qyI dUYCIwyMZTQ LYtSsBCYByk S4PYI6TzqYk cdkS0TgEG30 HYtuw0c3dJ4 OuH_qx192js 7ycl6niFTsM -eocP3-Ifag 8MW3KJUa8FQ ceTBcVLeUtI fnF1_aVlIio ZbeXU9FIFw8 iCfBiIzWG9g qgmcXs02URY USGs4XhdI6I pOgf3IaWlgU ZARAldXlSyA rWvIBJO8T_Y njHGa4f1LwY 7_wMbTKsnvQ 0xjYQiEDbj4 xTdNSA_CWvc M2V8jSFKVw0 CftR-xOfXsc iBSRk-DbhRw Ej9siBXzHzY dFwt1vL1JOg WQnFe6vuWq4 y7Ynxoqo8gw ntC0xJo2bSU 4gh5B_Uezmk WqNMjZpSbnU AYQA7kCTPN8 LVkOD1Uy_9k srDyToPqozI doVYFjIJcfU uxhJ_E3LuNA S7h60nfyg3M KfprSGvOgpI 5nIwJTUMlE4 AEEf_00tNos 579nK0yB22I rCn7orvs0Ws 5sEZmMeH96Q NgUGViWp3tg IBUOACCdZi8 vD8p7k2-_zA QQyorpxZ8rs xaILTs-_1z4 aj-OpTHixpU I_vzG5nYk1I mPxTwqzr1sw vE8mFDabqD0 Bg5ll84eQTw v59kIbs3gDY LcX1BSUZVpg I2jetO_ky7U zmqhj8EOLBI MjsSG8pPTy0 AQC83SamleQ jVLk2tqreto nvdBfpA8r4o KLieNRvLmd0 4ca0T6jbhHo XEsZK8pvveU _SR4O2gcXYA JkJmzgDiUtw W-OzWbkk5lE rFuhmG2wUXw A1Tgrq5wLAw NSXcYEFY_ao lB6Gk5EtunI tPJ9WsQhpMw dbE2-VU-4SM TT8o1fvTB5Q z54CDMBPKu8 twkjN0xQsWw e2xiwiWd_sM NqYAnj6YcLk BPrF_0Bg6iY 9CIAkk-YENU _OFfuZY_Pvk X1rnBQJxfdk 8rlohOLUi9k V67ozonzKRQ jrLVuKks6lE SDAdzb9IeGU QLAYw0vM-bw onbiOVpX0_w ojgy7kyNp5g iamsdf-VSQI lQWvCntonxE 4j7zD5ydpUo 8Gu2ouJNmXc r763LgcxCyM L7GJ018Avgw F6y4B_BFrJ4 t5KEbS5soMA yF0WIBF4lBw Gc8MuT6L4Nw xSnraJOeOyM FIaxR4Z1jVY 0nfoP3bmd1c 1hMMUJ2Gn7Y A_lu5jmaUbU zLBEFvMkQCo QZq0zhzgres XNfCPe5SGbw 5JLr0XUrEF0 vLAQiwEGGKs Y7y8tLgvpCY hdIXrF34Bz0 pAs8uvKNkcU 0adv8zQsa9I 3GG_4UaCD8E CZVsWzIb6Vk pi6SInyE0sw S8mfOyCySKg -Y3tZpAdWTc d7c4TXqkMso MEOPA4dzK2s 7gYbpM0GWTs 06lJhEc7zIo 1Z-MzwPzpBk 1Q67bMYOm7E MjOXPVmOBSg ll5qiWa6YDk UQDSN9a_Zgs LmiHjcCiYwQ t1gkRAWvxOs lCs7qjJzoDg _th4Xe6Dsm4 _Nd7VxsQIGo Tb6tz6ohprw oRh8qQyIngg J511q05SReQ EXTklH_oTI0 ne4ZgnPn9Ck 5rrDUgMfVuo xEtptEM2_mg qAteApi_4IE zQLLIxNky50 Uy5uLy_cpwc WkfpLz3XMOI oN-Ck_140ko ESjSqiHhL0A lJiMlgvygvc gmo_PhSftuc KD5DVxqmjRo 8Nbbi16tvYA FFWLkCnT50s GrMoki4-weM q7qwqVbZSqE Fjr5MSmxKJ0 NEg6faTj_co 4SWqNoW_zI0 OkdLWuCRe0c YonDo9SCqII WzBS3IIb-vg sPZUh1YRnDg PLtPPtaCZQA SxgfSDgHGYw ufaAnz9XmsE HgTsJ7hBQ-4 D6XLyg5wBHU 41h9uoNt6F4 wwe_yos_-ew r8XE2-HpGuk BuRr2uMsGTM AJ4edZsgJAk 0s_EWjNNgWg gKGOG-Pr81E KuoC25LQrdM gvGNWLszAQA ZNn6J56J5HE uw63_YyNsF4 zVeJ5F26uiM iClIIg_YtAk XqSYC_vwhDg hQCG2AwzTxA 2wTJfcaezu0 LTgahyvBMk4 cGTn7aRFttk -9P7Ge1KmTY AhPCRPmHcxE ejUWeYTslb0 BoNAEfrI2oQ ASnNWCK3kiQ 8BI5jFyAdZ8 DNWODAIBs7s a38HZFbhB-M UbxMhvcxJJc HqS7VyuD_Mg KOGjVUa_iIE I5iG5NitBgI Vf2TpWsPvgI LKR2bN9V2Bc 8JyxfJo-iiA KJmWpR-4AIg QKP-AZKNl9k fO8nqGKrtDI XYZ_oLTFzSA 0I84IUKomh4 ZXgyS34Zpto NnWIRGdMR44 CO6yUpPvY7s 8CCo0EI6zIM YY4kKO6wfyg 2z4o-jBlqq0 s3rv0BdxWfM GpNzlh5ALRA JqDoUCcJHPU DdDl6mbcGtc mGf4oL6RLGs 0JmETteiVzo j2e41FeccuA QnyzZbrrh9M uU59kXuJHhI eKKd33QEB3I 50YQeugOMOw ur0U4xN0d_A qZubhGcnsHk H6DqWP733F4 -wX6_qCCnPc 6ohgHjQvK5g C6hmQwfEmzc JsJxIoFu2wo 6s8ZEFUSYAI YCSbEzI7Nz0 wvPmP4xTruI eQ9HJXZI_qU oLIwz9gn00g qU0H2mmgsjM HD8tSGHYaGA cPYdLs7RRRc gHAJY34g-LY JQXj8pF6Rx4 k4YuBxpQwqA yxVC4lfxHGs 0EKDRD2sHI4 p8wvEC_cBU4 JAiuiipD6Wo tff_EEQt79s FQfb9ayuY3A THLll7d7Dfo jbCyTUSQ6fY abhF5CFFW4s vEt5MqYD_3s qFWptPtHG78 Lhc_xw9cQ6I aHJKwOGb7MI 9zUaNKBQ04c 1kAtlL7cZOg Ar-hnj5Zsk4 KF-wcaGD2UE Of73UiXUvjA AyrP-pwDayE QhVuXKypPs0 l1B1_jQnlFk niZKrt4XAZE ASVUj89hyg0 6ZZI6-zh0GM BckPa2_A8gI 3ema7lfEAMk FhBm4kprCkk GSw9sjqYK_I xuUtu2xRGgY 2nmGS8rVuIM I_X0TKL3bqk x4utH5uWK6c 2gaEkPaykJo jXGV-MT-TmU I5TzyLhwKKY suvJai5IC6c X-S296ENSIo ZAMQGIx3JKk M0TjT53qpFY SiUT8u1LckQ yjF_gSu6xCQ ibeJlYiMz9w RWwhA2v9UFQ dTllG2KdPMQ 969gXtFAcZU javEwwHaNa4 OFZS03hWtlE sCiErOySQtA re0xt6hDdqE M_ejjr2-4WE Cw1YwZlfijg 8kIsYLV8bE8 80UzhoD-RBs cjFIi3PC2cI -opqUSOUDQY 1ubs6iUMdyo MeypYa863r4 _VIWqtzAHQ0 G3N_ELEBvH0 BVwLpNGBqqY dO_D5ilNoZA _MLgnDZguM0 47ptIuV4NLo 5_npi1WISDk H_SgDfv61O8 uIl9IFcIXlg rS3VUoThFBw kglWIEtKSXY CztbQ4Fgv_w cudAGo1nSKI LmZV7WtCRi4 1ODVyWqW4ps a72FDTElH9g _EZCG2Ex8Q0 aARaYjgm_rA IBeMUoMTeZo vR3FPplcJGg lChJz2DSpsE -tuNR-uD_mE ud1zpHW3ito OdlFHPM3A2U lpwrDEfCESg uE0DBpw09SU 0_pN-X7Gew8 DB5H2QGFFwU Dpz8L-thRmc qCq0IXXi_2U aWinsyIVC3E Ha4SHiHf8Vw ysIsqzXZyN0 rDIF3XhXTT8 7WqzJvhR9Fo FM26ZXjPL_4 vKePn-57zAA j19-hpjJ4ok HnZw65gsesw AMtKsDnOw_0 Zz1Lypwfwug i9upvWNN3P8 eRBI1VSO7hc -gD05qjgKN4 Ce6jdrqyW0U JqDOosChydc mX-qK4qG2EY 4R-cTX0i2hQ fa1DuNjhWOk 9bvxJlLfzGw 1W4y_8Eu38Y TOrEE5NeZ9w 04xSMg03sZ0 pMTlNUKE7yg ftst7XzK21Q g6sSw9vrO0s Ib8uNldNd-0 My4ojpQzoWY GwQdBsTpmOM 6f2-XlVHGcc 1XBwwSzLqWA VNJehwzHpe4 pMSrolUBGRc PEnOSwKyrb4 QikcO8tlmOI FnRp0n0RhDM EETi6NJFRjA X9mTMZF-CTs SmmKg3VG2jI SMQ6aga9mI0 1EnGKC9Lk_Y Wg89Bj_9Wg4 oEtIf_2mzJc ZKIiHz62TR0 qUKBDcMN7tg 9KwuLlQrkVI DHVyayHXOdY Tlfd0Y0SjgA _T7T-0iR2Sw zPv0S1-ETdI i7hk-TupE5g dbH4Amzn-Rk 17MyPrAEQ28 0v7Ea7kg2gA NRjWEE0hmjQ BL-Jg7CyqLQ qYf35nBq8Oo zTueXqC-xfI AyodiwWneu8 o2wVetrydrY GofDgoM13BA LoZtHl2YXAo PRKag5krnfU sR4iKRfUwOs af_J2e4r328 8F8MBp-GBKA nuPd4L7_0uQ z6GmZrBKW98 G9u3Lbli8Uc Buutvk0mHXY CXYlv-z_xHQ Vc7HzKwZ55Q IYBAPVjJykY uBiewQrpBBA geh_Mu622SY -hl0hUWyqoU 2u1RrWj4RDk VfXFbuW47kA 5PPQutDwpmw UZqpweWv5_0 LBP8QDlm6OA fHYuhwnlTZs mIqXkwxzUB4 eYJYW_9mFVg Tr90d0ZcrCU mjbxL_v2DPk YkpHalgTqpw wHSH-NpCQOw 08NGebwIr8Q qE9eKngduGM D8V0rLDKZL8 SJeCtS4D2HQ icGkuwUzbGI 9Hn60TQSyTQ v8_v3EaYE6A wK0m72Rf7tk l0n2Od6zG58 ewGC9K-7NXg bnitvEUDaBE urdf4g-LXk4 pw5Y_7wtJmk VR78Ss7yoio o9zfxe4JVlQ _PZ_LyJfYe8 h3VZ6IRrVlI tpyZHmGRPuE bRzQBGwfMkM FXcu4V-8-j0 TY0LUIIwo8k ZI63g64kDgY Qoh3YkxuwVo wur5ljnTCzQ G8c6j-LS-ZI pBq_lpX9LTw VBeTTZ4QBoA Amd6hjScF58 OeE1spoom58 oJHp0GrlX6M 4qW3YcXJeyg EHmjP1BExPs i8oGdak7vN4 ajcVgbrSIWk 9frZAZs1Cqo z3GNhBE2yhM iNgDtwHreZM AiJP0M-5Mjc 2ObQm0XBmgI 7X3WSQtviJU WgLyqfSdbDg IP-NM6Qdrl4 YetxvEnpKh8 kROlgEPoSVA 0xPu59_MHQ0 y7wj3bB6OU4 hW0V7kZHRSA BJHzyg9AOsY 9h_-TIM3kdE mJFvqNOorTs Dgd6gV5Z53U vWokC4nx7PA Q9AIDn-w3EM Dv6rmmAk_Es 6JynBr-1sSA eug4wbPSykc iBaUUJOO6V8 QxXbtzn-6PE wiA6bjzz-CM SGbvYkCLZ9U 5mAO3eeRP84 onxbHFyNqGw PJo7WdHSxoI yosiG9eEEHA KISK76nF-XE 5pzJ6qzeXlw mFcz_U62r6s qSbI8KRB74M MEYAoMSfCQY c77JrXbqqV0 3cZIoQWyBCI qeY1mkXqKgk LyfG5cnkuEI yy7H306nKaY WdehPsCJab8 JCLLZQFyGGM VCRyYN8DfUU g7QBS0O7gT0 1crhwQPKr7w RD6BaHKMTXk 2xUynRdzzsM xu0p6CtioZk isyFunAeYnQ 6NbgGhD4tdk tGDO-9hfaiI Qae03boj7lU L_QCioSGgwU z6QWyZYi8ZU RJACPfUU3nk smVge5w077g ah7mS9H_TOM YKRFlNryaWw IqycJpRdVaY TvFwTMU0vyY Dq6jS6uazUI 7iMvnj_UBqc 4ZOT0aLogWU TB8q78FEwE8 GCEBqhWnUDo 4aI9-g_n_OE WS93LMcRGRk q3OTEdZkBaQ UqbTLJ0U84M 1FkVXCCfg2A ecsPydUbYGM tX74H9IuYdM V4jg8o9wXys -4_rMqeyOJY zK0JaEde4VI soEFK6PSKEY _lSzhjggxjI fgq0ecMHfzc cACQ2548i0o 1DANEtz59KA EmUIfX9TSJs eAJLWSg5PIY DtTgHuGgW-c DhGaY0L1lLY U3lA1kS-XKA jVxyX7FcS4Q _tVFwhoeQVM uykR8csyO-w FL1acMVcHGo jd4tpvAcKYA 44RYxAPH78A S04ArwiZwjE 2hlDkSg-Ycc mjdgDECpWr4 eLLzlb1SN2M tvCjr63AgtM FOzub_ghAbM YXjqTyQuq4w Fjj4a3zB1ag xR9HuRUUTbs mUtHkSw9nEY iTwIwfvNJLk hYq75Gm4UdI 9Dv0rOjEVIw 23ZWuWe2riY fls3z7Me2Dc Po1GiAYyjIc XARAo5zXJsQ 2HTHPtoNJLk xLU_GvlaTtI 5oOK3e53elo _9JONJG6KSU ixbStXcVqW4 JvVSTmfQJyk GH3WNYCuRks bZ0jZaH48b8 lJVIu_wNm4g uvbOvG1gCj4 x1gEy9LSa4A KNmmwUDi4I8 78VWWyPDmss _FyezVyMFJ8 AQ_Boszvgg4 e6omnFC9jC4 M9yS_RvQ5AY bbTgmSIDyn8 nkwyt0ytVJI lSTkEHpkMf8 bWJkPbBOXL4 tRHVMi3LxZE J1rrdlXZ-pQ t9f5FmSQeB4 IXdycEK_38Y tfL5f6cZlk8 d7pioagkX5k HhbADfa8rmY _8LrZ4NhPmk PIwZVG5wMi8 B7zXxCAZjK4 F_HKGZRUroE ZFt3xJ6DvVE AcuaoDtYcUY poxW5pFQVEw OsJKdxPwZdk lR6vy0i_rRU 7VTsFtwO0u0 7jVsQToSfag 3bdQlGt3cEA ujC4W8hJ4mg 6u14pLHV3Vw BfHSald-ypM pS2a76BS_bA gQAZdGaMHu0 e5uhElLMLbA Z5DlqH0klZU qu1F98-YEz4 x1DLLAqLiAM foyloa1KiVI Su6H2_SrpOk zhH9GJ7lpGs fzXK1hDkqYc AOKzlx8p6yM zJfuNE2rsPY WCenGKkj3YQ DsLk6hVBE6Y wAuzCjipF00 SMCsXl9SGgY tPgwaQKNKRk nejXDl9BPbY FQunyqgIksc QeydehWrRu0 H3E2nY0djIQ _56dNRLXn8Y 1kk3Xvw7jn0 bvjLvggrYUo mvgKGY5m71w wPT49WXC0Zo 7Xuw-XKP1sI e4RGh5iAykY aogWdNKef2o Sgbe_owOvEI sGuNGXmQZSE vqOByzMoS_A 0I1Vh-Ru1z0 gG5kz32ot20 rcgygxfcywM pz0R9XJciO0 qRGre50eHbQ bw7GnKjkThQ WLSQERsdER8 kaJv6L8vF-Y J2ZnJvnPgRY qdtCFKVtSls 2QGYIM-8y38 i94ldGNNSQ0 Du8HRf6pRVY oyaud2-X1QM J0lof7tFKtE tlNLhuxeDJQ H8Ancd0WztU TgIB5Yl4sBQ 46-oS8F8_c8 MZhNDpll2Vg ZiO-hWU7IZI LVC2uynUn8c 4FsDFOIWiHo DA2JIQh96iI Q0xqrvefO7Q Yd1ndA1_G_A GtARiQO8ljE nxTEOyfchP8 ZQzBHnXdPY4 N9uT3yyoaGY oCE8jHLJe3g CYgJjicx0yI njFOIvoN9pc 4YdP5YLuJDc 8kBKeCR4xiU iD4lY0brr60 MeTuNES82O0 2XuJzaDhV50 yie3IIh0HiQ JqoH6dDyZmk FyCJ-hUXQ7o OSc1_gfVfCc QttI1akIG_4 VFDN2EOGyDI JZZnBoruCik _-jXE-VvZqw xPBBnS4br9w ep-ieEG06qg t1TC-pegncQ 56fngopihOo UZb2NOHPA2A V8Dm3OfSn4w 2Jq7xgVqPYA G2un8xvArsU b7lV6-iKiwQ 5nyJNNk1jCY -vCVptWV5UE 34bCs92ACpk JtqEy9DW91U WIrebinrQH0 KLJ4xbE_j94 IuFESp6a8hM pw46kpxHbls k-mbJhVl2Xc GKh4VG9YQ1Q LozIIWJG9Fs -sJezi3j7O8 Btn6OKhfHHk 20tvG54uZLg cWYIlga8sas KJCvbFLtRB0 Aedxe7JThh8 hHZs6i30Xr4 U2g825zrVA4 OyH39BhKP2g ZFwI8ujpT0Y XkGVykfJIts vVRPMleD1SI _kqyM33kijU YGlqg2jC3R4 1ESVngpn1aA nwBlOt3WDUQ RairI_NdWQA DknDCyfSe8Q _kocDBoWDcU Z6bU-bOkm2Y w_BL6gnrtDg Dkj-8VuWNJk -dkz4Sk6UuA ix0_IOPyX2g 2VKpd3XEbD8 m5rfQ59cc0o lS1KFyakAPE VcVDBbEpQx8 yoFS6X0RKkA gZ9nPV_stFA a4wb-xmYM50 03Rl5exupSo 7aW8oyTgA60 QA029M9LIVU 2QGI0KdwW8Y BWWfy9YSQmw naUJM6Dp7qk Eb3oEMSXPnc pexcH4Ffi8I lTc8TxNTh6I tAH5PR2SvXM XU8Xdt7tSyo EPtxN1YoQ3k Vo5ycPggsGY k7OWfTv3Xr0 fuAo0q0a_Ww ysFpoWSlo7g ltMrjNiI340 6Vj6Up8OaFo 4XhNhG_zq-A bBBV7uUGER8 W7Dq7vqpGCM 40CUuyOxUZs 9Okpnw0Ktt8 nq382fby2yU Mg7YM02K5ek fsMC6d8DeMo lHodSSB_YpM 4M1mi7Ommbg 1KCTiqj_-tg yqtmypCco-I -heLeiCeD58 DWa1IsbsiY4 uNsFppO-q3g lDDtJ_J_hhw 9lro80T1eV8 Tx59CHKUgjs vW4TOsL7e3M VDm_Pg2Cdsk OK7Hm5IztPc 1tdZ_k0eaHo Awh5WP9BbGQ cwprGyncs0A sSvxvpY7PZM RW4ADt4YSy0 kp3HaaTqYP0 x2wH5RS58lo LXM383MIFYY f3XcExCD3HM du22ttQhRhA z5S3e6sCBV0 LwgcvZ0z430 mhaxNZs5MGc w57ga2Yiic4 PiJ5Ef63OwY nRSaxtoy7fo 7tFLFMyA0EI HSh63MNfwbE yly_wF8DyE8 Io7wUtei6BA WhGFwk58h34 kRCO31JfDck CjIU-zqxJEA angyfkPmHMo KgqzMdBg7ig nukRk0WMspo Cj-H4ZcfVU8 2tI3Dz2Ic2o 5aLrRe3K_6I oZEJTJSZQQs CwLcHWwjkV4 oviA5ncbmc8 OGpGO7K3aBo jmjcKSMwC1Y 0RWk0XTaEX4 0999Zftz6-w i-6UVTMiDm8 VSjHX4LO35c o2jtBk4B-hE OQrJfULly20 rHPTGJpgtFU xDvdVxr48UU -cOOPGQGqh8 b0dtzloyP6k 89OOSFlcy98 9-tYZkJ2p54 xSp5QwKRwqM ZGNoXIhKTLw VWb1z6ZwUoY EN0JaJN_fwU FHB3oMNWk1g 7_pR6mUYtOo jj7BRKHml8g cjyqWsrpQAA 5ohlA__xABw 2LWGe28axmg xvf--4i6NA0 lBSi1KKCRQY eh_vTiBMvpo X1JIzLmbkA4 dz6QtPfCmrU EVGsdxjfeO0 OdaMqivNKZ0 -k34FungG-Q YC65XWrNn4s oQAqWa_86vg 1dqc9SW9OFI FnmbPDYmz0E 8BgcozieWuE jcp5lTiZEUY 9N9BwAElBiA QE78itp1Jn0 IrptxQD55zY 3y4KK8Bd5l8 BYwC-WJQKd4 lh9z3hPGqgM LHpto8gCOso x6oaXdPsiN0 imyD8loUM-g z8fwAxhgA-A ktrHO9uETjk aKgha2AsDNc hKoYPfcWpcU BWWTObc0KDQ YOcfHxXt_aA aTsjwO97Aow TaOTPhkNkbw dYvCGjka2-s 6whKr0DDbdY cUknJlnzdLo 8Jd-gAm1wMU wACyqCoTTno Y3WWNavHXSA fQJzgovGkSQ OwzlxG2_8hA 4sJi6VExXuA zJ3ZcmivZhI PnFxS6a2aPU DEX-5gM0P8I 3teArKtt1PQ L38yiP7vLwM 9enPC37mHrM W3HDdYjGDzg 5Ipcnz96hE8 yhaoJxQpRg0 D4dT2eBWI2M SF24fZvfoHs 9t2_DjGU_Qk QjCxoikhxSE MiPH7hknJ8k ydMwnnhLnLU PW-RHrX7Fnc 9o8gzua-K_E 0A80j2BuMaU ZynRcyXIGKM TgLe98ts0QU F5g7u8WRwqQ XObhhoFp6G8 5EN8IHljaaE Kq3nRBxVD3k iYsOzr1hPl8 wmbt1RjPn4M Ss7i62FguNY QJYrz4jET9M tQkepXxAGq4 fUxg-0j1Ijw 0UBym5z6rgM KldCgijNQyg HC9BNtZrnIc 7SU_ZshgGro HaG2Mm5K6TE sx-obtKU1jM J4yrUjXQJdQ f4wQCy4xIyY m_C2cbqPkx0 qXTTXNZucIU IYuknBe73ik oWr69u4tLoc wj0aH_PiAnI Xwl5DKs5HL0 39-n35p2juk QEkSX1S4kwg 1khqylEN_48 -JeKHhnEcw0 01qhgR0WsnA KdfwchgYp-U xZOMiFk2ThE 6XFzJ3WtYPo FTgzyx6931A IvPewzBKqYU NFwg1siPn3A fXwVoMcZa90 iGk8yvyixvY 2vL7DtW6wGM bU6V_rkvECA wRLLMDtKPvc G1IQQRRhI5M QHUcubYTt0o CTCkd8aEpZ8 wsvdvNRcUVA QUYNJvRn4jw FRLcggpffDk ShCVyu04OCc 93uAmv9qwNs yrZ7CsXcTrI 8YkX-DZDB4o 9ZM4N1bdm4g 5ai_pW6LPpE dw4cZQicaVo Bn0-7zClnWA zMEjTw82zDc KRCwsXtAeKQ _oBX12cEu-w Ts4u--T-fDc jgcD-DHpPR0 cvEJy_9hy4o NyxW1SxFqzk lPrOstRqB1o eI8o5C5l9J8 aQ6ZzIC7OZk 3VVxzAw0hzk BpV5wTbvq8M ICC99mWSW1s LpPNvHq9rKQ nE58ZtIpNSo Vz0R6lgYJb4 u14YNz-Ym2c iZ1_8kpRnW8 9e-6wOwlHmM kHFzcXAU8hg rOTyj0-PRRY ok-pfhEHoE8 bENL5AzvP4w 7sQ6ktZxmYY s3TkMEuXaqs 1VkkHqm3q14 4zhGIlO2Lx8 cMbUCMRhH9M vtXNIF662BU Bo47QGYq-LI 7v6zdWNRtLI OmBxRiaJzFg DTpEhN9pzbs giegMz7BBPQ iRrAI8tl8d8 aisjDMTWr2w TyPhgetzMfY _MeA5EW8FdI RUvQEHa_lZQ 3aCT8ZhNBrA ULp3vJ6Dme8 h-a0Kx3RlIg b8SJezYEQHA UchtzdG8HdM wOzRG7N8_Ic R7cqvLTR0vA Nq1D205cXss 30shqA196uw f39I-UCl9Qo _U8k98LPpjg sp4A_jU3oD0 24kOoUWjz5Q 0QbMWpwr7FM 32OtN3z_DNs tv25UVPcgxY UJ36_9oVTO8 d3-AXjkz3Pk RywZwxSQcvo vn9awsg8BjA 049R_wOazQI 0eC9f13FIJ0 P63QUmBOP08 gHf9n0jhBdk EKd7hAoXDPU dKFZ4T_Y9Pw PuFTYd0b6n0 AVEnTcDIo0A EqzhYb-Ey4c kmGvvAof2Ww 9nqpOwh4N_Q 1kh5X5CJAOU CxCjXAy6HQE ye-S7zxbv9o YmIShBpwLPk bWyLG7CWLjA QSVX6S1zbjQ 3TeYtmJXgQE 39zzDqksCHc oNI9u5Q4TLQ lvyRzKr6Bkk BSuaYQdLqV0 rM3mP-39_is gINx5_Hs8C4 OjHsjB_foZI SDS5UH9Nnus PaYl9YVeXhc UJhTR5FTd2I RZziZRbaCPc 6e59qLPJxgI oOFNIMMfTUg KJnIgY7l_nk OboAFE4Tr8Q M6gOHxwffBg QaNag38SNno oP43IvevmjY cHEoEuY_mTk _RVQuAICxc0 5otacrrli04 ERw4l461lhU eQMofmwnt6s T7-sw9PhQec RVDyoCWz0vM JITv11rctGg 3rnomffKi0I 6FJfcqLCkIc 45wce6oSr0M EcffcR-lgtc H99XlWQ9KsA HJjBZoopPXw ISTPRoBW2sc 7xWlr8_R5YY cGbTf-FgG-M BZwbVffx49M o-Hcz6we0mk Isof3ww1UPs Tpp5oqIzQL4 e2FdM0YQSHk 7E8rxZMCldI 8_2fitdIp4c XobjkWljkXw 1UWy_6S-ZfY 6_CtgelI6xU Yv6L4DunPDE XGZ0K5Rpacw DhhKbHpvGwk 7-C1cpG6TLc ShdmErv5jvs SzfQ2Bwhkcc P9e_I-fkJ6c OGKPmBtBpBo 3vi7043z6tI fuCEfNfuoiM cIRL7jMVh8Q bYVsnJR_f80 rm2NO3Nr3hA K2vOPpJFstM 94mvgpMi-rQ 3CAQ0iZKP08 DX5KZHeK3bw Nn6y3CUpIfA 1DnnWl0Qkts sW-ddNOh1hk 8WrFOPPepCk -I5e_GXU4Zo NDW6AQjK3Q0 _eruoEC4LsA QtoKDVTZfSE _qit_nq-jUk nTBBQQRE0Z8 L6IPj5zl9oQ 50j2eckQ1to oXouSM2JOZk 8D2TivUo_zU t8yv6xn2HhQ ZWeqx9VP2zE 5GWj9H4JId0 H44ZLiOlN0A h4wnyCRRi0o V5xN-xNvwsw TIvNRHR6GbU V0BHKgbef9E gZaagSRp8F4 2B4dnGQc9wM -vE1JNGKvxQ YgqgSaDCgC4 7lKWPxDej7s nDTVpRRoqcw FE8xpnLMZlU mAtSvxJe6Yw 4Qrs43i_S50 6G7J6lZDW3E JZtErr7VLKE NG3ru8QGwl0 XPUqjed6k4s VYQoxBs5N2A aFqlaPLvkw8 4t94x0N3AoU uQ84SYJmHYI mgSQQjO5pwI r_3r5f1W1Oo _UZxXUwQX84 WdDUhHl-BzM DwKBxabn4QY jyerVX4GpBs xHlaIIyiRSw UCehCmHzBzw C7_7Wco4SWY PmvZQglWfJM IinUDFR7Sr4 mTHQ0fQXf-0 vXmHNYtFll8 7Ro8QybNKu8 _v-_KbjVPxg Il1j-dS5dBs rnlyf0wk0ic 8c88JWPmDrA XGQpnngBL_g MUFqS9iKzHw GUyIWu59kig 8osn-0mHqC8 GlXLG_rF9lg X-w-beB9r3M wweMxbvl86Q jfbbUufb7jM XtTVNCZEcAs qSmjZYAZQp0 vgZL3KUbu8I shIHmOihazQ UBMs3lfRim4 h1KasQ7pdL4 tvRH4kLj-Dk D8aAHxbYCCs Af6v6H6gvcQ MUeixjmY950 7-59dVoKmik UDqKtqsOwBs NELtiWqsHY8 0oDBrYgawmI EP6Qb7rzBmA YYlvedJn5W0 AmACeERgRA4 0VRTOfZePkM R1ejcTtTPTY edVZXNgaYbE w-jFuEpRFOM 06yqAuIbuVw jJ-o9HHw-_s ZN9EtTazTl0 BNCwxQQcXv8 uWalH3hnCyY POEUgs1Shqw Iqenc7PJze4 4Ufv8hcJZ_A L5Yu-IGx0-4 wX2AeW_M-xc ie7XVOuzf2U QflHaPOXcA4 rypwboimK5k U0get4DzXqA jxIm__RPZuw WgFa1bVTQEs alziIIbUN9o YnpV0k673Ug OPQbpZwpLtE ITSOiqkDzrI AIkEAcjhQOA fGV1kmATl0E n1rhiQzW30k wJRb5MKvouw CrKUXT6JZ7M mXXucVAQdf4 RlPaVTRPVLI 27gWbiG9w5A r8cegnOVDjo fb8Xk2_yqps 2Q9h-B9OVVA oR_XFDHk0Kk NQdNfhG-s8k TgOGj14T0M4 9hbBpOHXAkc n-G24ROD5g0 YShA_c8OUl4 6J3zkkpEkWg NcYbRZdgLik jqdKv0Vz0sU MG_o8Id_UCU SEM1DDRM5r4 JOQoxkx9uS0 aUIjcrHyvHU 5nilVcDLNYs uvQFoM1fj0E ZpDnHh_JmQE 1qamIJWkKi0 PypxQNMzAHM -9Cf6w28dc4 o3fUAorIxss zCpJ5qcmPnY OB4ppp4EAAw k6v2NnHxYPk AYfAyTEVnVI QXqBylUsyzM Ke7vTfbeH0w WRslUrt2NBg renIgi40w5s 1TeoyEPmuzA NVB5kj4k6O4 wQ6wc8oc_E8 _5qVrmBANTE VAC6RfndhMQ Akl5BAnhh_M 7HHCL1eRdVo xwRlSxS2azA p_UeWtpIW08 TXZ9nnOteV8 mcWrZOrafnA KGKqdRDo-N8 OXcI5qu76jY 8FysZvGGiz8 IxWEtRxzzhI a7K1xgoi_c4 v-OP9DnMN-w dwecZ5D3tFY OIXDhgqDYV0 89c3RqTIxws fhO2QtGb8tY 7SQWhD6OeRk ktGwZKWClZg nic5WxX4BCo -YTLGLeKoJQ m4VP7c5UCdE 2vjWxyJtUdo RfKKArjmRHI 6u79wLUXGPQ Cf3RfidFKBw WF724QBowDo ZhMpx9aeefY fnH1ZtugoqU WEnGy2hTHgA J97F53CAA1I eSBnFu1YnrU 1JDAa0BvD68 2FKPDOpKzDo 2_fDhqRk_Ro 1g82D68N-ys qUiptlAJcyQ JomrLxDiT5g V1wAemvxNaM 1niI0J4kdI4 1pq96OQlUWs _RsQsYJ_oWE 7r_DI5X5ROs _Cr0nP3k_p4 q-y6JBpCFtI Ye-GPGstKFc -TzrPYcpPvY q-StMfE8NrA T5d-R7FDG7s EniROJmSS8U 1G9ED_K_IAQ fvVBKWMTSRM -SJAzpHg4s8 KhfsAokR-D4 YMb-AODYc6g yUd_E5dnVx0 FRogQQGQn1g KRhnyD4ZLkI wzYht_EEf0U mSeeLOr1GKI re8jdVlrltA oxjeihyxCnY 9d4Zddhcqbc 0AspXDFcGlw LN1WX6JkYaI CqXatBg5LtE V4aBCK2UWpQ cH8W_cTQQvw 9mE6UqKoe5Y zHzbei3YeFs vrCmp9js4YI FMcQ9qdYBUI vsBwRV2b3LY eMFxQti1xHU 7fYY9Fk5vg0 _qJp9DwYgck FkDrbUQLuHY jbh5Q-eHULU fpLdP56W3do BIPpar64F5o mIJdrHpr3_Q FHs_-lvHG4E GeYJEkN4fao qckVPZkmiNU qDTmyJdVAF0 t5qkPMvpDfg JU189rHBIIQ OgEr2VRg6n0 32XOkSNoXdE Gmza139ypxw il4NFf0V_HQ tYPUzX8KTXw 8TIqqUbWUTI 1OcqJdBrRpw 1G3a0mUEz5I -Ml2V9Mos-4 d6Jy5tMv0GA k7koR5o-fUM EinsfcAsUoQ Mlb3avSMD_Y hol98WRZtz4 0QTBwHx-Wuw 5UnFOqWJ5SI zS9ZrFqMchM xw5Iyx5ejO0 6bRqnek7R6E pxHoR9Cc6Rg cqlk4EfEDJQ UvMusa65chI MTJzGzdA3c8 qcP3rt5etd8 jFKbSAjlJY0 eP2aBRb6geI J_uWB_m7ML8 qC7yIu-ZQZE s109ZEZXQJE u7tSASIBz4Y DfNfg963uEA -HTF_tAUtkQ m7_LwdyNsIQ 4oY9E3_6jlY rBZQHST6BQQ eLFf1LzuM1Q 5jAVjQh9S8A 1fscFQfphvE zQydroqGFbA UYOH5SCstlI UEndkOUG9M4 PTG0z3VWa8g AKpSGtlsBws TuQLFcJ8Eyw IlLYqvnCs0o IXgeL39PXAE DvTSWj2tgnI vNrNofWBcas sWs843kQxaM Ya4RBKamUqU dRwiGgbaM84 np_HgtPXDXE gec4_X9J2K0 eoSPKSIxeek Y55tkTIy5sc 3Vimb_RuN7c aDUZ8IC6wco q15Yv0rZXqs WASIZITWvZs CGzMqCfxpPs wYMfDxQdnUc sdNPmpfgOMw inAlpz8a0aU msKXGrgvzP0 iGU6Zqxfw5s wXYRFo4rrrw hQDDQV-oCsE SSgDunmuSAA OnYQyspzLEc 6Bk2AsTcdbE JSHPdnYixNo P578OPOe02E 8VI6vvaZxbE QNv1frrhj4s xfxhI_l9UYQ X3aJZU6rInc Ut_lRQbeQcU 9aaVOicCVcY cETZjbXsUog 2baUXj3vrEs 36WAEsNsfng AHudLuix7As 2hWZyDGHNxI CrMlZldzxSg x3SUKG6l6FQ EdxnFXQId-0 AqKpGR4EocU TfWrCqaIAtE TbdjQ6LLFsU TJj7YqhNxiw HLIVYHitYPw Is9bN_cdTMo 8fIL99qy9HU FWx6IsqPUKk cQA8oY5pwJQ ycKGXmtM6hk 0aMQUngLy1Y BiO01_Fe6To ukvZvl0GElQ FmiBHWtxHLA JQRV5_auS_Q hSUo-HJ01kY Wo2ZCh7vc2E 2sY8MYUTfiQ LQFM8e6gQRg 76ftznPZmgk 3J2Hm85PD2E ue0MJQmrIlg -Nr56-RD_g8 LrSA5tw_KSc C2db3UusdPc 90rIOemL6Xg 7kTGVJ5OKDA ziF1CU69IEA 39gtT7pdMwE V_i1yhjzdgI qwsrKRo5gdA 88fxqiFGNXY m5aE6rnmIwg aZtlkGEwfSA 4a55PnIKoz0 MlhH_sjxXaA O4di7-6b7eY EG_6BpNd0Vw uECrYxTF-pU 2OOUlE9F190 ZGF2551BMIc DDfuaxazcc4 V2E341Ilexw D93lQnQlJcg w7VbNRVbRQY -BOt25-zf8Q meDRW5WV1R8 TsBMOksruxA ZqTzBhLdJO4 DZ2_coKUWcc AdJe8nZ8crs 3CR_U8066OY wMZ5UJRpxfk JvFNTD3NhH8 LbMpSo9yvZo 8uHpWrtDfAU 8RRzvri051s 02064E1SHtQ dMJolQgBp38 pYXkfLVbLIQ ptgpK6nH-5g wAE0vlaKvkM v4Zjie4qH04 KUnaFhIJ17Q iNxUsONmig8 Jv_AlRfm998 ghn35eUPiIc 5oAIVuFPUdQ zTX_mBbobME WA-A3QhXx30 -5RW2xQ9pNs weTmdGoN_SQ vILYE9lG3Aw 4gbvjHb0ZUA d5lyojjyMl0 kEKqDuIl8Wo dkB5SsVVlOI DZpfEy3OsrI V9aRvKzTOc4 Viai9bgo5KM 7rDK27McgEg UD_gJShgozE O7VH8LKDnr0 iMzGaN5Sg3w NP7_SIRfo-c qYgpnWoRbXg sdfDF8OuPPc u1_fdJ0f2iQ HmGeJVIfb1U CaCW78inauI v4kXrblmBE8 IZGhNReGZTs _fap4qRqTlk rC6WAAlNHt4 _ASByCtlV_o ebNbXsFdz9w O_GMXI7Pp6c _frVHCLECNQ 8wDlH8jWxYk XnJvHpxr1Lw dcO8blFBl8g lQCPntZhPPk SfQk_TF9KJ8 CXJ8c0rWJsk sBpNA3HWj6Y -NeY5tqk1N8 JrlQ3NAcPf0 _h2BB1vo27s x1brwiNhp6Q Yo3qKhfO_V4 FYh2_trJNiA K_jwfCn9X6E c1nmARXTuvE 029Mdp9jYiY oN2S394WfuU c3nJu9SBkis KVy9rgFD5js RnTG-5XU49o CMcqNCzUlGw y-4yAOPVjZA IBN5GruNnME 5k5l5PQJFrE JoNeXThhiqs oFEEoG2s_04 ghaZWnGSgMI WQyUUpQzdto HxyKbR3GmsY nINkPmHZfRc 8NFxckpb-CY F6AdQghTUis 9AyPzu3JmSE smtDfh1TXe8 qBGFAnbZS_M FK2rc4NbKco qrCkASenz7I jCatADs_uW8 Cjg8Hj75FPQ 5d0GYRAD_aI MJJ8AJUn-p4 BxFaosg1mV4 mFj1lf3ECK8 B3oSlrpSf8k LnDG46BruE4 PUo-B7AEAWY moJvW1-7_Cw HnqkmLTgv78 rlX19RmlimM UC2zyr54O2w UgjmE8BWps8 I-xbToSaaPU axqYHL-KPRk EYKwSLZPwV4 RxjCZxfPA3U egC34ixXtos YYc1h1Pymto DTJii7bLit0 _AA7Q5bWirM MiyfHiRy_tI oHpI2u95uUk mLcwaMW919Q JbRDwutWOng G-_QYRggMwM FdvsQb7f7uM 5tpVvZo9hus dL2_nbhJaTs OPmVkpUsbz4 4pmBvrehyTk 2AHC98YRBKA o1JgvBy3_cA c9vl9Rurcc8 T60vdoUUk_E FmG9SZNVpmk 1uIPM6h1gDg 1cFyFvO56Sw GwkD7itIsCM tqjyFalTkw0 Wwoxu41UkNw gU8Ksz47C54 bVZ_-0df7XE VyS-apNPxUI ys3a4yA-5Eg 5GL9pbYS_D8 kBJD6iSkqxw VGQWULimSCg 0GH64kmHZvs yPbgAbAimoA huE8fA3Ln18 QQ6SadUAXWQ I54GtHWXwpc pv7Y9z9ZvR8 k3rxddIltIA VtVq2S8qp1k CmCNWoo1TD4 M9MvIL2FDaM Ks2IFhAqBSE BMVmbqSR668 JxZHAMfuwsA 2RXSVTFM3hQ 04RW0CPquaE NCm1lI1L4LQ ANZUU_ev5HU lfXtePMdNMk SELIbxPbbh0 ZDYLUH3BImk aVCOzbRPapo GCOXBnHRdmc vz2RAznAy9Q t1x6i73klIs Jxk0QX01quo nYoAZo7L2w4 ZryPGAMBuF4 NUAs-J9HatA CApovMdNxw8 Ud5-cq0a1sU wlhtHcN0wo8 72R97Mzaey4 JhGjwr3rLtc MDdgxMEIYFI aJl8UJ7-JiI 5WaI5NdGVw4 uDr8qT3BlHM 23x_B3MpUH4 rAULcuSAZeo v5-gQQunvJw _i9YzGZS0I8 H-5mWBsCOaw N72sZx-UMlg HGdt0QR55Ko XFoP9Dy1jNc m2REqMDEXNU sJusqH8NxP4 RslDexUKDB4 q7DHkw_5Wzw CW_yC7l6PO4 dFIsw8XfF30 BpnXXI34rSs g0CFQF54ePo s1Y023ZS4Ms rFXajFXNWQw sQolThygoGk 3qMNxVVQhzM puXEHhZgXaY bSW_sW_A8pg TksvZdrx9_A OUo2Klpa8AU Cx7ip9cWKJg RSvx75Md5l0 -WN4uZXOltk zJZiy6BuuLY MqQ9-AP36z4 FGcla1_O220 ei2dYpiS-Us 3gCyObtqSEo YGFrKow2KfA Giom5_byviI wMvTR012Dmg 93tR96egox4 BF-sTHMVoOc 381Di8Cw0-I rRUuycF5FTU 8yOBCGwMpeo 0pxJFZ8HRV8 v91LBP6w4aI WTi7v77XZYs eW4DpZkOe1g bW3ur5td00I oJ3bzg-Tvt4 YOxfSSv14CM qjbkmhtAsJo kZGlMOfzhC4 yIF3Vr_at5I 4Sl4t9JNnuk NsNN1eHv7MU JpE65kS0aIo 9CKyWqb5-sw -fMCqLBMPPo A-BrlQ3h1i4 2lavod63XMI LR6C2oVQr_I PhBZ50d6Btw MRmFis1ZxUE lAIJ6Twk8aQ DHDOgbfwSlY WjY6_V2EM04 _r4a-vgIqgM BSy7Wzj4OCY 6wa4qfLmyoE SvVYUW8r_Dk B_CRLQ8VXAg rVEFouzc6LI XFmCXGXAZ5A w8td2mMGYjo BdgWnY2SCq4 NoiLYCUpS5A a_7a2sP4WMw gAN-yHGtbY8 jKu10hihpkg mO2W96NCiRc PKr0pj8Dw6A OaFB9lMthfU nDbBWcwu1jM 8tp5RSId2g4 BSBKmD2TRow ViUbA_O3N5M mM2Tc_tYYKk on6B12rsn9Q ZczgtOsK7WU 9dcybKF8Pjo cFzsm8tKWU0 9dCHSNdHZQs uD2mdsAwJBA s5jDTz07buw KwnTYy2p0AE LOxqK6o4NN0 HnnBvemHrWA ch6zVPr6lWM 6ygujqr_JWc HOr8EwpHNwY Hp7zxA4BsKg RH4cgOQjITc aPElaYUCTmA ljK_2ZT44jA q4G5hUvL-wI nKCIuHUFJnY cvakyq_EaWY sogf5QgMqJs JNLW2R5dYOM QnaTtsClgc4 54kfWG3V-IE lU2FHV2lr04 EqoU4-wHxDU SHdKVf4jA0c LEdvMVoFgro x9U9Xi1yQMo c7StgLYxbPU gpO1qCdOHGc Gp22ZHf0_a0 zCz-i5sPrBo EHeR5XCO3uA b_BJbecP-Xc 8SqhsheKNqg rqWU2zS3rJg jlwA_X5iyBA qPpMWDyyHy4 Oel3rZOooFc AQAQUyNnXms MKVy1bpJCi0 6JHAWVBOq3M Z9GVG_9yN7M fZAksSuI1R4 ujH4hnVthhM pgk_j6ehCEA F4vBy7g5vpo 2sROc10VoBA MxtB_Ri0q_w q-5e6U4CdbU -TAp26oPrvE Qz1-NSdsqNE Cgfw3cjfO6A e4IJ2LyK9cs -pVDJkIp5sc omYsWxT4Mbs nAq5GhiMdSA fIZiQDCK_Ng PgeCL2KdU_I JoPPsr14gRk rb7z1bFt79k SzzO21mg8yA vjplEkEo_H8 puwOGUjUKz8 9hEYOiPK79g c2TTFWzBuE8 xy2zgeQ7ECg Nd8HPu7y8qk xoqU0B7BGQI 9leTC1Rk2bc 215DJ7KbNsY 4zT8gk15yrY 55wIwwmrHxk Z8E9FEaEm8A imtYtoHzPJc 8aYUJSDZHKw 9M7i6Uaf_f4 HzCGd_bsWns rkuhTjnuQZ0 YE0WStB-1cc rtVhMrgtcq0 ROYuupoGarQ OLhu6bw5EYc RCptP8ItWmw r6Lf8GtMe4M rW7WlT6OJxE kdj7BqZQfaQ P5Mn2YHVg0s MievQTukqMM AO_t7GtXO6w ZYq7Q_UW0Vo B2I2s9rEOCA sgzxcBufwS8 bzRUc3Zrvfw u9R34QNUy1g HapeoGg80EA iMJnr5bhQUI 1LYn1my4jbc R06Ujp-UBx0 RtabrwMvAuY enY9iKZ8mDQ KE6dEjZ8qmg buGiJK-dXss HIf2wdbacpU oEODtP56lBc cQhgVl3V1Rw c_69KA0PKYI fyIATgssVJw iB8YcYRzDdE IEfj3lH-scU BLHc07GYSVE -jiHKFt981Y RMRT3_djqqw jyzhfamiaQc sOpJs8Licp8 50ZwjmYsIcY xPulA49aBZU _z5tcqcVgvA 885EiuL9GKg p-zGZTYN9nQ jG2FwGoAPNY dNK-wsUHMvw m9vRMtJDEVU WlHZBcuKDb8 aM4Gyz0kd3Q XGmHx9PAaeE 76S0ukfD8YU T_igwYlgnZ8 uFzV6DktOzg HKrJ0cZ4nDE vEnbBgByg98 OILU3oEYu8I wFSW1l-Am_I n137CIxjKTA yWZtEE8C1x4 qNCFZLQOj_M b0SfZ4LMV98 2nFh-kxiEng YwrX990kW9k LiNFLOs3BfE DPksJcC1e_c 9FIHPZrHVGs 2Ji7Coh4O7E HL_VmoAOZtY Wxo_5gNakBA e0qpJCNLViQ 5CrufNJ4A_Q dwMoiBGmH_4 uOmPHEVoSa4 MM01XhEgcF0 NOphOh3EqKI xrgGccehkKY o_49_kbx9yA Lf6fX3bsCxA E49Wkrqw_DQ Hre4nTAQcIA 3rtbO9uOirI xSTf5WyBUQ0 XGgVzfEptX0 o2VM3B_izXw ccX1d19hmc8 -dzyuUNTwUo LCxS9lUlCmE qKj2c67Ht98 esXVSyflpDU JrPj-b18Lt4 lYGDkN8xPt8 fOv_N9k5im4 lAhQbCN-Zvg ukmrk8JdGxk MC2MLmGhc1M 0sdIO3lVTWE HiuPgdW3E9g CLZUz1TwsDs ks32K99a1RU BkGbYdSwFCU 4cbfnH5APuE Yg95nS9poCw BWm1l21hBb8 yd13zj2PC1g V82hFRJcrj0 2WZCKiDOQ9Q i3EF63p3v-I QV6em4mxnE8 GAEBkpl1cIQ 9Jwm_LHAwVo XIQbAhdlZt8 -J_tiDK1tEA 9lTKjTuPGEc aW_qXKNDWtU uAtcsqDjOr8 W3WRCxy2ZaE O1fxGIiCt1E l_7z4h0soHg uc0l3djxQ5Y eqk4fOK2VU8 Lgwj8KoDshs Kek4f12wu3o ld9ehvuVu-8 z67cBIaUOzw kTZLHA6zbnM 0xo0KxL_21U -FGNt71n2oA GP5MbvcXb0E Y99ODe7GzfM xZYfE-65U3Y ZMHEIVKg_iQ n_Zor8p_ZsA iqH7W6dLTZY 0BozXvlwFCk 7keYfMMBIws Kf5iT31fZN8 gQ3YdU0WlPw 27CB8wWJt94 jJHNJjwNUWM udHPeemZ8zE IOmR8ZCYhzc TpXABjbV9cc qcMHKqF91tM MoInDyDrLKk Wxy1loV9jqc TsCTF8rAkqk Va6oQ_2-jh8 jTGak1m5o6U V7yhBe0E85E h-Y7v9WyBug zZaA_9hN1Lo Paei6bi8XBo 7PcolFECV_k jj5CG9kzDYY 8zUemCOntvo -uQOkA8zuMk DTXU2pMEZeA oRMqBipT26M -qs8tLNcMVY tXmgYy1D5MA XoW9HJEDk5E cLmDqUnUEE0 mhPPLQqVP0c DTkzFvyvzkk C-qXt_tIUJY 6QYrOTw1Y4w h4OULP90F0c uCXHj1i42KA wk34RXMFgM0 P749Vnd3WSw v6Xbfyz0aXM 5znSACsZMa0 7H_MQ4OSwPM eopKHS8iM5Y cNkof76o8P8 V2wuTBrkBpU zzt_urtTkG4 cbzkmMaYSNg 1IZtDOuubT4 mTx6_XT9Hns 0awcEOEug5c MVSH6eiGvSM RrrQxZ4j7t8 yOMv5lJpHwY ypKY-4583qM -sq1AYZOWz0 9z6_GAPIkTU q_d_fgqJna8 Ld2g77JckSk a6uHu-9c23c UOdl87tD-58 pUNArJgkB2U J0MXhoaoPy8 Zqp8_F9EXbw vBVkz1xSKFc ipc4KfTrRZs b9oREoCw3ew qcFM5Xhg8W8 AgZGoFX8xWY Og_AVlwo94I _y5i94TfOxw riJRHpcshE0 qlwQsJOKoIo 1bZ_L0GOaYw kgSDN6_VyR0 D4rlczOezQ8 QOCLLi8inz4 fjsZJkL1lB4 c17KWinVFss izxDdUcC3Ag s0bxFcZV40A vEv9tQL3b-A LwNWzSruov8 DEDWjeRGMks dxsVIClobT4 6GfFdTJiRmo nLcCOlgev3k V6I4cJ1kJVc WSbK1kJvTkg r9z4qCu9sTw lOaaPz6E6ms TtLvNyDGUg8 MNWmA8mmbH4 yfrnQMbd64w fJ0myLkUGjk R0k1CGlHAtY bIcPNZlEW8w gLEioQymzKc NjN_jPTXHys hFON-hiGW8g 9j0tqkW7Bd8 l0-EYjaAurE 1RTpXJVozSY _K6U3FyJBv4 pUtdFHAAGhE 9oDHw4wwTQI _deZCO2ojAo zhXaZ2a1NcU xehwopjgKGU LtCy6T9d6-s C-DCupYm66Q ajvCMC8Na3M WB9uluVLP9g _fPBDSFxGq4 YzPOjXIwbu8 IqefatGKx68 bN3U1IwMvhI OFmxUUOxZl8 r-Pl3TQJqhE zriRtxv9jf0 uxvN1tNASYo lyCbXVV-PAY 0PcN_4_J6b8 AbI_r4kXbcQ pe1z-Tdk36M jQ903giVNAg bnIEGNhW3ZY SEaGeyLjBUU OCXvMchSYX4 vVjfW-P5yZY HaTAZMTwVoM Fj7KNHxzYjc eqYhouRLYis 8N6q0Yprfwk W3-UIdApbyw qTIc6y5mojw Hj9WsioJbJw SJHWGDkIxNM IvWyoUACISc EFgCZDRkacU u_Bfpbz3owc KduMYNqIGBA KDyJYLDyBzc mbPEuV3NJIg QJ3Z0TSIpE0 G9wDgZk1s6E R5409gLbXuw zBjq9UbpCtQ c__26Uyp5eU hgGf5X8-j1s Zzuc4RiUjJs Rh-nBzPUoOk UyVSJcL-7BA i_Y5UB3xxW8 OXvNnV-cwFQ Z7C6L3yRYGM H46x8fD7WzE 3MK7O6w2Mz8 Lg69Gwv4tOM Z8vCm7TUK8c RcqR5cnQyUo 8iqKSKK9_uQ 1cCEE8-jhus 3SGIHbvcTRc Z-GoRxX2exA TVAhhVrpkwM I0YUjv1u-Gw 19WT40D513Q 8I5_zsRI4Zo ji4pvRXDMOY WrnyKH7u6DQ LwioGjicbRw irQ89Ny0HkI cku1N8eCUlo DDv-GQjcZDA ziPAPWBYU5A e-KbcJI8Rl4 cidI_7BQUJE Pu5OjNuJl30 fnl5_3zT1d4 hXg2LXOwsoA cktXSK7io8U fTEPaF5TjWU xfwm9CY5dao ufcsS9E-JVs 2QLbTjd693M SKEvjOq6L6o ic5tRp5nKOE qHm2lHzV7tM ClrfnLtqXYo 1iiGGpwLdQc BSEx_EMtQW8 c_BMbnWPWnU U_0oVOS3LC4 Y-N5lfNPLnY ddm0aMIKiqY SZDFWDc58TE 4Xvu9fzPGhA 10GtbJs6GEw ZfCZwP2Qe60 odWPv33yKAk QsXsfrk06-I eR_BcTP8HOM PPMM8VRgEUk AWLkXfNg6ek f5f86alm7jk 6f5ggdRQuB8 D3XYhRv-rBU DCT__l4_m4g HYvwDxWCSwM TWqf3iE2Gk8 Q3kOA_8ws6A wOp2t0IKnUo I6mpHW3SMcc xtz6dAjWz3g I4hc-GcHCsE EwdFmqEvG7M WEszqunyV0M MjFgD2yLBI4 JWUrJ-zH7fw te366vMoW0E kRWvfBinmWw YCN_nis2E84 BF4-iXXZE-s OYuE4tFH7lc fp86WZ7Jn5g VlGVLpW7Dsw -_HlyIgHUa0 wQhcRCuORak PiyaX2sq_wk x8kclPvcsTI Lc1MmNI8jLc Er3iFTlMpmc xaOERHG7Qr8 IpQkAn4FnkY bLjFBMuBc68 HHlf5HhqdOs MTRBtcsZwjw ki8KblCCOuA SFHSKaQESeI 0r4uUQBLokk qkTP21NTcgM vqlURGjq4AM Ku9rtTERy1A WTs3TbtIwUA WyjaZFv4lgI ePUgjJofgq8 xUAn-hrMa0A ilZqZaSUC0Y hrcFkSMZBng -o8b7tsVH64 8wTnBC7doPk 4F5sPA5E27o Q9szFqOlDJc OwCO4rmsct0 TKVyyEsA-so RMd-tHAtdoY i--0u4m_zZg urWMTYuDxME MuBwxePS-s0 pXIcjMT1SUg 03NoI9KiZOk BvwCwDf6J3w QXB9qatHDSU 6BDzGP6HuGE Z18eK57wD3k 3cqeNsSZYh4 dv0-EuBX490 SZKLpJzv5JY pKN_6Javjnc nTz_lWcgDhA PBF9pOAjXt0 cNLFuTms4go U6uNt6h3_bM iJMYIXoFGcQ VKaGKi9OHQI tTbqVFrvn0E 0S5lIhsh2Rc JSyZq8Eg5eg 0zVmdCICQok 1ZeDq4Yo6Jk h_N5IH-bWNE IYju9ObPTTw BKDnwX9P7vo Ofifxt45nfg XF0e2BjTDh8 0njU7LPADwY f_BcfyJea_M iONYYY7lHo4 TlcxW8KUzks 1Mx_jHNEBtA bkxVMf2ozrs eqIkFkmb054 _d4WkQci7zw ncOY7vtsY8I 6H72hXsLZ8k oYcKftzUS_Y 6XWpPwp8p_0 mkYNhZvlHv0 2BtZY3z72jY 2mSiP5Bbdxw U-JAuw8FsrA 7TBwFfjXd3s HNfciDzZTNM qokWn0jfbM4 A6CTejBh5QU QKKrwhcVEJA bNbi_KLd_Uk R1JHZFJyWds -rtUvlR1pZE gpytphKy7a0 pl2HDVRj_4o Pz3SOdEw0LY HtxIqa2mXaA zXBPTIjfZgA wz4HLeURVOQ 6UvEeQC0Odc 5wUu-cKYMgI 3AD_sQbn9EY ajBK8B_kYO0 sqjS__9_Irk ak4mtSDwxV4 DLasTex8Vnk FYo6dKubr-Q hp3inTPISwQ lMy-kxTpXKA sLlQvz0y7QM CwowG9t4bPU URHjEpowEcw BLVhog_zX68 lhhxZt-oU38 RZ-__QD99DA lA2ubmfr6Dw i3jmM-Fc5Nk qOeMwWgruZw QDeWmH3M9-M qZPjRshIz4s PykWxPq9JEE LCEr8N9zXy8 qpZBUlqRoeA oOl1Kvh2Zwg uyfrK4LrXaQ 3VfuSHP-57o oHyebwN9XXU IwcQ6LDdW9Q ohgN4PexEv4 nALXcRjbVzs -lAXOMpPqYM JuvJl9iwKb4 SLNBos63EkY Ternps0JFwo cEafT-GQfv4 2nChsqAPyHw kVPIOjjbIpY Ua3NXljreQ4 CWnDVW07_1c h5jZBcDev1s V1l3TboL5MI DtoCw2iOTSc YklwFCfEEMM 0TjrNjcFv_A f3z_ene1G6c opCf3mp24dE 9LvdctnZeWE FxjONf9AXEs 4aRryzzZLTI yNs0hmNinA0 ntQrC5iclmI ofIzQbTGQ2E HOoHh7wHtvQ NY8m6lManpQ e2-VnrdN_Ng MlRFw1CvPd4 nr7ui14-O_Q sKrqOTg_FJY t0Yf_fvD-lY 7sUwnda1FUs G4BGtSvviS0 vg6-AbLe5nM 1DkaN1nDQoY XAWdzV2Bafw ZSKSNo2z8AM 6MbOPK4TCB4 XLSkfVJxbwo s4AzrUO3D1w J0IxGD8-6Cc Ma6SDu0V98Y zdyBsGHbs4k s3RNsZvdYZQ u3A8DoRXiSI sMt3SzAH_i0 gzQt5VctFfI EaPpa-eoxi4 78RKzUAQD40 8fvhchY0UmY QL412_xWtT8 J6JcrLIvKUA DYE3nm9voUk lDa6qc93nNs CttvEq-ypno D4QyCdRvXr4 JnN-SR_2ovA 5Z8LHf9J6PQ -5Pku48YPFo t4DCOpG1oNE MA6g7AEH_kA B7ZTNm5o780 GB7Cq_W4-U4 CYF7eLv3hMw RVevBZFMkys u0kF24ceZMI jJiKYmmWiCA x5Nu0PPrI-E farC0cWkpvc LzdoMQL_jR8 njlI82MV0gk rroHhssQbok sTI1U2BiTNk 0ROplAtLJvo KkLV3MzJM_8 s4nMGnlbq9I 9OFoTABYnY0 WO-1MybFFvI rs1V8Sxp3ZY akYf73cUU6U YFUCezoyzyk zAc3K7mjlxs VwP_-8SCu5s FCcdMEItd-U lL2AwD_4G8w TnwtTQlfaQo ZG4DMIhSIZY e0wRbbzTdhQ NmNveyfhpBg GNQ2LOxMi9Q 8TJk9N4RrNM ETqX2DZqAN8 ArSEv2hjwzE CKJcpp8ff44 6_Onrl4g6H4 3Dit-yAwTgY s0_sBamhlIs IypE3rPP4sc WRtOCCfKEvQ tIB4z4uMeNs j2lG-WtrrsA d8FIxfJaAYM cmYsRcLMvO8 ep7wuwsdgqA E6jJUN52anM 1c15w3kCHkw DKMzt447niI 2m_lqGnLtWA n4hHWb2UUQI n3F7_uaZUzU D8e-_q_iG6Q bKy6BtAbTU8 nLKymV5rwAU ntgrRUML2ic 5ZHYDynRjV4 w7ZY9tqDsEc L4fJ1ht5TJM CcPqBfuXdCo 92qwWy1aKH4 sQFqzFD78Ck 9H1gvvzRk9o JlbIb4XdF4M u74DpEZeHbg qDJg1qnedF4 2Yu7LGZcPus fSqvtspQonw SkEOY1s78e4 gqU37m6uoFw jBYxPuIGu_o vfW0mLeRXe8 -uhpev-dp2M FEddJ-WcZfU oWuYilt9hX8 2CcanSjYzlM -i9mrpATCms 7Qe11Thhwvs sOesH75ggbQ nhKgGtFIqXY IomS4eaONdg R-PAimSAL08 jr7HNZg0ljU jK0s7zfdDOc ZkynnGqL7QM 6BGmQ21EekY Qz836czauEk MAu2e0VbvY4 0x05PrIasjk b_HhiU1mOwU tenCir3A3cE lRjxk7z0kOQ RkH6Q6d8ihA 01X3KxC5GfM YiD9zhs0Lt8 Gq3WJ-sJj7I EOSJ6vijGyo V7-kCVemvVI HbdxvncHvCs faZ88f6Gfzc UnSxnVp8FzM cJeYngoI1oA 0mwMM8VrYmw vq8OmtyOsR8 s5XdRd5SQIw Hv-n7C1EU3U lp0FOpFdWi8 bAyb9cEDh2E jFP9_AxrurA z0j4sVZHUdo xEIhAu0v-kU tQkTtnCV1n4 z8lDbb_76Ug ac6FZ59tna4 6SyjoKS9CXM sVbhGDytHk4 2TWpil1VJ8I ShB8ZLISubA q9n96my-QzI uAO727Dw9hg 25_Kvrl7agM UOOGD4DLy-0 CKGHiP4bs84 2mXAB3HO160 YOtz3kdBKW8 Z8leMw24Nbc 0SMMbr2kXc8 VOVOizcl4Gc EmeHbU_s7Cg 8ZYQejxdHdc r8zjtGUA6tU uY9VcYt2bKE daPR5OjY6bI 8TG4sr_y-Ys nQunClrM4co zgEYrXfWhWs fMI2u6Jp1FE bW0aNTB523c V3s3OXOzoH4 5ntVWRhfqo0 RtWkewqIFDM 3hcmGG6VUsU sOGhuhC4AF0 HZCaSyid4m0 GHRFqRbAx1o T_ZImfAxOu0 7_PX1cVuaVA df1mSOyvsXU _8GB76HyNNU isgx4Srs9t8 eC2O1zsfn2c TqL70V8rn9I FIGm0YdXotI CSwnlwsBAFU 6lw33XpYhGs prGnVwLgxPc HwHADsTOVMs Fqeo-bUOueA OgU8mEFGcfA f-zgBlWksMc rILBK11XLA0 Cg6X7ukYzTo I0jMv9vF9MI TnUS6tDANfc pbSX1diNIlY tJimPUh3vmQ 8d6AniF_vxg q0DZLuG2FiI _k8uSp3-900 5y719xX1I5U SfL4U_bOGvc rGR6aO4JsH0 FKj1vfHB2i0 M-APah17AQA Nc_b69ag6Eo xam8pRUej7A wXnYmZhdm04 jepTSaMF2ZM 0q3BH18BmZI j6_umKYN_JU hsE1N5mfvmA lJIPM69YQNY A4ktp_9Q5Es Pv4M77BcywE k4DsinIrAjQ WcZSEqj45Ws I1OmcMDFR0Y 0iSD31ToSC8 hN952f_jn8E V9jD7kLAmPM raLZ6l174_k 2RQNDXuAIJI cfILhtwu9S0 VF609NvGcCM WwHpeDtSMmc LfDjQe0B7Tw ygOrLkyfHsw WEScYukcD1Y TrxSTI517Iw KoNukbGYfFY arfamPuUOek shO2tSVK0IU _ewnZCc0imw I-xX6foX9zw hdVQlYgFRuM LTqaoTSCTc0 rz41nM47q7Y vXsKVaJTQCA bQInfO7fE-s _BMYVDOOQ0E GpEhxhSoFAU M9CkGS1O5WM 9Dka54jH9po 7_OHC_nqFQ8 I_xrNryhq1Y Wrs-qNpKvbE 7rN0Kk3eUSo UBbsHeltzEE 0AslM2bC5DY g2atr8aQ0zg -L9EZRMgmXM rYjtudWe7O0 bOKID-aX3z8 iv2j0CJkzbM 9aPhLF7yfU8 YALDmRKFYSk 4IOwJNyILNI odEociFdDN4 ABpeiNlMOHU ph2dq-pPBnA OkVJ0KvOV60 nd3MVcbnfAc 61xq5Kja1Uo Jwaw24W2bW0 Rkc09sTiS7g KHPPeGoWDEU 2KGv86GLvXo D6uIONVMTxE W9SemYK9HEw jMv808xIuwg 6oUQEh-Xji0 QUVhbRmhn_w Jc0r-WTEnzc V7u623DEJD4 c94JyVrcWwE pxy0q9dp1GA 9GF-YNA-iTM 3XK3y_S1kP8 6BS2yXD9Ggo as_lXF3HqCY ioznxKkY_IE 58qDZgvh3jk fARjlj6q1uU ljdH53Ro0xQ 50cIB7qKfnk 9ac3upRnOl8 i1n8bNgTUTw NAH_6By9C7g A4Sywg8Yw4Q uLkxV_gyYbI idKzxvXO9_8 X2YdsIm2Pj8 gaoBscEDdzM 9qEoK4PYN5I LwvvOrYPcuM Qq2TXAE-Ih8 glz-J_geNNI gW3KZsBwQzw WlaQZKko8bk OzCu7Cvdsjc nHyK6uFdDWY 2KuNMLOKUXE M8LDQ6M_CBs Em8I02rqbhw QKEMn5rTRL4 Kuwa9UzfMGg sfHaTenaRBI n16wkJDq2VQ KVt9YlotsuY d-nJUGK8ABk 2LeVu2F6s4g -e6lEsIUf3U KzWronMcXR8 LBU5Yu6RFBY ex65__9m7f0 6IPcEITrktA pe8vv-fGpWk 4dp5Q3B20aE qaQUmqNJTO8 p6LXVK9rPbw K44KlE3sSMM VpOmvE4sLUY Ug0QqktJ5tc VwfXJVjptt0 o3uf4YSwY9I hcUVOlbNb30 VEwLgrpyamQ RdIAtsbwb00 3H9TofuarsE Hsi4X9MxtkY OdL9R0ZODYs 3kfnzu3RrFM 1U9wqQ9a8GU YlwAVV3dC2o k8QQCwXyVbI B3nAwyocJs0 FOAj7BE1VEg Vz04LQ7GGzc gknxRGof8Pc 9a3z1lvLLng Aqqc9H83ECk eKbXO0f-mvw RjdPAElUs9E UtRR6sLexR8 qbIEepu8Z4w LoT3AimKXmk LHrkO46ERP8 XFOoJ3gwplQ ANYJbKdMHk8 r_a34DBcwCE DLuROR8kLy8 ZkpC7VsyqaE WhZEKkpf3CU 3l7-8yvdTLE KVDtV-uVRq0 o-e8eejeHLA KNip2ZamrMc q9iIgRYUyA0 L6YJkhVYUXs Xm6JHSUoLpY -KOG8edoC00 ZWSHjks0ESI jihDFIqNz1s 4XpFpGcTh1s aTTbCJmc3Cg EV5W98Ql4vQ YJbQz3bTn6I yvcIugB8yt4 Q-xBDej7O6M WgBb0YoMp1g xQOZMIbnpMc P3QI8hTpxl8 EL9EJL3O7bU I2UTg_bYu68 tcCo38aP8qc ckAD2sg5SxQ NvuCGs9iYSk NWfz4zLi640 tqfFZYur4sM DW3d5hYgV_Q wpA9m3t6bNY F6RpbWC4-L0 lqA3TgVtN-Q oa1LGWv3zkA LWP0KujKOKY 5Rp-dpnsqUo 8Z60zTp6Izo 4TSoSMLHTi0 FXZ3JnwIph0 3OHisdS9LXs WeVMy5j7ykc i5znTCoKLPI k0tc08W_t-Y qkvQOEJKHNk Op9k4MLjKSQ jaSs0dUv0zQ Gg3woGs9ZGY WGBw3zwzqwI -Zr-B5aIEvE iX1ha-hADlU UqvuJLOCSxc PII5jcf950Q H2iK5QHr3Is F5ZP1m4J0H4 OhtKiOEZBJY 3FPsMeQ6Ra4 cxgg3KTdRcM E8LQ1SmVO2M x3jT6tQ_gJk v3IyV96FX74 NxnXB1ViFEk t0R7IRtvvFA k2C9QOtoreY vFSAQ1Nj7fg rTCpK6ONu9M w7mr-fVLqis wVTFBeiqCSE rmqvWkh45gs kjRTvd8QRJI USKy5QYNY70 PjBQfqlstnw 2Qfa77SRZkc cOe_8-IWvmY SY3nCdfnsCQ hg27lxt2IFw lWflJvuYww8 sLECDbDoXaQ gZbzZaYK3Zo S-PPQ9aewqo Od2dajJAbEE Y_bIzO41o2c 3r2JiHZVEk4 6uaqkS1AiS4 1Jaq36snpLo 1-lFBwn6bKg 8rF5KWQw6YE e3siZO79KrM f5lTRa_ZJn8 FGqPDYzAXdI 2IVX_4BG7m4 _lykwQIS_3w hZqVpO3_MP4 5AujBlOtU88 gqxV6mOE2L4 s2U0dL0k9s8 yO4oRzCAc4k ksFNCZ951Oc -AlKOlUgzaI LlWcSO9ok9g zXnWUj1a8Ss oFon0yFgldk thOz5eO74hE Bi2CHeMhNyM EodapLIzTnk k2VevzNW4AY 0R1F6r2-ngk E-dMy3oJGT0 NCqhkbAkzug 0SYBBmzZPOA mPoxI4PmAl8 X7KoVUspHys lfCVS3HWdjg 8qQg4bvTlho 7W78nWDG95s h6M2ZbuGfYc CcKPNcDGDLs i2uV68pKreU HDUHC--wGt4 YRG4Q2gIWjo 5eSrShL8dt8 Af2wrig588c kQUXf8oO73I IP0UFkE-Nng ohwhcMgHUKs 6nvQySlxSWY lDksLpsqHwQ dwMz7K0kr-M 3fjlQw23hd0 yQi_ZJp9_jM hkHrNtJHbRQ lsgl848rea8 9MyynB2RnZQ I2yuo_5AkCs e1NkoFF-13U sCUSUl7-4Qg nZSxvozKoeE sOgO4lPPK1U D83XRiOVARQ Id3vqOPHk-4 gvoBpSAb-vM BAqabMWnAmk j67MZXY33c0 Y6CMcllU8J0 kCqEADYRg8g i5Y6BTlx37s 6JSqeViZRU0 PyHK6QRniQ0 _U_s1OKHnlU vrujU3pc7-U tifUOGFTOBM YOO8a-wBTy0 S_PvnzDlqmI PlkdsidJA38 CekWztEL504 Fh1ZUliQDFg _-xCcoG6Wlc GUw4Qqh5Th0 3ZQFpUxopm4 hFqDZ3vzyRw V-SMOiDv5pA TJ9f2rnjB84 VKu1354bPug MPQvVBaOx2E jsL4-BxsZjA hvvTxyks7L8 bbqRezPHMDQ 9GYgmwMfGXU kW7IPAaL7I4 fvYD-2ggmcc qO1-at2DUGU jBajVRGElXY ZTGK6ChH494 HHxezNV6ntY YegA1WNRKnU 7bmB4RhsYgQ 717gDCZQsdc qqWVQuCaB6Y ZEqt7tr41Mk WzlAPD4Ttc0 PLBt2zwq_vU 5LZfv0tLZKE iNSN6QhIWeA a6oC5iQB4u8 JMWhU1FfqP8 0tRSAQUheo0 p_-Zm_G8cBI OxqTSDSxRwg NOadx4ZICaQ ujEbejephNM arQDNf6cjaw tfvptl5VS08 JXnNKqu3N3w yl0jujA2jLw 7FN-chIhcNM 0N9Fzv7bYCM j42TrAVceCI VjlGwSBvL6g 1H0J9VhDCno QfrPUNMOS6E xamDprXBtBg MG9L-S6J_18 P6fVrC-RQLg 7lShqpv3i24 LFhlnBzdOtk XINddkzfTzM ypKSbnYOrwE f8Cjlv6nBTg x9L9S7jEv_M ev7an6-CYpc B_DMSu-NVZ8 h__j2aPe63w 8AZk-d0z3ws 3_dGBLwXBIE tvIE50OJfxM n9-Wk6ulBuA gv1nYk_OJjs X7U_RxbkaIg QiVfqVQ5t9A K7Dd88h25kU y3zcF3YvK-o k8Tw4JhzORM f2ugRkVMOuE x6FDJAu5yMc MtWRq5FXCbo MR93FRxKjTQ 8XkrkBt-8LQ siTZSTZwJ0E iMA4bMMh44w ZiXcZtfAbf8 LnqAE4Rjdqk aiilV691CzY -sYKI4A3uhc WRdy4CcRchU VAp9p0U1r4g MsSPAEtYaZE EbarO9zF81Y _QXyyj1RiCE GDrnSzfL-aI EtvbEtPIGiA m6NeY3rTpJU LlQXhEOzLW0 L-iyxIincCI B3v1kEzT4bA W8Iw5W2_bbM IAYQUTYc_tA aNUs1A_sUCc IhZrBku_eCA Jrvr-VIymgo jr_bZ2gzRIY yp6SO-tZpJw r0Iq2_euH44 k26hmRbDQFw WFsMguGrUVo 30QzJKCUekQ 8upFfAQcfEM xi5rxsY_Nsw Wo3XrThPZzo HGCOxt0M7cE f8znwPYsuFE TGyqMjtaZiw JnFHE_crn0o bxegamvM8ME gUrSHyV7Opg qZmteh2hT9A Pn_XD7jDwFQ O1-lkTgl-ws srR56T9-j5M hTzqKlFConk PpUWjff_OcM MCo6TtUkCWc XMmlJnxP7Y4 nRTjNEP6v2U 0S7olzuojGY qizUajHk7r0 Ruw9fsh3PNY 7OARf8dNLBc _OtcwxERu50 HSWtc01BlqM GjB8z0Bvi14 B1kQLmi0q5U JInEj95yoUQ _C672_Fkzms RjKNbfA64EE AD5N-le_1es 3T-VAi2Xqq8 3-Q6PbschQI _r-R-b72rL0 1i8l526qhzY EMOE8Ub7-zs bBzNPO001NU 0BF9MkmTBjk L-sb2Xeqn14 BPUpzQ4vX_o rAKR-BBQY2M sqmzvduQ-JY HuzpoTGja5M KZrcqIvvB_0 cHQcdgc_Whk oN832LNaq4w nXIu-RlvPJM wbMLxj0lKAU rllKhsQXZXI bXRv0TjJQZ0 rtqgJvhrswY D3tnuA1OazI xSyvjgWMsKc B7FkLh0uqdc 7khCMEgY5wc rhNty595BeI PTg0wFv6dZ4 xxfZmz7TxSo 3RgRVQqUhhM 1fdta94pfxc MrL_uWnwPq0 rhQ5dWLFLPM uEJ_Ak34ias qZIIx-X5Bbc YieQdHA9uIA 05nRqVJlunA DEHpRuG-P94 gj-Rl-cgKxM CZaS2CCnFYs djMYTM1p318 eL9aiYpAyI0 iwXsuJXUau4 Cfcaik7bDyg K-Tad1Lgw7k bIHeoOh2F7o l-vk0fgFGd4 7vp7Lpjl_vk oXRixZ82ZqU FVJX6ODlvFY OOBt6EktEVg x9u_a8eEPlM SqISCN4gNNA A_6e5AilC6k NGceQLxvFNE yn_iiD8lxZQ OMEv7FPE7CQ pV2y0et0TT4 KRMxuHWOcTI RXC48uE7UzM Upww38-2fyo 2QCUgqD37fk 8O97aGzvU3g 24QQqGjDEKM Nfah2Cy_mwU WQ71crXovIk 84ybwb86tKs P9aAc9ibVWM 8XglzsFYAJU EPBcADfQoJY dQ0sgbvSQAk yq2t7SjUSoI C4dkYaeNLuc AWJPmyL5uHI AF9cqjNt9uc YSQ_eohNRrM vAyq-3z1SYo i1lkrSFlpss 70yAXCvid4k I1xQMJjTMLQ Gx7y8ecslp4 Nf1uvt0zKFU E0NZlvha-KQ XAm-zfxcktE e8J56HbIyvc S4YcLymVzXw b2WuWXRVdfk 8kiNT3_17i8 DTXWi9iR2F0 x0yNzsNUoK4 ffR1X6gndvo XXVbPZX6qz8 LntFGGP92xQ 3JLDAyAEaqI 1YGyKYK1HuY w3HklXic1eY 75A7PFuBqFk gtHSeq99_l8 AA_yIRZNg1s _hMtM3QndW8 gz-Uv494KFk JR_bnlkaEss yBwa0z0kCrg 6Tjcx6B5lbA nSJxx_KUEes FyS7kFIZJ6k 7O6j3eHsueM 9Vve6PAxRpk mQAlpiB3_FQ B0FZhLeHy7A v-UIgJgiPJs GlHL_ippO8k y587UlBV9jg WSIS3ZUDzzY ZW66_8a4rqY VzZJ9-El-a4 RemcXMCCQVk pFxOuE_0wqc qdy5TZDOwm0 wNqqn5NPJ8k fPWCnwZEOqE j3k3xWKZIn8 Qns26Wdvph8 FXPNIj7q0lU 9J0DZojg6-g xCI_stZgRHc HEnmNkRRmHs sxtENaaaPpQ hgCr8TOxcCo -NW-w5Z_vpk vJFN-ZPqCiQ ZvMDRj9jFaE a861J6gxqmg w71n9tHYuIw qGrKwxglKJ0 mMyrxQNItpY mFBIlYRQBLI xiNxK0Xiv2E sehGLkGe-iI 9lInNK2jtx8 S7ZhqwAzKTQ wwwhtUdGOVM fk2MU617-Bc vj6kMfad_2E HBrzlqErO_E kKlihXmSqPE IrDrwaot490 5ud6mZ5SULk sheRsZ2HOYI -A-fBbIXbPo SYHN3rt-R5Y PbwgDqZazAU 2fEZc4acGC0 tlSZa51g_rc WzDlb8zf7gQ nOFfrd6bOh0 Wpen_d9INlw MOKKPloglVE ZCz2Ob5_-bg Xbf61_Fgldo AL2Qj_h_d-o BuwF3dRJiS8 bXZFFinWVYw BFpoIHexhKQ 3PHLmv4Zzu0 VgKqo3TvZoI JmElZmlYkHU gRxu0ooBrPE 5XINVbpWRmw kdbGqJtHWQg nNLk8GMdFd8 lk1As4QnaCc 0SHMCN-6-IM mydc8K7yaZI lNHheEljm5s ZpJvQAs3_98 ZHNyG9ykGDA DPPoZpw3NOg ky1W2n5RilM Jhvq7EGVtUg 7BEpbVXCbvo gbbbs1uWxvo 3jEZ_y7_kfs 20zF8Ug0MjM 1TroueqxAtM ypf6WHYpeRU BZ1KEaetIwM 2HgE2gZhovI 4amekKHX28Q p7zF3vZL-4s F7UEddgJxrE Fy_utfWemC4 QSQTYxhlIog vdq609Xci-g V0MF8uNW_gc xVpk12wYQ5g 7UhOWJw9eys g5lJIy5IcWc LhbHp9ey_sU G5nY_snMhic hUAGX1IOMr0 2Bml42cWPpo xVc_GWABEFk oIu0P3gXxsI aQRjyav-x8o vykvU-52g6w jDjZ_Dh6HSM 0Nn_t_RfYS8 K9ITp_xSaxE XEQJU3VPjHU BeRTEiGRbw8 nIhrGSxslzQ 7qPmEvrv3HQ xWpMF_EFqyc dMOQv0rb6DY w6n3WpRNWTs 8UMJAkQqhcM b7Dxy34dFyY WI00FLWTRrY gjWdFgV-Vz8 rWGj8MCBBnc UEr47WrS7Ys FAWPEOWyWN4 aJh1RC2Z474 gJCMd15eaW8 2xRNmBGvfSk Il5lC0E0nqM KtBMZ6VAZyI JRQJyeZ0wkY Q1WdHuNv1uo RvQ1y_CPuDw 6-RSVTLojGU HG3e03wWQu0 -NgmhVRFApQ 1Pcd6RZexJI zcZJF81jt4w Tj9M34DzAKo MoRaxm7lK8g fltSq_QHbbk y-TUmx2Ow74 n1pSObsJ_hk wFSWmfqMp7o jJ_p_xhMEvU P0ePytsVcpI hfW-fzTbpRg cuK7JbG06ho ajE9h1zUbMs BQO5Xy2ebhs UlsRjhvfKJY cmtXA6x6Jm4 fjzcBqz2Cpk xLMzMKlv_Ao _mwKm8tpz-M PRximULrt4g bqxDIHYcp9g 4k9WHvF1QsE iHllnWESLvY sPS0cKOGZO0 ORy5ULEbQ48 cPooLABE6Js qq4gK8PkKNM Z6E9SQ_ZLkw DM7JBXzCP1k jv2MsLBMi9U sloo9PMVoRE c2TcT9JairA 6Qhj03nCJn0 BhbazIuvUCY 9BHXzftnFGA PlTz6i4z6xU 8GbzfsvSY7I 4B0FFnkSCuM dLLkOjKNanY IVxzLITK1YM bANgFADltvw OkphsYRRJ_0 gmYSTObayoY 0I7GjbhDYtM LC1Sb6tRr4E fX4XAbCTdYs n7KKfjFRw8w TgZwFvKRqK4 H7XEyuPBE48 ul_HuCZxxNU Ls5834hbssM 0bbWQy30oc8 pMoxr-jgd58 kQoFdaWI4h8 rFHh8MTXs5M DebtnaQFX7M T6QGAOSIE-o pKWLGY2fwZg lDFltuNEfts njP__lsFwE4 Ya7Qs1NHepQ ZMb-qj1X1do 6QcrQ_TIoKw hEiI72hLQX4 jowNLHQCAAY f3tseBsU248 Za9pPzJJcYg _4jtkw-qFms M9m4XUd6x98 _vxVcxYCyE4 6ylO7RAbApc 2wEjsHggyII a6mkbps0BmY Z_0TQHoV_2I erILyrdpSqs rku6u5PmiZ4 eveUzWmTxl4 HWe802TQAG0 9DlWhZ45k5w 9WY5gDBR0gM KihpUEKi4TA -F1-sTyGvwA ghwBg2RgBJM TyeZy_UPYKM _W5MVZjoNwc 5uVVWV4FnVU DsKfkkrTLMg RfqBp4LFuIQ LDnFpgimHH4 5_B-hXtddxw ViPVPgUJUgM dPXGowa6p3Y nkelgV49oGQ -7-C6lSAfOs t5xpX6krGmE cgogH0SylMc lEiwqEMhS9E DG5ZouipJNs cIE1fT395HM NARUgQRZhL8 R_shARjqjLA sNcBUOlGBcg ewVwSrVSKS4 BPvZa789l5o Vdhhi9nYLTI inDZp80Sq6U vYafR-6wNGE m_7Bm1gyq2c RVGyvDhPE3k lPfrzsQ2-Qo n2lTpPptOWA RSEMLDUOqe4 1BUBVkpQQGA FhDi_WF5uOI ZcvlWuqqv48 SJB5InL3g7I kq0YESApfvs G6EPGcF9mW0 6Wmzed6d0Jo x7CXlwS73iI 1MnPXQSWAJo YaLewAfBoU0 AIPb1OMTZ0Q OXpqA3BvLLg uJMPom6-xmA MdMVzxis5vs TuiyN5O4Q5k Wj2sfYCpHOo CuscvBChOqM XSVzRBiiTxA 4dsgQb3jkk4 UJbqnbXI0Po BFanCVteXfw 3b00UbIxbCc lClRzGmpFrs 9wQHMLWpVLk wVpIChmQ7dQ _U82hhWfDFY cLYCKmqJApw 40cOkf5fT7A EPDoc6alrlE B1Q2f338TJU TJf7vDKfuFQ g0mHVE8ebqA NLIbv_J5E0M dOTGLArtfrQ aESwFtEWnpM 89lwQxQm5co yu_9eQXlsVQ TBS2UeiR7Mc 8Wg3WYlR2M8 2K-ihnb5kho x1BpKIb7Ces uE_EjcgtiVI _8s4_Nabo4E 4EfmKXE-Li4 u7kInn-7hcA u73HoUZD7tc SESbcd2bp80 TV9GpnvWxgQ G_2PNOH_j6A Fsqymfl2Q_A jlYY8xkTXOQ a-KQ5h6WmJg E6SfKJ0TmXs 51pdEOruyWY 7dHg_hYZDCw UGKRVSevWnA jiP6PiKJLUs 0QeOXuuFo4g QbfEULz4z98 WBHjaRXCINg gKGmO34XgMU 7UsWapAIMGo KOV2C0jVS4M rMdZw9aBmnY vnQ9yD_IIwo 3FDh8EtZETg cCNhONF1lHI 1lCWhKWBjbc YBRg2qsJ94Y y47SwwfaTBk Q7-BibZkYxY Q-_d7CI08qc WFOM58iTTJQ mq2cz9Xvzcw B1WG5mK06fA aNR8SIVnHTY _AUvAyx_fwc y603mzYAcas g4v51XeJnkw LOb8UYWDz-0 TiCSS1zLCCI I-kLvrKYP4w Fc7bVIA-b1k Rw8cPAmrrbU FiAJpDiz6Kw i7vKbmKF9VI GIiXwau_5iw j3MZdcbv-ew P38cMPv-Nag U2Eff0vnE6s MMiicN9p8a8 jqyhGCHT-v0 V81lVBQ8TCs OinSJLNXgA0 Wg3iwI32C5Q hweZTM7VPbk gK06H6EpKP4 reIyMTBfEwQ Yorm8_AGu10 zPa3qf25T3s T6QO7UyB5tI 5AwBYVybnY0 081zoKkdEYA QpxdbtnTXXY uXyvjZa6x2o KiOiYYsMcM4 IWe5PTNQ6ko VYMQZsZUxeA hA1BikUzBKc S_fzdjP3jKg QBvJoXAu2zM nIJQOFSGKks a7qRJ9T9TPg r7k9mkm0TKU Ea5k9eZg7rk SYOiDFKwCsA PZPOGfNlJyo otQNGe5sWaQ JQ8nLSXGWWE 5R7pGpChUVw hRRvrXxGJjg r0-vDDcDUMo ZtahDAhvvSc MTX0Ig39Nws Rh4ap8LIbtw gvbI2bHohQ4 mD83kao4Q60 oZQ95ON2X-s UJ9Q1b1FwKM fhUXu7x66BA 0yYUlLFlw1I xa-P9llTLM4 ZPP70vRDmzM LKpCK8OtA1s OFlIZu9exco jD4Fh0LsvjM R7stiKJsGjY AkEnbYvJGg0 w6kumXHaOeI qb00B8U8UBw U3qhoY13AkM 3NCw83LVWFo ZI1jKmWANP0 nZq8AiBXhiI 8lTcU_MuQGg -gkBCCbycmQ Fvka6JcREsY OXaqam1ZdZs tBeJkq_by_8 VrMWnHwh0z0 t-T4RYRUNWk BBWQchYpjqQ 7ynMrmloUVA Wkm_Bp6pG9k JcO_Cs2WZLU eMuBBjnM4yo h4eOGlJpLYg uy8_ARH8yyM YMhAvAFZ8js Ka-SEhfCAUY fPk-Dms1rJc aqa74uEbtDE JQwmeTKQLo8 k0aqHfvHcsc OJiaifxaWCY wYSIce1SzFU zstIMA6K-Ws wa5asCQrdPE fCQb93-RrZo _nngOtRHAK0 BIt9IYPOY2g aE4h5rX9u3U 6VUfXGlADjU YJnneXfx_q8 UNlo03HucLM Lj7OCHi8x7c -xX0mOMuxyI 1yLt0kzJIUQ GLZXGflTTjA 0VIefkYf2Rs RGuY5r-7ta4 elvtIj_sPwU aoZDSctyBE0 HONa-BdZMA4 ryKepaMME_U ltdgreWmnSY YIw-r1yjxMU OGEmY8RCF40 F9fEIstp82g qlwxaCiNZzo lnf-VO8gIGg FZJK7bi2mWU Cf3YdE-vMyE ZCYBYZDrmWk bIbxR_KN2TM bdm9LVNbuNg BcW6m0Rg1-8 qSnUywWS9xs JPofeRImxv8 lDduI2NkIsQ vXLLH1eSOZE tBNjWDkNbms rZuHQ94ES6U g2h8xRzMxtA pZXuol2q1Yg 2wOJBjpLTBA g8YFtf6tfRg Xwob-vrMkz0 _XriL3ARav8 eZ64IFqMQuQ dZ-teGgl2tw r0N4KlcTSUQ f9vhFEweovc i-f0M5TqmsY -Ixi48TxkaA X1DvoMiJ6n0 DN3iIszMnI0 2djG7snKS8w K8qQO5DvYhE zB-hQWVCwwU AQ0P7R9CfCY ZQ-8RqS16uU emVaK5MoPBg n3_noySdJVs JPoZcvcPtIA 78xJ5ZYPQnc pVZtw0LrIX4 YuuMHvaxXFY h0i97SWIdLU Njpz7jWgB04 BjKq059eG6E SRNxRvPSscQ RLcngJeCHtg 0M6PP32wggM OuE_YH1pzC0 5IFvZMLDqXA z7vdutawe8g 59E_IDXFWuY LNFINZN0KXY OGbya9Fm_Ns 8csRJcVDQdc SLkR7mzysAs xPLtxTJnVOY 7hrG-FtbWsw E2syhaH4Qgk IuCIhvIAn44 yV5JUYhnJQk MAzasda1GUA r2xpAXMPRHc CeMiILVlZgo VyMHLfAg9bI D5a4_a3dIK4 nLeZGuvX7D8 SWjCrhbuvCM xknWZIAzBCc VWJfmCFQjAk awYi2rXf1Ws 7ZnhCcj4sXg exE414Mp-gA eensusNo-jE 9R_jeIGgaa4 UEemdeEfw-Y Dt3n2LVD4q4 xLz4trRoHeM hMW3GQ2x79Q 317Fhd1UwzQ nF2xGs2J6Gk DERds8rPSi0 xaBIju-chWA gdJC7j6maRs BjbnFg5KBwI QD1FH9vC-q0 JJAByeqjimo djAkVv3P_pQ cJYwpfA3HWY WvgG6VNS2J0 T3dPGXTusv4 7euiG3tT2R8 AgJE212GTcs 22aRiNlHhaI pCQuhXDlfL8 oqyRFXXwB48 752JlGiyHow XeERYS-0Tnw OhWMVue9ai8 NMG1EMAgrDk 576luHgBG64 KlfCBX2CwMM dsMSPwyYBbI w_82krI5UQ4 M_pk0lW3oJ8 tIbuhbGhJxk XNL0KfD0nts N-PI5nIwciE _c7cV5_jU5Q cjS-Y6WsWMg b_jYYdrSYBg PJot4Pv7dFI RhUPit82Gm0 T7eWdvyCHyI AI9AcMtuqsU 39vZZiM3kIA r4SF22qFxbE oK4FZ3ks17M gMPr9rchJMs mbkWniWSpR0 ovy6F76ip3M wdAXjMj6mfU MHfk4edzvnI MEU2EJBkJcs _Rnaa9qtGgs fY-Aprk4mtY mQ3tgtzkz_U qvFduxMK7zo vRaCv5oNQ3w oCjXFnr826Y FDGyKHeU2Es cSUVLAM8jx0 VB3awTlgRFk -5Rohhkg-7k b3Aq5Vc0Ics wrrxHvC1J7I N4fylYYIrUc 2cExWs8VUN8 _7Y_OCGOKTk ZErJ-R9PLFA wCDAFiLrHE0 oqCHL75LG3Q 3zPrtRFOZQY phzJ2Iam214 VtEOGd7tD9o JBLwuC2gHVQ 3i76M1f3nB4 ar72efkbkSo ajMVBGbsL_E MpGCnuiCSuU Zh_r3u2RK1Q 2ZiKO3NtZiI hLUSwJuMjWo 9lj3ebVWDUw C_QYZUjx7rs VNQP-pvNK9A CvK9ZJVsiPM LkBmLiDPbxQ rYXDky5UYks DXRDZkTNEuM Qn336Lxy1TQ moYhss9sP94 oJ_2e3gdfNQ gzTzSOHP_HM 5clBF38sqqw XSUU-_0cWn4 OLtnOGTdLO4 wx2g7H8UvrQ NtkLxegTLPU o50HHf9f_SQ V1bgBW9xx40 7zwPRGbmrow jr0JXSM_0Nk ETkJs0Mhnmo a4WffLH9UMs 4hgt2hCDgr4 aGMCd4SoXk0 3SNcyADMY8k TdRbjlsp7uM cysxO5Z-0L8 AfyZ1bWv7Ls G9GWMbrEu_g 6zIWcCvQNqQ FM_KxbSOjJk LmCGd9zuFTs uFHReMA18_c jq2tARSds7M 2-oMhYVEk8w k1_OK7cug8I cM2U8v8OuLo Fekzb5yWBZk 78IG1HROeoc d6E6Pu3a5qM 9-Kvo3-7OZo maWXwv9cBS4 f9_1eujdVpI -nkxnc1C6rc aV2eCTRFJbY xAV_XfpHSr4 YldUEtdvBZU DZfq30VdBqU K7vOjKOdMNE mTr1vpzU00Q XSa0_MGO8bA OIl2sEhU24I iTlkXQH-sdg mvkHPUZnww0 hVZ9AGQL_oo aYuatR0B8Uc rn4Ff3MpiRc Gv_SuIRPPyQ dAc1rDS3YhQ V4rNLT7N_VA R2n0ZDq1N2c ymzHr_Uvp7w 4tTTXKxHcKY kXuzMpA9MaA d3P2O-Up78Q U2iJ1VmhksI fTb9XrbAMRs DPRsafiw4vQ R5SlDq1oRYA cyEwqVnXGU0 LVt8wEpPgPQ nuLPRAvxkDo kF-KLIi97Uc B8CGtuR9FnY au5XE48PEeU Z-Vnk_VTtzk fniTZP_4V1M WdfgoDKArzM DS1YYtQ_LLY QlNXJ4pAoZc 7iBFIlHDZx0 qIV6K8OOvYM 8JkLimZnZAs MTGOnbJkILg pyyquXhcSk8 ye_E3_ik9gQ -33sUQVbQ24 -kRGB8yBnrA uOsxXi-tu_U FdgyK4SErpU 4NES9LMRqAc OSfjh0d3RkA cUnb4UuUS8E RupELElQj6E A1MEIKVyYPk HJU9-MJ4oEc BVs5TFKigUw ffPTYWq1YAY W1p7SP59Vkk BZejgesCJhE BLNQrlY4HMY J97c0nWkJT4 xG6V0I6_ZP8 kU5tlt5wTcc jN_ftt-J7S8 iIeyS_5sJHE Uu77LGPAlPA um3tlxmK7Cg 8T6_bpLwTrc c5ZiiE8fyGk eZe4RbiIBpM 6M6cpjP7GIo 3bo6h-7ryfE 3e-DXYUvxys VglR1HaNlV8 UFXtRWVYQV8 EePcWVFtRCU KMsryQSdT_k MIexe6aa14w TkX-TPaodoM ZDgFAFQGZbI Wje5oR4NqYI vEDyFvKFcoQ DsVUFXVx2pQ fjVyrWdUy0c TsT0ExNMK3I VUsdbeBqeeo hVGcbaoRtqk NQobuzmBNXo F5mTt2atvVk VG7JAM6DQnM JbNo_tlgYfs t0Hr0YA9_H0 6_0y_BGIZSU GjtM8XhcA-M 8fbZvje4A58 brTGAgUYnIc r3eNr-xxA7s YCPDVVLUw-4 0vVy9NBehoc NpI0s0ky53I qcFVUGNUWuk 7nUDA-4vD9g ohMzC_1W0ZY j8yAjWvAqyM 1xI_CHaHWmw 3qZAvmpNfaw 3V-kJbW3b54 acO1g9PEIBM g0TZztZJGRo q254XDNZ2Ao plovZLxlpGk xWTQN9bqbws fZzxZa0k7II 387KRtYq2mE zmxWCJ8iM_8 wnosQPQgvTs qYufeLaIggU O1p6omIzsuY yAXioyO-acA atpbdTo9nno QDYx2BOuAGo NaFy_SWmRlI og1c8h2UyE8 i7KcAEPxDwQ 9bHnSNlLZh4 mha0N1Cx1Ck -1gCG8m1SHU xdgjUPMiiEc N4x1K97JZG0 jw41pJtU6eY 0UlzQ-bao3Q vm8sOhr-0lA TBBN6WvPavY tcfI_6ZMZQo nFYtmrhEBZc Z2ixl9gb0uk HZJ7Y5JooZM bHPmA9JEEQs z1bpjIkTie8 4vOHfYUUCJk XmGOiqQm9B0 meN82_c9J_U M6mnrzwTxVU a5PoLM_QBuo KvWWoKcefWo IESky9kgqi8 Q8HMk-QX5hg nhwtMOjWerg -2LmKW3TtuI CmpDJs0Mjj0 H4zYhsldk8M dC1bJ1qmOCo nCK7A5Zp9I4 LCt7YtB6P7g cYdScH3BmBk h52UYfkLhXg _RYBglsS0tg UpHWJ6959yo VrRhpEc9Ivk 8TIPGj4-f-M 9jI5AN2KZJ0 gHfTsIMdlPg I4ktnP8eOOY GU6US0VlAio rxKp6tH2AKU hM33ekZw3yQ FYcrFQ5boyA 47jfeR1H65g GJ1KcXeNstM Fs1k0EMYydY E3LODyZSXT8 rm6i_YfioZU IV40w-OYo0A j0sbjGj7ONo Jh1ujB4gFv8 U318Nwim78E Tp2V6oAgYbw cfM9_PduF3M Ux1Er4tflxI VX5XAwBfy1w bH5GtRBsss0 1iFQ6IvEQXg 1F-LMCJ2n4M zzjFcjSFoqs t8Ql94ApRSI 5dxhOkrjfuA cUQZVnerwI0 _OpCOSHbqiM KJpaul2yTOU B_PvKCOXdiw RC5ZiK6o7uQ MGy5sF8PhRQ lufECeWtN34 Yj-a2zT-r88 zDmvCNfvt5w 9fuapCaufd0 aUWOzyo-Kec TW8ZML5OvXs MpXp07KfSFI us54vk5--jM TzMC8kgib3c UXCzmFHm3EE OjHAZWyckMc 5RPUchAlppA nNXxlYCU0aY yMiGHGsdikU 538H6EYp_ZU JBOq0nY1rQE pcMXFYqwPGI yPQQzJGKOvk HiNWDfHz8Io CcrrepikVtI oJGQgAniyho dJQGkx5LpuA KWKu1BbZhkQ Hk3IpNbltyw t209ljjmTqg _B9xQeIvdHM yLPFWQ0NcZo CVyeyli6gzg ylDhWZKbCrc d51N1kUa4lw SoQzCG8nTbg ENkEuLrzmnc 25D3SlGLFKg URt8hBsrHFI w13ky72PcKI S-0prbWRAUk 08iCLTmybXM 3Bm1V7eZBR4 MBopFmu3yAg 4ImW1F6LyHE g46IxT3MGP8 oh8pzfm5QF8 BCHi6DrWgjI pDcPRvZ9sDU Yd8gK6EgpLM fz19xrc_99o KAPU1-0hGRE d3hs2M_0vLE rpUPWSqadTo 24qcFHAk1Cw 1UeNQlmxEkQ eEUulOnl-n8 BT2RBCEH54M 5aXmi3hKJrY P_mbrROQcME gOb8HH2oKcE YXzryi4HrVs kh1sYuFgUAM YdiAV1mo4ck -zoOpeF5Yzc HYkSzS4v_sI hWRG6Oar-aM DuvGxB60xCQ f3u4j0hVy8c 2DM0pOmClOg 0wMU9XDIm4g PK0i_dyx230 xvi62S5Ou_E -L3D0BL9ieA qL1WqN1XKK0 V7N7EZ79mvM aZe77wShCbE XS4s3XXNLiE OlqErSr6Rjw W3c9wtbQTZ4 Lk9wSrZ0fWA Yc81Un8ltS4 P1xdGCvNMEY xj04uvQx9l8 nkcLf1CH_MY 7wLSkQOkAGY vmnZ_-Mqb-c xQGzDvZq6v0 o4U1GZcMmn0 -tlRw45_Ftk mTr6qV4PiMc 2xfrmlcIQf4 LUQGBGUI64E sN7zJBjZgHU cCtn7_K1GZM UgU1ALnQTFA QWMVhLtFtNI GfX0WTR-kNI C1ZrzzP6tSQ o2joReiVA1A XWI8ugmXnwM YJBNE7F49Aw 2mezAYW6Qiw GSR6orbPFjo XClRjF_xBj8 D8yY16GX9t0 0MU_p9wU5kQ 3Cp_-nl5jEs rNOZMZHDVB8 cJti4-26uFE OT-cPtnytxo DdZlmK8Xxsk wRUXdHtHe8U ZCoJgCHXXK8 ifM0qy83_-A cB0p96nOXjo rBgn0IhMEBk zVIDGJxo238 q7QxVddVEW0 6zlY2XVDl0E rXqRZvG5LAQ Rv1LUObd720 ZKTMxF2PrHM RineREyWP-4 RKBZx9XsCuE WXDIkldSPqI mWquYel6AI4 -yx9JK_HeQc hC6jyc9reW0 Yg1izGf8EFQ w9yRZoY0stg ejJIihkZTGU 1tZ2EZXxU6w hSLj5cQaXM8 ScMlNpnLI3U L-HEnOelh-k TQebazOCP4M Ga9YztTUYaU 750pEcgJqGg IYqE3JfSbzA UU8yY3gkZZ0 ETrY43GsoHY wbccgEaJudM Pd8RaVEZlyU wf02wZ_Okw8 yZvx9PF3NAU Op0qrTGRcxk R57cfRscNyM C-Ad2a7UD0A HkfaRh__E6U mW42lBPbuTc sEaSAJgaLtQ xfIJV6C9-fM IwzcDydxQyM d5jxXkpstv4 TSaB7Oltgwg QecVEAGoQ4A C2NxwHIDTUA gHfRl_ZjHj8 avXk2EamFs4 MXYUFlvaGpk DdqQsOC-A2w upwUN92OAQU bKOW66PVjvA UgxCAQEI16o NyPF-BmNQjQ xSmmiAl9ZWE PVuB1pBFA5k N6ffGVe63c0 aTPdWYo9zhQ FVfoce-wfgI nYkD6bPe9Ho S02T1j9qzwg bXq3dytL6ZA DHUSpAtemfg Bl0c_aXJtUc Jl4L_RREcpQ 5djUDJaY7Ig NJJDRmtivWI DSBU1YgGyt0 w4o45-EnPrU T_0IN7mMXZI rTCi5UsRudE 1i2_WXJB6wI 4xcqyJwEdd0 kzUfGDKepCA n86CV7VKvfE JYKlYHwUiac JeT0XHFyAU4 qlUmBE6uGu8 TdQkBU9p6Y0 nshLAILEN4w 7qVgjGI6Lsw aOAgGeW7abs 5kmgUtppQP0 hcvAwHA7usc qIOC-6zluBQ NGtMNsci-zk QH8uHNGEvbg x883mrwYjDM toAOUXtlXXc VCghHER3cOU Rv6_mS8l48U NH5fod3mC7c b9qMqGTi1uc BWw0KCLcKHc jgdFx9Epf78 67cxJ9EynG4 nS-l7xvs5ew U6xq6u7vv0U C_uIIZdNVwk l4bCchzGpkQ uEchpjUjGPA uiWL3bxDifQ hks2iXeaxsk OeLnS8O08ng 1UybDydQpNY q8_R4AG2o1w JGnxWlhfrrM OE8Tc1cvSYM Gd6aLnPHqeE _6AGOfGHzeg JMa1f4jyBa0 bE0mQSaYaNY BrRdy4BAYp0 gNtGI_D85mQ EGX-t_U6vkg SWEbahhZEyA tjYSxlqLOew mflonVbY9gw Qn6tLR3RGgE tAp2Z3-zx9k 3I6s_-Q_2kI uYV11ZwpaSQ rKV-U-HcGVk YP-rmIcxn1g s2pqELFTepw iCp3nEO3ttU OELFAF76DEU hKvpF7ACDBo 0zhatVdxShE yX5LfZK1wTw pXe74ckEnME 6w6aNHXW93o DwOTJvwKKeU l0VX6h8lP08 qPZWb3abC9I Zmnzw-Dxym4 qBWbxMv6v_s HWAQ8rTBLUk KuXeOs4oOBw 84VVZEw9vBs NhpvvobULYA EPmNA1vLOH4 sZ0nA_2qOWc ZRJ_tgwyLUM MALjtjcdmt8 ================================================ FILE: data/metadata/youtube-dl-dump/2013.csv ================================================ goyoOGbDjNM 4GUk-1i2_Zo MM42NkUhSnM 8NOmVkx7fWQ oXcDMKOD0O0 sTu7aCTkp9g u1Dxy8jBmYE u-oetP_iX_I WRJWb6SViK4 E0TmjA1X2N4 Do4Z-aFeJMs p-dnhwIY2G0 J-8l4bdfL9g 9CSMoJr51IQ cs6MZqTBBC0 SehEKk2gcSc jSabMn5UXKo Lz3XcjwKGmQ b2gz0vSh0J4 8oDxIAKnWx4 BZH32FuXeF4 lVQgRd34Dlk cqwrFYjHahk kUkbUoZ__X0 liH8CRkWl3Q aVEtuBwgly0 OaZ30IajJ2w iaQdh-Hbp3I 5938LUU-UAY 6Mwtt_EKIQk jArxL-3-j94 VqtAA8dO7Ww jWJqzIUntho zpQFjWoRhGc 3lyx7UsMqmc ikfmhFpbWJk OeUbPposwAo WIZ0J4rWO88 3fIng0TRjXI w0l1ukaxeBg C94ag0ondig i-bRuSNSvcU mAeceNqeNtQ AguptuYeDRU CiOFGnNgnnc UPaTwmDXLWE QDNELnksfnw GMiD6PU8SKI a_aZ01raOoI MlD51EzRE7c 0pVwRO2dFVs jcTv-BEwabk yx2giHzJ4-I MBfp_LuEfqA DKwC6X7_JU0 5485fd0CtKw 3gDvO7H5iEA 4SzQZn8xGnA q3a5wxfm13Q W2Et5nGF5C4 G5sYuuD7ixA kEsfYG_bF-E 77KnithfRRk L0rNCGRjvtU oepaVuuBAtA SwI_ITgsSks tLzcAofC4WA OuEmfmfgw2Y siHzbnn1Bxw JyxSm91eun4 lQ8JIa98kAw meZXqa_CE_o LDxOZ6cv-DU S4s8LTNnufA QFQ4izzxtec aikBhgSFE2A sbJ89LFheTs fSNdh-3k6-g jWQ1ITS94cA _cmX1kEbl4g Btdp-sC8MJI a5WAyc-EaNc LfxeHobEC9g 33KUnZf841c faRFVdrRpws iWGL8PRdM7E WCES5LXQn9M RzGyyYgXffQ 6bxEuaulT4k b6xbga06ApQ b9KCMBBn0EI bsaA903oxvc OF-QIOuucVk 0A9ppII7eVA 2_iIEQ-hlKc sua9tcQ14hs PlGtHAZOWbo IW7worFAFlU 1zOmRBOYLpc FlB2v8LQHDM lSzT54HTpeY ccU8NJFeBSA Ce0zSR2ParE vlZQj4OrTUM 0xJcu3vc9tI E5VOPMr7SKg K2Lt0Ek64eM Ax1Vgvp5Cls dso8WOrSRSQ r6fpS6P16NI 844ONMSqRWU e89qDsf6Q3g kTXppLCyuOk WvQTrzonQAs XYrGVKzAJjQ 0zLL_XdqxmQ lD7Xo_FhL4s GZJ6sC4nKNc A4E1rEzhnz8 sRwqd3eCNUY tDWQvA6IhG8 lhGtoYnSdl8 EdN4MiVmI74 -kkP1Pvzvgs 8riyzFyGdVo dm3xv5sosng daoD1UtU5XI yh17pzVY6BE Y_lgyJtcb2A DCUGRi_FlNE PrjcxNpxOos 5BL7Fj5SUhU Mvu47rYJ1Y4 _uHTonkUqW4 b9EAfTyu5_I t3c_a9M1E7s cEPa4RFLJ-0 XRGOhLyLS9Q zJQujcyncBk AXsbWJC8VM4 _kKO_1Dr4Go JMlpAPKDm2s 6lYiLycAQSo 7WQTYb36Cew wz29yiGSrB0 x6fpplPaxG0 c6ik-AA87Uo 2xRlAbbcG0Y NT_hyjakJEI jZyhfkpsGGI DCM-sEpyh1Q bR2Uon5BWC0 65XtOM1UUGw 5Ddap2Pyhtw 5GyAcr1BrNA 16bGLMEtAww mpDnD5Pp90I D7MotG6VP4I d1lql0Z0e-E 6UwcLeAV31Q _wLWdDRIkis N69MOeO5bi0 lyu3QUjAFtw 03L12Mqkzg8 Z-Hye1zg5IU gLB9F9QftwM LS6oxPMMdas 81fH2bYF59g k6_nTAS1M4M CxkpSGI8L8o KggovdPWfpk Keejr4iFv5A XHGWTDHchVQ LfKPfJmfGgU JPtEnl6MpHU 8-ECgs93q1A bWm1GC01kGo yEYUc9oIVD8 sO2RBLeWYyg LL2LvzUVsZw hJUtiOm9dLY Ur3uTKbrqIQ _f_1Or6RhiQ zDRmwZxOJ4o __3ylv_JWqw XwS5WsjPg9U 7jtGp6xaVPU hy0b9Rz31Zs pwqOYWnLxBo 4vmjX0sQrIc tYGiUUnoZhk 9ioRMsPEf8o iltOTKedsM0 eFd0VyfLf1M nQIfRCUlfz4 c2tWZFAL5t4 Y52_WuvyKoo lh6Y9EU0wPQ 2KfWymDaTmA OvaNgegisKU Kujzb5PT5ns eZp6EmVqq5o pIvTIG3tWok 2xujTq-ueyo ZnsLPtYvqj8 IC5DpSRkHps AZIlLRwCn08 Pj4y9M7cPy0 LPxNka5Ll5U oYx2teRxnvw ZFM-OxDGrkg iFnPpSNqKYU bEA-o4IJAic r1jgKSXPL84 gqRIBKn09_M -O3_WO63fhU LVKODpCrCpw RoP15HrFNu4 1XUHPC3s3rM 9bVHNqrqvjI y_P5zX0ejXI lKJ8pyN8Cm4 RdL23CR9K5w z4edIxzhU80 5DYK9Xq-aF0 KDc6dZxh0Cs snKDmQJqQ1E NSuYLeI3d1U AlIvRiDePlY FVEiScxUQyY R5UsZ1yoTO8 KIE436-2xcE YDCHojBWEhg 3Lf57-rBck8 WdD2JN10zpY k-WrZcFJo2k IaoE6JAGhh8 JrGE2knBQsM Nk4JsPf8xX4 zm7wCb8IXx4 C2YKcU5rfm0 Nt9wqkbXyyU FD9lsX7gyeo 4Spw9eH9GBk bCk9vtlnr34 Q067OuCUl7o rxwADdYa0YM y7rxncDh6io e0cR6R3SccI _W1NRq6DekY PXBBHe_SwSs WoDvOu6PqLk LIugIUixU_0 NZqeFQasslA ealJoNJuKnY YBqruLJZAcg X115jd2e6e8 X03tbD886IQ tfGpUcIEIf0 BEkjNAsakzA g3jImb6V4wI yY6EgYygsAg Ze8Yt5V7T6A yUgQNj5-PaY _mVT_JmJ2Bo zMNUcNokvkU uSvAfRaxSu4 gbEDjhLuPAs AwMjkeZbRZ0 JmcifAkvDn4 P06IeXkgRNA VklQQrb9-4c nfGKHa_mn20 PFDnRg0lxUE usWA4j2ED_Q 82sgwc-34Cg nvFln5J-6uY yqy6z3kxWdI tYmvgGjSiN8 fXBsUOysL3c pHu6mCqzpyw kV36CHsDZ_c -GSZwG_s-8A d3ZUSI1_lOc BWYNt1N6xWQ 5FQFrCgi8d8 OK77tkb6D0c qa2Ng4a5yk0 m-YWYdwcexU Qr9F2ij1jfI CFCnY49pyII zSCukxfXdAQ NsMwPIy4Ax4 NMOjCohQbXY Lgmzj8eWK8M -rebHHoZJSM QlKuJBiw1ac aErChTKF6u4 dDtFWw1mZuw sJGWczuXzT8 0t1xR1LX5Kg iWJTDTs9ymk vIaVITC62Cs 0JBU9hgQ_T0 H3KbLBwQFW4 jKVDdMG37ig opoVbcNO48o jtQcr7lJXB0 JNuiAZP2dtM Kk6l301jwOk ugm8RMqRSxs L9-FR2MUfrU 9yh3GgjFpxw w3-djlpw4iw RZa79QGDeo8 yjEcOkwV2MU V39FjO5t9BY gKpPQ6SqHvQ JAz7hBbOoc0 vtxPupFohQA _yY3iR3yuT0 nyMtN_aHC_8 eSYNuO9GTU4 w4i_ZwMT3H0 7WCR4dZt7Uw LQhfDQoYERY j5Fd6TqePnk RhMsnnZ-0qM AU-paVv6zTk qPXny_mZ0iE zLhfa5tKJyY hfufT3MZQm8 hh5iOitreQ8 nDGZMXNYfF4 coOguh0UhcY jVjq_m-PWSQ 6PvYbL69oyE cFZWNfXzFLU BJ1tNYfDZa4 DcmzHtokiMw JpvqpzU7eEc XI5o939LHrE 9zugv1NdMj4 -YGxccN_j6o K0uzT9bWryU kp2UhFQQb_k BaFBFmJG-LI tyazEYlueAw 37zZ1ULVBa4 dgGvAQ3kcs4 KwDvrv9byqM HRrbt00Abv0 frTBOhJ0XHU s4veow_qEDk HSc1i2XKjCo WK29KgQKP8s hhGWxqj_bC0 e5Tb2YSkGh0 jIyn1q4Ilpw ogkh8GaUkBE IfwHIwPbHaI FHUpEG_qdVc Tg3A7u83stA gsWHt9OIofc 9IuMUzCJ5m8 gXHhy4c4UZw D7H61Y1yUr4 U4se5hr9O84 77Uk4kkFEnA q3JlGPF4Ko8 C1QZn415vh4 mIIZqCaHUFI dTSXhhHDOk0 ax0943uaZUk LwdMHOiN6ko 5rlFiEe6S24 au9pGQ9AuUs 0vOulnDhH8A dEnoofPhBtE k8oFMkg7icg 8hG-F24aroc MlSzWgyNsAI 2KwdvymU_ao auccmqO45a8 efqBAU-lT5Q qUqtwCfbjVw fWBAKMYKPSc _e917WJMzl4 GGkg5ytaXlA 0J_lTFS0ouM lDetwrOZPZg BHEe0PqpvNw undTPa_iq1Y 9PyNL2ahKwc czBTbtS1YpE kCsm28_ULw4 LcHtYOV0bVo l2g7v4DYYik 3JL2XIwueEA yKxkjtLBq6I MBYRmSeYB4A 6ISHd9kAsTw eOdZMwIh1I8 IXi_VrFakL0 7dqjg1TwbXs aA_j4KpP0W0 dzbazAbjk8w GYYuyvyr2HY JFblxacw_CA c93bejkDIuU 080g4Ylkv2M sR176VaCLXg 4BUDwj_mXKE mvAkLCKYvwU 9RRGvAB4HF8 ex_KPw6bVwQ 6d37Zy95yDI tHe6ar-X2cQ qTpB6q-YJwM ioXW5Fg_q_g DCzA_11fJZE lGlvNt-N140 _j0KhXH6xLE w7ngnhj4snE bh2ShAQ4lw0 gIGtDdiHlA8 TlQ_qOWPTnE 03QHVB_n6N8 1vmnp7ghGPk LKpLGai9GxA C2PhwDzcQJY jH2OKc8HPw8 9fQG9Zhv2_I e-5SVm2NUe8 xOCBpMs-9hY pOQv_Ng3CaU DGtD5QAaAGY LwDbgE54QYE XHbdoO7uCkk VI9lWn1dpzg ZU1CFYBhGT8 9K_4ZaMc1-4 MpmGXeAtWUw m5bPIty4Dww h44egWnbrrg DE71sZbjvbs sXtlR_7l6xQ RZAkOfxlW6g m7xTvb-FAhQ pKJOqt7BtB8 naKm_rLxRCs Uqn_pbUUfKg 4qFxfRN75HQ J2yzM2nkylI 3pON6S9aDy4 nBRPKaHMFn4 WAwbrOJMKEc ti42vZVtgvY 99Ptctl5_qQ UhDZPYu8piQ k9WhxTOA19s BWDYUMTmHjU OLBotH5Bki8 hIoCskqjp9c eo6MfN5Lcws x87nnioiLP8 RQk7-GqzZCc rfdF7LBQ8Ic hMMAB3MNCKw bkpuLB3ftow YlRLfbONYgM RiBRrKC_6pE aClqNJOXy-w cdFiubg8UnQ G-tFJHYBqjo eZtQn-GAemQ _SQ4ogstDVE 6Dyph0wJBcA yNeQm5aqrHo qqaFGM-AyNA nDlEcFRZUYI gpW3ywIoyr0 89uZslA-efY W6udsqodIzo ZXfw1y8Mbfo fgEjlKNllEU boCpijI2k5I v3dCP69-IFU YhSKk-cvblc g-2hB5Kd5aM CtTjc4nJlDM V5dA92wqmME cRsKzW5Fszc Z6oeAdemFZw Ii5azc-GzXg QRqXBsgnYok OHHn-_aJQ7s lu9yr0xefYQ eu-afVml4MM KXzNo0vR_dU DDb0S3nIfNA NG4z6W4Zp_0 ZgBPFyzsqFg s-Sx_dMw8oA L8_G6h_pK1o 7EXefCHq6OQ tGNBdjVO04Y cMnkhxzCLyA Om2UW4c_vqU 9anDqvXfdu4 nCgg5XIxxjY RgHtBxOs4qw 6jS65g5UnWM 4ega5Rcct2s uaDgwjVu8ik YTnxiXd0qwA nwQ5zHdDFng 1cTY-JnvfYI cv62uysSvQE pcyg0H7EU3c gwEeqSGSL3g 9ecF-Go9lt8 SOnb-cyRdAg cvy2tRH7HNE ZYLekT6cYwY Wh4oSUvSQTQ uvXwt5HNFLU U2_h-EFlztY 31usxLUiuhs ulMNuwN1C-8 z3YKH7m0P4c DyofWTw0bqY lTd2m2J2XmU 1daKtciMLiE HHFbltJSRxo ovQk7fd4_Co i_9C6d3VVHM uDqSQGOtixE raVKed5rdgM F7qOV8xonfY -ui9TwNrNEw 7FgWn6jQuTQ tk2vET4aFW8 TO01P7dpKV4 UdT8lSEVHZU z5s04znNyMM wPO6KyIYst4 yAgMoKBGjT8 2TITAbyObTw q8CXKTH5950 3t1YQOfYndM zRsPSJWe5sY bLmYWtqC8pc 5FMiM08gFtQ DeYew_zLc_c 6CxOSOVI76c H6fBnHvdZeI aUdbjoT_DPQ sCJ_SlkCT_o jd3KM4imjr4 XVGIvc6G6yg p0Ov897MYiw kCtsoBRr1Z0 zZlbperC3ns dPk7S_LiI1I s2xKn06X9cQ goOhv_1FYsE S-hMzdxcOD0 jZXHcvhr2p8 0NSgeb0dBLY RFAfyPXisjQ 8ygfQ6oSNiU mjo4d488_yE l3t1ZSuwLzg wy1eWsC2sL8 iGJCWeK7YCA YhdrJfDiIkM Ip-dPqtyXRs QNrM2ICShJ4 9u_76dg61ns o_yIykgKbeQ vjKoaNcefSU Rc8ybU83qHU CeYoUJYqAQc hghczTVgav0 mCVwWrfOT3s FypqAWaSTFU 6G8ExBEJEMQ Rt8Bfir3A4Y a2gMY3TRx8s MYuEOOe0xSE aYbNb8eaTCY bMDdjhWe9NQ XnD8FsykE08 fR0Sh0C6jFE OrZB5n0tNAI 69aok-u1esc -Luy502C920 NG1KirPJLSQ P_GbbXL9E78 hkFSMV93VeA 1D-v8EcGV2Q sA0SngAZcdA ToK_9NLtr7M jusrkQ2Zg8o MJ0qQkcBNPs hgFClV33aH0 tm6qzug9AS8 5F6pso8VBhc KE0awhgSLmE xR1YEOrYOdw aJhtBJETQF8 5TbuwxXBfoA nn-nEk5kpz0 v1dTnLPL9gU 2PVdztmMSzI 4GLcbZQoPNk blDYzZvYAak OQVIkVIf_BE mUzu93AhMuE 456l6TpeE1E dJFR7xbOIuw stelirVdNdI _dtNz4Te0Gw F3f7Li9T4n4 opseGWIdLd4 lqdyZpgCnXQ -oeFJvhvMik F10EFVISERQ 9hCHM2Oj1wQ SQ_rMhKlNFE V-eoS6kEyeg 2Z5WH83Vhs8 KDQqlRIFcAQ JOqFKM-dt5Y QUTDoPuCUcg dKoFTEK7O_o 3iD4rM9utqc qpLovLQoJ6c 3eA0tlN-WMY 1NBRkyfy4lA 2ohNiVtAwJY 2SnugUXqVJc O6frj4BOJJU Xk7IjHYLVH4 N-VlQuj49a4 9GagOWlFd-U DdZNLekEcIQ 9fnjkSES3VM 2315p7LJusg rfix60WuBxs df-YzAnQJpU Oum7mEtv05g kA_BtqogJNk SzUPAc8HTOI Pbr6HpxJYm4 i6ymVjU5hno IVZd3YBqxEc 7gc1EIrxjws dw2jrtR9Px4 wosztGGnWt4 Mr8aBk7ub2g EshEWL1ZhCc rfeKwl7Dyg0 eJWSp6A1Ks0 PZ93GNHBHsE 89g2af1Qw0I kjd3eUIBSj0 l53Q1UXk2DE KzVgbCFwn0U a-Z66uN97Ds p0CKoz0u6Eo QL4mGMAjHBg Fk17A1jyjKo petKvkHfPJo ZkCH653K2cc 4PcE-gNqFfU 8YCMjAOgFpo SMYJOm56YvY 1_vxyocjxg0 MvYuTdiMcRk tr3ORGLT_W8 IL_B1fmfl_c LDsysmP_8yo KmCgqSJnzrc 54SNIVms9vo _WzzevY4_Ys oKmBIC6X6Fs ktFZq_8XXOg Uw98q-YIFec pE5pl9UG93I _8N1uJZUyaY OcNjc5lfvpM tVfrMp_MWw4 VEgR-CiTK2E AGUMsaszNKM x21gkEu5lKc pmC3rsgHD9E g2dAymk715E 61_aprVh2FQ iG4GVhx6oGc Wo3qdzlpPdg 5RzSW0dc9dE pt-Ir7xS29Y khg8XoyKzs4 PJQ2AiURctI PBHZhxrhO4E sIB8AdUqEqg qfIzHlWOiuE 7w2iVXAHiPk qkjpTwOa0GY d_jEVMQc0ig PSmJNK9zhR0 z9MEhN5rjmg I1CjDw569ss 5UKpz6Gsyu4 NvPYToFoU2M koX0RDUQHFs 65ltaw4SF38 YBQ90wbJ7MY GxMoPTqev8g 6i3eC2gzxXA VwE2USOqfNg D_5kpc0cUWk WrYDmyHlxqY 2NLGmRYLvsY lRVUsY_rcCo 3_NMhC6GR04 vyN2oD5tI80 otQ_oCvSq6E qUMSld6BwC0 7DhLw2aNu_Y yXeBhFzqzfY BUAPTnpOdVM lbIbVWmpcCg worFlbNJG_w lwo1GnbKOW8 wrYcEEv737c QC4b5Aoff1I Ubr_vvAzvtA k1fiQFCN2Zs E_tzgBTGxEM ytQv31xRLGo i4GeD9FWdG4 nSEGOd89xWw O0twX6iB62U Yg7ulcF39e8 hdaAD9fxKXA FzOGfMXmfF0 S8WazHAxJLM xvVqMR_f6IY 6JTplpmC6AA cpO3ALFscmQ UvpLAMfYgJ8 2Rlao83KneM e0fFbNV1ySY 5iyXb_jNvgc S01OvbVQhGc kWPc7z2IMkA p12YiRom_Kw 6HH44dvOLJw nH40NtYdL-U E5zvQmTrzVU KzSRd6xpR04 wzJObNk-flo 6bn4rdEiqg0 0WuMU0zi02w jfYvV2tBEz0 QdIw0bzY3oc grlDMsiQ2Yc f1Nh9DlkZ1w GxcZL7EM5Zo bBeHRwjwKk8 HrFmuAN50BA wZheb1gbe58 ghNPXViyQoU SN39w-Bnlgg w1pIFZb7480 ITEod2_WHoU C-7X5i_EQPE jTRa22j4OUk d8Ff_W4-4VE kuQQoH9skXc vozS5ppNzAM VWWchm35s-Y KVncpZkleFc whUo8sI5OuY BTVWvOpPkIo 7L0xuL1thp4 xpSqCE8wCOU w610fTL5O-A qA73y2w3WUc FwHnNe_ItOY Tzt-axwwOUY Ih-_ZmPZ1x8 qh1KCsqqHFY jPSjDk0CM68 _F4WjvMnL6Y _hX3fkzGrxk iRmtQ5DlvuQ nXoPEmh39ls tLiJueTgu44 HLxJLrrC5mE mTYwZEhFwu0 gNEB3vRczjA 44-8o-jEDB0 ohnhJ6gyLhk kItLDGtPMMI 8I_QMs_Mjb0 OK_v02xShhs cpQQpn89mEs 8dPqVrwBp7s QgdvS-09ygk OZNLJj4pJsw oub2YWXPV6g 60PDxhI6y4g AesICMoanS0 SyXqFhSPWBg LWkbKaDHXbw URvrDySPc4U 0XzQX-i3y_I vH8nss4M93g xLIEyHRfbv4 a2lb_3-fYFc 6kdms5umbhA 4QsATC7VdUk zvgXyU1STYI XGkwMwwlTLQ DSoLhO7jVzk 2J4gviivSJU vK7tEsNZtFs o_6VSJ_RjkE fXcQVdBqtaY 2fkfpdMG-KQ vBhBkvkofjk 2i-3w7WnPiU YjwB9d1tpJE OopV0xphrrA HdaBcsWogXE d-2r0wMjfrY F6Y4Vd970zw MPDs_ZJMc90 qkGDaroLl_M EpD-Hu37w5k rba9NiqG9PI HkDkImVLQGc t69ZfcWPZFY 2zGJ_oOECv4 XQdxHzDK12o jF9GE50ioFo KQcLnNoYMWU 21GAl13VImg yBxr5ACMH5U SV73jXKrQ80 yXcVX57I2JU MyINcc8SDd4 6-L8WG51noY p8t_xV4Lf0A LKVcX3959I0 2fWpPZaxmM8 p92CKGAeQUY MIGDyLqwY7Y Si5R7-KZWFY E0wfFdGnwx0 _DbFZkXD8WA BS-6KavRfww 7xt32rq7iD8 reQPn8oDC2c kHRSh7JOKxo TPQeRElxu2o me7nuXZfXVM skMchQx_U_k chlwxs2dfVA EimQSagV_8k irglCpn_Hs8 fiziIJ6zTU8 XRUO2E9UQro dKleqAHv-Zw roxNsu1YELE vSjkkQ6Bfc4 MCtE3Y28IR0 tTrgUKsKetY g0HwVyKSC_8 LHVll_0Hmh4 3SessG74yMk kNMc5CKw4G0 Ejp4AjvBuGw 8BY36nM4_HI nWRelGmpmxQ ZYOhqPzYRjs 80htzZ3-XwA tJHkiRzd05M 2nacHERVnsY kVXAITzqSgc M9rOG76v0qY oPOqdtLP8XM H9TUkZR66o4 YJhs9wqT7qE U_5JpJYsufQ Sms4grRcCck BL9xCIeznI8 n7W0yxKnuvs GNsD8EVetbU N_tNwz5Bxwk oSpMQ0WtrSs ZtE1j9UnzC4 7U-et8qOXLs RczW1gIRBjY 1MUi4ZiJUsA Ph6hXpPbl0s frqy8o30rv8 SiJQJiUZ5Jw cigrbhwjTnI 8aQFiCfxz6M fpnoVKmulZM hyXCJXsHX3A d7he8f2L_BE _lnD3Fh-kYg 9gdhd-EerNw 3SAElnJHcNc FRVB-HBxR98 XY3urIUUizU 4a71NDQWOMM BOYsnywXTu8 c9_46Iv_GGM luhE1BFZN9U Tt9v8E7Owxo 5xl30KAt6-w n92XBsqbSF4 Xp_xKQZigM0 QbRnDoXuwkQ iTXqcn1qyCk RE6QfwhDMhw 2uQeLmDx98o oow41RrqpHE Fnvug-nXPYg yJjnYpZCH8A wmG3O9RvEaU SATdGPY78z0 g_mjMjs_eFY wO1s5eRplKs sXatQewZKRw Moq-NmqnZR0 B22vWcjNR9I yJlwArJRkmE crBqPflvzyQ 45d4aoDJnhw lh3qxTgaa1Y AIeKpxgasMQ X4_8ByCyrUA 2uSOBDMv_S0 CSuwuvVcRHU Lt01tXTT0Ak 4uVC-cDpdpg wJJ2RLLVzcU jRRY7zgE4K8 WcSLuxBdYJ8 HSH9SG55kBU 8tteR5k1l-A _LAoGdcXG3Q nkUx3zstpbU Js0YTLpY9bY 9R0If3RWk5M 5E3TSzke-Fg P4PPhm_fJug 4QL9q2mwZXI SJ671CSV2-M Wd7iSbGIDqs gboXDP4L4b0 J_OsoyDByWo B62wGNHDYHA 4dS7rsMy1-Y PK1aYqQgn-k XITc_tguH2o j638xTM36I8 vU1_EJh6Atc i812ZsyyeLg Bzqkq2LwnOQ mWqZWXSj-s0 e-oTHFL5_ec Rtv_BhYXLh8 Eghn9oMlSy0 vY04JLQa1MQ qKYRwuoqETc 1C_7b05Rlvo p7rtU_AM1bE pSzusQmqyxE XpdrOUgweIA FeecJ5bAGHA c-jOeDA-X0k fBB_lJ3Axqk Sp1xdUY8R14 w8O0iiBrIzM dUCUs8EtHoM Wlrq_lGAn78 U4DZWsXvRUA osfdb5BrLPI 0en0UJ180yc SVGc5KwWRtM GiNKTYoCWG4 4qHuiCLkYHc 2Et6MGSeXOU Pys1zBR5jX8 iyCfFXxNtp8 aUCNlDzsDH0 R8_HfT2ndyg KI97hqN52Ik 0-81bpcuz44 kYQkkpRXgP4 9lU01uvS3Nk 4OW7CMS8PBQ kDFwUhn_1Ao wrmwJx6kYKc S3GG_HRE-D4 OBPgy6HGL44 vPs5yv77m9Y 70_b9ZEcxp0 Y3vhSZJthJM Tv6tdiEMGaY 672m88mMLZ8 yKFEKBIXPxY eZWHAM2EG3o Dvze9_LZmC0 lxQj06LN31A hLNZCf1nuRo xKvmGfNhbF0 YCuSsetzzg8 caypUMEoKf8 IhDAJ1Tug4M Bi_YR5xkRx4 9VkmshlGEvE uSuoZcrKq0I xHunA6CYHvo F2Y7FnlkuCg jUcER281BOg qrTBSBYpzg0 KxlEI-kTY2I evo1frlMjHQ 2_kQHIUwJMQ PpbNn6gMTUE 0IP7ihJrrqw i3xjZomB1s0 1p8rDhTaegs SyGAQwggjTw 79HayHaaXDE YY-l3FmgXKw uPqgue3xfPI Hhep61HLkIA bmJ4doOPxd8 1VwF6VuVhkc _07OFEHs0iE -bzOzD2QShQ poAxbGphYmA O_NBFJ4pow8 OinNCchV-xk nuVY83HU5Mw y-AJwogMrAU mksJyq7Z-mQ xAMy0g4w_ME F1cWO821sR4 DHJDwY4xoEc YTadpFs7QAI Q8rhm3wBFE0 ei1tTWCrHqc EEVcrvlYO-w W9fV8EusSWE BQ5nPyRi6l8 CPRh4gw_GmQ k1Xv18Vy-q0 OC_NauqyoSg y5wsjMSXolU Z3yR0aNriPM Y1IEtzj23ws hAxEEf5p3Bw iiUiiK9dMPg pN7yX45G6WA ENjz0-Ut-nQ iWW0Tk58kXM XWXmnyflZtw L45abB8vyEo mJbFV5i5ay8 Zj3ggkkj2Pg pFm8RKAyU_Q tz6dNnahwCI DlBuWaGDP0M VCxGD8VH-TM zwQRQ6SbyMk 89hCOgVa5LI yocBQlw_mCA PM9t2KSOfK8 DToj3xM2b1E iYG8WCULpNM hpliHwPiYYU _4lDASeWsFg rwwMn3Y6rUA CgBeBag4ir0 PSofqNSuVy8 Bb2XlqE9OUg xEqdoVnIFug WI5B7jLWZUc Ymze0Je2Tm0 snTaSJk0n_Y J67wKhddWu4 VEB-OoUrNuk mzddAYYDZkk Cc1VTko8xJM 231TmvIPzQQ EDdsxJLhp-E 9O1-5MNRbKE 3wJY4bd_M-w WGGlUlvJffY 173I36m3rr8 RlnrFh_APX0 wfbqJpn8fN8 SN7sOR35KCg Qa8kCQQUjHM 2ATVtP3BK64 rthHSISkM7A YyZ4gGCCqss XPEWBEa8pqg teZ52l28tys G6i3bDGOLB8 1IctSkdJICI E0aNsWbWr1s g3WtvzmKCQQ 05-e-YTw4r8 TLsRWN6G77I aPPMHA65HIg JOkwDeIX1jg ChQG9RAkBiE rAEv7dJC5Iw MfIvSh-tko8 rzG2L4Nbm3E JWqaTJbxbW0 k-WW7ULn8RA wwoxXiyWf7A raIdZiSZ970 PbgLbYd2zYI ijXLPE7SB3c K7iGuEr-u0s Bk2dqynryeY d79o09D8cuo qbdg6o8Z11I lAcZxn1DeHs Kye_x3QOSU0 owM4is78C0o M9WaDhm3bE0 ijueTjJrMQ0 oUxsU2oZ27s gV4WFBjc01I 9BB9JHog-mg amGJwP2p7D8 UwnVloaPX5Y 8lnEGuCcmXs H2_tkNGWYKs H4dh0EmCQLg jAR5DtTUdHM 4XG4OPjDKJY i1nbM1Gg5OI lAAxpdk0Swo ddwe3cp5dt0 j1CcIP0upoU LagYNt1QpT4 B3g8p7_d8r8 rSturS8MP9o QuIQ_S_WH7M pyDG32yotmk n7AIwvbyT5c 2_WO15gq88k gcM1pFxO464 BcRXmoGWHtQ kKk9o476WM8 4ekcTVeV-1w OuLL5R3sb-w LzJEXl2ie4E 6xNFwkWJug8 z0-rv13DDk8 YAjVUJ5RB3E hBsnb6M-lr0 MeAMVy0ybYA CCF5MCx5Tes wirXvuRATiE xVWpHTafYuA W7xrlkbp0Hs 3uAh-opNpDg -GaJPgI3jh4 3COpxKYnjPY xhlW1DSEAiw JdeH3lqGvgY DO_uVdE-KtE fVv7WOgDC0o Z08HN_2m24o l1DMfq2zSks S6QH4oWys_Y Imyqnop6grY m89SmMCynWM abM-sq8s2_E qJ9YL7qMG80 CoDnI1qW8ys 4x1dHdc5fD0 FcFtBqXUud0 tu0NflL0_9c lWopMAZt-sw W2OKX-PIpco E4D7FEZx150 xkzNVP-tQ-0 FjrKzRGUXWA 2DkHvEZSBOg BITmqWGegUE 9_AMztckp6k Pi392aPIVHc rOoBvxdO0Ac DcZgodKg9OQ H7GwaAh6G4o x7mnUeDZWRI -xSV3MoacUw JhX_d4BCzhk ArMePKKjiSw yUsoVGj1Ta0 yySvdJeBcEg yo6AWtLxoG4 J181xxxzqyg UVj_fFGA1Vw wUf0QFFi2Mk Ao-ipKN7iQE B3UhbtdxYak rARKAStGRy8 ouPU0xazha4 fNcnudXLN2g 2CFBewOReY8 30xxXgTH4OE 8x6RDkjZj8Y QL9sZG6f5rQ txKlsWFlkcs wUul0bIkS6g xQi7ABaeCx0 WVxz2j4_skI ulwUkaKjgY0 ENAuQIAgXIg IF-3dxM0df8 _PvuoEb4yeQ KSheZC9C__s 7FOk4bCAQhc Kw5qjJslyNU EzR4I2hJyxo RhirMa1wvPc mZpiKdps530 JL9SnJbeZQw k6UQZv_ElZE ZBc_xWnmHRk 85dpTb6PRNw Qo91sVEacq0 tgOwPRAbRdo ZF4nYBty_FU bjaJxs12l44 cG0GDlP4oH0 PLNOftwFMCA 2T8HUyL7zyA hJYfFD_MNoY 0NNaypyly_o iJcH2hCMNiY T2WbeZlfB9U nNkIWyfowzA HcP-chk0FwY kcDEHkSgpuw NiAbqHXwclo qbYyYYHysqM R2MxWZTrgxw 6svL10xXulQ 15i99XcYpc8 7ux7Dd18Rw4 uGg9-5_0On4 bLPMGLsf1c0 Nl0BGD-SxS0 8r354VUktU8 gOy7KDtN3mc Qq8BlVT4KtY 3VeXn9KEvSA dPKG3WMkMxQ v3aqGRzL0BY AdyWIiYQv7E dN9rfJvFHgw XBz6d2VPgZw aYBTp7dH_XE _uw-hnKrV80 A0gGIMaQZJs sQC7OzU_d18 FwnnarFw_T8 ================================================ FILE: data/metadata/youtube-dl-dump/2014.csv ================================================ yr-HmSz421c IKFthgUbCdY RitnM9n0jTY 38mE6ba3qj8 0wAtjDAyv4M 8WQG1IHkv4k buNwwAximcE dKC2CPS9AFI kh62SjGdI0s Ky7rHZmk9Yw zm2fF6nj6W8 in5f7RMtnoU gTgm44dkSCY 13_ffd4CiG4 -yvnWPZy1FQ RYlKhpi--QQ rbFIs5-Rn_Y pkylHxUSxLM W_URoElm3Ts s9k-uO50300 IGlBlA7Vr0M TYC_FD2YXro ygU2QenlIvU aK1r7tBWnro LEDYzJazfw0 ueR0lJzIxWo lO8EJQzkYxg er6wSXJC57U MbbKc8GJtFA sWEvLBzMpYE kPSk30qzgFs -YykCz0f3Vk BHZKSYLAecQ b1jqSRnqLMw ymA7OFZ9lF0 qVNAGVSKEBQ xGj_wbPl-6w PFbxA5HjwyQ NkaJFlr5Fhk -0f67QE-HP8 x1H6pD3vNwQ nkQAhpLBok8 ik_WAfUpVKQ U0YkPnwoYyE 4bY-bFqj97k J5nmxHjPuvY Ysdz8bIuyWY 0MUWDGcRCOQ a-SnsqKFHLY XmGKlWjQHic DfSToqJxCSI WTMcikRZcBk kMkxtj-mu14 q-H62GgHjeg ngeORuhnajc jTHFCMuIrzQ 2AeJ2VHssPI ZEshWoP9if0 tCtZfBVS1Tg GNdpxi9F1AA Q3LcGb0DGM8 rj7e6WvyClY xVT46mh22iw hRoE2HRnpkk bUWnZAFfxYc GTqz4duPdYQ p7bpv3zs8Dk ypw7AA7tf-4 hdhW0bChQwg YUSxYNj_kM0 XlZUBUSKbFk aKnvOP-1U00 gI1_6ob3hio ozf32hrXGiY kjzRZCxQ1EE JSmcnUcLVHA -ASYRiRflDM Il1NzkQ3rYs x4CEkYJNir0 70NH2okaBY4 GPuCrJujOkk YER_g7jph94 RmhSgZ106Wg 6MrxdKGZaWI djIvmaYI9LQ ypvzo6iiM7M 59Ntwoot4_s 85CcD6t5cx4 jVsXMF9sbVQ P6PLrI4R4x4 voYRf2GVXbc 2H7XknY3PMA NBRHljOdrh0 P7JKRDjM_Vk VRxRsbDfLaw BV1Nyf_u1AA O2VkpNsOM4o TvSS_-BohSc gX57uKMrxp4 VY4Bo_Mcws4 IMF8PvqFN-c hHibPPRQB40 0vlBQqEc5YA XUwybDr5HlQ LCsNRcdlAkw h8E3sSTc11E vAd0QlUaIBY XQUKOgrir0A gknobwKAStE nC-it_V8df0 45RmWBZsU1Y DBa4fJc9rE0 aIZsVuaUWB4 MuFfh15AMLU AQa015gBmro aeF3Q6eTU5k UcaPMGGla4o eIo_S0aHyfI wNWy3YmM3Kw aokJADOVMC0 UqStvc107-M A08XpT2q4Xc c4ux2NclHoE kWrOmEtXk0k 2aN2OU0pk-Q R66c0UiUCZ8 lYxVM8oNxRM c-NDI-HvYd4 mVzdHEhC8YI 4NKk7BYl0Rk DoKxkx0bYRk k3yUlJtCkJg EzqRc-RLJfU wJJDM675Ypw SRlmBs7EwMk zGrIGZifpwg RDdc0-JD8Dk mb63Ds-XWQE 1YrG1iLwEWk iojZt-Ht4Nc kq-GLDVKqMU yw7tuJeWXlA E6gWFTv3xE8 _pWW7Xmat6o LS4oNHk0tlk R-chvFgDLnM ymZFsUBiKJA W1KhvPZmTgc it_WqpOBfWI KNO5Mhxm8G4 bmmxeZEnsL0 nfC8sEnM_5A 3_dOw0UilDY w8txE148NNI oIEtwZK04wM fO8-yVmcQCo I2gqWarrj-Q xdQyp5ewyew cWMP0aAueQY l1OgTkhFJn8 1-rmOabireo qAdNnZqKGiQ EzocwDE3VK4 wrO6W6vTjV0 FPDAxknJFW8 XUxsLiSEi9w 71GRwoL1tdA ITN9541Gd8Y AFBqbhNngJo LUe27-RMDX4 FHSwbggymEU ifDBVFHT1DU 4vOQu8rERuo tUZYyuHIbJw Qp4Vo2bMgJk tANIXMqv77U nfoIqJWYqX4 cErG8_neSa4 zx0PxIdo_pw aJY0vUsHL9Y mD7NPkG9kwg MoJqPqmjxUM Lf1ORGBLKtc MRTCRVf4ppc NwZlSjkXWnk cGgPJKE_jSs M-_XQTwadHg tc4zPfUtP8A euffalJGKn4 H63L0VBnCDA 4oJk7-aMiNY LdHfwFIuXtw 7kikXTi4fFs 58C7ep68GMw GgtGlyKIMh8 VQnDBor2tWg JEcfknHqMyc p5n3koQZVDY UG7lwsjxwz0 Urj46blH8vo BdOG2-Gn044 QhZ86T_nh3Y GTRAmbo04JA 4gehr6BLqRU XRxL8KW7dbo mbj-OpDla5A EC20KdIDiEY tSWhP2gwhms HAqKJv1ndXo _58I2YrkKdk TC_3tiLJC8E Vsx0zX06F_c qWlS0TrvHXE gUjOiNR6HWo 7_WoelQbZyM eCyr2_QTNVc v_R9dxNFKWY 4Zb-n9MXbPE iReLGcSZtwI IKrh9Q6RU8M yrUXPvP3Gk0 HSJRevnIGww sRPTqsO_SoM ToDDs9twuno l65KNW2ZGV8 _gwHTYw2ThM KIqqvICYqUg nVpfljH55TQ ZcjvH_shI5I SQj4HtDOjkg yjMXMAKF-Rg 8djvfSfVPO4 Tp84-New5aA f7131IkiSCg 6m5KyzSNu3s uIBDomdpK7Y a3uqv0eP7Tg O5s3Oj2cPgc BN4GI97RoSw qLGjjHXyiOQ 7LFtoz9sERo QfSjs_6MZOQ eOcimzsviFA 6cwTpQj9E4U MOEy-Da4ra8 LqDoPnJn9vg 0vklrunpo7c BPWhOdRSQ6U DYOqsNNCOLQ zgXQFwcTJsY ctdY2KcX-lM kzGR27NzXKA ujwZug46-tc WTaUYNnX91g 06OkoPlUGm4 jj0765rFtxQ EcRdEs_Vxtk R4cgP1_M8ts buVMAoBMl34 IfNhqLwtuA0 X0FxwPfYz0Q Os49ky9Aiqg 0_aAMNEqylU b4CDHFMO1R8 EYoO_t1M-Sg UkObc3-RKYg HO6yGAV4G0A THFVJBcv7W4 xsNboBgmN38 v96ND45Aqmo DXT4GZfUONw qEJNox8TCOw 7EHVvWxKKro 1afEpntCGXk Ls4Ua-QtHYE ijnfTK6LgMA RB2mOFx7jfY DLf5iJ2jOZ4 UXjZbdc79dU At6Q3fUFU1o zi7HyTbmVe4 qF5BMKYv94Q KZHIVNGrtLM ew5-ui5CvJI JMmp4T6mbkw bTuSlICST0Q sfVRk14aLtE TDCa_16CiCU ukTcTd6wUD0 0HjAT5lo4Ts kXBTh2sv4Lg KoxDD5gYIYk 8_iFDOIkRFk BL-d6jqZ858 8b0SHCBsDRM b9KIXCf4U48 mNcyNmX9B_A a75Ywerim8M vZ2jwhdnmw4 ACh4ghU9eok tSJ3DYrCdNk UeIxzCUMEsg a0n9iFb4i70 sZI5ebqgfaw wcenhpP37sg 2V6d3f8W-oc 4_zn64bRf6Q Lma2LDjYf5k JPbkeLf4zU0 D6_ZC6BywXs I44NZgYW6_4 OC82kTAQZew RsnwTCPo9RI RrDdgbo_NaE E9v4TSOvOIc AhH1Yqw-gmA Mnw2rmLB4_I 4-Ml8OEXLbE zyIccO0lXiQ L0yOTA3Wq_E SpMvmtj35y8 wmlNvVvfXNA opxtApiyARs RyObt_1eT8M cv36jml_lAE HFZSTBmWyd8 cBvFsIF5GNE 4D20x3Pfg6E XjjZyyzdOvs rGqSj0MA4eM _AdhEPNDxeg NgcEbuMsrS4 s-te8zRj4WY tDVlpRBhtWQ 26cjR330Ceo p9BRNz08eUs aHw-fJZ7mD8 ySpuo4tFo20 De-dBcPZlIM ABW5RN51NqA q40Kh2-q6X0 B4ppeyE6UyU oJJM7GnED2E hTOzxqecG7o x-HRlq5Oldw lDWXlJG-FDI sHTtCAH7l6Y QB4WFBsaeus n2eSLdqwSYY GM0rZv1Lii0 Paut4zNx-3c yqCFtEZRFPE UqnjC1YM5pk FgF-RJYNzzY FdVyibVMumc Wx7IOoX7l8Y EubG9_KSoGo H-cxAVTmQ0I fJjBf7yY1P8 5-afmnViCr4 _qqw8iHQASs OOGcesOHlDs XF7QaSY-8lY TFrdPPdwY2I 2p-FeYouCx4 4Q8CqPioUFA GukkVxrTLaM mxgE7XEbc48 2b3mwmOTR3s JuKhaVdSGms oTTfW63fY6A abyFD6LO05w Z5Hmi5x6JA8 TETjB2zHhAE og36vWGn5CU Vyq3eN0DUU0 DicBrlK4pEU 4EYZfAO5ZWs 2ceG37UZvzQ 3I0AP-HwDnU 8p0YBrmfLyA z__IAJ1Q9lk y1lzIInBQOs t4fqGbC2mQM d4MZPbERTFs FEWZFq14JiU 2P3uaREypD4 Ls2be_G7bHc cP7WEGuVwig C7qekGisCs4 CB-a6fmj21U 5u5ixEyjZng 3qp3AeWmt38 ZiGf0aDV688 KLYlTxCTu20 OEiioh2L3jQ k87Hk4JNqGY 1QJXKLwmN14 fEZuzz0KmN0 LjKZiPNHRUU AHw_6AOK7bg -zXmGloh-P8 yV0IgLYLoC0 4SPwmO5wHjM DwbFUmWjd3g 6CwHxJUF8DQ KCbte6Zhaqc zRYmoB7ayDU spI-9R3B6zk d7ye5zFyuso cniwN1YsUW8 CmPZjdlK3Qw 7uvW1U9UXKQ USLznFhxNF4 GvRD2YqBi74 CVs-LAC1zrQ LcWRSHD3cAE rZAnSJl6VKA ay1pxLNtdxE SPSP9BHo1_c V07Z_XYMnmM GcSfbaac9eg BjJxoKtYj_w oKWpZTQisew _TkhbfmrmD0 L-3Kx6xAUTM oQotF_oLWTU 7A8pZX7GjR4 9B7Y2tMDlEA AwUpqAQNZCY L3eM2_0KE2A RVM5hFMx2Kk vT3kQdSXrMw cr-rgM1-wXs a_nd6odxaHI sPZ2Ukl7EPU -TuZo-mugDw -iM3hKlLS5E xRT4EyI63jw lyrv1rNWg0o YbABtps7aY0 TVMg2iM-XQg l3vcMU002rk 7y8pbljhMQs iK6cDwd3yH4 GhisL6dCqV8 yNkcLZ0BPuc mokXxWsIsWg F_3zkj4QVvA 9d8VhjIG6No Jx401J_oG2I M5IO69jDb2M AEhitq9yTss EPCFcnp0R3M uztZUqKrHVo aJHRyOrRnQk oY0IQEEQ35g LZhbH4pHMQ8 qGf3--y_rcQ 4SD245xSSVk CuAXqRNpFdo Mmcr5WLNtZA D-QqctD6nCw d5MJBYofzhs qYxJ5YvIJX4 _gb6yX-Uiqk fpqwsexDM0I 8X26PR7abAU _P6ywXKM8kc rlXL9FlYW8k et7jz9CSPqo VXobEyKCykQ rL1VrbSK0IA 43DN-b_k4ZU tdMQZ0g9ykE a0dkF8CZxks ufF5p8VBsVk qb4e_GJzmrI S-xuQp2fW7I ZGcMRCaBh_s Io8nlxyMTd8 xwN0ZIe-cG8 bjqjgoiV6BQ jE5w-Jl5BSE b3lLWO2d7b0 5RMx6st2-js ElyptgRxg0M HbWxE7l4F3g SJZ_LT4GwQE vtxo451I_Qk 2myyH9c7mYM Xvs1TPM9g2s DogM3vTZsuo KmlUAuGhy24 cxFXMll7PWI 5D7JRwROZ0E YI02lc3SxXs eCu_yXPkwGc CQlI4zJnxho 5-MjWWLPdqE nEFAuOF_8YQ jgOMHLuBup4 m6eVFDJA9EM pyvthgZdQhc 6krgl6GpIbM BYh-iVr55EA 5tMAe05kTXo RZ9Od4LBqDg HrK6dbGxq-E S85RSn20wJ0 9cR2Rh00ndA NKaENwBlGFQ 59ZImWWRR50 OS8NUnMpllc 5-Al98JQSUM FkoI5jde2es -PAIOy41SjQ Vkrb_0DiD4E XnEKbUbww9s qX0rYjUdFik h1q5X5asH7c C7Y3b732UVw XX8y_mQIewU YBmz0YGT2kI ve1Brtly9Y4 pbd1pcdHRVE WTtAAYgzMjo c6TNgqIAYyE Ux4y_2RNi_E HUcO7rqSLEw Bt_VjoF2lGo GWrQ2H3LhI4 ocVeenCXGaM QW1kAlnQLd4 8PDbRr_7bI8 wbrTwrgyOrg Yh7Qz4fiKxw OkrJTqGkSWI -ayGBx5Igyo clslrqHA26U eApCe2z67Gk UlT2oHT2RGY 26mzWqdJnis dv_26E-a_mA d5bK1xSr2dY uNqwzdw5uKE yK3DX2F0JWQ 3mN85wFz_Vk O2U0qOzibf4 SG7voVeJRC0 OLkKMHRUB9A iVojYtEpstY n39lwOfvb2E FdMEJqe55dc lqbzUCMEK0o p4t0OpJJ0MI 5Gmliz8GsG4 WlwLa7Jh3HY hML3kvOUVZU 4ln7gkWQXys cQHAH3t5oJI YwzGw_SMwAc 9NKu_Kyi1qY HM1U0PSGMn0 CkNjOs-7Sv8 CkW8xFVXPqI B5D_aDaMqkk 7rTb-n96yS8 hnXqavr1ZMQ WBuXu-20LZs Q92raMBaQ4o rkD3FLsiUiU UtS2awRAf5E 7_AiHZa026w rft59wPnoqk lj66AQ2uzug yYCW5Eo72VU buOVuDwsbOM 8FX2FZ0fFlo CHV9FhjbFLQ sytZ2amRbpk A6ZOCb2gaqs SIwi5PRNTfg PwuTr5z4Bec QRACf_ehgis KhAtVQuAjVc 26ISV0QFWPU 2tcG49k5vdw BXa-BfF9qGc RSUmB80GqDM _YYmfM2TfUA jK4lxjvrhHs fxriLTLhyyY pjX20gL-rnc Tc7H9s4PdSI 4NLUpuo3HGo Lxfe0cKOx3g g6mF_yokyiA snqs566G_Zg bRilciIycJQ 3rFMyjGI4cg buH0CUEx-_Q qyMVXU7qMGw 6HXgPGZcXe4 iiMNb99KaYk 5ijEAMP_zW4 eXHdqulNiBs M96f_K13joo JDxlbYa_THM FpKhobkTOyY cV0Db20loyg VjdgqT_xtEo 2WGvnOdTfGw Y-YsM2a_N5Y nuUuXO8D9mo Fjl9b_vVVnk qHD4H60rCfA iaIYk3DZKwE SeqT3GyDb2k 4L62b92Prk0 34_4OMd4I2I 3sr3yQ4mGbs rZsLiY_Yyhk cDI9o67o7bo Orwz44-_XSg 3iZIOZrzbYo 7X47UIYChis NzzSr5StuCE yzSfVpQ-1ns 0uYmyOuu5xs oMvMqeThVPk EYO__x8qn2w CrFsSJPnHj4 7qfgWGJpbgA vNgB9PxOAdI m5Qn-tIKwD8 RNMZD_WiAvU Hg_aGQjwjmo kSKnJn8gksc awHrfxqEofc FqJJfBeuxUE ou4WG7HhFZM zWzRkf2uwQk uVNCyp4Verc 5WnobKuNaO4 1NfrTfIPl9Q NEcaoimX3qY wEvrmiK_WlY PdmE-Ga0f5s M3j9drozqlM 6Cz2mIx0y5k Ul0qToCSdfQ jvAZ0bjChvk UMjzEWOWXk0 2JHbw-BXN5s 3dzw4t_dB5M ckremwNAupg U1usNHIi-L8 QVw-cRLFWOI i1hu0ErzPc8 qUwfcycK5X0 KSOhzWTWuxA UPnwEYjEMP8 h6nVYkTWTZw 1nIPSxCzfVY r8759Q-oR3E 0E4d_pXA7dI Z97maI23aNg vVzx25uDVaM bzRIeXSIS_w ymWU7EuLXNc YGenu4ZFnmQ MIxtdrML0rE o3sj7nGzC64 AuF1AN-ugM0 DYfo3nt-O_U r3Owzt1HZkY 2N73a3SRqyE sjPnuqcrL70 jnuQMlB2uyw gacB8xCQ09s BaccIrZHkno dqbddxpASRk tojv7SZkBOc ZjC0F-xFL5s SYM7Js4_I_4 0tyZ_m6t2Qs 96T06Ema-Fc Gtg2d74VHH4 CdMDIBgp638 y1O2kicdfzo ktXm7CRXbsE QUVXO7h3-mQ ns_HTpxc-g4 O3bTMw3bb5o l6e1M2d4BJ0 TzAnOnVKwzk lQbw0_5O8CQ LyszyKhpc88 1fNnMtn7BiU zGa7K2HO1-Y ecmRksfy--I 3D2hC2C_Wpw hwu3LxjW22o weqGiMyn8AU tCDZOw9BoPU tjSf6v-dztQ IQ4Yt16z2PY PWeRWbuEN7Q -w4bcJF68u8 z4QNCQD7LvU waOQ8ECkEcQ cuMmCpE7-pg uki4lrLzRaU WQnv22Qnp8s Blz6dosZ5oc 8kmCFBwTmGY -oRm-YxsEH8 sEWuVNk2TKA TCrV8NUSTsc C8l7cD_YI4Y CQtbqB7NcXc CgHWwYQ3XSg TAkyNyQBnyo vAalnLmiZrc YeNQ5WEKggc _KpfRDVjsKI 1ISntRHuJ4Y w9SWbpW5bNo eF77Id3wbZQ JZsF7-7VBYs NCh2VGy8AR0 BbYPFSGnPZs q3LxjwTz-b8 hq-jlSdx5Ck tQlujXWP-5c JpdTx3k0VoQ hm9ZzMSoPB4 VAh7ZGHEp-c hSAx87qd-fs NwqIdPSNr6E oyYuYNnSq9E D0rFBU7pVL4 uKZQEDh_KAA _Z-tCU-sULA xd7SESj-nfA afnlOjES53Y 3izxrCNCbUQ X6UG7H2dcos gjliVll3Uyw IC2crLlclNA AO_944kf0RA bwTe_vZ_2dg x1dA_SM1vxE _Fw6TuACCKY R4ODWXEmvKQ alvAo3qQRQE BUAUwc7g_gY 06gTnB_5-Tg igD13c0l8Sc bmIx71yf944 SiLFLIp8I14 kjx9LAJ6Wu4 5-kyVZ5swXE cKw1b2-4aeU G4Hwsz1sQmc DH6S0wKKGBM kthFUFBwbZg wAadouGkwMQ Bp9AClR8qCY tDpyGID-qHI 7zDmlkn1gbQ Lz-ihW8RXSM LU1A0sHWYQg gN2ZP-q_qpc Xw2cUrd_Zt0 O7LsLRMEg1Y qDYuDtyvVVQ Cbijjb5aLYo RgofngIgfsY zKWgTSNMESI RAG1b0H8nv4 zn9pjQIMQVQ sDB0bxWhS4A i1jS0AMWtgg KK2MOKkkp4M s_zget0Z7Xc fU3enCcXY80 lPJzoxKtSxY 8svIExZz6Dw gtHCnru414Q iWFpqo0_43o AIHlnQOkZiU RnWxwJxpDig FSbcZ85iPvU CBP-t2AJ8M8 ks2GU3XYXvM vMrWJki0r8g EdDMvB9Y20o GUclZ3JhJoM dPfKQTaEcEA fhGy66B0CIU NJz68D8NcE0 6GC872xb5dI IBRvIQdd6UE fjnGwAftnDE UwslgPscal8 EVPxub5VJMg rKjMBYlak2M V1dPrmENIVg ccyTJYkiGqE WOLfIBsXq4s pwlgVnituhw kNOz8Bcb9v0 Nx0Qte8Wfgg hpfufHZI0yQ QaKCmtbKf8g dEfBtVYzWks W1N-a0SDw0k 8ExIPKUEZ-4 A7iVMwpaYmk edDfsrTAI1k k4WEx4-yh-g f3mAVsy7WbM jSbmgZG-0Ng poQL9Yw2kNI OywTdKpHE8M NWO-iP_Sbtk ajj5MxJEJ1Q UniUFSan3Bg IwC3OUA8_s0 H3h2opMD6rM ZsL0rDZPGb8 qsdgNxuhPgc hQogMjsahWU ah-M2AYI4Ac zQHhbhtpJ3M hrZxBMTQO0c fSOh-vTjWk4 nZy7fW9IO0s zCfnEpand6k XAORGJKfEcU y4nFzow4tLQ 7iWEk7k_kio gm2PdV3UPfc hdt5QAIC81Q 8MnF5ok8llg mb2bzOdITdU 1eQh2-2W_1Q yQAICCf1oug ZCYbGGfwbfk QslzL-DhXDY 8bAvbwlCsHU QgYPzXlF1xM IyT1ogi3fE0 1US29KtfPrQ obbz_0P1wVs iGAwKHHaRAA G92KKZEiWy8 GJgKIC581V0 bXq9Pa9Txg8 WSoMlpQ6yz8 poZubOWaras zKSDHbVKY7Q IX3hYYzIyoY gYTKHHhPk08 JJ0PocoUWVI TdOMp1LuvJg AdGVl3AP7fw MjC0kVIUGYU Y4yQoJ-LBVE nODBN75vrH0 Cpxs390x5N4 zvry_GtQIeU IRMNacEVuT4 JnXCZbZipJg 7fOYHqR2Gyo uq1JHKlUtOU uF_721BvdJE gL3mN-UpSyQ oaqTzvd4aq8 zE0vrRRohs0 ydYaph8BQkE aBgs1Kxh9nM BahgFrLFgpk Jah71XURbIg 4KX9Ojp-yic yZLkEOM1CQ0 pKdszbbvQGc 2yXz1r5kn_k u8TwN5M1fEY wRbKDoyN5oc lVg2pm0YdQ0 i5mSHPKEbas 3jBfvv_lBEU WDq967Y_e3U gMBkkaB0pp0 7jO1tzRBFFw hbki4pbNi10 tfsPfimgjFU laWUdsC-3Pk QCTgWRNnfZM jXqcrXqphIo 3IAUIQJXHUM FPyap6DbfHw 92h5_0bE8Nk gfF5C7j-2jk GBGdp2p0T30 _OzammfDblc tvaROfCgPPE 6J4faUNOGuI pu0pYw6lG_c gUccqktilDU mjPh_oYqKPM A8PVoyIiqrw YRi3-AbHXbU 55gq831fmzE qw34BbyVK7c 9uA8c4XGVxk U0FBVju7fVI OhH4bYnAdzk Wh4U2TtNn-g 8xsYjrLw-Qk VIVMDMDxnQY oCq7TUmVmt8 3CeKpU2WaBQ Xv_qHFUItVo iZx1W6cHw-g e1bMBM_rgwQ juw328OfWnM ybbS5_qlkaQ hn09SKCZgtI cWuFfrettMY TlB_1W-qc14 eTVHMQb2OyU BXloUAxs2wI DLFB0sj-xkc Lva7xOJRRCA frgfTkjkcxo cCoD237oWtg 9XVy6vDxQDk YfUodLRuU-A Geneo4_3VbE cLc_O-kQOoc FvsbTxZZgxM n5PnSNCFBYs LFc-p5H9AJI MRCXvZjeOx8 HB7ienz0_IA PSNqibKHIys NrXQSp7Uz0A yThTYeRr5BM h0z4HetQWME OWXlfOnU6tc EI_QlYraNl8 lmDII7sMIF8 1HfdZj-RzI0 rsmsMeT8EYs m8oSm88EIhM 0p1OYPs14T4 Ay4MOACH9tQ 2F64BSpClag tx8GFMF8Pd8 jthkBksMaXY 2wctAnLU_cE vsSTRzIow2c TfeZeRIdyNM kBgO6ctmq8M HFUCwBt4pK0 7kAoU7bwDFM IziNmIErmWw yga9OU5yuKE SHvBT5RXeeA JVfMbJjbIpw TbgusehY_sQ rFPCkGmuUO4 yFX-95l18ng LkLvZZiL3Vo ZC2SlM2Eqa4 Boi5obDmX-g QpoiFakmREc yJUGxCV5OiQ urN3pAtiXdg tPJ_rBWLOxA -WBeglzkZNQ F4d_PYyHSOM FaH-7N7iRjI GeqbeBDtYkE jTFSVXpq1Fg iImMlbzg5Qc y3wTKua41bk fXcIZFeYivQ opyCsftx7D0 ettu4zJOh3M Vn5ilm1jMgA mXwYp2IwFFw uuAGxjrG_gs F5U5PKWgHQo 3daIUo8UtM4 v75c0QugkBI M09CkmDfntY 4nGA9zBslBg cR7GV9Fdkuk dZushQttfzY QU2qTjAFWKQ BHx0kYdl9Nw tlhxBAhYnS8 JQAyLEhEoQw QTHImytcib0 eqQtfjs7YGg 4xBY09_9H6g 5XWG3eNY298 AV5hAxICHsc tteCp4cbON4 NdDOmuWz92I ZIjuiq25Lzk 90li7tw4CCM 5rKn9BNhQ0Y AGCDh4gBj8U RAapNGRfaBI 8_phNWJu9BY dkcsqI6hZz8 TArcc_WduhE Wy3IoFyvWOs _pWx7N8gSoY rpdnpip1X4A rEAbZTpV47E vKEWdfB8yo8 4OcM23Hbs5U dcKdr89ngtI mW3KEJNsT2Y 1L-4-XQYxrs Y6uj9ZZl2LI 6E26ye_66xE OCV4kaP_0-k peRHtqEZMLk b1s-ewwrpQY JMpTeDvOnLA VSiiYMgJ3h8 BFkcX4Qi11g VBgDKUVxAyI -cvGAF7LbqE YKce1fkBRrc 5oe8grtUxI8 a4DTqmln40c Ckem1kbmJdQ BR2Bcczm9EI mGpalRiltP8 AUqVNqZdqRw cqZVc6GtV8A jW9D4lY0TUU Us7XgnZ5OHE -scWJO2h1ak ynZqnGTUHcM 8TlVDn0j98E bluBJ-eeBBs KXo_Enhm-xM gQRANiw4JLw Bzd07cbr3y8 i0KnbzRHwaM GVuaTdn9TnY LtkstS3KlIA HKNo8yzXxyM r6dLxmPng8o tM4qhFW0FPA ObAOGLArxGA CwBH6g7UEI4 c3zRfKmcqv8 A6zqLx8tii4 P9fOKOsEX8A 7t7gG3XVqW0 847dUNGFwsM 2G-BNvZvz8I CU0lA1M1_3I T7uncpUQ4GE 0UrClwjpNA8 E9yuGEux_OI qPbOVPtdaZs 5hete-GzD9I tJLdaKUBGzo VKcpoyC6RMA euvUARojiiI S76IuL89zVY sPgl1DyIn3U _2EQFo-vIH0 Vtpo8d2mME0 TsGOIi6JI1c v5qwMeiEF0M vTy2bx3jmrs lVMviKEztGw 01ovMSvDohw BZVmJdnVVBw E_UyAj2V4pI AridlIyM9ak s9IqypZYH6A r1NHFfwmJZQ DLyLE2LUpOo yUXdDmn9wP4 JIfu8g9EUzo HFbgT-GSYhk g_tQ__pEoPs RxogsPx7JwQ mHA7T9yOI3A LWRuMnDhCy4 7uO7VSK2XMo 2gKXgAzFV8Q S0_2LuMWicY bvuDpEE2MQM B8rq--5MbZ8 1AZuIPGAQ_s _epn5foR_Ts V-PNT54Z2ig aIekhk4NDA4 7JICPsjLMis kGXKWSmXrEk oISBveQNkzA -R2UHh9T0ck gbPolHxofuo gaoMc6MgvNA TtWqejfxiVU mtuBqolFOVs KAal6-tvckw WCbXSTBBueU mgr2tLYYha4 Ed5xIjGdqb4 v98Rh9qzmPs G9VI6SExDms 7ikLl_nUM2A Z92aHy9-fkk vVTASz4W2hA dzO8DzLZAuU XrvB53IDIqM QCXgvx0vPZk L4x1S9WYV9k 7nHXSTzcVX4 m4MdMCS5EeE J4Mq0xr4gwU xcYzjbIVlX8 8GtyX55FtTs anQHZRrZHYc gMIvHGdpQpE m0gUcNGsGYU F63pia00pLM 4SCJoMT1FCY x5bONeuC6BY aAg3LPuwfJM xoRXgE6j9po QhYydmeQ2Yw wdrhl_I3-E8 k0XGlpR6iLc 0p1fLn6_ExE jr8BKtgMJA0 PioVmXuOv7c z-0rKpuvnT4 TZjB7MW9Q-E 1_7FYr4JsF0 LEQNosAHrD4 Akr33uOKP8M kO0kWTR_7tQ Q5o7eYFRp_U TmO1R-GqD50 rU8cUBCZn9c YlAmk5w3qZw s4KQbOrnRYs DwyqcEjMMI8 9dnvta78Oc8 F8RkAzAX2-g Xr4ZDbix55Q 2S8FhT1CLOQ XbuSTq9TZSI VtnxXJy01ag 0WY4XiwS8Lc b_W5rtfzadQ mTNkmMUcQfc 64Kac5hYLBM BcCzxUMcrVc q14F8WFr7EY k3sfGEvPoHs aMwqijj857s nCLxHi2oZVM 8G84xAalZiY eIvl2bRW9S8 Mlv16s4DxwI 3SYMh5owQcA p2fHtpp_umI 2RA-7QUYrHA 48kV7uKAzEU GllksI139DM -nboVp_nTkg cUEc9ZF3G3M EkRzpc98bwc SQGwcLUuQUs lJuxU-aVeT4 ewEreSjPyC4 ptBGusJjkTU C1zseVrJQLk 3rrfqXl52tc 9LpOzLU5k70 adFRKm9ezw4 2CM_ZbYvMDI DVAIrYCyB1w 944Xo94Owx4 6l60PJOMu3U WqyvGyBJbcQ IANjTUtZimk pDEJr2Sqhxc GU0BYEZb-Xo fgp77jbQkW0 vli6rJX8Xac w2T2xsIYH0I rJ9zBV97d5M 3zW1STojfq4 E6W4v8DYh4c r1UKhlSdV-M iBptW_7wlwQ QsveFtQaP7c MNBd97oTtq8 Vjo0hn0kAvY Jd86VeZU89A GVjV1SKLJ9E ZVHIsLK07ak wZAxWIJZmo4 04tTXJeE8Gg oYDde0u4TT4 hU0v5lzJzXo tp_djeJB9sQ Ic5tk6Afu0g 6bECCbRJ_UM xhhfBsq7qao ykdrEYrEaZE xXTuhmtvXNg DkIr_I_E1dE Q3gK7Oe5gbM 9UtRH9enIUE TLNhcMerK-U dBal-Rb366c XI12czsGYRc nDKhoXEpIq8 E90s7ZR3HNw aWLRULhIyCE iYetsX9JdIU vf6PZfksmfg D1hNiK3YZ2A DesiCKdiCDo d9K2p6NtV40 f08pzusjWTQ BBdShysGs4Y eSeYw5yaU9A YJLeJG_bG1M 9oRspg2ktcI ry88dGpJKZk yPHYjeHk1YM fGiaJDWSWKE XLk_91MKjgs IhTgiNhfF7k pjmRcGHqKZ0 0k8XW2V2dCg 2A60QcsJtlE qFOp7gSiC0I aJoVRUNmqIY JIHGn-BwZMM dzkjnPSbxJw BNxai8Y9IXg AH9_BGpsNCo jU6nB-uJh68 bXzp-98u468 jF78Fs72X4Q Rn2__xGApzQ xGGRJg-EzoI Cr-WWckkejQ h3QK9udRbWg utJWIjtBBvo 9_ouUNFC5AI 371S-YWcKFU phWjHc6hsRo vqgb0X4uuEw AQaOCIrb9Fs X_KqKO48vwY bXtvpRR4VbA e0d5svC0xQU 4ot1Y-WYGCU ky1semsHhAY DX8o_ql6f-E GBDUy8au-_E d_t77ai5GEk _zxlffOr1GA NgSS_lMllOw hGuXSd2s0jI 1VzqryDpBfM EgsFR3Y5XB4 QCrKGjDt00c Z-Hyq9A4vXo mvWdOSJ7l2c v14aCycvoYI qDAFxENuoCU t9do_YtNsnM 3pdDB7-UcKM gEw3FHiTb1Y XFoGxUA8btQ BgWOqRD9RPs EgIkHYVwNrM 0Z9Pl7oF9dI EWvPNbC9KfQ cYlCe0SYmWI yDgZEL9-ITE YDuDd4tmZps _33snCsG6nY VmwM9EXyczw WriOEr0A1tQ 8Ad8rMLFcRo DAlyvQ1hNag vs6V8EILM0M _nEWjcGHLJk TmNPJTt2ZsE LLrfSeyGCls fhsngAtICiY V5U2yhrsXv8 VB9pptEqFl4 lu3fmlUJQsE 2G4Vfuk1dJM bFWMtZmjwR4 T0StyKPJrNY 8QLB_CGDDPY ViXH47OcqYA BGWe0FvWW54 bVAiU6Jp4FI PFajeb2k24U WJOL4xoamoQ ekwnp5L8shM TMspI78Dptg tgiPVB4iLMQ cKQf7jAt6xM EmYyxwO2IJI FVoOLRhnkYE TVtvBoELA-g 5ZjdYG61Wpc 65yzqqmXs-Q k1WKpdhcJSo DtgKqQkglyY TdPu6sQ9l4g BLz2rixwPpA zH8ZeRDlyb4 clTG6sYtJig WofqydeWMJI nEJKLKKO0uY IiMacKBYPZg IIGAL77OuM0 t_NZNgm66xI 9lORsaux9Lo Z7VT-r3RB-4 lTWY11J9Z3o al5NvjTtyTI n0Fz-ACCMHk 7pk5PLxQXJI xwMMpJ9EWmE OEw-cBg0lJY 3agyeKATELQ stoxd02ubG4 R7f2TkxM_rk 6cjNvLAvIFs h8c0Q6aqZG8 ZqZZftydH0I OL0I-Tf0QRU WrQdlQo-E5Q In9QzIAgiFE Tv08VahBEBg qyj1tT-vqSQ hc51ExPQJcQ -tXr3ask1fo hsIdl6x2Lck 7k9bFzgXeXE kFa1DI_4vEs AiqgMdj316M Fyd8tAhnKig mt0zR2uOAB8 1OUMXpkRHNA TMvi9NJlv_s G2SpqqxJiig CAYHD5mAsfo uMug9lL1Sgg FsWEzJJlyi0 eh4jLrZ2IK4 tjJPFWAtG4I w1iNrckWufI 7GDnbK8lTYg fNeCsZY7I9o cpdt1EljZp0 BNWF_QsuetA kM781iUqdrI vMyTIoLhoZY DsGsRazwHNc uVXQWXpXmvc M7Bao8cJqWw RqAmUMayBk4 xZw3A072F30 LGRbJ610dkc mwa7-cCuwCI -UuYTHwZbOQ R5YZoDFeQlM ACdEiMqOVvs 3UjujuY8fbU PNRScegrA_E KWWQP82Gqt8 nIAzIbEBdeM pVzqfF-qwlY fqteEi-ypuQ b3uEOvtuMyc W91ITNEiEF4 VYZmHG6_7Rg bMemNwITgjA VFPAH3uEo_A I3GuNWUhXDY ZreKuv4qWY8 RiOhh4AG0rc I2ci4vKm_cI zTV295EGtOk AHV2k4t593E 4VFhBMwArqs gif34AkAFIg IQQDJahY-Eg _INsYrEpEFo QoSE9w3o068 JLWaJTCL_V4 KvVR17L6j0E 3FG9eGmAPeY 8xBrQp4oZs0 sdea5Iq5D_U EMta7CcNgGs _ZHytX1097U o8A2gIt799I tVBVeXfbo6k jmFpZsBB53s KcLVm5KkTjk S3dCv5aTB2c lRzsGDSofxo MmKjw9UGi78 tp-eANZcnVQ YhYn-b84MvE _3wnaxan4qw yE0aTqijR3o S9Wi3A3skb0 8DYT3ysI2UY wavVceonMJg emda_fIsz2o JEjsNsrZuHI BUKTDsI9Rbc Q1f_3XxcqKc mCu3uKNGuZw AB7mSGjpn8c 2JA3UQCYkQs rHwc3Jc9rD8 BRV1CDa5_Z4 _dm0Oj_fF14 W2o3KcKAldE u0wNMcfOIXM tCjohxqJ-0c lVsH8dttw4I fv34SxLog3o N204ncRytIE LVYMePfXin8 PB5bvrhHFIw CmKzzu5ELHU CLAepDJtUJU q6LqVs7P-pI 5XuaulOD0ZE almVKV4ywQQ LI0o8Nhig1Q _NhQKmjXz7c ic_89aGltSg qPVAxNvS1YQ GUoa3MFLEO8 xcgOzHorYag _1A33xDs0lI vMwPmm9UmtI XYVKWFL9irA oJuU7gvcwdQ 2nhZzcQBkp0 qDkEnNVpn0g bc6k19YKBN4 sx_oR6WXO0I _JtPO8an9xY ggEPIKZuPn4 MXM6Hz_ItMw L4TIQxyJEcs K5xM1SxgD6M mKQYPa9Onac l063S2tqZSg 6p6tevRcEXY r9ma_9tM48k RotJK471KDg plGWKSHrzCk 4pUPYVW5GWI LWnHl2_xh4M fgDsOV1YKpE Ovp4lQhkIGY QJOXvLGYEwo 8NSR7Pod8O8 tfqqS90iYKY r9w5dIeVamA dAxijzivjlc yIGiGtjHUS0 5AAni-jpFaU f48wH7l3c5I LzXKQvdRZQU 09MjH5hbF5Y zCu2iserep4 lLepw8cs6eQ KGf_Z5s891U Hzv74uI9Cr4 C_L23E0FwCs ViRs8qaB5YQ yfYKkvq5dow BI5u7jAxIjo 1q15xQhI6Lg AiaIf4aJgfE Chy1Cu5WOgc pnzYOL2o_To 8ypUiGzOsOs 9WpVeYgwugo 7m3Mv9f_P1U OCDouPR9v9E fHiIfSLjJE4 _83-1qzRNpo ZM3mRir3-LE O7wmAaT-TBk 8T2dOyo64Pk QK1Xnd7cPJw ay13eiuH54U 1YXJuW9MNGc 5QFPjo1DGE8 0Qkk8a1IVxQ sy7Lx7jY2SU LkimMjwfjrQ P9clz3jnMVo kKHr9gSW7HM PXn6o5uTfEU XVePWDEck4w 9NErcOfza10 f6DDYCf80hw EUC3JOXJBYw l9k9_K8Tea0 CYP38A-nwLY _ysVoV3x5Zo 7NReUd2_0u0 St16P31BURU gOJJm_cSRds R6-LDKl3FOs zT639dQIhck yDo7fA8sAlM mx15l4L4Zlk c--eNhRG5B4 _gOQq1ygJgY sh7lb9j3k5s 73BHmDv4qYc Rf7NrtrHs1U AFXFoDiTtmA jWt7wiLImmU MeQCLsUrCXo iFpB2_WOk0Q 8gGPt8Eg5lw VKE_B4jMF5Q UneHDzMhbbw aKUcMTQgl5E -QWL-FwX4t4 FGwRe_5L1WM 1ve57l3c19g X6frLQWOSlQ Rq4ucbgrV6U LvtFcK8BaY8 XVNNkjY2YDQ pdYYAu24yVQ 8XTt2uGxh9E HieAi6H3Gxs v8KA0GieSoE P2p410SndXM F7bAUwj2HEs SLgV3ynglzg T8X4r5X9c-Y hYNYTcpIDSs O66m3X5mYpU ji9C_R6HLvg wUPc7frUlD8 k7WkN_gPNaM -n3qpOM31Pc AXgHBzoymaQ nuVzF_r0kHQ iLgMFwStTHc lVmwqKY9BX0 8LbCb592C0g 2oWgJ75kqxg V53g8B7Ljqg LYbU_99u22o gd2-0TMNqZw F4-pp1JORFc xU61FGJ5aHA 0Q4cKXYFIxU vKsWNzKjVEk eQBlcP9ENk8 3SIsMAk_Yhw MxlTo0BbQlE 4GraEwTsqFs cb4dxubPYEs AbRlLFpC34s SU6tW2cZQeI PBAzBWYoR9U guK3fiVFU98 UOYi4NzxlhE LtFyP0qy9XU 7LBM8BX4UfU e6WyN4z0VGc xW1CrQu_H6E m8Mc-38C88g ag14Ao_xO4c v4P4cS5jKmQ DDwsfoudwuc QNWXsYZWiiA j_UtDuZaeZo BXmMRlQtnP8 zdr-f3MZgqo i2gVXd7FzhQ vpir9eGi8Mk bOEcxxyOC-s 3P4LUt0qcX8 YFWDhaI6BqY iD3pUnlGJxU _nrXdj11-MA TgaoKPuLtpg gKmsNU2CWo0 cJEE1-5uQXI jE5qCSOAsXU wRNOxvIxMpk cMWSTAEs-TA bK3dyRu67A8 LJAUOJDM88o R2zNRrOXbPY nlOF6YhAoJQ GM5WI4MTXzc AdaRb_fg8dg ltY3ZLA6dA8 KXIJv1NoXmo s1hs62Is67s X5SaZ8EmSpw svBPXPXgpqc noLAdkr7WzY rxJiE5EKnD0 x0D4unitqpE 3bqc-TIPv4c dtVoa1vg8qk tvON7JZAqzY NcmpDcaWa3c vEfhLwt-8wg dNwHQsv3tgE zhGOkVH91z8 0HSDU71_U-Q BaSoze4fhGA njPq0Ld041k 6HwzVqcNaSU EwC2ZHxoDu4 5XU9Sz69aKA lZ885HzflVc oxxBXpnn2Jw 3GcQp2JJvv0 lLX3wpgs32Y vgGb9tSOKbs HcD7driLtCQ HPeiybjTy3E 9ogtJYnjD1I W26hbGkeEWo 0FNk4sNdPtQ vE3T2n8wX4k aJSh1zkPEvc gozRrRCtj6E oUTQFpVOWGE ================================================ FILE: data/metadata/youtube-dl-dump/2015.csv ================================================ J4ciEVJMzIE w3sv1-F1JeI FHL1AJ0wbck 4diIC2MRjiA ARTwLLhQZHw DTZ1bgOIaAY oTx_o5B0J1Q k-m4QOtv-rQ vRXk74BCp-Q wlwh5x9eHBM jrhB_dBxc-8 Ajc5z4sg-O4 GXnlDTh9sCU UAfx1pipLQg Ah5f0zWgfvQ mL-M04A1D0g quaACkqyF3M vUTQexv1mzM pbWOEIzQ_r4 TPlxZPhOsQM Fr-ilDHT3gM cFjGykszgK0 EBPZaYv0_AM ZCphcTQguUY G4WgfNcZgo4 5vecZ4JxUZU QOb4mg7oXO0 9l_USfDRi2E aq45c8eGVoA ElFzH0wPql4 JA9ZcCBGQ-M R4vRfIL-Cv4 MUgLPMuwDfU FtykdGuzX-4 AUBAs5rWsaY 0OdOZTw1sAo zqWR21AIFJA UixHUUJXcSw TMVem9xHaHY S8XR0_wlYUA xk3clsiBnRE N1GwJt7fEGI 2hZFC6Q8zk0 Jmlx4p_9MfA uCMat1QDt6k ud421fnpmYs -G_I8dQHN5s QHuTlVI2zgQ gEhB7HuQk7M IBjOZQCPPXQ J0SN6An2yCg NHiG4hmxkjQ grEV7MeCTsg GI8Vrbnwre4 guWGxRXZbis UmpctrXzd1E SCiMcDcoi3E swo423cXQuE 9k2nstrtUs0 51euUliFZ-w HprI62nr3GI 2_pqFqYME68 DcfEOMgI_5o FwCOP-yKD5w Jqa0bO9PSqI 6qqJOQltyTY Yfof0ch3R7k KXldzNF7Y4Q s9prJba2vkw ILqwaOR70mU sf9038zMVgo PP9l4LP0WPI ba5F8G778C0 lyQ1m8xbJW0 qWsC4YHbOlw 7kihC0VFaQE g2iWVWVSb6Q vOTtCjGqXYo zRFatzj_5do KfUxknvLpwY wlFo4ydbP7c cKpV6Wb81Ak jki2_TXdG_Q m5-bSlttk18 eO1Jm4N4rlA Ixi9imJZ40M sMWnN_9GiX0 4nEpmBhIy1w MpiqRi2JW4M dUi0j-vedRE cFvxjIsjwoc lHNgUHi-WPM VkwwtlAGSwk sCG88QHentc Sqb85Gfj0Fw jVGX-_Iodwc zLKCXUGISSQ ZEwg4041Q9M QjLYqCsggvg b60vt92AzKQ 82dHCGddOSU tr97dNKSBao rqc2lyHj63A N_xWF7HBpJk vSLOINP7w0s 613uBNehFWQ 1y1cthozBuc PJ8v0jwQGXc fRs243dwWkw yP5TAs29e0U bR4b3meiMlw FJv4vY954UU oMWqB05lpRU xSVasSOEG28 8wUtvaL4G9s ARoB1nWPsxo bBLKvPSgQ2A -fL94BTrFhs 4rGia6hIWmk DomJHvbM7qE j-dYZPMpoqI bq_WJS_HlPc WJXF9gcUcNU W_Piq1uGGfs VdYPqVZIB9M 25yR3OUlVbI jKyhNbLEKxY qoxMZtAmAiI 23v-gPJiaZs DkMA0rGCU3s 8qyhhOM76Rg iOaD5cZNw0E dwD4JZsAuew -XCvw6NPfVM 6KqG8CYcMKk qDFzVZklg1Q Kd-81VRVQXw MgFF-JBCHUg MoOwbXap6LM 8eC08uGwWiw vP8C80lIRt0 7FkWC2S0MfY InIEECDCSYU E_RNZFm1mls uCZStp0Z_xg c0JxgKT4jZc NGhqTwxz4eQ 2KvZqLVSL9c xuLi1MdUKQw jDMfIPRm7jY 7aW8QnLYxY4 SeKVwumCmBE 6ZGvkZAP4lY -QJsljIDKkk dGmuICb8a7Y UHPq25mUJwk VICyZk-XSLA 75UHGiJjNuw G2mYFXmFQPw 0niEZsahtEo VkUKAtzE0r0 UqLq7sMS2sU AApQkNSViGg G7Mvs5Ic8us PU4PQ3OJn58 YPZqfRINveI FIyHh9pO464 ikqDLmNc678 HhFqWgJrtb0 8mmqyI9CVWI SAWm5lLfGZ0 kQI3S3inEXg LSlXOh60wk0 JwgvbLF28fE FaLsWjMiIrI WLqx522tlYU TdT_PiRLsaI Ao50y1xdfW8 _gEt3iNmLyw iE9CEAzLPKg C2ILSuQOmEg X-HeG5tFKUo zFaEUnrsjL4 676TpKq_6Ok z1F9D6LVTkA WUujUq9VHVs l1jCg_FmQmQ Do7U7AkA5jA x1-axqBZdNk hlzm7-gvTRg 9OhIdDNtSv0 0jSVwZ8w3C4 yooamJf-T_8 pZfva5xDNLU 1iWqn89nvJs -UZY16_K3Pw hlKMLkrSrDo Z4tC4qfv92Q dy9fKXNAhA0 Ro_k0jgMvKU VfOrY7CidTA f2SskRLd4F4 I3hVaKO5olI gw_zwDaiuJs dG6C9JuB4YA ud1tMFmSp2I Z6_Ti4ntV7g WpO_eNT9StE 2EKDKks9qtA zvA-7VuKQCU P4kQvkvGi9M 4ipKK450XwM TrwIvCFIMZA ozpct8zUA_U rzs0681gdf0 eYMbAHC6RxU j-v6XtJFNQE xvQLAg16ZD0 GQmt9W6Ky7U GSu7BGbyJqc 8rNVaY7Stt4 I6uGId-a758 HZtQl0lF3OE xs3_hNYAVRw gwY85_MC_AY EVmLV7swH2k rLcAQVgMTSY IrDm-HzK2y8 yfy4and2vPg 5HksV7ZFuhM TuTOzEYtgzQ yg6v5Ur4pcM QrmQqEg4isU CkqAe9DL56w ENRq7P9lAtg ZR2txV7X8sE XXk8J83A25A wTk1noW_8Lo Et_Bdct1T0U 6CxSbcM0vw4 SLn4BL4gP_w 3iJMdVAsPpc vOaX_Naqxb8 XVYzO4IEKro 5AZ2yDKNEXM Cl-BpGO92Lo 7rI4qKw_X5g RQV-8HxVB44 JOD_65vh8GI kIrQoHQzxnY Hrztxo5t4Ic 032myLDgIqw pf1K2ACmGKY CE8HyH5ldEY 9RfC79nFT3U SCcBom6117E n7mNY2F938Y -BuN5efFTXA dxMTCKAWIJg -_HF-nKeabs RuPWLi5ifL0 ya84jIkf3b4 5s5GkWkrX5Q ot3mRlgseio kfJINAKOgEY qwMUlFU1Db4 6RVyL8lNtj4 DSmDEMdKauI M6rf7s7NXnc 3E9TWmE3dfI 2NPSwpdx6iQ 79kT7fUtLD0 oDRFKZVZwcA XPcqVHZo22M Qd4hB_s-GzA Is4mo3dbWvs Vx9EOI4RyBs 8cLtNUD4Hcw kJzOYZNQv6M GSQpio_F0Vc AQX2Q-V2Uh8 2bpkd6hwH6U h4u9pO-98ZM aJ67Fz1Jf6E HraqSpgcdgM ib-1a-0LHh0 qNoGZiSKCaY fZNPbMu2Ge0 W_hzD9mTSpc x2lBq3c3AIY jpIVQIuoX1g rYVsdfE_Wh8 NdcXHqLPufg ZS5K9DzFIco YAcZjKbm2tk 4zT1vWidAJ0 ZD5vHtlpl3Q RTnR82EswKE bDm5fnJ1Hg0 c2HEnbmtknM FhnVceTIOTw _jru7QsVP2Q HxdxfEN2v9s D9SLyzcYXw8 fYb0fQOH11g ryRzxiWudaA 1Yh8ZXaDY00 VEc6d81jgQ0 rGDHR_rveJc 02uIi7094E8 I2qyEk67i4Y v_wQqiFXgkY 6nTk0X-QW_0 cHRpQP_dp8Y rbYJ1-y-sk8 H9PhEc4cgVw i7Bx0--TioI Fm4WFtwxJ9g 0ROOrIJuhJw 6F-zsgYCXwQ FX4J_vERu9I eXGYvqetC18 WJs5SraEnMM K8IgSndDsjs hQD_fanPkns Z5nYySfvSi0 2tVvgJbqH7U TKkrgiTpj1c _kyTyYh6LZ0 WhWW2IXg_-E bb9m4vvEkHc J0uhG-I0GZ4 B3ECx3J3LTQ F2Bw4OLZHq8 hnCQCX3AHzY _NVC5g_Yngg 35D2hJCrDVw A0R1F_FhwRg BzEjGy7EPIc lX4H0NmDMck rSCm0viS2mM pCQ0k_WvwvQ dLXri8sYr6Q 5EFY3vpKDII lssQ4w2V4XM U7xQuGf5QHA MCFqMGgv1YY C_BolURdHXo 2wdQcUUgce0 sXHsY1eoIzA oPS8-oRvVh4 0FkeGnobtfo WqFEn5wQhBI d0x7-oo9NAk LBTE3aH5gpw 5ywvhn6Y4aE zGzurjIEhNA OjxcWhQYMKw Q3znhTOUqi8 5KnFcsSIzbg 2bWostOI7uo bjqsWtO5Xjg pQeZSHyCe4Q Ff_G9EYI1xY JVg5X7dUlLM UCYjKqnTM_U 2uRRExAY-8g 0Wt72bHrHFo 1XqI8Lyp21A Aap_UtTuzYs KLp6N46er6Y EK9aDAUBBhE 28MSXeKCm00 _r-SkfDZphk pU3klLr1CPA q6XF66xysgQ 62tZR_Z_y08 8kaJJGWYXxs xG4b0-DSLrI vCo2uqlAi4s i2MdefwrjCQ FVqRqUIDG-A UyzhnEqtWAc JGyNRQzR_Vg qraA12BrzVo X33UjqGVc18 m1AuOoDw25g wLPEeDsZwGs JghXTjexZpE 8RlDsORXN7c nuVfizTRHZs wUT5CpgYXMM CCwUD5fwJwc rF2GB1UYxtw qH3jaW3YJ9o F5gztKbIoaY iKqEJ2xeATo dp5dgNKh77M 0ay2sO6tWbE -Cc7j0yr2BY VVLlZy4m23c GaGIb91Mi2w f5wOz-3L1jQ IBqY6eBSQZw PtlmPi0DXws uIQL79UQG40 yJlbyxOHrdI P3CF3QER_h4 oNGZFJUThHY DvoPZUYUdEM GhTOt1_Miag Y6SIARg-j5c fNxA27iQkGw lViscSQzK8Q LzKWVeX9qQU -4kio7152q4 4Vlw-NzSvoc XlvqgnIkzZU jbdRO4BSXSU VshyrsRdoF0 GvyKxUL0x0M r449aYwQvE8 5p8meeqGJbg fZPyHZo5oDE AAbtiIrTqCE SpSnm6rxTqU -SXbmeFCnTM USD2Y7wRNgk hON2sYpnJoQ zyTVafoAylI cBiLSCP95Nk jaA7_aOD2ig xsL7T32XG3M 1XEn8W3UA3w MDJ7Du14G-4 fAfd4y1IY-U EANmB0vOPqo C6hIucqz4_A i0yWgvRAqTU _vHFGZXqIis q8sWDRO5C4Q lVdSRz3Jsjo y88S2uDB1ks P056r-oeODU 7TG6R36bkgs eTeBFTlR0VI 9MdivySyCng COqQwiq4uA8 zkTbNH79i9A SR6W8_yd3yM n6rv6RO9ZFY JPDhxTbWjuc KzCVggIa4uE aQsyA4n7GZI z39yOZpcji0 4pUeurfZ5n8 UfmbUwrXatE uO47LgAVYCc MochwVdcaEk C09knP1SAyA DdktDH98D_g roaWSb9xc8I p0udEu1z-jg vAJAM1jm2xI wGmDAjRRNXs YsQEo4ja5Z8 Of7LHW5cCBQ JA4fL1qiQTU lCCeLue8owM beAc5oqxBHw seFIcguvgXk -qVNWgbzbS8 UBPOSCR4el4 kG8GuXOjIPA m4a6jkZiOkM H07vHL7APyU oSo9Wu-jAyY ZVQNsHBi9oA D2HaKTqp4fQ SlL11KaxU7w 6B-QUGSCV6c LKp3HoZGP2E IVhxiyqp4do WCKRXHDI9Ro f__qWwak6Zg hpaXyCsOZUg b1KjK4fd3ZU HZEaFYQecn8 8KFPOKVSi7M RFTI9DnYSpY ter7pAZF_nY _CO3CMXf19A dCCo8xDMsJE 84k1F9o1g7k GHZnuSLPSG4 9F_FhwkKdSw Zl9yu2xvv78 I_4ZduVVJrc JzPOYDni_FQ VDWYVgMxBss ZhBCiQ49Iz8 BG59rpilakA QBip3RFko4I YpHAGZoV1ds -gZPZLSUZZ0 m5p1wM1ZHQ0 yV8-IGY64pE 9NG5mJgw6Yg UQRxN8qagG0 ifFEIzFztAo xAPOeXEUwnk 38nBkookHsI J11TVWwQNvI IsGdB6a1Evc 0quEnseH0zo BI_Vx6y7xG8 3opX0w7T_qo Q1WdlXsvk3U 7DmN0--tZcE HJV1Cqh8M5M XhT1nAzegiE K7p93XsmJ0c m1Q_m9pvy2A bQyfZXYp7Mg yk-b5jvZjLM gappVpWfuCA RB_-9bINJCM 5fAASR7YMDE Ws4ETwvXFw0 7PqjhsPYyy4 NweXJhbk9P0 X8J0iWSsYV0 5fg1GTRuYHg yuBFthJcBiA PPwud5IUnYs gSN6EodbL1c 4z9TimZytDI T-KYqRfLg4U YBgsfgkgtqk AH25lc44Og0 SM-Y8FPMqzg RCzC3ZeMxws tSZtoveaa0A dezECMjxlCI do6yVKI5M-o yC4LZXraLBM BbryMMaAUKo 2j6I87SIfbM f4-sMr967Jw PzuBG7VmIlk pHQsot2suvI zBeW_hheeGo _qVs22tSUnA _v1FiZlF3bU 4gB-5OngLWQ jF5_WqbTmW8 MK1fYMxkkTA M4oJLImqZds dLl5PQg_Hag 2xLWJOG7dO4 xQFsE2WoXL0 KTQnnwDN3eU TBRqPFkAQCM vmyGlOoCbp0 upQ-MXF_ZgI sojzO-UWObY 70kZeFs721U IP7jsmECPbs 3GlfIStWMSY FvEi2U7IKRE 3vDe4jJvC_o cGN5hLGphX4 yFlxYvgV3VQ sHqb1FwBP2Y DDQzRai6Uao CDeNNNPzUlg n1gQ-1zEljg nR532k8M35g 3JySRf9aTPA w0ijJ45l-kM l6qtq8aC2Cg TD8G-aSlweI TDhk_Xhxc3c ITdkeKIFqL8 Qo1WkD59F_w JvZ5nh7sIzU J7M8LuEC99k LAmOoIdTjsw McIJxpY89Kk S5jj3vqPau8 0u0SEECyGlM Mh2Tf40llqw Fyo66z0NtHY iedK7wzunWo rsT1bLR2sfM zF-3wgcDRk4 nLXoZ69ce-I xx4t4fBIY88 S4p8_i1lcCc FFGAP7FxZKQ cUX2Mj4SN7o lTiCL83_dR4 v5N1Aukm4Bo sXnYoBCJGwI 2MdAw_f5pAU tdXshjACQx8 87MO-gtYFT8 zTlfN8HuEJA Gt4t3ZZsAnQ gGxrQOUaM_E PZheNUuK8jg oz6wjc6xLFU T_HWlDa9t6o mKDqrUqOe8Y _kz6s5Yi5Ns o2oR9qYeySU WeBy3_xqYtM JDbwEQG2cqI wS9RtY8dVpo f-DgdMpSo7c ahP1JZwHSh8 nAgSecmB9lM JRloSmzWBOg M2hhUTxFLWA aWyYZ3-8oAM gwTTsc0zMco Fm7B7WzAA1M 1u0rQ7J3oS4 97hoM2qv05s 75PCq-Wcdhw SswN494Jxr8 2-7Jdip2Pfw FTV4FUlcIwQ JaGoM25tGVA 2fsMce1OvXY yAhuaFMTSKM EQW38-aU5gI 0JnpUYMPEiw 21Dc8a8X8qg g9U0df6KJiA fCuS78YHrOY oMpgPQbRt8U LxMYNhlh0Tk IaOlL5WMFI8 1FXO-XToURQ 0OaFQQaQGRM 4xVAvx5hTic 4Iza5db5Zvk 1MWZ3mZ-tUM ajBHZKoKYbU LkWeBzzBUXY F2Zm-637bQQ yDtGS3G3xtY RfltPijijjA fgJ2CaTfaxU esJNnh-d2E0 SEWMcT6bIi8 JQO8MTlO69U qjYP7J3oP9Q PE-3JxqiV7M JKD_ZN2VC3g JjgKkluHXJM t7DgbPjFOfY FTHoIehOkK0 0XCqc9fIGJ0 n5ArS3Got4U 8EcrxgHLhIg pUO9-h182d4 CD0k2oB61h0 R01bex9Ejvg M49PmHt8PEc 8iI9iC2OgFY RH2IK1jcLuY j-V12tL78Mc _QUAEFiNatE orhrsjDwamY S_PMSA9fgiI u-2jqTXKQyU 5lkqZP5rBvg ME2S71b553U Asm-9UXAOog _BeHUjskbZo zlfMo6Qe2o8 zal_hU83ruo QjLwuMqSb7s NMKgdzm1pWs OcoatqJqmX0 De2BarsD4jU B5vXrSsvqqs blWBATSOCtA -YV8tJhGojY sBSibz9xdic OI2JPJj1d6s 0-HM2VCdrC0 ts4gt7f_rek eiLeBJUf1iE r4K7eNzseCI oDD1tW59Mjg NDV-ryLLkiU VVxYOQS6ggk sLAan2iZs_Y -TLCaDbBv_s dvloIUSHogs Tf7suGi96l0 g-uc5_QEmuM y_fgX9MUfVM qAw0VczZGC8 BeAtRdD4roE bjLdEjOL1s8 4akqi6YYIJw bCKgFFmf_iI KJZLcsAmLbM 56djkHojg2g yClVlc_niac Oic7kJRg_F0 8JoOpx6VwHk xcSwBHs1uD4 gAmo3FcaovM Z4DDrBjEBHE tLiM-49DJ7k YgXPN03oxkc xOYb0ZdJCQs 8R1OS5jPh2s YsMdkGG2b0k x8HjCP3LqHo 428tr8ixT3Q ej6dxNrh3Dc fdrR3NbPARs pLm07s8fnzM kxjwb5cXTI0 DGABqdbtQnA AePRD1Ud3Lw pcj4boVT4fc fIh6HDeXKGY aqsJPtd8Cis ofmssjTsGnE pCiwEO_6xS0 LxWJ4QT74hA 8EdOdfCM1hM O10NcrfHaT0 FDektpHARj4 7o40za1wAlI fg-43OlaJtE 10fn13Q4wAA RK-RPsc0czc xuaHRN7UhRo xT7F0eKfctg yrxRCTUt6OY aQHOzbF0qH0 IayveLLh-HQ dj5zbxA4bEI ZHRWbydTGrI RRcYHJ1uTro Jt0kFbvL7yg j3d3mrWBTpM gQwpd1247J8 7T9nzAu7orw hk6Vxhx28bo LVm_DbyklO0 Q16cb-O1kTA d87eHGVaoc8 x7RM1MOhSic Vz56mS8Zz6A hnsP1etZkr4 gmedATt5viM 4Z5rOXxjRWI 1adrUPgj7QQ sYk8M_ZTNlY Gyxw8a2hTMg 4PcxtcrI9_U fdOrjwuILCE jX09Cesfxo8 Sj_A7OZz8TI mbFx0CbaIlY fohry-3J4dQ Du82ML6YGRE jTNoDcmRc0g RCEgNkU7flA 7Za7WMgQqKY gi3gqlWetJU 6a0at61sWkE GhIDZhPP7d4 YyWG5DAJc6s TwgvEloIXVc zpdFj0w6Eg8 evCesc80vho BevEBQsAoPk l3n95qTa5ko 0p9yD4E2hQw nPXMny-9Ntk NW5u4cCsNUY TyB1CcaiPbQ jrPvugl_NVA aW4x-PAnrO8 ro74_tScvSA wW0L86VZScs Ky5Y99wb_00 bAI6N5Uo7SQ YMwZaMNf3L4 _ihVsEYQP8E VmVWuswEBSk lJ83ILGA8yI uk04S-0HOXY NVovWtkGbCc PsWbydM-u8w XrEpuPzxk9k delffcg5VZU p0BpMFTYFpU KWK3PRNjZdI Z3m-Ht3_tFc WlS2xnW-LY8 4qLgo75Lfhc dKJa-KQNjQU 1cNBL3OOMRY JNPW2wZ4D2s U0s0czlJ4xA 1rlSjdnAKY4 0zgTcrZ5030 xPHXfJZpSms uUuTz9Hjc34 _snQsFAwjxQ 4_hEef258iI 7UhFzTWxzBo zrc1us4sDcE u0fi902X3qo 5ttoICpH0Vc kOBAOfh46Nk wIqMqkMIjEE 5FQ7xVuqOJM qU0Y6zo68t4 Ko0E8tEu7HU VqTMLtDj83c lGFrkYzbfoU MfHiFaZIc7Q LJhKwaZEEy4 X236AeHt5RY AbCowKGckKM dLxtD4f_DA4 lUQJN1xzKpc Op_fgLBxUQE KrHaRP-Y588 tqtqEZqGg5A wXWoyVboDpI up5GI3Sp7Lo 19fWdIvK9mU StnmzjqMKRo QL__AjJr688 8QMRQeYNd7M U-RYUQZFIhI XeU6SJorcvw ITMren3I3WM VagrTsi5vsw XIcTr-m-R9U MJ_32rbrHdk YVjyXY_mcl4 sidn04cetvU x2vhOIjmS2s 38yH4yeJM2I gBxaGB65TB8 9s84zV2VCgI DXA3GJb6V-M vG_FLK4K_T8 2R1lEWNNsV0 oARVdCyRT98 G3BQd2K3maI K4j25DUQLgE tQJTJdTM0Wk mu-YLZpB6is 4RhqR2ZGkc0 8dXF7y1QUxU _LKe8V-h7h8 268ZUL4dnn8 szNrOdjjhkw G_OMV0N_Ls4 nM0u8GRt_hU E6KKYD3eGlE hFH6FoRzSpM 5WGQCJmdEoM 9D9RXt18Qq4 aLDrW2AXClk PPKdHP8zWuo HEMqddRGVBY YSkZieDG5U4 QCS1Gnwbtp0 yqdfje9b9WI IlLkXPTm6ig E--mNnOvCm0 VZrBzpfh6hM sGCjNn2uJr4 rfeDWXk1jso J4LB77duP_0 t4WP3bODmfo G59JnM4JKNQ ataOtn-F5s4 CqgTNaplJdg dWQ3B8qTpes wb1HDnYPPoo -w0WPkB3XJ4 ZCZDWZFtyWY JKMpRikJeLI aNOmTuwnGYg r_9PgiNuwDc 3MKwR7JipEc TxuEWb4b_gU Q49LEs_bhaU quEBzmchcwc 6kKCbDw7lR4 oKYBGq7pt3M dyqDd8esYdc _Ib_lBGuoUQ Pvuv2sn5fDQ S5Y8tFQ01OY UUZsR3rFjEU AwLRD7iEEKI hr0hb0gc2eQ IthAv1JkF-0 tI4RvWvgulc hM6ItEXb_Us QNpPmiU7BBs ouXz_ETh2eI 5xIU6_w6ohg CQ67ZyZtKjU dWJuJlmcabY Ypa0vpmCzdc lixII1thTO4 bHwiXFc9MOw Dw5W0T5fV70 kyGcsRDBJLM mDLS12_a-fk nzz_3bQHyiY DruCG3LJiiU 0_m8AmAm-XE eiQD0Wk6Ekg 3BSdoHadj2w gzRy-pvwdL0 9CjMbFa2Oj8 Re5WOfcJg5A 4uaPFQxS6pU 6xaUD1jKFWg 3lkG_MD7T9U yvC60Y-AqLc JiI91igl180 88YBTmbAaoY PehCORojjtw Jipg0KQ4id0 OdU3vEh3qfs YrtS2_TfbeY dObTXYa-_n4 sv9XNFpRdhg BRccUGaFz2s XpEtHWMpiFc bJNpX5bfXcw URquvu9F3jo hEY2L9sXjwU Y4g859J_920 47IVX23yRyQ SippOkFBMAE WqYtAApeiDA c0P_u-zs5-I X8slBBJG-x0 pytH_ezVouk b58fAt0MdgI NZJrGuC92U8 xL-VX3WbA9U mJYE0HuKNfI pO09fucTEuk _KinUMIS3Yc F7SNEdjftno uiik3zS4y4I cgg9byUy-V4 jsLUidiYm0w xEvb7B4O698 80EaBRgGylo TU7CDejp6Lw mGLXbK2XWMY wgzxSr6l9Y4 -kFJKQvCrkY bNdddrIe6dQ Jgv93j5xcpQ wsYNpHaKJIc qTa5iKsbAno 7tK-k8UURYk sYVz2G-r01U okGQj644_Ds eRRG_PNOQmA JRU1SrdXEZc UyzInzm8gW8 k2edI8Gu6k8 F7_aagPOpUU OeSwSYmipqo a1REfTIc5po q75FfwmyF4I 3nGQLQF1b6I Dh0210A-VZo K6qGwmXZtsE Da7GSy-6mJY 2-FvDteymnM AqNEZ_QgvI4 7m8_QLnRBFo tGxxl7LOe_4 UVmSx9Vv5M8 7hsAbjmNpKU 6wC2DqFJ7UE F8dW1ddAC_4 M2sjRRcONOc lgRkMyW_J5U jagJeaLXRRQ --uyzf7X_0c OvE_mDtTj20 vJCHzRIOOL0 GyaIF1iTs-Y gh2apPe9pSI QhCISxbO7rg FixQE61iSDg lCUBQnsS9go YWRzPLzHJl0 2UYrsFeBZoI JJeNvH2hmPM TRHN5vxnZrI LXtVS8SFmJw 45X0_m1KYQM HpmdYRs4lEs uYTl9G6HoW0 zHoZ2Ti6xco OANpF6uHmBQ H0BUIYk2irQ ZObnyBWAZSI Hur4Esxuurk oHOnldgbjy8 dtOaXCoryQo 5JU326dvQ2g crB4KD3p8HU izxkFm060yU jsz79bztNJI 2wXBmSecjDo rdzVVp7e_0Y ECfvSmDe_-0 r1gBq45CkgI cHT2zdQT3Ps 7VbYokM9dY4 akMZQpIbTm4 -QNxYSDdpig 0jTSJ6NK6-4 LxXjsQbCZR8 63IwUcBK_Rs 941z56i7QJE 4bAPlP2HX7o Dz6Pe77tpPg uy_2GCNyzgk E25WrYP_1tU zzgvxdPlUwA sBJ2jguXBes 1nKBe0dzhvg c8wj-v1Jdyc qG8YoqrNMEA HTjeSsgZVW4 TKBQuK1988w 6p1EuLz9Fes gRLpvojaVBM te-hhtqatQk B6-nYQbUteA 4kC1v_wKF7M jKC6UsetwN4 iyHNryKojDY mgSDir-wcGk mR4FXksKdKg iv1eE7qxDXA gP_GbzDWoY0 s8WzJJoKq_4 tg2X2RZsGy4 BGyfOMCRBn0 In_UKcRXzHs qj0L0g36IXU KPAnWhVV5dI BDLvzvFFRu8 KWAQRU2PeeM LVflxqHuw2I RiaUv2MwZ3E o2J59hT1Vto xqsDUwDwdUM yKguB1M0JFU a-h2glY0jyg hVPSsxFKDLM RFjVbXNMsNk 7SU4vD1T4oI zFxq7CCpzss bz8JoC9BpV0 fRQsuCJ-g4I mUxLZWWRKUI bpc3TKhS6MU F8QVrLcmRdA I5XMnxp2S9Q 0PCcz5_8IEI qS2Np6zxXm0 T_SHaqh4NdQ ITicydPuKRI NH_wHu33CMw li2zByHeanQ cFVtyYzs48I XQdE3ydNvCU 6T_cb2U5lro OjIh7FHeH8c P_8O-iDvlmA yeBM3nwwmlE 0CrSOPGvblI LiN26NHb4ao VN54kkl_nTI vO6EKe8gVXk 9EilqfAIudI fjqjWC3Ycr4 w2eNQ75wdq8 hSdrwqLUpD0 2BNVMvzHvT4 Yd1Bx8u7Om4 KQt2qAPhUAI YP2dblWITA0 kgNMy-k2VnA 6sMjSp6yOBY RsmcYTQsgIM Lh7bN_qJz8U BHIg0d4KQMc 188YJIcBUkQ jWyeugspkUA blbqbdPFfns VsZ4L4HwUFs YTcFsdIJ_Xo BKTyV8Msk8o MeRtEy1FVAU 4uDUNAPdYb4 QtrJ6ojRtik S7rZsWVUAFI c_TXof1C-OI ze-aAIzwD_E JAHLYTVcm5M dDQ0rUdj0KM IFc2QKCnGEg w5PGP9-_x5E EJ5ywAAmiU4 L1UxZJ9owXY iz3l5GLSWJk rkaXuC5hrCE Ouht1xip9NQ bhGfpwfae-k ZlawibQ_QKI vjFG-4Ge668 NyOTaHRBTXc 9t1IK_9apWs zsqpY4w2e1Q M_bzbtdfaik shj7YP98Yxs 51iAljD9Q7Q K0xpWKgNCk0 a2872XpfqKY sqhPvOlgzjo zbJwjn4p0cQ r-ddXOrPiZ0 6zFeIaPbJwM sAwwDhNJJO0 9aqopEQr7wI zgYGbR8f1PA ECiut2qgJck 3JkBKGttM_U dZwnXa6XHSI 5ogVT5mpg6c q437KEcmwmM ryvvNrcMh-c mphHRcrJfNE o2xprwwIMXM fluJSCbNpDM nhP_9bFQvjg NEJtJu--hto _KCXk-BhTd8 fWP17t95S2k QMJfw8aF90Y BP6N_JrLUIM TNkvLDF7JOY mDUSjBiHYeY S7OWoc-j8qQ ddXUQu9RC4U _qu4ZBCU6Fc tpfOhYRYv80 bI9CAfqY3hk JY6N-tEppkg zE2-th0lNbg 9h9W4c2YLCg FVg9En9jYSo hwpHOq3Xbks SgqfufV0AL0 tUuzV9kwSBE 6_5QkJsNCho Pojd3KNQq68 ZvvlFocf6LU MYv8K_joa6A JD-K9Exe8jw wYMJal35N0o 2TVyJ-51jzc E3RQVcNUcTA h_bUcNjmuSk Dh1V8GyyNYE DTPq0mNS0-0 ghDDdQxgXRw G2Mbj06Ns2Y uL2gxb-TcLM ADRGgyhX4YE oqwzuiSy9y0 szLCkEBB6xs G1DG6f_6nZ8 d9PlKlirxT4 64IwbhFYuUM pu523TrIMpg eCKRI2wEw7I 6pJC0FLA3Sk zvtUrjfnSnA CR5Jp_ag2M8 dC1yHLp9bWA faX23LNpQGg Wy6ANzdhy1s mVybomocIw4 1j8l24hHhgA Em4igIXJRgw spbfax8dOTk IYcgbsw7yc4 Y-zjMdsTYyw mlcBwNHilHE ebj_l5icPPg XqmCa8WjX5Q A3WWrwBRH_w 6qIBzPrHoVk zPN9c-AIezE KpOUP8mC9fk J03lpGKZ0xc ZpkIPtYw01k TrxJeKnKaAk chBVj94zYDM ZGFHY5JjTZQ -4QqksHXUCc sT47KfDlwI8 BXveaReACHs peUyLXrgYZ0 E4e_QytNF4I s6DlYFmuJXw KqQ1UmDPvgA SPiSR_YDfXc gRyEkrwnyaI D6DPbztWi8U P0Tt7VUMLs8 acnUb2KcgdU jZiR9MHumCk 3_zKy7ygsHY g-P53rME1xE I6wRZCV7naE cnQEo4bazIo LVpnmOXvBR0 2PjZAeiU7uM BSRrzrQtmto L0CL__Tvp-o b2f2Kqt_KcE -qdHE9-8spU HQSGHbbDR_Q Ja2fgquYTCg K6iF5sINVns ASsNtti1XZs HSPYgwP9R84 M9phuyRknPw 5NZXmq-E2tM sKNAfihSpnk 1e7FILJsiZA iGhEOyypT2A DfW_3qH9G5M Loo5BhidY-4 pMPJV8sYt7k 34c473tq72E Q6luiTx1pM8 ZS7BASI6gpM nRLP98lG1YA kPHbIyDTPHU R4lxBhDtvXQ RM2N1w6t1KM bbpQmRxCYUU MY5NspwaVgk 0hL-fpCsGR8 WGxTMoDAI7M TqNaJxRC9NM 0YzsWVUO-_o MXcxWsdjYHA 8ltYYXhGCBo B2LLB9CGfLs T3nGqPQJqlQ MnUGqPzLojs Dk5SrjFVQIM uopLUlluf-I oZoXYuatXzI ZZyXtEMFfaw GmjAp2eRDH0 dkErNkX2HKM L2PdSg-w5T8 MKf_SL_owsY Dus8r5l5cys HjNQLXXwYfw zB6pvQt0I8s YcSXHU0zktM hopRenk1oaQ M3u94uEBq9o FccBG82Ocds djUYiJu6K48 5e7c30eNNy4 5SrayNqew08 LRD16Y5xR9Y ZWLQiviq7SM 1ZVwo_elP7Y I-OaeRbZtk8 oIjgZ-i9v_k 4Y9X5wDG4Dw P4BRIozjuKg xCKGA9yDNgQ jZtlV8eroS8 Pwv4avomXYo Id0cqNWZ50Y XA62refAB2w f5umSa_YYX0 bdft59iqlKQ hnfpujruuv4 eLdQluY23UI fa4IKrf2YHI ___OJkS9RK0 ITu2LTUPniQ -3KCgSpt3hU WkjEuV1fTrk MTEXVT8P354 A5xTu6AMxq4 2zTqIJeCd3c ZTCtiADVAWs zPtKevwg7Ko pWYPN21XIEU VTZ0N7VTDtY 6DQTWY9wTO8 a1GeB9y9zzo C3ZMp57PKEA HZzHIl9mBsI u2107BTcDbs le6AAhqa_8U wZaCK0PDUMI kGot2YelCpE 9W5MiCLa9DU a9biNJwX3OA noT3bA3Ibyk SwtSrzKWoK4 hpDjzODXpBQ DvSmeQSDTco zh4yF8r5uJI Y10g9umKQcM pMx5aSV7qFg -N2mhlvygq0 GpQTd7WhT-Q Yc9vYLgQb4E oNmhgpAGlBs 5KderLI5hEc Om_HVqAXZYY -Jzi-2lYWEw yGUwdRBZ4-8 f_sRtGI7Y0g 5tu_42LmfEw CBOzczGQh9w 1orN1oGScbk LPPJdOGshUM eWL0obbYYOE -5be_UPkLRw ucQmXLgGIVA LW8CpOzdT5Q 14Mf_nTyWBc L4_-rVenLVs UsJjfS-i2zM cv7_7dSbaOk LFN4NtioY8Q L3vbfkRB6gQ DZFydcYiOtQ DNuzmKc7mq4 hmF_IO6Aiag dCTd1XHbliU GmvpP26J-40 Vy-simXeFBc Isx0GBj1fxU G95g0vzTAKI b7NJkxnU7xI ai1wUoboyNM apo0KrJVXMk d_FUI6kf1b8 Jj0UuTkXIyA 441D9uXF1ac 5f0cBrCTeis 1QvItdreFLk jPF_mENo1Fw B2CEGhwMjkQ GOqTRPdrXgc NocIDIeLTqA OwYH_j7c9gE GQJMW4W_278 S_yY1PaFEok 31t8eDmC1BU CJIECQdjuLU o0Y7v_EbE70 i2isplJSa8E 4ybEyyoBxts DTMVpuLIp18 IRZrsNC5jpg RDnvXAkMnx8 dNlMe4kU9TA 8RVVJmuoAQ4 crPJvv2Y3hk Q0yQbpoQ0hY GMCKHfREAPA cONYIjOytm0 EsFrRaMQMPA qr7oBpkkxIQ Hpc8yqHTq-I -HPjEz0u-9Q RUpKMSWPjZw D2XKjKc8DKg GZQMDeQs0-k qSGfcCO_h4I cncKzAr-jis 11Kv8mnxdCM 3ERuhks3GNk dME9-07ZvJI sZTpI9Q71rs HgmE4x7yg3c agRBVqecl5Y wdWM3tzzH08 a2Th8JGsJuo DuKvU5jh2os gxeIvClLpKI CF7-rz9nIn4 9pX1hxYW3YY d-RR_vV7qDU gS56O-aHEMs De2qscGlWX4 zW7btaVY-Lw pTvbSVyWP9I 5dL4tZZ-Jq8 tNZKO_68_WI w9KBOhPXhds geOqbM03Hf0 8_JPDEHU1ok KyR7XB0VBPM XBJSfGM5dGY fWcPwWR4C_w A65Jq6NKdeI eMURCJgRJYM m3s7ZwpFCsc XFdEntyO6TY Xh1TwRilcLo Qxju05tBuLM lrGIfJdbUHY qA7XKmC5QbQ JaeHMEw9KAg crZXwRmMq2k -64q4HpZyaY 1sE-YwK6_PI oh4GYHtq2hY XPwdUzG03SQ 3YTIMGmZUr4 yLz4NXK6jkU iDrYp0LApwU Xh2kwqss0dQ AdBu6VAESeI gEqHJ1tomnk CRXyWtv-huc U-mmbStFrAA xi7nytFOO2k v0i-Th0bvPw S6bKFjxPbC4 j9h6JvfCOOs rDbMqG0EObM j-a68r1d9iQ eCdRFMp8Xwo ad65spfln8w s8jfw7FxNqA Y15DS1LKh4g x26YFcaLiNk wdB2lzxIfGg 8-q2CNPDfOU ZgIp4Y5NoZk bPNkEztLgeo bt6-F11LZsQ N2HtiOaOGx8 cqiQmO5frrE 6zquYbMbFNk MuWwCUXGzWE fSu5W0BtXG8 02DzpeBF4es 2j3adcbEwSM YgJvgESR920 PoaOwSPJPHw 7WdGe1bDiuU lwfuUyTMpVY 9Z3eCKZ69eM GfHOoFVUk9Y BBkzG9_vrZg aHV7IUgaCy8 gRadASOF2m0 OqGUDvVYqlM xqcSo_Yb7OQ DMbglmaMzB8 8Y_Vepe_rVA ReFW-5bgoCI ql5i_tg-wZY hcBF8zYH0s0 PruSWq_FycA qxFHPIFGFmk vCuU2y6qR2s yc-qretrU8Q rKfOjJJ1ql4 e7Efjj3_uME Tu1RZaFnkKs dApRtXZRw1Y 9l07Tr1w4Ls dTM13gYxkoQ 5wS_6ok9u2c Z4wZt4J3Q5k 13zrff9V3Tk SwGjsWSn8ak o7_kf3hUg30 oknpBL5cNOc O-LGISfFS4Y G8EUObgUFvc tAbYODvO524 RcsaFXhuAwc ryuW22MWnOU K5eVu2qDISM X_nUklmV_kM m7aDde36EpM BrXDDicE1VE OeA9yeqG91A _JuHsTbZKqA RWIS7olVbGE x-FLqiu9nTs 3Ds0DRCNXN4 HCLQRZmD1EE r4vQbzdjQW8 tmZiGfLVs8w _q36_9BaH4g 7ALP_3eWKZg Z-hoEoga8no xTebNVZEvT4 AgsxHmawNqU TiSGxWluH-g 9lCBRKyCsVg OaZa0tw3Fuw FcfsKx3pADI VeghLYlAYxo vxTyxT5z0hs yOItNhVYC3I y03ITmppyMI I3LIwgA7Qpk F5GWqOrzQ3g A4iXXQr7tqw mw3M1fIiegc uh677-ClXCY -37Mhsak-XI cy2Xj8Pz2Tk 3aSdLAndoJU F12X8zh4aCE aKojFoPzQoQ cBHvRuBtJqI 1v38MMDYEMw 7dw45dGMGNY vcxEgyiu16Q bdYiJgwzumg 01RWw-3AKaE 0O5CcvLk-uE i6klSHVWbrk 8TM2yB381fc amtxyPO7At8 SDW2CT5neyM 7GRQKoapDIU Cty2dqTZSTY KnzWMPHQ7Nk IZcMgDET-fY PC4wbTAa5SI KTHJmfCHWc4 plUXguATsTQ dIw0nCJpAqE gLD9INIOo00 d9ykU9FkH-g M7Ot2vswJLE kLovCSv9-Ks hFoLv3bTLSc PJ7W-dz1OvE Dw_6CTZVb7c YkjS7wTVKB4 _z3Pfq49wYA zmaZsAPGd5U J2gKEelDYpI jOAHxkUMseY _-D3PfhuF5o tXSER8y44do 4xcUJXRCRWI sdNtnZbJBRw INE0g4kvXLc TabNBDP679U wB-4zgJ2LLs 0B0YWUYWHS8 2aiVI2zBW3g rZsQJGk__DQ ipkF3xkP63M Y1vBIQiyh80 0MHIzgCZcxc TQCgzi4j3eM LIIz82ZUCQY 0XesK2hB_Wk 7ppcbkjmuk4 zXmrYueNCC8 OViadirUIp8 _tBJcD9jxvE uSO45koeLhk uXsQ8IIi6YI P04IYEOIr38 k8Do9tamQSM uZ0YGah7MsE G4lzPC22k8A tgg-Fay2zzs ih_V1Ns2UFg _Zfqh2OxGFg Q-bDppEz23c -T0PH7Wv3eo KEoQM4Q-FFY IhJbjhlRPSk YWDTyG3z3VA PuCu1XUGntA wwQev_zC0y0 0P4h2-R9Rak 7enE0xOxDQ8 pIPr7nbUCAw Ki6bBFE0o88 Ah8ALKwclVk NTJXKGOgN-k ZBRK8rVHVW0 pfLTbzU0FXo FstG27JuaRg hfNvGT9X-7Q JgqoFj8yVqg NSOB8nt1Uc8 hKr4-rNmLFo Z6vsW2RH8kA bT6NizTtXug ijrCSknWjeI wNibi-NWW4o fsUKVpvzMHk hLbozjgBIE0 -yG7Wp5-8EI 2kymD_HxRfA _p0nSJeyRcw SXbUNuTQJds SwITnQv183g EQOuGXTYAj8 GeqKdTZugxs -dUYR2apxdA 10r3vyu-zDM WnZWACO4OOc 0Dc0Oj08S7M 0JDyXQvCsOM cAIHoTstrTg gXRw45jyIsE htCHOTJBiSc I-RrVLbC-q4 NxSdB2L-Ffk WCl3EnHnm_c sWKTV0ScR9k fpE3kI1HOWQ -Ot948zIr0s cNW7dRdPPC8 f-vA6GMMKgQ 6hiEMyCIoQ0 WmOiz8rBlmw hAiiaFAJ1mY oLPTh_DaPa8 H8ToqWfFevw m-OaVzrf_vc zXroRe--2QM AFMFZiFr458 fFUR02kaGTQ 5AJvo1pc3sw QDdroG4R9hE aaGlVyyFOl0 Y--MuIgwfQ4 ILLkD7hTxms qjFCVTpsIps x0Ev2qiY08M 80sCD2p0W1Q Y6B9nkrSuMI RxFBi3z1i3k 1Oq6vztcjgg UfeogSVgTsU AClQyr2koxc WvITkVaOpUs Ta2vBD-qOwk H-xjMjmrdl0 W0ThLQIEwxk 2kDPrNRTuQE I0jSE4K2jH8 n3Ubm7iCzuA jzzrFFivBKk c5aNkzn_8Bc CkN1FvtBg2k gUuOvBQoaHA xd1f5GeUWpg gPlxDB94t80 eRI0kASoaqI 20IyieiS-TE E4sgImaJTlA mt5IvL1Uw7g P8zlYvk98gE KTpzQ8vWHTo 0R_0E-YNBrY M7V-9UG5Pn0 9j4v32pp0m4 bnHKWNBCKQk gYMmTK1rFvA WKDoWddM0vg QXUXlzzOl44 twPFRVuWNjo Zypt5adu71Q ZptjN0wzIdA CsZmsu_-53E hHsWQA500NU XcFFaRpPdzs jaIVHdFwqnQ GAsqObV4ExM OFPi1vG6A90 fAenzYV3Cmc kTsFXQ2Y_dI QY3RIezZPks DIt0_zQY00w h-r9Q-YItnk -n4RtjEtFUE HTa0oe5Ntvw 891M2sACu0U dQGlAzHgPw8 TXlHKTPfLVA 5s8dYeDZPAE RGF6Qyvz2no 46kWbFAMHoc EqDd06GW76o TUzp2XUhskY 1fsFQ2gF4oE 0jxVnlRdelU U44_sEUJROI Ur3JKxaUvUc fYKLuSKW4ao ZtrhzVGMWZc H8zCwVOT1U4 SX9tVVvLb2I HKDxpkV14IA IYITxGniww4 RPl5MeXIM8E KI-GzP94V8o DDueSsFUqc4 SXeVjXg9BFU UB8wk3MOgVU c_GNsQnPdi4 tPgRnFg8ZTU xuVz2BPLRBY PhKy0fGOJz0 DXdQoyWxHZs g0yYxO89lQA lPE1uBdcB8Y XvGmOZ5T6_Y bvFHRNGYfuo rv7NsGCDVDs mNVB-qi0qyY F0uwp_eoMW4 eqC9wr776KM HS7OG9zcV-M -nFHhXrXWzY vIwfwyjbP4g ynwah7YV2LY urpXO9VLU0U 2BuU0LMgxl0 jmmawolzwCs pX0LbjUM5Uo UmAVyowgDVE RyR51MqOl5I cAKtpCo8fPE c0wH6YDfCzg v79foBIrar4 PoLLgzdPkss 0A0VANPUG-g i-9K5-x7_so d4Ljj8W1hE8 _6FnlEiyZ08 QBghpl5FZXk LeVEbbheUck YZ11hDE35QQ kiEe33aAucU hWRJQvuhs9w Gt5xBpmHS5Q fiqJGHbv3ys E-bYTMU6Dks Wjc5NqqF-1o XBPrLU4Zspo ww_lUn3jUoA zBe5T01yBUI I0EUKDhQ7vk BwnOv84Uaf4 1_BNy6W4sRg AabFChK-X1w enLijb7P9tg aN0alpNLQak 7s91-5542Zg FBi8SGpLTGI 1wP9Mu1NKXk qdq07pa6sPA xq1QFVrNxfk UgjzHp4TVtk h55rTtbCy7o 8-n-ybKQ_X0 spAkj5YYnIo yD3r8xx3iX8 -mHhr-aaLnI TVjIzlCjKcQ GSwNuK9xedg eeXePDLKsmU xn3J0iYO7sw XrZN8Sy-z6M ZYzQFudZ70k MBIIKCaK5PM tvy0nfXbStY 8Ut9pZyyS44 Ogl0mA_15ys 3OLIgEua4PU BQpfa9RZbTk aU3KvhyJk-w Zh1yLx3srtQ GIa5OfDBSBE Dp5YwZCGpm0 keth0g3CMK4 eUL9XgE3G4k dxNL9-YlUk0 MneFTo1gRq0 IqX6z6djbD4 PunAKEccqyU rClviS6MMvk IA0v8pCN8cQ 2PPNVF1tT6o 1j4ITRCTJL4 PCXI31d3vlE 1PwmcgK9qno -CKzCdneg04 7s3dzArIVok 2ATYV1LOIH4 2KOuM_aZ1-A xNGdLsWV0_k TxouT-qgqwU VhCQj6D3JQY FgrVh865bX8 kFsoiAa-ulY QwrGZWHTbt0 Egb6g_c7Nek 9GQZ2hl5oQY BHQdl3iBhkE eUELANo1Fic Y3nUE1cWM8o _v5zFIqjEZg dyaqk3LFlBM CVdZXuc265w UeC962qKMrI 6O9GrKXP46o dFxzdwS4yE8 FhtwCGpDs-0 TRDdgGdGfbE R1k_1p3mitg 1x4SX6FUEUo Br5umHOm3TM ZzBJxdyktNQ UG215AsHyBg km7CMB9s8ok vj3mnCSJq7E GkTXRgNHzug 4WfCOqrgbSk QvKGF4DN9RE 1VGOy2dylYE LwXuIb6j_e8 PxsbL4Q0Lmk GOjeFlHlPwU 4-8adc39DV0 fmZhcaq6QV8 tURhk-5mDpE oZ51e9IJjjQ ZkPfZTLecL8 SeOMiErBnks gKRyD4CSjto HrRSo3a1ZYU SyQSH3XmQCE mGGwDmCTha8 CFQKJOXdXJw -fQs640Ehfw unrqBYYTZI0 GuX7TUIGvRM glkk39pJQQI QFzkyceRlW8 90KNvOsvEiY T6Lor5hg5nI 0mtMkMvdwBw ljGqb2loshQ Lt-Suz8LGEM ESvZ51pBN14 MH6W76ILmEQ ZxhqyHBujFc xfnmRVym22U eVPIMety0MA kNrid4Vvxkk b7fFwDI39Co G_tk-vS61to EgXDPt3eW3Q 5KeGGAzEkNE VP-S-KGKn1k 3w-MGV1cC78 cZcI8QATy2k 6cseBu1zBC4 QhGtm2E07w0 ls8-S57SGSQ 1ccZkqYIluU DcETqjNSB4U q5VokxxNaHw qkIEwsirwBU fq-wBS0z4NQ kGK73er3UdE BnPQSD0Pg4E DKQXxsio-Gs xSc5s5MKarM yyrC-l87Sdc BctOA1EbnPg 1V-vD4bHKR4 qYwrQOJ2eAE 5CuKjYdDd50 SVHcUk9WH_s 6mdAoQZkrjY FKY8Wsd3fDM gr_2UA-6hIw Hc35xCKXOrs A6Mwoov-lGc g1RVgC8Vw0A hONljrAJrH0 B1dK_oxzaX0 zuKBp_n_o14 4otU-hfAOO0 I8xuqClrB3Y bGWyL-vJAn4 IpW3QbVzNCI k6eXuHmQoiM z9P5NdzCcJo 4F9i0gj9KKc -qSADHn4nqw kk8MNQHBJkY 2oGfncb2usc QqVgAIcPfXo qeytg9JLx-o jsGX_I6mFvc yZQYClpkJ1M hgAlSQ4Ckz0 KaCyEft6EmA Z46LYLKuros eN1XH8BQGqI rWvqkw0_xFA hfKhRRdMrVc -HwMH2_-oKA 18ogMe0oYvg 7Mbfa0caPBQ K7l3r0bdlms NbT7rgb2QSU 8uAUNIySn_4 L1Z7sGSUhaA D8e5MaEaWJw mFktba3DL8g QTI8XMmOjE4 7okueIbuBDE 2_g-cXgaDhE yK78AHB5dSs YmbeYlShWZc zOTlBEbI7eM I1LFslpgsRw x5m9etGofg8 7O-kshviycI GV3Rt3A7TAQ dqG51nM9k9g 8myrr8HPt_I 53uT454cHiU F9ZeSn27MMY AD3JQD0N_iA m2lBtBvgiHQ oeGwe_Y07_k hcIZa8FePZk SnjxkiSs1Dg Gqc-VRIHfuk UemGzlKVwsk vR3yb8mNLYo dFIuG_DTVOw q6HYlg_dJRI e0lfNxwgszA xHd5cUGpJs4 F-IumwPd6b4 Qe5bvae8I2k mDnYsc5SIJk Cj71TWcfot4 yJXZwWi2NdE j3WOgT1A0XI nwvUihSxHGs UFcmai6iKzA 0SUcAyNL198 woboXYiH548 ujJ8talVp90 ERvEZwe88JU FIlBqZ0fksM YkBuZCr1O4U woBSpMcgW4g b44FCgewbdc 184hH4AknlM GNCOjiBvwCo ILfjXR8rMgY nEcnNSQZpoE CR462LcwVBU GHWClE2g3Ew 5wxD59EtYks m-Wccy-Mijg IhdqG2gOvvg hXiTQfzucK8 WVqv9kKOfvA NbhfbT2aU0k X967_4L8pmc YNaTu-8atDw snpoOWqCy3k S7gyibsEUAI exsURQ8bUkg hge2AkSJSIw Nae0ywUHE-c QdDQrp0xXWU WSxjWLWu1WE HwYyKEu2_Mg 1_GUmXl_dcg F5XztYH-X-o 9Hcl6jzgFu4 9lCOuDWaGHM rZRX4JMxQMs 8XREKqJr9mo 1lBbY5sLWno 0R3pEe2OW6M wbfsRXuNwDY QU882zzREY0 iMOquId9FGU JtFkc9jD5KI IOK6qpQ1vg0 qb37bdNexuI 8YGn0l9zfew JXq2nnnhqRw fdSW39wQL_8 9yHJcx89XXk 9Eo8snaeDJs ybst6CAzXCo Z9mMBj-yFuE lfrC_mA6o8o cNqstBuw5ZY Tx-kB1KKLJ0 NOXp0ABEFC4 PVMnl4sBl8A qkfcZ4zdrfA vB-sBJ_DrGo o2K5JzEAzcs LkCHcg-UOfM kQLYkEvyReQ fLjZJgc1nvo Ib1awvls274 TOSUY8Jmjzk qN7dJ2r3zoc P1o2faxmQYQ sGS5r7NK5ZA exl6XfbWP0s BShi3Dn0cRs 2EWQ4s0Z5oI ypEtxZjRJz0 t8DHTGsC528 HKUXzME_3ew PEU2sirKyiA OxKtn3THP58 QtWhkoqRKqw Z0myXa48shI SRJsBidnCV4 i7iLNcJKoE4 BZjSJ6AVd74 RHMKRQocaQ4 flWMIVVknEs VdXfnWThrek f92X44rgum0 JqoqnJ6VNgE mvTjdnz3s_4 0xWOfczSAe4 5Mx0JL_2YKQ uwHPOHdscwM WwrlI3z89Pg gKEaLU9m0Gc 8iQfU3VUrOs LcjR2Z2iI-E DI_2i5BZcwI 0wngG1BlZNI xUMqM8hl6F8 _32En06MgeU Fgl7tImKroU -rmALJkEprY GO4ExuqatyE NiOPGDo5UJ4 k6YFnGzHfKk D1TC1n9lhXU F9E_PTTHvgI kDtabTufxao 09oumdE0UFI RH3xL8H8tu4 ZhdlKgAakHw _oSK6l24buk jVGNdB6iEeA CvVeJJ-TnK4 kHRe9qdfLsw vbKfMbxFfJo wE4I9l7Sc_o jWUnIBHVLYQ KhAs8aaZNok fUnQuA1z_CE Tz4liX-da7E 4bb7URQIpcA VqlqOiOST78 BdYd8q4jbqE qvo_HDqOKww 2OmHGM9zHqU kui9LWtON_k t5zLt-NZrtI 63nDBr_Qavw r-xcvVWqny0 dxfqu-v68IM 7CmJFYoSgII 9kJBc4o_3k8 rNmmNleiY_4 MAXHXJ2WgrQ LveQLUDjnaw pWRCxdh4PTM SB_LjL0lUJ4 PlwmOgcEry8 G-guv9Pd_RA RjtmKIWa4tY 85RZMIAL7vM mn5crhTusSA EroyjPcw3sg diX4myfR6vU yL3JcykFL40 FPBY03u-5Zg BFeySGJ75WM GY0xXOTwWoA ZSL_Z4FFmjo 6z1TOMdI0i4 2QD3ND3XiL4 QErELQ48OOk GJdCx-hCKsI W7uOKhmp00g XeGQr6g1i9I Ie6YmUGcPYg lnN9r-mmKXw wFBlmb2beQI ZXhrgVj--6Q thyfYONK0Hs ChcCflTm4-k xRFVqsmbLWY V0gKBcEoVdg cTVafG4_CaY MQRZuEppgT0 lNEX0fbGePg iEV_pQIf3Og y4Eo2_YMZtE jDP0UCV21Ew iNvdewR9znk 0zuRe3QwPG8 mp8chvACVBk zGw4fC_Dxo4 ovkiChacfc8 zJNfkO5ujy0 4cSZVMEi710 z2QvrmvECo8 o-0PQaLy0lc G-fyxbtiDDo zR7e8cPlhzQ kWjZx3bSDHI SxztUnejrvI sOPwbePhOXs J7zl9A6-xHY aCaTMqs_Qsc 9lYe-ez83H8 BKR1-S8aRaQ WYliK36fyCU vSBQt-6fDr8 UdYapy35qJ8 BT5Z6_xe86k sFJmNKLW-2A V_tlFZCiIHo b-QlCUByMcE Is5sRHNIAwE senNDipdmPo BeYx_CBH700 2iWKnf3C8ZY 36LnnBNcETk z2G1Ht59cpM ncnq2pu4PlE kuVLtcqiPrY GacX6Le_uDM 54jjaJTov6s GPJNP0RvWHs VNBzjYyGcd0 EhsfKBbm1f4 p4IUUBVAUJA SauYDhRS8qQ yth5JoZKnGQ W98LPZXSzHE w13Y3PHCqVQ I8ltv_SROgc OUfJ9E9zfjg G6zOqkX6qTo M_y-ZHpKCqs AbyNlvzydeA XhxddKZYvH4 ytd6Q9IxEzk FAOoSmjHsog Fk_NuqIXhtA nLykrziXGyg p6XV7oYBMG4 1pJdFkkeu0U vVfLenSAj8s 4mC5CUTwjno qLwEQ_18_V8 RpbUeRN_rcQ z2ZqFFFcXmg Cn6TkV9mxmY vkj3RBOD3cA KAEUeqJRxB8 NjjDcdIAK60 0Tv6PQbWvJA hlx-FULnwJs I7nWj8Q_FgI 2XV-EU8JlNI 8H9u7P1d87Y PUXHIqGfkXs g7yAbv_u-FA kpS1Pghejt8 wWrB-Gbjnik fWa-h0maM1w hHC_R7ATGuI wICMOVrSal0 qZRbStnLn3c 3cTyY36ENxY EiTYwecY41c 5rvk07eB9wk bbVqciFRioA 1AmiFfP9u5c wVP1wO_E4yk Uc6tQH8yHF8 ONit4ATZmhw eNnr60_UZtg -edZKfoS2V4 jm73CCe1e4o 8DrsMeY29Kc 8KRzqPxR5zs CJKeL-ziA_A rxGjeoSRNQU kQ65F_pf868 _3GmO3aiBKY lu2-RuTwlto 4kVGdo53gwY 3ESS6HqOuoc UCZNyjhoINE B2g2yYkNegE U1ngzzlFqgQ bchPm7InHcg eM3CovgD8Bo ui3pnIeA_HM thhYv6-lz9A GEDL7dCxWvs z_hfmThW4fs JBNOsPP2yhw RGdgqkgcvCs 4uRK1MPvUps THaIWPlHvLY y1kqd_RgNac uZRTLpXXlds cH_nhvO8stg DvcLVg4rz-c g6q_n-SZg-A Cr4KHgNuxcA Cq_Fag11NRg uNSSfdkcppw PnffktauNZw oK_wtjlQcns npI-xPUygXY UpsxCiyuxGM Pb3QUVXfKto W5_sieIOe88 yBsFjC1fVx8 t9QcyYlB7Ac ET1bH9TqwCE lrViTBpl8_A pRyH7gS__WI On6-ADTS-g8 RUJeDvZRsps 78WFIwR9FrY t31U3QAkClM VbJgsN5PcyM 5poOduTF5pM _DWgvYbpexM qoVuQxxeAl0 XECoJa7AU-c i60a-KYSCno 3QWd5rCd-R8 CHyJRCF3sEc VvH6ZeCJNHA UKaGbPJZicM -9T4jMND-4E BB_1LSxIC4o fIleQPfCec0 hEZKrsmIGyg ats6Rg3WPbM cXjzLXjLBTo arJc5qABgO8 rRWT4FRDq2U SxtPzI76s3E Tzmt5YLzDXQ KBbowtlzD88 4g4fmiFvXmk eI4FXLtPBL0 2-Y-e_9P8ko DMUnxdly1zI tTsOHmaiMq8 flOMk-bWIxQ IaAhl7maKhk SpZfI5x9PyE QcqrOIxjeOA 7q5lFxaC2f4 C2s_9Cx4AG4 eKmMFRdNCEw ggC1uf1QTjw VASm7dDXDcw IFTljGCli5U b8ZW-98Zn-w oh2MX0EftaU JfJVmzthD3Q qUi5Lo9SHTY lkAYkfIqivc dHwJ6zB8B-4 KGoS1jrmgHg K1YndrF8GiU uAHjDGPOQEQ sE0hL32wswo 1UbSL3Bri4E VUNpJBzAyXk 9M_shJ1_q68 Zyl9lO3o9_0 u9gzHfq9RsQ 8IG_Y8BrorA xbhR3UYKLws dadFHEMhfxo u4bLh7SN53U WHFy_iSnR4M NBJhQqGxJBE IicsG0Br1q4 ZHS4xXmL87I 5OZPyf-QseQ PvwjtOewYu8 dcIVsX1-Aio upGmHcSsGmc 88qGMm1AoGQ d90YEOlhtRk DDlHzP-SYFw Rs28rq81pGo -ip57avHn8E kpjWox_c9Ig p9shpHAh8uc nouLQZCXW4A rXs41JvueZY E303pbjYRdo o36m-2TPwck D7Ax5jr6mDM thSPQDFYyiE Xsa_dy0w84Y _yMeXMRn9KU 5PgAKzmWmuk JrYtD7gSWsI PO8fJeJP8AU hEzyoeRuxYk Fz9Y72jbsxU jhz2fVM1rMA jMAy36cl6w8 XzWlhLSitJ8 rU3GNIhA7fk Ol5eFltyhLE 1hiv8o-SRZ0 1m3y_pIJ304 FKwYBGdhUpc --aqjaJyZLk XrnUNfRvAho NsjUpOTLrr0 epBGWHCrfr4 IHVBdcgvTaM JtW17JUoeUs jM8cy3uB5N8 2mbvrOmirQg G-50M2Wex20 ABUroSunjEY vsPVyvwwVns Sv_GcxkmW4Y CbB6CosDNV4 Y9nW4w5tHVM jQPhLeyzkLY wreBOqv-y3Y R6oNHDPMOKQ 6GAilUIUtpw 0IyGdSEdk3g tOpPh1MQ9sM KoDrm4b6SH8 2oMW26rEZUk ZIOGfLuHu3Y rETUKp1A-xo aQq3mHLZ-X0 HTbSaYy2Bhk RFpNZ_n9rcI xMOzBw0mrcc 9iPH8MXkPEE i-2EJ-HDYg8 e2Odq49gEbs N3qEvEGFdKE GPdEP_fFQhk iB89FIStq7Y e9vPvHO8Kp4 okiMnLyCMbA T6wetejGqh0 fw7p7tAdVuE pUWlaORsqw4 L08fJmbHcPo P8ROhP_3-Qk 1l7e9BD_gos ZoZ_4nNNn9M 18QXG4aUP60 GkkdbPYW5QU I2E8wW-YGBA 3ucBVz_IFGk k7Awv1n438I XsiXAckgh6I _GsQYT-btPA xpkA68e5HN4 p5Lzdntomy4 d66vE__YWME FPZ4yah3ROU aeWbTffMq-A nRGCZh5A8T4 B-NhD15ocwA wHNB8IHfHdU NAWL8ejf2nM rGvblGCD7qM fgRFQJCHcPw hD5eqBDPMDg eGoXyXiwOBg pPkWZdluoUg DvS1BdiVC7o Rb5mk6TfzoM RZCFh9yDIOs uOPuo29uzFk ze-GArhI0iM mj-34Q3fCHs 7j9gs7xZ-9M RAFmFyb1siI ZEliNNDLyUg njyllF8b_W4 rviQWy48B_w lA1bgUYjJ0I LxmnOxCk3dM Bnmo8X2kwpk nuNQY06FEOc WiXoeYPz1LY IsgHQHIeiBk Jc_h1ufAXYs y5oIDeR0YjA yPAPYhU_zsQ Ekl021fmWGc QQq6L1Sw4Ck -mjnbKL7fHQ ghpYpbgtLIs F656vZAFGdM 9LiQ5MZKYUY aJ7NA4hNNc0 M3byaFhO18Q 5OZbydb0FdY KdkEzfozXss bDT3nUjN2fs dzw9h7GnERM FGSmKV6K__o LTS4bKTgyik cf_0FH_2934 SfQAxD8v6Mc _ZrJXN_vrBs PXEuRW2cOqE pWhT-4m-4ro B96DjgGIxv4 xEOHMxA4C-E wM-OyBwhuOk UuRb2YYEYfc UhRriAA2Kf0 q2rT8XyVHhA Pz1OFqEVi3c maWca5IRGt8 UuuyzaRWiA0 qFiFKP6Jxoo _E84Vp8Rnfo GRjqtMFumZk HnyvaqsAcVQ tLadr2v8AAA WEJZDUTGV8s rCmp3o84w6A 5USau0NMAxU 6mQAgXT_lVM RdU8F4C9oDw tab4Nxd8GlY YMA_1YDqjYc IsG-tXSQRX4 4dm-ZfP3fbs 3jNEs5M1Sik 7tg6TqW7u-A Up1eNda6Rt0 9cySKHPqIjw QjUkgodriIo 6OEA4J0sobo KAOlo7Ijo5k NNfMLLVwiN0 bYUJuCsymVM tjRYZON0o9w nhm5xXXqzqE fU-ICxohwSc gpCFk7jK810 Ki5TEx2nIHQ 0Ba6y1Y8JjU rMz7JBRbmNo rUczpTPATyU lISBP_fPg1s XeO3jMZphhs 3odMTPuzLwY niul8Hy-3wk d4ftmOI5NnI XCHKYNFH9Lk wUJccK4lV74 JFo6iLDNzX0 D9MS2y2YU_o I73sP93-0xA DyYuDAmUqRk 0PIbNyzb5YM el6nzbxrsD0 IThWCij8W0k 70gIBwjO49M shehrh353Oo ChPLYyubXiE nCzYHB_8hXU ZoJqs349ahs TJmgMmjx2eU yPg84oVPnE0 e72atw7hctA qcdR-kyqqHs LX8mxeGuqi4 6ZSsIZ40GAQ uW7Pev3qG1k THPVDNnsVT4 aU6KHvuvxBw ih0GAi4HWwA vbbHaMTLrbg LMQd7xw1Wf4 5pLpIsdg50c TTUvtnPvN8k IoavfE6TCbw -9DrPi3ki0g _m90Rm0RX-8 moYXL6hX8vI Yr1lgfqygio msaelEZ_eEs xrJkcV4DGZ4 xRkZAfoaEw8 7ke8XUZSYLw NJIjNs_s2NI UXK7kf1wmqI UvJ8UDYipAg _5p4QdtkbC8 2I5V3zd1J8M i5ogNBaY2BY N18AtSAxJ1I H4PpclIJZHA ioCaBQBjEBU KuMy7-yMXO8 1fxRMQLYRWs jnN4PnoJ1vw gawe9W5HYtQ O6Obigg85oo kcONgsdSLq8 OVXpH5cKWf0 8jN4i-6ikWY MHpGJ-jtGy4 f4vVtsfEMRI KFASQKT9JSs Wi41GDMQxr0 0eQBa4JQzDI JHACE2LTz_s ocyplDqvhuo kHTAJHod8-g irkGAhW7wlQ f20aUH5IG9s MIjkFrmSCYU Jkk2ai88ED0 Vyrr1vSRYjs ARLZaZd3fAg _SVAzrGlEmc 5wRnpjDfEz8 7Vhxv6URu5I 3lqYg7jpjfI m_KtsgEoK4Q Um-Nj5FvfE4 EeYI0V2j12g DcwhTBEcbBw BLFU01WKeBs jbeyKcGqxyI vuJrsCBt0rQ Xwmvrx1wq4s nVRCznRsCgY ic7F0sCFcZ4 T3iSphEl9WI jVS8e7I6Co4 clP9p1ipHEw CQuB7dB-elg m9pdH02FxPY eSDTJ1sE29E qU93Cguv4W0 pqzMo6SfXX4 1BimnTWx1b8 ntsuIs20RW0 KKOR6WC_fUg aPeZmPcpiu8 Cqc48kDMG0Q J_L4nLBweuQ ESSsStp3pFU cG0ZIxenJY8 tXNMNMLQzwg 0U-kaLEaThU QR4x2_6qzXg Lf93YLs4004 JcWawUzwoL0 IvagCOQJuYg q1ogthNk040 tdvq6Usjydg FOYr5wApG3k V_qYvdPSRto 8Fgz5cARQZo mqJxvhBThw0 fEpjHtkttYg LMT8UN9bSiA 2J8mkHUsiXY I2JSXKFWqGI IvDNfFVpvZI GLQiskRb02o Ip7GGf2_b6Y UY89o4QFvQM 5FcTzH6A4a4 TstteJ1eIZg aofM4j2teCw KNby2wixjzg tCFb_FossHk -8CnljMrH3k QimMZHQFaXk 421eYc8zCtk kS9NLX0pFVs lsOQqbPYVHY Aac0krsfzSQ PnbVXrBlmJ4 DMyBC0gLSgg nAp6q0q84vc OtXieOlT7SA vldYVG_5cZY WV12BpbBrro HEYktlQpnGE rrzV0FvYypE ae6HngmeUq0 uB4qHneHB1E Ats9HUDVBxE ej_hfok3bEc 1k1r2zFnwQc mp_oRA5-HLM LNqOTIBKycE 0vXx2vS4iC0 cZZJMc6QPR4 4WizLeIdckw hRBkyOT8ZPk 07rlBwvlBDk cKe4qiOYFyM rtQQwsPJeBY fxYkJbBKxZE 12wHDwNXBL0 v-WZINgHnFQ ZpX0rril7QA IIBg9UQ_mMU XgBvOoE5uG0 I7XHygPKbYI YOhPdUMzXjY DJcTG-VnLrI oDA4sUtM9B8 ImZ2LrvQcCY I68rpTRe8CE 8kssysjyPl0 p1tcs_fTz8k wKbZcaU-83E rjsre1tcGWU yaxDM67F72o V2NGM0LYqss 1ZA2qfP3oPc yg0yDvEqfw4 Ix8Gxp7XlDs viSCkcVXoR4 uSYD6YSaKgQ 19qTZoeOEZg oEPNSzLHZ2w e9LJG1JcXDE 1l30kkPQfJM 7JOey0CIgMM 1idxZC0VSxE AYWEjOf5pBM S_FAk6ykdvw afifn22_IR0 MLZ4KzVPlHM fWallK7KgrY XF-736UPy0k lOwjq5Cuo-w WCDmhXz9Gsc sTWdAdhTfYw 09-K2ec8lyc xV-Sj_rjJjE srJAamXGepU I7NtDM6eJq0 dw9seHSkfw8 TLhaRe7Wvww nAZi4yusqlk kpzlCDIwzEk V2j_JLlNU-I RY_kXET2cyc gbbnGtoH37o qCG-yxYUgJU Ks2OUiW2_QI aTJiK1i4iEQ tyoB7bjdzgE 8pvAI1uDW9U OBuai_Vg6BQ MeY7MlJJOdo EEF7cXH7BWo Bl6eouVUsCI bNg1XX5ofhw MhMqjcT7frc YXQ11lY6v7E czU3M9Ye268 fEocj1eLsmg a_i-mCZH5bo rZlzxsrv4ow 5evtdZtPixQ 6UKeesKIuZA uiuioAkuDro zVw5a4OjcIE gGmzT-Km9-4 tzybulrxn3g WT1ae3uyKmI yclP414CLEM mmOGHo7MYK0 HUIP208nZZs -rHnyOJuB0w V9hO8rmmaXc JG7S1-DC_KY HFWG8MMnr3Q qv-kBgAcyUA z2y29L0uG-U 9sngqjpu920 z_gsKwtCy4I CkgFvisOr_o FEEIJNnfoVI gt3ntYidpvs VtW2yWZHaO4 OF-1RqeBf7w frFwwg5GJ4A 8V18ashYdDM gJGMeacAmec A0mUARG3EzE VvcANYZCseI ZTo-aIIxihc NnxqVjeZzZw FAaogkawcOk 5BkF6NzmHTQ 2PdWkXbnArk fqDTy6JWcqE ih2vstLiKps xsnWRnOdpS4 MSIKLnc1CSQ Pr6lspmWBQs rMlkN-7GRDw CpdolY2GNYI QznOO8Oo0Aw 42YiyEjitsI 9sAv5P29YIY QkL9783wNOE hBXcQhkyRE4 v8pFeR0jO38 3smxtEacf40 FDDEVXimR2I o0lDxz0-Ukg iH0GlpUQYJY KrIUn0qTaCE 6f24cpQ_Q3k vXrH5Nk8r0U DdG74P7j6h8 EBu1PyU04FE BgfcwELYxUA OH1mI4-LqHs 858FWgtLMZU AhaulXxlqCQ kjJUffVZtDs GsbHL_lQy44 EEPTRC2OP4w fy9XNAkyfoc CRnadHP5JOo yIj06I32Gao k95b72QHu60 xsrkNeInaiw aVv3r2pUtFo YmoTJu2iOfc XhrT25xehqs HEB1OaFSaRg _yotZXdH09k z0MOAFFBXEM fNNMKJ1f9JM YaSPWpKQzKE iKn6FEEToy4 dLgbWZYjYfU ifPpI0fXMlw PWjl2vignic QtJwMKMz6-M PA3kETvUXJg 2GSGR3yaFss irNr2fMIvTQ iX5_-FORI1I 7NjHdqTSahU 0H0br7XdsYY F_NkBmFzs4s c4S5JKBUYHs 3HtWFx3oHTo pNo2v1jE8R4 F2r8a3juyr0 j9JfUXYQY2s jbXNiAQHn_A WVE-c9ghcww sKnZBUh-Lx4 iMIWQRhrAmU 5Ji_OS5Q17s Z8GFmshpZ0I uMp_5iP13r0 N7FKW_RLs3c D-NH8NiKb54 rKfcW5cTU6o FCMMjNlNSuc Uv4Wpz-N9Gc bHMka69DJZ4 rry383W_mJU zS6OX5d-ZYM qs0Fyp2bqsA EF2WHYOjGhE tCLO2N6IqJc 90vUFwUp6mw qc1k6uf-Mbg w9WoH1MlgvE 20gzgK-Z5Yw YLID2odh-WA lpgQU4piAYw BRHFpsNB1PI GnRb5AHOcuc hwN_h9eiy_0 gJDosSrvlJ8 5yCSPi05MyA ys16MvJ2XVU QfS7XUWUgL0 dEgTjVHmjdc AUDCrt3eXyc Jb0_V7JCbbk eurjNgZtg-g boaKhP_0KwA q3CTxWUxHUg 3-16Bov2JfQ -s0ov88pD0s FuzefcAKLmY iL1JlXnbnt0 elng_KRvuqY ani6MlnXj2g nBnICWrKboM WbsZeLsYgGI Nus1mepMrDc RP941IJJEx4 qFbjSxE1xzU JDC1IK7TWZA IK5-KZnzxwA IixTpVt9Enw s6WV534Sfss yM7iQ_plcpA 0dsEkpDiwBQ nXmtkGrPEuU 1p8KG7IdzPM jKGudyrV0v4 SqpBUHMR99M Vt-VF8GzQvU SrbO1c8QBSg Aqo9z6lp4GY 73b7dIqGdUg WpZ4kY3AJWU X32pSJrgF3Q e6E5v6jLGpM STKWsvhZSjc haN_gCgewXQ PXetdfRsmwk EfT-5v5YIt4 YwqlCZ5mCdg dlhTO_Pqq9s qAZcl9BFd38 AQUEnmFhk7s -CyRDSP_b5U CR8tgmpmgIk HuSM3bZf0R4 RL6JZfQq_qI -IZLCY2_esQ 8BNvCu2iqmM yeMemdNO_2Y dEHht_iK6qY xK_P_l75a7Y lM8xJqeAEGI 4MyVJn56UFY CaGEzKJKMTs --b-8xt2PeE 9knEvoHQfEw 9FqZ2BMv_RU N5L2PXUdQg0 a1YFvMDu0M8 x_9lcdX85Pg NTGOA6lPP5w N6CNJBPPVyk 7Zx5tpFmv9M -34RUyP-DH8 G6tC5Mp9NVA Gqbrt_dz_TQ uq4bRVYBdts Cg5dSosn_fk zZab0Lq7_vU QKq7tIL9aOQ 4iNd-1IPrGI 0zfQoHORIFc _IdlZCqJ8kk CpFUyd_7XIM TPESLZ0sGak N-MWa0s5iFQ 6vjDZQtAKuc NzbdfpYUxNM lVZNAyNWcgs t3XiTgsmyZc IjtqQ-ojgcU RHasf1LEG3Y wrRkC8RYqMI FmOvzaWdpXI 1UOLqmhi3AE ESkmmFHikgg GaNKOew-TLE 1nmWEA68h6U I-wCCN3yowU jxID8oHnCW0 xHCQd9zv3ak oZnFQrIavwc aTUTnjUBitc RKui0n6Z7cU F1hMkfopHfc huCdZLvSyBI -HI25-gfvxE F4dOAIo0rrM TAX4AOdqFD0 wCHqch4ILBU gBjC4SgMKDA xf3htc2iZ9Y mEPcdSaEXEo qmzYvuFtlM8 h5Qri9_giqQ MfBr9ylnuX0 y9d6Tblt1kE TUw1XgBLILA hAnmYHMCkRQ _j_ufc9wHmY RyotYUKsVyw ZEfbID-2TlQ _qfIfbYkBUk l51fnzJxYUE Zo70vB9nubo QBMv724lzZI e3mwmwPhr08 5tSi-wyuccs vbUTbqwKtEE oHeh8nSghcE aDCXE4Np1OI OoSOmcTZ1ok BgUQldQC440 ByLhxX3WUxY WEP25kPtQCQ qf2p-tkn7cE 5EEMxJOxXr8 0yKd37DXIVQ heeS8J_KFt4 ccyYHEuCHKE As70qOtE3Cg fcnYQxHinu0 DX3oTDhDOXE jawZFND4Bfc vfutImUbN7M 97wa5FUtuG4 ue_EAEC12X0 Xh-8LVuPArw RlOcas4K61c E5aXYsk787U Rd87CKvUHjU pTqtWm_DTKk ga5qeKd7oxM nOpwufXdkIk BtTX4ExS5sk gNSs_gF1T_Q ElD6Vos6Jbk bO7iMQGQjhY NnrweogniK0 ntNMz754DEg -QOahlrO8Yo --Jiv5iYqT8 k2QekuUhgIM Boq7rlWzVRI lxKvt5Z9Bok vUuAbRVVZwA GHKtN9jPK1w nDBs6ywP9ZE 7mGr4Uc7ebA o1_U-Iem8fA kk14nhuvBIM SyNzTdVQIno T2Qc-56h_J0 vMUONm4ihP0 tw6zV9CtczA 95SKqMz1Wdg Xob7w4hR5Rw MpFrgOc9KLU gFb8e3uaeIg OhO7kPNJJn0 R84dKkPAVpg ZcD75L4QLrM STrE338cTBk fzRk8ovZ06s iFm-KZgioX8 L3VyRESBqek 1YmOfCZ3ZIM EzLXmzcs1Ho vuR9pDhXPqk HLnNY2KiQEQ 94cC4uVE_HI S58poUaNwiw A1p4HnyG3Rs rgVm_KasYQc VuVAsd9jMjo bMg6mfghJHw 6WGP7utz8uA ILbPhe1Wg9U z7Zevt3riNc 8fRq0mDBzi4 YC-2vmyKkV4 XYiiAHc3CXQ TsyLQX9NH18 _YfbSVO6nz4 tuq5JMwWRSg dt38_iS6u64 hV9ArqfKqw0 jZYr6ALcDy4 cTOlg3u_fZk mnEpL-H7pms tjrB1BtTnB8 f15ob_n_tfM ifkFfWmEc_Q mILfbvj0xtk F37WD6OCu7s kWz4LQXH6bE tNGuXckF_sc xvOaMA9l4Sg Mq0xthZjW-s ee6jqUkxkZs QBps5R-4JrY aSZoCaL7HIo TIP0eokPc5c NUOag7luIOE mv3qeSxmp68 _Nz64htsk9I MmIk10arVaI 7xSB_efH2N0 5kopF-bCBC8 EqDntjV9GIY 01tx72R0gP8 z67zZuCIL-s j85FRIQigrg Z1N_U1c-fUo fkC99C2w4-o coWFeBI9XoQ nZWo6dP2zVw KKiVFZcwx6g SxCUyc_brKA KvAVAKE_pRQ QOWkXpnwlek aumRE2Eq88o EMpPWRLRQZY ESmtdvc5zk4 WwzmDbzboQM a51EYR5AeNk XL4aLIj7q9M zMFxbMh7JYY VRTb5eck250 Yk84fGy3q-8 zdSMdOcyfOU lOmeZW0N10k grn62a_8fZ4 QWepLWTflW8 xGugDtX55CQ eS47L5yU2k8 UpiqcjnWZB8 L4PPqiuDNK0 aF_Ijr621tM Rj9fUYRr81A mFoZz6PG72k oCHEAaCGj7k -9UJGi_b2UI q-hS7nZ1Ok0 TIQP5uv3D3Q H02B31zvSKQ 6NmCTA1AK54 usyxBVGLU74 q6nz3GR5Ano Y-4pm9C-jeE -QiOCO5-ZPA VSnBrgm2PM4 9UZ8XOTp19c Vz6AlIZAe2s nsyud-sEm-w 8O06gqOG3fE ePhMSnfYanI IYmiSXEQ7ys 7lbPHodrgC4 lI8p0rzq2R4 2ad7SgwLNXo BHJ5KGh-Xnw cBzuWSSTTs0 PrzgybNYBs8 OA-SQ7lCV2I rny3UdYPDn0 w78NFd5q_0k H44YauhtGPU oAJYONuey_8 dd_IWBNSKY0 b6X5bVMoCJc 8OWCY47wOAI oLLfx_GN73I hF4ErLUEW9E uzcyJ9sN98c xN0R2xFmcYU S3HubCxt0hM Y-szf9FRi8M qzkFTptrfbw 6Wk1Sob8Quo BZjqqKqaw60 n13FhFrtu_8 D_84bHFra4s 1Up-oGfiosE EzxET3KpvSM oBfLI1WWrAI pMrk3l8El24 BOwOiWDD_SM 0XjLzDVi03c kR8Xje2x0sA b854qv-Z-ZQ VH6D36VQ_uo wRM5Flw2nXY 7AjmrbE-NTM YG_z4RpxKWA 8Qklz6BqVxU Mgf5jaQO9sQ wqMPRiWvJEs -QyAhZv-o_U i_FoR7ZV2EU CatwTirgWZg lNla5rf4idU 7WXKfXCiWW8 sXPBgnBxTFM G5qPGKpTzXU Vhc7iBAAawA qVzfIUAzda4 gN1BjYlhKvc eFnw_27t9-o S8Vu6A9LW20 k2PsfXZ3wyY TIbZNmvyLBI xEAsC8A1Ins vmm8P0V1W4g 9aldDI2WF7g 6w0F9xVXn_E OurCnuyC8zo 8l7lDn2hUTw b_FQEg7ScU0 F0KcFyR2uAc G21su-YdW5k PPNHvoOU1kE HehUdDtSt1U 0W9jZQetuB0 kmigfm9ZONk 87YM78J6ebQ 88UgHHl7W7A YADVuSMFS2M 85WDSyWnTZg sUxkumq9UJY -PWyO04IJYQ CCGpFb4lNgI m8CkFFna7Ew BFaNTh5aqls 0iwVPWstvGo tPkmKcc-LAM N6mFvYxmiM8 aAMVebfAZ7I zD5BdMcO4yo ZxcUzbEJx98 w4RGgEi7T8E -3upqhXz0nE zpFlShhUcIo XadVTfPZ6yc EYh8GOoyv-M rVjV3FNsMtk t78EgRBYIh0 HMUnEpn0n9U 1ZpqDhQJhFA TEpJFWUw2ts O5TE0yg-mEA HysSQiXYjdE dp_aLWPZY8I sEycv_wZaIA 0VJnFDz4VP0 5vvtNVnzxaA CZZEp8EaO6g JjSpGeBqJR8 -kYzHmPDZwo 93lz5IE7Z0c scDWdIV7Fes toT3JGFEwmw ujJJyIKIAjg KAVqLKDwSOo t-JFogFsPHQ s1Qz6N4-tEY cNKYmHmy9OQ 2tzvi3Xp6sw 4H1Lc_JHF7I UsKSjKrIEq8 QCJ_a5AYVEY _uRGjnG3G3o 4lNoSUurdKc LpOc7D4G1TM ifl_AGVJee8 LJq_hnR6CHc _s5fgacYzjA kMRM-0GvaQk Tsi-yH9juC8 CglQW97hCe0 QxK_EsMjCQE kCb1R69h92Q EKdQ1jASEmw hq-vTEalnj0 YczVaT_czPE 2Y41IMoi1TU G1x0zmX-PEw prLok_8YD8w -it68CFJkNg P4fFh-wHWl0 yHf9QshbQeE -DF-MgSuhQ0 4rwJ3BnGrl0 nxWj-7FF4CI uzHwlt3dmmo NGeFA2fWzX8 km3VtR6mqmg iz2ro0h_TmQ Atb5LNPuxyU Y92N7SFJ0Fo 2Pkky-Dncw8 JYp5uIodwEE H843vNJgIaQ _vNaSVn6qSk RKn6FWvaVBM 2pVPaPFm5iI 9I1aM1EQZ7o Z0iCcI1Owys AmAklov1ewQ U89NOSQdgqo -iuSE7NVc8c DegHehO_nfc 16hnbNPCFBo _tYTcz52ZB8 PGU_sBj_q5g b5whTkIQ32c 5QGrgYkudfo A1mYM5yA6oI -e_vbnd9bV8 5eC6VCiJYq8 0Ihq2_hNnX8 XG-c6CmPo4k nxvXYa6n0pY VGGxaRYEfO4 qG-B9IzugQM rcjujixxfdY ALsbjcqNdRo 6rAcjVEXvSg 8jkM1zBTJIA KYQELfxxAck NrLSAjP5Ibw jOf4crp-WVs UTEUIdcqSfo qlJ2951IShM tXDoydLr3YQ _Q9JnjhXRyA pzeu5peH2n0 GBXYXp04Los AWmHgNv0xUc T4Z1mnjLwiA g-bxs_daoCI I64nwvRliGY TEq446woKOo VxwsEqiptwo oL8QGyo50_M qJkMktF_QUE bTrFBrULLmM v-8bLcH0iD4 MJBoXI6pVQ8 dZt3TeTClV8 Jg7LxmHGNd4 Ha-aaENx0Fg Euld6YN5liw bfzJMOBenVA S5-Beq8JVsw GWL0Cj7bAf4 bTx918Kpg30 BXLhK4ra6tQ M8gGpyKPAFQ XGCcothBtRs mIpX6PnT9UY ytCAMgdi9sw oLO_o48BejY Y3Y3HySArOU 79tBbaqvbjM LmxUk-KxjoI yCIgtidXAnQ g6Hf6Wbk6B4 zD_yR7ixRmo HzLYedqOPIY jFEvKqbayIQ -x8fqJDLsu8 ax59TmvzCEg 3GiWce_xXzA x2W8BqPt7mI xKffjQ-iU9E n3BgbwW6PXc 1tclZvb40QA _nmYaR_ZllQ 9AmyJhS8WWc at0yN2HBrt8 frE9rXnaHpE k6TUgccyzNs AjmbgZ2wZvk lPr_GBMu4O4 ytTSb8302aI 5Bv5yv0n9Tc Fbt2UUthWg0 DPl05d5mi54 cDoyywKt1_0 Xsa1B-RyyXQ KmdBHOUCDnM lmlX39gM9-c UwTKqqfS8FQ 8DbzvqOPUIk bJuDofIoW34 meEN8tfT7b4 5HoL98HNOr8 sAtsZPmjExo 6R__cRZAVCA 8Kfr7BvVmlU pGZtlbYLpck BvjorMEnuUI EIzFKMtPjH0 RbMtPUPVZ_s 1w4rZE1A-fc 9O0D63xWNLE reKMIuxFqzY -RuK7XKbefY _3w-4zC9FHU 92YrRetDlCg uYWlWG9d4LE TAZulrjrEDo CTVWHGj92Xo m99cHo5NBZ8 wW0WRqnLYMw pGhBFh0cXRU Zc3wIAs3coU 2FxpNCvBV_s YGQZwZadSfI SMuET3l5cbc E5vZWrsaYWU CY2ruk5Vkq8 11tbL8l5Av8 wG5Lt-pineg GqECd_A7qhY LDC0ii3Rwww zV3AZFuaJVQ yQ0FgE-WKi8 EPJGFrntGfU HvIGrLYKRh8 gmbInMp4ioU SrJEWL6QHzo _ItWcGtaJro Uc21Z4ffSns NHRtlXDOqOU zgQsfeosMf0 cNiuEFffzf4 Jf8OtaR_9MM EkptyQec_LM 1TqRcAl_928 ixYWkDAPPzA 2L2dyDpd7LA LimvO4zrETM 1zWf02vGl3M z-3ETV74ygs 2gzMbWXWIA4 bAjGVN4f6wM WRF2fIzwT6k 7SZs2Qr0zvE NQhm9xmVHdU at6F59Zfqlw 0NRYcIcHfV4 Qa_hiWmXFUA FlaH13fnXk0 t-Ojbv20L80 ORQgPS4lxmg edgiUq5ymRE AYS6V3rDT6c oceYG6ogT_E IGVwlBTTqYM 6sQWxbE2RAk dIu418Y0TGY QxcCdLaKhd8 LjiRvVUmets 1WnfdpZYp_s ulGMlIZNr6M 9rj02jWyo94 bLsnl_fdBoI yz8GjHOA2xo kHk2-mOOYQg Md12rwlpeFU 0oxx_2M6Ctw ylvCOlF5RLI vZyIBlDO-E8 uen_1bL_TXc _qjEm2ll0qc xby81m1GtH8 WC60ALoX_Nk u455yxBv35A Pf4RjsdJE0I JC2TvxRIR4Y mEzXLJL48nA Ia8LqyDsdbo iEattbpjGG4 FgYr00Scelc Jr9tBcUO68M uu4tB54Uw5I -Pf1f0pZdnQ LruyfJJT7qY BLbh7T1mPZ4 xpXxwJNaZDY zQTDoxrgBeU rKHW39mShF4 Dh__Anjhn6M xIMi15Erjvo FDwpGLz3Mr8 qkHSTpTqlug mYS3zyHIxqA QAMDKK5sfd0 L8Ig4HbgA0c k6_TBuGcwzA WjDLin6Egyw Rtf8uPmgq0A TrjLNpfDTi0 P-GgTCUYjhw QsuIp03FENc VsLUFKIRr1s hiHZWeeoEUg mWqGJ613M5Y pbzjsBcOuB8 7_uvEuNwUj4 PmFEdtB8eNw GnWalWAmryk HdcT33sKbn8 X5Vb_FUuRDE 4x_MfkJvgbU cAYVS8aRQ1U Mjkt4UgcTmg rsyw13yrRoo xO7O6zwFZ1k xfeLsPRl3so urnRVr1P2bc XC3yGH4nETQ lPMSGTfK4Aw cJOqz6CPxLY 7eTl05KHwFI 0PdeHy_87OM QoJrjjy0WeU gwjAFSu_VKM D0Gxk6zCSFQ z_Bx500h-DQ yVlOitZ19Wc 3wft012b2tk 5Mb6xTtmtuA kQrU0KRsCNo sL1b7ZnItoI gVseixK20cM Aok-54MlYFk KU8y7u-xqHg ================================================ FILE: data/metadata/youtube-dl-dump/2016.csv ================================================ FGL4-sXko9w 5h9E5SmLCVM kjtPUnPa0LQ lpod4qQzO7Q A6PpUgfZcRU sQA199D8U2g BIdtUDoR5A0 U2SdWVntd-o yodVQ5QAc88 S9U3ajjpH5A fpK36FZmTFY Tkjw0XB9Xuc BKgd8Q3X0AA -IV-ZZwXUkw CsukLjjPv-U EQqdhMcUSAw xihdBpPICZY CgmI90T4Efk jNPBfvcLIMs Q6jbNsSNxf4 qmJiZfD6n9M CjqKicoWqZ0 uYBCAaCGGcc AYxHnjsJOik nIsM8bP-GHQ byrLv_402BU m5dfATd_ZY8 56F_nTxTQj8 mGJ-2YWYrgE OGG3HuI6HcY 2pFBwbyyNac vf2EeAvsHAU KJ7Fv2QvzpI h6jcrXOs088 0Cpa6Zn7ffA 66f94DU8ab4 MOA_WeKu76o 3JF7tS3pxmc m8A9XOElA2o yQYUTyaODfE xPYQOuxYES0 4EF1zYFHbus Oa6OoTVXG6E HcpDdWIaAuE 8Yqw_f26SvM LIYNk4ARUR8 5wAlQf4WdiE pvS3j8VtanM XB401RfGMlM 1Fxq_n8e1qA p03u3v6GF-Y 1vNv-pE8I_c 0JVZ0bE8hpk DujyJ1EDft8 8qkahQVFzMI zct1tPK1Zk0 MMNICLfHE3M m2cUbp6Vkfs yvD3X3RcK3Y XvZhDq1NRhk rnaCi4rBfqw N1HQEIaRZxk 93Kzx7azL6c eyvwHF7NIGc 7lQT4xGTpIA blWwfkSF89o GLOcJyFEXIw EbMddMJU97g 19j24of8C_w SEQuHP-wL5Y kJ-wkP8Xm40 7HZj_fM4yTg 2as1htsiNxY pjJU7RkSrr8 qerH8bjHVnI tp_TZ--JHEA RLsGDXjTW2w f6kcBGKxGtE F-q3C6jSZYQ 3nDCPEcEuPs AGY5gNpoPfI DECt9uTxaLE 9dmlcGZta9E RAsK38Vdep4 SELFeneZL04 jPfje0jZeMo LAk5KEGLzmc KwWHPqidGuA zzORtbUYE4c uRjbDsGz2tc z7fOP7aW1P4 ZMplRnotp8M Gk_2euKF9MY xllpnvAmnHE bJSDrRcwwKQ SaaTUj7m8e4 ml_zSw6yWOE Ax-iwIoIxjY pYmo3PXF_T4 UY0nYr-dXEI H5I1DyJ3w1g o4ARk91_ptU 38AYeNGjqg0 jdp_wn_UrcE GrIJLWISdlQ MUEhAUpa7iA Bx9JRDKjrwA GWxf8Hb-Xis FY00zwMZsqM 2OXtHJgLJr0 K57aIbpF_Co kRNhyHiBUXs lr7pyggTmmY W_EYrVGI7LQ F4QzrKakPmU nwrLvq5W58o A9sd10CHAP8 5NY_8ulSutc KNdmBWoCfAc ZdhqVdIsBSE PhLfIqO2SLI Mk_C5QH2Eb8 QJX3XvkTJQk q38QzB5dw0A y1gkMNjkFiQ AWvRcWDr5y8 KS_KStIPiwU ZnIkMhuNmjo Vcgn4EY5_S8 W28kNzz50pw k4Lpr1sqKbQ l7FkN4ooYvA BGEFW4kc5EQ lF3IIOXn5qU FUWdPWW4csI LCljgWh4L8Y Boona4-qLSE KKfz8C48EJk Jj-mAiTMvX8 dmqo-EuR8Cw T5CoWL_wdC4 y_eZw262fhM iM0hP-LZIvI bOP-THNe4m8 Ih-zPWi9INA wOuk6V3Dj5A A7HmqwyZ3oA g9S5GndUhko 9eosfNwMpMs kEnK0ZdMThc J-OLwCyAtBc zUL_yawY6Ks bCLTAaa3qMM JLH_smT7Qog M3FtlKHZXhs WIr_dCgNAjM Y-cCAY2hGPs nSO22k4XGUo gDPJG9FP3iM a3Xm0KpUYj4 Xd5ESRqpz3E xP7yIQladb0 jB9WGpVrYBs VV97_cn54bQ f_LDdElm9fc xiwtX0NC0uA _Z_n2Ray64o 4IsISIQpKTc DnGpfWa6FAQ GKuPSf9P3tw _JcFaIDdphE 3PBo1ef-18Y kJlqNXhZE_I YjewWZ3JWiE o-OKsTWIVxk V3Tlo0EutEQ ZawJ9EBOLVk Ew8AJsPAyLg xswJpwb7Afs 8osP7KRacWk DHWbxxpKb04 jv6-p4kphmc 4WgLRH-FpWQ rvOq4hFIRJg W4efgyM82kE esFVrrZCvwA wnwsSOrmEKI YYPpg3_Y4XY UQ15FRltlsY jyNtMzHeJ6I Fjr_CQHJiCo W-cZK60yWbY 3Sz7dbX2kTY C58_gjlogWY ymbKDavsVaU xCWkAXGz8W8 MPhIzvgB31Y e2dAiCB6igE TcndF9QpYAU SPMpDCxhKGU 7GrURVFAC2I _S6GYF1B8Yk U2HWD9dymUk 7KF4iJzBVWM XemAlj9_qKE gmElew2NIS8 TSPaaPqteCU iKRpMjVJKZc -JNyHnAi8zk DPmHrgbe3xo K7I9ERiBZrc nKISdYhQcvw UFuxiZFwDPs GlCN1EPAoHI ti9jg0JOK2I gvuZShYhzX8 _emU23tTUAw QLTlJDjPfHI TxvqZhVwrSY GtSNSaW9IRI sTbJQwezQZY qyvR5lglbTE 7jz_uA1dv9w m49ub45c8AI rd8JDPjEoE0 JYVhLnjKKC8 Q0okgIEkRJM TjY8crETM6s t6nqp5MdMp0 yrfpRh2SqIw xSNkZYKC_c0 06Its9LhIHQ X5HvuYGCyzQ ttOuvmYYeps LGnwTTGzjpk 62z8SYqpuZ4 GN1LhsTj5CQ UzTveNwweRM lKqS8lnlJsc rnTrWINYDsM _KC5AJdRgBs gYdm3PIHyaM 9AtlQm1jVpM wXer1Hj8hR4 NpSkrZRlGbk BiukHSW8Az4 tdvj1iOOUE0 VnAmEovifpU UUzW7NqutUg Fy988XyqFhM lwhQK2kDfBM xpFArzEh9Dk giGWC-o1mvw 2aqgKA3uUwM hhRIhD6BvMo oUpzcxwFI6o TajTfrf2yXs -PFdr0SiAEw 9OhXJOQioeU ZNnk9L2LSZI EBnn_Y29Pks IYVg4o3KVPo sNrOsj0xDPs vR1WPNzcXHE nfzJCrxKVMU vZlWLj1-eC4 bryVfEK0U4k QanZzw7zh7M _T6r7w_m504 pLC_hRDO7Hk cyEqzALZmeA 75ovyrTzuYY yXyrZImvR7c ElvTXO2A3Uw sl1Jjq82XUA UVGzuUm3uzs U0xf89hs1Mc mFkxrTfAkq8 oUXPpeE2pv4 M8s2txilG08 oA-dHypOn9M aPQcQ4IhHNE huI39DZ4b44 Xiki4aOO4tw hSvJRk5OH_o Lrr_z_4VLdU tFeew6TgM8w 5EeD0NiVALs xNu0qNfOoGY oc8Hm_t5BRo 5ACVz6Cmo3M K4fpErUdp3k SUMtjCypolU RARFpfBt66M ilG8mzbHNNI h9Rb7mT3juI RmqqNrg2cKg otk_S_5inBM 5kGTDvVTAOw yX5TsLuIEy8 98I5LTPcRnw 39HR8ZjQnYA TeDEtT7YjYY -oPHsR72Lfo p_ixTZLD7k0 T6BDCLnWSes e5SbxMFk6Vo cW23WpOvC6A 1iCqTxtsqvw b-2p52a82UM zbkojhq6Ryw KGW0LbnEraM NR-BaVehxrA EonKIlrj7t0 tyyPSnHcthg 10X4Th3YE30 Rj5XdwnuQ80 riDe28hGBuo -fvfHqNEmGU OsgEdYjoqUI a4QlQy31HIk EnBWc20FGuc V0UBmkWw5Oo BXx51SR_3Sk psB3Ta-5XWY 4331uXY0nxA 4_23t4NzAMk hvACHvnVCbw ltmHZiXkb9c EauDkPyyz8I 7pD2vZ28a3E 4uc2qplSyss rDGRAHBojWE N_O0XDnM2AM WE4iNhRivzc 5A9D-XVmK10 OJNBsuHFdM4 iX23r272kqg GVt3XFTYp-0 m8LWjDS3IkQ IPdtCQV4Dz8 dwh6SShhnVI DgUvg4sBGcs 5wUezm-K0Bw q292IDwEWZ0 R4CiWP08yes m8Jm9_iR6cg yRhRZB-nqOU HStPxrLfM9k 0TvKsVxgbF4 QbwYDkPwfUM aGAInDBQOoE xcqbp1ysN1M 0SDvqDdbhSc Mp6aKCE3jSc Z0l0sXacQ9Y onNv1u-qdZY LFT504CjJFA P5Q7apxWucc 4kNNwEV5XJI tWEBbYoDaU8 wFg1qWPryvI 5LE2vO_aQgU REXJhZBFD1w j6qjibwpEzM WVed9LPelUw wU7TupjcCbo 9VLcxXz-0w4 8KJkEQx2lKI rLtmIBRWQVQ MPqg9uMHTDQ JauxWp4eWnM QYHTRRmkung 7mwZYGcbQCo sZU26D42s2M GE64zY42bUA CZO8Dh7dXvM jf9d3cwVWBY P2oF9-9UpbQ KQbGttprUMA 2dD7upKpLks FLCvFcaZW3Q 63fCYTWuVoA kb4jEHmH_kU hHKUBg_c9no MEBibAHnEK4 iLBL-XeNrRI vTSmbMm7MDg 5h5zurZsIQY Qp3NWzLzaek lXy9Lp8bu98 JduADWt0XMI p32OEIazBew 1eTXG8FReno kIUgcwJeN5A 1VIBA_mPdPA WYY9Epog0rs jM7Eou4bV-Q zlwaUJzGqns UDSfJaVC0KY 9LglzW3HFyg TvoWGxM8TU8 K_a1_SO8hu0 aBpwrORhKWU Xt0Fv0W-CSo FJ7rx8LeTgg jYpYTpKuT_k RRLisRc0j1c YW6VrETYUfU LMViEmB4_Fk aGcvpWAhP6I 3mw9rXZv4tY Gl4bRwYs1tI HfKAC6eOlXg zoSzqHlvN6s svytEWJK6Qk kptIt3LwGWc 3IiKTJztqFY oQjMZTetuEg IgrJkJ8NYrw VLXwMhs4ODU w4-b-D0iByQ b-_C0lWgga0 NHDA6rk-bek wwDCSzZx37I t_wR8zbM5VI YpnqA-vr53Q mqpQgFfidcA IRRYuq7qYk4 v-OKZSh7tQ4 vF3sZj6ge18 QpqCLenOeAM Hi_NmfSbE3g AxpzOZT_C0o oLUmNV0tmMo bVKJscj58DI KLIB40d6Pz8 8HO4C01n00c M1uBjOpTa6Y 7SClmJTqKo0 Eva9_scd290 ajb31pJMQmw ip1igmoPSD8 g3svdzmBtic TZ2ryw04fx4 awkGgPALfho ft9XnHcLYiI 8fGU90-I_H4 7y9stFHCvEY NNouwnR8QQw RkINjKcnVuY n1lQR-GjWYw D4_CGzg3fmQ oOp7Q_xw94I Cf5dlMw2d7s gpkncObsNqY Axru07JeBig uBPs4AHD52Y vHBKdIq9RGs tj3Trywp_zk 2JMmof1eg1s zjiAUjrvTrw El0_VgXqgXU _AgBIeTHzTM JtuMPxXQ2l4 XRx0KtjPoX0 v3H9-sHDZSA JIqfgLLZhAk AtJ5phl1iVE HmwZxnQbox8 wk-P07PoFAk c0-3FQ-_SAg me9Vweatkto gEC1WbYzZYk QxNZJZrkdM0 i7hF7BAKV_I ykeqEK7m5oI mk2OptcsXuo s6lrBldtwVk 5PikP1s15F0 XAuxvhZzUhE FHXzsBsOVjY t4pLZtTuryE 8k9h0yE0XIg IMOAEKRuaeI pVfx0OQcmBk ydFjplhKYng DzpGeXWsQKY ohoPpyAG0zA W9DAFX_ieak 1UqGimF2hkI GwyuRxkac2Q ru_PLKD7w4c vT4HrbzMVgI w8IS7igzQxw zdTmdoeLgAc 6OizpcahOZA ujcglOdwI1E A5fwu8OlNG0 4HSdmiu24xQ M5F8dw_FfPc ow0vNLhDNzI tWuBw5082gI ZtQD3EqQAC0 o0wTt_xDlpk _-JtvyLvSlo 19u6S4Fqnss VDGKUOjQ-Zs 2tWRTtI7huk 4frYhsIGjJU 51Kfo8X3V18 emW6TopzEe0 bmeh1eFkyHg Xq_9TDk-hj0 xZXOBmW-7Jk tqqSIT1D0vU L9pxOwibtWQ DNAwkyyq3kM Pw8FO7eRAoY StS0_Y5Dh4Q EegnTsyPDF4 9PllxjcicFo LCD5BDaqANw KwIg2QMWVOU R0p6s2L8yk4 FQjvyy8gOS0 esHXIrYgSzo mA1FWjriD60 t-dJ4I7rGp8 Q-MVoUlU-OY s3PbszHh8vE bGQ9QznPQ_M f7vRR8-n_Rc fVVoh_Xh0xo ehNNyfvhcto 31ZCtppXSoU xLD9iygFMgA M_HMbS9bEhM 41FRwoAJkpw ycyXqWAMzZ8 jBxnTnikZEo JXxF-_0u_qU ATDt5EBims4 TE4ZWi6xkZo 4VX7ZvbbLrE vdED1lRQ-N8 IE1ZeXC4vtg TGoICPqXjAY OgaJLKX1sUo UDcu3Pg8LiI xGCLACE7SUI g3a9qZnTzJQ tdMF1i45oks gLLgGSdfy3I TAZ3_IuoGew dx07n7Eov0o IXXv4DMkBpM sHFXRjwKOG8 8EUTXbhTFg8 HUJtn_Bwm-w yuochlbdRmQ arf7Bi4CCmU kZMKLwtkLrI 6FVwlgBDCo0 GBTN4LA7pTs LxxFi7igv2A 99dOPdlLIw0 Ur1StpqHA1M B98YODkeEqY 41AhzyLUBFM Pw0CzPQdaE4 I_v5km4eDik wQ5uso-R6aY 9F9KKPakio4 xzW255065XQ OY5yOdITL-8 kp2u8LURkgQ H2cgoxJHSPs LYsdYDbW_Iw V0dVNpmzCyg zMzCxBRDhlA O2hN7307Nio av5eE5HTVzs 3O13oeNWWfU sQcgpyPhaIA 4tEfbGzxI-E l3zxPrDoN74 61LA1soyYkg GMXgGPnbnow jhvqJs7apdo jDnp-EKD-Qw Q9NJiwYZt4Q phTSTiwPBUk zxO4SgwCONk HtC2c6DQvSE 7jrjZ5DIEzU cbBTkI-JxVg 7RAzClJ4XLk ek_w1fGGUT0 S8HUYXl6grQ HJwSvsEaai8 R-Rc1lQMjQc MiQsEACG7_w DFgmFM-w0Rk kRZxEorotnY 6EM223j0wls 9V8IRFmXcQI B9aW-CumBFg VwB6p1A-FwA VtGNNvJF5Qk d7vy5NkiJJE tn24Ca1sslc oKTtRDYwIG4 8jWoq1fTwJ8 9dDKx-vREdQ RF2gzBNsZQ4 lBs_nLdio1M ndZVwNuTYa4 glNH68Iaa3E krBjSShSxu0 F8lEfmjN9C0 pDCzYY0bjbc eCXv9LnSKeA YAhyJTSt_9o 04BZh6E-Nck AVpd8G_48FM EwWuQOBBcFA EN7SYqdbsm4 sS1L9wZXFic tUr2KIu-nvE SnKEQA88PXg VPXC2aQZyEs taAwMJ4hsdk V8oMGhl8FFg 6Z5bmj561YM 7a-OSvw0tjg kAyPdsYr2K0 JaEv5uq8sJs 3pjwMG4hrFw RQZFCcsvtew ioKNba1RRys VwSWeeg9RSg LtGQwP3jiUk Jch6T39j20E gvBe38KoiVc qoftQY-P85o BS82G9f2Xaw 8kAtef-L6do fG1_01gDUoc YrIvuBpSGio 38Zst1IDgIs 0M0dGWXQt6Y CRbtvxbu6fg LpP3_e3ioiQ B4jUZUgKhFQ XS7Tpc7yY8Y toe0MwxNN1o AMOb_w6Jfug EUB6R41g7cA wkyZ8pJD0Uo 7rGY9Tw2hSw QnMDpNk1DFY 9e06PDg1pgs DUJHFbmzhtQ m5Qi_YVxd5M Rq-hSPn_Elc HXtYMxtMlhI PnZpYoBuiGw QzzcHhFa66Q KtHucDG9t9k XXcdcrn7usw AtZDj7gset0 s0bZ80iuZdQ XVyVUZrzGrE pQ7F6S4FrdY sfObDKSfaZA 2ul7iwAUMN8 KtDkR9YdBS0 H5ocMbhjb-M fi3K18p1Pww NUI_ZNu-GXM QGq7H8ku2cI DhW1_LX5xZg M6aTyZE_Zss AtDwOreXh-k Q1ITCuUHAnY Tn1YK5UEr_c 38tBs7AinQA lAebdantAPM LHEPabAiiTo XLJwlFShttg dH5RKJLZ7HQ bzoIipqEbXE JHlNsy6rMUI DeoXtC4c5Ck ABAYY_S63CE 69yTsxMTNnQ h1vDFFr7nNs i7eR-SzImZQ 6dySVi75n7M QfNYdXHjGV0 KtZQO636AQw EY18WYrcYHw VhTqGpjZzfk U6CQhcLjjfY mwVsJoafaP0 GnAKqKB8ryc m6-AzGII9Ts sCSUnot0u30 wojHQib2wn4 tcH0KwS_YEA yLj0FvavCe0 sHhFAITCEPs u0aPph3nUwQ oX5iDM-DnQ4 dlwR6MhC2Hc 08UMKwdtWk8 FxwaraxX89Y -D3PMCmZot0 ouN3vJJmPgw b_5M03JfdQo iab2tzXfWsU LPEVs0FV7Os y-PhkF8e4rc 1_uvjP9QZcE eYR0zgfAcQk _08wo4Rxayk puGracMskK8 9ejzBYus8qE sHAoAwDUkBo gaZOIAJJ6Kk IUu1T75RjTo vBasqtPRco0 jm7zMNBEgmA EFlCixq_HEM kZgaz49f5aE Vjc0wdQtl64 gsYcnpq1HBc 1Gnmq6nB1ws mwrMEQnMRCQ Ux6L0eRqDGY XKrIeZTVBQ4 RDrZm6eEY6E 0bRr_MER6Vg zTh8P8BTQVE RCzgkvkbVI4 Z1MsMWSkKWE 2rq0nLbL5fg D6SVqGVTlFU utHcPvSz6AM u5gSeZQbbq8 Yz0YrG0oJQU cUy-J4YGxcE UIdm6BTefb8 BIW6tF1dE50 PuI5bs7mZG8 n1X2w0tinkg SWYmSp9wxUM JkeXMSrRsYI EcDcNDlil_A YCIt5jn2XPk U-42oAzybn4 77326fqWeR4 zWtQ2tYVagg ySwvsZ3KWhc 6MDRk-oDzAE NgQmrSNWY0U m_adoXQ7GT4 q4FzgqjlrVY RYgoemOYknw ARSK76A2xts WvJZlC93jVM IUBx1ZoP6PA IR7xuySx1v0 KGPl7ahFDEc g5wB0DNvM8M ddrQKAMzUGI aRAHfPrf7C8 -fnJhOLKjv0 3V2gt6bAYxM HJK28cWPvH4 SQNzOyXHbYY 9bjpF066edk NuEXMD5przE omFpUjAzM9M HqquGvHwicg zp-g3uxoQeE p4z5ZU-dHr8 GMk7xOOzK4E SD86_k19Rx8 1fM9KjHmVNw BGyHgJ9DunE mvYdMO5ZfYM _zjqM0Hmk2A QHYatXsRFEI hiREoiox0Tw PGTXynHmp_o Q91iEtSRiwU aNQL0s6v8nI _aePd1mFn7M YCAW0hzka8I KTFG9YDV_8o tEptrqj1R50 E8MitqqUuBI 4wPqQUl2y5A OTX8quF1g4I gnqyCM42fOU p8lLNtyeSz4 s2gjCGRLfKM 8ZLUn8xHbiM N-2stIHQ12U t2ydTbUJ__8 whEcud8GBTo JZGQiDSJRWw BTUIaeLGBPk S2NZ6XCtqMQ dGVvqcGBn_E izbOPZezYiQ 7SaFvv-XoIM ijkNii0A80I 7IsskjJnGN0 UppZwnbIvZI kfYzoHzwZZY GCQrTxMgMiM 2k2hQ4dI5Zs sSMoOPktKsQ fOdzgxEe1u0 AUxAITobkNA uwEFn60u9SE son5FnMtr_8 pxWCOG2v42c y2DC74NT5G8 dLVgEWrfdSg sQPrjgzEcAc zJ4owMQIKuQ OzWA6M7VnGg L2GbnErVDqk o3s4QiK4MSM 0B1NRC3WYEs W_0WRTR2vSc y6u4QEi3n2g I5xqeX3lAgk PczVuk7L0MU LxOEBk9PqQQ o6NxwI5Sbbw SVUcZ0sAf9c wZUKOxIXZ8c WCO594skLRA wehE7YLFmGI QbMcPeuQsfE oK0u0F_Y2EU JBc-gNIjGuc komxaWgJ8O4 n5HtgUGCM30 ViIuvUSF3YU d8Gg9rPHKNU 727NnSLXsxc ct7Ox_OKe-s p8L6CtsqDE4 _d68kyNY0jI SWxdW9jlHqM Ia7el1fEff8 m3262E3sfb8 -zxyN9-P9_c CDiosBMzR_c 4932enSiFRA KVGVHjX_bkg VVAlND4mt5s gEdTciZtW4o XY2mzqw0vR0 KSfYdl24m7s WxIIpvpAEEM 7umeeSjxQl0 Tw99DKA5tss WGy01KGFK7I lot6apnbKk4 Jr4HhX_kbf4 emnU7uOpYtk AY1ze9t3lus BgkEy5fF1rM iAMImEbSpDk ivZaXeAv5X4 WrfxIymvEhQ tsIYleoAQpY nh8mjiSlAws mIvQRRVbt9E 6zqeWbDCXMM WMWI2FTLbhg 01ClRWyf9I4 uA7BbE1cF2U DXH2BXpwCAo 5IPCNRlCYP8 odUsOcEqT4g rxCuYueuyxM UEEIFRxwHSM vZKaVV0ZyFs o94LScznlmY YLjkzy7nhc8 PlSt57BseA8 wyuPoWs79fo TjGfTL6l-HM luuYRrPaEpM Eum-rR934sQ 2ZGmI0V_Hgo 1c7FYxTa2mQ G1BREAJI3E0 KAZVdaHzWNc tz-XJMspLOA FFGm__skOH4 DZwobit-Zy4 A8GRnS_49gs 4TgJgyypajE 6-PJPTcT-o4 3PRuMx1gqdM ZMURdEkb_3Y KL5rXhSkP34 o7zebTh4tHo w0BK_hLT-Wo ZQsCM4wE_es 1KBy8-7nc1M yWuZtDeeZmc dGz9C2xMADc 7yjowqaIUnU 3a7e-npyunY JCVLrJfjsIo y7T5Ea-WGII YUaq56T5qSo j40IcG_BZuc MnZJSCtPQtY ikWTYTomQI4 cEJhVm0TJUQ pvZXE-e5Yo4 N2A4tcaMl9c TnkyKOn81nA 3ce2e-d1ZEc f187FGFi1AM VAp8WVZm3cc yOWS9e_r5OI VX3u1HUl2Zw goKRpR4XNg8 vsfjzfGZVyQ u2D0kDFKaxE b_tZKOxNR7o mQpZdtspStY 4bB-IJBlZms dUFtkBtGIgg O2RUT5J7T4E zlVbQsf7vpk AI752yUQd1o COZxvXx4bSg e4-STTC0pNc FyuQ13ZZNIQ Ht3gFCqpFkE PP8BpNVk8JM OuacLAbhxqc QaSr6mpkTII h0w6WywbohM lCyS2Gxxzfg alh8b1lYuRU Y91jebCjFBE qz0rKdYiqDQ E81RLAQyhCA YZPkrplfycM 1xFsHF8ZF2Y yYF0oK8oXSk CQvEBaLYHJE mdsLJ_ciPHI hRBRb2eiK4I Y5pRDzBxZtY 4i3CEXiGKgU ba9YG9xCC7A vEd2sU65NQI wJZHc5SJ9eE -lX6P0PFKy4 YiE8wDRFfvM tbdHhLOzT-Y BktKAiQQ_tw gG1XmKlqhIU 8w4UZGP7OGo i4M2tehIejI nFRuYV4QrnE 7OpujffVbUQ ttU5gs0lj38 SwPPG_B3ArY azot-mIuW3Y zjFMyK_bRso tQl5ypxi69U pwL0PcIHtxQ ic9PvDGkzf8 41VUCQfnnco PM5TJ6vZ9YM pDnPZ0Ccdus TuafKNbgTCA PHFG3ZC0fZI Qe5hop7o4ZI UvFclgKfUQA OvbvCOM89Ew 3AfqCkqJVt0 AuGJ_SZEXFI WnBzLtUAnIg BzMaqlt74NY WVDrmwtooj4 AP_hr5nmo9M f505OHOUHoU iFEr1xsuksI 7RsohcD0tS8 _7pkwL7yY5g 71FkH7FwfFg WSADpIlmqQ8 rdEbjNy5BNs lN4oFlIKm7A 5lBfYlWmDC8 ARKPBJdE_QU NtQdJIeh2ho I8yAmR1UymM sggwHnudtH0 37yJV-YPBJY Snt_FLn3dwM YPQJOKn0I0s cqD8XBONBHY p4yCboEAjLk lniVpfK5SW8 nID1enI2xW8 W_CvL_fMIm4 Uw1WGruy_KI IyN025OadaE GyhrH5E6B6g -3RMOO6mHr4 GJsTqU9Ujxo jx757TP9spg AqMWvk5DMcU _XAKjc2gIfo KhtepI51wuo tv_xMisf9oc nVKSBDddFxM W2roZO0kTUs YkYqKiASqJM nNKsj8rQGHc EGqPXMAThig XtFr2BdLrv0 XS2yOMGv5to dStxLpnwvWs plcl4YShR5Q 309Cnimrm5A Atyyr6d7-u8 7WjOFzTTiHY sjWdByLxTuI Yp2w2XxXKD4 UtSE9OXHIgw FSB26l-iDEw ZMQCyJ2lhu8 ayOLECuygTQ zqTxw0eiZaE 8l-HZqArmXU ofWdRHOZpV4 U5fkvkaFqt4 CqHyrmbiD1E 9RrN7k_5fl4 AebCDidbqI8 QPmSOAIRsj4 tkDK_YLfTO0 -yEE_toKFxc QjrvHsFzbvI WfQ8qbtS63s Rv1MSTB7QeA cIG0COsZmjg FXhW_IAJ_Yg vAJ_RdlVzgw 2N4Tq6Zpx3g 4kQr8dkriIg vnJE2OLp55w gbr7Qazpy2E ivlV5kanNFE ihOU-LC0ue8 yB_0DHi3Z4k frxxz1Nx3x0 xb4rFYLKzHA A8WBlVOcSs8 mRRLEgHhu3U 7cJS4h5_KJ0 xzwBLuOLjzA 4009LQ96f4E XdPLA-egIeQ Mu4AuoaIuHg olg8NTkDXrI LZcSMyk5Obo t-DJLPtSaHw 00Tazm9Z6XU eX7t2x1F5wA 6uRycxZgotc HLJHW3slPW0 j6SBSViczK4 6R_37O7HwMI Jfk2QR-qyZk SWnqUVFoQ9w KTes0O7QBR8 CyXxBjk4UaQ 5_C7GNWPinI ubD8vf5WvnE aDrR7riBeLA bLbLsjRVm9Y ux9JHznPT8E 7NMQnDrBp60 qJ_EsjyYevs WrGf03jRHSE pYhlVR9GzjA Lt7yltFpVyE k10DDJ4L2lc 6WArrD9VPJE OlPauBNIDAQ L8cLSkIAgJ4 uV-u-N8RkKs 5D4D0Hby47o iRd63BXG6nE BdC4os4SOH0 FvJp6IklZUA UkDKxprXy_0 toctHJpW6no bZ7ZsN1FXuI hJErQ3vUD24 e434wHYilA0 5xx4Ha3kGtg rkPT_6JWenQ 6mtG2DSbR3g Kcf2d8epCXY vV3RTL40nmw 9b32VkOh2nQ XHJI9tya2cM aIau-DQHI3Y EegoLE6n-Gk cJ4mSB-0OA0 Kpomd1Lwn6Y X9A5UFJ1iZk PWfgDuO0vmI 6bDF7ZQgkZA SXOm6AEArjo K04WrySpUH8 nBlkMaEmWeI rpE_9A4LXWs gIQWTB6lNlw Od9Z1C8dboY Jz0Ueh_tkFg 3Rayb1Y5SmA mY-6iHAZZoo wT2zu8zPXHQ XGg85Qv_gK4 8yXl1yKbBiU VPzrMnBW_JY B7rcsBCaMI4 xaYlkjfpdG0 cl1Yl57gCW4 qq3C3psItOo bQ9vlCKo04g s8BQXJxRw10 qFbklFTJlCs 5MB15iYADy0 o36MJbiMMH8 gQ1o6y8iYXs 9FuvuHFUeoE qr6vDBiESB4 LKXQQmMdiws RJ2waor6V0g 5HbKxlvyiLk 8APhdryZ6m4 4LY3sXlBbk4 oX3g90bTn1g mkEMQ9OK088 80xURylcWpI lLxVEs_X_9k QtSzDCV1CHI nqIhzUUH6Ts FCv0BgoGj0g vI48ZXLGoBk SRoBDfwS2xU KOAAIBdD3bM 9dSVd8ISfl8 6mJk2i7Lfjs gPv4C6gIdOo sp2FvfOi928 WSBO1fuXCCE PW-I6rrNzyM 5FHPI2NlOm8 rC9LfNF_CW8 N27gumJNHP0 GLmTfdkWZp4 FTJcaJziQ1I ftNK4JPSoto yUrcH6c-FX4 VScQtueKnXM UdRma1qSMGo SVYv9SJAr2M Y9_k4iGJMco olj-IIjnxLY f-mlUVx01MA 9uRPfjWwOL0 6Dg8xn6Rdwo HycJFYsUxaU yZWEB9JWLHM vkX9jHBsmwM 4pHgq_uwXjs BoGZH9krgjE vMwfVOf1-vM w6USFL0JYAU -78FgmNwyD4 7MJd-RSHTqs JegIRfX4LJQ hEH49mSRWGw RmSIKuobH10 PbndU1PQlPk jS7XOEttewM NmsLAaKjKEE 9hXnvqJ7uxQ no5XxM0OY4o vIrRt0vaySY Xe8LJ4g7Dpg rXyyr3kSB3s oKCF_TzQ6Pk --vFXH3mH3A uvAd-GbYBVw G6EzUGdelYg SQ9JOrG0mUM x6jUAU8hoBk _oFhIKlIBr0 ZMZxDJb5V8o jR3JlEXdBIo y5cSt5uqt3E c7AescgZzEg i-VM7_DJlkQ wrkeOayCv6E 5kgYUoeOPj4 UbrDTO9asW4 Fl9Cexw3ACk sf2eXsM6Kik 8CCr6_Xqt1k MG_ZMkTJ1dA QQsH99EAwoE bLi52djkRTs a4Td_W5dc1w _CWSn-Zdi5w arsAllZIa1Y Gw8uD1xHhBc IMzMccLiMIc lRAsSTNZD8g Cdgq2SQcKcQ ciL0tWi56tM pfVP6HBoflg qy_ZclSCUwA rqWz0oKJQ5E a6CsW4dCk_8 N92pfxjHXkg cVPTibn-ewI yr923CbtKsU D3PcFuLPhG4 2fweZsmH4Tw 1To7zCTHAv4 JhNznuSZ1n8 moeAot5_Q_U ya0uliWzUTI mLKA_BX6xKo AeZQ4Oi1wu8 C6MgTAuqpXc XS-R1raNESI -b-EFcA7ing DHL2KTvQ_eQ 1yMhC0o3y_0 BocJIlRPVvU 8-0dpreHXFM zDQueu9EF6M 2QRFeV4rPZE rqS6CaouXwE -pEKUJ9MADs ZgbGOBeeaD8 frIi1u8PAlc eB46dRO0YZ8 vl5LaKMkhYw uk2ovL8llCw djquKsYMo74 jQTtJ71PkKE ZGha6pmwigQ _GksGDm__8U fXGEXg5q5HM SN9LQ05sQEU 4V7dPXjZJC0 LkkVEYz6y20 j4mo1ywVR_M lGcW9Egfm2M r1fp_NVGr6Q kzueHOeJk40 UTKrefMHcJQ q1D9i-d1m4Y DOrvXyOMjhQ LepvQqFvoWc t3XewsVnx9E BTZArvbmG_o U45CzgrLE9s 5P2p_4ftJjE 73F6wZrDxao 6QEYgLKNZd0 fI5qOb-otrs cKJ6Jyo_9to SxMetYMwzUU RqNXT7abtQQ AjXsoJGi1fo 07k4FaH9dTc crX0CMJ_aIQ SiOImcd9L2c x94XSdW6eEE ZfKsbOpsea4 8YaSWlYa9u4 aCx3jrZJjPM btug5ZMTWuk xiXiMxTbu5k _8dcjZCqilE VaQo1PTIzXs c_lWrv5E18A 1OXNsIjuAnk lq2V4EnoY68 rFBErC8napg DLUx3hDY2wI 0KtJi_MLKqY 6CO4uEdr8p4 5BBhXUaqDZQ wQlyX4xKYeU _ZpONi1-f24 u34dzFKx4Rg P8Cv5p0cgG0 itk5hcD2sFs u5qpNA4ZIFA n8r0JS4Z9tI S7yCsHLwg30 tSYhESdFisA xWZtwOffj1o ACr98cpjXnE 6Knf2lu45Yw 5ZxVaJcxkMo YVmZ5gRR_zc Z9QsVa8r5Fk 8skrIns6h6I KuebMqpuoEg uvUaNcx7mlg LFB_SKdGuLk eAvVsXliFxo rXDhJmUGdiM Td6UanhjhVs OFcprqLHg-M 9pcfdiFrBEQ s1pDel1G9Eg kePIiYeH2Ko TaYnzfexuFg ybq8gINMdBs eIAiu9_4JDs LiI1LdPRcQM dpg077fR9Mc jAwlK8vL8OQ OIFEMSfu4pk yCUaXGVdi_k ooiimi7zkoE IwA5uSA5ZBI iQoNLmqqMQA zCttJu0ZFpw 52sXSYdNPsg 2Qx3hHEoqMs 7TY3DFSCrOc FvUs8613_TM VvGhOtoy5iE l-aUy9_L22o Le-bfbn43WE hK2Em4D7fhU koWVPnRRGlA zvdLSI3-j-A Y4fkp_IINqo v7kRQXWpSdE C42zpLSVjCY gw4Sj4hJy4s OhncteZCJWE 4nEsHsxsjew 63KhwUcX8dE 9Fu4muqAsBM CLfY0oLo7o0 Gko7aal3o7U rXpCjDg0RT0 qBdgJs4tf60 CtARWCZGiag b56RExAdg7s OW1bbk4wVqo CYXBxG1COzQ WOcSwhJCnr8 W1U_sJhDIXI sfh3DVzcGAI lTyNEv7TXmk _s2FEVQePMg pfk_iBQzECI iekeU-w3im0 Ipf6Zg3UFTk SCp3HsyGqeo SAMMLF75HmM LP22LQEq-tY Xq_a8AYpKYA yF0HUzSCd84 6ljUgAVSu0M H8nX1mhYFk8 6MtwwUfJ8IE V2M1t7HAj1A cx2YdJwQaeU BDYgCu8m5dQ 5LXDBdoZfy4 3bcNygIQfMU OqnFSU27fuE m4qQ9IIo23c N7urptsSqNY f4D3R4tJNMo keymL9b6W4g JDnjiQCk2JQ sdc-LNkYA78 TFGYMpZUv4Q D_1bty7dttk q1V_8cCX5Vg Ern5-LGeU50 gx4ZNttML0M hh7_pDbACts yYhuz0q21_4 EFhZ72P48bc AFJ_QnfENd4 zSd5uTUpuAY gijYgnVD9vo rWe5nzPq1JA nlH_5ejw7Gs oSc-5smBhRQ imcPspMbcL0 rlXTyrGsiHQ OjGiHy7VIhI MDsC2TNfF3g FrH_IKiZTOc 8tfmRZV1vnI TPdR8MCjRGQ 19moJ8AP49o ZrCtTXl-84I 0GsFiFVwfBE _ilh4ZR3aUo QA34Dlela4Y u1CmSdzgYiY 5cxSYatteJ0 NK_Gt07WU5o BcfTPLZTAog L1bqqCJlCpg d-Sk3AvyR24 2QB-g-9tuEk ZeMzb1DXoFM ztEcn3h90g0 gFsyI1eps-U _41uCWOabEU rgFfioIzPgs vssoBfErh5w gvAl9GR1kDs Y9ajaBIbzYI _jkSWElBWf0 Q1XwIK9Ykvs OAMxHdzk0EU C1QL0e4B7N8 auMWOnofBSI _6iwpd8yeQc ayplsqakP80 P94nUxbIgs0 1kAMrmDG-68 hK9v_6lK_lw Y0SFyVdPfO8 aGActTYN93E Yd_u2G_ucCU CHz--mmu5RA RPS05ujl9FM nW-iQzgmyeI WrCCnZaSlKE 0gAMfKzCJsc snRRa2Z3DFo HcadJjFOhcg jKa9O33GXLI WPrJDDvstbM kRwFOUeh-Ro 4GUliPk7fK0 0WOnDEx4QLc AiZf4-eJQUA loVYzYPJBTE fw5N8DF4js8 fk0O_cdBbMg 7AkMzkl0r4E 3wsMRsZ2Q3I muVopS3Yn7s XcE9IUjMtOE qtKtxLmxl24 7yVV04Hi1Ms QDurduePMWE Q9-NzGEY90w 6S__xAKQcF4 PkLE7uHqRt4 Oe_sEQkEIZw 6bNyU9A9LlM i3u7nvpgDTM CcLJWUzDSbA aRr8QkQ9Qrw bfn9-AjAJCU dpIyHx-GsbA 0t1TFwXKL2E SqY9GVVUo4w lyuqs9s8134 7478n46dKCg 6SoBKiO5mlY Hx3l8vu5L6Q _Y8RUTZ6CKc BgvJlZKbqlw o6V1Ov1GCuQ 7nZ0VyXfpec j2SPawJewxA qVS1E2L7DYg tTFOv5oFe3E ucBnN5N2fn8 Wk9-oZ9OGjw W9vPRj-c6VQ nB95pK8TgYw 3ynO7Oaj2oY z-KB47AFQAY KbZQdFPxeXE vkFKHF9Fs_s q_y1Qe8dyCw 1MVR4GmqfHg 0j9yDnytwPU wSdltnqDWV0 qfwei0pOLVs ZfcfpjiFZAQ IMuAOVTXtLM DKp509HHG0w Pu1vplwgGAY gHWnmlpmub4 Ej_fgugvtRg MB5zQ9X-2tY 2W9aISYBJXY nIuuhtJM_Dw D0Rs2n8eCPQ FKPNubrWp0A 4nSkJZ3i2-g ueNjp9QfQFM vtyIGp8uv8w 23Xxotom7bI PsAtoPJeiys LHTaiCLZO3s _mzI1HQ0cYE b7wurDomuVs r9mcNXIJFbY 0sUHxfXKUas NtxR-xgJWwo pGxyOeypYFs K0xwTAJROW4 7UvSGe2Md6g j95Tk1SLXOA 7Lj3LydT1uk TTXjgOan_KI -cFW3A13o8s QGNI11LEG54 s0eHgfzlrF8 0isiQvOb874 V5Np7vmtIYc W1W5JF4lRIQ n2ZkOcq4vWU xB1tKdhnGaE fOONIlhXFh4 gbXZzvvp2uc ShCW6mr_rsM Q1-jHyQHGl8 X7ME7WkPyC8 cMxPAkZgoy0 hOnolgR_8tc BKtBN0KHq5A J2ugazPv__M hFjIRET64r4 oEUB2LSsbe8 v3bQ1GiWhJk -_Bdf9C0SAU 0fBA7VUZEgY LlJx0tWUuGY S9ryLG-cAHo 4E_jCd4LZL8 pVssi5x6rxI ULLpy_WyJds cZumS81KSw8 rFy2252ierA 7moP2oVrQ7Q pf2q0HemaFs xdMilnKGJdA rXwdnHnLvms MnIzvH5GvOA uPQlrPGbD6k pQ68ImO9dBU 8YMGQMcNu2s UnM6dPbV9Ng w0X84fml-Bc olTfms7kJIk QUP62JKYg2I 74c-fV_AjAQ F6mWKtfNVA0 tkj3klWMn5E 0QoGNA_9zqQ uJlhwWFAAxI vQ-bN0fv4Uw fp4Rib-6cm0 UUnnQwVC0rk xB-h2YkIP0Q dZtW9n3C2gg KYeZm7yCOaE EYpR4aksH3g DHww3Tdh26o GjJzcjwVF8s AbkZAbJqcIA Qrg2m5OnJT0 I5tF_zv73vk yuvBcB1oLI8 F2CVL2cAV80 -ZDt52_mxS8 YYsc7jslsc0 2GGLMLNbZpE dWhKh27tEHQ 2-i06SAeWs8 kbLP4mKMTYg L92EFtI5VxA 4x1rlz-IYUk MC_Wv7-i2Es cA9k-dz7Bqw cU2j_kP6U0w SQrD5lkN18o cighZsv-N2E KZt-mGmTpZI aj71pJABFFU W_WSGHIPSrM ZAF804tkZ8o _pzghUqM1QQ CRXtW09cufc gSHomdp3o2U o2sjOBiBXSc PWf0rLp7sUY B_FpV0CZjxY 8pUjbhH7A7M jm7xE-OyJUY r2e-9oBXk0o LbkjkJzREd4 _W1RJXCb0xo JHpXWiJJbL0 H_GApJWNWiw QVNrihP8ME8 i5JmxPGoM7U 2kLkwWVB9Wg q3kcQHhvOWA xsHeAaSmoe8 n1r4aOeOxgo gd9ZzDgPVFo aMOraCoYToI f4OPBNbNWnw W2z88979aKM exo_QZ07_BU i_qYwD16FXc u-ywf1_Aqy8 OU4AuLhWTv8 6COCjzLI5kU g2h4ycVI7AQ k2ih0cR-fEI 5Nw5r8_YCFw 3aJHkdlvdHM kaPdOgl1s7k OEf-Lee0YnE 8aegfjXaTmY C-c8T2hNNoo 2Nd_TsVQwgA x4oAO_kDHTY ZTi7bZGkJk4 0NHFYpXhiiY zt-zQ_EzPsY 6qAar5htD0g e-6fZ7wiPQk dlxT9ot5Bi8 k9mzgW758k8 ayLJJZh7RRo UeKhKcL5efg l94WdhJc8ZM swcFDa5jYfw 8tnQxuIPgXQ Jj6S3vtJPaA -jFiu3zG8dc qgcQxJuBfY4 dcB5igj1k6w Qwi6MbaOBME iCTkYP-7by0 L2ozJHHf1ec qE_SJYfhUc0 T1jK-kQgdeo Df3535-5wE8 nvnag6ta7LA DxVqAcNKMNk CdAJ9-36cAM dGIyVafU14c wh9ZsEMo0-o Z2yt_J6z2FQ HkNa8r5E770 3ycDiqPVBqo dLc8QqtMhYQ Ma5iacR9d74 KNol4Te8mCs ViWgPQKgQYU KsU5oT6FhE8 qB26s5dx_sQ p76b_u00SSU jsLRdkCMvxI r6AmK5ecvRE _ZiRPpAgOlY SpaZXamzgwA UNvtKMt78aY iHDhfU-N87E PTwqLCxIMiU IwQVcVqDUqE bjUMh2wObW8 iIcbE_xFIuw SKMgjxAgidE K_0hl7Yc0fI qKrNYYuf7Z4 SNCyMweQ_8c 4_3PUB38zJU w_V5UPmEH_s Rb3em4rmYxs _iw7PLtjjow o1DgvimHOvw kmr68ZevIrM nBRTe09eseE EJCaAADpCuQ 2tWroNJp2zI KINtZPTjGOM rxme5eLoK5E iB8eR7GugQY MBY84LUh7s4 P_VgDHPDtK8 vLxUYa47OXE Napj_I8kdHY BfniNOclXKs kYA9hvcLekg 9UMiW3dzW8g Sp_ZkjTIRiI V6TrgQxf3lk VWX9yxvtjxo I_Ld8Rtl-Gc j_a_zvQOrIE YkYypI0-OAY BaSUY4geCtE xXjPITaIjPA Dh6M4SEdLdU ivzvZlKaKAs V0Y4f1UoH9o u_4L7Dx1rIg Rz0JV0WUjPo 4YFz0PJernc NVCvHb1UK_g FK7N96w_3FU lKwghMLo0AY MIpPd7IhPNA eXVVSJUhDmo -o-C21COWIQ sHt3TElCugg qwUgyrgP9H4 CGHuALdM57s zUvgi8Rxl9Q 70zF5FTAfAE TqVLkE4Lr8U Br3e2gRhBZw 1H_5SNtiMIs Uk4tuWVB-ho 8lRysx2QaZg kAd-K7nteyI 6yuDWX2prJg GECuST_cjC8 NBhmNRq0uU8 YCIO_JbmcZ0 uZhJYIZthNg k4sAUqI-y8A aGk88ZwiLRs EyqjJVgnJMo CKQiEEWqW-0 UUPZ8Bzq1wA oe6nOL82mmU c7RyGNzyGB4 t3dmXdp2O0Q uzIEsj6Me9g qYEceRHS8jM 42tGOQelinA 76gNp5rkFX0 6_ZBUhBx3w8 BqcHbcPo7zk Li8ROpFUD4E j2aGGNQW_7M ISt_AN1f0Xw hTF5JMKgI1I yjrwCXMRh24 7PfDjA-3RP4 NerShU5K9Ac IqJSc4WySE8 TCK-ODyUwoM L4kxEO7Okhc PBBZHnc8Jxk YCleI91Af3s qnyoHZa5rrQ HhP2rEHWxCI g2py3Bx0Nr8 z5xRXKOAu-Q BlC3yzpzATY i6XlRCrUvxU sorSQzGGdv0 3l4Uuh_byns 5bBti58el_g JQoNhRN9CiI nKBE3U4mwuY KbaqSn9LDiM oHB3yg1vFAQ N1Jg10AGbGk I_oKf3IEGmQ XfKq2_EzkE4 ha40ifVCakk JfFRCGgpkSg wTqPJaupccs H_CVt8o2GAc HfiKoIVr3T0 K9Z6ZZIZPFw 3TAoWo3kBkw OWRqJA31H_E lnQRXfjI664 wEzZX_MFu4w ZwlQdSE1LdM 5mbqW5rZaCI xyiG9P_Vc7A 8HI62qvNWPU wt0_m5mUsbo rtsis0lgx7k XZXg3WkUGPw PC_O4NLvktE wRCiwDkYtVo gVIdf-kZJXk CbM6muvlHOw gsXRITF5hcI VOgIyusLSOA iMigt5aPvPQ aKNOSJT3vCo LDDFccHEa3s l4Ws4ou6UO0 S5x3QGlo22M cXfD-Ai_QuA Kc2EYuV33Ns 2UrB8TI5El4 cmBN-X701Gg LoLBuoPL7nI RisSaXLB5ok i6n8VyqaCQ4 iI8w5AQJcN8 g-g4vCbZsDM nAK7Uyg_Y7Y 1S3Vom2V2lY vL5LepmOUQk k92e50obPsQ o02NQhYm4lU 6kxFTk_Yoq0 PEOiWoM2q6Y sWd44kgjkeE 4QOA-TyD42o 1u7U16N_yJg 4hAjAP6kPg4 goAo5dC8P1s QbzJtP75NqM smwBZ-3HAPY 6_gHh5IEgi0 SqaM88u082Y 846by3LOKlA G87BCljOeuA khfeRoRCp7c z7OEKs7hAEk dvJqm3PFKLk 8VItLIW2D4g Ab3QDSj2ws0 mVdTVvgW4EM _FurW3BTcjw n3Y6B_UKam0 7ELmyf41TnQ WZxFIAFTfEU 93TnnyxGBqI U6CGGUJKymk 2uyy1EOBBm4 h_JeXTLSCQk sVg5_6gjzlg 5CS1t_QtZOU T37ezlBVMME WyKHdjh7_2E qNnfnI8ai6o VN-AkfFZwfI awPDaFp70yI uGrrtkaWoU8 h0qWin97VyI FcEchaH6EJk s59yqpV0ICo bKkJKMjnYf4 s9FoorJGkrA xZ_GOyfnTTs TuOYe44bL0U 3ExJ909lWds L-xNqfIXuaM SKoj1Its8vo uhH9ewIEbnU M8T58oBOsAU uTINsxfQwUw Cy6I9ydBSWc 7lAIabgWtbI F9puQXwExbY yKNauUKkW9Q yWGL8RTONpM qnp1jfLhtck XFosHLSA03w NvKOhmZA9bU yp1luet0nkU wC-N_KnYNLw W3s4HSqODSE dJcvUGXOMMw zdKxziIlC-c YOuQ9V-tzps 0XZlgVrxKfg g5iR3s9FA_g 2xH234D7lao HSQl1nhi3N0 X3Ujc0YaltE TdffyS619Qw i4zxmn6_aRA ML1hxH1yQb8 e3BQROKhvgo Hk-_1SD1pic B1Y4s89sBpY 204zPTniPrU 5CfzQ1956jw hTdBkXMvY6o FPgDrHxAntE phOJkEJled8 YGmK5uMOgZ0 3YWCnhDDMac FIjtDcICyIE wxRSLer7VIg 3TN3wohDAXg 60d2lmx8LQM BW3ZFYQQXb8 FVTtA6m68rg NJzij2bw0f4 yhjD1CmE9gs 2NhF6zphSx8 KkV42m5wVTk d6zX6-Rf4JY K7bA4PB0zdk I9npL6x8oFQ D_xUviDPUOE 8mZEPgvvd4I Hdh3npiRip4 ajRRS6NzMBU U97UagTDW_0 38jPEmoNjAw qnVGIFPFry8 5Xbdu0wnun4 nQLSbuSZzE8 a469ezsg86A ZvG2Q_KNCOA JQLBuA1JCfg utS5IxGpAPI _dVAPmlzo7g 8_mRYeBdwcc p4TZcBFacUg 4UgTUqi3Xxk fTMY9OkzTBA NJtOmLkUSKs ZAhwNITS1WQ 8rN5CaA7OUI QaxQWGA3wys JaTnlFHOkZ8 LydYnbMzIGA ucqBb8FMJ74 MB-oElVuFoc h0lUVSpj310 Or3JIDwWgH4 Nds71RtsnxY p9Iw3217IRs n5wiHK9V_ss Jxs8p22Pq_Y ZQ146HsyzE8 kTKIACVqDzQ d5nAgnojNgk 4Em53e2p7HQ k8VqG4ftlK0 ivGfI_8TE9I zkR_E8jw6qE Q59V4qwZI14 CmssRVrBMxU 7Ce8fa-b_m0 cwkEbwJR0aM t9_VbtJdDSQ sS8ECvGKWT4 _lJxUhMK4ZE epbmsvL_da8 ZG5aSjd3ejo MATnKRvs8K8 QYtcftNU7Gs yLJU7uywTXc cP4Q_O_ZKWA 4rGu9dMtQWA YqjCnk31_Ss uU0DNCV22dU GDhe2vbzjwU BLIuci6IBIg YdhnqI-beNo mvbLx0pbohk PAkRrp46SBE 0mwkZUkwEHw bFrORNp20Js MMcWHkb8Ank TVPDfLM9zIw EgkBHCLS0cA l2zPMIA3SYk 6hxZUTUMkf8 X4b1jFHAC98 Acmav3U4xOE suz-NZ9GZ80 iWrr0qhRNaA t0hEHI9fcsU 2ZMYorajMhk 9qmOMFvxI2I SIgiRJmMz1A OkiJH2Y4z08 dbu7AfaXHvE 2f2hB_pRG24 IcawiMd_kkM lhY7RZxINlY J-AftfYVSI8 aQobE1tPeGw rLh0UcN75A4 vSCT2CffKDI lYEy4it6m3Y Z1Cv11vpjhQ Kz6J6Y2DpL0 AJWkS8Ja9YA LODjoHqYzyw z-glL87s5lg u-M2Zb_B7BY 1lYlFbsVOjI Cgow0KNc4Hc OzVZMadRoSQ xAmgUnwxCUc 5h8EbDuS0so 0JoIRmQW2es aAkF2Du59Qw 9P-MtbTe3O4 yPzAML0fs2o EQDbDIz1Y0E CiWjwS4lqLY BVrZAIo3wX4 6K7Xjdfc0bA DuGfgv_eDEo 5mMnqYaXDk4 rasqcYuX80A 2foDdTT3cG8 l8kCCIoP1jg 86TpCwZ4FvY xbBD7VIJ4cc TxHITqC5rxE I13gMF50oqE VF_-AB2-Ux4 h-UqMU-MIig Jig6r9FAwAY u-pvs7gVNHo aa2agiADM04 GYPwh07eWok RwuhnfKnTYY qcGEIq1AEGM 4RKjRiO1FPU aDJJBMXiwiI vv84nq5_ZY4 X9YOhb0FiIM UKvQEHlkqJU zeTYlUcrfRY Q1Yz3J6OGQQ t3aYQKl1qbc D6AzQTg_bPA vioUisPavvA xxmnK05iITY HhBAeTBIj0U jMHH-fH6oBc 1SnNjUe_vuQ gaLJooLoKjE ENsr9cH6irs MJNG_rYJPV0 hggAh6GibqQ cudA9HUl6AA L1DsFsUlgwM wNhse5NZgR8 7iM1XM9SvdQ vicOpIdpQVM Vz2OwX1XETQ dlEoKlncQsQ Lbq1U6X78Io 0mT5xT39Zvs u-LCigQRPdk UxIpYfsTkew sJOA_CvMqvg 7ZbYv65cJ1M _9xxKArFYfo oaSLgsnsrBk CMFFeWPy-NM lOR8JBFySr8 rITjAbXej3o hfOL-PefOz4 z_3ODalPzT4 LDWuu8GZnkM X-t_25jG36E 598QZf6lkKw P94WndY58eg hmYIR6v-oVE QImoaNjTtng hAQ2xTr4U64 UoM7CdIs2b0 NQ1-De19txE 7yhDJzI-hjg vk9wMNmKk6Q jsTtWLXjHZM iCfplC1mMoI txbmUDJcF6k _azX1Pr0vkA YHTyGMYFsU0 BTbo7NyijNA HhEyYbmTh_Y 9YFfoCKHAQQ pHB8Z35H29k oX3PL_u2LbQ whCKn6cV-0k y_3OE_uIS8I 27U6dyYE9rA wufYHJkbl7k 1PLIzuZNuJI qe5s8UTNw4c 5KaMqmlEcJQ gS6ibQuZIS8 6yXY1OKtYPY Ze4qFn-a-2E FuJsy0k28tk kdDH7Ynw5Lc xW0Babu_t8U BWMFLJwEVyQ kr5skPIftSY SlYRjU2KBfk g7kdpW2hZOI sIPWv4xB9-0 Tolt_g4y_tI Q1B3sGDIxtg v9AtWaaaShE MlACEw_4JXY Tf3r8Bty06I R8JhC8HArkQ Sei2JdiJ5Ic plEvMJ44Exs AFCv59zRbGo EdC7U0ZRALs 11qpNfXStVI CKMpPpuKLFI IEA7PR8i5Gc GM8DRazH4ck vjMRE5A5tVc ogEjqyO09yg HrIyLLIHrDA bXS1LMaU7TM ueAsO0Gq8vI BgjJ00HhyCQ cA-laLpcLIw 55d4Hx_kaGc t5eRT32QWdg wUEYIhP_9ag eH7EyPs_Va8 P-3iw8l0lB8 MCJcxb_RtII FjKQ2_lTY_c gzyR9eQJMvQ 2MYB0Gp7RLs W6aifznLeXE yq7rSvWzhNQ SfN8z2mHAmw BzeKxlcKil4 ujhnKE7fscw THe7-5-D-gM Jhho1OqCSiY FxzaTk1VwGs HNxe49fa2p4 QrbBBAXBPE4 wtnRz9SIZAY hphPtQjqfQQ gjUN_o1mtW4 gQjGFMTbNxU pR5to9mS2cg rUW2mfL---k rqwx9NRpmHc yc8UHdsuy68 UYpqBY5DTUI xjCbC99HMdo VMO06PHDR9E C1_BoN9f1hw nvRcQGBL7Cw pgae5kDwHT0 W4Zj0uwpIwo yygkcTQjw7s 9cwWiC6Gs80 W2EZOorGpI0 ObyANYT5y_c QZ9b-TPTC_U tpkTStVMv_Q qRahFLj59bc yShrBo6NiI8 tKjyNywkBEQ cypqB_GKzjA 85PCzIbeQGU 1OV3T6GWhIg umIBbT6uwZI UlddepR-iRg GfH27NmFVSw SI_DOVqlJA4 Mr7Ned_vQgU Dd0PTNGBFUM eqv02JDVQ1o mGq0iyW-f7A riXp9rJ90Xw c5zKpr5gmgk 8R9KLz7qDIY e9cysHm38Kg iwAciIQDE4A NLDt8Iyh5f4 oqEm8mihoA4 H37dm_eRkLU DvX8DbtVspE AUBx-geW0Tg tBMAuUeeqdE 2PQw2qw3BDw kgu59EAXbic BnnCQlp2msk X_VSJfHiNPA WERocs57QaE mXLSLzeu-mM hXCaF68sDPU AC9SF7TOyHQ YnsmoUntOzI H6FYQzuVMfA jtHIEO1Zdfk 8s4TDbX1B_s WD2I5Jpe9bk KapEcfMelL4 DMhcIrShxec n0MW9qK_xlY MLFzROHNLmM yBM4SCBZ7qM Tsk9gCcchg8 _AmKz3iZ1K8 MCN-beeZSKk zOiq-2Jpy-U NiVB-n5b0hE JgPlgAnASbY EkE_bNKYqCM TPgdAesH76E wvVrDGmqHjI BvXUga4d3Zc y9ZcKltnEx8 V5DgQr_g6SY 3QyEUXjHzOc lIVO6oEk4Hk uaLxw2PDnmk kKC8076NZOY asNSRS-UbHM yKloyDDxo7g b0VU3j1hp70 xDC6IlQdTLs mcp6KbG_5rg rpWuKoDm_9o npWeWCC06fU T2jMiMTHY80 G_v8xjmxtLY LxnWduj4P-g 53vQBW_4hzw 0_hajel24IE 2AHF50fxTNw 3iZ1TVOskhA OwQCAyUyuSs 8jK3RW6rSCM g95ZXrh2oK4 ah6TYuJ1iQg 2H2c3F_rzqw 1w_JdfgygYY f6hhVIV_LPs VQSA2-NbbL8 GjA92f_iCHQ mh7fUlkkX68 1egkqpDOn2A QyOM1rQ7iT8 cZKYcRqPh-o -CXBIAH4Kgo SBq1FLgZJug ZGM5Y16SSb8 xCQ3ZdnptUM tvj61hwINaE H6bQXth1CEs y03_LmnDaTY OF22NIhPKgE uEV9jxF2tOo wyMDViXXXXU ns9WcZlqv_I ADXqDq5zCTg ST7mR3xLdys n-5bVE4K2Ls 2RYNIbNVFhg hqJxDiGXTWc irhRobBI3BE KQa_SiTfU34 w-A750XbFAo 7tUYeqOLuYU TPiRiwKEz28 2SiwZWhmbS0 ulLxPcOmDmU v3JlEi3CbGI 0Gq5R5ffrtE jGAsihLnYqM mAtmopQxu0o lOgPGO4JnaA 8cQVspzP0Ms b7C69HqnV8s Kbsi0KOunj8 LxXrccK4S3I ruOXWHbyfjo oAheN_ARn1U 74BF0nnqO5o WazcuKEk2to dKPw9-jpA3Y bzGDMtX1IU0 hW_NzisexqU 4GCBqzsWF_M oLQ5NOAIAw0 MvFkGlAqYYc XzSBAvxA5GE 2v0aoYD6OOM 5Q1f6Oij1NQ H177TSRFiTo -xCS0zZPAoA mCbY7cAv7r8 9Dd423YO56c n-omBTsCIDE TyXD96iAjuM Y4HSQKUAPKM 33NlZaZVCgw pIyrp5Aj7LY 09m9ltjwuJU lEFx1qmW4ts t4M3hbVh3U4 nXjnagPujjE rMS4ESFlfDk 293PMWaznLM XX2EpE8SLK4 uJnIaD7gDlQ ma7zprvD7UA -WrDbBvPN00 NXH48hZ6798 bX-o8WaWp2Q mn6Wmceebfc AZtman1rdUw J8JhG2j8E_w RUox4o5J5x4 h5RMM02YE3U mZzkE03B64o kYA44FTePNQ CZRn7cU3UsU utFeHmJ1iUw GiykTnvV8Mo OE5CnBYFkZA EvWX1drAfhg z7_AwjQz_AY t_BSGcc9XkY W1GrNDtRkgE PLPb1pB0vJg P4JGOWnX9VU -zAp8NOpVKU ZLJX6CEkgto 65N3OBBrImc ZdkOLsRkjBU VHz5xaHrCCU GKNv1vjCnQI MMigS6B4t3Q lwkdeQQiCms IfY49zx7RU0 PhbkMQ89QPM zh5VtQ-x4QI Bi75jrN5yDk J4me49IF70k 2nZBPdh9_Jc Ep85AkCkk-U cYGVkLGyGqE wr4rZEPQ09Y p-5nqrOtaug 7DkV8WE7DFA HcuptmqW_kA P0A0LnjsGSA LgMEyrPhq3k zDdHlO3v8Kg zVzeXqLbqug 22bHxTTLcdc 82wvQMuzbow ZMROlNs8iWw Nr6NPOkDbpU nn1qvGiHvLc 3gLU99wxUyA zaYgv8likRs UwPJMQwo2xw Mb1kLqoiDuA 8MoQTjNnlmA FPnF0-VdHNk 4nSA_B8pC_s 7wSQMwlqy0s ooXE33T2Dls 4VKym1WU9go bDAdgXd7Znk 2hqwpvVHly4 u54-0h7QZN8 IpW3LbAEypo 6kk46qE9oWk QhVvJyCaQS0 E-g_up1kWt0 9b1Ii-U2lao kuAwUNzVX2I 2CxV_NKhsgY MPu6DXTG2ps wVAL10Zb9Q4 DQaHIFC9034 y6i9UH65q2g 0D5EL4HLd3g KprKHSAAn7U vVPtQKHiWwM 8-9wlwVvR1M 2YbvpD3WQnk Tw_kFAuhkbI 1V53lOLjgiw f57Vat6YZUI CEvHsuyVfRo RR5kEQ9LgvU _lpIHzRR1xY GUWxHgIn91w UfHqN7KPZ5s Hda6MwCdwI8 V7gceiThJ6U RKt17dM8eFk QEQp25xImoA yP9sbfNwtv0 0npouzhhZTo UZnEqDr9PKE 5X_mnh-S0pU TNVwN7IfVAw Sl1G9Jxc9hI lntqgt5jbjg VV55v_IKVJI lh3WF7shhlM J6i7WPT1cFk 9Ipb0xcxdqk hSe-_6hmDgI eKrrYByQTQI mvFQciz5wRc zu9vz_Krzb0 wBFzZM9YqEo BBXUqYlAK6o nftQNmMRqG8 Z6rYB0AOMjA _UhMIImQ-Bo ejRc7XEbAQI m6U7qRsCp6M -zEXV5oiWgc 3I44VJIIzKM eG4B_DIenu8 dP9mVoZ-cmQ 0DnThxPfhJE smUy5NzszX0 DoqPEhVHdBM bQXJoR6tLao 1fVPS7eLbME FqYJIUS39Ck IV0hoLATbJY TaJeShUtQjc IbkWZDej_v8 vQSkLuEOdMM qgbSfZMR99w aPkfoqjZXog BH3ApQHJslA e37vIq1VL0I z6FcMyuo0R4 d5CmbbyeDco jQPKeltJ-Vk IMYTK5IyZ9E LrIJa8zJs_0 RsSl85y9JN4 iRLGo522K5A YK7cNXMRifo gCnWKrvrCNw xiVeUn1rF3E bJXBNZ7FU40 XSTakNMoF2s iUi2XKRnJD0 fn1dNeTNduk pShuaMA2rY4 YjF4rd3J58U VazRhsh6uys kFFuJQRlm38 -ZlL0LLfjKY ROzcf7QoDjU bhYOGuozHd4 uQlKjRScXww myOTp1wr3Bg yb5FDpFLc1M 8YDVV75itA0 P0JUY_IEZts f0wEV9jySXg us_GLuu2SAc z6ViDZpVoYc ER6BpmtBLkk jot1h4tgY6M 83xaGtnlvR0 3TWv-3cC9NM LMGAxyUnURI Equ4D2mZDHc XcMH5ntEWGQ m946LkLieG8 TrRogqsarno YmbXanCiB-U Zm0f0oFUxVA PwSihgp_iTE hl31RQCC_Bc 5sr-kuYhYGU dOzGnmkbahw Y9isIphHz2w 9C_429woeJ0 qzZegCkbJAw WHu2355LLQc 8koQ3N3w7aw yDd3xayehVg cxRYIDsZzuE 4rzrz48Fa_o Vcxvmi26Kfw FYm6LTv7PKk RonS_bJ7mcU 5qzsQMiYINo RzngZOLn-bk mLk_txo4sYc oUleBi3j0o8 0vtLA9LFkSs btwtChuzeaA a_UjNi8M_bw CDbpKJDcbQ8 Oneax2fARKs svXObgE9fXc j8Sb4-hMhCg 2V_LmUEtPMs YejpJgtQtuU fjAnmRjjY3E C73kXYUTC14 UzPRCUNCoIA 0pbdha7w0V0 cneoNgk9dhM rWLEdpLkmrc yjuTLT5OWko kBI3jfVTQ04 nM1xpUM4uUs gpEiNwKpq1U CNYtVjUf5uc 38mMNp3gyYs N2EC0gAi2lk dEqZRPnfSqo QiVqI3oxdtw H9Anw9hFNQE dgXARu_D5d8 ZLbDKSo2QLA DOeYRNcSjWM gu_ckpTcrBI r_Bdli4c8TA Hc6cJ6xmfM0 pF67F-hlVaA UczoOVtUsDA sNi3hwriXyE TCIgI-AObzk hdrvg0jmL8s iY5fvk3H2Js EqEDcrYPp3U EKLCchi0iCI 85PpxPJ52us wBIVUUflNb4 L-y9V-gpj9U FInHKeP2UoU 9MDbaBqAqMg lRQXQXsXIm8 CoFFpId2-Ak h_Awe6CI91k pxiwqleE9Do r38fEGep2yU 2son-vLime4 SFEc7iy6zmI eL2DjnXT4wQ 5y_SbnPx_cE GIKfEAF2Yhw Bmz67ErIRa4 0T0QWPRBau4 bcAACOrgVKE peBuMWtkw8s y6mlssn2bl0 xCLCNJpKLx8 07YuuA_2O9w AwXJIHFo84c 0CQi2Bb7WE8 zs5bqvL5Wh4 hSwy6UI-djc iNa97wFdFyE Jp9IN_iver4 PHj4OVnU6EY jnoCeqeNM3g 3FOUAKr22K4 q0vvYHuA10U mG1vn39lP3M AwH6-Yh7_SM hl8e9i6YiA8 Np4OojYGixI o4lq3SOB8sw U6tzqlxOr2U ilV5Qt01eyc s0vNsH81YeA VA7J0KkanzM PT3Wpc71ebk VbdaoAYveUA ohnkD-gjNVQ K1R4hHq8yr4 fcfYrTFbM94 iGIooJXEu9E sR_xG8DNCSI PHHgumL4rUI jn4Vhkmb4Lw npaJix_AarM EyexoSJ1tsg dWhFW021gwM 7ocMJfJATEw vROih4weKoM KRfJqmecqUQ SH4vCrz5Pb4 GcPyVMO8bcA YGOmoGwJbTk btXmzToD3W4 zbN6F4tfbgo wTP_SdjD5ms nkmg10eebk4 es83ejXi5wg LIhdfU4RIdo vdyYR85RNkk ktEW65QQFgQ eT5XhG7qLcU 3Iambpg_8w4 8mYlqWefu-8 0BXa52qz-kU q4VIMzhfeYc z_G7CS4mJqc w2XWa1XuKSI 1CJuzTFRGhE 3izQonrYukE DmDtPzG5aU0 EuUUunxYat8 cK2a6BzrUO0 KcPIEP0GpSo OLgi3eAwNGE BtEfmxkeEcY 8pEobIigs5Y -pCVsB4Dghk iOhZLY0cDV8 YKFQfaDL9gQ yGGZUbqbTWg dUoKiRrGu4c yayNXxs76vE o3w6MouV4NE qWOQp-rJ0Vc gFES6-SLD_s yxiNPHXAH0s Eo87byVKgfo Frwrlztd8C4 Bdc_wuMUpP8 1-70_Trz7M8 1Wm5NiRIKB4 bHGyGED8qCc 1-pgYgfRbZE NJe9WplQKN4 b-7IuyhoAxg MoHQNC_-45U 8MVN6SVnO_o 7FK6P0sTBrs sO6DX9YCIPw zbZmKqU90pE cQigrDa8S60 71cKzwJPI5g 6Cf1MeHEZn0 nxnkxubWt5A k39MKOaoDhc PJQgGszBO9s vxloU1qqM_w NOVhlDQthwM 0pfqzjPMnoE xbHSfACHWQE DkVjSKOdczM DOqHpCInxQ4 WOG22C6GDMA SUQaxkWkB0s px2rxAmJNHU hE7Nc_la-l0 eiKSmbxn4UY DUMW--Zlrcs OKR7b6NL6IU _9rqQ-bOcLc wwxjFuoLYzQ UV5zCTfvurQ J-7LezqtuMY LalslCf2kLQ tagDBoX24S0 vEFoOcev00s l0RkrxY9mH8 4d-EYIZAqXc FnahBy4Od9Q LfSLyM9XiCw T5-LhZ2YpGc azkJMOVoNys gEq_wldXBww FOWZ7B1QenY 1shru4620TE YXt8RmeU_AA 8pi1bm3890U s8hKbzuOAQY mszPMVP_qcw fjodt2JnWT8 Hu-xJbVwgPM GA_4dJb-nQg S8aigz2j7-o Jipo-s5DGj8 xHgLwzZ2_8s -BNqJHOxNp0 1iwBRoAb_Cg sRFINj9g1iI C_0W1Q51_z8 FmPwgLX9fAQ SQzC9SO66pc naCL7BZb4Lw LhbPVQUZV0A OtBnQ30-Iio udcb-kQs-GU 0slaW0ARW1Q uYDdBUasjxM nsR0Z8f6QAM 0eBDwVSU56s qlX5rnpp0iA En3JBEKvxr4 eF9nKXO2Zdg ovD51p3YDFk m1HazoM2hOY XYwGKDK87DI tWHVvdPw2t4 0x0muJjYzp4 1LoKbaf2vrU f9qQfURhph4 tyUJnwrI-FU 8nOx6uj46XQ v53yiG9-_xs 9jxlrFSiLCk uQLeZO2Z1YQ 0ezPVizHpY0 lMilbGNSGtI f5mcMmE3RL8 -jiQdqoe1cU P-3Aca5nRn0 zWQIwJsqXrI 2KLf6pNcizk O9zWwhJYQNc fQ5sMUzf2bo 1UpUjmKJaso 5gf0f8WioTM rpZI9it2rJM xrggI-ISIQc Ig5uMkprqEk 05GysooKs0g Dye66uJlLRc pesYeCruSyI LZDir3e680o p1aWpCsLn40 ShwCEMe6wFs 5vZ-SYX-4oY Z1sTQ3g7V-U RX4-U2r4lS0 HLi_w5rCH1I zaQa4ttIyNo PKLVAeI7MU8 5zXWLbr1LyY mgh0nSkIy04 U8x2PcmL4pg 8YzEce7XN_E KjdjDz8jhN4 wAZ6dSIMivk WQXqhk-8h7o 7YYge4b8MBk nPGxSotEa-c 5rkWzIzJiiA DFa_oIuRDQ8 hVGl1d8hRBI lH7EYLWHT4Q FRP0MBNoieY JGB0ZvO8J5k YcR9k8o4I0w CjCmtqPIRp4 SFzxuEm9MyM vdnA-ESWcPs jW1CeAVPhVg c6XHLe94SJA 854Zlz5-vXQ opt5yQqMIdc Tggs6HJxghE lt3h5Ez9t4g mLl9jkYywZY wAE_PelhISM HPjZKKV37do 9hoSF_oY8Jw tJBeQ9Ewo3o GltdSC_5Zzw m9PEvezB8Nc uLtUl4pDmOs _WovFZ_MDW0 5y4ZUMVTGcI NUdXYkBhHkQ 0OKdy3Hpzp8 5mL4wT8DEuU _WWIiTlGyYQ _N1L7UsUeuo gCFBkXA374Y Z1RHhhCqpqs l1SZ4ccagFQ Go6CJ0JVOUc ZFuV5x1drXU elwNOiCaRIs Jq19-ZzDlc4 I6uZjdjkRVg LurparxqlNI u0c_2Mk4rJA ctU1dN0Js1M N2IfyUBU9_M t75KclV8x0U 9sSXNopytKQ UCgvftiw0t0 tX6-gQGKm40 ETchiCkaaYE sT7nVSNlpTE Jz7ZWKumqfQ x03pWg-naqg WFGyCzl7_zE aaaIdkgVahY yTNjsgJ1wwc 5ke6m-Y8DHE EjWWHD7bN3A 6n99ZpSgKg4 nna-IuI5SDk dXqs6yH3KF8 tDW4X-r1dQI 5TSXq6wBPVM 8s2lUiTRbpU QYLjbRd1_DE 8Dw3DomVuwI GjZ2eEcUTrE TmdzJyoeQls xMJFie7JfbY rTBkVOYzVZA IhdEKY1b0tk 6FqUyxVD4qc _ia3xfBh5Pc iKzLZIbUM8o zkRC3GX5BEQ JTgbdnNC5ZE x22ZX9dGaKk 6VdHec3IAn8 d3GeSiD2HIs SVZubVb2L8U s1s6SqHLUQA OOgShYNNtn4 WajS0jEmEG0 4oJlFH_1q3Q mBUdGRqiIR4 8QYlXDYOhM0 RvClpuFmfm0 EBSjabRNztY eWirsPiHnA0 ThbFbz_0qhc CrYqMX-T7G8 Oozc5zchP98 AQkLWa6J3dM JFwhPbsr5RU OvdQYzRHlO0 tYf5ENc39dQ qcVr2eztQEk w6zGX2qpxzU TwQ1KE0CRrI XDI3snWDWuo 41T9HTzQ92w iQ-P3eRhpKI PSvMn5gSLWs ZSrz2g2kmb4 pQOcRJKuXd0 J9aEPBqeLr8 DWyzPO2x67E lq13hsPI-yY r7ApEmhlxro iJHyw2pjpWA ax3ZNv5jqQY h-Ss_FvzZcs 1TGWdRK-Ykk 7booh4V0jaA zGdF6OXr6t0 EB74RP-oZqE -1U0LH6dPfw m0XrO4YJyeI Ei5IEWld1xw L5SM0HY5-vw 77X1yGjjHvQ XURWRujGTNk yu3iX6zxbm0 NYo4WkYNLn4 tM47HMT8GGE Y0LuDSiX63M 51t2_o_H_Rw 4S8_1PIolnY CdHKXmEn4l8 TU00uzqJGKw tpzp6-BkkIU DDClFYXZmtM kymk0SPNe7c vSa0UepuyTo 9xEXh16KupI oE_FGufcMpI 7xMhKadE7gU atNVzztHoUc Q1ACWidWmjo bfgRDarWFnk CsOFvj63I2c 918j6y6IMY8 5azSB3B9dgU Ew9wk3EGlJc -zD7CZtUNbA MiBcK87oWBU ISeGBx2JvGs MH7EgG6Y5kc H08d5DSdT6U KNh81oYmq7A qI-CTJnYdBs 0dbyPr97N48 lKU5GNOEj3Q mryo27tUcJE Yxa48jQBfLc QNCuoEO3jFY WFhKV35sbCE PZrRQrPE-Y0 g7pwgA-oyYY JhTVkpj8g_o Ht6uQH8qIf0 Z4zy9tTPl2c 4dVIxwhMYL8 gNT4N5W81Hc YlF1gLpUZp8 zz0w0KDwhWg xMuWufwEZiA wyzpqpXHcSE 7FGCTdYcdIM yKhHoh_H350 1hag3avWVXs KsmXgmhjUic ZmOUutOuqn8 6lRIgVCdLP4 OnExOgppDJc CWBwJk1f-gs 3uzjEETq9oM 583Eukgz0QQ ctsrpWvUQB4 Iwye0A9pCVk TzpamJ6GsFw S6Ze8IndlBo ZAtw0w5b_1o _o490P6zeZ4 G_r06v8SswA q1QELI37duI zU9rHffZVBE 5Q8BbiDiI5c jJohoC479no HJCm9e0Q2Yc 5kvHTPJfo7o uBAd6Nfv3uE ZCMwz1K-Cso Io1xroeJoBM euCE7LJZxvE 1WA_d9qBf4E 6s_lBln0kzg VBYiVoNwzQo dyCbGaYPSIY UStNNBG5K0Y LGmthB51XUc dIv1kqivuZc 4KFtwqYA_kE YDh2u5hneLE PnjkPSAncPc aY6ZwMZqaBk 0x6usdVsGbI OlAEXT0Hg70 moH3FSt88FY edBNDiSwnlg BOo2x6MlAtI 4a3OH0EcieY dsTyKFkGPuM kYHCKF2WLA8 7fkatAePOnI KxRDIx23Xmg IvwJ-KwPATw YBrFMKQOqDc jla2i4bOfjg MzFCoTidaDI 19KoXOFVCCM ietWI5HT_nA sOxAN1jqfpQ gQ2HC6eotDg aLVjmX-ottU o3f8UMtGyoA ZV7UY6RYG6M O0Q3TOvvZNY ElXKzY-3DoU WoACzZ_FUzs W_Aq6Mu-bQU F0tBvKtpT-I pLKhG9v_0fk PbnhCazvuts rk0WkrT6L1k 0WwbRHBAg9w lZ4ouD3RVKU RQlXH-KzlXg GzsGxfcPyTI TH0d-3NnNUM BKER7E61cvs qgv_7j1_CdA 7rVMT0xklto nQBrfPjwAfQ 5p9BA72SfkY OA1pcNFRhXY SFy70juGAHo ROy7gCg3hJE 9z5YYwpysWs Sczun-f_Uiw OG9EDE_bnws Sqj803KC3T4 nOkJXxd0cNg oD-1eCD7lkE BlWpx55Mo5s qWEaCJlKZXs F-gTRiA6Ncs 4tehW9FH9aw E5KigabenVg J3Uq3-vH_I0 9kcwYNK9cp8 wi1iG6DIFOA izRUBt3oeMw tIZfD-LANtA qZD-BA_Cxus sW1_A07itgQ 9fs03_cdppQ jqvMzCLAE0g uZC4v8_fApA NP5PcpEDjS0 ewvkTkHfJqQ OrxsZHRGxRc 0GBAUGvKy2A 6UY9MtqSMgs QvUl28vA8oM YcT_oPYKOw4 2nrHffYUXqQ gnfJ4wcpQsk LX4AIei6zUw ygNoJlu743w VMkhYJEjv7I gMODOv68SGE iFKyzbCLQQA 4J0fchFqprw e8mmLcViaGI tRwyOQw5zcw --oCWVOBuvA f8a97iauRtw f6m4J0AfEOo 0REROw4SOGc CK3cE7N1pzU Xpy157qTtng XWxNXRPHQIQ cRoIsrSzapo ZrKUk6S3XSc Xm5eKjy5MTg FARHf9b8zyk BXq-jB4MZdU eYx5m_iT-1U G_1jQkCRF58 pKjMt3cBv6g wu-RfHKCK7Y -IIHYIZSFbk 4RsVOfPT_is jOLLiuCk420 a2_9fQ0U57w XrBTDbxOZE8 I6f8bYDvpKY qhgkpZecrTY 7ru6HnpJJP4 1l1qpOrjsi4 gpgsfivrruk xSvW3Gxd-h0 QU677HiXf6M lQ2RStfZii0 KTugpKzfZJk nrqg6wxuqFo iJiQsEZXz_8 0WoyXBXCqdg 9FKgmafi1p8 jWHcIO4y8kk ZHCd8doza2M 0kgLLa9gnsU zFbHwupcqpQ vapcFQlS6Qo bdJt1Mggjl4 BUrDm2GmJ5I AcJq5nGwm4U JLTtgzY_7-Y 6i0sEgnPLms lmqQPyNsXpU J9z4myiIVww w-_BMZo7mik GYJ-Z5o9gUM u31Fyx8g5ZY hiO38yFF-Q8 XFTJJtOtFtI 8hGqSM0OV9U KpM_NyYKwkE PzL7MICU_OI 93njceSaOMM k-RHqxyYzMo UeCpUca9VUs gHQV6AMclGA -qijwXk_bnk x2CizSzk9s4 WquPun-ky2Y _msjEt4-jZc JWLd18_ViOM HOrCBUADkMM VkJAnikGNCQ xJOME7D6-ow SeiltyhdQGg RMRJQL65AqA IWjPXaM20kY XFK5SV1-Pzg X8YOtEocd6I ICPNrxD783c 1PoAz1WNBdM wsIybRQaDE4 D4TfTzW8GVg c4Wls5pZlxQ EOO8TwyVFYI w9sO9o8LNvQ 99-v2bOxnJU 2jgk4c5V3b4 Pn7M9PpQEgo LQnfBdZnLmI _uhtsUzb7fg k1MdKI8kiXU EVIsqHrME68 _NcD2k_QmgQ ELqdLvz60zA Mp1_PuUoSaM AEocciZMBjc HNPyZsPH8TI iuKNXP9LcSg zI6U8UWPhWk 1hyzWfYu6J0 -28eBo0EDDg t7mMEDZkDlY bJwzDAtwJQU C0uo35iCk0A swnHnXKbQPM hYwxyijuhOQ zQX5VL1XU5c VUqea11tvH0 UsonrKXJoas fhgqKH6V34k aJVHnyq7Nz8 4MTf0k1vqTk OMSkavUrzHM 9rTcIUk9Aio Ix8ShPSjmtE 4DAJ2QupBUc 5DEINY4WTVY o6hrLFJq63E kO3MXkSKwZs pbfBzWJVbX4 uxXMshs5exs XO3-PumyjoI 8Q-DUxHMLvg -X9XaNXkvCI b10LyOeq5Hs IWpThrDfQEI tMaXLU_KG-k _nk2ZNKOxCY sXrZaiADkTU 1KPTpxxZJRs 0YDejqKggWA axcECZzlPVI yVAFP91HfBs SRMuzjyoMRg z0bO_2sgBZA MmPU9OjE2X8 Ve1oHq8JIwo kMalrBgdRvI eCS7qPuOXQI eZXgYKx0aQI iWII1mMM9HY U8VDmQw-FAo UdZi8K3PLs0 jyO1ILQAGsU eRqgQiBel8I Ehaogw2TNOQ LoDGQLw_iLM VHsRuDuQKo8 104ZQtfYDso G0y14S8h4ic d9YfIZP8qPE FHDq1ehz_cg kaWU7XlPxV4 VGA1SZwZC7A GxA7BICC_zM keumDslluNk iIUhwUKRg28 BNHVkYhC8Po pv7lZRQDygc 0JRdzrh9in4 w2fpC1izWPA zZSiCTrPiXU jBuygQyZbf4 2COP58ej7QA O31rBYqYkuQ bkeLkORd2y4 zSBXBMVa_Y0 0H8EmzfVSbg r1scNthC8NI mohoyRj_VpU EP74OZdI5d8 h_htCIiCXfE IsKNaQuuL1g HHSAml1BAR4 VNUBj_27Z-A rh8OdlSXiDo cjIv83h6Tcc O87gR6xJ9Hw 7WzJb1l2wtg yan-Tdiyrig 5aBVbBiojuM XOUauBpPRNk PwfZYNFfEfM h2Fbdx7N2Kw fCuYlKKFAO8 9Fj1STjqFDU iso415ggxMg F5Hme0QUyXI 2l1u5Q9AYjM PeFLEFUNxzc pzrbB0XK9eI JyVZgdLjGOo OtsMWS5Z2Oc QQCeQOAVWFw J2vVweGS13Y GiQJxD_bQCI ucuU6zGryPE 3k9G5rq86PU xnV6hJs2Zu0 l6cFM5Ubilw evWlSySuiII iY2xD9VKDiE jCXcE6DvgLw 2GLDqvA6tKI M5UXOwphsLk vrVDJcw40BU KOxmixap5yw qkVImymH0A0 NeTnaYH-08o PSG5uNsnkks 01OfrTMVeD8 0zROMB5cxBA uF7ftHMCN1w 746lMCHNZeU 69bd2hhDLF0 nFJvGENqc20 x63YlKqGZhI fyXyDW0pU7s _7aTnDiBVEQ F_BH945RjPM ZmNGTR9Y7f0 BhSNoxyn9ao 9-NoQwwRDJY PDSgyYfLpdo lYZKtD3RwAw MUlVu0L0A0I Rdxv6jaQZKM 60gXuCsTsPE ilYccsPDTXM Ge-zBQLa7FY HAW15MhSWuM E7fcdG_azPE q2vaQZMf7LI 6NbloMPJuRY DslpNlhAfLo 5ql5X72wS0I n2GAcA_P9Tk TGAHQorruwA fpgKY0I3taA SjfMBu6JQ-0 rvImiPkES20 JupxjoCyrBE A-zeWjOl0rE X2zBKcPda98 6df7al2Ez0U O5TthS_9-9s RKcDDLS3aqQ HnKmwbVpRno MvDNoWSnSsU f_zpkjkB8ac kH6SUxCwXzs K6bTibRdNxE SV6dKGbbkIk GCM5SoA82w4 sb8IU6c5obc Y7gTgzqJD-w 4WCDgJSCQpc -y6RPL5v1bU dQQd6s5gYhk zie94YV7W4Y iHheroBxkuE ZDbhvMyusZ8 JNRFWtS0LlM 8wyhEmMY_yc OCvg2G2SEhU sUad0ZL-nBU 7Dxxk1az9Uo LWG3aFFhg8k vwObck9twes GXumhcRLN_E aIBT3l54BAg Dvi6n89JWUY nELxnSK1SHk dTGuyNnJJFs tsQS1b-fNSs Vx357DNh0vw 03WbdaZCGAA vKMMeOLK9Y4 xrbaFa8zV_o J1wEoCLDl9Y 1uX_OAhcgb0 bLD14JwSiYs OMHAwJjp-YI 89qTnQ_TK4c jfA6jr-y7_A uIEr1T_jZlQ aWaZMXiimms ULCyXL8cTFU VUZBpBTqRJY 6v098-aMBj4 DdGYUf-E48g p6dUf7YRWao Qwyo6C87zdE EJFm05MPSDQ 1y20NC1_MGQ C5pZipJa09s 7d7J-rlXWvc _n3aOgYXQ6o VUv6vjIidho gIdOE4SoDfU EWQsR8em1BM 3lgcViU45Fs MB5PMwcYLqg Mhev_TsgOBw lWERfZYWdA4 KY7hswfdxI4 Yauy9nMQU04 x2cNjm0VUmY b_2-97kqlzs xQ6yM4Dxpbs zdbOXyz1gpg KRyazQjCRD8 _RD0zpFbSmY HLpC0bnO5_o 2cRMH4HXfzg 3bmDhfEtNh0 f69ceThb6ec Q_j14lseORE Hdmi1UbW4Yk 8PzQmtwNeXM 6cxpiPSZHmE QJwdXqGBEPQ iNLZ1J_Gslg c_k5BK-ONiE fJpdVdl29Mw ficjws23Qjk sKHJuOqcvOg 5C7dB-dOS_U FB1Go2JVVqc 0mE11Cy_xAo Kcv1B1aZIvs pxOZAWSn-dc OJiN41xn8iY GexB78wQ6Qw 7kGm_xBgi1k KsZ3SpIoNos 8cAlXSNQeUY H1rttoUCeUg GKsKm9KYbaU C4UKfmu_m8I xpKYkGHWB7E qB78U2aWihU 5rkVGXHv2Ow 1YklLet-e8s 9nvHAma_Lh0 M2_cj-txN9A uf-v_lzbcp0 RlPspkeaFrU 2ZpWLuAc7LE 9UNV2c-A4BU rCCCJ2tXF7A PurkHHO7Gcc xP7ctkX_Nm8 M9F-ZtKswww UrRDXFXZUhw EV3y3ehKePA mEiLmu1IF5E obeGwYOdAPc o3vv1SPEv1c drTH0CDFgx8 dDH3nlKHRQ8 -i6m1i3JLaM wDsYB_uRbaE G4OAR22W7Sc KVu2o2fTKlc ddQniqjrVdo hsxRROsF4D0 x8tbSHuoB9E CBS7b7HPuCo FrGGFHPDN3A Rl-Fx-2zzdQ faEbd7LEDOw r1mN6K60148 9qrDi2o-eEw i8BG2g9YJAo eKCpwUXh_Qs 25CbQ5zMNfU 6ObWyt4Hfaw 3IklTegWKfw KQz3KBKMFg4 iSIDCcqERkI GVmIqRcglvE 7H_6ZZLNsvc U1WzINCahpw 3GvvMpMUwQc oI2bCE3FNZk cr18oXaI02Q n2dBpP0yhUs zVBa2vcgozs fbS0gOz76iw t1-maJWU3ag oQ39ssiQ-4A 52QPxxtu1-s 0Y_kftjPpUc Z1Zrfm1Ylro SoFgHbVPrSk JTJKIuXBey0 XN0tr43oqjI Xt2JzDaHiNM a1iQDKCkh6k 3xmFjLSU7MA p4JPMo4bMa4 a1Bx9nyw35w 0f2bU9SzCzs S7GMNTJa5zQ MVqK6wNkSxA W6qWnmb_22s tX3qqCP99Tw 5ktmcS1L3-A uat-LZ3t7i4 cCpDJlAnHsg -WbsnXGKkIg 5CgpROI6ivM c2HZzrcEbZc wyRq2S8BTVM FwkbHnPwEYc fLWjUBClszw s1nXXro4Aio -dMBMU9FCQU I6KZlznXyiY VIKvQVph07A RxhenI5eUDI WNZNGn_nkOU dRz8OjNEtaI Ge-ilEFgJ34 LeA8ojVy8Fc iASBdbiKSHU sh0UuxRgqgk PMmvUWqeS80 _V0CWwyrJUw B86JJELi5Tg PX-PzFNkU50 Y5oZr-5C1eM oDDexxBBWXQ ePaK5-b1oec 9diokRIKGT8 BhWg1G0czSQ Ua0oqZfJFN8 iZqKmtk6Vlc hZZG0M8zj_8 wb8HFGVE218 gHr0P3Px91c XTLruQ3tl4U avQ9Wvp5wZQ ZwVuw2rvu4s ev_UF24O-oM k-e5rthOQdQ fQmbxg6z5ic nuNIO9LLqYY KGk6xZWTgBQ NPS356u_u08 WJpSAnt7s98 4gYG7purQPk uvyPBpxL8ZY JY9Iq3-iD7s 7iLdxVgHWlM _NQec_YluKU 6Uz7wmX_6nY mfqzWZW_kkM OGXdRrvCW2E jJ9VFThsqtU NFdvt3FQRoQ WXVmCSMEpP0 yef2bvCU2Tw uO1YBHAbBSQ _6G-jfNOkIc fxJ9dLfp9k8 udTmoc-i1Q8 q0YOdmVSceU hVyVNcP83Sw R1f88CiYzes AdjVK4hPaOo AInSCWWY14Q gjRCN-nrEl4 61ZwsdoEI9U b8wlb-8zFSQ Fi4ixdzoA7I 7g4XFGQutFM ZizMOl5Xllw vm29fXJWuOA myJttzKxu64 gwFW3icyEZk LPRHiok3nzs FTjFM9edoD4 3DsoxW8AUEE VMXUsPGKzfQ 1X1shl06ZPo XAw8Qpr0NK0 l97NtEMUx0M db50XeSEtv4 MFvi1YVig8w 0cPT4zspVc0 NAEDVsrKk5s IerddGM-xO0 FEAfMv14l5Q 79hXvDohqgI CNuEPee1qOU 9FyqTQ9ywnc x2yXtHyhu-k 3T-wqo8lamY Z3yJF1FX9hY 0BQZb44R_IY _zFjP61xNb0 5mAI-v1nfOw PnmtF6EqeXU LCWzLnaJqBw r7J-Qx2InoU Ho-Sv55Yh20 EdJRbvXr4zs i_qI6LOc54w Rw-EoS3td0c GHOgErGvyTE AgZbPNlvHe0 04uN57jOg-Q bc84pYZICbk f5e73A39TF4 IqfczS-tx_4 foPh0pXXq-A s9nYXJweTPU A_ry95V0zNw j2u3UksivgA PIAzmZ3FFy0 gusrRGgXCJg _ZIpnWucimQ E9paF0XzmtA yTKHZcQlMP0 6vtpmEd3SNk 9WQnbIVJZjs ghtGcGtVtho 1GvlSPJ37Hw FaWvQNVeDag 0oHT-rtiFZk PJYZAww0pgI l9LOKUiY0Dg gRBOrpdfsiM Fhhbua6ELxo UOsM81pRVWo tYs7uguB_JQ Gtt2ibEe1NY dshmyllg2HE -JERO2LQSKc ================================================ FILE: data/metadata/youtube-dl-dump/2017.csv ================================================ 9riBff-h-hM P94mqkWtfxU _RG8hoGMxKw m9Gg_VQP2zw Ps3MsEdfpAw yijQXDtxgic C0H2SnzitoM 2tqG6KMgyv8 B5goHV7tFnE H9PmpwhBg8w J4ZnYc3tNyw wXDgyuxBuBU 193KvPnLO4I kxvkI8K7fTo G8r48HzrYHE FbV4VCCk3Sc m0etOugqkPU N_aPyfiVWEE CYQXYJIN3Jw h4lbn5nDXwY LQVzgO14oIU I3XgtCzF5UY y5_Q3HufngU UUDv-oUehMU sf1LMw0a95g CJGeUFtiJP0 j4OMpEp-bFk tgpGrfh6gM8 OgqkqYeNbOM km_nixuzb1A w3hwZ-7CWeg o9-cFlOdXn8 YptUTTJjUVs _qbp2nGRp1Q cwgaR1xDiyE pN5RlyFWJBA QiT-jk74QMw _GJG2JDvCes Pm_7ga5bxeI -p4TkuB20bs vsU27J8K3Tw iErVeElswus 4F_jLtYFT6Y gBdbUMTXKIA UgtSRZHvyWY FPpYxPOjtsw mAD2gJTRSbI KeiJDMd8loM GUw4G1lDGYE v8kB6cqv8qM LKrcDYvwV1Q Trx5K54MNp8 W8EhiYDVPEU piYwvMvqXPg 8Qw1dYiaCto axWtCnuctw0 _8hB8umrGlo _2gI4vpq9fo EPj1eq1csm4 KTVlvs7mtkM GfUqvGxa6YE NGkLen8TbHc Csn39S3c0kI Pg_mCxaEa10 7fxvOlQLJWo 3snpAmY2xeE Xdp-MXh84BA bKWBb1_NJe8 -wBOjw_08o8 1nwaifplKCI QQAd5xx0XHc AC9URVogG3g uQR_i0ydJik xD9G6rUq_5I JCo3QW-S310 I4mtL3Zs0Zs wPmgfWpamb0 UA1QG3_VoQ4 sHjCcVC1uR0 bdFo-WtjOmA v04j4-SBv9M PsRTAWDrNYo MWAMJWYNpK8 i5dTE5dgWOw 4GlXOOYL_5I ttEZ7b4Cf9w UeeK-Fgup9w Xu0QBBxHZWs 7HlSKPTYZhs 4JE04So6OqU rRlfzy7Rxdo RmEZwxFSsWE vk5Kr-zV8AE WrY9UuucSUs taf0MZ5VgDc vLw24Xr1zKo 3OFda9AT-U4 vPYiq9JNq_c Iii55E60gfg fPcbyFeefXs 6fJNyx7kI6w IMT0EqTWI6I JT_59yK4Gm4 2IIA6TYZynQ ZWe2pwIiWsk EMKD4L6Peto f0-Ea9Ki7YU hzmZJcPlJlE VM8ViJw7uNs 0zQAUQGwv4A MkKO-Z_Sjm4 qMMl8NYzcNQ vDL4qARSaBA 5wcg-4j9CZ0 rCUNazDU2mg zNMpSVorNr0 iG5oSrAW9FQ gQO9bgOLhmg DxCjqhDD7X4 q8-xQspXFag VOk7mIZRPzI 4-hiooEmi-I xwjw5TFPKwA XarGS1AeEcE XDnXI6KXoeg sN16d6mhe-A aex6V8aGvxY VONBpGWaxL8 qbRoK8WhJQQ VA6nnlleAb4 PHJisUS7KSg -jtzzs0_bM4 tOeINWwKvoA -s52VEAQmKc UkZVQNNzUAA I8gdjJYDJ4o HthNICfVKS0 2jHKPubCPDY Uc2sp69O0uU 7qjZeHpcVtI 7_G8cPqQwEM 1DgOAPBMXws v4X6u53WL0U RwN3A9iBARI aBACy7VwhhA mtZ90MN57TE qLBpHZ9dUZk RvZfy1w-M7g GCdylltS-m8 eFs__fovQyk ZlFVmr9iJjc 56o2aefvmRA 5ArOFrHp9Lo 9Ou3nVQc4V8 XPhVzIgYjhc VAfaWTc3WlQ s0rlNw_cXqI 43nQlnNaU-8 lsSC_8Aqums hMCFlfCw0HA 0cWnOxMXOEo YQJoemnpWaM IJIeGOw5bXk mN22-ZrX-tc M5mJMC_RpNc GoqDlg4px4M fm12-rhW8cU ONBLhIZCtQU tVBI-Fup8EI pQ62TmdWnyI PPhGRj0W8e4 wxiEJrmUlL0 Z_7N4TS_AzA ayq1fVd6Qhk 1YsmGZIZG0U 2anI_i9YYf4 XocJyNxHsW0 PzjOxjO_LuI VkldXV8Pgi8 umcyzRBeJtE PCn1uAs_0VQ r8-BFx3xFJ4 dR3cjXncoSk sR_tidD4M_8 fB5HTcFhCso ORrQKFliVLM _sHXbqFJCr0 tu6FDI4JBDY C0vM89y4088 wa_9eIwrEK8 opSAGkaqx6Y YtqU_6Imito enNm82zd1Ho jgk96izcJbw te2WMrdJ3yQ Kdu22nQNZmQ jojFdN-oysU V11YeYfaxv0 f03hKUGdtzY 06h5HJo7A6I UwvIz7Vdhn0 Kk3XhT9UJAM oOhFc0F3jVw uHltDaQU1uc 6O554p-ovsI ZFXOR2yoWCg UFo40MSG5Ss 276AIPEK_JA iDnE3PV4YNc HlsvFTNrKK8 PDnA3LOm-xY KVbBkEyaoT8 _oLBVF_VYRM bkLs-xLbpNY -r_EtRqgj_o P-M4AnVnnyU 8KuNjb2xEoM C3lLA69xOc0 PK14gY9Gn-A VB_ZrC1u74w zm44ZmISCac pmU6-1I7eyQ xSM_nz6gKOI 7-TZCEyok_o Ct-zGV4TgKY rsuNowyCF0c Pv70ImW-l3s qIalODmFrZk CujcdaQpYWE eVJhlVgr9lM -xZKHX91z9I 0xSSnfRYBQY R66bHMRd6L4 6rvbWWlv_qY Kh60xjnuAhA TgWu1QcM1Tg 2dPi-jM7Jzo Pq9kAmZ3X_k 31ZrzeS_ymg 3uIw6INr36g w4GgZsdpMDA J8hfrE2LBSk Wx98L_LssbI QHcl5XE4XuM P7J3raOVLNU B493yqCgpZQ 516x-cH_Cpk lUyHKva8Wfg cmJRHlOcTVw 285xhqP7D_Q 9cJ1ZWXeOXg TvxfLhFGRzY QwjfMOhKcTw 9ZmqIpTPFmM v7Z3aLND9Xg Fq5yX9ENZh0 9F5v795Cfo4 FRvhNHgU6fI IYHAqyiQ2i4 PcyonXZoHfQ s_B1ul97bfE Dv-ibHmFlS8 qXu7Ts5FWqA Ir4wUoK_-c4 vMWCg4TNWIg JKbrP4cjzo8 4w6WN2_l0wA pwuNGRVWB9w VCLJGenGyB4 QiK2W8YshS4 mbRL9NE5NXk ocqy8r8rDI0 VpmnPgUwVO8 uJ2RTDbq1IU vrluM6pe89w NTTyF1mDtgw zsmP1h809F4 Ik8q8LDqWiE QHjr51lAne4 5rVB1DFakzA lQLchoQRlZk Ae3HbC1X-_A mat5twjYjJ8 9fHiacvqXLY zY2G4v0b5IU ih4MIVjS8yU cscOz4NHIWY GwowcP5KIIA 6U61OQAOe84 ToI9OHLE068 uJ_dVRo08Sc D8gSV_8abXc 2wN8f0ezRS8 TLOD07LZw90 fWRkpKq-9f0 3N5u8TKtmfk 64-EdvBcZYg pNRl-3kZPzY jNNX5a8ogr8 ftOTPUX7vss tuh3yZXagYE mPxP11XFKcw aYNntWtMi24 dyupZilayXY a7dRLlirThw 0mRRULBvuj0 tStZuBeyeok JtgnLYdR2ec mMG-Op_PPEE oUXKSovzDMw iQrYqaPeMlc mu9cObUl8Gg UIKJTZC53hY PDVyr--ODQs E-gwIn1O1pE 2r_EHD8QVYg oeKyva3fU1c 3oQd25IcII8 hgQC-VGKUHo 0fAHVLBuwVU Ro4xPHjRH8k Ty0O5WKbLkU 8rSdR6dU7KA Kmnf2USgtiA wPw9GesZAcw Se3ZAXB8sU4 ABYeVd_JWss 9DmxaUyjKTk DDaR9vzYJWA 8PB5sU_QcUc YzCruCXU8Xc 77DXn43fhVw TYCfoxmY_vg S_l6py_n6RM nqJIAz0C5Ig M6W-zjN_LYQ BvS7NWvYZb0 t9SNzY1Hq1k 0qzhcuRwBnY 7tb3_GWTIaU oKW6UxOdICg lKzUGYETlU4 7jXZpvSkCaM -LfB7USrdis 7n9xJpld-0s ZnxMS3Nf6Ws ZeuUMdNQTHQ kHAHQMb4Lmc 97E7Kft_bno 9hNNrKNPGVo ermD7PGA3Do aiiJ0fBFjCQ 24B-_HU7NLs Zdv1_Iimmgg tm_W36kWahM g_C56llGC1E 4tMdFDBXDpk WShQx7lNPi4 rZyjko9lXo0 HCRagorblVI aGE--b9ilhk 7SNohNGz_f0 wz0UlSqctTI 97gMDmQV_es nvCEzZ3P_x8 KS1iOmeMGEU gXVvoSa1xBg 4iLKU2WRo4k KW7bMwCb2_4 JdWS7JkUno8 o71CfblYCqI dIx1J8hHVkw ArnlIuuyPJ0 rHYsSCKGZGo fZMKMakjV_A 7eYTzvoxmk4 _sMqmGJObDU inMPeTx6hoA QHTbbfdmYuc YDBqQMQB_ls pUtBYdlwUNA mymHgUYBTfk hfXW-z1-aUY qlk05SwGu10 lFzZCgFxUSc WDrQaK1i_9U kJg9uBKvDZ4 Qx1wXZHymV8 fhCVsKgC12w 636QHxJvvjc MsUXCqHc8xE gw4boF1v2YI 0xHPBlFPCwo o00oxyBzsb4 ttjmXS4de4Y VD-_YgrNOk4 E6T4nHj8afI Q2P2WsgH6mQ T6P6Jyhmj6E GGK2S2wy9sA TgfJD9geSac jakEl-SL35c 31XcssmnGvM kidICVXLnRY NXedF2XcFkA MX7c3F1q8UQ kNAO6eHuCjY poVn84doiN8 5YEw7F6ri_0 wTLo8CdhxGs s9TKR7rSFfA c0XTkj3PIWg Fr6fIMIc_Jo 05foBuX_brU 5NTDlhH174M fEwSNiZ3zn4 ra9UQb-OVqQ OnJAp2emJ4U SwOfGb9QwTc _yxKJaVk4kI N35FsMxEmSc 3x0UxzeZBso I_X6zWElJdw 2EQCpQbUrzI lQhQeus0ItY eKCkxzJFP5M cvNjYmDiV0Y fBNzgfFkvEo ahxDiseuAak F6dN5Kq5NZ8 JIkmOqrneTU 9SYhu10qJ-o aiWJhEMskMU YqRwOf0XHUg yQ7JLXkHq2M 5W60oPaZOIc EntbO16GpNA w7DIFgkIh4o VDGE0RPwLH4 DUYaGj7RBfk Iae-A9s8Nk4 cWKL1gFCS54 CaIXZsmUl4I qL_XE00jzXM e1BdvP4zenI Yr3YqpkoN_o qQJmr9kI9uw RAqYpOzllmM rF9Z6Hvmf5M FRSfDQyoav8 ILwJA2feDRs z2PH2-yl5Ho RDBywHkU6Wg eGLC0vhemeA O7z6rV8Gdbs 0mPTGVoG248 elcYyXvJF7U EXUzqVIocHI OpAEdqIIWpY KSZN8iThGZ8 XaI13YBdi_M r3fnCEjvPCQ iwGU5hY6stw iPgcg3DVoUY m-PsCZ_57MY zfUzaYV1xfE V022pMeqRjA ViF6HrzoOj4 _SdYxgbXnHs 32QcvEuJYFA QfATkY6jMtM av2VWuMUFCM _s3bHABazDA jirWCRbgK8E Tr_OzL7mupk 8AXEzcuMQp4 WyBvHGU-djg qTANCNgUW2Q ie6rKW_Giqc 5UOJUZhe85M fpOQzt9NtX4 BNgJCuwM7CQ xchco5BLMQU 7oOKwZlj4VE 9WKilpdUoWQ 9UslcBJkmyc 0vI1R3VEREQ Mf0pWnkN_vc wZj44nizNJ0 ccH057kbWTg WG_LG1CfsCE -U9v7Nz6hOs xmzkZ12GMAs pZRDwBXv7T0 uUEpwPiiGco 54x4n4FlV4U PB-KpT4zhWo gsG8sEK2md8 Vfi1V_SL9H8 yk73thpx_B8 QO0gZrQw9KU 8le-4mOgJco pmqBmTWq420 VGhUlUHKv7s 9IYFHAnqOKM FjT4_Bi-F0I 2rFXR3_DeMU dcCsAQTY9lQ 9MhRoo23Wak Qft-ZvHFfmE H_xWhF2sSb0 QjEfREkwJe0 zpSLlRt7KGE NONRLC7wAlM 9d30_Y2bF64 y04Q-2-ut0I bm3QkHapg3Q E3lprGIkEic Pj5ds2Q_tJg 07KUTJpbNAQ xgkspBFxLi4 fCNsIYsWjXo 3WfRT1c7Tz0 EYKOpaD_s1U wn-e7FlYRJU I_TkNxwnJiY fxBoqr7OicA zmdsY7PIJDg 6ZgWwouKUXg VCvOWhT1TiA cGd2BBjzb0Y E2WZXK79_d0 WM3TedgbwIc Ufv54teYXAw cPfMxQLlirI UinILaRACDA _dEEXgs7T1k L5Jg3OVjPoo 9hMrzEWpZM0 FQwv6AGpdus CtDBcCXiE3M cXm_h4Zdwpc grdxSWSHJaY w8mbmSijd4o NyamI2ALbIA 15WevUMiJI8 7rJZx_l_h1w 0NXkZZqCGjs uPS3iKFXKR4 bx50ueZJgns KsmXx3hB968 RyZ-saoiIzY 25_58Uww0bc j8nLPMys3b8 UJ_zLBr1NxE XTCEl_MFfHA AV3CrPe-1q0 7dtQiqaxf_o 1Ltz-vQPqgo Qch6oK4qX2k J5KvaQzBDoc xd9K2o_ZDdU CpAVT7Y3vpM _1fHeesAez0 MdfwpCH1Ksk hdnrorjl0WM TPDKmRQddq0 Me3eSvA2K9k ZKfVrsrm_ac yZ773W4UICY KXMOURHEMpY bD8jQGwyuBU vsQak7aKH30 rW1_EfZ2pWU hvuQCnADQRM r7aXjBDUk8w ZmKECCbMc88 9D5WsQNIAcE zZcYZmsSGs0 I-93Ijkhy4I GYexCnV6cLY 8CouO6czPic EqNTVkdsTL0 VAnkBQ7eWyc R1hh6MVyQYg 4mMrCXPCZAA F1nejgJdusQ uqS2-v7iZr8 KFwzRnTqgDU T_pKvfMT5ck 8RuMflmyF9k ByRXX8KHS5o XwFR9NZfhUI jR_kxdUm1bc Y8eSWYGZXe0 NfDBhc__ntM 8e5fzbsfGCI XQEr5FlhFDc 3ghKgAcPBC8 Zxlo0xmD51Y iRdSH-u1wWI aYSdnLgl-FQ NlPC4ag5S54 abXL2HrEjyE xs8jGY2dnCg BKYpzJIAkeo BSQeVY2fdL8 uFTd09NNJzo ZCTqZhZRYl0 AvDUQXknug8 5wErjt1ukFE JIRijCir934 0-Whu5Hlbz8 5JCbdlUra28 1vhyMvNS3Ek MhS1b56Koxc KNwhBAOLCXQ giajSDY8kCs kwvSRZG285g B46nugc-4c4 SwarL21fqj0 kqFgnN10khg rM5Bg89j9qo DSO1F6sM63s 6vAYIYN2Iac j0IXQIUh3jQ y9NhqnuoSAs dQNrOoc3NTA Sqnrzd0HCRY aJZL2uoPRZg xQyVBxABGxw qeaiVveZWD8 0LArIo7OUJ8 BH-EprDz8wI 21aXGNHDBWQ BJWR0io_SuE FCJSJ2xtky8 CiqtsKGMblU 6-IGOKWYCDc GoQhe_ntnR4 Y0TF3T90a8U IE_d_MBVR6s MfKGLmjlyLo 25UjaIMN-rY 0LwM6-xXVQU lFet5R_g-vY oNtGqOsseNQ 64cRTXIxwws FeETSw95wp8 P1bTMEsYPug a7lxoNJJYEc 1A08em6Y-kk PSpIMEVCsV0 gfmtB17vowo stqgd2mbvlo 9xbk-7HBIOw 15wjOeT6Qo4 Qj7OIg9Vc-g ocXYjytHb40 UiHAMypGBPo 7WkMxJKKITM UjOJ-AMtAzY Cf_0ggNhHMY SrqVUFbk_sE 2g96QnNekOc vFPRSImZev4 yJTucB8fH04 Qt6F9WCle9k LBLIa7bqcfY 7MWts8-_LUo eKxv7whkFMM Na3loD5Xpew ykcCGhbl1H4 0lCR_c5Su1M zOHL9JZPELk OstLbMEQM4Q w9-ylaUijdc 6WX8Ct4xMvE crZlpaRXKFE bplKA4fZ8dI CsXhHyDeJO0 C77hQJ-zDeA VY50Mu29LxE TprgpfkdiRc f6Oo9vLtKtA kpufOE3FIXA dBif8nb20_g g_TTG6vhg_4 8M0uWmbBrCc dLxHFwfWIcQ wnMPRSiIiUI k62E1AtOYnM TqivtOAy2No EAKyvP2Rnqc LK5QIZgbfZQ I8-FxxgRACE My8kfz_Ddqg QAiVcQifKfE I-6XHJFUBDI FnFMS11g4fM Uc--n6RoIgw VPeXTe_6uOc C83hfoyHHHk H6ImGh1Xolc 2DgFlZwrD-Q cn35LhT9zBg LSTU_JJcJxQ -OUuZojE3aM tFEKMdUMjEk rC9MhZGgJy4 DpQHj1R8kXk lwruhQqFttU EiYxgC78ScI 8hWbptEarkA U-Sqe0DN_E8 tg4jLJ6OiDY cOXVnmVPdtQ BhHv3Yxcuro Z4ScRG9SDSI BCGzM3s9-1o f-3Bldu8BJ4 ALw553euzsc nfFsHF8guzM vhhiJqQBMMY 1xhIWaxWINs vLgTWXjMlWI u_n1SEwWmYc 3B40Rhnt4PA wXQ1EhVW2xQ 318L0jBVIKM CHs36bNm7xk SzVC7ErC8RY u7yQ7qs6Zew 7URRIBRCm8E BG3bNlh0qiU S7iDxRJpDZU V6B3elF2pYU DefILRrX77k 4m15WAC5khw JWbqI-m3A3w 6D64t1trSRs z23vdob1grU ahCg__rBh1Q CLWCgMVf6U0 Wurqpe5tNjA 5PsKwqiRjEM geoi6Sxyg7g vrhgkmAzWvo iAlU6xt7Y_s z-4DtLFGzG0 l-GbvgBXi18 5sMFxEL3zhw a6--cEjo3bY FHeC_tenzrw CEO9YAsxMfI SW-1sk_U8vU X1ByBEw-WxM yYQtZCaPFaM B2zzhcU9f9U ahCOQjOPTZw qJznSue3tEs yHw5A9BAZ98 lKqBsgfSSU8 IegMpeJM1QU 5rGPKIgdV6A 5d1P50L28LU ox1SVCutwv4 6ZygVYbMrfc AoB_mdZxNlY G76ThtqLvWk wHfXZ9jcX3A Z9kPRWAjSNo Tr3_HOXg4Ug 4FkUmPvbDQs v4tdwXAnFnU xIeyPrdc2Yo tkNKZ8e4aPc Yaj2tnjamhM V6W8AZMUipE l0CbM-jK_eI VonhME1FiMk -Q6oYNUhNes 2ZyxEFqlA1Y wAzEOzfIX_0 DjypYuuAvDY aZGpjXdKQXw 3a_nj9e_5bs way2bfS3z1M wDfgx1Cj97Y oymR3xfYh4c mfP8p7raf0s tpmqajLJQz0 Pzk9hsEacmQ Eduv1gpvg6w hN-1U-g15NU RbU9NjiFLV0 6C3HDhgTv8Y 4Mzzy3KQNoI -FDEcmWJ2GU r_SuoUET-ok J73K7gabt-U PXEJAEDVUkM zN8bZ1JjWWI os6khU56n2g QD1AjTF83ds vh2wmVvFUZI bI1MOyt8dXE EML4kWiax44 nfteV9Dkml8 XC3h9PPpQtI _0No4OkGHt4 B6OtAXBRTSI mCO14xw1nJo BGHB4Eyjqt4 bnLhMGzgfSM 0noY-XrAJRg m1JgMM8b9_w t_FRWUPcR7Y YSrOLez2GbE q9FYBjSc3cU k96h1dYQrj0 IxoCv_JpQVs -yPwW5V4mhI IMQADg1Dp9g kn8k_ox5OXs lMtWWls4oas f6F6MzMT2g8 ry55--J4_VQ C3J1AO9z0tA zZTH3HdE8Sg s_7PfocHTmc XLMDSjCzEx8 Tid44iy6Rjs 7RJnMME0XAw UNYBtjHAuSA Igs1WM2pA54 LWIAWDjHhx4 8HiCEPL6oa8 jPRiyRmsLBo 9qorxa6iMm4 tUiVEKK8rWM DaWi5EoJVGA Oh0635HLx5s JY4UoItJ_lA 9MSGSOjdViQ 3KdgZgQRDU0 tImxhYu2PG8 r_3ofu2x8qM tlLSqeVA_no cCwn-ROhwyo 8cGUULb2K-0 QEv3zzKyiFQ S0IfbNVCoCE 0bw8UM1eLFo PvqQnJ7Fvz4 nKDUDF3cgRA 14nilke-mtQ BYmHra1d_Nw r2RzBizjKT0 08NzJRNAFGc xxulNn8UDtY NePF08sMSDA yMiJp1nYlNA nkuKrymtuCg SKDX-qJaJ08 xof2LkhAFGU EOyAHaO7lwA 3wqXNKYn-fQ OT61p6s77_U n9hjsuaj448 y1OhC9h3flY 85O_vS9vSCA T31h3L_egm8 KJhlJ8p8v7A kBwVWrBk_uo uG_KHjd_PSc sLLp4bO6dDI 4TsgjtL0Qx4 gT7MQhe8gRE X4jdgckXC9I UVXRswx8I8g CoQM9K_r3kY b-w1bY8qhnc 97qWmPkODZA rDnazOBaF1U wEPZVYQqdMY 0IiCOhajpS8 RsJmRjseSzo Ak8uiLVkpy4 d46cDtFv_Rw wZTaXoogvDQ btfIH4Q2BQA bY-jTccddQo ty_jbbvZDkQ 1Kk_oah-wCM FGLxQHJ5NEs 5tz8013avVU vKcEalTIwfQ psW7sLoNutA TffPDHIwQtc 9OMdSRrUdy8 s2QlioAboes TGqv7BxCgYg gkqqhFre2RE N5fCeYm3-rQ OF_frDHo_nw ei4m-fQ0bak qZk2O6OlYJo cKUwdiog-n8 Ujm2mTIaGC0 uQpHx3lBGms JYLVFSmlNFs BXNuNJhLWyw MpaMbLDTxyY 0wTKzzRtGqY CUzNygPSRZM XF33SnFIDAQ 4us4K3KLRM0 bPH152eXEfU FiVYtNf5Hos ovPXL1WPTMA 1CKEXvHN9es q2EU-k9I5yg wQc-GpTtnR0 q_u6njqBaB8 MvRfyxGjA90 Aks95ziAQXU btk4Wp0RssY E2wr_tRqNZQ DzQjdpw73ZY C1PilkENI-k 2dB26bOiT4E 8i7z8cEA4IM lMmTZ7oTDRI P_Iz-WhpmXY jF0RYgX6Hgo h8wzJimC5Zc uSCNsJDEf1M NUmE-c4ym40 Lk2gIdLgwz4 qqZPej42OkE jEveVtZmPu0 FnPOuK9RHH0 5c1qYWHkPEc MucDLDFYNDE NlREC9TagHY mGAaR9KKszs 0_0U4bhe6ag Rn0Qk4aHYfs CU7-qLo7GPo A0FwoprE1cQ j_1k-SzcOrs 89FuExOuBbI Wm_7niZcI1s CeE4xdFmuVs Y9HqtZTcTJk NvKYxRmWYEs GbOXTIymvqc RehVwEopIQ4 o-kmndqHfF0 Jou60MhXBcw gtngV41jpcw b1MxW8nf_lU Q_GqOe9HFRY _kGt7Vv2Pyw lMiVewLfZKI P20hrE8pmoI 9di5MvVZb1k 0ePC0mh4rCY WlvCTpjwaXE iwxe2sIgQL0 6l0tsxNujWA hjuvr5uGA4s n7l2RLvI7Ss q8woScnBklo lKh7qSp6zIc tNuPwipxx94 QuZ_ak2qxeE FhXn_kxlWno D143VuAxr-k 2NR-tebGw3U JxbvOwAB-xI VR0NIF6PbCo yAmTu-R5MQM POu3JnhEmT4 8RGjds-aK00 6oqDO7aHVFo hdQOL2aFufE Hl9OzCY9fVE P27sTXSGrhQ i-2kXcQgs_w 003kLKX8n3E 00I2Ofraf4A vhfk-aOAgIE f4wmj-Nq9xA VxKyoOxyrdU LJQAKDbq0hI DkGLIu6lnT4 t80UDdbV3Mk jn_D02Tvr4k zYTsJkuEPWQ ZDbWeYRT7wo 0RDDbfd_K74 -Ok6Y77DeNA n_lSwXF8wfw Kx56Aefjn7s Z7QbvD-gd0s UsBN2NyjX94 S3phStzHz34 M1TkG_zlh6E FPtvpjBEEqo Z2eTW8qZBtk -zNnJiwo_5Y 6dDbnwQlCek QzgJIF00Xdw JsdUzN20Sow ki3zzZ-GsGI O3-W1ng-UWI mTYe5PvlRno 9f1adgpyRjM VbBi8ZIWbUc J_wbvP9hEFQ AEYh9Sh6kk8 rGtJbW9sRbo UPhZaK9jxYs xqtbz-pVp2g W5-oHwzdWos Z9zrMe8Gn1E N6bOUves6hI X8qBorenkn8 2NkV6POGLOc BuN4WOVbk7s rlXKgVlILbM Qgx38Vxw7Bc 81YXRcpQSpE Lurs1FzrSio ItDFQOAqEuA 0GGOfY9uE1Y WNUJIR9y-N4 8rlAQ3q4RDk soynQCpGMz8 lPB6exj8Kgo fEA9BJfaaYA nhvRzLcCk40 E6AQQLVI68g EVvEtTyJYCo isct-XNu38E 5RGxUKhhRWA 6Tz9krF1K68 j2MbvFYy_8Y jVH_NN7phnA BGlWalxUId0 OqgFY6ZhOfQ SDq_ZTxHLh4 mOicvmEloyY IrTJjUQ_xGQ 5U72xvlbn-k 9ukjNhwdbGY LiAiWknkwcc XlEkeUg2z8I kOfY6wIKT40 MLaMV6zQND4 tskpXGAJMhw V9JniMBfW18 gDOSJkcKPbo MrWZWfsif3E Saz3f-zPYeI T-ELiRFK_v0 0zImze5PCFg YCiimJ7d2Cs DII9AQZoUTo a7gZgEpgKiY oyZblWujofQ vUzF61mtilA iRIIcZuSiBo V8M4lPWWr3o tRRQX1SXcMM WThmGeHf4hA J96X6ei7LRE tF6XBuvWdPs Irf50_-vVtI gcGvs4dw9CE DV_eqkGxAa4 e0xPCas2tHQ hoe24aSvLtw d7Aot4Wr-Yo T5rzOU-4Bkc 7Rx90r--Xss 1iOnKJA2H7I fB8_lNQJ-JM x5z9VZO--G4 bFfnDQ3bDfA pJImKCcPIsU lfKcANi5Zrk cMPXArN7f9k 8R8mxS2E_UQ Pk-vHw-mstI c_u4oXd_Lfo fWx9V0xoYsI GbQy-0SzshA Ov2ErYiFemg ywcKkb5buJI 9yDL0AKUCKo YLjwEodCmT4 kJ-UZ4DvYBg ZJF_1LQbKiM iewhzdra0DU Xaj3Ohn7YrE NsRhhZPAGLI LtFw6_YJiFs n3YqrYcnfpE RY_D9rFoWLo 0EQXnRlIbXs NJQz-0F61yA bBHFfXCAPLc h5nhyFFSweU GRrLWGMz5XY 7bCca1RYtao aU9RYKxkRJk nPeH0w6ZXZM L7YVcnBbeeI sIY7BQkbIT8 A7gKFleV_JU XBz2wuGU9Cs YEv7cVW8hBA 7qNZYicSJPk wIuKvNAGsH4 sPbOZXWbYNI ObCiRECeCdM tK4GDziddRU _P97eUT7NH8 z-p4LnzhnvE G2EcYJ6Zjrk pQX-KEXTwmM FAhcPXtCykY DTNDgoCP5TA 6K-d8DN3wDA SNHn_jgFxIA lXS7GWgCBWM T2SlDOf410Q jKPc2IbQQOQ bmIP1NM8GwU p4lBFrh79OI twPxMYSEJ-8 QLXSp9erPv0 gCF11he-_iU PywpJSG1dTM u_nHHDkfBWQ LyhRCLswT6A -HjYVQXvxVk EfHvcHYz-tY lwH4vtb9GA0 xM4-RnBk-9Y mKLjOr5M5zg FH6ODEaH5hI KXXwH7C3UjE Kkg6cnUZ2vU ONRzdzRMVsQ i7QDt-z8ZjY oBURpv30IkA MqIJKnUkGLY lRlgx_GFwyI 81XTZOlNHEU 1SkWbujEeLM dAlYuokC9R0 9fUtcVIlocI KQDbtR9Z-zo Tiz3eN3KJRQ eL62rDiuqDE zUhsEXaj_oY fmRWWrBqiJE PkCxda_9xRc uE8yYJmpxeI JX2gQZj3-NI dkjBBdHZNUs 8CZcZ_b-Cmg FT1C1QdiMhw oRe8EuewinY CL3IXUZKbto nS-0lfCTcrk Qfv31xWBgGI BGmXnidRtoA n4pUbyGBD18 eU4-wIieuWU PI35KfPB7nM mbKiHp_ljJY LauRAuoFO0U A2yqIm58ULo vEj9ZwIzk44 obnODOdLD7k T8KFieVkVkU a81pNygdAXw HIBYaeYQF0k fFE8_U07a5I YR4qgOi7VQ0 FYnYxm5Awfg aB0ABzNHvAE _CuZqXrhEZI f86_fLGHu6M Kkl4-30oHVU a66f39DMwtY zkWthOfGYgM hbDdiPNS3ck qVzY2wmo8C4 BR-kA4Jnn8M STl0s9g_FwA cmgeSY8YdO4 WZNe0TD1E-I PBVW7az0PkM __f2KtcXAxI tDlL6QWvKNk -KVNfZo-cfc xcfYbwSXFVw QyvbqZqQ0xI Mcf2hNBzwqg yxlXYm5Uo08 yaoCvjqu_co ajm_632U-Ac RFAiq0Qr6uQ YihADAPOCWU nS1ePEA5XeQ 8DrF70mcr38 yat2WR8Ishk 530g3-fuGGU 2heRUn56wrg 4qseBKnxIpQ 76pNjmVp58w B3thiUpvzKo 40JQrUnvKUw oQIubudKQQE pWt-GnERki0 MP414NY4kfA HAal8jdk5gk Kxyzb8LbVKQ 5rOdGpkURD8 IurXrQqZufM 056HlHORCIU Tx1mcALQCFg Iqiyy26sW-Q msqRzlYXXQE w_5OidjXy5o IjGKv209gAE W1c-QSe7uU0 oXpKBkMq_OM jCh_3SFr7M4 HGL0CEjSHog xrO8AQ4CrKk zNSDAaeIh7U oezKQEF0deY gt6_2qd75F8 A8BfSnbFxj4 4koPfEQVo44 HYqSugRiG5Y gjjJePytKig AOVHdyazjWM oVLfIoIujHE M8yhM7zXdSI 1J1osn73VYs wxV84RoUr_U XlJpElakwP4 bpNxVXA5dcQ 3bHDHRxatZg _GAA_LvDQMQ RHVyIHN6qOE VBHqNEADzfY rzC1mABvnao x3Uw69aKF-Y B1OK0eWfDB8 -48m6UiKt_0 NvUnzCHEfoo KwZmZ6mybdo cFl_xXXCo3s lQdx2baN7Co 5KgptmAR3KM jDD8IQgUPEU 326RvY72nmE wt0klpk3tBA vOJ1HPBID5A cE5l32W6Oxc V4UM9BrSqos JzVCSXWeNnA a7XZaIy4a9k -Svsz19yyPM xz3nif1TPDk ChD8PRF0hBg 3jWrsTACVn4 IkVavN1lo9E 9YgorDRKoEo x9mLSJS0n3Q uhkfz535fR8 PXaE-weoKCo yQVdwJcerjw Ra7oqFqj9uU JSX5qtBpL2g p3ZnaRMhD_A w_92-vVfgrw FxvvnlcqLz0 Hln19l9RtWg BnnkcdH5v14 CY5X8DD0ams 1fp6lBNB7aw j-7pVks8avo Tt-GdLwV4dA vZqr-1GJIAk oiYBUM-EE-w U1GUJMTmoMY TzNPYPp_v78 D7tCnGstwcs sTcofHd5IlE wH-i4ImreXs MZXC37sbqUM GI67NK5cmxk UwfFWXUEyfQ b8Dv782UIb4 EnfAVLatlmY 3EeGyS1BOGk YauDSh8CfwI Ys_zYL7K3KQ 3pEtiCv07Yc vA1fVHBWuBU corlGzKJqAc dUbNFv_h6Kc dudDh8KZiTE BrWwVhnztcg RZdQIbRXNCU 6p-S9nS21Wc KaqzKhM9-nU f0sDG0nnftw 4G6VXPkfDvo cgoMJXAmLdc Q0IQ3GHGXdM -2KGPYEFnsU lCcWPDXqKi0 1eSURYocFiM vr2jJkcTcxk Vmo12BffgQc RNJ7CL89IFM gTt8yvw4MJE JCGqUJddlS4 CvoAG6pgdC4 VlfBJLU-8us vAYzTJIog1U -arTRBtT9d4 QHU65AAx6uk jNIMe9C25BY q_xuviCDyCk v7tTCb-WU-A g2GlXX8nFHg 6rbUAMnadso NTvvUL9OgLU z4NqFwQCHQg Jf_AooayjPw XKlt7H8_De0 v6Tkyyi43OU ssZ1pf2Zuas FrxenZhf78I 1fN7M_u4xt0 B13fDbQ75Sk a7Y0CTo21uQ N5PNlMUcaPE DCW8XHP8ap4 15bAAD-awjk Y5L_REhifRg m7gCydjomXE 5H7YGAM9Na0 CDwnIJ5ohu4 L0PPveTZVsw d1ZUnCbVoZQ l7X3t5SOcFY AOv5WvKX57s 0_UCPY-mSZU oMt4F9ELo3U Bo-2-sJi7Uk ppfnHlRju7Y MeHr3ZYy_g8 UISLDo5JtiI Olt04UetqMA gAbn72Nu_MM PKnfWnfvSGM 13UIqhovLmI usImFOQQEIg jcjMYkD-e80 k_tU5DWlyeo qV6EOCw8Zu8 MxMpRqQQ6o4 t8vRwv9kRjg aSwi8mzc1gA 7ZTCXQOU5oM xXLQhqwMT3A jc2T3qbPJNI 8MSvuqf--9o RcZo8hHZqkY vXXDqjLe4Ls ZBqZpBkiLiI H7zXX6EqGbI G7_Mq3-ivsM m2tk7RatWsk xeLH_cCCgr0 TMeiAg1kXKs ja00D_L5tm8 5cbim7n9ARs jy9IGBTGVRQ JanwLiyFPAU hQm4WGUJtQo F9ScROJxATc NZ-u1BXI0YQ hR8yyXbTjNg aTc9vNCS8vo JZzbTqTLiqU 9zdo9xIvR9M YwUShaY_lew ANAUjvgYxjQ XiXa1C9FECU p_jspptikh8 GfhCds4VHbo BVrhwsgCuFU 57MtQQ5sm24 NWUxk3JPaqU Tt2oL1sVVhM ioQQ3gbY0vY gq5WIcSz2ko RsSltFwkLPE n9uVWlO0GAs jaM0sgoi0vw tKei1kTWmKU yoYPBCFehng 7UnKOlleCCw d5gSQLPcya0 kZQ87E53U_A SSY6_T2oAow oYet52yPgu0 S1Kbym7WYzs mvgRi4K58U8 EqW_b9Ec75w Qrj9qKZCuCw C0gEMF9Tx7o Ynfvc7uaDMo jW9JF2lCjqg UczxnDAsQjs TiQrmXZ_SZU ppJ38u-KyYM J440ql0zXuE 7oczRhQvSlE lyvAjZw6O_Q Fz2HMTuqy98 KblaujDjQ4g p1e3NC3IIF8 sd2pBde6gkw QiCNpDYavbg FMDgoOi_HLk p6oIR31ZgyA Bxh85MB9FOE zU19JLG88tA ehxd3S2foDg tIj1luuOfO4 hAVDAEaxv_8 KUMhlMS-z2I mBdFXXV9hwY PXmtu0Kd0ms BKkw8FslzOI NPYyV_mq97M B-Wf5QOHPxw 1id63E3KgH0 CmMeT8MW1LA _TmztVM7Z4s sIDHrcDf-N0 YnnxVknsLk0 qgRXFJqB-9Q NclH5qEfL5c nkVUb4kdhig 8QNDAaCu9dI 10TW3rcKMtA uUA0a8U7PdY osFbJZfBOyA -PzL4MTu3to zT4OxEg_-cY Ltjiyd-THC0 mDViU8OSRkA JjqnoH4D3mo ehv1cHqfQ-U 6f1VnWuk4C8 XQ0Tlb8z3ow 5ZT2Mc8TEIY gvaa1ZpqoUc S52bKF-hXu4 slegOy-GQMc Sk0iV1R72OM Q780MiOrLwg eFzzQuYRw34 h9WDm1k4Hz4 rtYKhaQStZE Q2-4x2KuRqE jjDuR4d7Iik od6IxUWPMcs uLhrOeavvOY HYzSQZdBWVQ NRBLTtDkQXU hQUBid6LIPU Mfcqb8DD400 dwzoyEaHxSM PkLpd8Eaah0 U-7MSowBlG8 ZtHl67Oeb5I IXwwGEJkx8Y lV2XAU1JzuI 14Et05Okf8w npvFfvyT8Pc klt86blKwaA 1D4VF4WqJSE _eHwoQ4VQ1o pzG1ckuBqpg E0i4dabbAcI wZcRiRs1x-8 JbuGOroCWaI ePlb7b2nQm4 VU3Tu4K4MOo gxhMfM0QlwM iTQ4b0d3HxM ovxjAnlr7qg Tn44a8_14LU 2l_mfcc2I8E NCUOJMkDAyI vlg5VPKbGQg 0IQgjMYWVGc yzera03y4_0 jXKc-0nVIkQ _zHhry-Ot0Y L9x5p-s4zKs Mgc3y6p-Bys iVsfWht3zmo onO71_aItKA X67GWsa_NNM HPir9pU9shw DooTtUcpKM4 -Lrndfrc9yU hRg2HEpwD5A b7AjNXAF-7Y fmMPmWO6b4E BRBSfKmp3vs w71pHLUz2i0 beearAU0yn0 fB_fwuJOx7I XcDzb6AeAI0 xM1MNPKYl5g b0KSEziycmw hZPz4w3jLXI 2_BwhA8M9-w _qh-4JFLd-s -kHMOXNsE2k VnLaIBz4VMg ZIHWAugnBWI YGwPTU-SvbI e3RDBiiOJaY vjmHq57MZso NHg_SEfj38M Q49KVa7jotI T5p0IaOt3tQ HUKu_iqYDOA Jx-I8OfW0GI kZg0_oypRpU fYNZsz9o3Sg KOBGjFHXnqY D_FRoxgOUNA b2hhdMiOTOE gxacglqQMqE hwb1MK66new abTZPgqiEto _oEolYMce4c cfB1QaweRKU ALYPTuyCxqI YZ5Y_GhXMKw ek0jTQAdN8Y fvNfhUZ-5z8 IsG-jJcrlr0 OyziGbUQBIc fnpUxSXWy6I dN1RMOrtK7A EFtdTsawXK0 B8dPQzwGcZI pb8pWn_yyF4 eWP8JMcy3O0 Yo3rEGWrlws 74PUHyVj4BQ ssK4Uc8SXnU 0PtKzdvq7bc kg2o35acq4c 3tMHSQGSUzc kzVO5JrnEJ8 GzL4f-4uQVM s2Tpk6RnkaA TSAdyzdX4eA SWKDbfvyZMU nifcKdVjpbw pEJHzQIMH5k YygwTWUI8vc iYf3nqYQXDI B9oxe-Dvvj0 VSdIYNSkQL8 D-9zx3m6lLU E1e4f8YdkLg lYtc2lvkpTw UyOxOyfX4uM glJzhylsfoc SZ3oe7dJdMc yr-gQl9CKIU Tt7qQmpLA2U dTVEd7WtyAw adatkf9XY44 gIaqrkn0ymo gDSrAm2CKdU wSpvR9B8QXw YG0VNVGxyYs mlkWgiyQ-8g I2v7jlIBL1A yRlyvNmVWK0 lkoWhWGcVR4 hprw4GtCu1w 7D_6z1EnSik czJL-TPz-5M LlK6pn4qyrc zIKq7DqdZa4 yGYPTb9T3MU xc2Ctw8pGrc 06DLNzLaTlE JLvkvjU_iyY mExTnHwAcYY fQy1yr_K_L4 RmxqK1np7rY dH3dqXHH0yU Ghexrw8bpc8 iuPDl6n2vO0 ns3j2exbdbU gj_BH6Suku0 Gx1K7ynF1JM 9j3y-J8IzYo 1kPvrYaCi4c MQ2PrvpAT-k EYdIrPSIgio KnXZP5yMlgw IBTpVVTZJ5c UkamBJTqN8c mRIaK9Vf0Ns JOzVMqp3vMc cY8yXitzluU iqZB7SIbeL4 GwM5LleRnAI 13YnorzVWTE VXDHzJ1LYRs fJqWAvvKS1A t1SbH-c0m_0 b5I9yFdAMzg TVViHShXqC4 woLbaFLoJI8 c4w-IE-Hsqc iJKQl3uGg0I IE9S8CehYco ukzIFp4Kj90 kP5GKIrGoeQ fV-wb1gZOyo 2vbGcYm8u1o 6e4xlcfKHxY xJb5tOlE1Fs VCLL9aD-VKw KdOgihoZjZY K9z6npGGZAM -MNpOKICOx8 YEdNAX9h_vI sPHeq8OM-dU P-KZ7N30lFY OO4LqRUxinE ICRVd--TY-U N45Gbn2AtWk SVSzVDnvkHw nJ1hrmVHUJg t9vWi2ItxMc Zd27SaRdxiE yYCVu5ZSki0 3cdlwCCzujo opWPxmr2h2s ilCjx9gigWI CfRKGG52TPY b58Zg_TRqn0 ZQ6XwJOrBiE PfBi1PAfWcI bOqZC-DXvk4 LWCK6VFF6n4 71kAAVlpENY YqRnYf2cyI0 9CD23yDPEF4 UAa5Lw5lseQ x0rCYl4e1Lw MBSxl8y36zg _zPImuBvnOA zFDNg1Swx0s ab4MM9cHidM S60NRfBYTl4 ryyEEyKD9EU NXTrMtrTjlI RY1FQGd1Bb4 Mdp4T_G0Xsc 59wvo9e2XQY H5pj6ZuBgeE tqmbgqyc1bc yt1pZiuyKJE tG1crFI87ro p1dzglJEqac dgM9V3lEZvE qEH9lnYIndY E-MOzwWySaQ HKcDfO71N1E IC21keB1yaM YdowX3H-hGo 4XKZFS7EoCU ykBG9mW1yC4 cfB9siDjpLk G64ubBUMVek ptOc-HdvEW0 fZNHk9DKvtM 0GCwhGQEZ90 AkaPD_qTmok ZFMSluy-4gE 4WdyyPhh4-k lMA48vIxajE V6WWK1gvpjc VXlMfWObFCA nJwGWiuonws Xz-BR8gyPhg Wmo60ltq-TA qfq5VozCshY dgdEr-mXQT4 _1rqGyHtE4Q JAXij_5Rr0U utYsQTUae5w Yg1qC5VGoLw NdGB1rnPcR0 Sb8ufI6z0zM 8DkbFJ3uz54 5OfAMHeIr7k hl1z_vp3kXg Or4t1d_h0Y0 ZT0-DtdC93w 6GpeTJqqtG4 VW_Bmy2Cm2c pCFld9GCy_Q 208MQEPGWLA oeF5tq_zeqU nO7qxQsQK44 -Ww_Bo5ghiw CyAW5eAhhPo 6La5YCYlMZY 912ib1YghJ4 yywlulXZ0ls VmZ1ni2IDdo pDj1GM3RRWs hjhBzRH-plo 9O-NfAWrkDM CKIh_vKo7Fg dVFDYCPO19A 9LvgzVmAFxo wUVJf2CkNNw ZIdKsGWToLo 1QC88NQZM-8 bWo3nlFcH5k 32Fz-BBjVXs g3WSsm57iVM hf1wQVWs0DA WIZlfA5kV7Q HKRXTzENFa4 ZfyjpKP8zDk Qk1y1yVQkJQ SccBZYmyjxE ngSM_wxh0lE eZc3GMgzwyk DGpJ1ndBxOA DEmZWy1aDuo TBHjt3AyALw V15AidhVCSw evJPzjgv-2s Hp93d2bsfQc A-rs-kWL5-s MsKaN_QrVT8 ZPMDA9N1itk djTKMhvuXGM 6iGsAYTmnLg zt4ek_5zQgY -iK4M_EFvjc yEKOx9OHEz8 ktt64clTkj4 YH_vICd0WQ0 fwkzz6A_Qv4 3a6TxHEyLdo UoMiVPjDb10 _B6AZdgQbeU SK4l-e7UvRs dfrJhivMJJY SYffGozxMbU NQgAVrZRz3o 90j6V8EjSuI ghZ6ntXQp3E mbBhikLj86Y GusR6qF81kc vD6FkjOtIIs _x3KSXMXzwM XKNZy6gahyc pfOJfhbqJhY VPXd9ANX3Bw E8x4G2WceJA _g-f7cZGqJ0 VXx_DVHO0go ARgghWSmq7Q nKuJ6UvlGek 7AB4ab4LtFo o5CBItcNkFs hH1TgDvC7sY bLX_zt_MhW0 ETxIJN_avuM aPUaHUwJJk8 QvdszN3x7M4 NZ2qhFm6LO8 MrhV0mA-bWg z1RLdJwkFZA -uPSVWxV6d8 VBLIuICtHuo KKD0B8uROMI 32I5RODje3o EXwr6U_YypE h9GHe5K0kOI ylvh800i85I wJZP20y0R2Q XFKhIBH23-Q S04wIhoGYQY R0HGeVmyI5I io-hA6pxffU jEKFfdQEbcg vBLcmGPbryg QUI-9FAwA8w OJyRbpjlrmA 61cBscxr69E wySz6ysIDhs sL6gDhH7FpE YgnhijYmavY Vb6cuUI7B3E jsyzJJFZzsg MGGGksL1ziM GbCytLu1-3k uA1Kloz4Ics fJV0KtMZ7x8 mxz_RfabdUo kRuKg_khl8Q 8Ojsvc_KsDY bvITByUy5fA F8Y0hCMWyFg EpcWBu5f2uY MeyU68qSBMI BvcBo3De8Hc Yb4Lrplxq_A 7EcK-LuhzAA JjbIo_301ZA CfaPUQMa1gc ptAdtShJa_0 gmSeaKdO9IQ Ey-zuaZV8pM mwMmZ8dtWNM fqnhqkXclUk rDTZ6A5zsYc q289a8P8Ht8 alE17GLFoQE ntirWguFrfM EOQeU_6vbeg WoN5cCs0l2M IeCZqVq7_pY sfWe6CUZUtc oyqIjdFcJVg j2ZsEQ4Fr4c ri8WqeTAUDE MnLvPe6VSTM sdvrA5qnZo4 VVlECM2KyYg yfg9cb_9NWQ XLAGTl0Nnws 4ri_ybNiTPU 8gvuU-U64d0 VQjjlqVjiII z_a4zak_zk0 27moTiftkCc DTdDzcr-7UM blQ8Wi0VAn0 7OIn2KFDWjM tV7wQ19UBqg kpYZ4G1AQ0c rGAjkzbV8zw _sZ4U5aOee0 kswPGoPPdwE 3XZ9vtsDiuM FSlLXYohrJg Vnp8CkPERus Fk69RQS7D8Y qcYPASs4jMQ njnCT6sD1Bk i3VNgECX8Ko 2HMLj2siVxY oZ28XpWmN00 9VsHtn_RSHY -TqNDG7L__A b74611maYgQ kndeWhsNlJs VNLN5xyxwAY PvoBUI7uz-w CxrQd6Sn5PA vfc3TGvcjEY MBqT-UEySlI 68igl3sbzFI dshJG5PEOqY w98xbfLGWro gnWkYf8Peo8 UnllAPMRnKE pUmu0VJuwOA OpwYfz6uFaQ _pzN5x6Pepw L06qVvXrJus IVRy-Jac660 Bf6I7N-DC7g kt1aHAlXi4g EjAwbjng__4 58DPO_8Bd88 F58XJgGx3DY 6VhCGQODB5U DTexn9N2HMI Tq9zhCo-PTQ pvNA2JkMfSI GdrUYcOTUvY WnAVeKAUxPY S3Po0Tld8Po Gnpxe9kO_V8 GEAh4nF90iw DubYVqV92OQ _9qsxe5kHdo pz6wAzZlnhE UQmQ7d-wXQE tG2qsoC_-hs ryqyAX_lA7w qaAz6YklimY qAfsU2gI408 vUbnqySPN8E exCuIisMWl0 6wyRTKGY2Tw DC2QaWmat7A rczP7CJB4Hs oeQ4HWhPEdA vJZe9sHz10M jY2PzzjO3zo 0C4yBk6syOE yEyQgxLmGmI djr5QNJG73k b4vpGhO2LwA 58BDrZH7SX8 0_-45EGFtA4 NkmUIQL4spM hqqlSTB5CfU CrlVTZFPnzA knJ438gN25k 39Bnk6VU53Y SF5EacV4NI0 NTswp_20tsA -DXU2ZHuiTs RUUhcK3Pt14 yEeyJzItKAg ng95gpwSjZU 9z8uqVHf39M bPiv1wP8q7g KgmFWHZXmiY XM3MRt89zy4 j21idqW08wU kSmAfIP9CoQ tf_RRItKJm0 KHsn2smp4N4 XuGD4tGeLFc mmCjPdu2TC4 8gfk5E2iwdU R4ZGoNehEp4 WzUMVMrEGnE EtKt8Q32_Rk 3vjTjf7m3Bs FnT4pAV1Cg4 5T4sIC7SB_4 TmnPP66kwwg Htp6crkePuw b3lOpSXhT0c 7HWfwLBqSQ4 qB311wvyggM lCqHKRjIMu8 tru0WMH7yic ngRthItc3Yc gPAI19a84KU Lr04AEabtnY fPEGcx4MFHI JcRuXU7cvmo C3rDWENRI7c MODlCaeiT0M yCrq5v5cg1A 2zSE8r8jU_U gp8OWUqg4r4 ecmDPqCP8ms kJKWjeMtEDM GUDrinKzSus KAE8h2rqA6g z21tJkx07J8 k5bN73OnGmo aWIcfkvKj9Q a6XtVMtUZI8 688uSEwvYnQ bzSIHZcXwvQ 6XRJuEv5Ya4 fwkB6wAxNVM ut_z2-96X0o Fw19beLDqn8 jHl4T9F9Vjw 2oDVJbZxmtk _aj999HtbtE ZqCnbtz5IgI GlVzp0Ldv4k tQQ2Cp7xQho FBhqtV3pVe4 dluHLk1Hm64 ntVZPACMOYA PgotX7s-2YY Ma_h1r7VTME -7Qoxub52B0 M89zKEGFuME UUD5-dcDdBw 6VUothtoSeM x26Mst06IoY ws5scfTVUA0 Al3TIVxEPm4 H0Bzz3gzvk8 jSStdc_wWV8 L6ayQbTmoxg OTjYvVfWORo TShV3gWFAIY CyetT8hwwtk Mq3CFDYCWfA -vNo9qyUHho 5oEUU8YjUkg V0qYlLqMPNI x9GGBivRItA AMHSm2gTUmA TlxOj02Wodk aENEFwxcrBs 2thZKjnQnK4 p-0nV3vGvTQ 45MzBLAUUpk t_GWHV52Tds MFUZGrdKqtM uMWI1q_J3mk foPz4rJfgSQ ATOpJHEjvlI 271ymG6B7aw VvSlUEWVleo oYQWryzBuhs R7qVgpQEVBM WXUGWaYOnUs Qy6dBc-9HRQ 84WvFryk-1E AxUh8zdgPeM y-gs5U3OMMM xNwPw7mQnpo j1eQNUaOfZ4 OYpO9k6l8Bk 0KZ6EPv2Gio uov-TD5osLM syM_HVHMynw 9i9S12dwwKM cazTXFYZ9gw tTlhLBjQdPc hsK4vleN-fE ecRAEoKp51M buqRQWuVcw0 zKATih1nvVo wRN8Q_Lts7k -2KG4lLGEl0 RZKKrQ8y_Uw djh21tkgGJ4 AoKtg7t1Y0M vkXY0EqahbY W4kci76gyn0 uWY60oFlfxs s33dP0ETrCo 5Ii0_2kAYlU lzo2hgdDUDw PW3WxPo74c8 QwkW-Rbo3kE Joh9cLv0bp4 S1_AkfEVPpI iJGazi2EdrQ 9ZEUnzRzvGg S1sbKYDgyWA NQtL20JoP3Q SuEt5n-k0e8 ezOyoEG6GW8 jSnvLrw4YR0 tlI--ATerwo zFxkzMB3qCE p4HqnBtsz1I nBsxbjTIJxs Dj9G_kEq5W8 uFNIrs3jtEQ kYFrx0jdcoY W6KRJEKYY7k JFeaWHDQzQA y3NLNK72mzI Dwiczhta4e0 TGqOd_3mrr4 k5fJmkv02is 6-_tIPShuwQ VlSkPA60ujQ rX6oUNKUbI8 6KHyMISpE18 -Koj9hvcBMk 9jL7oaQAPMI i2xyQnF1kro 5enqrVvjxg0 63Lf9kwyWd4 gTakZ13l8xY vP7uKAQLwXc YvNjJgJM728 mCSno4xODKY DSaBwTpdfkQ iddBzE3syI4 bwoxnQ4eLR4 P2eknXZ8aLk TktPJgdwMtQ ytHR10ZesTY w-juhvM7yug MnMwbnAWawE EHUO2DqnD-o _4Od7V2mVG8 rLNN6Kef3Yk 8BplQQtTt_A 7doKgPFilPg 7DP-JKwZrA0 IfecgEak80I pKsa_9TFG48 p_wCMFyHeUE YYo5jJy61T8 _PSEaTZSZEE 2rSnCcaMDdg 4At_9_s2lDY 9OlXAy0L0yI 5X_ZiFC5RMg qIs2PMXvAmQ YiCzTGRqCQ4 O-QaGllHqN0 gC672314kEU YYsdcBacV2U gZ-QU3KT1PE sR0wCC271s4 GC9MkHzTnRg Zti44ptZTrc KsimmeikE7w BjsuTimPBAM gM8trQSURdg f2Hz2k2PcfI XtduKM28ohU ZLjp7ahdbWc hOB4Qm1IiOY xPwAEt1Ajmk IN0Nrftr8a0 XzUFmbuyrCc DYt__vjvf9s B0vxLqX3oAQ 10f-q34JJZs WUVa_vf09dg kIPK3l5gd9g O60YQRhi0s0 6LBW-X4DnSU DbUDOZoHYkU MF_RlYTOmco Nz4zu_fSHYY 5SkzHjQrCXk tS36ZnWoR70 HLw1Og_JXK8 dkAv65bo8a8 FQoR9fu-CIE jVu_cuFHZnc 7A6HQOrRDiw 8yACSHANED0 ACcJF4BpXXU tdADTzvJtSY zJ3hgBFfQy0 C_TfdNAXOwE g3FFfmWvyAk exFv7Srgwpk fxVsGcxK1nc 7wniAznxp08 BLgX2oB_qn4 pf0erXl4pwQ u3xIs0aajN4 5lCObNv4T5M yTq_QU464Aw K8PDbQK7Jro qzjPtczHQkU tdfhiqOFtjk qodNg2Xr7mA e7uz82t68To FJZR935H0hw LEq4-b61Hoo -SkeK7t74oo 7fduMinwJZ8 q8nzGlXDvO8 kzf7hr9O00k 8Pd2fpoD0Xg Y9b8tw9TR2k PI6Q87pjO0o PX5QjCErMgU qqSS99m2dQ0 wJeeueogQQ4 LEQ9ISPbfyM p9d7IXlAVUo SRlJ2SMwwYg Z-DbvvyH6Q4 K1ubjdkdmkc JZ5bvcWLEW4 QWPntJVp6cM Gae_um_eNZU wdS1l__SWms wfq7O3AgXdE N8QzCj1RdpU baNc64S4DHY QeWifFsvr8o kZcr7bw6k_k f8-6UgJ6dSo _DtsWj_e2vI aL_6-dQCzwg YpDpOphD1zo NKjZRRw3-Fs _5uHK-fVMcY U9t_bzEKBnA bJ63bxSclsU 4_mFP5qAVqM keTP_H6jqZk 2_ix6kre_tA g0RJFzg31xY 5QEWc2zmxGE 8wx1XlXs4Ss P3YJLGWoPL0 xW2pDmzhD4o wbWWF1RwQU4 Vk1Ca1ruQKA WL4kf1SZAE8 AtgkgRgn8Y0 xAf9G9cqQbw f6-8wpMn_8I PMLfJk1X64I YFnErcVxB-Q 1yi8Mc-5kLc Ot5G0Nh6EyY EHqjx0MHej0 eT4bhNABlYM 2kV2EVWNqXQ wI1LRBDvSFs N6jkWHo8D_s srLwGlDe598 --ifbq2xY6I 1e_9GirqmoI qo1cSaFhPiQ cil6HFXlccw 7g5k1qwVLjw REwimg6y1Cg WqWefwlmFmI kPNy_yGvpKI u7IXETT9OEQ TUMru_xqvMU WFUAl0Nly7Y 3EIqxstBVCs hH0av1iDYVI akSjCFfKAMo 3i7EvW15Lyk LWvcLI0lcFQ OwfT8yTBPYs HRJ1g7i0Ob8 _525BmUkPmI 4JtubCgodCE oToIYlwJY9I UxjYMYu0F8o q1SFvQhjK5I J5K0XKyL3i8 DGQkgqsHQns p6HbXVaNFfc vW7-H-GGYwk qA_zzk2c7G8 Ug6yhGuDcUQ z7gYF5LF-ec dIy6QpVNPuo TeeNLFHot1Q YvT0GTWPw0M 0RM_Ehtb5C4 ORV1uYzvZzo wBM9Aa_HG8g QQFxcGwtEBY MQ1YkJX4SJM wzYPC7FOJtc dHSjJmNISjs _5HRlIFjZiw AbU-6GsTbyE raGaJdEHjEI IWZLSjyJPsU 75AdYZPT3nE AgCF4dXv2JE KVWBllfyysk KrBI7YdIPYk osE84bZ1jNc 71Nmq8VOKnY 1GfDQpfUaHQ sISJ7r3kERg bWQ1ekGzhwU q42thgSKkpo Cony281khiE zLkNUykewic cio6rIbCs-I T5cFTmim4Rw VBTrQhEwFqA kJnH45GslL0 vFD6BbYg0-0 BXXY48jjLtw 5ZUgU9CsjDc P5kDAUzl-T4 nI6agjxMa2s oWSIUe5wYvc 6QYw68kf4sI AZfCHDSJc8c 6loInvUSYEM 5vFi7gu-g-w RPW4sx3UYjU 3lex4AAgAfs wa1uJbTy6XE 8IJEqeoPPs8 NP2fSxIpvis KMI-Sxq9Npg zeSe5X9ALXg ZP73cUcxidQ w9I7PBSMBZw jqpkvCebSmU Jmls6360U9Q E_14d8dHpns 7SojZ1TuMsk xTKfpU41hbY Rt3u4bU6EMU UK0wGi3JHrY qWiGcXSaKUc ATU0Znam5Pw crIlIvBYMoc nm86_ZWeUzk UF2c01_glHU aucs5KRFzhE c4ibjfBu1IY PZBy1m-MmlQ vqxbLAcIgiw WCaRP0aT9CU bp_GxHYCq90 JV2dQauaWCU _Mr6MQB8vRg snTvACYp8NA g9d1TR6Lb9g KyfXb39rGT0 XJsuAUwGz0M Cn_nTq97C7Y mr3L2D4yv-0 mlpkQuvDJbs 5asGTRoIqCw NkhIROsY7Pg qCYYMqHyPKk BQ8vGslccwQ nwQtd7csTKo LFVi_krq2PM ohZ_J5yHSkc M4LzhjtD3YQ 8gIZMane5sI nJIecTXKUrc EeQ_0rq-z1M _wAX37x54hk _iMsHacXWd4 jz6VC23rVTE Z4RCK8LAFM0 a7KgMV3DXw0 0IyuK069I-w 6qxQ2l1DC6Y _VEDJMixt3c QO0K8wfZrHc 3wXG_J4cPpg swEgflM5Ol4 lQr3va8emXg Ho0k513yN6E 2NNTVLRN-Ms WksivsiSF_o qFprLPWDd-Y 5M4VIDlRYjQ oRRupV-lwbU 3tvpgXQ4y4Q Se38Z08pYS0 mdHpbI8Y7Oo V26hcTgoDLY ZsqkTaYITKQ x1FhrhoudSE sILyPxN_1Dc 4LvvutsvgrE xdnibOE5L40 yKv7A92MoBY FAAKfmF5Jl4 JfEde8D6XE8 NSTXoI3j4ko BTeAQ_QLObc euJyO4E3FzE EvUbi66AGKI NuTbNeev0sk gPjQr9sSrmQ mAhhCpdnVkI mJ7S9aUZgZA VhdCpMoShM4 mmSNq3ELTDE rDpyBEorPeY 7vx5baLs0NE RCp2lpFkeeE kK6P8gN99eo aazXc06Oycs GZxal1kvCfY DaDZptGm6nI hIHC635Q9dc pbv02n_zKvo Kei4Jlhhz-Q PAw7vAf6HMg 3k7E9zkTPLA cTQRH6MPV3A MAi6B_AFhH8 ZF_2tUzPnvw yw2hoxOuiaw N13exKaQgXo XftKutOVjQs TA4zkT8ov_Y 8FJZS4bwRrk hNiDZEwkT84 SlwofvltpRw NWdhUnTq3gg Hhs2RLxDgok xG6__eK9jIE CyhOZgd8ahs 6Kfqy-8C3o0 WOBy9Q8Gf9I F-HZzW_NS88 PlkvQ0NbjUs e4Dlc6yqJuA NVXDwL6XG_c vaCI48KHW1k tD3vc9KZ9lQ ujgbo-_khSM jdd1py-ilwc jmC2y7EsXqk SCR9s8egrmo QsCBiq5cET4 uzMEc37DGZA fbkfr-S420o XPsDyk5bJdE 9HRIGCog9UQ Pk-zBUDgesM 2G5KN2wt048 b9pr0K7SuYk Hwczxp7h7Gg 2vJOE2qvIEM P8ZCZJpluDA lsmWjQdGHMI mz6dgt11n-E 9JTGNwLdSDA VrXUYjVCX2o dtgOzzBMl2o pS-KE1LXpXU tvxjJd08MMc -YiImyOVCj4 kpFSJhQ_30c apasYYh6nEA vndiMloYcYU 4E55_uKSR40 k6u3YvvvgjQ pYaJ7p8RrzM BEsaqfzc6wQ 2VgamrBe_vM nxmaYsZjnXo rzIs51GUVgg puXiyRw_L6g 6x0i-FfeA44 jPgV4d4ZmZo onesjJyXdFQ IBdgRBvFwlM kheP3iy8-6E VVvKuI8oK3c zd6ZUTrW5b4 yk5d161ytXE oUo_8mKGHvY piTAjb8dd2Y PhkGK4ga-Gs gU886wmXhQo dR0_tMYKwXE XYc1XujRb1w kbVtjc-ygTM PoIuiCAepLU m-ETkZmPNiM hTzUYt__ogY 34K-mcoEFuk fAdsL7AXW6A MmBx8AMHTxE eA-V5wUcWos XO4HxR3dPsI Q54GdrlgRoQ pXrMAjB8ka0 j0iplsU1qa4 wmXFSQdF3PM YZrVYAXYyws uPFxRUeRfu8 HSjPTdKWcLA rW59kLTHdBE Qzf3SFbaODw xPwq9go3HDc lLItY-Oyvt0 XCJxGxYDjQE RJEoUwZdwfk ah_Egywb780 KW1fyTqH0oE g_O0J66490k Yg53M7TYpuo QtQpMjuyHnM DJWKWwfURtI uZpvHkGMn5k ZlzhOaHLFBM Z6SklaeTne8 m31MSgGEIAk Z2-9fWRAwMo NTUNJ7f0tHU P13rZWwIXmM I0E-0kTdg-k vVbXluPyrTA EqRYx6Zgphw Pk_-jIncT5I CYt5p4a8YzE mnXN-mRFoPI CYTRQAy2o4E 3HMU2k7i59M FNKYIVZOjqs tZ2yXL_RLEc VRN37FGgEic nPGxeiD4mgM SuoDkikuZjo _9lOz8mySPk 6PumiBR18C4 cY3aFhbBzoc 5gQ3nWBmAak 9EOazpvA7-U Z2-qppnyM3s GzMBisWrn_M 7LxG9WBUbf8 2ycw0UUyCm0 9oiFkoROlu0 8UscACJkVxY cRZ7bc3nqwA f-EjBwpuVFI WrZN5ouSodc 5LX01_nSeZU Ld8KOUtkHHY G8_iVf44j-s kJEvR6GEb7U eoffuyXUhLs o2wFqjb9AU0 yDxNlPIFWHM p39lIRTEPY4 bqwS3qz3GhE Eh_0E0UdJcc qyZXW5Md1HM okdTt3VfJ6s qzQdwPNUcME SwCNp21CKes 5Q52XfZ9no0 wN1iAzPTBbM fQWMKUF7dvA gNCkFkii-tA eYrt5n8DA2M 198uP07pieE WLq3zSm5SkQ duEErwP8eds m1p-vJzqPKw 6IM3wUpXVfA ekqjBZdbYJU W3cldIDgcoE UtyiyBw401w AwR1RawiBU0 tFBSGc3v7BI bqvMCDQ3HEU _mPOfQw2fmY C5UD270jxfs vagva7xKyE8 RmkFsYUz4cs 7T5KMMZfc_U iKS_327EF84 Y15QXiFUV8U mqYkD0nMs04 7oi0cS5tNRg 8VhgYX8xRuw hM6KNsz7_mk AHV1LepZ2KM ZWszIB0z50k qv4BPYX4B8U 7qi8llEviYY r_ckU9PkTbM pLlcwabi5AQ wOSP7YOuOH4 3A97Vc1eExE cmlELkvVPeQ AtcaQ4_DBOs Gfc_7pOTR28 UYYIYehBS_s VWMSjhr1BZE pzE6SVUHAYE -LCqZeb1de0 njq3H2iy2X0 uU_ftZ6EfX8 2HwVVwlGHU0 rYHCZi-tmTE gx-03rUq-1Q isFVKJA4E-k aSwH4lpuKE8 zXF0zcwPGuI ApANYuSl7A0 ptcDoIfzLtI zPuVP5U-xag AsR-WnELodI czOgJJqehv0 TSQ770iqDgY svAY8Rg8HFY LKeegFM5SdU coDyfoCUaSk 5OGX-e6WT88 eZHlWaIYjNE J7_oE1uN1pU iraWz0XdffE GKNkucKoryE 1O9BbPEZRBs fY1s5Sn-GDE vn8YIDxEGrw o-cA_1F05bU 7uYoJwMuN_8 AwtSK1gLBBk 2X8O8PN7GOQ 9_T2VQgL2XY D6MN7T-tnDw bZhBhpm6m_A vNPCXKmF9LI zadI5ngwLsM 1rP402h6Euo XR7br4b3gsg LfL2xCfIMIU pJIGy4zHo6E ByPtVBI4_MI d2uvpiz5up0 BxB1Mpj8NiM Pf2LbcDDW5E TYA75RnDMGI AIQHqvG9Ql8 v9Cq9nThaNs LoRpJTD3HFY F2AbEJnPRYM nEf2ML7wkBE XMPTy7Iaw9s edHmOaS0lRU cibZY1GwVQg jeYdR_r0iGo YZGetnQQU48 IMPHXKW9ntw nqK7Kk3ZKvY lkT9aqC6Tqw cqHKducp4MY _O9lT22rCj8 PJTb9EdYZDg cSWMU_rISfw XssDZqS6WzE TwnfJ8d9NqY 2yWYCKoqKmE hp3n_sA4Sqo 1ugiiAH40_w udwKI7oFT6Y WFAu7jYslik 5-Xw_z9dODw eNZnCwkHaDM auMBMds7lQo h4QvAd6nC10 Gokp5Aq-Yuw 9xS3XqTSRr4 zMbx4rZOMig KXa2pXA7v6I R0jAHXVoZ4E W3u0prIyDTs A83gS4JJXXE abgTPYfdbOE 6nfXJd8nV9E _XSFVQhMC5k rQWpTKfljVg xHDeLp0sWBc QoWIRCVeXBc HLlaSoozZbM Cd1Q6LsOR8o 8lsl4cNrpzI Ub88RPZnHQM cIscGgQD4uE D8NMSoCRPV8 LgKIQbxZZgY TYJ-1E4hKAU pkqyDC9YnfM 5VSg6c8TKNc CShHiYrQPGM h3g5B5JhFcY Jd0XiJie7Lo f9Wq05WVXiQ 2DdCmT_j5nE sidgUs-5R64 58pw6PJAqZg jJnJFGaJwV8 GVGyBNIfPL4 aIKVAAfZZeM ZkZvK6v-L7s RgaUubM7yyY KGPW4PnJtoY SjbUk89pY7Y ab927ug4_xY bwnrdj6zZfQ PIeiRgfL9e8 UcEl21V2btA B7yi-MaUZaQ lg0P7zox2V8 h72ZN-oKzTU mc082fyyMQw OaGLdGjlV7Y iIP23U3q5FU RZieTQla0dM AAE6HOrW3rk V_dtlMkvp2Q mNUnCTKwS8Q VflasoWmuoA j0cqqCpIZHE U-R21NaE91o SD0eJL4D6q0 msoyjm3gCBM g1jO4_HQQX4 JOw4LqyJKyg Xi3P8vUveVQ Xdzv5V4MVus 1x3IKujLO-E yvzmLB30MwM MdI5DrJ6V3k 6wXeUrZ6p5E 3xtKas3-ctQ Wa3l6Q7e5aA Zbi-MbMsnIM lR8KTwcC8fc re_liKgRGew 6Gd4JbJxaf4 2rPDGz_0qvw aDq_JsN2Y6c ucYwV7EWIRU GCSbGFMWzC4 JwAVnG8iemw CxQ4aL5IXZw CYgNbOsiKtk f7l5I6ZPt_Y fVoHEZb6imE adjuOPzkpw4 n44APWaJZ58 KbRMCmnLU8o a_9dO9k2TPQ tGg3h7NtiXs cSSYFjtc4SY of7H9H_aPxg Dd0f82f8ymk AtWL0iQxE7U mhCiFB07I2w GwdgbTQ5cgU _KzpueROmto rqdEaDM2PWM hE5rsmIsYPA MWxa84PirUc RV0EbFEZpT8 MrtT-vOpAfc Z8JHamH3gW4 o-_ochO9CFQ UvojHP56dnQ iHkMTqikRg4 lGTsRcHaMic 2fbk5E4JTkI jV76HSEeAPQ uqn1bgQX1lg ynG2qpTbFP0 4tVEuWxns6g WInIV1tcI28 4GYKaKvJ4Ng Jb2egULZePg H9bQdTtfGCU lensYsrpsVY aRMHp-wDvnE dWWjjk3Ody8 XqtGRpyXGXg wdlhhgAT1EU HDPj29dAC-g OQjvys5lLk4 Br0BUZWEDQg bsbgDqKys5g IltqQORdPjY dBbxzOOGUqA -CSIqCS1WIk PxKcm6wWUJ0 2BofOahaB0w 6xmaoTphmLY jqzTeVVmTvc -XggDv2QdHg 1IyD0DjLrrc V5P-1Vedt5E rcA0MBnPPM8 gm-sqEK2InM QlYSFCvUGoI dkDGK_eFw5c _liUxE_lefE rb_iLvMVihA UJ12I9sHqK8 3tbDLfgTAuI 8dcA5NLO_GQ LKVJLiiBlOs I7pOcssa5uE KgbASFn2Pv8 GMnwXB4A1iI 6hfzPfOrftY 4VaSyU3yfMw 5Vo99FUjbrc hK62U-Gm_hI MgYmK3cDFq8 hfCRzaZuY6s AjAJNPCQ1Fs OYsV5RbHvA4 EwsHFGh6fkE lzJV7k-LiC4 UK-vT8iapA8 engSFG20kaA Z2xooz6844k ETC85CgzTHM bCOc7VCSox4 cUT0WQ9cTrg WDAlAqy9WUM ukl9qBvRXfc 10khF4-1rbU 15gPYqGlkwc q_VK4zsJWNw Awr5m5-ocv8 hKTAeQKaKu0 Kdr51Y91SQE zjdesHuied8 7Q6ywfDSm_0 dpKQxs7ashU LfL_KOOZvLw Qrl_BpahMRs yg42xdVf9mM XqwQlCAM3P0 rzCeSHk3aVY Ece-FTMuKFU PdzjDn5zVXo DjNVqYjp3E4 dXNmLJXEgQU mHRbCgVCbIA PSWgZzUr_Yw PD4Gq5GPcN8 raDWhK7iSqU q9Wip3v8h40 0YOmyGX2kmQ Xjp16xSdsp0 3NpYTks1mDI n94um7eDILg hRfF8Kes77E 51reM6wq2XU 95N85bGdzw4 PVEIr4MGaT8 Nj61hQhTwW0 1WwlHv69kik eAC2kNiKuEg yygNdTxoHus MBNiDwytFow mXz39lQAEmY yLFZcXeZymY gO6qemCFhEU 2m-I23sWzEI fcFKVVHQn7o kOe-yLCbA4E -utei4CzIzc Yg6sZ2htZfc CECosJ9_6MI 4WibEcqn1c8 i_rch_cy7dM GRADFiFVLJQ b6vOp7_rI6Q iBptyagVaEQ LxAebgxJHyg ALhR_LDm5Is YjJ2tMg4tTA oS_Iap5D9jQ AE4RhPMAtp0 atQYOl5KL-o u7DV5coBXSA aSajnx9QK-0 cMmi5sRe8wc n3D3JTzaiwA RdTIzSuw-nI hqhm_-sWbFg saTBYjmhcok 13wgcygv86Q V5hfxgrLuoU yNhbLL3Xvcw 7Fj5JAYfWVc bd0IiiCDDGI PwgxGA6pLhc vzzuOkCkHlQ N-ZFty2-G7I T2ph28ghuEU D4HGK-_5TkY H_sYBmKxmvs Y4SSkX4sRMQ H1TQv3qA7PI ZG60oroE7AI 6bxX5ZV1qn0 gLWaU-LKIwQ T535zq4Kpt8 n03zeBpWC0M 8QPhWhQ6zS8 qC7HofT0v4g 9-_TcYrv2YU pjKnwaYJi6Y OwDRBPO9eKw LYBdGadPNz8 1Jk8IZYcxmQ g7bQ7ynurn8 SWl87YF_hHQ VcnAtRLJS84 vmynulColPI DI5t1Bxfy90 4pSAjI9lOGY YKZRedzkeU8 iqZmwwUvgVU MvIqR1cMbv0 bxxHPYFtbE4 q_y6O1yflZI 44BkOqV2jDc H79X1JQ_S30 HQCava8QqK8 XNUers0BuD4 qHA5R-Q1Od8 1I2xNdoQXM4 hQIL99lP484 Qc3voNxG1NM SUfo49TsWOQ 1eN1O1j3LcY CpIgfRGUpU0 I0jOVXcnjdg xMjEmE1YLSU vp7r-h8OLm0 jmuC1ebmYQg Tv5BC6yJ61o XtL5tGpGIN8 q-nQtR-WbIs fZflzybv5T0 2yZlrJWBLac vKhAdR1G9io OxKXKwijH_g Hj52vD7KGxs kS_QskTI8WI fNjMYPeG8IU VEsvArkVtYQ JIvq1ObEOrs _cZ-D5Q-26M 415kITLNgvg qlyJNTOwkAI oOBu3uqpW1A _WE7Il9dZCE 7LoHCPOvmuo mHgXG0tmomg D3fVS2I9ZVM X0d8qyjQ20M SJdUJZ7odoU UBnufwe-p_c n1GlWng3oOQ aDZSH05DM_c E67jk75CRWM ArGWpUHkEmc o3ya6zEv3eM 0mjSZpCpsdc xMoCoTO3d-Y oEddtexPCso QmEz0udgJsA 2OrlbOFhcUs wytpJXfw86w MMxE41xM9ic kPXFWplmSyA NufzJ2YVJB4 wkoHQdbhfOc sRUb0GR0ZiE iAzMFB3QaBk 5gtFQegr2xA ToF0U78xIyA tXF23iSwW3I 9u6xaK00otk oOWl14GlJx4 h5KBS20Ke6U ye38FmLnLBo pzZ9UdUTRNA 8OS1xorvbAs poU8QxFJjbo 2uZV27BttLM 1BS3mo_yHvY G77UaCXuoOs HYog4UvM1zI gUKbFeHjYX8 hM1OunX-QBg gxsDfmzU-Lo k2-SBnbz7pE MkNhAG2CUso yMe-7hW4evU WK_rWzm86RI VlCkdkzOwFk vpTj6-4d5qA acVDpeSHw44 ZFGBlZw2kIM VHF31ybakiM fbnpdWhOwIs SEtuhB8LEZU HuUhj-abydY djTx7slpfHI gmnU4tK8GOo OS0rZQtDsoc sfCQQLSwz3s N-v-x6qmtcc g9hEJv2uZLM kBTPEpA8BzU ymShdFJoqiw YRdXmtGnwCI 29D9SkdtVBU KY-bRBsLLtA HBPQtYCDKrk -wqnmuzG51c Fecoe2kJdD0 LRHNkBU6YWw RxEkm4dDAL4 -KW0wz1xBfw kTUnQubJMoc lcIuJs1vHrg UiQdZRBhBAE 1YrP2ICd6ro SdFZEeR8a2s _eyLdmCxtPo BWR9aK0vAAY 2UK1aSp3bUY nWd-gLPa5fs 4UOnDFoEPUQ ti39GhRZkrw 1dLZuGiJRXA Tp9iK2u30qQ -Nj1XUtmKDo sG_cgDlDyEg iaxDwgBzVFk eYt5GYOLjNI j4W7FAGrpiQ EnAegC2mT8I LiZ_h3tUmMs m2yxUTpM3IQ eret8dNSTqo pRlsbwGqx8g 9GBxXdJBSPU bvEJjjYbgtk 1UtDbLZsJ4Q ZsDOHhqqLCQ jzxMo2UKUKM a6cUudbbHl0 vmOBZjVBCUo QPaP-XRQeM8 15XqLhQ0_Oo a2ZdXUZt3iw yquyze0QbPk mdgbtrpVBm8 YjbYhnnEDRo PQbyl1vsn1o rqKaJ4Yp_oU QDroSLQiSRI Hgee-O7ZAnY NrhBIkWlIfA 1rJ_NvTBOmc 0Cufl5Gao98 PqOlbM-zmuI VPOd_Y2qFJk M3Jts1DPcWk BbyMGiPjDOw YjfLp0bll5U ssxqmxjrx2c 3SsvC_2wKI0 yVRmafc7cqQ MNQQS7QR9Vo bdJPnMKhsnY M4YOZHoDSyg DxdOJYRdABY NOACyJ1CYfo hAbVFxYi_q0 aHQQs4D3krU xRw3fodr6jY mG_G5waoSeo odvIh7iwK2E Eb9WH9OiKn8 ZLmRWzBjbtU i1igdJh44yU sm5Zgj8kjD8 YRruOzr9_w0 EuZM3sfjqno opyh8AAgisI jzhXtCHYrAM qR9MgJkOFJ0 dZmGh0bXqqw fuwfQJrMgLI pKHAhc31MOI HLTpxttylTM DLb9vR3Zu3g iJ_DrM05hp4 DcpIpj7RbxQ m9aEg5dlFOI 91nX46JsnlU uBP8cPLPWrQ 7-H5Yu3_Py8 KTxT13DzNsc TknTP23YYFI Cu5F2Z9mKmo bkhUe1txLoc TmFKGDfxH_4 8z4QVBaCAJM djpX32_UUvc ZYB22miPyjY zpccIJubm5g mZmMhrrh5vs WIQhvHsTDU8 piJUrPp2U2Q pduwe6sUsu4 ZNo6GHJYrFc LW8M-U3Q8ug yB1w-AypA_s --ABd2SeIGE 3nVP-DM1egA lOJnFwgpcMQ sMjmQzP9D6o UJQvNi4m4LM TZdCMfr0Um8 nlJqcYb65o0 ZW-xfRn8vFY LagXmjL6EeM IAb5uq3GzZI -wSqiksvdD8 DCThJoIT-bY WdzNa6wmtpw roLboEc4M-w tOcnYAE2i4Q yLtC-gH6ktw rA69NDoXRhI 9VY3OKScxP4 1PkqpkQQmwg 1m8Ac21hxO4 QM8StMC7V6Y 32iBCneCYcI izP8mDH8XOc AxhQq_-31FY 2BaBf4EEO10 aPdLYN69cfE TZ9xan53wuA XWAuh7S1zjk FU0HEv8SNrs zATNPZTinmM DflN8U5mO00 98O6geBet-w SormU7hbgk0 wXzgVOU3Yrs tMQjzrxE2Kc UjjSZfAe8sE MwdekXx-4ls ORQ7CGUilMs 6lv7o-rzkWM ZvytnyM6lRY aiN0_53Rwjg DkpNYjgUlhw ukZg66d96_Q zksgFqKxbVY P1R_JOEIMS4 -O7sJe9k8w0 kjMmwtxIRbg ZN_59UzKu-8 1DGrM6qhZHY bdJcCwoJ4KQ rKUEBIPe5F8 hMbcMlAVxeg TlyHBaAJVbk L_0imHGhC3o eTepvIyKhIo Vl3IiVDwgpY rGnXd_krGA0 68av2-Ti-GU CTpAikAZ2aA mVUQ88T2S6E GoDxjaW2if0 -fqOpmu8014 5yGE_RpI45U _06GrnWiGqI -Bxv4jtiR-U yRec3myBtsM B1uEaZ1xSaI 81mLKFXLNSs hotQs5eawqM 9v9MVT2X0_M pMFzy56i7RA JPA1TtBEIbc _g79FGuo2GE J66HeAFlMV0 1reD-PYDpvk QAJTgMZpigM 26nqXIUqVhE otsIUxrcoXQ DUU7WFTBgBM M9p2ix0s-D0 cP63R4QwDFI TEvVc1vsO2U LE0TUN0Po7I BdZN3EJVjo8 bN1E4vf9FlM qY7EPDCU5hc afBwkWnwlD0 FcqJ2a3Dazs 94J4AzRTLE8 jJvvT_Sb0jo tIy7sQGKtJA IMr_irerhRE 6DmSVYtMoyQ 1J-U8tLUlsg kKUsYDTykUQ Sd4y4XC-qvw MZIPOu6WeGg FTGtcjSMjy0 E-NXKcnsDJ8 7EmNSHq1mh0 uHd2oehKwuA _a9IqPr1kdg 8QDZKTF75Zs DUiEMltmojE heoNF-PyZ8Y _j0onVyO18I 1m_aN2-vauc Tt7LWRxtRcE Mw8bNmfoC48 9xp2F5kPbRQ oY1tp2HG06w -whQdRI7wUQ TXAJapM6E-U 31sP1-4GgsA e6B-T4KYIFQ c7-u-fyUSkM ovFDrgui4a0 9_LX8b0kmiI ipb0Bfg_FTs JyQczb2eCf8 Ot5T_oe47Xs SCeW4Y-XPfo CShX9zc_Zgg -wHSMnaUzWY 5Wpy4Luh_uY -GRPXrEaqn4 bhEMe--tKlY MzvFEBBZuwA sL0fO-3JquE PdKfp8IWgGI 1O9Sgq0FK4c WQwgtpaIVkE uMx7RJLn08w Em-hPjFyY-w tNnxJK7L3N0 -cPDC0me1iM SHIG5bfYTs0 I9XmewMPVdo iyVCFSW_W1w 0djt409Dqps TEtlsYtj5-s Mki2fo1Ou-s TvQmXzgtOeQ r0MABEixxRM eQ449GDHSA8 8QcReRkM8wQ Xc2OmGesDgo oe59hoX10vU 1GHCAqKWA58 m3UDahZjiK4 9T60vF2EZNg Gr18osLHHsE GV_pMBUT-24 Bg17-zWqpkU M4YhJdAsgdU 5YbynyAXAL8 EeNJbbrT8e8 uj0x3TbEE7g FzlxL1f-E54 2nJCpOeT9x4 PSDHvN95YgA jHw_p75_LfU PKG3eCpwYBM J3J92iSdERQ dACX3WiPVU4 g1R5DmGvMCY mz4JJWjy-Uk IzFSwZqBjFM 0-vcQg70AX0 SWrq6xYYIbs _41AKvC_uGk 03jGqiF-0Gg uXG9v1_X8jc S-M0BOzttdg UmRkYrYgnN4 ev-4cz3hlr0 AJQd_pt3-pk X4JETt9w9Zw 6rDCHgWk7dI dCyrhdW9e8M LmK0bMGzHpU xgA6VKUVRWY rAiLoLA4cyc qnD5qOyIonw RMaNfwSn-pw QGLQ6YvCo3A 7LraDj4Pjgk fcAhSCTiJm4 LrsnIyCjvB8 IWmzBLX4j8s pLra48c-SuA KAT5h_fimTM NhtvtnrHon8 IT236O8f-J8 -v_2hFPseDg yWu4GUFpwWo uB-53DTWD3k boGgXcQIe-8 DzqzlpAo9s4 k3KR3Wz29FY a_DO8nd7FeA ZBvJyUTIU0k vnL8uiqp6_k 4V4jhMSJRW8 WfAp-jZV5Bo eDPbu2vNrWk 4QYYeDp44H8 v3bWb5qZMu8 nudL_t9u78o Ewpzngfnvcc 6Tax5ajZYsY YDkE97uXjRo 6w5n1TfIFjk 83Lfw7BxsQE WGxfP216OFI ZPjREKxiNsQ yuQipNK_BiQ nVvMBs0TFWA iLFMRsi07_I fRhJPuDCXRk xR6jSh2HrAA WxIgfDZXS4k SBIKhBgxq6M 99kt5BrTa4Y VIxumCmygzw E7AA7Qv9LkM c2v3ZXKLzh8 X2aVRBuYsNI jS-7DpkGT_E uwkMYWXtFu0 9RpdDbHL550 nry9GG4Z0CY SV6R0ym_s1M Bmd8v7RypQk m0FsyBlZtkk KngGYZgu02o aPDfc08u_s8 qFvJloqBYTQ bwH_nxsCKp8 rdCzBg9Xw8A CRPf4U_MRVw aPcCjI--Cz4 TXLZrVcUcq4 GVzyzXZuzOU r2C-3xQskdg KlvWPWFYvo0 9qwsfjnC0kM HCtR23MGwn0 -QdBG7PfFeE up79gU3V8sk gsVcJ5gGsE0 Oe4jP8WV9lQ pkwGEagSVT0 6AWMlRhBN5U SV_eLd8wm70 ybRy055wBsw hKuh_h2nzN8 9I-FCJRX2Cc 2oFuSvs-WU0 _t1yxHW97xE qEb51O12XFw BwWzZtG_6fA PF2hIgWupGU izLhF-Oodrg FLjWVccRPOA 3oqt6V9aJIM vZHS1nXJaGU kcniTaNYikg pPCq9SIyHqE y87LPJHRfOI 8ILiVgno0_0 F6E2ojebPlA ybFMkEvDx60 dDX_fyIlXXg JVo7oslbnjA yK9Y-rD7XGY GLBlIYIlND4 3oFSNCmEZyE QlZ28Do9WmY 4o1O6Pt7zr8 5DaiI6epRCU 0tVy79pRaBs 1asspYdV3as PXokYGWGASA 8lnd2BulFkU 0vuS4vo4c94 xV0HfZSFsiE T4ZusOrLSoY JkW-iBe_WyQ UZVhwFUQwcs 6OYZi5KUFzg PPl4KzH-bGc o33ZCLXEHIU ijaNlufpcMs Jzr8lXSNRA8 GJwsVhQHggU mCfKPXX19Gw f8P51JbIp9g C-uCzmnXn-g z542q4dYk-0 7S3biRDwbAc U714emx9EJQ rbYJb_i2czc nW92suQFQ5c BefYI15la84 8gLOoFW3ke0 BxIcBWi4ETk k_pB_zV6kVw sVZLKLWFDYs FAnP3FAu5sU 4Gs6pBwn5w8 SqQmfQfAzzg p0vZhGqM_Rs BK5ad9GV4NQ 7j5VT6oDcVw Gy9Wan4jskg jmwfCk8MBhk P8RUrH3UmPY -a4N0JuAW8A BSaGnAC8boM OZJUtFROusE 96CVkRhfoKU bJbTcRnSFAA E1k9eRHXFX8 2_W3saVv0qw BLejeXcxLdg 2Dlgg0Yqsd0 kgs8NvXfI9c W09CmZtBFRQ IoRpcIVgtUc p6AK2S2N6hA dY9zZS6BNkU F1ZPE23KT_4 2cgMKpAGSQw gwEoo0r_8EY BjPUO_4HJeo G_Rd3TcODj4 4OEhuma-rrY 0ekAvNp_F9c osLhRtHZ4Gw 6oUzjN26DoM rlaRlCFXUqk TTOlRTmEdoY RdG9KwpjxA0 QUtc_tjyrsI 7taghufoJY4 ZdNa-FoYEo8 AW8Vxng7dDY dh6yBmJDLpQ 1gjaw2BNg7U 1rowOWuYacM Xf2ZsLFeD24 fZ99iSkvkec A_n2FjVMiVY 1q-FL1Wd0EE eJPXQfvokV8 5DWrrqP_HNk v7QfNBfZT3w rTlfnymyrrQ i7Jg_6-fYF8 8zMlPNdRRLY 68CXG6t1mxU hCN8UAdH55A FJStfF_7w9k RgM_mn4oP04 NawsWUndVQQ 8fBQzlJdubE ELAfnYfUaAI xk9PtV1-Dl4 hFZGh14H_J4 3hcHRAFPBVY x17F1j6spHw BtvvvXRUks8 e1oUspIUHEw _J6ipSZnD2c ZoYZl8-VEGU Hv3mUXCo46M FY8vuvzZHl4 wmKfHN7NxeA DEeqxarMzg0 Ny0jtHcjrbg G_5pbKwl4hE G1OstoTh_Bo bgoBjzXp3ww wqQYEQ-fsLA jF6mqjUiljk _wU_3DGbYS8 MBDyD5A2mQk X-lp4KfK9Qk TYiEofdhOgQ bHoe-hfh9WE 9Wy6ekMz_Yk 08zyIFMP-LE Zp6CvBIvqZo UCac6K5YWns vgEq476aHxk jA83iWbczFc K2LCoTSVORY jKIG_-544gY wx-HWqbwssg ODeWs0Eu8n0 FmYGC2QdXd4 f1mbRj3ejAk 3yVGaKmJrUY Exw1_k7Hj6o zjQSWtB7Kp4 TgzbVMwrr7s DHk_bI_wMcY ybDsC1DzIPk gm0I_zdgs8o F8vcszMAya4 g1lpI9wZtiI X-VYaCvJwxY BB3VbfL6Xyg xDe-990DWEw 07mbIgWikmQ GrJGkWkkHZo e4EL5s__uC0 s6QIbe248NI xEnYDuZSSy4 Rpr0n3A3_BU w8mpECLURqk BF6tMv04X9M J_hkf20P6FM 1RsuQNxE43A or6rCLpiS10 Q2gFrTuZhFM ms_ERfOYnqI DoVnHRhvtKI _2vMtzWb6q0 Mh51HEise7Q _6RI-8Ia4do 961QhyKlg34 ROlSjAgE93Q ZSQBKh64SJA AYy3qj5Y84I DvMB2pgYRMM b3IInexeGWE KKDCqTCoLQ4 su9foi8t6NI iDTYtgkzpZo gm5nPntwGQA OTAO1MRbmNY _6IlaKlrXbs cRc7p5HzKIQ 8ITOvb7Des0 AHjOZLikqoM aRPInpAD3_o R1GZ5ajb_xc IvgFrEk1JqA R2DhcfXooy8 JyAbZxxgLw8 Xc3bqi1G5xk LszhBmIWjeE lxlwKE2-3fg wC4MzUvxVa0 cwOh20xN82E r1NUy3Rq8n4 4YuwbC-9aDI HVlrXQ3qWqo NqmZSSpvghU Yfqg-PxRCD8 lUglQukweZY zjdTL3Z77G8 iKscMa0XRXo dfofju459FA S98AgHKyX8o Yn_W5-xgf28 hY0SFHtFq9w H0-STiAQTqQ 1WlF1nxQKgw p7CweK_hS90 hV6I03_cIks 3BIyw7X0j74 7LmO5fAuT8U OSeQk_f4hSY nSCUWDt53fw tbMeRyWgdW4 H3jNVPIi5YQ 0_s8rbNokS4 KarwL_yYLcY 5Ka1bqIBXH0 naPW3XAHz0g pjHBTYOeSxE Yz6pNUcMwzo qfKQJyqMnvw hKH27VchVb4 1NnwUUf3RMg nLpJ76VuXsA 6eV48Ir-RYc 9_GelFK6rdw tpnUv93AAp4 Y2NT0jeoBXk fkQHKvo7ZAw _pe3ht3F0A4 blGRLfNok3E qS1MeoM8iA0 2iMVLR9jP1E fDSyuyOtPRU m3CMdoMIX2k XIhDPwuwQdc Q-X3-JDIQLM 3Ks6tKs541g ZJ1UwZPZN6A QRWluPmgyow n6mWh_43Azs uJDmoisR-28 6ya4pGA6zPk RybQmyBoWEQ egB-SG97EcI _pin0H9Udho 1c5xWXSWSgo J329mOtIQ_Q YWJMmQUGP00 OqzgxMFTQfU UxHXWhEq5lo yFSvuz5aHy8 x_BYzj4jQEM 4cyZctbdFik mmdPZs0Nvvg s6n8HGwboO4 TAK8DeL_w00 kZCgrTDVRbI GYh7IHTeLus 99IsS-uXJzQ GylxYHpdxVQ 5QFZ_Kh7vP0 g_wEMoy_wi0 uzeSNmjxyNg FmEHRr23Hro Sq7RMukT_sY U4fnEAu1--0 nGx3WY944DU wyifbBO6sAY sk0mjld_eow Ubb88WMrdmo 4wv_1umbZ-w kHQq6ri9MDI vJ6XJtlqqZo n6H7zga2Ks0 SOR9UOc-alI CFOC-_DYKXk MGRJhDyY9ls rZs0ZkhzpsI THuOIvlbIjM WeSHSxMfC0A 07GcBnddoMU RIInmRkYOXc cMFosgxgPAs u5hpQ0KeRgY J6osFXTp7WQ B0nhCPv8VB8 kqBMHRX-c-4 oG-MKxVWwi4 vZ3nHOtlQiU M9FAInQwCm0 ilXtCX0-CkE XvOKgNVwLes AoPqvTGZv6g vOfFVhSiwiA 6nZJPF_VgIQ Hj12WETYG0U yLJ5hUWH0yE pizMaFdtY-s IfNo8NJyy8U s_cz5JFWpzE AUPdPriOg6I Z4G5St8apOQ GLeGjBbLSJI Vh4rJorGhHQ xHTAYPp_gzs C3ajmVuQPk8 7-juqE5ASnc iiYX4JT6C_w 7UQFQ-FyV98 Xr3vKjP1PUg 8-S0Drs1N9Q dFuy0W8-Wj4 RMdS3Hi-rMA DE6io8Y3FQQ R8UDjs0FAdI OrHgSvrG8Z4 nBGdf1uWu5A hHRWVczf8d8 Vq5QdeqLYOw wdwd_fCVhFM MUvtyyo1vdc 8tnIy3PuDiY 44zsdC87LJs XhWl0YaZKfY EPFnZSvRq6s L7rGRnu-2UE mRXz6hTAW88 t8_p_4sqv4k 7Tx0kjtoAks 1LwSe_JnByw 6rNaFgA6YlY dfALZ10xUyA vdwWjsJLaJQ gtmmKXgSUwo nDrjVVyUjZo fN0w62AurJA B1uklxoaP24 aViOusNEtoU 6GEll0BI7ko 0I8xeAEpb8E sSLdFuRVlmc wWpNqaKrq8o 3SVCkLf0NiM FE42Xc_laYU FeaVbBKg8tw IQuxKuLkByg 8SvHSEy3xCs I2s3FG8KpKc BZTDkSXwBD4 kKBsDfBDmG0 LDmKhGcB0Xs LdRoFo6JuNs L589GA-KKq4 M1hXX6aq1wA qjqJtri_EG4 4kRRDuR7OBM S989EXPoZKs QT1Tl6npLic COSkA00zJlo 8CcVO0mQ1go lnfpTgAQ0Ys 3UbNdsZot98 mKrFcdRLGQI 8_oVkRFKukY iMaL4la2Q78 2cg4S8JO_hQ tNheq6EGWuU isY1TQ26Gnc w01G5wVBQKs JnlOLl7Ew8I APxaNrWnSq0 2MFlcONJD-A YACsFmbB9Ok NbSduHWUQDc wzkoiXWdFzw y-m4KWfeyvs bmYXbieirM4 t8VC4GBHwds jBt5rfpIjws VP5nSFxqyxo aKidFnGJDYA FkjBXGnq8Jk x_Gr6RT8Aho 5S8moDSqK0U Kzw5aWCSZs8 x5ajdqqytyA bNiztacMAJ0 zElzcOQWLLo w5mtX7FnO3M 2EojVDDg3xM e1FWoMLjAU0 jsUGvhq2MLM 4V9xYmVeNL4 lP-A8UaVbLE xkjfSZtHBXc Ll-Ff-PIPOQ 8o1QfQXKstU lhzE7_0RSow vWNDTaQG9jE wdLfTMSAErQ lh8UIXq5ELc ByN3jkG-PzQ i7Y0sXYRwhg JEbShXn2-Vs iUuWyMhkd9A UbQlBLCvOk0 7InJqZBrCuw zIWGx1aneus v1ef0grzZWM w2z6YPTKVsA O4fYclm_0As XztayplmOsE aELUig9qu3w OdJlNbw8ru4 i3VHMIy8wHI L1hEpMsgttE VJgFWMPoK1M m_udTXudsnM eiKrNt30jS4 772oaU4DFTI sfqjgFBIBFQ d82uV320Fzw JqwzeAkRcJA Bl6M9MfRbcU gmJtNjLjsNQ I30x5dMvcA8 h6usdPpiqho j-TPDJFWErg wmbN_BXQaho Mge3npvF4R0 IORWBsyIivo 4aKmbFnV-mI 1AhrD2-cvrw CGwzaIS-tLk KxcKAGtHl3A 218nJYQ3oMI DKqFCG3UTEs ynC2_22yuGA UyKyxHFIT3A 6ldKc6yXTyg S3-atF715Mg xLZDij_-ZRw DHYCHYsyqTc RHmp-rhCrLo HgQDAW28DsA By05PXEvGWA QMmxxD7h5-Y IPPeDiU4Vdo Fr1A3ok_kfw hAU8AQ6xlw8 u1Pgftn5H94 GvDcscZXfl8 4I9-0dipqo0 5xnSzPHjw10 ItMY_4RobkM 213l0Kv26uQ nPRUkMAdukE -E0UUIoS5xU ncErLtJBlHw SOa5HP_FHoQ _jF3JZMHL30 P2NiGznbIcI ez6GguY40SQ a1DuE8E4DpM 1Dd5HFJn88E q30Pl1M6_DE kL8e9CEgm6A bBjLUZgx4WA V300Gtn8NVs xME4tintsqs Hsg_ZUoSlCs WIBrEMlCGSM l081UdHizvg J38c6k11K3U M0iif-dNJus jra4awMyUr0 yYUtAKXuicA toiIOy7q4xg mo2-63epZAM s_h-ZXgEtNo 5yGKubkHrio QoT8ZUDDmKs FsIaDwn2EtQ oS3Bld83J_o gc19hOdR99c lEykI65QtSQ xbhm9F1ST6I fQ09ePfYLpU a8EeFNXk1TE 6Xn4tr2grtc KEwC94CY-Go WJOMiXmwfYE WEfMDGtX3K0 hn3XR4o8M4c pdmo-_KXg0Y K2hcF1oOHb8 CVxgFZixwlg 5Ugqj1RATYE WsffSfKc-mw fLswSc81mw8 GJ0-xGnrjBU IvGwIRIYlBo WSYe57h6YUE x7qvOFN1QZg HMUbL4Vgb2E xNzE5UoQmZw -Dny2rWieIA bugH1m4LteI noAefY8KRoQ kjo_zi4cLJo Zagt2ld1pwE 9gEtABdjiiI VpBuUC1P2jo S88bgODlrbk 7SBBMiyv0kY g3vxfUb7Sr4 6AWo-9MFBug U6PrB5bbWRM KJI1SIvGZEY z4cGnSZQni4 KlC81iup2Jo 8ZkCvzJqCUY C919Gt7Yd2g yzTbstnZYro jH1hWH-WvLg 4D1OVjTF1E4 VMteZw9UU-U eiuVC_cdyIA GuMg7x6_8No cRgXwpwVe4U agzK8ig7rR0 wvknCnZ8HJ0 EJOewEP6tKQ vMs9qHAQaZE SH-HSmrjmBw c1K32XLhn1M IrU4ze3VfD8 p9kL3O1TuMQ _q1BSBGTR2M jWP3sgGz2F8 JOXYV6UN3S0 8knM2DiWkUk uPcTCWfQbzQ pgDUFZ9TfPc kC1Q45BQbY4 6Nb7rSggCns 1Zwl6vfqjNQ SV8jbzudYJ8 dDGMTl1Ya78 t-lIuwPGT9w eMgfTq1Z2n8 4KICpbB5YQY 0vcXvLUt1E4 Hxc048RM18U 8M1kdeDluRE FllAsMCrdJE XfeN42X2UHk PS2CC6WdNMk 9QHYm5IVhHI VCDY6MTuU6Y SNXqtm-WAh0 -05NPfkubKo JrPRGahKOoI Vfos_yqayxw z3t0ltbfMJ8 XFHh8V9eIaU gSpHZ8Kuh4o ufhTl0M3rn4 Y8ML1TO5-JY ehyYdjaZnoA lxl55rsNihE Z4nVqjAr_n8 ABrBbozUYaI 8oZJuop-N_g 3YGQ4oen7gM wMAAK7i1ib0 QjJO-cEmxWg p8zwrVyJHxw bp4HJ3JRxag CKtSDzT-SOo mkSxYpK4ALw 4Q0eWJZIev0 SBW3d6oYdkU S5fwxvrutg8 q5ZwRphkFuc Jq0iZ5okXgU IwOoajZyRZU 8Chr00fm6AM jk1IJ5ggyQs sG41m7hVl9E kzh2pWa1lzk 0Ij2veeSsE4 MkiewChfW9k 90EupUjxPIM edjnSDwMFXQ 5dlDHt93ng8 2onL0hkBVJc FOeyhFQK19c 01Im5dacdqE OjmXuqNMrDY qG0W2UhUKRc Rdl0ApAeczQ q5_LSGwd19k z3H-ozBnwQ4 mEmmWa3xK8k gyRxos8xOyM wMa7Xd9GuUo R_qiBsGsQfI O-Odu2P8X1M 9isn7V7c2gg 0K-qOSq4vz0 mt6D8QQ-nIY D97vMpPHzDg MviysUwcItA Qw9ltquDJRs RuZhnKanGQ4 h0aovIIojck -bYLI4I8vkI 54CMOjYbovs ZQfZtwole3U gjODxXACjnc M2AUEpmLf68 LLeKCWFnlW0 2bdQKmp6hc0 TU_iltXEntg Tyo-f87JA38 x7yAcIuyOb4 gQNFCRom7c0 BX-hxkRsaT4 _4DRXSdPuCo QyeYgwO4ADg mbTKo5Ylypw oZlQMLXqw0g dyXlsD7Gx0Y 7hacgmRbdMM pxSjP6JkAis Hxtm9DG4k4o BtL6iIh95ag MD9AvOexMWY MI0ZlakXWFM aCqeaDIGLD4 4QCMLXFfJyY UUSLRRjc57o vVaBlzQzmjQ xKrzCRKABjY fuyK26nKaPw 6FtMdJEg2ak ziue9g2nXZ0 ca3ejioEyiE eMru-ZnAzUk h1wWMu4nyRE FYUDzpVRYio 3rlz8tdE5Mg yjQqsPi138w ekakyXFzHwM ADy7gUvipWw RWm6781MWb8 TR6tZ5CKRVg rVQAt6GkMgk RZvJ5MoPjGs p6SMuW5b91o iKQIxiobVGM NOe3intBN0w jQVO3AWAgHU 0H3xMXZWU78 p0Iwafu7J4Q bCAXuyqUJzs ylzTTNLGlD4 IFVWE5XHflo I6JIv4ht8OU 4qdHRWWX2gM BcRrXppXfEU lBIi9tKMz2g 0EXwWYHzUNM Fb3LibJlRdM mClqKZl0KEs 5K-YqPyi3BA XRKrwa_--2U cSOwRJe9hSs iv8bdd2-Y0w vk3s_WgZl1M 7x43p4KHLLI oHAtHxDF6DQ trKur9bR2aE hxwuvmJyM8s RbI_bPsWnmQ W8tB9ZTiPpw U-FFwUkA2QU EpzearSkgOM zFIHYJAp2rc 60V3JFUPvIE 1kNZdy-IxNQ _BjawJWZIxo 3uUUeNqdMMU f4gmgTebHog OzliqFzK36E 6j-vjtJ7PRI c_6SIVs_M5Q 2cJGGVlQ8X8 VMLlpJdCYG0 VIlnM_wcw0w a5AnZBVyCCw 1psPf8n2AKo Og1Ptc7w7GI zJ08DhVEAiI gkStl7MVRnU vyVGOQCHbTA aBMH3MEYNIg OOfMTt2XfWU W6Y6riI56Dg Yb9EnN_gvu0 1dcHIATBkS0 tjpRBPJGPjY cvvBpQoiZpg cPBHxDtI3Ok fF8O4drwH-I Ntn3ksJwDpk -rMac-9Z66w 2U2zhXAXdhQ wbwXHxqxDwc _RWkRZDPnao NvvU_4PsiKo VAaeEoQq6jY 6EfYYxmfABk yq571gv49HQ 86sXLVakflE raM63LAHuwo cEezHIqQrEw h1aJoWg4vGo t5zrRGTShZA TXRHf6Hzg0g kYlPBN4yMe0 d3HAOZbAj1Q 5vY-zNTuq8E ieVPPV5S0Ps DU1C6QrVmuU fLFf012Auvc Eur_GSTH4oA WKoY2kS1UNo S5EWvpoWIBk fXElquKFrMo eBx_WJQ25Ec hG2yx-PTxys Ei9RooSCn14 A6b9rDbdOzI hgGi1ODlBBo qLoufJLKN6Q dzzijuZof1w ibAU8weiUOI d_A4tfEukp4 Bf6FD5UbSns RgubwsCVg1o dw95Qsj59NA _92v2IFT7WE 68SlAT125f8 wfAfwKUkfHU 5V-C6ziFKMA H4d8EcquSUM o-6E3Hd2OW0 BbbXgjwlOpI A6oAEu3DbKk Tc7e-4kbDto nBZ39gX_FlU xuhl1rceZdE 8wY9r2cpbxQ padXZANlFwE D8Cra7i2kGc K3dG3JrXAJc CfsveeSvZNw dK2oGZK490w 6_yYxTkdIk8 V2RKM83CQ_A Y9OrRbeB-rU ERlyrvQbqP8 dEqrnOk8P1Q EDq1QNZ_JJo 5dE-JjnKznQ jpTj6qTyIwY qKT2-0WUbGY a1ewWPS5ULg 8I1qHr1kjF8 tbu7lOVTric XQO-ftv4ePQ 81ZejwnzklY 4A-T8umqRYE eTGHFj1kdsI hca09uawN_8 Epzv2FLSjhk fthLa-kq3WI -V7_zk4wpQs zpCCg4DtXCU bc4_fCULOKk jdYgR4Vqwuw s1-5EZM82lM GGVL7N6Wz8I XkYj78aDy2I _txmRGsX5ss XjYQd3hE6xI teoyewW1bUY N9EnEuH0Tgo OSkFsRL177o 1CXkATQLZGk ImO-q-hTdAc eRITzdlHJXA 2b-ip6hZYgE RU2IP_oUqyc y2_oXPF2b3Y huxXgcGvTPk grpGRWYL6mQ pPcxCk8YBVs GeLDjQIIkdI UCCkKfTVEy4 kFbDy90VZQY AkjImI2Qpew Wv07oUFHGRQ f4LEgmt0roE ry9yNbMVeMQ s1QgQny2o5E 9ltpGvaDfBM I5RKRQcsDKU VV26lYf6VyM prAOME_9oP8 CDQw1Ez9yOs 1C84oQva04A wpxS1xSxUDY h0i2KfT2SB0 CdppQAIYPzY KccpJ0xD-7E P4KHpL7ZHlA g1axUa-NsEE Kxyzb-o56QQ AqAm2IAg5Fw 9Q2UjqahNSw m8KBXUCttEw WQXNChLdnvI wVC_xkrm6kU d5n-bZf3eVE YZ8k016_bvc 1tryt4ddnWw -Kv4O5dyrzM KmuxPl7RkK4 5N86yJbOjYM C-NaBwskUp8 -4Qk4eACpXI nf1DA90KAIY U87C_o3_qOo N-dpQITO2fo 4q5rmjaO9Cw kAFxKPtwYuU jjpQORCD0ZU GH-oJGZKmq8 -mlfefNP8cw c4X58OjlVPo MIZSWO65BXQ rrMvGHoW7aw mFH_r2w28rM 6CBfg5X9Z3Y cT1iUwGGUAg 84UF11bJDFY 6UNDrO9PrzE TjMQwe-R_5Y O_CorWKpGvU CbPAADCg6ns 6iOxj7Lgn4I 3FeBwyb5g0U MJ9QAW4LUEY x2jLrsMN6YY vhv17audEAo NFgP1bVZCy4 cVGZCFgH-Dg ANXSdv-KaCQ gSZ82TOHWc0 XIPjMKd3-1U ZyHoPZAsm60 PbC7alhpFBE VvfIdmaKwfQ XBCML9xJI8I YDeGYXbeQV8 HwaqZA54GTk HOY92xiGY2M M3DlQK8xFBQ mbl4cWCn6z4 h36L-NdLDhI PzUxcPh1zPI kVQN0ZDzIqU BxvRz4RftFY eaFX0rKv2Fc 2haHRRfKLJ0 x2EI9M1XFOA VqYLWPoXeuc VXkEBRtERnA rxno2wz0eKc JvG1hHsOFUA Bi8Spey13uY kbGvnI1qIz8 iMPV0eFLxbQ k01VcZkKDME VXPxIwL1e5g ZQ0JJpvMq-g ZH81ElJu-Jw lLbWBsRVUAU tXrxBy-CDPc dAoRRTPPIys 84gYIl6Zjks kD0zHgK3BJ8 SqSZ5RSaT8k vw44oj_STSw UkIwAAKv_iA an8Z9J29zWo S-Io377-jmE XYD3ysriZ3k rcWb_qea8Eo W2QDEiF7SGU 1DSkJxktHFY 0pPOxAQwRgQ i_3ktf3XwNU i4l0vA9bzaw z1e_c3E9ZR4 KuLvoPT5PQM sWCjRo30-Ls st8QRZbJdPY 7oqRCOYvOS4 SJ1_epc6q2E kd01w5eLVwo rA6AZeHyw8Q RVu3EPJ4-jA BANrqTBnEy4 3TzAJdCNpZw lZltw3ubrGo Kusz_-SyLfE Xa36SdTlCZE lGVU-OuhTlw P2qz2B9snxE -ZTTZtzzbmI xxxnlkTZlCk dDqhjzd8wXk E7CPLxlfKaw QQe-fCLVBVU FgIgeE7C6bU Ddj5oGNtezI SAQN4EyLqZk ffxg6IB27GM MVZn5gTph6M fuXPZqYtnjo _-GaobqA1LE h7i8GGtWf_E XB2CUyVSAq0 gj2Y2uEcubE aDJgv1iARPg XP0SZTwlmMk 74Od5-Fmf60 g4FOpeshqA8 oeW9lZBY-VM eq3vD93GgLs MvkN3003iU4 xGeYzlEV5KY JdZHXwqDXB4 jBotZTDEcP8 A8nTO1XWlME f_8dti9p0f0 B0sO3FekHUU Ex-eX7zpZno QGRAdMGb5tw 0i1ihIW8eCY slDxIGhBuIE mEv2dXzZTV0 h9HV76Jl2WE 4TBnG3RuU88 Tanjysfo1SE a4OWkIrQUJw SM2LxRKqYR8 dYafG2EuZjs rKwnRWbuCx4 YtWJKXNMmhI jt2BPBAWiEQ j_z70ZaqWUE QPbUj6Ks8j4 NpzigSg-YkI 3S5E22b49-Q 12KcnPMV3OM FBpzRIzISeY _4juqo20ABE OosAKayGMj4 UBmxdy6C4JI nToATRUkpMI ti3HSBmEoVU o1RMSG4bnrg NjfviAKKVj4 FkEU_g5u_1c 8jyiXMPl6EU qyXpj-yVjVg L3aF2hwu8yE rjLuhEOhj-I h5WL8to9Gq8 ccJ95yYf3Ms dYaOu80atDo w5WmCh-cRCA uqA0WkLSyKI h4XKQMfI3B0 OyUea4_exRU PIfFHypWnf4 ZJDgkjbsitw NIMWmy-1l4Y TFDiCTUAJuE FEiK98h1IDc XeasXb98akc NulXXh0cw4c koWhZSL1Kwo XuNDB-xL6uc jiHXahhmzjw P2rpcVDPZEY rxC2ZWU4IPo PdgSo4Ts7D4 nqF0yFLjiXs hEZcqWRB2iU bLqJo78X3OI PLr1f84fj8U tEWLG9sG1VM mUVup2pr_eM BDZK9B4Gu6g be9FJeol_aQ sLKnt2jBax4 BL312TpdPQQ 0dC7aMWCULU Gn7MHo0ZZg8 Tg_Z2u4GShE rp07bmYWtog Bxne2K4K5GM 6fJ9PDZDS1M TfGXctZRcLg ppaA4P4tr88 l3acfaQKSnk 6VeUp8hdqj0 BOKbcDdlAAc CnyvrkabX5U dHaZflS9Qag T6ji12DwRQk 2CY78EjBHIY uV-0kDRYYbU cNuHBU3DIAk dbGKS4GQbv4 3WAg9OI2wn8 klnVwzouc_k wKPbi9oL5xU 4_p4EAmMa-M 8oq28m4uqe8 oLJ7246t3-c Fdq_l2-C1wg fi7cppyGPPw 2AoKTalyiUA ukOx2hZvXkE refu69Hu5R0 Gbvml-bH5Uc xqb_BP27cMo Bcdz003oBg8 8qWfNcUZoW8 Ju6_z5Wx9iY lwB834Vz_tA wrRy2TR4WtM 5i-LMWpJ_E0 bf0eKlTbGtI ESv_Pi8qlE0 O4TI2Nx8RjQ LxKahh3H-3U Ai5tZ8_dQUU qItvl5cX4-A ZLhyjNnrb6s jFQAy28o7Kc _XST7hft6k8 2MxnokvI6c0 Zlqovh9U5v0 YtktNetGOKU Q3n3k6XRQ8s Cj80JkVCCpg bIfMAhK7Boo a46m8g3grB8 KUMoWS98jXM R6nZpcweYXw 1Dvx_8APGEo ebHQ50ZRvM4 6T_01swH-OY IH8u5eKHNhs xm2ztDqbbZE ieoN6CC-9ns b2jnKIitsx8 6JIxbckE6MU tcgo6nFJXmc At_y4RGfW4g 0W_kwmGYIS0 1Y11eIVNgQA mBAPx0F4e4k JkC83ugjyNw OppcXf2Vp6g -45cXUSpOw8 txQcaXvbRB8 Xh8fDMTvNew tvxi9MyoiGE VAb8s41LLCs WOSAa_l3azw 9y7hXwrVgpY im_-maHhOew _EPtenKdrDc -GThoBQbPjI ctDyR3Nosis OUztRf_TSHE VBahsJrr01E sjZ5I8l32CI Pt6VzQ_0k_I QhZbpE7mdoU DVR6p7Iopec IvAjNuhubIM G6f0w5BRasw 5bWanpZTnSQ 0pRYoClF9w4 5WT1QRZ2z6A E-wr7dD1n5w 8INjmc-WWSY FoiZPbPUnlc CWwcW-iuP6c FKeJtRtug4Q lPFulJcbm0c 8jIPR2QUl_k CXOjc3b_FZ8 hY6HUmWzaO8 rjc3Et5D-2w LNPf_P9svHQ pFXW-7VNngk NBY0l7A2uLA 1zi4R4EklsI QIIE8CobvEU QP3Pzr7UFE4 LbCGyHkR0ko SVQDD7TK-qA df2QdWqKC6Q X6keMEfkZok mCsu9hGvNEc qjl77Gp88RM xerkgvDm4Ig LRGzyb7-EeA VeGtHpQzC6I RPXI3xQ2aus aaaPoObIxrM ueC2ZLsV5DI dmfgNHfdn8U 8_2tkIqD3Io pQZkA0jRiKo rgd8TC1Q09g xXi-6s-qrQM r8swYmKUGJ0 _Vyg1SVaZu4 F55uFHs0d-o oP07gJASrGg gSsaIqwGR1E YxQJTlFyebM cNMRDmf3000 NLfY3XAZ6c0 PpxLYsi1Yk4 BQl4CNHsgvc ZMlGZcr95To k7_V-3ApEiM dry7kY2BMlk N_ooI6Wa0H0 fC1zzL9DjdU NY9q_Vfbi5Q wTGRsKLqkGM sGLXpKnQfSs uuTeJ6tbyB4 i_uA0oZ3xnI KsYil1zPabA _AYtVmu9BkM qXKeIDlP-ys YaUe_zBgQ9I q_v3jNjwHNQ mR0c0i1bCCM zuqEfWjAAEM xlAwSNbAY8E gHluHS9kX5A 5NuvfSWbggc tqTDKWhqvn4 CQ0Bt9PxosE uKtbfkmIT-A qPVePtS52Gc 8_4rJG5TmBg N7CWWZi58bI x_-G1IuNv-o pfPBf3mKwFc TDsPAXyCA9A 3R7OdK-F91c RIzrkbF1-SU 9LqrBRqFxmk HwZeiTzih4Y 1_CfcecGCVA bwj9ig-venA dhNjb67EpIU wIC34lZi_NU RN-F41EZQK0 8tdYFT9BIuE FNX19RFNdGk DlkXnN0cENI GcgIg6HEB7E guEyoPzTkQw lHgEqIvG14k mjbU4wy8VwE t5nPC50ST0A Jey2YsDSyoI QqmSUjxUg1M EYHLDJuEUoc t-t8eVDckH8 bn_Df5UNy3s XeGGNf_-nYM jMvR4K4QICQ i6oNzS6kCR8 cjy-8dXBljk 0ACTvENkyD8 fUKoBAi7qCg vF-tPvPAqhQ rpy7vhvX8jw 9n23ISvkbFQ 4NGNbrLnvhA 6rGBqovePfY DHnwNo7Z6Ts _r6i8Ae0cvo Y0uLpcThaeU sqZ6ZrVIemM DEcY6WXL6_Y vwbryjr2BKg G9D_0pXaM68 zjm_GqK-Kmo BW1kpbOz5Eo rx4sKoITt-Q iz3ETniN1NI m4SWkyqSFxM FZlm1ledK-I ElBy0fKa9Ic 9tli2kwH5mY T3zIklxWw44 0CYdSfhwWVY IS-TH-YQbL8 gpLzES4A7zY ic7g820jOqI nzglM3ROd_8 bp0aVPeUCrY 6FxHQNSukfM dTQORe5M1tY H85jp6COWak LFg8eGuhlak u6YtIOaN264 T4v_27FwSbc d6N8yKrG2Ps DBooQQKsDac czLSpZb6aWo L6Z80A-avdA IJe-gy5sR6I AapjOgixmfQ 5GZbCRzKoTQ c5ZISrFKFP0 HHc1myygH_A gS5vt3ZE-jI zha1tYGnAC8 9j3KAnX0Nhk qe8IY41zyCc NpoB6-TCGWw uSZi8oPRUkE 5jv7TlhbjAQ uEMTQYe1ro0 Hj9q4NlwcXo 7ZUVMim8ebM YdcWFWm4n6g v2qDlGbaqSQ q6j_0vS_NNM NWvUNDAsYqE SUKdlcCiE60 ECirl_sSf-M mM5dRMY2u28 aiJtAU0V_60 UkH65BsZg_g Oui5yj3OvxQ fQEGMNLTYPs AZ0AsuZu4ds jPH8I5QWFUU S9EIFSWUoOc 35FF7e1-zCg aVHgGXnna94 ok6H1OFTmyA d5Pc-tNsvT4 Vx3I6XjqCho UDq-H6B36g8 2LhsuPLvtFk o9dLO77OSao TyS98_jQIA0 jRSw_0zpNE8 SfMSiaxLslA ptJ8x9AERwA lbqDuUjm4aU 9_yf1HCH5CY ALfuWSv9YVc 4HB9b-ttI3I di3Xh95aXp8 WfCufFRo-hU TSCcj7mYuhc v757jrOBkng FRhbIIkLlFI 3l3rJxuxpDo EsTniU7j_yw 8YUnOHihAU0 oqQGFh5yiWE IYfuTlTiixA FQLXXM-nktc nepc-GLWtfc FYDEheLGrKw vYtc_bS47oM xjdKPS6-8XU 21b9Nr4VIcI IL-_pNnEuk8 wjVPv5aO_no 2GM0LKQ-ml0 Pb1N5TcA5to SLC0omm3N98 FS3hFDdeX30 9smHLhj75CU h7NG9ZEfyKo tRx8N7mJU9g t-5usV6m4J4 sWCQm58jJsk ik-n-L9UNTY 0xHe1zkABYo Ovyfd29a1ik cWiljyh4NR4 no7XR7s8Z7o MmtvzIGaH1I GrCmVFX9tyQ x-_17t-v9dA _4EkJkuiwIg OPuOk309lSE 9tHwS5Ymvag WsaXEsBV6b4 rz2FxTVVJi4 e5cg1EeFISo m8lzyaMZ-mA sbIfW_Pf9vk FN3SPnr9EZg Eom_iOkd0-I gA3wJRuClks v8UDjwdqzKY V32SkmBB1KU cBFrfA6TrB0 iga0_T5B8dU SXVUCgoOcfs V-mlZvBRoOQ VZM1S9VcjAM zeV1-Ito9HM gQ5KDSBMFRU Km2lbJKGAqA tkWWtYRbnq8 Go55LztXeQA q5RSKejDWo8 xcc3vzgR9QQ s3mwDA8sv8I DV5EHuaa23c tD9DfbbK6OE w-6lVMklaKY QqQYNj15OfI rNP5uIQxAfY ulALOA2LeNw AH4E6mdxZDw csRJ-T2LNI0 4pUi3hbXF2c 5Abq-DZrjB0 8ilbyubEDhM ogW6YDmEb1M k60eGmxn7Rk CW2M1ZyYArk f5RQrcIrlBA kGQbCYm2kx4 d9TdwetEIQ8 79WfcpXDbg4 EqFFgltjVbg BleQjp9zglY t2NytKIhd68 5A98txE5nno PiMWCFay_sE Td_5-DJdFQM 8j4k-10bZC0 5qKySTAWpiY 8Cyv7f65bbY PXMASW5YQl8 C-FH-TOuFpQ JyEYiaZW3Ok TSclZRaacyA ejD-W0F0hr8 8p6L3Vl8ezA 2hcGeToc17I 5Ackdv3pgmU Uk1MJFwGMjI ntnqp7-SG7k 1AlMY9fDHu0 7014C_6ABAg _RHrQlqoTTA vJv647j5Ig4 hoKvbJSMShA _EpizUY_las UBOcWFBBB04 8JhRzlsZPas dc8glsGbIus jTz_VNAGqog 8Wgkpfa5HMw S6iFW-HoFwc KAByPJJecxQ 99IRJoGX238 rZpeepxXh7I 5_j3NrcDiS4 KvfIsbhIQLA IC-u2-aQXS4 xKaCxkf1Ccs S64LeYg3Tg4 G629a_3MkkI N9v6VJLZ8_I uSMxnpecSZM mqhpZ30uNic Rpt-fbpiTU8 TtALqoM5hkY UbwxGgR-EAM 8YQZMbgpmIo IXSNWvdkkic bubK4ybEy-Y apJLTO5T430 SUVN09kOsAo 5AstACoPo9w 0dGLAOaTgyw COy16bTI_zE nTs76MbxqEM vwrWW26_JHY ssS5S_E37G8 Y4XiKFvQ1rM ttTyXqwsP0o oqquLzHmH5k FSj-BCOlGPY z9OUZNicTGU 2LX27W51kB0 BFSjHBVx-xk 3v-e25d34pY Rfl2M8B9WA8 fr93wwtiKQM GfBsuOuUdoI ijjYDSqZOyA YXFkCH90yYQ nq33k1fFyK0 NgLepPDh5tY DsSvkC4X4Ko 2ZO0CFb3eys HdbL45I6VqM qiDGtIbWRVY 2rJqM-hodGQ HrYK4U_a6y8 Wla8a89Vm8I n0Cg6MnUw20 IZ-VZCROw_4 KCg0cDrNQvo Bjcu7KBoaNg bCD25qkPSwQ Pt2wNC6SYnE YXzjSJDDRIc l_ZRivM0lSY 1ccMqOW6LMs MQ1E_qYia9Q nCWBxPh4dGo dZb8CGMC1zA h6iHbAju1cI ItHtrNSJwDo uta8BACjLNk pikAt8prREE 9C0B94fFZkQ h5D7aOzmDec 7lL9YOO31Ig Fu82oMZobYQ VZRUqjnEPSk fyl1lmsVuQU GcVogDQ4VBY 0v4aJAsXjCA 22hhTrBAFRA T-OmaEI2xrs W2gWVhYRyXI AC2swLcXfwQ w_e5kx3ONfs ZpmCdIS3TKc n2YCseaZK0Q kZz5k_xsG0Q KnPfaGzmt4M v_lHiT6UVCE aEfAFo99jEs alYZ8jQ5L3A melCNhYmwII 1y7cZSWu93k FtPj029E3Qk PZeVTlloWxw 3SKk58UngIk lMXVWQCa_MY UfoHq1-vpss 4k1Vx0equfE 6zfXkQ5QkrE 5ODDHpmqyWE wIb3cRvQYw8 lHqGIe8AZ1g VRXkf4--IXw k6kWvjAJHh4 MHyA5fJ18HA ihJ8mtOVfmM PSjEQHBkcq4 l0PUssYO5A8 2WgBKaFO7wk iCmT0IRM9Z0 uJw5rPEUblc buDmlhm8mKE 3fotxrK_Spg 5qWIaxikcbc 92WjYrR0PEA ZE5ddEN5Nbk UuuzF8Pyh0s k7oRzwLIgbo 7OsEWB35fPE iwZN1N7Denc nC2HOMOxdkY C2JaJ_FLYiM 5AQC5oeDhDg LRc6Awco5aU N_3_HB0AfdY G3TWgClyD9E 0GYwcr3RD_k vTTzWRdAN4M -7mzQx0ebqk 0tq44zxA0Ao ThdpcnGKsVY r8uOQupi1iQ lRpBlNgu8j4 LpDRf3h6OHw egrmjjy2Pgo Zle2EnAj0Ms QCsjm6QI4WM 088CLxgnr8w OliOEVSIsmY xqmqskVELNs bGXeYGkiQDo _4otc_6WtmQ dy3yjv2YLh0 dbnWDDp4s1c wC2iSGzmdKI 9PLm3XZsotA yIG_egCmhTw 59rdzSTXs5c oIyXMnHWjIE qNOk4yyxE38 r8I0oejVPJI abBd7mEUNwA 6PPNd2HqmoA Q85twbu-Vvk WFdOIU2jKpo 1HfZYZ2sDwE x39ZG34sn28 cRuYB2gXpM8 aUAVPdrvwoA 6GhSM3Gu9VU l8MFxT9ILKY V25QF11MwDU Kw6gubNxWQ4 rAdvJOAGEmc 2ZTrUc824oI zaHU1FW_RZk -QT_Af7RLjU 0mmSi-63Y9U Ch1DsDy-osI 8QzFJA3QM7E n_ci8BbMilc xLLOmh2nxWQ N0gOaE92ogg 2BQoPPpt_9o IMTJSKr7yJA ltcp0jylvgQ Ft-7riREEaA hJ6_nbGdWT0 5-2eKvFCqw8 DuYmyHWZqwE QRwiLuz2olI ddVQoF2TvNQ 7ktZEjwyFhQ 4Cw7JHJuTt8 lPrJqB8ljAE 57eIYneEz7E _-4Xy6CjAbw CE8VRLW8Zw4 uB6JMgU50J0 -QZzReak2Ck BbHxQ77anjQ 7XaThsXXj_M Ss5HAL8j7p8 UDhWyFDDrUg 6xCIhFtDtx0 TmTq2M6xgEs xkzlZGohQ_4 ih9NffWqWgM YejzV_nWN1M kaJbWpMZdwM I5ohJ4BBHzo 3Iy44xwjtQA 57u_LsqMoys iP7_QcV9Q9s LyGXFcfRyAQ YRCIuvKg4tc ra42YS4NRlY 3XD34HIx-00 -yyoLJuNIJU 7ezYV1mOdh0 ENC7ueK93Ow WmFiW2CSiO4 SLL5ziDWc6k -vBO8PStfEg mSsrdFBpuqU PI82pNmQodk P1EIIQ0tZUE fR8fl1fJftU gFDIKfe91mg UkF508FI9ws oxml1eY8urE vlwrxfIiDBs 0LQZpUHbjDM Npdj1jv8JKo 9h6w198Yg_Q 9vn3DZZHC4s xD1OPkq6-Vg MR8hXM7_6EQ Ctux2wyz_W8 heqpyT4kudQ xax--zcAdss zkX8cKUFOvk oIymf1Bgmqg liDkvm3hMtw 3_2F9m4Rvw4 0_7vIOvdKqY 3J0d3ZwHy-Y u3oi4L5tWQg eFrS6uCoMsw SrNNEi50cl4 UeV6eAtHp0M nM0h6QXTpHQ SzlHzRvw-MI Y6jBV4wDoO4 k8bJrJ7_LKI IywRc7bHziQ sp0O70Q5FAQ odNZhZSydNc tlJM0tgXu5Q GCc99Gh-IEM rMczYrlPwaw JWXgBi3HDac 1UXl3LGnRR4 yBd_y4V7vtc Qf_EPkVA31c cTR9Hnxfk7A AxBkurGlhHg WRlIDIu2qpg DAPrbiJaej4 W95X207kQxU 1EcAcWe08NU QC0kTcAlf64 pLooDtjrhv8 t1Wk3H5Xur0 xGAAMQLb4ZE KzUKcXxbU4U Tht98G49dos _ZLAt3zwEpQ cN2VCBTYgHI Y4-vFWxvdjs HNajZgCe5Pg Zk5K-Z2enGA VMhwOytHUsU zPWwORb6PW8 aVUhnzQmx_A fzRvMylDVi8 SNwh7RP56S8 Uj6eiUsNwvU AnGVJ8Gv8aU o6FUdj0_fGY vOoyaqLrZnE 18Qa__JYKdc aDvjCbdyEHw HKJOcRnkRQ4 4DD8QRsms1s eI1dAmDZrZE uX7CAoxBNOU 5sNY4Rn7bYI fbR1gtlY7FM AnJm-acXQCo 5c3tOFFEcU4 NzJH4towI_A yvtb9A9ai9Q FWznyZ9Znuw zb5RJyrk4gc Wnocz8UrhQw yunEcgw8va0 HsRwyJw5o7k nA1lAszNSoI q6ObhNBURyY BS8I9H07wKw gfXns_cU8I8 -v8l6cCrf0w m2aC-nkV1Zg rvqm61CcOLo i31XFSORRfc 5lPGiKG9VI8 dfWdmxCHwfc 9Eont_yEGZs Br9zd0KkFTU gzPiBOc_Nfs Jo1OjI4Yfv8 hwTf9WurF4U IXmWL4J2wwI 5kQCpsPnnew u_z2ttNkL24 3yjYPrkMGdk fiP6h4VL-wE nhDX2exjhGU EMbzESGsxoY -u0yhzYlhFA 83Ax_EIMDVk KMr9bWPy7u8 ZdmU6mM0Gog y3L-a3R9OQE LZD-86lIgYg rnkIsbFHoB4 xhgWGU6cQ00 fq5JFon-LOs os7KKfG3QE0 xkMijsfMZBU 1jK2Y8vAM1A af1gSplQfPU JU_Vqys3Kp4 x2K8I28zejw JaMejPOFVCc KPOx5tioLeY JjfbxBMmXTI PhRyzmcEOVA GHZSYBkKec4 gNbqn47rt3M SOwJJPZKIys wZl5uWOpepU wKiW5OYjels rezZBgaJGoM --QCZKgJt6o hQmDmh3qA6s QggV4W5BTkM uTIfsQ15LPM S0wF9tshsyk I8_tVvzJ1xg qtRfpAJHi3U e9nVeZ8UE5M GY0btkKshOo GJVYWd_3tzU oq0Aj9JsmMQ 07I2_etOYhM 9Pn6NgaX8I0 yzwheD19-PQ R5a3sZiNuu4 BiuCpXg_jgU -7Sow81yi24 AYQjmj7cSM0 oDcNKpBgd_0 Uy-L94Tio9w s4esaE679Wg E7i4pNsqnls JhMWopjJiI8 wHqQzF4JXdE 16op1FeUX1A rRuulhJ2ARQ nLMkSN2F2xs zS41k2xmQUI OcS7veELZ0c lPYFkRoFM-A Yke_Lkmm5Bc V4rzoRzqmyc kzxSZ5zCfXs kbb1MUQmusU hjyWtmbAyco FxcIBbXalVg DJZqFXSHyvc d_hNjBBdcyU 5Y7gOcsg0Xk CScFydObPJA zSw2bGgrIQQ tpsGUGc8Ri8 LwSsrFFa2Wc QN8ln3Hx1mc Bwpvq4JhqY4 D-gTnaF9LVA 0o9Fm3hnpYQ AgNH9Ktkrqk qYCEXS6Ws_c O4TmwflckcU jvBp6TqoHWw _LzgxVd1wF8 PM8-Hmfy6OU 5UnmqCr95HI Hl1iN3hP-60 XndQbcPIsI8 muMv1K99l64 6xYx1k3O8X8 qIAWFde0FO0 AoWXSOx502Q lJjxm4xTVKk XLqh2vpx6BI lYCq6x3AHYw JvclIUy-JlA HPGSDBjsSWI rLZ5aVNxV84 v5nIRiA5W-E Gl5GVViqvjo GAozArqKtGQ RbsNzYdNM5I HR2-PHuh3W8 6_u456zQtkY j8cGENcePl0 -u1uwI5qJ74 a2qE4hG9XCk QvfcWxGZv9M gJvoeKHjuvE zgrvS0PJDrA V-9fQTUix6I uCsRqsNpF60 oGV14YsOvWo agrpQQWiX48 5m9Bf48pWc0 BWT3i-fgw0s G2ngOQwMMek e96_1NxL9no YHirkSmJcEU HGrPKwsAvqE VD8UttNfU60 uhBhYnRrOg4 8fzGR29bKjY kn5Sc8o9YTM 1mLEN1SN9Eo bSm3d9ftiJA gFocZQa78ho kr2k20G3hCc OXUmjMKCR_c aKtrjeCFCAg 95fAKnIgqmM hkEXnpQ_c5I bqwH3cQUlNA bDcFILIfHU4 sX8SScsA8TM bsoa3DBmelk twdd-yhC2vw mkIwuziqr0k 19h6CYFMUBU 20Q3Qa51MUs 2BbpnPOIKIM tBVoGbg2ocA vtu0TbT35UY aWUJI1UPuHs 1EJYZ1IlTF8 PX3By_Y0jTA Ax83IEcbUwU S0ymo6QHMc0 4sOjksh8vX8 nD6DMtXc3mY lfObLA5H4Rg yuQW4F1siis ECDKjStq8Eg xI4s1uyYIX4 m0DbfOnOBQo KKsVK5R9q80 vUrgn1Vm86I Z0FKMJQR9RU lP8EYYjPEmc EpCLoqVPwqw 9KkV_swvE2Q _I_F4a-oUyA h0qniQTX3r8 QnX-Xgbi37I nQeov6j0bsQ e3BZn-XJ4mU mRwKWTGCd7Y nwt-V8xfwkQ SwjKQrYpe-g p9XIPtizl3s Pve6cemkiDg KaLpXs1SDWo 1xXjjahIwr8 1mqubJrf6KA taL06OVt4kQ Ga9WsLD5LV4 pmuDcYB17E0 jTnDuMlebNU PENNRVb6OBM TSxB1wKzjhE B9pucpn_NOE KbOr1buhh-Y aYTP2-S8fxk gOw5myC1PBI iypUHnZ-9TM ZuCKjnYIRYQ CzugC2PxerE L-5U2tIfxAg jvh9Kw3NbMs m83iX-zbiGU iI5M8zwvki0 0y-Y83y4kKo GrWc2UKDo-s YOlt7yp_QIs ZhAeutRIUzI tJPokP3FVl8 CBbH4CVp1S0 v5llnbqhLZM tb9kVTItw3I qPkKjKAyJ8I WYi4Bp1hmC0 tnwarNcu3fc 3kNqc5Hrh0M uHuDwL4XEUE tuXSqMrfVW8 UC6sKTqfgg8 -QfKnft9uWY AutuCkT54KI khK3EggW2DY SeYgMYijdz4 n59mG9_X35Q KLkD0H3K5Zk Rf82VHBcoYY aBxlJkcHDSM v9pZdy4lZ7U pxQNKJWZ-t0 YV-vi9NuyTw RcC6K2k6cwk IQWtTLEslg8 TeSzBaedb2Y gW7ozVNSL8k qHisKG66fLI s8cVCsIcGAE UFFWH8N9SLk e0HzBST_794 KQlR_8YkRKg ZYaLloEakCg 5hocAgn07-U 2QKuy-mlQfI wJzWgX63LRs Aaj_WEYZJN0 XuLHSjIXpJk pa1ZFxgQmUY DNpBEvHATIs XhwgtlCns34 BFaqEfhGj4Y 0NUDP-gxGyM ZXyLYqWUffA iA_KZwlnrcI eBVqcDJbl5A 1DTrvZ3wxy0 N_c0y8BcKBU wdVtcHMYAM4 l6TGERgrXmA u-z5139CW1I dVzFy-4c-AY DlJKjlgWFu0 NS8z60XHJdk YC0tFqipqpI YM4Of8J6gLE WZrXR5HAEVw RjyCXfloRJk rl6soHoCV8k -08xWZTUbNI o0HHjpIa8fw K3VNZOc_Wo4 GjhHy-kMAw8 Rsd5rA1MJSw Y9H1jFdPzD8 gLzsj4U96oM gv0zKrCQscA JNkxfdR9dXk Y3NbUilKutU SplRDi4FOfs QS-7heS_70c aBxruaQibgE oYuI54XUXkg GKAPU5e7miY kbS0Wkxr49I glrsnwHe_ng 9glAGvMjZiw 1X2YeXs8FE4 Tctmuish8xI MhCI7MtnO3w 2oLedbPVWzY tfiIjZGirC8 Q93k0-I6RC4 _ODUt36beOo zYZIHnjnGSQ YKYtIhbcyuo bCZVLjurkyY phwcul7F-Ro O_rneC4S2G0 -ryd97UQcrI IyFhDTUhX80 U3ua5aIvPNg kUMB4-8MTio zdHVp6JC0mQ wQFjbrojx4I uuWIaDATbnE iGVsptoMsKE xAkmG6uqBd4 pHrp2OM19t4 8xZ0jOhAHMk HlyzLOPYuKc FKW1h53hSxs z-fCbA2aAyg MwcXLL103vE 1Qd2hicvxBc HyY-bOuj9SY OBErTpjVCQQ qV0h46fpZeA 5Qfba1tSw4k zYeRo6OtrYU tDzuDRGP0z8 0E1TIcc29vw PkqrMMqSNaA v7r2OuigZoQ itIt0nSWDGI 4cH4xyezQv8 i9OLZ8rhtlk zEGnL7wKzXE 60QyvomMug0 GZACBCZQFt8 ZLIY6uk1pxI AcOMZUiVuJM qK-5zQpICPw MFbZe0ZJn04 P785O3-r7A8 sOmJgmCvISY 5N8eh_84W4w rCLzT9M7rCE WefEB2u3fwI MsHusoTYzTA aBFi3S-t9R8 fS4vBoC4Di0 nXqveIQdCvE kgYskjeMVOA mj04qm_DEp8 kv9QW8UYCDE xfdye3eXF8s ================================================ FILE: data/metadata/youtube-dl-dump/2018.csv ================================================ 9YyC1Uq84v8 elmk8Hsbw_0 mkbZvLfg2Yg efkuXTpfxhc XsHBLhORcls lSmcbUFG-W4 v4np7L0aJd0 Bo8mRH33NCw xPI7JdEPCP8 s55ay3OA1vE QsY1JHFo9c0 EaizaMokSqI urNeTIDRg6A KhOfO0lI9-E EHqhCxcRkwc eEt5ebZFVWE Wka1m7CSEro nFpK9Si2uUc L5Ub_8HT6HE tiu9_CUkGn0 pFmo1haIgtA PwBs-mLkZyo 8bZMd3JUu0c 2WZkIK0cbLc rJ6wWIo3hFA ubwNf0oYYZI YlHQAbd3Pvc EqiDQxAatPQ 0QNpXi4k5eU vJi3kGaAQfo cycPu9OddzU F2V5i3EyRd4 z5NuK6qTdBc e7qjmOp9G34 xUNy6fZy4WE GbZZ2TDY5dA yWGLNaCYevk SpOd7BwzlMU -agdK2N5wX4 oZ-BCSM4O8g Kc2Hv1tPMig dye8cQvz0Kc zllKdwaYi50 xWYBaNVEpVY ZcO9A2DK_8o QId6ztQeHCI TFfe7ZgIVUc jT09lgUTdFg kKH0IEVUhNw sIGoScxocUY D7LCHE4pTe0 nBRbD7RKrK0 ACvjoLAtwnU iwZzRrzGLfE t6w2XWv2A7M bCBpo6H97oY WyqeTjEcUTk B41g0ZjS8M8 1CjLSig2Hv0 y-1iNc7NzNM VKonjShA8Rg R5BlH8IPv9Y k6VGwPFIctQ yMo3ISSjYn4 haeQVOcIyKY DstF9Ge_6wI sSu-nM25zqw 8X5miLF1n5M ljifYuVnH1Y jz7WEh-DK0w Fdy2A4nbNik SCRZD2_Tkeo Ye3l05tkIcQ zA1afZS6G_c gIig_bRnDz0 MXcA1Ow7Lzw lpBYHa7VDRk XAa7RcPdE2U NqXxeZTvuYQ dq_RCN3esGk SSQJIBb_9gw 7mPDafCQ5iQ eYCV5Zm4Ov0 xIsVK254RXU zHqM-oKCPBY 4ozs0VI04xI iMlCK0hr8Is IW3rXhNFyVw oB1yULtM2Mw NGmtKz6HMkI CB73lI-OjOE AZlZO5TT0wo xxoeXvIeZXQ JXiJ7GS-9aA -XnDw75Lp1Y H6ZNmRApuGw PuUMs6fNGo0 DrOLHuvOMi0 JKJsu3JatYk YIqAz8SfE2M HV_SMZR6gjg vaWlmr2BwuE uun8fsWOaeE KZJetTa4DjQ 80fHUAW_up0 L90uDzDbdV0 jJ8rgMkWFWA H1_mdoiwhBY T7kklmGWLDk V99QCtwXKsI DC3rYQXOTjA vcw4b2U_0nU nUpmxMzBCjk TcaAWs46kog whFoAKQ10gY btMisVovQKk ULElX0fO5JE 2T01Xm19LJM WcmGju9lzAY 1bKCN4B2g-g v2iOrjYQOHQ 9C5A-YyMLnY V3JGZdiYwIg dHxPxFeI6GQ deth7hZBzxs AUppZZuFnJI mXgY4vnucPc yqvlrJQVAP4 SndhPCSVtuc THmBqW0zLuY s5F51a7xkiA wIw19V0b390 E-OEyIQ12Mw --UgPWRVt8A rJv6bP5Lvao Jn23_pn6aAE JkQzE831VM8 Bzk_5Jzvxdk 9T4kKk7zH34 SMaYCguBHAA cINFeXqwbDo _WUyZXhLHMk k3oMPqUTxCE qqhyIIZt87A PaqNqocHJ-o klg2YuapPFY weDQxJm9K-Y iU908ncV2q0 0p9Q6tDJJ1w Uc0Cd3LErFs 6HrTgWedKG0 2ReEFgaq_9g 8R0wW6GTMk4 Y5EkcuhBwiU gcPY3RIvtCw Ad2-FiCzJxc CkKUHwyFqJw MuIkmspTRo0 8O9FIRPJRXc iy-SmSGYYBM AALREbJZEZk 0KjO3YwlhEE wr5-v7rYg70 FgG9LDxHHv0 Uu2u8T7tS9o KD5-tY6m9Cw tt5BJlT7f6I 6EAVY3gCWpY AURxtujY4MM fJDl0RSPWBg _H0EYJHeddU IOUbfaHj2HU V4SyBSgOIgM JlvCQXYfOAI dJltbkhK6-s _HcDe70cSRU ZOhpE4LjR5E TqRBV9xkrAU XTtjLtf_Tw8 dShLedyR4eg ZObhl67NCzQ 49rUb1-JaIM S0_bjXPRlio jorhoh0NNQI DgpMTfkui0w 1U146AYx6-M G7RTm-c2aXc _RG4iCmljGE gGz0wTHCHK4 sg-d9ZBsiWo Z0k-0HG4fR0 y7-LHFxFS8o 3U0EdULZGes h3-FAzeYut4 UqXJc-VxorY 7pzz0eGQdyQ ws7Ve4mehqs ov5KEgF0hgo sbb9Re-KYlE 5nDwwq0ANPE Ggnrvt77YOM QeTaNmnwFHo 2Zi7Y1-rgts 06MiYpKxjCY wmBGdpkagEc fdw_aFH3To4 N2Yk8EvrrBU x91Nyuo55_c aWNJKbGrETo uKlIPUovwIc w-nqMWvpzY8 eHj2IgKYofo -6IX1nWqW3o 5qE52hylNT0 R_rN21oKxSE Q-_wlz6jYSw 2bvUOFDgo_c -7uYlaqkkzw aRK4YcnTtIk Pv2MlxSgwv4 q8NwQoVkAr0 M1dWcUcCAgk dEAaneP7a3g gZE1B2zL1fg F0YzQbNdlpI dWdQG4BEX3s z4216EVIfdE dwULCnXeEOA RfGOwHvIyK8 vtEw8hLJKzo 94pYLwdWTW0 wgb4Fz7D7wI PMFU8b_2cC0 2dOsofLx6jc Ev2Z-YUO2f4 bbtIanfT4oo Ywn0PmxYgGo s_8zJYpN2mc 8jfrU0a-Ayk aB6SfK9qD5Y 104odr4s7Yc QrXSZJ3am_s 71_zrDEkRc0 szDAoChHbrQ 4Tu7_tAe2tk SVtUDd2sBwE 2pOMv-jM5lU H1sEkNAlW9w u3E23a-SpF0 gNdQdrKADh0 qYEOmZzqX28 PitkS4aYur8 GgBt0TlbwUY y4fdm5gdvnE NKhTArRP31Q 7XBizI9jArU qB93c2JU4uQ dnrJELv76n4 VqAqUVcgQdE hFfQhVgQU44 OYSVICsTq78 SEmSJCzcxyc O0PAT4-kuY4 Qulj96h_-W0 cEyfq9j80Do 5-kt5Av0s2M 7Z3ccysbMwE t3nm6EPiuyw IJnig4nc0xg 9WpO5zPo8Dg A_CGtuDwl-A rxkB20Tpvx0 mIGCgzqFR0s VbP7jMN_v-w UXldWskFeFY uNjrnjiEEY8 prTlJO34AHE KjWPSq6-Ets dVLMfoIop9M luF2eyiYlyE LKJOXcFUSzc 1GbNS7IcCj0 8FHO7Ry4_Jc SKC8iPeIvEA uETwKF_fgKw DhUcvFP_Tas GwvrEz7vTZY NV9oKGj_CcU UvSGGd3ewFI AxGXZOLn-U0 iropsnsCEjA em9lziI07M4 mFl8nzZuExE LSD1fq3xDA8 xvZRXcg4iS8 aQqAUXKn7t4 xURDJ-IW5YM a3bI7kbVBwM f2FzrfnfQPY 9QJ2mqXdr5I NC34ce5BkWQ CKc8xHhxP0Q JQOay4rjHas 3sP7UMxhGYw z79ikmr3JY8 b3OlGLDk4pY f9Od8yx9gmg WXne2B_inx8 CLxHRE-Knmc n4bsNkDyF2s 2UPj8FTPaXg OfXLQt6B8v4 OqGw-1_vIWk Z-WSedqa5zA fYbbxzLGpbI 0ERIepJUdPc xGon_kZAVtU NE6nLFq0eqc kPE7ZCGjw4o JaTAjmSppvA U1_VGnnMle8 FpekkNyDPcc 8ty1025m6XQ rPuW7T25Yuw CyJglP6k8lE YoIcmX40-_s ApuFuuCJc3s wV7vM4-FzJM rHvCQEr_ETk _7DVsN761n0 AhbCYVILusc GQM4dSjjQuE Jy2_J5WCzDY UsZNj9srzR8 zvY-EPgYB4Y ihKHvNOTcwk STqJ_Up4iFg 0_1NU60qHWs wMr2d10-xf0 kzZQYnvw-6E ZPCSC8NM87k 9NTvToplMlw bx_rua3EXFc U6GY91u1I_c sCr9YZRDsJA uTUupV0ZfBk SQH8if7dbqw -pix6UL8ONk LiODoFVKD40 Y-rxY2LxPI8 AD3baa_nijI hMGHJFVuqpg rLVwKpyUwWI kWHOafRR0Sk Hiwu7Hu2hAs K8yA801TQVQ fwZw8vujVMU ykQ9g2HT2sU 8H_aePfIMzQ Uiqk92r4luQ WbcZ3k4Mr6Q OGEfW_fV9ZI D93GR0PGUD0 LiioO2L5ZA4 mvH6IhKpehk G5_nIhUCuhk x7S89GM5N7w mkG2YdCogPY ExsSDD8Lpsc cyUf4tLI53o gzbYTUXZkSI BpnlB0ILpWw lNVb-ZNIO-A Lgpg6frCrvw vqPT1IbJrX8 1OxDZKordaM mpBQ883QIUs z9uP9znP-mA fYVAGoTb8w4 89RJwGDFpC4 _-9Pewr-JgY jkZtAzrw3Q8 L_nh3Rtyj-Y WMFxWlrpnLM intjK7aTbjs bJ09DFHWeXk GOpFSBhGjuU 9E1ulvRRYFM 2LsMNs4hW1s WXeW1HiwAtE 7nWfsF7ThLw IGaJfcOD6gs zH80pWTYSLg A8xy9h5olhQ duZLaW_6qLc Yh03Vnp8pCk sbZB1drlKWI vh-mdPoc92Y Lw5Ss6z8IoM L7FVtB7mKEU aDcfm_9GTyU RNPPrvhTKuc LT9qOeKcL-o _RsxXzFxqdg ENmpNBFdwFQ IGCJTr90IZk ln_5-pRR-HQ HexOzLEvLGA B1bYkou_mnY lsES3-QXzZQ 4o1x3FxQLf8 L5jFIw9yBbA wO4P6Yz_LZg qqAzmt1d8kU VwlkxIN9tfQ sVfuigRSl8g XT2IS2dn8gM leSpIIaEblk ioE_djgs810 LBm4aJ0ZcqY GW475l4IoyU DHXHxop1gPw DtH30Cz2Zec JNcNy7bJxDg MYErK-XLJv0 YmRuVv2V5Go 1PRZi8t38OQ ILkyIHOOoq4 VzXMcMcBwA8 ijBU9q7fb3U k3TpBfnaEmI PBHYbeg2nao jMqI9UV3ob4 BrLcbi68R_A PahRJMVNho0 4t7oXxFAlHM FhsFZDrRvoM t1RkYJaG9bo 8TbUl9dhTRg 7bCqTdKJPFo 5Ehdu6XTlBc ozkF8KRjeO8 ndpVsMLr424 kFeduM49hBY xKYgXZQuqm8 OflOQW_pkvc HavLrFJcqMs KgnrxjgHngA DYAdSce8Rd0 jTkt23CfSp4 ffknf2fIpiY 95FV_p0Rivo fb-9_MV15I4 eGtDmvtBZQY eoREjwjeH30 tLXNDzc-2fA nmaCobIvt2w JcC5XdvOWWM BTJ-smMan7Y XF5omSq8eRQ XcgNkFuPBV8 ETu553EnTJM pjF6bofXAvQ UciEIYZ-Eos evQcKvkQCl0 lGuivq-6xrw uzTuGHYRJ9w kv-hhf-kPkw rilZTyv9RLo grwlYBNyMk4 dSdY41CWixQ u-eTCyG0jpA 7wZdMPB-O6Y L_l2ii_25tc kBErrmmqnkI yuU4pFcEgWo oY0spjrKFdM LehcJeNbFBw SUr7fu-LXj4 go4K4rCFjMQ aak6BqNR150 f1bk5a_jaEA Wuer3mLqIxc YfdRr7MWax4 1lt4euqZLsY YSfBTZfswSg 6_eBGV71X0w IvFBobchMoc TiJBxtM5iKw awuqJuO5WOc DBUXGB_L5q8 pDjY4qorZrg PMjbPEGDJ7w S-EfnfP_cGY 07kluxoO8j8 jFQUE_6Zhn0 Up7TU2t7_8g VvNX7pOAK58 2iD5pPwbDJ8 aFnS18LM8Ws ZDyEERuK31Y Vv9KJYUnVvA T5KjTcbQVMs c95YKkIbTGg yHjejU3HvRE 8m3HqHIpcWU CUnezbuG4fo Kekb8jHfDxI ysLBlalu91s GaIcAaHFc0U nIW73heJdg4 KBCL6GBurNw 9svQ60inP0g EOavA469Z24 -npMZStX7dU F70EkgLs4DM dxzktMx1jbY hfNlv4HLZ5k up1wTd5shfc IBRkROD4KAU dzabuGq1wIE 94k4a1GI9rY uo6yyV0N7y4 UaCGeQifvdo ikqLKMZ86d8 EzRtOVxgKCI uhDhzHrffBQ fJlJX4Rj_WU 38jXOaoZQZI TjvHy-IYET8 Hb8I1My6zOM LJl8SSI8MHA NJNAE_e-gM0 4MbRVVP6rPg tgHcYxKjwVE 4CVFOnmW6v8 SiwL_3yOWRM U_74PjS1Epk HT4kxxCpWYM 9UE8ospTDgA s0ADj-PzbF0 -nCYpOC-Gtk aP22KbKvaMg wMu4IBsX--I k1jq4jHNYpg fR-2fk_qusE AWi8x9ctlps MFmLZibi7DE BN77UGYk5tg wpQ4R1jlFHs sgB8cpEi_zU XPKzmSSQ2xk KGV-R-dVuGA e8EAVtsvfxc uqVEYJGg3J0 X0vQQA32UAs XNZRK35VNrk S99xKAAo43k yiPqxnLMKbs Lh3y_KLTwWc INrZ0l5JbrA zpsNG-exYxE WNAjVd38Q1E H-Mr-QmgheY 0g2o-CfakW0 m3qnMx_kA2A P3WCkLjKW-k cl3sud_uDhc rSAWPBO-ewA 0OqXqd_s0ho Tf9j5763-Gc aaGgRabJ0NI HcrTqof683A mD5CrAC4LPI 5aegHe2iS8w S0hTkEECANg vq0OqfmArnY 1V4SU2_-Ppg upoh7LbKZR0 HcGpEScyT5o 2Q0IkYxSo3w JmSmZRCl6A4 ROXLPqlbJck kbpdM9ORaI8 3NRVJdoihjY qwwLKFCR4K0 ZTsUO_9AT20 5OkvZ-y_dgI 43OVm86-4rU U9WHLcpvVz0 L2inhzv1Rs8 Z4kBo6FO8bc IAaXyDc1gjk 9oS260wm-UM OjDuQ7O9XUo NM0WEaC8LcQ bC0vGFJbMjo vM7QMLTm1so a8cviBPaWJ0 rvpFERo3ZnA Q2-Jg_2l1FA PQ3Qc8bOqlY uycL6ws3vMc e2Cuc3oHb4U q4feCJ__GwI vMzDPwqnJfw Tp5Q4AyqFOM qlfI_AppyIk 2dvchK48Z-o ftDkeswkEYU P6c_kQL3ZdU EAd7cMSm4Ng DGW436DH8Yw p07sXB8H3zQ eMHv9pPuDiI FgUKDQA1qFg 9WQJxS6-2iI Tazw08OZpwU 37O1H9YiBJo 5XZcn9qR5SE UP6UWl1Y1-Q pVqOcGEbZvo LJ8UoUA2_uE wyHOKleZzFM sf2RRCNlz38 bmBh8DSdcnU e80zdJ6pWlI HYctFVhe2Rc 5PaUTnk9k9Y qu68Gym5PvE e5LZR3vCkzo Q4KRYWe3ngs mtsQ0CR4Z28 ssgm3-sCY-Y Ff20ZDSj7d8 YRpgfi7L9Rs nvldRH4OC_k 2AmY_TaUh8M bfKu5Jc8TjA YwnX8My7428 ju9K6nk07iE Ov6nBKuu6pI TZyl-21DgPo LoCaeI5RffI nprJvYKz3QQ 3gSOZW-vNFk 3oIQCt6GVcY CRjB5ImoHXk HaK75RHhEEw Z6cRw6CU7l0 MZq_z08pLqI pW-ZHlM3RxI HRkSVkOdXcU a2H-pXAgx6s ZUmTlIUmbmE 76dXe1ePSrQ MnosttqGIfw PjPEnXNEX_E a3GgzkKvBVY SBIpGdJA_5Q _bUaFRyP80A -DXQJLwDAwg T4wxOGDv980 RQUwqHaBuOk 3jYu-qta0mU b6WK3MwYFSk D6OAWdqi-s0 4dNwoRFjOkQ 7SybWD4iYMA wstckFfu1z4 taGt2UqFdm0 K4lTsRzlorA _3v30bJGaCg ExvYKH9z-9A ku4GcEUQ0TA b4kRHpvisxE OTp5qNMBuRY K0QjNiVA6NU LunIbcmUQtE lx420G7IDnE fZrN9LabLQQ X_4WgfjyOyg VJW2e8_cIfw dp2MR9fswWk r9ae_frgcpU uOHMPcGgInI TfbuiIc3pME fKpKz3dysY0 kDDU-k-5v6s CUYNZo-8cDM 89OqkIyNnfQ GewQTlvA_3Y tVubEM2oUj4 tr2hYRUEkHk SriHCm7dhyw RxLb-Iqyqps Tvmzk3Ce8-s OxLmmTv6CTs DQU7X4QDX80 LoG_2u-0rWo Dr6eV4y0atg CWS1CWSAmjs vRUQ_q5mivc 3IVugy6dK3E KEc0SGkBDJ4 _uwVIMdk7hc 5ve2E8iEbSQ YmGBAiHnK0U 4N-rVUkv-lw nA3-p6SeWtc XlS3PKbK2Wc Qdgk7Q1dn34 oNySP0X32eI AeM2PgL5hm0 F67qzjMABFQ Wn73_KG11Wo 3ND0jZIthFo xe6kO-SJYCk Fb1v9LGaZ1w yxOMkjGIZYI kgd0wuSVHXo b_SJOg2q3PM D0yfau4bAXM XMt98-MEWmw daULewxdD8w JZCM0ZW-GMw Hl1mw0-APy8 G-lDaFtb7eE h4Zho4DUcXw znjpkKX6bek DdNfSuTpDbA sIbYUg1FKK4 u_6tnXDfxBo AUbfGwY4Fco ch_JeDyNaFM HXubLg3o3qY eMyuRmZNaTk YOUt-qq-snc gA0u3Iir0CU xVWAp3OLYTM 99wezqewopU uvZImlL51Io 6hT5xOszncI otlsrvaxpdE Tpz4Dl8focY infMR62l_dc D0p6abBHjZU 6MaOE8YiJy8 pK35em6gl0Q wbROoMNi8Ho FOXEyMTnekU howhfMAoEt0 TZXt5K8U_HM elR_OgHND1c RGaBXM3EHUo B9SkWFyq-EQ g4BV-MbeTjM uraQr7J0Tlw NqWsINBcm2o D6XNq3CrDBU PJ0NkZgbrUw HOePjj-M63Y c82FD6lh2LQ lp1s4-tc2U0 1qYVJgixc3U E9pB6_WUR-U O7jHiw8IyxQ j66Fsl_q5Ig 4KkCEjawUHM DtV4RnADOeA U22aGOTlIy8 836dGO4v65I 4sNyWmYN-rM t5GdZx7AS-E 6O_dprt5rts pwSkfvXD_ug mmH76155CuU I9r1j1ZKBYk FlQd5p9_XvY tlSscKeO9Cc Q7--4JW6y6E Drt2w_iit1M Vn5WazNB5sU oXGJeQDRuxE REWaiDiKDIE Qc-E0u_1Ei4 QzcXi2irovs V9RhgEHIxkI RgPuswoKZtw NizLAsFlvww x3OTeacsT84 ZvGaiZMBOOI Eu1EfSDUKFg TfsGgp4go6k A7a7RtpKzYY XUnfvueexSk TRgkvisG4yg D4E8UpMb8SI xNSWp7Hb5tU nma6daFY6b0 3Blk7Vo0abY mfCwgYR1yS8 kjLqB63ihJE 6R3tTi_m8VQ jk2mjuWhQ_0 KkBUMdYMw-8 rrWLFKZafAc vYm_2A_cg0Y jF6JN1VSpmY YkfEc-PYJ8A 9g5pe-B6uL8 PxuQ1n3xaRQ nXrsB2RMo2w mySMw3VkEBE cgLMSMIU124 lfeYgfKa2cY ILbn3iOiOiU 5U8scp5J9Is h8Rxb-9snJQ hhmPqQpJWks FQH9s2dJe50 1etjTR5wYhU Hi93mYJyO8I c0N60xOU9yk H6Y2GNQfNo4 CaG_6UWfyLE 0SNckpLgK_Q gvANfpQnohw _ICXfAWaISQ 2DCjXk4qpLo _O8yGbcFmc4 9QwQbE5Eu-I FYZrWswLpu0 yceziOf95-0 3QoYCS0iOq4 WEvTEdLLa2s 9Ro2O9YAkAo dJhNjpuc9eo Hj7OFElSIlM XSX3JKL0DpU Rf161T4RyxA GwtcfnmV68I l17e0M4TTBA 8ZSuFOPBDmI JhMO7RA7-VI WCM5kknf5nI F8q-K4BTbEk AEBd24_Uxfk wXLFg03in2U 5Le4OlAvuME XGoagkYcJ38 LTfMvliqiGk y5vxDOma1Ok NBYfDP0IO18 RtxMw4sua3Q C9rUREflwDI UZnkAElIe_c EdiZzm9bA2I pdwGNiv2q4U Ycv2RoyxW1w o6sD0PvhkWc 99ziSsaLUpU Vbj9JcYGo_w F_cS_kmSiRY UqPsrqpwLmU q1bV-D8cSz8 VqL0Mr9uNL8 dZjgSYTxWsY x35VnGsGrFc Wd5RTjtSSxk axhUtepWokA WDuIl_uPY_s CDTnjLPgMKM FFvaLp9s1p0 QlDqtuo10fA HfgFZz6gCOM N_qIfvDbZjc wka4snE-AmU dqfoyAnszH0 oo5SkNM3c1Y vIgFGJRGlkk mxnq8jkwttE QNUbwijCKfw gMCgkXpEOIY s-vP7WgMkpA hAf3IBKWubo an9Zfn3IZCY CkAf_qzHNwo NFj82X1Fdh4 xgX9WrVFO0Q EQWtaLTOwCw jwnPI-d36vU XUSzvNtSsFE BfRUV4g8sYw 4UzVKW_Iqi0 DJTF3NmqF7U Mc_zp1s60NY bMjYOV8VnYk lLeY8-bhEuQ jypAc6XYFfA UglfLjHUNbU iQJh6I8kH_E pl7JzW6eGZg InkyowbQcIs Vh-olAK5vrs _IwNoboTiHU 0K6bVf4ra1w pAwoA-XPzsQ 2pCUsMk0Zs0 OxBd2RQI4eQ hgqJjr7pBa0 88dS92rgWhA cWj-sdxFiY4 EL3Ma917bug UDINZf4W4mw LQFc7IKhUuE YNAv6w5RDIs FTzUto6toxY BGZN_6xPw64 gpjYU0C2yrY QgqXAXhRvYU ywRWNlbXD8s kfdeG-hRX7A HfFM7RZ5GxI PBaQezez_UU 2nclzm_QlLw SJSDO3IHsrs sdwghUH-K14 BN8VnFVqRRI 5uvhg1AtZlQ iktC8imMBnw kCxqmweKXZ0 usmBCn2WxYU nixHRzTvCUE rt3FEbzjM3o 9UrJ60MVNao xLdIkC6qcow tmUleIek9Fc 2oLqQw8jHts QNlazlRan6A HGgfJkZAx8Y 3IUoqFHJ6wk r2GpJzIdoYQ LTyelOWIGh0 gxqt6x5ThcU 6QB5kS_JcuU AvPVexWamGg OByY45anMr4 oNiW2ftWINg QP_o0yWJYKM eJ93IIgvVyI _JoP_xhSETM rey_J7jIvno -Xb-ryuTDlE LFO-xqbWYpw Rp8A7gf0dZ8 y2wupV34DRk ROeFmcvZRf8 DbORPqtzyx4 -YaPh7shnWQ HRmLJScvW8M O6Stx_mwAVY g425SDBoDBI b60DLSEemEY 9Wfswn2lkAo njfu6wuNC_w NcMHcR5IzEY Wrb8nkLKkxU PECLt8uCcRk xCvyw2bipUM dfLN2aPZ5sM KXTBm9eUiko bhtJNsUfHIM fegOYb4_PSk u4T7slD8Mq4 jBMZnAIY_Ng Oy9R8mpKSmM Jf8Sheh4MD4 880-MqUhhEk e56FOw5rIhw OArHd5pe8Ls elpUGB9Ap1Y GSrtUVzdt6M ThCnJ2m0exo D1Iu4JKRGIM FBpdDE96XhE nUxHF4O3GYU -Jf-E7oEguU nr1sLngjJXQ JyEvCZ8kwW4 y0DYykDLU0Y lPOo7SzR7Sc MPQojemDuDo SEn179T1Apk eWuiIzqZryQ UYzF0CAcN3I 4T8OrSXKqVo jf_-d13-UNw -yzEjTjo2IA XN7uqQnAxIc 9IVd9X91fiI b0kunBGZmK4 TL91ZYSxoag BXlYuaycRbU OqvD4NC-s9E r0eg-ieT77g 9KYrqmQdvsI StvrI9z9kLY aecYY1vUiDU gV6Y3OwR2n0 92lO2Bum7v4 GZ3fgYIUrJU tp1eVLXEXm8 KEfLE_bvsSo PmNdhL9_nPM ZpwDcgHhFDQ 018kRNbZj0I VjRhsK7p8gY hFNZy6iBNVs hyopxkr7RuY 06qgPR9Eqww 8pbM30ZMO84 GLQiaEzx03A 6qZZWAScCn8 XdtbL0dP0X0 MLCZ_B7FKc8 4C7VpH9VvC0 djPS3AC9DKk UB1xsj0ZiKA NQw5e3HJgfk a7vAR-7YBWE j1tXIl0snEk JvTQZxz-KBk alhVUKh36_Q 2GvL0jFY7u8 bu9YxTb6gf8 nLkmfL6IVQs CyUZe8xRNnQ QRoWiTcO7dk 05qid4p_cfw Qe2m1wxb5_w mIeU7y3CGKQ DUjB9LTtzGg 1dwtsZ4IJQE NnDKut3pxoU rtn4-lDSB80 IlH-egwG2pQ idvqLiOeLgc YAmnMBHMPso yQpFQFL-YLI uAjGtAOqMQw 86Vd7XFiYZA _y_We1FV_RQ MNmdm8voYFE fn5dXUu_qxM KfAm5nyHM3U a87b-bsz1Mg URDzGjLruJU iHQZhYadNwQ WQLTwtwUnEI w424xCe0eGQ UQes95Ouciw vvBW4Szes1U 3PhcsTMfqIs K3Po5dqfTgc xpQ1_5xZuKY -HwJeE-iuIY MqiNJmj_ODg ldzjtk016bY EIrEOL6S6sk DZuHwW24HUY 9tqaHOTOasE SBSzom7RbCs RG4exoyldqw L0-Ye--I0Uo wXc9z1SmLJM wcYfLYh8ixg Tcnr8WoHAOI HMQpYC2SMX8 UIRhpmPhehk qiAPls8Te0k fLRlh8AHh8k lMYtQlLlu3c poswRRB_2i0 n5tMCxz-9uY 4FppyDurg7c A9QknjLLso4 51IaQuowCcA 9VwWPnHZMrs YSOUTJUdTgs QkrYlP8-Cmo roST4TM0ccM 9fEMKGFr-Sk izWrKfUUP9o c6mLa5_GvCQ VgO0K_0mi1U sYdqpWTQyaI fDeQjTPTlDE -qGU1hiiJfU r2x4QueC2As e48T01eVXtU Cp3FHbNWi64 dj0MEV7d1NE m-L3k3ElIQE sYWS5RSmJ-s c9oE47YW6YM i_SnR25Zoho hp3HX9PAkcA rCEbhr55ISU ZFrDw6oQai4 9V_GlFhNX2g Hs8mVGI7uVc oR3h33DSGPM JpQqyJbdb44 G90tPiniLd8 8O8gYNK3ULc 43mOz_bosUY 0nEWiH0pYR8 zzkjLhitH7c ZNzEreKcfUU sr7zvUpRxIU STcAVDuOkv8 LjKWOmIeSQs l46yjkR0SqU JJrTnnaEZ_w gVdIiTE1ykg fTIIhYZ_CzA AX4i2YZqE14 34FTDewDftA 9C6DANHgdrE sIwsArbH5ck dg6PaO0e6wA MYkSUEjYLc0 AvPljYL3Sq4 e0oLpONe5O0 2h6NGVrMQ20 Iqkw8K2hT74 06456EaXTVM 5JjVwGi4aHU D2l0Qk_lxo0 m_Wx68QkJSU v8L3Lyit8Ro awhN-boYW_I Og88KQM5nVk z8NcTAIV0Wc SZCtfLaCWO0 zdOov2A4-os QcFKRqQENrI W4jxHLn-00g 8TwlBdCGS24 EchEZ7BmRos dmASD5tRwV4 m-2WmcLl_PQ KwpO_4Rq13o CG2YRWPhfiA GvHBefStM7o ZUchY9Hw48A X1SJgm2hIAY 6TVik8mYxrY F0ga5pmQjnc QEfuINMgcnI ZrW_1_rFaw0 Qm-fzB7OmEU bq5vS1a-smo 6P5yW3rYuMs XHCai_8cuiU W-phG8nc1Xc Oro8uCubA84 HpeiPgkqEro kIIY1-f_rBg aSsFjcw8R3Y uR7yS87K1tA LHcbbXpKIrc vDzbcWty6m0 UFiKhV_Ay70 TChg5dQ36WM BLElh2JGufs 8aK7LsC0G-4 8sURhgulh7E 1DDHNN3oums nQuKmZkCDZ8 01rrDGEzBc4 a-qtnTRl6HA UX8ua4_z-kg DTZylvspsps TunbuB_bBb8 DyxkjYmlzhg 4zBMw2XqgWY Z-l7wGkNyko BdZgC84uYUo EWSHsRBP88Y 1DvFzLRPc_w GtqIqWKdlD4 QLkt-SfsCsQ 40ryheWGyZY wDFOO-dC-Nw zDEPob22tHs SxJcAxTBKOk 2XmLLBZnvDg ODIZKyevVxQ Wi4OhwrVwP8 4gSkh86zcaU HBj5pxrFyE4 CHBydX2-I50 WBreuW9LLSw KMHmLy9C2hU sxo7GjhsghQ BFAfiz1daR4 6kktAYxwo7M UN5YOny_U8g xmihht20Z0E 6i7cWj1WqDU ZekXmBuhS5c W_qA7Xt_UPw XUdBdsMc5EQ 99qifKCGPfA -OMiOIbouaA _0X1jPgLo-A -oL4NpO7eAw RjDv_swo0rY SCn7SurOKdw GBu5QE-EsSg Us1MxXdSHw8 qjUsrdzDbuY _Du0A1y4Wh4 0m5VGBc8VrQ UrCi_k2TXOA FVGKgrxQP9M CN6dU8mcuMY jpoR10Zh0ig XyEHIOZf5yE 6IJ8LfJnJvQ t0oqEjxOUww BznPcrTUYvg uNcKTuAqLag EPa8iQyK5mQ oNoOFf527GU pBd7XYjjvRw htHKbsUKDDw skrdyoabmgA Wo4U1SqnRpA 7SZcDW_1o8g gCHCR0wZclg Ts8WRHAQvk4 1YpDd1nVthI JwlhFfOC5Zo xA1Uz_TMzhs _PSZEvsYD6o TEZq-_XkcRA jgosH8zc83Q MwjIdhPU43A JJyK0EX6s_Q 69v1tcsG6nc g3D2eGiLoeI xFoBu7P_Kwc tMYOmMWbUME kDSiyU72RpA DEKdqE9W_i8 XxWjAkr7ujk ZtgEJOBzX6A LbPm19yBPis RxPJd3_j5O0 yzSjRcABUBY ZbtcQZ1yDjc GP9FOGsbYsw mbzNdI-1iUc 7yBBNmR1CLg PGbBz0m0pTc Snbbz0C_ZiA 2kK1wyTEMUQ k7ej9E5b8js lqnKLTA2GVE xNc951Hq2WA KQzNG70KguM LVGZy2YKAh8 5ckqhebte9o _uXfbxevYyg 1GiYwJRA2NA IgTIy5MUBxM J9qv_a_s7Gs IaeWrM5PlmU jZXuLQdIrEg uXUPYAomwDU CMPJ23f8BeM OhM4B8B6B28 uhOCeh9oGK4 n0MX1a8uh3w RRfoHyYJnAc 64tSUb_LTdI rvQZ6MdHSEk 5BLZxhN2lDE X7Jay8hlfHY _OZS09-GVTg OFDJnI4RczY vmpSyqa5kXQ AdKWXA8npgE LmsnknGIx74 sC78ImgOLQI z08tZYDrY_8 diNo0cO2Je0 fBTODK66ymw sa9AzlyS9h0 4InwO1SSp5o notFMAwEQeM Y_U49qqwDGI mpr3XG5Tzmk JIsrqAWzVoA nP-P4IYLJWY qVDMu-erGtc aDU5CcINqyI rhkkbjKcaJ0 8N9oQUJJstQ t0tIXAlLX8s hV55sjy1QFI Dc-fBk3yoqs MBeBFVoomg8 raSWINBYtuc G61d-lcbLT4 9ykMeXdU_Ng 4DKTOdul0_I GHpQUOP8vcE PTQLBv8sgDI lCF6_l8gtdA NZzeLRspnMg ALSUu2CSBOg PPhxsJho48c qFH0mR6eVLg -rkhqMzCUnA OHCVQcnqGcY ivG26TnBWGI Z0Fm3Ym-aJM z2NhPvlzjcg E6AYVGKx6Es Kpxk3UkX5s4 tD8f4Xk30bg g8hPeRFRiHY e0UZ0rc0KH4 FAK7ssvx3oE iaCvBhskyk0 5T17qRlPIiA 2WJjBuXiXK0 gUeHamRZkSY 6moZJqA4iuc mfkzA9zjRdM 0B3lnfdJ_iE AN21TljYB8E pE0vTejjWuk cRpMdH1D55o 16xSXPPqBfM lz98akbX_NE Wf6feYvdHs4 yiOUEU4KG6s DrrwX4AnbMk RFtZAVgf1Yg ctd3NPx1pdM BICqcEvzhVw Fp5iPmpZiNE 6o8Eq0LEpf0 ty68MEZQPS0 eIlzY-UcYZU kFhDGoJh4O4 _HoKFu0orAs zNT4XSI1doU PvEongWRs5Q jaSSXV5AFHk ilRq_PR6oi4 aTSa6E4_Zgs _gVrJIUmCqU wxlD2wwIgVk t3mwyiOBDrk MxDtKTClKGI WnrOQRdqiQ4 JJ0IOFvfu3Q w294_yaM85M droww43JVyA fz_9uPJnGEQ LgNSetWhfhw Pj2K4FrqTmw 5Zpj9911g6I EVy-c7ZaMvI _jl40Gzivhs dtQLSM8VvfU 6IdswAQLBKk 5bTmqPTQPOg oBeMUEkfDtk HgqmQ4RN9vo VcH7mgvr2jY TV1QrgMYa3M wmEQUpu_zeA io8KUjovuYo lZrD7xTi8Ss 5CrXuWBxVVk PnNS71ethmI ddGbf6I8UH4 wUkrRABqkzg OC6SxQVSMHo lK8cWFLr5qE UW80kY7-HkY KnI9MBbPCT8 c2k_kuU84ro QnDgw7XXaOU pJCgeOAKXyg 1-9573qxk5g jEav9DdL4iI _CuE3lto5XA CNuEnlaPuls 0v74ANWBqv0 FNA0Ejpu22Y TKpYtp4Io9U hwe32v3I7R0 QYUhwlQe0IU 9ecrIMjE4GQ E7mB8U4nCCU Yz7PedIGC6A rTvJrOUuOTM hIMv_pWXqFY pXQjNz6Pyzo ueeK1V8j-WQ iog7zMkTVmQ 4f7U_YO0fVc K2zen737biU 285uHkPZOkE m-5pPy7zuyc SP8YbyZwVeQ gdkJ2WwMhAg jBxvOT0p-1k P9_EB2_tUGA srpCm9gPmZI Uz8w8WHmWMI lHxzWs9NcS0 1didVrNjTpQ JSqbIAemGcs 4HOgujwklBY MVY7ci-BTI4 tAHCa87P8YI dcSalZZ5YjM jCSsP6ooQf8 zoo3aMvQdMw klpN-W3Z8Cw 1cHRBd6l2UM QkKXJ82vfJU 6H6RGCBUcf4 sPlsA3_6hB8 euCWQcrBwPY 8PALGqaFoFI AQpPxTYahZo ZdhLQ1toP9s C_06Kac9rpg 2aKkSYvLvXk 3MhzaQnLhRY VPaFRrTJZ4U 41BnkhKxWHA foV6LGohzBI 5x1FeyWYp9s rxWQfQcLAUA gDVyEzQNvhU DyCfCl46JSE qsyYw2x1-js fKGjSXtCou4 XHuo5etrwvY STh780YGgIo ddQe0gG79zk 8pDCGWKvBlk QS8fJMeJqsQ 5mcjt53aqlE bp5HRI2hEW0 gKJerAxfSzw vdMEu03CjTk IGFdF06VVF8 2k6F2WITgac oyuHdD6ORAg DsMU1n2HUDo hwevrtap9AY _pH9HcBNO2I fAiJAcgjWeQ C41s4A5Wq1Y s2TbUio6uF0 nAbqTdINpOk vAaBuA-ZeuI 7p9YNPcOJ-4 OkZ0AKNb82c BVAo7tAxtVw aHoNp7pBeCA Cre1DOpQFx8 XG3hNDnidfk PIAvGkpGZXw vVqCU0iWlFM DOmIpiTMs2w SY40M1lhknY 7CVfTd-_qbc lNFbbWOM5FU b65C_muXajk RHz9rXVt3cQ FAmaskY8eXE wSOMPH85zvQ cmkZeTX5fq0 _8w9rOpV3gc M_7k0PCONF0 zJMCctR8ivc ZoL1epfoq-g 29VjYkPPY2s ceWNY5eNSWY l2zrJ_LZrhg vYH5urNq1Ao C0KLb_v50-k AmCR7Owu6R8 nbssDN3Y75Q vOQ211AFtLU bNFWITNVAKU uPQcsSuWlB4 Ct21N7taYlc sB1jRg2iQsg fDcZoI_wy_w V9mx4UV8DNc OtjQUwKlR0U Cw9FQ_X-gP0 HjQPsZjrgkY mji8ZFst3ws tB7Ml4tO7d4 UoNbV-qxEJE AmYSeovvscE g0PEGEYvZd8 mce5xJi8uH8 EaCGKhxR0P0 MtRlOvoq9Ls MdoBOoR576Y M2E0xzfvDMw KJtmyW2urUk rbrIQjVNl0E OfnIw7Y8IUY 4g_oMoSgIas WS8Sc1nCi8U DGOews8SVLw 2rSSxAdDhuU X3nIJPj_7J0 3s--5gsc4bs Yn8ZE58MFEc 5eNVHUxlR1Y -XuS9JQgu4M BuQKVYgI8S0 kvBiMHIuFbw 6SAzrCAaFG8 oZVMUM4k29o oJAYU5a8zTs 7Ecvvu9ovIU g50ARHr0mkA acBlGJZCIiQ KM6fEMvPvqc 9v-2_YOVxGw bY6jLt3owBQ lh5IiK9eQhA _OrEOa0TYTY hITWJ6vE1os CdVuOYKr2cQ npkzgnKAgXU HkXGq2kJAlM lKStI-3GHDc 4xg-5TeGvQY 6MJJXdBz1q0 -W_4EZvbrEI OLZhL2R4cfg TKszvumsyFY SWgcv5EwMgI wKIL7__ybL0 3gLxv0qizPY J3Sl8B7RzUg ZyirxKE2aFs 1JHqVsXnQxQ KKsaYBeEr1w yadi1fTl4p0 wcN3fX7oiSQ 3K3KlDWq-qo 9KTEYDd0F7g OEvu7pkH8o4 xmcpR-iaa7o ctB6OIa3Pz0 j6kHHLVRPak ZiNx61K8QT8 2aTxwlSE2mw 8wMS2SCtVM4 AfNCKS2a3nU 2-qyN66Kr24 -0SHIbuEO3w dMri-2QuZtI ESgYnVVq9AY VDwI61e2_6I jh_EME9M-mg Sy_thm1fviY duU5cdQtpSE GVqoyzJUzJk qj3TqaXp2Mg QvVUxPcMZQE yAo3144gBw4 KwfnVFtdn_E ICJi_nMcUQc nXV8YHeJfOs eAp8Vm19uQU 9T7zP4Ui9VE PRk69Z74hPs r29P93wUiMg eg8WzaSrZpg VdAC6kNpXeM vq6ofw0hqkU oS6AtbHHjSo M9C1xAQdSKk chCsCDHJZtY pLXw-1RPsJs 2pw_36yxgXI C0NVo07t9UI iKduvC0uNs8 vhEOInyNr54 w5yJV_TKOWg V3Gnq8VFai4 Vx0MQxIFBW8 IB7BvgXIKOs rKh4muRk_s0 5YgMl4JQxKw bN7jTZKITG8 IXOq5goG2G0 vTUM5grJwTE 0w8oeXvLXOw nCw-UbptqD4 S-2cloMm4Lk _bS2cHSqgnE T2IZiCyLFmI g5-KsABvVzU wdcRrpMHIGM gQATrdAXELg Q0IHL6WGFY0 BK9Rn_s8idI PR1WWVvDs3s -yMT2S8fJ9g MPY58gIH65M M-LhdLDYOps JfJSwQkRgbk w0A-YZ0Yd2Q aF4SahLqcxw cvuTnguNL8g UTGEXJSxPvY aqTS6jAqmUA EhyXopafOeA wyRpsUOH4f0 BYQ0Q0oqYOA KtEzZuRX23M y3E0ot-4Egw 3wjBPKUDk_Y 1spvdwcb7jg UYhBmdQ0VWc -QGGk3M5S3c tJwt-LcbRIw xmbmcfVs1u4 AaF3SiD4IYM BpP_rFPFUPM PSWftrnsEcU 4l4OmZk59Gc bPL9A5VyKrY oP_Y5LgieXA mWB4xc6-Pdk X_7TJFVH3R4 7X59lLfqm3c wZ6Dlo8z04I Ku3KKPEi-Ag wHgeI9HnroU iQPvgoJ5l2s cgGOnelqMi8 AUCbYHVFnf0 23zu-1Nsqg4 Uz6jhOP_nm8 W08YzBOfqV8 P-SVl6Ql7xU CsfBuhXV2lA KC2YLhHiXv4 nyJ00UjcA0c aB5g_U4qo_Q Uxo5LmSDK34 7Mz5jmOePsk NO9Qt8NB7JQ A9MNy__qBaQ rBy7ZDob8a8 D4x3BaaJ2gY 91GNWPp-a38 T8qZ73IazvY Ri408Ie3zQs vKT_HKcwxFY HBYW2199vpo wNuVF4lnszE AGi49DPszHg snkc0SvbR4M sxyaSXAF5kI nL3o4MGY9NQ jUgr32wtqiM cj8XKnVdCDs YZN59OZIz30 LSUPf57En54 ZjEnS3hA1B4 eCvY-ualWwY E_PIi8tRcCo I4_AaEazcbk lIbKD5ovjok PLgNzEctkO4 bbX5KM0tFVk tJya-fbl4R8 BLSFQUjyBQo YFIIcUg_C4I OIf1BFh8UwA cbH10o2VTXI nWwlcubR7s0 jXIFh5Gwqno -vvxRiJkXAs 1Pk2FQUbnm0 xzBC35K-vug WEwS34zf8mk nYvvM0FXKWQ JVRdRQaccL0 DtuXEqWdWCI u1MRGbWEI9M fWgpZ_2oYfE KFzIZnYLKSo ekSSp-zvdgk n_3Fsg5qGfk DRGjkQ_iBL8 ulFxMs35-P0 CtYTXG1RFQ0 oIlpo2mj_qk Cn_70ds_Slw w0qfQaJtF2E vVmZO3W0I1A R7vFG7jQZGY 5Cv1ENey4yU y1-gPBJ-C_U wWKQ2aOTfN0 mQTPziHf9Qc 1mVk7wal9bk Gh9kc9DiDnE ISQMNhOd96w q7tLJC4pC14 kTNDYiONld8 sohDA6TQuiE 9pF_vfzjbpY hX-ezXejcU0 BCyz82L_61E UlxZ06150xI iLJtz-2nkGk nbxAMHD0_dc 21rlL3oxEIY 6MIGRX1AVKo U5XIY-s43aQ iLH6Fzd2V94 9lnovJPbLTc gqe-oAUoEto zm9XOZXVyyU wcjCEUeC8nk H7tyPUAH1lo 7l79p5apaqQ B9r99FImuSc j_3wS3OIgc8 qp-Jr4oEFWo Ed__PtLnaeo F70k-PX3p0o bTPrlCglvFo KxoJQx_MgAc sH8nzHarprc yaWmlDjvMs8 nSH_S3LDUYI XEF8mU3Vanc vhmFJKHhdw4 7VOpGn2RTP4 rsktGDtzKhg 2gUFZCRHHvE ccgVkEP4hLs 1lVlP8o6t94 ql8RBlb-IJQ rvYoAzmAcAI eesYEZ3pp5Q Ozg8nU5yyWc zDGDWdvLCrM kE8qSUcrrmk -c6nNzrAqs0 -EZS68nXwHo YtprbvdApU4 U4fHvCvrTjQ 9w3jysNGqeA qULQCbfqJm8 R4O0t9jkkUg ================================================ FILE: data/metadata/youtube-dl-dump/2019.csv ================================================ Sv-BxH3SVS8 IsZdfna1LKA tdzX5AKWiDw mycAsRhAr_M WgXQnXPb-TA WgMhaDEPGXo HummNgSGn8k 33uE1YctOf4 bvl-DxX9N8g E0BY209ZNEY q7S2ckr4IkM frZrAIZrOI8 A-Ckh0slywY GU1zIn2BRN0 0XLEGFSKVhs eNCK08cInIE LCj92toBBBE ViQZwRewYl8 Btywn5TiBNQ chvjkV0jRh8 rRUVmTXpPyg GZiLvbk8fL8 88T3elu2wfE ojoC-Kbzpo8 deUgUoJ4z5I ocDL_b6BRE4 0BM-Q3BDrkw 9jfRE_FljrE iLN9GLRC5is ulJXiB5i_q0 cg49Y3jpZsQ NYRHTYWWiGU mlc2UyZdalQ 4-BWFsE_TQE i_Rupd9NU4E _0gn0zQx4_s cV9dlsOzyVc mcerWHb94yo uQ_nGVp6x6U UECge-Vi8VA j71oHN1i2pU DXFN60x3vP4 YvL_-Awg2gg WzAHXnFWd5U e198XToyAkk A6d0qIZY3Hg _bJYiiCvPW4 WavZVQM3U00 480Hw45m9v8 WncnbHD-JXI MmKlIGkxGyM eVmYZJQxawo HGZotWs54rU NjUtH1NBFyY DmXp6Pm-uLI 8coCtKWysGk BiPY5_H9EIw ZhqHIrO4ePo XMGoOSCbul0 96pSGRvBg3I -r_-EnupRXo TcBlM3VLePM nxc6kwBYFSM nXSfDMvXAxw eGXnEeW_KdA rQ3Qokn9t_w iJDnG2RAlzk iPcAns5pKVw iGsce-w4TtY lyd4tC8LH1s 2LwWmJojqvM tXhTaL04ByA mBiT0g4TIYc cW7AkQihsa8 db1o8mTCBXU JYwvFPjJ7dM 6RbMqRpNqmY RdpvBc4bahI 9lqv-q15y1c ATNjQgr7LXc TfKw3gvxff0 ySINkZRkHi0 LWz_6w0paEg n-2Lxsj7sf4 JL_tj5M1o-c r0iSxOsPGl8 HFTqyXV9Vio CMMzjgpnLGc D2JzjzTWMxw 9zcAqShAXPo htWhh0DIFgk 9_n15K7rv1Y POLkdKBw3LM _1tCmEtAbnw 4WXN2HQ7PQ0 n0PS-QVcoJo lYu_8OE3sCE 0frXMGxB0Ko fluKR9XbEjQ mPDFATjS8l0 -1W4xHNKvAk x4IKGG_2L6I PvMk6sjZlTU RaicjdiN8ag M7CL4l-bu68 ThIBEo7fsSQ dhJPm7NolLc MgL18hwJZ0A ZvvQ3CLveAA PMdokZIn2_s zuFtCz663GQ CToeYdx6SsU 0bR6pUOhZo4 WzmAy1QyIH8 w3trh6DMpHI YoAV0xF7A2U azRJpVsJ7AM hck3C2VMRzk YI8DWdXhg5Q Ajh84X59SH4 Nhj2rSOUjwU rQABiLDqdVc vXQlXYcAksI 4IbNz68R49c mPWo1Dsti3c 8mDtsn0yrsA F9vKkW_NNjE 36FYEbRBy48 cj5Mp68u2tY a3HOCIXroqQ BMlHiDzHkSk 8OilisaAv0I 0tro-o0fOk4 _X8bBE1M994 4N_0iP8TSRo 40p6dkKil_8 WCf36CQxBfY aEIaR1nlEoo DWFZ7v72HjA syjdYGc2A20 S8avj5d8G6s Kbb4g4m68sc MfV5DOQ9zac b_Wpqni4yMQ L8JRx-zXz7w BYN41wGmP8U RkaM5GL1LTc qDBjp7fdIVw pikL2Z9sykc 2m2vmTtcCM8 QCkiT56VSR4 crbN4daV5IU J7kO-7jEveA qFKVhx9wBZ4 FX1FiZxQo7k g05nAeO-uKY VmCRT88HTWE 6JfQ82WowC8 f06qimixOOI rS_HIFTV7wM EodzQpkDFYo uifDWAJ6rBY QfSL-PSHTkQ 21Vg94SOqk0 acZDS8WDtHs Pku1UxtmkLM 7H3XPETdtmc 3kvqIswrPhg xE4RRKaCifU 6HboqAtIPA0 kf1bu5sUXaU nCm4_MJstGQ SaRtVS1Fx1Q rPh94cOW-MI YHvTfLaOREg __7NUrkFirA qQjdOtebYns OqyvMY1fcr4 dbX-ekoWGWE UVOJk8TFwpQ ktCIr_DMGOI Jrn-OprEMLI hT_G4j4nI-8 oNpeuCWJgCc eclUi6kVFcM fO8fKHbg4kw mr1bVID2qao clDZPzwANeE hOH-oOCfsX4 2qyJ5r7Wink _wkTjOjTafw 4ZiwLxnl_9k lGAADj8laqo cpZIiyp8juU 23uAYGDpS_I xSJaxpJHf-s erE6UlOi3E0 UIxwyNULzdk MGJlq-gjQj8 OE7aSKZDjTo Zbmc8C3GaC8 L6w-80CFfAs gSG9bZu1NtM ZPDbP3gms30 gnallHWgupY k6dRH6fO3Xw 73Pm3rkTzb0 es2xkV9Be20 BrGfzBJW-Do IMlPpjJlzFA ZyXHxrg-zTA YbM3eHylkqY o-HlGWzIqec yUVhyWMVx-A VP8hyYS5WjU 2xbv4AnWS3Q oMH9kIyIl1I 5EN4MulDX_A 5VgRuLQgeSE T16_n7praO4 Q_UdYBBk9XI XDlC8NyBBro 56v74zFOV58 yyPkV_leKEY PIHPbvviS2w 0ONU_H0EjIg SrvRkUwIFfk 5Svd15hqUfs FGWPKiI0YJQ 1VEMit7JERo _AElcgYtxpA 0tnKF_qcXTo V9GnOAfI4w4 tMcUZSJ3xDY O9Q_5-rAw_k 6hUiaXXj_Hg 6LyYxpkxILE Oe_cBDzqBUI wTf4njh9TnE QsP5Y1-eUIM HiPRBsFF-zU vBtG9eqgf2Q CgwNoOUtr7s 7Wyjo_hrIbM iaTG4JflfqM 1CTjGKT-hDY OkBaZLq7gnU ZhGme4W06Kk Ua4pj7Sxy-8 5LvcBgWzjwc WbFri7eX_YA Izp0m24gYRU 5hriUO428pw vITX2N0hpYE JfsgeCwAYEM 9ZBPZ4b5LRw 55uK9Lg3TaY hIokX-nhQd8 6nmLldKD8fw nEAgLZRGV98 JKPRgXq8K1E AvNNkDEqjdQ Fo16J2G4bvU eUGtEOY5ZLE Y7DGxkezqSc xjYdRu4FiyA vcURIKX8710 kurx75GAz74 eLKbRagkB7M hF_9GQFISow taOda6ZwWyw fhK8qpO-iD4 08cPFt1GzBs Dys_AAhlGqU pWfB7jrCgxk aNbtnYXp9-k KDXK5R3f01I 75k4CoAyT4I R76ux4iCRzI QKbA0PxeoaM zwLOflhZOBg 4xtCQLbXDqY zjXn9UGZt4o cXlRo6pJ9ig 7rYqBdJdnqo KTIw9F3TY88 gp6FX1H99NA A5CndWt2xrY _YMLnL33X78 PrBVgtAeNhE 6oxCZ2CyGII x_6ZpxB4xIc 8Q2WgdOSfms i07yEczcujQ q9sjo2J6hIk d35M7d-E_PY EoikWLSsmRk zUCWPJk-XHk cJyhEAxnQ-U -VnQ_KpOBm4 b2P-oU216V4 MuG157PWMWI UayJYYeMANA svwcgrDZVPw -wwDqsmUkxQ nl5l8Vn3Syc a_hsjTExzbw Q7r3HIkBJcg GNAJWwqr8cM dwufX9GKI_4 zeGRvFbWbz8 FIGj7z-7olo Abb6BQgz0N4 2Q7wnttjQgw VMGKsJi34Ac O6Ap5AtXFbg PhQsxcbo6gk W-KxBQyVfc0 b_fKzher8QQ 3WksbH_r10U 1SPMnqTUu1A VuUzda9kvJA spy6L78o3-A _Hxk9-WNdGQ gH1kstAfb5g XUcN9bf_jP0 pvACjy-tYFE JkrovwTh2rw lJf8EW9800o j0c_RQDfjSM MTSpAVqgSso rTy_mgJIIrk -ZJZF6PuwxE 8TTWKlJdWVE CyGOqLQTww0 9aR0JkmZLk0 XkvSrgngUrw 8kcd603M8vA SajgVNIRdn8 rA8NAlaMgPo TXlioVAN41o hktlkG0QuKY b8t5kX7k0vQ CflcJ-HSA_Y VhYxVXimdIw U74NUVSKuP0 -vT2ztIXioo o6tz9pga4H4 jtSnHOkSJxM Gdp4SEfQzy8 AVxDyv1h9Pw z1hLLDMkdlM Kv9ygN2B8WU aXYTDZr_rmU Z2SdWJJWe4I ciue6Puy53s CqsCkhbCUr4 gCRokIMgn1A wBHZhBnXRew kQosO29X9Bo zfyDw7VR3Hg PSW5cd8WVwM khX9fjqlf40 IuiKCwrTYO0 4_SBdgdCwDA bICHpdNbsmU AX-qpuOuDVg btVoaFC1Aqk PNwyZMNu1gA iK03b228mmo sw1tJoYrs7M sAvGdule3fA i4NRgUeziqA 8fHMMPXUE5I aGMiaQISzq0 5ZCaXimXaxo eeWPnGsY-Xc ge9ahoqNSLE VohdBtnMchg 5lekLtatLl0 Xq5eXYCKUF8 X36kqKTClAg 4F5AGPMRwgw 8a2aEHT7v54 aL4dQo8iBLo tBOZNOYMHEg O0PDEEFMUB4 sMLop6XZBEw nqzkyfeS2Oo Rf02bF9xoaY wTfbHs4HlPo 2s7POrgTTzg 0DPfRUFGaLE DawumJOyTOU Nohgrc3m3z4 fV4ApYBVa3w c5IXZhctoV0 pwidWMvvsVc qI14dmYhHGE INGcULi_c2U 2WDIu8XbVD8 ALWV_EA6x8I v4U2mAwO6-4 bD8bl3omDIU 14t7g8Yq8vE oo7VlD66ISM QPDuZ_Wq7ZA Pl8E_9CTS1Y 0iUKZskQEso d0ZOz1i5-PE g3kYdbqIwBE MVo83HAnysQ LZ7Thv4ztjg UhL24j9G3tc AxGMySJ6ySc BCSe_CsI75w msWWI02CG-o h7iSkEafJ0o rIGsI26-Bg4 fnV93ymcOME dUMW1YRsWcY l3H-hjiT6wg DqOU6NcRVe4 oRX8ramIWwI JcF3Ay4sjss L38j8UMd4oM IXyMkCDTmfA YPXkzktz5oA 06qgu4XoNL4 TvFCzrDQrD8 etixMqUt8Ak FC9AZFwoLVg K_NTydd3MqM H4hjg6jAhOY M5DZzTtbV1g 7ML-9r4M_qk jXReN1Nzlws 0zHERbRFxTU aRav_8OWESA kg3erAXOz34 6q2aPotJP7w bIpQoVucszI 93qTzU2bNh8 MlUEy_9s0D0 Jye1gDePzgY I7pEk2hB5OQ wNRvgeiaVXA uTOoWlYv95w CFqO1y01qjs xcTK6uPPiAo sfgNK5f04iY 1afS6fOeldc W9Rb6wHuQXU R8JjTOsPHo4 dapP5W153YE v8CflcvxDJo qabChviGItk I7-GvXsr40k 40NyqKryTUU _myZeGUaveU hv_mYkUEGko S0pCBDjC9Wk J9Sz39odDjw 7ygAdJYS9m0 jUkqho3OUos 4YPxIpLpLRM rwr1IzFzjqA GEB8rnOevpY hgLkypdC6wo yjrvJkWU_5k UGfYt2Ufipw Mm9Y9JEmekY _OaOalM_tcY tSpOMNC3WtQ nAqJV2olXN0 AryZBe8C69U AAByjopE2GE adxwpSdHj90 rlMANFZdCkk fyOv0TB4lXU QtVEk0oKtkM J90JKBCDzSs gHJwn_JEazA 536GqWYOHdI t_9GTwEOdkY 6Mr9bQJEuN0 ns7B5fzH11c gjuizikJ2bk K2NNznJJadY VRuV5oMqkDg 3cBAmkzKEBU gJDpyQ1Efto NKewr9uDDck StUN1G5filU iKi2wYZNAnE kFuzbEylajA tHHqfGeeXps 1JJjo2GcRrg TRCSLhYz9CA 1rKzD4yNMoc D4sj2Yq5bnU Ed8T-GzBcIY f0ui8NJnqN8 oY31D4QSB-Y Irq818Ek0Ro JivWELi2rFw YIhMJMRdGGY VhzodI8yBUE S71iST-01VM aQ2aje8PZz0 wBq7RLGDqKE 1TY9TWCU1z8 u4NTe-ZIrGs skrnn_M3e9A OVSaW3-ehsQ VK2Bz9yq2As pQwl5G0ZHdY IagCGWtNyTQ eFF1grhBvsE JqYtHZw-M8c K3OlytfxzHU zvn05TBxdUo GpLeHrROqRE t45uy-QuRDU AD26OcrFQOY vyb2Imfghkg MHPp7bN1kXI QbJIRG4T680 p5BfdwK92UI QqFuGUbvgnQ GNSkaIuTNao aD4ZPXHAVCA XkNQZg7yTvw fRF7InV7TfI aX9m-xzauMw I9NGZteE31I 67dyb52zKRs 32pZcw3acD0 hw3lBV-89M0 wB2w4t9dr0Y FeLR7tVzVeA kAKY4ZkKIPs yqlAjK0PVsU gap2gWQy77A CtcQNdbPsSQ XC0h9nx3Pw4 AHLo7Vs6drM nqEL7fP4Rvs r2fHzai5ih4 vo0cUbT4Lh4 fR16yYVpcPw pRwRO-DTniM AXZhl8klPfM kQnmD2gLRVw 6A7uz7Orp_c M2UIT2nHDaU NQbCRZG4-jo 4EEMDr8l_gY V0sQmOr826A kT_dXxp7eAo lFyh5QCd6kw R-wQWw1geBM r1N-Xby5AnA S1NFRvZE3FA L91dx9ovcz8 crKAy2dGX_8 5QMsr3UxzPk zbAsqngq2qY I-6xj25pOP4 NdaWQm_UAF0 -G7OPYUlnT0 geGO_emEsqs YqNktpnzIf8 Z_WhAyucr_E VlMy5-BAjzo 1UbxL1MVZ7o o6MDdOWCCT8 ij0JLKDJOrc bYt5SAF0M3I SaUYfjxV8Ic cvPIBkkwvD4 Ded2FG1gA0c q2YwvMc96VY DznDZ_VH_2c EpCp0rAGDNo SeiUW113A_c Ent1UQJ4mdU 1Quc4FFOwBM 8zqwJl6lq-4 hwQWBQjvbgM SemxtZJHxEQ uYV3p1yRHyg HpJfIRs8rfc ZEXNPj-4clI MDv-LBBUkVA ESEKkJNt1P8 6ikH1EFDm6A Q-ABzsALkYs _i97zAZclkI AAN85u-udis 7-5kYQLJnFw NCjjqtamXzU HceqAAw60vQ Jy8mz4gu2oQ ay1hpFWZQnI Qc9eycqDJKk IKo0Eu-Xk_0 CvnpRyO6pH0 KGwANfqAjNY w_XUAmQdKJI DfKYwoHHceM 1eg0tbBF6eo 4XSuEmqtnRw RcccijujIjE 7UQAjKVyjIs Txy4-5uYN0M TrWMrEKpT7M pOlGqiWm9yY IBsHlPPeaY0 4mfQVFVg16s rC3OdZQgztY 4JjOrujlaLg vL21VCK_zLk 14drcivv0CE tyXI3CQSQJE ibcYEwzgai8 mS4njwcS4dw jUYCTHwAQvw 0yDzNGZc9DI lFGfoPuKx9o NYBMaVtMaEM ngdsRt31sIc IZxYRZdq2P0 3i-ooDJMOzo ZKgJtlJDPcc EZaYMKD6Iqs CoXniP8kldY 8b1jfsKFu2w q51BSsTrN_I P3imZIQJez8 PldJ3snU1C0 lv0CgSfmWxc wuM_9dYtRwo s7kCd2kuoME f8Jf9xoJQwI _vwllSx_Ew8 WZ6JK1mPT-A YTdTD0TbEp4 qaQQ3LLyKvo ukNsgDQKqfY XHuewsIKvP0 w80bZTK88mc EelncXXu150 _0vYFxJJcB4 Ej1lqvtmcMg HbWD-eclNf4 P3Mo5t61kO4 I3akC_INsFc S-pmcO6U8eg Pe5eL8LQdY0 bCYs8v0Xji4 GFpm2LR0sGQ 40CAAtSZsbw QpmECKEHSQs 5NlQiQfC4zQ k9utcDoerr0 bbnkw5RyiCI _HgOQNBkVvY _UvKhc0wVU8 i_9mM4F_JVI Pui9t9vPUTc y_LVaQiyLrM Rq3xZDyJtMk EGt-Nk6a1UQ AszdXufdl3E S_lcxLCaxAw NZuXsiyF5Bk 57X3MgtTMfM gAI36zhS84Y 2NNOFLGL_VE hegwdxt_FjA byUbi9hlirE jJeed7K-6fQ CA66So14ydI 456ZpoRaRWI d47y-Jm4m_o v6nkTlU_iT8 AJhPYwtbCo0 s8gCo-QjtGk r8SqKn2AmKc 83BVVnFnQkA 3yqsR2cziD0 cRj9pF0YGT8 -ecKc5pOEWk M_TCpfWTFjo Zxw1Z6pzKvA pppK-fl9a2E 7uSfWo-jr8o -ZxtmDbqDRc xDZfwTsiLrk u6IAct0ow4c vxFr0xNspFU hZvud4MnaQ0 frV4tvni8H0 jwjCPSUGPXU NEDEjJ5FyS4 q-kSu3KWfEI sWgPWKj2G7I FFU7WJWXrvk Q-D1e1u4ufk CKtUpbJ30Dg sQV6nuap8WA tbty8Ao7_IE o2YKoT7jL4M ML4CcaTFsZE Q2GegbPq3Lg vcdDRblTOmM t6UyEPrqaQI Gdpx9aiEtmg 0h0FeEzxCaM 3ge07nbMna0 CYO8cs7VRMc vJhO79OGi20 6mooNp4aWBo McmlPCS1kHc 757qJxO5D6Y BgxPmLpvxzc -pKrpqoPu1o 4EWgdeVQzEk enG1CfTbT08 gnlvKhPzx5A ZXkKHnmKWoI 6w4Chzgna0c 4gftIIxf7B4 kokQDLJ1104 QR6Ds-Tvd1g NxCa0cVaxQo fWYs-bFK9_s A3Vm7zSOm7M erX0T5r5xbE Xvyf7ml1ndo n_z0TcZkPzg nLDgcHxJ4Sc j_sD0t5L8kE ESUdqZoRu3A 1Ylk2e-x--8 LJye4-HVyCU wzZ3S0ZC1Is 5SRxYONb12I KekChFdIe00 R0CN7Enq4Rg mNd16XocjBg UPIr8vb7OeI edQy5jBxhV8 oDjuY9KCsI8 fAaVf_wel0c JAd3SSNqZlI Xstux7DlrgU aoc1wqaK8cc vm-rgqRKqz8 wuzbUsy6snc 8ISsNLwwmXg SqFAf6aGTtw SmrdaRhZJt4 8p1gevM0y-I 4kIbIjoVakQ sMrjeejmCpI r_tl6PA-Rd4 lLgOrvsA9tw NzCTDwlquaQ doKP3Il9R1k WAX89Cuk-Yc 1EtA0HrUrYM W_fixpI0BL8 ghfqnmL0d_A dvIzAdqrb4U BCC8LOkisAI 2vIINq7m10Q FlCzygStNzM urk-FzNJvzE u-PbWxhmJto s9_C0lmrp1M _PXmVLPkYVo Q4B11j9T3hE h846tnckLFE HZbYIyL-tUQ vdZ7vQG2hzI KtumRXjIzQY Y5B6H8G2WcE Cm6FChNhtSc wM5rRXQZvjU rhFw9HYTReY -wci2oycOQA 9zbF578--dE fBpNFLngzT4 3hOO0D1rH-w DSyCwx2AlQc S1Xm1jBc84U BGGyUpO3W-A Cp2KrXtWwAA M5ny5tMsxrs 1kuNl2T_mjQ 30IrWTTMWos yPJlBsQE96o oPPxArk70IY M16l8dqWTuI kyfMjDlcisQ ef7rQniaz5c MnTKULzMhMs Pibr2kMG1HA InHZNhmQyd4 EYvn7xDKKtA aNv_E1Gh-1k MLv1hfiUaNk Iyv1Br-dG8Q 4fgrzQIolcc dlzBcCsKQXY 5CxYctMSiw0 BYrS2k5nPbw DZlM8Wm7OKY vjDxkz5LO7A ruwbVFvdfco obn9BZj6V-M jgBGoS4a5rc c3vmsUcknhY dXNu5a3KmMg uciRaLsFmfM Xr9GABUefT8 r-IE6wNNbAI yQXi94aNwBU 8bJzLt9AYqc mFA9-zsFtt8 xBI5Rk9qYjU oflnRQP6Woo reyTknNqDjA hA063IaOHyQ I8yvHZ7de2k Zsf-encTJXk JPbZNEly1N0 L46gYnVmYY8 948o2mF4QAs Djlih7ELcTA 40vMiKmqaCk 1HBiMXpncto i44zbRoYBtw sRGrUQRVPoI KiwEFBgGh-o Y69UrBaCUAs 0qzRQ3qxv5Y R9l_adCi74g L6f07_-wG9o 0WKopiIhAdI gnfp7yyQgH8 WkEK2NyGq10 RHlGpxG_-wM 1jjQuF3a-7U otOIqHsnQZY eS-f-9meg9E _qw-Blkf5zU 9FcSX6y6OCA qIhQJubhA_Q _klWa7UqpwQ Pc4vZPJ4AVs EIHtZl__2tw crSg7r225Hw hCCpL0zgYoc WQth5UmIAbI MuYLaaVqJf0 YIg4Pcmy8ww 6tVC53rH37g YlbjPR7t1IU 3GrjR4Fib1M vpqzFo0aD0c 08rJmhhQHtY gq1gSTF2oyA yr5x9xFoI04 qLFrdv2R8ng 91Z-_ujQGik WOnHL_mSXRY zvGA7DNmxmw r12JlwSBvVQ L6HWF_-Vmbw Omewqh9iivg XF7nz6p4H9U E5M67kHOzyw 2aFfcz677qk KH9yFcfLfOY glDG7hJd9Hk a6QMSQ9NtGM v0AyEpFDi48 q9X6tpvxZyE is4ZtB0U7Vo j4onAJ-3FAM qRQu4tZF1GA 7R9gbSQenqg HfEjIU7Qbj8 zErzJxN84iw P-mT2D6iM5k NPY5Iq-tCvk vh7_WKODlE8 29YDqiuyaOU RbdGl6wRKDc 3s2XMsUdd1k hYvxbtiGvrk -uAEWFPmAwU lVSMG8FTnpw fuCe9uaRx_0 Bc3PB049HQc 1ZJEtM585x0 xBr1UV3kWqA 8myhALdcfvI CpcopOQAWWA CEwyZcmwNiQ p2CR0S7DHyQ FbY1BfonRu4 FTO-jtC7Hf4 DCF_BXNE3oM qrONj6Srq7M dJBnRYy3mFI x1YvX61qS0Q g6DnsZvudTI wWHOsR_cHt0 RJePUClQaCA 6efkIA6C2h4 2oFTDbVMd18 kvEgzOjGpoA ZR9qd2jynNA qO6AV-o8fuw WgCQS7EllP8 abyQFrI-BTE ex2RuacnG5M zUtw46VWtVM JgAmbGwTMbI dSSXODCgJOA LrDnPOOQ7mg S_7ZwIV43zQ S5Y83cDu8II srpM16MbHAE aoe4V2f2AHg Wf-GYKvvI58 CtBWf0Oq0bQ BHJTeH6TLx4 x7TNrjPLDBs 164eTBYcySQ xnv86GOjJz4 Z37CyC5UB5Q HDOGthpW1Hs szVtrq1Wt8I aR4h3HHzqlE -_2TyCKWCcc 2MyJctzA-4s 05s6W7dLEbY lunmhq3ZejE O4PP1tdCHJA wzlxR3dKjrg hb4N2SJjXRM goRmKynyjqU fPQJBHWr8zI PjYVxXOmsrc A4g68fTngpA Vz1MWTi13qA liRaKtnWUAE Pe3mEnRE-EI MczK8n5msJM yKw8Cw13NmY q8Wj4buHUtE nQ2Y1gm0fRU W4vPyEk5UK8 ce5cnb_5dVk G4ENL-T7Dyk IiQlYWhL_UI -jg0_iXfTE4 PYkBs86HnUc 485KJTKt6RE 2DpotjffI6U SjF_DpHczjE u6W5OFK9jpU cSO2u-StPbY CzbL7AJIhJI -a1FAp677Vo 6zx4HGKU2E4 NxnafGrvcqU nfQr0dDL8jg 8d3LDYM0GF4 FVRaOepQ02I hcb0vROvmWk AQfWibFXtO4 TzAEE887L_g 3lxLsyE0CRo FJWgF5XnVLY 0k_yjEiPLoc D4gPEFccxPk aJgS31WWIG8 szIOuIIbVfQ wIloYFMzS6M 5QJGkxbb0wE 11-AlLawdeg rbhNKSWKWwU ooS5gVdYgRQ Dh3WAI9JeJw Qwr539L6kCI kdrPUm5zBqA xxGmwvrt4ZA 4hY7f4nOQtU Z0AxmKelYrE MrrYu07MIbk UBWIoJF2X4A 5Io8n3JYNUY kMcvRpOOIwY br2rj_3KW1A u6HHla9ApmI JnuYlFhXWsU exu61pb5X68 0C-qxjiDP1o HbgLp9_yU_c aa0NlkF7Rug vT3QXNKoZKw DX1p8C_FuxU N2s_Iij3Xfk 3gD5egw3-Lg zhhLFNr_Jio 2SJ3eoUGXy0 6-s02HyO3XA 1s-qZUCH3xY KJ_8vD4Rv9Y 2w8LYlDlls4 7KByxGMoiO4 NpjcjrKoeBs aNA-hjvEyUY ukWCpVUXs_E _3bYh7CffIQ Y--v_LdWlQA NkzG9RZBERE Kcmz-QxexRo fHerVxCsbyc 7RBqyBb-MlU WBY5O2nTvSU zBLsO7BKVHw OvQctA3xsoE 1D8CfzvSy7g BSWKnZ4-2eE crI67brUX84 t794eVHOIvo BUqJMPAtmdY YduLKKYfgSk iw-0Y6HWb9Q -1zLU5N6uBU 6eW1ht2HbtQ Sw4pvbkQ-jk U5EKQ63wREM L-zzxADqlu8 E9B65UGKQ5o 2i8C-GOsHo0 6CmxSs6Mmx4 v00zKyXbfD4 Du5YK5FnyF4 iVXVD0KxSug yjw_DuNkOUw vlTPIYTd32Q GeAcikP5N7M qQgyoHsknIk vPpNgsJp4DA dgyue1tT-uE QB8ken8pZ_s aFz1y45KaHA G7gklW3Xbn8 xRShAxpUZ6Y QMBLWE0pu8U hT_CiaTcnN8 1jEe_vPgNJE qUammhHxd1k x4L81QLGYuM SmMmQHR_F4Y I8-3VpZrBww 2dn_r_sgBEE QAO6uTkGpjM Kq3TiuRC-VQ 4WNq9Yy9m_g 6nSu2qhTmNU HVgu-41adSY Kb2WClrbrAc 4fwQKF64AWY UWlxRKXD6sY l4S4IBACQCM G8_ch6wsWjs Ap8p92HCAbg 0IuOpt3p3WE Z0sFhnkRCsQ V6SMgd9L6Z0 goEiURelfsM oNuGwa5Kd8E V-vgoh3ukPc HTFjrXA8bFI a_VIjZa76jI z82GwvEQ3Vc uIsdG0ydS5o dHXVvD4FFas X4lUmgN_ByQ tJ1uXsPXyao _0FLP8sxv2E yCHoWsMt0LY 9JQEbj0uh0k w6YTq-3hmnA -AZg55qXj7U O-W3C2RQduY r5ilcq9hUZI PzTICfN0A-4 C4DPvNXtOzA S1UpuPvAUss o5NPINxrB7g F5NFCYDB5hI rsi2WcPIcQ0 IfZmBGcWkLI DYPR82c0v00 j91qPMHaqbg 1bBOUr7rAHw CwgIvhYyeTc kJVKPHBFNF8 9Wy-6pabUwU 3jEDXJvOCs8 SZnZMhfusbA _BK3aiBX43Q B3bUD6nAKvU GM59PdNB7FI Gcs2QIB_X5k E7XIYOvcjuE _iinqPkm6m4 MybqJCvM1z0 zZg6j228i3A vi8Kaoib33Y A3yrtArn5zA V4hv2OSD3s4 c6EhzIb5NKo Dka4AUVm_j4 4hA7ILi4l68 q0k-b9FeGFU M_h6qdnNiNw o_rv7bmEDm0 22LBB9jJG60 rdc5PXKBFdE S_rNBw8E98s N1UxH6P-Fgc ss7eqc_SHsg FqbR0-PbFOo LjSeILLCe2M IKa2Mr-yHnE 70eKt79PSQw Y5Y0SYRZRtM xHtAfA2ctBs H5LLqPyF11w tMB7LgnO2Wo HUPoWdZ1ZdQ 6_Ed23ettio FMbSH8g9vsU ewbUaMvCaYg vizu1RigaBI ewANNniIEhc 4fKRyf8BI-Q rKQEYi53rvQ gbIKuFaDbV8 YoI_YkIGXXs x7TPeGns0N8 -krDTO77jrY an5-b_99zH0 uD-VMe03AdY GOYpqqTsO-k fgbjvvCPa88 A_bC8fF6WZE J-D8n4_fd6Q OBXQr25dHQE gA-VU0mczSI v3E4s7VN4xE A949a8j5Boo ZbL_db16k0w g0nhEzoCkJo egC6XhnfuZk MY-ZusWqyqs gaz2wRxRZ7s pgkcX22u0SI QmSSFYFSA00 Bf0HvoLXWdU 9aIOR7dl2CY AajX1xvWnk0 S1C8tqyy3oc aYbKjHmTdMw oexJPg9rZqo u_jemmhoj0Q NCi4QNKpVB8 3wLF8oDA3ZM _t38ENQ9jlY b5Q6A_1YyHg -sD2jY0KMA8 PlJ-x-JNEj8 ANTOMowTXZU -kKqgjrbb6I vKuvku8JEq0 U5nphwXr8VY dP5e3MxjRiw LN8iHxuFSts RsGRrlK84zM Vb9wR2ibCRw F3yawE_0QaE YtceTJF_VhM z6JcuVWaVfQ X3WA8eZ4Q_0 0Dp--gKKMJ8 yWSRVYU_JMo v9UIDDlnSgA Ke-MYW3XORg NIDabDkcS8o yprYw3FQUpQ w80ZSg7kNbE D1IshjFWDJk 7p0J9wVGwZ0 PmYdvwAqwDg oK1zfJausVM ZKxqB5gCX6E 1N81Dwye3VM 3Cf6HfBCcso E4rFRdmeWqU STfoetR9Su8 Vchw3dbVeUo 9EFxRx8EbDk UUAQ3T09_os PyUqYOB4ey8 ALO5aag-ZIo 9fFbDzUOD5o HiavOVW1Iv8 6BBGO5M_2A0 uCG1EiqEAEg Ky6GupHDuOw -7cV5cWQmxg OFJKL2POF5I gp7K6ZwuDow 81oozSLS2CM PWihKQVb_aY ZMIGwSNQA4Y zdF8hHVUzM8 Qxzrv4GCwo0 Z_5l0p0gmvA eqarJw8A2YY fp8Ob7kBqJc koahs44agqU EE2FUs9iI0A miE1oJ9ysUs sFRjPMAxn1k MGuKcmxMPQk ZzkELXr8siQ F2UxQiUoCD8 QymZP9taonU _pZJUgFokcw Z8lnce2Ij-4 7_ClXAzhDQ4 6pUt6xlMorQ RA0xUXiz_dc oSEQnREqfF4 MpPwsiwPhF4 ofrL7_UA04k bocu5uL8siM W4zjAZcHUaE yHo2Yx50F8c PeliEV1oD2A ZRdnTHyJQQM 2c3-0yhNlfI R5h3Pynz-ts SdSQJTSYXJY OAqqb5FC_a0 yU6yKmqhhp8 yebKBYB7rEs 8nSGhJRDjX4 pf4EjhjgisM 4MWlfC7QTDs sa2LecdGh5Q HNPPD_4oD9M kNtopT3-5t0 Yq9fKm8q0iY sxY6Jc1MZSE 6R2Uu5x6Imo VwkGKFFk-F4 AcSDeQhGGFM LK-4Dmq6Hs0 NX12Wu1uqbI hH3peh07eq4 6Ua_T32yaic V9E9Nce1dC0 qiRW4OvzELU lUPTOiM_7CM 2jqk0yyPkrY iwryTZf6bA0 GM1x6UcMp0Y IznFYCiGAPA uh4bsAP7K4k qy58BaeEMyw 5W19mLb-9JM suYDvQwikn4 rpqgDDBcmcI Jhzm2AvUGHA 31fx9aF04ww s6moLb_ieqA gFJT9ziRAUI wmu9xg12xuc lISiW7wcIVc lJ7F2kWLGuE 9_SMqU969fw NxrAVHpoBs4 CmUXU3VLgGI 2W7WM3CuXPU OCYRGGLywdQ EBu9PvRBPos qW7LtKsIfHM O3TmokjuQR0 -Ian949JzDw qDQo4nvQ2yw 3rb5s-BoCFM KVnOa_HhgX4 HliXkWOMgaE dPaM45IreF4 HV6s5JiA82g HUZ-rA7L0uk 0NAWQvMZpO8 lG40tBFlGMQ MyzSuy1v6DM hhjLmbn5YoM LeGBkG_sRNc 9qNFpkUBSro tQ_Ry1KTluA tgBurIq9lGE vAO2D0riCDg owUlPwoEfaM 3w6Z_-R4Kk8 r5ia1XDzIAU rc5v5EODszE bqy-R0SemoM YOCEHKSgwlQ ZrDL3HQCwE8 xC3PGTTjX7E mAB-hSPmzjk Mg0bvyIEHcs Gi3K-CApAS4 RSl6bwZabjA 282_VCffiTo VHj96nAjRn0 kVbmTKqZ31M aPdxMGV1Y28 2kdSBZ2QieY jcmTZfv5z-k hq4lKhTXzXQ rdWIo5R10CM ZyMP_jN2Veg MFN2fMP05CI S3MGT2fahAY 5zileWIEgoQ Kuy5Qgp5pvg 2sX5DMSCipI ewiNzru8Kek 7sXlyaQ_ZHs urbo6F_qD5k fbDgv4huUp4 MWc0I1-Sfj4 D7gk8nagjHU H6jj52hYXeQ FFnlaQlI1So ogUC0Fcvh7g UkPkaNawTUw c_SJMeRltkA 0yAYgv2YQ5k NirTc-GvKLk PkUS3Y9bR9s 5k-dlqqHE2M qTey0qxMboA n1VEmXiaFY4 p0cf4-1zuOk rOzJnj3UmNE X2X3DxFAFlQ Y9Nt3hlMUUI oEHayxH_YT8 -t06SZje8O0 z7J95xF4vW8 DyUus5cUe08 aHI-JX6Q3Xk rHIIMIBMvng py7xqlpvCIk 6puVCaR2E7M dXk2wGeBUHE eQSqgubHzn0 eB-ldQkL--0 Kiw89e1mHpM jjwg2PeDUxM aW3-E3My-kc 7mm8aQCp_oc X8w0J4y5X4g S6yZ-K4SHJU z7siqPhc1qc StoThowf7Y4 E-EDJ6Z8mS8 8uLL9nYu9YA 6qXs7Yp75M8 UU_Ly8gXV6M REkL4uLFnPs ST9ouIvHftA ntqVq02V2v0 LMcBi9a8_RQ b31BhA8om1E I3G-1_l97K4 WjWpGhzYS6o G5aoRyZ-QtM tEyY-ijoyaQ HhmpYA22oio VLm7BuSsFK8 PdmlJSk6QAk d0c6KWKMAF8 FbDFmWdG3NU qoXJJin1e7g 891-YR-fgsk fwITaMQj7S8 3TF7zAiuX1k qHizQ-En6Tk N7wkGjBcjp0 NWNMrmwD7Xo QteR6PIwTNk fXn18S0O52A wS93oTI5JY8 9J_YOz9jvG4 XP2jPEAalOw ljzeZK56UeY sxGRFqybDw8 WUgVUfYuEiQ JXRw_5ug68w VJECUbUadpg Qh5tZM4ybhI y-qCvfXMTlg jyDUZd-Orlc 944BOVL_y_U Q1khILbP8yU 5oHNA8muC4I 2k0S-F8VIhI NadEkwOLA7k S0X0KScmHvo tfUt-J2GCmA lQm7hpsJsPA CVjRQMnURtM luE7cUCzQK4 oJT7pQyq63M 8510wKZLa6g _nnGxztgrQk jfhEIIK-jB8 AhcxeUrWTRc rWlFWMR9MfY PiL1okP-jbc 9L-HJ7BVR6A jjPq-r91oB4 T1IyMJOC0JM Ru_KziPyopw ZgeAaV-OFvs G-I4i0ClrmQ Pf9UUPDJl9k iM0XndiNfd8 _v0aLo9ualA ZNQVHnzKvjg jWtYVevvApk 0kM0c3Q-hHQ UpsprkCDFOs KhS2-vKr1JY JrjycvHR0iI qlUJueukntw futultLrWms BfF5J0uSC3E Ca273QV9ik8 -Kztqrjp2yw 0J4K03Owgwc dRVq4Um7E5Q Z9h-ht1mVkw QSqUVzkUvj8 weEay_Y4EeE WgRUpptAcAA a88UYg3uwZw VbQOa65nKqU AL5i8ko_Blg vGqM44xx4zI 4x8o78xHel8 vEaLVMOwHn4 oyXKvCRzYz8 yEqjnlWEIcg OypxsTReBOM mI6O2d4Ieok cbN7TQSGYlI r67faKKQyO4 eOYwXi0B6KQ 2cxG6iiqEdk m3XsVwEuULw uI7ijvSCHcI ePgiRqRIdwg VGcOGt-OV7s ABLVvVkVtHo DotrfvKEyiI lXKwuj1pqrM bMblXxTNWQg p7h8oBhP_lE WtVDF5bNkqM PFjN94zKbc4 KfxQi9_BfHI jEeRRb8wnqQ 3RWHkM-krJA wZWNmL5VsIs 6PrFocPT-Rs -rsImQShehk Sbtm5uE3cCQ gFX14TEiBOw 0h0S6EmQWrI XrujkDtd0iY eK20uOpc_AM M9CgWWkwvdw T0gaeDWYHr4 P430SxnueE4 qURMZDMKpxY F0xKJcGIQZM 1DNNWWORGo0 2k-G7TPLUfk 86mBBMobUdY Kq3ZaI7ccrM BFWChdiNlEg Spg3JX8dRos MZG1HbQ3KCE E-F92GOLVcU 7S2ffMUk7iI ufllQr0ClXg VC0PPBrYBco mHGHJwXWh1k F8UwjJzF4LY DVA8vzEbm9Y aZJG26fSy94 tNvDa9kTDUw VO_llDPp0kY zanh_ElKfdI W_aGbCWYX2Q 62Zbtotq0B8 5MpwO0oMUBY far9-9beq-M frwyMLRko_8 3mhdNBdzHO8 KD6FsEaD-3U 4CmmKmlXD9I CeJQF4L0hx8 Zufljc_8uLk 2F4ExP0q6RU 1eoKvx5X9JQ rwDDgGuCVS0 ThWvubM3qSs kTtxe4pWpfQ 5WvXdaXIbYw RKlctKGIpsA a1dqJn-r0-k 5tZeutuxfJw AySMP0SgVFY DPU8L2vJvsc yriA_JXQ8dw 9TwfC7_M2b4 KdBP8sYgMT0 5nWugkh7A5U Kqdi0X9vJ0Q 9EF7lRxLbtg FbI1dmDdLg8 z1PcJZEi_js ZgAf9AuNc6Q A1-XFXX8rU4 6rVFFaIyfH0 2FlG1Z6jY-0 jL6rrLaw6rc VKl41s51JvE 2zHHkSu1br4 2Qz0AREgsdQ tFkpixS3QZQ ZQHhiZUNM3Q RVVBffj2v8o 8cjxrd4MMMU XgZDk5PcLYg cUFdtdKFaOo CMMXbRt2zLQ qIsyU3MH-Zw UwN27CAbgFQ OSEHYgl2-_M xY6bhYtH8Pw iNiZJmh1ALI nf_4vFdS80M Dp8y3CiQDgw g_HrR50Z5LM Od3sXn4mOF0 3hPy770hf_s bOge5t77CLw Y8AM8s9zoKY dKX4NN38vpc RcjY_I91okg FzemDO1TITY WNU59WxKw-g iFzuPtVopnE ARQrc5qPDPE pWREOi5GPZ4 TAN8GthZg7s Cw7Ed1B3g18 PlKDQqKh03Y aNDj-H1jxV0 fkiY6TBT4mo JXyisZLObHc Ofkb_7EnunM AKXKkeLQWac IpoReT0HjsQ IgKQ8z_xNhk 1pzV9GoSuys ySC245RIiD8 HCGVmIe_V1c YJV5WB1wxdk 6F_Wp3IlryI mXvst0jlR9Q NmSNUylSNvo wTqLwoaEUmU zSh-Wy2vvHY xPk6RGGwQC8 XAVgIM5X42w G1uBkHVIGfc Aq4LMaeZAns oTd-6xia-xY UIpSn7Kma80 Oj8S0fNum9g d7WraA-roN8 WO0KS0mbu80 paPWv3HjXAI s8tXE43jYho I-Iankzmv3I L4MyGhbXKZU Q4r4jGPegHs sjEDF282UvY -pXlicO85dk TYJXBdLgPks tbWLF2J10xY 4a_1wkseCkQ 2Pl7zNuA-vY sJALMf17QBg TOzf01qWO-Y iIPeQxzLVlY 9H8h3YZTsmg AqV77k80Iw0 7yg4b79rNQY 5BL8zybMd-M Q7r5VtqG7cE 7UANVfaybow usoH9GnfJrA Vq2YQ_fXZoA Wn02SYyYhRA Gr9p1MnLMj8 x6PMTIOZY4A 9JVQzj-iWI0 j1DtkoNFVHY WgeM95snEhU 3aBcNzAFnxY aQ8UQmMypws gcoKGdZcf7A N5oKlOWxzio q3deD1S7v5I DRTuzzBTrGs qVhR3cLu_zY D_D9eQtLpCI a2RgwHcY9ZM IrBymbqWH54 8c-NNYNy5Bk 3UBXU1m7rkk AvIUAlTg5J8 imITvYE-QBo 788ZdV-LT0U hMYdeT6aOnE gkeddnrEeV8 iVzz5FIaCkA NL_vaHjmqC0 ArOB5wVIf-Y YYZSg-BBAmw EG9eUCA_MxE rLj7k4gxnRg vBAK4o8zHF4 waeNIUB5wz4 c6pX60F0bsI Dk2BtXCzdzc 0IWmniYe7aI D56dpMQVGTo xfF-ZL3xvxw bYO_AhZaG24 6Dg0qouE5Zo Wc_pikEIkcQ gQ8uzN8MSfM d4QJy7RMxok eng2A_NwG04 UHwiWw0vfps EqYD_u86J8E NIZSw5HFr60 WhsSP-hValQ 3U7pCM576i4 r28aUcqqgbA tJ4H77qrLjI RRDzDy5wLh4 qTjz5LJwnOw 2UuM47BOqNA shal5AF2Gxc Eq4GnUgNeMg upPFFVaVSY4 ZrPvUd7E9HU hxi06yeErvk 50CeayOz-rs wkqss9zZOhc ieXrbTpZsvM dfK91HGGVL8 1bpUlGBdKyE 1wWk7qN62dI aRJXM-rYZQM fvXLs4FFSJc wLhu6Zy6ixo nxDhsiiBH7Q -zOoQRf6DNw PWebnyN1kSU 6ZUg51T5ly8 aFIOmbHlYo4 H_hW3ML6Ips DbJ1V4yEZP0 PniQ5j9ZqQk J3Dc6UV1ML4 p7zS671gCo4 GIASYqV_Xds 6sfgXGPtVQk KBLBKR6bQCI I4tqrGqT_b0 7a3vbSR4qWU 6OKt2CZ4ULE 1JLugcZa7kw MuLtmNixbdw wQ0QXBmaY58 vqGsQEGHl0w U9qK-5bDP4A 7hDIu_ZNkbk o561o4AQdXQ XHEs28Z99so TUmckZQBzvk _-6IvJMziRc ckSC7ZLyGG8 zZoxnqqZpDQ ipt7yPT4Lkw JHvgBh9ZC3I m07ShpSpKJw ZoWhq3dNFn0 psA_jrGe1PY PkO3bgn-Qgs FYeKDtzDy60 6q5DmJCpaC0 WItFgdMdxDk LUjMzKQtq8U fpJjOz1Yy8c z_98hXRRn2A xq5lZuN6geo tr8peYDm1fE F9M5eGoCnO0 4RPigjaVctQ 4lWui2b5GBI nuhGjqaBzes k6pHxD7qB7k eO-4vwbIJR8 PJze0WsDW8o q9jTg_91KxU zgEsN9EckAI McQ2XFcPCys vEOtK-qX4kE bTpRY4tkyio yPD2Vq50JlQ 8zomTUuLank IoeYkolhKYM NVSG5djzkdo C_Emdu3KwHg 48DTcfNRIoM jFjy1RkmXUg JPjeOAVkSe4 h7ZUKB_zYQ0 7I6z51iYFg8 3D0gGgMTylk LF0dTioXk3A EzjFE2CnTBQ C05qUz1ukWo vnh7gxa0z4Q eVzxDwu506A rd1w9BCiy1M PBeP9JUk5cM Mvrl3jeiJlg N25MiYpmMVw y41KY83U1VQ 0t7ZsuI05Uw w_iXru-XxwU P_zAPM1cQdM 49BRJlMRZ18 hwI9jLgUnbI j76FbuAQUsc 5AMX5PaikhU GlrYbmdZk24 56_IiZ3k0OY 0OmDcj8U3Xs 15lEWX16LV0 K2bk8aUwIis C5o1JYo-4pU 9AEbJDyNTSo PY8WEjeHGTE XnvMGSn4KHQ 79PCtxPbMlc lGQFgsEBe4M l8L0q_dnoKA jM2drh7uhsw uyMQqUwKVBY mos7tNLWRz0 7YpyRO7N1YI ep-ggf8CcX8 4YW2E3yaMjc gcqk1NcWIGQ xzPgefI2u9k b8Dp_WyoPSU v9VqcsF7s5E ddhfpfnwgRI 3S35Cy1GMMU SkefiJco10U 9qtw3cXqWfw cOy7yCnHMAE PP4-LYtVpRg EfX6L0wDT4Y Al7y7aRrASE ruaqMoxwvjg B4D0g5tfp7A 85cnCW_4LIc MGIjofJUXyo 8Lv0BuXTgoY -Nzbwerwks8 5lgCxWubUnU p70o9g5gcdY jlCEAJXSwJc ElidXD2F2eo 1sz2oWajICY QH2Z3rBA9C4 L9wacy030Kw wYumvThtFrc tdDDMrzq9lE MASZNTnZals 14I9e5jH9bw 0tg_TU8EfCs yZgf5wSULog fzG_88hJcqM PlPRa95iR3k lTm0Gql9HME nRkXwphpaQ0 v5YaaXLJw2A oMpbWgx0Cdk iWHYx50w6ts VuGGlc9x5PE ZhbolQxBK2s wX06J0jh7BU MfM4qCHUPH8 yOrYFxd4En4 lJmafWivAtQ 0gKYY9NCTvY LJK2Ox4UlM0 wQS5Cu_bGs0 w0dNGg0OiAc LGL0Gz_QgDk xg5ZJAo_1v8 GDpzofT_Pdk ekbIXnK0_ek 3EdXrMS1gJc I51Z3trNfZo Gqa-biM6qKM kARcfM_M6VE 7szH-UZx2JU uxj3cKArYDI wLGpzRMJsVE HeRIwSpHZCk ADqmUtPjP0Q z8XPccwMkKE Ng06lmNU4K8 7fOizvx1cUM 6fs-P3Vq9BI zpvTZ0G0UiM HIOSYqainIs 1xccuQBsJfU vuvmITfWFuo tNYSeyXRkiE 1aZDrjQGvIU 9cNdat9JJuE 8TcZDzWEVDM nTAYbwY6oeU RuFd7DELPYc ZKuscOD0LOM Xv9ME0TfQjk jsbjmWo3c38 bu5m4sr6e6I hD7KaqFoSq0 AVzJme0mGY8 Ok3_qMNWAo0 yGrvM8gN0w0 9tDGIpP7Kfc KBmsdzLFpvc gTkzaR0pGgE _mnvg-i4Qks CpA9NJEL2EM t1V-lbe6gII w01pKxgINao QABInjYQVes OBQcsOUZ2u0 Dkd1ak3tQ5s UIkY2KKWmdk GALfESO3afQ ljOOPtZAk2c UwhUd2cPOYE p74VOGdtMTw 7_UHtWGKsuc lLScgb8ZP_8 DTWggpNq1a0 pJFZLCoqB9w 4ak8huhsVKc qhGsK4yvxmg G3qOB7PGBXE EBLS3sCB4rk RuOjVbqLiZU Q3JqdmUTsLI i4NIiCSEiTg uL1Q5YZ0Ejc DIlHR2SWW9E k67i1cISzsI HzvL4MonF-I AcvWJ8bgA8w foQnR1eZO-Y 3tuV7dBxBPU GXZSat3AqwE hDA_Bn7UhlA UPAs32xduAM rhfBzC5A79o GsP6mQAcxj8 g2cIMCa6N64 _ZjTuvkIbcg WcPbZiPqUlE SLC6o6KPuro wQR6vm3kDSI yJ0RpuixpT4 qkHBpSypnHI urr-Zn5nq2w _GjXqTtZjDg qNXYR0fe1Lk 2eltEasOEig 41v_zrra00A nloEs-bbjXM PdYD2Sdt8s4 CYs5HBcQBNc w_ZDbyiJlF8 4bT5OwL1UnY gvTCSxLPy0Q BiVnGF_72u8 cNjcecvssqE aFQabbA_FMs FpFqjfqGyRE a7t6tQVX7T8 pxQ07GfWFjs lKXUBB09y4k Jftv5w9B3So AoHVBb8Bc_4 6IXjYpPtjWk 6ya9GVSPiXs FETaRGJH_JE 6PEQcK6G_4M Oo67jMp9UbI hoWEYBSlctc HZQlFhnFVjg yLm_tJ-ZrNc D01cKQMu5Ew T15XvRqmhqU 8gUP_uUpmSw RKCrqtbqvio 4XHwJQfIyTo AdmsyTzM7YY DU8nLYGOMIc b8bioz2Eb84 -c5QAS76N_A Om-y-goxpYc Y1RH4S7GPLA RyQUewFDEx4 _w2nm32Dbg4 haSWFp-ToRM gwdClG0txYM NpQNeUSJLjI 7mO_TD_Co1U 042B8vTl0ig IGDViR244hs _LNnkttaKXo YQxXtdN7j4U UoDOFJsC608 _i6Du5s9Il0 2uVdxC_gCro wCFnoBDeauY 92eioWPPuOI HcjPZqjGuFA RXkLf3ucqIY 3WIjC39hJF8 5jsb1xN8byg G4DcKX_XRA8 9ccE4YIG76Y hJ9hMyqKcg8 _xUiCNlDeJk UZ7PTLCQZwU _rCRxCR06UY 4xLa-Rn-gdo NRYvrDdntjA vAfD-vF8yss rMH3omIA15k Y3gJGuQQPnw edaHyeIxzcI D0bIbyAa_XE u_G4el-62Ik Jv7PzcVfULc uzhsjyHUBt8 bEpL6Mt_jrk WHcarLLrz9Y vpEAO0gIAxE fIfQbocblZc rOu9FD63Z68 0QLGAhQDgsE IQVt4ZtUzgc Uovtut2ckMg 9eI4mt_lKTw arzwnRoAQP0 ZwQuo7dY_Dw Q2x3eUH0ytI N7itFdNE2Qw W8fjSVywGGk U8fgto8IZLM Z6cDbMLcxQI NTdHPAY7rOE 2ADaXnuG-YM gWGhsJWFOrU h5f5GgqVWes a8mImo0aNDo zOvMmwnFVa0 _4oM1Sa1Pb8 za8FVqsMmZ0 UWS3FOpdFMU bfgJbZHRes8 Ko8vqBmZRfE lS9V0oDrPfs UVDRpF027l0 qSd4Q3GY7dc LABMISLl7Y8 Jf7jVM7NoVE pR8Lt5DyU88 R1zRKVLsmrM l0zmCUVB0Yw XTjTXskLQO0 6I5B0jyLBUg KJtfL83FLj8 NRuVbAAb_FU aOCAfIWw2H0 Bc_4HO3jI1g 25UN_cgKaxc vtdnjV0Q2fE 5RFz0uu2ZuA 3ZL5il1o-AQ Yo8mYWU0oTk C1MsPeGKyMs Pvva0sdUEkc TJa_A5cVd-w zkRkL94VQxY YNZmZ4ARr38 1IaDQdo8x1I hIJ0gMDZT_4 0osA8jKKotc uuNy1Ibdk_Y MaqzxDPwOB4 FcSSNKWcReg u4gz2yNW_Go UpgP8aA8ABE gxuEGIzZrGc -19d_T472co zHwUR2EqUO0 x2S78gnCkRg g1r-B5ZGZWY avdSnNmqs7c uw7rRlJvEl4 BIg5_09Tcf8 7cZ3I9Bn9Rg SW5_v_8r9VA de_Dik7HT6E qN_sGdVG0Yw nS4Zfx9BSX0 uAroGB_YCmw XgGyrrzTBz4 TuBXSOUS-U4 VkD1dhWMYts 8xgUm0plA8w wQj8uFwQP2A mlHF0Vv7yEc qTj4aSPwTBk mjuNE5wyMzY zQf0jUhqJYw ZVlfttyv5js i_zdyGw0tEo 0hNbRd78jOE j9FpQjinKMY mfgrntgrWTw 3Bz0cqx4ZyI e70y31Gbhpg 1rd6owpXoC4 S5CmrYAWxh4 ROf2H0OX39s c_5924m1jNM I8qfzVFTQuo ghUFMbHmw8s OuQTes47k14 UZ2IjJCsxxo 22xJjwTRC10 Gq43zgK0T94 A7mWnsrRu6w PXSMKQqZjaE jFWnVdsSgxs JFAAK6FfOSA wEvSZB_Dhqc mZHlantNtwg sWjVe9dMRHU MriW09XMJeo 6TOx7qsyaxU 0L1sL54G45Q O12Ve5AFu7o 0igqAlu8Oqc IEaqLI9HAmA Vs0CShp6HFA SVTxvLaac6A GaUGoueAS4Y hlWL5Az4pow Y0IXtktHTgk FSXijk37oNs e-NMI6o5ynk jG7W6jwCSd0 h3AqOR2Ru1s bRehxlYZ_CE Hm8hcRPGyME xaIlgOMjspo NipqouLNqAY z7tcVyV7wjw irnju0G-lBg xxl1Hrw2eQM hR4oc1us1aU BM29Ze3d_cs KToHdILd_p0 29Pg9Oo6P2w yISManYcWqU w6ivjvOqBy0 _QKwR14HKf8 WdS4ZMa6tXM YpFmmzisOy0 h41ylpWhV1I wxhUTK7xbz8 -fRY1b6WAx4 IT4vcwIvSCI zyaOnPSzcPE gjmt7I1OJfw jMxYv05A7B0 DLzp0YkZnRc 8v7xHt-CJZg P4aGofKtJsA 39471A71y3w 6dA4C1NKChE TgujxmrRUlw wR_e9lxh7Ds fZB65wj9nz8 FHiB0ZTO8fU 2NA_wZ2MWBc vId4AoKDg2s BPuGsFSTy0Y QDARBy0jCgs vozjOGBUz2I CeX8drgioLs 03uEq5dKcFs eUogxXRPC7E gQgdweybPwk cPVM14Bnf5I iNg7uRYtqLA 5aY5jTL60pA DpA2bMJlDpI 9F3iBMYvQOs j2JFTz9KQhk jQp4IlURoNg p2zDdb_MqmI Omdvu0f-Wuw ouQG7Pcq1S8 UvRaab90nQ0 9mwgsjG2Vtw rmpFmJfEZXs _t4L-ZdoEr8 sOBIrjgDZr4 C9PYzGyIfF8 ZOfisAF09AA vaJ2yQC_ktY A_HjMIjzyMU LzJ1fo-oUpk UgiK8333Np0 FFnyDGETjzA ES20xt2nU10 UFFaqQYlg0E Tm1fX-cqfxk L1AHpY6Gcbs eAx_rXKiO48 cIesHaxakmU 157mo2VaYqc nHcRQhadzhY 5VmWe3LyUDM 81MNbVi5a64 pAwdeWy9yYM gIZ64_sZbCY zXR_4li9ZnA fqKdFZ1jKMY A1GJyyJzpCo sF-j-GhV6xw g2ElfIY2zfQ Pu8AnCsWdiM LAajBhbC5Y8 iGawlpfe6a0 EDywdraYOBA d0hM2Ekkk-8 2iF-cU-qnbc ph7amveyJHY 3iJ8esboOjA 0gouIFYgm2k LOIF-564wKc 1SEsxhvzzT0 57VO_eSiDG4 8QbFslYlKIk yId_D0rOn8Y Pq2Z7Qf45gM G77jx5jd2-c ItkWLEWFjVI 0ov8ekqSAOU wJROB9vIUFk IFETv7hMlqc wnmtGj0vBo0 iH-ioakPz6s pPnfIsbcwfw jxEVFU6EN_k sRR3ukzqiGs QQaLVYSCwrc qULlmr4lxb0 CBUtXwZNA8Y Xa0JBPt2cGU rjnLGy6uWKc Yn8Or4O6_9U E-mnMI7Klyw P7-rs7H1CAE H4YWQ0uEY2U gSepgtf10wk v0xXbyXI6YI 5MINtb6BV6Q 9lOj8ThRAWI y10ao1Tib8A GxDvAEsMvoc LWtB2BdJ3kk sVc3ln7vaig h6klN0zNh64 W112SAzt_FI n3L8UVTe6Ak wsooQlbj934 o_3BdeGhzrs gi9EwdK-6L4 yn2p3AV23-Q AZxn9md_aZI -DqmTaUK-Ow xDkXQ7uBr5M 1GYZPg_aQdw 4A-hmyHNaxM Mcv-560wn_s ZVLaVxPjPcQ clN9kykVhOs N3_pKdxk5OM TWUQypjv2Gw 11MponTu30M QQsg9djZsRE 1UN6pgpke7o RZM3dVWNLG0 C7vyta1sCfU Td1oEs-H3QA R0fmtWlMpHc W2sUalav-ak 0cQThjQfEEc SHwGQTJ73Mg XGsmIO5GUZI 0dmwDGkQJR8 wq-H7qGfF68 Ep30EE2v0mU fvHgXzOY12Y k2s7U_7gHtE ClOGZ8IiO90 OjkIBSE3yfY Na9qhz28ZWQ RWfQwm_BgZY WhUvsKY-l28 Se2zCvUqqWw K93YrK48ZG0 IspZWYlmYZY ngLX1uDh-eg FloKMOp4wN8 l38Qliee6VE DQjDI3NorAY H1IhRMtTUno lfUlATBIer8 H_pmwvIvi9Q RMWfAkUhGCM Nuwu9VTP3Ak f8dkNziRlHg XPsddyf2EcY B_cE7WEW5gM 6AJH6b91rF8 PurV6BzV3fI qvvcVzNqXVg 8rX7fkDLEx0 B2KSjVAskxM 4vJ6xB6ctaA 9dqOdoFtNcM OxEcQFG6U4g ByRUwa_QiaE aEG9dwOsAAg yXDgPREBssw B-S7jkgEC8Y CnrR2upI8Jo 6PAMZYS1Fqk DHzeRLN8UVc rgmKJYrtmkw aOX72bZr_LA auNkHDpPil4 llTSaDl6Pcg CTRZgOL-vA0 js11RqXLkZg F0VmzZy-AF4 txybV-1ao_Y cm1NBLlRxy0 xjAHbBY-UUM VCJrgPb3y80 NQBMjZqgGEI geiub8WP_XE xhj4CAFsPt0 24adocMDT_U KVvqRC018VA Ypa0nma0aSs s7ougTo-pGg fBXXvn4s-74 wgkxKdTVrHo qnFWCagTOtw oyU6En9HN8E ar_o_qS68oA -H6l6-_elF0 Jd3GwwxFDPY -FU65KX7aJs XvnWjkHgWEw 2vi_VeRSHbM gDtB0Sr8sbY hM3nn30NxCE V6xx32EGypQ jW2zOdceqr8 V3aM1IFedho wTzfJT3zGz0 JzmD5wQpm5c o6Jkz5TQv84 r86n2JRUyRc l94geYuwNJg kLjET9nE2dQ CaQWWTLOzhY 4GRGY20zWkU p4ylvDhfiQw HNPRZ2M3h-M sJsHcwZsNnI EL-Zzx9ZrOw 70tY44WxygM fM3FUot8TCY OeknFyEHaMw 574oBJ7SR_8 n0QO2xOuqp0 fpwM2-jDwQU oJITCthevTE 6DxeFNOzuWo 0PPstocAAAo Dhn_1iKEsQE i23d4uqAG80 sbM9An15WNQ O7s-DtIX_8g 3dJLDhRGBpE BmuWHveTicc te4DfoUHm1s pDzvia9Yuk0 ANEr1fSCLFw L9reo1mJVMg nogLQrWY-bM SyKWZOEqhzw bPZwO18R-1Q IQa9PQO3jhE 9jfaSZXLxGQ Cl5eAgx8K8Y GJE9jRmD3RE l753e8ClbPI BL-fRfeQTNc MXa-QNQ1zfE Re6AZiB6JQM fKTTAEY4cuo gBRwHB9FSas dYNP7UULtwM gTKqZp_fABE mNCLMfXv7ek c5JH3hyjFcY noakeL8pCX8 vU1mJ4LF3u0 i71zp2X4XDw E9uah5ldjvo sw52VLDCFhk aKFriCo_HWE XLi1XYfldbg R4JJihSXMRU wwHjdOzIloc YIfrX-BJbgA TNPMRbIE9k8 1zl35F7uPoo QvMf6_foftw 4mYsa1t21Mg dbGs2OWRYqM faUJYzpcDec ovmEekx3IcA plkfDAtzmjE ENEIHMJjims o2gmatNTH1Y 1Igt8Zl7xwM ThBbbiT_cCU viJsUgnT_HY iQxa0TuKY-c GwLec89XpYs RF_7uvTh-dI BN-FwrjSrFA 6AE1I5edCfQ gK6JyAanVNE n3tXVrGw3kY 0aX79Yt3Bno mS1u_E53e10 p4Pq9aZVV9Y 4RrAmzAYCQY os1x0te4Waw x5Gwzy2FY10 1ZVcZnWu57k iG5M3WSF1DY kPiMgLB7S7c yi2YuSALRzs yMyXgCLhAXk iXo8qxLvcSs R_4_btP862g lyM65FpQLlM r76peMNNiyw 9uXRIrNj_z4 wpci2WuWy4E ujFOaYo5QME WGRVxwlEoio 4kmeixKc9yk WmzictYYVj4 QS3UyqLs5KY uabEMv5Sr68 bxEqg39v9Ec t5vDcrQIig0 YqkDor9GqqE 3K0KQCvu2Xo BDvjjQvM498 3IZVz7ukKyU D1YHdHw-doQ Q0gx_D--iDw UepHO767tO8 gH4dw-S1esk TMe71Lvy1lA oH-kAHKtbTE Kfzxu_SIzGo UvDzmAFiUj8 W7_EwytEz4w nLlnq5zJKvo P0yhCqbwnsU 1Oxtu2-DlI4 M8K1rD4PGkI EHOt9vYunt8 UadRg4D-PNI qOeIJ8YVJeg qybKU4uNtV0 HnhM0M5UzX0 l18i2Kxo8o4 AupnEJf5ZNw GRpcj2aG6MI FVgkuDNTOa0 dzGkUGKULRI wmm6PIPCg9c jpeq9SWXrQo p1k68Ri9DKg i7zzhK5XoAI igmlE2TDEyw 3lQ1fd0hBe0 wyQmO-LFF4M MaSm7idHMtI DIkKczv9Eo4 1LoGtPIr2-k UWtFueVeqHc W-rC7PEsItw Da02cZG3NDI 4Tb7SrDUXWo epupZLvDDts sgs4FFD0oH4 R8r9iHY2pCw ZCrTaNYTk_M X55PmVk-KvM 95jCkyuV0VQ FG31-KlqhCI OunFjTXpbMY VBpCoOfLlgU kxGdpZ6GCcs BL_RaZ6VCgo B_JVGEptSOw -cdk5mhKuWc KjbNSIIOEo4 5CO6DsmrIDw ywlNZzvlaKE plu5YA3t2l8 Ec2ek8MmHRA qv_DJYvELTQ GP8HnRCjLGg 6V22uyjiMpw tEs0OuspG4w NMbSKSzRvF8 4XK1zU7zhkI t09QqjBkg0c sjmh7BViBtg 2-1_64NeG_E HXmru6NrSAY Zw7lsVV14Yo GJleW4TCQM0 TzRrEgkfhG8 NieC8KA0EvI psDtqypK3hI 1-WimijgGEU sDEWZnPJGRU cLomnZIvoFs r5zhPLNGAOE aG8bSNpEGoE SRy397r355A QWiJ8VQXJzY -pq4FpNnvcg 7wgLb8Ykb24 VIA2wUCj36Q 7tXcQ8BBqXs vI_kMlvUWDw GuAHdW8FdLs E-Ts3DuFLDg unWr90pLIvc JyTf7wR8vWI iGRj7rfPdQc pXGsio9H1xs lZ_r2Q0FQ1A poTqVcSgFRE PW20LbwAmng LJvCFAHRAFI CB5qzQrDnZE TpNPIxWdZgY DTqY1j7wgD4 c_ByO08UsWg VNI6movTCuQ EOX8-c-_uVY ukXfvR7wi0U GyM8LvY5RW8 t6plGJhbkgM ks7pfp1_V-o gDVYKkvkguQ SEzrTYKabwI QUgviX8jMaY PEg46xyJNPw MDxkA-Msgdk zquC4ky_d6M b4TJqx34ynE Dq7TcTBsAJI vY9yCPmqbc8 oWjtcWh-gyI X0uMMVqQgeY WK0fQueuPoI XUyFzVAKCm4 GSkbcI9F5ec uy4F1IeShVA qYZw_tL0j9U sneQ02FCals cbEbCrrgWiA XnfiKz-Zk7Y CvLrYbRzjAE cglsMVVevx8 TC41JxKq_xQ q5eGg_CgBPk S76Oq-NDyvw JWrDT-JGDug FLPGiFhKS28 DRtbf7iG8Nw Wq8gxNsz9ZQ c9YJ-KJZKyY F7FEV8M0ZZQ zsiYUAF5Xtc Tuceg816_j4 TBLYqmHXPk8 xlTl5F96ZVo fxff52VbAa4 aSQrrou9CbU WeMJebErzLY gs6FcpgTCqE X6zbmAt0YwI FuYjhxmpoOQ E-fSwxZNG-0 IqsvjhHv5wo UHaEsAcQQ6k puyN3edOOUY c-ej3IOxBno XqqckmSFUwo vn-PJRh_nFQ TSnlLU5k9lU WCB6zM_9DQU XlOaSZy_S50 X2YJECANG6A rcIfzdLjjxU NBxg8a4TAng IXl4S2_5sX4 1eP7huR6T3U qDjmN1TyJAU hSBoEivF-hk qrIt5BPvCv8 dJsuwhIpSDQ 1gj7X8C31Tg 6JIY7mRvsRE Sf47YRUStx8 CRu7V9v8Nnk b0p7_jQ8HiE -mexzYsMSro t9XjAhGr8us riSEerXD6nE 2-L4tBlUJos Zauzaj2bpvM JJwp_lEoOuI gnbjy2tWfd4 8xorDb45ajE 2T51K4xsBjg hcWY1CYRCsw r3_IvtMPIi4 mZYTLYXT-CQ 87IqS4kQqgE YfKjUgN_RcY VqZAfqVCEnk M47Aq3yj_NQ 5XQqslDEoeI Te32eYR3jo4 dfoGRpHc4qA Q1CJv_8XbmU PBMH9WdsHDc GpMfzrGJvZY N0V-2VgCwxk Ln55e0EyX6E GfpVMjrhYQg ZCTCHQWhYCA GHKfMt_4V7U Dyo5g-ozH2c ES496lmmGcM AyYlJ6YQp3I 7bFIUJ_voCs RWYM4Npp9rI YG-plVmM7O4 zDQHwzF1n4U JcAdeY9KlpE 85A2rWA5O3o gCE5175IkoY WsgkiKu7AO8 PWz21cujw28 vlK8CMKzWUY Y2ZU8ZjyzoA _X6dHrTceEE 8VZctic_uTI PLOSA5L0dxE Mkkd7taPqEY MOLAFbjjOl0 SbP_EGRp9Kw g511NYTRiOE OVCIGGHelu0 aUSko3Om3sI Q7qNk9dKVpE fr_ciJPUO1k neH8cVDLuac ymoeXOQLtGY vppCnOOwS_4 szqlpf28SRM 2WF0XgWQles cnM9pdjp5o4 7C-aB09i30E vV30irsal-w BT_QpciXdcI GC8KstVPxPM sWqTiz8caoM 0GEynXlmNYA iN0ZnG7yo6o hqslb1FVoQQ yWeMWD-Yagg RYP_NSi9g3Y -dWENMR2aag WPggG_9I20E M4fuweiQQCA 801rBxBY-5w 8kzZwPsHkfo rFbe4I4SXGg y6uK9wxhl_w sT7Xef0oYLU SiY9kPYOZuM IXep9SfBhrg cslI2draO_E -ZRSgs6PHaY HNV5ksTBzLk gWHvF157sFI rglfoXHFty8 ULu38sbUDdA qwblOHgiG5E _-9wCERdcog JIMykDzqRbY 7F1OGZeeva4 NiQGOyewakw Hh823sEeCL8 T6GiDpoGg0k M1J7yqXNItw V-uaIme1eqw W2UAnJuDL0A Vk2MgC2loOo TF2BDWsAg2U 9xp2WW4VPnI jL_AtO4yMio Co6hnyHm9FU jatrkHMHR5s zg0bUxwdano VBOg6u6zNUI tCDK-8hzqYI mxIe3BjQYq4 ByIEbq6tv6g Nggy-DIaf-0 YLhHH7GXdkw YRDc9SZWuE4 rCRl3aaJEdI Zc61Xb1A3R8 cqJitdI6d24 cH8ebYzr5f4 6_BnBOUwAPo x_3EEWK-YQc bDW3OVitFE8 5gOfKFlEJvo -JhNO_E3aEE -FQOaUEE69I xqeAW5qAHNQ ZD9DyYVR3BI Q9Vl1VGj0LE L3gtPb6y2xg a-CS6CjnEw8 kgwjR-pQ29o xc_90HgCenY RS01myY24NA YUF1PIe1RVY nsDjpgWu8F0 s37owQJdelU wuRzu_xHPa4 F2GgBAXj69U PFG8nJ4gwvo GdMQOwEnATM GgASWe5c8kE QB9AY9Em4To 1J3WNRR4O60 a_DkEkfAO4s 0WRtWiz_Xvg Ihkrc6Srv0Y ze8D_5hdmTE q928Wa_h_gg iv_Q51lofKM 8D7EY0zKevM wVFNjHAnpcI QjZUS2455z8 ow3Pf0LSXwc uckdiNJ10LE ATid397QdsY g_fIDwoORl4 sOHoeZYeAeM Yr1quUpD0Y0 k8Vn9zLollY 6QfunXjWCpc CMfYaFpa3nY MBgPSe_p1fk C_fhEQGp9Hw 1TX6svl0Qjc cGDwEP-RWHo QxrBZStJOGk K6Kkwi0nfHg OiJ8mt6Nn5s LJgqSSZpdns yV5w71aImSo 4ZCtygwf67Y Sj3sHAe1bAY iTH2RpdXTBA 1a3iljVEif4 b_kHujzG_w0 KMcBrs0aWbo MEYupVDPDRE qrd5QtOa6O4 8zdNf9EtW-A JYymQ87_t8o 5LdmmsMZU-I g1bhGNv0Ei4 4OyCzhF1A8s 7d4Sd1W25xs -jYZCqfUfVU MVxXoBHtBfs yRpnEq9A3vo cSjzA3Wl6hY TllGibabkYg NTne-1oUAZU Lv41GcKWfJg bTJAIONGv0Y sdkgpg4Plxo h5OjSHDUn8c r3BS4jKjRkc cE2bc0vU9pg ZCdhsYpdRck E1u3lo2EsMg 7AnDGdVit4w 0qkVyahL10U x24Olya2NLk 5Fa3enGmEfA 44MohOiWwnA 0y5KiKKCD7A nF74obZFKp8 00QMS3Ldb20 8Q0KYSXhKMU ob2QomOgStQ Zeg6dl4L60M vEWPq-4sa3w xAlCbE-yCTw 1RwwTgTVnJs 1Rhs3PVAP4o Mfu_iFS-UY8 OpCXQJyiXQ8 tjRgzcM2HoU WgxNguNEMpE 0X0-NpZpx6U Pxr_FzpPM2Q HudtZNmmVwo 0quxzV2i_gQ aG3Oc5TNd-Y KtwPWWCJHAE 836TMubeCfo DL-fT3OymQI 4HgHU5fVqbI 3Avu3KdHGdo tF3eceBqcik mpDGnFwbw0U koZie6TLz3s R_moIp38Fk8 pVB70-zPv5E -ON8ZTCiuYo GOwehDo9xYQ jo-aQkgNMKQ myZDn8fFRLY qLCy66eZrQs -1eKufUP5XQ FPYjy-ZWB-c C5lMZZxrewE rNxqb6KMtkg KLDQLqzbrPE GlP6emuR3z8 NgAjrtEmWxI de1vEYiEMro 7AajEaNH7g4 MUeKujlb6gc PI8G4wCa8m4 gs0WQmW1icQ __bdFiweOJY C3TAMx8Gqro zGXxYW_Zisk B5uw3qZ04NY VDCoR_PxceY NInjsGq2yCA f6Dan7z0p4c Yvoy77W0Ofg PyK__VjhdEE 0g32SegeaTw 6WKFs4PhRkA oH5Dww7Umog ysRnmU7UZLA ki5XFDm1ufM cvaUo282fEg 2qqJr7uFeTA eXHKngWBha0 da1prguylik eAVgMr_VCH4 oSIR6UvH1G8 xcYhjlyrjfc FtoH7NJV5Go vwrqj6aqJAw QbthrROkWXM 9FA_bAXW-Y8 kSQaXjYkZpc 9We9JImjg-c SKTvxXjJ_MU mpG7K909Gi4 MzzWzX-HGbA R7P5OWV436c AhZw2QXKT1A UgSVWM44JBE Gr-s1mxnwM0 lnPDc4XE77w rhnCmErsnYA tekVuL2mT7A 30VlDItRAVk m7HLqZP-l7E w86nTX6Iixo DVQQY4-us8k gRP3sdjszlQ YeDjVvr-6Zc sCsMjWjftZs FGwgHAqBLDY M93XQJPV51c gQMtp2WxEA4 Mi6CrAUhnzE XWgSKXw8ZwI 2jzlSeFLr7A sJsCKwZLztk 65pGOp7qa_s Vro5qtVA4PE HFAGAjkDaOU kXvNxXDDHSY yqVb0Ten3G4 tsCGLuufHvk e2FPI_ylwJg 71ZR5BcX-Pc e5gfRaN5gaE T5k1Olhmz_E __zoXOgNRvk e80EOZnHpLQ qwgO1dNfBl0 dvlZ2PtH_zc wMclAYZ_6kU sG8uXeC_jNg i3ywt-oTQv4 _65de63xao0 bCtvFlr2hHI LB08HHk7Ssk VLx6HcJ7sas gOeKwFPUA50 3_SZ0F3VTVU 8C3n6k49Dmg 9zZLmOA4OsA xVANxG9gI6g PoAxZJMYRWE R2lhQCxKx_Y 8tLhtdDVqzg c7cm-r7oJ2E oflbCHWZCBU a_iEYXLXbjY SDIk9DOro4A ikcKKvKkf4Y jY4nU1rwWv8 hTpVCu5DzpA WsHqQAfZvc4 h5UGcMYOaaU 22Xiae6LXdU 4SDOcUPE1GI ePtwxRF1WZA QXeYlaZJ64k Ln91UqmKxwI nXait2wHOQc 8tFrGaU6p5U AxxKJ2QgPtY dmy8Lcf_TiE X3XwuyPljm4 ruCFlIoCpJ8 o6synmrDXqU yV5UTHVjMME HQrM6Rk7WWE 1Aoukxd0GvI lIbBAWzE6H8 aB6Tdk6f2Lw nsp9ex69rQQ 4RBnTZELQX8 e_fI5no9SKk KXoFUS5Dzto tnZ55SLhan4 89HcLOHubgo eiqBbLVXbQg ymmlNaUhZE8 JCT1VtaBpqg 2HuQzKat6hU XA0J-wn1Esg mpgaMjGOeJg bwKwR3hV0zA aWjBDI02kSE n8yUoQP6Rwo npaLKZ0Egus qp-uFNB9jYo 5noS6qGxcbM ANigqhwwafs 13h4zTXEjvw 8wduU3eU6XQ 4IHDSpacpbc LahMUQTEbcY MDG6JsXqaRA cfnBcA2ckeQ 0uyVs4iKp_E f96ppJ3DSGE QFDZTfWnWGg U7jlC1QNaUM vNk30YAdCEo POpYt4cHlFs zpmd0YiERdQ Er_oU3Sl1GI tKeJ34qjORQ zhaVycw4FXI nKkgc9WTY38 dcR7fdkLhJ4 zuSBq10_5go UCGdsPwcKKg Wl6COOA3V6Y 3kEL1doAC4M xL3ZOCRgJZM dOZndhz24OA 09zP4iK6QuI vi9m0JRo71I rsnLwzzkF_Q 8zYGzyIpue8 -BgZFaMJRxM rmE6nTzmDqI hN5We42pLhs bxs77K1DkD0 5D20G8qe4Qc 7HEi1kmCzEY m43-bLl6ZwI nNGz1GspkbM GuqaloLJNJk 1M00J5Q1Vv8 XMKKYshEbzM 5h2uLkqpVV8 5XnGKA75dtI qCjSApp2o1E zWW_SH8IFnI 3v9Pfg4Ocbg kDTjN5dVCzg qcaVM8TcZbA 6bO4ZsAMowI GuqCibVW5wo gC6gD7Qzry8 jGXpyMDIZ_U m-3Ohq-bVFA qjJnk3MgNgc jkmyjHYMH0Q po0Gj897Tmk SN8buDY-7LM c2ecZiVEs70 YeqQ-Iae_VI IKnygn5ysHU 1iEOBKuW9TQ ysudBGghmnA IfO6AIsvlKw iswgTDjihrU q7V1sM0VNaw KNQpMgWWB5Y IoQ4G5p-Z-g W18J6bcq9YI t3gqjXINvac 5UjmbtIRvLY R1eDE5bXCds m7xTE3rvkDk cMwOJoesx8M Xq4HZGi38qo fo0KBFhChFU ob_6XAhj_1U 0zuW4KMG7XQ N7vSJzq1zAY Q37sWrXU39s vbJsLuL2YzQ t5nBikdQ1kE iJrgXYnUVe8 pHBKmT6eNGw qOeZ9TL0wHs 1ovQhqQy7bE y8i5Nwg_TqU ZCZyxZYgKIg ccr0gfJ5q0I vWkJPL2Dt9A zvy5tDkETfQ 2Ht6646WCMU isQIyXfV6Cw KUdG72N_mek yGWUHeP16Zk eb1AjU67W2s ij-qB9jrMnY 6SLhTIdGfhU TVSr02WLC4o oGFkOiYpEeE USjNhsetZWc TrvXqosqkls -2QFIXEHnOY 2Y_CzHI89mQ JgTgQvvqRqE atBUgwJAD0U oUKw4qcGHZs MevYeKlyQM8 FubpK1Tho6M rzuN9uvnsZI r3L0e0izKG4 d7-pWfZgFKU q_tMagfE-nM 2lh1uIhuujc wAJQ-yWgSJs xI9CLKI1h-g ytEsz9ZEh_g PomVYrPHoAg tVxYCeRXzGo Vh7XH68xWKw 2hs-yt-Pmk0 aoBeDwBxv04 KU5yx6v_Jr8 qgm_ou3TsIs ljMuEDlInLo 3hUkHF18IrI 12iewuXNhbE S0LBIxKRCHw h5dCFGJp__0 RwMgEM9FNhE Bfj5GHwgXno s6JmX_n5oeo ScJijQn6RyI gwGqg69sqi0 uwta-bET3aQ Av0pWtQ36tU SMd0299YDac 4kaYp9uUNgw LTESHXdMyQg T_Kn_D-zfeg fKyoILW1Npw ElkY5U7WSiA 9uGuf4e252w pmAZlEkONa0 -dlOM4ocKUM Fz43jl18aiY 2UOL-ZHUOC4 _ZA8FE-nu3E p9W9PhaNGOY buIXWAgTUIU w4TCxFKaqIw OlLMqN-vjKk K3jk2RjLJ3c GczlfeOFPDE PbCNDD4y-Zs 2nCjaCV1v0U w_ZzqN2TWTI dSOFfyFdHXA xoTuKbJE9aw KxOI0mEOHsY des_yFi9fiM BiXpNk-huqQ 9sVpipEqpD8 4psRZr3sxHs MjrbUV78y5A L9EPJ7ZYjHk PDWuHeevSAk sxKLANwXzzg HMyfwfUs64I DbcOnkSMGK0 dTIoEMxqckg PKKSqcq9iGU tc7rC53gLUU uZ_X4w_9lgk irxaBbMXsUk SDNStLatNk8 VUljC2ih5YY XFu7Fz4g1VM M32XWG0NQPQ SUruJPHdHUQ 31G0GtKW8iM nxKAr1Gebjk pt94aydCMXg LaajQCWsyzE Ooiw8ZYnzdU _ZzKJflnVHU cIEPiYHzTto BpAvVBwO8J0 HJKL8Ta-kt8 15MbDpZad74 _oOULG_nhEc Tirgk-Is0QY bHnpX4LBdGw 5rQD746bDOc VlqxnvmTcAk H6pjCQosMxk Cwqmd8pSkEo qFnqH95k_rU Yk2ZbS2FKe4 4LCN8__54AQ 7Ev8Q9RDC8k LiogBSpbSE8 WDAIccQnnV8 BzKbRv8tcBc dtIqkgW18-0 1EkjxpUe5TY y5ysUSgyVqs 7PI0v2ZWDl0 sqLiTaVHPdo OwG27DvQf68 npSYPN8LXas 2UBYT9teTIs honAzu3xOP0 8Ds9R9puftI 6rHHZ3hiwcQ bgZWbi1o8bY 4c_4MGTCgHY KoY720x5fuw nvAZrrDwecI PTOkGaI3ZAE H6XWqMB-Ow8 jME-000LFNY XIJ-TpmNlI0 qpxUYzNSGn0 5IzNXdsZUHk 7iajsLA5MKM cZy7qSG8RHQ CXdc2L3QH9U QXruKKf3my4 4VDry9fy8UE CHOpoOnkRJE lKBbFHMEvDc aP7GTu8tbvQ uSLscJ2cY04 k9DO26O6dIg -8ajIeIeJpY umKFAbLoUxQ 4kAViGVuLmM 0T3hXtyuX0g zqv3YesdtRU nB9rg6sxHhU bCZRAcsuRgY KOuClUYl0_U LrQqG7HxUao Zo0d4xk3BXw 3lR-s-Q5XsQ YSN08rz66zE jq_tO6NAlPI pHXL7yantDY ISKL5Sy_Mt8 Mkn0Iji6g9w HpGmAvMtScw w5oWgKtku3Q s43ARFFNrz0 Y6CLpg06kFE ntKYG1LdbV8 QaUjGv3GLeg E0og5D_sPpM Pl1dl--4OBE 71pIZ76YvR4 A_R76lKU0DI HHRCWQEM7UQ C2KN6BHuPWA -7-2-088LnM KaVglFjQynk MVRR0XlqA4g 9BdW5LHQvjM E_TbL7vdWGo zbHFgQ419Qs deUroRuOCwM JuxyMqr7FNA 0aKB_Qm-z6g tDD6wnNN-IQ lb6nAmbkk9Y CjXwJJQ-8XM kZRq9scxIWM 7ZzaLI6n1pU PUFwiKDWxUo kCrtP_gPMwk 9qdMVMCGr48 UsNnkax2wNA RFBlDixa33k 6DlOr1PP0Fc YKvG96jMVWE ybF7eOf_n4s ROqfvY68ijM fEsN1FMfBvI oZ1Mz78d3wI U7HxeKhKgwM Ueq8bUwdm80 bHW5h5O-e5I sGPeVmnAFAI 31LlQhZmSYs TcJjhnPrM9o MM1no56lIjw uydWF18xoCQ MtyfXKbZUus O2yNsybczj4 Vln90evTYog NfQcD7ZLWL0 p9Bo67_slJY g2tNQ_6-kpg s039YJGaP-Y Fz7dtq-saJo IRycPfFjVBI kVujmsfAIUk 1R4FATHHlTU iGk7QYThMTk t_JOKNfSn1w 5H_MyLSpRSs _iUWKODwAN8 AsfxK5fWMu8 _5IVdeFrhv4 zzabhummvzk bQObeZ5R0mc e9_4oS3hTPk Hsh6n5RfCoc 7uOhTRONUbY 1d-Q6pT4pxo a2xcMwtUQFY Wafr97M23uU oQnm8w8f-lM bH3ulIPKNrc VbAh3UbaGHQ lryUDOG6bS4 VHkoII8ewWk 6SDs2BTqYpw ISXVGrqvV1A G1Q68kAK4qc FJnJJOAN_PU YU_Sm_2vH5w LiA9AsjqVWU MuW72eVCQno KuStVllxFuI bEBQWhgGM1g 4-3B-Y9bM0M 0p2Oyd040pg Je3Vjos0TlQ 7qhNVDPZ-0I Iy2kMtJa2q8 k0LLcRLSSlE j7m47I9BuuY JV05-E5FF2g NdbZtOpgsUY kEL5reRoNk8 WQP_cY7FAyQ P9jJ6Bejayg AVHPmsWZnb4 7oDSPSwMw5k _qxAcodjpCo lCL7DI3ah40 UX1-VvE01iw evM3k7ep4wo mpfBH5WLlOA zn9D_4bE0hM jYbI8iVYCpc tw84SFLxC_o M-HysTegELs MZaX-RbQ7ic nD8KtgWozeM NqJ6llRZg-M LWoKa0wYTJk NPmAEqlzKqE kzxz5xezOAI U_MNiopwFxs j0z0V2JJ5II AxrQtWFF91k kSaOMRXiLVA vmWm02fUJ-o IqJWWBRnrH4 njz1p35e_EU AaMkmiZ9bMM aZbGlkGWiZc 5K6sh7HZri4 iKp5ARBBpyc XOfjQQT9O08 Z9vRmexWHUo hIUrt0AsTjw JnjO0v-AYFo O0fQ_rrQedE esg4w4b2xvc 0OppC7vTtY0 swn9_FjwmJo YNBtb-8zpko UBNLrL7RvJM IHDzQ29EgsY aH6N58NST30 G_ee7q8w-PU nNtl5Hv0bv0 IBwJ7rFHpE8 U59aJCoJLRU Y6hHVWwwfPA KVV02IJlGCQ 2GvyC7s3RpU d6263F3UkWo V-hOCaVISok y_Zo1Wg4RAM FXeNdV-FTjI s_SM1Hly-uw Z1DO7_hHqbw kcrHhDoUS1k wnvRIdndQdk LVbkD8ZogwA l1X4RDCFmsE 4d9fx7umXgg qC_pkxnYQfk SroZoan9faw FZOF6ePjVcM ffmSFNEG6pM LoBAmFanDhY T4WNCHc_MmQ EEaUjfxQQFI VmT0mZH5ivo 74DUcGnFH8g S6rgOlhmAHo r1md9sIev2M I21bX4cEhRM GfLc8Z4_lFw 1zQvfrTK6Y8 5dCI82ffuIc xW4xczuVMq4 AbV04B_yV34 xsM9jr1e4F4 BkNCfTfR6fQ pM87ObBNOk4 emW6qKMxIUU xsK7WF3jWI4 N26K5UeOTPE FaX0hq8BZc8 Jj6H6tJvRjU jlcZPO2FhGE RM0NW8MF9wY f-DiniX_1mI 96dlvQbYEds BshBOgRLN28 9tx1z5_iVeo 27ARVhE-a58 G6PcFmNCQpA HxfzrUYFsLk opXI29YEI5s 9YJRtvamIjU C2IvmQI_efs 2kt3CmzYGu4 sg39yDRzklg G6uZp-33qcY fOFGL7-qmqs Rd_gE_G9R1k i6AtG8BdONE dQlExOgF5eU mBdWBpsA5eQ _EjWpjky5lU vrEjev5DoXc fgDgZGePcwk VILmrL5jP7s W-7hoLpXFXE iSio5xjSYqs p-tvo3Hz3nw rUbY9uikvWc edhJGqAjG7s DC_6r5VR5_U S_QFbRtEF7I 86xtQC4rp98 Gfje9_QRQbk XDO8OYnmkNY Wy4EfdnMZ5g _XuDmoP5scY avjdKTqiVvQ HH37JTBpi2A 96IU0EisCes BkZ6lFCzAwM M4LidfkbW68 NBfCeTdLDbQ yR3zsO8pCMw QC5re6k5nLk Cq2Wzdd_PYs WhT70B0c7TE uDAIoSeEoZA BuPdA_CDITw hfzsR-3PLcg S4WqfcnVT2g R3KOKpvoLIo 93U_80mhzVk UsM7OBEMqnk kXXnZuu72DA oAjKMLcDlfc SHaByZZvfFE gQ48-nl8wwc xUHjhz5U1bA O7S9X8e2uhA 02AyhONR_DQ RRDbQPvtAxY H92n6qsNHbY RxyMbaDX22g gs3GHB24IaM 32OSGQmjP1Y ctjucF9fiFw 5TG1Wh04D1g W3x0ZxDSF38 3FKMUa7vCZU tPJJlCdrJ0M woSj0M9Decw YmC-BayMaDg iNQYIdE6DOg 4QR_9BehbWc W1w1qcvdTi8 xNNd9Uc9J_8 D_N9S0bAiWI uioT_3dqzXc N27ZYQKRYnQ Ig6hIs0jsjg jBMb3PU-2-w R07vQvbALWk FJ_NU1sSk5A 3XX9d9BO5qs FqtEB6j5jEQ jhMCxDi0Xs4 1rVMJNSZHZg RruqW_fwhEg oKdCaLj8b5o IRdxr5ilGfw fn9gU50qXvU cqUpOLpJ1iU q_Gp2jL-V6I o2GcoDvPVuA y8cL18qVz6E qTwgG6t94Ko ITaBaJEJLaA UpYME9Wz8Xc l12dwyHThc8 E9smjLi8m28 Cm5NLiqmVtk KMOr9s3kfM0 CYGCwkmaa1s Nqt6-rPGGEo Px2L96GVrKs kU74wgKk8lo bvnOqxRHjuc vejLIHky2HE Gif5ZnaOOQ8 HR2kbOK8i6I J-fa9awvFBY 3mNDakZu1JA 2C8fB8p6crY bKbZTFrWing 61nCIyBCmjg Af-N8CLLoqU 7ZEqMqBLOOI H2hbov4Rb6g XAIeh0YarFs 4gO9OFumO8U 7dgOcvrxxac cv8yjJQg4Nc 31vkz05skoc p6IvB-2jYtY Xurw2Ar9NNk 9dN7jGSbsVE 2GFzqqC8iUg U0HHhK_MrWg wsFQrTAEs7A yJ_3DswWIeI sZ6t_-wKImw 9nwSOUvKyys 585p7sJhiFk mqkYeGeQ1f4 0pUMzDEV-DE egwR6gS9UMM HsMVFxZ43iU WLKpgzXHKLA Veh9KV9fm6s 14zxmnIDoLs kvzzBebEAHQ Qwx9wZgxUoQ wn_8YBvVugo WC7TpzxGktk 8n6mcd5Odj8 GQYCNF_zoDM 8NZ9CLszc_g tuusFUTcCO8 relfjwjhscE nEGbOGGiENU fKaiHVTL5nQ 0zsUFpPjt8g uqfD6UPvkR8 9cw9NI4BKnQ fD3pjFbgcyc bK_2x293Urw tRuqSw7mX5A pHH7NwBwxM0 _NEfPBtUqS4 0ZkuRt2ZKRE h08whCp_tL4 5zzYjkS_iMA y64QBxHJiqI R81ZAKQzJ5Q pLqoZtmyxxk _ZwkQIBp4TA EGbVLHy9Lvw 06L5y4Z9KcE S-WVZ-d28yg vLt5ei598CY tktoOXBmflI OAtwRoFSlOE OroiRWIR2gQ ZreZzV7y18Y p2QiCFAQ-qQ X5dtBoyZ33o kevJJDQloNE v0gGWiRkjYM ec9h1IjltJg 9nc12yOA4jM IOV2-bbOHts Gpc4_pqXMVo fin0EY5-n_s wCmL4G9TYMk 59-Yznur6tg mr0RZ7hUrpU Zb10goz7guA nX4t6GMjNqg BSmKQGvL9ho 2JweD72Ains TmALN8vdU0s QsSD6_V2IYk E3yX8lT2UAI ZjPPfwVPTDE eRNCIg86DKs xYfxboRtKJE 0oFdsgLP8n8 TIu_CYwemFo sSRmhI94MUs N9d-c9ooO7s ebkY0u1-NKk DdpMl3_vPmQ dX0dcSJE7ek WT6DQ_NO5zw CARc1uUq1lA nAuz36A1zG0 0z-FtAMg6Vw shE7b_6NNpU BEKzJzaZ0Fk q8HcMk_IimM haX0ACElUQc XRtuUFYTctA oc8bWybEFFI UmynxNlSRaE Im39PGAb82I QbOo_FctFu4 18ARBQLResg YPIfHEdHjHI 7vWLiI04VCw gPJFxEvmHpQ T69FlogsAGI 3reg2k9xS9k 2gzVWIUhUOg CsOM7mptOLM 5W_sktmZuzI yNmBX5mZvRw h36wtoBcAS8 nPJFSx8RTzo j_txRPwTvpk 0z9b9_n8-Ek 6KYxDFGC2hE 1lxY4Sc9eNg QBUTO2RVjXU WcmMx1_lQmA 7RSJehegfZw 5RKld6BGJA4 En7TapBA84M wwnqJH8OF-I 9hPgjW2ou9E wWRnv1V8iUY 3Y-pMJ4IcTY DNHmujbuC74 9nOc2GqCQ2Y gtHhlD6p8BY 7aYOGUPabd8 4UC_5gXVXUk _f7p28YFgvc rpPm4pAJQbc 0N7ilB9wX3o nc0LwkqYGpM gq6JKq3Q_uw xYHBAXUJ-Zs DKtupzAQYv4 G8FhdcsVB_o kdbRwpxZHJY 0yngsYrBCLg WcsyV7eMrGI SuSUwDgtq1g xsHxWhCydMI xwfJyzB6dow rS-P78D5US4 1maNhuFVhmk msSsPzKVzW0 rYS9mUCFOAk Afwy5S9__0E 8fizKw4z9fI J03m0CzUvJU xI-ehlRwN8o aTxu-zthTgs 5Tqsh3b_lb4 BgCgiRitEmM -nk6Gs6Z_Bo f9wFKCfic8Q Jmf4o8UalVM zZLAinjBShg E7fMOxGw-dw egTtyS-PlRM DECG3af2qh8 YsCeolAfbLw LJym4mTtLRY HOjApJYsWC0 4vekUOykIvw qMaZAi73HDo b_aJy2SE60E YprQvoOj6wM JHAtw0HRhho 6kN5IkXFwcQ GqGPu-X3cv8 ag2wbvh5VDs IgeW0MPX60Q --hendERqm0 pkogDQ3CK9E 0D35LZ4UBX8 BUB6TUH7N0A 5uEViMQGON4 N6SPrarFcBA hYIWCm-Lpj0 kvtsZ1Edkk4 HrFlTjySp8E HC1LN5AgjRU n6zlrCAvNRg 7sQRpVCnRto Vez07Q0O7c0 v5oVPhcW9nk ClUoUHjr-zE ZCU-wmL_XNw up86hjG02yU pDdLHI3b7lI oUrT0qTcHBE R-ciRNPLhWE YJjM9EMhQ1E lMZzHaUh_Bc Nc6K_D4rtGU XNwDyM81lSE tY5el7dZ9H0 -5twCD8tAMc LVvJj9sDilQ WLE2QEOBde4 yQ62WM_w2iM q3Vvto0REuc yWP5eC822Ac i3yO0OagpNY M669rZIUGIs 7DnCFrbE88A MO7Sa_dI0SM VD704T-c64c UpWvuwMabSA UxVY9CTaNNQ oX3yOgEmFOI UNLFpS_xEZI W7BLikBY5Ak dwK_rODYMrY rXxBQRh89AA VAmXYYSt6TM xYIhxXt58uE FovnKIV3VD0 oiQPOmrEAxo p3zb4fwFd3E IxRCDx-YV4I LZ6HA66dXVw ujA70PK6E7U sVfmACBWnIY QxReNyiIprw SWlYiOtP5mI USWXF1XW2zo uEW0FlmiNec 4cl5cWYmvgc wLuRwDl3MrE pQv0ZtpRdNk gMdTl2R354A HPcr2gT_cnA K6O_Ep9bY0U DqSBqfDgOsQ 14pZQ6VASRI PmxzK5IzcaM BSXK08_Ivac 3ReLHqluiXY V9LA86HF3i8 Ud8doeLuJWk vxEvNuW12dk FvN03fXmnQU bqUmYcmLCMI jP6-fvz9W04 MsIWigAwas8 HCNwZZ3Baus 3zgwoTgXXuc daJzFEzxXos pTxj-Dks1Mg O75p8X8YBtw sUQ9cisQpaY fRNR8-FqzM4 5RUWalajNYE t-B2zR5O5Ys BCcw2q6KbbI 9FAeJgWLKRo cnwddNSgakk Nwru3-Uif_Q jpEfgrff8z0 7h-q7bXYD1c O4brzUAaTS0 -nswXtzrfQU 3WmyeqVxCV0 74ZjOVz3gs4 oNWAiWBup2Q vubylfvbMhk IFBAXbrw31g L46syxgju18 BGOL5YmTrAY -Qq6ZZy0yGg phGwatUEyzc 6VvluTE_w14 ueMuCbXkDhw Td3qZIf5Swg 4Fa5YPKxwRU eG2Yo0l78tM p0CQcDumPh8 hudgzkYfSvU GZauEya_plU aPFbf954LJ0 qL5_xmtFVDo mT3_2sDEBJQ VTTj-7UumYk jH07BdMRP0g NQcQ3bA_NXw Uvm8N3wQDTo _5kQ0ekY5l8 Lbxeyn5IS8Q 3Sot46WTjcY wVCf-70SKKg WuvoHScKCR0 sZdVc2KAfWQ 9sSxcSntcyE IIJZj1M4tN8 Gklme1-eQGE sCSTQpBwqqs miJ26dYcbBw oT_RsXOPjTs YzIWoPLLktE HYWSAtLFgXg TiQaVmutQwg daVOnsL2wkU N7i4yZhm6V0 R5wXxo6yIU4 oefn8TJ3_H8 pUPliO3qy04 UAoJ_mv0Pqo ioUedV29CQE Uo1FfULMJ5E M06KzvYxlsc 3PoW8y_3rzU KMkdp0Uy8t0 aKE0S2gCOfc RtRffVRFz6M e_S58iPZYu8 S7A0JYPGklw VFWn3fpVdEk 6nrumyJrmZ8 75EThT2il7k JzJ0EVqZAzU ================================================ FILE: data/metadata/youtube-dl-dump/2020.csv ================================================ Ok63vpXNhNc OfLhd_wJux8 TGghm3K1NXQ u0RqfETo2ok oaKjYmfK_Pw oqGij9ylbAk QT2Anb4MY38 jbvQvJV_97M UAYL8R2ZPuI g8pt9OoaPlY AONuDilRd5k _nSQhWq7etg -W8pOz1fsD0 ChIQpmBLPAo GC6ksHacdXI lsa5PDPgJmI MGBHNeYbsbg -mXoZz1dqMQ Jgye_cEhfGQ -jpEsYBH3g4 ljAdSzBv0ug RFR3AJ-jE88 RLbry-3z8yQ sM1I11qUM44 RxwUv1BcPwg sSc4Y4Z9lsk 9wCiCJ7KDs8 ttiEgVcV-Xo b2MEP246DxY S3moqQqx3Nk bgS0GPQhzHg TIEtN-jVDbg 2W3KDB0yHYM K9j6xEBFek4 c5mAaBl_qqk WygmbuU_78c X5_GpmLuea4 7ycVIGqnLO8 ================================================ FILE: data_loader/MovieClips_dataset.py ================================================ """ MoviePlots dataset module. This code is loosely based from the collaborative-experts dataloaders: https://github.com/albanie/collaborative-experts/tree/master/data_loader """ import os from os.path import join as osj import ast import ipdb import itertools import pandas as pd import numpy as np import torch import nltk import pdb from torch.utils.data import Dataset from utils.util import memcache, memory_summary class MovieClips(Dataset): def __init__(self, data_dir, metadata_dir, label, experts_used, experts, max_tokens, split='train'): self.data_dir = data_dir self.metadata_dir = metadata_dir self.experts_used = [expert for expert in experts_used if experts_used[expert]] self.label = label if self.label not in experts_used: raise ValueError('Label expert must be used.') self.experts = experts self.expert_dims = self._expert_dims() self.max_tokens = max_tokens self.split = split self._load_metadata() self._load_data() def _load_metadata(self): data = { 'movies': pd.read_csv(osj(self.metadata_dir, 'movies.csv')).set_index('imdbid'), 'casts': pd.read_csv(osj(self.metadata_dir, 'casts.csv')).set_index('imdbid'), 'clips': pd.read_csv(osj(self.metadata_dir, 'clips.csv')).set_index('videoid'), 'descs': pd.read_csv(osj(self.metadata_dir, 'descriptions.csv')).set_index('videoid'), } # filter by split {'train', 'val', 'test'} split_data = pd.read_csv(osj(self.metadata_dir, 'split.csv')).set_index('imdbid') if self.split == 'train_val': ids = split_data[split_data['split'].isin(['train', 'val'])].index else: ids = split_data[split_data['split'] == self.split].index for key in data: if 'imdbid' in data[key]: filter = data[key]['imdbid'].isin(ids) else: filter = data[key].index.isin(ids) data[key] = data[key][filter] # Remove inappropriate data #empty_clips = pd.read_csv(osj(self.metadata_dir, 'empty_vids.csv')).set_index('videoid') #data['clips'] = data['clips'][~data['clips'].index.isin(empty_clips.index)] # duplicated descriptions are probably errors by the channel data['descs'].dropna(subset=['description'], inplace=True) data['descs'].drop_duplicates(subset=['description'], keep=False, inplace=True) # remove clips without descriptions (since this is supervised)... if self.label == 'description': data['clips'] = data['clips'][data['clips'].index.isin(data['descs'].index)] elif self.label == 'plot': data['clips'] = data['clips'][data['clips']['imdbid'].isin(data['plots'].index)] else: raise NotImplementedError('Change data removal technique to remove clips without...') self.data = data def _load_data(self): self.expert_data = {} for expert in self.experts_used: if expert != 'context': data_pth = osj(self.data_dir, 'features', self.experts[expert]) self.expert_data[expert] = memcache(data_pth) memory_summary() clips_with_data = [] for expert in self.expert_data: if expert != 'description' and expert != 'label': clips_with_data += self.expert_data[expert].keys() # debugging (input random tensors) random = False if random: for expert in self.expert_data: for videoid in self.expert_data[expert]: self.expert_data[expert][videoid] = np.random.randn(*self.expert_data[expert][videoid].shape) # debugging (input zero tensors) zeros = False if zeros: for expert in self.expert_data: for videoid in self.expert_data[expert]: self.expert_data[expert][videoid] = np.zeros(self.expert_data[expert][videoid].shape) clips_with_data = set(clips_with_data) #sanity check #pdb.set_trace() #if not self.data['clips'].index.isin(clips_with_data).all(): # print(self.data['clips'][~self.data['clips'].index.isin(clips_with_data)].index) # raise NotImplementedError self.data['clips'] = self.data['clips'][self.data['clips'].index.isin(clips_with_data)] print(f'{self.split} size: {len(self.data["clips"])} clips') def __len__(self): return len(self.data['clips']) def __getitem__(self, item): videoid = self.data['clips'].iloc[item].name data = {} for expert in self.experts_used: packet = self._get_expert_ftr(expert, videoid) if expert == self.label: data['label'] = packet else: data[expert] = packet id = {'imdbid': self.data['clips'].loc[videoid]['imdbid'], 'videoid': videoid} return data, id def _get_expert_ftr(self, expert, videoid, context=False): packet = {} if expert == 'plot': videoid = self.data['clips'].loc[videoid]['imdbid'] # TODO: maybe this breaks for clips with no imdbid? if videoid not in self.expert_data[expert]: missing = True some_entry = list(self.expert_data[expert].keys())[0] ftr = np.zeros_like(self.expert_data[expert][some_entry]) else: missing = False ftr = self.expert_data[expert][videoid] #if context: # ftr = np.zeros(ftr.shape) #ftr = np.random.randn(*ftr.shape) ftr = torch.from_numpy(ftr) ftr = ftr.float() if len(ftr.shape) == 1: pass elif len(ftr.shape) == 2: ftr, n_tokens = self._pad_to_max_tokens(ftr, expert) packet['n_tokens'] = torch.Tensor([n_tokens]) else: raise ValueError packet['ftr'] = ftr.unsqueeze(dim=0) packet['missing'] = torch.Tensor([missing]) return packet def _pad_to_max_tokens(self, array, expert): n_tokens, dim = array.shape if n_tokens >= self.max_tokens[expert]: res = array[:self.max_tokens[expert]] n_tokens = self.max_tokens[expert] else: res = torch.zeros((self.max_tokens[expert], dim)) res[:n_tokens] = array return res, n_tokens def _characters_txt(self, texts, clean_cast): raise NotImplementedError def _clean_cast(self, cast): for actor in cast: char = cast[actor] char = char.replace('(voice)', '') char = char.strip() char = [c.strip() for c in char.split('/')] # deals with one-many actor cast[actor] = char # char here is a list return cast def _expert_dims(self): expert_dims = { 'BERT': 1024, 'I3D': 1024, 'DenseNet-161': 2208, 'SE-ResNet-154': 2048, 'S3DG': 1024, 'SE-ResNet-50': 256, '': None } ftrs_dim = {} for key in self.experts: arch = self.experts[key].split('/')[0] if arch not in expert_dims and arch != "": raise ValueError('Expert not found in dims dict, please update') ftrs_dim[key] = expert_dims[arch] return ftrs_dim ================================================ FILE: data_loader/data_loaders.py ================================================ from torchvision import datasets, transforms from base import BaseDataLoader from data_loader.MovieClips_dataset import MovieClips #from data_loader.MovieClips_intramovie import MovieClipsINTRA class MovieClipsDataLoader(BaseDataLoader): """ MovieClips DataLoader. """ def __init__(self, data_dir, metadata_dir, label, experts_used, experts, max_tokens, batch_size, split='train', shuffle=True, num_workers=4): self.data_dir = data_dir self.dataset = MovieClips(data_dir, metadata_dir, label, experts_used, experts, max_tokens, split) # batch size of entire val test set. change this for intra-movie if split in ['val', 'test']: batch_size = len(self.dataset.data['clips']) super().__init__(self.dataset, batch_size, shuffle, split, num_workers) ================================================ FILE: data_prep/config.json ================================================ { "data_dir": "../data", "features": true, "facetracks": true, "src": false } ================================================ FILE: data_prep/download.py ================================================ import json import os from os.path import join as osj import pandas as pd import pdb hosting_address = 'https://thor.robots.ox.ac.uk/~vgg/data/condensed-movies/data' def download_features(data_dir): cmd = 'wget {}/features.zip -P {}; unzip {}/features.zip -d {}'.format(hosting_address, data_dir, data_dir, data_dir) os.system(cmd) def download_facetracks(data_dir): cmd = 'wget {}/facetracks.zip -P {}; unzip {}/facetracks.zip -d {}'.format(hosting_address, data_dir, data_dir, data_dir) os.system(cmd) def youtube_download(data_dir): id_dir = '../data/metadata/youtube-dl-dump' video_dir = osj(data_dir, 'videos') if not os.path.exists(video_dir): os.makedirs(video_dir) for file in os.listdir(id_dir): upload_year = file.replace('.csv', '') video_dir_year = osj(video_dir, upload_year) if not os.path.exists(video_dir_year): os.makedirs(video_dir_year) output_fmt = osj(video_dir_year, '%(id)s.%(ext)s') id_fp = osj(id_dir, file) cmd = 'youtube-dl --config-location youtube-dl.conf -o "{}" -a "{}"'.format(output_fmt, id_fp) os.system(cmd) # trim advertisement outro from video. trim = None while trim not in ['y', 'n']: trim = str(input( "\nDo you want to trim the videos (y/n)?\nThis removes the advertisements (unrelated to the film), and only needs to be done once per download.")) if trim not in ['y', 'n']: print('Please type "y" or "n"') if trim == "y": trim_video_outro(video_dir) # check for failed downloads: this can be due to... # i) geographical restrictions # ii) Too many requests error check_missing_vids(video_dir) def trim_video_outro(video_dir, video_ext='.mkv'): duration_data = pd.read_csv('../data/metadata/durations.csv').set_index('videoid') tmp_fp = osj(video_dir, 'tmp' + video_ext) for root, subdir, files in os.walk(video_dir): for file in files: if file.endswith(video_ext) and file != 'tmp' + video_ext: videoid = file.split(video_ext)[0] if videoid not in duration_data.index: raise ValueError("Videoid not found, video files should be in format {VIDEOID}.mkv") video_fp = osj(root, file) new_duration = duration_data.loc[videoid]['duration'] # create tmp for untrimmed os.system('cp {} {}'.format(video_fp, tmp_fp)) cmd = 'ffmpeg -y -ss 0 -i {} -t {} -c copy {}'.format(tmp_fp, new_duration, video_fp) os.system(cmd) os.remove(tmp_fp) def check_missing_vids(video_dir, video_ext='.mkv'): missing_ids = [] clips_data = pd.read_csv('../data/metadata/clips.csv').set_index('videoid') for idx, row in clips_data.iterrows(): videoid = row.name upload_year = row['upload_year'] video_fp = osj(video_dir, str(int(upload_year)), videoid + video_ext) if not os.path.isfile(video_fp): missing_ids.append(videoid) success = (1 - len(missing_ids) / len(clips_data)) * 100 print('=======================================================\n%.2f %% of clips downloaded successfully' % success) if success == 100: pass elif success < 100: print( '%d clips failed to download. This is likely due to geographical restrictions.\n-->Contact maxbain@robots.ox.ac.uk if this is an issue.' % len( missing_ids)) with open('missing_videos.out', 'w') as fid: for mid in missing_ids: fid.write(mid + '\n') def main(): config = json.load(open('config.json', 'r')) data_dir = config['data_dir'] if not os.path.exists(data_dir): os.makedirs(data_dir) if config['features']: download_features(data_dir) if config['facetracks']: download_facetracks(data_dir) if config['src']: youtube_download(data_dir) if __name__ == "__main__": main() ================================================ FILE: data_prep/youtube-dl.conf ================================================ # RESOLUTION -f 'bestvideo[height<=360][ext=mp4]+bestaudio/best[height<=360][ext=m4a]/mp4' --flat-playlist # FORMAT --prefer-ffmpeg --merge-output-format mkv # SUBTITLES --write-auto-sub --convert-subs srt # METADATA #--add-metadata #--write-description # Ignore missing videos --ignore-errors ================================================ FILE: logger/__init__.py ================================================ from .logger import * from .visualization import * ================================================ FILE: logger/logger.py ================================================ import logging import logging.config from pathlib import Path from utils import read_json def setup_logging(save_dir, log_config='logger/logger_config.json', default_level=logging.INFO): """ Setup logging configuration """ log_config = Path(log_config) if log_config.is_file(): config = read_json(log_config) # modify logging paths based on run config for _, handler in config['handlers'].items(): if 'filename' in handler: handler['filename'] = str(save_dir / handler['filename']) logging.config.dictConfig(config) else: print("Warning: logging configuration file is not found in {}.".format(log_config)) logging.basicConfig(level=default_level) ================================================ FILE: logger/logger_config.json ================================================ { "version": 1, "disable_existing_loggers": false, "formatters": { "simple": {"format": "%(message)s"}, "datetime": {"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s"} }, "handlers": { "console": { "class": "logging.StreamHandler", "level": "DEBUG", "formatter": "simple", "stream": "ext://sys.stdout" }, "info_file_handler": { "class": "logging.handlers.RotatingFileHandler", "level": "INFO", "formatter": "datetime", "filename": "info.log", "maxBytes": 10485760, "backupCount": 20, "encoding": "utf8" } }, "root": { "level": "INFO", "handlers": [ "console", "info_file_handler" ] } } ================================================ FILE: logger/visualization.py ================================================ import importlib from utils import Timer class TensorboardWriter(): def __init__(self, log_dir, logger, enabled): self.writer = None self.selected_module = "" if enabled: log_dir = str(log_dir) # Retrieve vizualization writer. succeeded = False for module in ["torch.utils.tensorboard", "tensorboardX"]: try: self.writer = importlib.import_module(module).SummaryWriter(log_dir) succeeded = True break except ImportError: succeeded = False self.selected_module = module if not succeeded: message = "Warning: visualization (Tensorboard) is configured to use, but currently not installed on " \ "this machine. Please install either TensorboardX with 'pip install tensorboardx', upgrade " \ "PyTorch to version >= 1.1 for using 'torch.utils.tensorboard' or turn off the option in " \ "the 'config.json' file." logger.warning(message) self.step = 0 self.mode = '' self.tb_writer_ftns = { 'add_scalar', 'add_scalars', 'add_image', 'add_images', 'add_audio', 'add_text', 'add_histogram', 'add_pr_curve', 'add_embedding' } self.tag_mode_exceptions = {'add_histogram', 'add_embedding'} self.timer = Timer() def set_step(self, step, mode='train'): self.mode = mode self.step = step if step == 0: self.timer.reset() else: duration = self.timer.check() self.add_scalar('steps_per_sec', 1 / duration) def __getattr__(self, name): """ If visualization is configured to use: return add_data() methods of tensorboard with additional information (step, tag) added. Otherwise: return a blank function handle that does nothing """ if name in self.tb_writer_ftns: add_data = getattr(self.writer, name, None) def wrapper(tag, data, *args, **kwargs): if add_data is not None: # add mode(train/valid) tag if name not in self.tag_mode_exceptions: tag = '{}/{}'.format(tag, self.mode) add_data(tag, data, self.step, *args, **kwargs) return wrapper else: # default action for returning methods defined in this class, set_step() for instance. try: attr = object.__getattr__(name) except AttributeError: raise AttributeError("type object '{}' has no attribute '{}'".format(self.selected_module, name)) return attr ================================================ FILE: model/loss.py ================================================ """This module contains an implementation of the max margin ranking loss, slightly modified from this code: https://github.com/antoine77340/Mixture-of-Embedding-Experts/blob/master/loss.py The modification is the `fix_norm` conditional, which removes zero terms from the diagonal when performing the averaging calculation. Original licence below. """ # Copyright 2018 Antoine Miech All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS-IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import torch.nn as nn import torch as th import torch.nn.functional as F class MaxMarginRankingLoss(nn.Module): def __init__(self, margin=1, fix_norm=True): super().__init__() self.fix_norm = fix_norm self.loss = th.nn.MarginRankingLoss(margin) self.margin = margin def forward(self, x): n = x.size()[0] x1 = th.diag(x) x1 = x1.unsqueeze(1) x1 = x1.expand(n, n) x1 = x1.contiguous().view(-1, 1) x1 = th.cat((x1, x1), 0) x2 = x.view(-1, 1) x3 = x.transpose(0, 1).contiguous().view(-1, 1) x2 = th.cat((x2, x3), 0) max_margin = F.relu(self.margin - (x1 - x2)) if self.fix_norm: # remove the elements from the diagonal keep = th.ones(x.shape) - th.eye(x.shape[0]) # 128 x 128 keep1 = keep.view(-1, 1) keep2 = keep.transpose(0, 1).contiguous().view(-1, 1) keep_idx = th.nonzero(th.cat((keep1, keep2), 0).flatten()).flatten() if x1.is_cuda: keep_idx = keep_idx.cuda() x1_ = th.index_select(x1, dim=0, index=keep_idx) x2_ = th.index_select(x2, dim=0, index=keep_idx) max_margin = F.relu(self.margin - (x1_ - x2_)) return max_margin.mean() def cosine_sim(im, s): """Cosine similarity between all the image and sentence pairs """ return im.mm(s.t()) def order_sim(im, s): """Order embeddings similarity measure $max(0, s-im)$ """ YmX = (s.unsqueeze(1).expand(s.size(0), im.size(0), s.size(1)) - im.unsqueeze(0).expand(s.size(0), im.size(0), s.size(1))) score = -YmX.clamp(min=0).pow(2).sum(2).sqrt().t() return score from torch.autograd import Variable class ContrastiveLoss(nn.Module): """ Compute contrastive loss """ def __init__(self, margin=0, measure=False, max_violation=False): super(ContrastiveLoss, self).__init__() self.margin = margin self.max_violation = max_violation def forward(self, im, s, scores): # compute image-sentence score matrix scores = self.sim(im, s) diagonal = scores.diag().view(im.size(0), 1) d1 = diagonal.expand_as(scores) d2 = diagonal.t().expand_as(scores) # compare every diagonal score to scores in its column # caption retrieval cost_s = (self.margin + scores - d1).clamp(min=0) # compare every diagonal score to scores in its row # image retrieval cost_im = (self.margin + scores - d2).clamp(min=0) # clear diagonals mask = th.eye(scores.size(0)) > .5 I = Variable(mask) if th.cuda.is_available(): I = I.cuda() cost_s = cost_s.masked_fill_(I, 0) cost_im = cost_im.masked_fill_(I, 0) # keep the maximum violating negative for each query if self.max_violation: cost_s = cost_s.max(1)[0] cost_im = cost_im.max(0)[0] return cost_s.sum() + cost_im.sum() class BCEWithLogitsLoss(nn.Module): def __init__(self, weight=None): super().__init__() self.loss = th.nn.BCEWithLogitsLoss(weight=weight) def forward(self, x, target): return self.loss(x, target) class CrossEntropyLoss(nn.Module): def __init__(self, weight=None): super().__init__() self.loss = th.nn.CrossEntropyLoss(weight=weight) def forward(self, x, target): return self.loss(x, target.long().to(x.device)) if __name__ == "__main__": loss = BCEWithLogitsLoss() x = th.randn(3, requires_grad=True) target = th.empty(3).random_(2) output = loss(x, target) output.backward() print(target) ================================================ FILE: model/metric.py ================================================ import torch import ipdb """Module for computing performance metrics """ import math import numbers from pathlib import Path import ipdb import numpy as np import torch import scipy.stats from sklearn.metrics import average_precision_score import ipdb import pdb def t2v_metrics(sims, query_masks=None): """Compute retrieval metrics from a similiarity matrix. Args: sims (th.Tensor): N x M matrix of similarities between embeddings, where x_{i,j} = query_masks (th.Tensor): mask any missing queries from the dataset (two videos in MSRVTT only have 19, rather than 20 captions) Returns: (dict[str:float]): retrieval metrics """ assert sims.ndim == 2, "expected a matrix" num_queries, num_vids = sims.shape dists = -sims sorted_dists = np.sort(dists, axis=1) # The indices are computed such that they slice out the ground truth distances # from the psuedo-rectangular dist matrix queries_per_video = num_queries // num_vids gt_idx = [[np.ravel_multi_index([ii, jj], (num_queries, num_vids)) for ii in range(jj * queries_per_video, (jj + 1) * queries_per_video)] for jj in range(num_vids)] gt_idx = np.array(gt_idx) gt_dists = dists.reshape(-1)[gt_idx.reshape(-1)] gt_dists = gt_dists[:, np.newaxis] rows, cols = np.where((sorted_dists - gt_dists) == 0) # find column position of GT # -------------------------------- # NOTE: Breaking ties # -------------------------------- # We sometimes need to break ties (in general, these should occur extremely rarely, # but there are pathological cases when they can distort the scores, such as when # the similarity matrix is all zeros). Previous implementations (e.g. the t2i # evaluation function used # here: https://github.com/niluthpol/multimodal_vtt/blob/master/evaluation.py and # here: https://github.com/linxd5/VSE_Pytorch/blob/master/evaluation.py#L87) generally # break ties "optimistically". However, if the similarity matrix is constant this # can evaluate to a perfect ranking. A principled option is to average over all # possible partial orderings implied by the ties. See # this paper for a discussion: # McSherry, Frank, and Marc Najork, # "Computing information retrieval performance measures efficiently in the presence # of tied scores." European conference on information retrieval. Springer, Berlin, # Heidelberg, 2008. # http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.145.8892&rep=rep1&type=pdf # break_ties = "optimistically" break_ties = "averaging" if rows.size > num_queries: assert np.unique(rows).size == num_queries, "issue in metric evaluation" if break_ties == "optimistically": _, idx = np.unique(rows, return_index=True) cols = cols[idx] elif break_ties == "averaging": # fast implementation, based on this code: # https://stackoverflow.com/a/49239335 locs = np.argwhere((sorted_dists - gt_dists) == 0) # Find the split indices steps = np.diff(locs[:, 0]) splits = np.nonzero(steps)[0] + 1 splits = np.insert(splits, 0, 0) # Compute the result columns summed_cols = np.add.reduceat(locs[:, 1], splits) counts = np.diff(np.append(splits, locs.shape[0])) avg_cols = summed_cols / counts if False: print("Running slower code to verify rank averaging across ties") # slow, but more interpretable version, used for testing avg_cols_slow = [np.mean(cols[rows == idx]) for idx in range(num_queries)] assert np.array_equal(avg_cols, avg_cols_slow), "slow vs fast difference" print("passed num check") cols = avg_cols msg = "expected ranks to match queries ({} vs {}) " if cols.size != num_queries: import ipdb; ipdb.set_trace() assert cols.size == num_queries, msg if False: # overload mask to check that we can recover the scores for single-query # retrieval print("DEBUGGING MODE") query_masks = np.zeros_like(query_masks) query_masks[:, 0] = 1 # recover single query score if query_masks is not None: # remove invalid queries assert query_masks.size == num_queries, "invalid query mask shape" cols = cols[query_masks.reshape(-1).astype(np.bool)] assert cols.size == query_masks.sum(), "masking was not applied correctly" # update number of queries to account for those that were missing num_queries = query_masks.sum() if False: # sanity check against old logic for square matrices gt_dists_old = np.diag(dists) gt_dists_old = gt_dists_old[:, np.newaxis] _, cols_old = np.where((sorted_dists - gt_dists_old) == 0) assert np.array_equal(cols_old, cols), "new metric doesn't match" return cols2metrics(cols, num_queries) def v2t_metrics(sims, query_masks=None): """Compute retrieval metrics from a similiarity matrix. Args: sims (th.Tensor): N x M matrix of similarities between embeddings, where x_{i,j} = query_masks (th.Tensor): mask any missing captions from the dataset Returns: (dict[str:float]): retrieval metrics NOTES: We find the closest "GT caption" in the style of VSE, which corresponds to finding the rank of the closest relevant caption in embedding space: github.com/ryankiros/visual-semantic-embedding/blob/master/evaluation.py#L52-L56 """ # switch axes of text and video sims = sims.T if False: # experiment with toy example sims = np.ones((3, 3)) sims[0, 0] = 2 sims[1, 1:2] = 2 sims[2, :] = 2 query_masks = None assert sims.ndim == 2, "expected a matrix" num_queries, num_caps = sims.shape dists = -sims caps_per_video = num_caps // num_queries break_ties = "averaging" MISSING_VAL = 1E8 query_ranks = [] for ii in range(num_queries): row_dists = dists[ii, :] if query_masks is not None: # Set missing queries to have a distance of infinity. A missing query # refers to a query position `n` for a video that had less than `n` # captions (for example, a few MSRVTT videos only have 19 queries) row_dists[np.logical_not(query_masks.reshape(-1))] = MISSING_VAL # NOTE: Using distance subtraction to perform the ranking is easier to make # deterministic than using argsort, which suffers from the issue of defining # "stability" for equal distances. Example of distance subtraction code: # github.com/antoine77340/Mixture-of-Embedding-Experts/blob/master/train.py sorted_dists = np.sort(row_dists) min_rank = np.inf for jj in range(ii * caps_per_video, (ii + 1) * caps_per_video): if row_dists[jj] == MISSING_VAL: # skip rankings of missing captions continue ranks = np.where((sorted_dists - row_dists[jj]) == 0)[0] if break_ties == "optimistically": rank = ranks[0] elif break_ties == "averaging": # NOTE: If there is more than one caption per video, its possible for the # method to do "worse than chance" in the degenerate case when all # similarities are tied. TODO(Samuel): Address this case. rank = ranks.mean() if rank < min_rank: min_rank = rank query_ranks.append(min_rank) query_ranks = np.array(query_ranks) # sanity check against old version of code if False: sorted_dists = np.sort(dists, axis=1) gt_dists_old = np.diag(dists) gt_dists_old = gt_dists_old[:, np.newaxis] rows_old, cols_old = np.where((sorted_dists - gt_dists_old) == 0) if rows_old.size > num_queries: _, idx = np.unique(rows_old, return_index=True) cols_old = cols_old[idx] num_diffs = (1 - (cols_old == query_ranks)).sum() msg = f"new metric doesn't match in {num_diffs} places" assert np.array_equal(cols_old, query_ranks), msg # visualise the distance matrix import sys import matplotlib matplotlib.use("Agg") import matplotlib.pyplot as plt sys.path.insert(0, str(Path.home() / "coding/src/zsvision/python")) from zsvision.zs_iterm import zs_dispFig # NOQA plt.matshow(dists) zs_dispFig() return cols2metrics(query_ranks, num_queries) def retrieval_as_classification(sims, query_masks=None): """Compute classification metrics from a similiarity matrix. """ assert sims.ndim == 2, "expected a matrix" # switch axes of query-labels and video sims = sims.T query_masks = query_masks.T dists = -sims num_queries, num_labels = sims.shape break_ties = "averaging" query_ranks = [] for ii in range(num_queries): row_dists = dists[ii, :] # NOTE: Using distance subtraction to perform the ranking is easier to make # deterministic than using argsort, which suffers from the issue of defining # "stability" for equal distances. Example of distance subtraction code: # github.com/antoine77340/Mixture-of-Embedding-Experts/blob/master/train.py sorted_dists = np.sort(row_dists) # min_rank = np.inf label_ranks = [] for gt_label in np.where(query_masks[ii, :])[0]: ranks = np.where((sorted_dists - row_dists[gt_label]) == 0)[0] if break_ties == "optimistically": rank = ranks[0] elif break_ties == "averaging": # NOTE: If there is more than one caption per video, its possible for the # method to do "worse than chance" in the degenerate case when all # similarities are tied. TODO(Samuel): Address this case. rank = ranks.mean() else: raise ValueError(f"unknown tie-breaking method: {break_ties}") label_ranks.append(rank) # Avoid penalising for assigning higher similarity to other gt labels. This is # done by subtracting out the better ranked query labels. Note that this step # introduces a slight skew in favour of videos with lots of labels. We can # address this later with a normalisation step if needed. label_ranks = [x - idx for idx, x in enumerate(label_ranks)] # Include all labels in the final calculation query_ranks.extend(label_ranks) query_ranks = np.array(query_ranks) # sanity check against old version of code if False: # visualise the distance matrix import sys import matplotlib matplotlib.use("Agg") import matplotlib.pyplot as plt sys.path.insert(0, str(Path.home() / "coding/src/zsvision/python")) from zsvision.zs_iterm import zs_dispFig # NOQA # plt.matshow(dists) # zs_dispFig() plt.hist(query_ranks, bins=313, alpha=0.5) plt.grid() zs_dispFig() import ipdb; ipdb.set_trace() return cols2metrics(query_ranks, num_queries=len(query_ranks)) def cols2metrics(cols, num_queries): metrics = {} metrics["R1"] = 100 * float(np.sum(cols == 0)) / num_queries metrics["R5"] = 100 * float(np.sum(cols < 5)) / num_queries metrics["R10"] = 100 * float(np.sum(cols < 10)) / num_queries metrics["R50"] = 100 * float(np.sum(cols < 50)) / num_queries metrics["MedR"] = np.median(cols) + 1 metrics["MeanR"] = np.mean(cols) + 1 stats = [metrics[x] for x in ("R1", "R5", "R10")] metrics["geometric_mean_R1-R5-R10"] = scipy.stats.mstats.gmean(stats) return metrics def mean_average_precision(sims, query_masks=None): ap_meter = APMeter() ap_meter.add(output=sims.T, target=query_masks.T) return {"mAP": ap_meter.value().mean()} class AverageMeter(object): """Computes and stores the average and current value""" def __init__(self, name, fmt=':f'): self.name = name self.fmt = fmt self.reset() def reset(self): self.val = 0 self.avg = 0 self.sum = 0 self.count = 0 def update(self, val, n=1): self.val = val self.sum += val * n self.count += n self.avg = self.sum / self.count def __str__(self): fmtstr = '{name} {val' + self.fmt + '} ({avg' + self.fmt + '})' return fmtstr.format(**self.__dict__) class Meter(object): '''Meters provide a way to keep track of important statistics in an online manner. This class is abstract, but provides a sGktandard interface for all meters to follow. ''' def reset(self): '''Resets the meter to default settings.''' pass def add(self, value): '''Log a new value to the meter Args: value: Next restult to include. ''' pass def value(self): '''Get the value of the meter in the current state.''' pass class APMeter(Meter): """ The APMeter measures the average precision per class. The APMeter is designed to operate on `NxK` Tensors `output` and `target`, and optionally a `Nx1` Tensor weight where (1) the `output` contains model output scores for `N` examples and `K` classes that ought to be higher when the model is more convinced that the example should be positively labeled, and smaller when the model believes the example should be negatively labeled (for instance, the output of a sigmoid function); (2) the `target` contains only values 0 (for negative examples) and 1 (for positive examples); and (3) the `weight` ( > 0) represents weight for each sample. """ def __init__(self): super(APMeter, self).__init__() self.reset() def reset(self): """Resets the meter with empty member variables""" self.scores = torch.FloatTensor(torch.FloatStorage()) self.targets = torch.LongTensor(torch.LongStorage()) self.weights = torch.FloatTensor(torch.FloatStorage()) def add(self, output, target, weight=None): """Add a new observation Args: output (Tensor): NxK tensor that for each of the N examples indicates the probability of the example belonging to each of the K classes, according to the model. The probabilities should sum to one over all classes target (Tensor): binary NxK tensort that encodes which of the K classes are associated with the N-th input (eg: a row [0, 1, 0, 1] indicates that the example is associated with classes 2 and 4) weight (optional, Tensor): Nx1 tensor representing the weight for each example (each weight > 0) """ if not torch.is_tensor(output): output = torch.from_numpy(output) if not torch.is_tensor(target): target = torch.from_numpy(target) if weight is not None: if not torch.is_tensor(weight): weight = torch.from_numpy(weight) weight = weight.squeeze() if output.dim() == 1: output = output.view(-1, 1) else: assert output.dim() == 2, \ 'wrong output size (should be 1D or 2D with one column \ per class)' if target.dim() == 1: target = target.view(-1, 1) else: assert target.dim() == 2, \ 'wrong target size (should be 1D or 2D with one column \ per class)' if weight is not None: assert weight.dim() == 1, 'Weight dimension should be 1' assert weight.numel() == target.size(0), \ 'Weight dimension 1 should be the same as that of target' assert torch.min(weight) >= 0, 'Weight should be non-negative only' assert torch.equal(target ** 2, target), \ 'targets should be binary (0 or 1)' if self.scores.numel() > 0: assert target.size(1) == self.targets.size(1), \ 'dimensions for output should match previously added examples.' # make sure storage is of sufficient size if self.scores.storage().size() < self.scores.numel() + output.numel(): new_size = math.ceil(self.scores.storage().size() * 1.5) new_weight_size = math.ceil(self.weights.storage().size() * 1.5) self.scores.storage().resize_(int(new_size + output.numel())) self.targets.storage().resize_(int(new_size + output.numel())) if weight is not None: self.weights.storage().resize_(int(new_weight_size + output.size(0))) # store scores and targets offset = self.scores.size(0) if self.scores.dim() > 0 else 0 self.scores.resize_(offset + output.size(0), output.size(1)) self.targets.resize_(offset + target.size(0), target.size(1)) self.scores.narrow(0, offset, output.size(0)).copy_(output) self.targets.narrow(0, offset, target.size(0)).copy_(target) if weight is not None: self.weights.resize_(offset + weight.size(0)) self.weights.narrow(0, offset, weight.size(0)).copy_(weight) def value(self): """Returns the model's average precision for each class Return: ap (FloatTensor): 1xK tensor, with avg precision for each class k """ if self.scores.numel() == 0: return 0 ap = torch.zeros(self.scores.size(1)) if hasattr(torch, "arange"): rg = torch.arange(1, self.scores.size(0) + 1).float() else: rg = torch.range(1, self.scores.size(0)).float() if self.weights.numel() > 0: weight = self.weights.new(self.weights.size()) weighted_truth = self.weights.new(self.weights.size()) # compute average precision for each class for k in range(self.scores.size(1)): # sort scores scores = self.scores[:, k] targets = self.targets[:, k] _, sortind = torch.sort(scores, 0, True) truth = targets[sortind] if self.weights.numel() > 0: weight = self.weights[sortind] weighted_truth = truth.float() * weight rg = weight.cumsum(0) # compute true positive sums if self.weights.numel() > 0: tp = weighted_truth.cumsum(0) else: tp = truth.float().cumsum(0) # compute precision curve precision = tp.div(rg) # compute average precision ap[k] = precision[truth.byte()].sum() / max(float(truth.sum()), 1) return ap class APMeterChallenge(APMeter): """ The APMeter measures the average precision per class. The APMeter is designed to operate on `NxK` Tensors `output` and `target`, and optionally a `Nx1` Tensor weight where (1) the `output` contains model output scores for `N` examples and `K` classes that ought to be higher when the model is more convinced that the example should be positively labeled, and smaller when the model believes the example should be negatively labeled (for instance, the output of a sigmoid function); (2) the `target` contains only values 0 (for negative examples) and 1 (for positive examples); and (3) the `weight` ( > 0) represents weight for each sample. """ def value(self): """Returns the model's average precision for each class Return: ap (FloatTensor): 1xK tensor, with avg precision for each class k """ if not self.scores.numel(): return 0 mAP = 0.0 scores_np, target_np = self.scores.cpu().numpy(), self.targets.cpu().numpy() for ii in range(self.targets.shape[0]): sorted_ind = np.argsort(-1 * scores_np[ii, :]) gt_label = np.squeeze(target_np[ii, :]) pred_label = np.squeeze(scores_np[ii, :]) for jj in range(target_np.shape[1]): pred_label[sorted_ind[jj]] = target_np.shape[1] - 1 - jj mAP += average_precision_score(gt_label, pred_label, average='macro') ap = mAP / target_np.shape[0] return torch.from_numpy(np.asarray(ap)) class ClassErrorMeter(Meter): def __init__(self, topk=[1, 5, 10, 50], accuracy=True): super(ClassErrorMeter, self).__init__() self.topk = np.sort(topk) self.accuracy = accuracy self.reset() def reset(self): self.sum = {v: 0 for v in self.topk} self.n = 0 def add(self, output, target): if torch.is_tensor(output): output = output.cpu().squeeze().numpy() if torch.is_tensor(target): target = np.atleast_1d(target.cpu().squeeze().numpy()) elif isinstance(target, numbers.Number): target = np.asarray([target]) if np.ndim(output) == 1: output = output[np.newaxis] else: assert np.ndim(output) == 2, \ 'wrong output size (1D or 2D expected)' assert np.ndim(target) == 1, \ 'target and output do not match' assert target.shape[0] == output.shape[0], \ 'target and output do not match' topk = self.topk maxk = int(topk[-1]) # seems like Python3 wants int and not np.int64 no = output.shape[0] pred = torch.from_numpy(output).topk(maxk, 1, True, True)[1].numpy() correct = pred == target[:, np.newaxis].repeat(pred.shape[1], 1) for k in topk: self.sum[k] += no - correct[:, 0:k].sum() self.n += no def value(self, k=-1): if k != -1: assert k in self.sum.keys(), \ 'invalid k (this k was not provided at construction time)' if self.accuracy: return (1. - float(self.sum[k]) / self.n) * 100.0 else: return float(self.sum[k]) / self.n * 100.0 else: return [self.value(k_) for k_ in self.topk] ================================================ FILE: model/model.py ================================================ import itertools from collections import OrderedDict import torch import torch.nn as nn import torch.nn.functional as F from base import BaseModel from model.net_vlad import NetVLAD import ipdb from torch import autograd class MoEE(BaseModel): def __init__(self, label, experts_used, expert_dims, aggregation_method, projection_dim, pretrained, use_moe): super().__init__() self.n_clips = 1 self.label = label self.experts_used = experts_used.copy() self.experts_used.remove(self.label) expert_dims['label'] = expert_dims[label] self.expert_dims = expert_dims self.aggregation_method = aggregation_method self.projection_dim = projection_dim self.aggregation = nn.ModuleDict({ expert: get_aggregation(info, self.expert_dims[expert]) for expert, info in self.aggregation_method.items() if expert in self.experts_used + ['label'] }) for key in self.aggregation_method: if self.aggregation_method[key]['type'] == "net_vlad": self.expert_dims[key] = self.expert_dims[key] * self.aggregation_method[key][ 'cluster_size'] # TODO: hacky, improve self.video_GU = nn.ModuleDict({ expert: Gated_Embedding_Unit(self.expert_dims[expert], self.projection_dim, channels=self.n_clips) for expert in self.experts_used }) self.clip_GU = nn.ModuleList([ nn.Identity() for clip in range(self.n_clips) ]) self.text_GU = nn.ModuleDict({ expert: Gated_Embedding_Unit(self.aggregation['label'].out_dim, self.projection_dim, channels=0) for expert in experts_used }) self.text_clip = nn.ModuleList([ nn.Identity() for clip in range(self.n_clips) ]) self.moe_fc = nn.Linear(self.expert_dims['label'], len(self.experts_used)* self.n_clips) def get_moe_scores(self, text): res = F.softmax(self.moe_fc(text), dim=-1) return res def forward(self, x, evaluation=False, debug=False): ''' :param x: Dictionary of experts and one of the experts 'label'. Each expert has keys 'ftr', 'missing' and 'n_tokens' x[expert]['ftr']: "b x clips x ftr" OR "b x clips x n_tokens x ftr" x[expert]['missing']: b x clips boolean tensor, True if expert is missing for that clip x[expert]['n_tokens']: number of actual tokens for that expert in that clip (we need this because of padding) :return: Similarity score for batch: b x b (return other stuff if evaluating: moe weights, text embed, video embed ''' missing = [] res = {} video_experts = [] for expert in x: ftr = x[expert]['ftr'] miss = x[expert]['missing'] if expert == 'label': ftr = ftr.squeeze(1) ftr = self.aggregation[expert](ftr, x[expert]['n_tokens']) # ftr = ftr.mean(dim=1) text = ftr else: if len(ftr.shape) == 4: n_tokens = x[expert]['n_tokens'] ftr = self.aggregation[expert](ftr, n_tokens) res[expert] = ftr missing.append(miss) video_experts.append(expert) missing = torch.stack(missing, dim=1).bool() # b, expert, clip text_embed = [] video_embed = [] for idx, expert in enumerate(video_experts): video_embed.append(self.video_GU[expert](res[expert])) text_embed.append(self.text_GU[expert](text)) video_embed = torch.stack(video_embed, dim=2) # b, n_clips, experts, ftr_dim text_embed = torch.stack(text_embed, dim=1) # b, expert, ftr_dim batch_sz = video_embed.shape[0] video_embed_mod = [] text_embed_mod = [] for idx in range(self.n_clips): video_embed_mod.append(self.clip_GU[idx](video_embed[:, idx])) # clip-level GU text_embed_mod.append(self.text_clip[idx](text_embed)) video_embed_mod = torch.stack(video_embed_mod, dim=2) # b, expert, clip, ftr_dim text_embed_mod = torch.stack(text_embed_mod, dim=2) video_embed_mod = F.normalize(video_embed_mod, dim=-1) text_embed_mod = F.normalize(text_embed_mod, dim=-1) moe_weights = self.get_moe_scores(text) moe_weights = moe_weights.view(-1, len(self.experts_used), self.n_clips) # b, expert, clip moe_weights = moe_weights.unsqueeze(1).repeat(1, batch_sz, 1, 1) # text, video, expert, clip missing = missing.unsqueeze(0) # 1, video, expert, clip missing = missing.repeat(batch_sz, 1, 1, 1) moe_weights = moe_weights.masked_fill(missing, 0) norm_weights = torch.sum(moe_weights, dim=(2, 3)).unsqueeze(2).unsqueeze(3) moe_weights = torch.div(moe_weights, norm_weights) embed_stack = torch.einsum('tecd,vecd->tvec', [text_embed_mod, video_embed_mod]) # text x video x expert x clip embed_stack = embed_stack * moe_weights # tvec similarity scores conf_mat = embed_stack.sum(dim=(2, 3)) # sum over e,c if evaluation: return conf_mat, video_embed_mod, text_embed_mod, moe_weights return conf_mat class Collaborative_Gating_Unit(nn.Module): def __init__(self, output_dimension, num_inputs, number_g_layers, number_h_layers, use_bn_reason): super(Collaborative_Gating_Unit, self).__init__() self.num_g_layers = number_g_layers self.num_h_layers = number_h_layers self.use_bn_reason = use_bn_reason self.output_dim = output_dimension self.g_reason_shared = self.instantiate_reason_module() self.g_reason_1 = nn.Linear(output_dimension * num_inputs, output_dimension) self.h_reason_shared = self.instantiate_reason_module() def instantiate_reason_module(self): g_reason_shared = [] for _ in range(self.num_g_layers - 1): if self.use_bn_reason: g_reason_shared.append(nn.BatchNorm1d(self.output_dim)) g_reason_shared.append(nn.ReLU()) g_reason_shared.append(nn.Linear(self.output_dim, self.output_dim)) return nn.Sequential(*g_reason_shared) def common_project(self, x): return self.fc(x) def forward(self, cp1, cp2): pass class Gated_Embedding_Unit(nn.Module): def __init__(self, input_dimension, output_dimension, gating=True, channels=0): super(Gated_Embedding_Unit, self).__init__() self.fc = nn.Linear(input_dimension, output_dimension) self.cg = Context_Gating(output_dimension, channels) self.gating = gating def forward(self, x): x = self.fc(x) if self.gating: x = self.cg(x) x = F.normalize(x, dim=-1) return x class Gated_Embedding_Unit_Reasoning(nn.Module): def __init__(self, output_dimension, n_clips): super(Gated_Embedding_Unit_Reasoning, self).__init__() self.cg = ContextGatingReasoning(output_dimension, n_clips) def forward(self, x, mask): x = self.cg(x, mask) x = F.normalize(x) return x class Context_Gating(nn.Module): def __init__(self, dimension, channels, add_batch_norm=True): super(Context_Gating, self).__init__() self.fc = nn.Linear(dimension, dimension) self.add_batch_norm = add_batch_norm self.channels = channels if channels > 0: bn_dim = channels else: bn_dim = dimension self.batch_norm = nn.BatchNorm1d(bn_dim) def forward(self, x): x1 = self.fc(x) if self.add_batch_norm: x1 = self.batch_norm(x1) x = torch.cat((x, x1), -1) return F.glu(x, -1) class ContextGatingReasoning(nn.Module): def __init__(self, dimension, n_clips, add_batch_norm=True): super(ContextGatingReasoning, self).__init__() self.fc = nn.Linear(dimension, dimension) self.add_batch_norm = add_batch_norm self.batch_norm = nn.BatchNorm1d(n_clips) self.batch_norm2 = nn.BatchNorm1d(n_clips) def forward(self, x, x1): x2 = self.fc(x) # t = x1 + x2 if self.add_batch_norm: x1 = self.batch_norm(x1) x2 = self.batch_norm2(x2) # t = self.batch_norm (t) # t = (F.sigmoid(x1) + F.sigmoid (x2))/2 t = x1 + x2 # t = (t > 0.2).float() * 1 # t = th.trunc(2*F.sigmoid (t)-0.5) # print (t) # return x*F.sigmoid(t) # return t (curr no sigmoid hoho!) x = torch.cat((x, t), -1) return F.glu(x, -1) class ReduceDim(nn.Module): def __init__(self, input_dimension, output_dimension): super(ReduceDim, self).__init__() self.fc = nn.Linear(input_dimension, output_dimension) # self.fc = nn.Linear(input_dimension, 512) # self.fc2 = nn.Linear(512, output_dimension) def forward(self, x): x = self.fc(x) # x = self.fc2(F.relu(x)) x = F.normalize(x) return x class Debug(BaseModel): def __init__(self, experts_used): super().__init__() self.weight_dict = nn.ModuleDict({ key: nn.Conv2d(1, 1, 1, stride=1, bias=False) for key in experts_used }) self.ftrs = list(experts_used) def forward(self, x, target): return cosine_similarity(x['clip_name']['ftrs'], target) class ScalarWeight(nn.Module): def __init__(self, init_val=1, len=1): super().__init__() self.weight = nn.Parameter(torch.ones(len) * init_val) def forward(self, x): return x * self.weight.unsqueeze(-1) class MeanToken(nn.Module): def __init__(self, dim_idx): super().__init__() self.dim_idx = dim_idx def forward(self, x, n_tokens): n_dims = len(x.shape) if n_dims == 3: x_sum = x.sum(dim=1) x_mean = x_sum * n_tokens.unsqueeze(1).float().pow(-1) elif n_dims == 4: x_sum = x.sum(dim=2) x_mean = x_sum * n_tokens.unsqueeze(2).float().pow(-1) else: x_sum = x.sum(dim=2) x_mean = x_sum * n_tokens.unsqueeze(2).float().pow(-1) return x_mean class MaxToken(nn.Module): def __init__(self, dim_idx): super().__init__() self.dim_idx = dim_idx def forward(self, x, n_tokens): return x.max(dim=self.dim_idx) def get_aggregation(agg, feature_size): if agg['type'] == 'net_vlad': cluster_size = agg['cluster_size'] ghost_clusters = agg['ghost_clusters'] return NetVLAD(cluster_size, feature_size, ghost_clusters) elif agg['type'] == 'mean': return MeanToken(1) elif agg['type'] == 'max': return MaxToken(1) else: raise NotImplementedError def cosine_similarity(content, text, eps=1e-8): b1, d1 = content.shape b2, d2 = text.shape assert (b1 == b2 and d1 == d2) # TODO: Use lens instead of zero checking. content_norm = torch.norm(content, dim=1).pow(-1) # b x n_c TODO: For end-to-end, make this 0-div safe. Add epsilon text_norm = torch.norm(text, dim=1).pow(-1) # b x n_s # content_norm = content_norm.masked_fill_(content_padding, 1) # text_norm = text_norm.masked_fill_(text_padding, 1) dot_prod = torch.einsum('ad,bd->ab', content, text) # similarity between every sample in batch cosine_sim = dot_prod * (content_norm * text_norm + torch.ones_like(text_norm) * eps) return cosine_sim def sim_matrix(a, b, weights=None, eps=1e-8): """ added eps for numerical stability """ if len(a.shape) == 3 and len(b.shape) == 3: # MoEE embed_stack = torch.einsum('ted,ved->tve', [a, b]) if weights is not None: embed_stack = embed_stack * weights return embed_stack.sum(dim=1) elif len(a.shape) == 4 and len(b.shape) == 4: # a (query): text x expert x proj_dim # b (video): video x expert x clips x proj_dim # weights (moee): text x video x experts x clips # MoEE^2 embed_stack = torch.einsum('tecd,vecd->tvec', [a, b]) # text x video x expert x clip # embed_stack = torch.transpose(embed_stack, 1, 2) if weights is not None: embed_stack = embed_stack * weights return embed_stack.sum(dim=(2, 3)) a_n, b_n = a.norm(dim=1)[:, None], b.norm(dim=1)[:, None] a_norm = a / torch.max(a_n, eps * torch.ones_like(a_n)) b_norm = b / torch.max(b_n, eps * torch.ones_like(b_n)) sim_mt = torch.mm(a_norm, b_norm.transpose(0, 1)) if torch.isnan(sim_mt).any(): print('nans found in similarity matrix') return sim_mt if __name__ == '__main__': random_tensor = torch.rand((32, 3, 4, 512)) print('Custom distance function works as expected') ================================================ FILE: model/net_vlad.py ================================================ """NetVLAD implementation. """ # Copyright 2018 Antoine Miech All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS-IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import math import ipdb import torch.nn as nn import torch.nn.functional as F import torch as th class NetVLAD(nn.Module): def __init__(self, cluster_size, feature_size, ghost_clusters=0, add_batch_norm=True): super().__init__() self.feature_size = feature_size self.cluster_size = cluster_size self.ghost_clusters = ghost_clusters init_sc = (1 / math.sqrt(feature_size)) clusters = cluster_size + ghost_clusters # The `clusters` weights are the `(w,b)` in the paper self.clusters = nn.Parameter(init_sc * th.randn(feature_size, clusters)) self.batch_norm = nn.BatchNorm1d(clusters) if add_batch_norm else None # The `clusters2` weights are the visual words `c_k` in the paper self.clusters2 = nn.Parameter(init_sc * th.randn(1, feature_size, cluster_size)) self.out_dim = self.cluster_size * feature_size def forward(self, x, n_tokens, mask=None): # TODO: Create mask for n_tokens? Probably unneccesary as netvlad can handle zeros """Aggregates feature maps into a fixed size representation. In the following notation, B = batch_size, N = num_features, K = num_clusters, D = feature_size. Args: x (th.Tensor): B x N x D Returns: (th.Tensor): B x DK """ self.sanity_checks(x) max_sample = x.size()[1] x = x.view(-1, self.feature_size) # B x N x D -> BN x D if x.device != self.clusters.device: msg = f"x.device {x.device} != cluster.device {self.clusters.device}" raise ValueError(msg) assignment = th.matmul(x, self.clusters) # (BN x D) x (D x (K+G)) -> BN x (K+G) if self.batch_norm: assignment = self.batch_norm(assignment) assignment = F.softmax(assignment, dim=1) # BN x (K+G) -> BN x (K+G) # remove ghost assigments assignment = assignment[:, :self.cluster_size] assignment = assignment.view(-1, max_sample, self.cluster_size) # -> B x N x K a_sum = th.sum(assignment, dim=1, keepdim=True) # B x N x K -> B x 1 x K a = a_sum * self.clusters2 assignment = assignment.transpose(1, 2) # B x N x K -> B x K x N x = x.view(-1, max_sample, self.feature_size) # BN x D -> B x N x D vlad = th.matmul(assignment, x) # (B x K x N) x (B x N x D) -> B x K x D vlad = vlad.transpose(1, 2) # -> B x D x K vlad = vlad - a # L2 intra norm vlad = F.normalize(vlad) # flattening + L2 norm vlad = vlad.reshape(-1, self.cluster_size * self.feature_size) # -> B x DK vlad = F.normalize(vlad) return vlad # B x DK def sanity_checks(self, x): """Catch any nans in the inputs/clusters""" if th.isnan(th.sum(x)): print("nan inputs") ipdb.set_trace() if th.isnan(self.clusters[0][0]): print("nan clusters") ipdb.set_trace() ================================================ FILE: parse_config.py ================================================ import os import logging from pathlib import Path from functools import reduce from operator import getitem from datetime import datetime from logger import setup_logging from utils import read_json, write_json from mergedeep import merge, Strategy import pdb class ConfigParser: def __init__(self, args, options='', timestamp=True, class_=False): # parse default and custom cli options if not class_: for opt in options: args.add_argument(*opt.flags, default=None, type=opt.type) args = args.parse_args() if args.config is None and 'resume' in args and args.resume is not None: args.config = '/'.join(args.resume.split('/')[:-1]) + '/config.json' if args.device: os.environ["CUDA_VISIBLE_DEVICES"] = args.device if args.resume is None: msg_no_cfg = "Configuration file need to be specified. Add '-c config.json', for example." assert args.config is not None, msg_no_cfg self.cfg_fname = Path(args.config) config = self.load_config(self.cfg_fname) self.resume = None else: self.resume = Path(args.resume) resume_cfg_fname = self.resume.parent / 'config.json' config = self.load_config(resume_cfg_fname) if args.config is not None: config.update(read_json(Path(args.config))) # load config file and apply custom cli options self._config = _update_config(config, options, args) # set save_dir where trained model and log will be saved. save_dir = Path(self.config['trainer']['save_dir']) timestamp = datetime.now().strftime(r'%m%d_%H%M%S') if timestamp else '' exper_name = self.config['name'] self._save_dir = save_dir / 'models' / exper_name / timestamp self._log_dir = save_dir / 'log' / exper_name / timestamp self.save_dir.mkdir(parents=True, exist_ok=True) self.log_dir.mkdir(parents=True, exist_ok=True) # save updated config file to the checkpoint dir write_json(self.config, self.save_dir / 'config.json') # configure logging module setup_logging(self.log_dir) self.log_levels = { 0: logging.WARNING, 1: logging.INFO, 2: logging.DEBUG } def load_config(self, cfg_fname): config = read_json(cfg_fname) # apply inheritance through config hierarchy descendant, ancestors = config, [] while "inherit_from" in descendant: parent_config = read_json(Path(descendant["inherit_from"])) ancestors.append(parent_config) descendant = parent_config for ancestor in ancestors: merge(ancestor, config, strategy=Strategy.REPLACE) config = ancestor return config def initialize(self, name, module, *args, **kwargs): """ finds a function handle with the name given as 'type' in config, and returns the instance initialized with corresponding keyword args given as 'args'. """ module_name = self[name]['type'] module_args = dict(self[name]['args']) assert all([k not in module_args for k in kwargs]), 'Overwriting kwargs given in config file is not allowed' module_args.update(kwargs) return getattr(module, module_name)(*args, **module_args) def __getitem__(self, name): return self.config[name] def get_logger(self, name, verbosity=2): msg_verbosity = 'verbosity option {} is invalid. Valid options are {}.'.format(verbosity, self.log_levels.keys()) assert verbosity in self.log_levels, msg_verbosity logger = logging.getLogger(name) logger.setLevel(self.log_levels[verbosity]) return logger # setting read-only attributes @property def config(self): return self._config @property def save_dir(self): return self._save_dir @property def log_dir(self): return self._log_dir # helper functions used to update config dict with custom cli options def _update_config(config, options, args): for opt in options: value = getattr(args, _get_opt_name(opt.flags)) if value is not None: _set_by_path(config, opt.target, value) return config def _get_opt_name(flags): for flg in flags: if flg.startswith('--'): return flg.replace('--', '') return flags[0].replace('--', '') def _set_by_path(tree, keys, value): """Set a value in a nested object in tree by sequence of keys.""" _get_by_path(tree, keys[:-1])[keys[-1]] = value def _get_by_path(tree, keys): """Access a nested object in tree by sequence of keys.""" return reduce(getitem, keys, tree) ================================================ FILE: test.py ================================================ import argparse import torch from tqdm import tqdm import data_loader.data_loaders as module_data import model.loss as module_loss import model.metric as module_metric import model.model as module_arch from model.model import sim_matrix from parse_config import ConfigParser from utils.visualisation import batch_path_vis from logger import TensorboardWriter import ipdb import numpy as np import os import json import pandas as pd def main(config): res_exp = str(config.resume).replace('model_best.pth', 'test_res.json') logger = config.get_logger('test') writer = TensorboardWriter(config.log_dir, logger, config['trainer']['tensorboard']) # setup data_loader instances config._config['data_loader']['args']['split'] = 'test' config._config['data_loader']['args']['batch_size'] = 6581 data_loader = config.initialize('data_loader', module_data) experts_used = data_loader.dataset.experts_used config._config['arch']['args'][ 'experts_used'] = experts_used # improve this, how to safely clone args across classes? # improve this, how to safely clone args across classes? config._config['arch']['args']['label'] = data_loader.dataset.label config._config['arch']['args']['expert_dims'] = data_loader.dataset.expert_dims # build model architecture model = config.initialize('arch', module_arch) logger.info(model) # get function handles of loss and metrics # loss_fn = getattr(module_loss, config['loss']) # get assignment function handles metrics = [getattr(module_metric, met) for met in config['metrics']] if config.resume is not None: logger.info('Loading checkpoint: {} ...'.format(config.resume)) checkpoint = torch.load(config.resume) state_dict = checkpoint['state_dict'] if config['n_gpu'] > 1: model = torch.nn.DataParallel(model) model.load_state_dict(state_dict) else: print('Using untrained model...') # prepare model for testing device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') model = model.to(device) model.eval() total_loss = 0.0 total_metrics = torch.zeros(len(metrics)) label_embeddings = [] content_embeddings = [] moe_weights = [] imdbids = [] videoids = [] with torch.no_grad(): for batch_idx, (minibatch, id) in enumerate(data_loader): for expert, subdict in minibatch.items(): for key, val in subdict.items(): minibatch[expert][key] = val.to(device) imdbids += id['imdbid'] videoids += id['videoid'] output, res, target, moe = model(minibatch, evaluation=True) label_embeddings.append(target) content_embeddings.append(res) moe_weights.append(moe) # self.writer.add_image('input', make_grid(data.cpu(), nrow=8, normalize=True)) label_embeddings = torch.cat(label_embeddings, dim=0).detach().cpu() content_embeddings = torch.cat(content_embeddings, dim=0).detach().cpu() moe_weights = torch.cat(moe_weights, dim=0).detach().cpu() sims = sim_matrix(label_embeddings, content_embeddings, weights=moe_weights).numpy() all_res = {'inter': {}} print('#### INTER-MOVIE ####') for metric in metrics: metric_name = metric.__name__ res = metric(sims) # query_masks=meta["query_masks"]) # TODO: Query mask verbose(epoch=0, metrics=res, name='MovieClips', mode=metric_name) # TODO: refactor dataset name all_res['inter'][metric_name] = res # TODO: Print intra/inter metrics depending on training regime #print('\n#### INTRA-MOVIE ####') #all_res['intra'] = intra_movie_metrics(sims, imdbids, metrics) # n_samples = len(data_loader.sampler) # log = {'loss': total_loss / n_samples} # log.update({ # met.__name__: total_metrics[i].item() / n_samples for i, met in enumerate(metric_fns) # }) # logger.info(log) # logger.info(log) with open(res_exp, 'w') as fid: json.dump(all_res, fid) all_res['n_params'] = model.tot_params() save_results = True if save_results: results = sims2ids(sims, videoids) results_fp = res_exp.replace('test_res.json', 'results.csv') results.to_csv(results_fp) return all_res def verbose(epoch, metrics, mode, name="TEST"): r1, r5, r10, r50 = metrics["R1"], metrics["R5"], metrics["R10"], metrics["R50"] msg = f"[{mode}]{name:s} epoch {epoch}, R@1: {r1:.1f}" msg += f", R@5: {r5:.1f}, R@10 {r10:.1f}, R@50 {r50:.1f}" msg += f"MedR: {metrics['MedR']:g}, MeanR: {metrics['MeanR']:.1f}" print(msg) def intra_movie_metrics(sims, imdbids, metrics): unique_ids = set(imdbids) imdbids = np.array(imdbids) sim_stack = [] for id in unique_ids: target_idx = np.where(imdbids == id)[0] assert len(target_idx) > 0 # sanity check sim_stack.append(sims[target_idx][:, target_idx]) nested_metrics = {} for metric in metrics: metric_name = metric.__name__ r1 = [] medr = [] meanr = [] n_clips = [] for sim in sim_stack: res = metric(sim) r1.append(res['R1']) medr.append(res['MedR']) meanr.append(res['MeanR']) n_clips.append(sim.shape[0]) # r1_n = np.array(r1) / np.array(n_clips) # medr_n = np.array(medr) / np.array(n_clips) # meanr_n = np.array(meanr) / np.array(n_clips) r1, medr, meanr = np.mean(r1), np.mean(medr), np.mean(meanr) res_dict = {'R1': r1, 'MedR': medr, 'MeanR': meanr} nested_metrics[metric_name] = res_dict print(metric_name, ': ', str(res_dict)) return nested_metrics def sims2ids(sims, videoids): sims = torch.from_numpy(sims) values, indices = torch.topk(sims, 5, dim=-1) preds = {} for videoid, inds in zip(videoids, indices): pred = [] for ind in inds: pred.append(videoids[ind]) preds[videoid] = pred data = pd.DataFrame.from_dict(preds, orient='index') data['R1'] = (data[0] == data.index) data['2corr'] = (data[1] == data.index) data['3corr'] = (data[2] == data.index) data['4corr'] = (data[3] == data.index) data['5corr'] = (data[4] == data.index) data['R5'] = data[['R1', '2corr', '3corr', '4corr', '5corr']].any(axis=1) del data['2corr'] del data['3corr'] del data['4corr'] del data['5corr'] return data if __name__ == '__main__': args = argparse.ArgumentParser(description='PyTorch Template') args.add_argument('-c', '--config', default=None, type=str, help='config file path (default: None)') args.add_argument('-r', '--resume', default=None, type=str, help='path to latest checkpoint (default: None)') args.add_argument('-d', '--device', default=None, type=str, help='indices of GPUs to enable (default: all)') config = ConfigParser(args) main(config) ================================================ FILE: train.py ================================================ import argparse import collections import torch import data_loader.data_loaders as module_data import model.loss as module_loss import model.metric as module_metric import model.model as module_arch from parse_config import ConfigParser from trainer import Trainer import ipdb import os def main(config): logger = config.get_logger('train') # setup data_loader instances config._config['data_loader']['args']['split'] = 'train' data_loader = config.initialize('data_loader', module_data) config._config['data_loader']['args']['split'] = 'val' valid_data_loader = config.initialize('data_loader', module_data) # TODO: improve this, safely clone args across config classes config._config['arch']['args']['label'] = data_loader.dataset.label config._config['arch']['args']['experts_used'] = data_loader.dataset.experts_used config._config['arch']['args']['expert_dims'] = data_loader.dataset.expert_dims # build model architecture, then print to console model = config.initialize('arch', module_arch) logger.info(model) # get function handles of loss and metrics loss = config.initialize(name="loss", module=module_loss) metrics = [getattr(module_metric, met) for met in config['metrics']] # build optimizer, learning rate scheduler. delete every lines containing lr_scheduler for disabling scheduler trainable_params = filter(lambda p: p.requires_grad, model.parameters()) optimizer = config.initialize('optimizer', torch.optim, trainable_params) lr_scheduler = config.initialize('lr_scheduler', torch.optim.lr_scheduler, optimizer) trainer = Trainer(model, loss, metrics, optimizer, config=config, data_loader=data_loader, valid_data_loader=valid_data_loader, lr_scheduler=lr_scheduler) trainer.train() return logger class TestArg: def __init__(self, resume): self.resume = resume self.device = None self.config = None if __name__ == '__main__': args = argparse.ArgumentParser(description='PyTorch Template') args.add_argument('config', default=None, type=str, help='config file path (default: None)') args.add_argument('-r', '--resume', default=None, type=str, help='path to latest checkpoint (default: None)') args.add_argument('-d', '--device', default=None, type=str, help='indices of GPUs to enable (default: all)') # custom cli options to modify configuration from default values given in json file. #CustomArgs = collections.namedtuple('CustomArgs', 'flags type target') #options = [ # CustomArgs(['--lr', '--learning_rate'], type=float, target=('optimizer', 'args', 'lr')), # CustomArgs(['--bs', '--batch_size'], type=int, target=('data_loader', 'args', 'batch_size')) #] config = ConfigParser(args) main(config) ================================================ FILE: trainer/__init__.py ================================================ from .trainer import * ================================================ FILE: trainer/trainer.py ================================================ import numpy as np import torch from torchvision.utils import make_grid from base import BaseTrainer from utils import inf_loop from model.model import sim_matrix import ipdb from torch import autograd class Trainer(BaseTrainer): """ Trainer class Note: Inherited from BaseTrainer. """ def __init__(self, model, loss, metrics, optimizer, config, data_loader, valid_data_loader=None, lr_scheduler=None, len_epoch=None): super().__init__(model, loss, metrics, optimizer, config) self.data_loader = data_loader if len_epoch is None: # epoch-based training self.len_epoch = len(self.data_loader) else: # iteration-based training self.data_loader = inf_loop(data_loader) self.len_epoch = len_epoch self.valid_data_loader = valid_data_loader self.do_validation = self.valid_data_loader is not None self.lr_scheduler = lr_scheduler self.log_step = int(np.sqrt(data_loader.batch_size)) def _eval_metrics(self, output): acc_metrics = np.zeros(len(self.metrics)) for i, metric in enumerate(self.metrics): acc_metrics[i] += metric(output) self.writer.add_scalar('{}'.format(metric.__name__), acc_metrics[i]) return acc_metrics def _train_epoch(self, epoch): """ Training logic for an epoch :param epoch: Current training epoch. :return: A log that contains all information you want to save. Note: If you have additional information to record, for example: > additional_log = {"x": x, "y": y} merge it with log before return. i.e. > log = {**log, **additional_log} > return log The metrics in log must have the key 'metrics'. """ self.model.train() total_loss = 0 total_metrics = np.zeros(len(self.metrics)) res = self.data_loader.dataset.__getitem__(1) for batch_idx, (minibatch, id) in enumerate(self.data_loader): for expert, subdict in minibatch.items(): for key, val in subdict.items(): minibatch[expert][key] = val.to(self.device) self.optimizer.zero_grad() with autograd.detect_anomaly(): output = self.model(minibatch) loss = self.loss(output) loss.backward() self.optimizer.step() self.writer.set_step((epoch - 1) * self.len_epoch + batch_idx) self.writer.add_scalar('loss', loss.item()) total_loss += loss.item() # total_metrics += self._eval_metrics(output.cpu().detach().numpy()) if batch_idx % self.log_step == 0: self.logger.debug('Train Epoch: {} {} Loss: {:.6f}'.format( epoch, self._progress(batch_idx), loss.item())) # self.writer.add_image('input', make_grid(data.cpu(), nrow=8, normalize=True)) TODO: add clip - sent prediction? if batch_idx == self.len_epoch: break log = { 'loss': total_loss / self.len_epoch, 'metrics': (total_metrics / self.len_epoch).tolist() } if self.do_validation: val_log = self._valid_epoch(epoch) log.update(val_log) if self.lr_scheduler is not None: self.lr_scheduler.step() return log def log_metrics(self, metric_store, metric_name, mode): if self.tensorboard: print(f"logging metrics: {metric_name}") self.writer.set_step(step=self.seen[mode], mode=mode) for key, value in metric_store.items(): self.writer.add_scalar(f"{metric_name}/{key}", value) def _valid_epoch(self, epoch): """ Validate after training an epoch :return: A log that contains information about validation Note: The validation metrics in log must have the key 'val_metrics'. """ self.model.eval() total_val_loss = 0 total_val_metrics = np.zeros(len(self.metrics)) label_embeddings = [] content_embeddings = [] moe_weights = [] imdbids = [] with torch.no_grad(): for batch_idx, (minibatch, id) in enumerate(self.valid_data_loader): for expert, subdict in minibatch.items(): for key, val in subdict.items(): minibatch[expert][key] = val.to(self.device) imdbids += id['imdbid'] self.optimizer.zero_grad() output, res, target, moe = self.model(minibatch, evaluation=True, debug=True) label_embeddings.append(target) content_embeddings.append(res) moe_weights.append(moe) loss = self.loss(output) self.writer.set_step((epoch - 1) * len(self.valid_data_loader) + batch_idx, 'valid') self.writer.add_scalar('loss', loss.item()) total_val_loss += loss.item() # self.writer.add_image('input', make_grid(data.cpu(), nrow=8, normalize=True)) label_embeddings = torch.cat(label_embeddings, dim=0).detach().cpu() content_embeddings = torch.cat(content_embeddings, dim=0).detach().cpu() moe_weights = torch.cat(moe_weights, dim=0).detach().cpu() sims = sim_matrix(label_embeddings, content_embeddings, weights=moe_weights).numpy() nested_metrics = {} if self.config['retrieval'] == 'intra': nested_metrics = intra_movie_metrics(sims, imdbids, self.metrics) else: for metric in self.metrics: metric_name = metric.__name__ res = metric(sims) # query_masks=meta["query_masks"]) # TODO: Query mask if metric_name == "mean_average_precision": print(f"Epoch: {epoch}, mean AP: {res['mAP']}") else: verbose(epoch=epoch, metrics=res, name='MovieClips', mode=metric_name) # TODO: refactor dataset name self.log_metrics(res, metric_name=metric_name, mode="val") nested_metrics[metric_name] = res # add histogram of model parameters to the tensorboard for name, p in self.model.named_parameters(): self.writer.add_histogram(name, p, bins='auto') return { 'val_loss': total_val_loss / len(self.valid_data_loader), 'nested_val_metrics': nested_metrics } def _progress(self, batch_idx): base = '[{}/{} ({:.0f}%)]' if hasattr(self.data_loader, 'n_samples'): current = batch_idx * self.data_loader.batch_size total = self.data_loader.n_samples else: current = batch_idx total = self.len_epoch return base.format(current, total, 100.0 * current / total) def verbose(epoch, metrics, mode, name="TEST"): r1, r5, r10, r50 = metrics["R1"], metrics["R5"], metrics["R10"], metrics["R50"] msg = f"[{mode}]{name:s} epoch {epoch}, R@1: {r1:.1f}" msg += f", R@5: {r5:.1f}, R@10 {r10:.1f}, R@50 {r50:.1f}" msg += f"MedR: {metrics['MedR']:g}, MeanR: {metrics['MeanR']:.1f}" print(msg) def intra_movie_metrics(sims, imdbids, metrics): unique_ids = set(imdbids) imdbids = np.array(imdbids) sim_stack = [] for id in unique_ids: target_idx = np.where(imdbids == id)[0] assert len(target_idx) > 0 # sanity check sim_stack.append(sims[target_idx][:, target_idx]) nested_metrics = {} for metric in metrics: metric_name = metric.__name__ r1 = [] medr = [] meanr = [] n_clips = [] for sim in sim_stack: res = metric(sim) r1.append(res['R1']) medr.append(res['MedR']) meanr.append(res['MeanR']) n_clips.append(sim.shape[0]) #r1_n = np.array(r1) / np.array(n_clips) #medr_n = np.array(medr) / np.array(n_clips) #meanr_n = np.array(meanr) / np.array(n_clips) r1, medr, meanr = np.mean(r1), np.mean(medr), np.mean(meanr) nested_metrics[metric_name] = {'R1': r1, 'MedR': medr, 'MeanR': meanr} return nested_metrics ================================================ FILE: utils/__init__.py ================================================ from .util import * ================================================ FILE: utils/util.py ================================================ import json from pathlib import Path from datetime import datetime from itertools import repeat from collections import OrderedDict import functools import time import socket import numpy as np import psutil import msgpack import humanize def ensure_dir(dirname): dirname = Path(dirname) if not dirname.is_dir(): dirname.mkdir(parents=True, exist_ok=False) def read_json(fname): with fname.open('rt') as handle: return json.load(handle, object_hook=OrderedDict) def write_json(content, fname): with fname.open('wt') as handle: json.dump(content, handle, indent=4, sort_keys=False) def inf_loop(data_loader): ''' wrapper function for endless data loader. ''' for loader in repeat(data_loader): yield from loader def memory_summary(): vmem = psutil.virtual_memory() msg = ( f">>> Currently using {vmem.percent}% of system memory " f"{humanize.naturalsize(vmem.used)}/{humanize.naturalsize(vmem.available)}" ) print(msg) @functools.lru_cache(maxsize=64, typed=False) def memcache(path): suffix = Path(path).suffix print(f"loading features >>>", end=" ") tic = time.time() if suffix == ".npy": res = np_loader(path) else: raise ValueError(f"unknown suffix: {suffix} for path {path}") print(f"[Total: {time.time() - tic:.1f}s] ({socket.gethostname() + ':' + str(path)})") return res def np_loader(np_path, l2norm=False): with open(np_path, "rb") as f: data = np.load(f, encoding="latin1", allow_pickle=True) if isinstance(data, np.ndarray) and data.size == 1: data = data[()] # handle numpy dict storage convnetion if l2norm: print("L2 normalizing features") if isinstance(data, dict): for key in data: feats_ = data[key] feats_ = feats_ / max(np.linalg.norm(feats_), 1E-6) data[key] = feats_ elif data.ndim == 2: data_norm = np.linalg.norm(data, axis=1) data = data / np.maximum(data_norm.reshape(-1, 1), 1E-6) else: raise ValueError("unexpected data format {}".format(type(data))) return data class Timer: def __init__(self): self.cache = datetime.now() def check(self): now = datetime.now() duration = now - self.cache self.cache = now return duration.total_seconds() def reset(self): self.cache = datetime.now() ================================================ FILE: utils/visualisation.py ================================================ import torch import numpy as np import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as plt import ipdb def visualise_path(pred, target, window): """ :param pred: (P, 2) Tensor where P is the number of predictions, and 2 is the (i,j) coordinate :param target: (T, 2) Tensor where T is the number of targets, and 2 is the (i,j) coordinate :param dims: (H, W) tup/list the desired height and width of matrix (should be >= to max(i), max(j)) :param assignment_method: Method of assignment (dtw, minimum etc.) :return: image, visualisation of path prediction and target. """ tp = torch.Tensor((64, 191, 64)) fp = torch.Tensor((191, 64, 64)) gt = torch.Tensor((102, 153, 255)) grid = torch.ones_like(window).unsqueeze(0).repeat(3, 1, 1) * 255 inf = 130 * torch.ones_like(grid) grid = torch.where(torch.isnan(window), inf, grid) clip_idxs = [t[0] for t in target] local_idxs = np.unique(np.array(clip_idxs)).tolist() for t in target: local_idx = local_idxs.index(t[0]) grid[:, local_idx,t[1]] = gt for p in pred: local_idx = local_idxs.index(p[0]) if (grid[:, local_idx,p[1]] == gt).all(): grid[:, local_idx, p[1]] = tp else: grid[:, local_idx, p[1]] = fp return grid / 255 def batch_path_vis(pred_dict, target, window): grids = [] window = window.cpu() for key, pred in pred_dict.items(): tmp_window = window if key == 'min_dist': tmp_window = torch.zeros_like(window) grids.append(visualise_path(pred, target, tmp_window)) return torch.stack(grids) if __name__ == "__main__": pred = [[1,1], [2,4]] gt = [[1,1], [3,4]] window = torch.zeros((5,6)) visualise_path(pred, gt, window) ================================================ FILE: visualise_face_tracks.py ================================================ # requires ffmpeg (2.8.15) import os, cv2, pickle, argparse, random from tqdm import tqdm import pandas as pd import pdb track_colour_choices = [(75,25,230), (25,225,255), (75,180,60), (230,50,240), (240,240,70), (49,130,245), (180,30,145), (12,246,188), (216,99,67), (195,255,170), (255,190,230)] random.shuffle(track_colour_choices) def expandrect(ROI, extensionx, extensiony, shape): """expand the face detection bounding box""" width = ROI[2] - ROI[0] height = ROI[3] - ROI[1] #Length = (width + height) / 2 centrepoint = [int(ROI[0]) + (width / 2), int(ROI[1]) + (height / 2)] x1 = int(centrepoint[0] - int((1 + extensionx) * width / 2)) y1 = int(centrepoint[1] - int((1 + extensiony) * height / 2)) x2 = int(centrepoint[0] + int((1 + extensionx) * width / 2)) y2 = int(centrepoint[1] + int((1 + extensiony) * height / 2)) x1 = max(1, x1) y1 = max(1, y1) x2 = min(x2, shape[1]) y2 = min(y2, shape[0]) return [x1, y1, x2, y2] if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--video_ID', default='9YyC1Uq84v8', help='the ID of the video for face-track visualisation', type=str) parser.add_argument('--out_dir', default='figs', help='path to output directory for saving visualisation video', type=str) parser.add_argument('--data_dir', default='data/videos', help='path to video data directory', type=str) parser.add_argument('--face_track_dir', default='data/facetracks', help='path to data directory containing the face-tracks', type=str) args = parser.parse_args() # automatically get video year clips = pd.read_csv('metadata/clips.csv') target_clip = clips[clips['videoid'] == args.video_ID] if len(target_clip) == 0: raise Exception('video ID not found') video_year = str(int(target_clip['upload_year'].iloc[0])) # automatically get data directory # check that the output directory exists if not os.path.isdir(args.out_dir): raise Exception('path to output does not exist') # check that the path exists to the video if not os.path.isfile(os.path.join(args.data_dir, video_year, args.video_ID + '.mkv')): pdb.set_trace() raise Exception('path to video does not exist') # check that the path exists to the face-track if not os.path.isfile(os.path.join(args.face_track_dir, video_year,args.video_ID+'.mkvface_dets.pk')): raise Exception('path to face detections does not exist') # load the face-tracks with open(os.path.join(args.face_track_dir, video_year,args.video_ID+'.mkvface_dets.pk'), 'rb') as f: face_dets = pickle.load(f) with open(os.path.join(args.face_track_dir, video_year, args.video_ID + '.mkvdatabase.pk'), 'rb') as f: database = pickle.load(f) # extract the frames to the output directory if not os.path.isdir(os.path.join(args.out_dir, args.video_ID)): os.mkdir(os.path.join(args.out_dir, args.video_ID)) else: os.system('rm -R '+ os.path.join(args.out_dir, args.video_ID)) os.mkdir(os.path.join(args.out_dir, args.video_ID)) Command = "ffmpeg -i " + os.path.join(args.data_dir, video_year, args.video_ID + '.mkv') + " -threads 1 -deinterlace -q:v 1 -s 640:360 -vf fps=25 " + os.path.join(args.out_dir,args.video_ID) + "/%05d.jpg" os.system(Command) extracted_frames = [f for f in os.listdir(os.path.join(args.out_dir, args.video_ID))] if len(extracted_frames) == 0: raise Exception('problem with frame extraction - check ffmpeg usage') if os.path.isfile(os.path.join(args.out_dir,'audio.mp3')): os.system('rm -R ' + os.path.join(args.out_dir, 'audio.mp3')) # extract the audio to the output directory audio_call = "ffmpeg -i " + os.path.join(args.data_dir, video_year, args.video_ID + '.mkv') +" "+ os.path.join(args.out_dir,'audio.mp3') os.system(audio_call) # for each track in the face-track, read and write the detection print('writing face tracks...') for track_ID, face_track_frames in enumerate(tqdm(database['index_into_facedetfile'])): for index in face_track_frames: frame = "%05d.jpg"%face_dets[index][0] image = cv2.imread(os.path.join(args.out_dir, args.video_ID, frame)) ROI = [int(face_dets[index][1]), int(face_dets[index][2]), int(face_dets[index][1]+ face_dets[index][3]), int(face_dets[index][2]+face_dets[index][4])] # [x1, y1, x2, y2] track_colour = track_colour_choices[track_ID%len(track_colour_choices)] expand_rect = expandrect(ROI, 0.4, 0.4, image.shape) # expand the face detection for visualisation image = cv2.rectangle(image, (int(expand_rect[0]), int(expand_rect[1])), (int(expand_rect[2]), int(expand_rect[3])), track_colour, int(max(min(7, ((expand_rect[2] - expand_rect[0]) / 20)), 2))) # draw the bounding box image = cv2.putText(image, str(track_ID), (int(expand_rect[0]), int(expand_rect[3]) + 30), 0, 1, track_colour, 3) cv2.imwrite(os.path.join(args.out_dir, args.video_ID, frame), image) # make the output video FFMPEGCall = 'ffmpeg -r 25 -start_number 0 -i ' + os.path.join(args.out_dir, args.video_ID) + '/%05d.jpg -c:v libx264 -vf fps=25 -pix_fmt yuv420p ' + os.path.join(args.out_dir, args.video_ID+ '.mp4') os.system(FFMPEGCall) # delete the frames os.system('rm -R '+ os.path.join(args.out_dir, args.video_ID)) # add audio audio_call = "ffmpeg -i "+os.path.join(args.out_dir, args.video_ID+ '.mp4') + " -i "+os.path.join(args.out_dir,'audio.mp3')+" -c:v libx264 -c:a libvorbis -shortest " + os.path.join(args.out_dir, args.video_ID+ '.mkv') os.system(audio_call) os.system('rm '+os.path.join(args.out_dir, args.video_ID+ '.mp4')) os.system('rm -R ' + os.path.join(args.out_dir,'audio.mp3'))